diff --git a/.gitignore b/.gitignore index e64d93b8..b90b81bb 100644 --- a/.gitignore +++ b/.gitignore @@ -50,20 +50,20 @@ coverage.json *.py.cover .hypothesis/ .pytest_cache/ -cover/ +/cover/ # Translations *.mo *.pot # Django stuff: -*.log +# *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: -instance/ +/instance/ .webassets-cache # Scrapy stuff: @@ -74,7 +74,7 @@ docs/_build/ # PyBuilder .pybuilder/ -target/ +/target/ # Jupyter Notebook .ipynb_checkpoints @@ -139,9 +139,9 @@ celerybeat.pid .env .envrc .venv -env/ +/env/ venv/ -ENV/ +/ENV/ env.bak/ venv.bak/ @@ -212,7 +212,7 @@ __marimo__/ .history/ # CatBoost model snapshot files -catboost_info/ +/catboost_info/ # VSCodeCounter cache .vscodecounter/ @@ -220,8 +220,14 @@ catboost_info/ # Failure management folder that helps deal with failed search and train runs by storing relevant information at runtime (best params from each search, training model snapshots) and deleting if the run is successful. Irrelevant for version control. /failure_management/ -# Temporarily ignore all experiments, data, feature sets, and model registry files. These are all relevant for version control, but we want to temporarily ignore them while we work on the registry and experiment tracking features. +# Ignore all experiments, data, feature sets, model registry & archive, predictions, and monitoring files, as well as log files. +# These are all potentially relevant for version control, but we want to temporarily ignore them while we work +# on the registry and experiment tracking features. /experiments/ /data/ /feature_store/ -/model_registry/ \ No newline at end of file +/model_registry/ +/predictions/ +/monitoring/ +/orchestration_logs/ +/scripts_logs/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index fa00e7bc..3f87e716 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # For faster development iterations, consider using a local Conda environment on your machine with the # same environment.yml file. -# ===== Base image with GPU support ===== +# Base image with GPU support FROM pytorch/pytorch:2.10.0-cuda12.8-cudnn9-runtime # NOTE: Uncomment the line below and comment out the line above only if you want to generate fake data. # For regular use, stick to the current image. If you use the image below, make sure to also uncomment @@ -14,14 +14,14 @@ FROM pytorch/pytorch:2.10.0-cuda12.8-cudnn9-runtime # FROM nvidia/cuda:12.8.0-runtime-ubuntu22.04 -# ===== Set working directory ===== +# Set working directory WORKDIR /app -# ===== Timezone fix ===== +# Timezone fix ENV TZ=Europe/Zagreb RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone -# ===== Install Miniconda and Git ===== +# Install Miniconda and Git RUN apt-get update && apt-get install -y wget bzip2 git && \ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /tmp/miniconda.sh && \ bash /tmp/miniconda.sh -b -p /opt/conda && \ @@ -31,14 +31,14 @@ RUN apt-get update && apt-get install -y wget bzip2 git && \ # Add conda to PATH ENV PATH="/opt/conda/bin:$PATH" -# ===== Accept Conda Terms of Service ===== +# Accept Conda Terms of Service RUN conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main && \ conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r -# ===== Copy environment.yml first for faster rebuilds ===== +# Copy environment.yml first for faster rebuilds COPY environment.yml /tmp/environment.yml -# ===== Create Conda environment ===== +# Create Conda environment # Create env RUN conda env create -f /tmp/environment.yml -n hotel_management @@ -61,10 +61,10 @@ COPY pyproject.toml . # Install rest RUN conda run -n hotel_management pip install -r /tmp/requirements.txt -# ===== Use the environment for all container commands ===== +# Use the environment for all container commands SHELL ["conda", "run", "-n", "hotel_management", "/bin/bash", "-c"] -# ===== Copy the code ===== +# Copy the code COPY ml ./ml COPY pipelines ./pipelines COPY scripts ./scripts @@ -73,11 +73,11 @@ COPY ml_service ./ml_service # Install the package RUN conda run -n hotel_management pip install -e . -# ===== Expose ports ===== +# Expose ports EXPOSE 8000 EXPOSE 8050 -# ===== Run all services ===== +# Run all services CMD bash -c "\ uvicorn ml_service.backend.main:app --reload --host 0.0.0.0 --port 8000 & \ python -m ml_service.frontend.app --host 0.0.0.0 --port 8050 & \ diff --git a/README.md b/README.md index 74942b1d..66af1614 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,12 @@ - located in `data/raw/hotel_bookings/v1/2026-02-25T22-43-23_732dfdb7/data.csv` - originally from https://www.kaggle.com/datasets/mojtaba142/hotel-booking - Current architecture expanded to support many datasets. -- The ml workflow covers everything from the registration of a raw data snapshot to model promotion. +- The ml workflow covers everything from the registration of a raw data snapshot to model monitoring. > Note: the repo was previously named `hotel_management`, so you will see that name around the repo; renamed for clarity on what the project does ## Features +Pipelines for every part of the ml workflow: - Data preprocessing - Register raw data snapshots - Build interim and processed datasets @@ -25,6 +26,25 @@ - Model promotion - Includes model registry for staging and production - Archives past production models +- Model inference +- Model monitoring + +Maximum **decoupling** of datasets, feature sets, and modeling +- Datasets merge at runtime, using predefined configs and DAG for ordering +- Feature sets merge at runtime using a predefined entity key +- Models can use any snapshots of datasets and feature sets via snapshot bindings registry +- Validation ensures consistency and predefined minimum row presence + +Full **reproducibility** +- Hashing and downstream validation of relevant `artifacts` and `configs` +- Runtime info validation (hardware, git commit, environment...) + +Code **quality** ensured by CI, which includes: +- `ruff` checks +- `mypy` checks (moderate strictness) +- import layer checks +- naming conventions checks +- **1235 tests** -> fails if coverage drops below 90% ## Installation @@ -44,21 +64,33 @@ Two options: See the [usage guide](docs/usage.md) for instructions on running the workflow. -### Usage examples (via `ml_service` and `Docker`): +### Usage examples (via `ml_service`): -#### Pipelines +#### Modeling Configs Writing, Validation, Saving, and Viewing -!["Gif portrayal of pipelines app from ml_service"](assets/gifs/ml_service_pipelines_v2.gif) +!["Gif portrayal of writing modeling configs with ml_service"](assets/gifs/ml_service_modeling_configs_v3.gif) -#### Modeling Configs +**Similar functionality exists for other supported configs** -!["Gif portrayal of modeling configs app from ml_service"](assets/gifs/ml_service_modeling_configs_v2.gif) +#### Pipeline Running and Artifact Viewing + +!["Gif portrayal of running a pipeline with ml_service"](assets/gifs/ml_service_pipelines_v3.gif) + +**Similar functionality exists for scripts** + +#### Documentation Reading in Browser + +!["Gif portrayal of reading the docs with ml_service"](assets/gifs/ml_service_docs_v1.gif) + +#### Directory Structure Viewing in Browser + +["Gif portrayal of viewing directory structure with ml_service"](assets/gifs/ml_service_dir_viewer_v1.gif) ## Architecture ### Artifact Lineage (high-level overview) -![Artifact Lineage Diagram](docs/architecture/img/artifact_lineage_v2.png) +![Artifact Lineage Diagram](docs/architecture/img/artifact_lineage_v3.png) ### Details diff --git a/assets/gifs/ml_service_dir_viewer_v1.gif b/assets/gifs/ml_service_dir_viewer_v1.gif new file mode 100644 index 00000000..abb23098 Binary files /dev/null and b/assets/gifs/ml_service_dir_viewer_v1.gif differ diff --git a/assets/gifs/ml_service_docs_v1.gif b/assets/gifs/ml_service_docs_v1.gif new file mode 100644 index 00000000..70509a93 Binary files /dev/null and b/assets/gifs/ml_service_docs_v1.gif differ diff --git a/assets/gifs/ml_service_modeling_configs_v2.gif b/assets/gifs/ml_service_modeling_configs_v2.gif deleted file mode 100644 index 058e048a..00000000 Binary files a/assets/gifs/ml_service_modeling_configs_v2.gif and /dev/null differ diff --git a/assets/gifs/ml_service_modeling_configs_v3.gif b/assets/gifs/ml_service_modeling_configs_v3.gif new file mode 100644 index 00000000..4ea12f45 Binary files /dev/null and b/assets/gifs/ml_service_modeling_configs_v3.gif differ diff --git a/assets/gifs/ml_service_pipelines_v2.gif b/assets/gifs/ml_service_pipelines_v2.gif deleted file mode 100644 index 2f70cbf4..00000000 Binary files a/assets/gifs/ml_service_pipelines_v2.gif and /dev/null differ diff --git a/assets/gifs/ml_service_pipelines_v3.gif b/assets/gifs/ml_service_pipelines_v3.gif new file mode 100644 index 00000000..0cb80033 Binary files /dev/null and b/assets/gifs/ml_service_pipelines_v3.gif differ diff --git a/assets/img/docs/architecture/artifact_lineage_v2.png b/assets/img/docs/architecture/artifact_lineage_v2.png deleted file mode 100644 index 83e38302..00000000 Binary files a/assets/img/docs/architecture/artifact_lineage_v2.png and /dev/null differ diff --git a/assets/img/docs/architecture/artifact_lineage_v3.png b/assets/img/docs/architecture/artifact_lineage_v3.png new file mode 100644 index 00000000..976658cf Binary files /dev/null and b/assets/img/docs/architecture/artifact_lineage_v3.png differ diff --git a/assets/img/docs/architecture/freeze_v2.png b/assets/img/docs/architecture/freeze_v2.png deleted file mode 100644 index d801dcc2..00000000 Binary files a/assets/img/docs/architecture/freeze_v2.png and /dev/null differ diff --git a/assets/img/docs/architecture/freeze_v3.png b/assets/img/docs/architecture/freeze_v3.png new file mode 100644 index 00000000..38c2a68a Binary files /dev/null and b/assets/img/docs/architecture/freeze_v3.png differ diff --git a/assets/img/docs/architecture/infer_v1.png b/assets/img/docs/architecture/infer_v1.png new file mode 100644 index 00000000..01f47ab6 Binary files /dev/null and b/assets/img/docs/architecture/infer_v1.png differ diff --git a/assets/img/docs/architecture/monitor_v1.png b/assets/img/docs/architecture/monitor_v1.png new file mode 100644 index 00000000..3a688b01 Binary files /dev/null and b/assets/img/docs/architecture/monitor_v1.png differ diff --git a/assets/img/docs/architecture/search_v2.png b/assets/img/docs/architecture/search_v2.png deleted file mode 100644 index 5fed42d0..00000000 Binary files a/assets/img/docs/architecture/search_v2.png and /dev/null differ diff --git a/assets/img/docs/architecture/search_v3.png b/assets/img/docs/architecture/search_v3.png new file mode 100644 index 00000000..8ead1844 Binary files /dev/null and b/assets/img/docs/architecture/search_v3.png differ diff --git a/assets/img/docs/architecture/train_v2.png b/assets/img/docs/architecture/train_v2.png deleted file mode 100644 index 48bb92a5..00000000 Binary files a/assets/img/docs/architecture/train_v2.png and /dev/null differ diff --git a/assets/img/docs/architecture/train_v3.png b/assets/img/docs/architecture/train_v3.png new file mode 100644 index 00000000..ccdbd1d6 Binary files /dev/null and b/assets/img/docs/architecture/train_v3.png differ diff --git a/configs/data/interim/hotel_bookings/v1.yaml b/configs/data/interim/hotel_bookings/v1.yaml index cc5c88ae..638951de 100644 --- a/configs/data/interim/hotel_bookings/v1.yaml +++ b/configs/data/interim/hotel_bookings/v1.yaml @@ -153,7 +153,7 @@ drop_duplicates: true drop_missing_ints: true -min_rows: 100000 +min_rows: 5000 lineage: created_by: Sebastijan diff --git a/configs/env/dev.yaml b/configs/env/dev.yaml new file mode 100644 index 00000000..fcc952d7 --- /dev/null +++ b/configs/env/dev.yaml @@ -0,0 +1,20 @@ +cv: 2 + +training: + iterations: 1 + hardware: + task_type: "cpu" + snapshot_interval_seconds: 300 + +search: + broad: + iterations: 1 + n_iter: 1 + narrow: + iterations: 1 + n_iter: 1 + hardware: + task_type: "cpu" + error_score: "raise" + +verbose: 100 \ No newline at end of file diff --git a/configs/env/prod.yaml b/configs/env/prod.yaml new file mode 100644 index 00000000..5d0593ca --- /dev/null +++ b/configs/env/prod.yaml @@ -0,0 +1,4 @@ +training: + snapshot_interval_seconds: 60 + +verbose: 10 \ No newline at end of file diff --git a/configs/env/test.yaml b/configs/env/test.yaml new file mode 100644 index 00000000..4d5a884c --- /dev/null +++ b/configs/env/test.yaml @@ -0,0 +1,21 @@ +cv: 2 + +training: + iterations: 10 + hardware: + task_type: "cpu" + snapshot_interval_seconds: 300 + +search: + broad: + iterations: 10 + n_iter: 2 + narrow: + iterations: 10 + n_iter: 2 + hardware: + task_type: "gpu" + devices: [0] + error_score: "raise" + +verbose: 100 \ No newline at end of file diff --git a/configs/snapshot_bindings_registry/bindings.yaml b/configs/snapshot_bindings_registry/bindings.yaml index e29c2be9..8b743cc3 100644 --- a/configs/snapshot_bindings_registry/bindings.yaml +++ b/configs/snapshot_bindings_registry/bindings.yaml @@ -1,55 +1,165 @@ -2026-03-20T02-54-47_61509023: +2026-03-28T13-22-50_e7b42e43: datasets: hotel_bookings: v1: - snapshot: 2026-03-17T03-26-25_4e817323 + snapshot: 2026-03-28T13-12-06_e21dd3f1 v2: - snapshot: 2026-03-17T03-26-27_c04ca84b + snapshot: 2026-03-28T13-12-08_a874bed0 feature_sets: booking_context_features: v1: - snapshot: 2026-03-17T06-41-04_530962ff + snapshot: 2026-03-28T13-12-35_8900f29c v2: - snapshot: 2026-03-17T04-27-05_b9099899 + snapshot: 2026-03-28T13-12-37_79276f03 v3: - snapshot: 2026-03-17T04-27-07_6ecc2061 + snapshot: 2026-03-28T13-12-39_0768c772 v4: - snapshot: 2026-03-17T04-27-08_e45a7462 + snapshot: 2026-03-28T13-12-41_4428612e v5: - snapshot: 2026-03-17T04-27-09_72290e7c + snapshot: 2026-03-28T13-12-43_ddf64a59 v6: - snapshot: 2026-03-17T04-27-10_f299b9d2 + snapshot: 2026-03-28T13-12-45_2e3dc4e6 v7: - snapshot: 2026-03-17T04-27-12_eba7203e + snapshot: 2026-03-28T13-12-48_f0b82fb7 channel_and_agent_features: v1: - snapshot: 2026-03-17T04-27-24_d2b1a0df + snapshot: 2026-03-28T13-13-08_c6b7c5c4 v2: - snapshot: 2026-03-17T04-27-25_1bd99237 + snapshot: 2026-03-28T13-13-11_a3729afb v3: - snapshot: 2026-03-17T04-27-27_e73d2e8c + snapshot: 2026-03-28T13-13-13_c6a56484 customer_history_features: v1: - snapshot: 2026-03-17T04-27-13_47665433 + snapshot: 2026-03-28T13-12-50_3433eba9 v2: - snapshot: 2026-03-17T04-27-14_1881a909 + snapshot: 2026-03-28T13-12-52_8e2e40cf v3: - snapshot: 2026-03-17T04-27-15_c7be8caf + snapshot: 2026-03-28T13-12-54_f1315c4e v4: - snapshot: 2026-03-17T04-27-17_1c0339c3 + snapshot: 2026-03-28T13-12-56_829c9ba9 pricing_party_features: v1: - snapshot: 2026-03-17T04-27-18_2e72ae25 + snapshot: 2026-03-28T13-12-58_bdfb1d30 v2: - snapshot: 2026-03-17T04-27-19_dd815223 + snapshot: 2026-03-28T13-13-00_3cbbded1 v3: - snapshot: 2026-03-17T04-27-20_0592cbb0 + snapshot: 2026-03-28T13-13-02_a269ad35 v4: - snapshot: 2026-03-17T04-27-21_c2f019fb + snapshot: 2026-03-28T13-13-04_c2fc934e v5: - snapshot: 2026-03-17T04-27-23_8ef8fcc4 + snapshot: 2026-03-28T13-13-06_4d23bfc3 room_allocation_features: v1: - snapshot: 2026-03-17T04-27-28_0368fd56 + snapshot: 2026-03-28T13-13-15_4a1daf99 v2: - snapshot: 2026-03-17T04-27-29_e07095bc + snapshot: 2026-03-28T13-13-17_dc0ddb69 +2026-03-28T13-26-14_79da3f79: + datasets: + hotel_bookings: + v1: + snapshot: 2026-03-28T13-21-26_e33079fe + v2: + snapshot: 2026-03-28T13-21-47_5e93c0fa + feature_sets: + booking_context_features: + v1: + snapshot: 2026-03-28T13-24-37_b5639ccc + v2: + snapshot: 2026-03-28T13-24-39_afc53868 + v3: + snapshot: 2026-03-28T13-24-41_3e1920f9 + v4: + snapshot: 2026-03-28T13-24-43_50efd76c + v5: + snapshot: 2026-03-28T13-24-45_e439ed3c + v6: + snapshot: 2026-03-28T13-24-47_e29c5d97 + v7: + snapshot: 2026-03-28T13-24-49_e2346b27 + channel_and_agent_features: + v1: + snapshot: 2026-03-28T13-25-08_0bad298e + v2: + snapshot: 2026-03-28T13-25-10_2c13992c + v3: + snapshot: 2026-03-28T13-25-12_c18076a4 + customer_history_features: + v1: + snapshot: 2026-03-28T13-24-51_b8f88868 + v2: + snapshot: 2026-03-28T13-24-53_0dfede2a + v3: + snapshot: 2026-03-28T13-24-55_814add52 + v4: + snapshot: 2026-03-28T13-24-57_1ebafe73 + pricing_party_features: + v1: + snapshot: 2026-03-28T13-24-58_292d410d + v2: + snapshot: 2026-03-28T13-25-00_d3150c62 + v3: + snapshot: 2026-03-28T13-25-02_19bc986c + v4: + snapshot: 2026-03-28T13-25-04_d71d09a9 + v5: + snapshot: 2026-03-28T13-25-06_bc14d84c + room_allocation_features: + v1: + snapshot: 2026-03-28T13-25-14_5ef3b356 + v2: + snapshot: 2026-03-28T13-25-16_6d058832 +2026-03-28T13-39-58_a0873bfa: + datasets: + hotel_bookings: + v1: + snapshot: 2026-03-28T13-38-31_8e9e9ec9 + v2: + snapshot: 2026-03-28T13-38-53_1ea98b55 + feature_sets: + booking_context_features: + v1: + snapshot: 2026-03-28T13-39-05_594ddfce + v2: + snapshot: 2026-03-28T13-39-07_2fed4c21 + v3: + snapshot: 2026-03-28T13-39-09_e84f3e1f + v4: + snapshot: 2026-03-28T13-39-11_a8a11d98 + v5: + snapshot: 2026-03-28T13-39-13_0b6db9e7 + v6: + snapshot: 2026-03-28T13-39-15_a40da125 + v7: + snapshot: 2026-03-28T13-39-17_d512dabe + channel_and_agent_features: + v1: + snapshot: 2026-03-28T13-39-37_3bb2bba4 + v2: + snapshot: 2026-03-28T13-39-39_82975171 + v3: + snapshot: 2026-03-28T13-39-41_23e665eb + customer_history_features: + v1: + snapshot: 2026-03-28T13-39-19_51ccba0a + v2: + snapshot: 2026-03-28T13-39-21_c46d60a1 + v3: + snapshot: 2026-03-28T13-39-23_efd72b19 + v4: + snapshot: 2026-03-28T13-39-25_c97a3031 + pricing_party_features: + v1: + snapshot: 2026-03-28T13-39-27_08778f79 + v2: + snapshot: 2026-03-28T13-39-29_e243c73d + v3: + snapshot: 2026-03-28T13-39-31_5bc2c147 + v4: + snapshot: 2026-03-28T13-39-33_0b71c4f8 + v5: + snapshot: 2026-03-28T13-39-35_ed1473c8 + room_allocation_features: + v1: + snapshot: 2026-03-28T13-39-43_2fb3464d + v2: + snapshot: 2026-03-28T13-39-44_943ba75a diff --git a/data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/build_interim_dataset.log b/data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/build_interim_dataset.log new file mode 100644 index 00000000..c9078e39 --- /dev/null +++ b/data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/build_interim_dataset.log @@ -0,0 +1,7 @@ +2026-03-28 13:12:04,058 - ml.utils.snapshots.snapshot_path - INFO - Auto-resolved latest snapshot ID: data\raw\hotel_bookings\v1\2026-02-25T22-43-23_732dfdb7 +2026-03-28 13:12:04,363 - ml.data.interim.data_preparation.prepare_data - WARNING - Column 'children' had 4 missing values and drop_missing_ints is True, so rows with missing values in this column have been dropped. +2026-03-28 13:12:04,720 - ml.data.interim.data_preparation.prepare_data - WARNING - Dropping 1 rows where adr < 0.0. Row indices: [14969] +2026-03-28 13:12:04,860 - __main__ - INFO - Dropped duplicates. DataFrame now has 119385 rows. +2026-03-28 13:12:05,011 - ml.data.utils.persistence.save_data - INFO - Data saved successfully at data\interim\hotel_bookings\v1\2026-03-28T13-12-04_2983adb1\data.parquet in parquet format with compression snappy. +2026-03-28 13:12:05,011 - __main__ - INFO - Interim data saved successfully at data\interim\hotel_bookings\v1\2026-03-28T13-12-04_2983adb1\data.parquet with 119385 rows and 36 columns. +2026-03-28 13:12:05,115 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/metadata.json. diff --git a/data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/data.parquet b/data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/data.parquet new file mode 100644 index 00000000..4d9932a5 Binary files /dev/null and b/data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/data.parquet differ diff --git a/data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/metadata.json b/data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/metadata.json new file mode 100644 index 00000000..a5fa7ac6 --- /dev/null +++ b/data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/metadata.json @@ -0,0 +1,117 @@ +{ + "rows": 119385, + "columns": { + "count": 36, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "booking_changes", + "deposit_type", + "agent", + "company", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "reservation_status_date", + "name", + "email", + "phone_number", + "credit_card" + ], + "dtypes": { + "hotel": "category", + "is_canceled": "int8", + "lead_time": "int16", + "arrival_date_year": "int16", + "arrival_date_month": "category", + "arrival_date_week_number": "int8", + "arrival_date_day_of_month": "int8", + "stays_in_weekend_nights": "int8", + "stays_in_week_nights": "int8", + "adults": "int16", + "children": "float64", + "babies": "int8", + "meal": "category", + "country": "category", + "market_segment": "category", + "distribution_channel": "category", + "is_repeated_guest": "int8", + "previous_cancellations": "int8", + "previous_bookings_not_canceled": "int8", + "reserved_room_type": "category", + "assigned_room_type": "category", + "booking_changes": "int8", + "deposit_type": "category", + "agent": "string", + "company": "string", + "days_in_waiting_list": "int16", + "customer_type": "category", + "adr": "float32", + "required_car_parking_spaces": "int8", + "total_of_special_requests": "int8", + "reservation_status": "category", + "reservation_status_date": "datetime64[ns]", + "name": "string", + "email": "string", + "phone_number": "string", + "credit_card": "string" + } + }, + "created_at": "2026-03-28T13-12-05", + "created_by": "build_interim_dataset.py", + "owner": "Sebastijan", + "source_data": { + "name": "hotel_bookings", + "version": "v1", + "format": "csv", + "snapshot_id": "2026-02-25T22-43-23_732dfdb7", + "path": "data/raw/hotel_bookings/v1/2026-02-25T22-43-23_732dfdb7/data.csv" + }, + "data": { + "name": "hotel_bookings", + "version": "v1", + "output": { + "path_suffix": "data.parquet", + "format": "parquet", + "compression": "snappy" + }, + "hash": "072e77126783acb6a0bbfa86bf490f65bcdc532e62896a92c36cd8df129d667b" + }, + "memory": { + "old_memory_mb": 138.0193214416504, + "new_memory_mb": 54.28487682342529, + "change_mb": -83.7344446182251, + "change_percentage": -60.66863953799759 + }, + "config_hash": "7d18395ef2c9a0a2f3e192421d12b25e", + "duration": 1.0620061999652535, + "runtime_info": { + "pandas_version": "2.3.3", + "numpy_version": "1.26.4", + "yaml_version": "6.0.3", + "python_version": "3.11.14" + }, + "interim_run_id": "2026-03-28T13-12-04_2983adb1" +} \ No newline at end of file diff --git a/data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/build_interim_dataset.log b/data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/build_interim_dataset.log new file mode 100644 index 00000000..3290578e --- /dev/null +++ b/data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/build_interim_dataset.log @@ -0,0 +1,5 @@ +2026-03-28 13:21:13,479 - ml.utils.snapshots.snapshot_path - INFO - Auto-resolved latest snapshot ID: data\raw\hotel_bookings\v1\2026-03-28T13-20-27_43859088 +2026-03-28 13:21:13,572 - __main__ - INFO - Dropped duplicates. DataFrame now has 10000 rows. +2026-03-28 13:21:13,600 - ml.data.utils.persistence.save_data - INFO - Data saved successfully at data\interim\hotel_bookings\v1\2026-03-28T13-21-13_d3d43d17\data.parquet in parquet format with compression snappy. +2026-03-28 13:21:13,600 - __main__ - INFO - Interim data saved successfully at data\interim\hotel_bookings\v1\2026-03-28T13-21-13_d3d43d17\data.parquet with 10000 rows and 36 columns. +2026-03-28 13:21:13,645 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/metadata.json. diff --git a/data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/data.parquet b/data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/data.parquet new file mode 100644 index 00000000..4aae99b3 Binary files /dev/null and b/data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/data.parquet differ diff --git a/data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/metadata.json b/data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/metadata.json new file mode 100644 index 00000000..9540457b --- /dev/null +++ b/data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/metadata.json @@ -0,0 +1,117 @@ +{ + "rows": 10000, + "columns": { + "count": 36, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "booking_changes", + "deposit_type", + "agent", + "company", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "name", + "email", + "phone_number", + "credit_card", + "reservation_status_date" + ], + "dtypes": { + "hotel": "category", + "is_canceled": "int8", + "lead_time": "int16", + "arrival_date_year": "int16", + "arrival_date_month": "category", + "arrival_date_week_number": "int8", + "arrival_date_day_of_month": "int8", + "stays_in_weekend_nights": "int8", + "stays_in_week_nights": "int8", + "adults": "int16", + "children": "int8", + "babies": "int8", + "meal": "category", + "country": "category", + "market_segment": "category", + "distribution_channel": "category", + "is_repeated_guest": "int8", + "previous_cancellations": "int8", + "previous_bookings_not_canceled": "int8", + "reserved_room_type": "category", + "assigned_room_type": "category", + "booking_changes": "int8", + "deposit_type": "category", + "agent": "string", + "company": "string", + "days_in_waiting_list": "int16", + "customer_type": "category", + "adr": "float32", + "required_car_parking_spaces": "int8", + "total_of_special_requests": "int8", + "reservation_status": "category", + "name": "string", + "email": "string", + "phone_number": "string", + "credit_card": "string", + "reservation_status_date": "datetime64[ns]" + } + }, + "created_at": "2026-03-28T13-21-13", + "created_by": "build_interim_dataset.py", + "owner": "Sebastijan", + "source_data": { + "name": "hotel_bookings", + "version": "v1", + "format": "csv", + "snapshot_id": "2026-03-28T13-20-27_43859088", + "path": "data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/data.csv" + }, + "data": { + "name": "hotel_bookings", + "version": "v1", + "output": { + "path_suffix": "data.parquet", + "format": "parquet", + "compression": "snappy" + }, + "hash": "83b27e04950f6b6b377dcbdfec02b7a0d44651ba1c6de6c0ffa905ed11d84427" + }, + "memory": { + "old_memory_mb": 10.957391738891602, + "new_memory_mb": 4.409453392028809, + "change_mb": -6.547938346862793, + "change_percentage": -59.758184273195944 + }, + "config_hash": "7d18395ef2c9a0a2f3e192421d12b25e", + "duration": 0.17170169996097684, + "runtime_info": { + "pandas_version": "2.3.3", + "numpy_version": "1.26.4", + "yaml_version": "6.0.3", + "python_version": "3.11.14" + }, + "interim_run_id": "2026-03-28T13-21-13_d3d43d17" +} \ No newline at end of file diff --git a/data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/build_interim_dataset.log b/data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/build_interim_dataset.log new file mode 100644 index 00000000..a0151e7c --- /dev/null +++ b/data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/build_interim_dataset.log @@ -0,0 +1,6 @@ +2026-03-28 13:38:20,686 - ml.utils.snapshots.snapshot_path - INFO - Auto-resolved latest snapshot ID: data\raw\hotel_bookings\v1\2026-03-28T13-37-46_5f55cee6 +2026-03-28 13:38:20,813 - ml.data.interim.data_preparation.prepare_data - WARNING - Dropping 197 rows where agent not in allowed values. Row indices: [159, 220, 277, 356, 403, 432, 475, 492, 635, 655, 806, 978, 989, 1061, 1604, 1636, 1866, 1868, 1980, 2025, 2152, 2347, 2540, 2577, 2951, 2973, 3078, 3143, 3470, 3473, 3486, 3608, 3609, 3744, 3752, 3927, 4022, 4065, 4134, 4206, 4396, 4600, 4643, 4734, 4922, 4978, 5289, 5405, 5419, 5672, 5736, 5763, 5774, 5796, 6224, 6286, 6448, 6505, 6536, 6807, 6870, 7090, 7386, 7443, 7450, 7471, 7521, 7576, 7584, 7633, 7727, 7854, 8090, 8176, 8202, 8228, 8427, 8509, 8544, 8622, 8855, 9288, 9439, 9458, 9477, 9580, 9608, 9624, 9684, 9727, 9999, 10027, 10111, 10302, 10309, 10353, 10524, 10529, 10569, 10605, 10711, 10735, 10757, 10776, 10858, 10871, 11173, 11308, 11355, 11497, 11514, 11597, 11964, 11966, 12020, 12027, 12133, 12143, 12225, 12381, 12480, 12512, 12643, 12677, 12746, 12851, 12993, 13008, 13113, 13203, 13258, 13312, 13363, 13587, 13721, 13741, 13760, 13808, 13985, 13987, 14085, 14115, 14142, 14149, 14429, 15036, 15064, 15236, 15350, 15463, 15579, 15645, 15692, 15754, 15821, 15911, 15944, 15976, 16223, 16376, 16387, 16465, 16933, 17073, 17328, 17347, 17508, 17594, 17724, 17827, 17865, 17960, 18116, 18273, 18331, 18354, 18372, 18585, 18623, 18639, 18673, 18693, 18757, 18954, 19006, 19114, 19141, 19179, 19284, 19297, 19352, 19395, 19413, 19686, 19804, 19931, 19995] +2026-03-28 13:38:20,840 - __main__ - INFO - Dropped duplicates. DataFrame now has 19803 rows. +2026-03-28 13:38:20,881 - ml.data.utils.persistence.save_data - INFO - Data saved successfully at data\interim\hotel_bookings\v1\2026-03-28T13-38-20_e00d89ec\data.parquet in parquet format with compression snappy. +2026-03-28 13:38:20,881 - __main__ - INFO - Interim data saved successfully at data\interim\hotel_bookings\v1\2026-03-28T13-38-20_e00d89ec\data.parquet with 19803 rows and 36 columns. +2026-03-28 13:38:20,932 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/metadata.json. diff --git a/data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/data.parquet b/data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/data.parquet new file mode 100644 index 00000000..5e6dd90c Binary files /dev/null and b/data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/data.parquet differ diff --git a/data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/metadata.json b/data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/metadata.json new file mode 100644 index 00000000..074ff057 --- /dev/null +++ b/data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/metadata.json @@ -0,0 +1,117 @@ +{ + "rows": 19803, + "columns": { + "count": 36, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "booking_changes", + "deposit_type", + "agent", + "company", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "name", + "email", + "phone_number", + "credit_card", + "reservation_status_date" + ], + "dtypes": { + "hotel": "category", + "is_canceled": "int8", + "lead_time": "int16", + "arrival_date_year": "int16", + "arrival_date_month": "category", + "arrival_date_week_number": "int8", + "arrival_date_day_of_month": "int8", + "stays_in_weekend_nights": "int8", + "stays_in_week_nights": "int8", + "adults": "int16", + "children": "int8", + "babies": "int8", + "meal": "category", + "country": "category", + "market_segment": "category", + "distribution_channel": "category", + "is_repeated_guest": "int8", + "previous_cancellations": "int8", + "previous_bookings_not_canceled": "int8", + "reserved_room_type": "category", + "assigned_room_type": "category", + "booking_changes": "int8", + "deposit_type": "category", + "agent": "string", + "company": "string", + "days_in_waiting_list": "int16", + "customer_type": "category", + "adr": "float32", + "required_car_parking_spaces": "int8", + "total_of_special_requests": "int8", + "reservation_status": "category", + "name": "string", + "email": "string", + "phone_number": "string", + "credit_card": "string", + "reservation_status_date": "datetime64[ns]" + } + }, + "created_at": "2026-03-28T13-38-20", + "created_by": "build_interim_dataset.py", + "owner": "Sebastijan", + "source_data": { + "name": "hotel_bookings", + "version": "v1", + "format": "csv", + "snapshot_id": "2026-03-28T13-37-46_5f55cee6", + "path": "data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/data.csv" + }, + "data": { + "name": "hotel_bookings", + "version": "v1", + "output": { + "path_suffix": "data.parquet", + "format": "parquet", + "compression": "snappy" + }, + "hash": "0bebda2609cda9886f7400bc1e6ba0246756e9afa66539aa82f052853a0bd404" + }, + "memory": { + "old_memory_mb": 21.911672592163086, + "new_memory_mb": 8.876622200012207, + "change_mb": -13.035050392150879, + "change_percentage": -59.489070664614566 + }, + "config_hash": "7d18395ef2c9a0a2f3e192421d12b25e", + "duration": 0.2514511998742819, + "runtime_info": { + "pandas_version": "2.3.3", + "numpy_version": "1.26.4", + "yaml_version": "6.0.3", + "python_version": "3.11.14" + }, + "interim_run_id": "2026-03-28T13-38-20_e00d89ec" +} \ No newline at end of file diff --git a/data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/build_processed_dataset.log b/data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/build_processed_dataset.log new file mode 100644 index 00000000..ae0805bb --- /dev/null +++ b/data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/build_processed_dataset.log @@ -0,0 +1,6 @@ +2026-03-28 13:12:06,133 - ml.utils.snapshots.snapshot_path - INFO - Auto-resolved latest snapshot ID: data\interim\hotel_bookings\v1\2026-03-28T13-12-04_2983adb1 +2026-03-28 13:12:06,221 - __main__ - INFO - Removed columns ['name', 'email', 'phone_number', 'credit_card', 'booking_changes', 'company', 'reservation_status', 'reservation_status_date']. Data shape is now (119385, 28) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests']. +2026-03-28 13:12:07,018 - __main__ - INFO - Added row_id to data. Data shape is now (119385, 29) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests', 'row_id']. Row ID info: {'cols_for_row_id': ['hotel', 'arrival_date_year', 'arrival_date_month', 'arrival_date_day_of_month', 'reserved_room_type', 'assigned_room_type', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'country', 'agent'], 'fingerprint': '456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda'} +2026-03-28 13:12:07,094 - ml.data.utils.persistence.save_data - INFO - Data saved successfully at data\processed\hotel_bookings\v1\2026-03-28T13-12-06_e21dd3f1\data.parquet in parquet format with compression snappy. +2026-03-28 13:12:07,094 - __main__ - INFO - Processed data saved to data\processed\hotel_bookings\v1\2026-03-28T13-12-06_e21dd3f1\data.parquet. +2026-03-28 13:12:07,125 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/metadata.json. diff --git a/data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/data.parquet b/data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/data.parquet new file mode 100644 index 00000000..36d22954 Binary files /dev/null and b/data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/data.parquet differ diff --git a/data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/metadata.json b/data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/metadata.json new file mode 100644 index 00000000..78c9df55 --- /dev/null +++ b/data/processed/hotel_bookings/v1/2026-03-28T13-12-06_e21dd3f1/metadata.json @@ -0,0 +1,127 @@ +{ + "rows": 119385, + "columns": { + "count": 29, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "deposit_type", + "agent", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "row_id" + ], + "dtypes": { + "hotel": "category", + "is_canceled": "int8", + "lead_time": "int16", + "arrival_date_year": "int16", + "arrival_date_month": "category", + "arrival_date_week_number": "int8", + "arrival_date_day_of_month": "int8", + "stays_in_weekend_nights": "int8", + "stays_in_week_nights": "int8", + "adults": "int16", + "children": "float64", + "babies": "int8", + "meal": "category", + "country": "category", + "market_segment": "category", + "distribution_channel": "category", + "is_repeated_guest": "int8", + "previous_cancellations": "int8", + "previous_bookings_not_canceled": "int8", + "reserved_room_type": "category", + "assigned_room_type": "category", + "deposit_type": "category", + "agent": "string", + "days_in_waiting_list": "int16", + "customer_type": "category", + "adr": "float32", + "required_car_parking_spaces": "int8", + "total_of_special_requests": "int8", + "row_id": "object" + } + }, + "created_at": "2026-03-28T13-12-07", + "created_by": "build_processed_dataset.py", + "owner": "Sebastijan", + "source_data": { + "name": "hotel_bookings", + "version": "v1", + "format": "parquet", + "snapshot_id": "2026-03-28T13-12-04_2983adb1", + "path": "data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/data.parquet" + }, + "data": { + "name": "hotel_bookings", + "version": "v1", + "output": { + "path_suffix": "data.parquet", + "format": "parquet", + "compression": "snappy" + }, + "hash": "40d23fd0019d2b2b8572e10da3a081fc0be5520bd702697072ae4470473dc6a5" + }, + "memory": { + "old_memory_mb": 54.28487682342529, + "new_memory_mb": 20.71552562713623, + "change_mb": -33.56935119628906, + "change_percentage": -61.839232509417876 + }, + "config_hash": "32122fd7ffd46798dd432ba4ac5776e3", + "duration": 0.9913486998993903, + "runtime_info": { + "pandas_version": "2.3.3", + "numpy_version": "1.26.4", + "yaml_version": "6.0.3", + "python_version": "3.11.14" + }, + "processed_run_id": "2026-03-28T13-12-06_e21dd3f1", + "row_id_info": { + "cols_for_row_id": [ + "hotel", + "arrival_date_year", + "arrival_date_month", + "arrival_date_day_of_month", + "reserved_room_type", + "assigned_room_type", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "country", + "agent" + ], + "fingerprint": "456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda" + } +} \ No newline at end of file diff --git a/data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/build_processed_dataset.log b/data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/build_processed_dataset.log new file mode 100644 index 00000000..6ce2c545 --- /dev/null +++ b/data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/build_processed_dataset.log @@ -0,0 +1,6 @@ +2026-03-28 13:21:26,984 - ml.utils.snapshots.snapshot_path - INFO - Auto-resolved latest snapshot ID: data\interim\hotel_bookings\v1\2026-03-28T13-21-13_d3d43d17 +2026-03-28 13:21:27,021 - __main__ - INFO - Removed columns ['name', 'email', 'phone_number', 'credit_card', 'booking_changes', 'company', 'reservation_status', 'reservation_status_date']. Data shape is now (10000, 28) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests']. +2026-03-28 13:21:27,086 - __main__ - INFO - Added row_id to data. Data shape is now (10000, 29) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests', 'row_id']. Row ID info: {'cols_for_row_id': ['hotel', 'arrival_date_year', 'arrival_date_month', 'arrival_date_day_of_month', 'reserved_room_type', 'assigned_room_type', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'country', 'agent'], 'fingerprint': '456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda'} +2026-03-28 13:21:27,100 - ml.data.utils.persistence.save_data - INFO - Data saved successfully at data\processed\hotel_bookings\v1\2026-03-28T13-21-26_e33079fe\data.parquet in parquet format with compression snappy. +2026-03-28 13:21:27,101 - __main__ - INFO - Processed data saved to data\processed\hotel_bookings\v1\2026-03-28T13-21-26_e33079fe\data.parquet. +2026-03-28 13:21:27,115 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/metadata.json. diff --git a/data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/data.parquet b/data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/data.parquet new file mode 100644 index 00000000..058fb00f Binary files /dev/null and b/data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/data.parquet differ diff --git a/data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/metadata.json b/data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/metadata.json new file mode 100644 index 00000000..e85b6cf0 --- /dev/null +++ b/data/processed/hotel_bookings/v1/2026-03-28T13-21-26_e33079fe/metadata.json @@ -0,0 +1,127 @@ +{ + "rows": 10000, + "columns": { + "count": 29, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "deposit_type", + "agent", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "row_id" + ], + "dtypes": { + "hotel": "category", + "is_canceled": "int8", + "lead_time": "int16", + "arrival_date_year": "int16", + "arrival_date_month": "category", + "arrival_date_week_number": "int8", + "arrival_date_day_of_month": "int8", + "stays_in_weekend_nights": "int8", + "stays_in_week_nights": "int8", + "adults": "int16", + "children": "int8", + "babies": "int8", + "meal": "category", + "country": "category", + "market_segment": "category", + "distribution_channel": "category", + "is_repeated_guest": "int8", + "previous_cancellations": "int8", + "previous_bookings_not_canceled": "int8", + "reserved_room_type": "category", + "assigned_room_type": "category", + "deposit_type": "category", + "agent": "string", + "days_in_waiting_list": "int16", + "customer_type": "category", + "adr": "float32", + "required_car_parking_spaces": "int8", + "total_of_special_requests": "int8", + "row_id": "object" + } + }, + "created_at": "2026-03-28T13-21-27", + "created_by": "build_processed_dataset.py", + "owner": "Sebastijan", + "source_data": { + "name": "hotel_bookings", + "version": "v1", + "format": "parquet", + "snapshot_id": "2026-03-28T13-21-13_d3d43d17", + "path": "data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/data.parquet" + }, + "data": { + "name": "hotel_bookings", + "version": "v1", + "output": { + "path_suffix": "data.parquet", + "format": "parquet", + "compression": "snappy" + }, + "hash": "d6e44db7cd4bd8930fdcb95749890de67af14b518dd50a72828d85e097e34005" + }, + "memory": { + "old_memory_mb": 4.409453392028809, + "new_memory_mb": 1.661529541015625, + "change_mb": -2.7479238510131836, + "change_percentage": -62.3189227032254 + }, + "config_hash": "32122fd7ffd46798dd432ba4ac5776e3", + "duration": 0.13155569997616112, + "runtime_info": { + "pandas_version": "2.3.3", + "numpy_version": "1.26.4", + "yaml_version": "6.0.3", + "python_version": "3.11.14" + }, + "processed_run_id": "2026-03-28T13-21-26_e33079fe", + "row_id_info": { + "cols_for_row_id": [ + "hotel", + "arrival_date_year", + "arrival_date_month", + "arrival_date_day_of_month", + "reserved_room_type", + "assigned_room_type", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "country", + "agent" + ], + "fingerprint": "456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda" + } +} \ No newline at end of file diff --git a/data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/build_processed_dataset.log b/data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/build_processed_dataset.log new file mode 100644 index 00000000..9a59f1e8 --- /dev/null +++ b/data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/build_processed_dataset.log @@ -0,0 +1,6 @@ +2026-03-28 13:38:31,982 - ml.utils.snapshots.snapshot_path - INFO - Auto-resolved latest snapshot ID: data\interim\hotel_bookings\v1\2026-03-28T13-38-20_e00d89ec +2026-03-28 13:38:32,025 - __main__ - INFO - Removed columns ['name', 'email', 'phone_number', 'credit_card', 'booking_changes', 'company', 'reservation_status', 'reservation_status_date']. Data shape is now (19803, 28) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests']. +2026-03-28 13:38:32,152 - __main__ - INFO - Added row_id to data. Data shape is now (19803, 29) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests', 'row_id']. Row ID info: {'cols_for_row_id': ['hotel', 'arrival_date_year', 'arrival_date_month', 'arrival_date_day_of_month', 'reserved_room_type', 'assigned_room_type', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'country', 'agent'], 'fingerprint': '456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda'} +2026-03-28 13:38:32,173 - ml.data.utils.persistence.save_data - INFO - Data saved successfully at data\processed\hotel_bookings\v1\2026-03-28T13-38-31_8e9e9ec9\data.parquet in parquet format with compression snappy. +2026-03-28 13:38:32,173 - __main__ - INFO - Processed data saved to data\processed\hotel_bookings\v1\2026-03-28T13-38-31_8e9e9ec9\data.parquet. +2026-03-28 13:38:32,187 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/metadata.json. diff --git a/data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/data.parquet b/data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/data.parquet new file mode 100644 index 00000000..982f81c6 Binary files /dev/null and b/data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/data.parquet differ diff --git a/data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/metadata.json b/data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/metadata.json new file mode 100644 index 00000000..69d78e52 --- /dev/null +++ b/data/processed/hotel_bookings/v1/2026-03-28T13-38-31_8e9e9ec9/metadata.json @@ -0,0 +1,127 @@ +{ + "rows": 19803, + "columns": { + "count": 29, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "deposit_type", + "agent", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "row_id" + ], + "dtypes": { + "hotel": "category", + "is_canceled": "int8", + "lead_time": "int16", + "arrival_date_year": "int16", + "arrival_date_month": "category", + "arrival_date_week_number": "int8", + "arrival_date_day_of_month": "int8", + "stays_in_weekend_nights": "int8", + "stays_in_week_nights": "int8", + "adults": "int16", + "children": "int8", + "babies": "int8", + "meal": "category", + "country": "category", + "market_segment": "category", + "distribution_channel": "category", + "is_repeated_guest": "int8", + "previous_cancellations": "int8", + "previous_bookings_not_canceled": "int8", + "reserved_room_type": "category", + "assigned_room_type": "category", + "deposit_type": "category", + "agent": "string", + "days_in_waiting_list": "int16", + "customer_type": "category", + "adr": "float32", + "required_car_parking_spaces": "int8", + "total_of_special_requests": "int8", + "row_id": "object" + } + }, + "created_at": "2026-03-28T13-38-32", + "created_by": "build_processed_dataset.py", + "owner": "Sebastijan", + "source_data": { + "name": "hotel_bookings", + "version": "v1", + "format": "parquet", + "snapshot_id": "2026-03-28T13-38-20_e00d89ec", + "path": "data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/data.parquet" + }, + "data": { + "name": "hotel_bookings", + "version": "v1", + "output": { + "path_suffix": "data.parquet", + "format": "parquet", + "compression": "snappy" + }, + "hash": "a071c6a0beb84870a17ad6ac7b4a6f062992f115bd64fe48149584db7dffbb92" + }, + "memory": { + "old_memory_mb": 8.876622200012207, + "new_memory_mb": 3.28317928314209, + "change_mb": -5.593442916870117, + "change_percentage": -63.01319117605823 + }, + "config_hash": "32122fd7ffd46798dd432ba4ac5776e3", + "duration": 0.20386180002242327, + "runtime_info": { + "pandas_version": "2.3.3", + "numpy_version": "1.26.4", + "yaml_version": "6.0.3", + "python_version": "3.11.14" + }, + "processed_run_id": "2026-03-28T13-38-31_8e9e9ec9", + "row_id_info": { + "cols_for_row_id": [ + "hotel", + "arrival_date_year", + "arrival_date_month", + "arrival_date_day_of_month", + "reserved_room_type", + "assigned_room_type", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "country", + "agent" + ], + "fingerprint": "456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda" + } +} \ No newline at end of file diff --git a/data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/build_processed_dataset.log b/data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/build_processed_dataset.log new file mode 100644 index 00000000..1d0ff05b --- /dev/null +++ b/data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/build_processed_dataset.log @@ -0,0 +1,6 @@ +2026-03-28 13:12:08,096 - ml.utils.snapshots.snapshot_path - INFO - Auto-resolved latest snapshot ID: data\interim\hotel_bookings\v1\2026-03-28T13-12-04_2983adb1 +2026-03-28 13:12:08,173 - __main__ - INFO - Removed columns ['name', 'email', 'phone_number', 'credit_card', 'booking_changes', 'company', 'reservation_status_date']. Data shape is now (119385, 29) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests', 'reservation_status']. +2026-03-28 13:12:08,953 - __main__ - INFO - Added row_id to data. Data shape is now (119385, 30) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests', 'reservation_status', 'row_id']. Row ID info: {'cols_for_row_id': ['hotel', 'arrival_date_year', 'arrival_date_month', 'arrival_date_day_of_month', 'reserved_room_type', 'assigned_room_type', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'country', 'agent'], 'fingerprint': '456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda'} +2026-03-28 13:12:09,034 - ml.data.utils.persistence.save_data - INFO - Data saved successfully at data\processed\hotel_bookings\v2\2026-03-28T13-12-08_a874bed0\data.parquet in parquet format with compression snappy. +2026-03-28 13:12:09,034 - __main__ - INFO - Processed data saved to data\processed\hotel_bookings\v2\2026-03-28T13-12-08_a874bed0\data.parquet. +2026-03-28 13:12:09,065 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/metadata.json. diff --git a/data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/data.parquet b/data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/data.parquet new file mode 100644 index 00000000..5116064e Binary files /dev/null and b/data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/data.parquet differ diff --git a/data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/metadata.json b/data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/metadata.json new file mode 100644 index 00000000..7ca37232 --- /dev/null +++ b/data/processed/hotel_bookings/v2/2026-03-28T13-12-08_a874bed0/metadata.json @@ -0,0 +1,129 @@ +{ + "rows": 119385, + "columns": { + "count": 30, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "deposit_type", + "agent", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "row_id" + ], + "dtypes": { + "hotel": "category", + "is_canceled": "int8", + "lead_time": "int16", + "arrival_date_year": "int16", + "arrival_date_month": "category", + "arrival_date_week_number": "int8", + "arrival_date_day_of_month": "int8", + "stays_in_weekend_nights": "int8", + "stays_in_week_nights": "int8", + "adults": "int16", + "children": "float64", + "babies": "int8", + "meal": "category", + "country": "category", + "market_segment": "category", + "distribution_channel": "category", + "is_repeated_guest": "int8", + "previous_cancellations": "int8", + "previous_bookings_not_canceled": "int8", + "reserved_room_type": "category", + "assigned_room_type": "category", + "deposit_type": "category", + "agent": "string", + "days_in_waiting_list": "int16", + "customer_type": "category", + "adr": "float32", + "required_car_parking_spaces": "int8", + "total_of_special_requests": "int8", + "reservation_status": "category", + "row_id": "object" + } + }, + "created_at": "2026-03-28T13-12-09", + "created_by": "build_processed_dataset.py", + "owner": "Sebastijan", + "source_data": { + "name": "hotel_bookings", + "version": "v1", + "format": "parquet", + "snapshot_id": "2026-03-28T13-12-04_2983adb1", + "path": "data/interim/hotel_bookings/v1/2026-03-28T13-12-04_2983adb1/data.parquet" + }, + "data": { + "name": "hotel_bookings", + "version": "v2", + "output": { + "path_suffix": "data.parquet", + "format": "parquet", + "compression": "snappy" + }, + "hash": "cafcdb0525ffb6f20019ca788dc24fa6257b1a0a36dd07b95b497e60abd7a3ba" + }, + "memory": { + "old_memory_mb": 54.28487682342529, + "new_memory_mb": 20.82966899871826, + "change_mb": -33.45520782470703, + "change_percentage": -61.6289651600909 + }, + "config_hash": "3796ea6e30b4c971b4a950190d7e3277", + "duration": 0.968796500004828, + "runtime_info": { + "pandas_version": "2.3.3", + "numpy_version": "1.26.4", + "yaml_version": "6.0.3", + "python_version": "3.11.14" + }, + "processed_run_id": "2026-03-28T13-12-08_a874bed0", + "row_id_info": { + "cols_for_row_id": [ + "hotel", + "arrival_date_year", + "arrival_date_month", + "arrival_date_day_of_month", + "reserved_room_type", + "assigned_room_type", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "country", + "agent" + ], + "fingerprint": "456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda" + } +} \ No newline at end of file diff --git a/data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/build_processed_dataset.log b/data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/build_processed_dataset.log new file mode 100644 index 00000000..8343b7eb --- /dev/null +++ b/data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/build_processed_dataset.log @@ -0,0 +1,6 @@ +2026-03-28 13:21:47,026 - ml.utils.snapshots.snapshot_path - INFO - Auto-resolved latest snapshot ID: data\interim\hotel_bookings\v1\2026-03-28T13-21-13_d3d43d17 +2026-03-28 13:21:47,055 - __main__ - INFO - Removed columns ['name', 'email', 'phone_number', 'credit_card', 'booking_changes', 'company', 'reservation_status_date']. Data shape is now (10000, 29) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests', 'reservation_status']. +2026-03-28 13:21:47,120 - __main__ - INFO - Added row_id to data. Data shape is now (10000, 30) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests', 'reservation_status', 'row_id']. Row ID info: {'cols_for_row_id': ['hotel', 'arrival_date_year', 'arrival_date_month', 'arrival_date_day_of_month', 'reserved_room_type', 'assigned_room_type', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'country', 'agent'], 'fingerprint': '456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda'} +2026-03-28 13:21:47,135 - ml.data.utils.persistence.save_data - INFO - Data saved successfully at data\processed\hotel_bookings\v2\2026-03-28T13-21-47_5e93c0fa\data.parquet in parquet format with compression snappy. +2026-03-28 13:21:47,135 - __main__ - INFO - Processed data saved to data\processed\hotel_bookings\v2\2026-03-28T13-21-47_5e93c0fa\data.parquet. +2026-03-28 13:21:47,147 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/metadata.json. diff --git a/data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/data.parquet b/data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/data.parquet new file mode 100644 index 00000000..b09a49cb Binary files /dev/null and b/data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/data.parquet differ diff --git a/data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/metadata.json b/data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/metadata.json new file mode 100644 index 00000000..50bd854f --- /dev/null +++ b/data/processed/hotel_bookings/v2/2026-03-28T13-21-47_5e93c0fa/metadata.json @@ -0,0 +1,129 @@ +{ + "rows": 10000, + "columns": { + "count": 30, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "deposit_type", + "agent", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "row_id" + ], + "dtypes": { + "hotel": "category", + "is_canceled": "int8", + "lead_time": "int16", + "arrival_date_year": "int16", + "arrival_date_month": "category", + "arrival_date_week_number": "int8", + "arrival_date_day_of_month": "int8", + "stays_in_weekend_nights": "int8", + "stays_in_week_nights": "int8", + "adults": "int16", + "children": "int8", + "babies": "int8", + "meal": "category", + "country": "category", + "market_segment": "category", + "distribution_channel": "category", + "is_repeated_guest": "int8", + "previous_cancellations": "int8", + "previous_bookings_not_canceled": "int8", + "reserved_room_type": "category", + "assigned_room_type": "category", + "deposit_type": "category", + "agent": "string", + "days_in_waiting_list": "int16", + "customer_type": "category", + "adr": "float32", + "required_car_parking_spaces": "int8", + "total_of_special_requests": "int8", + "reservation_status": "category", + "row_id": "object" + } + }, + "created_at": "2026-03-28T13-21-47", + "created_by": "build_processed_dataset.py", + "owner": "Sebastijan", + "source_data": { + "name": "hotel_bookings", + "version": "v1", + "format": "parquet", + "snapshot_id": "2026-03-28T13-21-13_d3d43d17", + "path": "data/interim/hotel_bookings/v1/2026-03-28T13-21-13_d3d43d17/data.parquet" + }, + "data": { + "name": "hotel_bookings", + "version": "v2", + "output": { + "path_suffix": "data.parquet", + "format": "parquet", + "compression": "snappy" + }, + "hash": "46795a671a3fec20f0f7b6e64a6c4b70838fa5202690ee3ff1fbbb38ddc55b2c" + }, + "memory": { + "old_memory_mb": 4.409453392028809, + "new_memory_mb": 1.6713552474975586, + "change_mb": -2.73809814453125, + "change_percentage": -62.09608994804318 + }, + "config_hash": "3796ea6e30b4c971b4a950190d7e3277", + "duration": 0.12159910006448627, + "runtime_info": { + "pandas_version": "2.3.3", + "numpy_version": "1.26.4", + "yaml_version": "6.0.3", + "python_version": "3.11.14" + }, + "processed_run_id": "2026-03-28T13-21-47_5e93c0fa", + "row_id_info": { + "cols_for_row_id": [ + "hotel", + "arrival_date_year", + "arrival_date_month", + "arrival_date_day_of_month", + "reserved_room_type", + "assigned_room_type", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "country", + "agent" + ], + "fingerprint": "456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda" + } +} \ No newline at end of file diff --git a/data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/build_processed_dataset.log b/data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/build_processed_dataset.log new file mode 100644 index 00000000..051c749f --- /dev/null +++ b/data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/build_processed_dataset.log @@ -0,0 +1,6 @@ +2026-03-28 13:38:53,911 - ml.utils.snapshots.snapshot_path - INFO - Auto-resolved latest snapshot ID: data\interim\hotel_bookings\v1\2026-03-28T13-38-20_e00d89ec +2026-03-28 13:38:53,945 - __main__ - INFO - Removed columns ['name', 'email', 'phone_number', 'credit_card', 'booking_changes', 'company', 'reservation_status_date']. Data shape is now (19803, 29) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests', 'reservation_status']. +2026-03-28 13:38:54,073 - __main__ - INFO - Added row_id to data. Data shape is now (19803, 30) with columns ['hotel', 'is_canceled', 'lead_time', 'arrival_date_year', 'arrival_date_month', 'arrival_date_week_number', 'arrival_date_day_of_month', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'country', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'reserved_room_type', 'assigned_room_type', 'deposit_type', 'agent', 'days_in_waiting_list', 'customer_type', 'adr', 'required_car_parking_spaces', 'total_of_special_requests', 'reservation_status', 'row_id']. Row ID info: {'cols_for_row_id': ['hotel', 'arrival_date_year', 'arrival_date_month', 'arrival_date_day_of_month', 'reserved_room_type', 'assigned_room_type', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'country', 'agent'], 'fingerprint': '456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda'} +2026-03-28 13:38:54,094 - ml.data.utils.persistence.save_data - INFO - Data saved successfully at data\processed\hotel_bookings\v2\2026-03-28T13-38-53_1ea98b55\data.parquet in parquet format with compression snappy. +2026-03-28 13:38:54,094 - __main__ - INFO - Processed data saved to data\processed\hotel_bookings\v2\2026-03-28T13-38-53_1ea98b55\data.parquet. +2026-03-28 13:38:54,108 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/metadata.json. diff --git a/data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/data.parquet b/data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/data.parquet new file mode 100644 index 00000000..f8d11dff Binary files /dev/null and b/data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/data.parquet differ diff --git a/data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/metadata.json b/data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/metadata.json new file mode 100644 index 00000000..96396d79 --- /dev/null +++ b/data/processed/hotel_bookings/v2/2026-03-28T13-38-53_1ea98b55/metadata.json @@ -0,0 +1,129 @@ +{ + "rows": 19803, + "columns": { + "count": 30, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "deposit_type", + "agent", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "row_id" + ], + "dtypes": { + "hotel": "category", + "is_canceled": "int8", + "lead_time": "int16", + "arrival_date_year": "int16", + "arrival_date_month": "category", + "arrival_date_week_number": "int8", + "arrival_date_day_of_month": "int8", + "stays_in_weekend_nights": "int8", + "stays_in_week_nights": "int8", + "adults": "int16", + "children": "int8", + "babies": "int8", + "meal": "category", + "country": "category", + "market_segment": "category", + "distribution_channel": "category", + "is_repeated_guest": "int8", + "previous_cancellations": "int8", + "previous_bookings_not_canceled": "int8", + "reserved_room_type": "category", + "assigned_room_type": "category", + "deposit_type": "category", + "agent": "string", + "days_in_waiting_list": "int16", + "customer_type": "category", + "adr": "float32", + "required_car_parking_spaces": "int8", + "total_of_special_requests": "int8", + "reservation_status": "category", + "row_id": "object" + } + }, + "created_at": "2026-03-28T13-38-54", + "created_by": "build_processed_dataset.py", + "owner": "Sebastijan", + "source_data": { + "name": "hotel_bookings", + "version": "v1", + "format": "parquet", + "snapshot_id": "2026-03-28T13-38-20_e00d89ec", + "path": "data/interim/hotel_bookings/v1/2026-03-28T13-38-20_e00d89ec/data.parquet" + }, + "data": { + "name": "hotel_bookings", + "version": "v2", + "output": { + "path_suffix": "data.parquet", + "format": "parquet", + "compression": "snappy" + }, + "hash": "1cb70110763e6a2697b7c7c5083bce2c47d821961591d4cad55a8cefeed5f608" + }, + "memory": { + "old_memory_mb": 8.876622200012207, + "new_memory_mb": 3.302353858947754, + "change_mb": -5.574268341064453, + "change_percentage": -62.797179101041245 + }, + "config_hash": "3796ea6e30b4c971b4a950190d7e3277", + "duration": 0.1960286998655647, + "runtime_info": { + "pandas_version": "2.3.3", + "numpy_version": "1.26.4", + "yaml_version": "6.0.3", + "python_version": "3.11.14" + }, + "processed_run_id": "2026-03-28T13-38-53_1ea98b55", + "row_id_info": { + "cols_for_row_id": [ + "hotel", + "arrival_date_year", + "arrival_date_month", + "arrival_date_day_of_month", + "reserved_room_type", + "assigned_room_type", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "country", + "agent" + ], + "fingerprint": "456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda" + } +} \ No newline at end of file diff --git a/data/raw/hotel_bookings/v1/2026-02-25T22-43-23_732dfdb7/metadata.json b/data/raw/hotel_bookings/v1/2026-02-25T22-43-23_732dfdb7/metadata.json new file mode 100644 index 00000000..982e67ae --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-02-25T22-43-23_732dfdb7/metadata.json @@ -0,0 +1,94 @@ +{ + "rows": 119390, + "columns": { + "count": 36, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "booking_changes", + "deposit_type", + "agent", + "company", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "reservation_status_date", + "name", + "email", + "phone-number", + "credit_card" + ], + "dtypes": { + "hotel": "object", + "is_canceled": "int64", + "lead_time": "int64", + "arrival_date_year": "int64", + "arrival_date_month": "object", + "arrival_date_week_number": "int64", + "arrival_date_day_of_month": "int64", + "stays_in_weekend_nights": "int64", + "stays_in_week_nights": "int64", + "adults": "int64", + "children": "float64", + "babies": "int64", + "meal": "object", + "country": "object", + "market_segment": "object", + "distribution_channel": "object", + "is_repeated_guest": "int64", + "previous_cancellations": "int64", + "previous_bookings_not_canceled": "int64", + "reserved_room_type": "object", + "assigned_room_type": "object", + "booking_changes": "int64", + "deposit_type": "object", + "agent": "float64", + "company": "float64", + "days_in_waiting_list": "int64", + "customer_type": "object", + "adr": "float64", + "required_car_parking_spaces": "int64", + "total_of_special_requests": "int64", + "reservation_status": "object", + "reservation_status_date": "object", + "name": "object", + "email": "object", + "phone-number": "object", + "credit_card": "object" + } + }, + "created_at": "2026-03-28T13:12:02.341652", + "created_by": "register_raw_snapshot.py", + "owner": "Sebastijan", + "data": { + "name": "hotel_bookings", + "version": "v1", + "format": "csv", + "path_suffix": "data.csv", + "hash": "72e8a75c0a3d5c083c7d769f1b77d8565f99442d6da4c0af655ced51ee8adee0" + }, + "memory_usage_mb": 138.0193214416504, + "raw_run_id": "2026-02-25T22-43-23_732dfdb7" +} \ No newline at end of file diff --git a/data/raw/hotel_bookings/v1/2026-02-25T22-43-23_732dfdb7/register_raw_snapshot.log b/data/raw/hotel_bookings/v1/2026-02-25T22-43-23_732dfdb7/register_raw_snapshot.log new file mode 100644 index 00000000..8fc9104e --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-02-25T22-43-23_732dfdb7/register_raw_snapshot.log @@ -0,0 +1 @@ +2026-03-28 13:12:02,502 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/raw/hotel_bookings/v1/2026-02-25T22-43-23_732dfdb7/metadata.json. diff --git a/data/raw/hotel_bookings/v1/2026-03-22T10-40-04_435d8e03/data.csv b/data/raw/hotel_bookings/v1/2026-03-22T10-40-04_435d8e03/data.csv deleted file mode 100644 index e9264763..00000000 --- a/data/raw/hotel_bookings/v1/2026-03-22T10-40-04_435d8e03/data.csv +++ /dev/null @@ -1,50001 +0,0 @@ -hotel,is_canceled,lead_time,arrival_date_year,arrival_date_month,arrival_date_week_number,arrival_date_day_of_month,stays_in_weekend_nights,stays_in_week_nights,adults,children,babies,meal,country,market_segment,distribution_channel,is_repeated_guest,previous_cancellations,previous_bookings_not_canceled,reserved_room_type,assigned_room_type,booking_changes,deposit_type,agent,company,days_in_waiting_list,customer_type,adr,required_car_parking_spaces,total_of_special_requests,reservation_status,reservation_status_month -City Hotel,1,366,2017,June,22,26,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,19,Transient,76.03,0,0,Canceled,2020-02-01 -Resort Hotel,0,244,2016,October,45,17,2,5,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,276.0,179.0,0,Transient,69.37,0,0,Check-Out,2019-10-04 -City Hotel,1,277,2017,July,44,10,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,76.59,0,0,Canceled,2017-12-03 -City Hotel,1,41,2015,December,50,6,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,103.59,0,1,Canceled,2018-08-03 -Resort Hotel,0,31,2015,August,39,30,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,138.08,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2015,August,38,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,60.32,0,0,Canceled,2018-08-03 -City Hotel,0,10,2016,June,23,3,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.83,0,1,Check-Out,2019-07-04 -City Hotel,0,8,2016,July,33,18,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,149.07,0,2,Check-Out,2019-06-03 -City Hotel,1,57,2016,April,18,13,2,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,12.0,179.0,0,Transient,118.18,0,1,Canceled,2019-01-03 -City Hotel,0,105,2016,July,29,23,0,3,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,C,C,2,No Deposit,343.0,179.0,0,Transient,137.1,0,0,Check-Out,2019-05-04 -Resort Hotel,0,264,2016,October,17,30,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,65.04,0,0,Check-Out,2019-05-04 -Resort Hotel,1,255,2016,August,38,5,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,129.79,0,1,Canceled,2019-05-04 -Resort Hotel,0,54,2016,December,50,10,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,244.0,179.0,0,Transient,44.39,0,0,Check-Out,2019-08-04 -Resort Hotel,0,43,2016,October,43,4,1,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient-Party,19.87,0,0,Check-Out,2019-12-04 -City Hotel,1,2,2016,March,15,13,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,1,0,A,K,0,No Deposit,6.0,179.0,0,Transient,76.91,0,0,Canceled,2019-01-03 -City Hotel,1,246,2016,July,29,10,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,68.2,0,0,Canceled,2019-03-04 -Resort Hotel,1,48,2016,May,17,9,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,65.42,0,1,No-Show,2019-02-01 -Resort Hotel,1,295,2016,April,16,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,60.93,0,2,Canceled,2019-02-01 -Resort Hotel,1,186,2016,May,21,27,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,315.0,179.0,0,Transient,67.19,0,0,Canceled,2019-03-04 -Resort Hotel,0,104,2017,July,32,18,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,77.29,0,3,Check-Out,2019-11-03 -Resort Hotel,0,156,2016,March,16,24,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,75,Transient-Party,121.65,0,0,Check-Out,2018-12-03 -Resort Hotel,0,41,2015,August,35,18,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,221.58,0,2,Check-Out,2018-06-02 -City Hotel,1,276,2016,September,32,26,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.27,0,0,Canceled,2019-04-03 -Resort Hotel,0,2,2016,October,43,4,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,35.16,1,1,Check-Out,2019-10-04 -City Hotel,0,3,2016,February,7,6,0,1,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient,70.69,0,1,Check-Out,2018-10-03 -Resort Hotel,0,37,2016,March,18,21,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,117.98,0,3,Check-Out,2018-12-03 -City Hotel,0,261,2016,August,33,4,1,1,1,0.0,0,BB,SWE,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,167.77,0,1,Check-Out,2019-05-04 -City Hotel,1,110,2015,August,36,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,152.86,0,0,Canceled,2018-06-02 -Resort Hotel,1,320,2017,July,30,27,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,240.0,179.0,0,Transient,210.53,0,3,Canceled,2020-03-03 -Resort Hotel,0,0,2017,March,11,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,68.0,0,Transient,40.17,1,0,Check-Out,2020-03-03 -Resort Hotel,0,147,2016,July,33,31,3,10,1,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,C,0,Refundable,14.0,179.0,0,Transient,95.2,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2015,January,4,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,16.0,179.0,0,Group,44.09,0,0,Check-Out,2018-07-03 -City Hotel,1,182,2017,March,10,13,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.1,0,2,Canceled,2019-12-04 -City Hotel,0,8,2015,December,51,14,0,4,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,70.41,0,0,Check-Out,2019-11-03 -City Hotel,1,16,2017,May,20,2,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,160.22,0,2,Canceled,2020-04-02 -City Hotel,0,115,2016,June,23,27,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.76,0,1,Check-Out,2019-05-04 -City Hotel,1,14,2017,May,22,10,0,1,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,331.0,0,Transient,72.83,0,0,Canceled,2020-04-02 -Resort Hotel,1,340,2017,April,17,29,0,1,1,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,80.87,0,0,Canceled,2020-04-02 -City Hotel,0,190,2016,August,37,9,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,205.51,0,1,Check-Out,2020-07-03 -Resort Hotel,0,12,2015,December,53,30,2,3,1,1.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,100.77,0,3,Check-Out,2018-09-02 -Resort Hotel,0,135,2015,July,32,7,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,108.38,0,1,Check-Out,2018-06-02 -City Hotel,1,0,2017,April,17,14,0,3,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,92.49,0,0,Canceled,2020-03-03 -City Hotel,0,25,2017,May,21,20,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,130.52,0,0,Canceled,2020-02-01 -City Hotel,0,186,2017,May,16,10,2,3,2,0.0,0,HB,FRA,Offline TA/TO,Corporate,0,0,0,A,G,1,No Deposit,79.0,179.0,0,Transient-Party,96.82,0,0,Check-Out,2020-05-03 -Resort Hotel,1,26,2017,May,19,24,2,5,2,1.0,0,HB,NOR,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,196.49,0,0,Canceled,2020-01-04 -City Hotel,0,34,2015,October,44,25,1,0,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,239.0,0,Transient-Party,68.02,0,0,Check-Out,2018-10-03 -City Hotel,1,49,2015,July,34,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,45.0,0,Transient,100.59,0,0,Canceled,2018-06-02 -City Hotel,1,152,2015,October,49,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.02,0,0,Canceled,2018-08-03 -Resort Hotel,0,312,2015,August,37,28,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,33.96,0,0,Check-Out,2018-01-31 -City Hotel,1,171,2016,May,21,2,0,1,2,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,10.0,179.0,0,Transient,178.53,0,0,Canceled,2019-02-01 -Resort Hotel,0,39,2017,March,16,16,2,5,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,0.0,1,0,Check-Out,2020-05-03 -Resort Hotel,0,49,2017,July,30,5,4,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,103.47,0,3,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,February,12,28,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,66.13,0,0,Check-Out,2020-03-03 -City Hotel,1,43,2016,February,11,29,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,14.0,179.0,0,Transient,122.78,0,0,Canceled,2019-02-01 -City Hotel,0,230,2015,September,43,6,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.86,0,0,Check-Out,2019-07-04 -City Hotel,1,17,2017,August,37,13,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,178.31,0,1,Canceled,2019-11-03 -Resort Hotel,0,143,2017,July,25,8,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,85.07,0,0,Check-Out,2019-12-04 -City Hotel,1,112,2016,November,48,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.71,0,0,Canceled,2018-07-03 -City Hotel,1,379,2016,October,45,9,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,83.0,0,0,Canceled,2019-07-04 -Resort Hotel,1,143,2016,August,27,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,75.04,0,0,Canceled,2019-01-03 -City Hotel,0,41,2016,November,46,25,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient-Party,117.2,0,0,Check-Out,2019-10-04 -City Hotel,0,22,2016,September,44,23,2,0,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,81.31,1,0,Check-Out,2019-11-03 -Resort Hotel,0,155,2017,June,32,24,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Contract,122.94,0,1,Check-Out,2020-06-02 -City Hotel,0,3,2015,September,36,28,1,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.34,1,0,Check-Out,2018-08-03 -Resort Hotel,0,32,2016,December,4,15,0,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,2.01,0,1,Check-Out,2019-10-04 -City Hotel,0,37,2017,April,21,10,0,1,2,0.0,0,BB,POL,Aviation,TA/TO,0,0,0,F,F,0,No Deposit,83.0,179.0,0,Transient,163.73,0,0,Check-Out,2020-02-01 -City Hotel,0,18,2015,September,41,18,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,95.65,0,0,Check-Out,2018-08-03 -City Hotel,1,300,2016,September,27,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,115.05,0,0,Canceled,2019-02-01 -City Hotel,1,107,2016,May,17,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,62,Transient,115.44,0,0,Canceled,2018-12-03 -City Hotel,0,282,2016,July,26,1,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,101.74,0,1,Check-Out,2019-07-04 -City Hotel,0,16,2016,July,39,5,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,160.68,0,0,Check-Out,2018-09-02 -City Hotel,0,72,2015,December,51,6,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,58.72,0,1,Check-Out,2018-07-03 -City Hotel,0,1,2017,February,9,14,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,G,0,No Deposit,39.0,179.0,0,Transient-Party,81.3,0,0,Check-Out,2020-02-01 -Resort Hotel,0,64,2016,August,32,18,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,241.0,179.0,0,Transient,179.04,0,3,Check-Out,2019-07-04 -City Hotel,1,10,2016,January,4,2,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.81,0,0,No-Show,2019-10-04 -Resort Hotel,1,1,2016,June,35,1,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,135.21,0,0,Check-Out,2019-08-04 -City Hotel,1,29,2016,March,12,28,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,30.14,0,0,Canceled,2018-11-02 -City Hotel,0,2,2016,May,42,12,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,2,No Deposit,12.0,179.0,0,Transient-Party,76.87,0,0,Check-Out,2019-07-04 -Resort Hotel,1,16,2017,February,10,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,180.0,179.0,0,Transient,31.06,0,0,Canceled,2019-12-04 -Resort Hotel,0,146,2016,August,38,31,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,241.0,179.0,0,Transient,160.07,1,1,Check-Out,2019-06-03 -Resort Hotel,0,48,2016,January,4,30,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,237.33,1,0,Check-Out,2019-11-03 -City Hotel,1,89,2017,July,33,23,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.66,0,0,Canceled,2020-03-03 -City Hotel,1,4,2015,December,50,16,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,F,0,Non Refund,14.0,179.0,0,Transient,0.0,0,0,Canceled,2018-06-02 -City Hotel,0,1,2017,March,10,5,0,3,1,0.0,0,BB,IRL,Groups,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,77.59,0,0,Check-Out,2020-04-02 -City Hotel,0,38,2015,September,42,31,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Group,79.16,0,0,Check-Out,2018-09-02 -Resort Hotel,0,107,2015,October,51,21,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,31.0,179.0,0,Transient-Party,76.38,1,0,Check-Out,2019-09-03 -City Hotel,1,13,2016,October,45,28,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,161.57,0,0,Canceled,2019-09-03 -City Hotel,1,299,2016,July,38,2,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,192.91,0,0,Canceled,2019-04-03 -City Hotel,1,4,2017,February,10,21,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,60.18,0,1,Canceled,2019-11-03 -City Hotel,0,2,2016,September,43,16,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,8.0,179.0,0,Transient,2.37,0,1,Check-Out,2019-05-04 -City Hotel,0,96,2016,July,36,9,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,108.33,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,September,22,10,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,92.71,1,1,Check-Out,2018-06-02 -City Hotel,0,34,2016,October,32,2,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.48,1,0,Check-Out,2019-06-03 -City Hotel,1,12,2015,September,49,6,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,A,0,Non Refund,11.0,179.0,40,Transient,78.6,0,0,Canceled,2017-11-02 -Resort Hotel,0,146,2016,August,37,17,2,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,190.18,0,1,Check-Out,2019-05-04 -City Hotel,1,228,2016,August,36,22,2,7,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,144.25,0,0,Canceled,2019-04-03 -City Hotel,0,44,2016,December,52,2,2,2,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,G,D,0,No Deposit,12.0,179.0,0,Transient,156.59,0,3,Check-Out,2019-10-04 -City Hotel,0,49,2017,May,25,6,1,1,1,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,119.86,0,2,Check-Out,2020-04-02 -City Hotel,0,89,2017,February,9,24,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,64.38,0,0,Check-Out,2019-11-03 -City Hotel,1,320,2017,July,31,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.07,0,0,Canceled,2020-06-02 -Resort Hotel,0,2,2017,March,13,11,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,184.18,0,1,Check-Out,2020-02-01 -Resort Hotel,1,100,2017,March,16,16,0,1,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,182.42,0,0,Canceled,2020-02-01 -City Hotel,0,41,2017,June,28,8,0,3,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.35,0,1,Check-Out,2020-07-03 -City Hotel,0,0,2017,April,22,13,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,A,3,No Deposit,12.0,179.0,0,Group,94.93,0,1,Check-Out,2020-03-03 -Resort Hotel,1,34,2017,March,10,21,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,239.0,179.0,0,Transient,77.25,0,3,Check-Out,2019-02-01 -City Hotel,1,99,2016,July,31,16,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,83.43,0,1,Canceled,2019-05-04 -City Hotel,1,265,2016,July,28,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,102.4,0,2,Canceled,2018-07-03 -Resort Hotel,0,0,2016,May,23,25,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,194.81,0,1,Check-Out,2019-03-04 -City Hotel,1,187,2016,January,3,28,2,5,3,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,74.94,0,0,Check-Out,2018-11-02 -City Hotel,0,14,2015,December,50,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,15.0,247.0,0,Transient,60.4,0,0,Check-Out,2019-11-03 -City Hotel,1,7,2015,October,45,29,2,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.85,0,1,Canceled,2018-08-03 -Resort Hotel,1,317,2016,August,35,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,89.35,0,0,Canceled,2018-05-03 -City Hotel,0,34,2017,May,10,10,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-01-04 -City Hotel,0,150,2017,January,4,28,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -Resort Hotel,0,26,2016,July,14,23,2,3,2,0.0,0,HB,PRT,Direct,Direct,1,0,1,C,I,1,No Deposit,14.0,179.0,0,Transient,105.82,0,0,Check-Out,2019-02-01 -City Hotel,1,2,2016,March,11,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,37.0,179.0,21,Transient,37.74,0,0,Canceled,2018-10-03 -City Hotel,0,88,2016,May,21,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,158.0,179.0,0,Transient-Party,80.52,0,0,Check-Out,2019-02-01 -City Hotel,1,120,2016,March,30,2,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,70.91,0,2,Canceled,2019-04-03 -City Hotel,0,30,2016,March,26,6,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,50.94,0,2,Check-Out,2019-01-03 -City Hotel,1,143,2015,July,37,15,0,4,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,96.32,0,0,Canceled,2018-06-02 -Resort Hotel,0,33,2016,March,10,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,40.7,1,1,Check-Out,2018-12-03 -Resort Hotel,0,7,2016,March,11,27,0,1,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,249.0,179.0,0,Transient,197.22,1,0,Check-Out,2019-02-01 -City Hotel,0,62,2017,August,30,10,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.45,0,1,Check-Out,2020-07-03 -City Hotel,1,294,2016,September,46,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.79,0,0,Canceled,2019-05-04 -City Hotel,0,416,2016,June,23,27,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.25,0,0,Check-Out,2020-07-03 -Resort Hotel,0,12,2016,September,44,29,2,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,122.53,0,0,Check-Out,2019-08-04 -Resort Hotel,0,171,2017,March,17,29,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,128.14,0,2,Check-Out,2020-01-04 -Resort Hotel,1,0,2016,December,52,21,2,2,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,146.17,0,0,Canceled,2018-12-03 -Resort Hotel,1,87,2017,January,9,16,2,2,2,2.0,0,HB,PRT,Online TA,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,98.62,0,0,Canceled,2018-11-02 -City Hotel,0,92,2017,May,23,17,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.65,0,1,Check-Out,2020-06-02 -Resort Hotel,0,152,2017,June,22,4,1,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,29,2017,February,10,6,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,65.38,0,1,Check-Out,2019-08-04 -Resort Hotel,0,307,2016,March,16,31,1,4,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,G,2,Refundable,12.0,223.0,0,Transient-Party,36.54,1,0,Check-Out,2019-04-03 -Resort Hotel,0,191,2015,June,37,21,2,2,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,C,C,0,No Deposit,182.0,179.0,0,Transient,78.21,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2017,April,15,9,0,3,1,0.0,0,BB,,Complementary,Direct,1,0,1,A,F,2,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-12-04 -Resort Hotel,0,13,2017,May,24,15,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,171.0,179.0,0,Transient-Party,165.04,1,0,Check-Out,2020-02-01 -City Hotel,0,78,2017,May,21,21,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.62,1,1,Check-Out,2020-03-03 -City Hotel,0,9,2017,June,21,2,0,1,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,127.72,0,2,Check-Out,2019-12-04 -City Hotel,0,10,2015,July,33,15,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,140.22,0,1,Check-Out,2018-06-02 -City Hotel,0,190,2016,October,33,30,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,82.23,0,3,Check-Out,2019-09-03 -City Hotel,0,5,2015,October,44,21,1,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,65.7,0,0,Check-Out,2018-08-03 -Resort Hotel,0,82,2017,August,36,13,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,11.0,179.0,0,Transient,214.18,0,2,Check-Out,2020-05-03 -City Hotel,1,12,2017,April,23,17,2,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,10.0,179.0,0,Transient,183.17,0,0,Canceled,2019-10-04 -City Hotel,1,194,2016,October,42,15,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,10.0,179.0,0,Transient,114.25,0,0,Canceled,2019-07-04 -City Hotel,1,1,2017,January,31,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.17,0,1,Canceled,2019-12-04 -Resort Hotel,0,15,2017,June,28,30,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,73.08,1,2,Check-Out,2020-02-01 -City Hotel,1,11,2015,August,33,4,0,5,3,0.0,0,BB,,Direct,Direct,0,0,0,B,B,2,No Deposit,15.0,179.0,0,Transient,184.74,0,1,Canceled,2018-07-03 -City Hotel,0,4,2015,August,38,9,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,78.55,0,1,Check-Out,2018-08-03 -City Hotel,1,51,2016,June,28,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,13.0,48.0,0,Transient,79.85,0,0,Canceled,2019-08-04 -Resort Hotel,1,70,2015,October,46,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient-Party,61.16,0,1,Canceled,2018-09-02 -City Hotel,1,297,2016,June,33,16,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,Non Refund,9.0,179.0,0,Transient,160.68,0,0,Canceled,2019-11-03 -Resort Hotel,0,247,2015,October,44,28,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,60.54,0,0,Check-Out,2018-01-03 -City Hotel,1,377,2016,September,37,28,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,260.0,179.0,0,Transient-Party,76.38,0,0,Check-Out,2019-06-03 -City Hotel,0,200,2017,April,15,24,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,71.05,0,3,Check-Out,2020-04-02 -Resort Hotel,0,141,2016,August,30,16,2,5,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient-Party,154.79,0,1,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,August,36,13,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,3,No Deposit,251.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,February,9,24,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,15.0,179.0,0,Group,43.07,0,1,Check-Out,2018-11-02 -City Hotel,1,366,2017,April,18,23,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,63,Transient,86.58,0,0,Canceled,2019-10-04 -Resort Hotel,0,110,2017,May,44,9,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,61.71,1,1,Check-Out,2019-02-01 -Resort Hotel,1,60,2016,February,10,25,2,5,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,45.12,0,0,Canceled,2019-02-01 -Resort Hotel,0,188,2016,August,36,16,0,3,2,1.0,0,HB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,251.49,0,1,Check-Out,2019-05-04 -Resort Hotel,1,149,2017,May,34,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,134.52,0,0,Canceled,2020-03-03 -City Hotel,1,21,2016,June,28,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,83.92,0,0,Canceled,2019-03-04 -City Hotel,1,431,2015,October,37,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,63,Transient,60.1,0,0,Canceled,2018-08-03 -City Hotel,1,108,2016,September,44,20,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,84.94,0,0,Canceled,2019-05-04 -City Hotel,0,0,2016,October,45,17,0,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,E,0,No Deposit,15.0,176.0,0,Transient,113.76,0,0,Check-Out,2019-08-04 -City Hotel,0,92,2017,March,10,15,1,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.54,0,2,Check-Out,2020-03-03 -City Hotel,1,50,2016,February,8,10,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,61.19,0,0,Canceled,2018-10-03 -Resort Hotel,1,24,2016,January,4,2,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,73.82,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2015,October,43,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,17.0,74.0,0,Transient,34.95,0,0,Check-Out,2018-07-03 -City Hotel,0,48,2017,March,16,24,2,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.29,0,2,Check-Out,2020-01-04 -City Hotel,1,149,2017,June,29,27,0,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,135.4,0,0,Canceled,2020-06-02 -City Hotel,1,189,2016,May,23,6,1,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.55,0,2,Canceled,2019-11-03 -City Hotel,1,314,2015,October,45,19,0,3,1,0.0,0,BB,ISR,Groups,Corporate,0,1,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,62.91,0,0,Canceled,2017-12-03 -City Hotel,1,2,2015,October,43,30,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,30.0,179.0,0,Contract,112.81,0,0,Canceled,2018-08-03 -Resort Hotel,0,149,2016,March,17,9,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,319.0,179.0,0,Transient,82.42,0,0,Canceled,2019-11-03 -Resort Hotel,1,40,2017,July,31,27,0,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,236.0,179.0,0,Transient,248.47,0,0,Canceled,2019-03-04 -City Hotel,1,166,2016,August,38,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,22.0,179.0,0,Transient,116.58,0,0,Canceled,2018-07-03 -City Hotel,0,182,2016,October,45,8,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,43.37,0,0,Check-Out,2019-08-04 -Resort Hotel,0,283,2016,August,37,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,15.0,222.0,0,Transient,133.78,0,0,Check-Out,2019-05-04 -Resort Hotel,0,157,2016,July,31,16,1,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.9,0,1,Check-Out,2018-07-03 -Resort Hotel,1,319,2016,October,45,16,2,5,2,2.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,37.09,0,0,Canceled,2019-07-04 -Resort Hotel,1,0,2016,March,16,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,61.47,0,0,Canceled,2019-01-03 -Resort Hotel,0,95,2016,October,53,24,2,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,80.88,0,2,Check-Out,2019-11-03 -City Hotel,0,50,2016,April,21,24,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,169.2,0,1,Check-Out,2019-03-04 -Resort Hotel,0,15,2016,May,22,28,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,120.7,0,1,Check-Out,2019-09-03 -City Hotel,0,46,2017,March,10,31,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,97.21,0,0,Check-Out,2020-02-01 -City Hotel,0,38,2016,December,50,25,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,127.35,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2017,March,10,13,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,213.0,0,Transient,76.89,0,0,Check-Out,2020-04-02 -Resort Hotel,0,20,2016,October,44,16,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,81.81,0,2,Check-Out,2019-08-04 -City Hotel,1,272,2015,November,50,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,124.36,0,0,Canceled,2018-09-02 -Resort Hotel,0,13,2016,April,17,12,0,10,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,D,D,0,No Deposit,15.0,233.0,0,Transient,33.0,0,0,Check-Out,2019-02-01 -City Hotel,1,60,2017,June,27,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,164.68,0,0,Canceled,2020-03-03 -City Hotel,1,47,2017,August,36,24,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,162.38,0,0,Canceled,2019-12-04 -Resort Hotel,0,283,2017,April,18,25,2,4,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,239.0,179.0,0,Transient,204.91,1,3,Check-Out,2020-03-03 -City Hotel,1,39,2016,March,9,25,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,18,Transient,61.31,0,0,Canceled,2018-12-03 -City Hotel,0,10,2017,January,5,27,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,77.92,0,1,Check-Out,2019-10-04 -City Hotel,0,22,2016,May,46,31,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,E,0,No Deposit,181.0,179.0,0,Transient,79.66,0,0,Check-Out,2019-04-03 -City Hotel,0,10,2017,May,9,12,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient-Party,72.73,0,0,Check-Out,2019-12-04 -Resort Hotel,0,2,2017,June,30,10,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,212.0,179.0,0,Transient,103.67,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2017,February,9,7,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,42.57,0,0,Check-Out,2018-10-03 -Resort Hotel,0,147,2017,August,37,24,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,201.28,0,0,Check-Out,2020-07-03 -Resort Hotel,0,103,2017,March,17,25,2,1,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,61.74,0,0,Check-Out,2020-03-03 -Resort Hotel,0,70,2016,March,18,11,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,75.86,0,1,Check-Out,2019-02-01 -City Hotel,0,267,2015,September,43,10,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,78.93,0,0,Check-Out,2019-02-01 -City Hotel,1,260,2016,May,17,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,78.0,179.0,0,Transient,124.85,0,0,Canceled,2019-01-03 -City Hotel,0,15,2016,January,2,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,37,Transient,59.85,0,0,Check-Out,2018-12-03 -City Hotel,1,275,2015,October,43,22,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.89,0,0,Canceled,2018-08-03 -City Hotel,0,0,2017,March,16,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,48.13,1,1,Check-Out,2020-03-03 -City Hotel,0,3,2015,November,49,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,259.0,0,Transient,28.66,1,0,Check-Out,2018-06-02 -Resort Hotel,0,17,2016,May,20,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,86.97,0,0,Check-Out,2019-01-03 -City Hotel,0,1,2016,January,8,18,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,97.02,0,1,Check-Out,2019-02-01 -Resort Hotel,1,25,2017,August,34,11,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,140.81,0,0,Canceled,2020-02-01 -City Hotel,0,52,2015,July,31,5,0,1,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient-Party,81.28,0,0,Check-Out,2018-09-02 -Resort Hotel,1,325,2016,March,16,22,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,242.0,179.0,0,Transient,60.78,0,0,Canceled,2019-02-01 -Resort Hotel,0,19,2015,September,43,1,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,243.0,179.0,0,Transient,74.33,0,0,Check-Out,2018-08-03 -City Hotel,0,104,2015,December,51,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.55,0,0,Check-Out,2018-11-02 -City Hotel,1,8,2016,April,17,13,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,162.43,0,2,Canceled,2019-02-01 -City Hotel,1,16,2017,January,8,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.32,0,0,Canceled,2019-10-04 -City Hotel,1,160,2017,July,26,29,2,5,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,154.13,0,0,Canceled,2020-02-01 -Resort Hotel,1,37,2016,December,53,23,2,6,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,198.0,179.0,0,Transient,41.68,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,November,50,28,1,0,2,0.0,0,BB,FRA,Complementary,Direct,0,0,0,C,D,0,No Deposit,15.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-01-03 -City Hotel,1,444,2016,September,43,13,1,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.37,0,0,Canceled,2018-08-03 -Resort Hotel,0,142,2016,March,9,31,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,43.3,0,0,Check-Out,2018-11-02 -Resort Hotel,1,243,2016,February,7,21,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,135.0,179.0,0,Transient,43.91,0,0,Canceled,2019-07-04 -Resort Hotel,0,45,2017,April,17,20,0,3,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,F,0,No Deposit,250.0,179.0,0,Transient,159.83,0,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,March,12,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,2,No Deposit,14.0,83.0,0,Transient-Party,48.31,0,0,Check-Out,2019-03-04 -City Hotel,0,255,2016,May,23,27,2,0,1,0.0,0,BB,DEU,Corporate,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,71.62,1,0,Check-Out,2019-01-03 -City Hotel,1,102,2016,October,41,18,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,67.09,0,1,Canceled,2019-07-04 -City Hotel,1,92,2016,March,15,24,2,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,15.0,179.0,0,Transient,76.51,0,0,Canceled,2019-01-03 -City Hotel,0,0,2017,April,17,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,243.0,0,Transient,90.55,0,0,Check-Out,2020-04-02 -City Hotel,0,222,2016,May,20,19,0,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,93.69,0,1,Check-Out,2019-02-01 -City Hotel,0,34,2015,October,42,5,2,2,2,0.0,0,HB,BEL,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,76.47,0,0,Check-Out,2018-05-03 -City Hotel,0,2,2016,September,26,21,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,12.0,331.0,0,Transient,93.1,0,2,Check-Out,2019-05-04 -Resort Hotel,0,11,2016,March,3,21,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,61.58,0,0,Check-Out,2018-10-03 -City Hotel,0,1,2017,March,11,9,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,206.0,1,1,Check-Out,2020-03-03 -Resort Hotel,0,38,2016,May,28,18,2,3,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,201.56,0,1,Check-Out,2019-06-03 -Resort Hotel,0,20,2017,April,11,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,59.47,1,1,Check-Out,2020-03-03 -Resort Hotel,0,41,2017,March,18,18,2,3,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,D,D,1,No Deposit,17.0,229.0,0,Transient,64.77,0,0,Check-Out,2020-03-03 -City Hotel,1,420,2016,October,43,17,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,39,Transient,61.35,0,0,Canceled,2018-11-02 -City Hotel,0,93,2017,March,11,25,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,75.3,0,1,Check-Out,2019-12-04 -City Hotel,0,52,2016,June,16,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,115.74,0,1,Check-Out,2019-05-04 -Resort Hotel,0,33,2016,September,37,28,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,100.91,1,2,Check-Out,2019-06-03 -City Hotel,1,252,2017,February,7,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,72.46,0,0,Canceled,2019-11-03 -Resort Hotel,0,163,2017,April,18,31,2,7,2,1.0,0,BB,DEU,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,115.42,0,2,Check-Out,2020-04-02 -City Hotel,1,415,2016,October,24,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,41,Transient,95.2,0,0,Canceled,2018-12-03 -City Hotel,1,112,2016,July,35,19,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.69,0,1,Canceled,2019-02-01 -Resort Hotel,0,10,2016,May,23,9,1,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient-Party,0.0,1,0,Check-Out,2019-05-04 -City Hotel,1,187,2015,September,33,14,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,89.86,0,0,Canceled,2017-12-03 -Resort Hotel,1,284,2016,October,42,30,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,1,No Deposit,319.0,179.0,0,Transient-Party,46.1,0,0,Canceled,2019-05-04 -City Hotel,0,47,2017,April,17,29,3,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,222.0,0,0,Check-Out,2020-03-03 -City Hotel,1,27,2016,December,50,30,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,68.67,0,0,Canceled,2019-09-03 -City Hotel,1,264,2017,May,16,29,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Contract,43.95,0,1,Canceled,2020-03-03 -City Hotel,1,200,2016,August,36,23,0,7,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,173.0,179.0,0,Transient,127.37,0,0,Canceled,2019-04-03 -City Hotel,0,1,2017,March,8,6,2,0,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.7,0,1,Check-Out,2020-02-01 -City Hotel,0,94,2017,June,24,10,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,1,0,0,A,A,2,No Deposit,84.0,45.0,0,Transient-Party,98.75,0,0,Check-Out,2020-03-03 -City Hotel,0,93,2017,June,26,22,0,1,1,0.0,0,SC,GBR,Aviation,TA/TO,1,0,0,A,A,0,No Deposit,7.0,331.0,0,Transient,76.02,0,0,Check-Out,2020-03-03 -City Hotel,0,86,2016,August,22,7,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,95.78,0,0,Check-Out,2019-06-03 -City Hotel,0,20,2015,September,30,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,62.91,0,0,Check-Out,2018-08-03 -City Hotel,0,45,2017,March,8,29,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,78.72,0,2,Check-Out,2020-04-02 -City Hotel,0,8,2016,August,27,15,1,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,109.4,0,1,Check-Out,2019-06-03 -City Hotel,0,60,2017,March,10,24,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,119.43,0,1,Check-Out,2020-03-03 -Resort Hotel,1,214,2017,August,10,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,131.58,1,0,Canceled,2020-06-02 -Resort Hotel,0,8,2016,January,4,31,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,35.81,0,0,Check-Out,2019-10-04 -City Hotel,1,39,2015,August,36,21,2,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,166.55,0,0,Canceled,2018-06-02 -City Hotel,0,15,2016,August,23,14,0,2,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,166.44,0,1,Check-Out,2019-06-03 -City Hotel,0,1,2015,August,37,10,2,3,2,2.0,0,BB,AUT,Direct,Direct,0,0,0,D,K,1,No Deposit,16.0,179.0,0,Transient,160.95,0,0,Check-Out,2018-06-02 -City Hotel,1,130,2016,August,33,24,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,166.51,0,1,Canceled,2019-05-04 -City Hotel,0,11,2016,July,37,21,2,3,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,217.67,0,0,Check-Out,2019-04-03 -City Hotel,0,25,2015,October,46,6,0,2,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,69.0,0,Transient-Party,120.61,0,0,Check-Out,2018-09-02 -City Hotel,1,52,2016,January,4,5,1,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.33,0,0,Canceled,2018-10-03 -City Hotel,0,18,2017,April,16,13,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,193.71,0,0,Check-Out,2020-07-03 -City Hotel,0,12,2016,November,50,28,1,3,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,63.11,0,0,Check-Out,2019-09-03 -Resort Hotel,1,258,2015,September,43,11,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,117.3,0,0,Canceled,2018-08-03 -City Hotel,0,33,2017,August,35,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,75.22,1,2,Check-Out,2019-09-03 -City Hotel,0,1,2015,October,47,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient-Party,103.55,0,0,Check-Out,2018-07-03 -City Hotel,1,375,2017,June,10,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,40,Transient,77.33,0,0,Canceled,2019-11-03 -City Hotel,0,6,2015,December,50,8,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,90.45,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,June,26,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,72.0,0,Transient-Party,125.58,0,0,Check-Out,2019-07-04 -City Hotel,1,17,2016,August,32,20,0,1,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,138.83,0,0,Canceled,2019-05-04 -City Hotel,1,53,2016,April,20,10,0,2,3,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,116.64,0,0,Canceled,2019-02-01 -Resort Hotel,0,2,2017,January,2,25,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,100.0,0,Transient,42.26,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2016,September,37,12,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,149.07,0,0,Check-Out,2019-08-04 -Resort Hotel,0,46,2016,July,31,21,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,117.37,0,1,Check-Out,2019-02-01 -City Hotel,0,30,2016,October,44,5,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.95,0,2,Check-Out,2019-12-04 -Resort Hotel,1,182,2017,April,17,28,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,26.41,0,0,Canceled,2019-08-04 -City Hotel,1,28,2016,January,21,20,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,82.57,0,1,No-Show,2019-02-01 -City Hotel,0,0,2017,March,12,29,0,1,2,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,50.0,0,Transient,60.92,0,0,Check-Out,2020-01-04 -City Hotel,1,114,2016,December,51,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,59.92,0,0,Canceled,2019-09-03 -City Hotel,0,14,2016,March,22,25,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,132.69,0,1,Check-Out,2019-06-03 -City Hotel,1,54,2017,August,22,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,63.93,0,0,Canceled,2020-02-01 -City Hotel,1,44,2017,February,15,17,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,36.65,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,October,44,27,0,2,1,0.0,0,BB,CHN,Online TA,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,94.97,0,0,Check-Out,2019-09-03 -City Hotel,0,63,2017,May,25,14,1,0,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,137.57,0,0,No-Show,2019-09-03 -City Hotel,0,304,2017,June,26,28,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,8.0,179.0,0,Transient,228.26,0,1,Check-Out,2020-05-03 -City Hotel,0,48,2016,December,50,13,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.51,0,1,Check-Out,2018-11-02 -City Hotel,0,102,2016,March,17,13,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,68.78,0,0,Check-Out,2020-02-01 -Resort Hotel,0,3,2017,July,35,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,19.0,179.0,0,Transient,151.2,1,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2017,August,35,20,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,125.38,0,0,Check-Out,2020-06-02 -City Hotel,1,251,2016,June,28,17,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,149.6,0,0,Canceled,2019-01-03 -Resort Hotel,0,34,2016,June,25,24,2,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,73.5,1,0,Check-Out,2019-03-04 -Resort Hotel,1,240,2016,October,44,15,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,59.84,0,0,Canceled,2019-07-04 -City Hotel,1,146,2016,October,45,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,19,Transient,91.81,0,0,Canceled,2019-10-04 -Resort Hotel,0,23,2017,February,9,5,2,1,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,77.55,0,3,Check-Out,2020-04-02 -City Hotel,1,2,2016,October,45,13,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,109.09,0,0,Canceled,2019-08-04 -City Hotel,0,3,2016,December,3,21,0,1,1,0.0,0,BB,BRA,Aviation,Corporate,1,0,0,A,E,0,No Deposit,14.0,173.0,0,Transient,69.29,1,0,Check-Out,2019-10-04 -City Hotel,0,49,2017,April,20,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,136.12,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,March,10,29,1,0,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,38.39,0,0,Check-Out,2020-02-01 -Resort Hotel,0,301,2015,September,38,4,4,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Contract,60.66,0,1,Check-Out,2018-01-03 -Resort Hotel,0,97,2015,July,33,24,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,49.86,0,0,Check-Out,2018-05-03 -City Hotel,0,41,2017,March,10,30,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.37,0,2,Check-Out,2019-11-03 -Resort Hotel,0,37,2015,December,50,5,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,79.0,179.0,0,Transient-Party,32.69,0,0,Check-Out,2018-08-03 -City Hotel,1,96,2016,July,36,20,1,5,3,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,202.99,0,0,Canceled,2019-08-04 -City Hotel,0,20,2015,September,42,9,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.07,0,0,Check-Out,2018-08-03 -City Hotel,1,52,2016,April,15,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,61.33,0,0,Canceled,2019-02-01 -City Hotel,1,112,2017,May,22,10,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,128.79,0,0,Canceled,2019-10-04 -City Hotel,0,0,2015,October,45,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,39.33,0,0,Check-Out,2018-09-02 -City Hotel,1,349,2016,May,22,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.8,0,0,Canceled,2017-12-03 -City Hotel,0,98,2016,June,31,27,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.78,0,2,Check-Out,2019-03-04 -City Hotel,0,16,2016,March,18,8,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,69.49,0,0,Check-Out,2019-02-01 -Resort Hotel,0,48,2016,March,16,3,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,130.91,1,1,Check-Out,2019-04-03 -Resort Hotel,0,246,2016,September,37,13,4,1,3,1.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,305.0,179.0,0,Transient,152.35,0,0,Check-Out,2019-09-03 -Resort Hotel,0,19,2016,March,16,16,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,346.0,179.0,0,Transient,60.39,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,June,31,20,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.25,0,0,Check-Out,2019-04-03 -City Hotel,1,52,2015,October,38,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,69.97,0,0,Canceled,2018-09-02 -Resort Hotel,0,50,2017,February,10,20,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,1,No Deposit,183.0,331.0,0,Transient-Party,33.63,0,0,Check-Out,2020-03-03 -Resort Hotel,0,166,2017,July,36,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,177.91,0,1,Check-Out,2020-06-02 -City Hotel,0,20,2016,October,41,3,1,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.13,0,1,Check-Out,2019-09-03 -Resort Hotel,1,148,2015,July,33,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,253.0,179.0,0,Transient,207.44,0,0,Canceled,2018-06-02 -City Hotel,0,251,2017,June,20,23,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient,105.82,1,1,Check-Out,2020-02-01 -City Hotel,0,3,2017,August,38,27,1,1,1,0.0,0,BB,ESP,Aviation,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,97.1,0,0,Check-Out,2020-06-02 -Resort Hotel,1,2,2015,October,43,20,2,5,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,40.75,0,3,Canceled,2018-08-03 -Resort Hotel,0,8,2017,May,22,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,123.9,1,1,Check-Out,2020-03-03 -City Hotel,0,3,2017,May,20,14,0,1,2,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,F,K,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-04-02 -City Hotel,0,238,2017,August,39,13,1,1,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,225.42,0,1,Check-Out,2020-07-03 -Resort Hotel,0,305,2017,February,13,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,65.84,0,1,Check-Out,2019-12-04 -Resort Hotel,1,266,2017,July,25,5,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,11.0,179.0,0,Transient,100.97,0,3,Canceled,2020-03-03 -Resort Hotel,0,105,2016,October,42,4,0,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,1,No Deposit,14.0,179.0,0,Transient,48.57,0,0,Check-Out,2019-09-03 -City Hotel,0,158,2017,June,26,19,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,62.28,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2017,January,3,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,80.0,0,Transient,62.07,0,0,Check-Out,2019-10-04 -City Hotel,1,10,2017,May,16,16,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,73.5,0,0,Canceled,2019-11-03 -Resort Hotel,1,18,2015,September,37,29,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,185.6,0,0,Canceled,2018-08-03 -Resort Hotel,0,151,2016,March,18,31,2,5,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,223.0,0,Transient-Party,75.16,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,November,50,8,0,1,1,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,69.25,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,August,22,6,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,209.53,1,1,Check-Out,2019-02-01 -City Hotel,1,106,2017,April,17,11,2,3,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.32,0,2,No-Show,2020-03-03 -City Hotel,0,12,2017,June,23,27,0,5,2,0.0,0,BB,ITA,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,185.5,0,0,Check-Out,2020-05-03 -City Hotel,0,264,2017,May,16,27,0,4,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,C,2,No Deposit,17.0,179.0,0,Transient-Party,125.48,0,0,Check-Out,2020-04-02 -Resort Hotel,1,100,2016,December,53,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,64.74,0,0,Canceled,2019-09-03 -City Hotel,1,117,2016,June,27,5,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,90.78,0,2,Canceled,2018-05-03 -Resort Hotel,0,110,2015,November,42,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,174.0,179.0,0,Contract,49.92,0,0,Check-Out,2018-09-02 -City Hotel,1,12,2017,December,53,9,2,0,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.15,0,0,Canceled,2019-11-03 -City Hotel,1,85,2016,June,19,31,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.04,0,0,Canceled,2019-02-01 -City Hotel,1,384,2016,June,20,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,88.93,0,0,Canceled,2019-02-01 -Resort Hotel,0,135,2017,March,16,22,2,3,2,0.0,0,BB,CN,Groups,Corporate,0,0,0,A,A,0,No Deposit,9.0,228.0,0,Transient,118.99,0,0,Canceled,2020-05-03 -Resort Hotel,0,0,2016,March,19,3,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,146.46,1,0,Check-Out,2019-02-01 -Resort Hotel,0,147,2017,March,10,24,0,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,86.09,0,0,Check-Out,2019-10-04 -City Hotel,1,52,2015,November,45,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,62.79,0,1,Canceled,2018-08-03 -Resort Hotel,0,366,2015,August,42,29,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.81,0,0,Check-Out,2018-06-02 -City Hotel,1,12,2017,August,36,6,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.65,0,0,Canceled,2020-07-03 -City Hotel,1,8,2016,February,3,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,18,Transient,112.54,0,0,No-Show,2018-11-02 -City Hotel,0,54,2015,June,27,9,0,2,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,4.0,331.0,0,Transient-Party,62.78,0,0,Check-Out,2019-03-04 -City Hotel,1,396,2015,October,45,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,59.11,0,0,Canceled,2018-08-03 -City Hotel,0,410,2015,October,42,9,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient,35.53,0,0,Check-Out,2018-08-03 -City Hotel,1,45,2016,June,27,17,4,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,163.0,179.0,0,Transient,102.67,0,0,Canceled,2019-04-03 -City Hotel,0,200,2015,December,45,27,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,96.87,1,0,Check-Out,2019-09-03 -City Hotel,1,396,2016,August,37,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.21,0,0,Canceled,2017-10-03 -City Hotel,0,246,2016,June,21,9,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,145.68,0,1,Check-Out,2019-07-04 -Resort Hotel,0,101,2016,December,53,15,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,11.0,179.0,0,Transient,89.03,0,2,Check-Out,2019-11-03 -City Hotel,0,1,2017,January,4,13,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,249.0,0,Transient,74.36,0,0,Check-Out,2019-09-03 -City Hotel,0,55,2015,November,44,30,1,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient,116.14,0,2,Check-Out,2018-08-03 -City Hotel,1,87,2016,June,27,23,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,62.64,0,0,Canceled,2019-03-04 -Resort Hotel,1,13,2015,July,32,17,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,173.81,0,0,Canceled,2018-06-02 -Resort Hotel,0,1,2015,February,34,16,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,147.0,179.0,0,Transient-Party,45.04,0,0,Check-Out,2018-06-02 -Resort Hotel,0,371,2016,April,22,28,2,1,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,75.64,0,0,Check-Out,2019-07-04 -Resort Hotel,0,12,2016,October,41,23,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,51.31,0,1,Check-Out,2019-05-04 -Resort Hotel,0,242,2017,August,34,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,82.49,0,2,Check-Out,2019-06-03 -City Hotel,0,33,2015,October,42,4,0,2,1,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,22.0,179.0,0,Transient-Party,95.9,0,0,Check-Out,2018-08-03 -City Hotel,0,53,2016,December,45,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,188.0,179.0,0,Transient,72.27,0,0,Check-Out,2019-11-03 -Resort Hotel,0,239,2017,July,33,25,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,203.88,0,3,Check-Out,2020-06-02 -City Hotel,0,162,2016,June,26,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,21,Transient,110.39,0,0,Check-Out,2019-04-03 -Resort Hotel,1,386,2015,July,34,23,2,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.6,0,0,Canceled,2018-07-03 -City Hotel,1,310,2017,May,20,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.55,0,0,Canceled,2020-02-01 -City Hotel,0,3,2017,February,3,17,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,0,259,2017,June,26,11,2,3,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,E,0,No Deposit,157.0,232.0,0,Transient-Party,103.59,0,3,Check-Out,2020-03-03 -Resort Hotel,0,3,2016,June,49,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,58.74,0,2,Check-Out,2019-07-04 -Resort Hotel,0,302,2016,June,44,10,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,105.36,0,0,Check-Out,2019-02-01 -City Hotel,0,43,2017,March,22,8,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,128.1,0,0,Check-Out,2020-02-01 -Resort Hotel,1,96,2015,December,51,16,0,5,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,2,Non Refund,249.0,179.0,0,Transient,62.58,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,November,51,6,0,1,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,110.86,0,1,Check-Out,2019-05-04 -Resort Hotel,1,34,2016,May,21,2,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,196.02,0,0,Canceled,2019-07-04 -City Hotel,0,108,2016,December,49,9,0,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,69.28,0,0,Check-Out,2019-11-03 -City Hotel,1,49,2015,February,5,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,7.0,179.0,0,Contract,60.22,0,1,Canceled,2018-12-03 -City Hotel,0,2,2016,October,48,30,0,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,109.15,0,3,Check-Out,2019-06-03 -City Hotel,1,254,2015,October,45,19,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,43,Transient,95.35,0,0,Canceled,2018-12-03 -City Hotel,0,32,2017,February,33,16,0,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,10.0,179.0,0,Transient,108.93,0,1,Check-Out,2020-04-02 -City Hotel,0,106,2016,August,37,6,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,82.08,0,1,Check-Out,2019-05-04 -City Hotel,0,3,2017,May,22,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,275.0,179.0,0,Transient-Party,201.38,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2016,September,43,28,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,E,F,3,No Deposit,17.0,45.0,0,Transient,0.02,0,1,Check-Out,2019-09-03 -Resort Hotel,0,27,2016,March,41,6,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-03-04 -Resort Hotel,1,391,2017,September,35,31,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,60.79,0,1,Canceled,2019-11-03 -Resort Hotel,0,96,2016,April,8,9,2,5,2,0.0,0,SC,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Contract,70.28,0,0,Check-Out,2019-04-03 -City Hotel,0,71,2017,June,21,27,1,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,161.8,0,0,Check-Out,2020-02-01 -City Hotel,0,10,2016,April,26,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,154.35,1,0,Check-Out,2019-03-04 -City Hotel,1,426,2017,August,27,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient,110.42,0,0,Canceled,2017-12-03 -City Hotel,0,31,2017,January,4,18,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,97.0,179.0,0,Transient-Party,72.95,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,October,45,18,0,1,2,0.0,0,HB,ESP,Direct,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient-Party,168.58,1,0,Check-Out,2018-06-02 -City Hotel,0,98,2017,May,20,21,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,171.34,0,2,Check-Out,2020-03-03 -City Hotel,0,99,2017,May,23,9,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,120.76,0,1,Check-Out,2020-03-03 -City Hotel,1,155,2016,August,30,20,2,5,3,0.0,0,BB,CHN,Online TA,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,127.76,0,0,Canceled,2019-03-04 -Resort Hotel,1,402,2016,June,15,28,2,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,324.0,179.0,0,Transient,77.84,0,0,Canceled,2019-02-01 -City Hotel,0,2,2016,September,43,21,1,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,106.52,0,2,Check-Out,2019-11-03 -City Hotel,1,288,2016,June,29,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,40,Transient,63.7,0,0,Canceled,2017-10-03 -Resort Hotel,0,145,2016,March,44,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,75,Transient-Party,74.76,1,0,Check-Out,2019-08-04 -Resort Hotel,0,362,2017,June,36,28,1,2,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.03,1,1,Check-Out,2020-05-03 -City Hotel,0,88,2017,March,11,31,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,96.09,0,0,Check-Out,2019-12-04 -City Hotel,0,4,2017,June,24,17,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,4.18,0,0,Check-Out,2020-07-03 -City Hotel,0,270,2016,August,35,16,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,86.01,0,1,Check-Out,2019-06-03 -City Hotel,0,164,2016,October,44,24,2,3,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.9,0,1,Check-Out,2019-05-04 -City Hotel,1,30,2015,December,51,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,62.47,0,0,Canceled,2018-10-03 -City Hotel,0,84,2016,April,24,10,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,235.62,0,2,Check-Out,2019-02-01 -City Hotel,1,13,2017,May,23,28,1,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.29,0,0,Canceled,2019-12-04 -Resort Hotel,0,36,2016,December,51,2,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,93.56,0,3,Check-Out,2019-11-03 -City Hotel,0,151,2017,June,25,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,135.79,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2015,October,45,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,86.0,179.0,0,Group,59.9,0,1,Check-Out,2018-10-03 -Resort Hotel,0,331,2016,December,51,27,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,C,0,No Deposit,242.0,179.0,0,Transient-Party,110.09,1,0,Check-Out,2019-03-04 -Resort Hotel,0,14,2017,March,10,9,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,0,No Deposit,10.0,242.0,0,Transient-Party,41.95,0,0,Check-Out,2020-03-03 -City Hotel,1,245,2015,July,38,30,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,106.01,0,2,Canceled,2018-06-02 -City Hotel,1,80,2016,February,10,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,17,Transient,68.68,0,0,Canceled,2018-12-03 -Resort Hotel,0,4,2016,January,4,30,0,3,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,H,D,0,No Deposit,250.0,179.0,0,Transient,42.88,0,0,Check-Out,2019-11-03 -City Hotel,0,50,2017,April,17,31,0,1,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.5,0,1,Check-Out,2020-03-03 -City Hotel,0,104,2017,July,33,30,1,3,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,144.21,0,0,Check-Out,2019-05-04 -Resort Hotel,1,101,2017,April,19,29,0,1,2,0.0,0,BB,USA,Direct,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,161.53,1,0,Canceled,2019-12-04 -Resort Hotel,0,9,2017,May,24,28,2,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,84.0,179.0,0,Transient-Party,92.45,0,0,Check-Out,2019-11-03 -Resort Hotel,1,149,2017,May,36,31,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,103.7,0,0,Canceled,2019-11-03 -City Hotel,0,236,2016,October,44,17,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.7,0,0,Check-Out,2019-06-03 -Resort Hotel,0,147,2017,July,37,28,2,10,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient-Party,206.01,1,0,Check-Out,2020-07-03 -Resort Hotel,0,2,2016,January,4,9,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,62.21,0,1,Check-Out,2018-11-02 -City Hotel,0,3,2015,October,42,4,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,76.17,0,0,Check-Out,2018-08-03 -Resort Hotel,0,25,2016,March,19,15,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,0,D,I,1,No Deposit,96.0,179.0,0,Transient-Party,57.74,1,3,Check-Out,2018-12-03 -City Hotel,0,3,2016,July,40,13,0,1,1,0.0,0,BB,CN,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,147.69,0,0,Canceled,2018-06-02 -City Hotel,0,9,2015,October,46,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,33.84,0,0,Check-Out,2018-07-03 -City Hotel,1,2,2017,March,10,29,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,41,Transient,58.9,0,0,Canceled,2018-10-03 -City Hotel,0,263,2015,October,42,18,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,36.64,0,1,Check-Out,2017-10-03 -City Hotel,0,3,2016,July,35,26,0,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,223.87,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2017,January,2,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,13.0,93.0,0,Transient,32.41,0,0,Check-Out,2019-10-04 -Resort Hotel,0,12,2015,October,42,15,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,80.0,179.0,0,Transient,67.2,0,0,Check-Out,2019-09-03 -City Hotel,1,0,2017,February,11,27,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,82.0,0,Transient-Party,65.91,0,2,No-Show,2020-02-01 -City Hotel,0,265,2016,June,27,20,1,2,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,40.0,179.0,0,Transient,74.2,0,0,Check-Out,2019-01-03 -City Hotel,0,11,2016,August,16,21,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,116.2,0,1,Check-Out,2018-11-02 -City Hotel,0,114,2016,October,45,28,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,189.2,1,2,Check-Out,2019-05-04 -City Hotel,0,52,2017,May,22,31,2,5,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,136.77,0,3,Check-Out,2020-04-02 -City Hotel,0,90,2016,May,22,5,2,3,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,225.26,0,1,Canceled,2019-02-01 -Resort Hotel,0,0,2016,July,32,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,156.2,0,0,Check-Out,2019-05-04 -City Hotel,1,41,2016,December,53,11,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.66,0,2,No-Show,2019-10-04 -City Hotel,1,0,2016,January,10,14,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.9,0,1,Canceled,2018-11-02 -Resort Hotel,0,198,2015,August,36,18,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,2018-06-02 -City Hotel,0,43,2017,January,3,2,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.42,0,2,Check-Out,2020-02-01 -City Hotel,0,0,2016,May,22,6,0,1,2,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,81.23,0,0,Check-Out,2019-03-04 -Resort Hotel,1,10,2017,May,18,22,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,F,1,No Deposit,198.0,179.0,0,Transient,115.74,0,0,Canceled,2020-06-02 -Resort Hotel,0,44,2016,December,53,27,1,2,2,0.0,0,Undefined,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,46.0,179.0,0,Transient-Party,59.3,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,April,18,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,119.74,1,0,Check-Out,2019-03-04 -City Hotel,1,29,2017,February,10,28,2,1,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,140.08,0,0,Canceled,2019-09-03 -Resort Hotel,0,1,2015,October,44,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,58.89,0,0,Canceled,2018-06-02 -Resort Hotel,0,18,2016,April,17,4,0,1,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,220.0,0,Transient-Party,36.41,0,0,Check-Out,2019-03-04 -Resort Hotel,0,13,2015,November,53,2,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,62.42,0,1,Check-Out,2018-06-02 -Resort Hotel,1,3,2016,February,11,2,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,247.0,179.0,0,Transient,46.68,0,0,Canceled,2018-12-03 -City Hotel,0,29,2016,October,45,24,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.99,0,0,Check-Out,2019-10-04 -Resort Hotel,0,33,2016,April,17,21,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,75.0,179.0,0,Transient,68.49,0,0,Check-Out,2020-04-02 -City Hotel,1,400,2017,June,26,26,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,119.64,0,0,Canceled,2020-03-03 -Resort Hotel,0,147,2016,June,25,20,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,46.06,1,0,Check-Out,2019-11-03 -Resort Hotel,0,11,2016,September,44,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,80.46,1,2,Check-Out,2018-08-03 -City Hotel,1,280,2016,October,43,26,4,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,10.0,179.0,75,Transient,70.23,0,0,Canceled,2019-08-04 -Resort Hotel,0,101,2015,September,33,26,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,151.15,0,2,Check-Out,2018-06-02 -City Hotel,0,1,2015,October,26,10,0,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,96.07,0,0,Check-Out,2019-01-03 -Resort Hotel,1,59,2016,August,34,18,2,6,3,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,207.05,0,1,Canceled,2019-07-04 -Resort Hotel,0,2,2016,March,10,9,0,1,2,0.0,0,BB,CHE,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,35.82,0,1,Check-Out,2019-01-03 -City Hotel,0,90,2017,May,25,10,2,3,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,75.0,179.0,0,Transient-Party,107.1,0,0,Check-Out,2020-04-02 -City Hotel,1,144,2016,November,51,19,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,61.52,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2015,January,5,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,62,Transient-Party,36.31,0,0,Check-Out,2018-10-03 -City Hotel,1,7,2016,November,51,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,Non Refund,14.0,331.0,0,Transient,91.81,0,0,No-Show,2019-11-03 -Resort Hotel,0,2,2015,August,38,27,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,180.0,179.0,0,Transient-Party,70.13,0,0,Check-Out,2018-09-02 -Resort Hotel,0,42,2015,December,50,30,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,235.0,179.0,0,Transient,96.21,0,1,Check-Out,2018-12-03 -Resort Hotel,0,30,2016,March,16,15,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,C,0,Non Refund,378.0,179.0,0,Transient-Party,80.0,0,0,Check-Out,2019-02-01 -Resort Hotel,1,257,2016,March,18,31,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,13.0,222.0,75,Transient-Party,60.8,0,0,Canceled,2019-02-01 -City Hotel,0,2,2016,June,38,30,0,1,1,0.0,0,FB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,81.08,0,0,Check-Out,2018-12-03 -City Hotel,1,138,2016,August,20,17,2,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,3,No Deposit,10.0,179.0,0,Transient,107.78,0,0,Canceled,2019-07-04 -Resort Hotel,0,27,2017,May,21,6,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient-Party,95.92,0,0,Check-Out,2020-04-02 -City Hotel,1,444,2016,June,36,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,35.0,179.0,0,Transient,74.46,0,0,Canceled,2019-06-03 -Resort Hotel,0,262,2016,June,26,13,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient-Party,62.9,0,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2015,November,42,30,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,31.98,0,0,Check-Out,2018-08-03 -Resort Hotel,0,20,2016,August,42,28,0,10,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,147.76,0,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2017,April,18,20,4,10,2,0.0,0,HB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,185.0,179.0,0,Transient,71.75,0,0,Check-Out,2020-04-02 -City Hotel,1,92,2016,September,44,28,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.85,0,0,Canceled,2019-06-03 -City Hotel,1,268,2016,July,33,21,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.15,0,1,Canceled,2019-04-03 -City Hotel,1,100,2016,June,27,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,42,Transient,70.34,0,1,Canceled,2019-01-03 -Resort Hotel,1,159,2017,May,22,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,378.0,179.0,0,Transient,171.59,0,0,Canceled,2020-04-02 -Resort Hotel,0,145,2016,August,36,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,160.0,179.0,0,Transient,62.52,0,1,Check-Out,2019-09-03 -Resort Hotel,0,15,2016,June,28,28,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,91.42,0,0,Canceled,2019-05-04 -Resort Hotel,1,22,2017,June,23,26,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,228.69,1,0,Canceled,2020-05-03 -Resort Hotel,0,13,2016,June,44,2,0,1,2,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.01,0,0,Check-Out,2019-05-04 -Resort Hotel,1,2,2015,December,53,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,239.0,179.0,0,Transient,96.28,0,0,Canceled,2018-11-02 -City Hotel,0,145,2017,July,33,21,2,4,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.43,0,3,Check-Out,2019-10-04 -City Hotel,1,13,2017,April,16,10,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,78.92,0,0,Canceled,2018-11-02 -City Hotel,0,9,2017,May,23,15,0,3,2,0.0,0,HB,ESP,Groups,GDS,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,129.5,0,0,Check-Out,2020-02-01 -City Hotel,0,35,2017,April,19,24,2,2,1,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,170.0,179.0,0,Transient-Party,64.29,0,0,Check-Out,2020-04-02 -City Hotel,0,44,2017,May,17,24,2,5,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,80.0,179.0,0,Transient-Party,195.61,0,0,Check-Out,2020-04-02 -City Hotel,1,104,2016,August,37,2,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.68,0,0,Canceled,2019-05-04 -City Hotel,1,149,2016,March,8,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,111.44,0,0,Canceled,2018-10-03 -Resort Hotel,0,0,2016,May,22,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,81.0,179.0,0,Transient-Party,122.17,1,0,Check-Out,2019-04-03 -Resort Hotel,0,1,2016,December,52,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,E,F,0,No Deposit,250.0,179.0,0,Group,63.23,0,1,Check-Out,2018-08-03 -City Hotel,1,0,2016,April,18,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,59.0,0,Transient,82.45,0,0,Canceled,2019-03-04 -City Hotel,0,114,2015,August,37,27,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.12,0,0,Check-Out,2018-08-03 -Resort Hotel,1,95,2016,March,14,13,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,78.0,179.0,0,Transient,41.85,0,0,Canceled,2019-01-03 -Resort Hotel,0,3,2015,January,4,7,0,1,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,37.65,0,0,Check-Out,2018-11-02 -Resort Hotel,0,159,2016,March,18,22,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,69.53,0,0,Check-Out,2019-03-04 -City Hotel,0,258,2015,September,34,6,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Contract,62.62,0,0,Check-Out,2018-08-03 -City Hotel,0,143,2016,November,53,10,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,151.65,0,1,Check-Out,2018-09-02 -Resort Hotel,1,129,2015,September,44,27,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,94.87,0,0,No-Show,2018-05-03 -City Hotel,0,0,2016,June,25,2,1,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,98.53,0,0,Check-Out,2019-02-01 -City Hotel,0,14,2017,July,25,27,0,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.6,0,0,Check-Out,2020-04-02 -City Hotel,0,268,2016,October,25,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,77.68,0,0,Check-Out,2019-08-04 -Resort Hotel,0,267,2017,July,23,5,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,123.65,1,0,Check-Out,2020-02-01 -City Hotel,1,49,2017,August,37,2,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Canceled,2020-06-02 -City Hotel,0,14,2016,May,22,6,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,156.9,0,0,Check-Out,2019-02-01 -City Hotel,0,41,2016,June,27,15,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,115.7,0,1,Check-Out,2019-05-04 -City Hotel,0,3,2017,July,31,28,0,1,1,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,108.1,0,0,Check-Out,2020-06-02 -Resort Hotel,1,131,2016,July,44,21,2,4,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,223.25,0,0,Canceled,2019-08-04 -City Hotel,1,443,2016,September,44,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,89.19,0,0,Canceled,2018-08-03 -City Hotel,1,280,2015,October,46,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.52,0,0,Canceled,2018-01-03 -City Hotel,0,39,2017,October,22,15,2,3,2,1.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient,74.04,0,0,Check-Out,2020-05-03 -City Hotel,1,113,2017,June,27,7,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.72,0,0,Canceled,2020-05-03 -Resort Hotel,0,81,2017,March,10,16,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,E,E,0,No Deposit,240.0,179.0,0,Transient,85.17,0,1,Check-Out,2020-02-01 -Resort Hotel,1,164,2016,March,17,28,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,154.0,179.0,0,Transient,79.73,0,0,Canceled,2019-03-04 -Resort Hotel,0,37,2017,March,16,28,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,37.83,0,0,Check-Out,2019-09-03 -Resort Hotel,0,40,2015,December,50,24,0,4,2,2.0,0,FB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient-Party,69.24,0,2,No-Show,2018-06-02 -Resort Hotel,0,253,2017,May,15,20,2,4,2,1.0,0,HB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.78,1,1,Check-Out,2020-03-03 -Resort Hotel,1,42,2015,December,51,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,75.0,179.0,0,Transient,58.82,0,0,Canceled,2019-11-03 -City Hotel,1,0,2017,August,36,2,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,149.0,179.0,0,Transient,1.13,0,0,Canceled,2020-07-03 -City Hotel,1,101,2017,April,21,27,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,170.0,179.0,0,Transient,123.1,0,0,Canceled,2020-02-01 -Resort Hotel,0,15,2015,September,43,14,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Contract,191.56,1,2,Check-Out,2018-06-02 -Resort Hotel,1,226,2015,October,42,6,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,39.54,0,0,Canceled,2018-08-03 -City Hotel,0,18,2017,February,11,22,1,1,1,0.0,0,BB,CN,Offline TA/TO,GDS,0,0,0,A,B,0,No Deposit,195.0,179.0,0,Transient,96.25,0,0,Check-Out,2019-11-03 -Resort Hotel,0,41,2015,October,43,20,1,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,51.34,0,0,Check-Out,2019-08-04 -City Hotel,0,11,2016,December,52,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,45.0,0,Transient,34.83,1,0,Check-Out,2019-11-03 -Resort Hotel,0,190,2017,March,28,28,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,249.0,179.0,0,Transient,104.87,1,1,Check-Out,2020-03-03 -City Hotel,1,6,2016,January,3,22,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,87.13,0,0,No-Show,2018-12-03 -City Hotel,1,16,2017,June,21,4,0,1,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,194.39,0,0,Canceled,2020-01-04 -City Hotel,1,350,2017,June,29,4,0,1,1,0.0,0,BB,PRT,Groups,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,132.49,0,0,Canceled,2019-06-03 -City Hotel,1,83,2016,May,31,29,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.87,0,0,Canceled,2019-02-01 -Resort Hotel,0,13,2017,May,24,14,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,218.23,0,1,Check-Out,2020-02-01 -City Hotel,0,35,2017,March,10,11,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,7.0,331.0,0,Transient,184.28,0,1,Check-Out,2020-01-04 -City Hotel,0,0,2015,October,45,13,1,0,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,0,No Deposit,14.0,171.0,0,Transient,159.06,0,0,Check-Out,2018-08-03 -City Hotel,1,421,2015,September,38,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.16,0,0,Canceled,2018-01-03 -Resort Hotel,1,318,2016,October,46,31,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient-Party,147.66,0,3,Canceled,2019-08-04 -Resort Hotel,0,15,2017,January,8,6,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,46.11,0,1,Check-Out,2020-03-03 -City Hotel,1,56,2016,May,23,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,135.0,179.0,0,Transient,73.84,0,0,Canceled,2019-02-01 -City Hotel,1,281,2017,August,38,24,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,94.67,0,1,Canceled,2019-10-04 -Resort Hotel,1,125,2016,July,33,30,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,61.21,0,1,Canceled,2020-02-01 -Resort Hotel,1,267,2015,October,42,28,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,88.0,179.0,0,Contract,61.82,0,0,Canceled,2017-10-03 -City Hotel,1,33,2016,March,16,9,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.42,0,0,Canceled,2019-02-01 -City Hotel,1,40,2016,August,21,5,1,4,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,112.95,0,1,Canceled,2019-02-01 -Resort Hotel,0,104,2017,April,22,13,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,38.33,0,0,Check-Out,2020-03-03 -Resort Hotel,0,15,2016,February,3,6,2,3,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Transient,130.61,0,0,Check-Out,2019-05-04 -City Hotel,0,45,2016,September,35,6,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,25.0,179.0,0,Transient,122.56,0,0,Check-Out,2019-05-04 -City Hotel,0,13,2016,December,50,14,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,73.99,0,0,Check-Out,2019-10-04 -Resort Hotel,0,109,2017,April,21,28,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient,37.01,0,2,Check-Out,2019-11-03 -City Hotel,0,0,2017,October,45,2,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient-Party,60.98,0,1,Check-Out,2019-11-03 -Resort Hotel,0,187,2016,September,45,16,4,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,64,Transient,111.69,0,0,Check-Out,2019-08-04 -Resort Hotel,0,28,2017,June,28,29,3,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,0,No Deposit,248.0,179.0,0,Transient,123.88,0,0,Check-Out,2020-02-01 -City Hotel,0,49,2017,May,22,16,2,5,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,67.92,0,1,Check-Out,2019-12-04 -City Hotel,0,43,2015,October,43,20,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.85,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2015,August,33,11,2,5,3,2.0,0,BB,SWE,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,96.31,0,0,Check-Out,2018-06-02 -Resort Hotel,1,35,2017,June,28,4,0,3,1,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,132.93,0,1,Canceled,2020-03-03 -Resort Hotel,0,0,2015,October,42,8,1,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,29.42,0,0,Check-Out,2018-09-02 -City Hotel,0,36,2017,August,35,18,0,5,2,0.0,0,BB,IRL,Complementary,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,95.43,0,2,Check-Out,2020-06-02 -City Hotel,0,24,2016,June,33,6,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,189.24,0,1,Check-Out,2020-06-02 -City Hotel,0,16,2015,November,50,27,2,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,71.07,0,0,Check-Out,2018-08-03 -Resort Hotel,0,103,2016,August,19,30,4,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,166.67,0,1,Check-Out,2019-06-03 -City Hotel,0,159,2015,November,33,6,0,4,2,2.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,1.67,0,0,Check-Out,2018-11-02 -Resort Hotel,0,10,2016,May,21,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,118.98,0,0,Check-Out,2019-03-04 -City Hotel,0,17,2017,February,9,28,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.57,0,2,Check-Out,2019-12-04 -City Hotel,0,18,2016,June,32,9,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,116.86,0,0,Check-Out,2019-05-04 -City Hotel,0,15,2017,May,43,21,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,B,0,No Deposit,187.0,331.0,0,Transient,171.99,0,0,Check-Out,2019-12-04 -Resort Hotel,0,56,2016,June,28,2,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,198.0,179.0,0,Transient,93.25,0,0,Check-Out,2019-06-03 -City Hotel,0,200,2017,June,26,18,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,114.77,0,0,Check-Out,2020-03-03 -City Hotel,1,27,2016,May,16,15,2,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.37,0,0,Canceled,2019-03-04 -Resort Hotel,0,41,2017,May,23,25,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Contract,122.12,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2016,February,9,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,17.0,45.0,0,Transient,46.63,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2015,November,43,10,0,1,3,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.36,1,0,Check-Out,2018-09-02 -City Hotel,0,242,2015,August,31,2,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.97,0,1,Check-Out,2018-06-02 -City Hotel,0,20,2016,December,50,6,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.23,0,2,Check-Out,2019-11-03 -City Hotel,1,116,2015,August,38,23,2,2,2,0.0,0,HB,CHN,Offline TA/TO,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,94.4,0,1,Canceled,2018-09-02 -Resort Hotel,0,8,2017,April,17,29,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,33.5,1,2,Check-Out,2020-02-01 -City Hotel,1,109,2016,June,26,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.45,0,0,Canceled,2019-02-01 -City Hotel,1,48,2017,June,25,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,149.0,179.0,0,Transient,122.41,0,0,Canceled,2020-02-01 -Resort Hotel,0,5,2017,August,35,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,177.0,179.0,0,Transient,193.05,1,3,Check-Out,2020-06-02 -City Hotel,0,1,2017,March,13,25,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,59.89,0,1,Check-Out,2020-01-04 -Resort Hotel,0,202,2017,August,36,19,0,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,252.0,1,3,Check-Out,2020-07-03 -City Hotel,0,0,2017,May,21,9,2,1,1,0.0,0,SC,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.89,0,0,Check-Out,2020-03-03 -Resort Hotel,1,338,2017,August,37,17,3,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient,89.89,0,0,Canceled,2020-06-02 -Resort Hotel,0,162,2015,August,43,18,1,5,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,318.0,179.0,0,Transient-Party,61.56,0,0,Check-Out,2018-09-02 -City Hotel,1,150,2016,June,35,12,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,61.43,0,0,Canceled,2019-05-04 -Resort Hotel,0,279,2017,May,22,18,2,4,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,H,2,No Deposit,27.0,179.0,0,Transient-Party,120.08,0,1,Check-Out,2020-03-03 -City Hotel,1,161,2016,February,9,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,41,Transient,70.34,0,0,Canceled,2018-11-02 -City Hotel,1,0,2016,March,9,2,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,11.0,45.0,0,Transient,0.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,4,2016,August,33,9,0,2,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,177.04,1,0,Check-Out,2019-06-03 -City Hotel,0,112,2016,March,10,21,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,76.0,179.0,41,Transient-Party,34.04,0,1,Check-Out,2019-01-03 -Resort Hotel,0,0,2017,March,17,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,367.0,73.0,0,Transient,37.8,1,0,Check-Out,2020-04-02 -Resort Hotel,1,100,2016,March,11,15,3,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,64,Transient,91.39,0,0,Canceled,2019-03-04 -Resort Hotel,0,62,2017,June,22,23,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,230.16,0,3,Check-Out,2020-01-04 -City Hotel,1,105,2017,August,38,31,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,149.91,0,2,Canceled,2020-06-02 -City Hotel,0,48,2016,November,41,14,0,10,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,No Deposit,48.0,179.0,0,Transient,76.38,0,0,Check-Out,2019-08-04 -Resort Hotel,0,10,2015,December,50,10,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,325.0,179.0,0,Transient-Party,75.96,0,0,Check-Out,2018-09-02 -City Hotel,1,255,2017,June,26,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,42,Transient,125.02,0,0,Canceled,2020-02-01 -Resort Hotel,0,106,2016,May,18,9,4,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,A,0,No Deposit,245.0,179.0,0,Transient-Party,92.33,0,0,Check-Out,2019-04-03 -City Hotel,1,54,2016,March,17,6,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.83,0,0,Canceled,2019-02-01 -City Hotel,0,2,2016,June,22,28,0,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,167.59,0,2,Check-Out,2019-07-04 -City Hotel,1,125,2015,December,37,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,115.03,0,0,Canceled,2018-05-03 -Resort Hotel,0,92,2015,December,53,30,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient-Party,61.41,0,0,Check-Out,2019-01-03 -City Hotel,1,29,2017,June,26,19,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,F,0,No Deposit,12.0,209.0,0,Transient,150.8,0,0,Canceled,2020-02-01 -Resort Hotel,0,85,2015,December,53,7,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient-Party,67.75,0,2,Check-Out,2018-12-03 -City Hotel,1,153,2016,August,35,29,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,149.4,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2016,March,17,23,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient-Party,36.3,0,0,Check-Out,2019-03-04 -Resort Hotel,0,103,2017,July,32,5,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,2,No Deposit,18.0,179.0,0,Transient,129.22,1,1,Check-Out,2020-06-02 -City Hotel,1,88,2017,August,33,2,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,184.98,0,0,Canceled,2020-07-03 -Resort Hotel,0,20,2015,December,51,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,322.0,179.0,0,Transient-Party,59.76,0,0,Check-Out,2018-11-02 -City Hotel,1,11,2017,February,9,9,1,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,7.0,179.0,0,Transient,87.68,0,0,Canceled,2019-12-04 -City Hotel,1,249,2016,May,20,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,69.75,0,0,Canceled,2018-11-02 -City Hotel,1,2,2016,February,10,12,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,1,0,A,A,0,Non Refund,14.0,67.0,0,Transient,126.01,0,0,Canceled,2019-02-01 -City Hotel,0,2,2017,February,10,13,0,1,1,0.0,0,SC,,Direct,Corporate,0,0,0,A,A,2,No Deposit,13.0,229.0,0,Transient,69.57,0,0,Check-Out,2020-04-02 -City Hotel,1,42,2017,June,17,18,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,144.73,0,0,Canceled,2020-04-02 -City Hotel,1,118,2016,October,44,27,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,71.74,0,2,Canceled,2019-08-04 -City Hotel,0,101,2017,February,9,25,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,35.0,331.0,0,Transient-Party,79.64,0,0,Check-Out,2020-02-01 -Resort Hotel,0,116,2016,April,11,3,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,119.7,0,2,Check-Out,2019-02-01 -City Hotel,0,89,2015,March,17,10,2,2,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,B,0,No Deposit,71.0,179.0,0,Transient-Party,85.77,0,0,Check-Out,2019-04-03 -City Hotel,0,2,2017,August,34,6,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,153.39,0,2,Check-Out,2020-06-02 -Resort Hotel,1,67,2017,March,18,26,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,174.17,0,2,Canceled,2020-04-02 -Resort Hotel,0,32,2016,October,46,25,1,3,2,1.0,0,BB,USA,Online TA,Direct,0,0,0,H,H,0,No Deposit,248.0,179.0,0,Transient,128.88,0,2,Check-Out,2019-09-03 -Resort Hotel,1,47,2016,July,26,17,0,2,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,165.44,0,2,Canceled,2019-04-03 -Resort Hotel,0,15,2016,March,16,15,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,236.55,0,1,Check-Out,2019-01-03 -City Hotel,0,45,2015,September,35,5,0,1,2,0.0,0,BB,PRT,Direct,Undefined,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,85.06,0,0,Check-Out,2018-08-03 -Resort Hotel,0,96,2016,June,26,2,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,144.0,179.0,0,Transient,70.36,0,0,Check-Out,2019-02-01 -City Hotel,0,11,2017,June,24,23,2,3,1,0.0,0,HB,GBR,Direct,Corporate,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,136.61,1,1,Check-Out,2020-05-03 -Resort Hotel,0,25,2016,September,42,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,179.0,179.0,0,Transient,72.87,0,0,Check-Out,2019-08-04 -City Hotel,0,6,2016,January,10,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,120.29,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2017,February,36,9,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,79.31,0,1,Check-Out,2020-06-02 -City Hotel,1,1,2017,May,19,6,0,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,2,Canceled,2019-12-04 -City Hotel,0,6,2017,February,21,5,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,1,No Deposit,16.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-10-04 -City Hotel,0,9,2015,October,43,6,2,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,161.56,0,0,Check-Out,2018-09-02 -City Hotel,1,226,2017,May,19,12,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,84.53,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2017,April,17,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,41.77,1,1,Check-Out,2020-02-01 -Resort Hotel,1,312,2017,June,28,27,4,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,169.0,179.0,0,Transient,195.19,0,0,Canceled,2020-04-02 -City Hotel,0,9,2017,March,10,14,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,66.84,0,1,Check-Out,2020-03-03 -Resort Hotel,0,261,2016,March,13,31,0,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,C,2,Refundable,15.0,222.0,0,Transient-Party,81.76,1,1,Check-Out,2019-03-04 -City Hotel,0,99,2016,December,50,25,2,3,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,75,Transient-Party,198.26,0,0,Check-Out,2019-05-04 -Resort Hotel,0,207,2017,May,29,3,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,241.0,179.0,0,Transient,213.38,0,3,Check-Out,2020-05-03 -Resort Hotel,1,18,2016,August,33,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,240.0,179.0,0,Transient,204.93,0,1,Canceled,2019-05-04 -City Hotel,0,36,2015,July,29,17,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,94.14,0,0,Check-Out,2018-06-02 -City Hotel,1,1,2016,October,44,7,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,A,0,Non Refund,2.0,179.0,0,Transient-Party,74.83,0,0,Check-Out,2018-08-03 -City Hotel,1,252,2016,April,21,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,76.11,0,0,Canceled,2019-02-01 -City Hotel,0,24,2015,August,36,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,121.37,0,0,Check-Out,2018-06-02 -City Hotel,0,118,2015,September,40,8,0,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,71.75,0,0,Check-Out,2018-06-02 -Resort Hotel,0,13,2017,May,25,18,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,235.0,179.0,0,Group,120.33,0,2,Check-Out,2020-03-03 -Resort Hotel,1,250,2017,July,37,29,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,123.83,0,0,Canceled,2019-08-04 -Resort Hotel,0,13,2016,October,42,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,17.0,179.0,0,Transient,110.67,0,0,Check-Out,2019-08-04 -City Hotel,0,97,2016,March,21,31,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.45,0,1,Check-Out,2019-04-03 -Resort Hotel,0,118,2016,August,39,27,0,1,3,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,214.7,0,1,Check-Out,2019-07-04 -City Hotel,0,2,2016,April,47,29,0,2,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,158.0,0,Transient,98.91,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,February,10,14,1,0,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,70.22,0,0,Check-Out,2019-10-04 -Resort Hotel,1,45,2016,October,44,28,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,340.0,179.0,75,Transient,89.22,0,0,Canceled,2019-07-04 -Resort Hotel,1,167,2015,December,33,10,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,74.86,0,0,Canceled,2018-07-03 -Resort Hotel,1,16,2016,February,9,6,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,132.0,179.0,0,Transient,27.31,0,1,No-Show,2019-03-04 -Resort Hotel,0,17,2016,January,53,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient,99.1,0,1,Check-Out,2019-10-04 -City Hotel,0,144,2017,May,22,29,1,1,2,0.0,0,BB,SWE,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.24,0,0,Check-Out,2020-02-01 -Resort Hotel,1,7,2015,July,30,18,2,1,2,0.0,0,FB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,77.23,0,0,Canceled,2018-06-02 -Resort Hotel,0,144,2016,June,22,16,2,3,2,0.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,120.18,1,0,Check-Out,2019-02-01 -Resort Hotel,0,43,2016,June,28,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,C,0,No Deposit,14.0,79.0,0,Transient,60.57,1,0,Check-Out,2019-06-03 -City Hotel,0,293,2015,July,36,13,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,60.04,0,0,Check-Out,2018-01-31 -Resort Hotel,0,70,2016,August,34,18,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,118.53,0,3,Check-Out,2019-05-04 -City Hotel,0,162,2016,May,26,17,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,C,D,0,No Deposit,12.0,179.0,0,Transient,92.59,0,0,Check-Out,2019-02-01 -City Hotel,0,46,2017,July,26,5,0,3,3,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,106.92,0,1,Check-Out,2020-02-01 -Resort Hotel,0,106,2016,August,32,9,2,5,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,150.41,0,3,Check-Out,2019-07-04 -City Hotel,0,39,2017,March,10,9,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,105.03,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2016,June,25,14,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.11,0,1,Check-Out,2019-02-01 -City Hotel,0,106,2017,March,11,16,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,E,0,No Deposit,16.0,179.0,0,Transient,225.64,0,3,Check-Out,2020-03-03 -Resort Hotel,0,154,2017,June,26,25,2,6,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,161.96,0,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2015,July,34,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,17.0,179.0,0,Transient-Party,252.0,1,0,Check-Out,2018-05-03 -City Hotel,1,141,2016,June,26,19,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient,141.59,0,0,Canceled,2019-03-04 -Resort Hotel,0,19,2016,July,31,24,0,1,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,94.46,0,0,Check-Out,2019-07-04 -City Hotel,1,398,2017,June,27,10,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,100.99,0,0,Canceled,2020-04-02 -City Hotel,0,15,2016,October,43,13,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.31,0,1,Check-Out,2019-12-04 -City Hotel,1,60,2016,August,32,4,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,6.0,179.0,0,Transient,114.02,0,3,Canceled,2019-06-03 -City Hotel,0,104,2016,July,31,14,2,4,2,1.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.17,0,1,Check-Out,2019-07-04 -City Hotel,0,205,2015,September,43,23,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,85.68,0,0,Check-Out,2018-08-03 -City Hotel,1,156,2017,March,16,16,2,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,179.0,75,Transient,80.1,0,0,Canceled,2019-12-04 -City Hotel,1,35,2017,April,16,7,2,0,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,E,F,0,No Deposit,15.0,179.0,0,Transient,120.02,0,0,Canceled,2020-02-01 -Resort Hotel,1,153,2016,February,10,24,0,2,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,140.0,179.0,0,Transient,70.41,0,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2016,March,11,14,2,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,42.66,1,0,Check-Out,2019-03-04 -City Hotel,1,62,2016,April,16,7,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,78.88,0,0,Canceled,2019-01-03 -Resort Hotel,0,2,2015,November,51,27,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,64.76,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,October,42,14,2,1,2,0.0,0,BB,ITA,Complementary,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,88.48,0,2,Check-Out,2019-09-03 -City Hotel,1,241,2015,August,38,13,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,70.99,0,0,Canceled,2018-08-03 -Resort Hotel,0,9,2016,June,27,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,B,0,No Deposit,14.0,76.0,0,Transient,120.25,1,0,Check-Out,2019-05-04 -City Hotel,0,97,2017,July,33,15,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,162.08,0,1,Check-Out,2020-06-02 -Resort Hotel,0,100,2017,April,16,16,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient-Party,42.44,0,2,Check-Out,2020-03-03 -City Hotel,1,102,2016,November,51,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,58.19,0,0,Canceled,2019-09-03 -Resort Hotel,0,314,2015,September,36,9,2,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,78.0,179.0,0,Group,34.66,0,1,Check-Out,2018-08-03 -City Hotel,1,34,2015,July,32,14,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,2,No Deposit,15.0,179.0,0,Transient-Party,194.89,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,January,51,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,17.0,246.0,0,Transient,40.72,1,0,Check-Out,2018-11-02 -Resort Hotel,1,0,2015,August,35,15,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,231.1,1,0,Check-Out,2018-05-03 -Resort Hotel,0,4,2017,August,22,7,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,190.68,0,2,Check-Out,2019-12-04 -City Hotel,1,147,2016,April,17,18,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.24,0,2,Canceled,2019-02-01 -Resort Hotel,1,207,2016,August,37,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,124.69,0,0,Canceled,2019-08-04 -Resort Hotel,0,93,2017,June,27,19,2,2,2,0.0,0,Undefined,NOR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,169.0,179.0,0,Transient-Party,110.42,0,0,Check-Out,2019-10-04 -City Hotel,1,96,2016,July,31,30,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.49,0,2,Canceled,2019-01-03 -City Hotel,1,52,2015,November,50,15,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,107.25,0,0,Canceled,2019-09-03 -Resort Hotel,0,3,2015,September,36,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,60.21,0,0,Check-Out,2018-08-03 -Resort Hotel,1,254,2016,July,31,30,2,6,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,A,0,No Deposit,307.0,179.0,75,Transient-Party,105.41,0,0,Canceled,2020-06-02 -City Hotel,1,4,2017,October,12,22,1,2,2,2.0,0,BB,CHN,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,184.46,0,0,Canceled,2019-10-04 -Resort Hotel,0,253,2016,May,23,18,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient-Party,76.02,0,0,Check-Out,2019-04-03 -City Hotel,0,248,2016,September,28,17,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient-Party,93.35,0,0,Check-Out,2019-06-03 -Resort Hotel,1,281,2017,June,27,21,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,154.49,0,0,Canceled,2020-03-03 -Resort Hotel,0,259,2015,October,49,30,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,52.81,0,1,Check-Out,2018-06-02 -City Hotel,0,82,2016,December,50,6,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.46,0,0,Check-Out,2019-12-04 -Resort Hotel,1,118,2016,December,50,20,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,299.0,179.0,0,Transient-Party,39.24,0,0,Canceled,2018-11-02 -Resort Hotel,0,56,2015,August,32,9,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,169.0,179.0,0,Transient-Party,80.88,0,0,Check-Out,2018-06-02 -City Hotel,1,111,2015,August,19,5,1,4,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,118.31,0,0,Canceled,2018-12-03 -City Hotel,0,137,2016,June,26,27,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.74,0,1,Check-Out,2020-03-03 -City Hotel,0,27,2017,January,3,15,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,115.72,0,2,Check-Out,2019-11-03 -City Hotel,1,100,2016,March,17,10,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,40,Transient,72.85,0,0,Canceled,2018-12-03 -Resort Hotel,0,23,2016,June,24,31,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,125.84,1,2,Check-Out,2019-02-01 -Resort Hotel,0,91,2015,August,31,10,2,3,2,0.0,0,HB,,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,79.86,1,0,Check-Out,2018-06-02 -City Hotel,0,9,2017,June,27,22,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,86.0,0,Transient,115.84,0,0,Check-Out,2020-02-01 -Resort Hotel,0,60,2017,July,32,6,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,131.98,0,0,Check-Out,2020-06-02 -City Hotel,1,64,2017,August,32,24,2,2,3,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,212.48,0,2,Canceled,2019-11-03 -City Hotel,0,262,2017,February,11,10,2,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,66.96,0,2,Check-Out,2020-02-01 -City Hotel,1,380,2015,August,34,23,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.15,0,0,Canceled,2017-11-02 -Resort Hotel,0,76,2015,July,30,21,2,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,F,0,No Deposit,16.0,179.0,0,Transient,130.54,1,0,Check-Out,2018-05-03 -City Hotel,1,109,2016,March,16,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,69.0,179.0,0,Transient,100.87,0,0,Canceled,2019-02-01 -City Hotel,1,61,2016,May,17,15,2,3,3,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,127.36,0,2,Canceled,2019-02-01 -City Hotel,0,14,2017,January,8,27,1,1,2,0.0,0,BB,BRA,Corporate,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,95.16,0,2,Check-Out,2020-03-03 -City Hotel,0,139,2017,August,39,28,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-06-02 -Resort Hotel,0,16,2016,July,50,17,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,63.27,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,December,43,24,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,158.61,0,0,Check-Out,2018-12-03 -Resort Hotel,0,369,2017,June,27,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,166.0,179.0,0,Group,0.0,0,1,Check-Out,2020-05-03 -City Hotel,1,286,2015,August,29,6,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,110.43,0,0,Canceled,2018-06-02 -City Hotel,1,1,2016,January,3,23,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,77.38,1,3,No-Show,2019-01-03 -Resort Hotel,1,106,2015,July,31,24,1,1,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,124.23,0,0,Canceled,2018-06-02 -City Hotel,0,141,2017,December,32,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,K,0,No Deposit,2.0,179.0,0,Transient-Party,0.07,0,0,Check-Out,2019-12-04 -Resort Hotel,1,285,2015,July,33,31,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,314.0,179.0,0,Contract,79.03,0,1,Canceled,2017-10-03 -City Hotel,1,39,2017,June,28,20,1,3,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,C,A,2,Non Refund,30.0,179.0,0,Transient,100.79,0,0,Canceled,2020-05-03 -City Hotel,0,48,2016,May,22,8,1,1,2,0.0,0,BB,CN,Groups,Corporate,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,113.71,0,0,Check-Out,2019-03-04 -City Hotel,0,41,2016,November,50,9,0,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.15,0,1,Check-Out,2019-10-04 -Resort Hotel,0,4,2017,July,17,10,2,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,85.76,1,1,Check-Out,2020-04-02 -City Hotel,0,49,2015,July,42,5,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.23,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,August,35,30,1,4,2,1.0,0,HB,,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,218.2,1,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2017,March,10,5,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,136.08,0,0,Check-Out,2020-02-01 -Resort Hotel,0,11,2015,December,51,7,0,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,88.15,0,1,Check-Out,2019-11-03 -City Hotel,1,53,2016,September,36,18,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Canceled,2019-03-04 -Resort Hotel,0,1,2016,August,23,28,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,245.0,179.0,0,Transient,39.45,1,1,Check-Out,2019-03-04 -City Hotel,1,12,2016,June,27,25,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,F,0,No Deposit,83.0,179.0,0,Transient-Party,71.33,0,0,No-Show,2020-02-01 -Resort Hotel,0,126,2016,July,26,20,0,4,3,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,179.6,0,0,Canceled,2020-05-03 -Resort Hotel,0,41,2016,March,17,28,1,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient-Party,60.75,0,0,Check-Out,2019-03-04 -City Hotel,1,109,2016,January,9,21,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,74.67,0,0,Canceled,2018-10-03 -Resort Hotel,0,1,2016,August,36,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,252.0,179.0,0,Transient,78.02,0,0,Check-Out,2019-02-01 -City Hotel,0,14,2015,September,35,9,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,122.82,0,0,Check-Out,2018-09-02 -City Hotel,0,3,2017,August,18,9,2,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,124.54,0,2,Check-Out,2020-05-03 -City Hotel,0,15,2015,October,45,28,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,107.61,0,0,Check-Out,2018-08-03 -City Hotel,0,165,2017,May,22,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,104.42,0,0,Check-Out,2020-03-03 -Resort Hotel,0,130,2015,September,38,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,179.0,0,Transient-Party,78.2,0,0,Check-Out,2018-06-02 -City Hotel,1,5,2017,May,23,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,69.74,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2015,November,44,13,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,225.0,0,Transient,31.32,1,0,Check-Out,2019-08-04 -City Hotel,1,20,2016,October,44,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,100.71,0,0,Canceled,2018-11-02 -City Hotel,1,22,2016,September,44,7,2,0,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,3.13,0,1,Check-Out,2019-08-04 -City Hotel,0,41,2016,November,50,28,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,91.3,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,August,43,2,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,2,No Deposit,16.0,179.0,0,Transient,104.33,0,0,Check-Out,2018-06-02 -Resort Hotel,0,42,2016,July,25,30,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,103.47,0,1,Check-Out,2019-06-03 -City Hotel,1,8,2015,September,38,24,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,90.71,0,0,No-Show,2018-08-03 -City Hotel,0,241,2015,October,46,13,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,153.76,0,0,Check-Out,2018-09-02 -City Hotel,1,102,2016,March,10,2,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,87.19,0,0,Canceled,2019-08-04 -City Hotel,0,0,2016,October,50,13,0,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -City Hotel,1,196,2017,May,18,19,1,2,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,E,0,No Deposit,14.0,148.0,0,Transient,103.29,0,0,Canceled,2019-11-03 -City Hotel,1,292,2015,September,45,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,76.46,0,0,Canceled,2017-11-02 -Resort Hotel,0,50,2016,August,34,10,2,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,D,C,1,No Deposit,247.0,179.0,0,Transient,200.21,1,1,Check-Out,2018-06-02 -City Hotel,0,352,2017,June,27,15,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,125.91,0,0,Check-Out,2020-06-02 -City Hotel,0,30,2016,May,21,6,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,E,F,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -Resort Hotel,1,44,2017,May,21,23,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,203.13,0,0,Canceled,2020-03-03 -City Hotel,1,426,2017,April,18,25,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,104.85,0,0,Canceled,2019-02-01 -City Hotel,0,101,2016,September,49,23,2,4,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,179.4,0,0,Check-Out,2019-09-03 -City Hotel,1,275,2016,October,47,10,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,98.54,0,0,Canceled,2019-08-04 -City Hotel,1,289,2017,July,33,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,96.48,0,0,Canceled,2020-07-03 -Resort Hotel,1,227,2017,July,33,29,1,4,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,226.42,0,2,Canceled,2020-03-03 -Resort Hotel,0,36,2016,August,21,16,2,4,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,239.0,179.0,0,Transient,155.99,0,1,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,June,21,20,0,1,2,0.0,0,HB,PRT,Complementary,TA/TO,1,0,0,H,I,1,No Deposit,244.0,179.0,0,Transient,2.01,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2016,July,22,31,2,1,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.34,0,0,Check-Out,2019-01-03 -City Hotel,0,139,2016,October,45,22,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.81,0,0,Check-Out,2019-09-03 -Resort Hotel,1,5,2015,October,45,30,2,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,No Deposit,315.0,179.0,75,Transient-Party,43.01,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,August,36,9,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,94.91,0,2,Check-Out,2019-05-04 -Resort Hotel,0,18,2016,October,35,9,2,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,159.84,0,0,Check-Out,2019-05-04 -Resort Hotel,0,37,2017,March,14,13,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,115.85,1,1,Check-Out,2019-12-04 -City Hotel,1,3,2017,February,10,13,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,10.0,72.0,0,Transient,72.58,0,1,Canceled,2020-02-01 -City Hotel,1,2,2017,May,22,10,1,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Canceled,2020-03-03 -City Hotel,0,15,2016,June,37,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.31,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2015,October,42,16,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,3.0,223.0,0,Transient-Party,61.02,0,0,Check-Out,2018-08-03 -Resort Hotel,0,5,2016,January,22,28,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,13.0,69.0,0,Transient-Party,57.92,0,0,Check-Out,2019-04-03 -Resort Hotel,0,35,2015,October,43,9,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.7,0,2,Check-Out,2018-09-02 -City Hotel,0,100,2016,October,43,12,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,117.92,0,0,Canceled,2019-06-03 -Resort Hotel,0,50,2016,October,20,19,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,85.0,179.0,0,Transient-Party,61.28,0,0,Check-Out,2018-09-02 -City Hotel,0,10,2017,February,7,9,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,G,A,0,No Deposit,31.0,179.0,0,Transient,78.32,0,0,Check-Out,2019-10-04 -Resort Hotel,0,4,2017,January,3,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,75.39,0,3,Check-Out,2020-05-03 -Resort Hotel,1,160,2016,March,16,9,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,H,E,0,No Deposit,12.0,179.0,0,Transient,78.38,0,0,Check-Out,2018-11-02 -City Hotel,0,11,2015,October,46,29,2,2,1,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,70.06,0,0,Check-Out,2018-09-02 -City Hotel,0,194,2015,October,44,21,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,64.05,0,0,Check-Out,2018-08-03 -Resort Hotel,0,314,2015,September,33,14,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,300.0,179.0,0,Transient-Party,135.21,1,0,Check-Out,2018-06-02 -City Hotel,0,40,2017,July,27,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,E,D,0,No Deposit,14.0,169.0,0,Transient,130.76,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2015,September,32,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,317.0,179.0,0,Group,34.14,0,2,Check-Out,2018-06-02 -Resort Hotel,1,148,2015,July,34,21,0,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,2018-06-02 -City Hotel,0,55,2016,December,53,6,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,62.23,0,1,Check-Out,2019-12-04 -City Hotel,1,13,2016,November,44,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,60,Transient,111.58,0,2,Canceled,2019-10-04 -City Hotel,1,42,2017,March,23,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,38.0,179.0,0,Transient,70.7,0,0,Canceled,2019-09-03 -City Hotel,1,390,2015,October,43,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,71.61,0,0,Canceled,2018-09-02 -Resort Hotel,0,0,2016,February,9,21,1,2,1,0.0,0,Undefined,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient-Party,36.64,0,0,Check-Out,2019-03-04 -Resort Hotel,0,29,2017,May,9,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,43.74,1,1,Check-Out,2020-03-03 -City Hotel,0,1,2016,May,18,10,0,3,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,14.0,192.0,0,Transient,92.26,0,0,Check-Out,2019-03-04 -City Hotel,1,197,2016,September,37,24,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,67.77,0,0,Canceled,2017-10-03 -City Hotel,1,254,2016,July,34,16,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,71.14,0,3,Canceled,2019-05-04 -Resort Hotel,0,145,2016,March,19,29,0,3,2,1.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,291.0,223.0,0,Transient-Party,31.94,0,0,Check-Out,2019-09-03 -City Hotel,1,158,2016,March,16,27,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,61.45,0,0,Canceled,2018-11-02 -City Hotel,0,15,2015,July,44,19,0,1,3,0.0,0,BB,FRA,Complementary,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,136.0,0,3,Check-Out,2018-09-02 -Resort Hotel,1,57,2016,September,53,27,2,3,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,75,Transient,155.78,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,June,21,12,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,45.0,0,Contract,1.29,0,1,Check-Out,2019-02-01 -City Hotel,1,17,2016,January,3,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.0,0,0,No-Show,2019-01-03 -City Hotel,1,291,2015,July,31,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,62.89,0,0,Canceled,2017-10-03 -Resort Hotel,0,124,2016,April,26,30,2,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,101.85,0,2,Check-Out,2019-02-01 -City Hotel,1,62,2017,March,11,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,L,0,No Deposit,10.0,179.0,0,Transient,84.74,0,0,Canceled,2020-04-02 -City Hotel,1,257,2016,October,44,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.53,0,0,Canceled,2018-08-03 -Resort Hotel,0,159,2016,March,17,31,0,3,1,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,A,0,Refundable,16.0,223.0,0,Transient-Party,62.69,1,0,Check-Out,2019-03-04 -City Hotel,0,15,2016,June,25,20,0,1,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,63,Transient-Party,78.3,0,0,Check-Out,2019-02-01 -City Hotel,1,187,2016,July,21,21,2,1,2,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,192.6,0,3,Canceled,2019-05-04 -City Hotel,1,119,2017,June,31,13,0,2,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,149.79,0,2,Canceled,2020-01-04 -City Hotel,0,94,2015,October,45,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,2.0,191.0,0,Transient-Party,61.6,0,0,Check-Out,2018-08-03 -City Hotel,1,248,2016,October,44,27,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,101.54,0,0,Canceled,2019-09-03 -City Hotel,0,13,2015,December,51,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,3,No Deposit,13.0,331.0,0,Transient,101.29,0,0,Check-Out,2018-09-02 -City Hotel,1,297,2017,August,37,2,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,123.6,0,0,Canceled,2020-06-02 -Resort Hotel,0,38,2015,August,31,15,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,E,A,1,No Deposit,167.0,179.0,0,Transient-Party,131.99,0,0,Check-Out,2018-06-02 -Resort Hotel,0,83,2015,September,32,23,2,4,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient-Party,59.7,0,0,Check-Out,2018-06-02 -Resort Hotel,0,46,2016,March,17,29,2,5,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,13.0,223.0,0,Transient,65.9,0,2,Check-Out,2020-04-02 -Resort Hotel,0,104,2017,July,26,28,4,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,243.0,179.0,0,Contract,162.89,1,1,Check-Out,2019-06-03 -Resort Hotel,0,160,2017,February,23,30,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,169.0,179.0,0,Transient-Party,81.79,0,0,Check-Out,2020-04-02 -City Hotel,0,106,2016,October,43,5,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,114.65,0,1,Check-Out,2019-08-04 -City Hotel,0,149,2016,October,50,20,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient-Party,112.71,0,0,Check-Out,2019-08-04 -City Hotel,0,53,2015,December,51,26,1,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,61.49,0,1,Check-Out,2018-12-03 -Resort Hotel,0,133,2015,September,39,8,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient-Party,72.47,0,0,Check-Out,2018-09-02 -City Hotel,0,102,2016,June,32,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.17,0,1,Check-Out,2019-03-04 -Resort Hotel,1,312,2017,August,34,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,160.04,0,3,Canceled,2020-06-02 -Resort Hotel,0,104,2015,September,36,28,2,1,2,0.0,0,BB,AUT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,61.26,0,0,Check-Out,2018-09-02 -Resort Hotel,0,108,2016,March,17,21,1,4,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,137.0,179.0,0,Transient,75.86,0,0,Check-Out,2019-03-04 -Resort Hotel,0,11,2015,July,32,28,0,4,1,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,125.95,0,1,Check-Out,2018-07-03 -City Hotel,0,187,2017,July,26,11,1,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,120.32,0,1,Check-Out,2020-03-03 -City Hotel,1,39,2016,October,44,6,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.73,0,1,Canceled,2019-08-04 -City Hotel,0,374,2017,May,21,9,0,1,2,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,119.89,0,2,Check-Out,2020-06-02 -City Hotel,0,14,2017,March,10,21,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,1,0,0,A,D,0,No Deposit,148.0,179.0,0,Group,28.76,0,1,Check-Out,2019-09-03 -City Hotel,1,167,2016,May,27,10,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,1,A,A,0,Refundable,9.0,179.0,0,Transient-Party,121.54,0,0,Canceled,2019-01-03 -Resort Hotel,1,2,2016,April,36,6,2,4,2,1.0,0,HB,PRT,Direct,Direct,1,0,0,D,E,1,No Deposit,18.0,179.0,0,Transient,211.63,1,2,Canceled,2019-02-01 -City Hotel,1,316,2016,October,34,28,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,237.0,179.0,0,Transient,81.48,0,0,Canceled,2018-08-03 -Resort Hotel,1,258,2016,December,53,18,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.55,0,0,Canceled,2019-01-03 -Resort Hotel,0,156,2016,August,37,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,73.46,1,0,Check-Out,2020-03-03 -City Hotel,1,2,2017,March,23,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.09,0,0,Canceled,2019-01-03 -City Hotel,1,1,2017,June,9,5,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,18.0,287.0,0,Transient,5.8,0,0,Canceled,2020-04-02 -City Hotel,0,95,2016,February,17,29,2,4,2,0.0,0,Undefined,NOR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,112.38,0,2,Check-Out,2019-02-01 -City Hotel,1,20,2015,September,36,28,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.15,0,0,Canceled,2018-07-03 -City Hotel,0,0,2016,September,43,13,2,5,2,0.0,0,HB,,Direct,Direct,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient,136.59,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,December,38,15,0,3,1,0.0,0,BB,ESP,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,240.0,0,Transient,62.03,1,0,Check-Out,2020-06-02 -City Hotel,0,116,2017,July,25,21,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Contract,128.58,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2016,November,49,2,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,D,2,No Deposit,15.0,45.0,0,Transient,64.04,1,0,Check-Out,2019-07-04 -City Hotel,0,100,2016,November,50,5,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.55,0,0,Check-Out,2019-10-04 -City Hotel,0,36,2016,May,23,12,1,2,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,6.0,179.0,0,Transient,164.53,0,0,Check-Out,2020-01-04 -City Hotel,1,92,2016,August,35,8,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,198.21,0,0,No-Show,2019-07-04 -City Hotel,0,0,2017,May,20,17,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,1,95,2017,May,22,21,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,25.0,179.0,0,Transient,98.42,0,0,Canceled,2020-02-01 -City Hotel,0,148,2015,July,32,17,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient-Party,91.21,0,0,Check-Out,2018-08-03 -City Hotel,0,244,2016,November,46,22,0,1,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,3,No Deposit,12.0,179.0,0,Transient,133.07,0,0,Check-Out,2019-07-04 -Resort Hotel,0,133,2015,October,34,6,2,5,2,0.0,0,HB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,64.43,0,0,Check-Out,2018-09-02 -Resort Hotel,0,20,2017,March,12,21,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,222.0,75,Transient-Party,38.75,1,1,Check-Out,2019-12-04 -City Hotel,0,152,2017,June,26,21,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.27,0,1,Check-Out,2020-05-03 -Resort Hotel,0,342,2017,August,32,13,1,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,127.48,0,1,Check-Out,2020-07-03 -Resort Hotel,0,12,2016,March,4,9,0,2,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,D,0,No Deposit,11.0,64.0,0,Transient,34.05,1,0,Check-Out,2018-11-02 -Resort Hotel,0,35,2016,November,45,20,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,168.59,1,0,Check-Out,2019-09-03 -City Hotel,0,2,2016,January,4,9,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,90.29,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2015,November,44,16,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,316.0,237.0,0,Transient,37.08,0,0,Canceled,2019-09-03 -City Hotel,0,21,2017,April,35,14,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,92.6,0,2,Check-Out,2020-05-03 -Resort Hotel,1,121,2015,July,32,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,12.0,179.0,0,Contract,85.41,0,2,Canceled,2018-01-03 -City Hotel,0,265,2016,June,28,23,0,5,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,87.7,0,0,Check-Out,2019-05-04 -City Hotel,1,19,2015,October,49,5,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,1,A,K,0,No Deposit,38.0,179.0,0,Group,36.91,0,0,Canceled,2018-08-03 -Resort Hotel,0,13,2017,July,26,13,2,5,2,0.0,0,SC,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,94.29,0,1,Check-Out,2020-06-02 -Resort Hotel,0,267,2015,October,43,27,1,2,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,87.3,0,0,Check-Out,2018-09-02 -City Hotel,1,148,2016,March,16,9,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,64,Transient,105.82,0,0,Canceled,2018-12-03 -Resort Hotel,0,266,2016,December,44,19,2,3,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,283.0,179.0,0,Transient-Party,42.18,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,March,10,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,62.16,0,1,Check-Out,2019-02-01 -City Hotel,1,160,2016,May,20,27,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,71.0,179.0,0,Transient,127.35,0,0,Canceled,2019-04-03 -Resort Hotel,0,42,2017,July,23,21,2,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,208.61,0,3,Check-Out,2020-04-02 -City Hotel,1,28,2015,December,28,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient-Party,95.13,0,0,No-Show,2018-12-03 -Resort Hotel,0,40,2015,October,42,10,0,4,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,F,1,No Deposit,15.0,179.0,0,Transient,89.26,0,0,Check-Out,2018-09-02 -City Hotel,0,14,2015,September,43,2,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,63,Contract,95.43,0,0,Check-Out,2018-08-03 -City Hotel,1,37,2016,March,16,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,42,Transient,74.17,0,0,Canceled,2019-02-01 -City Hotel,1,159,2016,June,26,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient,98.07,0,0,Canceled,2019-02-01 -City Hotel,0,35,2017,March,18,30,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,F,1,No Deposit,28.0,179.0,0,Transient-Party,62.13,0,0,Check-Out,2020-02-01 -City Hotel,0,128,2017,August,39,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,195.17,0,1,Check-Out,2020-07-03 -City Hotel,0,85,2016,June,21,29,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,66.88,0,0,Check-Out,2019-03-04 -City Hotel,1,36,2017,August,37,16,0,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,120.34,0,2,Canceled,2020-03-03 -Resort Hotel,1,26,2016,October,45,19,2,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,182.52,0,0,Canceled,2019-08-04 -City Hotel,1,40,2015,December,53,11,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.69,0,0,Canceled,2018-06-02 -Resort Hotel,1,101,2016,February,8,28,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,D,0,No Deposit,12.0,331.0,0,Transient,61.06,0,0,Canceled,2018-12-03 -City Hotel,0,31,2017,May,9,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,73.6,0,0,Check-Out,2019-12-04 -City Hotel,1,267,2015,July,33,30,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,41,Transient,62.44,0,0,Canceled,2018-05-03 -Resort Hotel,0,161,2016,August,24,31,0,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,60.0,0,0,Check-Out,2019-06-03 -City Hotel,0,96,2016,July,27,6,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,112.35,0,1,Check-Out,2019-06-03 -City Hotel,1,420,2015,October,31,20,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.18,0,0,Canceled,2018-08-03 -City Hotel,0,11,2016,December,51,6,0,1,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,9.0,179.0,0,Transient,78.07,0,3,Check-Out,2019-10-04 -Resort Hotel,0,177,2017,February,9,5,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,179.0,331.0,0,Transient-Party,70.65,0,0,Check-Out,2020-05-03 -Resort Hotel,0,50,2016,November,42,31,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,D,1,No Deposit,243.0,179.0,0,Group,151.68,1,1,Check-Out,2018-08-03 -City Hotel,0,200,2016,September,36,15,2,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,131.88,0,1,Check-Out,2019-05-04 -Resort Hotel,0,90,2016,April,17,9,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,76.89,0,0,Check-Out,2019-04-03 -City Hotel,0,207,2016,October,44,15,2,5,2,1.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,38.06,0,0,No-Show,2019-08-04 -Resort Hotel,0,52,2016,March,16,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,128.54,0,0,Check-Out,2019-02-01 -City Hotel,1,272,2016,September,38,28,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,137.66,0,0,Canceled,2019-03-04 -City Hotel,1,0,2017,November,17,16,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,283.0,0,Group,2.36,0,0,Canceled,2020-01-04 -City Hotel,1,161,2017,June,25,30,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.85,0,1,Canceled,2020-05-03 -Resort Hotel,0,113,2017,June,21,25,2,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,156.9,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2016,February,9,21,1,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,67.0,0,Transient,92.35,0,0,Check-Out,2018-11-02 -City Hotel,1,41,2017,March,10,6,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.05,0,0,Canceled,2020-04-02 -Resort Hotel,0,106,2017,March,11,7,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,58.7,0,0,Check-Out,2020-01-04 -Resort Hotel,0,46,2015,September,44,9,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient-Party,82.97,0,0,Check-Out,2018-08-03 -City Hotel,1,2,2016,November,17,31,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,76.65,0,2,Canceled,2019-02-01 -City Hotel,1,39,2016,February,9,29,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,40.21,0,0,Canceled,2018-11-02 -City Hotel,0,8,2017,February,10,16,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.05,0,1,Check-Out,2019-11-03 -City Hotel,1,48,2017,February,8,5,2,0,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,7.0,179.0,0,Transient,146.31,0,0,Canceled,2020-02-01 -City Hotel,0,39,2017,February,10,25,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,90.68,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,January,5,10,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,92.0,179.0,0,Transient,60.73,0,1,Check-Out,2018-11-02 -City Hotel,1,0,2015,August,37,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,142.58,0,0,Canceled,2018-05-03 -Resort Hotel,0,24,2016,March,10,6,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,252.0,0,Transient,35.81,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2015,August,42,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,101.52,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,February,10,24,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,33.05,0,0,Check-Out,2018-12-03 -City Hotel,0,153,2016,June,24,12,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,61.21,0,1,Check-Out,2019-07-04 -City Hotel,1,60,2016,June,27,2,0,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,124.53,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2016,October,44,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,0.43,0,0,Check-Out,2019-12-04 -Resort Hotel,0,10,2017,January,2,25,1,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,82.22,0,0,Canceled,2019-09-03 -Resort Hotel,0,121,2016,March,8,15,2,5,2,0.0,0,HB,AUT,Complementary,Corporate,1,0,1,A,I,1,No Deposit,13.0,179.0,75,Transient-Party,34.45,1,0,Check-Out,2019-09-03 -City Hotel,1,96,2016,October,43,5,1,5,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,2,No Deposit,9.0,179.0,0,Transient,106.63,0,3,No-Show,2018-12-03 -Resort Hotel,0,2,2015,December,50,30,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,D,0,No Deposit,16.0,45.0,0,Transient,0.0,0,1,Check-Out,2018-11-02 -City Hotel,0,42,2017,July,31,25,2,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,166.92,0,2,Check-Out,2020-07-03 -Resort Hotel,0,42,2017,October,44,21,1,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,200.69,0,1,Check-Out,2019-08-04 -City Hotel,1,270,2016,July,27,3,2,3,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,92.56,0,0,No-Show,2019-06-03 -City Hotel,1,57,2016,August,32,6,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,2019-10-04 -City Hotel,1,103,2016,December,44,21,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.64,0,0,Canceled,2018-10-03 -City Hotel,0,154,2016,October,45,24,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,213.99,0,2,Canceled,2019-11-03 -Resort Hotel,0,0,2015,October,44,28,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,100.64,1,0,Check-Out,2018-09-02 -City Hotel,1,242,2016,December,53,6,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,98.19,0,3,Canceled,2019-10-04 -Resort Hotel,0,13,2016,August,43,31,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,207.54,1,2,Check-Out,2019-06-03 -City Hotel,0,0,2016,November,53,5,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,115.52,0,1,Check-Out,2019-11-03 -City Hotel,1,217,2016,May,21,5,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,104.09,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,May,22,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,16.0,220.0,0,Transient,75.86,1,3,Check-Out,2020-06-02 -City Hotel,1,111,2016,June,26,23,0,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,E,E,0,No Deposit,33.0,179.0,0,Transient,144.32,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,February,26,28,0,1,1,0.0,0,BB,FRA,Corporate,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,126.64,1,2,Check-Out,2020-06-02 -Resort Hotel,1,158,2015,July,33,22,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,154.0,0,0,Canceled,2017-11-02 -Resort Hotel,0,146,2016,September,40,28,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,103.51,0,0,Check-Out,2019-09-03 -City Hotel,0,108,2016,June,35,8,0,3,2,2.0,0,HB,BEL,Direct,Direct,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,162,2016,August,35,5,0,1,2,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,13.0,179.0,0,Transient,86.23,0,0,Check-Out,2019-09-03 -City Hotel,0,45,2016,April,35,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,78.67,0,0,Check-Out,2019-03-04 -City Hotel,1,439,2015,October,44,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,63,Contract,59.77,0,0,Canceled,2017-10-03 -Resort Hotel,0,5,2016,May,25,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,0,Transient,73.12,0,0,Check-Out,2019-03-04 -City Hotel,0,159,2016,November,50,28,2,4,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,120.93,0,0,Check-Out,2018-08-03 -Resort Hotel,0,52,2015,November,43,30,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,43.22,1,3,Check-Out,2018-09-02 -Resort Hotel,1,25,2016,September,37,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Transient,59.33,0,0,Canceled,2018-01-03 -Resort Hotel,0,43,2016,March,48,26,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,42.41,0,0,Check-Out,2018-12-03 -City Hotel,0,94,2015,September,37,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.23,0,0,Check-Out,2018-09-02 -Resort Hotel,0,95,2015,August,35,24,0,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,124.64,0,0,Check-Out,2018-07-03 -Resort Hotel,0,107,2017,March,10,5,2,5,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,66.08,0,0,Check-Out,2019-11-03 -City Hotel,1,41,2017,April,22,23,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,74.44,0,0,Canceled,2020-03-03 -Resort Hotel,0,165,2016,May,26,30,1,10,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,378.0,222.0,0,Transient-Party,62.69,0,0,Check-Out,2019-04-03 -City Hotel,1,25,2015,October,44,5,1,2,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,86.11,0,0,Canceled,2018-09-02 -City Hotel,1,250,2015,November,45,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.79,0,0,Canceled,2017-12-03 -City Hotel,0,36,2016,January,3,8,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,68.91,0,2,Check-Out,2018-12-03 -Resort Hotel,0,147,2016,March,16,31,2,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient,76.27,0,0,Check-Out,2019-02-01 -City Hotel,1,265,2015,September,35,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,56.37,0,0,Canceled,2017-09-02 -City Hotel,1,9,2017,February,10,5,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,33.26,0,1,No-Show,2019-11-03 -Resort Hotel,0,190,2016,March,17,31,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,13.0,222.0,0,Transient-Party,82.01,0,0,Check-Out,2019-02-01 -City Hotel,1,101,2016,June,27,5,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,124.44,0,0,Canceled,2019-02-01 -City Hotel,0,144,2016,June,27,24,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,99.95,0,0,Check-Out,2019-05-04 -Resort Hotel,1,2,2015,September,45,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,58.74,0,0,Canceled,2018-05-03 -City Hotel,0,14,2017,March,10,27,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,3,No Deposit,12.0,179.0,0,Transient,76.34,0,1,Check-Out,2020-03-03 -City Hotel,1,21,2015,December,50,14,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,A,0,Non Refund,12.0,179.0,0,Transient,96.55,0,0,Canceled,2018-08-03 -City Hotel,0,0,2017,March,10,31,2,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.32,0,0,Check-Out,2020-03-03 -Resort Hotel,0,50,2015,August,34,10,0,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,80.42,0,2,Check-Out,2018-06-02 -City Hotel,0,46,2016,November,46,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Group,69.36,0,0,Check-Out,2019-11-03 -Resort Hotel,0,101,2016,October,17,30,2,3,2,0.0,0,HB,NLD,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,179.0,0,Transient-Party,76.86,0,0,Check-Out,2019-02-01 -Resort Hotel,0,13,2016,October,44,20,2,1,2,2.0,0,HB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,223.31,0,0,Check-Out,2019-08-04 -Resort Hotel,1,1,2015,August,36,25,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,248.0,179.0,0,Transient,122.17,0,0,Canceled,2020-06-02 -City Hotel,1,123,2016,September,46,5,0,3,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,124.1,0,0,Canceled,2018-08-03 -City Hotel,0,6,2017,June,20,5,2,3,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,2,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,1,98,2017,February,8,11,0,2,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,204.81,0,0,Canceled,2019-10-04 -City Hotel,1,104,2017,April,15,25,2,5,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Group,87.03,1,2,Canceled,2020-02-01 -City Hotel,1,205,2016,April,37,18,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,105.15,0,0,Canceled,2019-06-03 -City Hotel,1,20,2016,November,49,27,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,72.58,0,0,Canceled,2019-09-03 -Resort Hotel,0,7,2016,August,39,16,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,212.53,1,2,Check-Out,2019-07-04 -City Hotel,1,34,2015,October,46,21,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,57.52,0,0,Canceled,2018-07-03 -City Hotel,0,29,2016,December,53,15,0,3,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,86.65,0,1,Check-Out,2019-12-04 -City Hotel,1,207,2016,September,41,10,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,167.14,0,0,Canceled,2019-04-03 -City Hotel,1,199,2017,July,30,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,F,F,0,Non Refund,332.0,179.0,0,Transient,157.49,0,0,Canceled,2020-05-03 -City Hotel,1,18,2017,June,21,23,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,144.41,0,0,Canceled,2020-02-01 -City Hotel,1,36,2015,August,32,20,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.42,0,0,Canceled,2018-08-03 -City Hotel,0,116,2016,September,36,8,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,132.94,0,0,Check-Out,2019-05-04 -Resort Hotel,1,110,2016,October,43,5,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,79.61,0,0,Canceled,2018-08-03 -Resort Hotel,0,161,2016,September,43,23,1,10,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,333.0,179.0,0,Transient,93.76,0,0,Check-Out,2019-06-03 -City Hotel,1,9,2017,August,14,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,204.93,0,0,Canceled,2020-02-01 -City Hotel,0,9,2016,February,6,7,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.72,0,1,Check-Out,2019-01-03 -City Hotel,0,47,2016,August,33,20,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,189.58,0,2,Check-Out,2019-06-03 -Resort Hotel,0,12,2017,February,8,20,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,91.0,0,Transient,42.95,0,0,Check-Out,2020-04-02 -City Hotel,1,29,2015,July,31,23,2,2,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,71.05,0,0,Canceled,2018-07-03 -Resort Hotel,1,17,2015,August,37,27,1,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.69,0,0,Canceled,2018-08-03 -Resort Hotel,1,392,2017,July,27,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,165.0,179.0,0,Contract,132.3,0,0,Canceled,2020-06-02 -City Hotel,0,0,2015,October,35,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,104.5,0,2,Check-Out,2018-06-02 -Resort Hotel,1,3,2017,August,36,16,2,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,E,F,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Canceled,2020-06-02 -City Hotel,0,36,2016,March,10,13,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,92.9,0,1,Check-Out,2018-12-03 -Resort Hotel,1,117,2017,July,26,10,0,10,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,Non Refund,250.0,179.0,0,Transient,104.8,0,0,Canceled,2020-05-03 -City Hotel,0,204,2016,March,42,6,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,91.53,0,1,Check-Out,2019-04-03 -City Hotel,0,6,2017,January,9,13,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,138.69,0,1,Check-Out,2019-12-04 -City Hotel,0,18,2016,December,53,29,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.37,0,0,Check-Out,2019-12-04 -Resort Hotel,0,10,2017,February,11,13,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,196.0,72.0,0,Transient,72.97,0,0,Check-Out,2020-03-03 -City Hotel,0,98,2017,August,27,1,0,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,161.26,0,0,Canceled,2020-06-02 -City Hotel,0,34,2016,October,43,12,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,96.0,179.0,0,Transient-Party,51.02,0,0,Check-Out,2018-09-02 -City Hotel,0,21,2016,June,26,9,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,118.88,0,2,Check-Out,2019-04-03 -City Hotel,0,263,2016,September,39,6,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,97.0,179.0,0,Transient,87.59,0,0,Check-Out,2019-07-04 -Resort Hotel,1,38,2015,October,43,10,2,4,2,0.0,0,HB,,Groups,Undefined,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.62,0,0,Canceled,2018-06-02 -City Hotel,1,88,2015,November,45,16,0,2,1,0.0,0,BB,ISR,Groups,TA/TO,0,1,0,A,D,0,Non Refund,2.0,179.0,0,Contract,60.96,1,1,Canceled,2018-12-03 -City Hotel,0,2,2017,June,25,19,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.55,0,1,Check-Out,2020-04-02 -City Hotel,1,105,2016,September,36,27,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,70.79,0,0,Canceled,2019-07-04 -City Hotel,0,95,2017,April,15,18,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,141.05,0,3,Check-Out,2020-04-02 -City Hotel,0,0,2015,August,37,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Group,60.89,0,0,Check-Out,2018-09-02 -City Hotel,0,83,2016,December,51,28,2,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,F,A,0,No Deposit,13.0,179.0,0,Transient,79.3,0,1,Check-Out,2019-09-03 -City Hotel,0,1,2017,June,26,2,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,4.52,0,0,Check-Out,2020-05-03 -Resort Hotel,0,161,2017,May,26,6,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,79.81,0,3,Check-Out,2020-04-02 -City Hotel,1,40,2015,October,42,29,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.45,0,3,Canceled,2018-08-03 -Resort Hotel,0,149,2017,March,17,3,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient,66.42,0,1,Check-Out,2019-10-04 -City Hotel,0,48,2016,January,4,2,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,84.0,179.0,0,Transient,96.5,0,3,Check-Out,2019-11-03 -Resort Hotel,0,14,2017,August,34,9,2,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,157.7,0,2,Check-Out,2020-06-02 -City Hotel,0,15,2016,July,33,21,2,3,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,122.89,0,0,Check-Out,2019-09-03 -City Hotel,0,46,2015,September,42,18,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,61.55,0,0,Check-Out,2018-08-03 -City Hotel,0,58,2015,October,30,19,0,2,2,0.0,0,BB,USA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,92.0,179.0,0,Contract,134.14,0,0,Check-Out,2018-07-03 -City Hotel,0,3,2015,September,42,6,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,62.21,0,0,Check-Out,2018-07-03 -City Hotel,0,36,2016,October,33,27,2,5,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,186.7,0,2,Check-Out,2019-03-04 -City Hotel,0,19,2016,August,35,18,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,74.98,1,1,Check-Out,2019-06-03 -Resort Hotel,0,162,2017,August,35,13,2,3,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,124.95,0,2,Check-Out,2020-07-03 -City Hotel,1,395,2016,October,37,5,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient-Party,71.98,0,0,Canceled,2019-08-04 -City Hotel,1,154,2017,August,35,28,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.45,0,0,Canceled,2019-11-03 -City Hotel,1,51,2016,August,37,25,0,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,229.51,0,1,Canceled,2019-05-04 -City Hotel,1,95,2016,May,21,28,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Group,76.46,0,0,Canceled,2019-03-04 -City Hotel,0,12,2017,February,9,5,1,0,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,11.0,179.0,0,Transient-Party,61.16,0,1,Check-Out,2020-03-03 -City Hotel,0,281,2015,September,43,4,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,60.84,0,0,Check-Out,2018-08-03 -Resort Hotel,1,49,2015,October,45,14,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Contract,60.77,0,0,Canceled,2018-09-02 -Resort Hotel,0,108,2017,July,27,10,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,156.0,179.0,0,Transient,102.33,0,2,Check-Out,2020-06-02 -City Hotel,0,0,2016,November,9,14,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,0.62,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2017,January,4,9,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -Resort Hotel,0,28,2017,March,9,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,14.0,243.0,0,Transient,54.7,0,1,Check-Out,2020-03-03 -Resort Hotel,0,232,2016,September,36,18,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Contract,82.11,1,2,Check-Out,2018-05-03 -City Hotel,1,46,2016,June,28,23,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,160.61,0,1,Canceled,2019-05-04 -City Hotel,0,1,2017,August,31,5,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,75.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -City Hotel,1,34,2015,August,39,18,2,1,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,181.76,0,1,Canceled,2018-07-03 -Resort Hotel,0,0,2015,October,42,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,92.73,0,0,Check-Out,2018-08-03 -City Hotel,0,19,2017,February,8,10,1,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,70.64,0,0,Check-Out,2020-02-01 -City Hotel,1,427,2015,August,38,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.42,0,0,Canceled,2018-01-31 -City Hotel,1,13,2016,September,45,25,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,D,1,No Deposit,10.0,179.0,0,Transient,115.19,1,0,Canceled,2018-09-02 -Resort Hotel,0,0,2017,April,18,20,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,E,D,2,No Deposit,317.0,179.0,0,Transient,1.24,1,0,Check-Out,2020-01-04 -City Hotel,1,8,2017,January,5,28,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,72.39,0,0,Canceled,2019-09-03 -City Hotel,0,52,2015,September,43,12,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,124.93,0,0,Check-Out,2018-08-03 -City Hotel,1,51,2016,July,35,27,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,159.73,0,2,Canceled,2019-04-03 -Resort Hotel,0,146,2016,March,17,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,61.08,0,0,Check-Out,2019-02-01 -City Hotel,0,95,2015,October,44,22,0,3,1,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,89.54,0,0,Check-Out,2018-09-02 -City Hotel,0,141,2017,June,17,31,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,72.96,0,2,Check-Out,2020-07-03 -City Hotel,0,87,2017,December,53,26,1,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.11,0,1,Check-Out,2020-01-04 -City Hotel,0,164,2017,August,34,31,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-06-02 -Resort Hotel,0,43,2016,October,44,31,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,61.31,0,0,Check-Out,2019-08-04 -City Hotel,0,27,2017,February,12,31,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,159.0,179.0,0,Group,95.89,0,0,Canceled,2019-09-03 -City Hotel,1,7,2016,January,3,18,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,60.0,179.0,0,Transient,60.68,0,0,No-Show,2018-12-03 -City Hotel,1,444,2016,June,37,25,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,96.08,0,0,Canceled,2018-08-03 -City Hotel,0,45,2016,September,44,28,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.08,0,2,Check-Out,2019-08-04 -City Hotel,1,255,2017,June,25,16,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,73.57,0,0,Canceled,2020-02-01 -Resort Hotel,1,233,2016,May,23,24,0,1,2,2.0,0,HB,ESP,Groups,TA/TO,0,0,0,C,C,0,No Deposit,308.0,179.0,0,Transient,73.64,0,0,Canceled,2019-03-04 -City Hotel,1,18,2016,December,50,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,12.0,45.0,0,Transient,74.95,0,0,Canceled,2018-01-31 -City Hotel,1,91,2016,February,11,22,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,Non Refund,13.0,179.0,0,Transient,43.45,0,0,Canceled,2018-12-03 -City Hotel,0,11,2016,December,13,30,0,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,80.73,0,0,Check-Out,2019-12-04 -Resort Hotel,0,243,2015,October,45,20,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,59.8,0,0,Check-Out,2018-08-03 -City Hotel,0,286,2017,May,21,8,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Contract,121.88,0,0,Check-Out,2020-02-01 -Resort Hotel,1,43,2017,February,9,2,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,332.0,331.0,0,Transient,35.42,0,0,Canceled,2019-12-04 -Resort Hotel,0,252,2016,May,27,15,2,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,93.98,0,1,Check-Out,2019-03-04 -City Hotel,1,92,2017,June,25,18,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,123.42,0,0,Canceled,2020-03-03 -Resort Hotel,0,38,2016,August,34,9,2,5,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,224.1,0,2,Check-Out,2020-06-02 -City Hotel,0,1,2017,July,28,10,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.2,0,0,Check-Out,2020-04-02 -Resort Hotel,0,105,2016,March,17,17,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,118.15,0,3,Check-Out,2019-01-03 -City Hotel,0,169,2017,June,22,2,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,83.61,0,2,Check-Out,2020-03-03 -Resort Hotel,1,163,2017,February,36,31,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,179.0,0,Transient,87.51,0,0,Canceled,2019-02-01 -Resort Hotel,0,208,2016,July,38,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,80.8,1,2,Check-Out,2019-06-03 -Resort Hotel,0,17,2016,September,36,31,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,121.51,0,0,Check-Out,2019-09-03 -City Hotel,0,102,2017,August,36,13,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,198.06,0,1,Check-Out,2019-08-04 -City Hotel,1,289,2015,September,37,21,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.54,0,0,Canceled,2018-05-03 -City Hotel,0,28,2016,May,22,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Group,82.71,1,2,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,March,10,13,2,0,2,0.0,0,HB,AUT,Corporate,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,75,Transient-Party,56.73,1,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,October,43,28,2,0,1,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,C,C,1,No Deposit,98.0,179.0,0,Transient,67.47,0,0,Check-Out,2019-07-04 -Resort Hotel,1,32,2017,January,21,23,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,169.0,179.0,0,Transient,162.15,0,0,Canceled,2019-12-04 -Resort Hotel,0,108,2016,April,24,12,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,107.15,0,0,Check-Out,2019-04-03 -City Hotel,0,145,2015,November,51,14,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,40,Contract,58.55,0,0,Check-Out,2018-09-02 -City Hotel,1,139,2017,February,9,22,2,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.29,0,0,Canceled,2019-11-03 -City Hotel,0,46,2015,November,51,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,74.05,0,0,Check-Out,2019-01-03 -City Hotel,1,330,2016,August,36,19,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,91.94,0,0,Canceled,2018-08-03 -Resort Hotel,0,302,2016,June,25,5,3,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient,116.41,0,0,Check-Out,2019-06-03 -Resort Hotel,0,15,2015,October,52,28,1,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,248.0,179.0,0,Transient,79.17,0,0,Check-Out,2018-09-02 -City Hotel,1,85,2016,March,11,16,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,19.0,179.0,0,Transient,202.64,0,0,Canceled,2019-03-04 -City Hotel,0,165,2016,May,28,18,1,0,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,127.46,0,0,Check-Out,2020-02-01 -City Hotel,1,60,2017,June,22,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,164.97,0,0,Canceled,2020-04-02 -Resort Hotel,1,12,2016,February,3,20,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,29.13,0,0,No-Show,2018-12-03 -City Hotel,1,1,2016,October,43,24,1,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.57,0,2,Canceled,2019-12-04 -City Hotel,0,112,2016,June,25,16,0,1,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,134.79,0,1,Check-Out,2019-06-03 -Resort Hotel,1,45,2016,December,53,13,0,7,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,180.81,0,0,Canceled,2019-10-04 -City Hotel,0,1,2016,February,11,28,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,69.13,0,2,Check-Out,2019-11-03 -City Hotel,0,17,2016,March,10,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,80.0,179.0,0,Transient-Party,75.56,0,0,Check-Out,2018-11-02 -Resort Hotel,0,3,2017,July,31,16,1,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,42.78,1,2,Check-Out,2020-06-02 -City Hotel,0,0,2017,May,22,23,1,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,92.82,0,0,Check-Out,2020-03-03 -City Hotel,0,30,2017,April,23,6,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,152.72,1,0,Check-Out,2020-02-01 -City Hotel,1,144,2016,March,17,11,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.8,0,1,Canceled,2019-02-01 -City Hotel,0,57,2016,November,46,13,1,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,206.0,179.0,0,Transient,125.7,0,0,Check-Out,2019-12-04 -Resort Hotel,0,13,2015,August,32,11,1,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,63.56,0,1,Check-Out,2018-05-03 -City Hotel,0,160,2016,July,36,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,133.66,0,3,Check-Out,2019-06-03 -City Hotel,1,0,2016,November,50,8,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,3,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,2020-01-04 -Resort Hotel,0,45,2015,September,32,6,2,4,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,93.17,0,2,Check-Out,2018-06-02 -City Hotel,1,10,2017,January,4,24,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.22,0,0,No-Show,2019-12-04 -Resort Hotel,0,0,2017,June,28,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,17.0,45.0,0,Transient,114.07,0,1,Check-Out,2020-03-03 -City Hotel,1,42,2016,July,31,16,0,2,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,172.12,0,2,Canceled,2019-01-03 -Resort Hotel,0,45,2016,September,36,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,127.14,0,0,Check-Out,2019-06-03 -Resort Hotel,0,165,2016,August,31,10,2,5,2,0.0,0,HB,CN,Online TA,Direct,0,0,0,A,E,1,No Deposit,247.0,179.0,0,Transient,81.23,0,0,Check-Out,2020-06-02 -City Hotel,1,0,2015,October,36,22,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.77,0,0,Canceled,2017-11-02 -City Hotel,0,0,2016,January,4,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,16.0,45.0,0,Transient,34.81,1,0,Check-Out,2018-10-03 -City Hotel,0,397,2016,October,44,20,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,59.35,0,0,Check-Out,2019-06-03 -City Hotel,1,240,2016,July,26,8,0,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,74.92,0,1,Canceled,2019-01-03 -Resort Hotel,0,163,2017,August,31,13,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,96.36,0,1,Check-Out,2020-07-03 -Resort Hotel,1,188,2016,September,27,28,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,61.43,0,0,Canceled,2018-06-02 -Resort Hotel,0,45,2016,December,53,29,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,246.0,179.0,0,Transient,114.73,0,3,Check-Out,2019-10-04 -City Hotel,1,103,2017,June,29,31,2,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,99.49,0,2,Canceled,2020-03-03 -Resort Hotel,0,19,2015,October,44,6,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,91.67,0,2,Check-Out,2018-08-03 -Resort Hotel,0,264,2016,September,37,18,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,240.0,179.0,0,Transient,62.8,0,1,Check-Out,2019-08-04 -City Hotel,1,13,2017,June,27,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,157.0,179.0,0,Transient,134.47,0,0,Canceled,2020-07-03 -City Hotel,0,34,2016,May,11,18,1,2,2,0.0,0,SC,GBR,Online TA,Corporate,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,67.89,0,1,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,June,26,30,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,I,0,No Deposit,10.0,179.0,0,Transient-Party,3.46,0,0,Check-Out,2019-06-03 -City Hotel,0,167,2016,September,43,24,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,118.09,0,2,Check-Out,2019-08-04 -City Hotel,1,261,2017,May,20,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.93,0,0,Canceled,2020-03-03 -City Hotel,0,0,2015,October,44,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,78.93,0,1,Check-Out,2018-12-03 -City Hotel,1,267,2016,July,27,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,B,0,No Deposit,10.0,179.0,0,Transient,129.72,0,1,Canceled,2019-01-03 -City Hotel,0,40,2017,June,26,2,0,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,127.75,0,1,Check-Out,2020-06-02 -Resort Hotel,0,116,2016,October,43,23,1,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,323.0,179.0,0,Transient,35.86,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2016,September,43,23,0,1,1,0.0,0,HB,GBR,Complementary,Corporate,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient-Party,0.36,0,0,Check-Out,2019-08-04 -City Hotel,1,16,2017,July,32,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,103.01,0,0,Canceled,2020-07-03 -City Hotel,0,105,2017,March,9,27,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.84,0,2,Check-Out,2020-01-04 -City Hotel,1,40,2017,May,22,31,1,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,176.1,0,1,Canceled,2020-02-01 -City Hotel,1,383,2016,March,10,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,82.0,179.0,42,Transient,116.99,0,0,Canceled,2018-12-03 -City Hotel,1,305,2016,July,27,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,65.7,0,0,Canceled,2019-07-04 -City Hotel,1,2,2017,July,32,20,0,1,3,0.0,0,SC,USA,Online TA,Corporate,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,5.32,0,0,Canceled,2020-06-02 -Resort Hotel,0,64,2015,September,44,12,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,39.85,0,1,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,May,20,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,81.72,1,0,Check-Out,2019-02-01 -Resort Hotel,0,82,2016,December,53,6,1,5,2,0.0,0,Undefined,FRA,Direct,TA/TO,0,0,0,E,E,1,No Deposit,100.0,179.0,0,Transient,77.19,0,2,Check-Out,2019-11-03 -City Hotel,1,53,2017,July,32,3,0,2,3,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,100.81,0,1,Canceled,2019-12-04 -City Hotel,0,256,2016,July,34,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,92.67,0,0,Check-Out,2018-06-02 -City Hotel,0,26,2017,May,22,24,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,131.36,0,1,Check-Out,2020-02-01 -Resort Hotel,1,1,2016,March,10,10,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,75.91,0,0,Canceled,2018-10-03 -City Hotel,1,41,2017,July,33,22,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.87,0,1,Canceled,2020-06-02 -City Hotel,1,17,2016,June,20,26,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,66.72,0,0,Canceled,2019-02-01 -City Hotel,1,88,2016,August,38,14,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Canceled,2018-08-03 -City Hotel,1,8,2016,June,19,17,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,65.1,0,0,Canceled,2019-04-03 -Resort Hotel,0,1,2016,April,32,25,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,67.54,0,3,Check-Out,2019-03-04 -City Hotel,0,140,2017,July,26,30,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,8.0,179.0,0,Transient,152.97,0,3,Check-Out,2020-05-03 -Resort Hotel,0,269,2016,March,9,20,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,244.0,179.0,0,Transient,98.99,1,1,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,September,37,14,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,234.0,179.0,0,Transient,76.61,0,1,Check-Out,2019-06-03 -Resort Hotel,0,202,2016,April,32,30,1,1,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,313.0,179.0,0,Transient-Party,77.77,0,0,Check-Out,2019-02-01 -City Hotel,1,258,2017,July,38,21,0,1,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,150.61,0,0,Canceled,2018-06-02 -City Hotel,1,13,2017,May,22,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,84.28,0,0,No-Show,2019-11-03 -City Hotel,1,50,2017,March,10,10,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.5,0,0,Canceled,2019-10-04 -Resort Hotel,1,26,2016,January,3,24,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,78.0,179.0,0,Transient,62.76,0,0,Canceled,2018-10-03 -Resort Hotel,1,236,2016,August,33,31,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,122.48,0,1,No-Show,2019-05-04 -Resort Hotel,0,1,2015,October,43,18,0,1,2,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,A,0,No Deposit,15.0,331.0,0,Transient,39.07,0,0,Check-Out,2018-09-02 -City Hotel,0,251,2016,September,42,7,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.69,0,0,Check-Out,2019-09-03 -City Hotel,0,14,2016,October,42,30,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,42,Transient,109.92,0,2,Check-Out,2019-09-03 -Resort Hotel,0,45,2016,July,26,23,4,7,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,303.0,179.0,0,Transient,121.0,0,1,Check-Out,2018-06-02 -Resort Hotel,0,17,2016,March,10,16,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,90.25,0,1,Check-Out,2019-02-01 -City Hotel,1,76,2016,January,3,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,74.21,0,1,No-Show,2018-11-02 -City Hotel,1,266,2016,November,44,2,1,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,70.87,0,0,Canceled,2019-12-04 -Resort Hotel,1,0,2016,December,52,29,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,16.0,230.0,0,Transient,34.22,1,0,Canceled,2019-10-04 -City Hotel,0,93,2017,February,22,10,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,85.29,0,0,Check-Out,2020-06-02 -City Hotel,1,100,2015,September,37,27,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,124.49,0,0,Canceled,2018-08-03 -City Hotel,1,159,2016,August,44,14,0,2,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,92.56,0,0,Canceled,2018-09-02 -Resort Hotel,0,290,2016,September,43,10,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,151.02,1,1,Check-Out,2019-08-04 -City Hotel,1,88,2017,February,11,28,0,1,1,0.0,0,HB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,Non Refund,173.0,72.0,0,Transient,69.75,0,0,Canceled,2020-04-02 -City Hotel,1,289,2015,October,42,20,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,42,Transient,62.09,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,March,8,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,106.44,0,0,Check-Out,2019-02-01 -City Hotel,0,97,2017,March,20,30,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,117.87,0,1,Check-Out,2020-02-01 -City Hotel,0,14,2017,January,12,15,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.21,0,1,Check-Out,2019-10-04 -City Hotel,1,27,2016,October,40,31,0,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,Non Refund,35.0,179.0,0,Transient,63.99,0,0,Canceled,2018-08-03 -City Hotel,1,12,2016,March,16,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.48,0,2,Canceled,2018-12-03 -Resort Hotel,1,12,2016,January,3,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,76.16,0,1,No-Show,2018-11-02 -City Hotel,0,2,2016,October,49,15,0,2,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,79.86,0,0,Check-Out,2018-12-03 -City Hotel,0,149,2017,June,26,8,4,10,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,169.0,179.0,0,Transient-Party,93.83,0,0,Check-Out,2020-03-03 -City Hotel,0,144,2016,February,17,30,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.32,0,0,Check-Out,2019-12-04 -City Hotel,1,103,2016,April,45,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,Non Refund,9.0,179.0,0,Transient,98.57,0,0,Canceled,2019-02-01 -Resort Hotel,0,49,2015,September,48,6,2,4,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,65.42,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,July,31,9,1,4,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,142.1,0,1,Check-Out,2019-06-03 -Resort Hotel,0,257,2016,June,26,2,2,3,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,12.0,179.0,0,Group,100.74,0,1,Check-Out,2019-05-04 -City Hotel,0,2,2017,February,26,23,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,K,0,No Deposit,45.0,179.0,0,Group,62.37,0,0,Check-Out,2020-03-03 -City Hotel,1,285,2015,July,22,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,61.1,0,0,Canceled,2017-12-03 -City Hotel,1,316,2015,October,45,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.46,0,0,Canceled,2017-12-03 -Resort Hotel,1,39,2015,December,50,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,71.16,0,0,Check-Out,2018-09-02 -City Hotel,0,43,2017,February,10,30,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,111.27,0,0,Canceled,2019-11-03 -City Hotel,1,12,2016,October,42,16,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.36,0,1,Canceled,2019-05-04 -City Hotel,1,414,2017,August,36,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.04,0,0,Canceled,2018-04-02 -City Hotel,0,0,2016,May,17,20,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,E,0,No Deposit,32.0,179.0,0,Group,66.16,0,0,Check-Out,2019-03-04 -City Hotel,1,355,2016,June,23,17,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,34.0,179.0,0,Transient-Party,73.45,0,0,Canceled,2019-03-04 -Resort Hotel,0,15,2017,July,36,31,0,7,1,1.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,141.37,0,3,Check-Out,2020-06-02 -City Hotel,0,156,2016,November,42,24,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,75,Transient-Party,77.3,0,0,Check-Out,2019-08-04 -City Hotel,1,17,2017,March,11,5,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,F,2,No Deposit,8.0,179.0,0,Transient,77.21,0,3,Canceled,2020-02-01 -City Hotel,1,15,2017,March,17,30,0,2,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,111.27,0,0,Canceled,2019-12-04 -City Hotel,1,12,2017,June,26,11,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,132.08,0,0,Canceled,2020-02-01 -City Hotel,0,159,2017,July,25,30,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,118.08,0,1,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,February,7,1,0,1,1,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,D,D,2,No Deposit,35.0,179.0,0,Transient,113.0,0,0,Check-Out,2018-11-02 -Resort Hotel,1,171,2017,April,9,30,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,75,Transient,75.73,0,0,Canceled,2019-10-04 -City Hotel,1,371,2015,September,36,25,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,95.9,0,0,Canceled,2017-12-03 -Resort Hotel,0,185,2016,April,23,9,2,5,3,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,334.0,179.0,0,Transient,201.36,1,0,Check-Out,2019-06-03 -Resort Hotel,0,19,2016,October,44,28,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-08-04 -City Hotel,1,406,2017,October,42,14,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,51.71,0,2,Canceled,2017-11-02 -City Hotel,0,159,2017,April,16,19,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient,124.3,0,0,Check-Out,2020-01-04 -Resort Hotel,0,67,2016,January,12,6,2,1,3,1.0,0,BB,POL,Direct,TA/TO,0,0,0,C,C,1,No Deposit,15.0,179.0,0,Transient,230.58,0,0,Check-Out,2018-10-03 -City Hotel,1,108,2016,April,16,10,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,88.89,0,0,Canceled,2019-02-01 -City Hotel,0,91,2016,June,35,12,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,75.31,0,0,Canceled,2019-06-03 -City Hotel,1,0,2016,January,5,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,D,0,No Deposit,8.0,84.0,0,Transient,69.8,0,1,No-Show,2018-12-03 -Resort Hotel,0,1,2016,January,2,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,97.0,0,Transient,29.24,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2017,January,10,7,0,1,2,0.0,0,BB,PRT,Groups,GDS,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,89.36,0,1,Check-Out,2020-03-03 -City Hotel,1,5,2016,January,3,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,118.92,0,1,No-Show,2018-11-02 -Resort Hotel,0,138,2015,August,40,25,0,3,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,178.87,0,2,Check-Out,2018-06-02 -City Hotel,1,89,2017,June,26,6,0,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,167.63,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2015,March,17,30,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,14.0,179.0,0,Transient,120.84,0,0,Check-Out,2018-12-03 -City Hotel,0,64,2016,March,8,15,0,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,71.35,0,0,Check-Out,2018-11-02 -City Hotel,1,9,2016,April,16,11,1,2,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,1,Non Refund,2.0,179.0,0,Transient-Party,74.96,0,0,Canceled,2019-02-01 -City Hotel,1,31,2015,September,40,9,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,70.36,0,0,Canceled,2018-08-03 -City Hotel,1,0,2015,August,36,18,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,59.09,0,2,Canceled,2018-06-02 -Resort Hotel,1,319,2017,July,32,28,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,157.0,179.0,0,Transient,75.8,0,0,Canceled,2018-09-02 -Resort Hotel,0,255,2017,July,32,16,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,63.51,0,1,Check-Out,2020-06-02 -City Hotel,1,192,2016,August,32,19,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.66,0,0,Canceled,2019-04-03 -City Hotel,0,48,2017,April,26,21,0,4,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,101.49,0,0,Check-Out,2020-04-02 -City Hotel,0,210,2017,April,16,2,0,1,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient,159.84,0,0,Check-Out,2019-01-03 -City Hotel,1,8,2016,August,38,11,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,77.19,0,2,Canceled,2018-12-03 -City Hotel,1,13,2017,April,16,6,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,150.32,0,0,Canceled,2020-01-04 -Resort Hotel,0,0,2017,February,10,20,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,18.0,331.0,0,Transient-Party,62.77,0,0,Check-Out,2020-03-03 -City Hotel,1,172,2016,March,18,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,85.22,0,0,Canceled,2019-02-01 -City Hotel,0,12,2016,May,21,5,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.08,0,0,Check-Out,2019-03-04 -City Hotel,1,188,2016,June,26,20,2,1,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,202.21,0,0,Canceled,2019-01-03 -City Hotel,0,49,2016,March,3,31,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,1.0,179.0,0,Transient-Party,118.75,0,0,Check-Out,2018-11-02 -Resort Hotel,0,32,2017,January,2,6,2,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,77.0,0,Transient,38.29,0,0,Check-Out,2020-04-02 -City Hotel,1,11,2016,September,31,24,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.3,0,0,Canceled,2019-08-04 -City Hotel,1,100,2015,July,31,5,1,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.26,0,0,Canceled,2018-06-02 -City Hotel,1,159,2016,April,23,30,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.16,0,0,Canceled,2018-12-03 -City Hotel,0,174,2017,July,32,12,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,135.15,0,1,Check-Out,2020-06-02 -City Hotel,1,252,2016,November,43,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,103.42,0,0,Canceled,2018-08-03 -City Hotel,1,2,2016,November,51,26,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,70.92,0,0,Canceled,2019-06-03 -Resort Hotel,1,127,2017,August,36,3,3,6,1,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,242.0,179.0,0,Transient,239.24,1,0,Canceled,2020-06-02 -City Hotel,1,40,2016,November,50,30,0,4,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,8.0,179.0,0,Transient,106.49,0,1,Canceled,2019-09-03 -Resort Hotel,0,7,2017,March,12,30,0,3,2,0.0,0,BB,PRT,Groups,Direct,1,0,0,A,D,0,Non Refund,14.0,223.0,0,Transient,39.83,0,0,Check-Out,2019-11-03 -City Hotel,0,144,2017,January,11,28,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,95.14,0,0,Check-Out,2019-11-03 -City Hotel,1,1,2017,June,37,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.62,0,1,Canceled,2020-02-01 -City Hotel,0,5,2017,March,18,14,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-02-01 -City Hotel,1,328,2015,July,32,23,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.06,0,0,Canceled,2017-09-02 -Resort Hotel,0,111,2017,August,37,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,128.32,0,1,Check-Out,2020-05-03 -City Hotel,1,15,2016,March,11,16,0,1,2,0.0,0,BB,ITA,Undefined,Corporate,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,60.86,0,0,Canceled,2019-04-03 -City Hotel,1,251,2017,June,26,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.65,0,0,Canceled,2020-03-03 -City Hotel,0,15,2016,August,37,5,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,122.67,0,1,Check-Out,2019-05-04 -Resort Hotel,1,358,2017,June,21,20,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,239.0,179.0,0,Transient,115.15,0,0,Canceled,2020-02-01 -Resort Hotel,0,13,2017,January,11,2,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,378.0,179.0,0,Group,31.63,0,1,Check-Out,2019-10-04 -City Hotel,0,40,2016,April,18,9,1,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,191.13,0,0,Check-Out,2019-02-01 -Resort Hotel,0,142,2016,October,44,27,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,258.0,179.0,0,Transient,72.21,0,0,No-Show,2019-09-03 -City Hotel,1,60,2016,April,18,25,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,76.0,179.0,0,Transient,61.09,0,0,Canceled,2019-01-03 -Resort Hotel,0,163,2016,May,22,9,0,2,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,199.47,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2016,April,18,16,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,6.0,179.0,0,Transient,128.79,0,1,Check-Out,2019-03-04 -City Hotel,1,158,2017,March,7,8,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,61.0,179.0,0,Transient,98.5,0,0,Canceled,2020-04-02 -City Hotel,0,39,2016,October,43,2,2,5,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,154.31,0,1,Check-Out,2019-09-03 -City Hotel,1,43,2016,August,23,24,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,133.64,0,2,Canceled,2019-02-01 -Resort Hotel,0,247,2016,October,51,26,1,1,1,0.0,0,Undefined,USA,Groups,Corporate,0,0,0,A,D,0,No Deposit,184.0,179.0,0,Transient-Party,62.86,0,0,Check-Out,2018-12-03 -Resort Hotel,0,252,2016,May,21,31,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,Refundable,14.0,223.0,0,Transient-Party,58.87,0,0,Check-Out,2019-03-04 -Resort Hotel,0,87,2017,June,25,24,1,1,2,0.0,0,HB,IRL,Direct,Direct,1,0,1,E,C,1,No Deposit,14.0,179.0,0,Group,86.43,0,1,Check-Out,2020-03-03 -Resort Hotel,0,307,2016,June,24,20,0,4,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,79.71,0,0,Check-Out,2019-02-01 -City Hotel,1,266,2015,December,34,2,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.16,0,0,Canceled,2018-11-02 -City Hotel,0,88,2015,October,44,28,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,11.0,179.0,0,Group,68.87,0,0,Check-Out,2019-11-03 -City Hotel,1,52,2016,April,22,7,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,106.58,0,1,Canceled,2019-02-01 -City Hotel,0,49,2015,September,35,19,1,3,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,122.06,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,September,43,12,1,1,1,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,125.47,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2015,September,44,11,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,75.48,0,0,Check-Out,2018-08-03 -City Hotel,1,220,2017,August,35,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,101.55,0,2,Canceled,2019-11-03 -City Hotel,0,0,2016,January,5,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,K,0,No Deposit,13.0,45.0,0,Group,61.34,1,0,Check-Out,2019-10-04 -City Hotel,1,11,2016,February,12,27,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,11.0,75.0,39,Transient,77.22,0,0,No-Show,2018-12-03 -Resort Hotel,0,15,2015,December,50,23,1,1,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,C,C,0,No Deposit,334.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-08-03 -Resort Hotel,0,3,2016,April,15,23,0,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,241.0,179.0,0,Transient,230.16,1,2,Check-Out,2019-05-04 -City Hotel,1,10,2016,August,33,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.26,0,0,Canceled,2019-05-04 -City Hotel,0,1,2016,December,48,4,1,0,2,0.0,0,BB,ITA,Complementary,Direct,1,0,1,A,F,0,No Deposit,15.0,179.0,0,Transient,0.35,0,3,Check-Out,2019-11-03 -Resort Hotel,1,31,2017,February,10,3,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,208.95,0,0,Canceled,2020-02-01 -City Hotel,0,14,2016,January,53,28,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,83.04,0,2,Check-Out,2018-12-03 -Resort Hotel,1,22,2017,February,4,5,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,103.5,0,0,Canceled,2019-12-04 -City Hotel,1,62,2016,March,15,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,87.76,0,0,Canceled,2019-02-01 -City Hotel,1,228,2016,August,32,25,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,68.82,0,1,Canceled,2018-06-02 -Resort Hotel,0,0,2016,July,26,21,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,250.0,179.0,0,Transient,0.04,0,1,Check-Out,2019-03-04 -City Hotel,0,10,2015,October,51,16,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,112.93,0,2,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,February,9,19,1,0,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,26.88,0,0,Check-Out,2019-01-03 -City Hotel,1,258,2015,October,45,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,64,Transient-Party,59.01,0,0,Canceled,2018-08-03 -City Hotel,0,21,2015,October,43,9,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,107.87,0,0,Check-Out,2018-08-03 -Resort Hotel,0,11,2016,March,12,28,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,1.04,1,0,Check-Out,2019-02-01 -Resort Hotel,0,20,2016,July,34,18,1,10,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,178.96,1,0,Check-Out,2019-08-04 -Resort Hotel,0,193,2017,May,21,5,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,No Deposit,40.0,179.0,0,Transient,71.62,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,February,4,13,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,63.5,0,1,Check-Out,2018-11-02 -City Hotel,1,17,2017,July,32,2,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,171.31,0,3,Canceled,2020-06-02 -City Hotel,0,183,2017,September,36,13,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,90.45,0,0,Check-Out,2020-06-02 -City Hotel,1,51,2016,September,37,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.78,0,0,Canceled,2018-09-02 -Resort Hotel,0,107,2017,February,11,15,2,5,1,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,61.0,0,0,Check-Out,2020-04-02 -City Hotel,1,279,2017,August,28,1,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,6.0,179.0,0,Transient,206.56,0,0,Canceled,2019-10-04 -Resort Hotel,0,255,2016,July,34,28,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,186.86,0,0,Check-Out,2019-06-03 -Resort Hotel,0,47,2016,August,36,5,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,202.0,179.0,0,Transient,186.15,0,0,Check-Out,2020-06-02 -City Hotel,1,47,2016,March,11,13,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.68,0,0,Canceled,2019-03-04 -City Hotel,1,263,2017,June,28,24,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,157.0,179.0,0,Transient,150.54,0,0,Canceled,2020-01-04 -City Hotel,0,1,2016,August,37,5,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,8.0,179.0,0,Transient-Party,234.77,1,2,Check-Out,2019-05-04 -City Hotel,0,36,2017,May,23,28,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,187.15,0,2,Check-Out,2020-04-02 -Resort Hotel,0,249,2017,July,25,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Contract,86.4,0,1,Check-Out,2020-03-03 -City Hotel,1,47,2016,October,43,13,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,122.52,0,1,Canceled,2019-12-04 -City Hotel,0,109,2017,April,10,28,2,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,C,F,0,No Deposit,14.0,179.0,0,Transient,99.65,0,2,Check-Out,2020-01-04 -Resort Hotel,0,148,2017,April,10,21,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,79.97,0,0,Check-Out,2019-11-03 -City Hotel,1,3,2016,March,9,16,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,82.0,179.0,0,Transient,73.32,0,0,Canceled,2018-12-03 -City Hotel,1,6,2016,June,29,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,157.0,179.0,0,Transient,118.41,0,1,Canceled,2019-03-04 -Resort Hotel,0,257,2016,October,41,24,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,F,0,No Deposit,246.0,179.0,0,Transient,33.71,0,0,Check-Out,2019-08-04 -Resort Hotel,0,144,2017,May,26,20,1,2,2,0.0,0,HB,DEU,Groups,Corporate,0,0,0,A,A,2,Non Refund,179.0,179.0,0,Transient-Party,94.16,0,0,Check-Out,2020-04-02 -City Hotel,1,92,2016,January,4,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,86.13,0,1,Canceled,2019-09-03 -Resort Hotel,0,44,2015,December,51,6,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,40.05,0,0,Check-Out,2018-11-02 -Resort Hotel,0,53,2017,February,11,29,1,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient-Party,23.97,0,0,Check-Out,2020-05-03 -City Hotel,1,283,2016,May,22,15,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,Non Refund,9.0,179.0,0,Transient,122.56,0,0,Canceled,2019-02-01 -City Hotel,0,3,2016,July,30,24,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,207.47,0,1,Check-Out,2019-06-03 -Resort Hotel,0,15,2016,October,43,17,1,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,192.23,0,1,Check-Out,2019-09-03 -City Hotel,0,105,2015,January,50,29,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,60.68,0,0,Check-Out,2018-12-03 -City Hotel,1,101,2016,March,16,31,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,70.24,0,0,Canceled,2019-03-04 -City Hotel,0,10,2016,April,16,5,0,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.09,0,3,Check-Out,2019-02-01 -Resort Hotel,1,299,2017,March,18,31,1,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,310.0,235.0,0,Transient,40.35,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2017,March,16,27,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,109.74,0,0,Check-Out,2020-02-01 -Resort Hotel,0,119,2017,July,25,16,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,10.0,179.0,75,Transient,0.0,1,1,Check-Out,2020-01-04 -Resort Hotel,1,235,2016,August,37,24,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,111.6,0,3,Canceled,2019-04-03 -Resort Hotel,0,45,2017,August,33,29,4,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,Refundable,93.0,179.0,0,Contract,75.24,1,0,Check-Out,2020-07-03 -Resort Hotel,0,1,2015,October,42,8,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,35.94,0,3,Check-Out,2018-08-03 -Resort Hotel,0,159,2016,March,11,30,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,69.46,0,0,Check-Out,2018-11-02 -Resort Hotel,1,162,2015,September,32,10,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,63.31,0,0,Canceled,2018-08-03 -City Hotel,1,9,2016,September,39,13,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,90.09,0,0,Canceled,2019-06-03 -City Hotel,0,1,2016,October,50,21,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,28.0,179.0,0,Transient-Party,80.52,0,0,Check-Out,2019-07-04 -City Hotel,1,152,2016,July,27,8,2,3,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.91,0,0,Canceled,2019-01-03 -City Hotel,0,33,2016,June,36,25,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,101.76,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,February,11,9,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,61.38,0,0,Check-Out,2018-10-03 -Resort Hotel,0,18,2017,March,18,13,1,3,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,62.81,0,0,Check-Out,2020-02-01 -City Hotel,1,45,2016,October,43,30,2,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.36,0,3,Canceled,2019-08-04 -City Hotel,0,57,2017,March,8,8,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,9.0,179.0,0,Transient,114.63,1,1,Check-Out,2020-01-04 -City Hotel,1,106,2016,April,44,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,99.32,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2016,October,44,9,1,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,A,0,No Deposit,17.0,205.0,0,Transient,44.83,0,0,Check-Out,2019-07-04 -Resort Hotel,0,37,2015,December,53,26,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,60.74,0,2,Check-Out,2019-02-01 -Resort Hotel,0,243,2015,July,31,25,1,0,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,143.0,179.0,0,Transient-Party,71.49,0,0,Check-Out,2019-02-01 -City Hotel,1,15,2016,May,21,21,0,1,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,83.15,0,0,No-Show,2019-11-03 -City Hotel,0,16,2016,November,37,26,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,131.28,0,2,Check-Out,2019-07-04 -City Hotel,0,22,2017,June,28,18,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,159.76,0,1,Check-Out,2020-07-03 -City Hotel,0,86,2016,September,45,24,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,129.42,0,0,Check-Out,2018-08-03 -City Hotel,0,51,2016,April,17,21,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,126.0,179.0,0,Transient,89.97,0,0,Canceled,2019-02-01 -Resort Hotel,0,19,2017,March,11,27,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,71.14,0,1,Check-Out,2020-03-03 -Resort Hotel,0,4,2015,December,50,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,66.3,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2017,March,8,14,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,63.0,179.0,0,Transient,63.47,0,1,Check-Out,2020-02-01 -City Hotel,1,91,2016,February,24,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,137.0,179.0,19,Transient,76.42,0,0,Canceled,2018-11-02 -City Hotel,1,238,2016,December,50,6,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,Non Refund,9.0,179.0,0,Transient,79.17,0,2,Canceled,2018-11-02 -Resort Hotel,0,152,2017,June,27,6,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,166.44,1,2,Check-Out,2020-02-01 -Resort Hotel,0,39,2017,March,3,10,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.3,0,1,Check-Out,2019-11-03 -Resort Hotel,1,92,2017,July,30,2,2,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,1,No Deposit,14.0,179.0,75,Transient-Party,124.46,0,0,Canceled,2018-06-02 -Resort Hotel,0,213,2017,March,17,18,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Refundable,11.0,222.0,0,Transient-Party,51.19,0,0,Check-Out,2020-03-03 -City Hotel,0,13,2016,November,31,13,2,1,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,73.7,0,1,Check-Out,2019-05-04 -Resort Hotel,1,4,2015,November,52,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,36.69,0,0,Check-Out,2018-08-03 -City Hotel,1,13,2015,November,50,21,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,147.92,0,0,Canceled,2018-07-03 -City Hotel,1,57,2017,August,53,5,0,4,3,0.0,0,BB,CHE,Direct,Corporate,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient,190.93,0,1,Canceled,2020-04-02 -Resort Hotel,0,56,2015,November,43,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,33.12,0,0,Check-Out,2018-09-02 -City Hotel,1,55,2017,July,34,16,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,141.56,0,0,Canceled,2020-05-03 -Resort Hotel,1,141,2017,June,22,16,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,1,Non Refund,83.0,179.0,0,Transient,166.84,0,0,Canceled,2020-06-02 -City Hotel,1,250,2016,June,28,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,100.92,0,1,Canceled,2019-03-04 -City Hotel,1,368,2016,May,16,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,41,Transient,95.83,0,0,Canceled,2018-12-03 -City Hotel,1,0,2016,November,44,13,0,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,D,0,No Deposit,13.0,173.0,0,Transient,81.51,0,0,Canceled,2019-11-03 -City Hotel,0,267,2017,June,29,10,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,234.0,0,Transient,127.42,0,2,Check-Out,2020-04-02 -City Hotel,1,289,2015,August,37,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.0,0,0,Canceled,2018-09-02 -City Hotel,1,35,2016,March,44,27,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,83.88,0,0,Canceled,2018-10-03 -City Hotel,0,86,2017,June,24,5,2,4,2,1.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.17,0,1,Check-Out,2020-03-03 -City Hotel,0,397,2015,October,26,25,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.68,0,0,Check-Out,2018-06-02 -Resort Hotel,0,9,2016,December,53,24,2,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,120.05,1,0,Check-Out,2019-10-04 -City Hotel,1,285,2016,July,36,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.35,0,1,Canceled,2018-01-03 -Resort Hotel,0,215,2016,October,38,24,1,10,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,175.0,179.0,0,Transient,102.27,0,0,Check-Out,2019-05-04 -Resort Hotel,0,195,2017,May,22,20,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,123.54,0,0,Check-Out,2020-03-03 -City Hotel,0,10,2017,April,17,19,2,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.31,0,0,Check-Out,2020-03-03 -City Hotel,1,144,2017,May,18,9,0,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,0,Transient,87.25,0,0,Canceled,2018-12-03 -Resort Hotel,0,231,2015,August,35,20,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,L,F,2,No Deposit,14.0,179.0,0,Transient,232.41,0,0,Check-Out,2018-07-03 -City Hotel,0,0,2015,July,33,10,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,139.0,179.0,0,Contract,126.48,0,0,Check-Out,2019-05-04 -City Hotel,1,54,2015,March,16,21,2,1,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,81.09,0,0,Canceled,2018-12-03 -Resort Hotel,1,287,2015,October,44,2,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,Non Refund,241.0,179.0,0,Transient,62.47,0,0,Canceled,2018-10-03 -Resort Hotel,0,189,2016,December,23,27,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,317.0,179.0,0,Transient,65.89,0,1,Check-Out,2019-08-04 -Resort Hotel,0,9,2016,May,22,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,1,No Deposit,241.0,179.0,0,Transient-Party,97.61,0,0,Check-Out,2019-03-04 -City Hotel,0,40,2016,April,23,28,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.67,0,0,Check-Out,2019-02-01 -Resort Hotel,1,102,2016,August,36,12,2,10,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,169.0,179.0,0,Contract,189.15,0,0,Canceled,2019-05-04 -City Hotel,0,19,2017,February,8,21,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.72,0,0,Check-Out,2020-01-04 -City Hotel,1,36,2016,June,16,6,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,114.35,0,0,Canceled,2019-03-04 -City Hotel,0,35,2017,January,5,24,1,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,94.57,0,1,Check-Out,2019-10-04 -Resort Hotel,0,44,2016,December,50,6,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,3,No Deposit,244.0,179.0,0,Transient,111.86,1,0,Check-Out,2019-12-04 -City Hotel,1,50,2017,February,11,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,85.01,0,2,Canceled,2020-01-04 -City Hotel,0,2,2017,January,2,15,0,3,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.18,0,0,Check-Out,2020-06-02 -City Hotel,0,2,2016,May,22,20,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.94,1,1,Check-Out,2019-04-03 -City Hotel,0,90,2016,July,26,2,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.57,0,2,Check-Out,2020-06-02 -City Hotel,0,144,2017,August,35,2,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.22,0,0,Check-Out,2020-07-03 -Resort Hotel,0,16,2016,August,38,27,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,312.0,179.0,0,Transient,188.84,0,0,Check-Out,2019-08-04 -City Hotel,1,1,2017,February,3,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.08,0,1,Canceled,2019-11-03 -City Hotel,0,3,2017,March,22,30,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.97,0,1,Check-Out,2020-03-03 -Resort Hotel,1,286,2016,April,26,12,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,152.46,0,0,Canceled,2019-02-01 -Resort Hotel,0,220,2017,May,21,30,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,95.66,0,0,Check-Out,2020-04-02 -Resort Hotel,0,159,2017,June,36,30,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,124.34,0,1,Check-Out,2019-08-04 -City Hotel,0,5,2017,January,3,10,0,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.28,0,2,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,December,50,29,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,41.54,1,0,Check-Out,2018-12-03 -Resort Hotel,0,15,2017,July,26,15,2,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,88.72,1,2,Check-Out,2020-03-03 -City Hotel,1,320,2017,July,38,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,1.0,179.0,0,Transient,79.1,0,2,Canceled,2019-12-04 -City Hotel,0,12,2016,May,21,28,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,B,0,No Deposit,30.0,179.0,0,Transient-Party,79.98,0,0,Check-Out,2019-04-03 -City Hotel,1,46,2016,June,22,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,143.01,0,0,Canceled,2019-03-04 -Resort Hotel,0,38,2016,November,11,18,1,2,1,0.0,0,BB,NLD,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,254.0,0,Transient,32.84,1,1,Check-Out,2019-11-03 -City Hotel,1,8,2017,May,20,6,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Canceled,2020-03-03 -Resort Hotel,1,113,2017,April,36,6,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,151.95,0,0,Canceled,2020-04-02 -Resort Hotel,0,1,2017,June,16,9,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,16.0,179.0,0,Transient-Party,109.39,0,0,Check-Out,2020-02-01 -Resort Hotel,0,211,2016,December,50,9,1,2,2,0.0,0,FB,ESP,Groups,Direct,0,0,0,E,D,0,No Deposit,296.0,179.0,0,Transient-Party,138.68,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,July,34,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,47.51,1,0,Check-Out,2018-06-02 -City Hotel,1,111,2015,June,33,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,105.37,0,0,Canceled,2018-12-03 -Resort Hotel,0,14,2016,May,23,28,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,154.45,1,1,Check-Out,2019-03-04 -City Hotel,0,160,2016,November,50,27,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.5,0,0,Canceled,2019-09-03 -Resort Hotel,1,113,2017,June,10,14,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,378.0,179.0,0,Transient,77.5,0,0,Canceled,2020-05-03 -City Hotel,1,227,2016,December,47,5,2,5,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,2,No Deposit,13.0,287.0,0,Transient,1.56,0,0,Canceled,2019-07-04 -City Hotel,0,12,2016,August,53,13,1,4,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,2,No Deposit,14.0,179.0,0,Transient,139.18,0,1,Check-Out,2019-07-04 -Resort Hotel,0,19,2015,November,49,26,2,0,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Transient,43.76,0,2,Check-Out,2018-10-03 -City Hotel,0,16,2015,December,26,6,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-06-02 -Resort Hotel,1,275,2015,December,49,31,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,64.13,0,0,Canceled,2018-12-03 -Resort Hotel,0,46,2016,August,37,9,0,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,133.22,0,1,Check-Out,2019-08-04 -City Hotel,0,60,2017,July,26,19,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,222.28,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,December,50,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,15.0,255.0,0,Transient,29.32,0,0,Check-Out,2019-11-03 -Resort Hotel,1,61,2017,August,36,21,2,5,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,113.38,0,1,Canceled,2020-06-02 -City Hotel,0,15,2017,June,29,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient,88.12,0,1,Check-Out,2020-04-02 -Resort Hotel,0,4,2015,September,44,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,145.16,0,1,Check-Out,2018-08-03 -City Hotel,0,304,2015,October,37,17,0,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,87.56,0,0,Check-Out,2018-09-02 -City Hotel,0,23,2017,April,9,10,1,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient,79.43,0,0,Canceled,2019-03-04 -Resort Hotel,0,140,2015,July,30,14,0,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,242.0,179.0,0,Transient,83.99,1,1,Check-Out,2018-06-02 -Resort Hotel,0,159,2017,May,21,30,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,2,Refundable,11.0,179.0,0,Transient-Party,63.29,0,1,Check-Out,2020-02-01 -City Hotel,0,110,2017,May,21,9,2,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,158.4,0,2,Check-Out,2020-03-03 -Resort Hotel,0,153,2016,February,11,31,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,1,Refundable,13.0,223.0,0,Transient-Party,60.56,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2015,October,42,5,1,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient-Party,115.41,0,0,Check-Out,2018-09-02 -City Hotel,1,234,2016,August,37,24,2,5,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,252.0,0,1,Canceled,2019-07-04 -City Hotel,1,0,2017,March,53,16,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,6.0,179.0,0,Transient,0.0,0,1,Canceled,2018-12-03 -City Hotel,0,68,2015,July,34,24,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,2.0,179.0,0,Transient-Party,66.48,0,0,Check-Out,2018-11-02 -City Hotel,0,22,2015,September,35,28,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,302.0,179.0,0,Transient-Party,66.55,0,0,Check-Out,2018-09-02 -City Hotel,0,17,2017,March,10,24,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,63.41,0,0,Check-Out,2020-03-03 -City Hotel,0,286,2017,June,25,15,0,2,2,0.0,0,SC,,Corporate,Direct,0,0,0,A,A,2,No Deposit,12.0,331.0,0,Transient-Party,105.49,0,0,Check-Out,2020-03-03 -City Hotel,0,93,2017,May,24,17,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Group,68.27,0,1,Check-Out,2020-05-03 -Resort Hotel,0,39,2017,March,9,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,42.37,0,2,Check-Out,2019-03-04 -City Hotel,0,2,2016,June,27,30,0,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,131.05,0,3,Check-Out,2019-06-03 -Resort Hotel,0,45,2017,March,17,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,161.0,179.0,0,Transient,66.61,0,1,Check-Out,2020-04-02 -Resort Hotel,1,104,2017,July,24,28,2,5,2,0.0,0,HB,GBR,Direct,Corporate,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,210.37,0,0,Canceled,2020-02-01 -City Hotel,1,14,2016,February,9,4,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.66,0,0,Canceled,2018-10-03 -City Hotel,0,41,2016,May,21,16,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,116.94,0,1,Check-Out,2019-04-03 -City Hotel,0,1,2016,January,51,16,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,66.1,0,0,Check-Out,2019-05-04 -City Hotel,1,92,2015,September,44,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,39,Transient,60.5,0,0,Canceled,2018-09-02 -Resort Hotel,0,7,2017,January,10,19,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,115.08,0,3,Check-Out,2020-02-01 -City Hotel,1,0,2016,December,53,30,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,100.18,0,0,Canceled,2019-11-03 -Resort Hotel,0,1,2015,July,36,9,0,1,3,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,227.73,0,1,Check-Out,2018-06-02 -City Hotel,0,0,2015,September,37,5,2,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,127.54,0,1,Check-Out,2018-06-02 -City Hotel,0,390,2016,September,37,12,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,62.17,0,0,Check-Out,2019-05-04 -City Hotel,1,10,2015,August,44,28,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,48.41,0,0,Canceled,2018-09-02 -City Hotel,0,160,2016,September,28,15,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.9,0,0,Check-Out,2019-08-04 -City Hotel,0,277,2016,August,31,21,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,103.21,0,0,Check-Out,2019-05-04 -City Hotel,1,31,2017,July,29,16,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,A,2,No Deposit,14.0,179.0,0,Transient,120.25,0,0,Canceled,2020-02-01 -City Hotel,1,215,2016,February,15,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Group,76.79,0,0,Canceled,2018-10-03 -Resort Hotel,0,112,2016,October,43,5,1,1,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,63.26,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2016,December,53,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,E,0,No Deposit,16.0,331.0,0,Transient,59.73,0,0,Check-Out,2019-12-04 -City Hotel,0,14,2017,June,21,8,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.44,0,1,Check-Out,2020-04-02 -City Hotel,1,256,2016,September,37,21,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.68,0,0,Canceled,2018-08-03 -City Hotel,1,308,2017,March,28,28,1,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,131.96,0,0,Canceled,2020-03-03 -Resort Hotel,1,54,2015,December,51,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,F,0,No Deposit,244.0,179.0,0,Transient,37.96,0,0,Canceled,2018-11-02 -Resort Hotel,1,89,2017,August,35,6,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,200.48,0,0,Canceled,2018-06-02 -City Hotel,0,61,2016,May,37,13,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.53,0,2,Check-Out,2019-06-03 -Resort Hotel,0,267,2017,August,36,24,4,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,246.0,179.0,0,Transient,192.06,0,3,Check-Out,2019-09-03 -Resort Hotel,0,247,2016,May,27,9,3,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,318.0,179.0,0,Transient-Party,80.52,0,0,Check-Out,2019-03-04 -City Hotel,1,279,2017,July,31,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,114.12,0,0,Canceled,2020-03-03 -Resort Hotel,0,110,2016,May,25,24,2,5,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,378.0,179.0,0,Transient,111.41,1,1,Check-Out,2019-04-03 -City Hotel,1,68,2015,October,52,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,70.16,0,0,Canceled,2018-08-03 -City Hotel,0,6,2017,June,21,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,76.0,0,Transient-Party,37.96,0,0,Check-Out,2020-02-01 -Resort Hotel,0,86,2016,April,22,30,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,92.72,1,2,Check-Out,2019-03-04 -City Hotel,0,161,2016,March,21,21,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,40,Transient,148.96,0,1,Check-Out,2019-03-04 -City Hotel,0,240,2015,September,34,15,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Contract,120.71,0,1,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,August,36,27,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,74.58,0,1,Check-Out,2018-07-03 -Resort Hotel,1,165,2015,September,37,2,4,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,116.72,0,0,Canceled,2018-07-03 -City Hotel,0,39,2017,May,22,2,1,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,230.7,0,3,Check-Out,2020-03-03 -City Hotel,1,5,2017,February,8,27,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,67.97,0,0,Canceled,2019-03-04 -City Hotel,1,45,2017,April,19,17,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,161.74,0,0,Canceled,2019-11-03 -City Hotel,0,99,2016,August,23,27,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.3,0,2,Check-Out,2019-05-04 -Resort Hotel,0,45,2017,March,19,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,55.53,0,1,Check-Out,2019-11-03 -City Hotel,1,303,2015,August,37,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,39,Transient-Party,96.77,0,0,Canceled,2017-12-03 -City Hotel,0,1,2016,October,43,20,1,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,184.0,79.0,0,Transient,78.79,0,0,Check-Out,2018-11-02 -City Hotel,1,1,2016,June,44,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,221.0,0,Transient,35.93,0,0,Canceled,2018-12-03 -Resort Hotel,0,51,2015,November,53,31,1,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,107.47,1,2,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,January,11,20,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,2,No Deposit,19.0,179.0,0,Transient,158.31,0,3,Check-Out,2019-08-04 -Resort Hotel,0,109,2016,April,15,30,1,1,2,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,95.83,1,0,Check-Out,2019-03-04 -City Hotel,1,385,2017,May,21,7,2,4,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,229.0,179.0,0,Transient,88.53,0,0,Canceled,2020-03-03 -Resort Hotel,1,235,2016,May,22,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,61.83,0,0,Canceled,2019-03-04 -City Hotel,1,61,2017,August,37,30,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,166.21,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,June,25,26,2,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,3,No Deposit,17.0,179.0,0,Transient,149.61,0,0,Check-Out,2020-02-01 -City Hotel,1,57,2016,June,28,26,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient,155.07,0,0,Canceled,2019-02-01 -City Hotel,1,15,2017,July,20,24,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,7.0,179.0,0,Transient,112.36,0,0,Canceled,2020-04-02 -Resort Hotel,0,187,2017,May,23,28,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,2,No Deposit,323.0,179.0,0,Transient-Party,77.63,0,0,Check-Out,2020-04-02 -Resort Hotel,0,21,2015,October,38,9,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,79.39,0,0,Check-Out,2018-07-03 -Resort Hotel,0,344,2015,September,36,29,4,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Contract,60.03,0,1,Check-Out,2017-12-03 -Resort Hotel,0,128,2016,March,10,30,1,3,2,0.0,0,BB,,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient-Party,75.91,0,0,Check-Out,2019-01-03 -City Hotel,1,158,2016,November,45,28,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.79,0,0,Canceled,2019-08-04 -City Hotel,1,270,2017,April,20,13,0,3,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,D,2,No Deposit,13.0,179.0,0,Transient,62.86,0,1,Canceled,2020-02-01 -Resort Hotel,0,42,2016,November,52,31,0,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,59.45,1,1,Check-Out,2019-09-03 -City Hotel,0,1,2017,April,21,15,1,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.6,0,2,Check-Out,2020-05-03 -Resort Hotel,0,52,2016,June,22,9,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,H,3,No Deposit,314.0,179.0,0,Transient,49.63,1,1,Check-Out,2019-03-04 -Resort Hotel,0,140,2016,March,11,24,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,A,0,No Deposit,249.0,179.0,0,Transient,80.54,1,0,Check-Out,2019-03-04 -City Hotel,1,2,2015,September,33,18,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,58.0,0,Transient,61.88,0,0,Canceled,2018-08-03 -City Hotel,1,94,2015,March,16,28,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,99.79,0,2,Canceled,2018-11-02 -Resort Hotel,0,38,2017,June,28,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,169.0,179.0,0,Contract,152.28,0,2,Check-Out,2020-04-02 -City Hotel,0,93,2016,January,36,21,0,3,2,0.0,0,BB,NLD,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.2,0,0,Check-Out,2019-10-04 -City Hotel,0,49,2016,September,37,18,0,1,2,0.0,0,BB,ITA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,60,Transient,126.42,0,0,Check-Out,2019-09-03 -City Hotel,1,117,2015,September,38,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,125.13,0,0,Canceled,2018-08-03 -City Hotel,0,25,2017,May,23,28,1,1,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,172.44,0,0,Check-Out,2020-03-03 -City Hotel,1,130,2017,January,10,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,60.98,0,0,Canceled,2018-10-03 -City Hotel,0,104,2017,June,25,11,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,112.56,0,1,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,March,15,30,1,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,17.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-02-01 -City Hotel,0,52,2017,April,17,18,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,13.0,179.0,0,Transient,194.41,0,3,Check-Out,2020-04-02 -Resort Hotel,0,8,2015,August,37,6,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient,153.26,0,1,Check-Out,2018-06-02 -City Hotel,0,42,2016,August,36,15,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,125.02,0,3,Check-Out,2019-05-04 -City Hotel,1,0,2015,July,33,18,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,193.3,0,0,Canceled,2018-06-02 -City Hotel,0,280,2015,September,43,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.06,0,0,Check-Out,2018-07-03 -City Hotel,1,287,2016,July,33,5,2,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,173.57,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2017,August,31,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-06-02 -City Hotel,0,98,2016,March,49,6,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,73.49,0,1,Check-Out,2019-10-04 -City Hotel,1,9,2017,March,4,21,1,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.39,0,0,Canceled,2019-11-03 -City Hotel,0,30,2016,June,25,2,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.09,0,1,Check-Out,2019-01-03 -City Hotel,1,158,2017,February,16,15,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,75,Transient,101.95,0,0,Canceled,2019-10-04 -City Hotel,1,0,2017,May,22,10,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Canceled,2019-11-03 -City Hotel,0,159,2017,August,37,24,0,3,3,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.15,1,2,Check-Out,2020-06-02 -City Hotel,1,17,2016,January,4,28,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,77.65,0,1,No-Show,2019-11-03 -Resort Hotel,0,245,2017,May,22,5,0,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,33.0,179.0,0,Transient,76.7,1,0,Check-Out,2020-03-03 -Resort Hotel,0,20,2015,August,35,15,0,5,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,F,A,1,No Deposit,8.0,179.0,0,Transient-Party,156.08,0,0,Check-Out,2018-08-03 -Resort Hotel,1,17,2017,March,9,22,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient-Party,62.47,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2015,October,42,22,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,244.0,179.0,0,Transient,42.9,0,0,Check-Out,2018-08-03 -City Hotel,1,42,2016,October,24,28,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,161.47,0,1,Canceled,2019-05-04 -City Hotel,0,4,2015,March,42,19,2,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,73.46,0,2,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,March,11,17,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,83.71,0,1,Check-Out,2019-02-01 -Resort Hotel,1,229,2015,October,45,28,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,C,0,No Deposit,155.0,179.0,0,Transient-Party,38.26,0,0,Check-Out,2018-06-02 -Resort Hotel,0,82,2017,March,24,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,286.0,179.0,0,Transient,105.04,0,0,Check-Out,2019-02-01 -City Hotel,1,83,2016,January,44,27,2,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,27.1,0,0,No-Show,2019-03-04 -City Hotel,1,43,2017,August,35,21,2,5,1,0.0,0,BB,AUT,Online TA,TA/TO,0,1,0,F,D,0,No Deposit,12.0,179.0,0,Transient,154.2,0,0,Canceled,2017-12-03 -Resort Hotel,0,41,2017,November,20,31,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,182.95,0,2,Check-Out,2019-11-03 -City Hotel,0,25,2016,October,45,29,0,2,1,0.0,0,SC,NLD,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,100.63,0,0,Check-Out,2019-09-03 -City Hotel,0,141,2016,October,45,10,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.32,0,1,Check-Out,2018-09-02 -City Hotel,1,270,2016,December,42,24,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.95,0,2,Canceled,2019-10-04 -Resort Hotel,0,8,2016,May,22,31,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,238.0,179.0,0,Transient,114.17,0,2,Check-Out,2019-02-01 -Resort Hotel,0,16,2015,December,50,10,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,76.35,0,2,Check-Out,2018-08-03 -Resort Hotel,0,15,2016,January,5,28,1,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,92.0,179.0,0,Transient,67.45,1,0,Check-Out,2018-12-03 -City Hotel,0,0,2017,April,12,20,0,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,161.51,0,0,Check-Out,2020-02-01 -City Hotel,0,11,2016,December,44,20,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,103.95,0,1,Check-Out,2019-11-03 -Resort Hotel,0,102,2015,November,50,5,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,48.18,0,2,Check-Out,2019-07-04 -Resort Hotel,0,81,2016,March,15,21,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,117.07,1,0,Check-Out,2019-01-03 -Resort Hotel,0,94,2016,October,45,10,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,C,1,No Deposit,239.0,179.0,0,Transient,75.5,1,1,Check-Out,2019-06-03 -City Hotel,0,12,2016,March,15,9,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,110.36,0,0,Check-Out,2019-01-03 -City Hotel,1,16,2016,November,52,31,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,3,No Deposit,15.0,331.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -Resort Hotel,0,115,2016,August,37,24,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,245.0,179.0,0,Transient,130.42,0,3,Check-Out,2019-09-03 -City Hotel,0,103,2017,July,26,19,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,147.07,0,0,Check-Out,2020-05-03 -Resort Hotel,0,151,2016,July,29,14,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,188.89,0,1,Check-Out,2019-06-03 -Resort Hotel,0,16,2015,October,50,2,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,93.41,0,2,Check-Out,2018-11-02 -City Hotel,0,284,2016,October,42,18,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,C,B,2,No Deposit,237.0,179.0,0,Transient,68.99,0,3,Check-Out,2019-07-04 -Resort Hotel,0,144,2015,August,33,18,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,2,No Deposit,378.0,179.0,0,Transient-Party,99.73,0,0,Check-Out,2018-07-03 -Resort Hotel,0,82,2016,July,32,21,0,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient,160.1,0,2,Check-Out,2019-01-03 -City Hotel,1,50,2016,July,42,5,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,115.51,0,2,Canceled,2018-12-03 -Resort Hotel,0,24,2017,August,36,19,2,2,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,96.18,0,1,Check-Out,2020-06-02 -City Hotel,0,149,2016,May,18,24,0,3,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,87.63,0,0,Check-Out,2019-06-03 -Resort Hotel,0,86,2016,July,31,23,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,117.15,0,0,Check-Out,2019-01-03 -City Hotel,1,16,2016,July,37,10,0,1,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,140.6,0,1,Canceled,2018-10-03 -Resort Hotel,0,10,2016,March,36,19,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,76.12,0,1,Check-Out,2019-03-04 -City Hotel,1,122,2017,March,18,14,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,152.0,179.0,0,Transient,86.93,0,1,Canceled,2019-11-03 -Resort Hotel,0,1,2015,December,43,19,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,H,I,1,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-10-04 -Resort Hotel,1,39,2017,February,8,9,0,2,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,213.77,0,0,Canceled,2019-08-04 -Resort Hotel,0,284,2017,August,36,7,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,186.72,0,1,Check-Out,2020-06-02 -City Hotel,0,2,2016,June,28,8,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,2,No Deposit,16.0,193.0,0,Transient,64.05,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,November,28,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,41.0,253.0,0,Transient,93.66,0,0,Check-Out,2019-07-04 -Resort Hotel,0,56,2017,February,11,15,1,1,2,0.0,0,Undefined,DEU,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,66.57,0,0,Check-Out,2019-12-04 -City Hotel,0,104,2017,July,33,28,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,160.42,0,3,Check-Out,2020-07-03 -City Hotel,1,302,2017,March,16,7,0,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.02,1,0,No-Show,2019-11-03 -City Hotel,0,36,2016,December,53,21,0,1,2,0.0,0,BB,FRA,Complementary,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -City Hotel,0,37,2017,May,20,26,0,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,272.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2020-05-03 -City Hotel,0,15,2016,December,49,13,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,86.96,0,0,Check-Out,2018-12-03 -City Hotel,0,32,2015,August,37,6,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,71.92,0,0,Check-Out,2018-05-03 -Resort Hotel,0,3,2016,January,9,30,1,1,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,170.43,1,0,Check-Out,2019-02-01 -Resort Hotel,0,21,2015,December,53,2,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,38.05,0,0,Check-Out,2018-08-03 -City Hotel,1,247,2016,April,18,28,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,108.53,0,0,Canceled,2019-02-01 -City Hotel,0,2,2015,September,42,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,37.31,0,1,Canceled,2017-11-02 -Resort Hotel,0,0,2016,December,53,26,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,I,0,No Deposit,241.0,179.0,0,Transient,43.74,0,2,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,March,22,21,0,1,1,0.0,0,HB,PRT,Complementary,Direct,1,0,0,H,I,1,No Deposit,243.0,179.0,0,Transient,0.0,1,1,Check-Out,2018-12-03 -City Hotel,1,2,2016,October,43,30,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,120.66,0,0,Canceled,2019-02-01 -City Hotel,1,46,2016,September,37,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.34,0,0,Canceled,2019-07-04 -City Hotel,0,8,2017,April,16,10,1,4,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.76,0,0,Check-Out,2020-03-03 -City Hotel,0,135,2017,July,26,12,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Contract,125.23,0,0,Check-Out,2020-06-02 -City Hotel,1,249,2016,June,32,8,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.58,0,0,Canceled,2019-01-03 -City Hotel,1,157,2017,May,23,5,0,1,2,0.0,0,BB,NOR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,126.55,0,0,Canceled,2019-04-03 -City Hotel,1,150,2017,February,3,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,152.0,179.0,0,Transient,34.28,0,0,Canceled,2018-11-02 -City Hotel,0,256,2015,July,31,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,95.31,0,0,Check-Out,2018-08-03 -City Hotel,0,39,2017,July,31,8,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,101.31,0,0,Check-Out,2020-06-02 -Resort Hotel,0,91,2016,October,43,21,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,E,D,0,No Deposit,79.0,179.0,0,Group,42.89,0,1,Check-Out,2019-06-03 -City Hotel,0,41,2016,March,17,15,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,68.68,0,2,Check-Out,2019-04-03 -City Hotel,1,49,2017,May,21,18,0,1,1,0.0,0,BB,PRT,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,1.91,0,0,Canceled,2020-02-01 -Resort Hotel,0,19,2015,December,53,28,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,74.57,0,0,Check-Out,2018-12-03 -City Hotel,1,123,2016,April,16,27,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,Non Refund,8.0,179.0,0,Transient,109.2,0,0,Canceled,2019-01-03 -Resort Hotel,0,311,2016,March,10,16,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Refundable,13.0,222.0,0,Transient-Party,61.81,0,0,Check-Out,2019-03-04 -Resort Hotel,0,81,2017,August,33,11,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.85,0,2,Check-Out,2019-07-04 -Resort Hotel,1,34,2016,March,11,9,0,7,2,0.0,0,BB,PRT,Online TA,Direct,0,1,0,E,E,0,No Deposit,244.0,179.0,0,Transient,69.73,0,0,Canceled,2019-09-03 -City Hotel,0,366,2015,October,43,12,0,2,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,68.58,0,0,Check-Out,2018-01-31 -City Hotel,1,187,2016,June,37,16,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,77.23,0,0,Canceled,2019-05-04 -City Hotel,0,198,2017,May,21,21,1,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.27,1,2,Check-Out,2020-05-03 -City Hotel,0,9,2016,December,53,30,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,123.3,0,3,Check-Out,2019-12-04 -City Hotel,0,7,2015,July,31,20,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,99.3,0,1,Check-Out,2018-06-02 -City Hotel,0,85,2017,May,22,31,1,0,2,0.0,0,BB,USA,Groups,GDS,0,0,0,A,C,0,No Deposit,190.0,179.0,0,Transient-Party,87.51,0,0,Check-Out,2019-12-04 -Resort Hotel,0,2,2016,February,11,21,0,3,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient-Party,73.66,0,0,Check-Out,2019-11-03 -City Hotel,0,147,2016,April,17,25,2,7,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,67.29,0,0,Canceled,2019-03-04 -City Hotel,0,166,2017,May,21,16,2,5,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,133.69,0,0,Check-Out,2020-06-02 -City Hotel,0,36,2016,December,53,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.23,0,0,Check-Out,2019-03-04 -City Hotel,0,97,2017,June,29,28,2,3,2,0.0,0,BB,FRA,Direct,Corporate,1,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,169.01,1,1,Check-Out,2020-06-02 -City Hotel,1,293,2017,June,17,21,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,12.0,179.0,0,Transient,62.36,0,0,Canceled,2017-12-03 -City Hotel,0,8,2016,October,50,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,61.3,0,0,Check-Out,2019-11-03 -City Hotel,0,18,2017,June,17,25,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.92,0,1,Check-Out,2020-05-03 -City Hotel,0,266,2017,July,33,28,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,237.92,0,2,Check-Out,2020-06-02 -City Hotel,1,89,2016,November,49,15,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,122.21,0,0,Canceled,2019-02-01 -City Hotel,1,6,2017,January,9,6,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.8,0,1,Canceled,2019-11-03 -Resort Hotel,1,268,2017,August,33,12,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,187.58,0,1,Canceled,2019-09-03 -City Hotel,1,203,2017,May,21,28,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,91.4,0,1,Canceled,2019-10-04 -Resort Hotel,1,238,2016,August,25,28,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,240.0,179.0,0,Transient,186.91,0,0,Canceled,2019-01-03 -City Hotel,0,3,2015,October,42,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,222.0,0,Transient-Party,0.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,160,2016,August,45,13,2,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,158.09,0,3,Check-Out,2019-08-04 -City Hotel,1,49,2017,May,9,16,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,117.41,0,0,No-Show,2020-03-03 -City Hotel,1,390,2016,October,36,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,61,Transient,96.91,0,0,Canceled,2019-08-04 -Resort Hotel,0,309,2017,August,21,29,2,4,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.99,1,1,Check-Out,2020-03-03 -Resort Hotel,0,38,2016,June,48,31,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,115.56,0,1,Check-Out,2019-06-03 -City Hotel,0,49,2016,July,31,21,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.21,0,2,Check-Out,2019-07-04 -City Hotel,1,161,2016,May,20,10,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,76.58,0,0,Canceled,2018-11-02 -Resort Hotel,1,43,2016,March,9,2,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,142.0,179.0,0,Transient,76.97,0,0,Canceled,2018-11-02 -City Hotel,0,104,2017,May,19,25,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,78.4,0,0,Check-Out,2020-04-02 -City Hotel,0,273,2015,July,34,29,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.64,0,0,Check-Out,2018-05-03 -Resort Hotel,0,186,2016,August,35,14,0,1,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,133.0,179.0,0,Transient,205.18,0,0,Check-Out,2019-04-03 -City Hotel,1,122,2015,September,41,21,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,72.6,0,0,Canceled,2019-01-03 -City Hotel,0,188,2016,October,45,9,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,151.3,0,3,Check-Out,2019-11-03 -Resort Hotel,0,69,2015,December,49,25,1,1,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient-Party,60.16,0,0,Check-Out,2018-08-03 -Resort Hotel,0,129,2016,January,3,16,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,310.0,179.0,0,Transient,109.61,0,1,Check-Out,2018-12-03 -City Hotel,1,109,2016,July,39,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,41,Transient,74.52,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2015,August,38,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,250.0,179.0,0,Transient,223.5,0,0,Check-Out,2020-06-02 -City Hotel,1,78,2016,April,15,20,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,H,0,No Deposit,14.0,179.0,0,Transient,144.54,0,0,Canceled,2019-02-01 -City Hotel,1,99,2016,November,48,30,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,75.63,0,0,Canceled,2018-12-03 -City Hotel,0,104,2016,March,10,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,122.0,179.0,0,Transient,63.89,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,February,8,21,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,157.9,0,0,Check-Out,2019-02-01 -Resort Hotel,0,108,2016,December,50,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,311.0,179.0,0,Transient,43.74,0,0,Check-Out,2018-12-03 -Resort Hotel,1,99,2016,December,53,8,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,311.0,179.0,22,Transient-Party,42.84,0,0,Canceled,2019-01-03 -City Hotel,1,99,2016,October,11,25,0,3,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,18,Transient,78.98,0,0,Canceled,2019-01-03 -City Hotel,0,11,2016,December,13,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,36.0,179.0,0,Transient-Party,41.91,0,0,Check-Out,2018-11-02 -City Hotel,0,91,2015,December,53,13,1,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,238.42,0,2,Check-Out,2019-09-03 -City Hotel,0,90,2016,November,44,23,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,78.73,0,2,Check-Out,2019-06-03 -Resort Hotel,1,160,2016,April,18,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient,63.41,0,0,Canceled,2019-01-03 -City Hotel,0,140,2016,August,37,11,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,8.0,179.0,0,Transient,234.16,0,2,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,May,17,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,33.38,0,0,Check-Out,2019-02-01 -City Hotel,0,40,2017,May,25,5,1,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.23,0,0,Check-Out,2019-06-03 -City Hotel,0,145,2016,June,22,28,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,169.0,179.0,0,Transient-Party,193.11,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2016,February,10,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,94.25,0,0,Check-Out,2019-05-04 -City Hotel,0,4,2017,December,48,8,0,1,1,0.0,0,SC,,Corporate,GDS,0,0,0,A,A,0,No Deposit,200.0,179.0,0,Transient-Party,79.62,0,0,Check-Out,2019-10-04 -Resort Hotel,0,257,2017,May,22,19,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,269.0,179.0,0,Transient-Party,66.36,0,0,Check-Out,2020-04-02 -City Hotel,1,11,2016,November,51,9,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.48,0,0,Canceled,2019-10-04 -City Hotel,1,75,2016,March,17,21,2,0,3,0.0,0,HB,PRT,Direct,TA/TO,1,1,0,E,I,2,No Deposit,9.0,179.0,75,Transient,0.71,0,0,Canceled,2019-01-03 -City Hotel,0,110,2017,March,2,2,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Contract,116.87,0,0,Check-Out,2019-11-03 -City Hotel,0,14,2017,May,22,9,2,1,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,76.16,0,1,Check-Out,2020-02-01 -City Hotel,1,2,2016,August,36,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,263.0,179.0,0,Transient,74.06,0,0,No-Show,2019-01-03 -Resort Hotel,1,167,2017,August,33,25,2,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,229.97,0,3,Canceled,2020-05-03 -City Hotel,1,108,2015,August,35,12,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,116.87,0,0,Canceled,2018-08-03 -Resort Hotel,0,85,2016,May,21,18,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,78.0,179.0,0,Transient-Party,38.91,1,0,Check-Out,2019-04-03 -City Hotel,1,165,2016,April,22,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,78.69,0,0,Canceled,2019-01-03 -City Hotel,0,78,2016,August,36,25,2,5,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,112.35,0,1,Check-Out,2019-06-03 -Resort Hotel,0,28,2016,August,37,25,2,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,218.63,1,0,Check-Out,2019-05-04 -City Hotel,0,34,2017,February,12,18,1,2,2,0.0,0,BB,FRA,Corporate,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,41.29,0,0,Check-Out,2019-10-04 -City Hotel,0,28,2016,October,53,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.42,0,1,Check-Out,2019-11-03 -City Hotel,1,95,2016,July,37,23,2,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.31,0,0,No-Show,2018-11-02 -Resort Hotel,1,253,2016,December,51,17,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,314.0,179.0,0,Transient,29.77,0,0,Canceled,2019-10-04 -Resort Hotel,0,225,2016,July,29,24,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,D,2,No Deposit,244.0,179.0,0,Transient,98.99,1,0,Check-Out,2019-04-03 -Resort Hotel,0,3,2016,May,49,27,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,249.0,0,Transient-Party,74.92,0,0,Check-Out,2019-12-04 -Resort Hotel,0,48,2015,August,35,13,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,53.99,0,0,Canceled,2018-05-03 -Resort Hotel,1,355,2017,July,31,29,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,245.67,0,3,Canceled,2020-06-02 -Resort Hotel,0,7,2016,December,51,21,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,77.73,0,1,Check-Out,2019-09-03 -City Hotel,0,1,2016,March,18,31,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,D,D,0,No Deposit,12.0,45.0,0,Transient,59.8,1,2,Check-Out,2019-01-03 -Resort Hotel,0,155,2016,March,18,29,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,75,Transient-Party,70.4,0,0,Check-Out,2019-06-03 -City Hotel,0,12,2016,September,36,24,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,0.93,0,0,Check-Out,2019-06-03 -City Hotel,0,98,2017,April,17,6,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.57,0,2,Check-Out,2020-02-01 -City Hotel,0,12,2017,June,23,17,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,6.0,179.0,0,Transient,126.4,0,1,Check-Out,2020-07-03 -City Hotel,1,64,2016,December,44,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,65.0,179.0,41,Transient,98.96,0,0,Canceled,2018-08-03 -City Hotel,0,18,2015,February,10,24,0,1,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.86,0,0,Check-Out,2018-10-03 -Resort Hotel,0,2,2017,January,2,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,43.85,1,0,Check-Out,2019-10-04 -City Hotel,0,32,2015,July,32,20,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,72.0,179.0,0,Transient,119.77,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2017,March,9,9,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,62.97,1,2,Check-Out,2020-03-03 -City Hotel,0,16,2016,May,28,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,331.0,0,Transient,133.68,0,0,Check-Out,2019-03-04 -City Hotel,0,208,2017,July,36,8,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,114.02,0,0,Check-Out,2020-06-02 -City Hotel,0,11,2015,October,46,21,0,3,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient-Party,64.02,0,0,Check-Out,2018-09-02 -City Hotel,0,95,2015,September,33,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.41,0,0,Check-Out,2018-08-03 -Resort Hotel,0,258,2017,May,21,18,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,159.65,0,1,Check-Out,2020-03-03 -Resort Hotel,0,34,2016,May,18,30,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,201.0,179.0,0,Transient-Party,76.09,0,0,Check-Out,2019-03-04 -Resort Hotel,0,8,2017,February,12,9,1,0,2,0.0,0,BB,CHE,Online TA,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,71.85,0,3,Check-Out,2019-10-04 -Resort Hotel,0,87,2015,December,51,20,2,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,L,C,0,No Deposit,246.0,179.0,0,Transient,31.31,0,0,Check-Out,2018-08-03 -City Hotel,1,153,2016,April,16,11,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,128.68,0,2,Canceled,2019-02-01 -City Hotel,0,256,2015,October,42,27,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Contract,99.18,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,December,50,24,1,3,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,0.35,1,1,Check-Out,2019-11-03 -Resort Hotel,0,107,2016,August,32,16,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,99.01,0,1,Check-Out,2019-05-04 -City Hotel,1,167,2016,January,4,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.05,0,0,Canceled,2018-11-02 -City Hotel,0,40,2017,May,24,27,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,129.53,0,1,Check-Out,2020-04-02 -City Hotel,0,149,2016,February,11,13,1,0,1,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient-Party,36.55,0,0,Check-Out,2019-10-04 -City Hotel,1,60,2017,March,18,15,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,70.68,0,0,Canceled,2020-01-04 -City Hotel,1,196,2017,June,29,23,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.27,0,0,Canceled,2019-11-03 -Resort Hotel,1,225,2015,August,36,24,2,2,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.65,0,0,No-Show,2018-06-02 -City Hotel,0,52,2017,February,15,20,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,216.72,0,0,Check-Out,2020-01-04 -City Hotel,1,0,2016,January,27,1,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,132.5,0,0,No-Show,2019-02-01 -Resort Hotel,0,288,2016,May,21,8,3,7,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,E,C,1,No Deposit,318.0,179.0,0,Transient-Party,142.69,1,0,Check-Out,2019-09-03 -Resort Hotel,0,23,2017,January,8,21,2,1,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,E,1,No Deposit,14.0,179.0,0,Transient,128.37,1,3,Check-Out,2019-10-04 -Resort Hotel,0,252,2016,March,16,31,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,64.04,1,0,Check-Out,2019-03-04 -City Hotel,0,12,2017,June,28,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,2,No Deposit,15.0,215.0,0,Transient,124.33,1,0,Check-Out,2020-06-02 -City Hotel,0,46,2016,November,44,24,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient-Party,87.06,0,3,Check-Out,2019-11-03 -Resort Hotel,0,20,2015,October,44,31,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,343.0,179.0,0,Transient-Party,62.79,0,0,Check-Out,2018-08-03 -City Hotel,0,96,2015,October,44,6,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,62.31,0,0,Check-Out,2018-06-02 -Resort Hotel,0,137,2017,March,11,15,2,5,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,318.0,179.0,0,Transient-Party,84.28,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,March,11,21,0,2,2,0.0,0,BB,SWE,Corporate,Corporate,1,0,1,A,D,2,No Deposit,14.0,81.0,0,Transient-Party,35.39,0,1,Check-Out,2018-12-03 -City Hotel,1,340,2016,August,37,12,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,66.24,0,0,Canceled,2018-01-31 -Resort Hotel,1,1,2016,October,45,10,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,F,F,0,Non Refund,18.0,179.0,0,Transient,82.51,0,0,Canceled,2018-11-02 -City Hotel,0,33,2017,December,50,28,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,P,E,0,No Deposit,27.0,179.0,0,Transient,77.23,0,2,Check-Out,2019-09-03 -City Hotel,0,21,2017,May,21,31,0,4,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,G,A,0,No Deposit,17.0,179.0,0,Transient,174.46,0,1,Check-Out,2020-02-01 -Resort Hotel,0,4,2016,August,34,10,1,0,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,126.4,0,1,Check-Out,2019-04-03 -Resort Hotel,0,88,2017,May,23,26,2,1,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,118.09,0,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2015,September,42,30,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,F,1,No Deposit,16.0,179.0,0,Transient,35.4,0,3,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,June,23,15,3,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,112.19,0,1,Check-Out,2019-02-01 -Resort Hotel,0,3,2017,February,10,14,1,4,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,41.59,0,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2017,June,27,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,45.0,0,Transient,62.2,0,0,Check-Out,2019-09-03 -Resort Hotel,0,2,2016,February,16,7,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,1,No Deposit,251.0,179.0,0,Transient,65.64,1,0,Check-Out,2019-03-04 -Resort Hotel,0,87,2016,March,16,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,224.0,0,Transient-Party,30.5,0,0,Check-Out,2019-03-04 -City Hotel,0,153,2016,July,38,8,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,118.92,0,2,Check-Out,2018-06-02 -City Hotel,0,103,2015,December,51,9,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,88.52,0,2,Check-Out,2018-11-02 -City Hotel,0,44,2015,December,50,31,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,33.82,1,2,Check-Out,2018-12-03 -City Hotel,0,35,2017,June,23,10,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,0,No Deposit,16.0,190.0,0,Transient,101.92,0,0,Check-Out,2020-04-02 -City Hotel,0,10,2016,October,41,27,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.53,0,0,Check-Out,2019-09-03 -City Hotel,0,77,2016,September,44,9,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,106.29,0,1,Check-Out,2019-05-04 -City Hotel,1,154,2016,March,31,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,9.0,179.0,40,Transient,81.21,0,0,Canceled,2018-11-02 -City Hotel,0,38,2015,October,45,14,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,59.58,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2017,April,17,18,0,1,1,0.0,0,HB,ESP,Corporate,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,0.35,0,0,Check-Out,2020-03-03 -City Hotel,1,23,2017,June,22,4,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,105.77,0,0,Canceled,2019-10-04 -Resort Hotel,0,209,2015,November,45,2,2,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,61.78,0,0,Check-Out,2018-08-03 -City Hotel,0,103,2017,May,18,10,2,5,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.03,0,1,Check-Out,2020-04-02 -Resort Hotel,1,344,2016,September,39,18,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,2019-04-03 -City Hotel,0,150,2016,November,49,5,0,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,102.89,0,1,Check-Out,2019-09-03 -Resort Hotel,0,11,2017,April,26,16,0,3,1,0.0,0,HB,,Complementary,Direct,0,0,0,E,F,2,No Deposit,14.0,179.0,0,Transient,116.57,1,2,Check-Out,2020-05-03 -City Hotel,1,3,2016,January,33,21,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,1.55,0,1,Canceled,2018-11-02 -City Hotel,1,236,2017,August,34,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,142.59,0,1,Canceled,2019-12-04 -Resort Hotel,0,270,2017,July,33,25,2,5,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,88.8,0,2,Check-Out,2020-03-03 -City Hotel,0,59,2015,September,45,17,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,117.24,0,0,Check-Out,2018-08-03 -City Hotel,1,41,2016,January,3,27,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,59.64,0,0,Canceled,2018-10-03 -City Hotel,0,4,2017,January,10,13,1,0,1,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.09,0,0,Check-Out,2019-11-03 -Resort Hotel,0,51,2016,May,23,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,90.64,0,2,Check-Out,2019-12-04 -City Hotel,1,46,2017,March,9,12,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,62.39,0,0,Canceled,2019-10-04 -Resort Hotel,0,39,2017,April,17,23,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,G,G,3,No Deposit,276.0,179.0,0,Transient-Party,62.26,1,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,June,25,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,18.0,48.0,0,Transient,0.0,1,0,Check-Out,2019-02-01 -City Hotel,0,9,2017,February,10,30,0,4,1,0.0,0,BB,RUS,Direct,Direct,0,0,0,B,D,3,No Deposit,14.0,179.0,0,Transient,109.03,0,3,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,March,26,27,0,1,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,60.1,1,0,Check-Out,2018-12-03 -Resort Hotel,1,255,2017,April,16,19,2,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient-Party,87.92,0,0,Canceled,2020-02-01 -City Hotel,1,163,2017,May,36,9,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,7.0,179.0,0,Transient,158.51,0,1,Canceled,2019-12-04 -City Hotel,1,61,2017,May,21,10,2,0,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,75.51,0,0,Canceled,2020-01-04 -City Hotel,0,265,2016,December,49,5,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.58,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2015,July,35,20,1,2,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,126.23,1,0,Check-Out,2019-05-04 -City Hotel,0,12,2015,November,41,13,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,2.0,179.0,0,Contract,58.07,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,May,49,19,2,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,14.0,179.0,0,Transient,0.46,0,0,Check-Out,2019-02-01 -Resort Hotel,0,103,2016,November,44,5,2,5,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,155.97,0,1,Check-Out,2019-02-01 -City Hotel,1,5,2017,May,20,6,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.62,0,0,No-Show,2019-12-04 -Resort Hotel,0,1,2017,February,11,24,2,5,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.26,0,0,Check-Out,2020-01-04 -City Hotel,1,157,2017,February,7,5,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,210.0,331.0,0,Transient,46.38,0,0,Canceled,2020-02-01 -City Hotel,0,2,2016,September,39,3,0,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2015,September,36,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.7,0,0,Check-Out,2018-07-03 -City Hotel,0,99,2015,August,36,14,4,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,63.34,0,0,Check-Out,2017-12-03 -City Hotel,0,92,2015,December,50,2,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,125.02,0,3,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,June,15,15,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,34.22,0,2,Check-Out,2020-06-02 -City Hotel,1,74,2017,April,22,5,2,5,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,194.58,0,2,Canceled,2020-02-01 -City Hotel,0,101,2017,May,23,28,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.89,0,2,Check-Out,2020-02-01 -City Hotel,0,309,2015,September,41,27,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,36.0,179.0,0,Contract,58.96,0,0,Check-Out,2018-08-03 -City Hotel,1,93,2016,December,52,9,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.73,0,0,Canceled,2019-10-04 -City Hotel,0,94,2017,May,23,31,1,4,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,D,H,1,No Deposit,9.0,179.0,0,Transient,98.56,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,March,11,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,12.0,331.0,0,Transient,32.65,0,0,Check-Out,2018-11-02 -City Hotel,1,83,2017,May,22,9,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.81,0,1,Canceled,2020-02-01 -City Hotel,0,1,2016,January,10,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,62.0,0,Transient,72.3,0,1,Canceled,2018-11-02 -Resort Hotel,0,298,2015,September,38,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,117.15,1,0,Check-Out,2018-08-03 -City Hotel,0,11,2017,February,9,5,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.6,0,0,Check-Out,2020-03-03 -City Hotel,0,17,2015,July,32,21,0,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,97.98,0,1,Check-Out,2018-05-03 -Resort Hotel,0,11,2016,June,31,13,0,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,80.4,1,0,Check-Out,2019-03-04 -City Hotel,0,225,2017,June,26,15,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,C,1,No Deposit,378.0,179.0,0,Transient-Party,91.64,0,1,Check-Out,2020-03-03 -Resort Hotel,0,200,2016,August,44,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-06-03 -City Hotel,1,51,2015,June,36,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Contract,97.76,0,0,Canceled,2018-08-03 -Resort Hotel,1,266,2017,May,21,10,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient,145.4,0,0,Canceled,2020-02-01 -City Hotel,1,146,2016,August,27,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.73,0,2,Canceled,2019-05-04 -Resort Hotel,0,26,2016,August,37,22,2,4,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,120.92,0,1,Check-Out,2020-06-02 -City Hotel,0,46,2015,December,53,28,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,59.64,0,1,Check-Out,2018-12-03 -City Hotel,0,14,2017,February,16,12,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.34,1,0,Check-Out,2020-04-02 -City Hotel,0,230,2017,May,20,9,2,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.42,0,0,Check-Out,2019-11-03 -City Hotel,1,265,2016,June,37,10,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,22,Transient,103.81,0,0,Canceled,2018-08-03 -City Hotel,0,35,2016,July,32,13,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,109.24,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,May,23,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,2,No Deposit,195.0,331.0,0,Transient-Party,78.8,0,0,Check-Out,2019-12-04 -Resort Hotel,0,45,2015,October,43,7,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,86.4,0,2,Check-Out,2018-08-03 -City Hotel,0,3,2015,October,45,29,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.92,1,2,Check-Out,2018-09-02 -City Hotel,1,59,2016,April,16,28,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.44,0,0,Canceled,2019-02-01 -City Hotel,0,4,2015,October,45,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,2.0,179.0,0,Transient-Party,58.27,0,0,Check-Out,2018-08-03 -Resort Hotel,1,3,2015,August,31,18,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,78.76,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,October,38,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,1,No Deposit,17.0,75.0,0,Transient,42.35,1,0,Check-Out,2019-12-04 -Resort Hotel,0,3,2015,February,12,9,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,68.0,0,Transient-Party,28.65,0,0,Check-Out,2018-10-03 -City Hotel,1,52,2015,July,51,16,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,F,0,No Deposit,237.0,179.0,0,Transient,60.11,0,0,Canceled,2017-11-02 -City Hotel,0,18,2017,March,13,16,2,0,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,78.89,0,0,Check-Out,2020-03-03 -City Hotel,0,235,2015,August,36,16,2,3,2,2.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,100.25,0,0,Check-Out,2019-07-04 -City Hotel,0,17,2017,July,33,27,0,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,151.9,0,1,Check-Out,2020-06-02 -City Hotel,0,12,2016,June,25,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,112.7,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2017,February,11,5,1,5,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,44.38,0,0,Check-Out,2020-03-03 -Resort Hotel,1,271,2017,February,11,28,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,314.0,179.0,0,Transient,79.96,0,0,Canceled,2020-02-01 -Resort Hotel,0,5,2016,March,12,14,0,7,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,16.0,249.0,0,Transient-Party,44.52,0,0,Check-Out,2019-11-03 -Resort Hotel,1,50,2016,October,44,27,1,4,1,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,1,No Deposit,294.0,179.0,0,Transient-Party,36.01,0,0,Check-Out,2019-09-03 -Resort Hotel,1,2,2017,January,3,6,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,44.29,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,December,49,19,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,46.07,0,2,Check-Out,2018-12-03 -City Hotel,1,94,2017,June,21,11,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,181.17,0,3,Canceled,2020-04-02 -Resort Hotel,0,135,2016,August,36,22,1,4,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,222.34,0,0,Check-Out,2019-09-03 -City Hotel,1,57,2016,February,10,15,0,2,2,1.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,28.0,179.0,0,Transient,69.32,0,0,Canceled,2019-01-03 -Resort Hotel,1,54,2015,August,38,6,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,2.3,0,0,Canceled,2018-05-03 -City Hotel,1,185,2016,September,35,9,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.26,0,0,Canceled,2018-12-03 -Resort Hotel,0,201,2016,May,19,15,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,242.0,179.0,0,Transient,44.69,0,1,Check-Out,2019-06-03 -City Hotel,1,121,2016,December,53,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.75,0,0,Canceled,2018-11-02 -Resort Hotel,0,46,2016,April,18,29,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,20,Transient,48.08,1,0,Check-Out,2019-03-04 -City Hotel,0,32,2017,December,50,6,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,67.38,0,3,Check-Out,2019-10-04 -City Hotel,0,100,2016,March,44,24,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,127.3,0,2,Check-Out,2019-06-03 -City Hotel,1,1,2016,September,46,12,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,124.19,0,0,Canceled,2018-06-02 -City Hotel,0,14,2017,July,9,5,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,109.16,0,1,Check-Out,2020-06-02 -Resort Hotel,0,292,2017,March,17,9,2,5,2,0.0,0,HB,SWE,Groups,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient-Party,75.81,0,0,Check-Out,2020-03-03 -Resort Hotel,0,44,2016,May,42,8,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,37.02,0,0,Check-Out,2019-03-04 -City Hotel,1,0,2016,January,3,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,13.0,179.0,39,Transient,62.66,0,0,No-Show,2018-11-02 -City Hotel,0,20,2017,May,22,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,152.01,0,3,Check-Out,2020-06-02 -Resort Hotel,0,54,2016,December,49,28,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,77.39,0,0,Check-Out,2018-12-03 -City Hotel,0,10,2016,March,11,28,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,126.14,0,0,Check-Out,2019-03-04 -Resort Hotel,1,264,2015,August,37,22,2,5,2,0.0,0,FB,PRT,Groups,Direct,0,1,0,L,A,0,Non Refund,3.0,179.0,0,Transient,104.54,0,0,Canceled,2018-06-02 -City Hotel,0,49,2016,May,32,4,2,2,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,122.8,0,3,Check-Out,2019-02-01 -City Hotel,1,398,2016,October,44,29,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,90.99,0,0,Canceled,2018-08-03 -Resort Hotel,0,18,2017,March,8,3,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.53,1,2,Check-Out,2020-06-02 -Resort Hotel,0,108,2016,May,22,31,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,92.75,0,0,Check-Out,2019-01-03 -City Hotel,0,45,2016,April,16,5,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,64.13,0,2,Check-Out,2019-04-03 -Resort Hotel,0,13,2016,July,27,29,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,117.59,0,1,Check-Out,2020-06-02 -Resort Hotel,1,160,2016,July,33,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,0.74,0,0,Canceled,2019-05-04 -Resort Hotel,0,101,2016,May,45,18,2,7,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,138.46,0,1,Check-Out,2019-07-04 -Resort Hotel,0,9,2017,February,11,8,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient-Party,78.37,0,0,Check-Out,2019-10-04 -Resort Hotel,0,111,2016,July,17,30,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,94.11,0,0,Check-Out,2020-03-03 -City Hotel,0,311,2016,May,27,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,292.0,179.0,42,Transient-Party,71.89,0,0,Check-Out,2019-03-04 -City Hotel,0,42,2015,October,39,29,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,75.0,179.0,0,Transient,85.28,0,0,Check-Out,2018-08-03 -Resort Hotel,1,82,2016,February,15,15,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,29.0,179.0,0,Transient,73.36,0,0,Canceled,2018-11-02 -City Hotel,1,9,2016,June,24,30,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.16,0,0,No-Show,2019-01-03 -Resort Hotel,0,118,2017,July,27,31,0,4,2,2.0,0,BB,,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,209.51,0,2,Check-Out,2020-06-02 -City Hotel,0,297,2017,June,25,2,0,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,10.0,179.0,0,Transient,131.88,0,1,Check-Out,2020-04-02 -Resort Hotel,1,247,2015,July,37,21,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient-Party,226.92,0,1,Canceled,2018-05-03 -City Hotel,0,0,2017,February,9,15,0,1,1,0.0,0,SC,PRT,Corporate,Direct,1,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -Resort Hotel,0,9,2016,January,4,21,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,152.11,0,1,Check-Out,2018-10-03 -Resort Hotel,0,103,2016,April,17,31,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,318.0,179.0,0,Transient,73.99,0,0,Check-Out,2019-02-01 -Resort Hotel,0,26,2017,March,13,23,0,1,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient-Party,76.62,0,0,Check-Out,2020-03-03 -City Hotel,0,91,2016,June,20,9,0,2,2,0.0,0,BB,CN,Online TA,GDS,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,99.03,0,0,Check-Out,2019-06-03 -City Hotel,1,160,2015,July,35,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.58,0,0,Canceled,2017-12-03 -Resort Hotel,0,1,2016,October,42,18,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,16.0,179.0,0,Transient,1.97,1,0,Check-Out,2019-08-04 -City Hotel,1,251,2016,September,45,21,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,133.0,0,0,Canceled,2019-08-04 -Resort Hotel,0,303,2016,August,34,20,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-06-02 -City Hotel,0,56,2015,December,50,3,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.9,0,2,Check-Out,2018-10-03 -City Hotel,0,175,2016,August,34,5,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,103.39,0,1,Check-Out,2019-06-03 -City Hotel,1,39,2016,August,42,25,1,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,154.24,0,1,Canceled,2019-07-04 -Resort Hotel,1,9,2017,March,17,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,315.0,179.0,0,Transient,60.57,0,0,Canceled,2019-10-04 -City Hotel,0,15,2016,August,39,31,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,123.04,0,2,Check-Out,2019-09-03 -City Hotel,0,39,2015,November,43,29,2,4,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Contract,113.51,0,0,Check-Out,2018-07-03 -Resort Hotel,0,0,2017,March,11,14,2,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,144.29,0,2,Check-Out,2020-03-03 -Resort Hotel,0,3,2016,October,46,20,2,10,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,36.05,0,0,Check-Out,2019-05-04 -City Hotel,0,84,2016,July,32,28,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,203.17,0,1,Check-Out,2019-06-03 -City Hotel,1,10,2016,July,32,8,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,108.88,0,0,No-Show,2018-05-03 -City Hotel,0,35,2015,July,34,27,0,3,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient-Party,97.77,0,1,Check-Out,2018-07-03 -City Hotel,0,11,2016,August,32,5,0,2,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,104.14,0,1,Check-Out,2018-06-02 -Resort Hotel,1,161,2016,December,10,20,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,189.0,179.0,0,Transient,83.27,0,0,Canceled,2018-11-02 -Resort Hotel,0,76,2016,August,27,24,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,207.55,0,0,Check-Out,2019-04-03 -Resort Hotel,0,51,2016,March,17,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,316.0,179.0,0,Transient-Party,63.0,0,0,Check-Out,2018-12-03 -City Hotel,1,233,2017,June,32,31,2,6,2,0.0,0,HB,,Complementary,Corporate,0,0,0,G,G,2,No Deposit,12.0,179.0,0,Transient,222.12,0,0,Canceled,2020-06-02 -Resort Hotel,0,45,2017,May,20,13,2,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,244.0,179.0,0,Transient,159.12,1,0,Check-Out,2020-03-03 -Resort Hotel,0,143,2016,May,21,23,1,5,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,93.06,0,1,Check-Out,2019-03-04 -City Hotel,0,13,2016,September,22,28,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,126.4,0,0,Check-Out,2019-02-01 -Resort Hotel,0,47,2015,December,53,21,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,85.95,0,0,Check-Out,2019-09-03 -Resort Hotel,0,87,2016,June,28,16,0,2,1,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,37.0,179.0,0,Transient,118.22,0,0,Check-Out,2019-09-03 -City Hotel,1,49,2017,February,10,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,9.0,179.0,0,Transient,75.16,0,3,Canceled,2019-10-04 -City Hotel,1,61,2016,March,9,20,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,63.0,179.0,42,Transient,63.61,0,0,Canceled,2018-11-02 -City Hotel,1,249,2016,August,31,20,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,37.22,0,0,Canceled,2018-08-03 -City Hotel,1,63,2017,March,17,20,0,1,1,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,99.42,0,0,Canceled,2019-11-03 -Resort Hotel,0,242,2016,May,27,6,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,130.18,0,2,Check-Out,2019-02-01 -City Hotel,0,11,2016,June,29,21,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,E,2,No Deposit,14.0,72.0,0,Transient-Party,132.11,0,1,Check-Out,2019-07-04 -Resort Hotel,0,266,2016,March,18,11,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,106.67,0,1,Check-Out,2019-02-01 -City Hotel,0,240,2016,August,36,19,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,122.64,0,2,Check-Out,2019-08-04 -Resort Hotel,0,0,2015,August,35,10,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,114.27,0,2,Check-Out,2020-06-02 -City Hotel,1,96,2016,June,24,20,0,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,90.82,0,0,Canceled,2019-02-01 -City Hotel,0,39,2016,December,51,17,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,80.22,0,0,Check-Out,2019-06-03 -Resort Hotel,0,12,2016,May,10,17,2,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,172.99,0,0,Check-Out,2019-10-04 -City Hotel,0,49,2016,December,50,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,27.0,179.0,0,Contract,118.3,0,0,Check-Out,2019-05-04 -Resort Hotel,0,48,2017,March,17,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,241.0,179.0,0,Transient,99.09,1,1,Check-Out,2020-04-02 -City Hotel,1,49,2017,June,22,17,2,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,135.75,0,0,Canceled,2020-02-01 -City Hotel,0,106,2015,October,43,12,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,115.26,0,0,Check-Out,2018-08-03 -City Hotel,0,131,2015,September,41,6,2,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,85.36,0,0,Check-Out,2018-09-02 -City Hotel,0,46,2016,May,45,10,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,D,A,0,No Deposit,185.0,179.0,0,Transient,92.61,0,0,Check-Out,2019-06-03 -Resort Hotel,0,168,2016,December,53,2,2,5,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,249.99,1,2,Check-Out,2019-11-03 -City Hotel,1,108,2015,August,37,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,62.82,0,0,Canceled,2017-12-03 -Resort Hotel,0,39,2016,March,18,24,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,88.0,0,Transient,62.24,0,0,Check-Out,2019-02-01 -Resort Hotel,0,304,2016,December,49,2,0,4,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,88.0,179.0,0,Transient,96.23,0,0,Check-Out,2018-09-02 -City Hotel,0,79,2016,December,53,6,4,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,58.69,0,1,Check-Out,2019-11-03 -City Hotel,0,16,2015,August,34,6,2,3,2,0.0,0,HB,FRA,Groups,Undefined,0,0,0,D,D,1,No Deposit,2.0,179.0,0,Transient-Party,63.5,1,0,Check-Out,2018-06-02 -City Hotel,0,16,2017,August,38,13,0,1,2,2.0,0,BB,ESP,Direct,TA/TO,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,219.19,0,3,Check-Out,2019-11-03 -Resort Hotel,0,218,2016,November,42,17,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,120.18,0,1,Check-Out,2019-08-04 -City Hotel,0,41,2016,July,27,24,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,10.0,179.0,0,Transient,153.14,0,1,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,March,16,25,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient,70.26,0,0,Check-Out,2019-03-04 -City Hotel,1,214,2017,June,26,18,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,131.17,0,0,Canceled,2020-04-02 -City Hotel,0,0,2016,January,10,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,63.0,0,Transient,35.25,0,0,Check-Out,2019-03-04 -City Hotel,0,244,2016,August,36,16,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient-Party,95.24,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,October,43,17,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,65.03,1,0,Check-Out,2018-08-03 -Resort Hotel,0,158,2015,September,44,5,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,77.52,0,0,Check-Out,2018-06-02 -City Hotel,0,3,2016,May,22,7,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,0,36,2016,April,18,14,0,4,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,148.0,179.0,0,Transient,74.25,0,0,Check-Out,2019-01-03 -Resort Hotel,1,309,2015,December,52,27,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,0,Transient,35.5,0,0,Canceled,2018-08-03 -City Hotel,0,32,2016,February,4,28,0,3,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,29.22,0,1,Check-Out,2018-10-03 -Resort Hotel,0,202,2017,August,35,31,0,4,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,167.15,0,0,Check-Out,2020-06-02 -City Hotel,0,36,2016,January,4,21,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.46,0,1,Check-Out,2019-09-03 -City Hotel,1,19,2017,August,31,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,99.07,0,0,No-Show,2020-07-03 -City Hotel,1,11,2017,February,9,23,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,76.2,0,0,Canceled,2019-11-03 -City Hotel,0,108,2015,December,50,5,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,38.0,179.0,0,Transient-Party,70.5,0,0,Check-Out,2019-10-04 -City Hotel,0,97,2015,July,34,26,2,5,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,98.2,0,2,Check-Out,2018-06-02 -Resort Hotel,0,2,2016,January,35,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,38.12,1,0,Check-Out,2018-12-03 -City Hotel,0,102,2017,March,16,24,2,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,74.7,0,1,Check-Out,2020-03-03 -City Hotel,0,18,2016,June,26,9,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,104.46,0,0,Check-Out,2019-03-04 -City Hotel,0,44,2016,June,28,19,0,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,126.9,0,1,Check-Out,2020-05-03 -City Hotel,0,42,2016,January,10,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,61.1,0,1,Check-Out,2018-12-03 -City Hotel,1,98,2016,December,50,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,9.0,179.0,42,Transient-Party,72.88,0,0,Canceled,2019-09-03 -City Hotel,0,97,2015,September,35,17,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,95.34,0,0,Check-Out,2018-06-02 -City Hotel,0,181,2016,June,25,24,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,68.17,0,1,Check-Out,2019-05-04 -Resort Hotel,1,93,2015,December,53,6,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,86.4,0,0,Canceled,2018-12-03 -City Hotel,0,269,2017,July,25,2,2,5,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,104.96,0,2,Check-Out,2020-06-02 -City Hotel,0,152,2017,June,21,13,3,10,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,27.0,179.0,0,Contract,124.74,0,0,Check-Out,2020-07-03 -Resort Hotel,0,17,2016,December,5,28,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient-Party,78.18,0,0,Check-Out,2018-10-03 -City Hotel,1,242,2015,July,32,18,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.75,0,0,Canceled,2018-06-02 -Resort Hotel,0,17,2016,March,15,31,0,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient,79.24,0,0,Check-Out,2019-03-04 -City Hotel,0,12,2015,September,51,28,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,76.0,0,Transient,60.64,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2016,May,44,21,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-08-04 -City Hotel,0,0,2016,June,27,2,1,1,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,130.71,0,0,Check-Out,2019-02-01 -City Hotel,0,52,2016,June,25,21,2,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,125.41,0,2,Check-Out,2019-02-01 -Resort Hotel,1,41,2015,December,50,11,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,60.56,0,0,Canceled,2018-12-03 -City Hotel,0,34,2016,October,42,15,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,199.0,0,Transient,45.03,0,0,Check-Out,2019-10-04 -Resort Hotel,1,106,2016,May,10,13,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,35.3,0,0,Canceled,2019-03-04 -City Hotel,1,386,2015,October,45,21,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,58.01,0,0,Canceled,2017-11-02 -Resort Hotel,0,156,2016,August,36,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,187.64,1,1,Check-Out,2019-08-04 -City Hotel,1,142,2016,June,26,12,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,124.28,0,0,No-Show,2019-05-04 -City Hotel,0,4,2017,May,23,28,1,0,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,80.28,0,0,Check-Out,2020-03-03 -City Hotel,0,3,2016,June,37,30,0,2,2,0.0,0,BB,GBR,Aviation,TA/TO,1,0,1,A,A,0,No Deposit,1.0,179.0,0,Group,166.04,0,0,Check-Out,2018-08-03 -City Hotel,0,43,2015,August,37,6,0,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,172.73,0,0,Check-Out,2019-06-03 -Resort Hotel,1,19,2016,August,35,24,0,1,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,184.16,0,0,Canceled,2018-06-02 -City Hotel,0,0,2015,November,50,12,0,1,1,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,B,F,0,No Deposit,12.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-12-03 -Resort Hotel,0,155,2016,August,44,6,4,10,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,E,E,0,No Deposit,271.0,179.0,0,Transient,126.22,0,0,Check-Out,2019-08-04 -City Hotel,0,187,2016,March,10,17,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.59,0,0,Check-Out,2019-02-01 -City Hotel,0,255,2016,July,31,6,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.06,0,0,Check-Out,2019-05-04 -City Hotel,1,248,2017,August,36,13,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,82.57,0,1,Canceled,2020-03-03 -City Hotel,1,40,2016,May,34,31,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.1,0,1,Canceled,2019-06-03 -City Hotel,1,258,2015,September,32,20,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.97,0,0,Canceled,2018-07-03 -City Hotel,1,52,2017,March,17,12,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,113.95,0,1,Canceled,2019-02-01 -Resort Hotel,0,87,2015,August,32,30,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,104.62,1,2,Check-Out,2018-06-02 -City Hotel,0,39,2016,December,17,10,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.45,0,3,Check-Out,2019-12-04 -Resort Hotel,0,36,2016,February,8,10,0,3,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,June,26,2,0,1,3,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,C,I,1,No Deposit,238.0,179.0,0,Transient-Party,3.61,0,0,Check-Out,2019-05-04 -Resort Hotel,1,64,2016,August,37,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,242.0,179.0,0,Transient,235.41,0,3,Canceled,2019-04-03 -City Hotel,0,0,2017,May,22,25,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.58,0,1,Check-Out,2020-03-03 -Resort Hotel,0,101,2016,June,20,14,0,10,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,76.0,179.0,0,Transient-Party,78.92,0,0,Check-Out,2019-02-01 -Resort Hotel,0,38,2017,February,14,15,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,62.52,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2015,November,49,24,1,2,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,90.65,1,0,Check-Out,2018-12-03 -Resort Hotel,0,43,2017,August,37,28,4,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,87.12,0,1,Check-Out,2020-06-02 -Resort Hotel,1,29,2016,December,53,10,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,78.34,0,2,No-Show,2018-12-03 -City Hotel,0,151,2015,August,31,5,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,137.48,0,1,Check-Out,2018-06-02 -City Hotel,1,157,2017,October,29,7,2,4,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.95,0,0,Canceled,2020-06-02 -City Hotel,1,3,2017,May,21,24,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,115.82,0,1,Canceled,2020-02-01 -City Hotel,0,97,2016,July,34,21,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,124.83,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2017,February,17,12,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,3.01,0,0,Check-Out,2020-01-04 -City Hotel,0,42,2016,August,35,18,0,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,161.2,0,3,Check-Out,2019-06-03 -Resort Hotel,0,191,2017,July,36,18,3,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,Non Refund,244.0,179.0,0,Transient,126.45,0,2,Check-Out,2020-07-03 -Resort Hotel,0,15,2016,June,21,3,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,62.72,0,1,Check-Out,2019-01-03 -Resort Hotel,0,39,2016,December,25,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,116.29,0,0,Check-Out,2019-08-04 -City Hotel,1,37,2015,July,32,22,2,3,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,67.67,0,0,Canceled,2018-06-02 -City Hotel,0,416,2017,August,33,8,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.37,0,1,Check-Out,2019-09-03 -Resort Hotel,1,8,2016,January,11,6,2,1,2,0.0,0,BB,CHN,Online TA,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,36.06,0,2,No-Show,2018-10-03 -Resort Hotel,0,0,2015,January,3,15,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,D,D,2,No Deposit,13.0,76.0,0,Transient,38.63,1,0,Check-Out,2018-12-03 -City Hotel,1,2,2016,December,44,5,2,1,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,13.0,207.0,0,Transient,41.16,0,0,Canceled,2018-12-03 -City Hotel,0,327,2016,August,36,15,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,129.64,0,3,Check-Out,2019-06-03 -City Hotel,0,40,2016,September,38,13,1,1,2,0.0,0,SC,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,131.89,0,0,Canceled,2019-08-04 -Resort Hotel,0,69,2016,May,23,14,2,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,194.89,0,1,Check-Out,2019-02-01 -Resort Hotel,1,111,2016,December,50,23,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,F,0,Non Refund,28.0,179.0,0,Transient,70.38,0,0,Canceled,2018-08-03 -City Hotel,1,17,2016,November,45,13,1,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.69,0,1,Canceled,2019-11-03 -City Hotel,0,242,2017,June,27,2,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.25,0,1,Check-Out,2020-06-02 -Resort Hotel,0,17,2015,December,49,30,1,4,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,272.0,179.0,0,Transient-Party,157.18,0,0,Check-Out,2018-06-02 -Resort Hotel,0,160,2017,July,30,21,0,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,249.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,May,18,6,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,D,0,No Deposit,15.0,175.0,0,Transient,41.12,0,0,Check-Out,2019-05-04 -City Hotel,1,17,2016,August,45,15,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,220.97,0,2,Check-Out,2019-08-04 -City Hotel,1,4,2017,March,10,21,1,0,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient,68.06,0,0,Canceled,2019-11-03 -Resort Hotel,0,9,2015,October,44,10,0,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,145.98,0,0,Canceled,2018-08-03 -City Hotel,1,2,2016,March,18,6,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,164.99,0,0,Canceled,2018-12-03 -Resort Hotel,1,108,2016,February,10,28,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,33.0,179.0,64,Transient,77.56,0,0,Canceled,2018-12-03 -City Hotel,0,16,2016,June,28,28,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-02-01 -City Hotel,1,430,2016,February,50,24,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,283.0,179.0,0,Transient,50.69,0,0,Canceled,2019-09-03 -City Hotel,0,6,2017,January,5,24,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,57.12,0,3,Check-Out,2019-10-04 -City Hotel,0,96,2016,May,22,2,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,260.0,331.0,0,Transient-Party,103.45,0,0,Check-Out,2019-03-04 -City Hotel,1,2,2017,February,8,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,19.0,179.0,0,Transient,108.85,0,0,Canceled,2020-03-03 -City Hotel,0,83,2017,June,26,24,2,4,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,119.86,0,0,Check-Out,2020-04-02 -Resort Hotel,0,146,2017,May,11,9,0,4,1,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,100.58,0,1,Check-Out,2019-12-04 -City Hotel,1,61,2017,April,17,15,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,159.2,0,0,Canceled,2020-02-01 -City Hotel,0,1,2016,August,35,29,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,G,G,2,No Deposit,14.0,179.0,0,Transient,0.18,1,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,December,47,22,0,3,3,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,70.33,0,1,Check-Out,2019-11-03 -City Hotel,1,7,2017,June,37,30,0,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,153.0,179.0,0,Transient,110.17,0,0,Canceled,2020-04-02 -City Hotel,0,53,2016,July,27,30,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,64.1,0,0,Check-Out,2019-05-04 -City Hotel,0,51,2016,October,44,17,0,2,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,80.97,0,0,Check-Out,2019-09-03 -City Hotel,0,31,2016,November,49,17,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.91,0,2,Check-Out,2019-03-04 -Resort Hotel,0,151,2017,June,25,14,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,121.88,1,3,Check-Out,2020-04-02 -Resort Hotel,0,134,2017,July,33,7,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,1.26,0,0,Check-Out,2020-06-02 -Resort Hotel,0,6,2016,May,16,7,0,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.77,0,1,Check-Out,2019-06-03 -Resort Hotel,1,321,2017,March,10,14,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,38.29,0,0,Canceled,2019-10-04 -Resort Hotel,0,16,2017,March,10,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,D,0,No Deposit,89.0,179.0,0,Transient-Party,72.91,0,0,Check-Out,2019-11-03 -City Hotel,0,15,2016,March,11,24,2,0,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,10.0,179.0,0,Transient,83.5,0,0,Check-Out,2020-02-01 -City Hotel,1,38,2015,September,42,5,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,60.99,0,0,Canceled,2018-08-03 -Resort Hotel,0,16,2016,July,26,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.74,0,1,Check-Out,2018-12-03 -Resort Hotel,0,38,2015,October,51,30,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,113.23,1,2,Check-Out,2018-08-03 -City Hotel,1,377,2017,July,35,21,2,5,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,182.79,0,0,Canceled,2019-12-04 -City Hotel,1,32,2016,August,42,2,1,6,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,117.33,0,0,No-Show,2019-06-03 -Resort Hotel,0,3,2015,October,38,10,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,237.0,179.0,0,Transient,160.38,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2015,September,37,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,122.19,0,0,Check-Out,2018-08-03 -Resort Hotel,1,147,2016,March,10,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,61.82,0,0,Canceled,2018-09-02 -City Hotel,1,100,2016,November,16,20,2,2,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,10.0,179.0,0,Transient,68.87,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2015,October,43,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,70.0,0,Transient,37.0,0,0,Check-Out,2019-09-03 -Resort Hotel,1,49,2017,January,32,21,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Non Refund,241.0,179.0,0,Transient,181.84,0,0,Canceled,2018-11-02 -City Hotel,1,9,2015,December,50,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,298.0,179.0,0,Transient,38.29,0,0,Canceled,2018-12-03 -City Hotel,0,294,2017,May,21,15,1,4,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,122.03,0,3,Check-Out,2019-05-04 -Resort Hotel,0,40,2016,December,53,25,2,1,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,41.0,179.0,0,Transient-Party,61.18,0,0,Check-Out,2019-10-04 -Resort Hotel,0,103,2015,August,37,16,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,43.12,0,0,Check-Out,2018-06-02 -City Hotel,0,238,2017,May,21,29,0,1,1,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,108.86,0,1,Check-Out,2019-12-04 -City Hotel,1,11,2016,June,27,30,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,124.25,0,1,No-Show,2019-02-01 -Resort Hotel,0,56,2015,October,44,6,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,23.73,0,0,Check-Out,2018-08-03 -City Hotel,0,16,2015,October,37,21,2,3,2,0.0,0,HB,AUT,Offline TA/TO,Corporate,0,0,0,A,C,1,No Deposit,8.0,179.0,0,Transient-Party,104.02,1,0,Check-Out,2018-05-03 -Resort Hotel,0,17,2017,June,20,15,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.36,0,2,Check-Out,2020-02-01 -City Hotel,0,265,2015,October,43,13,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,74.1,0,0,Check-Out,2017-11-02 -Resort Hotel,0,0,2016,March,19,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,D,D,0,No Deposit,16.0,45.0,0,Transient,130.17,0,0,Check-Out,2019-02-01 -Resort Hotel,1,215,2017,August,34,16,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,178.28,0,3,Canceled,2019-07-04 -City Hotel,1,297,2016,October,44,10,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,170.5,0,0,Canceled,2019-08-04 -City Hotel,1,0,2017,August,9,31,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.98,0,0,Canceled,2020-06-02 -City Hotel,0,15,2017,May,17,31,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,213.45,0,0,Check-Out,2020-02-01 -City Hotel,1,259,2017,June,35,2,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient,74.76,0,0,Canceled,2019-05-04 -City Hotel,0,88,2015,October,37,9,2,5,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,125.32,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,January,3,18,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,45.86,0,0,Check-Out,2019-09-03 -City Hotel,1,179,2015,September,38,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Refundable,11.0,179.0,0,Transient,48.51,0,0,Canceled,2018-01-03 -City Hotel,1,150,2016,April,17,16,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.87,0,1,Canceled,2019-02-01 -City Hotel,1,219,2016,May,22,18,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.26,0,0,Canceled,2019-10-04 -Resort Hotel,1,154,2016,March,13,18,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,26.99,0,0,Canceled,2019-12-04 -City Hotel,1,0,2016,September,35,20,2,0,3,2.0,0,BB,,Complementary,Direct,0,0,0,P,P,0,No Deposit,16.0,259.0,0,Transient,90.58,0,0,Canceled,2019-09-03 -Resort Hotel,0,249,2016,September,49,30,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,53.29,1,2,Check-Out,2019-05-04 -Resort Hotel,0,26,2017,June,25,5,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,G,A,1,No Deposit,296.0,179.0,0,Transient-Party,138.79,1,2,Check-Out,2020-06-02 -City Hotel,1,7,2016,October,44,15,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,76.96,0,0,No-Show,2019-09-03 -City Hotel,1,149,2017,March,18,29,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,148.87,0,1,Canceled,2020-05-03 -City Hotel,1,189,2017,March,11,31,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,82.49,0,0,Canceled,2019-11-03 -Resort Hotel,0,152,2016,September,35,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,13.0,224.0,75,Transient-Party,61.58,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2016,August,35,12,1,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,217.89,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,November,43,23,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,14.0,179.0,0,Transient,36.87,0,2,Check-Out,2019-01-03 -Resort Hotel,0,172,2017,May,22,21,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,2,No Deposit,168.0,179.0,0,Transient-Party,144.6,0,0,Check-Out,2020-05-03 -Resort Hotel,1,213,2017,August,38,23,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,233.8,0,0,Canceled,2020-07-03 -Resort Hotel,0,227,2015,September,42,20,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,71.37,0,0,Check-Out,2018-08-03 -Resort Hotel,0,47,2017,August,36,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,202.77,0,2,Check-Out,2020-06-02 -City Hotel,1,10,2016,June,28,9,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.6,0,0,Canceled,2019-04-03 -City Hotel,0,16,2017,August,36,26,0,1,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,179.0,179.0,0,Transient-Party,79.02,0,0,Check-Out,2020-07-03 -City Hotel,0,1,2017,August,31,13,1,4,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2015,July,37,21,2,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,89.09,0,0,Check-Out,2018-06-02 -City Hotel,1,35,2017,June,21,24,0,7,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Transient,130.31,0,0,Canceled,2019-11-03 -City Hotel,0,84,2017,June,26,18,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,80.19,0,1,Check-Out,2020-01-04 -Resort Hotel,0,1,2016,September,43,9,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,40.78,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2017,March,8,14,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.2,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2016,November,44,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,76.0,0,Transient-Party,69.12,0,0,Check-Out,2019-06-03 -City Hotel,1,312,2017,July,36,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,103.28,0,0,Canceled,2018-08-03 -City Hotel,0,21,2017,June,26,30,1,1,1,0.0,0,BB,DEU,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,81.0,0,Transient,105.41,0,1,Check-Out,2020-06-02 -City Hotel,0,95,2016,November,50,28,0,1,3,0.0,0,BB,CHE,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,66.26,0,0,Check-Out,2019-10-04 -City Hotel,1,127,2017,March,17,13,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.3,0,0,Canceled,2020-02-01 -City Hotel,0,24,2016,June,24,5,0,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.95,0,0,Check-Out,2019-03-04 -City Hotel,1,104,2016,August,15,4,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,114.73,0,1,Canceled,2019-02-01 -Resort Hotel,0,3,2016,March,18,31,1,5,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,327.0,222.0,0,Transient,39.57,0,0,Check-Out,2019-03-04 -City Hotel,1,369,2015,November,50,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.56,0,0,Canceled,2018-08-03 -City Hotel,1,406,2016,September,45,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,42,Transient,77.69,0,0,Canceled,2019-10-04 -City Hotel,0,3,2016,May,22,12,1,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.74,0,0,Check-Out,2019-06-03 -Resort Hotel,0,21,2017,January,3,9,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,75.97,0,2,Check-Out,2019-11-03 -City Hotel,0,0,2016,October,44,21,0,1,1,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,208.37,0,3,Check-Out,2019-09-03 -Resort Hotel,1,408,2017,April,22,24,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,E,0,Non Refund,33.0,179.0,0,Transient,61.93,0,0,Canceled,2019-10-04 -City Hotel,0,99,2016,October,44,27,1,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,101.87,0,0,Check-Out,2019-10-04 -City Hotel,0,4,2015,July,33,6,0,1,2,0.0,0,BB,,Direct,TA/TO,1,0,1,D,D,0,No Deposit,12.0,179.0,0,Group,42.68,0,0,Check-Out,2018-08-03 -Resort Hotel,1,163,2017,June,37,28,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,249.0,179.0,0,Transient,115.99,0,1,Canceled,2020-06-02 -City Hotel,1,92,2016,April,17,31,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,62.62,0,1,Canceled,2019-03-04 -City Hotel,0,27,2016,February,37,22,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,61.15,0,2,Check-Out,2018-12-03 -City Hotel,0,246,2015,October,43,18,2,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient-Party,36.49,0,0,Check-Out,2018-09-02 -Resort Hotel,0,7,2017,February,9,20,1,0,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,73.32,0,0,Check-Out,2020-01-04 -City Hotel,1,248,2016,October,37,30,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,15.0,179.0,0,Transient,106.74,0,0,Canceled,2019-09-03 -City Hotel,1,89,2016,October,39,29,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,195.13,0,1,Canceled,2019-04-03 -City Hotel,1,150,2017,July,38,12,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,123.48,0,0,Canceled,2020-06-02 -Resort Hotel,1,98,2016,May,21,30,0,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,H,0,No Deposit,246.0,179.0,0,Transient,62.63,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,June,27,5,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,210.0,0,Transient,0.0,1,0,Check-Out,2020-03-03 -Resort Hotel,1,258,2016,August,35,20,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,9.0,179.0,0,Transient,168.67,0,0,Canceled,2019-07-04 -Resort Hotel,0,211,2016,March,19,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,64.28,0,0,Canceled,2019-02-01 -City Hotel,1,3,2017,March,11,25,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,E,E,2,No Deposit,188.0,221.0,0,Transient-Party,78.62,0,0,Canceled,2020-01-04 -City Hotel,1,166,2015,August,38,11,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,176.39,0,1,Canceled,2018-06-02 -City Hotel,0,53,2017,April,17,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.71,0,2,Check-Out,2020-02-01 -City Hotel,0,249,2016,October,42,12,2,5,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient-Party,78.19,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,July,43,28,0,1,2,0.0,0,HB,PRT,Complementary,TA/TO,1,0,1,A,I,1,No Deposit,242.0,179.0,0,Transient,3.71,1,2,Check-Out,2019-01-03 -City Hotel,0,192,2017,July,26,2,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.4,0,2,Check-Out,2020-05-03 -City Hotel,1,379,2016,June,27,14,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,158.94,0,0,Canceled,2019-03-04 -City Hotel,0,7,2016,May,16,10,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,55.65,0,2,Check-Out,2019-03-04 -City Hotel,1,258,2017,April,26,15,1,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,E,0,No Deposit,187.0,179.0,75,Transient,160.59,0,0,Canceled,2020-03-03 -Resort Hotel,1,109,2017,August,40,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,236.0,179.0,0,Transient,181.56,0,1,Canceled,2020-06-02 -Resort Hotel,0,47,2017,March,13,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,63.39,0,0,Check-Out,2019-10-04 -City Hotel,0,228,2015,September,40,9,2,3,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,142.49,0,2,Check-Out,2019-08-04 -Resort Hotel,0,34,2016,June,24,6,0,4,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient,119.5,1,1,Check-Out,2019-04-03 -City Hotel,1,394,2017,August,35,27,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.32,0,0,Canceled,2019-10-04 -City Hotel,1,411,2015,August,39,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,135.98,0,0,Canceled,2018-08-03 -City Hotel,0,259,2016,October,46,28,1,1,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.19,0,0,Check-Out,2019-09-03 -Resort Hotel,1,150,2017,July,34,6,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,83.65,0,2,Canceled,2020-06-02 -City Hotel,0,42,2015,November,45,30,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,60.61,0,0,Check-Out,2018-09-02 -Resort Hotel,1,298,2017,July,33,20,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,213.45,0,0,Canceled,2020-06-02 -City Hotel,1,53,2016,October,44,20,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,120.13,0,0,Check-Out,2019-11-03 -City Hotel,1,282,2015,September,33,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,2.0,179.0,0,Contract,61.61,0,0,Canceled,2017-10-03 -City Hotel,1,38,2016,July,10,21,2,5,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient-Party,69.04,0,0,No-Show,2018-12-03 -Resort Hotel,0,161,2016,June,24,26,2,1,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,111.17,0,1,Check-Out,2019-05-04 -Resort Hotel,0,38,2016,November,43,17,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,121.16,1,1,Check-Out,2019-06-03 -Resort Hotel,0,94,2016,June,26,25,4,4,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,91.56,0,0,Check-Out,2019-07-04 -City Hotel,0,384,2016,July,27,2,0,1,2,0.0,0,SC,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,117.09,0,1,Check-Out,2019-06-03 -City Hotel,0,13,2015,December,17,10,1,0,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,1,A,F,0,No Deposit,12.0,179.0,0,Transient,0.0,1,2,Check-Out,2018-12-03 -Resort Hotel,0,307,2017,June,28,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,149.13,0,1,Check-Out,2020-04-02 -City Hotel,1,191,2017,May,37,20,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.4,0,0,Canceled,2020-03-03 -City Hotel,0,312,2016,May,23,15,0,1,2,0.0,0,HB,ISR,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.43,0,0,Check-Out,2019-03-04 -Resort Hotel,1,42,2016,March,11,10,2,5,2,0.0,0,HB,CHE,Groups,Direct,0,0,0,E,A,1,No Deposit,197.0,179.0,0,Transient,48.95,0,0,No-Show,2019-10-04 -City Hotel,1,143,2017,February,9,18,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,150.07,0,0,Canceled,2018-12-03 -Resort Hotel,1,4,2017,January,2,31,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,33.59,0,0,Canceled,2019-11-03 -Resort Hotel,0,12,2017,May,11,10,1,0,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,A,3,No Deposit,196.0,211.0,0,Transient,74.62,0,0,Check-Out,2020-04-02 -City Hotel,0,100,2017,July,32,13,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,100.3,0,1,Check-Out,2020-06-02 -Resort Hotel,0,17,2015,December,51,28,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,147.09,0,0,Check-Out,2018-08-03 -City Hotel,0,18,2016,April,17,15,2,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient-Party,95.57,0,0,Check-Out,2020-02-01 -City Hotel,1,44,2017,January,4,19,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,57.95,0,1,Canceled,2020-04-02 -City Hotel,1,401,2016,October,35,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,111.85,0,0,Canceled,2018-09-02 -City Hotel,0,34,2016,April,17,31,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,166.62,0,0,Check-Out,2019-02-01 -City Hotel,0,17,2017,April,22,28,0,4,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,162.13,1,3,Check-Out,2020-06-02 -City Hotel,0,46,2017,October,37,25,1,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.69,0,2,Check-Out,2019-12-04 -City Hotel,0,104,2017,June,27,18,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.78,0,2,Check-Out,2020-03-03 -City Hotel,0,21,2017,April,23,31,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,10.0,179.0,0,Transient,130.79,0,1,Check-Out,2020-01-04 -City Hotel,1,32,2016,November,50,29,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.05,0,1,Canceled,2019-09-03 -City Hotel,1,72,2016,February,10,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,249.0,179.0,0,Transient,42.39,0,0,Canceled,2018-11-02 -Resort Hotel,0,21,2015,December,53,9,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,245.0,179.0,0,Transient,39.66,0,3,Check-Out,2019-09-03 -City Hotel,1,29,2016,December,53,10,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,64.63,0,0,Canceled,2019-10-04 -Resort Hotel,0,6,2017,June,32,2,0,1,3,1.0,0,HB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-04-02 -City Hotel,0,42,2017,April,16,6,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.25,0,2,Check-Out,2020-02-01 -City Hotel,1,267,2016,September,16,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,96.45,0,0,Canceled,2019-01-03 -City Hotel,1,31,2016,August,39,17,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,5.0,179.0,0,Transient,101.35,0,2,Canceled,2019-05-04 -City Hotel,0,8,2016,April,23,2,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,136.84,0,0,Check-Out,2019-02-01 -City Hotel,0,243,2017,July,31,24,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.81,0,2,Check-Out,2020-07-03 -City Hotel,1,21,2017,May,17,25,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,122.13,0,0,Canceled,2019-01-03 -Resort Hotel,1,48,2016,February,10,2,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,61.34,0,0,Canceled,2018-11-02 -City Hotel,1,0,2017,May,21,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,17.0,45.0,0,Transient,34.42,0,0,Canceled,2019-04-03 -Resort Hotel,0,10,2017,April,17,30,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,210.96,1,0,Check-Out,2020-03-03 -City Hotel,1,146,2016,March,17,19,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,60,Transient,66.42,0,0,Canceled,2018-12-03 -City Hotel,0,1,2016,January,12,9,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,D,D,0,No Deposit,15.0,45.0,0,Transient,0.0,1,0,Check-Out,2019-11-03 -Resort Hotel,0,282,2016,March,17,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,11.0,223.0,0,Transient-Party,65.72,0,0,Check-Out,2019-04-03 -City Hotel,1,22,2017,January,4,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,70.56,0,1,Canceled,2019-11-03 -City Hotel,1,16,2017,July,26,13,2,5,2,1.0,0,BB,,Direct,Direct,0,0,0,B,B,2,No Deposit,16.0,179.0,0,Transient,119.79,0,0,Canceled,2020-03-03 -City Hotel,1,213,2017,May,23,27,2,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,79.46,0,0,Canceled,2019-10-04 -City Hotel,0,17,2016,February,17,25,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,120.09,0,1,Check-Out,2019-03-04 -Resort Hotel,0,3,2017,February,8,15,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,18.0,94.0,0,Transient-Party,42.46,0,0,Check-Out,2019-11-03 -City Hotel,1,296,2016,June,27,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,12.0,179.0,0,Transient,84.7,0,0,Canceled,2019-02-01 -City Hotel,0,40,2016,November,49,8,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,82.65,0,0,Check-Out,2019-10-04 -City Hotel,0,38,2016,October,46,11,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,247.59,0,1,Check-Out,2019-08-04 -City Hotel,0,36,2017,April,16,24,2,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,102.58,0,0,Check-Out,2020-04-02 -City Hotel,1,7,2016,November,48,15,0,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,17,Transient,64.65,0,1,Canceled,2019-10-04 -City Hotel,0,43,2017,August,36,7,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.27,0,0,Check-Out,2020-04-02 -City Hotel,0,19,2016,June,26,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,83.0,0,Transient-Party,64.3,0,0,Check-Out,2019-06-03 -City Hotel,0,168,2016,September,44,24,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,160.08,0,2,Check-Out,2019-05-04 -Resort Hotel,1,152,2016,July,29,25,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,235.0,179.0,0,Transient,230.44,0,1,Canceled,2019-08-04 -Resort Hotel,0,319,2016,July,32,23,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,243.0,179.0,0,Transient,122.47,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2017,August,36,28,2,5,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-06-02 -Resort Hotel,1,95,2017,April,19,17,1,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,16.0,179.0,0,Transient,152.37,0,0,Canceled,2020-02-01 -City Hotel,1,255,2015,July,34,4,0,1,2,0.0,0,HB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,54.53,0,1,Canceled,2018-06-02 -Resort Hotel,0,1,2016,June,26,3,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,299.0,179.0,0,Transient,72.76,0,0,Check-Out,2019-02-01 -Resort Hotel,0,92,2017,May,19,21,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,0,No Deposit,304.0,179.0,0,Transient-Party,77.12,0,0,Check-Out,2020-04-02 -City Hotel,0,50,2016,May,21,12,1,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,93.19,0,1,Check-Out,2019-01-03 -City Hotel,0,57,2016,October,43,18,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,9.0,179.0,0,Transient-Party,90.09,0,2,Check-Out,2019-09-03 -City Hotel,0,269,2017,May,22,27,0,2,2,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,G,A,0,No Deposit,13.0,179.0,0,Transient,107.09,0,1,Check-Out,2020-05-03 -City Hotel,1,67,2016,December,43,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,129.15,0,0,Canceled,2019-11-03 -City Hotel,1,113,2016,March,9,15,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,B,B,0,Non Refund,24.0,179.0,0,Transient,39.59,0,0,Canceled,2018-12-03 -City Hotel,0,31,2016,January,5,17,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,111.7,0,3,Check-Out,2019-10-04 -City Hotel,0,8,2016,December,50,27,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,218.0,0,Transient,94.04,1,0,Check-Out,2019-06-03 -Resort Hotel,1,31,2017,February,8,23,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,19.0,331.0,0,Transient,76.57,0,0,Canceled,2019-11-03 -Resort Hotel,0,138,2017,June,24,14,1,7,3,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,149.84,1,0,Check-Out,2020-02-01 -City Hotel,0,82,2015,September,41,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,32.0,179.0,0,Contract,61.72,0,0,Check-Out,2018-08-03 -City Hotel,1,51,2015,December,53,5,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,69.83,0,0,Canceled,2018-06-02 -City Hotel,1,2,2017,March,9,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,45.17,0,0,Canceled,2019-11-03 -City Hotel,0,92,2016,August,31,13,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,121.45,0,1,Check-Out,2019-03-04 -Resort Hotel,0,2,2017,May,22,5,2,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,C,2,No Deposit,250.0,179.0,0,Transient,88.92,0,0,Check-Out,2020-01-04 -City Hotel,0,4,2015,December,44,9,0,1,1,0.0,0,BB,USA,Direct,Corporate,1,0,1,A,D,0,No Deposit,12.0,179.0,0,Group,97.06,0,1,Check-Out,2018-08-03 -City Hotel,0,28,2016,June,17,28,0,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,74.77,0,0,Check-Out,2019-03-04 -City Hotel,0,22,2016,August,38,23,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,116.47,0,1,Check-Out,2019-06-03 -City Hotel,0,3,2016,May,23,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.09,0,1,Check-Out,2019-02-01 -City Hotel,1,8,2016,February,9,18,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,59.51,0,0,Canceled,2019-02-01 -City Hotel,0,1,2015,October,48,25,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,65,2017,June,22,8,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,163.2,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,March,17,11,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,113.7,1,0,Check-Out,2019-03-04 -Resort Hotel,0,32,2015,October,42,10,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,330.0,179.0,0,Transient-Party,96.76,0,0,Check-Out,2018-06-02 -Resort Hotel,1,301,2016,October,43,28,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,Refundable,30.0,179.0,0,Contract,60.66,0,0,Canceled,2019-08-04 -City Hotel,0,0,2016,January,9,13,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,68.58,0,1,Check-Out,2018-10-03 -City Hotel,0,60,2017,August,19,2,0,4,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,197.48,0,2,Canceled,2020-04-02 -City Hotel,0,9,2016,February,9,25,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,237.0,179.0,0,Transient,61.42,0,1,Check-Out,2018-10-03 -Resort Hotel,0,1,2017,August,31,21,2,5,2,2.0,0,BB,PRT,Complementary,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,189.58,0,1,Check-Out,2020-06-02 -Resort Hotel,0,25,2016,July,26,29,0,4,2,0.0,0,HB,NOR,Complementary,TA/TO,1,0,1,C,I,1,No Deposit,243.0,179.0,0,Transient,2.75,1,1,Check-Out,2019-04-03 -City Hotel,1,22,2016,April,16,14,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,79.96,0,0,Canceled,2019-02-01 -City Hotel,1,0,2015,October,43,6,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,110.6,0,0,Canceled,2018-08-03 -Resort Hotel,0,263,2016,May,45,24,1,2,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,C,0,No Deposit,36.0,179.0,0,Transient,88.53,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2016,January,5,5,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.98,0,0,Check-Out,2019-10-04 -City Hotel,0,36,2016,February,10,16,2,2,1,0.0,0,BB,ITA,Corporate,TA/TO,0,0,0,A,B,0,No Deposit,32.0,179.0,0,Transient-Party,67.64,0,0,Check-Out,2019-02-01 -City Hotel,1,54,2015,July,34,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,66.23,0,0,Canceled,2018-06-02 -City Hotel,0,19,2016,October,45,13,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,110.33,0,3,Check-Out,2019-02-01 -Resort Hotel,0,23,2016,October,22,30,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,34.74,1,0,Check-Out,2019-03-04 -City Hotel,0,45,2015,August,38,25,1,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.61,0,0,Check-Out,2018-08-03 -City Hotel,1,14,2017,February,9,31,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,61.67,0,1,Canceled,2019-12-04 -Resort Hotel,0,140,2016,April,25,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,119.58,0,1,Check-Out,2019-04-03 -Resort Hotel,0,224,2016,May,28,29,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Contract,35.93,0,0,Check-Out,2019-04-03 -Resort Hotel,0,48,2015,August,37,28,2,3,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,145.03,0,1,Check-Out,2018-06-02 -Resort Hotel,0,161,2016,August,38,21,0,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,196.83,0,1,Check-Out,2019-07-04 -City Hotel,0,0,2017,April,14,20,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,215.37,0,0,Check-Out,2019-12-04 -Resort Hotel,0,12,2016,October,45,16,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,110.8,1,1,Check-Out,2019-05-04 -Resort Hotel,1,0,2016,November,36,22,2,0,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,E,F,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Canceled,2019-07-04 -City Hotel,0,6,2015,July,27,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,11.0,215.0,0,Transient,79.42,0,0,Check-Out,2019-06-03 -Resort Hotel,1,25,2016,March,17,27,0,4,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,279.0,179.0,22,Transient-Party,64.65,0,0,Canceled,2019-05-04 -City Hotel,1,9,2016,July,28,8,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,118.71,0,1,No-Show,2019-04-03 -City Hotel,0,244,2017,February,9,21,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,218.02,0,3,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,September,38,21,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,35.07,0,0,Check-Out,2018-06-02 -City Hotel,0,18,2016,March,7,12,2,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.06,0,1,Check-Out,2018-12-03 -City Hotel,0,0,2016,March,16,15,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,F,0,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-12-04 -Resort Hotel,0,55,2017,July,36,17,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,378.0,179.0,0,Transient,127.09,0,0,Check-Out,2020-07-03 -City Hotel,1,52,2016,October,42,24,2,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,86.13,0,0,Canceled,2019-08-04 -Resort Hotel,0,3,2016,February,9,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,169.0,331.0,0,Transient,30.07,0,0,Check-Out,2019-02-01 -City Hotel,0,34,2016,November,51,27,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,76.17,0,0,Check-Out,2019-09-03 -Resort Hotel,0,155,2017,August,32,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,65.57,1,1,Check-Out,2020-06-02 -Resort Hotel,0,48,2015,November,46,27,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,67.72,0,3,Check-Out,2018-09-02 -City Hotel,0,147,2016,October,42,9,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.15,0,2,Check-Out,2019-08-04 -City Hotel,0,3,2017,August,36,2,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,12.0,179.0,0,Transient,2.02,0,0,Check-Out,2019-09-03 -City Hotel,0,290,2015,October,43,25,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,62.22,0,0,Check-Out,2018-08-03 -City Hotel,1,75,2016,July,33,13,2,2,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,148.89,0,0,Canceled,2018-04-02 -Resort Hotel,0,0,2015,February,12,9,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,239.0,179.0,0,Transient,36.44,0,0,Check-Out,2018-12-03 -Resort Hotel,0,104,2016,January,38,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,88.78,0,1,Check-Out,2019-07-04 -City Hotel,0,244,2017,May,27,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,101.85,0,0,Check-Out,2020-03-03 -City Hotel,0,372,2015,September,35,27,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient-Party,121.59,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2017,July,32,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,F,F,1,No Deposit,17.0,70.0,0,Transient,107.31,0,0,Check-Out,2019-12-04 -City Hotel,1,256,2015,July,33,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.47,0,0,Canceled,2018-01-03 -Resort Hotel,0,33,2016,February,9,19,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,86.73,0,0,Check-Out,2018-11-02 -Resort Hotel,1,19,2016,May,26,25,2,2,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,155.49,0,0,Canceled,2019-01-03 -Resort Hotel,1,0,2016,February,8,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,62.13,0,0,Canceled,2019-01-03 -Resort Hotel,0,91,2016,May,27,4,2,10,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,321.0,179.0,0,Transient,62.35,0,0,Check-Out,2019-03-04 -City Hotel,1,95,2017,August,35,16,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,177.83,0,3,Canceled,2019-12-04 -City Hotel,0,10,2016,March,4,4,0,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,1,D,D,1,No Deposit,9.0,179.0,0,Transient,123.29,0,3,Check-Out,2019-01-03 -Resort Hotel,0,24,2016,October,42,27,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,G,I,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -Resort Hotel,0,13,2016,January,50,8,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,41.0,179.0,0,Transient,60.73,0,0,Check-Out,2019-01-03 -City Hotel,0,17,2017,May,20,10,1,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,10.0,45.0,0,Transient,0.0,0,1,Check-Out,2020-02-01 -City Hotel,0,43,2016,February,9,21,2,1,1,0.0,0,BB,GBR,Direct,Direct,0,1,0,A,B,0,No Deposit,12.0,331.0,0,Contract,61.26,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,July,27,20,0,3,2,1.0,0,BB,PRT,Direct,Corporate,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient-Party,235.94,1,1,Check-Out,2020-04-02 -City Hotel,1,0,2016,June,4,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,13.0,179.0,0,Transient,127.27,0,0,No-Show,2019-12-04 -Resort Hotel,0,52,2016,May,23,5,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,51.89,0,1,Check-Out,2019-12-04 -Resort Hotel,0,304,2016,June,23,6,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,175.0,179.0,0,Transient,74.01,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,March,18,18,0,1,1,0.0,0,SC,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,242.0,0,Transient,74.81,0,0,Check-Out,2019-01-03 -City Hotel,0,35,2016,June,25,31,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,95.82,0,1,Canceled,2019-01-03 -City Hotel,0,17,2017,June,27,6,0,4,1,0.0,0,BB,,Aviation,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,143.13,0,0,Check-Out,2020-06-02 -City Hotel,0,13,2017,August,22,31,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,F,D,0,No Deposit,11.0,179.0,0,Transient,167.69,0,0,Check-Out,2020-03-03 -City Hotel,1,14,2015,September,45,10,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient-Party,62.35,0,0,Canceled,2018-08-03 -City Hotel,1,0,2016,May,22,4,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,13.0,257.0,0,Transient,1.7,0,0,Canceled,2019-04-03 -City Hotel,1,329,2017,May,15,5,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,26.0,179.0,0,Transient,80.27,0,2,Canceled,2019-10-04 -City Hotel,0,16,2016,September,46,31,1,3,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,116.14,0,2,Check-Out,2019-08-04 -City Hotel,0,1,2016,September,45,17,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,82.11,1,2,Check-Out,2019-05-04 -City Hotel,1,14,2016,February,10,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,0,Transient,63.24,0,0,Canceled,2018-10-03 -Resort Hotel,1,302,2017,June,27,31,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,132.14,0,2,Canceled,2020-02-01 -Resort Hotel,0,4,2015,December,52,26,0,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,63.04,0,0,Check-Out,2018-06-02 -City Hotel,1,311,2017,August,36,18,0,4,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,D,2,No Deposit,13.0,179.0,0,Transient,227.15,0,0,Canceled,2020-06-02 -Resort Hotel,0,90,2015,August,35,28,2,5,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-06-02 -City Hotel,0,39,2016,April,17,6,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.91,0,1,Check-Out,2019-02-01 -City Hotel,0,1,2017,August,36,6,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,76.32,0,2,Check-Out,2020-06-02 -City Hotel,1,15,2016,March,18,17,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.99,0,0,Canceled,2019-12-04 -City Hotel,1,14,2017,May,22,5,1,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.03,0,0,Canceled,2019-11-03 -Resort Hotel,1,234,2017,June,33,27,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,163.0,179.0,0,Transient-Party,100.69,0,0,Canceled,2020-04-02 -City Hotel,0,36,2016,November,51,27,2,6,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,31.0,179.0,0,Transient,72.8,1,0,Check-Out,2019-08-04 -City Hotel,1,48,2016,October,44,3,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,156.09,0,2,Canceled,2019-08-04 -City Hotel,1,63,2017,May,17,6,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,75.11,0,2,Canceled,2020-01-04 -City Hotel,0,251,2016,August,22,6,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Contract,126.99,0,1,Check-Out,2019-07-04 -Resort Hotel,0,44,2017,March,12,19,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,71.86,0,2,Check-Out,2020-03-03 -City Hotel,1,94,2016,October,50,12,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,60.07,0,0,Canceled,2019-08-04 -Resort Hotel,1,306,2016,May,27,23,0,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,102.17,0,0,Check-Out,2019-05-04 -City Hotel,0,110,2016,November,49,4,2,2,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.87,0,1,Check-Out,2019-11-03 -Resort Hotel,1,388,2017,May,16,31,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,256.0,179.0,0,Transient,88.03,0,0,Canceled,2019-11-03 -Resort Hotel,0,17,2016,August,38,22,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,245.0,179.0,0,Transient,216.55,0,0,Check-Out,2020-06-02 -City Hotel,1,39,2016,February,9,12,0,1,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,30.18,0,1,Canceled,2018-10-03 -Resort Hotel,0,52,2016,April,23,24,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,198.9,0,3,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,March,5,6,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,2,No Deposit,18.0,179.0,0,Transient,42.21,0,0,Check-Out,2018-10-03 -Resort Hotel,1,272,2017,July,34,20,2,5,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient,87.67,0,0,Canceled,2020-05-03 -City Hotel,0,245,2016,September,37,9,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,122.26,0,2,Check-Out,2019-06-03 -Resort Hotel,0,107,2016,April,19,31,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,247.0,179.0,0,Transient,109.26,1,2,Check-Out,2019-07-04 -City Hotel,0,1,2015,September,36,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,60.7,0,0,Check-Out,2018-08-03 -Resort Hotel,0,201,2016,October,24,9,2,6,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,124.77,0,1,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,September,43,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient,71.17,0,0,Canceled,2019-09-03 -City Hotel,1,296,2016,September,45,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.29,0,0,Canceled,2019-08-04 -City Hotel,1,1,2016,October,42,17,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,113.91,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,May,22,30,1,0,1,0.0,0,BB,GBR,Complementary,Direct,1,0,0,F,I,1,No Deposit,245.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-04-03 -City Hotel,0,2,2017,February,11,13,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,64.24,0,0,Check-Out,2020-03-03 -City Hotel,0,44,2017,May,27,2,0,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,222.0,0,Transient,94.96,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2016,August,34,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,45.0,0,Transient,89.58,0,0,Check-Out,2020-06-02 -City Hotel,0,31,2016,December,50,30,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,121.35,0,2,Check-Out,2019-12-04 -City Hotel,0,0,2016,February,11,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,32.49,0,0,Check-Out,2018-11-02 -Resort Hotel,0,21,2017,March,36,29,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,55.39,0,1,Check-Out,2019-10-04 -Resort Hotel,0,8,2016,December,50,28,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,C,0,No Deposit,249.0,179.0,0,Transient,198.43,1,0,Check-Out,2018-10-03 -City Hotel,0,158,2016,September,34,15,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,11.0,179.0,0,Contract,61.92,0,1,Check-Out,2019-06-03 -Resort Hotel,0,156,2017,December,51,30,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient-Party,120.55,1,0,Check-Out,2019-12-04 -Resort Hotel,0,37,2015,September,42,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,109.45,0,0,Check-Out,2018-08-03 -Resort Hotel,0,104,2017,May,24,25,2,4,2,0.0,0,HB,ESP,Direct,TA/TO,0,0,0,C,D,2,No Deposit,247.0,179.0,0,Transient,192.43,1,1,Check-Out,2019-03-04 -Resort Hotel,0,132,2016,June,22,9,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,317.0,179.0,0,Transient-Party,88.04,0,0,Check-Out,2019-03-04 -Resort Hotel,1,11,2017,March,10,11,2,2,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,78.56,0,0,Canceled,2019-10-04 -City Hotel,0,2,2016,October,41,18,0,1,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.49,0,0,Check-Out,2018-09-02 -City Hotel,1,122,2015,June,26,8,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,130.18,0,0,Canceled,2020-02-01 -Resort Hotel,0,12,2016,February,11,25,2,0,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,64.49,0,0,Check-Out,2019-02-01 -City Hotel,0,19,2017,May,20,12,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient-Party,97.64,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,July,27,11,0,1,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,120.85,0,0,Check-Out,2019-09-03 -City Hotel,0,44,2016,June,26,23,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.31,0,1,Check-Out,2019-06-03 -City Hotel,0,33,2016,August,39,7,2,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,223.53,0,2,Check-Out,2019-05-04 -Resort Hotel,0,260,2015,September,42,13,4,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,80.0,179.0,0,Contract,140.5,0,0,Check-Out,2018-07-03 -City Hotel,0,15,2017,January,10,28,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.23,0,0,Check-Out,2019-10-04 -Resort Hotel,1,21,2016,August,37,20,3,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,115.78,0,0,Canceled,2019-09-03 -Resort Hotel,1,296,2016,May,16,2,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,83.27,0,0,Canceled,2019-11-03 -City Hotel,1,298,2016,June,42,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,19,Transient,88.27,0,0,Canceled,2019-05-04 -City Hotel,1,300,2017,May,20,21,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.82,0,0,Canceled,2020-01-04 -City Hotel,0,12,2017,March,53,28,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,70.68,0,2,Canceled,2019-12-04 -City Hotel,1,94,2017,July,31,21,0,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,207.36,0,0,Canceled,2020-05-03 -Resort Hotel,0,119,2017,March,20,30,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,72.85,0,0,Check-Out,2020-04-02 -Resort Hotel,0,15,2015,September,44,18,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,37.2,0,1,Check-Out,2018-09-02 -City Hotel,0,154,2016,June,28,26,2,5,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,60.37,0,0,Check-Out,2019-06-03 -City Hotel,1,54,2016,August,37,18,2,5,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,83.94,0,1,Canceled,2019-06-03 -Resort Hotel,0,190,2017,May,21,10,2,5,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Contract,137.96,0,3,Check-Out,2020-04-02 -Resort Hotel,0,146,2016,March,18,22,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,62.04,1,0,Check-Out,2019-01-03 -City Hotel,1,211,2017,May,20,18,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,162.64,0,1,Canceled,2020-03-03 -Resort Hotel,0,39,2016,July,31,22,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,126.02,0,2,Check-Out,2019-04-03 -City Hotel,0,158,2017,June,27,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,166.0,179.0,0,Transient-Party,78.94,0,0,Check-Out,2020-04-02 -City Hotel,0,51,2017,February,10,16,0,3,2,0.0,0,SC,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,62.67,0,1,Check-Out,2020-01-04 -City Hotel,1,139,2016,June,26,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,112.67,0,0,Canceled,2019-05-04 -City Hotel,1,254,2015,July,24,18,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.16,0,1,Canceled,2018-05-03 -Resort Hotel,1,198,2017,April,21,20,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,1,No Deposit,304.0,179.0,0,Transient-Party,129.85,0,0,Canceled,2020-04-02 -City Hotel,0,170,2015,July,32,5,2,5,2,0.0,0,HB,RUS,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.13,0,0,Check-Out,2018-06-02 -City Hotel,1,25,2016,August,37,7,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.82,0,1,No-Show,2019-05-04 -City Hotel,1,11,2015,October,45,15,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,79.7,0,0,Check-Out,2019-12-04 -City Hotel,1,110,2017,May,23,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,Refundable,7.0,179.0,0,Transient,112.56,0,0,Canceled,2019-12-04 -City Hotel,1,160,2015,October,50,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.23,0,0,Canceled,2017-11-02 -City Hotel,0,186,2016,October,44,20,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.12,0,0,Check-Out,2019-07-04 -City Hotel,1,281,2015,October,34,21,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,103.55,0,1,Canceled,2017-10-03 -Resort Hotel,0,2,2016,December,49,29,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,C,I,1,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,0,379,2016,April,21,27,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient-Party,101.24,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,July,33,6,0,5,2,2.0,0,BB,IRL,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,81.55,0,0,Check-Out,2018-06-02 -City Hotel,1,184,2016,July,36,21,2,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,161.55,0,2,No-Show,2019-05-04 -City Hotel,1,268,2017,April,37,27,1,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,162.0,179.0,0,Transient,73.24,0,0,Canceled,2020-03-03 -City Hotel,0,15,2016,March,16,20,0,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,77.6,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,December,49,27,2,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,C,I,0,No Deposit,246.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-11-02 -City Hotel,1,56,2015,November,45,23,2,3,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.72,0,0,Canceled,2019-08-04 -City Hotel,1,52,2016,February,10,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,61.91,0,0,Canceled,2018-11-02 -City Hotel,0,14,2016,October,42,25,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,94.89,0,0,Check-Out,2019-05-04 -Resort Hotel,0,88,2015,December,53,23,2,5,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,78.11,0,2,Check-Out,2018-12-03 -City Hotel,0,54,2015,October,41,2,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,65,Transient-Party,75.43,0,0,Check-Out,2018-08-03 -Resort Hotel,0,146,2016,March,18,30,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,0,Refundable,10.0,223.0,0,Transient-Party,74.58,0,0,Check-Out,2019-01-03 -City Hotel,0,38,2015,December,33,30,2,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.84,0,1,Check-Out,2018-06-02 -Resort Hotel,0,156,2016,July,18,31,2,5,2,0.0,0,HB,IRL,Groups,Direct,0,0,0,C,C,2,Refundable,13.0,179.0,0,Transient-Party,76.99,1,0,Check-Out,2019-02-01 -Resort Hotel,1,1,2016,January,3,6,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,307.0,179.0,0,Transient,74.45,0,0,No-Show,2018-12-03 -Resort Hotel,0,108,2015,July,31,13,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,D,0,No Deposit,11.0,179.0,0,Group,79.59,0,1,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,December,11,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,16.0,331.0,0,Transient,65.14,1,0,Check-Out,2019-12-04 -Resort Hotel,0,201,2016,May,44,31,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,2,Refundable,13.0,223.0,0,Transient-Party,187.43,0,0,Check-Out,2019-05-04 -Resort Hotel,0,12,2017,February,10,29,2,0,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,E,F,0,No Deposit,282.0,179.0,0,Transient,0.0,0,2,Check-Out,2020-01-04 -City Hotel,1,161,2016,April,15,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,93.94,0,0,Canceled,2019-02-01 -City Hotel,0,9,2016,May,15,2,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,88.86,0,0,Canceled,2019-04-03 -Resort Hotel,0,2,2015,February,9,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,35.31,0,0,Check-Out,2018-10-03 -Resort Hotel,0,104,2015,August,36,29,1,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,124.11,1,3,Check-Out,2019-06-03 -City Hotel,1,100,2017,March,20,18,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,93.45,0,2,Canceled,2020-03-03 -City Hotel,0,58,2016,September,44,2,0,3,1,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,9.0,179.0,0,Transient-Party,95.41,0,0,Check-Out,2019-09-03 -Resort Hotel,1,144,2016,March,15,2,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,46.8,0,0,Canceled,2018-12-03 -City Hotel,0,46,2015,October,44,20,1,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,78.0,179.0,0,Group,87.5,0,1,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,March,11,11,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,222.0,0,Transient,44.52,0,0,Check-Out,2019-03-04 -City Hotel,0,96,2016,August,35,2,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,213.63,0,1,Check-Out,2019-08-04 -Resort Hotel,0,150,2016,August,33,30,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,83.91,0,0,Check-Out,2019-05-04 -Resort Hotel,0,23,2016,April,15,2,2,1,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.97,0,2,Check-Out,2019-01-03 -Resort Hotel,0,151,2016,October,42,7,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,304.0,179.0,0,Transient-Party,113.35,0,0,Check-Out,2019-07-04 -City Hotel,1,38,2015,August,32,13,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.97,0,1,No-Show,2018-09-02 -City Hotel,0,285,2017,May,16,9,2,4,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.58,0,0,Canceled,2020-03-03 -Resort Hotel,1,204,2017,August,36,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,190.0,179.0,0,Transient,97.18,1,0,Canceled,2020-07-03 -City Hotel,1,1,2016,June,28,8,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.51,0,0,Canceled,2019-02-01 -City Hotel,1,400,2015,October,46,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,72.52,0,0,Canceled,2018-08-03 -City Hotel,1,18,2017,February,9,14,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,99.32,0,0,Check-Out,2019-12-04 -Resort Hotel,0,14,2016,July,28,31,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,243.0,179.0,0,Transient,153.05,1,1,Check-Out,2019-06-03 -City Hotel,0,154,2016,May,23,19,1,1,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,97.0,179.0,0,Transient-Party,72.67,0,0,Check-Out,2019-04-03 -City Hotel,1,164,2015,July,36,23,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient-Party,99.88,0,0,Canceled,2018-08-03 -Resort Hotel,0,102,2015,July,31,21,0,2,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.51,0,0,Check-Out,2018-06-02 -City Hotel,0,38,2016,May,15,5,2,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Group,0.0,0,1,Check-Out,2019-09-03 -Resort Hotel,0,2,2015,December,51,17,1,0,2,0.0,0,BB,POL,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,33.99,0,0,Check-Out,2018-12-03 -City Hotel,1,51,2015,September,32,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient-Party,60.22,0,0,Canceled,2018-08-03 -Resort Hotel,0,46,2017,March,10,9,0,3,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,1,A,A,0,No Deposit,12.0,82.0,0,Transient,39.53,1,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2017,April,18,21,1,0,1,0.0,0,BB,CHE,Complementary,Direct,1,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-02-01 -Resort Hotel,1,53,2015,October,34,16,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,Non Refund,246.0,179.0,0,Transient,96.01,0,0,Canceled,2018-08-03 -City Hotel,0,165,2017,August,31,26,2,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,157.06,0,1,Check-Out,2020-06-02 -City Hotel,1,198,2017,June,36,22,4,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,Non Refund,242.0,179.0,0,Transient,109.38,0,3,Canceled,2020-04-02 -Resort Hotel,0,14,2017,February,9,15,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,39.06,0,0,Check-Out,2020-02-01 -City Hotel,1,299,2015,July,33,28,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,62.35,0,0,Canceled,2017-11-02 -City Hotel,1,263,2015,September,45,27,2,1,2,0.0,0,BB,CHN,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,178.32,0,0,Canceled,2018-08-03 -City Hotel,0,1,2017,March,18,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,F,0,No Deposit,10.0,45.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -Resort Hotel,0,142,2015,March,18,31,2,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,60.71,0,0,Check-Out,2019-03-04 -City Hotel,0,11,2016,October,51,27,1,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,75.9,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,13.0,243.0,0,Transient,46.74,0,0,Check-Out,2019-12-04 -City Hotel,1,61,2016,July,36,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,125.9,0,0,Canceled,2017-12-03 -City Hotel,0,41,2016,March,16,18,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.28,0,2,Check-Out,2019-03-04 -City Hotel,1,186,2016,October,43,13,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.33,0,0,Canceled,2019-02-01 -Resort Hotel,0,285,2017,March,10,21,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,0.0,0,2,Check-Out,2020-07-03 -Resort Hotel,0,45,2017,May,21,13,1,0,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,321.0,179.0,0,Transient,67.79,0,0,Check-Out,2020-05-03 -Resort Hotel,0,176,2017,August,31,22,2,5,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,251.0,179.0,0,Transient,252.0,1,3,Check-Out,2020-06-02 -City Hotel,0,32,2016,February,11,9,2,5,3,0.0,0,BB,,Direct,Direct,0,0,0,D,F,0,No Deposit,18.0,179.0,0,Transient,79.06,0,0,Check-Out,2019-02-01 -City Hotel,1,16,2016,June,27,6,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,88.1,0,0,Canceled,2019-05-04 -City Hotel,1,59,2016,August,27,14,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,Non Refund,13.0,236.0,0,Transient,62.92,0,0,Canceled,2020-01-04 -Resort Hotel,0,106,2015,September,35,17,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,198.44,0,0,Check-Out,2018-08-03 -City Hotel,1,11,2016,June,27,28,0,1,3,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,121.77,0,0,No-Show,2019-06-03 -City Hotel,0,6,2015,October,42,9,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,82.46,0,0,Check-Out,2018-09-02 -Resort Hotel,1,25,2016,March,19,27,1,1,2,0.0,0,HB,PRT,Online TA,TA/TO,1,1,0,C,I,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-01-03 -City Hotel,0,3,2017,June,10,21,2,0,1,0.0,0,SC,USA,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,47.0,0,Transient,71.19,0,0,Check-Out,2020-06-02 -Resort Hotel,0,252,2017,April,22,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,64.35,0,0,Check-Out,2019-11-03 -City Hotel,1,168,2016,November,50,9,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,84.84,0,0,Canceled,2019-08-04 -Resort Hotel,0,30,2016,March,19,30,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,74.24,1,0,Check-Out,2019-02-01 -Resort Hotel,0,2,2015,December,44,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,A,0,No Deposit,241.0,179.0,0,Group,61.3,0,0,Check-Out,2018-08-03 -Resort Hotel,0,104,2016,December,52,28,0,1,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Transient-Party,62.85,1,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,March,17,22,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,B,0,No Deposit,13.0,179.0,0,Transient,86.82,0,0,Check-Out,2019-02-01 -City Hotel,0,258,2017,May,22,21,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,211.76,0,1,Check-Out,2020-04-02 -City Hotel,1,38,2016,December,50,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,61,Transient,69.05,0,0,Canceled,2018-12-03 -City Hotel,0,16,2015,July,36,18,0,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,D,0,No Deposit,3.0,179.0,0,Contract,62.3,0,0,Check-Out,2017-12-03 -City Hotel,0,9,2016,March,11,13,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,150.96,0,0,Check-Out,2019-10-04 -City Hotel,1,10,2015,July,39,25,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,60.7,0,0,Canceled,2018-06-02 -City Hotel,0,163,2017,July,27,6,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.76,0,2,Check-Out,2020-04-02 -Resort Hotel,0,156,2016,March,16,31,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,71.43,0,0,Check-Out,2019-03-04 -Resort Hotel,0,25,2016,May,22,2,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,183.51,1,0,Check-Out,2019-02-01 -Resort Hotel,0,170,2016,April,15,10,2,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,325.0,179.0,0,Transient,95.81,0,2,Check-Out,2019-03-04 -City Hotel,0,156,2016,November,53,20,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.8,0,1,Check-Out,2019-05-04 -Resort Hotel,0,12,2015,December,50,29,1,1,1,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,G,3,No Deposit,36.0,179.0,0,Transient-Party,66.81,0,0,Check-Out,2018-11-02 -City Hotel,0,90,2017,May,18,25,0,3,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,162.41,0,0,Check-Out,2020-01-04 -City Hotel,1,2,2017,March,3,15,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,114.71,0,1,Canceled,2019-11-03 -City Hotel,1,317,2017,July,32,29,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,160.26,0,2,Canceled,2020-06-02 -Resort Hotel,1,259,2016,May,21,28,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,1,A,A,2,Refundable,11.0,223.0,0,Transient-Party,68.34,0,0,Canceled,2019-03-04 -City Hotel,1,11,2016,January,3,5,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,1,1,0,A,D,0,No Deposit,6.0,60.0,0,Transient,60.23,0,0,Canceled,2018-11-02 -City Hotel,1,117,2017,February,22,2,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,99.71,0,0,Canceled,2020-02-01 -Resort Hotel,0,2,2015,July,28,20,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,251.0,179.0,0,Transient,125.11,0,0,Check-Out,2018-06-02 -City Hotel,0,10,2015,December,43,5,0,1,1,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,B,1,No Deposit,14.0,45.0,0,Transient-Party,0.0,0,1,Check-Out,2018-08-03 -City Hotel,1,41,2015,December,51,30,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.21,0,0,Canceled,2018-08-03 -City Hotel,1,29,2016,March,10,6,2,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,95.86,0,1,Canceled,2018-12-03 -Resort Hotel,0,45,2016,April,17,6,1,2,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,126.0,179.0,0,Transient-Party,84.84,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,July,26,10,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Group,100.46,0,1,Check-Out,2018-06-02 -City Hotel,1,411,2016,August,38,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Transient,70.82,0,0,Canceled,2018-09-02 -City Hotel,0,0,2016,October,43,20,0,1,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,P,P,1,No Deposit,14.0,275.0,0,Transient,2.83,0,0,Check-Out,2019-09-03 -Resort Hotel,1,10,2015,August,33,15,0,1,2,2.0,0,BB,CHE,Direct,Direct,0,1,0,C,C,3,No Deposit,250.0,179.0,0,Transient,193.82,0,0,Canceled,2019-06-03 -Resort Hotel,1,12,2016,October,43,10,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,62.79,0,0,No-Show,2019-12-04 -City Hotel,0,151,2017,August,37,31,2,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,154.48,0,2,Check-Out,2020-07-03 -Resort Hotel,0,2,2016,May,11,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,17.0,84.0,0,Transient,37.15,0,0,Check-Out,2019-07-04 -City Hotel,1,91,2016,December,44,28,2,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,94.0,179.0,43,Transient,60.41,0,0,Canceled,2018-08-03 -Resort Hotel,0,52,2016,August,39,29,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,127.13,0,2,Check-Out,2019-06-03 -City Hotel,0,43,2016,February,10,16,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,18,Transient,74.12,0,2,Check-Out,2018-12-03 -Resort Hotel,0,28,2016,July,32,10,2,4,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-06-02 -City Hotel,1,149,2016,August,37,10,0,2,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,G,1,No Deposit,11.0,179.0,0,Transient,223.91,0,1,Canceled,2019-05-04 -Resort Hotel,0,0,2017,March,14,21,0,5,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,2,No Deposit,17.0,179.0,75,Transient-Party,226.75,1,0,Check-Out,2020-05-03 -Resort Hotel,0,156,2017,May,34,9,2,1,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,I,0,No Deposit,12.0,179.0,0,Transient,123.87,0,0,Check-Out,2020-02-01 -City Hotel,1,28,2017,May,23,11,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,163.21,0,0,Canceled,2019-11-03 -City Hotel,0,1,2016,July,31,5,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,63.21,0,1,Check-Out,2019-05-04 -City Hotel,0,16,2016,August,27,4,0,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,100.91,0,1,Check-Out,2019-06-03 -City Hotel,1,431,2015,October,46,10,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,69.93,0,0,Canceled,2018-09-02 -City Hotel,1,210,2015,September,41,17,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,41.16,0,0,Canceled,2018-08-03 -Resort Hotel,0,39,2015,November,43,10,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,40.93,0,0,Check-Out,2018-08-03 -City Hotel,1,17,2016,June,16,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.89,0,0,Canceled,2018-12-03 -Resort Hotel,0,29,2016,March,12,30,0,2,1,0.0,0,HB,SWE,Corporate,Corporate,1,0,0,A,A,1,No Deposit,12.0,223.0,0,Transient-Party,25.51,0,0,Check-Out,2019-04-03 -Resort Hotel,1,3,2016,December,13,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,1,1,A,D,0,No Deposit,16.0,179.0,0,Transient,49.9,0,0,Canceled,2019-10-04 -Resort Hotel,0,12,2015,October,45,13,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,40.15,0,0,Canceled,2019-01-03 -Resort Hotel,0,212,2017,July,27,28,2,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,3,No Deposit,250.0,179.0,0,Transient,120.34,0,3,Check-Out,2020-05-03 -City Hotel,0,32,2015,October,44,29,0,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,59,Transient,100.79,1,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,February,5,29,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,125.07,0,1,Check-Out,2019-02-01 -City Hotel,0,99,2016,October,45,1,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient,125.05,0,0,Check-Out,2019-09-03 -City Hotel,0,194,2017,August,32,13,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,172.36,1,0,Check-Out,2020-07-03 -City Hotel,1,39,2016,January,2,24,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,7.0,179.0,0,Transient,84.31,0,0,Canceled,2019-01-03 -City Hotel,1,18,2015,October,43,18,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,91.06,0,0,Canceled,2018-06-02 -Resort Hotel,0,259,2016,August,37,20,2,5,2,0.0,0,SC,,Direct,Direct,0,0,0,G,G,2,No Deposit,16.0,179.0,0,Transient,237.87,0,3,Check-Out,2019-06-03 -Resort Hotel,0,30,2015,December,52,10,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,14.0,179.0,0,Transient-Party,40.28,0,1,Check-Out,2018-08-03 -Resort Hotel,0,39,2016,May,22,8,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,G,2,No Deposit,257.0,179.0,0,Transient-Party,148.86,1,0,Check-Out,2019-02-01 -City Hotel,0,1,2016,April,21,5,0,1,1,0.0,0,SC,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,150.57,0,0,Check-Out,2020-03-03 -City Hotel,0,14,2016,April,18,24,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,157.18,0,3,Check-Out,2019-03-04 -Resort Hotel,0,2,2016,September,42,30,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,124.77,0,1,Check-Out,2019-06-03 -City Hotel,1,199,2016,May,19,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,0,Transient,59.63,0,0,Canceled,2018-12-03 -City Hotel,0,15,2016,December,52,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,100.43,1,1,Check-Out,2019-11-03 -Resort Hotel,1,136,2016,March,12,31,1,2,2,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,224.0,0,Transient-Party,61.13,0,0,Canceled,2019-02-01 -Resort Hotel,0,282,2015,September,42,12,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,71.0,179.0,0,Transient-Party,139.8,0,0,Check-Out,2018-08-03 -Resort Hotel,0,278,2016,June,31,15,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,63.82,0,0,Check-Out,2020-06-02 -City Hotel,0,97,2016,October,49,15,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,62.95,0,0,Check-Out,2019-12-04 -Resort Hotel,0,17,2015,December,53,8,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,80.81,0,0,Check-Out,2018-12-03 -Resort Hotel,0,153,2016,March,15,15,0,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,13.0,223.0,0,Transient-Party,80.01,0,0,Check-Out,2019-02-01 -City Hotel,1,14,2016,June,22,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,112.44,0,0,Canceled,2019-01-03 -City Hotel,0,50,2015,August,37,12,0,2,1,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,111.97,0,0,Check-Out,2018-06-02 -City Hotel,1,247,2017,May,36,9,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,77.71,0,2,Canceled,2019-11-03 -City Hotel,1,54,2015,August,36,21,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,159.56,0,2,Canceled,2018-08-03 -City Hotel,1,162,2017,April,18,15,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,121.49,0,0,Canceled,2019-10-04 -City Hotel,1,144,2016,May,28,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,124.16,0,0,Canceled,2019-01-03 -Resort Hotel,0,199,2016,March,19,31,1,4,2,1.0,0,BB,GBR,Groups,Direct,0,0,0,G,A,2,Refundable,12.0,223.0,0,Transient-Party,73.01,1,0,Check-Out,2019-03-04 -City Hotel,0,38,2016,April,21,9,2,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.37,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,February,9,2,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.83,0,1,Check-Out,2018-11-02 -City Hotel,0,0,2016,February,10,2,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.78,0,1,Check-Out,2019-02-01 -City Hotel,1,257,2015,October,40,7,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,92.29,0,1,Canceled,2018-07-03 -City Hotel,1,0,2015,September,39,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,18.0,45.0,0,Transient,85.64,0,0,Canceled,2018-06-02 -City Hotel,0,31,2016,June,22,16,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,1,0,1,A,E,0,No Deposit,10.0,179.0,0,Group,73.89,0,1,Check-Out,2019-01-03 -Resort Hotel,0,3,2017,July,30,17,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,193.69,1,3,Check-Out,2020-02-01 -Resort Hotel,0,7,2016,March,11,11,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient-Party,61.02,0,0,Check-Out,2019-03-04 -City Hotel,0,23,2016,October,45,13,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,192.59,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,February,8,20,1,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,15.0,82.0,0,Transient,36.45,1,0,Check-Out,2019-12-04 -City Hotel,1,48,2017,March,10,27,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.6,0,0,Canceled,2019-02-01 -City Hotel,0,87,2016,December,51,6,0,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,134.2,0,1,Check-Out,2019-11-03 -City Hotel,1,23,2016,September,36,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,101.56,0,0,Canceled,2019-06-03 -Resort Hotel,0,248,2017,June,28,16,4,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,176.26,1,1,Check-Out,2020-04-02 -City Hotel,1,420,2016,July,37,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,64,Transient,63.48,0,0,Canceled,2018-08-03 -City Hotel,1,42,2016,May,20,30,0,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,171.0,179.0,0,Transient,129.03,0,0,Canceled,2019-02-01 -Resort Hotel,1,19,2016,May,22,10,1,0,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,70.62,0,0,Canceled,2019-06-03 -Resort Hotel,0,154,2017,August,11,28,2,10,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,165.09,0,0,Check-Out,2020-06-02 -City Hotel,1,172,2017,June,26,30,2,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,178.75,0,0,Canceled,2020-02-01 -City Hotel,0,16,2015,October,46,30,2,1,1,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,E,1,No Deposit,10.0,224.0,0,Transient-Party,78.95,0,0,Check-Out,2018-09-02 -City Hotel,1,113,2017,August,34,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,125.59,0,0,Canceled,2020-03-03 -Resort Hotel,0,39,2016,April,17,27,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,312.0,179.0,0,Transient-Party,87.34,0,0,Check-Out,2019-11-03 -Resort Hotel,0,7,2016,October,38,13,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,H,0,No Deposit,240.0,179.0,0,Transient,230.79,1,1,Check-Out,2019-02-01 -Resort Hotel,0,94,2016,December,51,21,1,7,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,69.08,0,3,Check-Out,2019-12-04 -Resort Hotel,0,40,2017,February,8,16,2,5,1,0.0,0,BB,IRL,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient,28.69,1,0,Check-Out,2019-05-04 -City Hotel,0,11,2015,October,45,27,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,224.0,0,Transient,32.33,0,1,Check-Out,2018-09-02 -City Hotel,0,36,2017,August,34,7,0,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,227.7,0,1,Check-Out,2020-07-03 -Resort Hotel,0,37,2016,May,15,21,0,1,2,0.0,0,HB,CN,Complementary,Direct,1,0,0,E,F,0,No Deposit,14.0,179.0,75,Transient,0.0,0,2,Check-Out,2019-01-03 -City Hotel,0,187,2015,July,48,7,2,5,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,86.44,0,0,Check-Out,2018-12-03 -City Hotel,0,41,2017,April,17,16,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,85.39,0,2,Check-Out,2020-03-03 -City Hotel,1,104,2016,June,28,5,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.98,0,0,Canceled,2018-11-02 -City Hotel,0,89,2016,December,49,17,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,69.85,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2017,March,11,16,0,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.37,0,1,Check-Out,2020-03-03 -Resort Hotel,0,253,2017,February,15,20,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,I,0,No Deposit,187.0,179.0,0,Transient-Party,58.13,1,0,Check-Out,2020-04-02 -City Hotel,1,4,2015,September,36,22,0,2,1,0.0,0,BB,,Complementary,Corporate,0,0,0,B,F,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-05-03 -City Hotel,0,2,2015,October,43,5,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient-Party,87.52,0,0,Check-Out,2018-09-02 -City Hotel,0,61,2015,October,49,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,15.0,67.0,0,Group,100.04,1,0,Check-Out,2018-08-03 -City Hotel,0,47,2015,July,53,13,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,88.77,0,2,Check-Out,2018-06-02 -Resort Hotel,1,83,2015,July,32,9,2,5,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,80.15,0,0,Canceled,2018-06-02 -City Hotel,1,243,2016,July,36,20,2,10,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,104.26,0,0,Canceled,2019-04-03 -City Hotel,1,117,2016,August,37,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,102.36,0,0,Canceled,2018-01-03 -City Hotel,1,90,2017,May,21,15,2,0,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.63,0,0,Canceled,2020-02-01 -Resort Hotel,0,19,2015,October,48,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,4.0,179.0,0,Transient-Party,30.56,0,0,Check-Out,2018-09-02 -Resort Hotel,1,46,2016,January,5,20,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,63.87,0,1,No-Show,2018-12-03 -Resort Hotel,0,60,2017,June,15,20,3,5,2,0.0,0,BB,IRL,Direct,Direct,1,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,47.92,0,3,Check-Out,2020-02-01 -City Hotel,1,119,2017,March,17,25,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.35,0,0,Canceled,2019-12-04 -City Hotel,0,8,2016,June,27,2,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,171.74,0,1,Check-Out,2019-06-03 -City Hotel,0,111,2016,May,21,12,2,2,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,93.77,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2016,March,10,13,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,B,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2018-12-03 -City Hotel,0,245,2016,February,8,15,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,102.47,0,0,Check-Out,2019-02-01 -Resort Hotel,0,11,2017,February,10,6,1,3,2,0.0,0,BB,BRA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient-Party,38.28,0,0,Check-Out,2020-02-01 -City Hotel,0,38,2016,June,26,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,331.0,0,Transient,128.66,0,1,Check-Out,2019-07-04 -City Hotel,1,275,2016,March,16,29,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,125.58,0,0,Canceled,2019-01-03 -City Hotel,0,103,2016,September,42,5,1,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.92,0,0,Check-Out,2019-09-03 -City Hotel,0,54,2016,August,36,6,1,1,1,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,206.21,0,0,Check-Out,2019-05-04 -City Hotel,0,45,2016,October,43,20,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,111.49,0,2,Check-Out,2019-09-03 -City Hotel,0,94,2016,December,50,27,2,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,12.0,179.0,0,Transient,97.57,0,3,Check-Out,2019-08-04 -Resort Hotel,0,151,2017,May,21,2,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,244.0,179.0,0,Transient,210.66,1,3,Check-Out,2019-11-03 -City Hotel,0,264,2016,September,32,20,1,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,129.89,0,0,Check-Out,2019-04-03 -City Hotel,0,243,2017,July,27,23,4,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,310.0,179.0,0,Transient,215.02,0,0,Check-Out,2020-06-02 -City Hotel,0,10,2016,February,10,10,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,69.28,0,0,Check-Out,2018-11-02 -City Hotel,0,45,2017,May,22,18,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,106.48,0,1,Check-Out,2020-04-02 -Resort Hotel,1,65,2016,September,36,1,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,73.58,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2017,January,2,2,1,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,11.0,70.0,0,Transient,39.2,0,0,Canceled,2019-10-04 -City Hotel,1,359,2017,March,10,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,87.11,0,0,Canceled,2018-11-02 -City Hotel,0,24,2016,August,37,8,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,222.42,0,0,Check-Out,2019-06-03 -Resort Hotel,1,196,2016,September,45,16,3,1,2,2.0,0,HB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,221.98,0,0,Canceled,2019-08-04 -Resort Hotel,0,35,2016,April,13,16,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,122.59,1,1,Check-Out,2019-01-03 -Resort Hotel,0,22,2016,November,51,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,2,No Deposit,41.0,221.0,0,Transient,33.51,0,0,Check-Out,2019-12-04 -City Hotel,0,12,2016,June,28,4,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,127.02,0,0,Check-Out,2019-05-04 -Resort Hotel,0,50,2017,December,4,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,241.0,179.0,0,Transient,63.04,0,1,Check-Out,2019-12-04 -City Hotel,1,43,2016,August,39,24,0,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,G,D,0,No Deposit,12.0,179.0,0,Transient,148.37,0,3,Canceled,2019-09-03 -City Hotel,1,9,2016,December,22,22,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,179.0,0,Transient,47.26,0,0,Canceled,2019-03-04 -City Hotel,0,38,2015,September,41,10,0,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,89.21,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2015,July,32,23,0,1,1,0.0,0,BB,BRA,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient-Party,125.24,0,1,Check-Out,2018-05-03 -City Hotel,0,43,2016,August,37,24,0,1,1,0.0,0,BB,ESP,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,143.37,0,1,Check-Out,2019-09-03 -Resort Hotel,0,321,2017,May,21,23,4,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,40.38,0,0,Check-Out,2019-03-04 -City Hotel,0,302,2015,October,44,29,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,61.56,0,0,Check-Out,2017-11-02 -City Hotel,1,71,2017,July,33,28,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,149.78,0,0,Canceled,2019-04-03 -City Hotel,0,16,2016,October,50,20,0,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,L,0,No Deposit,15.0,73.0,0,Transient,62.71,0,0,Check-Out,2019-12-04 -City Hotel,1,148,2016,April,11,10,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,41,Transient,73.67,0,0,Canceled,2018-12-03 -City Hotel,0,12,2016,August,37,25,0,2,3,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,18,2015,December,53,17,0,2,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,181.08,0,1,Check-Out,2018-08-03 -Resort Hotel,1,10,2017,January,9,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,61.21,0,1,No-Show,2018-12-03 -Resort Hotel,1,5,2017,February,11,9,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,164.89,0,0,Canceled,2020-01-04 -City Hotel,1,114,2016,November,43,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,41,Transient,110.49,0,0,Canceled,2018-11-02 -Resort Hotel,0,385,2017,March,12,10,0,2,2,0.0,0,HB,ESP,Groups,Corporate,0,0,0,A,A,2,No Deposit,12.0,224.0,0,Transient-Party,60.56,1,0,Check-Out,2020-05-03 -Resort Hotel,0,22,2017,July,25,27,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,108.15,1,0,Check-Out,2020-06-02 -City Hotel,1,270,2016,July,26,9,0,3,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,26.0,179.0,0,Transient,131.93,0,0,Canceled,2018-12-03 -City Hotel,0,38,2017,June,26,2,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.45,0,1,Check-Out,2020-04-02 -City Hotel,0,47,2016,September,45,27,1,0,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,225.0,0,Transient,105.06,0,0,Check-Out,2019-06-03 -Resort Hotel,1,9,2017,July,31,27,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,207.66,0,0,Canceled,2020-06-02 -Resort Hotel,1,254,2016,October,42,28,2,10,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,261.0,179.0,0,Transient-Party,76.51,0,0,Canceled,2019-07-04 -Resort Hotel,0,282,2015,August,34,24,2,3,2,0.0,0,HB,,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,195.94,1,0,Check-Out,2020-06-02 -City Hotel,0,92,2017,June,27,25,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.6,0,0,Check-Out,2020-03-03 -City Hotel,1,11,2017,March,12,22,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,88.0,179.0,0,Group,78.32,0,1,Canceled,2020-02-01 -Resort Hotel,0,257,2017,June,32,16,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,307.0,179.0,0,Transient,125.16,1,3,Check-Out,2020-07-03 -City Hotel,0,13,2016,December,52,28,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,103.56,0,1,Check-Out,2019-11-03 -City Hotel,0,19,2016,December,50,25,0,4,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,115.63,0,2,Check-Out,2019-09-03 -City Hotel,0,11,2016,April,16,13,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,7.0,179.0,0,Transient,194.64,0,1,Check-Out,2019-02-01 -City Hotel,0,36,2017,March,11,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,0,A,A,0,No Deposit,94.0,77.0,0,Group,0.0,0,1,Check-Out,2020-02-01 -City Hotel,0,256,2016,September,27,2,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Contract,94.3,1,0,Check-Out,2019-08-04 -City Hotel,0,269,2015,September,40,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,63,Transient-Party,86.5,0,0,Canceled,2018-08-03 -City Hotel,0,254,2016,September,37,21,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,105.7,0,1,Check-Out,2018-12-03 -City Hotel,1,94,2017,April,17,24,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.32,0,0,Canceled,2020-02-01 -City Hotel,0,118,2016,March,17,29,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,72.71,0,1,Check-Out,2019-11-03 -City Hotel,1,0,2017,January,4,26,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,110.27,0,0,Canceled,2019-09-03 -City Hotel,0,8,2016,December,50,27,2,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.37,0,3,Check-Out,2019-11-03 -City Hotel,1,238,2016,September,43,22,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,95.6,0,0,Canceled,2019-07-04 -Resort Hotel,0,147,2017,May,27,6,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,147.94,1,2,Check-Out,2020-06-02 -Resort Hotel,1,160,2016,April,10,29,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,3.1,0,0,No-Show,2019-10-04 -Resort Hotel,0,207,2017,January,3,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Group,95.33,0,1,Check-Out,2019-09-03 -Resort Hotel,0,94,2017,May,20,24,2,0,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,100.39,0,0,Check-Out,2020-03-03 -City Hotel,1,42,2016,January,50,12,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.47,0,0,Canceled,2019-11-03 -City Hotel,0,18,2017,June,32,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,152.72,0,1,Check-Out,2020-05-03 -City Hotel,0,278,2015,May,27,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,70.63,0,0,Check-Out,2017-12-03 -City Hotel,1,428,2017,June,28,23,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,186.39,0,0,Canceled,2020-07-03 -City Hotel,0,125,2017,February,10,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,62.43,0,0,Check-Out,2019-11-03 -City Hotel,1,106,2016,December,53,24,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,61.23,0,0,Canceled,2019-09-03 -City Hotel,0,154,2017,August,33,25,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,234.57,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,February,11,21,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.81,0,1,Check-Out,2020-03-03 -Resort Hotel,1,44,2016,February,10,18,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,73.93,0,0,Canceled,2018-11-02 -City Hotel,1,27,2016,April,15,24,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.25,0,1,Canceled,2019-03-04 -City Hotel,1,175,2017,February,31,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,107.67,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2016,February,4,15,2,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,49.74,0,3,Check-Out,2018-11-02 -Resort Hotel,0,0,2015,June,28,15,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,90.0,179.0,0,Group,100.18,0,0,Check-Out,2019-02-01 -City Hotel,1,104,2016,March,44,26,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,108.1,0,0,Canceled,2019-02-01 -City Hotel,0,14,2017,June,26,6,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,F,1,No Deposit,17.0,179.0,0,Transient,216.92,0,0,Check-Out,2020-06-02 -City Hotel,0,106,2016,April,22,25,2,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,127.87,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2015,July,36,28,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,61.09,0,0,Check-Out,2018-06-02 -Resort Hotel,0,57,2017,July,33,2,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,229.81,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,February,8,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,I,0,No Deposit,239.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-01-03 -Resort Hotel,0,92,2016,May,20,18,1,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,92.11,1,0,Check-Out,2019-02-01 -City Hotel,0,2,2017,August,38,29,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,A,0,No Deposit,15.0,179.0,0,Transient-Party,63.9,0,0,Check-Out,2018-08-03 -City Hotel,1,413,2016,September,39,30,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,94.53,0,0,Canceled,2017-11-02 -City Hotel,0,97,2016,July,36,4,2,2,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,F,2,No Deposit,13.0,179.0,0,Transient,212.87,0,0,Check-Out,2018-06-02 -City Hotel,0,16,2017,February,13,13,0,2,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,3,No Deposit,11.0,179.0,0,Transient,92.79,0,0,Check-Out,2019-08-04 -City Hotel,0,382,2016,June,34,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,61.99,0,0,Check-Out,2018-06-02 -Resort Hotel,0,261,2017,August,36,2,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,107.3,0,2,Check-Out,2020-06-02 -Resort Hotel,1,130,2017,August,38,21,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,215.95,0,1,Canceled,2019-07-04 -City Hotel,0,20,2017,March,9,18,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,31.0,179.0,0,Transient,128.49,1,0,Check-Out,2019-01-03 -City Hotel,1,0,2017,February,10,17,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Canceled,2019-12-04 -City Hotel,1,316,2017,May,25,7,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.13,0,0,Canceled,2020-06-02 -City Hotel,0,396,2016,May,44,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.94,0,0,Check-Out,2018-09-02 -City Hotel,1,2,2017,June,32,15,1,2,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,11.0,179.0,0,Group,0.0,0,1,Canceled,2020-03-03 -City Hotel,0,50,2016,October,43,23,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,124.46,1,3,Check-Out,2019-06-03 -City Hotel,1,165,2017,May,23,9,1,3,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,118.51,0,3,Check-Out,2019-08-04 -Resort Hotel,0,22,2016,May,22,27,1,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,C,0,No Deposit,187.0,179.0,0,Transient,95.77,0,0,Check-Out,2019-03-04 -City Hotel,1,17,2015,October,36,5,1,1,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,59.98,0,0,Canceled,2018-08-03 -City Hotel,0,13,2017,August,34,30,0,2,2,1.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient-Party,112.83,0,0,Check-Out,2020-07-03 -City Hotel,1,59,2016,June,29,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.96,0,0,Canceled,2019-01-03 -City Hotel,1,95,2015,July,32,26,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,B,0,No Deposit,9.0,179.0,0,Transient,109.52,0,0,Canceled,2018-11-02 -City Hotel,1,67,2016,February,16,28,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,39.55,0,0,Canceled,2018-10-03 -Resort Hotel,0,29,2016,May,50,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,3,No Deposit,16.0,225.0,0,Transient-Party,28.9,0,0,Check-Out,2019-07-04 -City Hotel,1,270,2017,June,25,29,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,164.0,179.0,0,Transient,96.95,0,0,Canceled,2020-04-02 -Resort Hotel,0,1,2016,August,36,2,2,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,C,0,No Deposit,248.0,179.0,0,Transient,101.15,0,0,Check-Out,2019-06-03 -City Hotel,0,49,2016,May,18,26,2,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,26.0,179.0,0,Transient-Party,71.64,0,0,Check-Out,2019-03-04 -City Hotel,1,20,2016,April,18,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,231.81,0,0,Canceled,2019-08-04 -City Hotel,0,1,2017,March,11,5,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,69.2,0,2,Check-Out,2019-12-04 -City Hotel,0,101,2017,July,31,5,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,212.0,0,1,Check-Out,2019-05-04 -City Hotel,0,264,2016,August,32,15,2,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,138.06,0,1,No-Show,2019-07-04 -Resort Hotel,0,7,2016,October,44,13,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,131.07,1,2,Check-Out,2018-08-03 -City Hotel,1,145,2017,July,32,15,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,8.0,179.0,0,Transient,136.23,0,1,Canceled,2019-04-03 -City Hotel,0,202,2017,August,32,27,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,224.06,0,2,Check-Out,2020-06-02 -Resort Hotel,0,1,2015,September,42,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,1,No Deposit,16.0,179.0,0,Transient,0.43,0,0,Check-Out,2018-08-03 -Resort Hotel,0,339,2017,June,27,2,2,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,173.06,1,2,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,October,45,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,I,2,No Deposit,246.0,179.0,0,Transient,39.87,1,0,Check-Out,2019-04-03 -Resort Hotel,0,15,2016,August,38,14,2,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,187.8,1,2,Check-Out,2019-02-01 -City Hotel,0,111,2015,December,53,31,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,64.3,0,0,Check-Out,2019-11-03 -City Hotel,0,97,2016,July,21,26,0,4,3,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient-Party,130.88,0,1,Check-Out,2019-07-04 -Resort Hotel,0,7,2016,September,37,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,190.76,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2017,February,10,27,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,70.21,1,1,Check-Out,2020-05-03 -City Hotel,1,20,2016,March,18,8,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,160.41,0,0,Canceled,2018-10-03 -City Hotel,1,303,2016,March,9,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,56.97,0,0,Canceled,2018-12-03 -Resort Hotel,0,282,2017,August,30,31,2,7,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.85,1,1,Check-Out,2020-05-03 -Resort Hotel,0,155,2017,March,9,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,223.0,0,Transient,39.9,0,0,Check-Out,2020-03-03 -City Hotel,1,1,2016,June,24,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.64,0,0,Canceled,2019-02-01 -City Hotel,0,56,2015,July,43,8,0,1,1,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,82.54,0,0,Check-Out,2018-06-02 -City Hotel,0,42,2016,December,51,25,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,63.48,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2017,March,31,14,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.71,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,January,3,10,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,84.0,0,Transient,36.01,1,0,Check-Out,2019-10-04 -City Hotel,1,158,2017,September,39,16,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,91.53,0,0,Canceled,2019-12-04 -Resort Hotel,0,103,2016,July,37,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,95.14,0,1,Check-Out,2019-06-03 -Resort Hotel,0,12,2017,May,22,29,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,120.63,1,2,Check-Out,2020-07-03 -Resort Hotel,0,18,2017,June,26,29,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,E,F,1,No Deposit,248.0,179.0,0,Transient,130.0,1,2,Check-Out,2020-03-03 -City Hotel,1,154,2016,March,13,10,2,4,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,26,Transient,84.03,0,0,Canceled,2018-10-03 -Resort Hotel,1,42,2016,December,52,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,313.0,179.0,0,Transient,75.77,0,0,Canceled,2018-11-02 -City Hotel,1,368,2015,October,44,2,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,101.15,0,0,Canceled,2018-09-02 -City Hotel,0,27,2016,November,53,25,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.69,0,0,Check-Out,2019-08-04 -City Hotel,0,97,2016,December,50,16,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,92.95,0,0,Check-Out,2019-10-04 -Resort Hotel,0,3,2016,March,17,31,2,5,2,1.0,0,BB,,Direct,Direct,0,0,0,A,F,0,No Deposit,246.0,179.0,0,Transient,39.78,0,0,Check-Out,2019-01-03 -City Hotel,1,435,2016,May,44,20,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.69,0,0,Canceled,2018-08-03 -Resort Hotel,0,64,2016,August,35,2,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,82.9,0,2,Check-Out,2019-06-03 -City Hotel,1,0,2017,May,23,9,0,1,2,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,P,P,1,No Deposit,17.0,89.0,0,Group,2.21,0,0,Canceled,2019-03-04 -City Hotel,0,1,2016,October,41,18,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,170.11,0,1,Check-Out,2019-08-04 -Resort Hotel,0,88,2016,March,10,10,0,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,136.0,179.0,0,Transient,72.96,0,0,Check-Out,2019-04-03 -Resort Hotel,1,60,2016,July,37,29,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,60.95,0,2,Canceled,2018-11-02 -City Hotel,1,23,2016,July,26,24,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,63.84,0,0,No-Show,2019-08-04 -Resort Hotel,0,173,2017,July,26,9,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,75.44,1,2,Check-Out,2020-04-02 -Resort Hotel,0,92,2016,April,15,16,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.24,0,1,Check-Out,2019-02-01 -Resort Hotel,0,29,2015,August,37,31,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,179.36,1,2,Check-Out,2018-07-03 -Resort Hotel,0,1,2016,May,27,15,0,1,1,0.0,0,HB,DEU,Groups,Corporate,0,0,0,A,E,0,No Deposit,178.0,179.0,0,Transient-Party,128.13,0,0,Check-Out,2019-04-03 -City Hotel,1,238,2017,August,11,19,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,P,A,0,No Deposit,6.0,179.0,0,Transient,175.44,0,3,Canceled,2019-10-04 -City Hotel,0,14,2017,August,22,2,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,82.71,1,1,Check-Out,2020-07-03 -City Hotel,1,199,2017,July,33,5,1,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.58,0,0,Canceled,2019-10-04 -City Hotel,1,14,2016,March,11,28,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,69.97,0,1,No-Show,2019-02-01 -Resort Hotel,0,258,2016,May,22,30,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,72.89,1,2,Check-Out,2019-04-03 -City Hotel,1,100,2016,October,46,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,108.95,0,0,Canceled,2018-12-03 -City Hotel,1,27,2015,September,43,9,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,146.77,0,0,Canceled,2018-08-03 -City Hotel,1,152,2017,June,35,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,155.0,179.0,0,Transient,126.78,0,0,Canceled,2020-05-03 -City Hotel,1,59,2017,March,9,27,1,3,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,94.4,0,0,Canceled,2019-01-03 -City Hotel,0,25,2015,September,44,21,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,69.35,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,August,38,30,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,146.82,0,1,Check-Out,2019-05-04 -Resort Hotel,0,39,2016,April,16,27,2,3,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.37,0,0,Check-Out,2019-04-03 -City Hotel,1,144,2016,March,17,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,80.05,0,1,Canceled,2019-02-01 -City Hotel,1,91,2017,August,31,28,2,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,209.98,0,1,Canceled,2020-06-02 -City Hotel,0,0,2017,May,20,3,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,130.85,0,2,Check-Out,2019-03-04 -Resort Hotel,1,56,2016,April,20,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,39.36,0,2,Canceled,2019-03-04 -Resort Hotel,0,66,2017,May,22,12,1,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-02-01 -Resort Hotel,1,2,2016,November,15,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,15.0,78.0,0,Transient,61.6,0,0,Canceled,2019-11-03 -City Hotel,0,42,2016,May,23,5,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,135.51,0,2,Check-Out,2019-03-04 -Resort Hotel,0,3,2017,January,9,6,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,32.07,0,2,Check-Out,2020-03-03 -City Hotel,0,36,2017,August,37,29,2,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,183.91,1,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,February,9,21,2,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.27,0,1,Check-Out,2020-03-03 -City Hotel,0,205,2016,October,45,4,2,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,68.06,0,0,Check-Out,2019-09-03 -City Hotel,1,107,2016,May,17,30,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient,85.32,0,3,Canceled,2019-02-01 -City Hotel,0,26,2017,March,21,7,2,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,107.1,1,2,Check-Out,2019-12-04 -Resort Hotel,1,129,2015,September,37,23,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,161.13,1,0,Canceled,2018-06-02 -City Hotel,1,10,2017,May,23,29,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,F,F,1,No Deposit,15.0,143.0,0,Transient,80.06,0,0,Canceled,2020-03-03 -City Hotel,0,13,2017,May,21,31,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,144.66,0,3,Check-Out,2020-05-03 -Resort Hotel,0,8,2016,September,28,5,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,105.86,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,February,17,30,0,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,30.39,0,0,Check-Out,2019-03-04 -City Hotel,0,33,2017,April,16,15,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,193.89,0,1,Check-Out,2020-02-01 -Resort Hotel,1,318,2017,May,27,10,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,161.0,179.0,0,Transient,62.44,0,0,Canceled,2020-04-02 -Resort Hotel,0,104,2016,July,30,27,0,5,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,149.19,0,2,Check-Out,2019-05-04 -Resort Hotel,0,38,2016,December,51,6,0,2,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,80.83,0,0,Check-Out,2018-12-03 -City Hotel,1,3,2016,December,20,7,2,2,2,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,A,A,0,No Deposit,13.0,179.0,0,Transient,0.0,0,3,Canceled,2019-02-01 -City Hotel,0,239,2016,October,41,30,2,6,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,81.07,0,0,Check-Out,2019-05-04 -City Hotel,1,0,2015,December,53,20,2,4,3,0.0,0,HB,PRT,Complementary,Corporate,1,1,0,D,I,1,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,May,22,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,127.95,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,March,11,21,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,15.0,223.0,0,Transient,51.4,0,0,Check-Out,2019-10-04 -City Hotel,1,53,2017,March,34,13,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,96.45,0,0,Canceled,2019-12-04 -Resort Hotel,1,23,2016,August,9,14,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient,63.28,0,0,No-Show,2019-03-04 -Resort Hotel,0,36,2016,August,38,21,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,124.17,1,0,Check-Out,2019-08-04 -Resort Hotel,1,289,2016,February,3,16,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,170.54,0,0,Canceled,2019-10-04 -City Hotel,0,300,2016,June,26,19,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,309.0,179.0,0,Transient-Party,79.64,0,0,Check-Out,2019-05-04 -City Hotel,1,154,2016,April,22,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,80.0,179.0,0,Transient,101.98,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2017,January,3,15,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,82.0,0,Transient,32.49,1,0,Check-Out,2019-11-03 -City Hotel,0,64,2016,November,46,24,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,82.38,0,1,Check-Out,2019-09-03 -City Hotel,1,0,2016,October,43,17,2,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,120.84,0,0,No-Show,2019-04-03 -City Hotel,0,15,2015,November,53,30,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient-Party,165.55,1,0,Check-Out,2019-01-03 -City Hotel,1,39,2016,February,9,14,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.25,0,0,Canceled,2018-11-02 -Resort Hotel,1,20,2016,February,9,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,72.86,1,0,Canceled,2018-10-03 -Resort Hotel,0,93,2016,April,26,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,113.42,1,1,Check-Out,2019-02-01 -City Hotel,1,405,2016,October,45,28,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,71.12,0,0,Canceled,2019-09-03 -City Hotel,0,19,2016,December,53,10,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,138.2,0,1,Check-Out,2019-10-04 -City Hotel,1,16,2015,September,45,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,4.0,215.0,0,Transient,70.46,0,0,Canceled,2018-08-03 -City Hotel,1,34,2016,July,45,9,2,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,167.97,0,0,Canceled,2019-03-04 -City Hotel,0,12,2016,October,43,12,2,10,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,89.0,179.0,0,Transient,74.87,0,3,Check-Out,2019-05-04 -City Hotel,0,165,2017,June,27,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient,81.17,0,0,Check-Out,2020-05-03 -Resort Hotel,0,2,2016,August,36,23,0,1,3,2.0,0,BB,ESP,Direct,Direct,1,0,0,C,C,2,No Deposit,378.0,179.0,0,Transient,240.17,0,0,Check-Out,2019-05-04 -City Hotel,1,8,2015,July,31,28,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.32,0,0,Canceled,2018-06-02 -Resort Hotel,1,158,2016,August,35,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,154.58,0,1,No-Show,2019-07-04 -City Hotel,0,1,2015,August,30,17,0,1,1,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,79.23,0,1,Check-Out,2019-06-03 -City Hotel,1,48,2017,February,10,20,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,Non Refund,12.0,179.0,0,Transient,87.4,0,0,Canceled,2019-11-03 -City Hotel,0,25,2017,January,4,28,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,8.0,179.0,0,Transient,113.48,0,1,Check-Out,2019-11-03 -City Hotel,0,47,2016,August,38,13,2,2,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-06-03 -City Hotel,0,97,2016,September,43,22,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,121.13,0,0,Canceled,2019-07-04 -Resort Hotel,1,385,2015,August,36,25,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,92.22,0,0,Canceled,2018-06-02 -City Hotel,0,2,2015,August,37,14,0,1,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Group,143.95,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2016,May,24,9,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,A,0,No Deposit,16.0,45.0,0,Transient,99.4,0,0,Check-Out,2019-03-04 -Resort Hotel,0,9,2016,October,43,31,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,39.32,0,1,Check-Out,2019-08-04 -City Hotel,0,256,2016,December,49,30,1,2,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,1,No Deposit,40.0,179.0,0,Transient-Party,73.94,0,0,Check-Out,2018-12-03 -Resort Hotel,0,4,2017,January,10,17,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,106.0,0,0,Check-Out,2019-10-04 -Resort Hotel,1,251,2017,May,21,5,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,253.0,179.0,0,Transient-Party,79.12,0,0,Canceled,2020-02-01 -Resort Hotel,0,122,2017,May,23,19,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,109.16,0,2,Check-Out,2020-04-02 -City Hotel,0,2,2016,November,49,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,66.0,0,Transient,60.99,0,0,Check-Out,2019-05-04 -City Hotel,1,125,2015,August,35,10,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.28,0,0,Canceled,2018-08-03 -City Hotel,0,37,2016,December,53,23,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,118.6,0,0,Check-Out,2019-10-04 -City Hotel,0,116,2017,May,22,19,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,79.0,0,Transient-Party,62.05,0,0,Check-Out,2020-02-01 -City Hotel,1,250,2016,November,42,15,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.22,0,0,Canceled,2019-05-04 -City Hotel,0,0,2016,March,27,16,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.11,0,2,Check-Out,2019-03-04 -City Hotel,0,14,2016,June,27,16,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,159.22,0,0,Check-Out,2019-04-03 -City Hotel,0,159,2016,May,23,14,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,136.11,0,1,Check-Out,2019-05-04 -Resort Hotel,0,111,2016,November,42,4,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient,39.02,0,0,Check-Out,2019-08-04 -City Hotel,1,60,2016,March,17,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,43,Transient,73.88,0,0,Canceled,2018-10-03 -City Hotel,0,100,2017,June,21,8,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.28,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2016,May,22,13,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,251.0,179.0,0,Transient-Party,73.85,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,December,50,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,0,No Deposit,15.0,45.0,0,Transient,59.4,0,0,Check-Out,2019-11-03 -City Hotel,0,51,2017,March,17,13,1,3,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,116.66,1,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,July,32,24,0,3,2,0.0,0,HB,NLD,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,35.51,0,0,Check-Out,2019-03-04 -Resort Hotel,0,35,2017,March,12,12,0,3,2,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,D,D,1,No Deposit,12.0,223.0,0,Transient,40.5,0,1,Check-Out,2019-12-04 -City Hotel,1,172,2016,May,28,27,2,1,1,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient,122.72,0,0,Canceled,2019-02-01 -City Hotel,1,213,2016,April,17,25,2,1,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.95,0,0,Canceled,2019-02-01 -City Hotel,0,15,2017,June,31,21,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,77.52,0,1,Check-Out,2020-06-02 -City Hotel,0,150,2015,August,36,20,2,3,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.3,0,0,Check-Out,2018-05-03 -Resort Hotel,1,103,2016,April,16,15,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,D,1,Non Refund,140.0,179.0,0,Transient-Party,39.16,0,0,Canceled,2019-03-04 -City Hotel,1,46,2016,September,30,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,40,Transient,99.79,0,0,Canceled,2018-11-02 -City Hotel,1,219,2017,June,31,14,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,88.68,0,2,Canceled,2020-04-02 -City Hotel,0,1,2015,October,42,18,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,206.0,179.0,0,Transient,90.42,0,0,Check-Out,2018-08-03 -City Hotel,0,294,2017,June,19,20,0,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,75,Transient-Party,97.44,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,April,34,28,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,217.49,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,August,36,15,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,2.38,0,0,Check-Out,2020-06-02 -City Hotel,1,49,2017,August,11,26,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.74,0,1,Canceled,2019-11-03 -City Hotel,1,65,2016,May,20,27,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,191.03,0,1,Canceled,2019-02-01 -City Hotel,0,276,2017,May,22,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,E,A,0,No Deposit,29.0,179.0,0,Transient-Party,60.78,0,0,Check-Out,2020-03-03 -City Hotel,0,19,2016,October,44,11,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-10-04 -Resort Hotel,1,232,2016,July,35,13,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,11.0,179.0,0,Transient,147.36,0,0,Canceled,2018-06-02 -City Hotel,0,36,2017,June,36,18,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,225.89,0,3,Check-Out,2020-06-02 -City Hotel,0,33,2017,April,19,15,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,91.02,0,2,Check-Out,2020-02-01 -Resort Hotel,0,17,2016,December,36,20,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,3,No Deposit,247.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-10-04 -Resort Hotel,0,263,2016,June,27,27,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,77.79,0,0,Check-Out,2019-06-03 -City Hotel,0,63,2016,April,17,13,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,363.0,179.0,0,Transient,79.12,0,0,Check-Out,2019-03-04 -City Hotel,0,81,2015,September,45,16,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,62.03,0,1,Check-Out,2018-09-02 -City Hotel,1,8,2016,December,4,24,0,2,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,105.7,0,0,Canceled,2019-10-04 -City Hotel,1,57,2017,July,28,9,2,2,1,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,138.25,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,March,18,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,247.0,179.0,0,Transient,94.49,1,1,Check-Out,2019-02-01 -City Hotel,1,399,2015,September,38,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.45,0,0,Canceled,2018-01-31 -Resort Hotel,0,73,2016,January,4,15,0,2,2,0.0,0,FB,,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,44.69,1,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,March,27,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,16.0,83.0,0,Transient,31.2,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,October,46,9,1,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,68.35,0,0,Check-Out,2019-11-03 -City Hotel,1,0,2016,December,49,30,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,2.77,0,0,Canceled,2020-01-04 -City Hotel,1,418,2016,June,36,12,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,82.91,0,0,Canceled,2018-08-03 -City Hotel,0,222,2015,July,32,18,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,170.48,1,1,Check-Out,2018-05-03 -City Hotel,1,16,2016,June,26,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.15,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,August,37,10,0,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,165.78,0,1,Check-Out,2019-06-03 -City Hotel,1,238,2015,September,37,24,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,143.34,0,0,Canceled,2018-06-02 -City Hotel,1,35,2017,March,11,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,64.0,179.0,0,Transient,64.28,0,0,Canceled,2020-03-03 -City Hotel,0,53,2016,August,34,8,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,3,No Deposit,10.0,179.0,0,Contract,59.35,0,1,Canceled,2019-08-04 -City Hotel,0,2,2017,March,17,10,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,169.62,0,0,Check-Out,2020-04-02 -City Hotel,0,421,2017,July,32,5,2,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.56,0,3,Canceled,2020-06-02 -City Hotel,0,85,2015,October,32,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,39.75,0,0,Canceled,2017-11-02 -Resort Hotel,0,258,2016,June,20,8,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,191.0,179.0,0,Contract,87.17,0,0,Check-Out,2020-06-02 -City Hotel,0,95,2016,September,43,12,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.02,0,2,Check-Out,2019-08-04 -City Hotel,1,3,2017,June,26,3,0,4,2,0.0,0,SC,BRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.29,0,0,Canceled,2020-04-02 -City Hotel,1,303,2017,August,38,13,2,4,2,0.0,0,HB,NOR,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,150.27,0,0,Canceled,2020-05-03 -Resort Hotel,0,44,2015,December,49,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,61.39,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2016,January,5,10,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,83.0,179.0,0,Transient,59.6,0,3,Check-Out,2019-09-03 -City Hotel,0,1,2016,March,22,9,0,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.04,0,0,Check-Out,2019-10-04 -City Hotel,0,16,2016,October,45,17,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,87.78,0,0,Check-Out,2019-08-04 -City Hotel,1,2,2017,August,32,16,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.63,0,1,Canceled,2020-06-02 -Resort Hotel,0,103,2016,December,53,10,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,64.84,0,2,Check-Out,2019-04-03 -City Hotel,1,34,2016,January,9,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,64.84,0,0,Canceled,2018-10-03 -Resort Hotel,0,319,2015,September,32,28,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.97,0,0,Check-Out,2018-08-03 -City Hotel,1,162,2016,November,50,23,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,71.05,0,0,Canceled,2019-07-04 -Resort Hotel,0,53,2015,September,43,23,2,4,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,120.26,0,1,Check-Out,2018-08-03 -City Hotel,1,313,2015,October,31,9,0,1,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,155.72,0,0,Canceled,2018-08-03 -City Hotel,1,162,2017,March,18,15,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,1,Non Refund,102.0,179.0,0,Transient,40.35,0,0,Canceled,2020-06-02 -Resort Hotel,0,9,2016,April,26,9,2,1,2,1.0,0,HB,USA,Direct,TA/TO,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,139.77,1,0,Check-Out,2019-05-04 -Resort Hotel,0,91,2017,April,19,11,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,244.0,179.0,0,Transient,116.62,0,0,Check-Out,2020-01-04 -Resort Hotel,0,20,2016,June,27,25,0,1,3,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient-Party,90.02,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2017,May,29,20,0,1,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,204.0,179.0,0,Transient,81.69,0,0,Check-Out,2019-11-03 -City Hotel,0,23,2015,August,42,9,0,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,91.46,0,0,Check-Out,2017-11-02 -Resort Hotel,0,9,2017,July,36,16,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,245.0,179.0,75,Transient-Party,193.04,1,3,Check-Out,2020-01-04 -City Hotel,1,198,2016,July,35,20,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,85.84,0,0,Canceled,2018-07-03 -Resort Hotel,0,40,2017,February,9,10,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,45.0,179.0,0,Transient-Party,81.66,0,0,Check-Out,2019-10-04 -City Hotel,0,22,2015,October,48,8,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,63,Transient,35.9,0,0,Check-Out,2018-08-03 -Resort Hotel,1,6,2016,February,11,28,2,3,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,71.36,0,0,Canceled,2018-11-02 -Resort Hotel,1,270,2017,May,22,18,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,125.76,0,0,Canceled,2020-03-03 -City Hotel,0,15,2016,January,2,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,76.09,0,0,Check-Out,2018-10-03 -City Hotel,1,68,2016,May,28,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,87.53,0,0,Canceled,2018-11-02 -City Hotel,1,0,2016,July,26,9,1,0,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,2.06,0,0,Canceled,2019-12-04 -City Hotel,0,158,2017,July,25,7,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.66,0,1,Check-Out,2020-03-03 -City Hotel,1,137,2016,March,15,21,1,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,93.63,0,0,Canceled,2018-11-02 -City Hotel,1,28,2016,August,36,23,2,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,116.52,0,3,Canceled,2019-02-01 -Resort Hotel,0,0,2015,December,51,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,143.28,1,0,Check-Out,2018-06-02 -City Hotel,0,54,2017,February,10,12,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,43.48,0,0,Check-Out,2020-02-01 -City Hotel,0,15,2017,March,4,15,1,2,3,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,123.11,0,3,Check-Out,2019-11-03 -City Hotel,1,13,2017,March,23,29,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.37,0,3,Canceled,2020-02-01 -Resort Hotel,0,258,2017,July,34,18,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,345.0,179.0,0,Transient,67.16,0,0,Check-Out,2020-06-02 -City Hotel,0,19,2017,January,4,13,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,60.44,0,1,Canceled,2019-10-04 -City Hotel,0,378,2015,November,45,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Contract,60.95,0,0,Check-Out,2018-09-02 -City Hotel,0,11,2015,December,53,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,99.55,0,0,Check-Out,2018-11-02 -Resort Hotel,1,82,2016,July,32,28,2,5,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,223.06,1,2,Canceled,2019-04-03 -City Hotel,1,56,2015,September,42,31,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.66,0,0,Canceled,2018-08-03 -Resort Hotel,0,188,2017,June,26,8,0,5,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.51,0,2,Check-Out,2020-02-01 -Resort Hotel,0,3,2016,December,53,6,0,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,240.0,179.0,0,Transient,47.68,1,0,Check-Out,2019-11-03 -City Hotel,0,201,2016,September,36,24,0,2,2,0.0,0,HB,DEU,Online TA,Direct,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,207.41,0,0,Check-Out,2019-04-03 -Resort Hotel,0,14,2016,April,16,6,2,0,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,239.0,179.0,0,Transient-Party,35.08,0,1,Check-Out,2019-03-04 -City Hotel,1,280,2015,September,45,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,124.2,0,0,Canceled,2018-08-03 -Resort Hotel,0,48,2016,May,24,28,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,244.0,179.0,0,Transient,123.94,1,1,Check-Out,2019-03-04 -City Hotel,0,41,2017,May,27,29,2,2,2,0.0,0,HB,PRT,Complementary,Corporate,1,0,1,A,C,1,No Deposit,13.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-05-04 -Resort Hotel,1,45,2017,August,11,21,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,217.5,0,0,Canceled,2020-03-03 -Resort Hotel,0,300,2016,September,37,28,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,96.13,0,0,Check-Out,2019-09-03 -Resort Hotel,0,142,2016,March,9,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,163.0,179.0,0,Transient,70.89,0,1,Check-Out,2019-02-01 -City Hotel,0,2,2017,March,9,13,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,79.92,0,1,Check-Out,2020-02-01 -Resort Hotel,1,160,2016,June,36,27,2,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,217.73,0,0,Canceled,2019-08-04 -Resort Hotel,0,38,2016,June,38,28,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,43.32,0,0,Check-Out,2019-06-03 -Resort Hotel,1,50,2016,July,43,13,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,9.0,179.0,0,Transient-Party,169.33,0,0,Canceled,2018-08-03 -City Hotel,1,444,2016,August,29,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.12,0,0,Canceled,2018-08-03 -Resort Hotel,0,52,2017,June,35,13,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,118.82,0,0,Check-Out,2020-03-03 -Resort Hotel,0,148,2017,February,9,24,2,3,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,95.0,331.0,0,Transient-Party,32.12,0,0,Check-Out,2020-04-02 -Resort Hotel,0,14,2015,December,50,17,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,61.05,0,0,Check-Out,2018-06-02 -Resort Hotel,0,3,2016,August,44,5,1,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,243.0,179.0,0,Transient,171.48,1,1,Check-Out,2019-08-04 -City Hotel,0,39,2017,February,19,16,0,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,78.25,0,0,Check-Out,2018-12-03 -Resort Hotel,0,4,2015,October,44,2,0,1,1,0.0,0,BB,ESP,Direct,Direct,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Group,34.45,0,1,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,October,43,17,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,91.77,0,2,Check-Out,2018-09-02 -City Hotel,1,298,2015,August,45,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,62.5,0,0,Canceled,2017-10-03 -City Hotel,1,0,2017,March,9,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.0,0,0,Canceled,2020-03-03 -City Hotel,1,262,2015,August,25,24,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.64,0,0,Canceled,2018-08-03 -Resort Hotel,0,168,2017,July,32,2,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,C,0,No Deposit,250.0,179.0,0,Transient,214.07,1,3,Check-Out,2020-06-02 -City Hotel,0,298,2015,August,38,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,2.0,179.0,0,Contract,62.75,0,0,Check-Out,2017-12-03 -City Hotel,0,50,2016,March,9,15,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,91.7,0,2,Check-Out,2019-02-01 -City Hotel,0,94,2017,February,11,5,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,73.56,0,1,Check-Out,2019-10-04 -City Hotel,0,2,2017,May,22,28,0,1,1,0.0,0,BB,CN,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,205.0,0,Transient,63.24,0,0,Check-Out,2020-04-02 -Resort Hotel,0,3,2015,January,4,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,81.0,179.0,0,Transient,69.21,0,0,Check-Out,2018-12-03 -City Hotel,0,29,2015,December,53,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,64,Transient-Party,62.67,0,0,Check-Out,2018-11-02 -Resort Hotel,1,35,2016,June,17,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,131.0,179.0,0,Transient,37.56,0,0,Canceled,2019-05-04 -City Hotel,1,15,2017,May,22,6,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.98,0,0,Check-Out,2020-02-01 -City Hotel,0,36,2016,October,45,10,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,159.34,0,1,Check-Out,2019-10-04 -Resort Hotel,0,3,2017,July,34,27,4,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,3,No Deposit,253.0,179.0,0,Transient,188.51,0,1,Check-Out,2020-06-02 -City Hotel,1,211,2017,June,21,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,105.51,0,0,Canceled,2020-02-01 -City Hotel,0,4,2016,June,26,9,1,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,138.0,179.0,0,Transient,68.74,0,0,Check-Out,2019-02-01 -City Hotel,0,12,2017,June,26,12,0,3,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient,134.74,0,1,Check-Out,2020-06-02 -City Hotel,1,48,2016,October,40,5,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.5,0,0,Canceled,2019-06-03 -City Hotel,0,12,2016,December,52,22,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,67.97,0,0,Check-Out,2019-12-04 -City Hotel,0,10,2015,November,44,17,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,91.61,0,0,Check-Out,2018-08-03 -City Hotel,0,32,2016,November,49,30,2,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,64,Transient-Party,94.71,0,0,Check-Out,2019-07-04 -Resort Hotel,1,89,2016,December,53,5,2,2,2,0.0,0,Undefined,CHN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,328.0,179.0,0,Transient-Party,64.35,0,0,Canceled,2018-11-02 -City Hotel,1,152,2015,November,50,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,72.22,0,0,Canceled,2018-10-03 -City Hotel,1,17,2016,April,17,13,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,126.65,0,0,Canceled,2018-10-03 -Resort Hotel,0,85,2017,June,14,26,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,175.0,179.0,0,Transient-Party,94.1,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,March,9,13,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,106.0,179.0,75,Transient,72.77,0,0,Check-Out,2018-10-03 -Resort Hotel,0,7,2017,November,22,21,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,I,0,No Deposit,378.0,227.0,0,Transient,126.91,0,0,Check-Out,2019-12-04 -City Hotel,0,204,2016,September,33,9,4,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,78.0,179.0,0,Transient-Party,74.29,1,2,Check-Out,2019-06-03 -City Hotel,0,55,2016,April,16,28,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.33,0,2,Check-Out,2019-03-04 -City Hotel,0,16,2016,October,44,10,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,161.92,0,0,Check-Out,2019-09-03 -City Hotel,0,34,2016,October,45,11,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.88,0,1,Check-Out,2019-08-04 -City Hotel,0,14,2017,July,29,7,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,238.0,179.0,0,Transient,153.6,0,0,Check-Out,2020-07-03 -Resort Hotel,0,38,2017,April,18,15,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient-Party,209.43,1,0,Check-Out,2020-06-02 -City Hotel,1,104,2017,August,37,29,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,180.85,0,0,Check-Out,2020-06-02 -City Hotel,1,0,2017,March,8,15,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,113.9,0,1,Canceled,2018-11-02 -Resort Hotel,0,301,2015,October,44,18,3,5,1,0.0,0,HB,GBR,Offline TA/TO,Corporate,0,0,0,A,C,1,No Deposit,272.0,179.0,0,Transient-Party,42.53,0,0,Check-Out,2018-07-03 -City Hotel,1,44,2016,January,3,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.17,0,0,No-Show,2019-04-03 -City Hotel,0,41,2016,October,47,29,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.74,0,1,Check-Out,2019-11-03 -City Hotel,1,60,2017,March,16,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,62.26,0,0,Canceled,2019-10-04 -City Hotel,0,48,2015,September,41,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,61.79,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2015,December,51,21,2,2,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,61.83,1,0,Check-Out,2018-08-03 -Resort Hotel,1,255,2017,February,10,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,37.97,0,0,Canceled,2020-03-03 -City Hotel,0,33,2017,June,26,9,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,98.05,0,0,Check-Out,2020-04-02 -City Hotel,0,364,2016,August,36,24,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.33,0,2,Check-Out,2019-06-03 -Resort Hotel,0,311,2017,May,26,29,0,3,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,2,Refundable,2.0,179.0,0,Transient-Party,81.64,0,0,Check-Out,2020-06-02 -City Hotel,1,8,2015,August,33,21,2,2,2,2.0,0,BB,,Direct,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,89.19,0,1,Canceled,2018-06-02 -City Hotel,0,4,2016,November,45,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,61.66,0,0,Check-Out,2019-10-04 -Resort Hotel,0,56,2017,March,10,15,2,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-03-03 -City Hotel,0,0,2017,December,23,8,0,1,1,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,17.0,269.0,0,Transient,2.89,0,0,Check-Out,2020-01-04 -City Hotel,1,372,2015,October,45,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,63,Transient-Party,120.9,0,0,Canceled,2018-08-03 -City Hotel,1,10,2016,February,7,21,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Contract,70.14,0,0,No-Show,2019-02-01 -Resort Hotel,0,57,2017,May,22,18,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,321.0,179.0,0,Transient,95.2,0,0,Check-Out,2020-03-03 -City Hotel,0,21,2016,December,36,18,0,3,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,115.7,1,2,Check-Out,2019-08-04 -City Hotel,0,103,2016,August,29,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,117.84,0,2,Check-Out,2019-04-03 -Resort Hotel,0,12,2016,July,50,15,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,123.44,0,0,Check-Out,2019-05-04 -Resort Hotel,1,17,2015,September,44,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,301.0,179.0,75,Transient-Party,87.55,0,0,Canceled,2019-08-04 -City Hotel,1,167,2017,June,27,9,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,124.6,0,0,Canceled,2020-02-01 -City Hotel,0,14,2017,July,32,27,0,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,135.12,0,2,Check-Out,2020-05-03 -Resort Hotel,0,144,2016,August,37,29,3,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,192.6,0,0,Check-Out,2019-08-04 -Resort Hotel,0,186,2017,May,17,30,0,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,10.0,223.0,75,Transient-Party,79.85,0,0,Check-Out,2020-03-03 -City Hotel,1,197,2017,May,20,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,26.0,179.0,0,Transient,121.56,0,0,Canceled,2020-06-02 -City Hotel,1,229,2015,October,36,7,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.56,0,0,Canceled,2017-09-02 -City Hotel,0,158,2017,August,34,12,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.04,0,1,Check-Out,2020-03-03 -City Hotel,0,39,2016,December,53,24,0,3,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,98.1,0,1,Check-Out,2019-12-04 -City Hotel,1,99,2017,August,36,31,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.9,0,0,Canceled,2020-02-01 -City Hotel,0,39,2015,November,51,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,62.66,0,2,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,March,11,14,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,244.0,179.0,0,Group,39.93,0,1,Check-Out,2018-11-02 -City Hotel,0,10,2016,April,16,29,0,1,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,67.56,0,0,Check-Out,2019-02-01 -City Hotel,0,123,2016,March,28,28,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,71.98,0,1,Check-Out,2019-03-04 -City Hotel,1,1,2017,March,5,13,0,1,3,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,D,0,No Deposit,12.0,193.0,0,Transient,39.49,0,0,Canceled,2019-11-03 -Resort Hotel,0,51,2015,July,37,27,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,248.0,179.0,0,Transient,145.9,1,2,Check-Out,2018-11-02 -Resort Hotel,1,207,2017,March,11,24,0,5,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,Non Refund,15.0,84.0,0,Transient,75.5,0,0,Canceled,2020-02-01 -City Hotel,1,65,2017,May,20,9,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,176.95,0,0,Canceled,2020-02-01 -City Hotel,1,16,2017,June,27,5,0,2,3,0.0,0,BB,USA,Online TA,GDS,0,0,0,E,F,0,No Deposit,170.0,179.0,0,Transient,157.2,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,February,10,30,0,3,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,60.87,0,0,Check-Out,2018-11-02 -City Hotel,0,147,2017,August,36,5,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,126.64,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2017,January,8,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.98,0,1,Canceled,2020-01-04 -City Hotel,0,53,2016,June,27,13,0,2,3,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,B,1,No Deposit,34.0,179.0,59,Transient-Party,119.82,0,0,Check-Out,2019-04-03 -City Hotel,1,46,2017,May,20,18,2,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.94,0,0,Canceled,2020-03-03 -City Hotel,1,212,2015,August,38,9,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,97.72,0,0,Canceled,2018-11-02 -City Hotel,0,101,2016,May,17,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,63.89,0,0,Check-Out,2019-03-04 -City Hotel,1,1,2016,January,3,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,38.0,179.0,0,Transient,129.19,0,0,Canceled,2018-11-02 -Resort Hotel,0,319,2015,September,30,6,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Contract,59.39,0,0,Check-Out,2018-08-03 -City Hotel,1,95,2015,July,36,21,2,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.46,0,1,Canceled,2018-05-03 -City Hotel,0,12,2017,May,22,20,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,112.13,0,1,Check-Out,2020-04-02 -City Hotel,0,418,2016,October,45,9,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,65.66,0,0,Check-Out,2018-08-03 -City Hotel,0,35,2016,December,51,3,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,87.0,179.0,0,Transient-Party,102.45,0,0,Check-Out,2019-10-04 -City Hotel,1,9,2016,August,34,8,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,90.62,0,0,No-Show,2018-07-03 -Resort Hotel,0,174,2016,July,31,6,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,146.0,179.0,0,Transient,77.89,0,0,Check-Out,2019-08-04 -City Hotel,1,244,2016,June,28,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.95,0,0,Canceled,2019-03-04 -Resort Hotel,0,44,2017,February,9,5,1,0,1,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,31.16,0,0,Check-Out,2019-11-03 -City Hotel,0,18,2016,December,52,15,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,36.0,0,0,Check-Out,2018-11-02 -City Hotel,1,41,2017,May,20,4,2,4,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.19,0,1,Canceled,2020-02-01 -City Hotel,0,8,2016,February,10,18,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.29,0,1,Check-Out,2018-12-03 -City Hotel,0,199,2016,September,43,26,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.18,0,0,Check-Out,2019-04-03 -Resort Hotel,1,21,2017,August,32,28,1,2,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,168.81,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2017,February,10,29,1,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,65.86,0,0,Check-Out,2019-11-03 -City Hotel,0,55,2016,October,43,24,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,131.84,0,3,Check-Out,2019-05-04 -City Hotel,0,15,2016,October,43,6,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,245.35,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2016,July,25,9,2,3,1,0.0,0,BB,NLD,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,0,Transient-Party,62.6,0,0,Check-Out,2020-02-01 -City Hotel,1,189,2016,October,42,13,2,4,2,0.0,0,HB,,Groups,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,40,Transient,81.63,0,0,Canceled,2018-08-03 -City Hotel,1,152,2016,June,22,27,0,7,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient,116.02,0,0,Check-Out,2019-02-01 -Resort Hotel,0,14,2017,March,17,23,0,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient-Party,105.98,1,2,Check-Out,2020-03-03 -City Hotel,0,108,2016,February,50,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.73,0,0,Check-Out,2018-11-02 -Resort Hotel,0,154,2017,June,17,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,85.7,0,0,Check-Out,2020-06-02 -Resort Hotel,0,94,2016,December,50,9,2,5,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,G,2,No Deposit,38.0,179.0,0,Transient,91.24,0,0,Check-Out,2019-12-04 -Resort Hotel,0,110,2015,November,51,27,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,90.38,1,0,Check-Out,2018-09-02 -City Hotel,1,1,2016,January,9,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,B,B,0,No Deposit,8.0,179.0,42,Transient,66.12,0,0,Canceled,2018-09-02 -City Hotel,0,27,2016,October,42,10,1,4,2,1.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.86,0,3,Check-Out,2019-10-04 -City Hotel,1,421,2016,September,36,23,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.32,0,0,Canceled,2017-11-02 -City Hotel,1,282,2016,October,43,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,40.52,0,0,Canceled,2019-07-04 -City Hotel,1,57,2016,August,39,5,2,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Contract,133.35,0,2,Canceled,2019-10-04 -City Hotel,1,89,2017,April,18,16,2,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.82,0,1,Canceled,2019-11-03 -Resort Hotel,0,145,2017,February,11,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,343.0,179.0,0,Transient,113.61,0,0,Canceled,2019-11-03 -City Hotel,0,102,2016,May,27,25,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Contract,123.88,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2016,February,48,9,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.93,0,0,Check-Out,2019-11-03 -City Hotel,0,205,2016,October,44,20,0,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.65,0,0,Canceled,2019-07-04 -City Hotel,0,46,2017,May,23,5,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,85.64,0,0,Check-Out,2020-03-03 -Resort Hotel,0,40,2015,December,53,6,2,1,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient-Party,81.62,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2015,December,50,27,0,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,18.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -Resort Hotel,0,159,2016,August,36,30,1,4,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,128.38,1,1,Check-Out,2019-05-04 -Resort Hotel,0,5,2017,February,9,21,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,E,0,No Deposit,15.0,87.0,0,Transient,79.97,0,0,Check-Out,2019-10-04 -Resort Hotel,1,25,2017,June,27,21,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,159.0,179.0,0,Transient,131.35,0,1,Check-Out,2020-03-03 -City Hotel,0,169,2015,September,32,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,1.1,0,0,Check-Out,2018-08-03 -City Hotel,1,111,2016,January,4,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,73.08,0,0,Canceled,2019-01-03 -Resort Hotel,0,149,2016,April,22,30,2,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,246.0,179.0,0,Transient,40.93,0,1,Check-Out,2019-02-01 -Resort Hotel,1,164,2017,August,35,25,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,191.9,0,2,Canceled,2020-06-02 -City Hotel,0,56,2016,October,46,18,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,117.28,0,0,Check-Out,2019-12-04 -City Hotel,1,253,2015,June,28,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,72.98,0,0,Canceled,2018-09-02 -Resort Hotel,1,51,2016,March,18,25,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,74.58,0,0,Canceled,2019-02-01 -Resort Hotel,0,8,2016,August,37,16,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,120.72,0,0,Check-Out,2019-06-03 -Resort Hotel,1,161,2017,June,36,5,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,E,0,Non Refund,239.0,179.0,0,Transient,75.1,0,1,Canceled,2019-12-04 -City Hotel,0,243,2015,September,41,30,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,65.97,0,0,Check-Out,2018-08-03 -Resort Hotel,0,20,2015,February,42,21,4,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,59.81,0,0,Check-Out,2018-12-03 -Resort Hotel,0,5,2016,February,12,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,186.0,179.0,0,Transient,59.73,0,0,Check-Out,2019-09-03 -City Hotel,0,30,2017,April,21,10,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.81,0,0,Check-Out,2020-03-03 -City Hotel,0,284,2017,October,42,15,3,10,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Contract,78.29,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2016,September,43,6,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,62.35,1,0,Check-Out,2019-06-03 -Resort Hotel,0,157,2017,April,37,2,2,5,2,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-05-03 -City Hotel,1,287,2017,August,33,2,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,6.0,179.0,0,Transient,147.32,0,0,Canceled,2019-11-03 -Resort Hotel,0,235,2016,March,10,13,2,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,60.87,0,0,Check-Out,2019-03-04 -City Hotel,1,108,2017,March,4,30,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,E,E,0,Non Refund,162.0,179.0,0,Transient,61.69,0,0,Canceled,2019-10-04 -City Hotel,1,55,2015,December,52,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,67.12,0,0,Canceled,2018-08-03 -Resort Hotel,0,148,2016,March,18,31,0,3,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,D,2,Refundable,12.0,222.0,67,Transient-Party,33.9,0,0,Check-Out,2019-04-03 -City Hotel,0,58,2017,July,27,18,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.47,0,2,Check-Out,2020-07-03 -Resort Hotel,0,1,2015,June,34,5,0,2,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,95.63,0,0,Check-Out,2019-05-04 -City Hotel,0,15,2016,June,26,17,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,133.45,0,0,Check-Out,2019-05-04 -City Hotel,0,145,2016,March,17,25,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,160.0,179.0,0,Transient,30.81,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2017,July,28,16,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,119.54,1,2,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,December,53,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,H,I,0,No Deposit,243.0,179.0,0,Transient,23.57,0,0,Check-Out,2019-10-04 -Resort Hotel,0,15,2016,January,4,30,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,64.21,1,0,Check-Out,2018-11-02 -City Hotel,0,18,2016,December,50,5,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,77.3,0,2,Check-Out,2019-11-03 -Resort Hotel,0,42,2016,May,21,26,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,117.31,1,2,Check-Out,2019-02-01 -City Hotel,0,48,2015,July,32,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,118.89,0,0,Check-Out,2018-05-03 -City Hotel,0,45,2017,March,17,30,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,104.05,0,2,Check-Out,2020-02-01 -City Hotel,1,379,2016,August,38,26,0,3,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,113.96,0,0,Canceled,2019-08-04 -Resort Hotel,0,144,2016,October,37,5,2,4,2,0.0,0,HB,POL,Direct,TA/TO,0,0,0,F,E,0,No Deposit,241.0,179.0,0,Transient-Party,126.16,1,0,Check-Out,2019-04-03 -Resort Hotel,0,16,2016,April,22,12,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,275.0,179.0,0,Transient-Party,112.57,0,0,Check-Out,2019-04-03 -City Hotel,0,2,2015,November,43,27,0,1,2,0.0,0,BB,CHE,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,73.62,0,0,Check-Out,2018-08-03 -Resort Hotel,1,14,2016,March,10,31,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,67.75,0,0,Canceled,2019-01-03 -Resort Hotel,0,311,2016,March,16,30,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient-Party,60.73,1,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,January,4,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,I,0,No Deposit,10.0,179.0,0,Transient,68.7,0,0,Check-Out,2019-08-04 -City Hotel,0,16,2017,May,23,20,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,179.0,179.0,0,Transient,151.9,1,3,Check-Out,2020-03-03 -City Hotel,1,145,2016,March,11,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,65.96,0,0,Canceled,2019-02-01 -City Hotel,0,1,2016,February,46,13,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,132.56,0,3,Check-Out,2019-10-04 -City Hotel,1,82,2015,July,34,4,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,92.7,0,0,Canceled,2018-05-03 -Resort Hotel,0,158,2017,August,31,21,2,5,3,1.0,0,BB,USA,Online TA,Direct,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,242.82,1,0,Check-Out,2020-02-01 -Resort Hotel,0,55,2016,October,42,5,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,3,No Deposit,13.0,179.0,0,Transient,83.72,0,0,Check-Out,2019-09-03 -City Hotel,0,13,2015,October,44,13,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,75.57,0,0,Check-Out,2018-08-03 -City Hotel,0,80,2016,April,15,6,2,5,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,0,Transient,74.08,0,1,Check-Out,2019-02-01 -Resort Hotel,1,48,2017,July,32,9,0,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,112.53,0,0,Canceled,2020-02-01 -City Hotel,1,41,2015,December,50,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,Non Refund,25.0,179.0,0,Transient,78.53,1,0,Canceled,2019-11-03 -Resort Hotel,0,3,2016,December,51,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,2,No Deposit,17.0,78.0,0,Transient,40.86,0,0,Check-Out,2018-10-03 -City Hotel,1,15,2017,April,9,15,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.0,0,2,Canceled,2020-03-03 -Resort Hotel,0,40,2017,March,17,27,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,95.0,179.0,0,Transient,61.58,0,0,Check-Out,2019-11-03 -Resort Hotel,0,112,2016,August,36,5,2,5,3,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,3,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -Resort Hotel,1,42,2017,July,31,21,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,149.44,0,3,Canceled,2019-11-03 -City Hotel,0,2,2016,October,44,29,0,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,43.15,0,0,Check-Out,2018-11-02 -City Hotel,1,126,2016,May,21,24,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,6.0,179.0,0,Transient,128.93,0,2,Canceled,2019-03-04 -City Hotel,1,63,2016,August,40,27,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,6.0,179.0,0,Transient,160.86,0,0,Canceled,2019-08-04 -City Hotel,0,316,2017,May,21,27,2,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,102.34,0,0,Check-Out,2019-11-03 -Resort Hotel,1,71,2016,August,35,19,0,4,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,164.0,179.0,0,Transient,121.59,0,0,Canceled,2019-05-04 -City Hotel,1,270,2015,October,51,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.34,0,0,Canceled,2018-08-03 -City Hotel,0,151,2017,June,21,23,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,86.18,0,0,Check-Out,2020-02-01 -City Hotel,0,3,2017,February,8,12,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Contract,68.84,0,0,Check-Out,2019-09-03 -City Hotel,0,56,2016,October,43,4,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-04-03 -Resort Hotel,0,184,2017,March,16,6,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.92,0,3,Check-Out,2020-03-03 -Resort Hotel,0,239,2017,July,38,25,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,152.0,179.0,0,Transient,117.21,0,0,Check-Out,2020-07-03 -Resort Hotel,0,49,2016,September,44,27,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,114.7,0,0,Check-Out,2019-07-04 -City Hotel,0,1,2015,October,41,14,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,90.58,0,0,Check-Out,2019-09-03 -Resort Hotel,1,253,2016,September,43,9,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,136.0,179.0,0,Contract,117.34,0,0,Check-Out,2019-05-04 -City Hotel,1,0,2016,January,3,24,0,1,1,0.0,0,BB,PRT,Corporate,GDS,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.8,0,0,No-Show,2018-10-03 -Resort Hotel,0,296,2015,October,44,21,3,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,58.71,0,0,Check-Out,2018-08-03 -Resort Hotel,1,101,2016,July,34,30,2,5,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,124.63,0,1,Canceled,2019-07-04 -Resort Hotel,0,12,2017,April,17,15,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient,68.55,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2016,June,27,18,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.93,0,1,Check-Out,2020-06-02 -City Hotel,0,3,2015,October,44,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,234.0,0,Transient-Party,124.38,1,0,Check-Out,2018-08-03 -City Hotel,0,250,2015,October,44,22,1,3,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.39,0,2,Check-Out,2018-08-03 -City Hotel,1,407,2016,May,21,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,97.67,0,0,Canceled,2019-03-04 -Resort Hotel,0,6,2017,March,9,31,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,13.0,179.0,0,Transient,80.71,0,1,Check-Out,2019-11-03 -Resort Hotel,0,110,2017,August,37,10,4,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,299.0,179.0,0,Transient,37.91,0,0,Check-Out,2020-06-02 -City Hotel,1,256,2016,September,16,18,2,3,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,32.87,0,0,Canceled,2019-02-01 -Resort Hotel,0,116,2017,May,15,12,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,68.59,0,1,Check-Out,2020-02-01 -Resort Hotel,0,39,2016,July,30,2,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,88.63,0,1,Check-Out,2019-06-03 -City Hotel,1,250,2016,October,44,15,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,191.36,0,1,Canceled,2019-07-04 -Resort Hotel,0,1,2017,August,28,27,1,0,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.18,0,0,Check-Out,2020-06-02 -City Hotel,0,16,2016,June,25,11,4,10,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,31.0,179.0,0,Transient,127.23,0,0,Check-Out,2019-02-01 -City Hotel,1,15,2016,June,29,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,102.45,0,0,Canceled,2019-02-01 -City Hotel,1,101,2017,June,20,20,0,1,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,79.93,0,0,Canceled,2020-02-01 -City Hotel,1,12,2016,October,46,10,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,75.55,0,0,Canceled,2018-08-03 -Resort Hotel,0,158,2016,March,17,31,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,61.43,0,0,Check-Out,2019-02-01 -City Hotel,1,7,2017,April,17,6,0,3,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,H,D,1,No Deposit,9.0,179.0,0,Transient,115.87,0,1,Canceled,2020-03-03 -Resort Hotel,0,0,2015,July,29,10,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,249.0,179.0,0,Transient,214.34,1,2,Check-Out,2018-05-03 -Resort Hotel,0,136,2015,December,51,28,2,5,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,37.0,179.0,0,Transient,84.85,0,0,Check-Out,2018-06-02 -Resort Hotel,0,85,2015,July,33,31,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,176.93,1,1,Check-Out,2018-08-03 -City Hotel,1,312,2015,August,46,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,33.87,0,0,Canceled,2017-12-03 -City Hotel,0,0,2015,October,45,22,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,35.9,0,0,Check-Out,2018-08-03 -City Hotel,1,35,2015,July,32,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.13,0,2,Canceled,2018-06-02 -City Hotel,0,41,2015,October,43,29,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,118.59,0,2,Check-Out,2018-09-02 -City Hotel,0,35,2015,January,50,10,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,83.55,0,0,Check-Out,2018-11-02 -Resort Hotel,0,95,2017,June,27,25,3,3,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,96.68,0,0,Check-Out,2020-04-02 -Resort Hotel,0,111,2017,May,26,28,4,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,378.0,179.0,0,Transient,97.61,0,2,Check-Out,2020-03-03 -Resort Hotel,0,157,2015,September,37,5,2,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,331.0,0,Transient,119.62,0,0,Check-Out,2018-08-03 -City Hotel,0,158,2017,May,19,5,2,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,64.92,0,0,Check-Out,2020-06-02 -City Hotel,0,261,2016,June,27,30,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,41,Transient,94.21,0,0,Check-Out,2019-06-03 -City Hotel,0,37,2016,June,27,20,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,147.0,179.0,0,Transient-Party,62.19,0,0,Check-Out,2019-04-03 -City Hotel,0,57,2016,April,16,20,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.99,0,0,Check-Out,2019-02-01 -Resort Hotel,1,1,2016,March,11,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,245.0,179.0,0,Transient,38.52,0,0,Canceled,2018-12-03 -City Hotel,0,134,2016,June,28,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,65.85,0,0,Canceled,2019-05-04 -City Hotel,0,186,2016,March,4,12,0,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,64.9,0,1,Check-Out,2019-02-01 -City Hotel,0,246,2017,August,34,6,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,165.48,0,1,Check-Out,2020-06-02 -City Hotel,0,4,2016,October,3,9,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-10-04 -City Hotel,0,14,2017,August,36,31,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,180.17,0,2,Check-Out,2020-07-03 -City Hotel,1,278,2016,September,45,25,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.22,0,0,Canceled,2018-08-03 -Resort Hotel,1,0,2016,February,11,29,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,39.87,0,1,No-Show,2018-10-03 -City Hotel,0,47,2017,June,35,9,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,112.27,0,1,Check-Out,2019-08-04 -Resort Hotel,0,1,2015,March,10,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,40.97,1,2,Check-Out,2018-12-03 -City Hotel,0,289,2016,November,44,28,0,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.15,0,1,Check-Out,2019-09-03 -City Hotel,0,31,2016,April,16,21,1,3,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,94.57,0,0,Check-Out,2019-03-04 -City Hotel,0,5,2017,May,21,6,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Group,66.19,0,1,Check-Out,2020-01-04 -Resort Hotel,0,45,2016,December,52,25,0,2,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,61.37,1,1,Check-Out,2020-01-04 -City Hotel,0,16,2015,November,50,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,40.2,0,2,Check-Out,2019-10-04 -City Hotel,0,21,2016,November,44,23,2,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,113.91,0,2,Check-Out,2019-09-03 -City Hotel,1,117,2017,July,32,5,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,187.0,179.0,0,Transient,119.42,0,0,Canceled,2020-06-02 -City Hotel,1,154,2017,July,27,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,E,F,0,Refundable,72.0,179.0,0,Transient,99.93,0,0,Canceled,2020-06-02 -Resort Hotel,0,104,2016,November,42,20,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,118.36,1,2,Check-Out,2019-11-03 -Resort Hotel,0,2,2015,January,3,27,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,41.34,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,December,50,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,16.0,90.0,0,Transient,36.77,1,0,Check-Out,2019-07-04 -City Hotel,1,17,2017,June,25,21,0,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,98.48,0,1,Canceled,2020-03-03 -Resort Hotel,0,36,2015,October,43,21,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,81.0,179.0,0,Transient-Party,105.84,0,0,Check-Out,2018-08-03 -City Hotel,0,41,2017,March,18,9,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,75,Transient-Party,121.46,0,0,Canceled,2019-12-04 -Resort Hotel,0,1,2015,November,49,19,1,7,3,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,93.65,0,0,Check-Out,2018-08-03 -City Hotel,1,103,2016,October,9,21,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,159.0,179.0,23,Transient,94.95,0,0,Canceled,2018-10-03 -Resort Hotel,0,61,2016,December,51,24,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,152.51,1,0,Canceled,2019-11-03 -City Hotel,0,0,2016,May,21,18,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.84,0,0,Canceled,2019-07-04 -City Hotel,0,10,2016,March,33,24,2,7,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,134.57,0,2,Check-Out,2019-06-03 -City Hotel,1,4,2017,February,10,14,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,197.99,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2016,March,17,5,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,209.08,0,1,Check-Out,2018-11-02 -Resort Hotel,0,151,2017,July,25,19,2,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,202.24,0,3,Check-Out,2020-02-01 -Resort Hotel,1,0,2016,January,4,21,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,36.64,0,0,No-Show,2019-04-03 -Resort Hotel,0,14,2017,February,10,9,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,E,0,No Deposit,88.0,179.0,75,Transient-Party,159.99,0,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2016,January,4,2,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,136.0,179.0,0,Transient,40.59,0,0,Check-Out,2018-12-03 -City Hotel,1,395,2015,September,45,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.38,0,0,Canceled,2017-11-02 -Resort Hotel,0,145,2017,August,34,30,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,0,No Deposit,252.0,179.0,0,Transient,4.89,1,3,Check-Out,2019-10-04 -Resort Hotel,0,283,2017,August,34,20,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,242.0,179.0,0,Transient-Party,196.37,1,0,Check-Out,2020-07-03 -City Hotel,0,2,2015,July,27,26,0,1,1,0.0,0,BB,NLD,Complementary,Corporate,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient-Party,132.93,0,0,Check-Out,2018-05-03 -Resort Hotel,1,103,2017,July,33,15,0,5,2,1.0,0,BB,CN,Online TA,Direct,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,252.0,0,2,Canceled,2020-06-02 -Resort Hotel,0,20,2015,November,50,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,93.0,179.0,0,Transient,78.7,1,0,Check-Out,2018-12-03 -City Hotel,0,0,2017,February,10,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,12.0,331.0,0,Group,102.4,0,0,Check-Out,2020-02-01 -Resort Hotel,0,32,2016,April,9,13,0,3,1,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,41.43,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,February,9,12,0,3,1,0.0,0,BB,GBR,Corporate,Direct,0,0,0,A,D,0,No Deposit,17.0,91.0,0,Transient,37.86,0,0,Check-Out,2020-03-03 -City Hotel,1,246,2016,June,28,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,23.0,179.0,0,Transient,128.92,0,0,Canceled,2019-02-01 -Resort Hotel,0,38,2016,December,50,24,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient,63.09,0,2,Check-Out,2019-12-04 -Resort Hotel,0,7,2016,October,46,18,1,0,2,1.0,0,BB,USA,Direct,Direct,0,0,0,L,D,0,No Deposit,250.0,179.0,0,Transient,43.87,1,0,Check-Out,2019-04-03 -City Hotel,1,132,2016,June,27,16,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,40,Transient,95.1,0,0,Canceled,2019-07-04 -City Hotel,0,94,2015,July,27,20,4,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,110.04,0,0,Check-Out,2018-06-02 -Resort Hotel,1,38,2016,July,37,18,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,0.01,0,0,Canceled,2020-03-03 -Resort Hotel,0,243,2016,August,38,13,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,98.75,0,2,Check-Out,2020-06-02 -City Hotel,1,60,2017,February,2,20,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Canceled,2019-12-04 -City Hotel,0,14,2016,February,11,14,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.29,0,1,Check-Out,2019-11-03 -Resort Hotel,0,12,2016,July,34,6,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,133.62,1,2,Check-Out,2019-03-04 -City Hotel,1,204,2017,May,23,18,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,224.0,179.0,0,Transient,111.15,0,0,Canceled,2020-04-02 -Resort Hotel,0,177,2015,July,36,21,2,2,1,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,238.0,179.0,0,Transient,89.42,1,0,Check-Out,2018-05-03 -City Hotel,1,98,2016,June,27,10,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.59,0,1,Canceled,2019-02-01 -City Hotel,1,0,2016,March,13,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,D,D,0,No Deposit,13.0,76.0,0,Transient,61.78,0,2,Canceled,2018-11-02 -City Hotel,1,51,2015,July,34,8,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,2018-08-03 -City Hotel,1,444,2015,July,34,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.4,0,0,Canceled,2018-08-03 -City Hotel,0,385,2017,June,26,8,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.67,0,0,Check-Out,2020-06-02 -City Hotel,1,30,2016,April,23,2,0,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,80.58,0,0,Canceled,2019-01-03 -City Hotel,0,2,2016,May,24,29,1,0,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,128.48,0,0,Check-Out,2019-06-03 -Resort Hotel,1,31,2016,January,10,28,1,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,0.0,0,1,Canceled,2018-11-02 -Resort Hotel,0,39,2017,March,13,23,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient,74.87,0,1,Check-Out,2020-02-01 -City Hotel,0,16,2016,June,27,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,237.0,179.0,0,Transient,115.59,0,2,Check-Out,2019-06-03 -City Hotel,1,193,2016,May,27,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,165.84,0,1,Canceled,2019-03-04 -Resort Hotel,1,110,2015,July,33,25,2,5,2,0.0,0,FB,,Offline TA/TO,TA/TO,0,0,0,G,A,2,Non Refund,12.0,179.0,0,Transient,63.42,0,2,Canceled,2018-05-03 -City Hotel,0,11,2015,September,44,27,0,1,2,0.0,0,SC,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,80.9,0,0,Check-Out,2018-08-03 -City Hotel,1,1,2016,January,2,25,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,13.0,84.0,0,Transient,63.12,0,0,Canceled,2018-11-02 -Resort Hotel,1,43,2015,September,39,31,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,47.42,0,0,No-Show,2018-06-02 -City Hotel,1,9,2017,May,9,7,0,1,1,0.0,0,SC,PRT,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient,81.91,0,0,Canceled,2020-03-03 -City Hotel,1,44,2015,December,37,2,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,38.48,0,0,Canceled,2019-02-01 -City Hotel,0,13,2016,November,50,2,0,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,65.4,0,0,Canceled,2019-10-04 -Resort Hotel,1,159,2016,September,41,16,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,210.08,0,0,Canceled,2019-08-04 -City Hotel,0,0,2015,August,37,17,0,3,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,111.84,0,2,Check-Out,2018-06-02 -City Hotel,1,42,2016,August,36,25,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,G,3,No Deposit,7.0,179.0,0,Transient,153.56,0,3,Canceled,2019-06-03 -City Hotel,1,14,2017,June,11,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,115.98,0,0,No-Show,2020-03-03 -City Hotel,0,434,2017,August,27,24,0,1,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,73.1,0,0,Check-Out,2020-03-03 -Resort Hotel,1,283,2016,October,41,24,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,217.0,179.0,0,Contract,84.65,0,0,Canceled,2019-07-04 -Resort Hotel,0,86,2016,March,17,11,2,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,40.81,0,0,Check-Out,2019-04-03 -Resort Hotel,0,155,2016,March,16,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,75,Transient-Party,62.8,0,0,Check-Out,2019-02-01 -City Hotel,1,300,2016,May,23,6,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,91.02,0,0,Canceled,2019-02-01 -City Hotel,1,0,2016,January,3,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.22,0,0,Canceled,2019-01-03 -City Hotel,1,278,2017,August,31,19,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,E,E,0,No Deposit,211.0,179.0,0,Transient-Party,131.16,0,0,Canceled,2020-04-02 -City Hotel,1,1,2016,June,32,19,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,Non Refund,15.0,179.0,0,Transient,135.91,0,0,No-Show,2019-04-03 -City Hotel,1,46,2017,February,10,26,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient,75.63,0,0,Canceled,2019-11-03 -City Hotel,1,196,2016,December,50,29,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,83.0,179.0,0,Transient,86.53,0,0,Canceled,2019-10-04 -Resort Hotel,0,193,2017,July,31,5,2,1,3,1.0,0,HB,DEU,Online TA,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,213.3,1,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2016,September,43,14,1,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,177.03,0,0,Check-Out,2019-05-04 -City Hotel,1,404,2015,September,38,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.1,0,0,Canceled,2017-11-02 -City Hotel,1,1,2016,January,3,20,0,2,1,0.0,0,BB,PRT,Online TA,Direct,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.98,0,1,No-Show,2018-12-03 -City Hotel,1,42,2015,December,51,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,97.67,0,0,Canceled,2018-08-03 -City Hotel,1,1,2016,March,9,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,37.04,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,January,3,13,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,43.33,0,0,Check-Out,2018-11-02 -City Hotel,0,5,2017,June,22,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,2,No Deposit,24.0,179.0,0,Transient-Party,97.13,0,0,Check-Out,2020-04-02 -City Hotel,1,13,2016,October,45,31,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,94.74,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,August,37,30,1,4,3,1.0,0,BB,ESP,Online TA,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,196.75,1,0,Check-Out,2018-12-03 -Resort Hotel,0,138,2016,March,22,5,1,7,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,111.41,0,3,Check-Out,2019-02-01 -Resort Hotel,0,13,2016,March,12,30,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,D,D,0,Non Refund,93.0,179.0,0,Transient,34.63,0,0,Check-Out,2018-12-03 -City Hotel,1,13,2016,July,33,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,118.92,0,0,Canceled,2019-06-03 -City Hotel,1,419,2015,September,33,23,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.93,0,0,Canceled,2018-07-03 -City Hotel,0,10,2016,April,45,17,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,C,D,3,No Deposit,12.0,179.0,75,Transient,193.34,0,0,Check-Out,2019-03-04 -City Hotel,0,35,2017,April,17,15,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,87.85,0,0,Check-Out,2020-01-04 -Resort Hotel,0,44,2015,November,50,4,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,42.71,1,0,Check-Out,2018-09-02 -City Hotel,0,234,2016,July,33,23,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,126.88,0,1,Check-Out,2019-05-04 -City Hotel,1,156,2017,May,16,12,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,120.65,0,0,Canceled,2020-02-01 -City Hotel,1,17,2017,February,3,9,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,195.56,0,1,Canceled,2019-11-03 -City Hotel,0,411,2017,June,22,6,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,85.09,0,0,Check-Out,2020-06-02 -Resort Hotel,0,96,2016,October,46,31,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,242.0,179.0,0,Transient-Party,114.2,0,2,Check-Out,2019-11-03 -City Hotel,0,281,2015,July,34,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,78.2,0,2,Check-Out,2018-08-03 -Resort Hotel,0,97,2016,May,17,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,132.44,0,2,Check-Out,2019-03-04 -Resort Hotel,0,300,2016,May,17,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,71.48,0,3,Check-Out,2020-03-03 -City Hotel,0,1,2017,February,9,15,0,1,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,75.12,0,0,Check-Out,2020-02-01 -City Hotel,0,381,2016,October,23,28,2,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient,44.65,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,August,31,22,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.11,0,0,Check-Out,2020-06-02 -City Hotel,1,148,2016,April,17,16,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.37,0,1,Canceled,2019-05-04 -City Hotel,0,1,2016,February,11,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,77.59,0,0,Check-Out,2018-12-03 -City Hotel,1,370,2016,May,24,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.34,0,0,Canceled,2019-03-04 -Resort Hotel,0,280,2016,June,24,15,2,5,2,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,75,Transient,136.57,0,1,Check-Out,2018-12-03 -City Hotel,1,304,2017,June,27,8,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,148.0,179.0,0,Transient,125.88,0,0,Canceled,2020-03-03 -City Hotel,0,11,2016,January,9,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,E,B,0,No Deposit,83.0,179.0,41,Transient,87.91,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2017,June,22,20,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,153.24,0,1,Check-Out,2020-06-02 -City Hotel,1,148,2016,March,11,25,2,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,77.14,0,0,Canceled,2019-02-01 -Resort Hotel,0,14,2016,November,47,21,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,149.61,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2017,August,21,17,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.68,0,1,Check-Out,2020-06-02 -City Hotel,0,10,2017,May,20,30,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,85.86,0,0,Check-Out,2020-03-03 -Resort Hotel,0,241,2015,September,33,6,0,4,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient-Party,91.72,0,0,Check-Out,2019-12-04 -Resort Hotel,0,51,2016,October,44,5,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,38.74,0,2,Check-Out,2019-09-03 -City Hotel,1,9,2017,January,4,29,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.74,0,0,No-Show,2019-10-04 -Resort Hotel,0,4,2015,July,32,31,0,4,2,0.0,0,HB,USA,Direct,Direct,0,0,0,A,A,2,No Deposit,248.0,179.0,0,Transient,190.99,1,1,Check-Out,2018-06-02 -City Hotel,0,13,2016,April,18,25,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.61,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,November,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,45.0,0,Transient,57.96,1,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,May,9,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,30.0,45.0,0,Transient-Party,73.62,0,0,Check-Out,2020-02-01 -City Hotel,1,269,2015,July,32,7,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,63.21,1,0,Canceled,2018-06-02 -Resort Hotel,1,157,2016,May,24,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,B,H,0,Refundable,11.0,179.0,0,Transient-Party,71.19,0,0,Canceled,2019-01-03 -Resort Hotel,0,14,2015,December,53,27,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,77.77,1,0,Check-Out,2018-08-03 -City Hotel,1,7,2016,February,4,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.28,0,0,No-Show,2019-04-03 -City Hotel,0,2,2015,September,43,19,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,99.9,0,0,Check-Out,2018-08-03 -City Hotel,1,52,2017,February,9,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,60.16,0,0,Canceled,2019-11-03 -Resort Hotel,0,7,2015,December,53,10,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,42.19,1,0,Check-Out,2018-11-02 -City Hotel,1,185,2017,July,34,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.44,0,2,Canceled,2020-06-02 -City Hotel,0,89,2015,July,31,20,0,2,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Group,192.49,0,1,Check-Out,2018-06-02 -Resort Hotel,0,38,2017,August,39,30,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,112.32,0,1,Check-Out,2020-06-02 -City Hotel,0,100,2015,August,32,31,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,102.17,1,0,Check-Out,2018-06-02 -Resort Hotel,1,60,2016,June,33,24,3,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,177.0,179.0,0,Transient,168.82,0,0,Canceled,2019-05-04 -Resort Hotel,0,22,2016,October,43,21,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,163.13,0,1,Check-Out,2019-05-04 -Resort Hotel,0,18,2016,November,46,21,0,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,206.12,0,3,Check-Out,2019-04-03 -City Hotel,0,18,2016,March,15,27,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,118.51,0,1,Check-Out,2019-04-03 -City Hotel,0,40,2017,July,28,2,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.27,0,2,Check-Out,2020-02-01 -Resort Hotel,1,59,2017,March,9,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient,38.12,0,0,Canceled,2019-10-04 -Resort Hotel,0,35,2017,February,11,24,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,120.06,0,1,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,January,4,25,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,150.0,179.0,0,Transient,34.37,0,0,Check-Out,2018-11-02 -City Hotel,1,241,2015,December,53,6,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,8.0,179.0,0,Contract,62.47,0,0,No-Show,2018-08-03 -Resort Hotel,0,164,2017,August,37,14,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,16.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-07-03 -City Hotel,0,0,2017,May,22,12,1,0,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,C,0,No Deposit,14.0,163.0,0,Transient,81.52,0,0,Canceled,2020-04-02 -City Hotel,1,234,2015,July,38,18,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,104.56,0,1,Canceled,2017-11-02 -City Hotel,1,0,2016,January,3,28,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,145.93,0,0,Canceled,2018-11-02 -City Hotel,0,132,2016,September,42,6,2,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.78,0,2,Check-Out,2019-09-03 -Resort Hotel,1,38,2016,June,25,18,0,1,2,0.0,0,FB,PRT,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,89.04,0,0,Canceled,2019-03-04 -City Hotel,0,101,2017,June,20,27,2,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,3,No Deposit,12.0,179.0,0,Transient,138.0,1,1,Check-Out,2020-02-01 -City Hotel,1,10,2016,February,10,6,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,7.0,179.0,0,Transient,93.59,0,2,No-Show,2018-12-03 -City Hotel,1,0,2016,March,9,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.18,0,0,Canceled,2018-11-02 -Resort Hotel,1,193,2017,May,21,22,2,6,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,218.91,0,0,Canceled,2020-03-03 -Resort Hotel,1,71,2017,May,9,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,238.0,179.0,0,Transient,45.26,0,3,Canceled,2020-02-01 -City Hotel,0,43,2017,April,16,21,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,147.0,179.0,0,Transient-Party,99.68,0,0,Check-Out,2020-02-01 -Resort Hotel,0,55,2016,December,18,27,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,244.0,179.0,0,Transient,61.26,1,1,Check-Out,2018-12-03 -Resort Hotel,0,237,2015,July,32,10,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,2.0,179.0,0,Contract,95.29,0,0,Check-Out,2018-05-03 -City Hotel,0,0,2017,January,8,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,62.0,0,Transient,34.61,0,3,Check-Out,2020-01-04 -Resort Hotel,0,95,2016,February,10,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,33.24,0,0,Check-Out,2019-01-03 -Resort Hotel,0,415,2016,October,45,29,3,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,1,No Deposit,242.0,179.0,0,Transient,43.78,0,2,Check-Out,2019-11-03 -City Hotel,1,13,2017,February,8,13,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,80.93,0,0,Canceled,2019-11-03 -City Hotel,1,251,2016,October,45,24,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,165.0,179.0,0,Transient,98.06,0,2,Canceled,2019-08-04 -City Hotel,0,148,2016,May,21,5,1,3,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,D,2,No Deposit,15.0,179.0,0,Transient,142.31,0,0,Canceled,2019-12-04 -Resort Hotel,0,94,2016,July,20,9,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,3.21,1,1,Check-Out,2019-08-04 -City Hotel,0,14,2015,July,33,10,0,2,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,99.34,0,2,Check-Out,2018-05-03 -City Hotel,0,96,2016,April,14,3,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,95.76,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2017,March,11,6,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.88,0,3,Check-Out,2020-02-01 -City Hotel,0,5,2016,August,33,4,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,87.69,0,1,Check-Out,2019-07-04 -City Hotel,0,139,2017,June,26,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,128.56,0,0,Canceled,2020-06-02 -Resort Hotel,0,23,2015,December,50,6,1,2,1,0.0,0,FB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Transient-Party,30.27,0,0,Check-Out,2018-10-03 -City Hotel,0,14,2017,April,22,25,1,0,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient-Party,4.86,0,0,Check-Out,2020-02-01 -City Hotel,1,275,2016,May,22,9,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,68.34,0,0,Canceled,2019-02-01 -Resort Hotel,0,144,2017,June,20,19,1,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,C,1,No Deposit,81.0,179.0,0,Transient,112.73,0,2,Check-Out,2020-03-03 -Resort Hotel,1,393,2016,July,32,4,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,102.59,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,February,4,10,0,1,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,63.24,0,0,Check-Out,2019-01-03 -City Hotel,0,12,2015,October,43,21,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,1,0,1,A,D,0,No Deposit,10.0,179.0,0,Group,63.09,1,2,Check-Out,2018-08-03 -City Hotel,0,27,2016,October,43,28,2,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,83.92,0,1,Check-Out,2019-11-03 -City Hotel,0,12,2016,December,51,24,2,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,117.73,0,2,Check-Out,2019-11-03 -Resort Hotel,0,197,2017,August,37,10,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,175.76,0,1,Canceled,2020-06-02 -City Hotel,1,107,2016,October,43,10,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,143.49,0,0,Canceled,2019-08-04 -City Hotel,1,86,2015,September,43,18,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Contract,99.9,0,0,Canceled,2018-07-03 -City Hotel,0,7,2017,March,21,16,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.63,0,1,Check-Out,2020-04-02 -Resort Hotel,0,4,2015,October,43,18,2,3,1,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,43.83,0,0,Check-Out,2018-09-02 -Resort Hotel,0,96,2016,May,19,14,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient-Party,132.82,0,2,Check-Out,2019-03-04 -Resort Hotel,0,271,2017,July,27,9,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,325.0,179.0,0,Transient-Party,81.73,0,0,Check-Out,2020-02-01 -Resort Hotel,0,3,2015,December,50,2,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,257.0,0,Transient,41.12,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,November,44,25,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,73,2016,October,44,27,1,0,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,B,0,No Deposit,16.0,179.0,0,Transient,76.26,0,0,Check-Out,2019-01-03 -Resort Hotel,0,201,2016,August,32,30,0,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,126.5,1,2,Check-Out,2019-06-03 -Resort Hotel,0,18,2015,October,43,5,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,51.39,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2017,May,18,5,1,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,9.0,179.0,0,Transient,127.55,0,0,Check-Out,2020-02-01 -City Hotel,0,143,2016,January,5,18,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,116.09,0,1,Check-Out,2019-10-04 -City Hotel,1,37,2017,August,36,30,1,0,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.02,0,0,Canceled,2020-06-02 -City Hotel,1,38,2017,March,15,16,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,207.0,179.0,0,Transient,75.4,0,0,Canceled,2020-02-01 -City Hotel,1,230,2017,July,27,12,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,7.0,179.0,0,Transient,97.25,0,3,Canceled,2020-04-02 -Resort Hotel,0,161,2016,August,37,5,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient,72.91,0,0,Check-Out,2019-07-04 -City Hotel,0,57,2015,September,37,26,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Contract,94.29,0,0,Check-Out,2019-03-04 -Resort Hotel,0,3,2017,January,9,17,2,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,119.97,0,3,Check-Out,2019-12-04 -Resort Hotel,0,41,2016,November,44,28,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,244.0,179.0,0,Transient,89.06,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,March,16,15,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,88.0,179.0,0,Transient-Party,90.52,0,0,Check-Out,2018-12-03 -Resort Hotel,0,227,2016,July,36,24,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,10.0,179.0,0,Transient,158.64,1,2,Check-Out,2019-07-04 -Resort Hotel,1,49,2015,December,51,17,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,42.96,0,0,Canceled,2018-12-03 -City Hotel,0,173,2017,April,21,5,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,28.0,179.0,0,Contract,136.54,0,0,Check-Out,2019-12-04 -City Hotel,0,201,2016,August,38,18,2,4,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,10.0,179.0,0,Transient,208.01,0,2,Check-Out,2019-07-04 -Resort Hotel,0,12,2017,April,21,9,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,1,No Deposit,307.0,179.0,0,Transient-Party,76.23,0,0,Check-Out,2020-04-02 -City Hotel,0,27,2016,September,46,19,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,70.03,1,0,Check-Out,2018-08-03 -City Hotel,1,250,2015,August,35,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.48,0,0,Canceled,2017-12-03 -Resort Hotel,0,161,2017,August,32,6,4,7,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient,185.91,0,0,Check-Out,2020-06-02 -Resort Hotel,0,47,2016,September,35,22,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,114.12,0,2,Check-Out,2019-05-04 -Resort Hotel,0,273,2016,March,11,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,15.0,222.0,0,Transient-Party,33.75,0,0,Check-Out,2019-03-04 -Resort Hotel,1,259,2016,October,43,14,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,90.37,0,1,Canceled,2019-08-04 -City Hotel,0,7,2016,March,16,28,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,I,1,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-04-03 -Resort Hotel,0,31,2016,August,35,13,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,221.17,0,0,Check-Out,2019-06-03 -City Hotel,1,18,2016,October,45,20,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,62.0,39,Transient,100.2,0,0,Canceled,2019-08-04 -Resort Hotel,0,100,2016,March,9,18,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,79.46,0,2,Check-Out,2019-02-01 -City Hotel,1,56,2016,March,15,19,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,95.54,0,0,Canceled,2019-01-03 -City Hotel,0,2,2016,October,42,13,0,1,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,2.51,0,0,Check-Out,2019-11-03 -City Hotel,0,53,2016,June,10,28,1,0,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,0,No Deposit,324.0,179.0,0,Transient-Party,62.95,0,0,Check-Out,2019-03-04 -City Hotel,0,81,2017,June,22,11,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.35,0,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2015,January,3,12,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,35.0,0,0,Check-Out,2018-10-03 -Resort Hotel,0,0,2016,March,11,27,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,11.0,83.0,0,Transient,25.54,0,0,Check-Out,2018-12-03 -Resort Hotel,0,203,2017,July,31,6,1,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,125.47,1,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2015,July,37,19,2,1,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,300.0,179.0,0,Transient,149.3,0,0,Check-Out,2018-08-03 -Resort Hotel,0,110,2016,February,50,27,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,61.7,0,0,Check-Out,2019-02-01 -City Hotel,1,16,2017,June,9,9,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.75,0,1,Canceled,2020-04-02 -City Hotel,1,43,2015,July,31,7,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,1,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,88.65,0,0,Canceled,2018-06-02 -City Hotel,0,122,2016,May,22,5,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.46,0,2,Check-Out,2019-01-03 -City Hotel,0,158,2016,October,44,27,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,71.31,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2015,October,47,31,2,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,10.0,240.0,0,Transient-Party,59.96,0,0,Check-Out,2018-08-03 -City Hotel,0,96,2015,August,34,17,2,5,2,0.0,0,BB,GBR,Groups,Undefined,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,136.48,0,2,Check-Out,2018-05-03 -Resort Hotel,0,18,2016,December,53,25,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,241.0,179.0,0,Transient,62.33,0,2,Canceled,2018-11-02 -Resort Hotel,0,148,2016,April,21,25,1,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,240.0,179.0,0,Transient,116.9,1,2,Check-Out,2020-04-02 -City Hotel,0,22,2016,July,27,2,2,5,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,B,B,0,No Deposit,33.0,179.0,0,Transient-Party,118.05,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2017,May,21,6,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,D,0,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Check-Out,2020-03-03 -Resort Hotel,0,17,2016,February,10,27,0,4,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,203.11,0,0,Check-Out,2019-02-01 -City Hotel,0,241,2015,October,43,9,2,5,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.93,0,0,Check-Out,2018-08-03 -City Hotel,1,258,2017,May,28,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,93.7,0,0,Canceled,2020-03-03 -City Hotel,0,153,2016,September,43,5,0,3,1,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,97.56,0,0,Check-Out,2019-06-03 -City Hotel,1,185,2017,June,35,28,2,6,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,12.0,179.0,0,Transient,73.91,0,0,Canceled,2019-11-03 -City Hotel,1,442,2016,September,44,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,106.53,0,0,Canceled,2019-07-04 -City Hotel,1,4,2016,January,3,7,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,64.63,0,0,No-Show,2018-12-03 -City Hotel,0,7,2017,May,16,14,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,62.17,0,0,Check-Out,2020-01-04 -City Hotel,1,46,2017,February,9,9,2,0,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,62.15,0,0,Canceled,2020-02-01 -Resort Hotel,1,279,2016,October,50,26,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,39.34,0,0,Canceled,2019-08-04 -Resort Hotel,0,17,2015,October,44,21,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,266.0,179.0,0,Contract,31.38,0,0,Check-Out,2018-08-03 -City Hotel,1,39,2017,August,14,30,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,229.41,0,2,Canceled,2020-04-02 -Resort Hotel,1,243,2015,December,44,6,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,41,Transient-Party,62.96,0,0,Canceled,2018-08-03 -Resort Hotel,0,43,2015,September,36,10,1,2,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,79.43,0,0,Check-Out,2018-05-03 -Resort Hotel,0,103,2016,October,43,25,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient-Party,71.22,0,0,Check-Out,2019-08-04 -City Hotel,1,7,2016,May,43,27,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.61,0,0,Canceled,2019-02-01 -City Hotel,1,395,2015,September,44,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,86.6,0,0,Canceled,2018-08-03 -Resort Hotel,0,238,2016,September,43,25,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,95.06,0,3,Check-Out,2019-08-04 -City Hotel,1,56,2017,May,24,18,2,0,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,Non Refund,193.0,179.0,0,Transient,120.59,0,0,Canceled,2020-01-04 -City Hotel,0,2,2015,August,35,8,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,132.47,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2017,January,3,23,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,18.0,97.0,0,Transient,39.0,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2016,June,26,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,113.22,1,1,Check-Out,2019-05-04 -Resort Hotel,1,149,2017,March,17,30,0,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,11.0,221.0,0,Transient,37.83,0,0,Canceled,2020-02-01 -City Hotel,0,243,2016,October,43,18,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,99.36,0,0,Check-Out,2019-07-04 -City Hotel,0,164,2017,June,29,20,0,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.61,0,1,Check-Out,2020-06-02 -City Hotel,0,12,2015,July,31,11,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,72.22,0,0,Check-Out,2018-06-02 -Resort Hotel,0,86,2016,June,26,21,4,10,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,95.0,179.0,0,Transient,96.22,0,0,Check-Out,2019-03-04 -City Hotel,0,55,2015,July,31,14,0,2,2,0.0,0,BB,,Direct,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,63.11,0,0,Check-Out,2018-05-03 -City Hotel,0,1,2016,April,16,10,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,81.45,0,0,Check-Out,2019-03-04 -Resort Hotel,0,29,2016,October,42,3,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,101.22,1,1,Check-Out,2019-06-03 -City Hotel,0,161,2017,June,25,6,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,161.41,0,1,Check-Out,2020-03-03 -City Hotel,1,55,2016,September,51,5,0,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,155.46,0,1,Canceled,2018-08-03 -Resort Hotel,0,18,2015,December,50,5,3,3,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,35.2,0,0,Check-Out,2018-08-03 -City Hotel,0,9,2016,January,11,18,0,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,G,0,No Deposit,16.0,179.0,0,Transient,59.7,0,3,Check-Out,2018-10-03 -City Hotel,1,36,2016,April,20,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,102.6,0,0,Canceled,2018-12-03 -City Hotel,1,26,2016,August,37,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.1,0,1,Canceled,2019-07-04 -City Hotel,0,84,2016,July,26,8,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,164.0,179.0,0,Transient,126.25,0,1,Check-Out,2020-06-02 -City Hotel,1,409,2015,September,45,7,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.42,0,0,Canceled,2018-08-03 -City Hotel,1,2,2016,February,3,15,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,102.0,67.0,0,Transient,63.46,0,0,Canceled,2018-11-02 -City Hotel,0,11,2017,February,10,6,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,33.0,217.0,0,Transient-Party,62.54,0,3,Check-Out,2019-12-04 -City Hotel,0,250,2017,July,27,20,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient,134.31,0,1,Check-Out,2020-06-02 -Resort Hotel,0,95,2016,March,19,30,4,5,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,247.0,222.0,0,Transient,61.71,0,1,Check-Out,2019-02-01 -Resort Hotel,1,165,2017,June,31,3,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,10.0,179.0,0,Transient,198.5,0,0,Canceled,2020-03-03 -City Hotel,1,183,2016,June,27,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,45.0,0,Transient,59.42,0,0,Canceled,2019-03-04 -Resort Hotel,0,276,2016,May,23,7,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,202.37,1,2,Check-Out,2019-06-03 -Resort Hotel,0,45,2016,August,35,15,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,44.8,0,0,Check-Out,2019-11-03 -City Hotel,1,41,2016,September,43,29,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,112.29,0,0,Canceled,2019-08-04 -City Hotel,0,7,2015,August,37,28,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,131.0,0,0,Check-Out,2018-09-02 -City Hotel,0,29,2016,December,51,28,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,63.5,0,0,Check-Out,2019-10-04 -City Hotel,0,97,2015,October,43,30,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Contract,70.73,0,1,Check-Out,2019-10-04 -Resort Hotel,1,250,2016,October,33,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,176.0,179.0,0,Transient,101.22,0,0,Canceled,2019-09-03 -City Hotel,1,42,2016,December,46,31,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,106.76,0,0,Canceled,2019-10-04 -Resort Hotel,0,25,2017,April,19,24,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,197.0,179.0,0,Transient-Party,40.34,1,0,Check-Out,2019-12-04 -City Hotel,1,252,2015,July,31,5,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient-Party,98.39,0,0,Canceled,2018-04-02 -Resort Hotel,1,103,2016,May,19,28,1,4,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,154.77,0,0,Canceled,2019-01-03 -City Hotel,0,51,2016,October,45,21,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,10.0,179.0,0,Contract,105.47,0,1,Check-Out,2018-12-03 -City Hotel,0,15,2015,August,37,13,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,60.92,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,December,51,23,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,C,0,No Deposit,14.0,179.0,0,Transient-Party,67.69,0,0,Check-Out,2019-09-03 -City Hotel,1,120,2017,August,37,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,124.4,0,0,Canceled,2020-06-02 -Resort Hotel,0,19,2015,October,43,30,1,1,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient-Party,62.32,0,0,Check-Out,2018-08-03 -City Hotel,1,209,2016,June,25,28,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,117.1,0,3,Canceled,2019-07-04 -City Hotel,1,2,2017,February,12,7,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,106.85,0,2,Canceled,2019-10-04 -City Hotel,1,281,2016,August,36,21,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.3,0,0,Canceled,2017-09-02 -City Hotel,1,245,2016,June,24,16,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.93,0,0,Canceled,2019-02-01 -City Hotel,0,170,2017,May,21,27,0,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,136.84,0,1,Check-Out,2020-04-02 -City Hotel,0,14,2016,June,20,24,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,149.8,0,2,Check-Out,2019-03-04 -City Hotel,0,25,2016,June,27,4,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.38,0,3,Check-Out,2019-04-03 -City Hotel,0,276,2016,June,32,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.95,0,0,Check-Out,2019-06-03 -Resort Hotel,0,150,2017,April,19,4,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,273.0,179.0,0,Transient-Party,82.42,0,0,Check-Out,2020-01-04 -City Hotel,1,251,2015,July,31,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,177.0,179.0,0,Contract,125.12,0,2,Canceled,2017-09-02 -City Hotel,0,137,2017,June,27,6,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,161.0,179.0,0,Transient,79.72,0,0,Check-Out,2020-05-03 -City Hotel,1,21,2017,March,7,7,2,3,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,91.69,0,0,Canceled,2020-03-03 -Resort Hotel,0,270,2015,October,45,15,0,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,C,1,No Deposit,14.0,248.0,0,Transient-Party,67.51,0,0,Check-Out,2018-09-02 -Resort Hotel,0,44,2016,July,36,10,0,2,3,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,197.93,1,0,Check-Out,2019-03-04 -City Hotel,1,58,2017,October,44,10,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.36,0,0,Canceled,2019-12-04 -Resort Hotel,0,96,2016,February,9,10,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,82.0,179.0,0,Transient-Party,40.36,0,0,Check-Out,2018-12-03 -City Hotel,0,52,2017,May,17,16,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,97.17,0,1,Check-Out,2020-03-03 -City Hotel,1,428,2016,October,44,27,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,81.09,0,0,Canceled,2018-08-03 -Resort Hotel,0,52,2017,March,10,5,0,1,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,162.0,179.0,0,Transient,59.93,0,0,Check-Out,2020-02-01 -City Hotel,0,208,2016,July,29,13,0,3,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,151.17,0,2,Check-Out,2019-04-03 -City Hotel,0,382,2017,May,22,22,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,102.19,0,2,Check-Out,2020-05-03 -City Hotel,1,159,2016,July,38,26,2,7,3,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,F,1,No Deposit,14.0,179.0,0,Transient,195.41,0,0,Canceled,2018-06-02 -City Hotel,1,171,2017,July,32,16,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,177.19,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,June,27,14,2,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,E,0,No Deposit,17.0,192.0,0,Transient,140.55,0,0,Check-Out,2020-04-02 -City Hotel,1,51,2016,March,9,5,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,1,0,E,D,0,No Deposit,240.0,179.0,0,Transient,76.7,0,1,Canceled,2018-10-03 -City Hotel,1,262,2017,June,27,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.67,0,0,Canceled,2020-06-02 -City Hotel,0,2,2017,January,3,17,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,42.48,0,1,Check-Out,2018-11-02 -Resort Hotel,0,2,2015,December,43,29,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,61.0,0,Transient-Party,43.99,0,0,Check-Out,2018-08-03 -Resort Hotel,1,42,2016,August,37,8,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,192.82,0,0,Canceled,2019-06-03 -City Hotel,1,42,2017,April,17,7,2,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,2,No Deposit,9.0,179.0,0,Transient,96.9,0,0,Canceled,2020-04-02 -Resort Hotel,0,10,2015,September,43,6,1,3,2,0.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -City Hotel,1,16,2017,August,37,13,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.87,0,0,Canceled,2020-07-03 -City Hotel,1,15,2016,January,4,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,58.81,0,0,Canceled,2018-12-03 -City Hotel,1,0,2017,March,10,21,1,0,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,H,0,No Deposit,7.0,179.0,0,Transient,124.11,0,0,Canceled,2020-01-04 -City Hotel,0,112,2015,October,44,8,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient-Party,72.18,0,0,Check-Out,2018-08-03 -City Hotel,1,296,2017,July,37,28,0,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.12,0,1,Canceled,2019-08-04 -Resort Hotel,1,18,2016,December,49,21,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,191.05,0,0,Canceled,2019-10-04 -Resort Hotel,0,41,2017,February,11,21,2,5,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,69.98,0,0,Check-Out,2020-07-03 -City Hotel,1,11,2017,August,17,15,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,153.69,0,1,No-Show,2020-07-03 -Resort Hotel,0,58,2016,August,37,28,1,10,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,103.47,0,0,Check-Out,2020-06-02 -City Hotel,1,57,2017,May,22,14,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.26,0,0,Canceled,2019-11-03 -City Hotel,0,9,2016,December,53,27,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.71,0,0,Check-Out,2019-12-04 -Resort Hotel,1,16,2017,June,22,23,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,91.35,0,0,Canceled,2020-05-03 -City Hotel,0,20,2015,October,52,29,0,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,66.69,0,0,Check-Out,2019-09-03 -City Hotel,0,109,2015,February,10,16,2,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,70.32,0,0,Check-Out,2018-11-02 -City Hotel,0,13,2017,February,9,22,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,142.69,0,1,Check-Out,2020-04-02 -Resort Hotel,0,1,2015,December,52,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,42.15,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,March,11,22,0,3,1,0.0,0,BB,SWE,Corporate,Direct,1,0,0,A,A,0,No Deposit,13.0,224.0,0,Transient,36.58,0,0,Check-Out,2019-01-03 -Resort Hotel,1,83,2017,April,16,5,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,212.0,0,Transient,83.24,0,0,Canceled,2019-12-04 -Resort Hotel,0,69,2016,April,16,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,39.89,0,3,Check-Out,2019-02-01 -Resort Hotel,0,3,2017,August,32,2,2,5,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,94.28,0,1,Check-Out,2020-06-02 -City Hotel,1,143,2016,March,16,31,1,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Refundable,9.0,179.0,75,Transient-Party,63.37,0,0,Canceled,2018-12-03 -City Hotel,1,26,2016,May,36,29,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.37,0,1,Canceled,2019-02-01 -City Hotel,1,14,2016,June,26,5,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.04,0,0,Canceled,2019-02-01 -City Hotel,0,15,2016,February,9,4,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,78.38,0,0,Check-Out,2018-11-02 -Resort Hotel,0,140,2016,December,53,12,2,1,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient-Party,39.16,0,0,Check-Out,2018-11-02 -Resort Hotel,0,19,2017,February,12,19,1,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,33.04,0,0,Check-Out,2019-02-01 -City Hotel,1,35,2017,May,22,29,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,39.85,0,0,Canceled,2019-02-01 -Resort Hotel,1,48,2015,November,53,6,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,242.0,179.0,0,Transient,38.91,0,1,Canceled,2018-11-02 -City Hotel,0,1,2016,December,31,6,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.01,0,0,Check-Out,2018-08-03 -City Hotel,1,98,2016,November,48,27,1,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,93.23,0,3,Canceled,2019-10-04 -City Hotel,0,17,2016,May,23,2,1,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,9.0,179.0,0,Transient,251.6,0,0,Check-Out,2019-03-04 -City Hotel,0,95,2016,March,10,29,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,75,Transient,71.06,0,0,Check-Out,2019-03-04 -City Hotel,1,155,2017,June,27,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient,116.19,0,0,Canceled,2019-11-03 -City Hotel,0,231,2017,May,23,16,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,201.58,0,1,Check-Out,2020-03-03 -Resort Hotel,0,152,2017,July,32,6,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,93.77,0,0,Check-Out,2019-10-04 -City Hotel,1,293,2015,September,47,25,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.21,0,0,Canceled,2018-08-03 -City Hotel,1,260,2017,May,22,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.94,0,0,Canceled,2020-04-02 -City Hotel,0,201,2017,July,26,16,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.4,0,1,Check-Out,2020-07-03 -City Hotel,0,14,2016,November,44,10,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,96.93,0,2,Check-Out,2020-01-04 -Resort Hotel,0,17,2016,October,42,6,2,4,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,H,0,No Deposit,242.0,179.0,0,Transient,185.12,0,0,Check-Out,2019-05-04 -Resort Hotel,0,259,2016,July,33,21,3,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,2,No Deposit,247.0,179.0,0,Transient,245.13,0,0,Check-Out,2019-03-04 -City Hotel,0,191,2017,July,19,18,1,0,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,I,0,No Deposit,279.0,179.0,0,Transient-Party,80.43,0,0,Canceled,2020-02-01 -City Hotel,1,40,2016,September,23,16,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,90.02,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,February,11,14,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,41.37,0,1,Check-Out,2018-11-02 -City Hotel,0,11,2016,October,46,26,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.02,0,1,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,October,44,8,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,L,2,No Deposit,182.0,179.0,0,Transient,1.93,0,1,Check-Out,2019-09-03 -City Hotel,0,5,2016,April,45,16,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.09,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,March,10,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,223.0,0,Transient-Party,51.19,0,0,Check-Out,2019-03-04 -City Hotel,0,100,2017,February,10,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,63,Transient,30.8,0,0,Check-Out,2018-10-03 -City Hotel,1,258,2017,June,27,19,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,140.52,0,2,Canceled,2020-03-03 -City Hotel,0,105,2015,July,31,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Contract,62.95,0,0,Check-Out,2018-06-02 -City Hotel,1,51,2015,September,36,30,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.92,0,0,Canceled,2017-11-02 -City Hotel,0,377,2017,July,29,14,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.15,0,0,Check-Out,2020-06-02 -City Hotel,0,146,2016,August,36,21,2,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,132.38,0,0,Check-Out,2019-08-04 -Resort Hotel,1,150,2016,June,26,8,2,2,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient-Party,95.12,0,0,Check-Out,2019-01-03 -City Hotel,0,102,2016,September,42,20,0,2,2,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,D,0,No Deposit,39.0,179.0,0,Group,102.61,0,1,Check-Out,2018-10-03 -City Hotel,0,4,2015,September,36,5,0,1,2,0.0,0,BB,ESP,Direct,Direct,1,0,1,D,F,0,No Deposit,15.0,179.0,0,Group,100.99,0,2,Check-Out,2018-08-03 -City Hotel,0,165,2016,May,17,30,0,3,3,0.0,0,BB,CHN,Direct,Direct,0,0,0,G,F,2,No Deposit,14.0,179.0,0,Transient,130.33,0,0,Check-Out,2019-02-01 -City Hotel,0,102,2016,June,21,2,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.22,0,3,Check-Out,2019-04-03 -City Hotel,0,25,2015,December,50,26,0,1,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,131.9,0,0,Check-Out,2018-12-03 -City Hotel,0,202,2015,October,50,18,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Contract,63.08,0,0,Check-Out,2018-07-03 -City Hotel,0,1,2016,March,10,20,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,76.0,0,Transient-Party,65.85,0,0,Check-Out,2019-02-01 -City Hotel,0,12,2016,November,43,27,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,155.46,0,1,Check-Out,2019-08-04 -City Hotel,1,46,2016,August,36,20,1,4,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,75,Transient,160.12,0,2,Canceled,2019-02-01 -Resort Hotel,0,281,2016,June,10,15,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,13.0,45.0,0,Transient,38.95,0,1,Check-Out,2019-03-04 -Resort Hotel,0,102,2016,March,17,19,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,81.89,1,0,Check-Out,2019-06-03 -City Hotel,0,16,2016,September,35,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.9,0,1,Check-Out,2019-08-04 -Resort Hotel,1,18,2016,January,51,20,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,328.0,179.0,0,Transient,80.27,0,0,No-Show,2019-02-01 -City Hotel,0,47,2017,April,14,30,2,5,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.15,0,2,Check-Out,2020-04-02 -Resort Hotel,0,144,2016,July,37,11,2,4,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,154.19,0,1,Check-Out,2019-04-03 -Resort Hotel,1,249,2017,June,36,15,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,164.0,179.0,0,Transient,108.88,0,0,Canceled,2020-07-03 -City Hotel,1,113,2015,September,44,26,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,158.73,0,0,Canceled,2018-08-03 -Resort Hotel,0,12,2017,July,31,25,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,86.0,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,December,10,20,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,L,0,No Deposit,237.0,179.0,0,Transient-Party,127.64,0,1,Check-Out,2018-11-02 -Resort Hotel,1,169,2016,October,21,30,2,7,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,B,0,Non Refund,165.0,179.0,0,Transient,87.6,0,2,Canceled,2019-01-03 -City Hotel,1,106,2016,January,9,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,91.0,179.0,17,Transient,75.12,0,0,Canceled,2018-10-03 -City Hotel,1,60,2017,April,52,9,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Canceled,2019-10-04 -Resort Hotel,0,101,2016,December,53,28,1,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,D,2,No Deposit,243.0,179.0,0,Transient,60.56,0,3,Check-Out,2018-10-03 -City Hotel,1,421,2016,June,26,8,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.91,0,0,Canceled,2019-04-03 -City Hotel,1,28,2016,February,11,29,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,36.0,179.0,0,Transient,78.78,0,0,Canceled,2019-09-03 -Resort Hotel,0,1,2016,March,11,14,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,2,No Deposit,16.0,179.0,0,Transient,59.34,0,0,Check-Out,2019-02-01 -Resort Hotel,0,46,2016,July,34,17,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,124.52,0,1,Check-Out,2019-05-04 -City Hotel,0,31,2016,October,42,23,1,1,1,0.0,0,HB,DEU,Online TA,Corporate,0,0,0,A,F,1,No Deposit,10.0,179.0,0,Transient-Party,86.16,0,0,Check-Out,2018-08-03 -Resort Hotel,0,48,2016,October,50,30,0,5,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,76.24,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2016,October,42,6,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,10.0,179.0,0,Transient,100.19,0,0,Check-Out,2019-08-04 -City Hotel,0,117,2015,August,31,18,0,3,1,0.0,0,BB,,Online TA,Undefined,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,122.91,0,0,Check-Out,2018-05-03 -City Hotel,1,51,2017,January,7,10,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.94,0,2,Canceled,2019-01-03 -City Hotel,1,307,2016,May,22,23,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,66.01,0,0,Canceled,2019-05-04 -City Hotel,0,7,2016,July,23,14,1,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,12.0,179.0,0,Transient,98.92,0,1,Check-Out,2019-03-04 -Resort Hotel,0,22,2015,December,53,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,249.0,179.0,0,Transient,45.7,1,0,Check-Out,2018-11-02 -Resort Hotel,0,260,2016,June,27,8,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,121.0,1,1,Check-Out,2019-05-04 -Resort Hotel,1,142,2016,March,11,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,179.0,75,Transient-Party,77.24,0,0,Canceled,2019-02-01 -City Hotel,1,53,2016,September,17,25,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,63.03,0,0,Canceled,2019-02-01 -City Hotel,0,153,2016,July,33,6,1,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,127.09,0,1,Check-Out,2019-07-04 -Resort Hotel,0,8,2015,November,36,5,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,34.83,1,0,Check-Out,2018-08-03 -Resort Hotel,0,38,2016,August,36,21,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,178.0,179.0,0,Transient,34.5,0,0,Check-Out,2019-05-04 -City Hotel,1,150,2016,August,36,27,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,162.97,0,1,Canceled,2019-06-03 -City Hotel,1,135,2016,May,21,20,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,173.0,179.0,0,Transient,71.04,0,0,Canceled,2019-02-01 -City Hotel,1,47,2016,August,36,29,2,1,2,2.0,0,BB,BRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,217.17,0,0,Canceled,2019-07-04 -Resort Hotel,1,45,2016,February,10,28,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,1,Non Refund,181.0,50.0,0,Transient,60.56,0,0,Canceled,2018-12-03 -Resort Hotel,0,97,2017,January,3,29,2,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Transient,38.96,1,2,No-Show,2019-12-04 -Resort Hotel,0,40,2015,October,43,6,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,65.57,0,0,Check-Out,2018-09-02 -City Hotel,0,9,2015,October,43,20,1,5,2,0.0,0,BB,AUT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,90.88,1,0,Check-Out,2018-08-03 -Resort Hotel,1,165,2016,March,36,31,2,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient-Party,96.38,0,0,Canceled,2019-03-04 -City Hotel,1,30,2016,October,44,18,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.98,0,0,No-Show,2019-09-03 -Resort Hotel,0,5,2017,July,30,13,2,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,370.0,179.0,0,Transient,81.33,0,0,Check-Out,2020-05-03 -City Hotel,0,36,2016,May,22,18,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.03,0,1,Check-Out,2019-02-01 -City Hotel,0,2,2016,August,37,25,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Group,0.25,1,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,December,53,31,2,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,91.51,0,0,Check-Out,2018-12-03 -City Hotel,1,9,2017,June,20,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,120.05,0,0,Canceled,2020-04-02 -Resort Hotel,0,39,2016,December,36,4,2,5,1,1.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient-Party,77.07,1,0,Check-Out,2019-11-03 -Resort Hotel,0,137,2016,August,34,29,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,142.84,1,2,Check-Out,2020-06-02 -City Hotel,1,157,2016,February,8,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.06,0,0,Canceled,2018-12-03 -City Hotel,0,21,2016,October,53,6,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,177.04,0,2,Check-Out,2019-06-03 -City Hotel,0,149,2017,July,35,31,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.06,0,1,Check-Out,2020-07-03 -Resort Hotel,0,88,2016,December,53,11,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,71.56,1,2,Check-Out,2019-09-03 -Resort Hotel,0,147,2017,March,27,18,2,7,3,0.0,0,HB,USA,Offline TA/TO,TA/TO,1,0,0,E,E,0,No Deposit,270.0,179.0,0,Transient-Party,225.12,0,0,Check-Out,2020-03-03 -City Hotel,0,204,2017,April,16,28,1,2,2,0.0,0,HB,NLD,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,123.8,0,0,Check-Out,2020-02-01 -Resort Hotel,0,17,2017,March,11,28,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,76.0,0,Transient,35.68,0,1,Check-Out,2020-03-03 -City Hotel,1,293,2015,September,42,16,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,63,Contract,78.08,0,0,Canceled,2017-10-03 -City Hotel,1,248,2017,July,33,10,2,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,181.84,0,1,Canceled,2019-07-04 -City Hotel,0,31,2015,September,53,25,2,5,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.4,0,2,Check-Out,2019-06-03 -City Hotel,1,37,2017,January,2,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,12.0,331.0,0,Transient,44.55,0,0,Canceled,2019-11-03 -City Hotel,0,241,2015,October,41,24,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,9.0,179.0,0,Group,101.91,0,2,Canceled,2018-08-03 -City Hotel,1,263,2017,August,21,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.9,0,2,Canceled,2019-02-01 -Resort Hotel,1,141,2017,July,32,21,2,5,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,190.15,0,0,Canceled,2020-06-02 -Resort Hotel,0,145,2016,August,38,28,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,9.0,179.0,0,Transient,181.92,0,0,Check-Out,2019-09-03 -City Hotel,0,93,2016,May,22,5,2,0,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,65.08,0,0,Check-Out,2019-12-04 -City Hotel,0,63,2016,August,38,12,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,112.39,0,2,Check-Out,2019-06-03 -City Hotel,0,91,2016,April,18,30,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,130.3,0,1,Check-Out,2019-02-01 -City Hotel,1,291,2016,July,28,18,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,98.61,0,1,Canceled,2019-02-01 -City Hotel,0,1,2017,February,38,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,106.89,0,0,Check-Out,2020-01-04 -Resort Hotel,1,5,2016,June,21,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,Non Refund,11.0,64.0,0,Transient,42.72,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2017,May,21,9,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,C,3,No Deposit,247.0,179.0,0,Transient,0.0,0,2,Check-Out,2020-03-03 -Resort Hotel,0,56,2015,November,50,24,2,3,1,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,39.0,179.0,0,Transient,72.39,0,0,Check-Out,2018-08-03 -City Hotel,0,130,2017,August,36,3,0,3,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -City Hotel,1,301,2016,August,32,8,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,8.0,179.0,0,Transient,145.52,0,0,Canceled,2019-04-03 -Resort Hotel,0,186,2016,August,40,17,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,81.79,0,1,Check-Out,2019-06-03 -Resort Hotel,0,44,2017,February,9,21,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,1,0,0,G,G,0,No Deposit,239.0,179.0,0,Contract,2.75,1,0,Check-Out,2020-03-03 -Resort Hotel,0,49,2015,July,31,5,0,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,121.86,1,0,Check-Out,2018-06-02 -Resort Hotel,1,149,2016,February,10,22,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient,82.05,0,0,Canceled,2018-10-03 -Resort Hotel,0,3,2015,July,26,8,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,367.0,179.0,0,Transient-Party,80.38,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,May,17,29,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,73.84,0,0,Check-Out,2019-03-04 -City Hotel,0,50,2016,June,42,21,0,3,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,63,Transient,87.81,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2017,February,10,23,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,86.8,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,December,53,25,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.28,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,July,27,1,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,146.4,0,2,Check-Out,2019-12-04 -Resort Hotel,0,34,2016,April,32,21,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,72.68,0,2,Check-Out,2018-11-02 -City Hotel,0,159,2017,March,20,27,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.82,1,1,Check-Out,2020-04-02 -Resort Hotel,1,46,2017,January,53,22,2,5,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,63.59,0,0,Canceled,2019-08-04 -City Hotel,0,154,2017,July,33,20,2,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,217.08,0,1,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,March,19,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,78.0,0,Transient,35.79,1,0,Check-Out,2019-01-03 -City Hotel,1,95,2016,December,50,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,161.71,0,0,Canceled,2018-11-02 -City Hotel,0,17,2016,April,10,5,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,146.79,0,1,Check-Out,2019-04-03 -City Hotel,0,3,2017,May,19,5,1,1,2,0.0,0,BB,ESP,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,72.69,0,0,Check-Out,2020-02-01 -Resort Hotel,1,54,2016,March,17,28,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,90.78,0,2,Canceled,2019-01-03 -City Hotel,1,112,2015,August,34,22,2,5,2,0.0,0,HB,PRT,Groups,Direct,0,1,0,A,F,0,No Deposit,4.0,179.0,0,Transient,132.55,0,0,Canceled,2018-05-03 -City Hotel,0,27,2016,June,27,13,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,121.85,0,0,Check-Out,2019-02-01 -Resort Hotel,0,108,2017,June,33,17,0,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,E,E,0,No Deposit,293.0,179.0,0,Transient,64.43,0,0,Check-Out,2020-07-03 -City Hotel,0,40,2016,April,17,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,113.57,0,2,Check-Out,2019-02-01 -City Hotel,1,66,2016,September,38,24,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,173.36,0,0,Canceled,2019-07-04 -City Hotel,0,36,2016,May,23,13,1,0,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,F,A,0,No Deposit,243.0,179.0,0,Transient,93.06,0,0,Check-Out,2019-02-01 -Resort Hotel,1,143,2016,March,44,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,72.3,0,0,Canceled,2019-03-04 -City Hotel,1,150,2015,July,26,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,122.73,0,0,Canceled,2018-11-02 -City Hotel,1,0,2016,February,10,20,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,67.63,0,1,No-Show,2019-02-01 -City Hotel,1,387,2017,May,22,25,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,190.96,0,0,No-Show,2019-06-03 -City Hotel,0,77,2016,October,42,3,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.51,0,2,Check-Out,2019-12-04 -City Hotel,1,152,2016,July,38,6,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,41,Transient,100.61,0,2,Canceled,2019-05-04 -Resort Hotel,0,89,2015,December,53,31,2,1,2,0.0,0,Undefined,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,177.0,179.0,0,Contract,38.27,0,0,Check-Out,2018-11-02 -City Hotel,0,14,2016,August,35,12,1,0,3,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Group,99.72,0,0,Check-Out,2019-02-01 -Resort Hotel,1,170,2017,May,24,28,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,240.0,179.0,0,Transient,50.84,0,0,Canceled,2019-11-03 -Resort Hotel,1,41,2016,July,31,5,2,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,180.08,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,August,35,20,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,124.88,0,1,Check-Out,2019-05-04 -City Hotel,1,42,2016,June,27,28,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,14.0,179.0,0,Transient,63.01,0,0,Canceled,2019-03-04 -Resort Hotel,0,1,2015,November,49,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,1,No Deposit,14.0,234.0,0,Transient,48.86,0,1,Check-Out,2018-07-03 -City Hotel,0,123,2017,May,21,2,1,5,1,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,156.29,0,1,Check-Out,2020-07-03 -Resort Hotel,0,159,2016,July,28,20,2,10,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,70.87,0,0,Check-Out,2019-05-04 -City Hotel,0,37,2016,February,15,28,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,73.0,179.0,0,Transient-Party,63.85,0,0,Check-Out,2019-04-03 -City Hotel,1,14,2016,May,20,26,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,72.5,0,1,Canceled,2019-02-01 -City Hotel,1,162,2015,July,26,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,62.76,0,0,Canceled,2017-11-02 -Resort Hotel,0,11,2015,May,29,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,310.0,179.0,0,Transient-Party,60.46,0,0,Check-Out,2019-06-03 -City Hotel,1,44,2016,December,16,30,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,42,Transient,95.29,0,0,Canceled,2018-11-02 -Resort Hotel,0,113,2016,March,10,24,1,5,2,0.0,0,Undefined,GBR,Direct,Direct,0,0,0,A,D,2,No Deposit,371.0,179.0,0,Transient,48.87,0,0,Check-Out,2019-01-03 -Resort Hotel,0,22,2016,June,16,25,0,6,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,125.04,1,2,Check-Out,2019-06-03 -Resort Hotel,0,299,2016,May,24,14,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,239.0,179.0,0,Transient,236.89,1,2,Check-Out,2019-06-03 -City Hotel,1,11,2016,September,43,25,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,131.82,0,1,Canceled,2019-08-04 -Resort Hotel,0,0,2016,March,17,23,2,5,2,0.0,0,FB,CHE,Direct,Direct,0,0,0,D,F,1,No Deposit,15.0,179.0,0,Transient,42.03,1,0,Check-Out,2019-02-01 -Resort Hotel,0,14,2015,September,35,17,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient-Party,117.81,1,0,Check-Out,2018-06-02 -City Hotel,0,26,2017,May,22,28,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.77,0,1,Check-Out,2020-03-03 -City Hotel,0,39,2015,December,53,31,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.06,0,2,Check-Out,2018-12-03 -City Hotel,1,339,2015,June,32,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,2,Non Refund,1.0,179.0,42,Transient,59.8,0,0,Canceled,2018-08-03 -Resort Hotel,0,6,2016,May,22,7,1,4,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,242.0,179.0,0,Transient,128.4,1,1,Check-Out,2019-02-01 -Resort Hotel,1,107,2017,June,27,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.07,0,1,No-Show,2020-05-03 -Resort Hotel,0,160,2017,August,31,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,81.69,0,3,Check-Out,2020-07-03 -Resort Hotel,1,158,2017,April,16,10,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,33.24,0,0,Check-Out,2019-08-04 -City Hotel,0,39,2015,September,43,27,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,61.41,0,0,Check-Out,2018-08-03 -City Hotel,1,135,2017,May,21,16,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,331.0,0,Transient-Party,76.22,0,0,Canceled,2019-12-04 -City Hotel,0,42,2016,April,16,18,0,2,1,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,101.06,0,0,Check-Out,2019-02-01 -City Hotel,1,192,2017,May,23,10,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,42,Transient,85.3,0,0,Canceled,2019-10-04 -Resort Hotel,0,11,2016,March,17,9,0,2,2,0.0,0,HB,BEL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,223.0,60,Transient-Party,30.14,0,0,Check-Out,2019-03-04 -Resort Hotel,0,194,2017,June,28,4,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,244.0,179.0,0,Transient,145.11,0,1,Check-Out,2020-06-02 -City Hotel,1,87,2015,September,43,5,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,10.0,179.0,0,Transient,107.34,0,0,Canceled,2018-05-03 -City Hotel,0,1,2016,August,36,13,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.34,0,0,Check-Out,2019-08-04 -City Hotel,0,24,2016,December,51,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Transient-Party,61.67,0,0,Check-Out,2018-11-02 -City Hotel,0,22,2017,July,28,12,2,4,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,92.86,0,0,Check-Out,2020-03-03 -City Hotel,0,18,2016,October,41,22,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,I,1,No Deposit,10.0,331.0,0,Transient,97.53,0,0,Check-Out,2019-07-04 -City Hotel,1,11,2017,May,16,4,0,1,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,15.0,265.0,0,Transient,4.63,0,0,Canceled,2019-09-03 -Resort Hotel,0,312,2015,July,30,13,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,No Deposit,246.0,179.0,0,Transient-Party,64.46,0,0,Check-Out,2018-06-02 -City Hotel,0,46,2016,June,32,10,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,1,No Deposit,73.0,179.0,0,Group,60.46,0,1,Check-Out,2018-12-03 -City Hotel,0,87,2016,June,26,1,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,116.17,0,1,Check-Out,2019-06-03 -City Hotel,0,87,2016,June,11,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,71.3,0,0,Check-Out,2019-03-04 -City Hotel,0,13,2016,March,10,2,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,81.39,0,0,Check-Out,2019-03-04 -Resort Hotel,0,3,2015,November,50,30,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,242.0,179.0,0,Transient,32.88,0,0,Check-Out,2018-08-03 -City Hotel,1,57,2016,October,45,17,1,0,3,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,144.68,0,1,No-Show,2019-09-03 -City Hotel,1,94,2016,September,31,16,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,97.19,0,1,Canceled,2019-11-03 -Resort Hotel,0,40,2017,March,22,17,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,69.22,1,0,Check-Out,2020-01-04 -Resort Hotel,0,149,2016,July,22,2,1,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,40.88,0,3,Check-Out,2019-12-04 -City Hotel,0,1,2016,September,43,15,1,0,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -Resort Hotel,0,106,2015,December,51,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,40.96,0,3,Check-Out,2018-12-03 -Resort Hotel,1,15,2016,May,21,15,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,326.0,179.0,0,Transient,61.91,0,0,Canceled,2019-03-04 -City Hotel,0,0,2017,August,36,10,0,1,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,72.35,0,0,Check-Out,2020-06-02 -City Hotel,0,31,2015,December,50,27,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.8,0,2,Check-Out,2018-09-02 -City Hotel,0,149,2016,June,28,24,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.11,0,0,Check-Out,2019-02-01 -City Hotel,0,89,2016,March,11,21,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,32.0,179.0,0,Transient-Party,143.9,0,0,Check-Out,2018-10-03 -Resort Hotel,0,93,2017,February,8,15,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,125.18,0,1,Check-Out,2019-02-01 -Resort Hotel,0,151,2016,October,41,29,4,5,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,33.0,179.0,0,Transient,88.75,0,0,Check-Out,2019-08-04 -Resort Hotel,1,87,2016,January,7,2,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,73.0,179.0,0,Transient,59.08,0,1,No-Show,2018-12-03 -City Hotel,0,21,2016,May,20,21,1,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,60.51,0,1,Check-Out,2019-02-01 -City Hotel,1,195,2017,March,16,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,98.25,0,0,Canceled,2020-01-04 -Resort Hotel,0,164,2015,July,33,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,82.9,1,1,Check-Out,2018-06-02 -City Hotel,1,53,2017,April,15,17,2,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,13.0,179.0,0,Transient,95.01,0,0,Canceled,2018-10-03 -City Hotel,1,149,2016,August,39,25,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,123.91,0,0,Canceled,2018-06-02 -City Hotel,0,222,2015,July,36,3,3,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,71.89,0,0,Check-Out,2018-01-03 -City Hotel,0,1,2015,November,45,5,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient,62.1,0,1,Check-Out,2018-07-03 -Resort Hotel,0,1,2016,October,45,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,36.42,0,1,Check-Out,2019-10-04 -City Hotel,0,19,2015,October,44,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.0,0,0,Check-Out,2018-08-03 -Resort Hotel,0,43,2016,March,11,31,0,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,84.57,1,1,Check-Out,2019-03-04 -City Hotel,0,33,2016,September,41,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,74.24,0,0,Check-Out,2019-04-03 -Resort Hotel,0,20,2016,January,4,28,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,245.0,179.0,0,Transient,188.22,0,0,Check-Out,2020-01-04 -City Hotel,1,24,2017,February,10,13,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,191.31,0,0,Canceled,2020-01-04 -City Hotel,0,48,2017,March,11,24,0,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,75.76,0,1,Check-Out,2019-02-01 -City Hotel,1,17,2017,May,22,25,1,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,128.73,0,1,Check-Out,2019-10-04 -City Hotel,0,0,2017,March,22,5,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,60.61,0,0,Check-Out,2020-04-02 -City Hotel,0,49,2015,October,45,29,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,67.83,0,0,Check-Out,2018-08-03 -Resort Hotel,1,103,2017,March,22,28,0,1,2,0.0,0,HB,ITA,Direct,Direct,1,0,0,D,F,0,No Deposit,250.0,179.0,0,Transient,149.79,0,3,Canceled,2020-04-02 -City Hotel,1,45,2016,September,39,28,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,185.32,0,1,Canceled,2018-08-03 -City Hotel,0,123,2015,January,3,6,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,60.39,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2016,June,29,21,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,87.71,0,0,Check-Out,2019-06-03 -Resort Hotel,0,94,2016,December,49,29,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,97.14,0,1,Check-Out,2019-10-04 -City Hotel,0,1,2016,March,18,5,1,4,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,171.59,0,3,Check-Out,2019-03-04 -Resort Hotel,0,19,2016,January,4,5,1,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient-Party,41.24,0,1,Check-Out,2018-11-02 -Resort Hotel,0,18,2015,December,52,30,2,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,51.01,0,0,Check-Out,2018-12-03 -City Hotel,1,434,2017,May,23,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,120.6,0,0,Canceled,2020-03-03 -City Hotel,1,367,2015,December,33,20,0,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,117.45,0,1,Canceled,2018-06-02 -Resort Hotel,1,8,2016,July,37,15,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,193.58,1,0,Canceled,2020-02-01 -City Hotel,1,402,2016,October,43,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,91.17,0,0,Canceled,2018-09-02 -City Hotel,0,38,2015,October,44,20,1,1,1,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,125.43,0,2,Check-Out,2018-08-03 -Resort Hotel,0,2,2015,December,50,27,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,328.0,179.0,0,Transient,38.96,0,0,Check-Out,2018-08-03 -City Hotel,0,142,2017,May,35,28,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,106.21,0,3,Check-Out,2019-06-03 -Resort Hotel,0,94,2016,August,33,5,2,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,D,2,No Deposit,253.0,179.0,0,Transient-Party,62.25,0,0,Check-Out,2019-12-04 -City Hotel,0,10,2016,August,32,5,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,117.74,0,1,Check-Out,2020-05-03 -City Hotel,1,416,2016,October,37,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,132.17,0,0,Canceled,2019-08-04 -City Hotel,0,107,2015,September,42,10,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,20,Transient-Party,74.06,0,0,Check-Out,2018-08-03 -Resort Hotel,0,16,2015,November,45,10,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,240.0,179.0,0,Transient,88.86,1,2,Check-Out,2018-08-03 -Resort Hotel,1,0,2016,May,21,11,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,70.65,0,2,No-Show,2019-02-01 -Resort Hotel,0,33,2017,May,23,16,0,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,238.45,0,2,Check-Out,2020-03-03 -Resort Hotel,0,70,2017,July,33,31,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,201.88,0,2,Check-Out,2020-03-03 -City Hotel,1,263,2016,September,28,20,2,3,1,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,67.0,179.0,0,Transient-Party,155.53,0,0,Canceled,2019-01-03 -City Hotel,1,17,2017,June,15,28,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.95,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2015,August,37,31,1,2,3,0.0,0,BB,ESP,Online TA,Direct,0,0,0,C,A,0,No Deposit,13.0,179.0,0,Transient,151.2,1,0,Check-Out,2018-06-02 -City Hotel,1,54,2017,March,12,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,89.79,0,0,Canceled,2019-02-01 -City Hotel,0,20,2016,September,38,13,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.87,0,0,Check-Out,2019-05-04 -Resort Hotel,0,29,2017,March,15,15,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,114.39,0,2,Check-Out,2019-11-03 -Resort Hotel,1,115,2015,December,53,23,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,34.77,0,0,Canceled,2018-11-02 -Resort Hotel,1,49,2016,April,16,24,1,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,2019-02-01 -City Hotel,1,264,2016,July,22,19,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,E,E,0,Non Refund,12.0,179.0,0,Transient-Party,129.63,0,0,Canceled,2019-05-04 -Resort Hotel,0,134,2015,July,35,25,1,5,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,A,1,Refundable,17.0,223.0,0,Transient-Party,126.19,1,0,Check-Out,2018-06-02 -City Hotel,1,43,2016,November,50,23,0,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,69.45,0,0,Canceled,2019-10-04 -Resort Hotel,1,203,2017,June,27,21,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,149.5,0,2,Canceled,2020-03-03 -City Hotel,1,91,2017,May,26,30,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,68.0,179.0,0,Transient,127.05,0,0,Canceled,2018-12-03 -Resort Hotel,0,229,2015,August,35,14,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,241.0,179.0,0,Transient,186.86,1,1,Check-Out,2018-06-02 -City Hotel,1,43,2016,January,3,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,43,Transient,94.85,0,0,Canceled,2018-10-03 -Resort Hotel,0,0,2016,March,16,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,86.54,1,1,Check-Out,2019-02-01 -City Hotel,0,111,2015,July,25,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,B,B,0,No Deposit,37.0,179.0,0,Transient-Party,72.02,0,0,Check-Out,2018-12-03 -City Hotel,1,28,2016,May,22,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.67,0,0,Canceled,2019-02-01 -City Hotel,0,11,2016,September,43,5,2,0,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,96.48,0,0,Check-Out,2019-06-03 -Resort Hotel,0,245,2016,July,27,28,3,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,94.65,0,0,Check-Out,2019-05-04 -City Hotel,0,41,2016,June,26,24,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,93.59,0,2,Check-Out,2019-04-03 -City Hotel,1,334,2016,August,29,26,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,Non Refund,11.0,179.0,0,Transient,124.96,0,0,Canceled,2018-07-03 -Resort Hotel,0,140,2016,April,35,16,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,F,A,1,No Deposit,251.0,179.0,0,Transient,191.86,1,0,Check-Out,2019-08-04 -Resort Hotel,0,19,2016,September,38,31,0,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,239.0,179.0,0,Transient,182.94,1,2,Check-Out,2019-08-04 -Resort Hotel,1,302,2016,August,43,18,4,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,274.0,179.0,0,Transient,80.92,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2016,November,50,21,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,0,No Deposit,16.0,331.0,0,Transient,61.17,0,0,Check-Out,2018-11-02 -Resort Hotel,0,238,2016,May,16,24,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,134.31,0,2,Check-Out,2019-03-04 -City Hotel,0,80,2015,July,32,18,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,157.46,0,1,Check-Out,2018-05-03 -City Hotel,0,117,2015,July,32,6,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,74.5,0,0,Check-Out,2018-06-02 -City Hotel,1,249,2016,March,16,24,2,0,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,153.22,0,0,Canceled,2019-01-03 -Resort Hotel,1,155,2016,March,9,27,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient,36.1,0,0,Canceled,2019-03-04 -Resort Hotel,0,28,2015,July,32,31,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,154.92,1,2,Check-Out,2018-11-02 -City Hotel,1,157,2016,June,25,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,L,0,Non Refund,138.0,179.0,0,Transient,76.25,0,0,Canceled,2018-11-02 -Resort Hotel,0,37,2017,February,7,15,2,5,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,1,No Deposit,204.0,179.0,0,Transient-Party,54.93,0,0,Check-Out,2020-03-03 -Resort Hotel,0,18,2015,December,49,18,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,58.11,0,0,Check-Out,2018-09-02 -City Hotel,1,31,2017,April,17,31,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,126.33,0,0,Check-Out,2020-03-03 -City Hotel,0,41,2016,March,9,18,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.34,0,1,Check-Out,2019-02-01 -Resort Hotel,1,39,2016,August,37,12,2,3,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,229.84,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2016,August,10,24,1,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,1.21,1,0,Check-Out,2020-06-02 -Resort Hotel,0,140,2016,December,36,25,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,72.82,0,0,Check-Out,2018-01-31 -Resort Hotel,0,20,2017,July,4,27,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,150.83,1,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,October,46,20,0,2,1,0.0,0,BB,SWE,Online TA,Corporate,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,68.52,0,0,Check-Out,2019-10-04 -City Hotel,0,283,2015,October,44,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.58,0,0,Check-Out,2018-09-02 -City Hotel,0,94,2016,December,51,5,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,92.55,0,1,Check-Out,2019-10-04 -City Hotel,0,90,2015,October,45,14,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,120.7,0,1,Check-Out,2018-06-02 -City Hotel,1,154,2017,June,28,27,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,152.95,0,0,Canceled,2019-06-03 -City Hotel,0,9,2017,May,22,2,0,1,1,0.0,0,BB,NLD,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,80.87,0,0,Check-Out,2020-03-03 -Resort Hotel,0,49,2016,January,5,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,61.85,0,2,Check-Out,2018-11-02 -City Hotel,0,101,2016,March,18,24,2,3,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,115.5,0,2,Check-Out,2019-02-01 -City Hotel,1,97,2016,March,11,21,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,79.0,179.0,19,Transient,72.2,0,0,Canceled,2018-11-02 -Resort Hotel,1,43,2016,April,16,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,124.56,0,0,Canceled,2019-01-03 -City Hotel,1,12,2016,September,43,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.17,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2016,June,22,12,1,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,136.91,1,0,Check-Out,2019-05-04 -City Hotel,1,22,2016,October,17,25,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,113.67,0,2,Canceled,2019-02-01 -City Hotel,0,0,2017,June,9,12,1,0,1,0.0,0,SC,GBR,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,89.0,250.0,0,Transient,69.24,0,0,Check-Out,2020-03-03 -Resort Hotel,0,149,2017,May,23,27,4,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,76.75,1,1,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,October,44,20,0,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,111.15,0,0,Check-Out,2019-05-04 -City Hotel,1,427,2016,May,21,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,45.0,0,Transient,107.96,0,0,Canceled,2018-08-03 -City Hotel,0,263,2016,June,31,15,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Contract,75.85,0,1,Check-Out,2019-03-04 -Resort Hotel,0,33,2016,March,17,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,116.22,0,1,Check-Out,2019-02-01 -City Hotel,1,1,2017,May,23,14,0,1,3,0.0,0,SC,ESP,Complementary,Corporate,0,0,0,P,P,1,No Deposit,17.0,242.0,0,Group,3.08,0,0,Canceled,2020-04-02 -City Hotel,0,14,2017,May,24,9,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,120.58,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2015,December,50,16,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,241.0,0,Transient-Party,63.45,1,0,Check-Out,2018-10-03 -City Hotel,1,444,2017,May,15,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,108.15,0,0,Canceled,2020-04-02 -City Hotel,1,189,2016,October,44,10,2,2,2,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,77.59,0,0,Canceled,2019-06-03 -Resort Hotel,0,44,2015,October,44,24,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,107.2,0,0,Check-Out,2018-08-03 -City Hotel,1,317,2016,October,45,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,123.21,0,0,Canceled,2019-08-04 -City Hotel,0,102,2015,July,51,27,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,F,0,No Deposit,2.0,179.0,0,Transient-Party,60.99,0,0,Check-Out,2018-06-02 -Resort Hotel,0,38,2016,May,17,24,1,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,301.0,179.0,0,Contract,65.99,0,0,Check-Out,2019-03-04 -Resort Hotel,1,98,2017,May,16,27,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,235.0,179.0,0,Transient,137.31,0,0,Canceled,2020-03-03 -Resort Hotel,1,136,2017,January,6,16,0,2,1,0.0,0,BB,PRT,Corporate,Direct,1,1,1,A,A,0,Non Refund,14.0,179.0,0,Transient,29.97,0,0,Canceled,2019-11-03 -Resort Hotel,0,34,2017,February,9,5,1,0,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient,40.09,0,0,Check-Out,2020-02-01 -City Hotel,0,8,2016,June,24,13,0,2,3,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,31.0,179.0,0,Transient,132.12,0,0,Check-Out,2019-06-03 -Resort Hotel,0,285,2017,May,22,29,2,6,2,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,142.5,1,0,Check-Out,2020-02-01 -City Hotel,1,256,2016,May,19,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Group,70.18,0,0,Canceled,2019-02-01 -Resort Hotel,1,99,2015,December,51,30,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,44.18,0,0,Canceled,2019-10-04 -City Hotel,1,15,2017,February,11,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,69.44,0,0,Canceled,2019-11-03 -City Hotel,0,0,2017,February,8,12,2,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,23.0,179.0,0,Transient-Party,74.53,0,0,Check-Out,2020-03-03 -Resort Hotel,0,255,2017,July,33,10,1,6,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,149.0,0,1,Check-Out,2020-05-03 -Resort Hotel,1,296,2015,September,35,10,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.26,0,0,Canceled,2017-11-02 -Resort Hotel,0,2,2016,August,35,22,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,86.85,1,0,Check-Out,2018-11-02 -City Hotel,0,50,2017,February,22,7,2,5,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,93.35,0,0,Check-Out,2020-02-01 -Resort Hotel,0,21,2017,February,9,14,0,1,2,0.0,0,BB,BEL,Groups,Corporate,0,0,0,D,D,0,No Deposit,350.0,331.0,0,Transient-Party,40.79,0,0,Check-Out,2019-12-04 -City Hotel,0,34,2016,April,17,23,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,42.65,0,0,Check-Out,2018-12-03 -City Hotel,1,147,2015,December,53,2,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,83.88,0,0,Canceled,2018-11-02 -City Hotel,0,86,2015,August,31,24,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,80.93,0,0,Check-Out,2018-05-03 -City Hotel,0,3,2015,October,42,13,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,69.51,0,0,Check-Out,2018-08-03 -City Hotel,1,41,2016,March,19,18,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,Non Refund,12.0,179.0,0,Transient-Party,61.08,0,0,Canceled,2018-12-03 -City Hotel,1,206,2017,October,40,16,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.49,0,0,Canceled,2019-10-04 -Resort Hotel,1,151,2016,July,31,18,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,132.84,0,1,Canceled,2019-05-04 -Resort Hotel,0,8,2017,January,4,31,2,3,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,152.34,1,3,Check-Out,2019-10-04 -City Hotel,1,36,2016,November,47,3,0,3,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,94.68,0,0,Canceled,2019-09-03 -Resort Hotel,1,163,2017,June,39,10,0,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,159.0,179.0,0,Transient,183.08,0,0,Canceled,2020-06-02 -Resort Hotel,0,45,2017,June,26,24,0,2,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,240.0,179.0,0,Transient,104.88,1,1,Check-Out,2020-04-02 -Resort Hotel,0,157,2017,March,16,31,0,3,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,1,A,I,0,No Deposit,12.0,224.0,0,Transient,117.57,0,0,Check-Out,2020-07-03 -City Hotel,1,12,2017,March,10,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,18.0,236.0,0,Transient,94.71,0,0,Canceled,2019-12-04 -City Hotel,1,262,2017,December,53,13,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,162.73,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,January,12,9,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,187.26,0,1,Check-Out,2019-10-04 -City Hotel,0,31,2017,May,23,21,1,0,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2020-03-03 -Resort Hotel,0,262,2016,November,43,21,1,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,260.0,179.0,0,Transient-Party,81.81,0,0,Check-Out,2019-07-04 -City Hotel,0,240,2017,June,28,6,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.02,0,1,Check-Out,2020-05-03 -Resort Hotel,0,49,2016,July,28,24,0,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient-Party,190.77,0,1,Check-Out,2019-05-04 -City Hotel,0,247,2015,September,35,10,2,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,39.22,0,0,Check-Out,2018-09-02 -City Hotel,1,161,2017,October,50,6,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,75,Transient,98.06,0,0,Canceled,2019-09-03 -Resort Hotel,0,2,2015,November,40,16,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,35.22,0,0,Check-Out,2018-08-03 -City Hotel,0,19,2016,October,45,15,0,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,160.0,0,Transient,118.97,0,0,Check-Out,2019-03-04 -City Hotel,0,18,2016,November,53,20,0,1,3,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,9.0,179.0,0,Transient,124.17,0,1,Check-Out,2019-11-03 -City Hotel,1,3,2017,March,9,9,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.02,0,0,Canceled,2020-02-01 -City Hotel,0,14,2016,August,34,18,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,1,No Deposit,14.0,179.0,0,Transient,188.78,0,0,Check-Out,2020-01-04 -City Hotel,0,17,2016,December,51,2,2,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient-Party,66.37,0,0,Check-Out,2018-08-03 -City Hotel,0,242,2015,October,44,15,0,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,331.0,0,Transient-Party,117.56,0,0,Check-Out,2018-09-02 -City Hotel,1,169,2016,February,31,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,34.0,179.0,0,Transient,118.5,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,February,10,5,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,61.41,0,0,Check-Out,2018-11-02 -Resort Hotel,0,71,2016,January,11,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,42.8,0,2,Check-Out,2018-11-02 -City Hotel,1,283,2016,August,38,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.23,0,1,No-Show,2019-07-04 -City Hotel,1,97,2016,June,26,18,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.92,0,0,Canceled,2019-10-04 -City Hotel,0,181,2016,October,43,28,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.3,0,0,Check-Out,2019-09-03 -Resort Hotel,0,2,2017,May,21,30,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,243.0,179.0,0,Transient,137.23,1,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,June,22,21,1,10,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,86.64,0,0,Check-Out,2019-04-03 -City Hotel,1,95,2016,September,24,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.26,0,0,Canceled,2019-05-04 -Resort Hotel,1,9,2016,June,25,23,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,78.0,179.0,0,Transient,77.96,0,0,Canceled,2019-02-01 -Resort Hotel,1,190,2015,October,43,28,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,160.01,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2015,July,30,4,1,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient,190.35,0,0,Check-Out,2018-05-03 -City Hotel,1,302,2016,May,18,6,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,21,Transient,74.89,0,0,Canceled,2019-02-01 -Resort Hotel,0,5,2016,January,11,28,0,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,76.4,0,3,Check-Out,2018-11-02 -Resort Hotel,1,96,2015,December,53,30,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,326.0,179.0,0,Transient,85.81,0,0,Canceled,2018-12-03 -City Hotel,1,0,2017,April,17,8,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,1.57,0,0,Canceled,2020-02-01 -City Hotel,0,2,2017,March,35,26,0,4,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,119.39,0,2,Check-Out,2020-07-03 -City Hotel,0,17,2015,October,46,22,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,36.43,0,0,Check-Out,2018-08-03 -City Hotel,1,38,2016,January,7,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,41,Transient,63.93,0,0,Canceled,2018-11-02 -City Hotel,1,102,2015,July,34,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,119.01,0,1,No-Show,2018-06-02 -City Hotel,0,41,2017,May,23,21,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Contract,110.89,0,2,Check-Out,2020-05-03 -Resort Hotel,0,37,2015,December,50,21,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,34.72,1,1,Check-Out,2018-08-03 -City Hotel,1,0,2015,October,43,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,117.56,0,0,Canceled,2018-09-02 -Resort Hotel,0,44,2016,September,43,24,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,175.0,179.0,0,Contract,68.18,0,0,Check-Out,2019-07-04 -City Hotel,1,281,2017,May,28,27,2,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2016,September,43,13,0,2,2,0.0,0,BB,,Direct,Direct,1,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,151.72,0,0,Check-Out,2019-05-04 -Resort Hotel,0,94,2015,October,49,5,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,302.0,179.0,40,Transient,60.29,0,0,Check-Out,2019-07-04 -City Hotel,0,376,2015,October,44,10,1,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,88.0,179.0,61,Contract,60.69,0,0,Canceled,2017-10-03 -City Hotel,0,16,2016,August,34,23,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,121.8,0,1,Check-Out,2019-06-03 -City Hotel,1,13,2016,November,49,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.32,0,0,Canceled,2019-11-03 -Resort Hotel,1,99,2015,July,32,20,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,F,0,Non Refund,12.0,179.0,0,Transient,129.31,0,0,Canceled,2018-06-02 -City Hotel,1,102,2017,October,43,21,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.87,0,0,Canceled,2019-10-04 -City Hotel,1,3,2017,January,3,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.91,0,0,No-Show,2019-11-03 -City Hotel,0,235,2015,October,44,18,2,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,71.19,0,0,Check-Out,2017-11-02 -City Hotel,0,98,2017,April,17,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient-Party,80.2,0,0,Check-Out,2020-03-03 -Resort Hotel,0,36,2017,December,33,21,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient-Party,166.27,1,0,Check-Out,2019-11-03 -Resort Hotel,0,159,2016,July,38,15,0,2,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,81.71,0,1,Check-Out,2019-05-04 -City Hotel,0,10,2016,June,26,21,0,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,88.48,0,0,Check-Out,2020-03-03 -Resort Hotel,0,11,2016,May,21,6,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,75.52,0,0,Check-Out,2019-03-04 -City Hotel,0,34,2016,March,21,17,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.42,0,1,Check-Out,2019-03-04 -City Hotel,0,264,2016,September,30,16,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,100.97,0,1,Check-Out,2019-05-04 -Resort Hotel,0,23,2017,February,10,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,49.99,0,3,Check-Out,2020-02-01 -Resort Hotel,0,19,2015,December,50,6,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Contract,63.1,0,2,Check-Out,2018-11-02 -City Hotel,0,162,2017,May,26,24,1,2,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,7.0,179.0,0,Transient,164.2,0,2,Check-Out,2020-03-03 -City Hotel,1,81,2016,March,27,24,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,E,E,0,No Deposit,84.0,179.0,75,Transient-Party,110.94,0,0,Canceled,2019-03-04 -Resort Hotel,0,53,2016,June,27,25,3,2,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,92.2,0,1,Check-Out,2019-06-03 -Resort Hotel,0,140,2016,February,35,15,2,5,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,67,Transient-Party,102.15,0,0,Check-Out,2019-05-04 -City Hotel,0,5,2016,November,49,15,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,D,D,0,No Deposit,11.0,69.0,0,Transient,78.25,0,0,Check-Out,2019-08-04 -City Hotel,1,23,2015,October,36,6,2,3,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,152.03,0,1,Canceled,2018-05-03 -City Hotel,1,17,2016,September,37,23,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.17,0,0,Canceled,2019-04-03 -Resort Hotel,0,11,2016,October,10,7,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,245.0,179.0,0,Transient,76.26,0,2,Check-Out,2019-02-01 -City Hotel,1,295,2017,February,10,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient-Party,79.11,0,0,Canceled,2020-04-02 -Resort Hotel,0,2,2016,March,42,4,1,1,2,0.0,0,HB,AUT,Groups,Corporate,0,0,0,E,I,1,No Deposit,309.0,179.0,75,Transient-Party,61.0,1,0,Check-Out,2019-03-04 -City Hotel,1,36,2016,March,15,20,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,156.0,179.0,0,Transient,98.2,0,0,Canceled,2018-11-02 -Resort Hotel,0,3,2015,October,44,10,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-09-02 -City Hotel,0,232,2015,July,29,22,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,102.49,0,2,Check-Out,2018-05-03 -Resort Hotel,0,157,2016,April,17,6,2,5,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,E,E,1,No Deposit,169.0,179.0,0,Transient,120.71,0,0,Check-Out,2019-02-01 -City Hotel,1,2,2017,February,9,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,0,Transient,69.57,0,0,Canceled,2020-03-03 -City Hotel,0,13,2017,May,22,30,0,3,2,0.0,0,BB,CN,Direct,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,152.33,0,1,Check-Out,2020-03-03 -City Hotel,1,105,2016,September,44,2,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,116.16,0,0,Canceled,2019-05-04 -City Hotel,0,2,2015,October,45,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,76.08,0,2,Check-Out,2019-08-04 -City Hotel,1,108,2016,August,37,12,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,E,0,No Deposit,13.0,179.0,0,Transient,154.0,0,0,No-Show,2019-07-04 -City Hotel,0,0,2017,August,25,21,2,0,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.9,0,0,Check-Out,2020-05-03 -City Hotel,0,41,2017,June,26,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,150.82,0,0,Check-Out,2020-02-01 -City Hotel,1,39,2016,March,17,8,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,6.0,179.0,0,Transient,116.64,0,0,Canceled,2019-03-04 -Resort Hotel,1,89,2017,May,27,24,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,152.09,0,0,Canceled,2020-04-02 -City Hotel,0,45,2016,October,44,13,2,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,80.91,0,0,Check-Out,2019-09-03 -Resort Hotel,0,19,2015,December,50,26,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,146.0,179.0,0,Transient-Party,73.69,0,0,Check-Out,2018-07-03 -Resort Hotel,0,111,2015,December,51,17,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,3,No Deposit,244.0,179.0,0,Transient,36.9,0,0,Check-Out,2018-11-02 -Resort Hotel,0,112,2015,November,51,24,0,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,63.62,0,2,Check-Out,2018-09-02 -City Hotel,1,47,2017,February,7,18,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,67.07,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,August,38,17,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.46,0,0,Check-Out,2020-06-02 -City Hotel,0,34,2017,May,21,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.7,0,0,Check-Out,2020-05-03 -City Hotel,0,229,2015,October,44,16,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,79.0,235.0,0,Transient-Party,93.57,0,0,Check-Out,2018-09-02 -Resort Hotel,0,155,2017,June,21,13,2,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,284.0,179.0,0,Transient,177.27,0,0,Check-Out,2020-04-02 -City Hotel,0,86,2016,October,44,27,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.23,0,2,Check-Out,2018-09-02 -Resort Hotel,1,251,2016,December,53,28,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,72.71,0,0,Canceled,2019-10-04 -City Hotel,0,8,2016,October,46,30,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,160.41,0,1,Check-Out,2019-08-04 -City Hotel,1,44,2016,May,21,15,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,111.14,0,1,Canceled,2020-02-01 -City Hotel,0,17,2015,December,53,28,2,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,97.91,0,2,Check-Out,2018-11-02 -City Hotel,1,21,2016,November,51,29,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,A,0,Non Refund,13.0,179.0,0,Transient,82.3,0,0,Canceled,2019-11-03 -City Hotel,0,15,2016,June,28,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,214.0,0,Transient,121.33,1,0,Check-Out,2019-07-04 -Resort Hotel,0,34,2017,February,10,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,F,2,No Deposit,14.0,45.0,0,Transient,42.55,0,0,Check-Out,2019-12-04 -Resort Hotel,0,13,2015,October,50,22,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,25.62,0,0,Check-Out,2018-09-02 -City Hotel,1,38,2016,October,44,28,1,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,76.4,0,0,Canceled,2019-08-04 -City Hotel,1,261,2016,August,17,16,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,105.57,0,0,Canceled,2018-07-03 -City Hotel,0,3,2015,September,44,17,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,115.3,0,0,Check-Out,2018-08-03 -City Hotel,1,77,2016,April,15,21,1,5,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,75.21,0,0,Canceled,2019-03-04 -City Hotel,1,354,2016,August,33,6,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,122.62,0,1,Canceled,2018-06-02 -City Hotel,1,272,2017,June,38,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,122.39,0,0,Canceled,2018-01-03 -City Hotel,1,97,2016,February,8,21,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,63.43,0,0,Canceled,2019-02-01 -Resort Hotel,1,0,2017,January,18,19,2,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,321.0,179.0,0,Transient,32.96,0,0,Canceled,2020-01-04 -Resort Hotel,0,79,2016,August,37,7,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,79.93,0,1,Check-Out,2019-08-04 -City Hotel,0,7,2015,October,44,25,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,121.23,0,0,Check-Out,2018-09-02 -Resort Hotel,0,53,2017,May,23,13,4,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,177.0,179.0,0,Transient-Party,126.71,1,0,Check-Out,2020-05-03 -City Hotel,0,37,2017,February,9,4,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,116.99,1,2,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,January,2,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,73.0,0,Transient,41.01,0,0,Check-Out,2020-01-04 -Resort Hotel,1,23,2017,August,36,15,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,218.54,0,2,Canceled,2020-03-03 -City Hotel,0,2,2016,March,9,9,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,88.88,0,0,Check-Out,2019-01-03 -City Hotel,1,31,2016,September,35,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.26,0,1,Canceled,2019-08-04 -City Hotel,0,4,2016,October,27,20,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,F,K,1,No Deposit,10.0,179.0,0,Transient,0.89,0,0,Check-Out,2019-03-04 -Resort Hotel,0,88,2016,June,27,28,2,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,165.49,0,2,Check-Out,2019-05-04 -Resort Hotel,0,0,2017,January,2,3,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,2,No Deposit,14.0,73.0,0,Transient,36.87,1,0,Check-Out,2019-12-04 -City Hotel,1,113,2016,September,45,28,1,3,2,0.0,0,Undefined,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.4,0,1,Canceled,2019-06-03 -Resort Hotel,0,144,2016,November,50,5,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,213.12,0,0,Check-Out,2019-05-04 -City Hotel,0,8,2016,July,29,20,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.07,0,2,Check-Out,2019-05-04 -City Hotel,0,0,2017,June,25,10,1,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,E,0,No Deposit,10.0,179.0,0,Group,87.9,0,2,Check-Out,2020-02-01 -City Hotel,0,29,2016,December,53,11,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,68.65,0,2,Check-Out,2018-11-02 -Resort Hotel,1,0,2016,February,11,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,15.0,223.0,0,Transient,37.76,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2015,November,50,25,2,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,352.0,331.0,0,Transient,28.69,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2017,April,15,30,1,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,77.04,0,0,Check-Out,2020-03-03 -City Hotel,0,165,2017,May,22,30,2,3,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,123.54,0,3,Canceled,2020-06-02 -Resort Hotel,1,191,2017,May,20,21,2,2,2,2.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,170.0,179.0,0,Transient,165.26,0,0,Canceled,2020-03-03 -Resort Hotel,0,2,2015,October,44,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,72.0,0,Transient,113.96,0,0,Check-Out,2018-09-02 -Resort Hotel,0,254,2016,October,44,25,2,4,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,247.0,179.0,0,Transient,63.66,1,2,Check-Out,2019-10-04 -City Hotel,0,13,2017,May,21,7,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.77,0,0,Check-Out,2020-04-02 -City Hotel,0,309,2015,November,44,17,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,91.88,0,0,Check-Out,2018-09-02 -Resort Hotel,0,38,2017,March,11,31,1,4,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,222.0,0,Transient-Party,44.92,0,0,Check-Out,2020-03-03 -City Hotel,0,11,2016,May,22,16,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient,79.88,0,2,Check-Out,2019-02-01 -Resort Hotel,1,93,2017,June,32,21,0,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,202.27,0,0,Canceled,2020-04-02 -Resort Hotel,0,12,2017,July,12,6,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,151.0,179.0,0,Transient,70.07,0,1,Check-Out,2020-03-03 -City Hotel,0,98,2016,March,17,13,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,42.3,0,0,Check-Out,2019-11-03 -Resort Hotel,0,4,2017,May,17,7,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,29.92,0,2,Check-Out,2020-04-02 -Resort Hotel,0,100,2016,July,25,9,2,5,2,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,137.0,179.0,0,Contract,94.87,0,0,Check-Out,2019-02-01 -City Hotel,0,85,2016,June,26,27,2,0,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,96.21,0,2,Check-Out,2019-04-03 -City Hotel,0,20,2017,August,32,4,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,95.11,0,2,Check-Out,2020-05-03 -Resort Hotel,0,152,2016,April,23,29,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,136.71,0,1,Check-Out,2019-03-04 -City Hotel,1,23,2016,January,44,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,105.41,0,0,Canceled,2019-11-03 -City Hotel,0,244,2017,June,27,15,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.2,0,1,Check-Out,2020-04-02 -Resort Hotel,0,277,2016,August,36,5,2,1,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,122.25,1,2,Check-Out,2019-05-04 -City Hotel,1,134,2016,December,53,8,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.93,0,1,Canceled,2019-11-03 -Resort Hotel,0,99,2015,August,35,9,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,42.17,0,0,Check-Out,2018-06-02 -Resort Hotel,0,131,2016,October,45,31,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,Refundable,15.0,223.0,0,Transient-Party,43.06,0,0,Check-Out,2019-08-04 -City Hotel,0,167,2017,June,37,29,1,4,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,237.0,179.0,0,Transient,243.42,1,1,Check-Out,2020-02-01 -City Hotel,0,16,2016,August,38,27,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,121.48,0,1,Check-Out,2019-07-04 -City Hotel,1,329,2016,July,26,16,2,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.17,1,0,Canceled,2019-11-03 -Resort Hotel,1,168,2017,March,12,22,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,10.0,222.0,0,Transient-Party,45.86,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2017,April,18,14,0,3,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,I,1,No Deposit,378.0,179.0,0,Transient,2.28,0,0,Check-Out,2020-01-04 -City Hotel,0,2,2015,August,32,4,0,1,2,0.0,0,BB,,Online TA,Undefined,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,60.47,0,1,Check-Out,2018-06-02 -City Hotel,0,34,2017,August,40,31,1,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.83,0,1,Check-Out,2020-01-04 -City Hotel,0,0,2016,January,4,28,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,92.35,0,0,Check-Out,2019-02-01 -Resort Hotel,1,100,2015,June,15,28,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient-Party,60.43,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,August,37,13,4,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,194.69,0,1,Check-Out,2019-04-03 -City Hotel,1,44,2017,April,17,28,0,3,2,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,111.93,0,0,Canceled,2019-11-03 -City Hotel,1,147,2016,June,33,16,0,4,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.78,0,2,Canceled,2019-05-04 -City Hotel,1,46,2016,October,42,5,2,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.64,0,0,Canceled,2019-11-03 -Resort Hotel,0,11,2016,September,35,24,0,2,2,0.0,0,HB,GBR,Complementary,Corporate,0,0,0,A,K,1,No Deposit,247.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-05-04 -City Hotel,1,13,2017,March,19,13,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,86.11,0,0,Canceled,2019-02-01 -City Hotel,0,80,2016,December,25,17,2,6,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,G,F,1,No Deposit,14.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -Resort Hotel,0,1,2015,September,44,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,73.55,0,0,Check-Out,2019-09-03 -City Hotel,1,93,2015,October,45,5,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,75.28,0,0,Canceled,2018-09-02 -City Hotel,0,56,2016,January,4,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,38.0,179.0,0,Transient-Party,61.23,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,January,4,14,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,62.36,1,0,Check-Out,2018-10-03 -Resort Hotel,0,14,2016,February,9,2,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,65.21,0,0,Check-Out,2019-03-04 -City Hotel,1,265,2017,June,30,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,156.5,0,0,Canceled,2020-04-02 -Resort Hotel,1,23,2016,August,35,5,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,131.3,0,0,Canceled,2019-01-03 -Resort Hotel,0,16,2016,November,50,2,1,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,190.0,179.0,0,Transient,61.27,0,0,Canceled,2019-11-03 -City Hotel,0,146,2017,June,27,23,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.72,0,2,Check-Out,2020-04-02 -City Hotel,1,262,2017,August,32,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Contract,125.94,0,0,Canceled,2020-05-03 -City Hotel,0,3,2017,May,21,21,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,1.32,0,0,Check-Out,2020-03-03 -Resort Hotel,0,10,2015,November,53,6,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,38.22,1,0,Check-Out,2018-08-03 -Resort Hotel,0,17,2015,October,43,21,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,88.98,0,1,Check-Out,2018-08-03 -City Hotel,0,47,2015,December,50,9,2,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.41,0,1,Check-Out,2019-10-04 -City Hotel,0,86,2017,April,18,19,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,95.66,0,1,Check-Out,2020-04-02 -City Hotel,1,110,2015,July,44,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,75,Transient-Party,62.33,0,0,Canceled,2018-06-02 -Resort Hotel,0,25,2017,March,13,4,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,104.66,1,1,Check-Out,2020-01-04 -Resort Hotel,0,1,2016,October,43,9,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,1,No Deposit,250.0,179.0,0,Transient,34.78,1,0,Check-Out,2019-03-04 -Resort Hotel,1,34,2015,August,38,2,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,161.05,0,1,Check-Out,2018-06-02 -City Hotel,0,58,2017,August,34,24,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,212.06,0,1,Check-Out,2020-06-02 -Resort Hotel,1,247,2015,February,35,5,0,2,2,0.0,0,FB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Refundable,86.0,179.0,0,Transient,74.18,0,0,Canceled,2019-01-03 -City Hotel,1,39,2016,August,35,2,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.57,0,0,Canceled,2019-03-04 -Resort Hotel,0,28,2015,December,33,9,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,49.71,0,0,Check-Out,2018-06-02 -Resort Hotel,0,28,2016,October,42,27,2,1,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,1,No Deposit,250.0,179.0,0,Transient,155.56,1,3,Check-Out,2019-03-04 -Resort Hotel,0,260,2016,June,25,23,1,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient-Party,91.11,0,0,Check-Out,2019-05-04 -Resort Hotel,1,278,2017,August,37,16,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,240.0,179.0,0,Transient,153.51,0,1,Canceled,2020-06-02 -Resort Hotel,1,44,2017,January,53,23,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,114.92,0,0,Canceled,2019-10-04 -City Hotel,0,61,2016,December,53,30,1,0,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,69.88,0,2,Check-Out,2019-10-04 -City Hotel,1,247,2017,March,17,26,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,159.32,0,0,Canceled,2019-10-04 -City Hotel,0,200,2017,June,25,5,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,126.78,0,2,Check-Out,2020-07-03 -Resort Hotel,0,307,2016,May,23,29,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,Refundable,12.0,223.0,0,Transient-Party,62.33,0,0,Check-Out,2020-03-03 -Resort Hotel,1,52,2016,July,33,5,1,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,116.39,0,2,Canceled,2019-06-03 -Resort Hotel,1,342,2017,July,26,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,161.81,0,1,Canceled,2020-06-02 -Resort Hotel,0,16,2016,April,19,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient-Party,61.0,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2015,July,35,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,19.0,179.0,0,Transient,3.95,0,0,Check-Out,2020-05-03 -City Hotel,0,46,2015,December,50,11,2,2,1,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,73.52,0,0,Check-Out,2018-09-02 -City Hotel,1,85,2016,August,31,6,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,172.24,0,0,Canceled,2018-11-02 -Resort Hotel,0,99,2016,May,23,29,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,75.75,0,0,Check-Out,2019-03-04 -City Hotel,1,162,2016,June,29,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,18.0,179.0,0,Transient,122.7,0,0,Canceled,2019-04-03 -City Hotel,1,444,2016,October,28,25,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.25,0,1,Canceled,2018-08-03 -City Hotel,0,358,2017,July,36,21,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,104.14,0,0,Check-Out,2020-07-03 -City Hotel,0,46,2016,March,9,25,2,1,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.95,0,0,Check-Out,2018-11-02 -City Hotel,0,8,2016,May,23,21,1,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,128.45,0,2,Check-Out,2019-04-03 -City Hotel,1,100,2016,October,45,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,17,Transient,59.64,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2016,August,37,24,0,3,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,14.0,78.0,0,Transient,124.86,0,0,Check-Out,2019-06-03 -Resort Hotel,1,147,2017,June,17,21,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,62.0,179.0,75,Transient,104.03,0,0,Canceled,2020-04-02 -City Hotel,0,3,2017,June,25,23,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,96.85,0,0,Check-Out,2019-11-03 -City Hotel,0,4,2016,October,42,22,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.35,0,2,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,June,43,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,112.99,0,2,Check-Out,2019-06-03 -City Hotel,1,21,2016,February,10,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.83,0,0,Canceled,2018-11-02 -Resort Hotel,0,46,2016,July,29,5,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Transient,127.54,0,0,Check-Out,2020-06-02 -Resort Hotel,1,147,2016,April,21,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,13.0,241.0,0,Transient,37.91,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,February,10,18,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,1,No Deposit,329.0,179.0,0,Transient,43.23,1,0,Check-Out,2019-02-01 -Resort Hotel,1,41,2015,October,46,31,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,60.41,0,0,Canceled,2018-06-02 -Resort Hotel,0,20,2016,October,41,20,2,10,2,1.0,0,HB,IRL,Direct,Direct,0,0,0,A,F,2,No Deposit,250.0,179.0,0,Transient,43.67,1,1,Check-Out,2019-10-04 -City Hotel,0,32,2016,May,24,30,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,317.0,179.0,0,Transient-Party,67.9,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2016,May,16,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,80.24,0,0,Check-Out,2019-02-01 -Resort Hotel,0,41,2016,March,17,18,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,87.24,0,2,Check-Out,2019-02-01 -Resort Hotel,0,10,2016,March,11,29,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,67.41,0,0,Check-Out,2018-11-02 -City Hotel,1,0,2015,January,4,21,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Group,123.7,0,3,No-Show,2018-12-03 -Resort Hotel,0,1,2016,May,23,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,3,No Deposit,246.0,179.0,0,Transient,114.55,0,1,Check-Out,2019-02-01 -City Hotel,1,51,2015,October,32,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,114.16,0,0,Canceled,2017-12-03 -City Hotel,0,1,2015,September,35,14,0,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,123.85,0,0,Check-Out,2018-07-03 -Resort Hotel,0,18,2016,October,42,26,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,66.07,0,2,Check-Out,2019-07-04 -City Hotel,1,9,2016,January,3,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.99,0,0,Canceled,2019-01-03 -Resort Hotel,0,12,2017,May,20,30,1,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,C,2,Refundable,288.0,223.0,0,Transient-Party,87.26,1,0,Check-Out,2020-02-01 -City Hotel,0,0,2017,July,33,30,1,2,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,124.84,1,2,Check-Out,2020-07-03 -Resort Hotel,1,52,2017,July,31,25,3,5,2,1.0,0,HB,POL,Direct,Direct,0,0,0,F,F,0,No Deposit,250.0,179.0,0,Transient,217.11,0,3,Canceled,2020-06-02 -City Hotel,0,1,2016,February,8,19,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,76.0,64,Transient,76.24,1,2,Check-Out,2018-10-03 -Resort Hotel,0,53,2015,July,36,6,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,208.77,1,2,Check-Out,2019-07-04 -Resort Hotel,0,3,2015,October,41,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Group,60.36,0,1,Check-Out,2018-08-03 -Resort Hotel,0,3,2015,October,34,12,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,343.0,179.0,0,Transient-Party,62.66,0,0,Check-Out,2018-09-02 -City Hotel,1,136,2016,October,53,25,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,37,Transient,78.11,0,0,Canceled,2019-08-04 -City Hotel,1,379,2016,March,17,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,60,Transient,63.22,0,0,Canceled,2018-10-03 -City Hotel,1,43,2017,August,39,27,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,29.0,179.0,0,Transient,129.9,0,0,Canceled,2020-07-03 -City Hotel,0,4,2016,May,21,12,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,331.0,0,Transient,126.57,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2015,December,50,10,2,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient-Party,86.59,0,3,Check-Out,2018-09-02 -Resort Hotel,0,9,2016,January,4,10,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,61.42,0,1,Check-Out,2019-10-04 -City Hotel,1,1,2016,December,9,27,2,0,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,0,110,2017,May,22,2,2,1,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,155.57,1,1,Check-Out,2020-05-03 -Resort Hotel,0,42,2017,March,15,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,68.84,0,0,Check-Out,2020-03-03 -Resort Hotel,1,53,2017,February,11,24,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,168.0,179.0,0,Transient,62.28,0,0,Canceled,2020-04-02 -Resort Hotel,0,10,2017,August,36,28,0,1,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,244.0,179.0,0,Transient,95.69,1,0,Check-Out,2020-06-02 -City Hotel,1,276,2016,May,22,30,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,13.0,224.0,0,Transient-Party,118.18,0,0,Canceled,2019-04-03 -Resort Hotel,0,91,2016,April,23,25,1,7,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,62.54,0,0,Check-Out,2019-03-04 -Resort Hotel,0,147,2017,June,26,29,2,6,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,113.97,0,2,Check-Out,2020-03-03 -City Hotel,0,19,2017,March,9,9,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,130.68,0,1,Check-Out,2020-06-02 -Resort Hotel,0,117,2016,June,21,2,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,166.34,0,1,Check-Out,2019-06-03 -City Hotel,0,41,2016,June,25,10,2,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,86.0,179.0,0,Group,78.39,0,0,Check-Out,2019-02-01 -City Hotel,1,303,2016,September,36,3,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,157.83,0,0,Canceled,2019-10-04 -City Hotel,0,88,2015,July,32,4,0,3,3,0.0,0,HB,SWE,Undefined,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,48.79,0,1,Check-Out,2019-06-03 -City Hotel,0,123,2017,March,16,14,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,138.93,0,1,Check-Out,2020-04-02 -Resort Hotel,0,29,2016,June,25,18,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,241.0,179.0,0,Transient,135.91,0,3,Check-Out,2019-05-04 -City Hotel,1,201,2015,August,37,27,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,125.42,0,0,Canceled,2018-05-03 -Resort Hotel,0,123,2016,May,23,30,1,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient,57.44,0,0,Check-Out,2019-06-03 -City Hotel,1,107,2017,April,18,31,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,76.42,0,3,Canceled,2020-02-01 -City Hotel,1,51,2016,September,45,20,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.8,0,0,Canceled,2019-09-03 -Resort Hotel,0,87,2017,June,15,13,2,3,3,1.0,0,BB,GBR,Online TA,Direct,0,0,0,H,H,1,No Deposit,191.0,179.0,0,Transient,2.64,1,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,March,16,10,1,2,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.23,0,1,Check-Out,2019-03-04 -Resort Hotel,0,86,2017,January,4,2,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.81,1,3,Check-Out,2019-11-03 -Resort Hotel,0,141,2016,April,22,10,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,74.59,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,March,9,19,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient-Party,88.6,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,May,23,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,14.0,45.0,0,Transient,76.9,0,1,Check-Out,2019-03-04 -Resort Hotel,1,381,2017,March,22,24,2,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,181.0,179.0,0,Transient,130.83,0,1,Canceled,2020-04-02 -Resort Hotel,0,158,2017,April,21,6,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,84.36,0,2,Check-Out,2019-12-04 -Resort Hotel,0,0,2015,December,50,2,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,62.96,1,0,Check-Out,2018-06-02 -City Hotel,0,21,2015,October,44,31,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,77.53,0,0,Check-Out,2018-08-03 -City Hotel,1,274,2017,January,10,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,67.46,0,0,Canceled,2019-10-04 -City Hotel,1,35,2017,May,26,19,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,120.76,0,0,Canceled,2020-02-01 -City Hotel,0,140,2016,July,29,6,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,79.87,0,0,Check-Out,2019-05-04 -City Hotel,1,37,2016,February,10,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,41,Transient,69.5,0,0,Canceled,2018-09-02 -City Hotel,1,325,2015,December,53,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,61.24,0,0,Canceled,2019-11-03 -Resort Hotel,0,40,2016,March,16,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Transient-Party,73.22,0,0,Check-Out,2019-03-04 -City Hotel,1,156,2017,March,10,29,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,136.86,0,0,Canceled,2020-03-03 -City Hotel,0,47,2015,September,36,10,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,69.0,179.0,0,Transient-Party,83.07,0,0,Check-Out,2018-08-03 -Resort Hotel,0,52,2016,October,44,24,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,71.14,0,0,Check-Out,2019-09-03 -City Hotel,0,111,2015,September,29,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,35,Transient-Party,64.15,0,0,Check-Out,2018-08-03 -City Hotel,1,289,2017,May,9,15,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,75.48,0,1,Canceled,2019-11-03 -City Hotel,1,284,2017,July,29,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,1.0,179.0,0,Transient,60.9,0,0,Canceled,2020-04-02 -City Hotel,1,19,2017,January,4,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.1,0,0,Canceled,2019-10-04 -City Hotel,0,4,2017,February,10,12,0,3,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.09,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2017,February,9,8,1,0,3,0.0,0,BB,,Online TA,Direct,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,0.01,0,0,Check-Out,2020-04-02 -City Hotel,0,18,2016,May,24,26,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,173.0,179.0,0,Transient-Party,133.31,0,0,Check-Out,2019-04-03 -Resort Hotel,1,136,2016,May,20,21,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,241.0,179.0,0,Transient,114.73,0,0,No-Show,2019-02-01 -City Hotel,0,59,2016,October,44,9,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,86.0,179.0,0,Transient-Party,115.95,0,0,Check-Out,2019-01-03 -City Hotel,1,48,2016,December,51,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,8.0,179.0,42,Transient,75.31,0,0,Canceled,2018-11-02 -City Hotel,0,250,2016,August,35,14,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,166.16,0,1,Canceled,2019-06-03 -City Hotel,0,0,2016,February,9,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.11,0,3,Check-Out,2019-02-01 -City Hotel,1,303,2017,June,22,21,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,206.22,0,0,Canceled,2020-02-01 -City Hotel,0,148,2016,November,43,19,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,107.98,0,0,Check-Out,2019-08-04 -City Hotel,0,147,2015,September,36,27,2,3,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,89.25,0,1,Check-Out,2018-07-03 -City Hotel,0,157,2017,July,26,27,2,2,1,0.0,0,BB,USA,Aviation,Direct,1,0,1,A,A,2,No Deposit,244.0,179.0,0,Transient,131.38,1,3,Check-Out,2020-06-02 -Resort Hotel,1,93,2017,July,35,25,2,2,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,214.04,0,0,Canceled,2019-05-04 -Resort Hotel,0,35,2015,December,53,31,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,63.4,0,2,Check-Out,2018-11-02 -City Hotel,1,7,2016,June,27,27,0,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,116.85,0,0,Canceled,2019-05-04 -City Hotel,0,78,2015,August,36,5,2,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,116.44,0,1,Canceled,2019-05-04 -City Hotel,0,3,2015,October,48,22,2,1,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,75.99,0,0,Check-Out,2018-09-02 -Resort Hotel,0,92,2016,March,9,14,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,131.0,179.0,0,Transient,36.91,0,0,Check-Out,2019-02-01 -City Hotel,0,47,2017,June,17,15,0,4,3,0.0,0,BB,USA,Direct,Direct,0,0,0,F,G,1,No Deposit,15.0,179.0,0,Transient,111.32,0,1,Check-Out,2020-06-02 -City Hotel,1,37,2017,May,22,19,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.34,0,2,Canceled,2019-12-04 -City Hotel,1,27,2015,November,45,18,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,87.79,0,1,Canceled,2018-09-02 -Resort Hotel,0,17,2016,March,17,28,1,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,100.0,179.0,0,Transient,59.14,0,0,Check-Out,2019-03-04 -City Hotel,0,235,2017,August,26,5,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,93.6,0,0,Check-Out,2020-06-02 -City Hotel,0,3,2016,October,44,13,0,1,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,67.61,0,0,Check-Out,2019-10-04 -City Hotel,0,35,2016,October,44,13,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,137.96,0,0,Canceled,2019-08-04 -City Hotel,0,252,2015,September,33,17,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,104.99,0,2,Check-Out,2018-08-03 -Resort Hotel,0,3,2016,September,38,12,1,2,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,216.98,0,0,Check-Out,2019-08-04 -City Hotel,0,37,2016,December,53,4,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,150.67,0,1,Check-Out,2019-07-04 -Resort Hotel,0,280,2017,August,35,13,2,5,2,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient-Party,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,44,2017,January,2,23,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,75.0,0,Transient,36.96,1,2,Check-Out,2019-11-03 -Resort Hotel,0,1,2017,March,12,16,2,5,1,0.0,0,HB,AUT,Groups,Corporate,1,0,1,E,I,1,No Deposit,12.0,223.0,75,Transient-Party,60.59,1,0,Check-Out,2020-01-04 -City Hotel,0,262,2015,August,32,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,36.0,179.0,0,Contract,77.99,0,0,Check-Out,2018-08-03 -Resort Hotel,0,148,2016,November,43,23,3,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,368.0,179.0,0,Transient,89.66,0,0,Check-Out,2019-09-03 -City Hotel,1,96,2017,February,11,16,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,E,A,0,Non Refund,11.0,331.0,0,Transient-Party,116.2,0,0,Canceled,2019-11-03 -City Hotel,0,9,2015,July,32,19,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,58.72,0,0,Check-Out,2018-01-03 -City Hotel,0,2,2016,March,16,22,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,87.71,0,1,Check-Out,2019-03-04 -City Hotel,1,0,2015,June,28,17,2,0,1,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Contract,44.85,0,1,Canceled,2018-12-03 -Resort Hotel,0,0,2015,October,43,17,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,L,C,1,No Deposit,246.0,179.0,0,Transient,36.27,0,0,Check-Out,2018-08-03 -Resort Hotel,1,430,2015,September,44,30,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,247.0,179.0,0,Transient,73.49,0,0,Canceled,2019-07-04 -Resort Hotel,1,142,2016,June,33,6,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,71.15,0,2,Canceled,2019-05-04 -City Hotel,1,392,2016,October,42,15,2,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,2.0,179.0,0,Transient,61.39,0,0,Canceled,2019-12-04 -City Hotel,0,276,2017,August,32,15,0,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,89.2,0,0,Check-Out,2020-06-02 -City Hotel,0,242,2015,September,34,21,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.07,0,0,Check-Out,2018-05-03 -Resort Hotel,0,116,2016,January,4,6,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,79.11,1,1,Check-Out,2019-06-03 -Resort Hotel,0,148,2016,December,51,21,4,1,2,0.0,0,BB,FRA,Direct,Direct,1,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,60.31,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,February,11,31,1,2,1,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,322.0,331.0,0,Transient-Party,70.65,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,November,44,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,94.79,0,0,Check-Out,2018-09-02 -Resort Hotel,0,43,2017,May,22,4,1,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,246.0,179.0,0,Transient,178.77,0,2,Check-Out,2020-04-02 -Resort Hotel,0,9,2017,June,26,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,155.27,0,1,Check-Out,2019-06-03 -City Hotel,1,282,2015,July,33,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.96,0,0,Canceled,2018-08-03 -Resort Hotel,1,18,2016,September,36,9,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,168.0,179.0,0,Transient-Party,63.2,0,0,Canceled,2019-06-03 -City Hotel,1,53,2015,July,33,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,89.98,0,0,Canceled,2018-07-03 -City Hotel,0,11,2016,July,25,2,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,106.71,0,3,Check-Out,2019-06-03 -City Hotel,0,46,2016,October,43,28,2,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,100.53,0,0,Check-Out,2019-08-04 -Resort Hotel,0,14,2015,December,51,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,81.27,1,2,Check-Out,2019-01-03 -City Hotel,0,232,2017,May,36,10,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.7,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,November,44,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,68.75,0,0,Check-Out,2019-08-04 -Resort Hotel,0,30,2017,August,21,6,2,5,3,1.0,0,BB,USA,Online TA,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-07-03 -Resort Hotel,0,14,2017,June,19,18,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,F,0,No Deposit,378.0,179.0,0,Transient,121.56,0,3,Check-Out,2020-04-02 -City Hotel,1,424,2016,December,53,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,42,Transient,73.26,0,0,Canceled,2018-11-02 -City Hotel,1,50,2015,December,32,5,2,1,2,2.0,0,BB,PRT,Groups,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Contract,71.88,0,0,Canceled,2018-08-03 -City Hotel,1,66,2016,March,12,16,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,62.61,0,0,Canceled,2019-11-03 -City Hotel,0,55,2016,August,39,24,0,4,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,75.51,0,1,Check-Out,2019-06-03 -City Hotel,0,50,2017,March,17,22,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,98.84,0,2,Check-Out,2020-01-04 -Resort Hotel,0,104,2015,December,50,10,2,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,48.79,0,1,Check-Out,2018-12-03 -Resort Hotel,0,152,2017,August,37,31,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient,60.9,0,1,Check-Out,2019-09-03 -City Hotel,0,96,2017,July,32,13,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.0,0,1,Check-Out,2020-07-03 -City Hotel,0,51,2016,March,16,24,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,151.81,0,0,Check-Out,2019-03-04 -Resort Hotel,0,189,2016,June,27,20,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,226.94,1,1,Check-Out,2019-06-03 -City Hotel,0,42,2017,May,21,25,2,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,F,0,No Deposit,13.0,180.0,0,Transient,105.33,0,0,Check-Out,2019-06-03 -City Hotel,0,23,2017,May,21,9,1,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-02-01 -City Hotel,0,193,2017,March,18,28,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,117.48,0,0,Check-Out,2020-06-02 -Resort Hotel,0,163,2017,January,4,23,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,322.0,179.0,0,Transient-Party,33.69,0,0,Check-Out,2020-03-03 -City Hotel,1,36,2017,February,11,13,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,80.0,179.0,0,Transient,71.74,0,0,Canceled,2019-10-04 -City Hotel,0,16,2017,June,22,30,1,0,1,0.0,0,BB,DEU,Aviation,Corporate,1,0,0,A,A,0,No Deposit,13.0,144.0,0,Transient,133.92,0,0,Check-Out,2020-05-03 -City Hotel,0,4,2017,August,38,28,0,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,176.31,0,1,Check-Out,2020-07-03 -City Hotel,1,154,2017,March,9,30,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,61.95,0,0,Canceled,2020-06-02 -Resort Hotel,1,192,2017,July,30,18,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,64.69,0,1,Canceled,2019-12-04 -City Hotel,0,13,2017,July,26,25,0,3,1,0.0,0,HB,ESP,Groups,Direct,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient-Party,102.71,0,0,Check-Out,2020-06-02 -Resort Hotel,0,41,2017,August,32,5,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient,224.8,0,0,Check-Out,2019-09-03 -City Hotel,0,379,2015,October,44,9,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,25.0,179.0,64,Transient-Party,117.59,0,0,Check-Out,2018-09-02 -City Hotel,0,265,2016,June,25,28,1,2,1,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Transient-Party,94.59,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2016,January,5,20,1,1,3,1.0,0,BB,IRL,Online TA,Direct,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,100.94,0,0,Check-Out,2019-10-04 -Resort Hotel,0,3,2015,October,44,2,1,1,1,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,44.73,0,0,Check-Out,2018-06-02 -Resort Hotel,1,45,2015,September,37,6,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,75.0,179.0,0,Transient,64.77,0,2,Check-Out,2018-06-02 -City Hotel,0,148,2016,December,25,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,79.84,0,0,Check-Out,2018-11-02 -City Hotel,1,11,2016,August,32,6,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.67,0,0,Canceled,2019-02-01 -City Hotel,0,258,2017,June,34,27,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,130.76,0,1,Check-Out,2020-04-02 -City Hotel,0,40,2017,June,27,27,0,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,172.0,179.0,0,Transient,117.07,0,1,Check-Out,2020-07-03 -Resort Hotel,0,4,2015,October,46,20,1,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,C,0,No Deposit,104.0,179.0,0,Transient-Party,34.09,0,0,Check-Out,2018-08-03 -Resort Hotel,1,94,2015,August,35,16,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,175.15,0,2,Canceled,2018-05-03 -City Hotel,0,31,2016,December,50,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,240.0,0,Transient,72.98,1,0,Check-Out,2018-11-02 -Resort Hotel,0,1,2015,September,36,10,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,125.24,1,0,Check-Out,2018-06-02 -City Hotel,0,88,2017,May,21,17,0,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,112.44,0,1,Canceled,2020-05-03 -City Hotel,1,97,2015,July,46,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,G,A,0,Non Refund,16.0,179.0,0,Transient,114.92,0,0,Canceled,2018-08-03 -Resort Hotel,1,81,2015,July,37,5,2,2,2,0.0,0,BB,PRT,Direct,Corporate,1,1,1,A,A,0,No Deposit,17.0,179.0,0,Transient,38.86,0,1,Canceled,2018-07-03 -Resort Hotel,1,200,2017,July,32,17,2,1,1,1.0,0,HB,IRL,Direct,Direct,0,0,0,E,F,0,No Deposit,247.0,179.0,0,Transient,182.3,0,2,Canceled,2020-06-02 -City Hotel,0,48,2016,August,43,5,2,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,173.27,0,1,Check-Out,2019-06-03 -City Hotel,0,44,2016,August,38,19,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,171.97,0,1,Check-Out,2019-07-04 -City Hotel,1,136,2016,October,43,30,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,74.39,0,0,Canceled,2018-12-03 -City Hotel,0,52,2015,November,50,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,59.69,0,0,Check-Out,2018-08-03 -City Hotel,0,16,2017,August,35,31,1,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,97.8,1,2,Check-Out,2020-07-03 -City Hotel,0,145,2016,December,49,17,0,5,1,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.95,0,0,Check-Out,2019-11-03 -City Hotel,0,139,2016,September,37,18,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.02,0,2,Check-Out,2019-07-04 -Resort Hotel,0,215,2016,July,37,22,2,5,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,238.0,179.0,0,Transient,103.8,0,0,Check-Out,2018-05-03 -Resort Hotel,0,44,2016,February,10,9,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,215.0,179.0,0,Transient,43.88,0,0,Check-Out,2018-11-02 -City Hotel,0,27,2016,December,53,5,1,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.14,0,1,Check-Out,2019-08-04 -City Hotel,0,1,2017,April,17,6,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,161.0,179.0,0,Transient,80.32,0,0,Check-Out,2020-03-03 -Resort Hotel,0,44,2017,March,11,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,132.39,0,0,Check-Out,2020-01-04 -City Hotel,0,5,2015,August,39,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,58.17,0,0,Check-Out,2018-06-02 -City Hotel,0,155,2016,June,27,17,2,5,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,378.0,179.0,0,Transient,203.1,0,2,Check-Out,2019-02-01 -Resort Hotel,1,102,2016,March,10,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,15.0,66.0,0,Transient,39.08,0,0,Canceled,2019-02-01 -Resort Hotel,0,82,2016,August,32,8,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient-Party,179.52,1,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,January,4,6,1,0,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,31.24,0,0,Check-Out,2018-10-03 -Resort Hotel,1,390,2016,August,42,28,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,180.0,179.0,0,Transient,70.8,0,0,Canceled,2018-09-02 -City Hotel,0,255,2016,April,20,9,0,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,0,Contract,125.85,0,1,Check-Out,2019-02-01 -City Hotel,0,1,2015,September,41,6,0,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient-Party,122.28,0,0,Check-Out,2018-08-03 -City Hotel,1,45,2016,July,30,19,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,200.27,0,0,Canceled,2020-03-03 -City Hotel,1,1,2016,January,3,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,69.83,0,0,No-Show,2018-11-02 -City Hotel,0,15,2016,July,27,4,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.17,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,June,24,26,0,1,2,0.0,0,HB,GBR,Complementary,Direct,1,0,0,C,I,2,No Deposit,347.0,179.0,75,Transient,0.0,1,0,Check-Out,2020-05-03 -City Hotel,1,99,2016,March,16,25,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,69.69,0,0,Canceled,2018-12-03 -City Hotel,1,67,2016,October,43,24,1,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,122.28,0,0,Canceled,2019-07-04 -City Hotel,0,1,2016,October,45,29,1,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,200.0,179.0,0,Transient,110.88,0,0,Check-Out,2019-09-03 -Resort Hotel,0,46,2015,December,53,25,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient,62.2,0,0,Check-Out,2019-01-03 -City Hotel,1,52,2016,May,43,28,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.55,0,0,Canceled,2019-02-01 -City Hotel,0,41,2015,November,37,6,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,95.37,0,1,Check-Out,2018-08-03 -City Hotel,1,45,2017,January,4,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.23,0,0,Canceled,2019-11-03 -City Hotel,0,102,2016,September,26,31,0,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,102.45,0,0,Check-Out,2019-05-04 -Resort Hotel,0,3,2015,October,46,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,331.0,0,Transient-Party,61.49,0,0,Check-Out,2018-09-02 -Resort Hotel,1,62,2016,October,42,2,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,113.77,0,0,Canceled,2019-08-04 -Resort Hotel,0,23,2016,February,9,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,76.0,0,Transient,67.09,1,2,Check-Out,2018-11-02 -City Hotel,1,232,2017,June,29,10,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.87,0,1,Canceled,2020-04-02 -City Hotel,0,5,2016,March,51,24,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,93.11,0,2,Check-Out,2019-11-03 -Resort Hotel,1,273,2017,December,53,28,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,79.54,0,0,Canceled,2019-11-03 -City Hotel,1,163,2016,April,26,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient,73.98,0,0,Canceled,2018-11-02 -City Hotel,0,40,2016,November,48,6,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,241.0,0,Transient,73.95,0,0,Check-Out,2019-12-04 -Resort Hotel,0,212,2016,December,51,20,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,58.29,0,0,Check-Out,2019-11-03 -City Hotel,0,21,2015,October,47,6,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,128.95,0,0,Check-Out,2018-09-02 -City Hotel,0,59,2017,April,10,10,0,1,2,0.0,0,BB,,Aviation,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,209.95,0,0,Check-Out,2020-04-02 -Resort Hotel,0,106,2016,September,37,17,0,1,3,1.0,0,BB,CHE,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,156.05,0,0,Check-Out,2019-04-03 -City Hotel,0,26,2016,October,53,26,1,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,121.28,0,0,Check-Out,2018-09-02 -City Hotel,0,37,2015,November,50,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,14.0,179.0,0,Group,110.95,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2016,January,3,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,11.0,45.0,19,Transient,38.6,0,0,Canceled,2018-12-03 -City Hotel,1,102,2017,March,16,30,2,5,2,0.0,0,SC,,Offline TA/TO,Corporate,1,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,147.38,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2015,August,49,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-06-02 -Resort Hotel,0,109,2016,August,24,27,4,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,117.56,0,2,Check-Out,2019-06-03 -City Hotel,0,54,2015,August,36,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Group,51.75,0,0,Check-Out,2018-05-03 -City Hotel,0,15,2017,July,36,30,0,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,133.53,0,0,Check-Out,2019-11-03 -City Hotel,0,50,2016,April,17,21,2,5,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,173.0,179.0,0,Transient-Party,77.53,0,0,Check-Out,2019-02-01 -City Hotel,0,14,2017,February,10,11,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,76.0,0,Transient,31.65,1,0,Check-Out,2020-01-04 -City Hotel,0,11,2015,October,50,24,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,D,2,No Deposit,12.0,222.0,0,Transient-Party,111.6,0,0,Check-Out,2018-06-02 -Resort Hotel,0,16,2016,August,44,20,2,7,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,311.0,179.0,0,Transient,160.77,0,2,Check-Out,2019-08-04 -City Hotel,1,47,2016,March,15,23,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.47,0,0,Canceled,2018-12-03 -City Hotel,0,13,2016,March,8,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,38,Transient-Party,66.99,0,0,Check-Out,2018-12-03 -City Hotel,1,34,2017,May,23,29,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.13,0,1,Canceled,2020-03-03 -City Hotel,0,187,2016,October,44,18,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,73.2,0,0,Canceled,2019-09-03 -City Hotel,1,42,2016,May,14,9,1,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,76.14,0,0,Canceled,2019-02-01 -Resort Hotel,1,2,2016,December,51,23,0,2,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,194.0,179.0,0,Transient,160.39,0,0,Canceled,2019-09-03 -City Hotel,0,2,2016,November,45,13,1,4,2,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,81.65,0,0,Check-Out,2019-12-04 -City Hotel,1,1,2015,July,26,21,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Canceled,2018-06-02 -Resort Hotel,0,5,2016,March,10,16,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,13.0,196.0,0,Transient,40.13,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,January,4,2,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,161.55,0,0,Check-Out,2019-04-03 -Resort Hotel,0,10,2016,December,53,31,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,41.55,0,3,Check-Out,2019-01-03 -City Hotel,1,196,2016,September,45,29,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,162.74,0,0,Canceled,2019-08-04 -Resort Hotel,1,141,2016,August,37,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,123.15,0,0,No-Show,2019-06-03 -City Hotel,1,15,2016,September,44,2,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,14.0,179.0,0,Transient,202.74,0,2,No-Show,2018-09-02 -City Hotel,0,41,2017,June,4,15,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.0,0,1,Check-Out,2020-03-03 -City Hotel,0,231,2015,October,45,22,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.59,0,0,Check-Out,2017-11-02 -Resort Hotel,0,96,2016,December,53,29,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,62.16,0,1,Check-Out,2019-11-03 -Resort Hotel,1,88,2016,February,11,25,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,D,D,0,Non Refund,328.0,179.0,0,Transient,69.98,0,0,Canceled,2019-02-01 -Resort Hotel,0,204,2016,April,37,10,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,E,1,No Deposit,247.0,179.0,0,Transient,142.03,0,0,Check-Out,2019-02-01 -City Hotel,1,32,2017,May,21,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.51,0,0,Canceled,2019-02-01 -Resort Hotel,0,36,2016,September,43,24,3,10,3,0.0,0,HB,USA,Direct,Direct,0,0,0,E,F,2,No Deposit,15.0,179.0,0,Transient,178.64,0,2,Check-Out,2019-04-03 -Resort Hotel,1,9,2016,April,22,14,1,4,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,314.0,179.0,0,Transient,75.23,0,0,Check-Out,2019-04-03 -Resort Hotel,0,18,2015,August,33,31,2,3,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,52.92,0,1,Check-Out,2018-06-02 -City Hotel,0,8,2016,December,44,24,2,3,3,1.0,0,BB,FRA,Online TA,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,70.28,0,0,Check-Out,2019-08-04 -City Hotel,0,20,2016,June,29,22,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,93.12,0,0,Check-Out,2019-05-04 -City Hotel,1,0,2016,December,50,20,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,1.07,0,0,Canceled,2019-06-03 -City Hotel,1,275,2017,May,23,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.9,0,0,Canceled,2018-11-02 -City Hotel,0,48,2017,June,25,9,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-04-02 -City Hotel,1,5,2016,January,11,21,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,199.72,0,0,Canceled,2019-02-01 -City Hotel,0,82,2016,November,53,24,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,100.77,0,1,Check-Out,2019-11-03 -City Hotel,0,9,2016,January,17,6,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,96.31,0,1,Check-Out,2019-05-04 -City Hotel,1,105,2016,June,27,2,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,92.93,0,0,Canceled,2019-02-01 -City Hotel,1,167,2017,February,10,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.59,0,1,Canceled,2019-10-04 -Resort Hotel,0,174,2016,October,44,24,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,E,2,No Deposit,243.0,179.0,0,Transient,77.11,0,0,Check-Out,2019-10-04 -Resort Hotel,0,18,2015,October,42,20,2,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,142.34,0,2,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,May,22,21,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,G,0,No Deposit,16.0,211.0,0,Transient,0.0,0,0,Check-Out,2019-12-04 -City Hotel,1,105,2016,February,10,10,2,5,2,0.0,0,FB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,42.5,0,0,No-Show,2018-11-02 -City Hotel,1,234,2016,July,31,18,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.12,0,0,Canceled,2018-12-03 -City Hotel,0,1,2016,January,9,25,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,66.25,0,0,Check-Out,2018-11-02 -Resort Hotel,1,0,2016,January,3,21,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,82.0,0,Transient,41.98,0,0,Check-Out,2019-11-03 -City Hotel,0,25,2017,June,29,5,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.76,0,1,Check-Out,2020-07-03 -Resort Hotel,0,4,2016,August,36,2,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,125.72,1,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,August,35,5,2,3,1,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient-Party,186.08,1,0,Check-Out,2019-05-04 -City Hotel,0,19,2015,December,49,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient-Party,71.77,0,0,Check-Out,2018-08-03 -Resort Hotel,0,32,2017,March,13,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,222.0,0,Transient-Party,36.46,1,2,Check-Out,2019-12-04 -Resort Hotel,0,2,2016,August,43,20,0,1,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,114.1,0,0,Check-Out,2019-07-04 -City Hotel,0,29,2016,August,37,10,2,0,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,141.49,0,2,Check-Out,2019-02-01 -City Hotel,0,30,2017,November,53,10,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.06,0,2,Check-Out,2019-12-04 -Resort Hotel,0,277,2016,September,42,10,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,40.35,0,2,Check-Out,2019-11-03 -Resort Hotel,0,16,2016,November,43,30,2,2,2,0.0,0,HB,IRL,Direct,TA/TO,0,0,0,G,G,3,No Deposit,248.0,179.0,0,Transient-Party,119.56,1,2,Check-Out,2019-08-04 -City Hotel,1,0,2016,November,43,10,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,0.18,0,0,Canceled,2019-09-03 -City Hotel,0,155,2016,August,27,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,154.0,179.0,0,Transient,133.95,0,0,Check-Out,2019-05-04 -City Hotel,1,45,2016,March,36,5,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,7.0,179.0,0,Transient,65.08,0,0,Canceled,2018-11-02 -Resort Hotel,0,143,2016,July,29,21,0,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,271.0,179.0,0,Transient,109.79,0,1,Check-Out,2019-07-04 -Resort Hotel,0,45,2017,January,7,11,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,64.72,0,0,Check-Out,2019-10-04 -Resort Hotel,0,33,2017,February,8,4,2,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,347.0,331.0,0,Transient,35.31,0,0,Check-Out,2020-04-02 -Resort Hotel,0,34,2016,February,11,27,1,2,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient-Party,73.66,1,0,Check-Out,2019-03-04 -City Hotel,1,261,2017,June,26,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,Non Refund,11.0,179.0,0,Transient,1.85,0,0,Canceled,2020-05-03 -Resort Hotel,1,99,2015,December,53,29,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,78.53,0,3,No-Show,2018-11-02 -Resort Hotel,1,210,2017,July,36,21,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,A,0,Non Refund,246.0,179.0,0,Transient,97.77,0,1,Canceled,2018-06-02 -Resort Hotel,0,78,2016,May,37,5,2,0,2,1.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,241.0,179.0,0,Transient,219.34,1,0,Check-Out,2019-03-04 -Resort Hotel,0,43,2017,January,21,22,2,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,119.64,1,0,Check-Out,2020-03-03 -Resort Hotel,1,94,2015,July,33,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,61.11,0,0,Canceled,2018-12-03 -Resort Hotel,0,8,2017,May,16,9,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,128.9,1,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,July,25,14,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.67,0,1,Check-Out,2020-03-03 -City Hotel,1,45,2016,November,44,18,2,7,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,9.0,179.0,0,Transient,137.84,0,0,Canceled,2019-07-04 -City Hotel,1,1,2015,November,44,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,75.27,0,0,Canceled,2018-09-02 -City Hotel,0,19,2017,June,21,5,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,134.84,0,2,Check-Out,2019-03-04 -City Hotel,0,12,2015,December,52,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,100.0,179.0,0,Transient-Party,102.63,0,1,Check-Out,2018-08-03 -City Hotel,1,162,2016,July,35,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,105.36,0,0,Canceled,2017-12-03 -Resort Hotel,0,0,2016,December,53,31,2,3,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,G,3,No Deposit,242.0,179.0,0,Transient,149.43,1,3,Check-Out,2019-06-03 -City Hotel,1,102,2016,May,21,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.08,0,0,Canceled,2019-02-01 -City Hotel,0,1,2016,November,43,12,0,1,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,81.46,0,0,Check-Out,2018-09-02 -Resort Hotel,0,187,2016,August,39,21,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,G,G,3,No Deposit,16.0,179.0,0,Transient,128.35,1,0,Check-Out,2019-05-04 -Resort Hotel,1,54,2017,March,8,13,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,181.0,179.0,0,Transient,38.02,0,0,Canceled,2020-03-03 -Resort Hotel,0,36,2016,March,12,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,12.0,232.0,22,Transient,35.12,0,0,Check-Out,2018-12-03 -Resort Hotel,0,10,2015,December,51,31,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,59.78,0,0,Check-Out,2018-08-03 -Resort Hotel,1,327,2017,March,19,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient,71.96,0,0,Canceled,2020-02-01 -Resort Hotel,0,105,2016,February,3,25,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,44.27,0,1,Check-Out,2018-10-03 -Resort Hotel,1,53,2016,August,36,30,2,1,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,221.32,0,2,Check-Out,2019-05-04 -Resort Hotel,0,98,2016,June,27,23,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,66.83,0,0,Check-Out,2019-07-04 -Resort Hotel,0,91,2017,March,17,16,2,4,2,0.0,0,HB,BRA,Direct,Direct,0,0,0,G,D,2,No Deposit,14.0,179.0,0,Transient,153.91,0,3,Check-Out,2020-02-01 -City Hotel,1,270,2015,October,43,25,1,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Contract,68.12,0,0,Canceled,2018-01-03 -City Hotel,0,223,2016,October,41,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,100.26,0,1,Check-Out,2019-08-04 -City Hotel,1,106,2016,May,24,24,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,161.18,0,0,Canceled,2019-09-03 -City Hotel,0,150,2016,June,28,15,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,123.67,0,3,Check-Out,2019-05-04 -Resort Hotel,0,190,2016,December,51,12,2,2,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient-Party,33.68,0,1,Check-Out,2019-09-03 -Resort Hotel,0,9,2016,August,40,31,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,177.23,0,0,Check-Out,2019-06-03 -City Hotel,1,168,2016,March,10,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,73.58,0,0,Canceled,2018-11-02 -City Hotel,1,60,2016,December,53,8,2,2,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.75,0,3,Canceled,2019-10-04 -Resort Hotel,0,280,2016,August,36,21,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,92.0,179.0,0,Contract,61.75,0,0,Check-Out,2019-11-03 -City Hotel,1,33,2016,February,13,13,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,70.16,0,0,No-Show,2018-12-03 -Resort Hotel,0,42,2017,June,26,25,1,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,2,No Deposit,245.0,179.0,0,Transient,154.77,0,0,Check-Out,2020-01-04 -City Hotel,1,262,2016,June,27,20,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,42.35,0,2,Canceled,2019-04-03 -Resort Hotel,0,108,2016,August,38,27,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,176.99,0,1,Check-Out,2019-04-03 -Resort Hotel,0,42,2016,February,17,16,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,313.0,179.0,0,Transient-Party,81.33,0,0,Check-Out,2019-01-03 -City Hotel,0,109,2016,September,45,15,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,120.49,0,1,Check-Out,2019-06-03 -Resort Hotel,0,188,2016,October,42,20,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,70.47,0,0,Check-Out,2019-09-03 -City Hotel,0,45,2017,January,4,10,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,64.45,0,2,Check-Out,2019-09-03 -Resort Hotel,1,289,2017,July,35,15,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,9.0,179.0,0,Transient,153.09,0,0,Canceled,2020-01-04 -City Hotel,1,277,2016,October,22,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,322.0,179.0,0,Transient,76.96,0,0,Canceled,2017-10-03 -City Hotel,1,24,2016,March,16,20,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,130.69,0,0,Canceled,2019-01-03 -Resort Hotel,0,126,2016,May,26,5,4,0,1,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,66.69,0,0,Check-Out,2019-02-01 -City Hotel,1,57,2017,May,21,22,2,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,238.57,0,0,Canceled,2019-10-04 -Resort Hotel,0,19,2015,October,46,28,0,1,1,0.0,0,BB,CN,Offline TA/TO,Corporate,0,0,0,A,F,0,No Deposit,323.0,179.0,0,Transient-Party,60.29,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2016,July,32,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.62,0,1,Canceled,2019-02-01 -Resort Hotel,0,185,2017,July,33,15,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,160.62,1,2,Check-Out,2020-07-03 -City Hotel,0,45,2016,February,8,18,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,61.59,0,1,Check-Out,2019-02-01 -Resort Hotel,1,58,2017,February,10,28,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,241.0,179.0,0,Transient,62.07,0,2,Canceled,2020-02-01 -Resort Hotel,0,2,2016,November,46,31,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,84.25,0,0,Check-Out,2019-11-03 -City Hotel,1,165,2017,June,29,26,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.22,0,1,Canceled,2020-03-03 -City Hotel,0,26,2015,September,41,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,3.0,179.0,0,Transient-Party,65.03,0,0,Check-Out,2018-08-03 -City Hotel,1,2,2016,November,44,27,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,104.73,0,0,No-Show,2018-12-03 -Resort Hotel,0,0,2017,January,2,9,1,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,17.0,179.0,0,Transient,46.26,0,0,Check-Out,2020-02-01 -Resort Hotel,0,247,2017,August,31,10,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.88,0,2,Check-Out,2020-06-02 -Resort Hotel,0,244,2017,May,29,27,0,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,81.55,0,0,Check-Out,2020-02-01 -Resort Hotel,0,3,2017,February,9,13,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,43.45,1,0,Check-Out,2020-03-03 -Resort Hotel,1,30,2016,May,25,25,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,146.13,0,0,Canceled,2019-02-01 -City Hotel,0,3,2016,June,27,30,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,140.15,0,1,Check-Out,2019-02-01 -City Hotel,0,148,2016,November,50,27,1,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.61,0,2,Check-Out,2019-08-04 -Resort Hotel,0,46,2017,August,35,6,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,241.0,179.0,0,Transient,181.37,1,2,Check-Out,2019-04-03 -City Hotel,1,169,2017,August,35,5,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,150.54,0,0,Canceled,2020-06-02 -Resort Hotel,1,154,2016,July,32,30,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,223.34,0,2,Canceled,2019-05-04 -City Hotel,1,12,2017,February,10,22,0,3,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,14.0,86.0,0,Transient,75.97,0,0,No-Show,2020-06-02 -City Hotel,0,40,2016,June,25,21,1,1,1,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,159.08,0,1,Check-Out,2019-05-04 -City Hotel,1,57,2017,May,24,26,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,101.66,0,0,Canceled,2020-02-01 -Resort Hotel,0,122,2016,March,11,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,36.32,0,0,Check-Out,2019-02-01 -Resort Hotel,0,134,2015,August,30,24,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,159.0,179.0,0,Transient-Party,128.88,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,August,38,22,0,1,2,0.0,0,BB,PRT,Aviation,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,211.73,1,0,Check-Out,2020-06-02 -Resort Hotel,1,277,2016,August,36,31,2,3,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,71.71,0,0,Canceled,2018-08-03 -City Hotel,0,41,2017,June,25,2,0,4,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,168.09,0,1,Check-Out,2020-01-04 -City Hotel,0,101,2017,July,24,6,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,12.0,179.0,0,Transient,157.99,0,1,Check-Out,2020-06-02 -City Hotel,0,2,2015,October,42,13,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,80.0,179.0,0,Transient,40.99,0,0,Check-Out,2018-08-03 -City Hotel,1,103,2016,March,17,24,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,67.39,0,2,Canceled,2019-02-01 -Resort Hotel,1,192,2017,April,22,6,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,184.0,179.0,0,Transient,72.54,0,0,Canceled,2020-03-03 -City Hotel,0,49,2015,October,46,24,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,168.8,0,0,Check-Out,2019-08-04 -Resort Hotel,0,312,2016,October,33,21,4,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient-Party,44.64,0,0,Check-Out,2019-05-04 -City Hotel,1,268,2017,December,53,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,312.0,179.0,0,Transient,72.66,0,0,Canceled,2019-10-04 -City Hotel,1,47,2016,June,43,2,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,83.01,0,0,Canceled,2019-08-04 -City Hotel,1,1,2015,August,38,20,2,5,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-07-03 -City Hotel,1,47,2016,February,10,27,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,89.43,0,2,Canceled,2019-02-01 -City Hotel,1,288,2015,October,44,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,78.07,0,0,Canceled,2018-01-03 -City Hotel,1,14,2017,July,28,9,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,E,0,No Deposit,13.0,168.0,0,Transient,133.06,0,0,Canceled,2019-12-04 -Resort Hotel,0,1,2016,August,37,16,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,67.66,0,1,Check-Out,2020-06-02 -City Hotel,1,106,2016,May,20,20,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,10.0,179.0,0,Transient,128.5,0,0,Canceled,2019-11-03 -City Hotel,0,83,2017,July,36,28,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,101.78,1,1,Check-Out,2020-06-02 -City Hotel,1,162,2015,November,45,24,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,63,Transient,59.19,0,0,Canceled,2018-08-03 -City Hotel,1,289,2017,July,21,20,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,150.71,0,1,Canceled,2020-02-01 -City Hotel,0,202,2016,June,25,22,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,23,Transient-Party,71.73,0,0,Check-Out,2019-06-03 -City Hotel,0,116,2016,October,45,13,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,8.0,179.0,0,Transient,84.33,0,2,Check-Out,2019-08-04 -City Hotel,0,61,2016,April,21,31,2,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,G,F,1,No Deposit,15.0,179.0,0,Transient,130.49,0,0,Check-Out,2019-03-04 -City Hotel,1,444,2016,October,36,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,63.81,0,0,Canceled,2018-08-03 -City Hotel,0,2,2017,March,10,16,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,214.0,88.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -Resort Hotel,0,12,2017,February,10,15,1,3,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,331.0,0,Transient,40.94,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2017,March,37,16,1,1,1,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,154.15,1,0,Check-Out,2019-02-01 -Resort Hotel,0,17,2016,April,16,27,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient-Party,34.94,0,0,Check-Out,2019-04-03 -City Hotel,0,14,2017,May,22,9,2,1,1,0.0,0,BB,PRT,Aviation,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,159.26,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2017,June,35,24,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,91.0,179.0,0,Transient,62.96,0,3,Check-Out,2020-04-02 -Resort Hotel,0,272,2017,July,31,24,3,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient-Party,62.95,0,0,Check-Out,2020-04-02 -City Hotel,0,16,2015,November,50,5,2,1,1,0.0,0,BB,,Groups,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,62,Transient-Party,60.28,0,0,Check-Out,2018-12-03 -City Hotel,0,240,2015,July,32,18,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.12,0,0,Check-Out,2018-05-03 -City Hotel,0,1,2017,May,20,23,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Group,84.16,0,0,Check-Out,2020-03-03 -City Hotel,1,391,2016,September,53,24,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.93,0,0,Canceled,2019-05-04 -City Hotel,0,17,2017,April,21,28,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.51,0,2,Check-Out,2020-02-01 -City Hotel,1,304,2017,May,20,2,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,262.0,179.0,0,Transient,68.69,0,0,Canceled,2020-02-01 -Resort Hotel,0,266,2016,March,44,7,0,2,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient,66.36,0,0,Check-Out,2019-07-04 -Resort Hotel,1,110,2016,April,16,28,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,308.0,179.0,0,Transient-Party,70.56,0,0,Canceled,2019-03-04 -Resort Hotel,0,87,2017,May,21,9,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,118.95,0,0,Check-Out,2020-03-03 -Resort Hotel,1,0,2016,June,10,14,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,1,1,A,A,0,Non Refund,16.0,179.0,0,Group,39.3,0,1,Canceled,2018-10-03 -City Hotel,0,44,2016,April,15,9,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.19,0,1,Check-Out,2019-10-04 -City Hotel,0,4,2016,September,36,16,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.92,0,2,Check-Out,2019-03-04 -Resort Hotel,0,1,2015,August,37,28,1,4,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,235.61,0,0,Check-Out,2018-05-03 -City Hotel,0,3,2017,March,9,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient-Party,99.47,0,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2017,August,24,31,2,5,2,0.0,0,HB,GBR,Direct,TA/TO,1,0,1,E,C,0,No Deposit,249.0,179.0,0,Group,40.99,1,1,Check-Out,2020-03-03 -Resort Hotel,0,254,2016,September,43,6,0,7,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,111.96,0,1,Check-Out,2019-05-04 -Resort Hotel,0,50,2016,November,50,7,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,72.11,0,2,Check-Out,2019-10-04 -City Hotel,0,91,2017,April,17,30,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.31,1,1,Check-Out,2020-04-02 -City Hotel,0,104,2017,May,22,28,2,1,3,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,81.0,179.0,0,Transient,100.03,0,0,Check-Out,2020-01-04 -Resort Hotel,1,159,2017,June,27,9,0,6,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,306.0,179.0,0,Transient,123.83,0,0,Canceled,2019-04-03 -Resort Hotel,1,1,2017,May,23,29,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,D,D,0,Non Refund,16.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -Resort Hotel,1,244,2016,March,18,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,223.0,0,Transient-Party,57.35,1,0,Canceled,2019-02-01 -City Hotel,1,129,2016,January,4,12,2,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.17,0,0,No-Show,2018-12-03 -Resort Hotel,0,1,2016,February,9,9,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,75.37,1,0,Check-Out,2019-01-03 -City Hotel,0,42,2016,June,16,3,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,66.95,0,0,Check-Out,2019-04-03 -Resort Hotel,0,150,2015,October,45,29,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,121.36,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2016,June,25,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,82.56,0,0,Check-Out,2019-05-04 -City Hotel,1,14,2016,October,43,21,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,89.61,0,0,No-Show,2019-08-04 -City Hotel,1,42,2017,June,23,27,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.7,0,1,Canceled,2020-04-02 -City Hotel,1,94,2017,March,11,26,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,8.0,179.0,0,Transient,75.43,0,2,Canceled,2019-09-03 -Resort Hotel,0,0,2017,June,25,18,0,3,2,1.0,0,BB,,Online TA,Direct,0,0,0,F,F,2,No Deposit,12.0,179.0,0,Transient,149.22,0,3,Check-Out,2020-04-02 -Resort Hotel,0,148,2017,May,24,30,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,67.32,0,0,Check-Out,2020-04-02 -City Hotel,0,142,2016,June,24,2,0,4,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.42,0,2,Check-Out,2019-05-04 -City Hotel,0,0,2017,June,27,2,0,1,1,0.0,0,BB,,Aviation,Corporate,1,0,0,A,D,0,No Deposit,13.0,197.0,0,Transient,110.96,0,0,Check-Out,2020-03-03 -Resort Hotel,0,10,2017,March,26,21,2,0,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,78.02,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,June,26,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,126.64,0,0,Check-Out,2019-01-03 -City Hotel,1,67,2015,September,45,10,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,128.44,0,0,Canceled,2018-08-03 -Resort Hotel,0,41,2015,October,44,10,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,113.22,0,0,Check-Out,2018-09-02 -City Hotel,0,261,2015,July,32,17,0,2,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Contract,97.2,0,0,Check-Out,2018-06-02 -Resort Hotel,0,14,2017,January,4,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,293.0,331.0,20,Transient-Party,70.02,0,0,Check-Out,2019-11-03 -City Hotel,1,163,2016,June,26,12,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,89.38,0,0,Canceled,2018-11-02 -Resort Hotel,0,151,2016,July,31,29,2,7,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,96.96,1,2,Check-Out,2019-06-03 -City Hotel,0,18,2016,June,28,15,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,G,0,No Deposit,2.0,179.0,0,Transient,126.87,0,0,Check-Out,2018-05-03 -Resort Hotel,1,7,2015,August,35,5,1,0,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,170.76,0,0,Canceled,2018-05-03 -City Hotel,0,154,2016,October,22,27,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,112.47,0,1,Check-Out,2019-06-03 -City Hotel,0,37,2016,October,20,14,2,0,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.79,0,0,Check-Out,2019-03-04 -Resort Hotel,0,104,2017,June,26,5,1,1,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,173.0,179.0,0,Transient,75.36,0,0,Check-Out,2020-03-03 -Resort Hotel,0,94,2017,May,22,7,2,4,2,0.0,0,HB,,Groups,TA/TO,0,0,0,E,F,1,No Deposit,179.0,179.0,0,Transient-Party,96.58,0,1,Check-Out,2020-04-02 -City Hotel,1,36,2016,May,22,19,0,2,3,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,136.13,0,1,Canceled,2019-03-04 -Resort Hotel,1,231,2015,August,37,16,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,98.13,0,1,Canceled,2018-06-02 -Resort Hotel,1,2,2017,August,37,2,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,145.84,0,0,Canceled,2020-04-02 -City Hotel,0,1,2016,June,9,13,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,101.43,0,0,Check-Out,2019-02-01 -City Hotel,0,101,2017,May,20,21,0,1,2,0.0,0,SC,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,125.57,1,0,Check-Out,2020-04-02 -City Hotel,1,18,2017,May,22,19,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,126.79,0,0,Canceled,2020-04-02 -City Hotel,1,54,2016,October,37,17,1,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.76,0,1,Canceled,2019-08-04 -Resort Hotel,1,47,2015,October,43,6,0,1,2,2.0,0,BB,POL,Direct,TA/TO,0,0,0,F,F,0,No Deposit,246.0,179.0,0,Transient,129.13,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2017,March,10,2,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,47.94,0,0,Check-Out,2020-06-02 -City Hotel,0,30,2017,April,16,24,2,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.46,0,1,Check-Out,2020-03-03 -Resort Hotel,0,37,2016,May,21,27,0,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,75.21,0,2,Check-Out,2019-04-03 -City Hotel,1,97,2016,April,15,18,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,8.0,179.0,19,Transient,75.43,0,0,Canceled,2019-02-01 -City Hotel,1,274,2016,May,23,16,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.16,0,0,Canceled,2019-05-04 -Resort Hotel,0,102,2016,June,26,18,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,E,E,0,No Deposit,15.0,179.0,0,Transient,94.9,0,0,Canceled,2019-02-01 -Resort Hotel,1,40,2015,December,53,18,0,2,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,90.59,0,0,Canceled,2018-10-03 -City Hotel,1,107,2016,August,37,28,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,198.72,0,0,Canceled,2018-05-03 -Resort Hotel,0,1,2016,February,10,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,18.0,179.0,0,Transient,48.84,0,3,Check-Out,2018-10-03 -City Hotel,0,48,2016,May,23,17,0,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,132.03,0,0,Check-Out,2019-05-04 -Resort Hotel,1,3,2017,February,8,5,1,0,1,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,155.0,179.0,0,Transient,62.86,0,0,Canceled,2018-12-03 -City Hotel,1,58,2015,December,49,19,2,3,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,30.0,179.0,0,Transient-Party,70.1,0,0,Canceled,2018-12-03 -City Hotel,0,92,2017,January,4,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,69.48,0,0,Check-Out,2020-03-03 -City Hotel,1,255,2015,August,35,4,2,6,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,77.98,0,1,Canceled,2018-06-02 -Resort Hotel,0,58,2016,August,38,29,2,0,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,2019-08-04 -Resort Hotel,0,7,2015,December,53,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,17.0,179.0,0,Transient,63.77,1,0,Check-Out,2018-11-02 -Resort Hotel,0,245,2016,June,26,15,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,175.0,179.0,0,Group,64.01,0,1,Check-Out,2019-04-03 -City Hotel,0,3,2017,June,26,27,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,1,0,0,E,B,0,No Deposit,29.0,179.0,0,Transient,101.25,0,0,Check-Out,2020-03-03 -City Hotel,0,11,2016,December,51,24,0,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,158.64,0,3,Check-Out,2019-11-03 -City Hotel,0,22,2016,July,31,14,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,147.5,0,2,Canceled,2019-07-04 -City Hotel,0,95,2016,August,33,24,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,138.41,0,1,Check-Out,2019-04-03 -City Hotel,1,100,2016,July,31,27,2,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,96.77,0,0,Check-Out,2019-04-03 -City Hotel,0,17,2017,February,9,24,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,81.55,0,0,Check-Out,2019-11-03 -City Hotel,1,81,2017,June,27,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.76,0,1,Canceled,2020-03-03 -City Hotel,0,119,2016,December,37,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,234.12,0,0,Canceled,2018-11-02 -City Hotel,1,34,2016,August,38,15,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,190.42,0,0,Canceled,2020-06-02 -City Hotel,0,9,2017,June,26,21,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,10.0,192.0,0,Transient,106.31,0,0,Check-Out,2020-04-02 -City Hotel,1,393,2016,December,53,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,45,Transient,59.97,0,0,Canceled,2018-10-03 -City Hotel,1,105,2016,September,37,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,119.6,0,0,Canceled,2018-08-03 -City Hotel,1,51,2017,May,22,5,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,61.32,0,0,Canceled,2020-04-02 -City Hotel,0,2,2017,June,32,28,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.33,0,1,Check-Out,2020-03-03 -Resort Hotel,1,43,2016,October,42,20,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,52.28,0,0,Canceled,2018-08-03 -Resort Hotel,0,21,2016,March,17,30,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,247.0,179.0,0,Transient,185.35,1,0,Check-Out,2018-12-03 -Resort Hotel,1,17,2017,February,16,26,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,79.61,0,0,Canceled,2019-12-04 -City Hotel,0,41,2016,June,27,30,1,4,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,110.25,0,0,Check-Out,2019-02-01 -City Hotel,0,157,2016,May,21,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,89.13,0,0,Check-Out,2019-03-04 -City Hotel,1,13,2016,March,17,6,2,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.77,0,0,No-Show,2019-02-01 -City Hotel,0,19,2017,July,32,6,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,165.61,0,3,Check-Out,2020-06-02 -Resort Hotel,1,309,2017,August,36,25,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,242.0,179.0,0,Transient,214.53,1,1,Canceled,2019-11-03 -Resort Hotel,0,0,2016,March,9,15,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,37.52,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2016,September,38,14,1,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-07-04 -City Hotel,0,159,2017,June,27,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.05,0,0,Check-Out,2020-03-03 -City Hotel,1,8,2017,May,21,5,0,1,2,0.0,0,BB,,Online TA,Corporate,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,124.28,0,0,No-Show,2019-11-03 -Resort Hotel,0,0,2016,January,6,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,247.0,179.0,0,Group,42.44,0,1,Check-Out,2018-10-03 -Resort Hotel,0,135,2017,June,31,15,1,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,152.37,0,1,Check-Out,2020-03-03 -Resort Hotel,1,161,2017,August,38,29,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,106.75,0,0,Canceled,2020-06-02 -Resort Hotel,1,44,2017,May,20,18,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,184.94,0,2,Canceled,2018-12-03 -Resort Hotel,0,2,2016,January,4,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,62.91,0,0,Check-Out,2018-11-02 -City Hotel,1,16,2015,September,41,9,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,60.54,0,0,Canceled,2018-05-03 -Resort Hotel,0,103,2017,March,12,13,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,60.01,0,2,Check-Out,2020-03-03 -City Hotel,0,0,2015,July,32,20,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,7.0,179.0,0,Transient-Party,94.69,0,1,Check-Out,2018-06-02 -City Hotel,1,118,2017,August,31,26,2,2,3,2.0,0,HB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,173.17,0,0,Canceled,2020-06-02 -Resort Hotel,0,41,2015,December,52,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,76.0,0,Transient-Party,51.08,1,0,Check-Out,2019-01-03 -City Hotel,1,43,2017,March,10,16,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.48,0,2,Canceled,2020-04-02 -City Hotel,0,2,2016,October,39,29,2,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,102.1,0,2,Check-Out,2019-08-04 -City Hotel,0,91,2016,July,53,30,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,90.43,0,3,Check-Out,2019-11-03 -Resort Hotel,0,80,2016,March,12,31,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,223.0,0,Transient,37.35,0,0,Check-Out,2018-12-03 -City Hotel,1,43,2017,July,12,28,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,66.52,0,0,No-Show,2020-03-03 -Resort Hotel,1,255,2017,August,32,20,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,188.58,0,0,Canceled,2020-06-02 -Resort Hotel,0,2,2015,November,51,18,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,70.85,0,0,Check-Out,2018-06-02 -City Hotel,1,444,2016,September,45,15,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,E,0,Non Refund,12.0,179.0,0,Transient,64.31,0,0,Canceled,2018-09-02 -Resort Hotel,0,30,2016,April,11,30,0,1,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,E,E,3,No Deposit,315.0,179.0,0,Transient-Party,61.94,0,0,Check-Out,2019-02-01 -City Hotel,0,244,2015,September,35,20,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,61.11,0,0,Check-Out,2018-08-03 -Resort Hotel,0,49,2016,December,50,17,1,1,2,0.0,0,FB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,59.98,0,0,Check-Out,2019-11-03 -Resort Hotel,1,20,2016,June,8,20,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,177.63,0,0,Canceled,2018-12-03 -City Hotel,0,38,2016,April,15,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,22.0,179.0,0,Transient-Party,95.62,0,0,Check-Out,2019-06-03 -City Hotel,0,5,2016,December,53,9,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.62,0,1,Check-Out,2019-11-03 -City Hotel,1,93,2016,March,27,18,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,75.5,0,0,Canceled,2019-03-04 -City Hotel,0,320,2016,August,38,10,1,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,241.0,179.0,0,Transient,205.9,0,3,Check-Out,2019-06-03 -City Hotel,0,27,2016,December,51,23,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,89.26,0,0,Check-Out,2019-10-04 -Resort Hotel,0,52,2017,January,4,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,126.02,0,1,Canceled,2019-11-03 -Resort Hotel,1,14,2017,May,21,16,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,105.05,0,1,Canceled,2020-03-03 -City Hotel,0,333,2015,July,32,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,2.0,179.0,0,Contract,60.29,0,0,Check-Out,2017-12-03 -City Hotel,1,318,2016,September,27,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.37,0,0,Canceled,2017-12-03 -City Hotel,1,356,2016,May,23,21,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.36,0,0,Canceled,2019-09-03 -Resort Hotel,0,3,2015,September,51,2,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,62.47,0,0,Check-Out,2018-06-02 -City Hotel,1,16,2016,November,37,27,0,1,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,P,K,1,No Deposit,10.0,179.0,0,Transient,66.77,0,0,Canceled,2019-11-03 -City Hotel,1,145,2016,March,16,10,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,62,Transient,83.74,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,December,53,28,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,85.47,1,1,Check-Out,2019-01-03 -City Hotel,1,287,2015,July,36,19,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,63.27,0,0,Canceled,2017-11-02 -City Hotel,1,407,2016,March,17,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,106.46,0,0,Canceled,2018-10-03 -Resort Hotel,1,55,2016,March,17,16,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient-Party,73.27,0,0,Canceled,2018-12-03 -City Hotel,0,22,2017,March,9,14,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,86.73,0,2,Check-Out,2020-01-04 -Resort Hotel,1,334,2016,March,17,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient,61.54,0,0,Canceled,2019-02-01 -City Hotel,1,0,2016,April,22,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,35.9,0,0,Canceled,2018-11-02 -City Hotel,0,50,2016,April,16,22,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.55,0,0,Check-Out,2019-02-01 -Resort Hotel,1,0,2015,September,36,6,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,54.09,0,0,Canceled,2018-09-02 -Resort Hotel,0,258,2016,October,43,27,4,10,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,75,Transient-Party,76.26,0,0,Check-Out,2019-07-04 -City Hotel,0,252,2016,July,31,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,119.51,0,0,Check-Out,2019-08-04 -Resort Hotel,0,9,2017,February,10,27,1,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,81.05,0,0,Check-Out,2019-11-03 -City Hotel,1,11,2016,June,29,11,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,111.55,0,0,No-Show,2019-07-04 -City Hotel,0,9,2015,December,51,6,1,2,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,84.3,0,0,Check-Out,2018-08-03 -Resort Hotel,1,292,2017,May,16,21,2,7,2,0.0,0,HB,PRT,Groups,Direct,0,0,1,E,F,0,No Deposit,332.0,179.0,0,Transient,85.4,0,0,Canceled,2020-02-01 -Resort Hotel,0,2,2016,September,44,28,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,110.72,0,0,Check-Out,2018-09-02 -City Hotel,0,15,2016,May,21,9,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,125.42,0,0,Check-Out,2019-02-01 -City Hotel,0,19,2016,October,38,30,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.07,0,1,Check-Out,2019-11-03 -City Hotel,1,250,2017,May,22,16,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,9.0,179.0,0,Transient,192.22,0,0,Canceled,2019-10-04 -City Hotel,0,19,2016,January,4,17,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,79.1,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2017,March,17,16,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,157.61,0,2,Check-Out,2020-03-03 -Resort Hotel,0,4,2017,March,16,25,1,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,144.62,0,3,Check-Out,2020-03-03 -City Hotel,0,147,2017,May,28,2,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,103.71,0,0,Check-Out,2020-07-03 -City Hotel,0,14,2016,December,53,13,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.39,0,1,Check-Out,2019-11-03 -City Hotel,1,16,2017,April,18,6,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.57,0,2,Canceled,2020-04-02 -Resort Hotel,0,1,2015,October,36,9,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,No Deposit,36.0,179.0,0,Transient,59.14,0,0,Check-Out,2018-05-03 -City Hotel,0,0,2017,February,12,18,1,1,2,0.0,0,HB,ISR,Direct,Direct,0,0,0,A,C,1,No Deposit,14.0,179.0,0,Transient,100.0,0,1,Check-Out,2020-04-02 -City Hotel,1,331,2015,October,46,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,92.37,0,0,Canceled,2018-09-02 -Resort Hotel,1,207,2016,March,17,29,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,75,Transient,78.15,0,0,Canceled,2019-01-03 -City Hotel,1,10,2016,December,53,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,93.85,0,2,Canceled,2019-10-04 -Resort Hotel,0,47,2016,May,21,29,0,4,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,138.58,0,0,Check-Out,2019-01-03 -City Hotel,0,24,2017,March,8,10,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,71.86,1,1,Check-Out,2020-06-02 -Resort Hotel,0,19,2017,February,12,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient,41.87,0,1,Check-Out,2020-04-02 -Resort Hotel,0,209,2017,July,28,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,174.56,1,1,Check-Out,2020-03-03 -Resort Hotel,1,33,2016,February,10,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,Non Refund,16.0,331.0,0,Transient,40.09,0,0,Canceled,2019-01-03 -City Hotel,1,38,2015,December,52,31,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,90.79,0,0,Canceled,2018-08-03 -Resort Hotel,0,54,2016,March,10,24,0,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.25,0,0,Check-Out,2019-03-04 -City Hotel,1,52,2017,March,16,21,2,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,11.0,179.0,0,Transient,78.62,0,3,Canceled,2020-03-03 -City Hotel,0,12,2016,February,17,10,1,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,61.6,0,0,Check-Out,2019-02-01 -City Hotel,0,321,2015,September,42,27,2,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.36,0,0,Check-Out,2018-08-03 -City Hotel,1,34,2015,December,50,6,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,142.64,0,1,Canceled,2018-06-02 -City Hotel,0,37,2017,July,25,15,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,142.46,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2017,July,28,28,2,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,153.56,0,3,Check-Out,2020-06-02 -Resort Hotel,0,2,2016,August,29,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,201.58,1,0,Check-Out,2019-07-04 -Resort Hotel,1,15,2017,February,11,5,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,62.28,0,0,Canceled,2020-02-01 -Resort Hotel,0,2,2017,June,28,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,200.0,179.0,0,Transient,112.71,1,1,Check-Out,2020-06-02 -City Hotel,0,9,2016,January,16,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,69.0,0,Transient,58.04,1,0,Check-Out,2018-11-02 -City Hotel,1,21,2017,March,11,6,0,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,B,D,0,No Deposit,12.0,179.0,0,Transient,76.15,0,0,Canceled,2020-02-01 -Resort Hotel,0,294,2015,September,35,26,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,76.58,0,0,Check-Out,2018-06-02 -City Hotel,0,32,2016,December,53,7,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.34,0,3,Check-Out,2018-11-02 -City Hotel,0,62,2016,March,42,30,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,93.6,1,1,Check-Out,2019-02-01 -City Hotel,0,62,2016,February,50,3,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.87,0,0,Check-Out,2018-12-03 -Resort Hotel,0,262,2017,June,21,22,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,108.57,0,2,Check-Out,2020-05-03 -Resort Hotel,1,168,2017,April,35,18,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Canceled,2020-07-03 -Resort Hotel,0,303,2017,June,26,23,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,77.43,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,June,26,14,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,15.0,45.0,0,Transient,83.6,0,0,Canceled,2019-03-04 -Resort Hotel,0,31,2017,May,23,22,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,378.0,179.0,0,Transient-Party,87.21,0,0,Check-Out,2020-04-02 -Resort Hotel,0,162,2016,April,15,28,2,3,1,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,76.0,179.0,0,Transient,104.85,0,0,Canceled,2019-02-01 -City Hotel,1,152,2017,August,32,23,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,119.32,0,0,Canceled,2020-06-02 -City Hotel,0,240,2017,July,31,5,1,2,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,114.84,0,0,Check-Out,2020-05-03 -Resort Hotel,0,1,2015,September,33,16,0,3,1,0.0,0,HB,PRT,Direct,Direct,1,0,1,A,C,0,No Deposit,15.0,45.0,0,Group,62.02,1,0,Check-Out,2018-06-02 -City Hotel,0,49,2016,December,45,27,1,4,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,71.45,0,2,Check-Out,2019-11-03 -City Hotel,1,95,2016,June,26,19,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,41,Transient,104.19,0,0,Canceled,2019-01-03 -City Hotel,1,28,2016,November,50,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.95,0,0,Canceled,2019-10-04 -City Hotel,1,7,2015,August,36,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.28,0,0,No-Show,2018-08-03 -Resort Hotel,0,37,2016,January,7,5,0,3,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,2,No Deposit,248.0,179.0,0,Transient,74.41,1,1,Check-Out,2019-10-04 -City Hotel,1,32,2016,December,53,10,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,68.57,0,0,Canceled,2019-10-04 -Resort Hotel,1,205,2016,June,22,21,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,75.79,0,0,Canceled,2019-04-03 -Resort Hotel,0,111,2017,July,11,6,1,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,D,0,No Deposit,249.0,179.0,0,Transient,134.46,0,3,Check-Out,2020-06-02 -City Hotel,0,38,2016,November,51,21,0,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,92.81,0,1,Check-Out,2019-10-04 -City Hotel,1,100,2017,August,30,1,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.97,0,1,Canceled,2020-02-01 -City Hotel,0,84,2016,May,26,15,1,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,12.0,179.0,0,Transient,129.86,0,3,Check-Out,2020-03-03 -Resort Hotel,0,7,2017,March,10,24,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,168.0,179.0,0,Transient,57.27,0,0,Check-Out,2020-01-04 -City Hotel,0,27,2015,October,44,18,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,163.36,0,2,Check-Out,2018-08-03 -Resort Hotel,0,94,2016,March,14,31,0,1,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,E,D,0,No Deposit,102.0,179.0,0,Transient-Party,76.35,1,0,Check-Out,2019-04-03 -Resort Hotel,0,14,2016,February,10,30,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,61.8,0,0,Check-Out,2018-11-02 -City Hotel,0,55,2016,November,37,29,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,C,K,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-06-03 -City Hotel,0,15,2017,May,24,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,16.0,215.0,0,Transient,77.83,0,0,Check-Out,2019-12-04 -City Hotel,1,204,2017,July,30,19,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,B,0,No Deposit,8.0,179.0,0,Transient,202.56,0,1,Canceled,2020-06-02 -City Hotel,0,1,2017,February,2,14,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,70.19,0,1,Check-Out,2019-10-04 -Resort Hotel,0,2,2015,December,44,2,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,C,0,No Deposit,249.0,179.0,0,Transient,34.64,0,2,Check-Out,2018-09-02 -Resort Hotel,0,36,2017,May,18,23,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,240.0,179.0,0,Transient,174.44,0,3,Check-Out,2020-03-03 -Resort Hotel,1,6,2016,August,39,30,1,4,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,196.65,0,0,Canceled,2019-08-04 -Resort Hotel,0,208,2017,April,20,2,4,6,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,352.0,179.0,75,Contract,70.12,0,0,Check-Out,2019-10-04 -Resort Hotel,0,35,2017,June,28,18,3,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,145.78,0,0,Check-Out,2020-05-03 -Resort Hotel,0,13,2017,March,23,17,1,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,E,E,1,No Deposit,317.0,179.0,0,Transient-Party,80.56,1,0,Check-Out,2019-12-04 -Resort Hotel,0,50,2016,August,35,9,0,3,3,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,188.65,0,0,Check-Out,2019-06-03 -City Hotel,0,87,2017,May,19,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Group,100.19,0,3,Check-Out,2020-03-03 -City Hotel,0,4,2017,February,9,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,80.26,0,3,Check-Out,2019-11-03 -City Hotel,1,33,2016,December,53,7,2,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,6.0,179.0,0,Transient,98.34,0,0,Canceled,2019-10-04 -City Hotel,0,1,2017,February,21,28,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.27,0,1,Check-Out,2020-04-02 -Resort Hotel,1,103,2015,December,51,20,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,72.22,0,0,Canceled,2018-10-03 -City Hotel,0,10,2016,October,36,24,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.5,0,2,Check-Out,2019-06-03 -City Hotel,1,257,2017,June,26,20,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,135.7,0,0,Canceled,2020-06-02 -Resort Hotel,0,32,2016,October,43,23,0,1,2,0.0,0,HB,PRT,Direct,TA/TO,1,0,0,H,I,1,No Deposit,241.0,179.0,0,Transient,156.48,1,2,Check-Out,2019-02-01 -City Hotel,0,0,2017,February,10,6,0,1,2,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,A,0,No Deposit,15.0,80.0,0,Transient-Party,85.33,0,0,Check-Out,2020-02-01 -City Hotel,0,243,2017,August,30,18,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,143.24,0,0,Check-Out,2020-06-02 -Resort Hotel,0,14,2015,August,44,2,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,243.0,179.0,0,Transient-Party,39.53,1,1,Check-Out,2018-08-03 -City Hotel,1,16,2017,June,27,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,61.48,0,0,Canceled,2020-03-03 -City Hotel,1,99,2016,August,39,28,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,144.46,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2017,January,9,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,62.97,1,0,Check-Out,2020-02-01 -Resort Hotel,0,93,2016,December,51,24,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,98.54,0,1,Check-Out,2019-12-04 -City Hotel,0,37,2015,August,38,5,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,3,No Deposit,13.0,179.0,0,Transient-Party,98.01,0,0,Check-Out,2018-07-03 -City Hotel,1,264,2015,October,45,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,4.0,179.0,0,Transient,62.82,0,0,Canceled,2018-01-31 -City Hotel,0,235,2015,June,31,21,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,61.66,0,0,Check-Out,2018-09-02 -City Hotel,0,79,2015,December,52,25,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,95.92,0,3,Check-Out,2018-11-02 -City Hotel,0,38,2017,July,36,18,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,210.6,1,1,Check-Out,2020-04-02 -Resort Hotel,0,140,2016,March,18,13,0,5,2,0.0,0,BB,AUT,Corporate,Corporate,0,0,1,A,D,1,No Deposit,15.0,223.0,0,Transient-Party,40.24,1,0,Check-Out,2019-04-03 -City Hotel,1,298,2016,December,53,28,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,112.47,0,0,Canceled,2018-11-02 -City Hotel,0,36,2017,February,9,16,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,44.06,0,1,Check-Out,2019-10-04 -Resort Hotel,0,268,2017,July,32,22,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-06-02 -City Hotel,0,9,2017,June,21,18,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,60.0,0,Transient,105.08,1,0,Check-Out,2020-04-02 -City Hotel,0,95,2017,March,18,28,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,109.51,0,0,Check-Out,2020-02-01 -City Hotel,0,17,2017,February,10,22,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,76.94,0,0,Check-Out,2019-09-03 -City Hotel,0,47,2017,June,31,24,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,A,2,No Deposit,75.0,179.0,0,Group,114.87,0,1,Check-Out,2020-04-02 -City Hotel,0,64,2017,June,25,5,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,118.68,0,0,Check-Out,2020-05-03 -City Hotel,0,37,2016,October,47,30,1,2,2,2.0,0,BB,CHE,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,207.34,0,0,Check-Out,2019-07-04 -City Hotel,0,115,2017,April,17,31,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.52,1,1,Check-Out,2020-03-03 -City Hotel,0,31,2015,September,44,10,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,189.27,0,0,Check-Out,2019-07-04 -City Hotel,0,2,2015,October,45,17,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,87.5,0,1,Check-Out,2018-09-02 -Resort Hotel,1,0,2017,January,2,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,D,0,No Deposit,16.0,179.0,0,Transient,31.71,0,0,Canceled,2019-12-04 -City Hotel,1,43,2017,May,22,2,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,2,Non Refund,71.0,179.0,0,Transient,94.36,0,0,Canceled,2020-03-03 -City Hotel,0,149,2015,July,36,28,2,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.43,0,2,Check-Out,2019-07-04 -City Hotel,0,42,2016,October,45,21,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.59,0,2,Check-Out,2019-12-04 -Resort Hotel,0,7,2016,September,34,28,0,1,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,170,2017,August,35,11,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,215.3,1,1,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,December,52,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,76.0,0,Transient,62.57,0,0,Check-Out,2019-10-04 -Resort Hotel,0,53,2016,September,29,15,4,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,247.0,179.0,0,Transient,121.71,1,2,Check-Out,2019-09-03 -City Hotel,0,48,2017,May,17,27,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,118.16,1,1,Check-Out,2020-03-03 -City Hotel,0,50,2017,March,17,31,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient,214.96,0,3,Check-Out,2020-03-03 -City Hotel,1,88,2015,August,35,9,2,1,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,95.85,0,0,Canceled,2018-06-02 -City Hotel,1,229,2015,August,35,16,0,2,1,0.0,0,BB,PRT,Undefined,TA/TO,0,1,0,A,B,0,No Deposit,12.0,179.0,75,Contract,89.53,0,0,Canceled,2018-07-03 -City Hotel,0,113,2015,October,43,30,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,61.98,0,0,Check-Out,2018-08-03 -City Hotel,1,340,2017,April,16,29,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,269.0,179.0,0,Transient,114.44,0,0,Canceled,2019-10-04 -Resort Hotel,0,102,2016,June,27,20,2,6,2,0.0,0,HB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,2,No Deposit,178.0,179.0,75,Contract,186.94,0,0,Check-Out,2020-04-02 -Resort Hotel,0,102,2015,December,50,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,46.12,0,3,Check-Out,2019-10-04 -Resort Hotel,1,81,2015,December,3,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,68.14,0,0,No-Show,2019-01-03 -City Hotel,0,180,2017,July,26,5,0,3,2,0.0,0,BB,FRA,Aviation,Corporate,0,0,1,A,A,0,No Deposit,11.0,178.0,0,Transient,139.47,1,3,Check-Out,2020-06-02 -Resort Hotel,0,44,2016,February,11,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,75.79,0,0,Check-Out,2019-03-04 -Resort Hotel,1,90,2015,July,37,31,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,1.0,179.0,0,Contract,63.3,0,2,Canceled,2017-11-02 -City Hotel,1,37,2017,March,17,13,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,Non Refund,8.0,179.0,0,Transient,99.36,0,0,Canceled,2020-02-01 -City Hotel,0,34,2015,September,43,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,78.0,179.0,0,Contract,59.62,0,0,Check-Out,2018-07-03 -City Hotel,1,13,2016,June,43,11,2,3,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,112.63,0,0,Canceled,2019-05-04 -Resort Hotel,0,15,2016,November,51,30,1,2,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,188.0,179.0,0,Transient,65.01,0,0,Check-Out,2019-12-04 -City Hotel,1,49,2015,April,49,28,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,63,Transient,120.36,0,0,Canceled,2018-12-03 -Resort Hotel,0,22,2016,December,50,18,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,273.0,0,Transient,59.13,0,0,Check-Out,2019-12-04 -City Hotel,0,52,2017,February,9,16,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,111.31,0,1,Check-Out,2019-11-03 -Resort Hotel,0,83,2016,December,51,26,4,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,E,I,1,No Deposit,320.0,179.0,75,Transient-Party,2.0,0,2,Check-Out,2019-07-04 -Resort Hotel,1,86,2016,May,21,20,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,L,A,0,No Deposit,294.0,179.0,0,Transient-Party,77.1,0,0,Canceled,2019-02-01 -Resort Hotel,0,150,2016,May,23,27,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,C,I,2,No Deposit,244.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-05-04 -City Hotel,0,0,2017,February,9,27,0,1,1,0.0,0,BB,AUT,Direct,Direct,1,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,79.22,0,0,Check-Out,2020-01-04 -City Hotel,0,324,2016,August,35,27,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,122.02,0,3,Check-Out,2019-05-04 -City Hotel,0,155,2017,July,32,23,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,107.04,0,0,Check-Out,2020-06-02 -City Hotel,0,117,2015,September,34,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,61.9,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,December,5,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,78.0,0,Transient,30.97,1,0,Check-Out,2018-12-03 -City Hotel,0,3,2017,June,22,30,1,0,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,D,0,No Deposit,186.0,179.0,0,Transient,134.69,0,0,Check-Out,2020-01-04 -City Hotel,1,43,2017,March,15,4,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,92.51,0,0,Canceled,2018-12-03 -City Hotel,1,312,2017,March,16,15,0,3,3,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,103.53,0,0,Canceled,2019-12-04 -Resort Hotel,0,33,2016,November,48,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,66.94,0,2,Check-Out,2019-07-04 -Resort Hotel,0,176,2016,March,19,31,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,2,No Deposit,15.0,223.0,0,Transient-Party,45.0,0,0,Check-Out,2019-02-01 -City Hotel,1,29,2016,August,38,13,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,11.0,179.0,0,Group,161.85,0,2,Canceled,2019-06-03 -City Hotel,1,39,2016,November,45,16,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,149.23,0,2,Canceled,2019-12-04 -City Hotel,1,157,2017,July,27,24,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,76.6,0,0,Canceled,2019-11-03 -Resort Hotel,0,270,2016,October,45,2,0,2,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,70.0,179.0,0,Transient-Party,68.16,0,0,Check-Out,2019-07-04 -Resort Hotel,1,245,2017,August,38,28,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,239.0,179.0,0,Transient,183.45,0,0,Canceled,2020-06-02 -City Hotel,0,154,2017,June,26,4,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,111.95,0,0,Check-Out,2019-11-03 -City Hotel,1,93,2017,August,26,5,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,152.22,0,0,Canceled,2020-02-01 -City Hotel,0,2,2015,August,36,9,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,135.2,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2016,January,5,21,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,72.39,0,0,Check-Out,2019-10-04 -City Hotel,0,11,2016,May,21,28,1,0,3,2.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,10.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -Resort Hotel,0,229,2015,July,33,18,2,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,75.61,0,0,Check-Out,2018-06-02 -City Hotel,1,279,2016,October,49,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,21,Transient,67.27,0,0,Canceled,2018-09-02 -City Hotel,1,389,2017,April,17,21,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.02,0,0,Canceled,2020-04-02 -City Hotel,1,43,2017,March,10,15,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,206.08,0,0,Canceled,2019-12-04 -Resort Hotel,0,206,2017,August,37,28,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,249.0,179.0,0,Transient,217.88,1,1,Check-Out,2020-04-02 -City Hotel,0,387,2016,August,33,14,0,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,83.81,0,0,Check-Out,2019-05-04 -City Hotel,0,65,2016,June,24,5,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.62,0,1,Check-Out,2019-02-01 -City Hotel,1,318,2015,September,44,20,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.82,0,0,Canceled,2018-08-03 -City Hotel,0,3,2016,November,51,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,221.0,0,Transient,58.7,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,October,45,29,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,81.08,0,0,Check-Out,2019-09-03 -City Hotel,0,235,2017,May,20,5,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,34.06,0,0,Check-Out,2020-04-02 -Resort Hotel,0,3,2015,November,51,20,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,H,D,0,No Deposit,243.0,179.0,0,Transient,119.48,0,0,Check-Out,2018-08-03 -City Hotel,1,9,2015,December,4,2,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,45.39,0,0,No-Show,2018-11-02 -Resort Hotel,1,200,2016,June,28,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,75.57,0,0,Canceled,2019-03-04 -Resort Hotel,0,154,2017,June,28,30,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,163.66,0,1,Check-Out,2020-06-02 -Resort Hotel,0,92,2017,June,28,27,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,241.0,179.0,0,Transient-Party,125.94,1,0,Check-Out,2020-04-02 -Resort Hotel,0,146,2017,July,32,28,3,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,234.12,1,2,Check-Out,2020-01-04 -Resort Hotel,0,161,2016,March,44,31,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,Refundable,17.0,222.0,0,Transient-Party,71.73,0,0,Check-Out,2019-03-04 -City Hotel,0,151,2017,July,28,17,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.42,0,0,Check-Out,2019-06-03 -Resort Hotel,0,15,2017,March,10,6,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,192.0,179.0,0,Transient,71.52,1,0,Check-Out,2019-11-03 -Resort Hotel,0,19,2016,May,24,28,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,110.28,1,2,Check-Out,2019-04-03 -City Hotel,0,2,2015,August,42,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,52.51,0,2,Check-Out,2018-06-02 -City Hotel,1,42,2017,August,34,13,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,122.19,0,0,Canceled,2019-11-03 -City Hotel,1,37,2016,August,44,25,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,156.87,0,1,Canceled,2019-05-04 -Resort Hotel,0,1,2016,March,27,31,1,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,223.0,0,Transient-Party,61.46,0,0,Check-Out,2019-02-01 -City Hotel,1,261,2016,July,32,12,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,104.94,0,0,Canceled,2019-04-03 -Resort Hotel,1,148,2016,February,12,29,2,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,316.0,179.0,0,Transient,62.08,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2015,September,51,5,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,13.0,179.0,0,Transient,60.83,0,0,Check-Out,2019-05-04 -City Hotel,0,83,2017,May,24,31,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,126.95,0,2,Check-Out,2020-03-03 -City Hotel,0,0,2016,March,19,17,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient,122.28,1,1,Check-Out,2019-02-01 -City Hotel,0,111,2016,August,38,21,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,116.09,0,1,Check-Out,2019-08-04 -City Hotel,0,26,2016,August,33,9,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,230.15,0,0,Canceled,2019-06-03 -City Hotel,0,15,2016,October,44,21,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.06,0,2,Check-Out,2019-03-04 -Resort Hotel,0,105,2016,August,32,28,0,10,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,241.0,179.0,0,Transient,127.58,0,1,Check-Out,2019-06-03 -City Hotel,0,8,2016,October,44,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.53,0,1,Check-Out,2019-09-03 -City Hotel,1,38,2016,October,43,2,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.85,0,0,No-Show,2019-09-03 -City Hotel,1,42,2016,February,11,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,72.0,179.0,42,Transient,84.66,0,2,Canceled,2018-11-02 -Resort Hotel,0,46,2016,July,37,13,0,2,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,197.29,1,3,Check-Out,2018-06-02 -City Hotel,0,0,2016,January,4,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient,66.32,0,0,Check-Out,2018-10-03 -Resort Hotel,0,9,2017,February,9,20,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,74.94,0,0,Check-Out,2019-12-04 -City Hotel,0,7,2017,September,26,2,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,154.21,1,0,Check-Out,2019-10-04 -City Hotel,0,16,2017,January,9,6,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,67.69,0,0,Check-Out,2019-10-04 -City Hotel,1,142,2017,March,9,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.87,0,0,Canceled,2019-11-03 -City Hotel,1,49,2017,February,9,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,76.33,0,0,Canceled,2019-08-04 -Resort Hotel,0,303,2016,July,38,25,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,38.35,0,0,Check-Out,2019-03-04 -City Hotel,0,9,2016,May,10,10,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,102.91,1,1,Check-Out,2019-02-01 -City Hotel,1,47,2016,November,50,6,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,70.94,0,0,Canceled,2018-08-03 -City Hotel,0,10,2017,August,38,25,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,220.73,1,0,Check-Out,2020-07-03 -Resort Hotel,1,0,2016,August,38,24,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.86,0,0,Canceled,2019-04-03 -City Hotel,0,33,2016,March,9,14,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,102.46,0,2,Check-Out,2019-02-01 -City Hotel,1,1,2016,January,3,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient,107.08,0,0,No-Show,2018-11-02 -City Hotel,1,155,2016,July,26,1,0,2,1,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,156.92,0,0,Canceled,2018-05-03 -Resort Hotel,1,197,2017,June,28,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,164.0,179.0,0,Transient,81.3,0,0,Canceled,2020-02-01 -City Hotel,0,0,2017,January,53,6,0,1,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,217.43,0,1,Check-Out,2019-11-03 -City Hotel,1,243,2016,October,44,21,1,1,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,175.61,0,0,Canceled,2019-05-04 -Resort Hotel,0,12,2016,June,16,31,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,97.69,1,1,Check-Out,2019-06-03 -Resort Hotel,0,29,2016,August,37,16,0,4,3,0.0,0,BB,,Complementary,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,185.17,1,2,Check-Out,2019-06-03 -City Hotel,0,6,2017,March,17,24,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient-Party,69.51,0,0,Check-Out,2020-01-04 -Resort Hotel,0,128,2017,July,27,6,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,203.99,1,0,Check-Out,2020-05-03 -City Hotel,1,19,2016,October,4,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,0,Transient,63.04,0,0,Canceled,2018-11-02 -City Hotel,0,36,2016,March,17,24,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,76.0,0,0,Check-Out,2018-12-03 -City Hotel,0,89,2016,December,50,12,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.36,0,2,Check-Out,2019-11-03 -City Hotel,0,88,2016,October,46,17,1,3,2,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,17.0,190.0,0,Transient,83.41,0,0,Check-Out,2019-06-03 -Resort Hotel,1,241,2017,June,26,20,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,63.58,0,0,Canceled,2019-11-03 -City Hotel,0,139,2016,July,26,24,2,3,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,138.26,0,2,Check-Out,2019-05-04 -Resort Hotel,0,31,2015,December,53,31,0,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,83.72,1,0,Check-Out,2018-08-03 -Resort Hotel,1,145,2016,June,26,26,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,2,No Deposit,241.0,179.0,0,Transient,154.07,0,1,No-Show,2019-02-01 -Resort Hotel,0,26,2016,October,41,19,1,1,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,1,D,D,0,No Deposit,13.0,228.0,0,Transient,90.92,1,1,Check-Out,2019-07-04 -City Hotel,1,28,2017,May,21,9,0,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,164.34,0,1,Canceled,2019-12-04 -Resort Hotel,1,236,2017,June,22,6,2,7,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,81.87,1,3,Canceled,2020-02-01 -Resort Hotel,0,107,2016,March,10,23,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,110.0,179.0,0,Transient,78.89,0,0,Check-Out,2019-03-04 -City Hotel,1,152,2016,August,38,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.09,0,0,Canceled,2019-03-04 -City Hotel,0,24,2016,November,50,29,1,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.79,0,0,Canceled,2019-06-03 -Resort Hotel,1,25,2016,December,17,27,0,2,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,108.36,0,0,Canceled,2018-11-02 -City Hotel,0,22,2015,September,48,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,61,Transient-Party,73.99,0,0,Check-Out,2018-07-03 -City Hotel,1,106,2015,August,48,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,97.16,0,0,Canceled,2018-07-03 -City Hotel,0,45,2017,March,17,5,1,2,3,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,8.0,179.0,0,Transient,239.31,0,1,Check-Out,2020-03-03 -City Hotel,1,18,2015,October,45,28,1,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Group,96.24,0,0,Canceled,2018-08-03 -City Hotel,0,18,2016,July,32,30,0,3,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,123.06,1,2,Check-Out,2018-06-02 -City Hotel,1,205,2016,May,24,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.36,0,0,Canceled,2018-12-03 -City Hotel,0,0,2016,March,16,23,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,H,0,No Deposit,13.0,179.0,0,Transient,65.33,0,1,Check-Out,2019-01-03 -Resort Hotel,0,36,2015,December,53,31,2,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,101.0,179.0,0,Transient,60.3,0,2,Check-Out,2018-12-03 -Resort Hotel,0,150,2015,August,36,21,2,5,3,2.0,0,BB,NOR,Direct,TA/TO,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-06-02 -City Hotel,0,19,2016,September,45,2,0,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,79.19,0,2,Check-Out,2019-05-04 -City Hotel,0,30,2016,July,33,25,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,76.65,0,1,Check-Out,2019-06-03 -Resort Hotel,1,46,2015,September,44,26,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,109.08,0,0,Canceled,2018-07-03 -City Hotel,0,1,2016,June,21,15,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,P,0,No Deposit,14.0,161.0,0,Transient,109.41,0,0,Check-Out,2019-07-04 -City Hotel,1,267,2016,June,27,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.21,0,1,Canceled,2019-04-03 -Resort Hotel,0,11,2015,August,44,29,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,233.0,0,Transient,38.46,0,2,Check-Out,2018-07-03 -Resort Hotel,0,38,2016,June,20,12,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,H,I,0,No Deposit,12.0,179.0,0,Transient-Party,82.75,0,0,Check-Out,2019-05-04 -City Hotel,1,356,2017,August,22,6,0,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,181.76,0,0,Canceled,2020-03-03 -City Hotel,1,96,2017,April,26,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,83.97,0,0,Canceled,2018-06-02 -City Hotel,0,4,2016,August,23,7,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,218.07,0,1,Check-Out,2019-06-03 -City Hotel,0,19,2016,October,46,27,1,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,206.0,179.0,0,Transient,63.63,0,0,Check-Out,2019-10-04 -Resort Hotel,0,151,2016,August,37,30,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,136.44,1,3,Check-Out,2019-06-03 -City Hotel,0,159,2016,May,22,31,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.34,0,1,Check-Out,2019-04-03 -City Hotel,1,25,2015,October,45,21,0,3,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,159.12,0,0,Canceled,2018-06-02 -City Hotel,0,13,2016,December,53,22,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,89.45,0,0,Check-Out,2019-10-04 -City Hotel,1,94,2016,November,48,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,68.82,0,0,Check-Out,2019-11-03 -City Hotel,0,138,2016,March,51,27,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,53.89,0,0,Check-Out,2019-11-03 -Resort Hotel,0,100,2015,December,53,30,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,C,3,No Deposit,244.0,179.0,0,Transient,39.23,0,2,Check-Out,2019-12-04 -City Hotel,0,14,2015,October,43,16,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,33.73,0,0,Check-Out,2018-09-02 -Resort Hotel,1,67,2017,March,23,28,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,241.0,179.0,0,Transient,123.29,0,0,Canceled,2019-10-04 -City Hotel,1,259,2016,July,33,21,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,186.3,0,1,Canceled,2019-03-04 -City Hotel,0,1,2015,September,41,20,0,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,121.77,0,0,Check-Out,2018-08-03 -City Hotel,0,107,2017,April,17,10,2,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.24,0,0,Check-Out,2020-04-02 -City Hotel,0,14,2016,December,45,17,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,249.0,0,Transient,34.58,0,0,Check-Out,2018-12-03 -Resort Hotel,0,47,2017,March,10,24,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,66.14,0,3,Check-Out,2020-04-02 -City Hotel,0,102,2016,March,42,9,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,199.37,0,3,Check-Out,2019-03-04 -City Hotel,0,20,2015,September,44,21,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,34.0,179.0,0,Contract,67.3,0,0,Check-Out,2018-08-03 -Resort Hotel,0,229,2017,June,27,28,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,87.84,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,February,10,8,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,I,0,No Deposit,244.0,179.0,0,Transient,43.05,0,0,Check-Out,2019-01-03 -City Hotel,0,10,2016,October,46,29,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,226.0,0,Transient,94.94,0,0,Check-Out,2019-06-03 -Resort Hotel,0,245,2017,July,27,31,0,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,248.0,179.0,0,Transient,99.2,0,0,Check-Out,2020-01-04 -City Hotel,1,49,2015,September,45,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,11.0,45.0,0,Transient,86.43,0,3,Canceled,2018-08-03 -Resort Hotel,1,202,2016,May,31,6,2,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Transient-Party,59.57,0,0,Canceled,2019-06-03 -City Hotel,0,54,2017,March,11,10,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.23,0,1,Check-Out,2020-03-03 -City Hotel,0,150,2017,June,33,5,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,132.36,0,1,Check-Out,2020-07-03 -Resort Hotel,0,217,2017,April,21,21,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,100.29,0,0,Check-Out,2020-01-04 -Resort Hotel,0,223,2015,August,37,6,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,E,1,No Deposit,239.0,179.0,0,Transient,194.17,0,1,Check-Out,2018-06-02 -Resort Hotel,0,258,2017,June,26,6,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient-Party,102.94,0,0,Check-Out,2020-06-02 -Resort Hotel,0,251,2016,June,24,25,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,104.35,0,3,Check-Out,2018-06-02 -City Hotel,1,7,2016,August,3,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,86.76,0,0,Canceled,2018-11-02 -Resort Hotel,0,170,2017,February,12,13,2,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,329.0,179.0,0,Transient,38.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,42,2016,December,53,24,0,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient-Party,77.55,0,0,Canceled,2018-12-03 -City Hotel,1,46,2016,March,11,4,0,1,3,0.0,0,BB,ISR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,105.25,0,0,Canceled,2019-12-04 -Resort Hotel,0,298,2017,July,21,22,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,186.0,179.0,0,Contract,96.7,0,1,Check-Out,2020-02-01 -Resort Hotel,0,106,2016,March,11,9,2,5,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,292.0,179.0,0,Transient-Party,58.94,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,November,42,30,0,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,65.48,0,0,Check-Out,2018-09-02 -Resort Hotel,0,190,2017,May,26,25,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Contract,89.57,0,2,Check-Out,2020-04-02 -City Hotel,1,247,2015,September,41,28,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.41,0,0,Canceled,2018-07-03 -City Hotel,0,94,2017,July,28,27,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,24.0,179.0,0,Transient,234.57,0,0,Check-Out,2020-07-03 -City Hotel,1,33,2017,February,10,18,1,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,93.57,0,0,Canceled,2019-11-03 -City Hotel,0,18,2016,August,36,23,2,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,9.0,179.0,0,Transient,130.65,0,0,Check-Out,2019-05-04 -City Hotel,0,14,2015,September,32,28,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,115.48,0,0,Check-Out,2018-09-02 -City Hotel,1,129,2017,August,38,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,109.44,0,0,Canceled,2020-07-03 -Resort Hotel,0,19,2015,August,37,28,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,63.2,0,0,Check-Out,2018-07-03 -City Hotel,0,275,2015,September,37,15,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,110.21,0,0,Check-Out,2018-08-03 -City Hotel,0,43,2017,March,11,28,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.64,0,0,Check-Out,2019-10-04 -City Hotel,0,25,2016,February,8,2,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,222.0,0,Transient,84.56,1,0,Check-Out,2019-01-03 -City Hotel,1,102,2017,August,35,17,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.28,0,0,Canceled,2019-12-04 -City Hotel,0,16,2016,December,44,27,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.58,0,0,Check-Out,2019-12-04 -City Hotel,1,48,2016,December,53,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,62.85,0,0,Canceled,2019-11-03 -Resort Hotel,0,203,2016,May,21,19,1,10,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,E,C,0,Non Refund,179.0,179.0,0,Transient-Party,67.51,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2017,February,9,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,60.73,1,0,Check-Out,2020-03-03 -City Hotel,0,2,2017,February,7,16,0,1,2,0.0,0,SC,AUT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,10.0,68.0,0,Transient,94.92,0,2,Check-Out,2020-02-01 -Resort Hotel,0,14,2017,May,20,17,0,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,192.29,0,2,Check-Out,2020-03-03 -City Hotel,0,38,2015,July,33,28,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,74.91,0,1,Check-Out,2019-07-04 -City Hotel,0,23,2016,May,25,28,0,1,1,0.0,0,BB,ISR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.49,0,1,Check-Out,2019-02-01 -City Hotel,1,59,2017,August,21,24,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,164.94,0,0,Canceled,2020-05-03 -City Hotel,0,91,2016,August,35,21,0,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,78.41,0,1,Check-Out,2018-06-02 -Resort Hotel,0,92,2017,July,37,25,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,92.0,179.0,0,Transient-Party,114.63,0,1,Check-Out,2019-12-04 -City Hotel,0,89,2017,August,35,10,2,3,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.58,0,2,Check-Out,2020-07-03 -City Hotel,1,34,2017,May,9,27,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,24.0,179.0,0,Transient-Party,63.38,0,0,Canceled,2020-02-01 -City Hotel,0,6,2016,February,9,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,92.56,0,0,Check-Out,2018-11-02 -City Hotel,1,7,2017,June,28,29,2,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.19,0,0,Canceled,2020-03-03 -City Hotel,0,45,2017,June,29,3,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.72,0,1,Check-Out,2020-05-03 -City Hotel,0,25,2016,November,50,20,1,4,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,D,2,No Deposit,14.0,210.0,0,Transient-Party,44.21,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2017,May,22,22,1,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,149.24,0,1,Check-Out,2019-12-04 -City Hotel,0,19,2016,August,44,12,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,152.86,0,2,Check-Out,2019-06-03 -City Hotel,0,30,2015,October,46,19,1,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,39.0,207.0,0,Transient-Party,61.0,0,0,Check-Out,2018-09-02 -City Hotel,0,30,2015,October,44,9,1,3,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,121.79,0,0,Check-Out,2018-08-03 -Resort Hotel,1,0,2016,March,11,17,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,14.0,80.0,0,Transient,36.21,0,0,Canceled,2019-03-04 -City Hotel,0,32,2015,August,36,16,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,199.56,0,0,Check-Out,2019-06-03 -City Hotel,0,37,2017,May,22,21,1,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,130.6,0,2,Check-Out,2020-02-01 -Resort Hotel,1,45,2016,April,17,30,1,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,127.63,0,2,Canceled,2019-03-04 -Resort Hotel,0,13,2017,June,28,8,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient-Party,235.96,1,1,Check-Out,2020-06-02 -City Hotel,1,49,2016,March,9,19,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,59.3,0,0,Canceled,2019-10-04 -Resort Hotel,0,143,2016,March,10,16,1,3,1,0.0,0,BB,IRL,Corporate,Corporate,1,0,0,A,A,2,No Deposit,13.0,223.0,0,Transient,33.84,0,0,Check-Out,2018-12-03 -Resort Hotel,0,42,2016,August,39,28,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,207.04,1,1,Check-Out,2019-06-03 -City Hotel,0,14,2015,July,37,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,126.82,0,2,Check-Out,2018-08-03 -Resort Hotel,0,40,2015,September,44,10,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,58.34,0,0,Check-Out,2018-06-02 -City Hotel,1,144,2015,July,32,20,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.24,0,2,Canceled,2018-06-02 -Resort Hotel,0,45,2015,December,52,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,33.0,179.0,0,Group,28.36,0,1,Check-Out,2019-11-03 -City Hotel,0,103,2016,July,15,5,0,2,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,63,Transient-Party,119.21,0,1,Check-Out,2019-07-04 -Resort Hotel,0,105,2017,March,12,3,0,3,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,82.69,0,1,Check-Out,2020-04-02 -City Hotel,0,163,2015,October,43,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,110.68,0,2,Check-Out,2019-08-04 -City Hotel,0,229,2015,September,41,13,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,41.02,0,0,Canceled,2018-08-03 -City Hotel,0,0,2015,August,44,30,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,61.02,0,0,Check-Out,2018-08-03 -Resort Hotel,0,104,2016,October,45,16,2,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,198.0,0,Transient,112.44,0,0,Check-Out,2019-06-03 -City Hotel,0,23,2016,May,24,23,0,1,2,2.0,0,BB,ITA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,171.61,0,0,Check-Out,2019-02-01 -Resort Hotel,0,36,2017,March,10,21,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,95.0,179.0,75,Transient-Party,78.77,0,1,Check-Out,2019-12-04 -Resort Hotel,0,2,2016,December,53,28,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,118.03,0,0,Check-Out,2019-12-04 -Resort Hotel,0,4,2016,January,8,2,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,36.22,0,2,Check-Out,2018-10-03 -Resort Hotel,0,1,2015,August,36,6,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,A,0,No Deposit,17.0,179.0,0,Transient,179.47,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2017,March,13,16,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,3,No Deposit,13.0,179.0,75,Transient-Party,44.13,1,0,Check-Out,2019-09-03 -Resort Hotel,0,94,2016,July,30,6,2,5,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,195.7,0,0,Canceled,2019-01-03 -City Hotel,0,36,2016,April,21,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,74.03,0,0,Check-Out,2019-03-04 -City Hotel,0,3,2016,September,43,5,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,170.65,0,0,Check-Out,2019-08-04 -City Hotel,0,35,2016,December,51,10,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,29.0,179.0,0,Transient,74.9,0,1,Check-Out,2019-11-03 -Resort Hotel,1,430,2017,August,39,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,148.5,0,0,Canceled,2020-06-02 -City Hotel,1,117,2016,December,53,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,62,Transient,78.34,0,0,Canceled,2018-11-02 -Resort Hotel,1,315,2016,September,22,27,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,157.42,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2015,September,44,25,1,1,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,188.55,0,0,Check-Out,2018-08-03 -City Hotel,0,110,2017,February,30,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.64,1,1,Check-Out,2020-06-02 -Resort Hotel,0,88,2017,March,18,29,2,0,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,A,E,0,No Deposit,378.0,179.0,0,Group,69.55,0,1,Check-Out,2020-02-01 -City Hotel,0,32,2016,August,22,13,2,4,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,129.88,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2016,January,12,6,0,1,3,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.24,0,1,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,April,16,21,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,D,D,0,No Deposit,11.0,179.0,0,Transient,63.5,1,0,Check-Out,2019-02-01 -City Hotel,0,247,2017,May,18,13,2,5,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,81.19,0,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,February,11,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,2,No Deposit,378.0,331.0,0,Transient,79.74,0,0,Check-Out,2020-02-01 -City Hotel,1,382,2017,June,24,9,0,2,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,Non Refund,176.0,179.0,0,Transient,157.37,0,0,Canceled,2019-12-04 -City Hotel,0,20,2016,December,3,26,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,64.0,0,Transient,123.41,0,0,Check-Out,2019-12-04 -Resort Hotel,0,35,2015,December,53,30,2,2,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,D,D,1,No Deposit,246.0,179.0,0,Transient,62.08,1,1,Check-Out,2018-11-02 -City Hotel,0,87,2016,June,25,8,0,2,1,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,97.45,0,0,Check-Out,2019-07-04 -City Hotel,0,1,2017,July,29,31,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.33,0,1,Check-Out,2020-06-02 -Resort Hotel,0,91,2016,July,18,18,0,3,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,101.87,0,0,Check-Out,2019-03-04 -City Hotel,0,153,2016,June,27,21,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.55,0,1,Check-Out,2019-06-03 -City Hotel,1,374,2017,April,18,24,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,61.46,0,0,Canceled,2018-11-02 -City Hotel,0,189,2016,October,44,9,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,160.84,0,1,Check-Out,2019-08-04 -City Hotel,0,0,2016,November,49,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient-Party,116.68,1,0,Check-Out,2019-08-04 -City Hotel,1,17,2016,November,48,29,0,1,1,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,230.0,0,Transient,58.74,0,2,Canceled,2019-10-04 -City Hotel,0,83,2017,May,22,21,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,91.0,179.0,0,Transient,87.14,0,0,Check-Out,2020-03-03 -City Hotel,0,53,2017,June,20,30,0,2,2,1.0,0,BB,DEU,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,122.64,0,1,Check-Out,2020-04-02 -City Hotel,0,102,2017,March,11,14,2,5,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.69,1,0,Check-Out,2020-03-03 -City Hotel,0,323,2015,July,32,13,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,89.0,179.0,0,Contract,131.02,0,0,Check-Out,2018-05-03 -City Hotel,1,20,2017,June,26,29,1,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,198.39,0,3,Canceled,2019-11-03 -City Hotel,0,86,2016,June,21,15,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient,97.57,0,0,Check-Out,2019-02-01 -Resort Hotel,0,384,2016,October,43,17,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,258.0,179.0,0,Transient-Party,74.0,0,0,Check-Out,2020-01-04 -City Hotel,1,52,2016,May,25,2,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,156.0,179.0,0,Transient,71.62,0,0,Canceled,2019-03-04 -City Hotel,0,47,2016,March,35,8,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.58,0,0,Check-Out,2019-06-03 -Resort Hotel,0,13,2015,December,53,7,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,87.0,179.0,39,Group,24.23,0,1,Check-Out,2018-08-03 -Resort Hotel,1,36,2016,November,11,31,0,1,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,72.03,0,0,Canceled,2018-11-02 -City Hotel,1,10,2016,August,27,22,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,92.1,1,0,Canceled,2020-04-02 -City Hotel,1,156,2016,April,45,21,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,42,Transient,72.74,0,0,Canceled,2018-12-03 -City Hotel,0,44,2015,September,43,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,58,Transient-Party,70.31,0,2,Check-Out,2018-09-02 -Resort Hotel,0,149,2017,March,12,10,2,5,2,0.0,0,HB,BEL,Groups,Corporate,0,0,0,A,D,1,No Deposit,95.0,223.0,0,Transient-Party,64.54,0,0,Check-Out,2020-04-02 -City Hotel,0,3,2015,October,46,15,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,1,No Deposit,14.0,64.0,0,Transient-Party,70.85,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2015,August,36,4,2,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Contract,113.89,0,2,Check-Out,2018-05-03 -City Hotel,1,19,2016,June,27,21,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,90.22,0,0,Canceled,2019-03-04 -City Hotel,1,240,2016,October,44,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.92,0,0,Canceled,2017-11-02 -City Hotel,0,238,2016,August,45,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,142.65,0,0,Check-Out,2019-06-03 -Resort Hotel,0,43,2016,March,17,31,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,222.0,0,Transient-Party,30.24,1,0,Check-Out,2019-02-01 -City Hotel,1,20,2017,August,26,21,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,154.74,0,1,Canceled,2020-07-03 -City Hotel,0,14,2017,December,53,31,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.12,0,3,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,March,8,8,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,60.9,1,0,Check-Out,2019-02-01 -City Hotel,0,372,2016,September,44,31,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,114.31,0,2,Check-Out,2019-09-03 -City Hotel,0,32,2016,May,10,23,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,129.0,179.0,0,Transient-Party,74.86,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,August,35,12,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,250.0,179.0,0,Transient,114.54,0,0,Check-Out,2019-08-04 -City Hotel,1,0,2017,January,33,30,2,1,3,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,202.9,0,1,Canceled,2019-08-04 -Resort Hotel,0,14,2017,February,10,6,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,A,0,No Deposit,306.0,179.0,0,Transient-Party,63.46,0,0,Check-Out,2020-03-03 -City Hotel,1,13,2017,June,25,19,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,99.52,0,0,Canceled,2019-02-01 -City Hotel,1,146,2017,June,26,17,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,13.0,179.0,75,Transient,234.17,0,0,Canceled,2020-01-04 -Resort Hotel,0,3,2015,October,42,21,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,107.44,0,0,Check-Out,2019-09-03 -City Hotel,1,15,2017,November,48,9,2,1,2,0.0,0,BB,NLD,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,86.99,0,0,Canceled,2019-10-04 -City Hotel,0,0,2015,July,34,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,68.49,0,0,Check-Out,2018-05-03 -City Hotel,1,293,2015,August,33,30,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.62,0,0,Canceled,2017-09-02 -City Hotel,0,171,2017,August,36,23,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,145.49,0,1,Check-Out,2020-07-03 -City Hotel,0,19,2016,September,43,4,0,1,2,0.0,0,BB,FRA,Aviation,GDS,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,157.34,0,0,Check-Out,2019-11-03 -Resort Hotel,0,99,2016,August,33,4,2,5,2,1.0,0,HB,ESP,Direct,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient-Party,164.28,1,0,Check-Out,2019-05-04 -City Hotel,0,88,2017,April,18,9,1,1,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,104.46,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,March,3,25,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient,88.34,1,0,Check-Out,2019-01-03 -City Hotel,1,326,2016,October,44,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,132.75,0,0,Canceled,2019-10-04 -Resort Hotel,0,94,2017,February,12,30,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,92.17,0,1,Canceled,2019-11-03 -Resort Hotel,1,44,2015,October,44,2,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,A,0,No Deposit,246.0,179.0,0,Transient-Party,100.03,0,1,Canceled,2018-08-03 -City Hotel,1,51,2017,March,9,14,2,3,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,70.71,0,0,Canceled,2019-11-03 -Resort Hotel,1,238,2016,October,44,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,40.28,0,0,Canceled,2018-01-03 -Resort Hotel,0,31,2016,May,22,5,4,5,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,E,0,No Deposit,352.0,179.0,0,Transient,114.77,0,0,Check-Out,2019-03-04 -Resort Hotel,1,258,2016,July,26,7,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,75.59,0,2,Canceled,2019-04-03 -City Hotel,0,0,2015,August,27,21,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,79.64,0,1,Check-Out,2018-07-03 -City Hotel,1,2,2016,June,22,25,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Canceled,2019-02-01 -City Hotel,0,102,2016,June,26,20,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,125.7,0,2,Check-Out,2019-02-01 -City Hotel,1,96,2017,March,9,4,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.11,0,0,Canceled,2020-01-04 -City Hotel,0,0,2016,February,11,21,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,12.0,179.0,0,Transient,68.13,0,1,Check-Out,2019-01-03 -Resort Hotel,0,0,2015,December,53,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,61.86,0,0,Check-Out,2018-12-03 -City Hotel,1,363,2017,January,9,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,21,Transient,58.61,0,0,Canceled,2019-09-03 -City Hotel,0,19,2015,October,43,31,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,151.59,0,2,Check-Out,2018-08-03 -City Hotel,1,28,2015,November,45,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.72,0,0,Canceled,2017-10-03 -Resort Hotel,0,0,2016,January,11,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,31.1,0,1,Check-Out,2018-11-02 -Resort Hotel,0,145,2017,May,29,23,4,10,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,135.46,0,1,Check-Out,2019-06-03 -City Hotel,1,10,2016,June,26,21,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,135.18,0,0,Canceled,2019-06-03 -City Hotel,1,155,2017,June,36,17,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,169.31,0,1,Canceled,2019-10-04 -Resort Hotel,0,3,2016,March,24,6,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,1,0,1,D,D,0,No Deposit,14.0,196.0,0,Transient,36.26,0,0,Check-Out,2019-02-01 -Resort Hotel,0,30,2017,March,12,10,1,2,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,80.72,0,0,Check-Out,2020-01-04 -City Hotel,1,19,2016,September,23,19,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.9,0,0,Canceled,2018-10-03 -Resort Hotel,0,111,2016,March,10,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,322.0,179.0,41,Transient,44.17,0,0,Check-Out,2018-12-03 -City Hotel,0,117,2017,May,17,22,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,90.06,0,3,Check-Out,2020-04-02 -Resort Hotel,0,167,2016,June,27,14,4,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,124.81,0,2,Check-Out,2019-04-03 -City Hotel,0,86,2017,June,26,2,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,199.45,0,2,Check-Out,2019-12-04 -Resort Hotel,0,91,2017,February,10,28,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,176.0,179.0,0,Transient-Party,72.37,0,0,Check-Out,2019-10-04 -Resort Hotel,0,239,2017,June,25,14,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,104.69,0,2,Check-Out,2020-06-02 -City Hotel,0,2,2016,October,45,11,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,12.0,253.0,0,Transient-Party,45.85,0,0,Check-Out,2019-09-03 -Resort Hotel,0,2,2017,February,3,9,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,40.18,0,1,Check-Out,2019-12-04 -Resort Hotel,0,24,2017,July,38,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,123.72,0,1,Check-Out,2020-03-03 -Resort Hotel,0,86,2016,August,37,25,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,84.13,0,0,Check-Out,2019-06-03 -City Hotel,1,11,2016,June,16,21,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,11.0,62.0,0,Transient,102.82,0,0,Canceled,2019-06-03 -City Hotel,0,38,2016,July,53,10,2,3,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.8,0,0,Check-Out,2019-06-03 -City Hotel,1,108,2016,June,25,9,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,8.0,179.0,0,Transient,74.3,0,1,Canceled,2019-02-01 -City Hotel,0,2,2017,July,25,15,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.08,0,1,Check-Out,2020-07-03 -Resort Hotel,0,138,2017,March,9,21,2,7,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,77.26,0,0,Check-Out,2020-03-03 -City Hotel,0,383,2017,April,20,5,2,4,2,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.82,0,1,Check-Out,2020-06-02 -City Hotel,0,10,2015,September,41,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,96.47,0,1,Check-Out,2018-08-03 -Resort Hotel,0,103,2016,August,39,15,0,1,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,241.0,179.0,0,Transient,251.62,0,3,Check-Out,2019-09-03 -City Hotel,0,17,2016,October,44,9,2,1,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.59,0,0,Check-Out,2019-09-03 -Resort Hotel,0,129,2017,June,22,23,2,3,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,273.0,179.0,0,Transient-Party,151.07,0,0,Check-Out,2020-06-02 -City Hotel,1,11,2016,June,26,2,1,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.45,0,0,Canceled,2019-01-03 -Resort Hotel,0,43,2015,October,49,23,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,61.8,0,0,Check-Out,2018-06-02 -City Hotel,0,13,2016,August,35,30,1,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,193.89,0,2,Check-Out,2019-09-03 -City Hotel,0,35,2017,October,31,4,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.03,0,2,Check-Out,2019-04-03 -City Hotel,1,0,2015,July,37,11,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,199.69,0,0,Canceled,2018-06-02 -Resort Hotel,0,1,2016,December,53,15,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,40.37,1,2,Check-Out,2019-10-04 -City Hotel,1,97,2016,June,26,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.39,0,1,Canceled,2019-03-04 -City Hotel,0,40,2017,January,3,8,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.76,0,0,Check-Out,2019-10-04 -City Hotel,0,19,2015,September,35,13,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.84,0,0,Check-Out,2018-11-02 -Resort Hotel,1,52,2016,March,9,6,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,366.0,179.0,0,Transient,49.86,0,0,Check-Out,2019-02-01 -City Hotel,0,15,2017,April,18,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,104.78,0,1,Check-Out,2020-02-01 -Resort Hotel,0,33,2017,May,23,22,0,1,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,152.13,1,2,Check-Out,2020-04-02 -City Hotel,0,96,2017,May,29,5,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,104.8,0,0,Check-Out,2020-02-01 -Resort Hotel,0,40,2015,December,53,17,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,98.48,1,0,Check-Out,2018-07-03 -City Hotel,0,56,2016,April,15,5,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.71,0,0,Check-Out,2019-02-01 -Resort Hotel,0,322,2016,March,17,22,2,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,221.0,0,Transient-Party,73.02,0,0,Check-Out,2019-02-01 -Resort Hotel,0,92,2016,November,52,30,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,76.0,0,Transient,47.49,1,1,Check-Out,2019-12-04 -Resort Hotel,1,247,2016,October,17,7,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient-Party,73.89,0,0,Canceled,2019-04-03 -City Hotel,0,151,2016,June,24,19,0,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,41.11,0,0,Check-Out,2019-05-04 -Resort Hotel,0,4,2015,November,48,4,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,74.48,0,0,Check-Out,2018-06-02 -City Hotel,1,33,2017,May,19,5,0,4,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,129.69,0,0,Check-Out,2020-04-02 -Resort Hotel,0,110,2016,July,27,5,2,7,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,131.07,0,0,Check-Out,2019-06-03 -City Hotel,1,22,2017,February,11,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.35,0,0,Canceled,2018-01-03 -Resort Hotel,1,259,2015,July,32,21,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,247.0,179.0,0,Transient,102.08,0,0,Canceled,2018-05-03 -City Hotel,1,206,2017,August,32,21,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,146.0,0,1,Canceled,2020-04-02 -City Hotel,0,107,2017,May,21,30,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,97.58,0,0,Canceled,2019-12-04 -City Hotel,0,39,2016,August,36,25,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,176.35,0,0,Check-Out,2019-05-04 -City Hotel,1,146,2016,August,36,2,2,1,2,1.0,0,HB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,78.18,0,0,Canceled,2019-09-03 -Resort Hotel,0,45,2016,October,28,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,No Deposit,187.0,179.0,0,Transient,166.93,0,0,Check-Out,2019-04-03 -Resort Hotel,0,18,2016,June,21,27,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,222.7,0,1,Canceled,2019-03-04 -City Hotel,1,11,2017,August,36,22,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,151.43,0,0,Canceled,2019-10-04 -City Hotel,1,90,2016,April,17,2,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,Non Refund,2.0,179.0,0,Transient,59.83,0,0,Canceled,2019-02-01 -City Hotel,1,108,2015,July,38,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,4.0,179.0,0,Transient,101.1,0,0,Canceled,2018-06-02 -Resort Hotel,0,77,2015,August,37,27,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,172.27,0,0,Check-Out,2018-06-02 -City Hotel,0,197,2015,September,39,25,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,117.92,0,0,No-Show,2018-09-02 -City Hotel,0,3,2017,May,26,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,2,No Deposit,91.0,179.0,0,Transient,129.66,0,2,Check-Out,2020-02-01 -City Hotel,1,13,2016,December,37,4,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,160.08,0,0,Canceled,2019-12-04 -City Hotel,0,8,2017,May,20,17,0,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,155.64,0,0,Check-Out,2020-02-01 -City Hotel,1,315,2015,October,44,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.62,0,0,Canceled,2017-10-03 -City Hotel,0,0,2017,July,31,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.12,0,1,Check-Out,2020-07-03 -City Hotel,1,157,2017,October,41,16,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.52,0,0,Canceled,2019-11-03 -City Hotel,0,1,2016,January,12,13,1,1,2,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,48.0,0,Transient,77.62,0,0,Check-Out,2018-11-02 -Resort Hotel,0,270,2016,July,36,13,0,10,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,79.15,0,0,Check-Out,2019-04-03 -City Hotel,0,155,2015,August,41,21,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,83.38,0,0,Check-Out,2019-08-04 -City Hotel,0,152,2015,July,31,9,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,163.72,0,1,Check-Out,2018-05-03 -City Hotel,1,10,2017,March,3,16,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.82,0,0,Canceled,2020-03-03 -City Hotel,1,397,2017,August,33,21,0,1,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,81.51,0,0,Canceled,2020-07-03 -City Hotel,1,25,2016,November,46,9,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,4.0,179.0,0,Transient-Party,78.7,0,0,Canceled,2019-08-04 -City Hotel,0,0,2017,June,26,18,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.09,0,1,Check-Out,2020-02-01 -Resort Hotel,0,31,2016,April,17,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,166.0,179.0,0,Transient-Party,119.24,0,0,Check-Out,2019-02-01 -City Hotel,1,16,2016,August,34,19,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,90.87,0,0,Canceled,2018-11-02 -Resort Hotel,0,139,2016,December,17,17,0,4,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,91.0,179.0,0,Transient-Party,91.26,0,0,Check-Out,2019-06-03 -City Hotel,0,43,2016,October,49,4,0,2,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.93,0,0,Check-Out,2019-05-04 -Resort Hotel,0,24,2016,April,17,18,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,93.8,0,1,Check-Out,2019-02-01 -City Hotel,0,154,2016,December,53,5,0,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,113.8,0,1,Check-Out,2019-11-03 -City Hotel,1,59,2017,July,26,30,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,152.67,0,0,No-Show,2020-02-01 -Resort Hotel,1,98,2016,February,53,28,2,2,2,0.0,0,FB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,145.0,179.0,20,Transient,63.08,0,0,Canceled,2019-01-03 -Resort Hotel,0,248,2017,June,25,31,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,107.37,0,2,Check-Out,2020-05-03 -Resort Hotel,0,262,2017,May,22,30,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,125.26,0,1,Check-Out,2020-03-03 -Resort Hotel,1,26,2017,August,33,15,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,75,Transient,173.45,0,1,Canceled,2020-04-02 -City Hotel,0,6,2017,July,31,2,1,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Contract,90.9,0,1,Check-Out,2018-06-02 -City Hotel,0,38,2016,March,10,16,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,61.64,0,1,Check-Out,2018-12-03 -City Hotel,1,46,2016,May,27,27,0,4,1,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,83.39,0,0,Canceled,2019-02-01 -Resort Hotel,0,50,2016,September,49,2,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,G,3,No Deposit,243.0,179.0,0,Transient,247.65,1,0,Check-Out,2019-11-03 -City Hotel,0,99,2016,May,41,2,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,65.23,0,2,Check-Out,2019-06-03 -Resort Hotel,1,53,2017,March,10,29,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,F,0,No Deposit,245.0,179.0,0,Transient,128.23,0,1,Canceled,2020-01-04 -Resort Hotel,0,46,2016,July,26,15,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,125.15,1,1,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,October,43,10,0,1,1,0.0,0,BB,,Complementary,Direct,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,18,2017,May,15,31,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,198.99,0,2,Check-Out,2020-06-02 -City Hotel,0,24,2016,December,50,21,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,61.11,1,0,Check-Out,2018-12-03 -City Hotel,0,9,2016,October,42,30,0,3,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,76.82,0,0,Check-Out,2019-09-03 -City Hotel,1,114,2017,March,13,18,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,130.52,0,0,Canceled,2020-03-03 -City Hotel,0,16,2016,May,46,29,1,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,154.09,0,2,Check-Out,2019-09-03 -City Hotel,0,14,2016,November,48,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,246.0,0,Transient,63.96,0,0,Check-Out,2019-10-04 -Resort Hotel,0,248,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,224.0,0,Transient,76.67,0,0,Check-Out,2019-05-04 -Resort Hotel,0,162,2017,July,31,15,2,4,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,F,I,1,No Deposit,248.0,179.0,0,Transient,128.96,1,3,Check-Out,2020-07-03 -City Hotel,0,39,2015,August,36,4,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,84.02,0,0,Check-Out,2018-06-02 -City Hotel,1,261,2015,October,44,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,32.31,0,0,Canceled,2018-08-03 -Resort Hotel,0,42,2016,September,21,21,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,68.08,0,1,Check-Out,2019-03-04 -City Hotel,0,239,2017,June,23,24,1,1,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,11.0,179.0,0,Transient,188.3,0,3,Check-Out,2020-02-01 -City Hotel,0,85,2016,March,14,31,0,1,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient-Party,40.33,0,1,Check-Out,2019-03-04 -City Hotel,0,13,2017,May,25,24,2,1,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,86.69,0,0,Check-Out,2020-07-03 -City Hotel,0,49,2016,July,22,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,69.47,0,1,Check-Out,2019-02-01 -Resort Hotel,0,36,2016,December,50,28,0,2,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,110.13,0,0,Check-Out,2019-07-04 -City Hotel,1,371,2017,February,27,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,72.83,0,0,Canceled,2020-03-03 -City Hotel,1,146,2016,April,16,10,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,20,Transient,72.71,0,0,Canceled,2018-11-02 -Resort Hotel,0,235,2015,August,37,22,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,95.95,0,1,Check-Out,2018-06-02 -City Hotel,0,26,2016,May,22,5,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,121.82,0,1,Check-Out,2019-03-04 -Resort Hotel,0,230,2017,August,36,16,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,188.83,0,2,Check-Out,2020-03-03 -City Hotel,1,2,2016,February,11,31,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,106.09,0,0,Canceled,2018-12-03 -Resort Hotel,0,24,2016,March,15,16,1,4,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,78.27,0,0,Check-Out,2019-02-01 -Resort Hotel,0,14,2015,October,45,27,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,319.0,179.0,0,Transient,85.15,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,October,42,21,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,0,No Deposit,13.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-09-03 -City Hotel,0,19,2016,October,45,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,61.0,0,Transient,62.75,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,January,3,28,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,32.32,1,0,Check-Out,2019-11-03 -City Hotel,0,6,2016,March,11,8,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,78.78,0,0,Check-Out,2018-11-02 -Resort Hotel,1,81,2015,December,53,19,1,3,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,241.0,179.0,0,Transient,94.38,0,0,Canceled,2018-06-02 -City Hotel,0,149,2016,April,22,6,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.85,0,2,Check-Out,2019-07-04 -City Hotel,0,293,2017,July,25,17,2,5,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,124.16,0,1,Check-Out,2020-04-02 -City Hotel,0,234,2016,May,31,13,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.96,0,1,Check-Out,2019-02-01 -City Hotel,1,403,2016,May,38,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,99.94,0,0,Canceled,2019-02-01 -City Hotel,1,41,2016,September,39,18,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,150.92,0,0,Canceled,2019-08-04 -City Hotel,0,14,2016,October,44,28,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,125.68,0,0,Check-Out,2019-05-04 -City Hotel,0,11,2015,October,44,9,2,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient-Party,94.33,0,0,Check-Out,2018-09-02 -City Hotel,1,98,2016,June,22,2,2,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,78.81,0,0,Canceled,2019-06-03 -City Hotel,1,391,2016,June,28,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.26,0,0,Canceled,2017-12-03 -City Hotel,1,55,2016,February,9,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,B,A,0,Non Refund,1.0,179.0,0,Transient,33.63,0,0,Canceled,2018-10-03 -City Hotel,0,152,2017,June,25,21,1,2,2,0.0,0,BB,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,165.59,0,2,Check-Out,2020-03-03 -City Hotel,1,162,2017,August,23,13,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,75,Transient,122.08,0,0,Canceled,2020-03-03 -Resort Hotel,1,153,2017,August,34,10,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,79.61,0,0,Canceled,2018-06-02 -City Hotel,1,104,2016,June,17,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,21,Transient,96.29,0,0,Canceled,2018-12-03 -Resort Hotel,1,140,2017,July,32,24,2,3,2,1.0,0,BB,GBR,Direct,TA/TO,0,0,0,C,C,0,No Deposit,317.0,179.0,0,Transient,200.91,0,0,Canceled,2020-03-03 -Resort Hotel,1,256,2015,August,30,6,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,143.88,0,0,Canceled,2018-01-03 -City Hotel,1,209,2016,April,19,20,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,75,Transient,161.4,0,0,Canceled,2019-01-03 -City Hotel,1,97,2017,April,16,15,2,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,90.26,0,0,Canceled,2020-03-03 -City Hotel,1,149,2016,September,39,28,1,1,1,0.0,0,SC,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,83.3,0,0,Canceled,2019-09-03 -City Hotel,0,155,2017,May,15,16,1,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,36.0,179.0,0,Transient,185.29,1,0,Check-Out,2020-07-03 -City Hotel,0,110,2017,June,31,24,4,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,40.0,179.0,0,Contract,79.69,0,1,Check-Out,2020-06-02 -City Hotel,1,86,2016,June,26,19,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,60,Transient,77.93,0,0,Canceled,2019-04-03 -City Hotel,1,17,2016,March,10,13,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.6,0,0,Canceled,2019-11-03 -City Hotel,0,97,2016,December,53,5,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient-Party,60.56,0,1,Check-Out,2019-01-03 -City Hotel,1,29,2016,June,9,15,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,E,0,No Deposit,7.0,179.0,0,Transient,58.64,0,0,Canceled,2019-02-01 -Resort Hotel,1,53,2015,December,53,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,D,0,No Deposit,244.0,179.0,0,Transient,60.06,0,0,Canceled,2018-11-02 -City Hotel,0,8,2017,August,32,22,1,2,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient-Party,96.29,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,June,21,18,0,1,1,0.0,0,BB,AUT,Direct,Direct,0,0,0,G,F,0,No Deposit,15.0,179.0,0,Transient,105.11,0,0,Check-Out,2020-02-01 -City Hotel,1,27,2016,June,43,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,15.0,45.0,0,Transient,75.16,0,0,Canceled,2019-08-04 -City Hotel,0,165,2016,October,21,11,2,1,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,166.23,0,0,Check-Out,2019-05-04 -City Hotel,1,418,2015,September,38,28,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,71.81,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2016,May,4,27,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,37.9,0,0,Check-Out,2019-09-03 -Resort Hotel,0,95,2016,March,9,20,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,94.0,179.0,0,Transient,70.03,0,3,Check-Out,2019-02-01 -Resort Hotel,1,56,2017,March,17,30,0,3,2,0.0,0,HB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,13.0,222.0,0,Transient,63.68,0,0,Canceled,2020-03-03 -City Hotel,1,255,2017,May,27,8,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,96.41,0,0,Canceled,2018-08-03 -City Hotel,1,246,2017,February,11,28,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.25,0,0,Canceled,2019-10-04 -City Hotel,0,2,2016,August,35,5,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,119.83,0,1,Check-Out,2019-05-04 -City Hotel,1,316,2015,September,35,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,3.0,179.0,0,Transient-Party,62.37,0,0,Canceled,2018-08-03 -City Hotel,0,32,2017,March,12,19,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,69.41,0,2,Check-Out,2020-02-01 -City Hotel,0,15,2016,September,44,25,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.75,0,1,Check-Out,2019-07-04 -City Hotel,0,259,2016,July,25,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Contract,67.62,0,3,Check-Out,2019-03-04 -City Hotel,0,97,2017,May,22,18,1,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,72.91,0,2,Check-Out,2020-03-03 -City Hotel,0,1,2017,February,10,29,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.8,0,1,Check-Out,2020-01-04 -Resort Hotel,0,46,2017,August,36,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,216.05,1,0,Check-Out,2020-07-03 -City Hotel,0,98,2017,April,27,23,1,4,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.32,0,0,Check-Out,2020-01-04 -Resort Hotel,1,261,2016,July,27,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,242.0,179.0,0,Transient,63.88,0,2,Canceled,2019-01-03 -City Hotel,1,21,2016,March,17,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.63,0,0,Canceled,2018-10-03 -Resort Hotel,0,61,2015,November,44,5,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,32.83,0,0,Check-Out,2018-09-02 -City Hotel,1,18,2017,August,35,5,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,79.2,0,1,Canceled,2020-07-03 -Resort Hotel,0,131,2016,August,34,31,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient-Party,133.93,1,1,Check-Out,2019-05-04 -City Hotel,0,39,2016,December,53,18,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,91.19,0,1,Check-Out,2019-09-03 -City Hotel,1,34,2016,March,10,30,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,85.08,0,0,Canceled,2019-01-03 -Resort Hotel,0,153,2016,April,17,21,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,100.13,0,2,Check-Out,2019-02-01 -City Hotel,1,109,2016,October,41,15,4,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,76.37,0,0,Canceled,2019-07-04 -Resort Hotel,0,153,2017,March,19,31,2,4,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,378.0,179.0,0,Transient-Party,80.43,1,0,Check-Out,2020-02-01 -Resort Hotel,0,42,2016,February,11,10,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,331.0,0,Transient-Party,28.69,0,0,Check-Out,2019-03-04 -City Hotel,1,89,2016,July,31,6,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,102.7,0,0,Canceled,2017-11-02 -Resort Hotel,0,98,2016,April,15,26,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,84.26,0,0,Canceled,2018-11-02 -Resort Hotel,1,0,2016,January,10,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,66.55,0,0,No-Show,2018-12-03 -Resort Hotel,0,203,2016,March,19,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,60.91,1,0,Check-Out,2019-03-04 -Resort Hotel,1,34,2016,August,37,6,1,2,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,175.48,0,0,Canceled,2019-07-04 -Resort Hotel,1,13,2015,December,53,10,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,35.06,0,0,Canceled,2018-08-03 -City Hotel,0,310,2017,August,34,22,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.85,0,1,Check-Out,2020-06-02 -Resort Hotel,0,250,2016,November,50,20,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,189.0,179.0,75,Transient-Party,61.64,0,0,Check-Out,2019-08-04 -City Hotel,1,114,2016,December,50,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.94,0,1,Canceled,2018-11-02 -Resort Hotel,1,311,2017,May,21,17,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,77.39,0,1,Canceled,2020-05-03 -Resort Hotel,0,24,2015,December,53,26,2,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,70.86,0,0,Check-Out,2019-11-03 -City Hotel,1,34,2016,October,45,24,2,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,E,F,2,No Deposit,12.0,179.0,0,Transient,60.39,0,1,Canceled,2019-09-03 -City Hotel,0,0,2017,June,25,11,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,96.26,0,1,Check-Out,2020-06-02 -City Hotel,1,432,2015,October,44,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient,62.37,0,0,Canceled,2018-08-03 -Resort Hotel,0,13,2015,September,41,22,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Contract,71.39,0,0,Check-Out,2018-07-03 -Resort Hotel,0,52,2015,July,50,22,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,112.49,1,2,Check-Out,2018-06-02 -Resort Hotel,0,255,2016,March,16,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient,72.72,0,0,Check-Out,2019-06-03 -City Hotel,0,30,2015,July,30,15,0,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,73.68,0,0,Check-Out,2018-06-02 -City Hotel,1,5,2017,April,20,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,E,G,0,No Deposit,25.0,179.0,0,Group,121.6,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,June,26,7,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,71.96,0,0,Check-Out,2018-12-03 -City Hotel,1,32,2015,August,36,28,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,3.0,179.0,0,Contract,75.43,0,0,Canceled,2017-11-02 -Resort Hotel,0,99,2017,August,41,25,1,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,245.0,179.0,0,Transient,184.17,1,1,Check-Out,2020-07-03 -City Hotel,0,10,2016,November,51,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,E,2,No Deposit,14.0,207.0,0,Transient,112.59,1,0,Check-Out,2019-06-03 -Resort Hotel,0,17,2015,November,50,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,1,1,1,A,D,0,No Deposit,174.0,179.0,0,Group,41.88,0,2,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,February,10,5,1,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,83.29,0,3,Check-Out,2018-11-02 -City Hotel,0,2,2015,October,45,28,0,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,120.45,0,0,Check-Out,2018-08-03 -Resort Hotel,0,92,2016,April,17,28,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,71.7,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,January,3,27,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,90.0,0,Transient-Party,62.42,1,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,May,22,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,251.0,0,Transient,36.78,1,0,Check-Out,2020-05-03 -Resort Hotel,0,7,2016,August,39,21,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,71.16,1,0,Check-Out,2019-04-03 -City Hotel,0,58,2016,March,21,30,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,116.5,0,0,Canceled,2019-02-01 -Resort Hotel,0,147,2016,December,53,5,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,82.25,0,1,Check-Out,2018-11-02 -Resort Hotel,0,37,2016,September,36,22,2,6,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient-Party,126.05,0,3,Check-Out,2019-05-04 -City Hotel,1,209,2016,October,45,22,1,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,90.33,0,0,Canceled,2019-09-03 -Resort Hotel,1,327,2016,May,38,9,1,4,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,D,0,No Deposit,168.0,179.0,0,Transient,118.19,0,0,Canceled,2019-05-04 -Resort Hotel,1,263,2016,October,37,5,3,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient,116.64,0,1,Canceled,2018-07-03 -City Hotel,0,1,2017,May,25,19,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,D,0,No Deposit,17.0,45.0,0,Transient,65.62,0,0,Check-Out,2020-03-03 -Resort Hotel,0,294,2016,May,23,31,1,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,224.0,0,Transient-Party,80.31,0,0,Check-Out,2019-02-01 -City Hotel,0,12,2017,June,34,13,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,70.94,0,1,Check-Out,2020-05-03 -City Hotel,1,110,2016,September,26,27,1,2,2,0.0,0,Undefined,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,93.88,0,0,Canceled,2019-08-04 -Resort Hotel,1,55,2016,April,15,31,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,61.91,0,0,Canceled,2018-11-02 -City Hotel,0,9,2016,September,43,21,0,1,2,0.0,0,BB,,Complementary,Direct,1,0,0,D,F,0,No Deposit,15.0,45.0,0,Transient,0.0,1,0,Check-Out,2019-03-04 -Resort Hotel,0,257,2017,April,34,15,2,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,D,0,No Deposit,248.0,179.0,0,Transient,37.32,0,0,Check-Out,2020-03-03 -City Hotel,0,13,2016,January,4,15,0,1,2,0.0,0,BB,,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,99.84,0,3,Check-Out,2019-12-04 -City Hotel,0,256,2016,October,44,10,2,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,84.13,0,0,Check-Out,2019-09-03 -City Hotel,0,10,2016,June,24,23,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,86.52,0,0,Check-Out,2019-08-04 -City Hotel,0,4,2016,November,51,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,15.0,45.0,0,Transient,62.72,0,0,Check-Out,2019-06-03 -City Hotel,1,51,2016,August,38,8,2,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,10.0,179.0,0,Transient,170.63,0,2,Canceled,2019-02-01 -Resort Hotel,0,110,2015,August,38,5,2,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,235.54,1,1,Check-Out,2018-11-02 -Resort Hotel,0,150,2016,April,22,2,2,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,60,Transient,70.45,0,0,Check-Out,2019-11-03 -City Hotel,1,13,2016,June,29,2,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.51,0,1,Canceled,2019-06-03 -Resort Hotel,1,9,2016,August,32,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,3,No Deposit,240.0,179.0,0,Transient-Party,149.39,0,1,No-Show,2019-09-03 -City Hotel,0,102,2016,October,44,30,2,3,2,2.0,0,BB,AUT,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,164.73,0,3,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,March,10,16,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,62.38,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,June,26,2,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,2,No Deposit,249.0,179.0,0,Transient,34.58,1,0,Check-Out,2019-06-03 -City Hotel,1,154,2016,March,9,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient,73.72,0,0,Canceled,2019-08-04 -Resort Hotel,1,11,2015,August,38,22,1,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,111.27,0,1,Canceled,2018-06-02 -City Hotel,0,125,2015,August,34,26,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,84.0,0,1,Check-Out,2019-05-04 -Resort Hotel,0,23,2017,May,22,29,2,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,3,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,360,2016,September,44,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient-Party,88.35,0,0,Check-Out,2019-08-04 -Resort Hotel,0,126,2017,April,19,29,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,82.72,0,0,Check-Out,2020-01-04 -City Hotel,1,148,2016,June,32,8,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.6,0,0,Canceled,2019-01-03 -City Hotel,0,0,2017,February,10,13,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,D,F,0,No Deposit,16.0,188.0,0,Transient,1.63,0,0,Check-Out,2020-03-03 -City Hotel,1,2,2017,June,22,10,1,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.97,0,0,Canceled,2020-04-02 -Resort Hotel,0,11,2015,July,34,21,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,268.0,179.0,0,Transient-Party,105.93,0,0,Check-Out,2019-11-03 -Resort Hotel,1,141,2017,February,8,6,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,95.83,0,0,Canceled,2020-01-04 -Resort Hotel,0,13,2017,March,11,2,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,96.53,0,3,Check-Out,2020-03-03 -City Hotel,0,102,2016,May,21,31,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,126.44,0,1,Check-Out,2019-06-03 -City Hotel,0,369,2017,June,25,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,128.87,0,1,Check-Out,2020-06-02 -City Hotel,0,99,2017,March,9,31,2,5,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,132.31,0,2,Check-Out,2020-01-04 -Resort Hotel,0,12,2016,December,50,27,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,241.0,0,Transient,61.66,0,0,Check-Out,2019-11-03 -City Hotel,1,44,2017,December,50,5,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,7.0,179.0,0,Transient,89.76,0,1,Canceled,2019-11-03 -City Hotel,0,14,2017,August,22,16,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,156.83,0,0,Check-Out,2020-04-02 -City Hotel,1,0,2017,May,26,19,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,67.0,0,Transient,100.6,0,0,Canceled,2019-03-04 -Resort Hotel,0,52,2016,January,5,9,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,245.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-05-04 -Resort Hotel,0,0,2017,March,10,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,57.0,0,Transient,35.42,0,0,Check-Out,2020-03-03 -Resort Hotel,1,243,2016,August,2,30,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,0,3,No-Show,2019-05-04 -City Hotel,1,87,2016,July,33,26,2,4,3,2.0,0,BB,ITA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,161.62,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2017,January,2,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,16.0,86.0,0,Transient,63.4,0,0,Check-Out,2020-03-03 -City Hotel,0,54,2016,May,22,31,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,100.36,1,1,Check-Out,2019-05-04 -Resort Hotel,0,239,2017,June,28,22,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,184.0,179.0,0,Transient-Party,115.93,0,0,Check-Out,2020-04-02 -City Hotel,0,44,2016,October,41,8,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,96.34,0,0,Check-Out,2019-08-04 -City Hotel,1,97,2015,July,32,3,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,104.11,0,2,Canceled,2018-06-02 -Resort Hotel,0,156,2016,July,26,31,0,3,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,2,Refundable,2.0,179.0,0,Transient-Party,75.12,0,0,Check-Out,2019-04-03 -City Hotel,0,283,2015,August,31,6,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,B,D,1,No Deposit,8.0,179.0,0,Transient-Party,72.13,0,0,Check-Out,2018-06-02 -Resort Hotel,0,90,2017,March,10,9,1,2,2,0.0,0,Undefined,ITA,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient-Party,79.44,0,0,Check-Out,2020-01-04 -Resort Hotel,0,0,2016,September,44,28,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,69.26,1,0,Check-Out,2019-06-03 -City Hotel,1,185,2017,August,39,18,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,188.36,0,1,Canceled,2020-06-02 -City Hotel,0,13,2017,January,32,31,1,2,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,139.03,1,0,Check-Out,2020-02-01 -City Hotel,1,6,2017,May,23,26,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,145.96,0,0,Canceled,2020-03-03 -City Hotel,0,39,2016,July,33,16,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.63,0,1,Check-Out,2018-06-02 -City Hotel,0,27,2016,March,19,6,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.01,0,2,Check-Out,2019-03-04 -Resort Hotel,0,295,2017,April,15,27,2,4,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,71.78,0,1,Check-Out,2020-03-03 -City Hotel,1,32,2016,October,41,10,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,79.36,0,0,Canceled,2018-08-03 -City Hotel,1,333,2015,September,39,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.83,0,0,Canceled,2017-09-02 -City Hotel,1,284,2015,September,37,5,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.2,0,0,Canceled,2018-08-03 -City Hotel,0,409,2016,October,43,15,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.94,0,2,Check-Out,2019-11-03 -City Hotel,1,1,2017,January,2,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,79.0,0,Transient,45.5,0,0,Canceled,2019-10-04 -Resort Hotel,0,19,2017,March,16,23,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,281.0,179.0,0,Group,89.2,0,3,Check-Out,2019-11-03 -Resort Hotel,1,255,2016,December,36,22,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,221.0,179.0,0,Transient,62.42,0,0,Canceled,2019-01-03 -City Hotel,1,236,2016,August,45,5,0,2,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.75,0,0,Canceled,2018-08-03 -City Hotel,0,199,2016,September,44,29,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,9.0,179.0,0,Transient,128.09,0,3,Check-Out,2019-07-04 -City Hotel,1,324,2015,September,31,15,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.77,0,0,Canceled,2017-11-02 -City Hotel,1,444,2016,August,38,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.33,0,0,Canceled,2018-08-03 -City Hotel,0,51,2016,July,33,8,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.64,0,2,Check-Out,2020-06-02 -City Hotel,1,78,2016,June,17,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,80.0,179.0,0,Transient,67.8,0,0,Canceled,2018-12-03 -City Hotel,0,49,2016,February,8,10,0,7,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,31.0,179.0,0,Transient,79.77,0,0,Check-Out,2018-11-02 -City Hotel,0,87,2016,August,33,15,2,5,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient,95.27,0,2,Check-Out,2019-09-03 -City Hotel,1,160,2016,August,3,6,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,60.75,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,April,45,24,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.87,0,0,No-Show,2019-01-03 -Resort Hotel,0,0,2016,February,9,31,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,82.0,0,Transient,89.97,0,0,Check-Out,2018-12-03 -City Hotel,0,114,2016,April,16,5,2,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.42,0,1,Check-Out,2019-01-03 -City Hotel,0,45,2016,December,50,26,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,70.88,0,0,Check-Out,2019-08-04 -Resort Hotel,0,256,2016,September,43,29,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,60.42,0,0,Check-Out,2019-08-04 -City Hotel,1,108,2016,July,27,20,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.75,0,0,Canceled,2019-05-04 -Resort Hotel,0,47,2017,July,28,7,1,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,G,0,No Deposit,252.0,179.0,0,Transient,0.0,0,2,Check-Out,2020-06-02 -Resort Hotel,0,2,2017,May,21,9,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,61.78,0,0,Check-Out,2020-02-01 -City Hotel,0,229,2017,June,21,15,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.15,0,0,Check-Out,2020-02-01 -Resort Hotel,1,87,2017,July,27,15,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,242.0,179.0,0,Transient,159.19,0,0,No-Show,2020-06-02 -Resort Hotel,0,35,2017,March,9,17,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,241.0,179.0,0,Group,44.91,0,1,Check-Out,2020-03-03 -Resort Hotel,1,239,2015,December,11,26,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,242.0,179.0,0,Group,47.26,0,0,Canceled,2018-11-02 -City Hotel,0,49,2015,December,53,31,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.33,0,2,Check-Out,2018-12-03 -City Hotel,0,33,2016,June,43,6,0,1,3,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.37,0,1,Check-Out,2019-06-03 -City Hotel,0,20,2015,October,42,21,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,1,No Deposit,15.0,179.0,0,Transient,64.8,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,January,52,27,0,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,125.14,0,0,Check-Out,2019-11-03 -City Hotel,0,238,2016,October,50,25,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,123.17,0,0,Check-Out,2019-11-03 -City Hotel,0,48,2017,May,10,21,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,167.29,0,0,Check-Out,2020-03-03 -City Hotel,1,428,2016,September,22,22,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,80.87,0,0,Canceled,2019-07-04 -Resort Hotel,1,45,2015,August,36,5,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,100.25,0,3,Canceled,2018-06-02 -City Hotel,0,339,2017,August,24,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,147.86,0,1,Check-Out,2020-07-03 -Resort Hotel,0,88,2016,March,15,31,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,2,Refundable,13.0,222.0,0,Transient-Party,44.8,0,0,Check-Out,2019-02-01 -City Hotel,1,16,2017,August,32,27,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,150.28,0,2,Canceled,2019-12-04 -City Hotel,1,42,2017,May,28,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,119.3,0,0,Canceled,2019-12-04 -Resort Hotel,0,4,2017,March,12,13,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,0,E,E,3,No Deposit,12.0,331.0,0,Transient,83.74,0,0,Check-Out,2019-11-03 -City Hotel,1,376,2017,April,16,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,81.09,0,0,Canceled,2019-10-04 -Resort Hotel,0,154,2016,March,17,28,0,3,2,0.0,0,HB,BEL,Groups,Corporate,0,0,0,A,I,1,No Deposit,13.0,223.0,0,Transient-Party,70.42,0,0,Check-Out,2019-03-04 -City Hotel,0,48,2017,February,9,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,104.0,179.0,0,Contract,66.74,0,0,Check-Out,2020-03-03 -Resort Hotel,0,53,2016,August,16,28,2,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-02-01 -City Hotel,0,47,2016,March,43,10,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.18,0,2,Check-Out,2019-11-03 -Resort Hotel,1,50,2017,July,32,18,2,5,1,1.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,132.14,0,3,No-Show,2020-03-03 -City Hotel,1,306,2015,August,38,13,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.38,0,0,Canceled,2018-05-03 -Resort Hotel,0,14,2017,July,38,28,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,116.27,0,0,Check-Out,2020-06-02 -City Hotel,1,15,2017,May,18,31,2,1,2,0.0,0,SC,PRT,Online TA,Corporate,1,0,0,A,A,0,No Deposit,12.0,223.0,0,Transient,120.28,0,0,Canceled,2020-03-03 -Resort Hotel,0,10,2016,April,16,28,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,62.03,1,0,Check-Out,2019-04-03 -City Hotel,1,44,2015,October,10,24,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.25,0,0,Canceled,2018-12-03 -Resort Hotel,0,139,2017,May,21,27,0,4,1,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,16.0,331.0,0,Transient-Party,133.94,0,0,Check-Out,2020-07-03 -City Hotel,1,375,2015,October,46,2,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,63.36,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,January,4,22,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,63.22,0,2,Check-Out,2018-11-02 -City Hotel,0,13,2017,June,27,20,1,3,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,92.71,0,0,Check-Out,2019-05-04 -Resort Hotel,0,95,2015,December,53,22,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,35.89,0,1,Check-Out,2018-12-03 -Resort Hotel,0,106,2017,May,24,21,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,69.46,0,0,Check-Out,2020-08-03 -City Hotel,0,2,2017,May,23,10,0,1,1,0.0,0,SC,,Online TA,Corporate,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,124.7,0,2,Check-Out,2020-02-01 -City Hotel,0,112,2017,July,24,4,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,110.87,1,0,Check-Out,2020-06-02 -Resort Hotel,1,95,2015,July,33,6,2,3,2,0.0,0,HB,ESP,Online TA,Direct,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,206.01,0,2,Canceled,2017-11-02 -City Hotel,1,15,2015,December,37,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,63.0,0,Transient,78.72,0,0,Canceled,2017-12-03 -City Hotel,0,1,2017,February,9,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,70.0,0,Transient,60.96,0,0,Check-Out,2019-01-03 -City Hotel,0,121,2017,August,35,2,2,3,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,242.99,0,2,Check-Out,2020-02-01 -City Hotel,1,248,2017,June,21,21,1,3,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.06,0,0,Canceled,2020-02-01 -City Hotel,0,293,2016,October,43,28,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,68.85,0,0,Check-Out,2019-09-03 -City Hotel,1,45,2016,October,45,9,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,104.17,0,0,Canceled,2019-08-04 -City Hotel,0,103,2016,December,50,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient-Party,62.11,0,0,Check-Out,2019-05-04 -City Hotel,1,114,2016,February,10,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,H,0,Non Refund,1.0,179.0,0,Transient,68.04,0,0,Canceled,2018-11-02 -City Hotel,0,44,2016,February,11,27,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,71.77,0,1,Check-Out,2019-03-04 -City Hotel,0,2,2016,February,9,25,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,99.54,0,0,Check-Out,2019-02-01 -Resort Hotel,0,376,2017,June,32,9,4,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,37.0,179.0,0,Transient-Party,96.73,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,February,22,26,0,1,1,0.0,0,HB,AUT,Groups,Corporate,1,0,1,A,K,2,No Deposit,31.0,179.0,0,Group,41.35,0,0,Check-Out,2020-01-04 -Resort Hotel,1,160,2016,October,42,14,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,304.0,179.0,0,Transient,43.34,0,0,Canceled,2019-07-04 -City Hotel,0,15,2016,March,17,18,2,5,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,72.28,0,3,Check-Out,2019-02-01 -City Hotel,0,21,2016,December,50,5,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.98,0,1,Check-Out,2019-10-04 -Resort Hotel,0,397,2016,August,37,26,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,161.7,1,2,Check-Out,2019-06-03 -City Hotel,0,52,2016,December,53,27,0,2,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,82.73,0,0,Check-Out,2018-12-03 -Resort Hotel,0,114,2016,May,21,25,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,242.0,179.0,0,Transient,105.89,0,1,Check-Out,2019-04-03 -City Hotel,0,1,2016,October,43,17,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,B,0,No Deposit,15.0,86.0,0,Transient,0.0,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2015,December,50,6,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,140.0,179.0,0,Transient-Party,44.05,0,0,Check-Out,2018-06-02 -City Hotel,0,207,2017,June,23,27,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient-Party,81.23,0,0,Check-Out,2020-04-02 -City Hotel,1,11,2017,May,22,30,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,128.82,0,0,No-Show,2020-03-03 -City Hotel,0,97,2017,August,17,17,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,122.12,0,1,Check-Out,2020-05-03 -City Hotel,1,28,2017,June,28,15,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,100.81,0,0,Canceled,2020-03-03 -City Hotel,0,11,2016,October,53,27,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,101.08,0,3,Check-Out,2019-11-03 -City Hotel,1,47,2016,May,23,21,1,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient,143.83,0,0,Canceled,2019-02-01 -Resort Hotel,0,158,2017,August,37,18,2,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,322.0,179.0,0,Transient,98.1,1,1,Check-Out,2020-06-02 -City Hotel,1,27,2016,November,50,20,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.39,0,0,Canceled,2019-09-03 -City Hotel,0,14,2015,September,37,21,0,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,125.86,0,0,Check-Out,2018-08-03 -Resort Hotel,0,170,2015,July,30,17,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,100.33,1,0,Check-Out,2018-05-03 -City Hotel,0,0,2017,April,9,19,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,11.0,179.0,0,Transient,94.16,0,2,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,March,10,16,0,2,1,0.0,0,BB,NLD,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,331.0,75,Transient,34.32,0,0,Check-Out,2018-12-03 -City Hotel,0,323,2015,June,30,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,A,0,No Deposit,2.0,179.0,0,Contract,61.6,0,2,Check-Out,2017-12-03 -City Hotel,1,35,2016,February,9,5,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,315.0,179.0,0,Transient,37.15,0,1,No-Show,2019-02-01 -City Hotel,1,11,2016,March,16,22,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,84.73,0,0,Check-Out,2019-02-01 -Resort Hotel,0,13,2017,August,37,30,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,1,0,0,A,D,1,No Deposit,240.0,179.0,0,Group,106.1,1,2,Check-Out,2020-06-02 -City Hotel,0,42,2016,November,50,9,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,79.84,0,0,Check-Out,2019-11-03 -City Hotel,1,104,2015,September,45,30,2,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,92.64,0,1,Canceled,2018-06-02 -City Hotel,1,14,2017,February,8,24,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,69.52,0,0,Canceled,2020-02-01 -City Hotel,0,10,2016,May,20,25,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,124.58,0,2,Check-Out,2019-03-04 -City Hotel,0,23,2016,December,53,5,0,2,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,79.69,0,1,Check-Out,2019-11-03 -Resort Hotel,0,3,2015,August,51,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,17.0,179.0,0,Transient,149.1,1,0,Check-Out,2018-08-03 -Resort Hotel,0,239,2017,May,22,10,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,117.65,0,0,Check-Out,2020-04-02 -Resort Hotel,0,193,2017,May,22,28,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,95.0,179.0,0,Transient-Party,136.95,0,0,Check-Out,2020-02-01 -Resort Hotel,0,1,2017,January,2,14,2,0,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,26.55,0,0,Check-Out,2019-12-04 -City Hotel,0,54,2015,December,49,29,0,1,1,0.0,0,BB,ESP,Direct,Corporate,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,79.33,0,0,Check-Out,2018-11-02 -City Hotel,0,21,2016,November,44,28,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,123.83,0,0,Check-Out,2019-09-03 -Resort Hotel,0,10,2017,February,13,29,1,1,1,0.0,0,BB,BEL,Groups,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,71.96,0,2,Check-Out,2019-11-03 -City Hotel,1,117,2016,April,21,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,82.31,0,0,Canceled,2019-03-04 -City Hotel,0,2,2017,January,4,28,2,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,70.59,0,1,Check-Out,2019-12-04 -City Hotel,1,42,2017,March,11,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,41,Transient,117.75,0,0,Canceled,2019-11-03 -City Hotel,1,414,2016,September,38,24,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,145.77,0,0,Canceled,2018-01-03 -City Hotel,1,46,2016,December,53,11,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,152.77,0,1,Check-Out,2019-10-04 -Resort Hotel,1,200,2016,January,7,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,31.8,0,0,Canceled,2018-11-02 -City Hotel,0,37,2017,August,36,5,0,2,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.84,0,2,Check-Out,2020-07-03 -Resort Hotel,0,79,2015,December,49,24,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,315.0,179.0,0,Transient-Party,58.45,0,0,Check-Out,2019-02-01 -Resort Hotel,1,105,2016,July,27,21,2,5,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,119.67,0,1,Canceled,2019-04-03 -Resort Hotel,0,381,2017,August,37,28,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,80.0,179.0,0,Transient-Party,64.76,0,0,Check-Out,2020-07-03 -Resort Hotel,0,14,2016,August,38,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,164.21,1,0,Check-Out,2020-03-03 -Resort Hotel,0,100,2017,May,23,5,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,60.14,0,0,Check-Out,2020-04-02 -City Hotel,1,241,2015,July,39,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.75,0,0,Canceled,2018-06-02 -Resort Hotel,1,0,2016,August,4,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,126.67,0,1,No-Show,2019-01-03 -City Hotel,1,51,2017,May,36,28,1,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,94.77,0,0,Canceled,2019-11-03 -City Hotel,1,30,2017,February,9,6,0,2,3,0.0,0,BB,,Direct,Direct,0,0,0,E,A,1,No Deposit,16.0,179.0,0,Transient,67.86,0,0,No-Show,2020-01-04 -Resort Hotel,0,157,2016,March,19,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,330.0,223.0,0,Transient-Party,85.45,0,0,Check-Out,2019-04-03 -Resort Hotel,0,1,2015,August,35,18,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-06-02 -City Hotel,1,100,2017,February,8,24,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.83,0,0,Canceled,2019-11-03 -Resort Hotel,1,34,2015,October,44,30,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,36.36,0,0,Canceled,2018-08-03 -City Hotel,1,45,2016,April,23,14,0,2,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,156.22,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,February,12,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,G,F,1,No Deposit,227.0,179.0,0,Transient,89.18,1,3,Check-Out,2020-01-04 -City Hotel,1,9,2016,April,16,28,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,130.94,0,0,No-Show,2019-03-04 -City Hotel,0,189,2016,October,51,25,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,100.38,1,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,March,11,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,33.2,0,0,Check-Out,2019-11-03 -City Hotel,1,0,2015,August,38,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,97.28,0,0,No-Show,2018-05-03 -Resort Hotel,0,8,2016,January,7,29,2,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,80.17,0,0,Check-Out,2018-10-03 -City Hotel,1,23,2015,January,4,27,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,69.9,0,0,No-Show,2018-11-02 -City Hotel,0,35,2017,July,31,20,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,137.44,0,2,Check-Out,2020-05-03 -City Hotel,0,13,2017,February,11,21,0,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,68.73,0,1,Check-Out,2020-01-04 -City Hotel,0,47,2016,November,49,23,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,69.85,0,0,Check-Out,2018-09-02 -City Hotel,1,2,2017,August,31,16,1,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,200.73,0,2,Canceled,2020-07-03 -Resort Hotel,0,0,2015,December,52,6,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,15.0,179.0,0,Transient,42.1,0,0,Check-Out,2019-01-03 -City Hotel,1,1,2015,November,44,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,96.0,45.0,0,Transient,37.02,0,0,Check-Out,2018-09-02 -Resort Hotel,0,27,2015,December,53,27,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.18,1,2,Check-Out,2018-09-02 -City Hotel,1,10,2017,January,8,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient,31.01,0,0,Canceled,2019-10-04 -City Hotel,0,0,2017,February,9,25,0,1,1,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,H,0,No Deposit,17.0,179.0,0,Transient,111.72,1,0,Check-Out,2020-01-04 -Resort Hotel,0,18,2015,December,50,28,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,308.0,179.0,0,Transient-Party,30.02,0,2,Check-Out,2018-08-03 -City Hotel,0,84,2016,October,27,3,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,70.23,0,0,Check-Out,2019-03-04 -City Hotel,0,16,2017,April,22,25,0,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.63,0,1,Check-Out,2020-02-01 -City Hotel,0,2,2015,September,28,14,1,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,224.0,0,Transient-Party,46.49,0,0,Check-Out,2017-12-03 -Resort Hotel,0,246,2017,July,36,27,1,4,2,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient-Party,205.67,0,0,Check-Out,2020-06-02 -Resort Hotel,1,5,2017,January,2,20,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,Non Refund,15.0,179.0,0,Transient,33.74,0,0,Canceled,2019-11-03 -Resort Hotel,0,50,2017,February,8,16,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,242.0,179.0,0,Transient,49.14,0,0,Check-Out,2018-12-03 -Resort Hotel,0,156,2017,July,27,13,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient,135.99,0,1,Check-Out,2020-07-03 -City Hotel,1,302,2016,May,21,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.76,0,0,Canceled,2019-02-01 -City Hotel,1,267,2015,September,38,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,4.0,179.0,0,Transient,67.81,0,0,Canceled,2018-01-03 -City Hotel,0,248,2016,May,20,23,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.94,0,0,Check-Out,2020-06-02 -City Hotel,1,87,2017,May,24,28,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,18.0,179.0,0,Contract,193.31,0,0,Canceled,2020-03-03 -City Hotel,0,1,2017,June,32,15,1,2,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,103.38,0,3,Check-Out,2020-06-02 -City Hotel,1,52,2016,January,4,19,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,57.77,0,2,Canceled,2018-12-03 -Resort Hotel,0,149,2016,September,35,22,0,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient-Party,62.74,0,0,Check-Out,2019-08-04 -Resort Hotel,0,19,2016,March,15,31,1,1,1,0.0,0,BB,CN,Groups,Direct,0,0,0,A,C,0,Refundable,15.0,222.0,0,Transient-Party,65.71,0,0,Check-Out,2019-02-01 -City Hotel,0,6,2016,October,44,18,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,107.99,0,1,Check-Out,2019-07-04 -City Hotel,1,151,2016,February,10,29,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,63,Transient,64.65,0,0,Canceled,2018-10-03 -Resort Hotel,0,36,2016,December,50,27,0,3,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,E,0,No Deposit,14.0,210.0,0,Transient-Party,65.7,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,February,11,13,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.68,0,2,Check-Out,2018-12-03 -Resort Hotel,1,179,2015,December,51,27,1,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,27.97,0,0,Canceled,2019-09-03 -Resort Hotel,1,311,2016,June,36,20,4,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,265.0,179.0,0,Transient,44.25,0,0,Canceled,2019-09-03 -City Hotel,0,50,2016,May,21,8,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,122.53,0,0,Check-Out,2019-02-01 -Resort Hotel,0,88,2016,February,10,29,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,45.0,331.0,0,Transient,46.24,0,0,Check-Out,2019-01-03 -City Hotel,1,96,2016,March,10,28,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,69.63,0,0,Canceled,2018-11-02 -Resort Hotel,0,8,2017,March,19,15,1,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,179.0,75,Transient-Party,26.58,1,1,Check-Out,2020-01-04 -City Hotel,0,107,2017,June,31,9,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,137.1,0,0,Check-Out,2020-06-02 -City Hotel,0,103,2016,May,18,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient-Party,117.41,0,2,Check-Out,2019-03-04 -City Hotel,0,101,2016,July,41,9,2,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,99.82,0,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2017,February,8,14,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,105.0,179.0,0,Transient,111.47,0,0,Check-Out,2020-04-02 -Resort Hotel,1,15,2017,July,32,25,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,0,No Deposit,378.0,179.0,0,Transient,217.51,0,0,Canceled,2020-02-01 -City Hotel,0,19,2015,October,43,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,67.46,0,0,Check-Out,2018-08-03 -Resort Hotel,1,1,2017,February,11,15,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,17.0,331.0,0,Transient,38.56,0,0,Canceled,2019-11-03 -City Hotel,1,92,2016,March,10,6,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,72.94,0,0,Canceled,2018-11-02 -Resort Hotel,1,16,2016,October,43,13,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,238.0,179.0,0,Transient,66.46,0,0,Canceled,2019-08-04 -Resort Hotel,0,296,2017,May,32,15,4,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,313.0,179.0,0,Transient-Party,77.63,0,1,Check-Out,2020-05-03 -Resort Hotel,0,16,2016,August,38,28,2,5,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,243.0,179.0,0,Transient,85.43,1,0,Check-Out,2019-05-04 -City Hotel,0,18,2016,December,51,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,237.0,0,Transient,59.52,0,0,Check-Out,2019-12-04 -City Hotel,0,65,2016,October,43,18,2,3,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,227.67,0,0,Check-Out,2019-10-04 -City Hotel,1,91,2016,March,11,9,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,58.41,0,0,Canceled,2018-11-02 -City Hotel,0,36,2016,October,44,16,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,209.25,0,0,Check-Out,2019-11-03 -Resort Hotel,0,93,2015,July,31,15,2,0,2,0.0,0,HB,,Direct,Direct,0,0,0,F,F,2,No Deposit,247.0,179.0,0,Transient,162.03,1,2,Check-Out,2020-05-03 -City Hotel,0,179,2016,July,36,9,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,D,3,No Deposit,8.0,179.0,0,Transient,101.75,0,1,Check-Out,2019-04-03 -Resort Hotel,0,198,2016,September,44,28,2,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,186.54,1,1,Check-Out,2019-06-03 -City Hotel,1,9,2016,March,17,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,20.0,179.0,37,Transient,69.62,0,0,No-Show,2018-12-03 -City Hotel,1,431,2016,June,37,15,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.21,0,0,Canceled,2018-12-03 -City Hotel,0,1,2016,February,11,13,2,0,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,59.38,0,3,Check-Out,2018-11-02 -City Hotel,0,0,2016,January,2,11,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.14,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2015,September,35,13,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,E,1,No Deposit,15.0,179.0,0,Transient-Party,155.32,1,0,Check-Out,2018-05-03 -City Hotel,1,2,2017,September,10,2,3,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,17.0,179.0,0,Transient,104.66,0,0,Canceled,2018-06-02 -City Hotel,1,384,2016,September,43,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,41,Transient,125.68,0,0,Canceled,2018-09-02 -Resort Hotel,0,21,2015,November,42,12,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,50.58,0,0,Check-Out,2018-12-03 -Resort Hotel,0,93,2017,July,35,16,2,1,2,0.0,0,SC,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient-Party,46.8,0,0,Check-Out,2020-07-03 -City Hotel,0,94,2015,November,44,27,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.75,0,1,Check-Out,2018-08-03 -City Hotel,1,156,2015,September,38,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.39,0,0,Canceled,2018-08-03 -City Hotel,0,32,2016,December,53,24,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,132.18,1,1,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,February,10,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,75.0,0,Transient,64.65,0,2,Check-Out,2020-01-04 -City Hotel,0,0,2017,April,21,17,0,1,3,0.0,0,SC,,Complementary,Corporate,1,0,0,P,P,0,No Deposit,14.0,272.0,0,Transient,1.63,0,0,Check-Out,2020-01-04 -City Hotel,1,42,2016,February,7,9,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,62.97,0,0,Canceled,2019-02-01 -City Hotel,1,318,2017,June,27,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,134.78,0,0,Canceled,2020-02-01 -Resort Hotel,0,138,2015,September,34,21,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,70.96,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2017,March,11,15,0,1,1,0.0,0,BB,BEL,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,84.0,0,Transient,36.85,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2017,April,22,8,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,16.0,58.0,0,Transient,186.41,0,3,Check-Out,2020-03-03 -City Hotel,0,40,2016,December,53,29,1,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,128.91,0,1,Check-Out,2019-11-03 -Resort Hotel,0,44,2016,May,20,8,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,92.0,179.0,0,Transient,109.87,0,0,Check-Out,2019-07-04 -City Hotel,1,149,2017,June,28,27,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,10.0,179.0,0,Transient,162.65,0,0,Canceled,2020-03-03 -City Hotel,0,3,2015,September,36,8,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,18.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-08-03 -Resort Hotel,1,308,2015,August,37,15,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,60.73,0,0,Canceled,2018-05-03 -City Hotel,0,34,2016,October,44,17,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,92.0,0,2,Check-Out,2019-07-04 -City Hotel,0,145,2017,August,43,24,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.95,0,3,Check-Out,2020-01-04 -Resort Hotel,0,39,2015,December,50,29,0,2,2,0.0,0,BB,NLD,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.09,1,0,Check-Out,2019-10-04 -Resort Hotel,1,25,2016,July,37,15,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,244.85,0,0,Canceled,2020-06-02 -Resort Hotel,0,1,2017,March,10,5,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,34.88,0,0,Check-Out,2018-12-03 -City Hotel,1,53,2015,July,31,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,63,Transient,60.22,0,0,Canceled,2019-03-04 -City Hotel,0,56,2016,March,3,31,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,109.44,0,0,Check-Out,2018-12-03 -City Hotel,1,100,2017,February,38,3,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,80.04,0,0,Canceled,2019-11-03 -Resort Hotel,1,1,2016,April,16,5,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,244.0,179.0,0,Transient,76.8,0,2,Canceled,2019-03-04 -City Hotel,0,94,2016,December,53,31,0,3,2,1.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,79.88,0,1,Check-Out,2019-08-04 -City Hotel,1,207,2017,March,21,28,2,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.68,0,0,Canceled,2019-11-03 -City Hotel,0,0,2015,July,33,13,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient-Party,105.6,0,0,Check-Out,2018-05-03 -City Hotel,0,114,2015,September,49,21,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,0,Transient-Party,128.43,0,0,Check-Out,2018-08-03 -City Hotel,1,325,2016,June,24,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.91,0,0,Canceled,2019-02-01 -City Hotel,0,37,2016,July,26,5,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,137.03,0,1,Check-Out,2019-07-04 -City Hotel,0,44,2015,October,41,17,2,5,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,111.88,0,3,Check-Out,2018-08-03 -City Hotel,0,1,2016,September,26,10,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.28,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2015,November,36,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,H,I,0,No Deposit,244.0,179.0,0,Transient,0.96,0,1,Check-Out,2018-08-03 -City Hotel,0,0,2016,June,26,10,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,C,0,No Deposit,13.0,50.0,0,Transient-Party,163.94,0,0,Check-Out,2019-05-04 -City Hotel,1,71,2016,March,50,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,41,Transient,74.57,0,0,Canceled,2018-10-03 -Resort Hotel,1,46,2017,August,37,20,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,223.22,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2015,July,26,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,59.0,0,Transient,71.1,0,0,Check-Out,2019-04-03 -City Hotel,1,160,2017,May,23,30,0,1,2,0.0,0,BB,NOR,Undefined,TA/TO,0,0,0,A,A,0,No Deposit,10.0,52.0,0,Transient-Party,92.95,0,0,Canceled,2020-04-02 -City Hotel,0,6,2017,March,16,31,1,4,1,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,8.0,179.0,0,Transient,130.0,0,1,Check-Out,2020-02-01 -City Hotel,1,146,2016,March,8,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,2,Non Refund,1.0,179.0,41,Transient,76.03,0,0,Canceled,2018-11-02 -Resort Hotel,0,263,2016,August,33,13,3,10,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,73.22,0,0,Check-Out,2019-07-04 -City Hotel,1,268,2015,July,31,26,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,123.46,0,0,Canceled,2019-05-04 -Resort Hotel,0,20,2016,July,32,30,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,130.48,0,0,Check-Out,2018-06-02 -City Hotel,1,1,2017,February,9,13,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2020-02-01 -City Hotel,1,109,2016,April,11,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient,60.62,0,0,Canceled,2019-03-04 -City Hotel,0,5,2016,April,23,28,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,8.0,179.0,0,Transient,116.98,0,3,Check-Out,2019-03-04 -City Hotel,0,55,2017,July,32,3,0,3,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,235.83,0,1,Check-Out,2020-06-02 -City Hotel,0,77,2016,June,27,20,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,20.0,179.0,0,Transient-Party,69.1,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,May,22,15,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,124.36,0,1,Check-Out,2019-11-03 -City Hotel,0,2,2016,June,21,20,0,3,1,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Group,0.0,0,0,Check-Out,2019-04-03 -City Hotel,1,27,2016,March,9,21,0,7,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,16.0,179.0,0,Transient,68.51,0,0,Canceled,2018-11-02 -City Hotel,1,39,2016,February,4,22,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,27.88,0,1,No-Show,2018-11-02 -City Hotel,1,29,2016,August,32,21,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.12,0,0,Canceled,2019-01-03 -Resort Hotel,0,150,2016,March,17,31,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,B,1,Refundable,12.0,223.0,0,Transient-Party,77.44,0,0,Check-Out,2019-02-01 -Resort Hotel,1,57,2015,August,33,11,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,45.73,0,1,Canceled,2019-06-03 -Resort Hotel,0,51,2017,February,3,6,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,60.71,0,3,Check-Out,2019-08-04 -City Hotel,1,92,2017,May,20,9,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,122.2,0,0,Canceled,2019-09-03 -Resort Hotel,0,301,2015,July,36,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.74,0,2,Check-Out,2017-12-03 -Resort Hotel,0,145,2016,June,35,6,2,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,37.31,0,0,Check-Out,2019-06-03 -Resort Hotel,0,34,2015,September,32,21,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,60.76,0,0,Check-Out,2018-06-02 -City Hotel,0,244,2015,September,37,6,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.89,0,0,Check-Out,2018-06-02 -City Hotel,1,9,2016,October,50,13,0,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,102.91,0,0,Canceled,2019-10-04 -City Hotel,1,356,2016,October,17,27,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,43,Transient,71.71,0,0,Canceled,2018-12-03 -City Hotel,0,17,2016,July,31,6,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,151.75,0,1,Check-Out,2019-06-03 -Resort Hotel,0,242,2017,May,21,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient,119.43,0,0,Check-Out,2020-03-03 -City Hotel,0,28,2016,June,27,18,2,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.54,0,2,Check-Out,2019-03-04 -Resort Hotel,0,2,2016,February,12,10,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,G,0,No Deposit,248.0,179.0,0,Transient,37.16,0,0,Check-Out,2018-11-02 -Resort Hotel,1,18,2017,February,8,28,2,1,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,35.0,331.0,0,Transient,27.56,0,0,Canceled,2020-03-03 -City Hotel,1,102,2016,September,31,15,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,107.02,0,1,Canceled,2019-05-04 -Resort Hotel,0,90,2016,July,44,29,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,239.0,179.0,0,Group,31.53,0,1,Check-Out,2019-06-03 -City Hotel,1,104,2016,July,25,2,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.42,0,2,Canceled,2019-04-03 -City Hotel,1,293,2017,August,33,21,2,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.11,0,1,Canceled,2018-06-02 -Resort Hotel,0,10,2016,May,22,28,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,66.76,0,1,Check-Out,2019-03-04 -City Hotel,1,48,2016,August,23,10,1,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,158.02,0,2,Canceled,2019-12-04 -Resort Hotel,1,199,2016,September,44,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,270.0,179.0,0,Transient,213.37,0,0,Canceled,2019-05-04 -Resort Hotel,0,152,2017,June,28,20,2,5,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,142.03,0,1,Check-Out,2020-02-01 -City Hotel,1,93,2017,October,21,24,0,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,Non Refund,232.0,179.0,0,Transient,76.39,0,0,Canceled,2020-03-03 -City Hotel,0,12,2017,February,9,15,0,1,2,0.0,0,SC,ITA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,76.3,0,0,Check-Out,2019-09-03 -City Hotel,0,5,2016,April,17,21,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,111.78,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,March,9,10,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,35.57,0,0,Check-Out,2019-02-01 -City Hotel,0,98,2017,February,11,6,2,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,79.02,0,1,Check-Out,2020-02-01 -City Hotel,0,1,2017,August,39,28,0,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,162.45,0,3,Check-Out,2020-07-03 -City Hotel,0,8,2016,March,10,28,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,59.14,0,0,Check-Out,2019-01-03 -City Hotel,1,3,2015,August,50,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,41,Transient,98.75,0,0,Canceled,2018-05-03 -City Hotel,1,53,2016,March,15,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,70.0,179.0,0,Transient,75.33,0,0,Canceled,2018-12-03 -City Hotel,0,96,2016,December,47,20,0,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,67.24,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2016,October,44,9,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,154.1,1,3,Check-Out,2019-03-04 -City Hotel,0,17,2016,October,42,2,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.4,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2016,January,3,13,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,241.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,0,107,2017,March,10,20,2,0,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,9.0,179.0,0,Transient,94.67,0,1,Check-Out,2020-03-03 -Resort Hotel,0,102,2017,May,22,30,2,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,115.06,0,1,Check-Out,2020-04-02 -City Hotel,0,13,2016,October,44,10,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.35,0,0,Check-Out,2019-08-04 -City Hotel,1,160,2016,October,9,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,100.0,179.0,41,Transient,60.97,0,0,Canceled,2018-11-02 -City Hotel,0,0,2015,November,36,1,2,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,D,D,0,No Deposit,16.0,194.0,0,Transient,96.35,0,0,Check-Out,2018-07-03 -City Hotel,0,111,2016,January,5,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,36.0,179.0,0,Transient-Party,69.16,0,0,Check-Out,2018-12-03 -City Hotel,1,46,2016,November,49,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,36,Transient,65.88,0,0,Canceled,2019-09-03 -City Hotel,0,0,2015,January,4,9,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,65.67,0,0,Check-Out,2018-12-03 -Resort Hotel,0,149,2016,March,15,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,73.94,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,February,10,10,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,38.09,0,0,Check-Out,2019-02-01 -City Hotel,1,102,2016,April,17,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,B,D,0,Non Refund,11.0,179.0,42,Transient-Party,69.05,0,0,Canceled,2019-04-03 -City Hotel,0,18,2015,August,33,9,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,D,A,0,No Deposit,3.0,179.0,0,Contract,60.93,0,2,Check-Out,2017-12-03 -Resort Hotel,1,330,2017,June,27,2,2,10,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,61.01,0,0,Canceled,2020-02-01 -Resort Hotel,1,100,2017,May,17,27,2,3,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,154.54,0,0,Canceled,2020-02-01 -Resort Hotel,1,266,2015,July,32,5,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,52.24,0,0,Canceled,2018-05-03 -Resort Hotel,0,1,2016,March,16,21,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,177.5,1,0,Check-Out,2019-03-04 -Resort Hotel,0,34,2016,January,9,31,2,3,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,151.99,0,0,Check-Out,2018-11-02 -Resort Hotel,0,20,2015,October,43,24,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,113.75,0,2,Check-Out,2019-07-04 -Resort Hotel,0,190,2015,November,43,15,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient-Party,80.85,0,0,Check-Out,2018-08-03 -Resort Hotel,1,95,2015,August,39,20,2,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,0.01,0,1,Canceled,2018-06-02 -Resort Hotel,0,249,2016,October,45,13,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,283.0,179.0,0,Transient,59.87,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2015,December,44,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,87.33,0,0,Check-Out,2018-12-03 -City Hotel,1,232,2016,August,37,6,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,81.49,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2015,August,36,21,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,61.05,0,0,Check-Out,2018-06-02 -City Hotel,0,164,2015,August,37,8,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,113.64,0,0,Check-Out,2018-04-02 -City Hotel,0,85,2016,November,50,9,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,60.62,0,0,Check-Out,2019-08-04 -City Hotel,1,161,2016,June,29,30,0,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,103.32,0,0,Canceled,2019-02-01 -Resort Hotel,0,94,2015,September,36,10,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,73.43,1,2,Check-Out,2018-12-03 -City Hotel,0,109,2017,May,22,15,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,9.0,179.0,0,Transient,153.72,0,3,Check-Out,2020-05-03 -Resort Hotel,1,45,2015,February,49,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.11,0,0,Canceled,2018-11-02 -City Hotel,1,444,2016,September,21,31,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,59.98,0,0,Canceled,2017-11-02 -Resort Hotel,0,82,2016,July,21,16,0,3,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,102.37,0,0,Check-Out,2019-06-03 -Resort Hotel,0,175,2017,July,34,28,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,103.52,1,2,Check-Out,2020-03-03 -City Hotel,0,0,2016,August,37,4,2,5,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,126.56,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2016,March,17,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,77.21,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,June,24,2,0,3,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.29,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2017,December,50,15,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,179.0,0,Transient,2.1,0,0,Check-Out,2019-12-04 -City Hotel,1,36,2015,September,42,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.85,0,0,Canceled,2018-08-03 -Resort Hotel,0,12,2015,November,38,21,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,45.52,0,0,Check-Out,2018-06-02 -Resort Hotel,1,42,2016,June,26,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,79.8,0,0,Canceled,2018-12-03 -City Hotel,0,86,2017,August,27,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,11.0,179.0,0,Transient-Party,104.02,0,0,Check-Out,2020-06-02 -City Hotel,0,6,2016,December,52,13,1,1,1,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,A,E,0,No Deposit,15.0,84.0,0,Transient,73.46,0,1,Check-Out,2019-11-03 -City Hotel,0,105,2016,April,17,13,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,106.59,0,1,Check-Out,2019-03-04 -City Hotel,1,83,2016,July,32,31,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,108.97,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2016,August,38,16,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,240.0,179.0,0,Transient,207.54,0,2,Check-Out,2019-04-03 -City Hotel,1,238,2015,August,37,2,0,2,2,1.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,88.89,0,1,Check-Out,2018-05-03 -City Hotel,0,275,2015,September,39,25,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.17,0,0,Check-Out,2018-08-03 -City Hotel,0,47,2017,April,19,16,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.92,0,0,Check-Out,2020-01-04 -Resort Hotel,1,18,2016,February,11,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,173.22,0,0,Canceled,2019-02-01 -City Hotel,1,178,2016,April,50,9,2,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,Non Refund,177.0,179.0,0,Transient,153.06,0,0,Canceled,2018-12-03 -City Hotel,1,399,2016,August,34,21,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,68.0,179.0,0,Transient-Party,128.17,0,0,Canceled,2019-03-04 -Resort Hotel,1,262,2017,August,27,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,201.12,0,0,Canceled,2020-05-03 -City Hotel,0,229,2016,July,34,5,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,29.0,179.0,0,Transient-Party,105.75,0,1,Check-Out,2018-06-02 -City Hotel,0,250,2017,July,24,25,1,5,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,118.25,0,0,Check-Out,2020-04-02 -City Hotel,1,388,2017,June,27,5,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,3,No Deposit,23.0,179.0,0,Transient-Party,104.86,0,0,Canceled,2020-03-03 -City Hotel,0,34,2017,December,2,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,69.34,0,0,Check-Out,2019-11-03 -City Hotel,0,3,2016,May,22,29,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-01-03 -Resort Hotel,0,53,2016,September,45,12,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,160.0,0,0,Check-Out,2019-09-03 -Resort Hotel,1,14,2017,August,35,12,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,60.37,0,0,Canceled,2020-03-03 -City Hotel,0,259,2017,June,26,25,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Contract,110.61,0,1,Check-Out,2020-05-03 -Resort Hotel,0,10,2017,March,11,16,1,4,2,1.0,0,HB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,81.34,0,3,Check-Out,2020-03-03 -City Hotel,0,86,2015,July,33,15,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,125.92,0,0,Check-Out,2018-05-03 -City Hotel,1,259,2016,June,26,8,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,72.56,0,0,Canceled,2019-06-03 -City Hotel,0,82,2016,November,50,25,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,61.67,0,0,Check-Out,2019-10-04 -City Hotel,1,0,2015,July,36,16,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,109.74,0,0,No-Show,2018-06-02 -Resort Hotel,0,50,2017,January,4,19,0,4,2,0.0,0,Undefined,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient-Party,109.71,0,0,Check-Out,2019-10-04 -City Hotel,1,15,2016,July,32,30,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,100.05,0,1,Check-Out,2019-07-04 -City Hotel,0,181,2015,October,41,6,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,70.66,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,February,7,7,1,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.34,0,0,Check-Out,2019-02-01 -City Hotel,1,16,2016,October,43,5,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,43,Transient,114.58,0,0,Canceled,2019-02-01 -Resort Hotel,0,100,2016,March,18,9,2,1,2,0.0,0,HB,SWE,Corporate,Corporate,1,0,0,A,A,1,No Deposit,13.0,223.0,75,Transient-Party,31.49,0,0,Check-Out,2019-04-03 -Resort Hotel,0,151,2016,August,38,17,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,242.0,179.0,0,Transient,231.92,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,October,46,30,0,2,2,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,162.0,0,Transient,123.19,0,0,Check-Out,2019-07-04 -Resort Hotel,1,6,2016,February,11,5,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,Refundable,91.0,179.0,0,Transient-Party,59.68,0,0,Check-Out,2019-04-03 -City Hotel,1,23,2016,January,3,14,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,116.67,0,1,Canceled,2018-11-02 -Resort Hotel,0,40,2016,August,39,13,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,229.56,1,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,February,9,6,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.52,0,0,Check-Out,2018-11-02 -City Hotel,1,1,2016,September,30,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,125.16,0,0,Canceled,2019-02-01 -City Hotel,0,151,2016,June,37,9,0,1,2,1.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.3,0,0,Check-Out,2020-05-03 -Resort Hotel,0,5,2016,September,38,23,1,4,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,238.58,0,1,Check-Out,2019-09-03 -City Hotel,1,166,2016,June,22,30,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,106.58,0,0,Canceled,2019-11-03 -City Hotel,1,135,2017,April,21,9,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,17,Transient,98.48,0,0,Canceled,2019-01-03 -Resort Hotel,1,144,2016,February,18,28,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,Non Refund,30.0,179.0,0,Transient,63.77,0,0,Canceled,2018-10-03 -Resort Hotel,1,13,2016,June,26,16,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,74.26,0,0,No-Show,2019-06-03 -City Hotel,0,12,2015,September,44,28,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,61.82,1,3,Check-Out,2019-08-04 -City Hotel,1,155,2016,July,29,8,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,183.45,0,0,Canceled,2019-05-04 -City Hotel,0,76,2016,July,30,22,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient,69.84,1,0,Check-Out,2019-06-03 -City Hotel,1,173,2017,August,37,9,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,22.0,179.0,0,Transient,94.09,0,0,Canceled,2019-11-03 -City Hotel,0,137,2015,December,51,7,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.32,0,2,Check-Out,2018-06-02 -Resort Hotel,1,47,2017,May,22,10,2,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,147.49,0,0,Canceled,2020-04-02 -City Hotel,1,1,2015,February,10,10,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,P,P,0,Non Refund,8.0,179.0,0,Transient,0.1,0,0,Canceled,2019-03-04 -City Hotel,0,418,2016,October,43,27,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,160.87,0,0,Check-Out,2019-12-04 -Resort Hotel,0,103,2016,April,22,28,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,134.07,0,2,Check-Out,2019-04-03 -Resort Hotel,0,154,2017,June,28,15,0,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,3,No Deposit,246.0,179.0,0,Transient,165.24,0,0,Check-Out,2020-06-02 -Resort Hotel,0,97,2015,October,43,10,0,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient-Party,41.59,1,0,Check-Out,2018-08-03 -City Hotel,0,44,2016,November,53,24,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,118.61,0,1,Check-Out,2019-11-03 -City Hotel,1,47,2016,September,36,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,72.81,0,0,Canceled,2019-04-03 -Resort Hotel,0,238,2016,March,16,31,2,3,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,76.46,0,0,Check-Out,2019-02-01 -Resort Hotel,0,61,2016,March,17,20,2,3,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,74.8,1,1,Check-Out,2018-12-03 -City Hotel,1,309,2015,September,44,30,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,88.51,0,0,Canceled,2018-08-03 -City Hotel,0,45,2017,August,37,27,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,223.39,0,2,Check-Out,2020-06-02 -City Hotel,1,0,2017,May,20,21,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,1,No Deposit,12.0,265.0,0,Transient,0.08,0,0,Canceled,2020-01-04 -City Hotel,1,121,2015,December,50,2,2,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,61.33,0,0,Canceled,2018-08-03 -City Hotel,1,6,2015,July,26,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.95,0,0,No-Show,2019-06-03 -City Hotel,0,17,2016,November,46,17,0,1,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,69.88,0,2,Check-Out,2019-08-04 -City Hotel,1,0,2016,December,50,24,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,262.0,0,Transient,3.89,0,0,Canceled,2020-01-04 -City Hotel,0,10,2017,May,22,9,0,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.94,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2016,February,10,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,62.58,0,1,Check-Out,2018-12-03 -City Hotel,1,54,2017,February,8,29,2,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Non Refund,10.0,179.0,0,Transient,165.72,0,0,Canceled,2019-10-04 -Resort Hotel,0,14,2017,May,23,30,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient-Party,75.14,0,0,Check-Out,2019-11-03 -City Hotel,1,89,2016,March,3,28,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,76.06,0,1,Canceled,2018-12-03 -Resort Hotel,0,32,2015,October,41,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,39,2016,June,21,6,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.77,0,1,Check-Out,2019-03-04 -Resort Hotel,1,216,2017,February,8,18,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,Non Refund,340.0,179.0,0,Transient,43.26,0,0,Canceled,2020-05-03 -Resort Hotel,0,272,2017,May,21,28,1,2,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient,156.2,0,1,Check-Out,2020-03-03 -Resort Hotel,0,161,2016,October,43,12,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,73.0,179.0,0,Transient,103.71,0,0,Check-Out,2019-07-04 -City Hotel,1,1,2016,September,45,31,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,85.31,0,0,No-Show,2019-03-04 -City Hotel,0,6,2016,July,44,30,0,1,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,11.0,179.0,0,Transient,156.1,0,0,Check-Out,2019-03-04 -City Hotel,0,38,2016,September,43,6,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.47,0,1,Check-Out,2019-09-03 -City Hotel,0,1,2015,September,53,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.09,0,1,Check-Out,2019-08-04 -City Hotel,1,12,2017,May,31,16,2,1,2,0.0,0,BB,AUT,Direct,Corporate,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Contract,155.04,0,0,Canceled,2020-03-03 -Resort Hotel,1,193,2016,March,10,31,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,3.0,222.0,0,Transient-Party,63.05,0,0,Check-Out,2018-12-03 -City Hotel,0,105,2017,June,25,26,2,2,1,0.0,0,HB,AUT,Groups,Corporate,0,0,0,A,A,1,No Deposit,76.0,179.0,0,Transient-Party,103.68,0,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2017,June,27,9,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,H,F,0,No Deposit,13.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-04-02 -City Hotel,1,152,2016,December,53,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.48,0,0,Canceled,2019-09-03 -City Hotel,1,41,2016,May,21,8,2,1,1,0.0,0,BB,PRT,Corporate,GDS,0,0,0,E,D,0,Non Refund,319.0,179.0,0,Transient-Party,96.68,0,0,Canceled,2020-02-01 -City Hotel,1,89,2016,February,9,20,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,91.23,0,0,Canceled,2018-12-03 -City Hotel,1,220,2016,August,30,21,0,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,B,1,No Deposit,7.0,179.0,0,Transient-Party,114.68,0,0,Canceled,2019-07-04 -Resort Hotel,0,14,2017,August,28,11,2,5,2,1.0,0,HB,IRL,Direct,Direct,0,0,0,E,H,0,No Deposit,249.0,179.0,0,Transient,232.96,1,1,Check-Out,2020-05-03 -City Hotel,0,280,2017,June,27,21,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,111.81,0,0,Check-Out,2020-04-02 -Resort Hotel,0,16,2017,February,10,27,2,0,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,E,E,0,No Deposit,202.0,179.0,0,Transient-Party,102.94,0,0,Check-Out,2020-03-03 -City Hotel,0,8,2016,September,46,29,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,105.44,0,3,Check-Out,2019-08-04 -City Hotel,1,86,2016,October,43,2,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,129.35,0,2,No-Show,2019-06-03 -City Hotel,0,25,2016,March,10,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,82.32,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,August,34,16,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,183.17,0,0,Check-Out,2019-06-03 -Resort Hotel,1,165,2016,August,39,29,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,43.8,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,February,11,9,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,62.72,0,0,Check-Out,2019-02-01 -City Hotel,0,12,2017,February,9,10,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,57.82,0,1,Check-Out,2020-03-03 -City Hotel,1,12,2017,February,10,24,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,276.0,53.0,0,Transient,63.19,0,0,Canceled,2019-11-03 -Resort Hotel,1,425,2016,May,16,31,0,3,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,80.38,0,0,Canceled,2019-05-04 -Resort Hotel,0,98,2016,December,53,27,2,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,63.62,0,3,Check-Out,2018-11-02 -City Hotel,0,1,2016,March,17,28,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,B,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,April,16,21,0,2,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,96.56,0,0,Check-Out,2019-01-03 -City Hotel,0,2,2016,October,41,8,2,0,2,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,271.0,0,Transient,2.87,0,0,Check-Out,2019-09-03 -City Hotel,0,104,2015,October,43,6,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,C,1,No Deposit,85.0,179.0,0,Transient-Party,70.24,0,0,Check-Out,2018-08-03 -Resort Hotel,0,10,2017,February,12,30,0,2,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,1,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,150.75,1,1,Check-Out,2020-03-03 -City Hotel,0,104,2016,February,18,31,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,89.0,179.0,0,Transient-Party,65.5,0,0,Check-Out,2019-02-01 -Resort Hotel,0,109,2016,October,43,19,0,10,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,321.0,179.0,0,Transient,71.83,0,0,Check-Out,2019-09-03 -City Hotel,1,54,2017,June,24,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.84,0,0,Canceled,2020-03-03 -Resort Hotel,0,9,2015,October,44,18,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Group,39.02,0,0,Check-Out,2018-09-02 -Resort Hotel,0,301,2017,May,21,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Contract,210.41,0,1,Check-Out,2020-03-03 -Resort Hotel,0,117,2017,July,31,21,2,5,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-06-02 -City Hotel,0,3,2016,June,8,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,76.0,0,Transient,78.62,0,0,Check-Out,2019-01-03 -Resort Hotel,0,138,2016,March,18,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,B,2,Refundable,12.0,222.0,0,Transient-Party,73.34,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,June,9,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,85.06,0,1,Check-Out,2019-02-01 -City Hotel,1,2,2017,January,10,19,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.86,0,0,No-Show,2018-10-03 -City Hotel,1,10,2016,October,42,4,0,5,2,1.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,100.94,0,0,No-Show,2019-09-03 -Resort Hotel,0,3,2016,August,38,13,0,2,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,169.91,0,1,Check-Out,2020-06-02 -City Hotel,1,91,2016,May,26,15,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,38.68,0,0,Canceled,2019-02-01 -Resort Hotel,0,138,2016,October,43,21,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Contract,67.22,0,1,Check-Out,2019-05-04 -City Hotel,0,22,2017,January,3,12,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,331.0,0,Transient,75.0,0,0,Check-Out,2020-02-01 -City Hotel,0,245,2015,September,42,21,2,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,117.02,0,0,Canceled,2018-08-03 -City Hotel,1,177,2016,April,23,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,71.84,0,0,Canceled,2019-02-01 -Resort Hotel,0,12,2017,March,16,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,198.66,1,0,Check-Out,2020-02-01 -Resort Hotel,0,52,2015,August,34,19,1,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,324.0,179.0,0,Transient,113.23,0,0,Check-Out,2018-08-03 -City Hotel,1,93,2017,January,11,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,11.0,59.0,0,Transient,79.07,0,0,Canceled,2019-12-04 -City Hotel,0,1,2016,August,32,21,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,0.92,0,0,Check-Out,2018-06-02 -City Hotel,0,89,2016,June,26,2,0,3,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,61.73,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2016,August,36,6,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,142.08,0,0,Check-Out,2019-06-03 -City Hotel,1,47,2017,April,19,30,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,128.83,0,0,Canceled,2020-02-01 -City Hotel,1,387,2016,May,23,20,1,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,61.93,0,0,Canceled,2019-03-04 -City Hotel,0,0,2016,August,37,24,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,128.42,0,1,Check-Out,2019-06-03 -City Hotel,0,164,2016,October,46,23,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.71,0,1,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,November,51,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Transient-Party,70.72,0,0,Check-Out,2019-01-03 -Resort Hotel,1,52,2015,December,53,28,0,3,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,97.41,0,0,Canceled,2018-11-02 -Resort Hotel,0,7,2016,November,47,31,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,I,0,No Deposit,15.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-08-04 -City Hotel,0,48,2017,March,14,14,2,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.91,0,1,Check-Out,2020-02-01 -Resort Hotel,1,15,2016,October,50,13,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,75.01,0,0,Canceled,2019-07-04 -Resort Hotel,0,1,2016,March,10,13,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,43.42,0,0,Check-Out,2019-11-03 -City Hotel,0,244,2016,July,33,24,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.59,0,2,Check-Out,2019-06-03 -City Hotel,0,59,2016,October,50,5,1,3,1,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,D,D,0,No Deposit,11.0,66.0,0,Transient,82.99,0,0,Check-Out,2019-06-03 -City Hotel,1,271,2016,May,27,16,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,60.23,0,0,Canceled,2019-03-04 -City Hotel,0,41,2016,April,20,31,2,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,105.69,0,0,Check-Out,2019-08-04 -Resort Hotel,0,275,2017,August,36,19,2,5,2,1.0,0,BB,,Online TA,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,213.0,1,1,Check-Out,2020-08-03 -City Hotel,1,84,2017,April,16,28,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.76,0,0,Canceled,2020-05-03 -City Hotel,1,91,2016,June,22,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,75,Transient-Party,61.59,0,0,Check-Out,2019-03-04 -Resort Hotel,0,133,2015,October,43,16,2,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,171.59,1,2,Check-Out,2018-05-03 -City Hotel,0,178,2016,December,51,2,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,138.09,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2015,October,43,20,0,1,1,0.0,0,BB,ESP,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,94.54,0,0,Check-Out,2018-08-03 -Resort Hotel,0,9,2017,February,12,24,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,71.41,0,0,Check-Out,2019-10-04 -City Hotel,1,35,2016,September,43,25,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.96,0,0,Canceled,2019-09-03 -City Hotel,0,6,2015,September,38,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,98.22,0,0,Check-Out,2018-06-02 -Resort Hotel,0,18,2016,May,22,7,2,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,91.0,179.0,0,Transient-Party,32.9,0,0,Check-Out,2019-07-04 -City Hotel,1,144,2016,May,22,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,72.57,0,2,Canceled,2019-05-04 -City Hotel,0,33,2015,September,37,5,2,1,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,99.54,0,1,Check-Out,2018-05-03 -City Hotel,0,62,2016,August,22,15,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,137.89,0,0,Check-Out,2019-09-03 -City Hotel,0,9,2016,February,51,23,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,73.31,0,0,Check-Out,2019-09-03 -City Hotel,0,228,2016,October,37,28,2,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,160.57,0,2,Check-Out,2019-08-04 -City Hotel,1,32,2017,December,38,22,2,3,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,108.51,0,2,Canceled,2019-12-04 -Resort Hotel,1,209,2016,April,16,30,0,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,59.36,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2015,September,44,2,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,29.02,1,0,Check-Out,2018-08-03 -City Hotel,0,51,2015,July,31,31,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,60.98,0,2,Check-Out,2018-05-03 -City Hotel,0,236,2015,October,45,15,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,60.42,0,0,Check-Out,2018-07-03 -City Hotel,1,33,2017,June,26,18,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,127.26,0,0,Canceled,2020-04-02 -City Hotel,1,304,2016,June,27,23,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,0,Transient,138.71,0,0,Canceled,2019-01-03 -Resort Hotel,0,186,2016,August,37,22,0,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,129.84,1,3,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,August,35,21,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,45.96,1,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,August,44,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,120.92,0,2,Check-Out,2019-01-03 -Resort Hotel,0,1,2017,May,22,2,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,70.2,0,0,Check-Out,2019-02-01 -City Hotel,1,68,2016,August,34,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,1.0,179.0,0,Transient,94.47,0,0,Canceled,2018-12-03 -City Hotel,0,2,2017,August,35,14,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,168.4,0,1,Check-Out,2019-12-04 -City Hotel,0,31,2015,July,32,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.74,0,0,Canceled,2018-06-02 -City Hotel,1,115,2016,March,15,9,1,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,66.63,0,0,Canceled,2019-01-03 -City Hotel,1,11,2016,March,3,14,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,44,Transient,68.28,0,0,Canceled,2018-11-02 -City Hotel,0,21,2016,November,50,30,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.41,1,2,Check-Out,2019-07-04 -Resort Hotel,0,60,2017,April,16,29,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,239.0,179.0,0,Transient,147.18,0,0,Check-Out,2020-03-03 -City Hotel,0,235,2017,July,27,8,0,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient-Party,168.39,0,0,Check-Out,2020-06-02 -City Hotel,0,54,2016,February,12,28,0,3,1,0.0,0,HB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,331.0,42,Transient-Party,90.02,0,0,Check-Out,2018-12-03 -City Hotel,0,14,2015,January,52,5,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,74.21,0,1,Check-Out,2018-10-03 -Resort Hotel,0,5,2017,January,18,18,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,116.36,0,1,Check-Out,2020-05-03 -City Hotel,0,82,2017,May,27,26,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.46,0,1,Check-Out,2020-03-03 -City Hotel,0,97,2016,November,49,8,1,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,93.63,0,3,Check-Out,2019-11-03 -City Hotel,1,1,2015,January,4,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,13.0,179.0,0,Transient-Party,121.3,0,0,No-Show,2018-05-03 -City Hotel,0,434,2016,June,27,18,0,3,1,0.0,0,HB,DEU,Corporate,Corporate,0,0,0,A,B,1,No Deposit,12.0,179.0,0,Transient-Party,104.2,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,March,9,11,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -Resort Hotel,0,8,2016,March,11,8,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,G,F,0,No Deposit,16.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-01-03 -Resort Hotel,0,0,2015,July,36,2,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,252.0,179.0,0,Transient,197.24,0,0,Check-Out,2018-06-02 -City Hotel,1,11,2016,December,18,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,92.84,0,0,Canceled,2018-12-03 -City Hotel,0,45,2016,July,30,17,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,89.79,0,2,Check-Out,2019-05-04 -City Hotel,0,54,2017,May,21,17,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.3,0,1,Check-Out,2020-04-02 -Resort Hotel,1,444,2017,September,36,17,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,240.0,179.0,0,Transient,34.83,0,0,Canceled,2017-11-02 -City Hotel,0,113,2016,September,43,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.19,0,2,Check-Out,2019-07-04 -City Hotel,1,106,2017,May,22,7,1,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,146.53,0,1,Canceled,2020-04-02 -City Hotel,0,149,2016,July,26,13,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.96,0,0,Check-Out,2019-05-04 -City Hotel,1,0,2016,March,16,30,0,4,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,41,Transient-Party,45.19,0,0,Canceled,2019-03-04 -Resort Hotel,0,36,2016,December,53,9,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,36.38,1,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,March,11,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Transient,45.46,0,0,Canceled,2018-12-03 -City Hotel,1,39,2016,November,50,16,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,233.0,0,Transient,60.02,0,0,Canceled,2019-06-03 -City Hotel,0,9,2017,January,2,28,0,3,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,88.29,0,0,Canceled,2019-11-03 -Resort Hotel,0,140,2016,March,18,31,1,2,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,D,1,Refundable,12.0,221.0,0,Transient-Party,62.14,0,0,Check-Out,2019-03-04 -Resort Hotel,0,153,2017,July,33,29,0,3,2,1.0,0,HB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,100.83,0,3,Check-Out,2020-06-02 -City Hotel,0,230,2015,October,42,28,2,3,2,0.0,0,BB,ISR,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,62,Contract,60.41,0,0,Check-Out,2017-11-02 -Resort Hotel,1,166,2015,December,17,5,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,177.0,179.0,0,Transient,93.17,0,0,Canceled,2018-07-03 -City Hotel,0,39,2016,October,43,2,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,95.84,0,1,Check-Out,2019-03-04 -City Hotel,1,157,2017,June,43,1,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,79.0,179.0,0,Transient,155.27,0,0,Canceled,2019-08-04 -Resort Hotel,1,48,2015,September,40,6,2,5,2,0.0,0,FB,AUT,Groups,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,103.98,0,0,Canceled,2018-08-03 -City Hotel,1,8,2016,March,5,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,1,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,74.98,0,0,Canceled,2018-11-02 -City Hotel,0,5,2016,February,12,29,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,72.07,0,0,Check-Out,2018-11-02 -Resort Hotel,1,20,2015,September,32,29,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,225.38,0,0,Canceled,2019-10-04 -City Hotel,1,20,2015,October,43,28,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,90.93,0,0,Canceled,2018-08-03 -City Hotel,1,156,2015,July,33,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,69.68,0,0,Canceled,2018-06-02 -Resort Hotel,1,17,2015,August,34,14,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,L,F,0,No Deposit,15.0,179.0,0,Transient,111.85,0,0,Canceled,2018-06-02 -City Hotel,0,1,2015,July,32,28,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,95.26,0,0,Check-Out,2018-06-02 -Resort Hotel,0,29,2016,November,48,17,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Transient,252.0,0,3,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,September,41,21,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,82.27,0,0,Check-Out,2019-05-04 -City Hotel,0,20,2015,October,43,27,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Contract,61.94,0,2,Check-Out,2018-08-03 -City Hotel,0,113,2016,June,14,9,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,76.93,1,1,Check-Out,2019-03-04 -Resort Hotel,1,0,2017,February,9,27,2,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,234.0,0,Transient,48.96,0,0,Canceled,2018-11-02 -City Hotel,0,60,2017,January,2,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,75.51,0,1,Check-Out,2019-10-04 -City Hotel,0,34,2017,January,50,31,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,35.49,0,1,Check-Out,2019-12-04 -City Hotel,0,14,2017,March,8,20,0,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,153.35,1,0,Check-Out,2020-03-03 -Resort Hotel,0,15,2017,February,9,5,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,Non Refund,112.0,331.0,0,Transient,32.18,0,0,Check-Out,2020-03-03 -Resort Hotel,1,195,2016,October,45,18,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,242.0,179.0,0,Transient,73.38,1,3,Canceled,2019-08-04 -City Hotel,1,18,2016,December,53,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,58,Transient,69.17,0,0,Canceled,2018-11-02 -City Hotel,1,24,2016,November,3,21,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,74.4,0,0,Canceled,2018-10-03 -Resort Hotel,0,32,2016,March,11,9,2,2,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,78.35,0,0,Check-Out,2018-11-02 -Resort Hotel,0,157,2016,May,21,29,0,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,120.85,1,0,Check-Out,2019-06-03 -Resort Hotel,0,174,2016,August,37,29,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,10.0,179.0,0,Transient,170.69,0,3,Check-Out,2019-05-04 -City Hotel,1,389,2016,January,4,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,21,Transient,71.86,0,0,Canceled,2018-10-03 -City Hotel,0,44,2015,October,42,4,2,2,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,99.25,0,2,Canceled,2018-08-03 -City Hotel,0,149,2017,March,16,28,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,62.53,0,2,Check-Out,2020-04-02 -City Hotel,0,46,2016,January,3,13,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.47,0,1,Check-Out,2018-11-02 -City Hotel,0,8,2016,January,4,21,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.52,0,0,Canceled,2018-10-03 -City Hotel,0,9,2017,March,11,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,295.0,179.0,0,Transient-Party,73.89,0,0,Check-Out,2019-11-03 -Resort Hotel,0,318,2017,August,37,15,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,182.0,179.0,0,Transient,184.61,0,0,Canceled,2020-06-02 -Resort Hotel,0,98,2017,July,28,2,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,120.75,0,3,Check-Out,2020-03-03 -City Hotel,0,156,2016,September,31,27,0,3,2,1.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.97,0,2,Check-Out,2019-05-04 -Resort Hotel,1,272,2016,July,32,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,153.08,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,May,20,9,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,71.23,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2015,July,31,6,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,1,0,A,A,0,Non Refund,11.0,179.0,0,Group,60.72,0,0,Canceled,2018-05-03 -City Hotel,1,141,2016,August,4,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,60,Transient,85.51,0,0,Canceled,2018-10-03 -City Hotel,0,12,2016,October,42,22,2,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,98.5,0,0,Check-Out,2019-08-04 -City Hotel,1,257,2016,August,41,6,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,163.35,0,0,Canceled,2019-07-04 -Resort Hotel,1,1,2016,February,9,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,141.0,179.0,0,Transient,71.51,0,0,Canceled,2018-11-02 -Resort Hotel,0,15,2017,June,29,20,1,1,1,0.0,0,HB,GBR,Direct,Corporate,0,0,0,E,A,0,No Deposit,195.0,179.0,0,Transient-Party,97.97,0,0,Check-Out,2020-04-02 -City Hotel,1,385,2017,May,17,13,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,112.14,0,0,Canceled,2019-11-03 -City Hotel,1,47,2017,August,34,15,2,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,93.67,0,2,Canceled,2019-11-03 -Resort Hotel,1,0,2016,December,5,16,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,75.31,0,1,Canceled,2018-11-02 -City Hotel,1,152,2017,September,38,21,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.81,0,0,Canceled,2019-12-04 -Resort Hotel,1,323,2017,May,22,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Contract,122.25,0,2,Canceled,2020-03-03 -Resort Hotel,1,304,2016,May,22,31,4,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,3,Refundable,11.0,223.0,0,Transient-Party,80.65,0,0,Canceled,2019-03-04 -City Hotel,0,114,2017,May,23,28,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,159.62,0,2,Check-Out,2020-04-02 -City Hotel,1,50,2017,August,34,20,0,2,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,180.01,0,0,Canceled,2020-06-02 -City Hotel,1,56,2017,August,35,16,0,2,3,0.0,0,BB,ITA,Direct,Direct,0,0,0,F,D,0,No Deposit,15.0,179.0,0,Transient,161.49,0,0,Canceled,2019-08-04 -City Hotel,1,110,2015,July,32,30,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,108.04,0,0,Canceled,2017-12-03 -City Hotel,0,0,2016,June,28,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,137.56,0,0,Check-Out,2019-05-04 -Resort Hotel,0,38,2017,March,11,30,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,78.26,0,0,Check-Out,2019-10-04 -City Hotel,1,56,2016,December,50,29,2,3,3,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,193.41,0,0,Check-Out,2019-10-04 -Resort Hotel,0,56,2016,May,46,28,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,59.49,0,1,Check-Out,2019-07-04 -Resort Hotel,0,39,2017,April,17,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,324.0,179.0,0,Transient,63.2,0,2,Check-Out,2019-12-04 -Resort Hotel,0,0,2015,December,50,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,114.31,1,0,Check-Out,2018-12-03 -City Hotel,1,8,2016,April,17,2,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,1,D,D,0,No Deposit,15.0,67.0,0,Transient,73.37,1,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,July,32,13,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,88.23,0,1,Check-Out,2019-06-03 -Resort Hotel,1,249,2016,March,9,10,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,74.25,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,April,22,5,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,222.0,0,Transient,74.08,0,0,Check-Out,2019-12-04 -City Hotel,0,112,2017,June,21,5,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,159.39,0,1,Check-Out,2020-04-02 -Resort Hotel,0,290,2016,December,17,15,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,44.98,0,0,Check-Out,2019-10-04 -City Hotel,0,20,2016,February,10,12,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,69.3,0,0,Check-Out,2019-03-04 -City Hotel,1,0,2016,December,49,25,2,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,264.0,0,Transient,2.63,0,0,Canceled,2019-09-03 -City Hotel,1,320,2015,September,49,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.84,0,0,Canceled,2018-08-03 -City Hotel,1,3,2017,April,9,15,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,12.0,179.0,0,Group,68.01,0,0,Canceled,2019-10-04 -City Hotel,1,254,2016,September,43,15,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,9.0,179.0,0,Transient,100.09,0,3,Canceled,2019-08-04 -Resort Hotel,0,158,2017,May,11,22,0,1,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,206.87,0,0,Check-Out,2020-03-03 -Resort Hotel,0,38,2015,October,44,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,114.79,1,1,Check-Out,2018-08-03 -City Hotel,0,37,2017,August,29,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,144.18,1,1,Check-Out,2020-07-03 -City Hotel,1,407,2017,August,36,12,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,102.24,0,0,Canceled,2020-01-04 -Resort Hotel,0,58,2017,March,10,15,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,65.9,0,2,Check-Out,2020-02-01 -City Hotel,1,26,2015,December,53,24,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,60.55,0,0,Canceled,2018-11-02 -City Hotel,1,56,2015,October,42,4,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,75.36,0,0,Canceled,2018-11-02 -City Hotel,0,48,2016,April,20,30,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,113.47,0,1,Check-Out,2019-03-04 -City Hotel,1,444,2017,June,27,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,121.28,0,0,Canceled,2020-03-03 -City Hotel,0,0,2016,January,4,21,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,117.49,0,0,Check-Out,2019-03-04 -City Hotel,0,13,2016,December,49,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,241.0,0,Transient,67.64,0,0,Check-Out,2019-10-04 -City Hotel,1,198,2017,May,23,27,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,41,Transient,64.67,0,0,Canceled,2019-02-01 -Resort Hotel,1,152,2017,August,35,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,Refundable,243.0,179.0,0,Transient,172.77,0,0,Canceled,2020-06-02 -City Hotel,0,84,2015,October,50,18,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,89.51,0,0,Check-Out,2018-07-03 -City Hotel,0,1,2016,March,10,6,2,5,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,240.0,179.0,0,Transient,59.53,0,1,Check-Out,2018-12-03 -Resort Hotel,1,52,2016,December,51,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,41.57,0,2,Canceled,2018-10-03 -City Hotel,0,99,2017,February,9,14,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,87.47,0,1,Check-Out,2019-12-04 -City Hotel,0,38,2015,November,43,17,0,1,2,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,12.0,252.0,0,Transient-Party,65.59,0,0,Check-Out,2018-07-03 -City Hotel,0,149,2017,May,23,30,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,81.65,0,2,Check-Out,2020-04-02 -City Hotel,0,157,2016,July,49,26,1,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,118.82,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2017,February,12,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,69.0,87.0,0,Transient,73.87,0,1,Check-Out,2019-10-04 -Resort Hotel,0,157,2017,July,28,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,242.0,179.0,0,Transient,125.84,0,2,Check-Out,2020-06-02 -City Hotel,1,81,2017,April,15,10,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.52,0,0,Canceled,2019-10-04 -City Hotel,1,198,2016,June,26,2,2,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.88,0,2,Canceled,2019-05-04 -City Hotel,0,3,2016,April,17,27,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,B,0,No Deposit,14.0,176.0,0,Transient,48.49,0,0,Check-Out,2019-03-04 -Resort Hotel,0,84,2017,May,20,26,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,322.0,179.0,0,Transient-Party,67.55,0,0,Check-Out,2020-01-04 -City Hotel,0,153,2016,March,9,5,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,310.0,179.0,0,Transient-Party,71.76,0,0,Check-Out,2018-11-02 -Resort Hotel,1,92,2015,December,50,30,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,85.33,0,1,Canceled,2018-08-03 -City Hotel,1,122,2016,November,19,13,1,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,96.84,0,3,Check-Out,2018-11-02 -Resort Hotel,0,261,2017,August,22,28,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,128.06,0,1,Check-Out,2020-05-03 -City Hotel,1,138,2017,June,37,20,2,5,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,173.98,0,0,Canceled,2020-02-01 -Resort Hotel,0,205,2017,August,36,18,3,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,136.17,0,1,Check-Out,2020-05-03 -Resort Hotel,0,272,2015,December,50,21,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-05-03 -City Hotel,1,13,2017,March,10,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.2,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,December,49,29,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,72.92,1,0,Check-Out,2018-12-03 -City Hotel,0,3,2015,October,44,2,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,71.0,0,Transient,43.77,0,0,Check-Out,2018-06-02 -City Hotel,0,3,2016,August,35,5,2,5,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,172.02,0,2,Check-Out,2019-06-03 -City Hotel,1,356,2016,April,17,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,120.21,0,0,Check-Out,2019-02-01 -City Hotel,0,18,2016,June,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,65.0,0,Transient-Party,113.74,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2016,October,44,13,2,0,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,180.44,0,0,Check-Out,2019-09-03 -Resort Hotel,0,46,2016,October,44,9,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,244.0,179.0,0,Transient,102.01,1,3,Check-Out,2018-12-03 -City Hotel,0,6,2015,July,31,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,135.41,0,1,Check-Out,2018-06-02 -Resort Hotel,0,59,2017,July,31,7,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,164.32,0,1,Check-Out,2020-04-02 -City Hotel,0,19,2016,October,41,6,2,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,183.07,0,3,Check-Out,2019-10-04 -City Hotel,0,148,2016,June,26,18,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,101.34,0,0,Check-Out,2019-04-03 -Resort Hotel,0,106,2016,March,17,5,2,4,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,124.08,0,1,Check-Out,2020-02-01 -City Hotel,0,153,2016,July,27,30,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Group,91.14,0,0,Check-Out,2019-06-03 -City Hotel,0,44,2016,August,26,6,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.12,0,0,Check-Out,2019-04-03 -City Hotel,1,19,2017,May,23,27,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.18,0,0,Canceled,2019-11-03 -City Hotel,0,96,2016,April,16,10,2,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,107.91,0,1,Check-Out,2019-02-01 -City Hotel,1,17,2017,May,10,12,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,192.26,0,0,Canceled,2019-11-03 -City Hotel,0,100,2017,January,5,18,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,77.69,0,2,Check-Out,2019-12-04 -City Hotel,1,204,2017,April,21,11,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,155.0,179.0,0,Transient,121.38,0,0,Canceled,2020-02-01 -City Hotel,0,12,2016,January,10,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,39,Transient,61.56,0,0,Check-Out,2018-10-03 -City Hotel,0,118,2016,March,16,20,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,82.16,0,1,Check-Out,2020-03-03 -Resort Hotel,0,49,2016,December,53,27,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,47.05,1,2,Check-Out,2019-10-04 -City Hotel,1,31,2015,October,44,25,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,64,Transient,74.27,0,0,Canceled,2018-08-03 -Resort Hotel,0,198,2017,June,36,15,0,3,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,128.92,0,0,Check-Out,2020-07-03 -City Hotel,1,1,2016,February,9,5,0,1,3,0.0,0,SC,USA,Direct,Direct,1,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient,0.79,0,0,Canceled,2019-11-03 -Resort Hotel,1,183,2017,July,27,19,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,11.0,179.0,0,Transient,131.78,0,0,Canceled,2020-04-02 -City Hotel,0,15,2016,June,37,20,0,1,1,0.0,0,BB,BRA,Aviation,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,139.24,0,0,Check-Out,2019-08-04 -City Hotel,0,269,2015,September,45,24,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,59.5,0,0,Check-Out,2018-07-03 -City Hotel,1,44,2017,April,18,22,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,96.36,0,0,Canceled,2020-03-03 -Resort Hotel,0,40,2016,March,10,21,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient,29.37,0,1,Check-Out,2019-03-04 -City Hotel,0,10,2016,June,27,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,77.0,0,0,Check-Out,2019-02-01 -City Hotel,1,160,2016,March,15,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,42,Transient,78.7,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2016,August,36,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,248.0,179.0,0,Transient,146.98,0,0,Check-Out,2018-06-02 -City Hotel,0,92,2017,June,22,5,1,3,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Contract,151.96,0,3,Check-Out,2020-05-03 -City Hotel,0,372,2016,May,25,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,130.7,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2017,March,10,30,0,1,1,2.0,0,BB,,Direct,Direct,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,62.28,0,3,Check-Out,2019-12-04 -City Hotel,0,48,2016,May,23,8,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,1,No Deposit,36.0,179.0,0,Transient-Party,117.63,0,0,Check-Out,2019-06-03 -Resort Hotel,0,97,2016,September,45,12,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,11.0,179.0,0,Transient,118.27,0,3,Check-Out,2019-09-03 -City Hotel,0,2,2017,November,4,17,0,1,1,0.0,0,BB,ESP,Groups,Direct,0,0,0,D,A,0,No Deposit,35.0,179.0,0,Transient-Party,62.26,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2015,August,31,6,0,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,38.92,0,0,No-Show,2018-06-02 -City Hotel,0,10,2016,June,22,5,0,1,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,D,1,No Deposit,14.0,322.0,0,Transient,204.61,0,0,Check-Out,2019-03-04 -City Hotel,1,40,2016,January,4,5,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,76.1,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,December,49,25,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -City Hotel,1,16,2016,July,46,27,1,0,3,0.0,0,BB,,Groups,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,109.64,0,0,No-Show,2019-08-04 -Resort Hotel,0,246,2017,March,11,13,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,1,0,1,A,A,1,No Deposit,243.0,179.0,0,Group,35.93,0,1,Check-Out,2020-03-03 -City Hotel,1,0,2017,February,7,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,57.73,0,0,Canceled,2018-11-02 -Resort Hotel,1,312,2017,August,35,14,2,5,2,1.0,0,BB,BEL,Online TA,Direct,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,108.77,0,2,Canceled,2020-06-02 -City Hotel,0,3,2017,May,17,28,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,152.57,1,1,Check-Out,2020-03-03 -Resort Hotel,0,35,2016,March,18,27,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,1,No Deposit,15.0,61.0,0,Transient,146.24,1,0,Check-Out,2019-01-03 -City Hotel,1,22,2016,January,3,29,0,1,2,0.0,0,BB,CHN,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,58.56,0,0,Canceled,2018-12-03 -City Hotel,0,44,2016,October,43,16,1,1,1,0.0,0,BB,SWE,Online TA,GDS,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,71.9,0,0,Check-Out,2019-06-03 -City Hotel,1,15,2017,May,21,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,73.39,0,0,No-Show,2020-02-01 -City Hotel,0,3,2016,February,44,15,0,1,1,0.0,0,BB,CHE,Online TA,GDS,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.81,0,0,Check-Out,2019-06-03 -City Hotel,0,259,2016,October,43,31,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,82.69,0,0,Check-Out,2019-08-04 -City Hotel,1,9,2016,January,10,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,154.0,179.0,0,Transient,76.12,0,0,Canceled,2018-12-03 -Resort Hotel,0,124,2017,June,21,24,2,1,2,2.0,0,HB,CN,Direct,Direct,0,0,0,G,G,2,No Deposit,248.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,13,2016,July,12,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient,121.14,1,1,Check-Out,2019-04-03 -City Hotel,1,91,2017,July,26,8,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,147.35,0,2,Canceled,2020-06-02 -City Hotel,0,36,2017,April,22,22,0,3,1,0.0,0,HB,PRT,Online TA,GDS,0,0,0,A,I,0,No Deposit,188.0,179.0,0,Transient,105.16,0,1,Check-Out,2020-05-03 -Resort Hotel,0,37,2016,June,27,15,0,2,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,62.43,0,0,Check-Out,2018-07-03 -Resort Hotel,0,12,2016,August,19,10,1,4,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,208.54,1,2,Check-Out,2019-03-04 -City Hotel,0,0,2016,September,35,4,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.29,0,0,Check-Out,2019-08-04 -City Hotel,0,109,2016,March,17,15,1,3,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient-Party,71.2,0,0,Check-Out,2018-10-03 -City Hotel,1,337,2016,October,44,28,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.62,0,0,Canceled,2019-08-04 -City Hotel,0,297,2015,September,37,19,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.23,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2015,September,38,30,0,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-06-02 -City Hotel,1,212,2016,September,36,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,151.85,0,2,Canceled,2019-07-04 -City Hotel,0,0,2017,February,9,5,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,56.23,0,0,Check-Out,2018-11-02 -City Hotel,1,201,2016,March,13,31,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Refundable,2.0,179.0,0,Transient,62.37,0,0,Canceled,2019-03-04 -Resort Hotel,0,95,2016,June,26,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,115.85,0,0,Check-Out,2019-03-04 -City Hotel,0,38,2016,October,45,28,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.91,0,2,Check-Out,2019-09-03 -Resort Hotel,1,37,2015,December,52,30,2,4,2,1.0,0,FB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,2018-06-02 -City Hotel,0,88,2017,January,3,17,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.36,0,1,Check-Out,2019-02-01 -City Hotel,1,315,2017,August,32,20,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,194.64,0,0,Canceled,2019-08-04 -City Hotel,1,287,2017,June,27,17,2,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,100.64,0,0,Canceled,2019-02-01 -City Hotel,1,19,2017,May,22,11,2,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,14.0,162.0,0,Transient,127.81,0,0,Canceled,2020-04-02 -Resort Hotel,0,98,2017,June,26,30,3,5,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,103.72,0,1,Check-Out,2020-02-01 -City Hotel,0,99,2016,October,43,21,1,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Transient-Party,68.12,0,0,Check-Out,2019-10-04 -Resort Hotel,0,17,2017,February,12,24,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient-Party,40.34,0,1,Check-Out,2020-01-04 -City Hotel,1,152,2016,January,4,28,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,125.74,0,0,Canceled,2019-09-03 -City Hotel,0,248,2016,May,23,27,2,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,72.91,0,0,Check-Out,2019-07-04 -Resort Hotel,0,29,2016,March,14,15,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,65.16,0,0,Check-Out,2018-11-02 -Resort Hotel,0,13,2015,September,44,5,2,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,C,0,No Deposit,14.0,179.0,0,Transient,142.5,0,0,Check-Out,2018-08-03 -City Hotel,1,286,2015,October,43,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.94,0,0,Canceled,2018-08-03 -City Hotel,0,111,2016,July,37,30,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,126.99,0,0,Check-Out,2019-06-03 -City Hotel,1,3,2016,July,11,13,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.02,0,0,Canceled,2019-02-01 -Resort Hotel,0,150,2016,March,16,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient,36.7,1,0,Check-Out,2019-05-04 -City Hotel,1,80,2016,August,36,29,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.87,0,0,Canceled,2019-02-01 -City Hotel,0,19,2016,November,53,28,0,1,1,0.0,0,BB,NLD,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,193.0,0,Transient-Party,97.09,0,0,Check-Out,2019-11-03 -Resort Hotel,0,247,2016,June,42,20,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,88.64,1,0,Check-Out,2019-09-03 -City Hotel,0,47,2017,March,19,25,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,100.6,0,0,Check-Out,2020-02-01 -City Hotel,0,3,2015,September,45,9,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,F,0,No Deposit,18.0,179.0,0,Transient,161.39,0,0,Check-Out,2018-12-03 -Resort Hotel,0,31,2015,July,33,20,0,1,1,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2015,August,31,25,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,63.37,0,0,Check-Out,2019-02-01 -Resort Hotel,0,158,2017,August,39,17,2,6,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,235.2,0,3,Check-Out,2020-06-02 -Resort Hotel,1,394,2015,August,37,13,3,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,129.64,0,0,Canceled,2017-11-02 -City Hotel,0,10,2015,October,45,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,2.0,45.0,0,Transient-Party,60.03,0,0,Check-Out,2018-08-03 -City Hotel,1,14,2016,June,20,13,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,40,Transient,94.14,0,0,Canceled,2018-08-03 -City Hotel,0,11,2016,May,21,19,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,0,9,2017,June,26,27,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,128.12,0,1,Check-Out,2020-04-02 -Resort Hotel,0,94,2016,July,36,28,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,E,2,No Deposit,241.0,179.0,0,Transient,214.25,0,2,Canceled,2019-04-03 -Resort Hotel,1,44,2017,May,22,7,2,0,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,220.0,179.0,0,Transient,136.98,0,2,Canceled,2020-02-01 -City Hotel,0,86,2017,March,13,20,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,E,F,1,No Deposit,17.0,73.0,0,Transient,110.95,0,0,Check-Out,2018-11-02 -Resort Hotel,0,35,2017,June,26,18,0,3,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,103.91,0,2,Check-Out,2019-02-01 -City Hotel,0,43,2015,September,49,21,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,62.67,0,0,Check-Out,2018-08-03 -City Hotel,0,40,2015,August,33,12,0,3,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,129.37,0,1,Check-Out,2018-12-03 -City Hotel,1,167,2016,May,15,9,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,161.0,179.0,38,Transient,82.16,0,0,Canceled,2018-11-02 -Resort Hotel,1,16,2016,August,37,6,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,9.0,179.0,0,Transient,216.48,0,0,Canceled,2019-11-03 -City Hotel,0,3,2017,August,36,14,1,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,16.0,179.0,0,Transient,137.84,0,3,Check-Out,2020-03-03 -Resort Hotel,0,12,2017,April,19,28,1,0,3,1.0,0,HB,PRT,Direct,TA/TO,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,91.35,0,1,Check-Out,2020-04-02 -City Hotel,1,115,2015,July,33,15,0,1,3,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,71.75,0,0,Canceled,2018-01-03 -City Hotel,1,242,2015,July,32,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,99.92,0,0,Canceled,2018-06-02 -City Hotel,1,280,2015,May,17,28,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.71,0,0,Canceled,2017-11-02 -City Hotel,0,285,2016,August,37,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,249.46,0,1,Check-Out,2019-07-04 -Resort Hotel,0,8,2017,March,11,27,2,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,88.3,0,1,Check-Out,2020-03-03 -City Hotel,1,384,2015,September,45,27,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,39,Transient,93.03,0,0,Canceled,2018-08-03 -Resort Hotel,1,347,2015,September,43,28,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.63,0,0,Canceled,2018-09-02 -City Hotel,0,251,2015,July,44,24,1,5,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,61.81,0,1,Check-Out,2018-06-02 -Resort Hotel,0,44,2016,November,43,23,3,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,315.0,179.0,0,Transient,74.79,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2017,February,10,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,H,I,0,No Deposit,14.0,179.0,0,Transient,1.25,0,1,Check-Out,2019-12-04 -City Hotel,0,86,2016,August,27,4,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-08-04 -Resort Hotel,0,16,2016,February,10,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,45.79,0,1,Canceled,2018-12-03 -City Hotel,0,346,2016,November,42,24,1,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,26.0,179.0,0,Transient,155.89,0,0,Check-Out,2019-06-03 -City Hotel,0,199,2016,August,37,27,2,7,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Contract,103.51,0,0,Check-Out,2018-06-02 -City Hotel,1,174,2017,August,38,21,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,90.86,0,0,Canceled,2018-08-03 -Resort Hotel,0,4,2017,August,3,15,0,3,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,214.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,100,2016,March,26,27,2,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,154.79,0,2,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,June,26,21,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,2,No Deposit,242.0,179.0,0,Transient,72.64,1,1,Check-Out,2019-04-03 -Resort Hotel,0,0,2016,December,18,7,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,G,F,0,No Deposit,14.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -City Hotel,0,114,2016,August,53,6,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,129.94,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,August,37,27,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,203.95,1,1,Check-Out,2019-02-01 -City Hotel,1,13,2016,February,10,18,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,83.96,0,0,No-Show,2019-01-03 -City Hotel,0,49,2017,July,32,18,2,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-05-03 -City Hotel,1,100,2016,June,14,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,20,Transient,79.73,0,0,Canceled,2018-11-02 -City Hotel,0,107,2017,March,11,30,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,67.66,0,2,Check-Out,2020-02-01 -City Hotel,1,303,2017,July,9,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,87.74,0,0,Canceled,2020-06-02 -Resort Hotel,1,96,2016,March,11,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,68.54,0,0,Canceled,2019-02-01 -Resort Hotel,0,41,2016,June,26,24,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,249.0,179.0,0,Transient,121.03,1,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2015,August,38,30,0,5,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,124.99,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2015,December,51,18,2,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,360.0,179.0,0,Transient-Party,32.69,0,0,Check-Out,2018-07-03 -Resort Hotel,0,190,2016,May,25,22,0,1,1,0.0,0,BB,,Aviation,Corporate,1,0,0,A,A,0,No Deposit,348.0,190.0,0,Transient-Party,44.22,1,0,Check-Out,2019-06-03 -City Hotel,0,108,2016,April,16,31,0,1,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,59.85,0,0,Check-Out,2019-01-03 -City Hotel,1,0,2015,July,34,3,0,2,2,0.0,0,BB,,Direct,Undefined,0,0,1,B,B,0,No Deposit,17.0,179.0,0,Transient-Party,66.15,0,1,Canceled,2018-06-02 -City Hotel,1,148,2015,August,38,10,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,163.8,0,0,Canceled,2018-06-02 -Resort Hotel,1,113,2016,March,11,7,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,91.0,179.0,0,Transient,49.98,0,0,Canceled,2018-12-03 -City Hotel,0,259,2017,June,25,15,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,123.01,0,1,Check-Out,2020-05-03 -Resort Hotel,0,19,2016,March,16,31,1,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,B,0,No Deposit,41.0,179.0,0,Transient-Party,60.53,0,0,Check-Out,2019-02-01 -City Hotel,0,50,2017,June,26,20,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,123.74,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,July,31,6,0,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,107.04,0,1,Check-Out,2019-05-04 -City Hotel,0,118,2017,June,24,21,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,10.0,179.0,0,Transient,127.8,0,2,Check-Out,2020-03-03 -Resort Hotel,0,11,2016,October,44,26,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,84.0,179.0,0,Transient,36.05,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,June,25,21,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,F,1,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -Resort Hotel,1,195,2017,February,8,20,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,77.63,0,1,Canceled,2020-04-02 -City Hotel,0,50,2017,February,10,6,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,75.86,0,0,Check-Out,2019-09-03 -City Hotel,0,180,2017,May,33,6,0,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,112.43,1,1,Check-Out,2020-06-02 -Resort Hotel,0,49,2015,September,42,10,2,2,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,173.0,179.0,0,Transient,66.73,0,0,Check-Out,2018-07-03 -City Hotel,0,146,2017,August,35,16,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,22.0,179.0,0,Transient-Party,129.64,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,November,40,7,2,5,2,0.0,0,HB,AUT,Groups,Corporate,1,0,1,E,I,0,No Deposit,267.0,179.0,0,Transient-Party,35.44,1,3,Check-Out,2018-05-03 -Resort Hotel,0,16,2015,November,50,24,2,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,42.46,0,2,Check-Out,2018-11-02 -City Hotel,0,1,2016,November,43,8,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,152.59,0,1,Check-Out,2019-08-04 -City Hotel,0,153,2017,June,34,29,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.04,1,2,Check-Out,2019-10-04 -City Hotel,0,26,2016,February,9,9,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,61.47,0,0,Check-Out,2018-10-03 -Resort Hotel,1,369,2016,February,10,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,256.0,179.0,0,Transient-Party,33.69,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2017,August,34,31,2,2,2,0.0,0,BB,FRA,Direct,Direct,1,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,211.97,0,0,Check-Out,2020-06-02 -Resort Hotel,0,65,2016,March,11,13,1,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,83.0,179.0,18,Transient,35.19,0,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2016,October,43,10,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,F,F,2,No Deposit,19.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -Resort Hotel,0,308,2016,July,26,21,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,163.1,0,1,Check-Out,2019-06-03 -Resort Hotel,0,48,2016,December,50,5,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,C,D,0,No Deposit,13.0,179.0,0,Transient,60.56,0,0,Check-Out,2018-12-03 -Resort Hotel,0,18,2017,June,27,3,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,84.04,0,1,Check-Out,2020-04-02 -City Hotel,0,2,2015,October,42,21,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,10.0,179.0,0,Group,59.89,0,0,Check-Out,2018-09-02 -City Hotel,0,35,2016,November,47,28,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,67.66,0,0,Check-Out,2019-11-03 -Resort Hotel,1,164,2016,March,9,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,127.0,179.0,0,Transient,64.93,0,0,Canceled,2018-11-02 -City Hotel,1,426,2015,September,35,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.1,0,0,Canceled,2017-11-02 -Resort Hotel,0,0,2016,June,27,8,0,1,3,0.0,0,BB,PRT,Direct,Direct,1,0,1,C,I,0,No Deposit,14.0,331.0,0,Transient,1.81,0,0,Check-Out,2019-02-01 -Resort Hotel,0,280,2017,July,33,17,4,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,125.75,0,0,Check-Out,2020-06-02 -City Hotel,0,8,2016,June,26,18,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Group,73.46,0,0,Check-Out,2019-03-04 -City Hotel,0,265,2016,October,44,16,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,87.0,179.0,0,Transient-Party,71.83,0,0,Check-Out,2019-06-03 -City Hotel,1,191,2016,May,24,29,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,87.16,0,0,Canceled,2019-05-04 -City Hotel,0,114,2016,July,21,9,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,131.26,0,2,Check-Out,2019-05-04 -City Hotel,0,306,2017,August,33,31,0,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,235.6,0,1,Check-Out,2020-07-03 -City Hotel,1,3,2017,February,9,11,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,D,D,0,No Deposit,12.0,61.0,0,Transient,96.93,0,0,Canceled,2019-11-03 -Resort Hotel,0,243,2016,March,18,21,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,321.0,223.0,0,Transient-Party,69.4,0,0,Check-Out,2019-06-03 -City Hotel,0,38,2017,June,21,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,64,Transient,112.43,0,0,Check-Out,2020-07-03 -City Hotel,0,38,2016,June,25,14,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Contract,127.71,0,1,Check-Out,2019-05-04 -City Hotel,1,105,2017,August,36,24,0,1,1,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,123.57,0,0,Canceled,2020-06-02 -City Hotel,0,146,2016,September,34,13,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,124.36,0,1,Check-Out,2019-06-03 -City Hotel,0,27,2016,September,20,4,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,240.0,0,Transient,88.39,0,2,Check-Out,2019-06-03 -Resort Hotel,0,23,2017,February,12,21,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,11.0,179.0,0,Transient,68.87,1,1,Check-Out,2019-12-04 -City Hotel,0,257,2016,October,23,26,2,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,85.0,179.0,20,Transient,119.04,0,0,Check-Out,2019-11-03 -City Hotel,0,4,2015,November,51,10,1,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,86.0,0,Transient,76.6,0,0,Check-Out,2018-08-03 -Resort Hotel,1,76,2016,July,3,6,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.42,0,1,No-Show,2019-04-03 -Resort Hotel,0,352,2017,May,22,25,1,0,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient-Party,71.32,0,0,Check-Out,2020-05-03 -Resort Hotel,0,97,2015,October,42,19,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,27.0,179.0,0,Transient-Party,39.58,0,1,Check-Out,2018-09-02 -Resort Hotel,0,18,2016,July,27,26,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,168.37,0,1,Check-Out,2019-02-01 -Resort Hotel,0,21,2016,September,35,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,83.0,179.0,0,Transient-Party,110.27,0,0,Check-Out,2019-05-04 -City Hotel,1,36,2017,March,11,31,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Contract,108.93,0,3,Canceled,2020-03-03 -Resort Hotel,0,8,2016,March,17,31,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,15.0,224.0,0,Transient-Party,60.55,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,February,9,18,1,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,H,2,No Deposit,15.0,179.0,0,Transient,35.81,0,0,Canceled,2020-04-02 -Resort Hotel,0,2,2016,October,34,5,1,1,1,0.0,0,BB,PRT,Online TA,Corporate,1,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,38.83,0,0,Check-Out,2019-06-03 -City Hotel,0,12,2016,March,22,19,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,111.41,0,2,Check-Out,2019-03-04 -City Hotel,1,208,2016,June,22,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.13,0,0,Canceled,2019-02-01 -City Hotel,1,261,2017,May,22,28,1,5,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,Non Refund,309.0,179.0,0,Transient,79.2,0,0,Canceled,2019-10-04 -Resort Hotel,1,35,2016,May,20,4,2,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,111.72,0,1,No-Show,2019-09-03 -Resort Hotel,0,283,2017,July,32,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,191.33,0,1,Check-Out,2020-06-02 -Resort Hotel,0,237,2016,June,29,22,0,10,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,183.0,179.0,0,Transient,125.8,0,0,Check-Out,2019-05-04 -City Hotel,1,1,2017,August,36,9,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,P,K,1,No Deposit,10.0,179.0,0,Transient,2.3,0,0,Canceled,2020-04-02 -City Hotel,1,286,2015,September,38,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.35,0,0,Canceled,2018-08-03 -City Hotel,0,3,2015,November,50,25,0,1,1,0.0,0,BB,FRA,Corporate,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,127.0,0,0,Check-Out,2019-05-04 -City Hotel,0,9,2017,July,31,18,0,2,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,214.54,1,1,Check-Out,2020-03-03 -Resort Hotel,0,183,2016,December,49,14,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,62.88,0,1,Check-Out,2019-06-03 -City Hotel,1,44,2017,July,36,22,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,125.43,0,0,No-Show,2020-07-03 -Resort Hotel,1,46,2015,December,51,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,245.0,179.0,0,Transient,90.94,0,0,Canceled,2017-11-02 -City Hotel,1,17,2016,January,9,20,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,58.63,0,0,No-Show,2019-03-04 -City Hotel,0,50,2015,October,48,18,0,3,1,0.0,0,BB,CN,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,81.52,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,April,16,26,0,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient-Party,39.45,0,0,Check-Out,2019-03-04 -City Hotel,1,238,2017,March,17,28,2,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.53,0,2,Canceled,2020-01-04 -City Hotel,1,95,2017,April,4,15,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,189.04,0,1,Canceled,2020-02-01 -Resort Hotel,0,205,2017,February,8,8,2,0,1,0.0,0,HB,,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,28.39,0,0,Check-Out,2020-04-02 -Resort Hotel,0,24,2017,February,8,11,2,1,2,0.0,0,HB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,75.3,0,0,Check-Out,2019-11-03 -City Hotel,0,147,2016,May,21,31,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,89.45,0,1,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,January,52,6,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,65.77,0,0,Check-Out,2018-12-03 -City Hotel,1,255,2016,September,36,21,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.38,0,0,Canceled,2019-08-04 -Resort Hotel,1,162,2016,July,38,25,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,78.37,0,2,Canceled,2019-07-04 -City Hotel,1,31,2016,February,10,18,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.17,0,1,Canceled,2019-11-03 -City Hotel,1,44,2016,June,26,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.94,0,0,Canceled,2019-02-01 -City Hotel,1,32,2016,July,38,28,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.06,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2017,February,9,9,1,0,1,0.0,0,BB,GBR,Corporate,Direct,0,0,0,A,A,1,No Deposit,11.0,331.0,0,Transient-Party,71.45,0,0,Check-Out,2019-11-03 -City Hotel,0,108,2017,July,30,17,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,122.73,0,3,Check-Out,2019-11-03 -Resort Hotel,0,237,2016,July,37,15,0,5,2,0.0,0,HB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,114.07,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2016,August,4,6,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,32.0,179.0,0,Group,64.7,0,2,Check-Out,2019-04-03 -Resort Hotel,0,3,2015,November,51,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,12.0,179.0,0,Group,36.43,0,1,Check-Out,2018-09-02 -City Hotel,0,90,2017,August,4,30,0,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,185.51,0,1,Check-Out,2020-06-02 -Resort Hotel,0,242,2017,July,31,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,110.14,0,0,Check-Out,2020-05-03 -City Hotel,0,2,2016,February,13,13,0,3,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,60.66,0,0,Check-Out,2018-12-03 -City Hotel,0,228,2015,October,42,20,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,L,A,0,No Deposit,12.0,179.0,0,Transient,152.56,0,0,Check-Out,2018-08-03 -City Hotel,1,21,2017,January,9,5,1,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,167.78,0,0,Canceled,2019-11-03 -City Hotel,0,77,2015,November,51,24,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,89.44,0,1,Check-Out,2019-01-03 -City Hotel,1,49,2016,September,45,28,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,8.0,179.0,0,Transient,188.54,0,2,Canceled,2019-08-04 -City Hotel,1,150,2015,September,43,21,0,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,1.0,179.0,0,Contract,59.85,0,0,Canceled,2018-07-03 -City Hotel,0,0,2017,February,9,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,6.0,64.0,0,Transient,72.44,0,2,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,March,17,21,0,2,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,41,Transient,38.19,0,0,Check-Out,2019-02-01 -City Hotel,1,41,2016,August,33,13,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,152.08,0,0,Canceled,2018-12-03 -City Hotel,0,52,2016,April,17,13,1,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,113.33,0,3,Check-Out,2019-03-04 -Resort Hotel,0,81,2015,October,45,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,41.87,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2016,May,24,24,1,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,161.41,0,1,Check-Out,2019-03-04 -City Hotel,1,313,2016,June,19,4,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,132.0,179.0,0,Transient,101.19,0,0,Canceled,2019-02-01 -City Hotel,1,16,2016,April,28,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.1,0,0,Canceled,2019-02-01 -Resort Hotel,0,209,2015,September,42,25,2,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,87.45,0,2,Check-Out,2018-07-03 -Resort Hotel,1,0,2016,March,19,11,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,150.0,179.0,0,Transient,60.15,0,0,No-Show,2019-04-03 -City Hotel,0,37,2015,August,37,9,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.26,0,1,Check-Out,2018-08-03 -City Hotel,1,399,2015,September,35,19,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,81.4,0,0,Canceled,2018-08-03 -City Hotel,1,10,2016,May,27,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,58.84,0,0,Canceled,2019-04-03 -City Hotel,1,150,2017,July,27,17,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,Non Refund,14.0,179.0,0,Transient,167.04,0,0,Canceled,2020-02-01 -City Hotel,1,18,2016,November,50,4,2,3,2,0.0,0,HB,BEL,Groups,Corporate,0,0,0,A,A,1,No Deposit,11.0,60.0,0,Transient,122.88,0,0,Canceled,2019-07-04 -Resort Hotel,0,1,2015,August,18,26,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,17.0,179.0,0,Transient,39.16,0,0,Check-Out,2018-06-02 -Resort Hotel,0,263,2017,July,22,4,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,104.32,0,0,Check-Out,2020-01-04 -City Hotel,1,54,2016,May,43,5,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,62.4,0,0,Canceled,2019-11-03 -Resort Hotel,0,138,2016,July,33,2,2,4,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,240.0,179.0,0,Transient,218.12,0,0,Canceled,2019-05-04 -City Hotel,1,241,2016,June,27,10,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,77.02,0,0,Canceled,2019-03-04 -Resort Hotel,0,100,2017,May,20,6,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,94.99,0,1,Check-Out,2020-04-02 -City Hotel,1,390,2015,October,46,14,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.17,0,0,Canceled,2018-08-03 -City Hotel,1,320,2015,October,46,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,71.46,0,0,Canceled,2017-10-03 -Resort Hotel,0,37,2016,April,17,30,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,245.0,179.0,0,Transient-Party,144.96,0,0,Check-Out,2019-02-01 -City Hotel,1,33,2017,June,25,15,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,138.12,0,1,Canceled,2020-03-03 -Resort Hotel,0,90,2015,December,49,5,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,184.05,1,0,Check-Out,2018-07-03 -City Hotel,0,1,2015,December,44,21,1,3,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.59,0,0,Check-Out,2018-08-03 -City Hotel,0,36,2016,March,44,29,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,218.0,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2016,June,26,6,2,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,1,A,A,0,No Deposit,200.0,239.0,0,Transient,74.88,0,0,Check-Out,2018-12-03 -Resort Hotel,1,43,2016,June,20,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,80.08,0,2,Canceled,2019-02-01 -City Hotel,0,39,2016,March,11,5,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,61.22,0,1,Check-Out,2018-11-02 -Resort Hotel,0,97,2017,May,21,25,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,157.12,0,0,Check-Out,2020-02-01 -Resort Hotel,1,258,2017,May,21,6,1,1,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,2,Non Refund,305.0,179.0,0,Transient,86.16,0,0,Canceled,2019-11-03 -City Hotel,0,93,2015,December,53,6,1,3,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,76.19,0,0,Check-Out,2018-08-03 -City Hotel,0,80,2016,September,44,28,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,93.52,0,0,Check-Out,2019-11-03 -Resort Hotel,1,113,2016,December,52,15,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,89.36,0,3,Canceled,2018-11-02 -City Hotel,0,18,2016,October,49,2,0,4,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,21.0,179.0,43,Transient-Party,84.05,0,0,Check-Out,2019-09-03 -City Hotel,1,105,2016,August,34,4,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.21,0,2,Canceled,2019-04-03 -City Hotel,1,42,2017,June,11,16,2,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,10.0,179.0,0,Transient,99.88,0,0,No-Show,2020-02-01 -City Hotel,0,43,2016,September,43,20,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,73.22,0,0,Check-Out,2018-08-03 -Resort Hotel,0,24,2017,March,17,30,0,3,1,0.0,0,HB,PRT,Corporate,Direct,1,0,0,D,D,1,No Deposit,16.0,223.0,0,Transient,54.49,1,0,Check-Out,2019-11-03 -City Hotel,0,2,2017,May,11,5,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,113.93,0,0,Check-Out,2020-02-01 -City Hotel,0,101,2017,June,16,23,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,78.59,0,3,Check-Out,2020-06-02 -Resort Hotel,1,16,2017,January,4,25,1,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,No-Show,2019-12-04 -Resort Hotel,0,203,2017,May,29,10,1,3,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient,156.36,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2017,February,11,28,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient,33.72,0,1,Check-Out,2020-03-03 -City Hotel,1,279,2015,December,51,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.78,0,0,Canceled,2017-11-02 -Resort Hotel,1,171,2017,March,32,2,0,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,98.48,0,1,Canceled,2020-01-04 -City Hotel,0,49,2016,August,32,21,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,155.74,0,2,Check-Out,2019-07-04 -Resort Hotel,0,43,2017,July,27,17,2,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,C,G,0,No Deposit,13.0,179.0,0,Transient,126.75,0,3,Check-Out,2020-06-02 -Resort Hotel,0,301,2017,July,33,6,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,193.42,0,1,Check-Out,2019-08-04 -Resort Hotel,0,21,2017,April,17,25,0,1,2,1.0,0,HB,AUT,Direct,Direct,0,0,0,H,A,1,No Deposit,245.0,179.0,0,Transient,113.92,0,2,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,January,3,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,12.0,73.0,0,Transient,61.65,0,0,Check-Out,2018-11-02 -City Hotel,1,250,2016,October,43,12,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.76,0,0,Canceled,2018-01-03 -Resort Hotel,0,153,2017,June,21,18,2,5,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,176.0,179.0,0,Transient-Party,93.61,0,0,Check-Out,2020-04-02 -City Hotel,0,42,2015,December,51,30,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,114.71,0,2,Check-Out,2018-08-03 -Resort Hotel,0,40,2016,January,4,2,1,0,3,1.0,0,BB,,Online TA,Direct,0,0,0,H,H,0,No Deposit,330.0,179.0,0,Transient,164.58,0,0,Canceled,2018-10-03 -City Hotel,1,64,2016,June,22,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,90.09,0,0,Canceled,2019-03-04 -City Hotel,1,1,2017,May,22,30,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -City Hotel,0,4,2015,October,47,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,33.22,0,0,Check-Out,2018-08-03 -City Hotel,0,36,2016,September,36,18,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,62,Transient-Party,62.01,1,0,Check-Out,2018-11-02 -City Hotel,1,418,2016,March,16,20,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,41,Transient,118.17,0,0,Canceled,2018-12-03 -Resort Hotel,0,45,2016,March,18,10,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient-Party,76.29,0,2,Check-Out,2019-11-03 -Resort Hotel,0,14,2016,March,27,21,0,1,3,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,61.12,0,0,Check-Out,2019-03-04 -City Hotel,1,55,2017,July,34,20,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,143.33,0,2,No-Show,2020-04-02 -Resort Hotel,1,369,2017,May,23,10,2,4,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,Non Refund,237.0,179.0,0,Transient,114.6,0,0,Canceled,2020-03-03 -City Hotel,0,14,2017,January,10,16,1,2,2,0.0,0,BB,BRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,58.76,0,1,Check-Out,2019-11-03 -City Hotel,1,14,2016,March,14,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,61.49,0,0,Canceled,2018-11-02 -City Hotel,0,142,2016,December,53,5,2,5,2,1.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,119.4,0,3,Check-Out,2019-12-04 -City Hotel,1,106,2016,February,3,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,39,Transient,87.67,0,0,Canceled,2018-10-03 -City Hotel,0,3,2015,September,37,2,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.32,0,0,Check-Out,2019-05-04 -City Hotel,0,48,2015,December,50,11,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.29,0,1,Check-Out,2018-09-02 -City Hotel,0,2,2015,November,44,8,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.77,0,2,Check-Out,2018-08-03 -City Hotel,0,253,2016,December,41,6,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.78,0,1,Check-Out,2019-08-04 -Resort Hotel,0,305,2016,May,21,16,1,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,0,Refundable,321.0,222.0,0,Transient-Party,37.14,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,January,3,20,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,A,2,No Deposit,14.0,97.0,0,Transient,33.37,1,0,Check-Out,2019-11-03 -City Hotel,1,56,2015,June,28,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,105.23,0,0,Canceled,2018-08-03 -City Hotel,1,202,2016,December,50,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.09,0,0,Canceled,2019-10-04 -City Hotel,0,15,2016,September,43,23,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.64,0,0,Check-Out,2019-08-04 -Resort Hotel,0,11,2016,October,44,22,1,1,1,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,77.82,0,0,Check-Out,2018-09-02 -City Hotel,1,50,2017,May,23,9,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,0,Canceled,2020-02-01 -Resort Hotel,0,42,2017,February,11,24,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,75,Transient-Party,61.56,0,0,Check-Out,2020-02-01 -City Hotel,0,34,2016,October,43,18,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,96.65,0,0,Check-Out,2019-06-03 -City Hotel,1,132,2016,December,53,20,2,5,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,E,B,2,No Deposit,8.0,179.0,0,Transient,75.03,0,0,Canceled,2019-09-03 -Resort Hotel,0,259,2016,May,25,21,3,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,378.0,179.0,0,Transient-Party,92.77,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,December,50,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,46.98,1,0,Check-Out,2018-12-03 -City Hotel,1,101,2015,December,43,6,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,66.13,0,0,Canceled,2018-06-02 -City Hotel,0,59,2016,July,33,5,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,60.76,0,1,Check-Out,2018-06-02 -City Hotel,0,48,2015,November,49,2,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,85.2,0,1,Check-Out,2018-08-03 -Resort Hotel,0,25,2017,February,12,5,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,G,1,No Deposit,250.0,179.0,0,Transient,45.1,0,1,Check-Out,2019-10-04 -Resort Hotel,0,246,2016,August,37,13,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,118.05,0,1,Check-Out,2020-04-02 -City Hotel,0,34,2015,July,31,27,2,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient-Party,148.3,0,0,Check-Out,2018-06-02 -City Hotel,0,272,2017,May,36,10,2,5,3,0.0,0,HB,GBR,Complementary,TA/TO,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient-Party,236.4,0,0,Check-Out,2020-06-02 -Resort Hotel,0,264,2016,September,34,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Contract,160.01,0,2,Check-Out,2019-05-04 -Resort Hotel,0,150,2016,September,44,31,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,179.0,0,Transient-Party,38.77,0,0,Check-Out,2019-07-04 -City Hotel,0,105,2017,February,10,5,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,144.36,0,2,Check-Out,2020-03-03 -Resort Hotel,0,53,2017,May,21,17,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,130.55,0,1,Check-Out,2020-04-02 -City Hotel,0,3,2015,September,43,15,2,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,162.79,0,3,Check-Out,2018-08-03 -City Hotel,1,259,2016,October,44,5,2,0,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,178.82,0,0,Canceled,2019-06-03 -City Hotel,1,160,2015,September,39,18,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,61,Contract,59.73,0,0,Canceled,2018-05-03 -Resort Hotel,0,159,2016,March,17,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,224.0,0,Transient-Party,63.04,0,0,Check-Out,2019-02-01 -Resort Hotel,0,107,2015,December,53,30,0,1,2,0.0,0,Undefined,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,60.44,0,0,Check-Out,2018-09-02 -City Hotel,0,279,2015,October,42,29,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,76.58,0,0,Check-Out,2017-10-03 -Resort Hotel,0,3,2016,August,33,18,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,214.08,1,0,Check-Out,2019-07-04 -City Hotel,0,1,2015,September,45,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,63.0,179.0,0,Contract,59.87,0,0,Check-Out,2018-09-02 -Resort Hotel,0,28,2016,March,22,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,73.67,1,1,Check-Out,2019-04-03 -Resort Hotel,0,7,2017,May,22,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,71.81,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2017,March,16,2,0,1,1,0.0,0,HB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,101.82,0,0,Check-Out,2020-03-03 -City Hotel,0,141,2017,June,26,4,2,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,167.21,0,0,Check-Out,2020-06-02 -Resort Hotel,0,88,2016,December,50,25,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,83.71,0,0,Check-Out,2018-11-02 -Resort Hotel,0,90,2016,July,28,24,2,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,118.89,0,0,Check-Out,2019-02-01 -City Hotel,1,16,2016,August,37,20,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,199.98,0,1,Canceled,2019-05-04 -City Hotel,0,1,2017,February,10,18,0,3,2,0.0,0,BB,DEU,Aviation,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.66,0,1,Check-Out,2020-04-02 -Resort Hotel,0,15,2016,May,22,28,2,0,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.48,0,0,Check-Out,2019-02-01 -City Hotel,0,8,2016,August,37,19,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.48,0,1,Check-Out,2018-06-02 -City Hotel,0,248,2015,July,33,4,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Contract,112.2,0,1,Check-Out,2019-06-03 -Resort Hotel,0,35,2016,June,27,28,2,5,2,1.0,0,FB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,250.0,179.0,0,Transient,91.72,0,1,Check-Out,2019-04-03 -Resort Hotel,0,15,2016,May,23,28,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,308.0,179.0,0,Transient,67.87,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,December,50,5,1,0,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,116.56,0,0,Check-Out,2019-01-03 -Resort Hotel,0,18,2016,May,28,19,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,81.8,0,0,Check-Out,2019-06-03 -City Hotel,0,35,2017,May,15,6,0,1,2,0.0,0,HB,NLD,Groups,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient-Party,99.89,0,0,Check-Out,2020-03-03 -Resort Hotel,1,47,2016,April,16,31,2,7,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,308.0,179.0,65,Transient,53.36,0,0,Canceled,2019-03-04 -City Hotel,0,315,2016,October,44,12,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,72.37,0,1,Check-Out,2019-06-03 -City Hotel,0,134,2016,February,10,2,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,66.77,0,0,Check-Out,2019-02-01 -City Hotel,0,115,2016,April,27,9,0,2,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,60,Transient-Party,29.72,0,0,Check-Out,2019-04-03 -Resort Hotel,0,62,2016,February,9,31,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,96.32,0,1,Check-Out,2019-01-03 -Resort Hotel,1,138,2016,August,35,22,2,5,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,162.0,179.0,0,Transient,174.9,0,0,Canceled,2019-07-04 -Resort Hotel,0,0,2015,August,44,15,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,L,F,0,No Deposit,14.0,179.0,0,Transient,160.88,0,0,Check-Out,2018-08-03 -City Hotel,0,181,2016,October,49,5,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,117.91,0,0,Check-Out,2019-09-03 -City Hotel,0,87,2017,May,16,30,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,107.34,1,2,Check-Out,2019-12-04 -City Hotel,0,11,2016,October,42,24,0,1,1,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,36.09,0,0,Check-Out,2019-08-04 -City Hotel,0,32,2016,April,37,25,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,143.98,1,1,Check-Out,2019-04-03 -City Hotel,1,169,2015,September,44,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.7,0,0,Canceled,2018-08-03 -Resort Hotel,0,3,2016,October,42,15,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,A,1,No Deposit,12.0,234.0,0,Transient,102.44,0,0,Check-Out,2018-09-02 -City Hotel,0,21,2015,September,43,10,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,67.73,0,0,Check-Out,2018-08-03 -City Hotel,0,91,2016,October,43,4,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,64.42,0,1,Check-Out,2020-01-04 -City Hotel,0,194,2016,October,43,19,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,67.6,0,0,Check-Out,2019-08-04 -City Hotel,1,105,2017,April,18,31,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,114.45,0,0,Canceled,2018-11-02 -Resort Hotel,1,15,2015,July,31,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.0,0,1,No-Show,2018-12-03 -City Hotel,1,317,2017,July,39,27,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,169.79,0,2,Canceled,2020-06-02 -City Hotel,1,52,2016,August,38,24,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.89,0,0,Canceled,2019-07-04 -Resort Hotel,0,242,2016,September,31,24,3,7,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,146.0,179.0,0,Transient,67.81,0,0,Check-Out,2019-05-04 -Resort Hotel,0,107,2017,February,12,28,0,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,100.0,179.0,0,Transient-Party,80.62,0,0,Check-Out,2019-12-04 -Resort Hotel,0,253,2016,June,26,6,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient-Party,73.75,0,1,Check-Out,2019-05-04 -Resort Hotel,1,50,2016,March,10,29,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,74.0,179.0,0,Transient,37.87,0,0,Canceled,2018-11-02 -City Hotel,0,15,2016,October,42,12,1,3,1,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,78.13,0,0,Check-Out,2019-08-04 -City Hotel,1,12,2017,April,17,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.74,0,0,Canceled,2019-01-03 -City Hotel,0,54,2016,October,42,13,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,122.8,0,3,Check-Out,2019-07-04 -City Hotel,1,2,2016,April,22,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,69.6,0,0,Canceled,2018-08-03 -City Hotel,0,16,2017,January,4,13,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.93,0,2,Check-Out,2019-12-04 -City Hotel,1,218,2017,August,36,6,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient,180.58,0,3,Canceled,2020-04-02 -City Hotel,0,51,2017,July,31,22,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,13,2016,August,39,30,2,10,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,179.0,179.0,0,Transient,157.0,1,0,Check-Out,2019-08-04 -Resort Hotel,1,100,2015,December,42,3,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,62,Transient,79.95,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,March,10,18,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,16.0,223.0,0,Transient-Party,41.57,0,0,Check-Out,2019-03-04 -Resort Hotel,0,56,2016,May,25,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,1,No Deposit,15.0,331.0,0,Transient,109.7,1,0,Check-Out,2019-04-03 -City Hotel,1,45,2015,December,50,20,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,96.0,0,0,Canceled,2018-11-02 -Resort Hotel,1,189,2016,August,35,6,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,62.32,0,0,Check-Out,2019-04-03 -Resort Hotel,0,21,2016,October,44,6,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,198.5,0,0,Check-Out,2019-08-04 -City Hotel,1,2,2016,August,36,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.65,1,2,Canceled,2018-11-02 -City Hotel,0,8,2016,October,42,30,0,2,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.32,0,0,Check-Out,2019-07-04 -Resort Hotel,0,25,2016,March,10,3,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Non Refund,91.0,331.0,0,Transient,40.81,0,0,Check-Out,2019-10-04 -Resort Hotel,0,153,2016,August,36,9,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,322.0,179.0,0,Transient,197.38,0,3,Check-Out,2019-08-04 -Resort Hotel,0,2,2015,December,43,28,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,40.88,0,1,Check-Out,2018-08-03 -Resort Hotel,1,7,2015,August,38,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,17.0,179.0,0,Transient,226.06,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2017,July,16,9,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,A,C,0,No Deposit,243.0,179.0,0,Group,0.0,0,2,Check-Out,2020-03-03 -Resort Hotel,0,20,2015,October,43,21,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,37.64,0,3,Check-Out,2018-08-03 -Resort Hotel,1,85,2016,June,29,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,89.0,0,1,Canceled,2019-06-03 -City Hotel,1,146,2017,April,17,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,100.8,0,0,Canceled,2019-09-03 -City Hotel,0,83,2017,July,34,27,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,159.72,1,2,Check-Out,2020-06-02 -City Hotel,1,151,2016,November,50,9,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,97.45,0,0,Canceled,2019-09-03 -Resort Hotel,0,5,2017,February,10,6,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,40.1,0,0,Check-Out,2020-03-03 -City Hotel,1,109,2016,December,44,2,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,134.62,0,0,Canceled,2019-10-04 -City Hotel,1,39,2017,May,20,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,11.0,179.0,0,Transient,209.8,0,0,Canceled,2020-03-03 -Resort Hotel,1,14,2017,January,21,6,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,2019-11-03 -Resort Hotel,0,33,2016,August,34,28,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,173.0,179.0,0,Transient,160.49,0,0,Check-Out,2020-06-02 -City Hotel,1,50,2016,May,22,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,321.0,179.0,75,Transient,73.91,0,0,Canceled,2018-12-03 -City Hotel,0,3,2016,June,26,11,0,2,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,144.95,1,0,Check-Out,2019-08-04 -Resort Hotel,0,62,2017,March,17,4,1,4,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,2,No Deposit,14.0,222.0,0,Transient,33.98,1,1,Check-Out,2020-03-03 -City Hotel,1,21,2015,September,34,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,99.49,0,0,Canceled,2018-06-02 -City Hotel,1,25,2016,October,42,24,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.01,0,0,Canceled,2018-08-03 -Resort Hotel,1,255,2016,June,28,20,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,158.65,0,0,Canceled,2019-05-04 -City Hotel,1,111,2016,June,21,7,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,104.48,0,0,Canceled,2019-03-04 -City Hotel,0,7,2017,March,9,16,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.01,0,1,Canceled,2020-03-03 -Resort Hotel,0,184,2015,October,43,18,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,296.0,179.0,0,Contract,60.13,0,1,Check-Out,2018-08-03 -City Hotel,0,85,2016,April,17,7,2,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,210.36,0,1,Check-Out,2019-04-03 -Resort Hotel,0,6,2017,February,9,28,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient-Party,99.84,1,2,Check-Out,2020-02-01 -City Hotel,1,0,2016,June,28,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,16.0,179.0,0,Transient,165.49,0,0,Canceled,2019-06-03 -City Hotel,0,39,2017,May,23,6,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,204.0,179.0,0,Transient,78.86,0,0,Check-Out,2019-12-04 -City Hotel,1,391,2016,June,29,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,124.29,0,1,Canceled,2019-11-03 -Resort Hotel,0,15,2016,October,43,9,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,95.35,0,2,No-Show,2019-08-04 -City Hotel,0,55,2015,October,45,7,4,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,104.95,0,3,Check-Out,2018-09-02 -City Hotel,0,3,2015,October,45,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,45.0,0,Transient,94.84,0,0,Check-Out,2018-10-03 -City Hotel,0,3,2017,August,35,30,2,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,233.89,0,2,Check-Out,2020-06-02 -City Hotel,1,11,2017,May,23,29,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,70.38,0,0,Canceled,2020-03-03 -Resort Hotel,0,226,2016,May,17,23,0,4,2,0.0,0,BB,,Groups,TA/TO,0,0,0,C,C,1,No Deposit,13.0,179.0,0,Transient-Party,122.17,0,0,Check-Out,2019-02-01 -City Hotel,0,6,2016,October,43,28,1,0,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.77,0,0,Check-Out,2019-08-04 -City Hotel,0,241,2017,June,26,28,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,100.94,0,0,Check-Out,2020-06-02 -City Hotel,1,328,2015,October,47,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,58.93,0,0,Canceled,2017-11-02 -City Hotel,1,381,2015,December,50,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.15,0,0,Canceled,2018-06-02 -City Hotel,0,159,2017,July,34,14,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,203.64,0,0,Check-Out,2020-06-02 -City Hotel,1,164,2016,February,16,28,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,20,Transient,66.13,0,0,Canceled,2018-10-03 -City Hotel,0,110,2015,August,35,5,0,2,2,0.0,0,BB,BRA,Online TA,Undefined,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,96.55,0,1,Check-Out,2018-06-02 -City Hotel,0,2,2017,March,17,28,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,99.55,0,3,Check-Out,2020-04-02 -Resort Hotel,0,44,2015,December,51,19,0,4,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,42.16,0,0,Check-Out,2018-10-03 -City Hotel,0,113,2017,May,22,21,2,1,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,97.59,0,1,Check-Out,2020-03-03 -City Hotel,1,2,2017,August,36,15,2,5,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,162.51,0,3,Check-Out,2020-07-03 -City Hotel,1,118,2016,August,27,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,80.0,179.0,0,Transient,104.23,0,0,Canceled,2019-05-04 -Resort Hotel,0,6,2017,February,11,28,0,1,3,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,110.86,0,0,Check-Out,2020-04-02 -City Hotel,0,105,2017,February,3,2,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,34.73,0,2,Check-Out,2020-02-01 -City Hotel,1,98,2017,March,16,20,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.83,0,2,Canceled,2020-02-01 -City Hotel,0,0,2016,October,44,27,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,148.36,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,May,20,21,1,0,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.23,0,3,Check-Out,2020-06-02 -City Hotel,0,1,2015,December,53,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,84.54,1,0,Check-Out,2018-12-03 -City Hotel,1,51,2016,October,46,11,1,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,96.56,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2015,November,50,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,43.65,0,1,Check-Out,2018-08-03 -City Hotel,1,13,2017,June,26,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.93,0,0,Canceled,2020-03-03 -City Hotel,0,107,2016,April,23,10,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,119.3,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2016,March,11,31,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,87.0,179.0,0,Transient,63.69,0,0,Check-Out,2018-11-02 -Resort Hotel,0,15,2016,June,27,28,0,1,2,1.0,0,BB,PRT,Complementary,TA/TO,1,0,0,E,F,0,No Deposit,247.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-06-03 -Resort Hotel,0,137,2016,June,26,2,3,4,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,95.82,0,0,Check-Out,2019-08-04 -Resort Hotel,1,111,2017,April,16,27,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,61.9,0,0,Canceled,2019-11-03 -City Hotel,0,16,2017,June,26,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Contract,161.18,1,0,Check-Out,2019-07-04 -City Hotel,1,255,2016,October,36,24,2,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,115.91,0,0,Canceled,2017-11-02 -City Hotel,0,4,2016,October,46,8,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,100.22,0,1,Check-Out,2019-08-04 -City Hotel,1,105,2016,May,21,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.46,0,1,Canceled,2019-01-03 -City Hotel,1,51,2017,August,26,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.81,0,0,Canceled,2020-06-02 -City Hotel,0,23,2017,May,22,29,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,108.17,0,0,Check-Out,2020-03-03 -City Hotel,0,370,2015,October,45,29,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,72.06,0,0,Check-Out,2018-08-03 -Resort Hotel,0,221,2015,November,50,28,3,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,73.1,0,1,Check-Out,2018-09-02 -City Hotel,1,75,2016,February,9,6,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,78.99,0,0,No-Show,2018-12-03 -City Hotel,1,40,2017,April,17,6,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,99.05,0,0,Canceled,2020-03-03 -City Hotel,0,106,2016,July,31,5,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,83.44,0,2,Check-Out,2019-02-01 -Resort Hotel,0,15,2016,October,45,3,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,104.71,1,0,Check-Out,2019-06-03 -Resort Hotel,0,6,2017,March,17,31,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,67.62,0,0,Check-Out,2020-04-02 -City Hotel,0,16,2017,September,22,14,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Group,80.29,1,1,Check-Out,2019-12-04 -Resort Hotel,0,48,2015,December,53,31,1,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,D,0,No Deposit,249.0,179.0,0,Transient,49.46,1,1,Check-Out,2018-12-03 -Resort Hotel,0,44,2017,March,16,20,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,1.45,1,3,Check-Out,2020-03-03 -City Hotel,0,2,2015,January,4,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,103.97,0,0,Check-Out,2018-11-02 -Resort Hotel,1,269,2017,March,33,21,2,5,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,336.0,179.0,0,Transient,111.74,0,0,Canceled,2020-03-03 -Resort Hotel,1,87,2015,December,53,19,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient-Party,37.59,0,0,Canceled,2018-12-03 -City Hotel,1,413,2015,August,46,21,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,302.0,179.0,0,Transient,70.03,0,0,Canceled,2018-09-02 -City Hotel,1,99,2016,December,53,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.94,0,0,Canceled,2019-05-04 -City Hotel,0,101,2017,August,35,5,2,2,2,2.0,0,BB,USA,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,165.76,0,1,Check-Out,2020-06-02 -Resort Hotel,0,159,2016,October,38,28,1,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,C,2,No Deposit,278.0,179.0,0,Transient,224.47,0,0,Check-Out,2019-08-04 -City Hotel,1,98,2017,April,16,4,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,108.24,0,0,Canceled,2020-02-01 -Resort Hotel,1,11,2016,January,4,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,35.61,0,0,Canceled,2018-11-02 -City Hotel,0,33,2015,October,42,28,2,0,1,0.0,0,BB,,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,26.0,179.0,0,Group,74.12,0,1,Check-Out,2018-09-02 -Resort Hotel,0,20,2016,August,35,20,2,1,2,2.0,0,BB,CHE,Online TA,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,159.1,0,1,Check-Out,2019-08-04 -City Hotel,0,3,2017,June,26,24,0,1,2,0.0,0,SC,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,232.0,0,Transient,86.05,0,2,Check-Out,2020-06-02 -Resort Hotel,1,0,2016,July,32,15,2,7,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,250.0,179.0,0,Transient,246.01,0,0,Canceled,2019-04-03 -City Hotel,0,13,2016,May,45,27,1,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,176.0,179.0,0,Transient-Party,113.49,0,0,Check-Out,2019-08-04 -City Hotel,0,161,2017,July,33,21,2,5,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,211.84,0,1,Check-Out,2020-06-02 -City Hotel,0,231,2016,October,51,29,1,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,200.02,0,0,Check-Out,2019-07-04 -City Hotel,0,3,2016,October,51,4,0,1,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,80.31,0,0,Check-Out,2019-12-04 -Resort Hotel,0,139,2015,July,32,21,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,250.0,179.0,0,Transient,203.1,1,3,Check-Out,2018-05-03 -Resort Hotel,0,153,2017,July,22,2,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,241.0,179.0,0,Transient,82.97,1,2,Check-Out,2020-04-02 -Resort Hotel,0,15,2015,December,53,28,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Contract,30.71,0,2,Check-Out,2018-12-03 -Resort Hotel,0,32,2015,December,53,6,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,51.68,0,2,Check-Out,2018-11-02 -City Hotel,0,7,2017,April,16,9,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,98.5,0,1,Check-Out,2020-03-03 -City Hotel,1,112,2016,October,17,31,0,2,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,P,A,0,No Deposit,9.0,179.0,0,Transient,167.2,0,0,Canceled,2019-08-04 -City Hotel,0,0,2017,February,7,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,H,0,No Deposit,13.0,179.0,0,Transient,99.92,0,0,Canceled,2019-09-03 -City Hotel,1,252,2017,July,26,18,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,0.51,0,0,Canceled,2020-04-02 -City Hotel,0,17,2015,July,32,24,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,116.46,0,0,Check-Out,2018-08-03 -City Hotel,0,45,2016,May,22,19,0,1,1,0.0,0,BB,USA,Groups,TA/TO,0,0,0,D,B,0,No Deposit,31.0,81.0,0,Transient-Party,91.47,0,0,Check-Out,2019-02-01 -Resort Hotel,0,199,2017,August,37,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,123.21,1,2,Check-Out,2020-07-03 -City Hotel,0,21,2017,January,4,13,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,68.41,0,1,Check-Out,2020-06-02 -City Hotel,0,311,2017,June,33,20,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient-Party,127.36,0,1,Check-Out,2020-06-02 -City Hotel,0,40,2017,June,25,25,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,224.86,0,1,Check-Out,2020-04-02 -Resort Hotel,0,46,2017,March,9,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,62.47,1,1,Check-Out,2019-11-03 -Resort Hotel,0,249,2016,October,44,7,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,60.61,0,0,Check-Out,2019-10-04 -City Hotel,1,6,2016,May,4,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,10.0,179.0,0,Transient,60.59,0,0,No-Show,2019-04-03 -Resort Hotel,0,1,2016,March,12,13,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,1,No Deposit,12.0,232.0,0,Transient,39.74,0,0,Check-Out,2019-03-04 -City Hotel,1,391,2017,August,33,18,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,118.58,0,1,Canceled,2020-06-02 -City Hotel,1,125,2017,June,21,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,123.98,0,2,Canceled,2019-11-03 -Resort Hotel,0,35,2016,March,14,22,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,77.42,0,0,Check-Out,2019-01-03 -Resort Hotel,1,100,2016,August,37,30,3,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,187.78,0,1,No-Show,2019-09-03 -City Hotel,1,4,2016,July,37,2,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.94,0,0,Canceled,2018-05-03 -City Hotel,1,414,2016,January,49,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.98,0,0,Canceled,2018-11-02 -City Hotel,0,327,2016,October,42,18,1,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,10.0,179.0,0,Transient,135.47,0,2,Check-Out,2019-03-04 -City Hotel,0,1,2017,August,29,21,0,1,2,2.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,113.12,0,1,Check-Out,2020-06-02 -City Hotel,0,91,2016,July,34,20,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,74.89,0,2,Check-Out,2019-06-03 -Resort Hotel,0,42,2017,February,17,24,2,3,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,28.0,256.0,0,Transient-Party,82.99,0,0,Check-Out,2020-01-04 -City Hotel,0,3,2016,November,43,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,73.0,0,Transient,43.88,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,September,50,10,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,44.46,1,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,May,21,18,0,1,1,0.0,0,BB,GBR,Direct,Direct,1,0,1,A,I,0,No Deposit,10.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-02-01 -City Hotel,0,0,2016,June,20,10,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.01,0,2,Check-Out,2019-03-04 -City Hotel,1,419,2017,May,25,9,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,149.68,0,0,Canceled,2020-03-03 -City Hotel,1,123,2017,July,32,31,0,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,162.82,0,0,Canceled,2020-06-02 -City Hotel,0,2,2016,December,50,26,0,2,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,79.54,0,0,Check-Out,2019-10-04 -City Hotel,1,36,2015,September,30,6,2,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,118.54,0,1,Canceled,2018-11-02 -Resort Hotel,1,52,2016,December,53,2,0,4,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,146.0,179.0,0,Transient,75.39,0,0,Canceled,2018-11-02 -City Hotel,1,16,2015,September,51,30,2,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,58.77,0,0,Canceled,2018-08-03 -City Hotel,1,30,2016,March,10,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,31.0,179.0,42,Transient,68.1,0,0,Canceled,2019-03-04 -Resort Hotel,1,0,2017,March,11,9,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,A,1,No Deposit,17.0,82.0,0,Transient,61.01,0,0,Canceled,2020-02-01 -Resort Hotel,1,308,2017,April,17,29,0,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,131.36,0,0,Canceled,2020-03-03 -City Hotel,0,104,2017,October,36,22,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,164.95,0,2,Check-Out,2019-12-04 -City Hotel,0,25,2016,December,53,21,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.55,0,1,Check-Out,2019-06-03 -City Hotel,0,184,2016,October,45,12,0,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.38,0,0,Check-Out,2018-08-03 -City Hotel,1,42,2015,December,53,20,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,59.24,0,0,Canceled,2018-07-03 -City Hotel,0,47,2016,September,41,12,0,3,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,134.81,1,1,Check-Out,2019-06-03 -City Hotel,0,1,2016,July,43,24,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,98.47,0,3,Check-Out,2019-05-04 -Resort Hotel,0,14,2016,January,10,20,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,110.0,179.0,0,Transient,72.37,0,0,Check-Out,2018-11-02 -Resort Hotel,0,19,2016,September,44,28,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,240.63,0,0,Check-Out,2019-07-04 -Resort Hotel,0,43,2016,June,28,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,3,No Deposit,17.0,240.0,0,Transient-Party,59.61,1,0,Check-Out,2019-07-04 -City Hotel,1,17,2017,August,33,20,2,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Contract,220.81,0,0,Canceled,2020-04-02 -Resort Hotel,0,77,2015,December,49,7,0,1,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,47.54,1,0,Check-Out,2019-02-01 -Resort Hotel,0,248,2016,August,34,5,2,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,186.34,0,2,Check-Out,2019-02-01 -City Hotel,0,53,2015,July,31,23,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,58.94,0,0,Check-Out,2018-09-02 -Resort Hotel,0,196,2017,August,22,12,2,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,126.64,0,1,Check-Out,2020-08-03 -Resort Hotel,1,112,2017,August,26,15,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,239.0,179.0,0,Transient,237.21,0,3,Canceled,2020-02-01 -City Hotel,0,157,2016,February,17,13,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,13.0,74.0,0,Transient-Party,67.97,0,0,Check-Out,2019-11-03 -Resort Hotel,0,312,2016,October,42,31,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,97.23,0,2,Check-Out,2019-08-04 -City Hotel,0,1,2015,September,44,18,2,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,97.74,0,2,Check-Out,2018-09-02 -City Hotel,1,271,2016,November,38,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,103.77,0,0,Canceled,2018-08-03 -City Hotel,0,40,2015,November,53,6,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,93.3,0,1,Check-Out,2018-09-02 -City Hotel,1,45,2016,February,19,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,71.33,0,0,Canceled,2018-08-03 -City Hotel,0,336,2016,August,19,18,0,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,139.8,1,3,Check-Out,2020-06-02 -Resort Hotel,0,44,2015,January,3,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,41.23,0,0,Check-Out,2018-11-02 -Resort Hotel,0,215,2017,August,37,22,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,145.36,0,1,Check-Out,2020-02-01 -City Hotel,0,24,2015,October,46,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,45.0,0,Transient-Party,58.97,0,0,Check-Out,2018-09-02 -Resort Hotel,1,55,2016,December,22,21,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.47,0,0,Canceled,2019-02-01 -City Hotel,1,1,2015,August,36,23,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,1,0,E,E,0,No Deposit,13.0,179.0,0,Transient,118.94,0,0,Canceled,2017-11-02 -City Hotel,0,0,2016,May,22,9,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,9.0,179.0,0,Transient,160.6,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,June,20,5,0,1,1,0.0,0,BB,PRT,Online TA,Direct,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,124.88,0,1,Check-Out,2020-02-01 -City Hotel,1,185,2017,May,26,18,2,1,2,0.0,0,BB,PRT,Direct,TA/TO,1,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,100.53,0,2,Canceled,2019-10-04 -City Hotel,0,0,2016,August,38,2,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient-Party,94.53,0,1,Check-Out,2019-06-03 -Resort Hotel,0,39,2017,January,3,8,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,103.74,0,2,Check-Out,2019-10-04 -City Hotel,1,298,2017,June,27,22,1,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,13.0,179.0,0,Transient,209.25,0,0,Canceled,2020-03-03 -City Hotel,1,1,2016,March,14,6,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,90.32,0,0,Canceled,2019-02-01 -City Hotel,0,366,2015,October,44,21,0,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,60.91,0,0,Canceled,2018-06-02 -City Hotel,0,0,2017,April,18,14,0,1,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,100.93,0,0,Check-Out,2020-03-03 -City Hotel,1,141,2017,March,27,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,59,Transient,121.36,0,0,Canceled,2019-10-04 -City Hotel,0,143,2016,March,18,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.22,0,2,Check-Out,2019-12-04 -City Hotel,1,0,2017,May,20,17,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Group,1.24,0,0,Canceled,2019-04-03 -Resort Hotel,0,111,2017,March,17,10,2,3,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,E,I,0,No Deposit,378.0,179.0,0,Transient-Party,165.16,0,0,Check-Out,2020-02-01 -Resort Hotel,0,99,2017,July,31,16,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,105.08,0,0,Check-Out,2020-06-02 -Resort Hotel,1,152,2016,October,44,21,3,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,96.0,0,0,Canceled,2019-07-04 -Resort Hotel,0,247,2017,July,28,29,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,73.51,0,2,Check-Out,2020-05-03 -Resort Hotel,0,0,2015,January,4,29,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,31.55,1,0,Check-Out,2019-01-03 -City Hotel,1,44,2016,December,41,1,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,67.0,179.0,0,Transient,66.32,0,0,Canceled,2019-08-04 -City Hotel,0,48,2016,August,15,2,0,2,3,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,101.74,0,0,Check-Out,2019-02-01 -City Hotel,0,5,2016,October,43,13,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.73,0,0,Check-Out,2019-05-04 -Resort Hotel,0,3,2017,January,3,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,63.42,1,0,Check-Out,2020-02-01 -City Hotel,1,243,2015,September,33,21,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,71.77,0,0,Canceled,2018-08-03 -Resort Hotel,0,39,2017,March,11,31,2,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,97.36,0,1,Check-Out,2019-11-03 -City Hotel,1,65,2015,September,37,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.65,0,0,Canceled,2017-09-02 -City Hotel,1,48,2016,February,25,17,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,F,0,No Deposit,13.0,45.0,0,Transient,97.89,0,0,Canceled,2019-11-03 -City Hotel,0,128,2016,May,21,14,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,102.56,0,1,Check-Out,2019-01-03 -City Hotel,1,99,2017,July,31,22,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,206.33,0,1,Canceled,2020-04-02 -Resort Hotel,1,16,2017,May,25,30,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,Non Refund,378.0,179.0,0,Transient,66.96,0,0,Check-Out,2020-03-03 -City Hotel,1,252,2016,March,15,31,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,68.02,0,0,Canceled,2019-01-03 -City Hotel,1,93,2016,July,33,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.83,0,2,Canceled,2019-04-03 -City Hotel,0,193,2016,October,45,24,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,94.53,0,1,Check-Out,2019-08-04 -City Hotel,1,169,2017,August,34,21,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,176.87,0,0,Canceled,2020-04-02 -City Hotel,1,51,2016,September,43,15,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.0,0,0,Canceled,2019-06-03 -City Hotel,1,96,2016,June,26,21,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient-Party,83.53,0,0,Canceled,2019-10-04 -City Hotel,1,44,2017,April,18,29,1,0,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient-Party,98.28,0,3,Check-Out,2020-02-01 -City Hotel,1,13,2017,June,20,30,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,129.19,0,0,Canceled,2020-03-03 -City Hotel,1,0,2015,September,45,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,A,0,Non Refund,11.0,179.0,0,Transient,24.44,0,0,Canceled,2018-07-03 -Resort Hotel,1,1,2015,September,36,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,94.33,0,0,Canceled,2018-05-03 -City Hotel,0,2,2017,May,24,6,0,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,163.0,0,Transient,94.74,0,0,Check-Out,2020-03-03 -City Hotel,0,225,2017,August,30,11,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.31,0,1,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,May,18,30,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,62.64,0,0,Check-Out,2019-03-04 -Resort Hotel,0,133,2016,June,27,16,2,7,1,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,98.52,0,0,Check-Out,2019-02-01 -City Hotel,0,50,2016,May,23,24,2,1,2,0.0,0,HB,CHE,Groups,TA/TO,0,0,0,D,D,0,No Deposit,284.0,179.0,0,Transient-Party,61.73,0,0,Check-Out,2019-02-01 -Resort Hotel,1,55,2017,February,11,6,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,73.0,179.0,0,Transient,134.89,0,0,Canceled,2019-12-04 -City Hotel,0,41,2017,February,11,30,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,1,No Deposit,32.0,179.0,0,Transient,123.34,0,0,Canceled,2019-10-04 -City Hotel,0,18,2017,May,23,14,0,4,2,0.0,0,HB,AUT,Direct,Direct,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient-Party,175.41,0,0,Check-Out,2020-03-03 -City Hotel,1,160,2016,March,9,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,93.39,0,0,Canceled,2018-11-02 -City Hotel,1,14,2016,September,42,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,No Deposit,14.0,190.0,0,Transient,80.74,0,0,Canceled,2018-09-02 -Resort Hotel,0,12,2015,August,37,28,1,5,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,201.67,0,0,Check-Out,2018-06-02 -City Hotel,1,211,2016,August,36,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,92.2,0,0,Canceled,2019-01-03 -City Hotel,0,77,2017,April,16,25,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,70.36,0,1,Check-Out,2020-03-03 -Resort Hotel,0,89,2016,July,26,12,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,81.83,0,2,Check-Out,2018-06-02 -City Hotel,0,1,2016,April,24,18,0,1,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,124.27,0,0,Check-Out,2019-03-04 -City Hotel,0,192,2017,May,21,9,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,129.56,0,1,Check-Out,2020-02-01 -Resort Hotel,1,10,2017,July,25,20,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,99.4,1,0,Canceled,2020-05-03 -Resort Hotel,0,99,2017,July,26,2,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,172.0,179.0,0,Transient,147.54,0,1,Check-Out,2020-06-02 -Resort Hotel,0,33,2017,February,9,20,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,223.0,0,Transient-Party,36.13,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2016,December,51,31,0,2,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,105.55,0,0,Canceled,2019-10-04 -City Hotel,1,255,2016,July,16,17,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.25,0,0,Canceled,2019-03-04 -City Hotel,1,275,2016,December,53,25,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,63.29,0,0,Canceled,2018-08-03 -City Hotel,1,1,2017,May,22,21,0,1,3,0.0,0,SC,ITA,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,2.26,0,0,Canceled,2020-01-04 -City Hotel,1,0,2015,October,47,22,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,76.35,0,0,No-Show,2018-09-02 -City Hotel,1,117,2016,January,3,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,69.87,0,1,Canceled,2019-10-04 -Resort Hotel,1,17,2016,February,8,9,2,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,47.36,0,2,Canceled,2019-02-01 -City Hotel,1,105,2017,April,18,6,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,92.47,0,2,Canceled,2020-02-01 -City Hotel,1,253,2017,February,8,14,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,103.49,0,0,Canceled,2019-11-03 -City Hotel,0,219,2015,September,37,31,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Contract,121.18,1,1,Check-Out,2017-11-02 -City Hotel,0,62,2015,November,45,15,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,73.39,0,0,Check-Out,2018-08-03 -City Hotel,0,15,2017,July,25,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,13.0,179.0,0,Transient-Party,208.56,1,0,Check-Out,2020-06-02 -City Hotel,0,157,2016,September,37,6,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,80.59,0,2,Check-Out,2019-06-03 -City Hotel,1,1,2016,July,27,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,116.21,0,1,No-Show,2019-02-01 -Resort Hotel,0,1,2017,May,35,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,41.0,179.0,0,Transient,106.41,0,1,Check-Out,2020-04-02 -City Hotel,1,2,2016,August,46,20,2,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,152.43,0,3,Check-Out,2019-07-04 -Resort Hotel,0,111,2016,October,44,25,1,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,297.0,179.0,0,Transient,96.66,0,0,Check-Out,2019-08-04 -Resort Hotel,0,242,2016,October,41,2,0,5,2,0.0,0,BB,GBR,Complementary,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,90.89,0,0,Check-Out,2019-06-03 -City Hotel,0,19,2015,December,50,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,65.06,0,1,Check-Out,2018-09-02 -City Hotel,0,255,2017,May,21,5,2,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,154.73,0,3,Check-Out,2020-04-02 -Resort Hotel,1,246,2017,January,36,30,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Non Refund,239.0,179.0,0,Transient,166.17,0,0,Canceled,2019-10-04 -City Hotel,1,0,2016,August,34,20,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,250.0,0,Transient,2.68,0,0,Canceled,2019-09-03 -Resort Hotel,0,248,2017,March,11,19,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,1,A,A,2,No Deposit,15.0,222.0,75,Transient,42.86,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,December,51,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,17.0,68.0,0,Transient,51.05,0,0,Check-Out,2018-12-03 -City Hotel,0,19,2016,October,46,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,71.79,0,0,Check-Out,2019-07-04 -City Hotel,1,84,2016,February,10,31,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,76.02,0,1,Canceled,2018-12-03 -Resort Hotel,0,103,2017,August,37,21,1,6,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,150.66,0,0,Check-Out,2020-06-02 -City Hotel,1,14,2015,July,33,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,58.54,0,0,Canceled,2018-06-02 -Resort Hotel,0,89,2015,December,53,11,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,61.78,0,0,Check-Out,2018-09-02 -City Hotel,1,97,2017,May,20,12,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.37,0,0,Canceled,2020-02-01 -Resort Hotel,1,41,2017,February,9,10,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,138.0,179.0,0,Transient,45.13,0,0,Canceled,2019-11-03 -City Hotel,0,183,2017,May,22,29,1,0,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,F,C,0,No Deposit,38.0,179.0,0,Transient-Party,71.55,0,0,Check-Out,2020-04-02 -City Hotel,0,106,2017,May,20,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,108.82,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,January,35,21,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,74.02,1,1,Check-Out,2019-01-03 -City Hotel,1,69,2017,March,7,4,2,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,87.49,0,1,Canceled,2019-10-04 -City Hotel,0,50,2015,October,45,20,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,62.13,0,0,Check-Out,2018-12-03 -Resort Hotel,0,12,2015,August,41,30,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,117.61,0,0,Check-Out,2020-06-02 -Resort Hotel,0,23,2016,August,34,27,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,119.03,0,1,Check-Out,2019-04-03 -City Hotel,1,70,2017,July,27,16,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,129.0,179.0,0,Transient-Party,77.97,0,1,Check-Out,2020-06-02 -Resort Hotel,0,12,2015,December,49,5,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,217.27,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,June,26,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,67.0,0,Transient,107.62,0,0,Check-Out,2020-04-02 -City Hotel,0,15,2017,January,4,6,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,43.69,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,January,4,17,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,62.56,1,1,Check-Out,2019-05-04 -City Hotel,1,189,2017,March,17,22,0,3,1,0.0,0,HB,PRT,Groups,Corporate,1,0,0,A,A,2,Non Refund,13.0,179.0,0,Transient,73.48,0,0,Canceled,2019-11-03 -Resort Hotel,0,166,2015,July,31,28,2,6,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,126.49,0,0,Check-Out,2018-06-02 -Resort Hotel,0,87,2016,August,29,30,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,241.0,179.0,0,Transient,227.9,1,0,Check-Out,2020-07-03 -City Hotel,0,11,2016,December,51,27,1,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.32,0,1,Check-Out,2019-12-04 -Resort Hotel,0,249,2017,June,31,17,2,5,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,166.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-07-03 -Resort Hotel,0,39,2015,July,30,21,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,245.0,179.0,0,Transient,43.86,0,0,Check-Out,2018-06-02 -City Hotel,0,10,2016,February,8,27,0,1,2,2.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,63.17,0,0,Check-Out,2019-01-03 -Resort Hotel,0,53,2016,July,25,10,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,March,17,15,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,73.65,0,1,Check-Out,2019-03-04 -City Hotel,1,93,2016,December,48,12,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.84,0,1,Canceled,2019-10-04 -City Hotel,1,242,2016,September,50,6,0,2,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,90.39,0,0,Canceled,2019-08-04 -City Hotel,1,163,2017,July,34,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,120.83,0,0,Canceled,2019-06-03 -City Hotel,1,90,2016,December,52,30,1,4,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.37,0,0,Canceled,2019-09-03 -City Hotel,0,48,2016,September,37,18,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,183.71,0,1,Check-Out,2019-06-03 -City Hotel,1,236,2015,July,31,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.67,0,2,Check-Out,2018-04-02 -Resort Hotel,0,143,2017,June,36,13,4,7,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,190.68,0,1,Check-Out,2020-06-02 -City Hotel,0,140,2017,April,18,21,2,7,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,23.0,179.0,0,Transient,39.05,0,0,Check-Out,2020-03-03 -Resort Hotel,0,191,2016,August,25,12,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,95.91,0,2,Check-Out,2019-06-03 -Resort Hotel,1,193,2015,October,42,2,0,7,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,73.14,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2015,March,11,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,40.92,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2015,July,32,18,0,2,1,0.0,0,BB,PRT,Corporate,GDS,1,1,1,A,A,0,No Deposit,12.0,179.0,0,Transient,130.51,0,1,Check-Out,2018-05-03 -City Hotel,1,241,2015,October,44,27,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient-Party,91.03,0,0,Canceled,2018-09-02 -City Hotel,0,2,2016,June,27,5,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,B,0,No Deposit,73.0,179.0,0,Transient-Party,76.14,0,0,Check-Out,2019-02-01 -City Hotel,1,118,2016,September,34,28,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,101.5,0,0,Canceled,2019-02-01 -City Hotel,0,47,2016,May,31,5,0,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,9.0,179.0,0,Transient,191.54,0,0,Check-Out,2019-08-04 -City Hotel,1,39,2017,August,25,5,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.49,0,0,Canceled,2020-04-02 -City Hotel,0,143,2016,March,16,21,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,71.31,0,0,Check-Out,2018-12-03 -City Hotel,0,63,2015,July,32,22,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,95.96,0,0,Check-Out,2018-06-02 -Resort Hotel,0,11,2016,September,51,30,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,198.87,1,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,January,4,24,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,4.56,0,0,Check-Out,2019-02-01 -City Hotel,0,248,2017,August,35,25,0,2,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient-Party,234.89,0,0,Check-Out,2020-06-02 -Resort Hotel,1,32,2016,December,4,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,118.91,0,0,Canceled,2018-11-02 -Resort Hotel,1,41,2017,May,22,6,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,89.51,1,0,Canceled,2020-04-02 -Resort Hotel,0,2,2016,August,37,9,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,172.08,0,3,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,October,45,24,4,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,65.19,0,0,Check-Out,2019-05-04 -City Hotel,1,289,2016,July,33,17,0,5,1,0.0,0,BB,POL,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,103.42,0,0,Canceled,2019-03-04 -City Hotel,0,1,2017,February,8,20,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,1,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,74.47,1,0,Check-Out,2019-09-03 -Resort Hotel,1,145,2016,December,11,28,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,319.0,179.0,0,Transient,61.23,0,0,Canceled,2019-03-04 -Resort Hotel,0,272,2016,May,29,10,4,7,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Contract,110.61,0,2,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,October,16,4,1,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,79.6,1,1,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,January,11,2,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,1,No Deposit,16.0,179.0,0,Transient,65.46,0,0,Check-Out,2019-03-04 -Resort Hotel,1,158,2016,June,37,27,0,10,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,193.44,0,1,Canceled,2019-05-04 -City Hotel,0,247,2017,July,30,25,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.24,0,0,Check-Out,2020-05-03 -City Hotel,0,242,2017,July,33,21,0,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,74.0,179.0,0,Contract,105.54,0,1,Check-Out,2020-06-02 -Resort Hotel,1,152,2016,November,53,16,2,5,2,0.0,0,FB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,145.44,0,0,Check-Out,2019-08-04 -City Hotel,1,146,2015,December,49,17,1,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,81.18,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,June,21,19,0,1,2,0.0,0,BB,SWE,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.31,0,1,Check-Out,2020-05-03 -City Hotel,1,0,2015,July,34,5,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,58.28,0,0,Canceled,2018-05-03 -Resort Hotel,0,30,2017,March,17,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,1,A,F,1,No Deposit,240.0,179.0,0,Group,88.93,1,2,Check-Out,2019-11-03 -City Hotel,0,187,2016,November,46,25,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,221.18,0,0,Check-Out,2019-09-03 -City Hotel,0,12,2016,May,21,25,1,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2019-03-04 -Resort Hotel,0,144,2017,June,25,30,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,192.1,1,1,Check-Out,2020-03-03 -Resort Hotel,0,84,2015,December,51,25,1,1,2,0.0,0,HB,ESP,Direct,TA/TO,0,0,0,A,E,2,No Deposit,244.0,179.0,0,Transient,113.56,0,1,Check-Out,2018-08-03 -Resort Hotel,0,51,2017,May,25,18,2,7,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,80.0,179.0,75,Transient,76.32,0,0,Check-Out,2020-04-02 -City Hotel,1,202,2017,August,37,26,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,A,1,Non Refund,10.0,179.0,0,Transient-Party,176.92,0,0,Canceled,2019-06-03 -City Hotel,0,46,2017,March,15,24,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,74.22,0,0,Check-Out,2020-03-03 -City Hotel,0,261,2016,February,11,21,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.93,0,2,Check-Out,2019-01-03 -Resort Hotel,0,153,2016,September,33,10,1,10,1,0.0,0,FB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,94.89,0,0,Check-Out,2019-03-04 -City Hotel,0,37,2015,June,31,18,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,95.43,0,1,Canceled,2018-12-03 -City Hotel,0,143,2016,June,27,24,2,2,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,91.0,179.0,0,Transient-Party,59.19,0,0,Check-Out,2019-07-04 -City Hotel,1,104,2017,February,8,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,61.15,0,0,Canceled,2019-10-04 -Resort Hotel,0,263,2017,July,37,31,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Contract,84.22,0,1,Check-Out,2020-05-03 -City Hotel,1,108,2017,June,21,17,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,1.0,179.0,0,Transient,121.04,0,1,No-Show,2020-05-03 -Resort Hotel,0,44,2017,May,22,27,0,1,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,F,F,1,No Deposit,243.0,179.0,0,Transient,124.17,1,0,Check-Out,2020-04-02 -City Hotel,1,39,2016,August,33,2,1,4,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,181.4,0,2,Canceled,2019-05-04 -Resort Hotel,0,0,2017,March,9,20,1,0,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,71.49,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2015,October,43,18,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,131.04,0,1,Check-Out,2018-08-03 -City Hotel,1,2,2017,January,3,6,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Canceled,2019-11-03 -Resort Hotel,1,154,2017,May,22,29,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient,129.15,0,0,Canceled,2020-02-01 -Resort Hotel,1,413,2016,November,50,29,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,66.62,0,0,Canceled,2019-10-04 -City Hotel,0,100,2015,September,43,6,2,3,2,0.0,0,HB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,108.43,0,0,Check-Out,2018-09-02 -Resort Hotel,0,7,2017,February,11,15,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,239.0,179.0,0,Transient,225.01,1,1,Check-Out,2020-03-03 -Resort Hotel,0,3,2017,January,32,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,46.09,1,0,Check-Out,2019-09-03 -City Hotel,0,3,2015,October,43,20,0,3,1,0.0,0,BB,USA,Online TA,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,64.73,0,0,Check-Out,2018-09-02 -City Hotel,1,5,2016,April,18,25,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,151.03,0,1,No-Show,2019-03-04 -City Hotel,1,176,2017,March,22,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.02,0,0,Canceled,2019-11-03 -City Hotel,0,9,2017,May,20,26,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,163.06,0,0,Check-Out,2020-06-02 -City Hotel,1,25,2016,June,38,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.8,0,0,Canceled,2019-04-03 -Resort Hotel,0,37,2015,October,42,18,2,4,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,43.08,0,1,Check-Out,2018-05-03 -City Hotel,1,387,2015,October,43,15,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,68.47,0,0,Canceled,2017-11-02 -City Hotel,1,38,2017,April,18,16,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient-Party,62.05,0,0,Canceled,2020-01-04 -City Hotel,1,67,2017,July,33,15,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,6.0,179.0,0,Transient,196.95,0,0,Canceled,2020-01-04 -Resort Hotel,0,0,2016,December,41,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,0,No Deposit,13.0,45.0,0,Transient,63.88,1,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,October,43,3,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.14,0,0,Check-Out,2019-03-04 -Resort Hotel,0,275,2017,June,34,5,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,163.16,0,1,Check-Out,2020-02-01 -Resort Hotel,1,108,2016,November,48,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,183.0,179.0,0,Transient,34.76,0,0,Canceled,2019-10-04 -Resort Hotel,0,4,2017,January,3,1,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,190.0,331.0,0,Transient,28.65,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,July,36,24,0,1,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,203.47,1,2,Check-Out,2019-06-03 -City Hotel,0,43,2017,May,23,18,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Contract,252.0,0,1,Check-Out,2020-04-02 -Resort Hotel,0,99,2017,February,10,27,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient-Party,116.13,0,2,Check-Out,2020-04-02 -City Hotel,1,55,2016,April,17,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,39.19,0,0,Canceled,2019-02-01 -City Hotel,1,15,2016,August,10,9,2,0,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,86.27,0,0,Canceled,2018-12-03 -City Hotel,0,261,2017,June,25,30,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,70.79,0,1,Check-Out,2020-06-02 -City Hotel,0,18,2015,August,32,4,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.16,0,0,Check-Out,2018-05-03 -Resort Hotel,1,240,2016,July,30,28,2,3,2,2.0,0,HB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,183.08,1,0,Canceled,2019-05-04 -City Hotel,0,19,2016,January,4,6,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,68.62,1,0,Check-Out,2019-09-03 -Resort Hotel,0,56,2016,August,37,18,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient-Party,185.7,1,1,Check-Out,2019-08-04 -City Hotel,0,0,2017,February,10,27,1,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,0,No Deposit,19.0,179.0,0,Transient,80.06,0,0,Check-Out,2019-09-03 -City Hotel,1,154,2016,January,4,27,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,31.0,179.0,0,Transient,73.01,0,0,Canceled,2018-11-02 -City Hotel,0,14,2016,January,3,27,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,61.76,0,1,Check-Out,2018-11-02 -City Hotel,1,34,2017,July,30,6,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.61,0,0,Canceled,2019-10-04 -City Hotel,0,13,2016,June,17,15,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.79,0,0,Check-Out,2019-09-03 -Resort Hotel,0,10,2017,May,26,16,1,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,226.0,179.0,0,Transient,94.81,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,May,25,14,2,3,1,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,E,1,No Deposit,15.0,179.0,75,Transient,0.0,1,0,Check-Out,2019-11-03 -City Hotel,0,30,2016,October,50,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,D,2,No Deposit,11.0,179.0,0,Transient,83.14,0,3,Check-Out,2019-10-04 -City Hotel,1,39,2016,June,27,9,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,D,0,No Deposit,15.0,179.0,0,Transient,74.21,0,0,No-Show,2019-05-04 -City Hotel,0,180,2017,June,26,5,2,2,2,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,81.26,0,1,Check-Out,2020-03-03 -City Hotel,0,141,2017,May,27,6,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,106.54,0,0,Check-Out,2020-05-03 -City Hotel,0,42,2016,December,51,2,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,189.39,1,2,Check-Out,2019-11-03 -City Hotel,0,12,2017,February,10,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,67.73,0,3,Check-Out,2020-03-03 -City Hotel,1,259,2016,February,10,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient-Party,61.23,0,0,Canceled,2018-11-02 -City Hotel,0,43,2015,August,33,15,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,143.45,0,1,Check-Out,2018-09-02 -City Hotel,0,157,2016,July,26,16,0,3,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,133.13,0,0,Check-Out,2019-05-04 -City Hotel,0,30,2016,April,18,13,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.08,0,0,Check-Out,2019-01-03 -Resort Hotel,0,179,2016,August,37,28,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,79.0,179.0,0,Transient-Party,73.79,0,0,Check-Out,2019-12-04 -City Hotel,0,2,2016,February,11,28,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,30.0,179.0,0,Transient-Party,73.16,0,1,Check-Out,2019-09-03 -City Hotel,1,14,2016,August,33,19,2,1,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,202.75,0,0,Canceled,2019-05-04 -City Hotel,1,309,2017,February,10,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -City Hotel,1,1,2016,November,50,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,37.0,231.0,0,Transient,76.37,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,October,43,15,2,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,96.48,0,0,No-Show,2019-05-04 -Resort Hotel,0,44,2016,July,22,31,2,3,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,183.56,1,0,Check-Out,2019-06-03 -City Hotel,1,4,2015,July,33,6,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,98.1,0,0,Canceled,2018-05-03 -Resort Hotel,1,108,2017,July,35,21,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,2020-05-03 -Resort Hotel,0,151,2016,November,28,28,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,314.0,179.0,0,Transient-Party,78.4,0,2,Check-Out,2019-11-03 -City Hotel,0,5,2016,October,44,9,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.53,0,0,Check-Out,2018-08-03 -City Hotel,0,8,2017,August,35,2,1,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,96.75,1,2,Check-Out,2020-07-03 -Resort Hotel,0,8,2016,June,23,21,2,3,3,1.0,0,BB,USA,Online TA,Direct,0,0,0,H,H,2,No Deposit,248.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-02-01 -City Hotel,1,89,2017,May,20,6,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,151.29,0,1,Canceled,2019-03-04 -City Hotel,0,332,2017,July,30,12,2,4,2,2.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,228.48,0,1,Check-Out,2020-05-03 -City Hotel,0,2,2017,May,21,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,121.35,0,1,Check-Out,2020-03-03 -Resort Hotel,0,7,2016,August,37,6,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,183.88,0,0,Check-Out,2020-07-03 -Resort Hotel,0,199,2016,March,18,30,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,75.79,0,0,Check-Out,2019-02-01 -City Hotel,1,10,2017,January,11,16,2,1,1,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.81,0,2,Canceled,2019-10-04 -City Hotel,0,19,2016,December,53,4,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,107.31,0,2,Check-Out,2019-03-04 -Resort Hotel,0,155,2017,February,8,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,59.19,0,2,Check-Out,2020-04-02 -City Hotel,0,1,2016,August,44,27,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,154.47,0,0,Check-Out,2020-06-02 -Resort Hotel,1,156,2017,August,38,16,1,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,119.78,0,1,Check-Out,2020-03-03 -City Hotel,1,39,2016,February,8,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,75.35,0,0,Canceled,2018-11-02 -City Hotel,1,65,2017,July,35,26,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Contract,227.18,0,0,Canceled,2020-06-02 -Resort Hotel,0,1,2016,February,7,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,62.54,0,0,Check-Out,2018-10-03 -Resort Hotel,0,33,2016,March,10,21,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient-Party,61.73,0,0,Check-Out,2019-02-01 -City Hotel,0,44,2016,January,16,28,1,0,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,60.64,0,1,Check-Out,2019-11-03 -Resort Hotel,1,165,2017,August,37,14,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Refundable,243.0,179.0,0,Transient,118.36,0,0,Canceled,2019-09-03 -City Hotel,0,11,2015,November,32,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,109.07,0,2,Check-Out,2018-06-02 -Resort Hotel,0,38,2015,September,34,30,2,1,2,0.0,0,HB,PRT,Direct,TA/TO,1,1,0,A,C,0,No Deposit,13.0,179.0,0,Group,0.0,0,1,Check-Out,2018-05-03 -Resort Hotel,0,26,2017,March,16,17,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,64.83,0,1,Check-Out,2020-04-02 -Resort Hotel,0,241,2016,March,20,31,1,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,15.0,222.0,0,Transient-Party,66.29,0,0,Check-Out,2019-05-04 -City Hotel,0,28,2016,December,51,5,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.29,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,May,21,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.71,0,0,Check-Out,2019-03-04 -City Hotel,0,106,2016,March,12,15,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,305.0,179.0,0,Transient-Party,59.76,0,0,Check-Out,2020-03-03 -City Hotel,0,242,2016,December,53,2,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,76.92,0,0,Check-Out,2019-10-04 -Resort Hotel,0,10,2016,May,23,31,1,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient,125.61,1,1,Check-Out,2019-02-01 -City Hotel,1,0,2016,August,34,5,0,1,3,0.0,0,SC,PRT,Complementary,Corporate,1,0,0,P,P,0,No Deposit,19.0,269.0,0,Transient,1.8,0,0,Canceled,2019-09-03 -City Hotel,0,0,2016,January,4,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,99.41,0,1,Check-Out,2018-10-03 -Resort Hotel,0,263,2016,October,36,14,2,4,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,D,2,No Deposit,244.0,179.0,0,Transient,222.93,1,3,Check-Out,2019-08-04 -City Hotel,0,3,2016,November,49,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,247.0,72.0,0,Transient,63.02,0,0,Check-Out,2019-08-04 -City Hotel,0,13,2016,May,21,27,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,162.04,1,0,Check-Out,2019-04-03 -Resort Hotel,0,38,2017,July,36,25,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2016,October,42,5,0,1,1,0.0,0,BB,,Complementary,Corporate,1,0,0,A,K,1,No Deposit,15.0,179.0,0,Transient,83.65,1,2,Check-Out,2019-06-03 -Resort Hotel,0,91,2015,November,35,10,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,107.61,0,0,Check-Out,2018-08-03 -City Hotel,0,225,2016,May,43,13,2,5,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.68,0,0,Check-Out,2019-03-04 -Resort Hotel,0,87,2016,June,37,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,100.32,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2017,February,45,16,2,0,1,0.0,0,SC,GBR,Complementary,Direct,0,0,0,P,K,0,No Deposit,11.0,179.0,0,Transient,1.86,0,0,Check-Out,2019-12-04 -City Hotel,0,9,2016,May,21,14,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.25,0,0,Check-Out,2019-03-04 -City Hotel,1,225,2015,October,38,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,64.0,179.0,43,Transient,114.86,0,0,Canceled,2018-07-03 -Resort Hotel,0,2,2016,June,27,13,0,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,120.54,0,0,Check-Out,2019-06-03 -Resort Hotel,0,228,2016,August,30,6,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,117.41,1,1,Check-Out,2019-06-03 -City Hotel,1,7,2016,June,25,20,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,120.28,0,0,No-Show,2019-02-01 -Resort Hotel,0,107,2016,July,35,28,4,5,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,175.86,0,0,Check-Out,2019-05-04 -City Hotel,1,18,2017,May,21,22,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,153.88,0,0,Canceled,2020-02-01 -Resort Hotel,1,0,2016,January,9,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,112.69,0,1,No-Show,2019-01-03 -City Hotel,1,59,2016,December,37,27,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,123.15,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,October,46,13,0,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,220.0,0,Transient-Party,77.58,0,0,Check-Out,2018-09-02 -Resort Hotel,0,306,2015,October,43,22,1,10,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Contract,60.11,0,1,Check-Out,2018-01-03 -Resort Hotel,0,11,2015,December,53,31,0,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,59.53,0,0,Check-Out,2018-11-02 -City Hotel,1,406,2015,September,38,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.45,0,0,Canceled,2017-12-03 -Resort Hotel,1,103,2016,March,10,28,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,125.12,0,0,Canceled,2019-02-01 -City Hotel,1,100,2017,April,23,19,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,98.01,0,1,Canceled,2020-04-02 -Resort Hotel,0,34,2016,March,11,28,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,224.0,0,Transient,33.77,0,1,Check-Out,2019-03-04 -City Hotel,0,59,2016,September,39,2,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,138.8,0,2,Check-Out,2018-08-03 -Resort Hotel,0,15,2016,August,33,18,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-05-04 -City Hotel,0,10,2015,October,43,8,1,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,B,0,No Deposit,16.0,179.0,0,Transient-Party,72.0,0,0,Check-Out,2018-07-03 -City Hotel,0,47,2016,April,39,22,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.29,0,0,Check-Out,2019-08-04 -City Hotel,1,112,2017,February,15,16,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,60.97,0,0,Canceled,2020-01-04 -City Hotel,1,197,2017,August,35,9,0,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,150.07,0,2,Canceled,2020-05-03 -City Hotel,0,46,2016,April,16,14,0,1,3,0.0,0,BB,POL,Direct,Direct,0,0,0,D,B,0,No Deposit,14.0,179.0,0,Transient,120.25,0,0,Check-Out,2019-03-04 -City Hotel,0,90,2016,March,12,3,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.26,0,2,Check-Out,2019-02-01 -City Hotel,1,16,2015,November,50,5,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,27.0,179.0,0,Transient-Party,57.43,0,0,Canceled,2018-08-03 -City Hotel,0,28,2016,December,53,10,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,62.7,1,0,Check-Out,2019-11-03 -City Hotel,1,246,2015,August,33,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,10.0,179.0,0,Transient,116.22,0,0,Canceled,2018-05-03 -City Hotel,1,444,2016,October,45,15,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,70.3,0,0,Canceled,2018-08-03 -City Hotel,0,139,2016,June,20,17,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,B,1,No Deposit,10.0,179.0,0,Transient-Party,139.72,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,February,11,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,215.0,179.0,0,Transient,63.3,1,0,Check-Out,2020-05-03 -City Hotel,1,51,2016,August,9,5,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.4,0,0,Canceled,2020-03-03 -City Hotel,0,1,2016,September,35,16,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,130.69,0,2,Check-Out,2019-06-03 -Resort Hotel,1,266,2017,August,38,31,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Contract,219.49,0,3,No-Show,2020-02-01 -Resort Hotel,0,35,2016,October,42,6,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,101.89,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2015,January,8,2,2,5,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,61.02,0,0,Check-Out,2018-11-02 -City Hotel,1,390,2015,December,41,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,77.49,0,0,Canceled,2019-10-04 -City Hotel,0,43,2016,April,15,9,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Contract,42.13,0,0,Check-Out,2019-03-04 -City Hotel,1,33,2015,November,51,29,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,211.0,0,Transient,107.83,0,0,Canceled,2019-10-04 -Resort Hotel,0,15,2015,September,37,18,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,3,No Deposit,326.0,179.0,0,Transient,48.55,0,0,Check-Out,2018-06-02 -Resort Hotel,0,363,2017,May,22,31,1,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,11.0,222.0,0,Transient-Party,60.23,0,0,Check-Out,2020-03-03 -City Hotel,1,110,2017,April,17,9,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,102.27,0,0,Canceled,2018-10-03 -City Hotel,0,15,2015,November,45,22,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.46,0,1,Check-Out,2018-08-03 -Resort Hotel,0,278,2016,August,37,19,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,162.54,0,3,Check-Out,2019-08-04 -City Hotel,1,42,2017,June,29,10,2,3,1,0.0,0,BB,SWE,Online TA,GDS,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,134.54,0,0,Canceled,2020-04-02 -Resort Hotel,0,112,2017,February,9,12,2,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -City Hotel,1,38,2017,May,21,25,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,168.0,179.0,0,Transient,132.89,0,0,Canceled,2020-03-03 -Resort Hotel,1,10,2015,December,50,5,2,1,2,0.0,0,HB,ESP,Complementary,TA/TO,0,0,0,H,H,3,No Deposit,240.0,179.0,0,Transient-Party,113.48,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2016,June,26,2,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,123.91,0,0,Check-Out,2018-12-03 -City Hotel,0,40,2015,July,29,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,130.61,0,1,Check-Out,2018-05-03 -City Hotel,0,266,2015,July,37,11,2,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.56,0,0,Check-Out,2018-05-03 -Resort Hotel,0,254,2017,May,32,20,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,10.0,179.0,0,Transient,144.08,0,2,Check-Out,2020-06-02 -Resort Hotel,1,313,2016,July,35,18,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,165.09,0,3,Canceled,2018-08-03 -City Hotel,0,7,2016,August,44,12,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,242.95,0,3,Check-Out,2019-09-03 -City Hotel,0,228,2016,July,25,24,4,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,97.67,0,0,Check-Out,2018-08-03 -Resort Hotel,1,243,2017,July,25,4,2,4,3,0.0,0,HB,BEL,Direct,Corporate,0,0,0,A,E,0,No Deposit,199.0,179.0,0,Transient,106.84,0,0,Canceled,2020-01-04 -City Hotel,0,6,2016,May,22,25,0,3,2,0.0,0,BB,CN,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,194.0,0,Transient,99.99,0,0,Check-Out,2019-07-04 -Resort Hotel,0,39,2016,November,50,6,2,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,71.21,1,1,Check-Out,2019-09-03 -Resort Hotel,1,1,2016,February,11,29,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,35.39,0,0,Canceled,2019-10-04 -City Hotel,0,95,2017,August,35,11,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.67,0,2,Check-Out,2020-05-03 -Resort Hotel,1,109,2015,August,34,29,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,93.01,0,2,Canceled,2019-07-04 -City Hotel,0,293,2017,August,16,15,2,5,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,224.03,0,1,Check-Out,2020-06-02 -Resort Hotel,1,253,2016,August,26,5,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,100.46,0,0,Canceled,2019-02-01 -City Hotel,0,13,2017,May,35,6,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.82,0,0,Check-Out,2019-12-04 -Resort Hotel,0,12,2016,October,44,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,164.0,179.0,0,Transient,68.35,1,0,Check-Out,2019-09-03 -City Hotel,0,2,2017,May,34,19,1,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,87.0,179.0,0,Group,117.58,0,1,Check-Out,2020-06-02 -Resort Hotel,0,3,2017,June,23,28,1,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.04,1,1,Check-Out,2020-04-02 -City Hotel,1,40,2015,December,51,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,165.52,0,2,Canceled,2018-11-02 -City Hotel,0,9,2016,April,44,10,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,179.0,179.0,64,Transient,59.18,0,0,Check-Out,2019-03-04 -City Hotel,1,262,2016,April,16,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,148.0,179.0,0,Transient,63.71,0,0,Canceled,2019-02-01 -City Hotel,1,173,2017,May,21,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,Non Refund,11.0,179.0,0,Transient,118.67,0,0,Canceled,2020-03-03 -Resort Hotel,0,101,2017,February,10,24,0,1,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,39.77,0,0,Check-Out,2019-04-03 -City Hotel,0,2,2016,January,3,23,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,300.0,179.0,0,Transient,75.76,0,0,Check-Out,2018-11-02 -City Hotel,0,13,2016,April,16,27,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,72.32,0,0,Check-Out,2019-03-04 -City Hotel,0,4,2015,October,41,12,0,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,60.84,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,August,44,28,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.3,0,0,Check-Out,2019-08-04 -Resort Hotel,0,58,2016,April,15,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,241.0,179.0,0,Transient,113.17,0,1,Check-Out,2019-02-01 -City Hotel,0,252,2017,July,26,31,0,3,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.32,0,1,Check-Out,2020-03-03 -City Hotel,0,1,2017,February,9,14,0,2,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,30.82,0,1,Check-Out,2019-11-03 -Resort Hotel,1,25,2016,May,18,11,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,238.0,179.0,0,Transient,63.14,0,0,Canceled,2019-03-04 -Resort Hotel,0,159,2016,September,36,20,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,189.0,179.0,0,Transient,121.67,0,0,Check-Out,2018-08-03 -City Hotel,0,39,2017,August,36,13,1,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,128.48,0,0,Check-Out,2020-06-02 -City Hotel,1,223,2016,September,42,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,209.0,179.0,0,Transient,85.76,0,0,Canceled,2018-07-03 -Resort Hotel,0,105,2017,February,11,25,2,4,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,D,D,1,No Deposit,34.0,223.0,0,Transient-Party,91.79,0,0,Check-Out,2019-11-03 -City Hotel,0,88,2016,July,46,23,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,10.0,179.0,0,Transient,163.67,0,1,Check-Out,2019-12-04 -City Hotel,0,0,2016,March,35,17,2,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,81.14,0,2,Check-Out,2019-06-03 -Resort Hotel,0,48,2016,August,36,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,196.37,0,1,Check-Out,2019-12-04 -City Hotel,0,0,2016,April,17,24,0,1,3,0.0,0,BB,ESP,Complementary,Direct,1,0,0,D,D,0,No Deposit,14.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-06-03 -City Hotel,0,47,2016,April,28,20,2,2,1,0.0,0,BB,GBR,Aviation,Corporate,1,0,0,D,D,2,No Deposit,16.0,180.0,0,Transient,176.76,0,0,Check-Out,2019-04-03 -City Hotel,0,17,2016,August,37,15,2,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,176.89,0,3,Check-Out,2019-04-03 -City Hotel,0,2,2016,October,8,20,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.85,0,2,Check-Out,2019-12-04 -Resort Hotel,0,106,2015,November,30,10,2,5,2,0.0,0,FB,ESP,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,135.0,179.0,0,Transient-Party,101.57,0,0,Canceled,2018-07-03 -Resort Hotel,0,103,2017,February,10,28,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,319.0,331.0,0,Transient-Party,82.09,0,0,Check-Out,2019-10-04 -City Hotel,0,17,2015,December,53,6,2,3,1,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.64,0,2,Check-Out,2018-08-03 -City Hotel,0,29,2017,August,37,21,2,1,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,192.26,0,0,Check-Out,2020-07-03 -City Hotel,0,166,2017,July,31,1,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient,112.97,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,October,22,26,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,92.81,1,0,Check-Out,2019-06-03 -City Hotel,1,169,2016,December,21,10,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,59.74,0,0,Canceled,2018-11-02 -City Hotel,0,32,2016,May,23,27,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,62.02,0,0,Check-Out,2019-03-04 -City Hotel,0,88,2016,December,53,28,2,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,78.19,0,2,Check-Out,2019-11-03 -Resort Hotel,1,15,2015,August,37,13,2,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,176.87,0,0,Canceled,2019-01-03 -City Hotel,0,12,2017,June,27,12,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient-Party,122.66,0,1,Check-Out,2019-12-04 -City Hotel,0,28,2015,December,52,30,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,3,No Deposit,11.0,179.0,0,Transient,110.16,0,0,Check-Out,2019-09-03 -City Hotel,1,37,2017,March,22,28,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,71.86,0,0,No-Show,2019-11-03 -Resort Hotel,0,251,2015,November,50,21,2,1,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,27.0,179.0,0,Transient-Party,33.41,0,2,Check-Out,2018-09-02 -Resort Hotel,0,61,2017,May,20,13,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,64.75,0,2,Check-Out,2020-03-03 -City Hotel,0,13,2017,May,23,29,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,60.62,0,0,Check-Out,2020-04-02 -Resort Hotel,0,10,2017,March,17,2,0,2,1,0.0,0,HB,GBR,Direct,Direct,1,0,0,A,A,1,No Deposit,186.0,179.0,0,Transient,118.88,0,2,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,August,34,30,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,103.6,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,March,16,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,118.42,1,0,Check-Out,2020-03-03 -City Hotel,0,29,2016,August,30,15,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,93.95,0,0,Check-Out,2019-05-04 -City Hotel,1,56,2017,May,4,17,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,99.92,0,1,Canceled,2019-11-03 -Resort Hotel,1,94,2017,March,11,24,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient-Party,64.44,0,0,Canceled,2019-11-03 -Resort Hotel,0,9,2017,February,11,16,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,E,0,No Deposit,165.0,179.0,0,Transient,115.09,0,1,Check-Out,2020-04-02 -City Hotel,1,268,2017,August,36,10,2,1,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,121.92,0,0,Canceled,2020-07-03 -Resort Hotel,1,97,2017,July,32,6,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient-Party,209.1,0,0,Canceled,2020-02-01 -City Hotel,1,261,2016,June,33,25,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,67.0,179.0,0,Transient,60.19,0,0,Canceled,2018-12-03 -Resort Hotel,1,46,2016,October,42,30,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,38.44,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2015,October,44,18,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,40.21,0,0,Check-Out,2018-12-03 -City Hotel,1,154,2016,June,26,12,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,92.26,0,0,Canceled,2019-02-01 -Resort Hotel,0,3,2017,May,22,16,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,116.78,0,0,Check-Out,2020-03-03 -Resort Hotel,0,205,2017,August,36,14,2,5,2,2.0,0,HB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,202.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,47,2017,July,31,6,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,245.18,1,1,Check-Out,2020-06-02 -City Hotel,0,234,2017,May,29,6,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.25,0,1,Check-Out,2019-12-04 -Resort Hotel,0,16,2017,May,22,29,1,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,151.44,1,0,Check-Out,2020-01-04 -Resort Hotel,0,13,2015,August,42,18,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,96.0,179.0,0,Contract,61.97,0,2,Check-Out,2017-12-03 -City Hotel,1,210,2017,May,21,21,0,3,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Canceled,2020-03-03 -City Hotel,0,13,2017,June,20,12,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,16.0,188.0,0,Transient,88.38,0,0,Check-Out,2019-12-04 -City Hotel,0,9,2016,September,43,18,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.76,0,0,Check-Out,2019-03-04 -City Hotel,0,3,2015,July,38,18,1,3,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Transient,162.04,0,0,Check-Out,2018-08-03 -Resort Hotel,0,90,2016,April,15,30,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.18,0,1,Check-Out,2019-04-03 -Resort Hotel,1,198,2017,February,25,26,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,270.0,179.0,0,Transient,79.36,0,0,Canceled,2020-03-03 -City Hotel,0,10,2016,June,27,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,118.04,1,0,Check-Out,2019-02-01 -Resort Hotel,0,56,2017,August,24,12,2,5,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,200.46,1,2,Check-Out,2020-05-03 -City Hotel,0,2,2015,July,30,5,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,73.17,0,0,Check-Out,2018-06-02 -Resort Hotel,0,23,2017,February,11,27,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,199.0,179.0,0,Transient-Party,82.42,0,0,Check-Out,2019-11-03 -Resort Hotel,0,41,2016,October,42,5,2,3,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,225.0,179.0,0,Transient,79.92,1,0,Check-Out,2019-06-03 -Resort Hotel,1,53,2016,June,27,4,1,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,70.0,179.0,0,Transient,120.23,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,March,10,29,0,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,88.75,0,0,Canceled,2019-10-04 -City Hotel,0,1,2016,December,29,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,45.0,0,Transient,81.56,1,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,December,13,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,61.0,0,Transient,33.01,0,0,Check-Out,2019-12-04 -City Hotel,0,39,2015,November,36,24,0,4,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,62,Transient-Party,87.38,0,0,Check-Out,2018-08-03 -City Hotel,1,49,2017,March,11,5,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,242.0,179.0,0,Transient,68.27,0,0,Canceled,2019-10-04 -Resort Hotel,0,48,2016,October,44,2,3,2,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,287.0,179.0,0,Transient,32.46,1,0,Check-Out,2019-08-04 -City Hotel,1,349,2017,June,34,31,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,148.33,0,0,Canceled,2020-01-04 -City Hotel,0,87,2016,December,53,24,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,76.57,0,1,Check-Out,2019-10-04 -City Hotel,1,384,2017,August,37,5,2,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.28,0,2,Canceled,2020-04-02 -City Hotel,0,153,2016,October,45,28,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,10.0,179.0,0,Transient,151.68,0,1,Check-Out,2019-09-03 -City Hotel,1,110,2016,January,10,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,76.71,0,0,Canceled,2018-11-02 -Resort Hotel,0,197,2016,May,17,31,1,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,D,1,Refundable,11.0,223.0,0,Transient-Party,98.84,0,0,Check-Out,2020-01-04 -City Hotel,1,52,2017,June,22,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.1,0,0,Canceled,2019-11-03 -City Hotel,0,44,2016,October,43,10,1,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,199.21,0,0,Check-Out,2019-08-04 -City Hotel,0,87,2016,November,50,28,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.66,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,April,10,30,2,1,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,73.97,0,0,Check-Out,2019-04-03 -Resort Hotel,0,20,2016,March,43,27,0,4,1,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,89.76,0,0,Check-Out,2019-06-03 -City Hotel,0,20,2017,March,16,12,0,3,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,131.54,0,0,Check-Out,2020-04-02 -City Hotel,0,14,2017,May,17,10,2,1,1,0.0,0,BB,,Direct,Direct,0,0,0,E,F,2,No Deposit,16.0,179.0,0,Transient,168.39,1,0,Check-Out,2020-02-01 -Resort Hotel,0,89,2015,December,53,10,2,3,2,0.0,0,FB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,63.03,0,0,Check-Out,2018-06-02 -City Hotel,1,82,2017,February,9,17,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,72.12,0,0,Canceled,2019-09-03 -City Hotel,0,4,2016,September,42,27,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.1,0,0,Check-Out,2019-08-04 -City Hotel,0,18,2017,February,9,6,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.4,0,1,Check-Out,2020-02-01 -City Hotel,0,236,2017,July,30,24,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,25.0,179.0,0,Transient-Party,102.17,0,0,Check-Out,2020-05-03 -City Hotel,0,166,2017,January,11,10,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,10.0,179.0,0,Transient,246.92,0,2,Canceled,2019-09-03 -Resort Hotel,0,246,2016,July,43,6,2,5,2,1.0,0,HB,POL,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient-Party,88.02,1,2,Check-Out,2018-05-03 -City Hotel,0,2,2016,May,21,13,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2019-04-03 -Resort Hotel,0,106,2017,March,12,20,0,2,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,I,0,No Deposit,378.0,179.0,0,Transient-Party,74.41,0,0,Check-Out,2020-05-03 -City Hotel,0,2,2016,March,15,10,2,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,B,2,No Deposit,26.0,179.0,0,Transient,76.48,0,0,Check-Out,2018-11-02 -City Hotel,1,49,2016,August,38,5,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,105.07,0,0,Canceled,2018-06-02 -Resort Hotel,0,27,2015,July,48,16,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,217.06,1,2,Check-Out,2018-06-02 -City Hotel,1,165,2016,June,10,24,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,180.92,0,0,Canceled,2019-02-01 -Resort Hotel,1,132,2015,November,35,29,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,314.0,179.0,0,Transient,90.06,0,0,Canceled,2018-11-02 -City Hotel,1,252,2015,July,33,20,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.09,0,0,Canceled,2018-04-02 -City Hotel,0,45,2016,April,53,20,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,92.6,0,0,Check-Out,2019-12-04 -City Hotel,0,87,2017,February,8,6,1,1,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient-Party,92.39,0,2,Check-Out,2020-02-01 -City Hotel,1,43,2016,May,26,30,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,120.16,0,0,Canceled,2019-04-03 -City Hotel,1,18,2016,March,10,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,11.0,45.0,0,Transient,33.19,0,0,Canceled,2019-04-03 -Resort Hotel,0,39,2017,February,10,15,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,17.0,331.0,0,Transient,38.56,0,0,Check-Out,2020-02-01 -City Hotel,0,4,2016,March,16,25,0,3,1,0.0,0,BB,BRA,Corporate,Corporate,1,0,1,A,A,1,No Deposit,11.0,71.0,0,Transient,57.22,1,0,Check-Out,2019-03-04 -City Hotel,0,43,2016,May,22,2,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,65.84,0,1,Check-Out,2019-03-04 -City Hotel,0,252,2016,June,36,22,0,2,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,100.42,0,0,Check-Out,2019-11-03 -Resort Hotel,0,36,2017,July,32,15,0,7,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,220.72,1,2,Check-Out,2020-03-03 -City Hotel,0,9,2016,September,34,2,0,2,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.72,0,2,Check-Out,2019-05-04 -City Hotel,0,269,2016,October,43,9,2,4,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,0,Transient-Party,65.87,0,0,Check-Out,2019-09-03 -Resort Hotel,0,12,2017,March,18,20,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,F,1,No Deposit,15.0,331.0,0,Transient-Party,77.65,0,0,Check-Out,2020-03-03 -City Hotel,1,35,2016,March,10,30,3,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,40,Transient,70.09,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2015,October,50,4,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,38.19,1,0,Check-Out,2019-09-03 -City Hotel,0,43,2016,September,38,16,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,202.04,0,3,Check-Out,2019-07-04 -City Hotel,0,21,2017,June,8,13,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.34,0,2,Check-Out,2020-03-03 -City Hotel,0,62,2016,May,22,31,1,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,216.23,0,2,Check-Out,2019-06-03 -City Hotel,0,2,2016,June,26,2,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,112.55,0,0,Check-Out,2019-02-01 -City Hotel,0,21,2016,June,27,9,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,141.88,0,0,Check-Out,2019-02-01 -City Hotel,1,142,2017,July,26,1,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,160.18,0,0,Canceled,2020-03-03 -Resort Hotel,0,12,2016,November,50,25,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,250.0,331.0,0,Transient,35.36,1,0,Check-Out,2019-12-04 -City Hotel,0,17,2017,March,26,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,95.79,0,3,Check-Out,2020-02-01 -City Hotel,0,59,2017,July,32,18,2,3,2,1.0,0,BB,USA,Offline TA/TO,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,140.48,1,3,Check-Out,2020-06-02 -City Hotel,0,131,2015,November,31,22,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,98.6,0,2,Check-Out,2018-05-03 -City Hotel,0,36,2017,April,14,5,1,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,172.8,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2017,June,27,5,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.38,0,2,Check-Out,2020-07-03 -Resort Hotel,0,36,2016,March,18,31,0,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,224.0,0,Transient,32.07,0,0,Check-Out,2019-03-04 -Resort Hotel,0,34,2015,July,45,21,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,112.87,0,0,Check-Out,2018-09-02 -Resort Hotel,0,15,2015,October,42,6,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,125.08,0,2,Check-Out,2018-07-03 -City Hotel,0,107,2017,April,17,8,0,1,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,24.0,233.0,0,Transient-Party,63.09,0,0,Check-Out,2020-02-01 -City Hotel,0,92,2016,September,35,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,75.45,0,1,Check-Out,2019-04-03 -City Hotel,0,143,2016,August,43,15,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.76,0,2,Check-Out,2019-05-04 -City Hotel,1,159,2016,June,21,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,92.41,0,0,Canceled,2019-10-04 -City Hotel,0,12,2016,September,43,17,0,2,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.15,0,0,Check-Out,2019-08-04 -Resort Hotel,1,270,2017,July,36,27,2,5,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,124.14,1,0,Canceled,2020-02-01 -Resort Hotel,1,50,2017,February,9,23,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient,71.16,0,0,Check-Out,2020-05-03 -City Hotel,0,308,2015,October,44,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,59.29,0,0,Check-Out,2018-07-03 -Resort Hotel,0,34,2017,February,10,18,0,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,191.0,331.0,0,Transient,60.45,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2016,March,10,31,4,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,B,0,No Deposit,378.0,179.0,0,Transient,44.42,0,0,Check-Out,2019-02-01 -Resort Hotel,0,57,2015,November,43,9,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,138.11,1,0,Check-Out,2018-08-03 -City Hotel,1,1,2015,September,40,6,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,61.52,0,0,Canceled,2017-10-03 -Resort Hotel,0,32,2016,December,50,8,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,77.07,1,1,Check-Out,2018-12-03 -City Hotel,0,37,2017,June,17,5,0,2,2,0.0,0,HB,POL,Groups,Corporate,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,70.59,0,0,Check-Out,2020-05-03 -Resort Hotel,1,154,2017,March,14,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,223.0,75,Transient-Party,98.97,0,0,Canceled,2020-02-01 -City Hotel,1,0,2016,March,11,21,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,35.23,0,0,Canceled,2019-06-03 -Resort Hotel,0,37,2015,October,46,11,0,1,2,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,D,0,No Deposit,11.0,246.0,0,Transient-Party,88.12,0,0,Check-Out,2018-09-02 -City Hotel,0,98,2015,September,42,13,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,75,Transient-Party,84.9,0,0,Check-Out,2018-08-03 -City Hotel,0,102,2016,August,34,5,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,90.46,0,0,Check-Out,2019-06-03 -City Hotel,0,21,2017,August,39,31,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,122.17,0,2,Check-Out,2020-07-03 -City Hotel,1,261,2016,August,44,13,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,74.24,0,0,Canceled,2018-08-03 -City Hotel,1,9,2016,October,46,29,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.07,0,0,No-Show,2019-09-03 -City Hotel,1,84,2016,July,31,18,2,5,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,243.65,0,0,Canceled,2019-03-04 -City Hotel,0,31,2015,October,43,13,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,F,0,No Deposit,13.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-08-04 -City Hotel,0,13,2016,August,36,10,0,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,187.69,0,0,Check-Out,2019-06-03 -City Hotel,0,419,2016,August,28,16,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,331.0,0,Transient,117.9,0,2,Check-Out,2019-05-04 -Resort Hotel,0,165,2016,August,38,10,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,G,C,0,Refundable,242.0,179.0,0,Transient,219.52,1,2,Check-Out,2019-07-04 -City Hotel,1,96,2016,September,45,2,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,118.08,0,2,Canceled,2019-04-03 -Resort Hotel,1,12,2016,November,53,24,2,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,191.0,179.0,40,Transient-Party,0.0,0,0,Canceled,2019-12-04 -City Hotel,1,226,2016,November,43,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,64,Transient,117.02,0,0,Canceled,2018-08-03 -City Hotel,1,3,2017,March,10,14,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,0.8,0,0,Canceled,2019-10-04 -City Hotel,1,320,2015,September,45,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,18,Transient,123.25,0,0,Canceled,2018-09-02 -Resort Hotel,0,46,2016,December,52,21,0,4,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,D,0,No Deposit,15.0,179.0,0,Transient,89.45,0,0,Check-Out,2019-12-04 -City Hotel,1,3,2016,January,41,13,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,134.16,0,2,No-Show,2019-02-01 -City Hotel,1,7,2016,June,26,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,91.24,0,0,Canceled,2019-03-04 -Resort Hotel,0,151,2016,March,15,9,0,5,1,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,D,1,No Deposit,14.0,222.0,0,Transient-Party,36.63,0,2,Check-Out,2019-03-04 -City Hotel,0,155,2015,September,42,20,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,31.0,179.0,0,Contract,82.62,0,0,Check-Out,2018-08-03 -Resort Hotel,0,253,2017,March,9,12,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient,118.2,0,2,Check-Out,2020-04-02 -City Hotel,0,84,2016,March,48,21,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,84.0,179.0,38,Transient,83.02,0,0,Check-Out,2019-08-04 -Resort Hotel,0,325,2017,May,18,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,H,0,Refundable,15.0,223.0,0,Transient-Party,63.89,0,0,Check-Out,2020-01-04 -City Hotel,1,248,2016,May,15,27,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.44,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,March,10,14,0,1,2,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,75,Transient-Party,21.78,1,0,Check-Out,2019-02-01 -Resort Hotel,1,48,2017,March,10,22,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,65.25,0,3,Canceled,2020-05-03 -City Hotel,1,339,2017,July,8,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.63,0,1,Canceled,2020-04-02 -Resort Hotel,1,261,2016,March,11,25,1,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,66.79,0,0,Canceled,2019-03-04 -Resort Hotel,0,16,2016,April,28,28,0,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,115.71,0,2,Check-Out,2019-02-01 -City Hotel,0,1,2017,January,10,11,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,82.0,0,Transient,79.83,0,2,Check-Out,2020-01-04 -Resort Hotel,0,11,2016,August,37,10,2,2,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,229.87,1,2,Check-Out,2019-06-03 -City Hotel,0,138,2016,July,35,5,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.46,0,1,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,June,25,9,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,17.0,179.0,0,Transient-Party,110.29,0,0,Check-Out,2019-04-03 -Resort Hotel,1,328,2017,June,25,15,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,E,0,No Deposit,363.0,179.0,0,Transient,43.96,0,0,Canceled,2020-04-02 -Resort Hotel,1,313,2017,July,37,24,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,190.45,0,0,Canceled,2020-06-02 -Resort Hotel,0,236,2015,October,42,3,1,3,2,0.0,0,BB,PRT,Direct,TA/TO,1,0,0,A,A,1,No Deposit,143.0,179.0,0,Transient,35.65,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2017,March,10,28,0,1,1,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,K,0,No Deposit,14.0,331.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,1,96,2016,June,27,16,2,1,2,1.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,102.54,0,0,Canceled,2020-05-03 -City Hotel,1,14,2017,March,10,10,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,121.64,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,March,9,15,1,0,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,B,1,No Deposit,11.0,46.0,0,Transient,0.0,0,0,Check-Out,2019-04-03 -Resort Hotel,0,92,2017,March,22,31,2,3,2,2.0,0,HB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient-Party,123.65,1,3,Check-Out,2020-01-04 -Resort Hotel,0,1,2015,July,31,6,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,208.24,0,0,Check-Out,2018-05-03 -City Hotel,0,30,2015,August,36,12,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,121.16,0,1,Check-Out,2018-06-02 -City Hotel,1,1,2017,June,27,16,0,1,1,0.0,0,BB,BEL,Aviation,Corporate,1,0,0,D,D,0,No Deposit,13.0,153.0,0,Transient,237.78,0,0,Canceled,2020-07-03 -City Hotel,0,156,2016,July,29,18,2,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,98.37,0,3,Canceled,2019-04-03 -City Hotel,0,36,2017,May,22,17,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,145.53,0,0,Check-Out,2020-04-02 -City Hotel,0,134,2016,September,35,31,0,5,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,106.16,0,3,Check-Out,2019-04-03 -Resort Hotel,0,1,2016,November,53,26,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,61.22,0,0,Check-Out,2018-12-03 -City Hotel,1,32,2016,July,33,5,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,150.26,0,1,Canceled,2019-06-03 -Resort Hotel,1,46,2016,August,37,9,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,152.28,0,0,Canceled,2019-08-04 -City Hotel,1,325,2015,July,33,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.49,0,0,Canceled,2017-12-03 -City Hotel,0,92,2016,May,30,27,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Contract,124.38,0,2,Check-Out,2019-04-03 -City Hotel,1,70,2017,May,22,5,2,5,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,250.01,0,0,Canceled,2019-11-03 -Resort Hotel,0,185,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,40.53,0,0,Check-Out,2019-03-04 -Resort Hotel,0,56,2017,June,26,30,2,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,F,2,No Deposit,16.0,179.0,0,Transient,131.74,0,0,Check-Out,2020-03-03 -City Hotel,1,0,2015,August,38,5,2,2,3,0.0,0,BB,CHN,Undefined,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,110.77,0,0,Canceled,2018-06-02 -City Hotel,0,29,2017,April,9,16,0,1,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,73.74,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2015,December,53,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,141.07,1,0,Check-Out,2019-01-03 -Resort Hotel,0,10,2016,January,4,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,0,No Deposit,14.0,179.0,0,Transient,120.69,0,0,Check-Out,2018-11-02 -City Hotel,0,130,2017,June,30,31,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,97.87,0,1,Check-Out,2020-07-03 -Resort Hotel,0,2,2017,June,26,25,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -Resort Hotel,1,110,2017,January,10,21,2,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,241.0,179.0,0,Transient,166.95,0,0,Canceled,2019-11-03 -City Hotel,0,269,2017,July,31,18,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,9.0,179.0,0,Transient,131.82,0,1,Check-Out,2020-05-03 -City Hotel,0,10,2016,December,51,31,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.08,0,0,Check-Out,2019-11-03 -City Hotel,0,159,2015,July,25,5,1,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,81.85,0,2,Check-Out,2018-06-02 -City Hotel,0,52,2017,May,21,21,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,137.59,0,1,Check-Out,2020-04-02 -City Hotel,0,7,2017,May,21,30,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,77.08,0,1,Check-Out,2020-04-02 -Resort Hotel,0,101,2017,May,27,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,113.23,0,1,Check-Out,2020-05-03 -City Hotel,0,18,2016,November,25,19,0,2,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,114.38,0,0,Check-Out,2019-06-03 -City Hotel,0,35,2017,May,20,18,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.82,0,1,Check-Out,2020-04-02 -Resort Hotel,0,198,2016,October,42,31,0,4,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,14.0,223.0,0,Transient-Party,95.03,0,0,Check-Out,2019-05-04 -Resort Hotel,1,11,2015,August,33,5,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.64,0,0,Canceled,2018-10-03 -City Hotel,1,34,2016,March,16,5,1,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,117.69,0,0,Canceled,2018-11-02 -City Hotel,0,4,2016,December,49,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.35,0,0,Check-Out,2019-11-03 -City Hotel,1,100,2016,January,5,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,66,Transient,37.2,0,0,Canceled,2018-11-02 -City Hotel,0,3,2015,October,44,22,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.49,0,2,Check-Out,2018-08-03 -City Hotel,0,0,2016,September,36,9,0,1,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,D,0,No Deposit,173.0,179.0,0,Transient,130.03,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,May,22,26,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,0,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,March,10,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,E,1,No Deposit,246.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-12-03 -City Hotel,0,55,2016,April,16,28,0,1,2,1.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,94.85,0,2,Check-Out,2019-11-03 -City Hotel,0,42,2017,July,20,8,2,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,G,A,0,No Deposit,15.0,179.0,0,Transient-Party,131.17,0,0,Check-Out,2020-06-02 -City Hotel,1,65,2017,April,21,26,2,6,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,162.98,0,0,Canceled,2020-01-04 -City Hotel,1,168,2017,June,25,30,2,5,3,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,66.0,179.0,0,Transient,110.6,0,0,Canceled,2019-12-04 -City Hotel,0,434,2016,October,43,28,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,81.84,0,2,Check-Out,2019-12-04 -City Hotel,0,94,2017,December,53,28,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,235.0,179.0,0,Transient,143.41,0,2,Check-Out,2019-11-03 -Resort Hotel,0,185,2017,June,27,23,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,1,0,0,G,G,1,No Deposit,378.0,179.0,0,Transient-Party,75.95,1,1,Check-Out,2020-05-03 -Resort Hotel,1,107,2016,March,15,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,D,0,Non Refund,25.0,179.0,0,Transient,60.22,0,0,Canceled,2018-12-03 -City Hotel,0,19,2017,December,4,28,1,1,1,0.0,0,BB,POL,Groups,TA/TO,0,0,0,D,D,1,No Deposit,43.0,179.0,0,Transient-Party,71.02,0,0,Check-Out,2019-11-03 -Resort Hotel,1,115,2017,June,33,16,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.88,0,0,Canceled,2020-04-02 -Resort Hotel,0,170,2017,March,20,31,1,2,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,A,0,Refundable,10.0,222.0,0,Transient-Party,73.66,0,0,Check-Out,2020-03-03 -City Hotel,1,22,2016,October,28,30,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,142.33,0,0,Canceled,2019-06-03 -City Hotel,0,62,2015,September,40,27,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,88.0,179.0,0,Transient-Party,155.63,0,0,Check-Out,2018-08-03 -City Hotel,1,64,2016,June,27,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,88.57,0,0,Canceled,2018-12-03 -City Hotel,1,43,2017,March,17,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,84.5,0,0,Canceled,2019-12-04 -Resort Hotel,0,209,2016,May,23,31,1,1,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,224.0,0,Transient,62.27,0,0,Check-Out,2019-06-03 -City Hotel,1,35,2017,May,26,24,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.12,0,0,Canceled,2020-02-01 -Resort Hotel,0,8,2016,March,10,25,1,1,2,0.0,0,FB,ESP,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,69.59,0,1,Check-Out,2019-02-01 -City Hotel,0,17,2017,October,37,21,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,133.75,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2015,July,34,4,0,1,1,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,16.0,45.0,0,Transient-Party,63.22,0,1,Check-Out,2018-06-02 -City Hotel,0,97,2016,December,51,24,0,2,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,282.0,179.0,0,Transient,67.73,0,0,Check-Out,2018-12-03 -Resort Hotel,0,335,2017,July,33,14,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,165.92,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,January,12,6,0,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,62.45,0,0,Check-Out,2018-11-02 -City Hotel,1,91,2016,June,10,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,78.58,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,November,49,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,16.0,251.0,0,Transient,35.96,0,0,Check-Out,2019-11-03 -City Hotel,0,406,2016,May,21,5,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,141.64,0,0,Check-Out,2019-06-03 -City Hotel,0,271,2017,September,35,24,2,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,125.41,0,0,Check-Out,2019-07-04 -City Hotel,1,152,2016,February,11,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,68.53,0,0,Canceled,2018-10-03 -City Hotel,1,166,2016,November,15,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,F,A,0,Non Refund,11.0,179.0,0,Transient,79.21,0,0,Canceled,2019-07-04 -Resort Hotel,1,0,2016,April,16,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,62.76,0,0,Canceled,2019-03-04 -City Hotel,1,85,2017,February,11,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,160.0,179.0,0,Transient,74.89,0,0,Canceled,2019-10-04 -Resort Hotel,0,174,2017,August,32,19,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,248.36,1,3,Check-Out,2020-06-02 -City Hotel,0,2,2017,February,11,10,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,73.53,0,1,Canceled,2020-02-01 -Resort Hotel,1,103,2017,January,3,2,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,321.0,179.0,0,Transient,60.55,0,0,Canceled,2019-09-03 -Resort Hotel,0,52,2016,August,32,19,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,193.61,0,1,Check-Out,2019-06-03 -Resort Hotel,1,186,2016,December,53,31,2,3,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,85.45,0,0,Canceled,2018-11-02 -City Hotel,1,397,2016,August,38,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,192.86,0,0,Canceled,2019-09-03 -City Hotel,0,211,2016,July,21,2,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,A,A,1,No Deposit,10.0,179.0,0,Group,106.7,0,1,Check-Out,2020-03-03 -Resort Hotel,0,52,2015,January,50,24,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient,42.31,0,0,Check-Out,2018-11-02 -City Hotel,1,98,2016,September,42,6,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,1,0,A,A,1,Non Refund,9.0,179.0,0,Transient-Party,128.36,0,0,Canceled,2019-07-04 -Resort Hotel,0,2,2016,October,51,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient,77.1,0,0,Check-Out,2019-08-04 -City Hotel,0,43,2016,June,19,9,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,72.62,0,0,Check-Out,2019-03-04 -Resort Hotel,1,154,2016,June,49,28,2,1,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,64.22,0,0,Canceled,2019-03-04 -Resort Hotel,1,121,2017,June,24,5,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,1,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,147.17,0,1,Canceled,2020-03-03 -City Hotel,1,165,2015,June,26,22,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,40,Transient,62.6,0,0,Canceled,2018-12-03 -City Hotel,0,43,2016,April,19,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,82.0,179.0,0,Transient,134.49,0,0,Check-Out,2019-02-01 -City Hotel,1,295,2016,July,31,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.38,0,2,Canceled,2019-05-04 -City Hotel,1,86,2016,December,52,13,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,98.94,0,0,Canceled,2019-05-04 -City Hotel,0,35,2015,October,43,20,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,149.23,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2016,May,14,14,0,1,3,0.0,0,SC,BRA,Corporate,Corporate,0,0,0,P,P,0,No Deposit,13.0,232.0,75,Transient,4.2,0,0,Canceled,2019-03-04 -Resort Hotel,0,111,2017,May,20,21,4,7,2,0.0,0,HB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,118.95,1,1,Check-Out,2020-03-03 -City Hotel,0,3,2015,December,50,21,0,2,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,88.41,0,0,Check-Out,2018-11-02 -City Hotel,1,47,2016,September,36,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,150.11,0,1,Canceled,2019-09-03 -City Hotel,0,37,2016,October,46,28,1,3,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.48,0,1,Check-Out,2019-10-04 -Resort Hotel,0,214,2016,October,44,22,2,5,2,0.0,0,FB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,326.0,179.0,0,Transient-Party,42.42,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2016,October,51,27,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,84.37,0,1,Check-Out,2019-08-04 -City Hotel,0,22,2017,March,11,30,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,20.0,179.0,0,Transient-Party,73.72,0,1,Check-Out,2019-11-03 -Resort Hotel,0,272,2015,August,36,31,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,236.0,179.0,0,Transient,83.18,0,2,Check-Out,2018-06-02 -Resort Hotel,1,273,2016,April,22,31,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,13.0,221.0,0,Transient,68.56,0,0,Canceled,2019-03-04 -Resort Hotel,0,19,2017,April,8,31,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,48.08,0,0,Check-Out,2020-03-03 -Resort Hotel,1,155,2016,March,17,31,2,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,221.0,0,Transient,80.15,0,0,Canceled,2019-02-01 -Resort Hotel,0,4,2016,August,27,9,3,5,2,0.0,0,BB,,Direct,Direct,1,0,0,D,E,0,No Deposit,18.0,179.0,0,Transient,71.33,0,0,Check-Out,2019-06-03 -Resort Hotel,0,26,2017,March,19,21,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient-Party,47.36,0,0,Check-Out,2020-03-03 -Resort Hotel,1,109,2017,March,16,31,1,5,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,2,No Deposit,14.0,216.0,0,Transient-Party,74.99,0,0,Canceled,2020-02-01 -City Hotel,0,297,2017,February,32,15,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,275.0,179.0,0,Transient-Party,204.85,0,1,Canceled,2020-06-02 -City Hotel,1,231,2016,May,44,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.57,0,0,Canceled,2019-06-03 -Resort Hotel,1,297,2017,August,38,21,3,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,139.71,0,0,Canceled,2020-03-03 -Resort Hotel,0,46,2016,March,17,7,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,36.92,0,0,Check-Out,2019-02-01 -City Hotel,0,10,2017,June,31,2,1,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,95.84,0,1,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,October,44,6,1,1,2,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,89.94,0,0,Check-Out,2019-08-04 -City Hotel,0,106,2017,February,11,10,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Transient-Party,79.56,0,0,Check-Out,2019-10-04 -City Hotel,1,104,2017,July,33,16,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,121.36,0,0,Canceled,2020-06-02 -City Hotel,0,99,2015,December,45,26,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,77.12,0,2,Check-Out,2018-08-03 -City Hotel,1,99,2017,May,27,18,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,215.64,0,0,Canceled,2020-04-02 -Resort Hotel,0,188,2016,September,35,9,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,80.05,0,0,Check-Out,2019-07-04 -Resort Hotel,0,73,2016,March,17,21,2,5,2,0.0,0,HB,AUT,Offline TA/TO,Corporate,1,0,1,E,I,1,No Deposit,378.0,179.0,75,Transient-Party,74.22,1,3,Check-Out,2019-02-01 -City Hotel,0,34,2016,April,19,22,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,16.0,194.0,0,Transient,71.24,0,0,Check-Out,2019-04-03 -City Hotel,0,16,2017,March,17,5,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,118.21,0,3,Check-Out,2020-02-01 -Resort Hotel,0,1,2016,March,11,27,0,4,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,G,0,No Deposit,17.0,179.0,0,Transient,87.99,0,0,Check-Out,2019-03-04 -City Hotel,1,444,2017,September,36,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,65.32,0,0,Canceled,2018-08-03 -City Hotel,0,1,2017,July,26,13,0,1,2,0.0,0,BB,,Complementary,Direct,0,0,0,F,D,0,No Deposit,13.0,179.0,0,Transient,136.75,1,0,Check-Out,2020-06-02 -Resort Hotel,0,109,2017,July,27,28,2,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,123.99,0,1,Check-Out,2020-03-03 -City Hotel,0,10,2016,June,25,9,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,91.07,0,2,Check-Out,2019-03-04 -City Hotel,1,5,2016,December,53,7,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.17,0,1,Canceled,2019-09-03 -Resort Hotel,0,126,2017,May,24,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,E,1,No Deposit,240.0,179.0,0,Transient-Party,64.79,1,1,Check-Out,2020-03-03 -City Hotel,1,113,2016,May,20,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,60.73,0,2,Canceled,2019-03-04 -City Hotel,0,92,2017,August,31,18,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,208.42,0,1,Check-Out,2020-04-02 -City Hotel,0,109,2016,June,14,20,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient-Party,74.92,0,0,Check-Out,2018-12-03 -City Hotel,0,153,2017,June,26,19,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.0,0,0,Check-Out,2020-05-03 -City Hotel,1,43,2017,August,26,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.85,0,1,Canceled,2020-02-01 -Resort Hotel,0,1,2017,April,15,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,16.0,179.0,0,Transient-Party,210.02,0,0,Check-Out,2020-03-03 -Resort Hotel,0,50,2016,August,37,5,2,5,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-06-03 -City Hotel,0,3,2016,July,28,6,1,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,101.55,0,0,Check-Out,2019-02-01 -Resort Hotel,0,157,2016,May,21,4,0,3,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient,72.89,0,0,Check-Out,2019-03-04 -City Hotel,1,92,2016,October,43,21,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,84.24,0,0,Canceled,2018-08-03 -City Hotel,1,41,2017,April,22,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,1,Non Refund,13.0,179.0,0,Transient,63.28,0,1,Canceled,2020-03-03 -City Hotel,0,48,2015,December,50,6,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.45,0,2,Check-Out,2019-10-04 -Resort Hotel,0,13,2016,March,9,5,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,322.0,179.0,0,Transient-Party,79.09,0,0,Check-Out,2019-03-04 -Resort Hotel,0,229,2016,March,10,27,2,2,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,70.62,1,0,Check-Out,2019-02-01 -Resort Hotel,0,280,2017,July,34,18,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,108.43,0,1,Check-Out,2020-06-02 -City Hotel,0,1,2016,December,51,18,1,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,D,F,0,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -City Hotel,0,153,2016,July,37,2,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,103.29,0,0,Check-Out,2020-06-02 -City Hotel,0,57,2017,July,31,27,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,113.78,0,0,Check-Out,2020-03-03 -Resort Hotel,0,53,2016,September,43,6,2,1,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient,97.79,0,2,Check-Out,2019-07-04 -Resort Hotel,1,191,2017,July,27,21,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,158.54,0,2,Canceled,2020-05-03 -City Hotel,0,86,2017,March,17,28,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -City Hotel,1,197,2016,June,25,2,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,129.0,179.0,0,Transient,124.0,0,0,Canceled,2019-03-04 -Resort Hotel,1,4,2016,August,10,28,2,1,2,0.0,0,BB,PRT,Online TA,Direct,0,1,0,A,D,0,No Deposit,243.0,179.0,0,Transient,149.0,0,0,Canceled,2018-11-02 -City Hotel,0,85,2016,April,19,10,2,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,97.64,0,2,Check-Out,2019-02-01 -Resort Hotel,0,45,2016,November,49,27,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient,33.74,0,0,Check-Out,2018-09-02 -City Hotel,1,58,2016,January,9,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,62,Transient,89.64,0,0,Canceled,2018-11-02 -Resort Hotel,0,9,2015,October,46,31,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,43.66,1,2,Check-Out,2018-08-03 -City Hotel,1,145,2016,June,26,8,2,10,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient-Party,83.67,0,0,Canceled,2019-01-03 -City Hotel,0,37,2017,July,31,15,2,1,2,0.0,0,BB,ITA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,121.36,0,1,Check-Out,2020-06-02 -City Hotel,0,4,2016,March,15,2,1,0,3,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.13,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,August,32,13,0,6,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,3,No Deposit,247.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,1,94,2015,August,38,29,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.84,0,1,Canceled,2018-05-03 -City Hotel,0,270,2016,September,37,24,0,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,99.0,179.0,0,Transient,42.01,0,0,Check-Out,2019-08-04 -Resort Hotel,1,45,2015,December,52,9,2,5,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-08-03 -City Hotel,1,202,2016,February,9,2,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,119.12,0,0,Canceled,2018-10-03 -City Hotel,0,87,2017,May,10,5,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,69.18,0,1,Check-Out,2020-03-03 -City Hotel,0,36,2016,August,35,25,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,199.15,0,1,Check-Out,2019-03-04 -City Hotel,1,5,2016,March,15,5,2,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,74.11,0,0,No-Show,2019-02-01 -City Hotel,1,19,2017,May,22,19,0,1,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,129.19,0,0,Canceled,2020-03-03 -Resort Hotel,0,43,2016,March,17,10,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,73.47,0,0,Check-Out,2019-02-01 -Resort Hotel,0,53,2016,April,17,26,0,3,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,131.29,0,0,Check-Out,2019-03-04 -City Hotel,1,60,2016,November,50,31,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.42,0,0,Canceled,2019-10-04 -Resort Hotel,1,259,2015,August,34,27,2,5,2,0.0,0,FB,ESP,Groups,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,84.77,0,0,Canceled,2018-06-02 -Resort Hotel,1,306,2017,August,36,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,184.81,0,1,Canceled,2020-04-02 -Resort Hotel,0,239,2016,March,43,24,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,122.32,0,1,Check-Out,2019-06-03 -City Hotel,0,28,2016,October,43,20,1,3,1,0.0,0,BB,AUT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,263.0,0,Transient,111.05,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2017,January,3,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,9.0,179.0,0,Transient,69.67,0,1,No-Show,2019-12-04 -City Hotel,0,3,2016,October,43,20,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,222.39,0,1,Check-Out,2019-08-04 -Resort Hotel,0,33,2015,December,50,6,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,G,0,No Deposit,44.0,179.0,0,Transient,42.97,0,0,Check-Out,2018-09-02 -Resort Hotel,0,12,2015,December,50,9,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,35.36,0,2,Check-Out,2018-08-03 -City Hotel,0,0,2016,June,20,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,99.3,0,2,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,March,12,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,F,1,No Deposit,14.0,45.0,0,Transient,0.0,1,0,Check-Out,2019-11-03 -Resort Hotel,1,2,2017,July,28,12,2,7,3,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,100.51,0,0,Canceled,2020-04-02 -City Hotel,0,0,2016,September,43,20,0,1,1,0.0,0,BB,USA,Direct,Direct,1,0,0,C,I,1,No Deposit,11.0,179.0,0,Transient,0.03,0,0,Check-Out,2019-08-04 -Resort Hotel,0,39,2016,September,41,24,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,151.85,1,3,Check-Out,2019-08-04 -Resort Hotel,0,37,2016,May,21,30,1,3,1,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,30.71,0,0,Check-Out,2019-05-04 -Resort Hotel,1,139,2017,July,27,28,3,6,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,160.32,0,2,Canceled,2019-04-03 -City Hotel,0,27,2016,January,3,16,1,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.19,0,0,Check-Out,2018-12-03 -Resort Hotel,0,38,2017,April,17,10,1,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,69.23,0,0,Check-Out,2020-04-02 -City Hotel,0,9,2017,February,11,11,1,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,246.0,0,Transient,0.0,0,1,Check-Out,2020-04-02 -City Hotel,1,96,2016,January,17,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,21.0,179.0,44,Transient,70.81,0,0,Canceled,2018-12-03 -City Hotel,0,331,2017,May,20,26,2,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,229.41,0,0,Check-Out,2020-03-03 -City Hotel,1,34,2016,June,35,22,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,85.22,0,0,Canceled,2019-03-04 -Resort Hotel,0,47,2015,July,32,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,82.32,0,0,Check-Out,2018-06-02 -Resort Hotel,0,43,2015,October,44,21,1,5,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient-Party,73.38,0,0,Check-Out,2018-09-02 -City Hotel,0,187,2016,May,22,28,0,10,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,1,Non Refund,11.0,179.0,0,Transient,45.03,0,0,Check-Out,2019-04-03 -Resort Hotel,0,28,2016,August,34,13,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,178.82,0,0,Check-Out,2019-07-04 -City Hotel,1,269,2016,April,16,9,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,103.69,0,0,Canceled,2019-01-03 -City Hotel,0,28,2016,June,10,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,82.4,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,June,22,16,1,0,1,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,C,1,No Deposit,15.0,179.0,0,Transient,0.0,0,3,Check-Out,2020-01-04 -City Hotel,0,268,2016,May,23,24,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,211.49,0,0,Check-Out,2019-06-03 -Resort Hotel,0,34,2015,September,50,3,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,239.0,179.0,0,Transient,40.8,0,1,Check-Out,2018-12-03 -Resort Hotel,1,84,2016,July,36,28,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,112.17,0,1,Canceled,2019-01-03 -City Hotel,1,407,2017,May,21,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,60.71,0,0,Canceled,2019-12-04 -Resort Hotel,0,12,2016,July,9,6,2,3,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,16.0,191.0,0,Transient,62.73,0,0,Check-Out,2019-05-04 -City Hotel,0,371,2015,October,43,20,2,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,68.67,0,0,Check-Out,2018-06-02 -Resort Hotel,0,12,2015,July,30,28,0,1,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,104.33,1,0,Check-Out,2019-01-03 -City Hotel,0,34,2017,February,17,15,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.13,0,1,Check-Out,2020-02-01 -Resort Hotel,0,32,2016,May,26,9,0,5,2,1.0,0,HB,POL,Direct,Direct,0,0,0,A,F,2,No Deposit,15.0,179.0,0,Transient,149.38,0,0,Check-Out,2019-07-04 -City Hotel,1,0,2017,January,9,13,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,L,K,0,No Deposit,15.0,70.0,0,Transient,91.79,0,0,Canceled,2019-11-03 -Resort Hotel,1,250,2015,July,32,24,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.57,0,0,Canceled,2018-07-03 -City Hotel,0,114,2017,August,33,16,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,117.49,0,2,Check-Out,2020-05-03 -City Hotel,0,296,2016,September,38,27,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,208.85,0,0,Canceled,2019-05-04 -City Hotel,0,20,2016,December,10,20,0,2,2,0.0,0,BB,NOR,Online TA,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,131.98,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2017,March,9,10,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.41,0,1,Check-Out,2020-04-02 -City Hotel,0,45,2016,October,40,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,80.0,179.0,0,Contract,73.43,0,2,Check-Out,2019-11-03 -Resort Hotel,0,163,2016,March,34,25,0,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,252.0,179.0,0,Transient,78.36,0,0,Check-Out,2018-12-03 -Resort Hotel,0,115,2016,July,31,29,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,117.81,0,1,Check-Out,2019-04-03 -City Hotel,0,0,2017,May,25,12,0,1,1,0.0,0,BB,,Aviation,Corporate,1,0,0,D,B,1,No Deposit,14.0,181.0,0,Transient,247.18,0,0,Check-Out,2020-02-01 -City Hotel,0,229,2016,June,25,14,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.27,0,2,Check-Out,2019-07-04 -Resort Hotel,0,3,2015,September,51,15,0,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,248.0,179.0,0,Group,44.63,0,0,Check-Out,2018-08-03 -City Hotel,0,46,2015,December,51,25,1,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,B,B,2,No Deposit,16.0,179.0,0,Transient-Party,103.31,0,0,Check-Out,2019-10-04 -City Hotel,1,0,2015,August,32,12,0,1,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Group,50.67,0,0,Canceled,2018-07-03 -City Hotel,1,151,2017,June,27,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,141.44,0,0,Canceled,2020-04-02 -Resort Hotel,0,9,2015,September,33,18,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,118.13,0,0,Check-Out,2018-09-02 -City Hotel,0,19,2015,July,31,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.67,0,0,Check-Out,2018-05-03 -City Hotel,1,242,2016,October,44,25,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,2,Canceled,2019-10-04 -City Hotel,1,149,2017,May,22,16,2,7,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,G,F,0,No Deposit,12.0,179.0,0,Transient,162.54,0,1,Check-Out,2020-03-03 -City Hotel,1,1,2015,June,35,17,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.26,0,0,Canceled,2019-05-04 -Resort Hotel,0,1,2015,October,42,9,0,3,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,85.37,0,0,Check-Out,2018-08-03 -Resort Hotel,0,142,2016,June,28,30,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,121.6,0,1,Check-Out,2019-03-04 -City Hotel,1,20,2015,October,44,28,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,135.55,0,0,Canceled,2018-08-03 -Resort Hotel,0,313,2017,March,24,31,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,96.75,0,0,Check-Out,2020-03-03 -City Hotel,0,91,2017,April,16,9,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,9.0,179.0,0,Transient,122.53,0,1,Check-Out,2020-05-03 -City Hotel,1,359,2017,May,24,17,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,40.0,179.0,0,Transient,131.17,0,0,Canceled,2020-04-02 -City Hotel,0,12,2017,March,9,10,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,67.56,1,0,Check-Out,2019-09-03 -City Hotel,0,105,2017,July,25,4,2,2,1,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,130.75,0,1,Check-Out,2020-06-02 -Resort Hotel,1,39,2017,May,24,22,2,1,3,2.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,10.0,179.0,0,Transient-Party,163.66,0,0,Canceled,2020-01-04 -Resort Hotel,0,116,2016,November,50,12,0,1,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,99.0,179.0,0,Transient-Party,59.74,0,0,Check-Out,2018-09-02 -Resort Hotel,1,94,2016,July,26,24,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,128.0,179.0,0,Transient,93.62,0,1,No-Show,2019-03-04 -City Hotel,0,5,2016,March,22,8,1,1,1,0.0,0,BB,USA,Corporate,Direct,1,0,0,A,B,0,No Deposit,48.0,78.0,0,Transient,76.54,0,0,Check-Out,2019-02-01 -City Hotel,0,59,2015,November,53,4,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,L,0,No Deposit,12.0,179.0,0,Transient,63.02,0,0,Check-Out,2018-11-02 -Resort Hotel,0,317,2015,October,42,21,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,99.69,1,1,Check-Out,2018-08-03 -City Hotel,1,3,2017,June,27,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.3,0,1,Canceled,2019-09-03 -Resort Hotel,1,11,2016,January,35,18,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,64.62,0,1,No-Show,2018-12-03 -City Hotel,1,1,2017,May,9,31,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,102.36,1,0,Canceled,2019-10-04 -City Hotel,1,290,2015,October,45,13,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,7.0,179.0,0,Transient,155.8,0,0,Canceled,2018-11-02 -Resort Hotel,1,42,2017,May,22,28,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,240.0,179.0,0,Transient,113.13,0,1,Canceled,2020-04-02 -City Hotel,1,0,2016,September,44,10,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.95,0,0,Canceled,2018-08-03 -Resort Hotel,1,316,2017,July,30,6,4,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,251.84,0,0,Canceled,2019-05-04 -Resort Hotel,0,43,2015,December,5,10,0,1,2,0.0,0,BB,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,37.83,0,0,Check-Out,2018-12-03 -City Hotel,0,10,2017,September,36,10,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,123.26,0,1,Check-Out,2020-06-02 -City Hotel,1,91,2015,September,44,21,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,26.22,0,0,Canceled,2018-07-03 -Resort Hotel,1,51,2016,July,33,28,1,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,119.67,0,0,Canceled,2019-06-03 -Resort Hotel,0,0,2017,June,29,20,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,H,2,No Deposit,17.0,242.0,0,Transient,61.44,0,2,Check-Out,2019-12-04 -City Hotel,1,42,2016,July,23,5,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,107.49,0,0,Canceled,2019-07-04 -City Hotel,1,37,2016,June,27,3,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.4,0,2,Canceled,2019-04-03 -City Hotel,0,2,2015,July,35,5,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,159.95,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,June,23,13,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,102.99,1,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,February,10,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,69.99,0,0,Check-Out,2019-12-04 -City Hotel,1,269,2016,September,43,9,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,108.92,0,1,Canceled,2019-03-04 -City Hotel,0,16,2015,September,35,3,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,51,2016,December,53,30,1,3,1,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,242.0,179.0,0,Transient,76.06,0,0,Check-Out,2019-11-03 -City Hotel,1,249,2015,October,35,28,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,41,Transient,97.26,0,0,Canceled,2017-12-03 -City Hotel,1,259,2017,July,33,12,2,1,2,2.0,0,HB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,160.88,0,2,Canceled,2020-02-01 -City Hotel,0,253,2015,July,37,20,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,80.07,0,0,Check-Out,2018-05-03 -City Hotel,1,58,2016,April,14,23,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,137.0,179.0,0,Transient,37.46,0,0,Canceled,2019-01-03 -City Hotel,1,106,2016,June,27,1,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,37,Transient,70.62,0,0,Canceled,2018-11-02 -City Hotel,0,2,2017,August,31,11,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,10.0,179.0,0,Transient,204.25,0,0,Check-Out,2020-03-03 -City Hotel,0,55,2015,August,39,15,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Contract,157.44,0,0,Check-Out,2018-08-03 -City Hotel,0,131,2017,November,21,1,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient,56.48,0,0,Check-Out,2019-10-04 -City Hotel,0,254,2015,July,31,27,0,2,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.8,0,1,Check-Out,2019-05-04 -Resort Hotel,0,304,2015,July,31,13,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.17,0,0,Check-Out,2018-01-03 -City Hotel,0,12,2016,March,16,22,1,4,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.58,0,2,Check-Out,2019-02-01 -City Hotel,1,0,2015,October,47,22,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,59.27,0,0,Canceled,2018-07-03 -Resort Hotel,0,1,2016,March,22,27,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,1,0,0,H,I,0,No Deposit,242.0,179.0,0,Transient,2.01,0,1,Check-Out,2019-07-04 -Resort Hotel,0,15,2015,October,36,6,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,61.49,1,2,Check-Out,2018-06-02 -City Hotel,1,369,2017,May,21,26,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,76.95,0,0,Canceled,2018-08-03 -Resort Hotel,0,101,2016,June,31,6,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,146.0,179.0,0,Transient,60.73,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,September,36,20,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,I,0,No Deposit,11.0,259.0,0,Transient,0.0,1,0,Check-Out,2019-06-03 -City Hotel,0,10,2017,July,38,26,1,3,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,133.47,0,0,Check-Out,2020-06-02 -City Hotel,1,15,2016,May,23,20,2,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,165.53,0,2,Canceled,2019-01-03 -City Hotel,0,6,2016,October,44,25,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,160.88,0,3,Check-Out,2019-08-04 -Resort Hotel,0,44,2017,July,23,28,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,139.93,0,2,Check-Out,2020-04-02 -City Hotel,1,200,2017,May,21,28,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,252.0,0,2,Canceled,2019-11-03 -City Hotel,0,0,2016,August,36,6,1,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,A,2,No Deposit,15.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -City Hotel,1,306,2016,October,44,24,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,71.62,0,0,Canceled,2018-08-03 -City Hotel,0,0,2017,February,3,5,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,61.31,0,1,Check-Out,2019-10-04 -City Hotel,1,101,2016,October,50,27,2,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.65,0,1,Canceled,2019-08-04 -City Hotel,0,53,2015,December,52,9,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,60.7,0,0,Check-Out,2018-08-03 -Resort Hotel,0,97,2016,March,21,15,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,32.0,179.0,75,Transient-Party,74.96,0,0,Check-Out,2019-03-04 -City Hotel,0,31,2016,November,42,6,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.72,0,3,Check-Out,2019-09-03 -Resort Hotel,0,112,2016,December,42,10,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,101.69,0,2,Check-Out,2019-11-03 -City Hotel,1,249,2017,June,26,17,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,172.0,179.0,0,Contract,105.62,0,0,Canceled,2019-12-04 -Resort Hotel,0,15,2016,October,43,12,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,127.89,0,0,Check-Out,2019-09-03 -Resort Hotel,0,14,2015,November,44,2,0,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient-Party,42.84,0,0,Check-Out,2018-09-02 -Resort Hotel,0,169,2016,July,32,25,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,203.8,0,3,Check-Out,2019-05-04 -City Hotel,1,20,2016,November,47,8,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,249.0,0,Transient,2.35,0,0,Canceled,2019-09-03 -City Hotel,0,40,2016,November,50,31,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,228.32,0,3,Check-Out,2019-06-03 -Resort Hotel,0,157,2016,March,12,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,221.0,0,Transient,40.36,0,0,Check-Out,2019-02-01 -City Hotel,1,4,2016,October,42,28,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.06,0,2,Canceled,2019-09-03 -Resort Hotel,0,9,2016,October,43,16,4,3,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,D,L,0,No Deposit,9.0,179.0,0,Group,188.79,0,3,No-Show,2019-09-03 -City Hotel,1,6,2016,October,44,14,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.1,0,2,No-Show,2019-09-03 -City Hotel,1,185,2017,December,44,30,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.62,0,0,No-Show,2020-03-03 -City Hotel,1,9,2016,August,37,19,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,110.63,0,2,No-Show,2019-05-04 -City Hotel,1,155,2016,June,23,27,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,122.85,0,1,Canceled,2019-08-04 -City Hotel,1,66,2017,August,38,6,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,192.55,0,0,Canceled,2019-07-04 -City Hotel,0,45,2016,April,32,28,2,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,8.0,179.0,0,Transient,92.11,0,1,Check-Out,2019-02-01 -City Hotel,0,18,2015,December,51,10,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,92.67,0,0,Check-Out,2018-08-03 -Resort Hotel,0,4,2017,May,35,12,0,1,2,0.0,0,BB,PRT,Aviation,Direct,0,0,0,A,D,0,No Deposit,17.0,179.0,0,Transient,153.13,1,0,Check-Out,2020-07-03 -City Hotel,0,44,2016,October,45,16,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,106.96,0,1,Check-Out,2019-08-04 -City Hotel,0,150,2015,August,31,12,0,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,64.23,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2017,August,32,28,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,1,No Deposit,12.0,179.0,0,Transient,120.65,1,0,Check-Out,2020-07-03 -City Hotel,0,260,2015,July,32,24,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,113.23,0,1,Check-Out,2018-06-02 -Resort Hotel,0,228,2016,June,26,24,3,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,116.99,0,1,Check-Out,2019-02-01 -Resort Hotel,1,10,2016,February,11,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,58.95,0,0,Canceled,2019-01-03 -City Hotel,0,9,2016,August,35,24,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.6,0,1,Check-Out,2019-06-03 -City Hotel,0,20,2017,March,13,27,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.54,0,0,Check-Out,2019-11-03 -City Hotel,0,9,2017,April,15,15,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,12.0,229.0,0,Group,102.68,0,1,Check-Out,2020-03-03 -Resort Hotel,0,44,2015,October,43,3,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,95.05,0,1,Check-Out,2018-08-03 -City Hotel,0,2,2016,August,37,18,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.26,0,1,Check-Out,2019-05-04 -City Hotel,1,2,2015,August,40,15,0,1,1,0.0,0,BB,PRT,Undefined,Corporate,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,78.52,0,0,Canceled,2018-09-02 -Resort Hotel,0,10,2016,October,42,18,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,119.61,0,1,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,April,2,28,1,4,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,172.25,0,0,Check-Out,2019-03-04 -City Hotel,0,235,2016,July,27,20,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Contract,126.98,0,0,Check-Out,2019-04-03 -Resort Hotel,0,19,2016,August,36,30,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,43.69,1,2,Check-Out,2019-08-04 -City Hotel,1,53,2016,January,12,21,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,69.47,0,0,Canceled,2019-10-04 -City Hotel,0,54,2016,May,25,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,89.0,179.0,0,Transient-Party,60.92,0,0,Check-Out,2019-03-04 -City Hotel,1,259,2016,October,45,24,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,96.97,0,0,Canceled,2019-08-04 -Resort Hotel,0,100,2017,March,18,7,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,108.51,0,3,Check-Out,2020-01-04 -City Hotel,0,0,2015,November,50,23,0,1,1,0.0,0,BB,FRA,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,60.36,0,0,Check-Out,2018-08-03 -City Hotel,0,7,2016,June,27,9,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,101.68,0,0,Check-Out,2019-03-04 -City Hotel,0,95,2017,May,19,25,0,2,1,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,106.97,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2017,April,17,27,0,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,265.0,0,Transient-Party,173.63,0,0,Check-Out,2020-07-03 -City Hotel,1,409,2016,March,14,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.89,0,0,Canceled,2018-10-03 -Resort Hotel,1,0,2015,December,53,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,59.83,0,0,Canceled,2018-11-02 -Resort Hotel,0,64,2017,July,36,24,1,5,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,246.0,179.0,0,Transient,234.97,0,0,Check-Out,2020-06-02 -Resort Hotel,0,96,2017,June,25,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,I,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-03-03 -City Hotel,0,157,2017,June,26,28,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,93.83,0,0,Check-Out,2020-06-02 -Resort Hotel,0,2,2017,May,21,23,1,0,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,182.0,179.0,0,Transient,94.58,0,0,Check-Out,2020-02-01 -Resort Hotel,1,8,2017,July,32,6,2,6,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,200.73,0,1,Canceled,2020-03-03 -City Hotel,0,44,2017,March,16,30,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,138.61,0,0,Check-Out,2020-04-02 -City Hotel,1,0,2017,January,2,24,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,28.87,0,0,Canceled,2018-11-02 -City Hotel,1,165,2015,August,32,24,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,62.25,0,0,Canceled,2018-05-03 -Resort Hotel,0,9,2016,August,35,19,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,E,1,No Deposit,18.0,179.0,0,Transient,205.89,1,0,Check-Out,2019-06-03 -City Hotel,0,1,2017,June,26,17,0,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,92.43,0,0,Check-Out,2020-02-01 -City Hotel,0,110,2017,March,10,13,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,168.76,0,2,Check-Out,2020-04-02 -Resort Hotel,1,172,2015,December,53,1,2,7,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,E,0,Non Refund,243.0,179.0,0,Transient,43.1,0,0,Canceled,2018-10-03 -City Hotel,0,21,2016,August,32,4,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.29,0,2,Check-Out,2019-02-01 -Resort Hotel,0,78,2016,May,27,23,0,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,78.09,1,1,Check-Out,2019-03-04 -City Hotel,0,159,2017,June,19,27,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.09,0,1,Check-Out,2020-04-02 -City Hotel,0,59,2017,July,32,5,1,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,129.41,0,2,Check-Out,2020-06-02 -City Hotel,1,158,2016,April,15,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,41,Transient,93.05,0,0,Canceled,2018-11-02 -Resort Hotel,0,80,2016,July,29,16,1,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,64.1,1,2,Check-Out,2019-05-04 -City Hotel,0,0,2015,October,43,20,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,31.7,0,0,Check-Out,2018-08-03 -Resort Hotel,0,199,2016,September,36,30,4,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,329.0,179.0,0,Transient,122.56,0,0,Check-Out,2019-06-03 -City Hotel,0,168,2016,January,3,2,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.75,1,1,Check-Out,2019-10-04 -City Hotel,0,261,2016,October,46,13,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,77.8,0,2,Check-Out,2019-08-04 -City Hotel,1,269,2015,September,44,6,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,58.49,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,August,35,22,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.66,0,1,Check-Out,2019-06-03 -City Hotel,1,322,2016,June,27,29,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.98,0,0,Canceled,2019-01-03 -City Hotel,1,0,2016,January,4,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,64.0,0,Transient,60.73,0,0,No-Show,2018-12-03 -City Hotel,0,25,2017,March,23,13,1,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,163.93,0,1,Check-Out,2020-03-03 -City Hotel,0,96,2015,October,43,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,99.69,0,0,Check-Out,2019-06-03 -City Hotel,1,78,2016,July,25,20,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.29,0,1,Canceled,2019-05-04 -Resort Hotel,0,2,2015,December,44,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,17.0,179.0,0,Transient-Party,92.28,0,0,Check-Out,2018-09-02 -City Hotel,0,10,2016,March,10,27,1,1,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,83.0,179.0,0,Transient-Party,77.82,0,0,Check-Out,2019-02-01 -City Hotel,1,47,2016,October,42,6,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.04,0,0,Canceled,2019-08-04 -Resort Hotel,1,103,2016,June,27,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,69.05,0,1,Canceled,2019-01-03 -Resort Hotel,1,332,2017,August,27,26,2,3,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,147.16,1,3,Canceled,2020-07-03 -City Hotel,1,414,2016,May,24,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.44,0,0,Canceled,2017-12-03 -City Hotel,1,264,2015,December,50,27,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,66.0,179.0,0,Transient,67.26,0,0,Canceled,2018-09-02 -City Hotel,0,15,2017,April,15,16,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,123.59,0,2,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,November,50,13,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,331.0,179.0,0,Transient,45.13,0,2,Check-Out,2018-06-02 -Resort Hotel,0,95,2016,June,26,16,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,102.39,1,0,Check-Out,2019-03-04 -Resort Hotel,0,167,2016,August,36,22,0,2,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,133.64,0,3,Check-Out,2019-07-04 -City Hotel,0,106,2017,May,17,23,2,5,3,0.0,0,BB,DEU,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-02-01 -City Hotel,0,29,2015,March,53,24,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,125.0,0,2,Check-Out,2019-01-03 -City Hotel,0,101,2016,April,37,21,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,106.68,0,0,Check-Out,2020-06-02 -Resort Hotel,0,158,2016,March,11,6,0,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,H,2,Refundable,41.0,223.0,0,Transient-Party,70.07,1,0,Check-Out,2019-04-03 -Resort Hotel,0,112,2017,July,20,11,0,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,97.37,0,2,Check-Out,2020-04-02 -City Hotel,1,111,2016,March,34,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,14,Transient,121.15,0,0,Canceled,2018-10-03 -Resort Hotel,1,157,2016,August,35,21,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.93,0,0,Canceled,2019-06-03 -City Hotel,1,314,2015,September,36,31,2,2,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.57,0,0,Canceled,2018-06-02 -City Hotel,1,321,2017,June,24,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,1,A,A,0,Non Refund,10.0,179.0,0,Transient,97.56,0,0,Canceled,2018-08-03 -City Hotel,0,42,2016,January,3,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,39.97,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,February,8,13,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,179.0,0,Transient,34.3,0,1,Check-Out,2019-02-01 -City Hotel,0,14,2015,December,53,27,2,3,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,59.83,0,1,Check-Out,2018-06-02 -City Hotel,0,51,2016,April,18,30,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-02-01 -City Hotel,0,84,2017,June,25,10,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,78.34,0,2,Check-Out,2020-06-02 -City Hotel,1,257,2017,July,32,25,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,135.17,0,0,Canceled,2020-02-01 -City Hotel,0,19,2015,August,37,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,62.03,0,0,Check-Out,2018-06-02 -Resort Hotel,0,11,2016,December,50,5,0,1,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,1,A,D,0,No Deposit,14.0,45.0,0,Transient-Party,84.37,0,1,Check-Out,2019-06-03 -Resort Hotel,1,30,2017,February,14,28,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,310.0,179.0,0,Transient-Party,61.4,0,0,Canceled,2018-11-02 -City Hotel,1,39,2016,June,29,15,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,203.14,0,0,Canceled,2019-02-01 -City Hotel,0,261,2015,September,36,14,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,125.11,0,3,Check-Out,2018-08-03 -City Hotel,0,0,2016,February,9,28,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.96,0,2,Check-Out,2020-04-02 -Resort Hotel,0,16,2016,December,50,6,1,0,2,1.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,245.0,179.0,0,Transient,98.52,0,3,Check-Out,2019-11-03 -Resort Hotel,0,46,2016,March,12,31,1,5,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,No Deposit,14.0,248.0,0,Transient,44.96,0,0,Canceled,2019-11-03 -Resort Hotel,0,29,2015,September,33,27,0,5,2,2.0,0,BB,,Complementary,Direct,0,0,0,C,C,3,No Deposit,244.0,179.0,0,Transient-Party,83.4,1,2,Check-Out,2018-07-03 -City Hotel,0,106,2016,June,28,8,0,3,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,107.92,0,1,Check-Out,2019-06-03 -City Hotel,1,256,2017,June,34,11,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,125.3,0,1,Canceled,2020-07-03 -City Hotel,1,36,2016,August,42,22,1,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.8,0,0,No-Show,2019-08-04 -City Hotel,0,156,2016,October,46,25,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.17,0,0,Check-Out,2019-09-03 -City Hotel,1,307,2017,August,36,10,2,1,1,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,C,1,No Deposit,14.0,179.0,0,Transient-Party,62.41,0,0,Canceled,2020-04-02 -City Hotel,1,173,2017,August,31,19,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,99.53,0,1,Canceled,2020-06-02 -Resort Hotel,0,17,2016,June,26,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,44.37,0,1,Check-Out,2019-02-01 -City Hotel,0,303,2016,April,21,28,0,1,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient-Party,77.81,0,0,Canceled,2019-01-03 -City Hotel,1,350,2015,September,44,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,77.06,0,0,Canceled,2018-07-03 -City Hotel,0,2,2015,September,36,31,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,62.63,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2016,October,26,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,110.16,0,0,No-Show,2019-02-01 -Resort Hotel,0,4,2016,February,4,19,0,1,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,80.08,0,0,Check-Out,2018-11-02 -Resort Hotel,0,56,2016,October,43,19,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,275.0,179.0,0,Transient-Party,66.0,0,0,Check-Out,2018-09-02 -City Hotel,0,38,2016,August,32,21,0,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,227.55,1,3,Check-Out,2019-06-03 -City Hotel,0,1,2015,December,50,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,45.0,0,Transient,86.66,0,0,Check-Out,2018-09-02 -City Hotel,0,25,2017,July,8,10,2,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Group,0.0,0,1,Check-Out,2020-06-02 -City Hotel,0,16,2017,May,23,10,2,0,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,79.19,0,0,Check-Out,2019-12-04 -Resort Hotel,0,3,2016,August,34,7,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,144.01,1,2,Check-Out,2019-05-04 -Resort Hotel,0,204,2016,July,32,22,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,200.88,0,0,Check-Out,2019-07-04 -City Hotel,0,9,2016,September,36,7,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.12,0,1,Check-Out,2019-09-03 -Resort Hotel,0,27,2015,October,46,26,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,182.7,1,0,Check-Out,2018-09-02 -City Hotel,1,307,2016,October,49,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,14.0,240.0,0,Transient,86.81,0,0,Canceled,2019-06-03 -Resort Hotel,0,1,2017,December,50,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,331.0,0,Transient,0.0,0,0,Check-Out,2019-12-04 -City Hotel,0,281,2016,October,43,22,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,78.06,0,0,Canceled,2019-08-04 -City Hotel,1,95,2017,June,29,28,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,128.18,0,0,Canceled,2018-11-02 -City Hotel,0,44,2017,May,10,23,0,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,75,Transient-Party,153.5,0,0,Check-Out,2020-03-03 -City Hotel,1,122,2015,July,30,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,58.85,0,0,Canceled,2017-12-03 -City Hotel,1,96,2015,July,38,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,62.65,0,0,Canceled,2018-06-02 -Resort Hotel,1,18,2017,February,27,24,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,317.0,331.0,0,Transient,55.24,0,0,Canceled,2019-12-04 -City Hotel,0,1,2015,September,41,5,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,0,1,D,D,0,No Deposit,11.0,179.0,0,Group,0.09,0,2,Check-Out,2018-08-03 -Resort Hotel,0,3,2016,December,53,23,2,3,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,1,No Deposit,249.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-11-03 -Resort Hotel,1,148,2015,September,37,18,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,60.43,0,0,Canceled,2018-06-02 -Resort Hotel,0,145,2016,January,4,27,0,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,68.71,0,3,Check-Out,2019-09-03 -City Hotel,1,96,2016,June,21,27,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,100.05,0,0,Canceled,2019-05-04 -City Hotel,1,4,2017,June,27,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,106.99,0,0,No-Show,2020-02-01 -City Hotel,0,155,2017,June,25,8,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,153.26,0,1,Check-Out,2020-05-03 -Resort Hotel,0,15,2015,December,50,31,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,42.86,0,0,Check-Out,2018-12-03 -Resort Hotel,0,1,2016,May,23,28,2,6,2,2.0,0,FB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,12.0,179.0,0,Transient,76.18,1,0,Check-Out,2019-02-01 -City Hotel,0,166,2017,June,32,9,0,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.91,0,2,Check-Out,2020-05-03 -Resort Hotel,0,87,2017,April,23,27,0,2,1,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,175.0,179.0,0,Transient-Party,44.1,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,June,19,9,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,I,0,No Deposit,9.0,179.0,0,Transient,0.82,0,0,Check-Out,2019-01-03 -City Hotel,0,61,2016,July,36,5,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.81,1,2,Check-Out,2018-09-02 -City Hotel,0,139,2016,June,21,3,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,91.79,0,2,Check-Out,2019-02-01 -Resort Hotel,0,173,2017,March,50,23,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,79.93,0,0,Check-Out,2019-11-03 -Resort Hotel,0,117,2017,July,37,10,2,3,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-07-03 -City Hotel,1,1,2016,August,39,21,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,148.61,0,1,Canceled,2019-07-04 -City Hotel,1,30,2015,July,38,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Contract,120.09,0,1,Canceled,2018-09-02 -Resort Hotel,0,14,2016,April,17,20,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,C,0,No Deposit,250.0,179.0,0,Transient,119.7,1,0,Check-Out,2019-03-04 -Resort Hotel,0,3,2016,December,49,6,1,2,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,E,E,2,No Deposit,14.0,331.0,0,Transient,0.0,1,0,Check-Out,2019-11-03 -Resort Hotel,0,5,2016,February,11,10,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,178.0,179.0,0,Group,31.67,0,1,Check-Out,2019-10-04 -City Hotel,0,4,2016,November,43,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,42.34,0,1,Check-Out,2019-03-04 -City Hotel,0,70,2015,October,49,5,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,60.45,0,0,Check-Out,2018-06-02 -City Hotel,1,264,2017,May,20,29,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,152.75,1,0,Canceled,2019-11-03 -City Hotel,1,103,2017,July,36,17,2,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.1,0,0,Canceled,2020-01-04 -Resort Hotel,0,0,2016,May,23,16,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,82.0,0,Transient,31.86,0,0,Check-Out,2019-04-03 -City Hotel,0,46,2016,October,45,14,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,122.75,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2016,May,32,27,1,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.05,0,3,Check-Out,2019-06-03 -Resort Hotel,0,143,2016,July,34,21,2,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,163.0,179.0,0,Transient-Party,186.75,1,0,Check-Out,2019-06-03 -Resort Hotel,0,11,2016,October,43,2,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,149.41,1,0,Check-Out,2019-07-04 -City Hotel,0,55,2016,December,51,9,0,1,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,78.95,0,0,Check-Out,2019-10-04 -Resort Hotel,1,50,2016,December,53,27,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,134.0,179.0,0,Transient,70.73,0,0,Canceled,2019-03-04 -City Hotel,0,372,2017,March,16,28,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,137.0,179.0,0,Transient-Party,75.44,0,0,Check-Out,2020-03-03 -City Hotel,0,37,2016,May,21,18,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,118.01,0,1,Check-Out,2019-02-01 -Resort Hotel,1,153,2016,July,24,7,0,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,168.44,0,1,Canceled,2019-04-03 -Resort Hotel,0,34,2016,March,10,28,1,3,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,68.86,0,0,Check-Out,2018-11-02 -City Hotel,0,66,2015,September,43,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,78.01,0,0,Check-Out,2018-08-03 -City Hotel,0,291,2016,September,41,9,1,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,141.54,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2017,January,4,24,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,48.29,0,3,Check-Out,2020-01-04 -City Hotel,0,1,2016,October,43,24,2,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,109.04,0,0,Check-Out,2019-08-04 -City Hotel,1,20,2017,January,9,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,64.01,0,0,Canceled,2020-02-01 -Resort Hotel,0,44,2017,June,35,10,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,9.0,179.0,0,Transient,198.81,0,1,Check-Out,2020-03-03 -City Hotel,1,269,2016,August,35,29,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,B,3,No Deposit,1.0,179.0,0,Transient-Party,88.52,0,0,Canceled,2018-08-03 -City Hotel,1,62,2017,June,27,15,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,160.95,0,0,Canceled,2020-03-03 -Resort Hotel,0,14,2015,August,44,6,2,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,170.0,1,1,Check-Out,2019-08-04 -City Hotel,1,309,2017,August,37,6,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,242.75,0,1,Canceled,2020-06-02 -Resort Hotel,1,134,2016,July,26,20,0,1,1,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,237.11,0,0,Check-Out,2019-05-04 -Resort Hotel,0,109,2017,February,11,21,1,3,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,113.48,1,2,Check-Out,2020-01-04 -Resort Hotel,1,86,2017,May,23,20,0,1,2,2.0,0,HB,ISR,Online TA,TA/TO,0,0,0,E,G,2,No Deposit,7.0,179.0,0,Transient,136.41,1,0,Canceled,2020-04-02 -Resort Hotel,0,195,2016,October,40,31,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,224.0,0,Transient-Party,36.18,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2017,February,10,28,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,73.18,0,0,Check-Out,2020-02-01 -City Hotel,1,277,2015,August,37,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient,85.77,0,0,Canceled,2018-06-02 -City Hotel,0,264,2017,July,30,17,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,141.83,0,0,Check-Out,2020-04-02 -City Hotel,1,20,2017,February,6,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,178.0,331.0,0,Transient,76.6,0,0,Canceled,2020-04-02 -City Hotel,0,1,2016,March,9,10,0,1,2,2.0,0,BB,POL,Corporate,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,86.32,0,0,Check-Out,2019-10-04 -Resort Hotel,0,29,2016,March,16,15,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,E,1,No Deposit,12.0,179.0,0,Transient,72.26,0,0,Check-Out,2018-11-02 -City Hotel,0,9,2016,June,44,5,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.71,0,1,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,September,42,6,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,170.33,0,1,Check-Out,2019-08-04 -City Hotel,1,159,2016,March,15,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,40,Transient,76.29,0,1,Canceled,2019-01-03 -City Hotel,1,54,2017,May,36,11,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.81,0,1,Canceled,2019-12-04 -City Hotel,1,12,2015,October,44,27,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,70.85,0,0,Canceled,2018-09-02 -City Hotel,1,379,2016,October,44,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,27.0,179.0,43,Transient,156.09,0,0,Canceled,2018-09-02 -Resort Hotel,0,56,2017,May,29,13,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,103.18,1,2,Check-Out,2020-02-01 -City Hotel,1,9,2016,February,4,26,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,69.21,0,1,No-Show,2018-11-02 -City Hotel,1,2,2016,December,50,20,0,3,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,0,1,2017,February,10,6,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.85,0,0,Check-Out,2019-12-04 -Resort Hotel,0,117,2016,July,30,14,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,103.17,0,0,Check-Out,2019-04-03 -City Hotel,1,410,2016,September,45,21,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,9.0,179.0,0,Transient,121.29,0,0,Canceled,2018-07-03 -Resort Hotel,0,1,2017,January,2,24,2,0,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,3,No Deposit,314.0,331.0,0,Transient,31.53,1,0,Check-Out,2019-11-03 -Resort Hotel,0,43,2016,October,43,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient,77.77,0,0,Check-Out,2019-08-04 -City Hotel,0,14,2016,May,27,23,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,1,No Deposit,32.0,179.0,0,Transient-Party,124.48,0,0,Check-Out,2018-08-03 -Resort Hotel,0,85,2017,March,8,6,0,1,2,0.0,0,HB,NLD,Online TA,TA/TO,1,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient-Party,101.21,1,2,Check-Out,2019-03-04 -City Hotel,0,16,2016,December,53,4,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,64.86,0,1,Check-Out,2019-10-04 -Resort Hotel,1,20,2016,June,35,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,155.0,179.0,0,Transient,76.14,0,0,Canceled,2019-06-03 -Resort Hotel,0,4,2016,May,24,10,0,3,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,80.9,0,0,Check-Out,2019-01-03 -City Hotel,1,374,2017,March,21,20,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,121.39,0,0,Canceled,2019-10-04 -City Hotel,1,2,2017,July,26,15,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,A,0,No Deposit,16.0,179.0,0,Transient,235.64,0,0,Check-Out,2020-06-02 -Resort Hotel,0,236,2016,October,42,24,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,89.48,0,0,Check-Out,2019-07-04 -City Hotel,0,56,2016,April,21,27,2,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,124.25,0,0,Check-Out,2019-02-01 -Resort Hotel,0,245,2015,August,33,4,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient-Party,84.96,0,0,Check-Out,2018-06-02 -City Hotel,1,101,2017,March,16,24,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.09,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2017,March,9,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,16.0,223.0,0,Transient,33.34,0,0,Check-Out,2019-11-03 -City Hotel,0,165,2017,July,26,17,2,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,91.46,0,2,Check-Out,2020-03-03 -City Hotel,1,26,2016,December,49,2,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,66.69,0,0,Canceled,2019-09-03 -City Hotel,0,12,2017,June,27,5,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,28.0,179.0,0,Transient,152.52,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,December,53,20,1,3,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient-Party,44.84,1,2,Check-Out,2018-11-02 -City Hotel,0,51,2017,January,4,29,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,80.02,0,2,Check-Out,2019-10-04 -City Hotel,0,287,2016,October,45,31,1,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,172.43,0,0,Check-Out,2019-08-04 -City Hotel,0,9,2017,June,27,30,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.26,1,3,Check-Out,2020-06-02 -Resort Hotel,0,2,2016,June,25,9,0,3,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,L,F,0,No Deposit,16.0,179.0,0,Transient,60.15,0,0,Check-Out,2018-10-03 -City Hotel,0,26,2015,October,44,6,2,5,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,136.55,0,0,Check-Out,2018-06-02 -Resort Hotel,0,104,2016,August,36,6,2,10,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,178.68,0,2,Check-Out,2019-03-04 -City Hotel,0,1,2016,June,21,27,2,0,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,132.37,1,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,April,16,5,1,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,198.0,179.0,0,Transient,68.23,1,0,Check-Out,2019-05-04 -City Hotel,0,17,2017,May,21,13,1,3,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,81.0,229.0,0,Transient,104.65,0,0,Check-Out,2020-03-03 -City Hotel,0,45,2015,October,41,13,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,113.49,0,1,Check-Out,2018-08-03 -City Hotel,0,27,2015,December,50,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,92.0,0,Transient-Party,94.42,0,0,Check-Out,2019-06-03 -Resort Hotel,0,34,2016,February,10,13,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,67.61,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2016,June,26,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,62.26,0,0,Check-Out,2018-11-02 -Resort Hotel,0,1,2016,May,26,26,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,F,1,No Deposit,102.0,245.0,0,Transient,0.0,0,0,Check-Out,2019-05-04 -City Hotel,0,135,2017,May,53,31,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,G,0,No Deposit,138.0,179.0,0,Transient,96.51,0,0,Check-Out,2019-11-03 -City Hotel,1,112,2016,August,11,26,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,73.02,0,0,Canceled,2019-06-03 -City Hotel,0,158,2015,April,17,29,2,3,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,85.84,0,0,Check-Out,2018-12-03 -Resort Hotel,0,41,2017,December,17,30,2,5,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,73.1,0,2,Check-Out,2019-12-04 -City Hotel,1,14,2016,June,26,28,0,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,115.21,0,0,Canceled,2019-02-01 -City Hotel,1,41,2016,January,11,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,75.21,0,1,Canceled,2018-11-02 -City Hotel,1,109,2017,March,10,25,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,147.21,0,0,Canceled,2019-02-01 -City Hotel,0,52,2015,July,31,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.65,0,1,Check-Out,2018-12-03 -Resort Hotel,0,302,2017,June,28,15,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,137.67,0,1,Check-Out,2020-07-03 -Resort Hotel,0,3,2015,December,49,5,1,2,1,0.0,0,BB,,Direct,Direct,0,0,0,D,D,2,No Deposit,247.0,179.0,0,Transient,138.68,0,0,Check-Out,2018-11-02 -City Hotel,0,4,2016,January,12,25,0,1,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,107.7,0,0,Check-Out,2018-11-02 -City Hotel,1,313,2017,May,21,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,80.73,0,0,Canceled,2019-02-01 -Resort Hotel,0,114,2015,October,42,4,2,5,2,0.0,0,HB,FRA,Offline TA/TO,Corporate,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,81.31,0,1,Check-Out,2018-09-02 -City Hotel,0,263,2017,May,36,19,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,128.93,0,0,Check-Out,2020-07-03 -Resort Hotel,1,150,2016,June,20,5,3,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient,127.67,0,0,Canceled,2019-04-03 -City Hotel,1,327,2016,October,42,9,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,80.31,0,0,Canceled,2019-08-04 -Resort Hotel,0,37,2016,June,14,4,0,2,1,1.0,0,BB,DEU,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient-Party,92.54,0,0,Check-Out,2019-06-03 -City Hotel,0,17,2016,December,53,12,2,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient,95.98,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,March,12,15,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,16.0,179.0,75,Transient-Party,36.67,1,3,Check-Out,2019-09-03 -City Hotel,1,88,2016,June,25,6,2,4,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,1,1,A,A,0,No Deposit,126.0,179.0,0,Transient,94.79,0,0,Canceled,2019-02-01 -City Hotel,1,5,2015,September,53,4,0,1,1,0.0,0,BB,,Undefined,TA/TO,0,1,0,P,B,0,No Deposit,11.0,179.0,0,Transient,87.83,0,0,Canceled,2018-09-02 -Resort Hotel,0,285,2016,July,38,24,0,10,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,62.72,0,0,Check-Out,2019-06-03 -Resort Hotel,1,2,2017,June,9,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,70.08,0,0,Canceled,2020-02-01 -City Hotel,1,15,2017,February,8,12,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,F,0,Non Refund,15.0,179.0,0,Transient,62.03,0,0,Canceled,2019-09-03 -City Hotel,0,36,2016,October,42,9,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,159.5,0,2,Check-Out,2019-03-04 -Resort Hotel,0,206,2016,May,22,9,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,146.52,0,0,Check-Out,2019-02-01 -City Hotel,0,246,2017,July,32,12,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient-Party,130.2,0,1,Check-Out,2020-07-03 -City Hotel,0,11,2016,November,45,18,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.67,0,0,Check-Out,2019-09-03 -Resort Hotel,0,40,2016,November,44,9,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,141.5,0,0,Check-Out,2019-07-04 -City Hotel,1,14,2016,September,38,28,2,4,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,103.17,0,2,Canceled,2019-05-04 -City Hotel,0,42,2016,October,45,27,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.97,0,0,Check-Out,2019-08-04 -Resort Hotel,0,31,2016,August,26,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,H,0,No Deposit,246.0,179.0,0,Transient,119.13,0,0,Check-Out,2019-05-04 -Resort Hotel,0,36,2017,March,10,15,0,1,2,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Transient,66.3,0,0,Check-Out,2019-03-04 -City Hotel,1,30,2015,August,36,13,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.42,0,1,No-Show,2018-06-02 -City Hotel,0,41,2016,August,16,15,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.74,0,1,Check-Out,2019-07-04 -City Hotel,0,41,2016,October,44,2,2,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.86,0,1,Check-Out,2019-08-04 -City Hotel,0,7,2017,June,26,2,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,14.0,73.0,0,Transient,66.48,0,0,Check-Out,2019-11-03 -Resort Hotel,0,58,2015,October,43,8,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient-Party,53.39,0,1,Check-Out,2018-08-03 -City Hotel,0,2,2015,October,44,2,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,240.0,0,Transient-Party,63.41,0,0,Check-Out,2018-09-02 -Resort Hotel,0,270,2016,March,18,31,1,4,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,222.0,75,Transient-Party,78.23,0,0,Check-Out,2019-11-03 -Resort Hotel,0,59,2015,December,51,20,2,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,91.0,179.0,0,Transient-Party,59.39,0,0,Check-Out,2018-12-03 -Resort Hotel,0,11,2016,September,30,13,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,176.0,179.0,0,Transient-Party,155.37,0,0,Check-Out,2019-09-03 -City Hotel,1,201,2016,October,53,27,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,64.22,0,0,Canceled,2019-11-03 -City Hotel,0,38,2016,November,43,30,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,10.0,179.0,0,Transient,97.35,0,2,Check-Out,2019-10-04 -City Hotel,0,5,2017,July,10,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,72.0,0,Transient,104.41,0,0,Check-Out,2020-06-02 -Resort Hotel,0,87,2016,March,16,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,C,I,0,No Deposit,239.0,179.0,0,Transient,58.87,0,0,Check-Out,2018-11-02 -City Hotel,0,112,2017,December,21,24,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,68.44,0,0,Check-Out,2019-10-04 -Resort Hotel,0,134,2016,March,10,11,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,36.08,0,0,Check-Out,2019-03-04 -Resort Hotel,0,22,2016,April,19,27,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,E,0,No Deposit,87.0,179.0,0,Transient-Party,70.92,0,0,Check-Out,2019-03-04 -City Hotel,1,86,2016,February,17,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,20,Transient,97.87,0,0,Canceled,2018-11-02 -City Hotel,1,2,2016,January,3,10,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,1,43,2017,January,32,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,81.97,0,0,Canceled,2020-01-04 -City Hotel,0,47,2016,December,53,9,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.9,0,1,Check-Out,2019-11-03 -City Hotel,0,45,2016,June,37,30,0,2,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,98.63,0,0,Check-Out,2019-03-04 -City Hotel,0,34,2017,February,11,6,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,89.01,0,0,Check-Out,2020-04-02 -City Hotel,1,386,2016,June,27,27,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,75,Transient,87.23,0,0,Canceled,2018-10-03 -City Hotel,0,0,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,14.0,75.0,0,Transient,32.93,0,0,Check-Out,2019-10-04 -Resort Hotel,0,9,2017,April,18,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,233.73,1,1,Check-Out,2020-04-02 -Resort Hotel,0,12,2017,April,18,30,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,96.6,0,0,Check-Out,2020-05-03 -City Hotel,1,107,2017,June,10,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,9.0,45.0,0,Transient,77.45,0,0,Canceled,2020-03-03 -City Hotel,1,325,2017,May,19,20,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,8.0,179.0,0,Transient,149.07,0,0,Canceled,2019-10-04 -City Hotel,1,31,2016,July,26,6,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,149.67,0,0,Canceled,2018-08-03 -Resort Hotel,0,196,2017,April,16,17,2,5,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,173.0,179.0,0,Transient-Party,48.67,0,0,Check-Out,2020-03-03 -City Hotel,1,123,2015,July,29,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.58,0,0,Canceled,2018-06-02 -City Hotel,0,37,2017,May,22,30,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,159.05,0,1,Check-Out,2020-07-03 -Resort Hotel,1,151,2017,August,27,31,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,F,0,No Deposit,16.0,179.0,0,Transient,102.36,0,0,Canceled,2020-06-02 -City Hotel,0,1,2017,March,11,24,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,79.0,0,Transient,26.81,0,0,Check-Out,2020-02-01 -City Hotel,0,21,2017,May,24,28,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,75.02,0,0,Check-Out,2020-05-03 -City Hotel,0,101,2016,July,26,28,2,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,2,No Deposit,17.0,179.0,0,Transient,84.79,0,1,Check-Out,2019-05-04 -City Hotel,0,95,2016,October,44,23,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,92.44,0,0,Check-Out,2019-04-03 -City Hotel,1,197,2017,August,36,29,2,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,13.0,179.0,0,Transient,225.38,0,3,Canceled,2020-05-03 -Resort Hotel,0,15,2016,October,18,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,115.57,0,0,Check-Out,2019-05-04 -City Hotel,1,1,2016,February,9,6,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,36.65,0,0,Canceled,2019-10-04 -City Hotel,1,37,2016,July,20,15,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,112.04,0,1,Canceled,2019-01-03 -City Hotel,1,144,2016,August,40,2,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Contract,118.94,0,0,Canceled,2019-06-03 -City Hotel,1,99,2017,June,27,18,1,2,2,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,113.8,0,2,Canceled,2019-07-04 -City Hotel,1,165,2017,June,27,23,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,77.49,0,0,Canceled,2019-06-03 -City Hotel,1,264,2017,January,9,27,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,95.77,0,2,Canceled,2019-11-03 -Resort Hotel,0,0,2015,December,46,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,17.0,72.0,0,Transient,41.01,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,April,17,10,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,77,2015,July,26,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,120.74,1,0,Check-Out,2018-12-03 -City Hotel,0,37,2016,October,46,31,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,202.36,0,3,Check-Out,2019-06-03 -Resort Hotel,0,94,2016,May,16,31,1,3,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,179.0,75,Transient-Party,73.1,0,0,Check-Out,2019-02-01 -Resort Hotel,0,145,2016,September,39,9,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,70.75,0,2,Check-Out,2019-07-04 -Resort Hotel,0,11,2015,August,37,25,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,66.5,0,0,Check-Out,2018-07-03 -Resort Hotel,0,14,2016,November,48,27,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,331.0,0,Transient,110.93,0,0,Check-Out,2019-09-03 -City Hotel,0,96,2016,June,15,25,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,80.42,0,0,Check-Out,2018-12-03 -Resort Hotel,0,153,2016,October,50,16,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,67.97,0,0,Check-Out,2019-10-04 -Resort Hotel,0,253,2015,July,34,6,2,5,2,1.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,86.0,179.0,0,Transient-Party,125.76,0,0,Check-Out,2019-05-04 -City Hotel,0,107,2016,May,24,21,2,2,2,2.0,0,BB,IRL,Direct,TA/TO,0,0,0,F,F,2,No Deposit,13.0,179.0,0,Transient,165.28,0,0,Check-Out,2019-06-03 -Resort Hotel,0,6,2015,November,43,1,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Group,67.62,0,2,Check-Out,2018-08-03 -City Hotel,0,144,2016,June,26,30,0,3,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,126.09,0,0,Check-Out,2019-06-03 -City Hotel,0,9,2016,March,9,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,84.25,0,0,Check-Out,2018-11-02 -City Hotel,0,22,2017,August,38,8,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,158.32,0,2,Check-Out,2019-12-04 -City Hotel,1,57,2017,May,26,16,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,128.89,0,0,Canceled,2020-03-03 -City Hotel,0,3,2015,September,42,9,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,106.43,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2017,June,24,24,0,1,2,0.0,0,SC,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,140.07,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2017,June,21,20,1,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,76.59,0,0,Check-Out,2020-03-03 -City Hotel,0,66,2017,March,11,9,2,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Group,76.61,0,0,Check-Out,2020-01-04 -City Hotel,1,41,2017,April,17,9,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.6,0,1,Canceled,2020-03-03 -Resort Hotel,0,94,2016,June,27,17,2,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,285.0,179.0,0,Transient,61.45,0,0,Check-Out,2019-04-03 -City Hotel,0,44,2016,November,49,27,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,60.36,0,0,Check-Out,2019-10-04 -City Hotel,0,44,2015,September,41,21,2,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,85.5,0,0,Check-Out,2018-08-03 -City Hotel,1,57,2015,July,49,10,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.04,0,0,Canceled,2018-11-02 -Resort Hotel,0,40,2016,March,18,18,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,68.13,0,0,Check-Out,2019-04-03 -City Hotel,0,126,2017,June,27,8,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,83.66,0,0,Check-Out,2020-06-02 -City Hotel,0,156,2017,July,26,5,2,5,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,1,0,A,E,1,No Deposit,188.0,179.0,0,Transient,105.85,0,0,Canceled,2020-06-02 -City Hotel,1,11,2017,February,9,2,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.31,0,1,No-Show,2020-03-03 -Resort Hotel,0,0,2015,December,49,29,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,37.33,1,1,Check-Out,2018-08-03 -City Hotel,1,156,2016,June,28,28,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,61,Transient,94.11,0,0,Canceled,2018-12-03 -Resort Hotel,1,154,2016,December,53,2,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,275.0,179.0,0,Transient,46.05,0,0,Canceled,2018-11-02 -Resort Hotel,1,266,2016,December,21,31,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,89.54,0,0,Canceled,2017-12-03 -Resort Hotel,1,16,2017,July,25,30,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,238.0,179.0,0,Transient,45.0,0,0,Canceled,2020-02-01 -City Hotel,1,412,2015,July,39,21,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.66,0,0,Canceled,2018-09-02 -City Hotel,1,39,2017,January,17,16,2,5,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Group,73.15,0,1,Canceled,2019-11-03 -Resort Hotel,0,96,2016,June,27,18,4,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,A,2,No Deposit,180.0,179.0,0,Transient,77.35,0,2,Check-Out,2019-03-04 -City Hotel,1,105,2017,March,17,15,2,3,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,71.46,0,2,Canceled,2019-11-03 -City Hotel,0,0,2016,October,42,21,1,0,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,2.85,0,0,Check-Out,2019-10-04 -Resort Hotel,0,252,2017,May,29,28,0,1,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,247.0,179.0,0,Transient,201.23,0,0,Check-Out,2020-03-03 -City Hotel,1,105,2016,August,38,16,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,140.08,0,2,Canceled,2019-06-03 -Resort Hotel,0,13,2017,May,24,30,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,96.49,1,2,Check-Out,2020-04-02 -Resort Hotel,0,230,2017,July,37,26,2,5,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,173.43,0,0,Check-Out,2020-03-03 -City Hotel,1,65,2015,July,38,8,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,79.94,0,0,Canceled,2018-05-03 -City Hotel,0,303,2017,June,27,29,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,118.5,0,0,Check-Out,2020-06-02 -Resort Hotel,0,43,2015,July,31,9,0,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,3,No Deposit,13.0,179.0,0,Transient-Party,102.32,0,0,Check-Out,2018-06-02 -City Hotel,1,21,2016,May,21,26,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,11.0,179.0,0,Transient,129.25,0,0,Canceled,2019-04-03 -Resort Hotel,1,31,2016,March,11,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,76.37,0,0,Canceled,2019-03-04 -City Hotel,0,45,2016,February,44,21,2,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,34.18,0,0,Check-Out,2019-07-04 -City Hotel,1,10,2016,December,53,24,0,2,2,2.0,0,BB,SWE,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,68.99,0,1,Canceled,2018-11-02 -Resort Hotel,0,207,2016,July,25,27,2,5,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,124.79,0,0,Check-Out,2019-05-04 -Resort Hotel,0,2,2016,November,51,31,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,29.86,0,0,Check-Out,2018-12-03 -City Hotel,1,1,2016,February,9,20,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,174.0,179.0,63,Transient-Party,78.1,0,0,Canceled,2018-11-02 -City Hotel,0,137,2017,May,24,14,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,94.59,0,0,Check-Out,2020-06-02 -City Hotel,1,181,2016,September,44,30,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,75,Transient-Party,71.29,0,0,No-Show,2019-06-03 -Resort Hotel,0,160,2017,August,37,12,4,7,2,0.0,0,HB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,196.86,0,3,Check-Out,2020-06-02 -Resort Hotel,0,36,2016,December,50,28,0,10,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,65.36,0,0,Check-Out,2019-10-04 -Resort Hotel,1,41,2017,April,15,14,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,83.24,0,0,No-Show,2020-02-01 -City Hotel,0,47,2015,December,50,10,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient-Party,115.5,0,0,Check-Out,2018-08-03 -City Hotel,1,51,2016,December,16,28,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.52,0,0,Canceled,2019-07-04 -Resort Hotel,0,24,2015,July,50,9,0,3,2,2.0,0,BB,POL,Direct,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient-Party,3.35,1,0,Check-Out,2018-06-02 -Resort Hotel,1,268,2015,October,47,31,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,61.19,0,0,Canceled,2018-01-03 -Resort Hotel,0,34,2015,July,32,20,2,3,2,0.0,0,BB,,Direct,Direct,1,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,98.14,0,2,Check-Out,2018-06-02 -City Hotel,0,101,2016,June,28,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,40,Transient,89.12,0,0,Check-Out,2019-06-03 -City Hotel,0,10,2015,October,44,9,0,1,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,115.81,0,0,Check-Out,2018-09-02 -City Hotel,1,31,2016,August,28,21,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,183.94,0,1,Canceled,2019-02-01 -City Hotel,0,87,2016,August,38,6,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,B,E,2,No Deposit,185.0,179.0,0,Transient-Party,95.48,0,0,Check-Out,2019-08-04 -Resort Hotel,0,267,2016,June,19,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,79.01,1,0,Check-Out,2019-03-04 -Resort Hotel,0,151,2015,July,32,17,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,165.85,0,2,Check-Out,2019-05-04 -City Hotel,0,0,2016,August,33,31,1,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,227.81,1,3,Check-Out,2019-05-04 -City Hotel,0,12,2016,December,50,15,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,331.0,0,Transient,40.61,1,0,Check-Out,2018-07-03 -Resort Hotel,0,0,2017,February,10,21,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient-Party,35.04,0,0,Check-Out,2020-03-03 -City Hotel,0,3,2016,September,42,10,1,1,1,0.0,0,BB,PRT,Corporate,GDS,0,0,0,A,A,0,No Deposit,199.0,179.0,0,Transient,71.53,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2017,March,10,16,0,3,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,331.0,0,Transient,37.37,0,0,Check-Out,2020-05-03 -City Hotel,1,44,2017,March,10,19,2,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.46,0,0,Canceled,2019-02-01 -City Hotel,1,12,2015,July,32,19,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,B,0,No Deposit,11.0,45.0,0,Transient,119.87,0,0,Canceled,2018-05-03 -City Hotel,1,7,2015,December,53,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,101.31,0,0,Canceled,2019-10-04 -City Hotel,0,2,2017,February,10,25,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,97.44,0,1,Check-Out,2019-10-04 -City Hotel,0,35,2017,March,9,18,0,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,242.0,0,Transient,81.14,0,0,Check-Out,2020-04-02 -Resort Hotel,0,27,2016,July,34,21,2,3,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,74.51,0,0,Check-Out,2019-07-04 -Resort Hotel,0,207,2016,March,16,31,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,H,0,Refundable,11.0,223.0,0,Transient,61.27,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2015,July,47,29,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,147.89,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,March,44,19,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,84.0,0,Transient,70.08,0,0,Check-Out,2019-09-03 -City Hotel,0,3,2016,February,9,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,16.0,68.0,0,Transient,40.57,0,0,Check-Out,2018-11-02 -Resort Hotel,0,267,2017,March,15,29,2,5,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,32.06,0,0,Check-Out,2020-04-02 -City Hotel,1,20,2015,August,36,2,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,53.0,0,Transient,125.76,0,0,Check-Out,2018-06-02 -City Hotel,0,144,2017,June,23,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,162.0,179.0,0,Transient,72.77,0,0,Canceled,2020-03-03 -City Hotel,0,37,2015,August,31,28,0,1,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,118.04,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,February,8,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,244.0,68.0,0,Transient,31.42,0,0,Check-Out,2019-11-03 -Resort Hotel,1,98,2017,February,2,27,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,44.09,0,1,No-Show,2019-11-03 -City Hotel,0,48,2017,June,26,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.82,0,0,Check-Out,2020-04-02 -Resort Hotel,1,56,2017,July,37,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,49.89,1,0,Canceled,2019-11-03 -Resort Hotel,1,131,2016,June,26,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,39.15,0,0,Canceled,2019-04-03 -Resort Hotel,0,135,2017,August,16,20,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,121.5,0,0,Check-Out,2020-06-02 -City Hotel,1,53,2016,February,10,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,88.0,179.0,0,Transient,51.49,0,0,Canceled,2018-10-03 -City Hotel,0,52,2017,March,16,28,0,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient,69.03,0,2,Check-Out,2020-01-04 -Resort Hotel,0,253,2017,July,26,10,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,97.89,0,2,Check-Out,2020-05-03 -City Hotel,1,160,2017,March,28,10,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,63.9,0,1,Canceled,2019-09-03 -City Hotel,0,234,2016,June,35,18,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,92.71,0,1,Check-Out,2019-06-03 -City Hotel,0,25,2016,October,41,24,2,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,109.52,0,0,Check-Out,2019-07-04 -City Hotel,0,48,2016,September,43,2,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,91.66,0,0,Check-Out,2019-08-04 -Resort Hotel,1,159,2016,July,27,21,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,2.0,179.0,0,Transient,61.12,0,0,Canceled,2018-12-03 -City Hotel,0,47,2016,October,17,13,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.29,1,2,Check-Out,2019-07-04 -City Hotel,1,42,2016,June,23,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,90.42,0,0,Canceled,2019-02-01 -City Hotel,0,84,2015,August,36,21,1,2,1,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,96.81,0,0,Canceled,2018-06-02 -Resort Hotel,0,19,2017,August,38,11,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,237.0,179.0,0,Transient,231.5,0,2,Check-Out,2020-06-02 -City Hotel,0,1,2016,September,45,20,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,153.13,0,0,Check-Out,2019-09-03 -Resort Hotel,0,109,2016,December,50,2,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,67.58,1,1,Check-Out,2019-12-04 -City Hotel,0,42,2016,May,23,28,2,3,1,0.0,0,BB,CHE,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,178.0,0,Transient,79.51,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2016,May,22,7,1,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.37,0,0,Check-Out,2019-09-03 -City Hotel,0,239,2015,September,36,13,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.05,0,1,Check-Out,2017-11-02 -City Hotel,1,92,2016,February,10,6,1,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.26,0,0,No-Show,2018-11-02 -Resort Hotel,1,46,2016,April,19,10,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,261.0,179.0,0,Transient-Party,44.82,0,0,Canceled,2019-03-04 -Resort Hotel,0,6,2016,June,21,31,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,219.71,1,2,Check-Out,2019-03-04 -Resort Hotel,1,371,2016,July,28,23,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,136.0,179.0,0,Transient-Party,116.34,0,0,Canceled,2019-04-03 -City Hotel,0,8,2017,April,22,24,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Transient,110.74,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2015,October,41,9,2,5,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,No Deposit,106.0,179.0,0,Transient-Party,33.55,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2016,February,10,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,66.0,0,Transient,53.71,0,0,Check-Out,2018-11-02 -Resort Hotel,1,11,2017,March,11,9,0,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,174.0,179.0,0,Transient,73.3,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,May,17,21,0,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,0,No Deposit,13.0,189.0,0,Transient,124.07,0,0,Check-Out,2019-06-03 -Resort Hotel,0,105,2017,February,7,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,161.0,179.0,0,Transient,72.24,0,1,Check-Out,2019-09-03 -City Hotel,0,45,2016,June,21,27,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,99.2,0,2,Check-Out,2019-03-04 -City Hotel,0,15,2017,June,21,14,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,I,1,No Deposit,12.0,179.0,0,Transient,98.64,0,1,Check-Out,2020-05-03 -City Hotel,0,46,2017,May,21,15,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,180.36,0,2,Check-Out,2019-11-03 -Resort Hotel,0,14,2016,October,44,19,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.03,0,1,Check-Out,2018-08-03 -Resort Hotel,0,40,2016,October,43,13,3,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,119.34,0,0,Check-Out,2019-05-04 -Resort Hotel,1,156,2016,October,42,25,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,92.0,179.0,0,Transient,99.29,0,0,Canceled,2019-08-04 -City Hotel,1,46,2016,July,30,19,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,11.0,179.0,0,Transient,116.93,0,2,Canceled,2020-02-01 -City Hotel,0,139,2016,January,4,21,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,21,Transient,116.99,0,0,Check-Out,2019-10-04 -City Hotel,1,27,2015,March,11,21,0,2,1,0.0,0,BB,PRT,Undefined,Undefined,1,0,0,B,B,1,No Deposit,12.0,179.0,0,Contract,44.76,0,1,Canceled,2019-01-03 -Resort Hotel,1,65,2017,July,37,10,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,198.85,0,2,Canceled,2020-06-02 -City Hotel,1,47,2016,December,4,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,June,10,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,71.19,0,0,Check-Out,2019-03-04 -Resort Hotel,0,40,2015,December,45,10,0,1,2,0.0,0,BB,,Groups,Direct,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,118.09,0,0,Check-Out,2018-06-02 -City Hotel,1,0,2017,January,4,9,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.21,0,0,Canceled,2019-10-04 -City Hotel,1,301,2016,March,28,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.21,0,0,Canceled,2018-12-03 -Resort Hotel,0,11,2015,July,36,20,1,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,92.62,0,1,Check-Out,2018-06-02 -City Hotel,1,147,2016,February,10,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,8.0,179.0,0,Contract,0.0,0,1,Canceled,2018-11-02 -City Hotel,1,398,2016,October,38,12,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,1,Non Refund,10.0,179.0,0,Transient,39.88,0,0,Canceled,2017-12-03 -Resort Hotel,1,265,2017,August,41,13,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,214.69,0,0,Canceled,2019-08-04 -City Hotel,0,0,2016,October,46,17,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,162.57,0,0,Check-Out,2019-09-03 -Resort Hotel,1,0,2016,February,10,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,34.63,0,0,Canceled,2018-11-02 -City Hotel,0,252,2016,August,44,2,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,123.1,0,2,Check-Out,2019-08-04 -City Hotel,0,68,2016,August,16,20,1,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,152.6,0,3,Check-Out,2019-02-01 -City Hotel,0,154,2017,August,31,10,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,112.93,0,1,Check-Out,2020-06-02 -Resort Hotel,0,137,2016,August,36,17,1,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,82.13,1,1,Check-Out,2019-06-03 -City Hotel,0,104,2016,September,46,29,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,163.04,0,2,Check-Out,2018-12-03 -City Hotel,1,1,2015,September,39,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,217.83,1,0,Canceled,2018-08-03 -City Hotel,0,55,2017,July,20,14,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,121.71,0,1,Check-Out,2020-03-03 -City Hotel,1,100,2016,June,27,19,0,1,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,116.89,0,1,Canceled,2019-05-04 -Resort Hotel,0,200,2016,June,25,15,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,74.01,0,0,Check-Out,2019-08-04 -City Hotel,0,40,2016,January,9,18,0,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.85,0,2,Check-Out,2019-02-01 -City Hotel,0,28,2017,March,18,15,1,2,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,245.0,0,Transient,134.9,0,2,Check-Out,2020-02-01 -City Hotel,0,0,2017,January,8,18,0,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,162.94,0,0,Check-Out,2020-04-02 -City Hotel,1,7,2016,October,44,13,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.0,0,0,Check-Out,2018-08-03 -Resort Hotel,0,156,2017,March,27,7,2,5,1,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient,28.54,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,August,37,28,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,133.98,0,1,Check-Out,2019-06-03 -City Hotel,0,245,2016,June,24,4,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,1.24,0,1,Check-Out,2019-04-03 -Resort Hotel,0,1,2015,July,34,27,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,103.49,0,0,Check-Out,2018-05-03 -City Hotel,0,120,2017,June,37,20,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,241.59,0,0,Check-Out,2020-04-02 -City Hotel,1,147,2016,November,52,31,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,65.11,0,2,Canceled,2019-08-04 -City Hotel,0,37,2016,February,8,21,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,89.27,0,0,Check-Out,2018-11-02 -City Hotel,1,394,2017,March,11,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,75,Transient,65.62,0,0,Canceled,2018-10-03 -Resort Hotel,0,39,2016,October,44,28,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.57,1,2,Check-Out,2019-09-03 -Resort Hotel,0,64,2017,March,11,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,71.43,0,1,Check-Out,2020-04-02 -City Hotel,0,201,2016,August,37,15,1,4,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,122.17,1,2,Check-Out,2019-08-04 -City Hotel,0,3,2016,December,49,23,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,121.95,0,0,Check-Out,2018-11-02 -City Hotel,0,148,2016,October,47,13,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient-Party,68.94,0,1,Check-Out,2019-12-04 -Resort Hotel,1,12,2016,February,11,7,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,284.0,179.0,0,Transient,79.33,0,0,Canceled,2019-03-04 -Resort Hotel,1,52,2015,November,44,14,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,59.77,0,0,No-Show,2018-08-03 -City Hotel,1,31,2016,October,46,15,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.13,0,0,Canceled,2019-09-03 -City Hotel,0,8,2016,November,52,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,80.74,0,0,Check-Out,2019-10-04 -City Hotel,0,147,2016,September,44,27,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.34,0,2,Check-Out,2019-03-04 -City Hotel,0,9,2016,March,4,28,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,C,D,1,No Deposit,78.0,179.0,21,Transient,67.23,0,2,Check-Out,2019-02-01 -City Hotel,1,304,2015,October,39,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,18,Contract,73.71,0,0,Canceled,2017-10-03 -City Hotel,0,0,2017,May,22,6,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,65.66,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,August,33,25,1,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,37.48,0,0,Check-Out,2018-06-02 -Resort Hotel,1,196,2016,August,22,28,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,101.34,0,0,Canceled,2019-06-03 -City Hotel,0,10,2016,January,3,16,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,116.8,0,0,Check-Out,2019-05-04 -City Hotel,0,258,2017,July,20,27,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,149.28,0,2,Check-Out,2020-03-03 -City Hotel,0,134,2017,January,5,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,203.11,1,3,Check-Out,2019-11-03 -Resort Hotel,0,78,2016,July,31,31,2,7,3,1.0,0,BB,CHE,Direct,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,179.88,0,0,Canceled,2019-05-04 -Resort Hotel,0,2,2017,February,10,19,0,1,1,0.0,0,BB,,Groups,Direct,0,0,0,A,E,2,No Deposit,281.0,179.0,0,Transient,38.36,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2016,November,50,27,1,1,1,0.0,0,BB,POL,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,121.23,0,0,Check-Out,2019-12-04 -City Hotel,0,15,2015,September,36,10,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -Resort Hotel,0,40,2015,December,49,27,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,39.82,0,0,Check-Out,2019-02-01 -City Hotel,0,259,2015,July,44,21,2,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,63.07,0,0,Check-Out,2018-07-03 -Resort Hotel,1,34,2016,December,50,3,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,325.0,179.0,0,Transient-Party,63.0,0,0,Canceled,2019-10-04 -Resort Hotel,0,49,2015,December,51,11,1,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,D,1,No Deposit,15.0,179.0,0,Transient-Party,62.36,0,0,Check-Out,2019-01-03 -City Hotel,0,2,2017,June,34,6,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,10.0,179.0,0,Transient,0.65,0,0,Check-Out,2020-04-02 -Resort Hotel,0,13,2016,February,16,25,2,1,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,106.91,0,0,Check-Out,2019-04-03 -Resort Hotel,0,1,2015,August,36,26,1,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,157.18,0,0,Check-Out,2019-04-03 -City Hotel,1,82,2016,January,10,10,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.01,0,0,No-Show,2018-11-02 -City Hotel,0,0,2015,August,37,10,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,80.2,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2016,February,9,8,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,177.0,179.0,0,Transient,82.32,0,1,Check-Out,2018-11-02 -Resort Hotel,0,16,2016,March,18,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,61.72,0,0,Check-Out,2019-02-01 -City Hotel,1,17,2016,October,44,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,64,Transient,76.68,0,0,Canceled,2018-08-03 -City Hotel,0,107,2016,March,13,25,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,42.65,0,1,Check-Out,2018-12-03 -City Hotel,0,4,2017,February,10,8,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,111.89,0,0,Check-Out,2019-10-04 -Resort Hotel,0,17,2016,December,51,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,299.0,179.0,0,Transient-Party,93.72,0,0,Check-Out,2018-08-03 -Resort Hotel,0,4,2016,August,39,14,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,176.36,1,0,Canceled,2019-05-04 -Resort Hotel,0,28,2016,September,14,20,2,5,2,0.0,0,HB,AUT,Groups,Corporate,1,0,1,E,I,0,No Deposit,12.0,179.0,75,Transient-Party,72.59,1,1,Check-Out,2020-05-03 -Resort Hotel,0,43,2016,November,43,14,2,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,356.0,179.0,0,Contract,71.63,0,0,Check-Out,2019-09-03 -Resort Hotel,0,106,2015,December,53,7,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient-Party,48.31,0,0,Check-Out,2018-12-03 -City Hotel,0,16,2017,February,10,2,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,71.05,0,1,Check-Out,2020-01-04 -Resort Hotel,0,243,2015,October,42,13,2,5,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,105.37,0,0,Check-Out,2018-06-02 -Resort Hotel,0,43,2015,September,36,28,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,42.81,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,March,9,31,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,C,0,No Deposit,12.0,63.0,0,Transient,31.23,1,0,Check-Out,2019-04-03 -City Hotel,1,40,2016,November,51,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,59.5,0,0,Canceled,2019-09-03 -City Hotel,1,12,2016,March,22,16,0,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.85,0,0,Canceled,2019-02-01 -Resort Hotel,0,103,2016,July,32,31,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,248.0,179.0,0,Transient,206.09,0,0,Check-Out,2019-05-04 -Resort Hotel,0,156,2016,December,35,27,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,34.0,179.0,18,Transient-Party,73.69,0,0,Check-Out,2018-09-02 -Resort Hotel,1,45,2017,August,38,16,2,5,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient,191.45,0,0,Canceled,2020-07-03 -City Hotel,1,62,2016,December,22,30,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,19,Transient,62.66,0,0,Canceled,2019-11-03 -Resort Hotel,0,152,2016,July,31,4,2,5,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,85.0,179.0,0,Transient-Party,77.23,0,0,Check-Out,2019-05-04 -City Hotel,1,13,2015,August,40,4,2,2,3,0.0,0,BB,PRT,Direct,Undefined,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,126.9,0,0,No-Show,2019-09-03 -City Hotel,0,1,2016,November,46,27,1,0,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,113.85,1,1,Check-Out,2019-11-03 -City Hotel,1,4,2017,June,21,21,0,1,2,0.0,0,BB,USA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,147.64,0,3,Canceled,2020-04-02 -City Hotel,0,47,2016,December,49,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient,61.75,0,0,Check-Out,2018-10-03 -City Hotel,1,13,2016,April,18,28,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,62.74,0,0,Canceled,2019-02-01 -City Hotel,1,152,2017,June,27,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,98.11,0,0,Canceled,2020-05-03 -City Hotel,1,5,2017,January,2,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,78.0,0,Transient,40.1,0,0,Canceled,2019-11-03 -Resort Hotel,0,1,2017,May,23,28,1,1,1,0.0,0,BB,CN,Corporate,Corporate,0,0,0,A,A,3,No Deposit,205.0,331.0,0,Transient,64.76,0,0,Check-Out,2020-01-04 -Resort Hotel,1,24,2015,September,35,3,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,E,0,No Deposit,245.0,179.0,0,Transient,100.85,0,1,Canceled,2018-09-02 -City Hotel,0,0,2017,January,3,28,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.54,0,0,Check-Out,2019-11-03 -City Hotel,1,8,2016,February,3,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,168.0,179.0,0,Transient,65.3,0,0,Canceled,2018-11-02 -City Hotel,1,104,2017,April,8,27,0,3,2,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Canceled,2020-02-01 -City Hotel,0,0,2015,September,42,24,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,28.59,0,0,Canceled,2018-06-02 -City Hotel,1,20,2016,August,35,14,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,179.65,0,2,Canceled,2019-08-04 -City Hotel,0,8,2015,September,31,4,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,155.87,0,0,Check-Out,2018-05-03 -City Hotel,0,52,2016,May,21,15,2,1,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,179.13,0,2,Check-Out,2019-03-04 -Resort Hotel,0,50,2017,January,4,6,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient-Party,63.13,1,0,Check-Out,2019-09-03 -Resort Hotel,1,187,2016,October,45,25,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,166.0,179.0,0,Transient,77.94,0,0,No-Show,2019-08-04 -City Hotel,1,42,2017,April,24,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,121.72,0,0,Canceled,2020-01-04 -Resort Hotel,1,66,2016,October,44,25,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,77.56,0,0,Canceled,2019-01-03 -City Hotel,1,7,2016,October,45,3,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,124.6,0,2,Canceled,2019-09-03 -City Hotel,1,155,2016,August,44,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,F,0,Non Refund,12.0,179.0,0,Transient,144.75,0,0,Canceled,2018-08-03 -City Hotel,1,399,2017,October,49,15,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient,38.91,0,0,Canceled,2019-11-03 -City Hotel,0,295,2017,June,31,9,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,171.16,0,2,Check-Out,2020-07-03 -Resort Hotel,0,176,2017,December,51,21,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,73.96,0,0,Check-Out,2019-12-04 -Resort Hotel,0,273,2016,May,20,14,1,1,1,0.0,0,HB,USA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient-Party,70.58,1,0,Check-Out,2019-04-03 -City Hotel,0,1,2017,March,17,25,0,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,149.45,0,2,Check-Out,2019-12-04 -City Hotel,0,13,2017,April,19,24,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,76.3,0,0,Check-Out,2020-04-02 -Resort Hotel,0,94,2015,December,50,28,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,125.96,0,0,Check-Out,2018-07-03 -City Hotel,0,11,2016,October,5,22,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,96.04,0,1,Check-Out,2018-12-03 -City Hotel,1,35,2016,December,10,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,Non Refund,12.0,199.0,0,Transient,36.37,0,0,Canceled,2019-03-04 -City Hotel,1,396,2016,October,44,9,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,74.68,0,0,Canceled,2018-12-03 -Resort Hotel,0,39,2016,December,50,4,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,95.05,0,1,Check-Out,2019-08-04 -City Hotel,0,0,2017,February,10,28,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,E,D,0,No Deposit,100.0,173.0,0,Transient,83.09,0,0,Check-Out,2019-11-03 -City Hotel,1,286,2017,August,37,9,0,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Refundable,2.0,179.0,0,Transient,152.52,0,0,Canceled,2020-06-02 -Resort Hotel,0,13,2015,October,44,18,1,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,82.48,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2017,March,18,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,103.85,1,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,July,22,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,3.48,0,0,Check-Out,2020-03-03 -City Hotel,1,43,2017,March,17,20,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,87.41,0,0,Canceled,2020-02-01 -City Hotel,0,0,2017,May,21,28,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,89.24,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,August,32,15,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,340.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,44,2017,May,17,6,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,94.27,0,0,Check-Out,2020-03-03 -Resort Hotel,1,84,2016,August,30,22,2,0,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,0,No Deposit,89.0,179.0,0,Transient-Party,192.1,0,1,Canceled,2019-03-04 -Resort Hotel,0,1,2017,February,9,2,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,40.83,0,1,Check-Out,2020-02-01 -City Hotel,1,428,2017,March,15,29,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,17,Transient,62.66,0,0,Canceled,2019-10-04 -Resort Hotel,0,16,2015,January,3,6,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,94.0,179.0,0,Group,41.37,0,0,Check-Out,2018-12-03 -City Hotel,0,246,2017,August,36,15,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,238.33,0,1,Check-Out,2020-02-01 -City Hotel,1,1,2016,February,9,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,205.0,0,Transient,39.53,0,0,Canceled,2018-11-02 -City Hotel,1,103,2017,April,21,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,77.58,0,0,Canceled,2019-02-01 -City Hotel,1,438,2016,October,45,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,84.56,0,0,Canceled,2018-08-03 -City Hotel,0,13,2017,March,11,16,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,108.14,0,1,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,August,37,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,74.9,1,2,Check-Out,2018-11-02 -City Hotel,1,32,2016,April,16,27,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,68.92,0,0,Canceled,2019-02-01 -Resort Hotel,0,148,2016,June,24,5,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,83.66,0,1,Check-Out,2019-05-04 -City Hotel,0,51,2016,June,26,20,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,23.0,179.0,0,Transient-Party,2.13,0,1,Check-Out,2019-06-03 -City Hotel,0,11,2015,August,35,8,2,5,2,0.0,0,HB,,Undefined,Undefined,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,64.53,0,2,Check-Out,2018-07-03 -City Hotel,1,140,2016,December,53,15,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,61.57,0,1,Canceled,2018-11-02 -Resort Hotel,1,187,2017,July,35,15,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,8.0,179.0,0,Transient,159.71,0,2,Canceled,2020-01-04 -City Hotel,0,257,2016,June,28,12,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,22.0,179.0,0,Transient-Party,122.59,0,0,Check-Out,2019-02-01 -Resort Hotel,1,16,2017,July,26,21,2,5,2,1.0,0,BB,PRT,Direct,Direct,1,0,0,L,E,0,No Deposit,13.0,179.0,0,Transient,145.55,0,0,Canceled,2020-02-01 -Resort Hotel,0,296,2017,August,35,18,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient-Party,172.29,0,1,Check-Out,2020-06-02 -City Hotel,0,421,2016,September,28,9,1,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,97.64,0,0,Check-Out,2019-06-03 -City Hotel,0,42,2017,August,31,6,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,163.72,0,2,Check-Out,2019-07-04 -City Hotel,1,43,2017,February,8,23,2,5,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,331.0,0,Transient,90.8,0,0,Canceled,2019-11-03 -City Hotel,1,96,2016,October,43,8,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,9.0,179.0,0,Transient,154.76,0,0,Canceled,2019-08-04 -Resort Hotel,1,40,2017,June,25,12,1,0,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,121.72,0,0,Canceled,2020-02-01 -Resort Hotel,0,44,2016,June,27,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,324.0,179.0,0,Transient,70.91,1,0,Check-Out,2019-03-04 -Resort Hotel,0,51,2015,August,38,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,153.6,0,2,Check-Out,2018-05-03 -Resort Hotel,0,0,2017,February,9,4,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,72.2,1,1,Check-Out,2019-10-04 -Resort Hotel,0,42,2016,March,15,14,2,5,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,1,No Deposit,327.0,179.0,0,Transient,75.75,0,0,Check-Out,2019-02-01 -Resort Hotel,0,256,2015,July,37,24,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,L,A,0,No Deposit,245.0,179.0,0,Transient,129.32,0,0,Check-Out,2018-05-03 -City Hotel,1,264,2015,October,46,29,0,3,2,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,12.0,45.0,0,Transient,72.22,0,0,Canceled,2018-01-03 -City Hotel,0,1,2017,July,30,30,2,1,3,0.0,0,BB,USA,Online TA,Direct,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Transient,77.35,0,3,Check-Out,2020-06-02 -City Hotel,0,100,2016,March,9,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,116.45,0,1,Check-Out,2018-12-03 -Resort Hotel,0,2,2017,March,11,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,85.68,0,1,Check-Out,2020-05-03 -City Hotel,0,90,2017,May,24,8,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,194.35,1,0,Check-Out,2020-05-03 -Resort Hotel,0,33,2017,February,10,17,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,92.0,0,Transient-Party,38.41,0,0,Check-Out,2019-12-04 -Resort Hotel,0,12,2016,November,50,30,1,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,186.0,179.0,0,Transient,38.17,0,2,Check-Out,2018-11-02 -City Hotel,0,12,2016,November,43,5,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,121.08,0,0,Check-Out,2019-07-04 -Resort Hotel,0,147,2016,March,10,21,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient-Party,76.58,0,0,Check-Out,2019-02-01 -Resort Hotel,0,246,2016,June,25,21,0,10,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,96.31,0,0,Check-Out,2019-06-03 -City Hotel,1,44,2016,May,37,20,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.89,0,0,No-Show,2019-02-01 -City Hotel,0,271,2016,September,33,27,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,150.0,179.0,75,Transient-Party,97.54,0,0,Check-Out,2018-05-03 -City Hotel,0,92,2016,September,42,21,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-09-03 -City Hotel,0,188,2017,March,11,11,2,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,236.35,0,0,Check-Out,2020-01-04 -Resort Hotel,0,100,2017,May,23,19,2,0,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,89.2,0,0,Check-Out,2020-04-02 -City Hotel,1,97,2016,April,27,10,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,40,Transient,127.11,0,0,Canceled,2019-01-03 -City Hotel,0,50,2017,July,22,2,2,4,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,175.85,0,3,Check-Out,2020-04-02 -City Hotel,0,2,2015,July,28,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,D,D,0,No Deposit,65.0,179.0,0,Group,0.0,0,1,Check-Out,2018-07-03 -Resort Hotel,0,164,2017,March,23,3,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,113.59,0,1,Check-Out,2020-02-01 -City Hotel,0,39,2017,May,21,26,0,2,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Group,107.19,0,1,Check-Out,2020-05-03 -City Hotel,1,276,2016,September,32,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.24,0,0,Canceled,2018-06-02 -Resort Hotel,0,135,2016,August,30,16,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,244.0,179.0,0,Transient,198.44,1,2,Check-Out,2019-05-04 -City Hotel,0,1,2016,March,43,12,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,113.0,0,0,Check-Out,2018-11-02 -City Hotel,0,105,2016,June,27,3,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,63.94,0,2,Check-Out,2019-03-04 -City Hotel,0,94,2015,November,49,5,0,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,66.83,0,0,Check-Out,2019-10-04 -City Hotel,0,58,2017,July,14,6,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,115.03,0,2,Check-Out,2020-04-02 -City Hotel,1,93,2016,March,10,5,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.41,0,1,Canceled,2018-12-03 -City Hotel,0,161,2017,August,37,24,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,114.65,0,1,Check-Out,2020-06-02 -Resort Hotel,0,46,2017,July,31,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,160.31,1,0,Check-Out,2020-06-02 -Resort Hotel,1,264,2016,August,36,9,2,5,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,330.0,179.0,0,Transient,88.03,0,0,Canceled,2019-11-03 -Resort Hotel,0,280,2015,September,42,10,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,171.0,179.0,0,Transient,113.5,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,October,45,18,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,F,2,No Deposit,17.0,71.0,0,Transient,99.94,0,0,Check-Out,2019-09-03 -Resort Hotel,1,108,2017,March,17,23,2,5,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,E,F,0,No Deposit,170.0,179.0,0,Transient,86.65,0,2,Canceled,2020-05-03 -City Hotel,1,199,2016,May,42,5,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,138.37,0,3,Canceled,2019-08-04 -City Hotel,1,279,2016,November,51,1,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,7.0,179.0,0,Transient,99.02,0,0,Canceled,2019-06-03 -City Hotel,0,90,2015,July,31,8,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,116.76,0,0,Check-Out,2018-05-03 -City Hotel,1,58,2017,March,10,4,0,2,3,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,A,A,0,No Deposit,12.0,223.0,0,Transient-Party,69.68,0,0,Canceled,2020-06-02 -City Hotel,0,33,2017,May,23,25,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,158.0,179.0,0,Transient,164.88,0,3,Canceled,2020-03-03 -City Hotel,1,78,2015,November,50,25,0,2,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,97.58,0,1,Canceled,2018-05-03 -City Hotel,0,41,2016,April,17,30,2,3,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,H,G,1,No Deposit,9.0,179.0,0,Transient-Party,78.68,0,2,Check-Out,2019-06-03 -City Hotel,1,17,2017,May,22,25,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.15,0,2,Canceled,2020-06-02 -Resort Hotel,0,99,2016,October,41,6,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,276.0,179.0,0,Transient,214.91,0,0,Check-Out,2019-08-04 -City Hotel,1,0,2017,June,28,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.73,0,0,Canceled,2020-04-02 -Resort Hotel,1,108,2017,June,35,28,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,99.29,0,1,Canceled,2019-08-04 -Resort Hotel,0,0,2015,November,49,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,219.0,0,Transient-Party,40.61,1,0,Check-Out,2019-11-03 -City Hotel,0,4,2015,July,34,2,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,61.75,0,0,Check-Out,2018-07-03 -City Hotel,1,13,2017,August,35,14,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,11.0,179.0,0,Transient,176.92,0,0,Canceled,2020-04-02 -Resort Hotel,0,1,2016,December,28,2,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,86.0,77.0,0,Transient-Party,62.05,0,0,Check-Out,2019-02-01 -City Hotel,0,97,2017,April,13,25,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,102.41,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,December,51,29,1,4,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,74.64,1,2,Check-Out,2019-09-03 -City Hotel,0,10,2017,January,11,12,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,13.0,179.0,0,Transient,77.08,0,2,Check-Out,2019-10-04 -Resort Hotel,0,136,2016,July,20,31,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,128.86,1,0,Check-Out,2019-03-04 -City Hotel,0,320,2016,July,36,18,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,150.39,1,1,Check-Out,2019-08-04 -City Hotel,1,40,2017,June,15,28,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,191.0,179.0,0,Contract,60.99,0,0,Canceled,2020-04-02 -City Hotel,0,45,2017,May,20,6,1,3,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,252.0,1,3,Check-Out,2020-02-01 -Resort Hotel,0,242,2017,July,36,29,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,242.0,179.0,0,Transient,149.72,0,1,Check-Out,2019-10-04 -City Hotel,1,98,2017,June,31,21,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,7.0,179.0,0,Transient,163.35,0,1,Canceled,2020-04-02 -Resort Hotel,0,153,2017,June,26,2,0,1,2,1.0,0,HB,USA,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,159.62,0,2,Check-Out,2020-03-03 -City Hotel,0,2,2015,July,50,5,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,18.0,179.0,0,Transient,88.05,0,0,Check-Out,2018-05-03 -Resort Hotel,0,18,2015,November,44,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,59.99,0,0,Check-Out,2018-12-03 -City Hotel,0,53,2016,October,44,29,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,10.0,179.0,0,Transient,216.46,0,0,Check-Out,2019-07-04 -City Hotel,0,39,2016,February,8,12,2,5,2,0.0,0,BB,,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,68.33,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,February,9,5,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,61.21,0,1,Check-Out,2018-11-02 -Resort Hotel,1,3,2015,August,37,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,123.49,1,0,Canceled,2018-06-02 -City Hotel,1,18,2016,September,43,7,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,7.0,179.0,0,Transient,124.2,0,0,Canceled,2019-02-01 -Resort Hotel,0,55,2016,April,16,16,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,D,B,0,No Deposit,188.0,179.0,0,Transient-Party,61.69,0,0,Check-Out,2019-03-04 -Resort Hotel,0,37,2016,October,43,29,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,190.01,1,1,Check-Out,2019-08-04 -Resort Hotel,0,147,2017,May,23,2,2,5,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,239.99,1,2,Check-Out,2020-06-02 -City Hotel,0,260,2016,October,45,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.81,0,0,Check-Out,2019-05-04 -Resort Hotel,0,191,2016,August,37,25,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.83,0,1,Check-Out,2018-09-02 -City Hotel,1,24,2016,February,9,9,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,11.0,179.0,0,Transient,94.16,0,1,No-Show,2019-03-04 -City Hotel,0,24,2015,July,30,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,162.69,0,2,Check-Out,2018-05-03 -City Hotel,1,205,2016,May,38,26,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,151.44,0,0,Canceled,2019-07-04 -City Hotel,0,46,2016,December,49,6,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,94.48,0,0,Check-Out,2019-07-04 -City Hotel,0,112,2015,July,30,29,0,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,115.08,0,0,Check-Out,2020-02-01 -City Hotel,0,202,2016,August,37,31,2,2,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-09-03 -City Hotel,0,185,2016,June,28,28,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,56.28,0,2,Check-Out,2019-06-03 -City Hotel,0,150,2015,July,32,9,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,99.7,0,1,Check-Out,2018-12-03 -City Hotel,0,10,2016,February,9,15,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.37,0,1,Check-Out,2019-03-04 -City Hotel,0,38,2016,March,22,21,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.52,0,1,Check-Out,2019-02-01 -Resort Hotel,0,262,2016,November,43,5,4,10,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,183.0,179.0,75,Contract,83.78,0,0,Check-Out,2019-06-03 -Resort Hotel,0,279,2016,August,21,10,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,102.95,0,0,Check-Out,2019-05-04 -City Hotel,0,131,2017,April,17,30,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.11,0,2,Check-Out,2019-11-03 -City Hotel,0,308,2016,August,35,31,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,75.67,0,0,Check-Out,2019-05-04 -Resort Hotel,0,58,2015,December,51,21,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,94.46,0,0,Check-Out,2018-11-02 -City Hotel,1,260,2015,July,35,17,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient-Party,79.48,0,1,Canceled,2017-09-02 -Resort Hotel,0,90,2016,April,11,13,1,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,30.08,0,0,Check-Out,2019-03-04 -Resort Hotel,0,31,2016,July,35,16,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,45.31,1,1,Check-Out,2019-06-03 -Resort Hotel,0,12,2017,May,16,9,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,134.99,0,0,Check-Out,2020-03-03 -City Hotel,0,33,2017,February,10,23,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,75.22,0,1,Check-Out,2019-12-04 -Resort Hotel,0,49,2017,August,26,31,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,237.0,179.0,0,Transient,117.14,1,1,Check-Out,2020-02-01 -City Hotel,0,7,2017,February,8,8,0,5,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,174.0,331.0,0,Transient-Party,57.63,0,0,Check-Out,2020-04-02 -Resort Hotel,0,23,2016,December,49,24,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,D,1,No Deposit,87.0,179.0,0,Transient-Party,63.68,0,0,Check-Out,2019-11-03 -Resort Hotel,1,245,2015,December,49,6,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Transient,81.1,0,0,Canceled,2018-06-02 -City Hotel,1,219,2017,August,23,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,294.0,179.0,0,Transient,74.61,0,0,Canceled,2020-03-03 -City Hotel,0,44,2015,October,51,18,2,2,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,139.67,0,0,Canceled,2018-06-02 -Resort Hotel,0,5,2016,June,26,24,3,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,320.0,179.0,0,Transient,178.56,0,0,Check-Out,2019-05-04 -Resort Hotel,0,133,2015,July,37,24,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,237.0,179.0,0,Transient-Party,76.58,0,1,Check-Out,2018-06-02 -City Hotel,0,250,2015,October,44,21,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.06,0,0,Check-Out,2018-08-03 -City Hotel,0,138,2016,July,25,23,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.62,0,1,Check-Out,2019-01-03 -Resort Hotel,0,251,2016,July,33,18,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient-Party,63.16,1,1,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,March,11,29,0,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient,1.32,1,0,Check-Out,2019-01-03 -City Hotel,0,7,2016,December,51,29,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.89,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,June,27,31,0,2,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,0,No Deposit,15.0,45.0,0,Transient,0.29,0,0,Check-Out,2019-11-03 -Resort Hotel,0,12,2016,April,11,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,60.12,0,0,Check-Out,2019-01-03 -Resort Hotel,0,189,2016,March,23,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,223.0,0,Transient-Party,69.22,1,0,Check-Out,2019-06-03 -City Hotel,0,19,2016,February,9,21,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,41.0,77.0,0,Transient-Party,74.27,0,0,Check-Out,2018-10-03 -City Hotel,1,29,2016,August,42,18,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.6,0,0,Canceled,2019-08-04 -City Hotel,1,63,2016,October,42,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,87.0,179.0,0,Transient,111.94,0,0,Canceled,2019-07-04 -City Hotel,0,5,2015,October,46,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,285.0,0,Transient-Party,86.57,0,0,Check-Out,2018-08-03 -Resort Hotel,1,139,2016,March,17,26,0,3,2,0.0,0,BB,AUT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,76.65,0,0,Canceled,2019-03-04 -Resort Hotel,0,8,2016,August,30,31,2,6,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,236.57,1,0,Check-Out,2019-06-03 -City Hotel,1,313,2016,June,37,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,93.6,0,0,Canceled,2019-03-04 -City Hotel,0,96,2016,September,34,16,2,4,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,139.9,0,2,Check-Out,2019-08-04 -City Hotel,0,35,2017,May,25,27,2,3,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,115.56,0,2,Check-Out,2020-03-03 -City Hotel,1,70,2016,February,20,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.5,0,0,Canceled,2018-10-03 -City Hotel,1,25,2017,August,36,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,191.93,0,0,Canceled,2019-11-03 -Resort Hotel,0,89,2016,July,32,16,0,2,1,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,155.41,0,0,Check-Out,2018-06-02 -Resort Hotel,0,8,2016,May,23,24,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,H,0,No Deposit,248.0,179.0,0,Transient,66.38,1,0,Check-Out,2019-03-04 -City Hotel,1,416,2017,May,22,28,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,153.99,0,0,Canceled,2020-03-03 -City Hotel,0,21,2016,December,53,15,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.71,0,3,Check-Out,2019-10-04 -City Hotel,0,102,2015,September,37,21,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.26,1,0,Check-Out,2019-08-04 -City Hotel,1,214,2016,October,47,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,96.29,0,0,Canceled,2018-01-03 -City Hotel,1,154,2016,May,23,15,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,80.91,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2015,October,42,15,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,242.0,0,Transient-Party,31.86,0,0,Check-Out,2018-09-02 -City Hotel,0,11,2017,April,17,14,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,136.03,1,0,Check-Out,2019-12-04 -City Hotel,1,173,2016,September,36,16,4,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,167.0,179.0,0,Transient,133.95,0,0,Canceled,2019-04-03 -Resort Hotel,0,1,2017,February,16,13,1,4,1,0.0,0,Undefined,DEU,Groups,Corporate,0,0,0,D,A,0,No Deposit,92.0,179.0,0,Transient-Party,121.93,0,0,Check-Out,2019-02-01 -Resort Hotel,0,13,2015,October,46,30,1,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,92.77,0,0,Check-Out,2018-08-03 -City Hotel,1,80,2015,August,45,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,144.81,0,0,Canceled,2018-06-02 -Resort Hotel,0,3,2017,August,23,18,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,182.0,179.0,0,Group,1.05,0,1,Check-Out,2020-06-02 -Resort Hotel,0,45,2015,August,35,20,2,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,125.3,1,0,Check-Out,2018-06-02 -Resort Hotel,1,48,2017,January,8,28,2,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,71.66,0,2,Canceled,2019-10-04 -Resort Hotel,0,192,2017,June,27,10,2,5,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,199.0,179.0,0,Contract,125.0,0,0,Check-Out,2020-04-02 -Resort Hotel,1,33,2016,February,10,16,2,5,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,9.0,179.0,0,Transient,170.9,0,2,Canceled,2018-11-02 -Resort Hotel,1,52,2015,December,50,30,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,60.4,0,0,Canceled,2018-11-02 -City Hotel,0,0,2016,June,26,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,1,No Deposit,16.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-06-03 -Resort Hotel,1,60,2017,July,26,2,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,238.0,179.0,0,Transient,182.69,0,0,Canceled,2020-06-02 -Resort Hotel,0,15,2017,June,21,15,0,1,1,0.0,0,BB,GBR,Complementary,Corporate,1,0,1,E,F,2,No Deposit,14.0,261.0,0,Group,0.27,0,0,Check-Out,2019-11-03 -City Hotel,1,19,2017,August,34,6,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,106.78,0,0,Canceled,2019-10-04 -City Hotel,0,136,2016,July,30,31,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,93.44,0,0,Check-Out,2019-06-03 -City Hotel,0,291,2016,October,23,28,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,122.52,0,1,Check-Out,2019-06-03 -Resort Hotel,0,37,2016,October,42,5,1,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,64.8,0,0,Check-Out,2019-09-03 -City Hotel,0,15,2016,June,26,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient,155.02,0,0,Check-Out,2019-06-03 -City Hotel,0,43,2015,October,43,6,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,221.0,179.0,0,Transient-Party,36.4,0,0,Check-Out,2018-07-03 -Resort Hotel,0,297,2015,October,40,4,2,4,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,223.0,179.0,0,Transient-Party,74.34,0,0,Check-Out,2018-09-02 -Resort Hotel,0,145,2016,June,23,21,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,164.89,0,0,Check-Out,2019-05-04 -City Hotel,1,19,2017,August,36,27,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.89,0,1,Canceled,2020-06-02 -City Hotel,0,101,2016,December,53,15,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,63.33,0,1,Check-Out,2019-11-03 -Resort Hotel,0,157,2016,March,16,11,2,5,3,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,E,A,1,No Deposit,32.0,179.0,0,Transient,79.06,0,0,Check-Out,2019-03-04 -City Hotel,0,30,2015,September,51,7,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.8,0,0,Check-Out,2017-12-03 -Resort Hotel,0,34,2016,December,48,5,1,0,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,C,0,No Deposit,349.0,179.0,0,Transient,0.0,1,2,Check-Out,2020-01-04 -Resort Hotel,0,145,2016,September,34,13,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,98.31,0,0,Check-Out,2019-08-04 -City Hotel,0,287,2015,October,44,21,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,78.0,179.0,0,Contract,35.12,0,0,Check-Out,2018-08-03 -City Hotel,0,133,2017,June,28,24,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,110.88,1,2,Check-Out,2019-12-04 -City Hotel,0,114,2017,February,10,21,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.6,0,2,Check-Out,2020-03-03 -City Hotel,1,157,2016,November,37,15,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,87.95,0,0,Canceled,2018-12-03 -Resort Hotel,0,59,2016,August,34,25,0,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,72.79,0,1,Check-Out,2019-06-03 -Resort Hotel,0,149,2015,September,44,28,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,90.14,0,2,Check-Out,2018-08-03 -City Hotel,0,240,2016,June,40,20,0,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,81.66,0,0,Check-Out,2019-07-04 -Resort Hotel,0,7,2016,April,3,16,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,79.49,0,0,Check-Out,2019-06-03 -City Hotel,1,259,2016,June,26,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,1,Non Refund,134.0,179.0,40,Transient,87.27,0,0,Canceled,2018-08-03 -City Hotel,1,10,2015,October,42,18,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,38.83,0,0,Canceled,2018-10-03 -City Hotel,1,144,2017,May,21,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,128.53,0,0,Canceled,2020-03-03 -Resort Hotel,0,96,2016,December,53,28,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,94.93,0,2,Check-Out,2019-10-04 -Resort Hotel,0,0,2015,October,44,12,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,1,No Deposit,246.0,179.0,0,Transient,36.76,1,0,Check-Out,2018-08-03 -Resort Hotel,0,256,2016,May,23,31,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient,78.74,0,1,Check-Out,2019-03-04 -Resort Hotel,0,2,2016,May,19,30,1,7,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,67.78,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,January,43,29,1,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.14,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2015,December,51,9,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,40.83,0,0,Check-Out,2018-10-03 -Resort Hotel,0,37,2016,December,50,9,2,5,1,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,125.14,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,December,51,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,74.81,0,0,Check-Out,2019-10-04 -City Hotel,1,1,2015,December,51,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.04,0,0,Canceled,2018-09-02 -Resort Hotel,1,148,2016,March,17,31,1,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient,108.32,0,0,Canceled,2019-02-01 -Resort Hotel,1,162,2016,October,50,24,2,5,2,0.0,0,HB,,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,75.11,0,3,No-Show,2019-04-03 -City Hotel,0,17,2016,June,32,16,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,65.56,0,2,Check-Out,2019-07-04 -City Hotel,0,102,2017,July,33,5,0,1,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,128.38,0,0,Check-Out,2020-05-03 -City Hotel,1,46,2017,May,22,25,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,201.15,0,0,Canceled,2019-11-03 -City Hotel,0,17,2015,December,51,28,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.98,0,0,Check-Out,2018-12-03 -City Hotel,0,41,2016,April,8,25,0,1,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,59.85,0,0,Check-Out,2018-12-03 -City Hotel,0,28,2017,May,22,21,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,132.11,0,1,Check-Out,2020-03-03 -City Hotel,1,0,2017,February,10,6,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient,127.74,0,0,Canceled,2019-12-04 -City Hotel,1,182,2017,April,24,24,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,129.74,0,0,Canceled,2020-02-01 -City Hotel,1,1,2017,March,11,27,0,3,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,129.67,0,1,Canceled,2020-03-03 -City Hotel,0,30,2016,March,17,4,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,94.89,0,2,Check-Out,2019-11-03 -Resort Hotel,1,57,2015,August,36,16,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,192.33,0,0,Canceled,2018-05-03 -Resort Hotel,1,259,2017,July,30,5,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,145.71,0,0,Canceled,2020-03-03 -City Hotel,1,159,2017,August,38,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,174.32,0,0,Canceled,2019-12-04 -City Hotel,0,19,2015,October,10,9,2,0,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,79.0,179.0,0,Transient,73.56,0,1,Check-Out,2019-12-04 -Resort Hotel,0,98,2017,March,17,9,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,46.71,0,0,Check-Out,2019-12-04 -City Hotel,0,4,2016,May,22,5,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,85.76,0,1,Check-Out,2020-02-01 -Resort Hotel,0,16,2016,December,50,5,4,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,239.0,179.0,0,Transient,63.3,1,2,Check-Out,2019-12-04 -City Hotel,0,91,2016,June,26,30,0,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,119.63,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,April,22,28,0,3,3,0.0,0,BB,,Direct,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient,111.75,0,1,Check-Out,2019-05-04 -City Hotel,0,153,2017,April,17,6,2,5,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.97,0,0,Check-Out,2020-04-02 -City Hotel,1,376,2017,April,22,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,96.97,0,0,Canceled,2019-10-04 -Resort Hotel,0,166,2017,June,28,24,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,33.0,179.0,0,Contract,76.9,0,0,Check-Out,2020-04-02 -Resort Hotel,0,190,2017,May,23,15,2,10,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient-Party,68.01,1,0,Check-Out,2020-03-03 -City Hotel,0,8,2015,December,52,30,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient-Party,105.96,0,0,Check-Out,2018-05-03 -Resort Hotel,0,254,2015,August,34,14,0,10,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,304.0,179.0,0,Transient-Party,129.36,0,0,Check-Out,2018-06-02 -City Hotel,0,202,2016,October,33,5,1,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,83.62,0,1,Check-Out,2019-05-04 -Resort Hotel,0,184,2016,June,45,18,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,260.0,179.0,0,Transient-Party,87.51,1,0,Check-Out,2019-06-03 -Resort Hotel,0,37,2016,September,34,10,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,80.12,1,3,Check-Out,2019-03-04 -City Hotel,0,245,2016,November,50,30,0,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,59.76,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,September,19,22,2,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,129.61,0,1,Check-Out,2019-05-04 -Resort Hotel,0,148,2015,December,5,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,63.67,0,2,Check-Out,2018-12-03 -Resort Hotel,0,281,2016,May,23,9,3,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,284.0,179.0,0,Transient-Party,70.24,0,0,Check-Out,2019-06-03 -City Hotel,1,53,2015,December,50,5,0,3,3,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,120.94,0,1,No-Show,2019-12-04 -City Hotel,1,321,2017,June,38,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.82,0,0,Canceled,2020-06-02 -Resort Hotel,0,6,2017,January,4,5,1,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,237.0,179.0,0,Transient,123.51,0,3,Check-Out,2019-02-01 -City Hotel,0,14,2015,September,44,28,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.89,0,2,Check-Out,2018-09-02 -City Hotel,1,20,2016,June,22,26,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.81,0,0,Canceled,2019-03-04 -Resort Hotel,1,270,2017,August,33,14,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,63.08,0,3,Canceled,2020-04-02 -City Hotel,0,21,2017,May,23,29,0,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,219.34,0,0,Check-Out,2020-05-03 -Resort Hotel,0,108,2016,March,24,17,4,5,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,D,D,1,No Deposit,378.0,179.0,0,Transient,28.22,0,0,Check-Out,2019-05-04 -Resort Hotel,0,98,2015,September,44,28,2,7,1,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,E,F,2,No Deposit,241.0,179.0,0,Transient,99.04,0,2,Check-Out,2018-07-03 -Resort Hotel,0,47,2017,June,28,28,2,7,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,F,2,No Deposit,250.0,179.0,0,Transient,128.86,1,0,Check-Out,2020-02-01 -City Hotel,0,96,2017,June,19,10,2,0,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,8.0,179.0,0,Contract,101.86,0,2,Check-Out,2020-03-03 -City Hotel,1,120,2015,September,45,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,74.77,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,June,28,14,2,0,1,0.0,0,BB,PRT,Direct,Undefined,0,0,1,B,B,1,No Deposit,15.0,179.0,0,Contract,89.09,0,1,Check-Out,2019-07-04 -City Hotel,0,10,2017,March,9,30,1,0,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,71.98,0,1,Check-Out,2020-02-01 -Resort Hotel,0,273,2016,October,44,19,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,89.0,179.0,0,Transient-Party,34.58,0,0,Check-Out,2019-09-03 -City Hotel,1,0,2015,July,33,19,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,237.0,179.0,0,Transient,69.12,0,1,Canceled,2018-12-03 -City Hotel,0,83,2016,July,32,6,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.02,0,1,Check-Out,2018-06-02 -City Hotel,0,90,2016,July,33,28,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.86,0,1,Check-Out,2019-06-03 -City Hotel,0,15,2016,August,37,13,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,200.19,0,0,Check-Out,2019-10-04 -Resort Hotel,0,146,2016,March,9,16,0,3,1,0.0,0,BB,DEU,Groups,Corporate,0,0,0,D,D,2,No Deposit,12.0,223.0,75,Transient,26.73,0,0,Check-Out,2019-03-04 -City Hotel,0,26,2015,December,53,10,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,68.28,0,1,Check-Out,2019-11-03 -City Hotel,1,287,2015,July,31,9,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.37,0,2,Canceled,2018-05-03 -Resort Hotel,0,278,2017,July,37,6,2,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,174.58,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,December,50,14,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,H,F,2,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,31,2016,June,21,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,98.0,179.0,0,Transient-Party,114.55,0,0,Check-Out,2019-04-03 -City Hotel,1,1,2017,June,25,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,177.75,0,0,Canceled,2020-05-03 -City Hotel,1,100,2017,February,9,13,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.56,0,1,Canceled,2019-10-04 -Resort Hotel,1,113,2017,June,20,12,4,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,167.62,0,0,Canceled,2020-02-01 -Resort Hotel,0,17,2017,June,29,9,0,5,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,202.4,1,0,Check-Out,2020-06-02 -Resort Hotel,0,157,2016,March,18,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,0,Refundable,15.0,223.0,0,Transient-Party,61.65,0,0,Check-Out,2019-03-04 -City Hotel,1,442,2017,October,36,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,85.19,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2017,February,9,6,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,62.43,0,1,Check-Out,2020-03-03 -City Hotel,0,82,2017,May,20,6,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,1,0,0,F,D,1,No Deposit,9.0,179.0,0,Transient,137.95,0,1,Check-Out,2020-02-01 -City Hotel,1,282,2017,June,28,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,145.98,0,0,Canceled,2020-04-02 -City Hotel,1,15,2016,November,44,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,72.04,0,0,Canceled,2019-07-04 -City Hotel,0,4,2016,June,38,18,0,1,1,0.0,0,BB,DEU,Aviation,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,130.85,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2016,August,27,30,0,3,2,0.0,0,BB,BEL,Direct,TA/TO,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,131.2,0,3,Check-Out,2019-05-04 -City Hotel,0,34,2016,June,27,27,0,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient,162.77,0,0,Check-Out,2019-02-01 -Resort Hotel,0,208,2016,October,42,23,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient-Party,74.53,0,0,Check-Out,2019-06-03 -City Hotel,1,45,2017,February,11,28,2,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,208.39,0,0,Canceled,2019-10-04 -City Hotel,0,42,2016,October,42,17,1,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.53,0,1,Check-Out,2018-08-03 -City Hotel,0,2,2017,January,5,13,1,0,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,184.0,0,Transient,106.34,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,January,3,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,76.0,0,Transient,60.78,1,2,Check-Out,2018-12-03 -City Hotel,0,275,2016,October,41,7,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.07,0,2,Check-Out,2019-08-04 -Resort Hotel,0,172,2016,August,35,24,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Contract,190.52,0,0,Check-Out,2018-06-02 -Resort Hotel,1,20,2016,December,50,23,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,265.0,179.0,0,Transient,62.46,0,0,Canceled,2018-11-02 -City Hotel,0,13,2016,July,33,28,0,3,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,152.8,0,0,Check-Out,2019-06-03 -City Hotel,1,274,2016,March,21,21,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,77.0,179.0,41,Transient,102.76,0,0,Canceled,2019-04-03 -City Hotel,0,37,2017,January,3,6,1,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.13,0,0,Check-Out,2019-11-03 -Resort Hotel,0,12,2016,November,51,31,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,69.0,0,Transient,37.05,1,0,Check-Out,2019-08-04 -City Hotel,1,257,2015,October,46,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.96,0,0,Canceled,2018-09-02 -City Hotel,0,18,2016,October,43,16,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,12.0,64.0,0,Transient,92.9,1,1,Check-Out,2019-06-03 -Resort Hotel,0,40,2015,August,31,24,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-06-02 -City Hotel,0,21,2017,May,22,8,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,126.17,0,0,Check-Out,2020-02-01 -City Hotel,1,17,2016,July,23,25,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,109.67,0,2,Check-Out,2019-08-04 -Resort Hotel,1,206,2016,June,27,27,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,173.0,179.0,0,Transient,66.87,0,0,Canceled,2019-06-03 -City Hotel,0,215,2016,October,44,16,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.2,0,0,Canceled,2019-05-04 -City Hotel,0,1,2016,March,11,4,2,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,209.0,241.0,0,Transient,79.62,0,0,Check-Out,2019-09-03 -Resort Hotel,0,16,2015,September,34,9,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,125.26,0,2,Check-Out,2018-07-03 -City Hotel,0,3,2016,August,37,22,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,133.06,0,1,Check-Out,2019-07-04 -City Hotel,1,303,2015,August,31,21,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,103.16,0,2,Canceled,2018-05-03 -City Hotel,0,0,2017,May,22,21,0,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,114.64,1,1,Check-Out,2020-03-03 -City Hotel,1,10,2016,December,53,31,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,113.29,0,1,Check-Out,2019-11-03 -City Hotel,1,35,2016,June,28,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,69.0,179.0,0,Transient,78.0,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,February,12,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,K,0,No Deposit,15.0,45.0,0,Transient,40.58,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2017,May,22,16,0,2,1,0.0,0,SC,PRT,Direct,Direct,1,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,85.67,1,1,Check-Out,2020-03-03 -City Hotel,1,88,2016,August,38,20,0,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,81.39,0,1,Canceled,2019-06-03 -City Hotel,1,163,2016,June,32,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,9.0,179.0,0,Transient,127.7,0,0,Canceled,2019-05-04 -Resort Hotel,0,16,2017,August,32,28,4,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,175.0,179.0,0,Transient,196.35,0,0,Check-Out,2020-06-02 -Resort Hotel,0,44,2016,October,42,11,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,61.24,1,1,Check-Out,2019-07-04 -Resort Hotel,0,40,2016,July,31,20,1,7,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,2,No Deposit,14.0,179.0,0,Transient,124.7,1,3,Check-Out,2018-11-02 -City Hotel,1,26,2017,March,8,27,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.46,0,0,Canceled,2020-03-03 -City Hotel,1,184,2017,July,37,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,234.0,179.0,0,Transient,233.7,0,2,Canceled,2020-06-02 -City Hotel,1,397,2017,April,22,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,140.0,179.0,0,Transient,75.55,0,0,Canceled,2019-12-04 -Resort Hotel,0,218,2016,May,21,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,85.69,0,0,Check-Out,2019-02-01 -City Hotel,1,41,2016,February,9,5,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.65,0,0,Canceled,2018-12-03 -Resort Hotel,0,239,2017,March,17,10,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,121.21,1,2,Check-Out,2020-03-03 -Resort Hotel,0,46,2015,July,49,28,2,3,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,202.41,0,0,Check-Out,2018-06-02 -City Hotel,0,8,2017,March,12,29,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,66.37,0,1,Check-Out,2019-10-04 -City Hotel,0,2,2017,May,22,2,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,162.02,0,1,Check-Out,2020-03-03 -City Hotel,1,34,2017,March,19,28,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,90.52,0,0,Canceled,2019-11-03 -City Hotel,1,14,2016,January,3,25,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,59.33,0,0,Canceled,2018-10-03 -City Hotel,0,1,2016,March,27,17,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,B,2,No Deposit,17.0,76.0,0,Transient,100.84,0,0,Check-Out,2020-02-01 -City Hotel,0,13,2017,August,36,21,2,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,238.92,0,2,Check-Out,2020-06-02 -Resort Hotel,0,9,2016,December,52,16,2,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,64.74,0,0,Check-Out,2019-11-03 -City Hotel,1,271,2017,August,32,20,2,4,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,154.1,0,1,Canceled,2020-03-03 -City Hotel,0,29,2017,August,31,23,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,43.75,0,0,Check-Out,2020-07-03 -City Hotel,0,0,2016,July,32,2,0,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.47,0,1,Check-Out,2019-06-03 -City Hotel,1,95,2016,April,17,18,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,69.13,0,0,Canceled,2019-02-01 -City Hotel,1,318,2015,September,39,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,58.22,0,0,Canceled,2017-12-03 -Resort Hotel,0,0,2015,December,53,23,0,1,2,0.0,0,Undefined,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,35.98,0,1,Check-Out,2018-12-03 -City Hotel,1,45,2016,February,10,20,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,67.7,0,0,Canceled,2019-01-03 -City Hotel,1,119,2015,September,38,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,41,Transient,127.96,0,0,Canceled,2018-08-03 -City Hotel,1,107,2017,May,20,9,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,252.0,0,3,Canceled,2020-03-03 -Resort Hotel,0,258,2016,August,39,29,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,138.02,1,2,Check-Out,2019-08-04 -City Hotel,0,9,2017,August,23,11,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-03-03 -City Hotel,1,149,2015,September,43,21,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,60.29,0,0,Canceled,2018-08-03 -City Hotel,0,102,2015,July,32,5,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,239.0,179.0,0,Transient-Party,62.93,1,2,Check-Out,2018-12-03 -City Hotel,1,203,2017,August,38,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,0,Transient,58.02,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2015,August,38,30,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,2.0,179.0,0,Contract,60.65,0,0,Check-Out,2018-05-03 -Resort Hotel,0,137,2016,October,45,16,0,7,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,128.14,1,2,Check-Out,2019-07-04 -City Hotel,0,10,2017,September,39,27,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.17,0,2,Check-Out,2019-09-03 -City Hotel,0,95,2017,July,25,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.1,0,1,Check-Out,2020-06-02 -City Hotel,0,2,2017,March,11,31,0,3,1,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,27.31,0,1,Check-Out,2020-02-01 -Resort Hotel,0,26,2016,December,52,31,2,3,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,70.93,1,2,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,February,9,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,12.0,80.0,0,Transient,34.73,0,0,Check-Out,2018-10-03 -Resort Hotel,0,2,2015,September,42,19,2,6,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,251.0,179.0,0,Transient,86.5,0,0,Check-Out,2018-08-03 -Resort Hotel,1,39,2016,July,33,2,4,6,1,0.0,0,HB,USA,Online TA,GDS,0,0,0,A,E,0,No Deposit,181.0,179.0,0,Transient,132.46,0,0,Canceled,2019-05-04 -Resort Hotel,1,269,2015,July,37,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.09,0,0,Canceled,2018-06-02 -City Hotel,1,24,2016,April,23,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,41.65,0,0,Canceled,2017-12-03 -Resort Hotel,0,0,2016,March,11,29,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,D,D,0,No Deposit,12.0,77.0,0,Group,0.0,0,1,Check-Out,2018-12-03 -Resort Hotel,0,45,2015,November,44,15,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,45.21,0,0,Check-Out,2018-09-02 -City Hotel,0,35,2016,October,42,27,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,45,Transient-Party,103.38,0,0,Check-Out,2019-06-03 -City Hotel,1,156,2016,May,22,29,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,102.23,0,0,Canceled,2019-02-01 -City Hotel,0,19,2016,March,11,21,1,2,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,87.71,0,2,Check-Out,2019-03-04 -Resort Hotel,0,2,2016,May,41,14,0,10,2,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,44.46,0,0,Check-Out,2019-03-04 -Resort Hotel,0,85,2016,April,19,21,2,2,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,40.53,0,0,Check-Out,2019-02-01 -Resort Hotel,0,159,2016,July,28,28,3,5,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,49.91,0,0,Check-Out,2019-05-04 -Resort Hotel,1,37,2016,January,11,26,2,4,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,81.12,0,0,Canceled,2019-08-04 -City Hotel,0,34,2016,October,43,14,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,97.88,0,2,Check-Out,2019-08-04 -Resort Hotel,0,102,2017,August,39,25,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,72.6,0,0,Check-Out,2020-05-03 -City Hotel,0,29,2016,January,4,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient,61.01,0,1,Check-Out,2019-10-04 -City Hotel,0,50,2016,November,51,9,0,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,E,0,No Deposit,86.0,179.0,0,Transient,59.68,0,2,Check-Out,2019-11-03 -City Hotel,1,252,2015,September,34,10,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,91.09,0,0,Canceled,2018-07-03 -City Hotel,0,36,2016,May,21,9,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Transient,78.32,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,November,49,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,59.88,0,0,Check-Out,2018-11-02 -City Hotel,0,108,2017,February,7,9,0,2,1,0.0,0,HB,SWE,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,62,Transient,76.07,0,0,Check-Out,2019-12-04 -Resort Hotel,0,56,2015,August,45,21,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,64.12,0,1,Check-Out,2018-06-02 -City Hotel,0,18,2015,October,46,9,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,1,No Deposit,12.0,45.0,0,Transient-Party,98.72,0,0,Check-Out,2018-09-02 -Resort Hotel,0,50,2016,May,16,5,0,1,1,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,D,1,No Deposit,13.0,179.0,40,Transient-Party,87.44,0,1,Check-Out,2019-04-03 -City Hotel,1,18,2017,March,17,9,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,8.0,179.0,0,Transient,118.46,0,0,Canceled,2019-09-03 -Resort Hotel,0,3,2017,March,16,20,2,1,2,0.0,0,BB,BRA,Direct,TA/TO,0,0,0,D,G,0,No Deposit,242.0,179.0,0,Transient,86.67,1,0,Check-Out,2020-01-04 -City Hotel,1,247,2015,September,42,28,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,70.33,0,0,Canceled,2017-12-03 -Resort Hotel,0,47,2015,July,41,15,2,5,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.81,1,0,Check-Out,2018-08-03 -Resort Hotel,0,152,2016,March,10,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,65.98,1,0,Check-Out,2019-04-03 -Resort Hotel,0,82,2016,December,51,29,2,10,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,186.0,179.0,0,Transient,155.45,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2016,February,10,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,58.0,0,Transient,78.83,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,August,38,30,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,February,9,12,1,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,80.4,1,0,Check-Out,2019-03-04 -City Hotel,1,2,2016,January,9,16,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,60.36,0,0,Canceled,2018-10-03 -Resort Hotel,0,39,2016,February,11,9,2,1,2,0.0,0,Undefined,DEU,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,145.0,179.0,0,Transient-Party,79.83,0,0,Check-Out,2019-03-04 -Resort Hotel,0,10,2016,March,12,6,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,331.0,0,Transient-Party,36.82,0,0,Check-Out,2019-03-04 -City Hotel,0,56,2016,August,36,13,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,102.54,0,0,Check-Out,2019-06-03 -City Hotel,0,48,2016,September,44,8,2,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,15.0,331.0,0,Transient-Party,94.23,0,0,Check-Out,2019-09-03 -City Hotel,0,14,2015,September,34,6,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,11.0,45.0,0,Contract,0.0,0,1,Check-Out,2019-03-04 -Resort Hotel,0,284,2015,October,43,11,2,10,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,77.44,0,3,Check-Out,2017-12-03 -City Hotel,0,13,2016,August,40,30,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,148.43,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,79.0,0,Transient,75.42,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,November,51,20,0,1,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,202.0,179.0,0,Transient,90.15,0,0,Check-Out,2019-09-03 -City Hotel,1,61,2015,December,53,5,2,3,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,146.07,0,1,Canceled,2018-11-02 -Resort Hotel,0,9,2017,May,39,29,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,181.23,0,3,Check-Out,2020-03-03 -City Hotel,1,2,2017,April,18,24,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,136.38,0,0,Canceled,2020-01-04 -City Hotel,0,60,2015,December,51,2,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,42.0,179.0,0,Transient-Party,62.24,0,0,Check-Out,2019-10-04 -Resort Hotel,0,205,2016,September,36,12,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,C,1,No Deposit,300.0,179.0,0,Transient-Party,74.11,0,0,Check-Out,2019-05-04 -City Hotel,0,115,2017,March,22,22,2,0,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,154.39,0,2,Check-Out,2020-07-03 -City Hotel,0,54,2016,October,44,28,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,87.3,0,0,Check-Out,2019-05-04 -City Hotel,1,264,2016,September,36,9,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.9,0,2,Canceled,2019-11-03 -City Hotel,0,54,2017,March,16,26,2,6,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,59.91,0,0,Check-Out,2020-04-02 -Resort Hotel,0,53,2016,February,10,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,45.97,0,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2016,March,10,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,17.0,179.0,0,Transient,36.0,0,0,Check-Out,2019-04-03 -City Hotel,0,139,2016,October,31,12,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,136.63,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,January,11,30,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,68.79,1,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,May,26,10,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,76.49,0,1,Check-Out,2019-02-01 -City Hotel,1,162,2016,September,46,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,1.0,179.0,0,Transient,62.12,0,0,Canceled,2018-08-03 -Resort Hotel,0,37,2016,December,53,16,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.98,0,1,Check-Out,2019-09-03 -City Hotel,1,51,2017,March,16,18,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,105.2,0,1,Canceled,2020-02-01 -Resort Hotel,0,323,2016,July,35,13,2,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,220.1,0,0,Check-Out,2019-07-04 -City Hotel,0,15,2016,March,16,9,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,81.18,0,0,Check-Out,2019-05-04 -Resort Hotel,0,40,2016,January,4,24,1,1,1,0.0,0,FB,ITA,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,90.0,0,Transient,41.16,1,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,October,42,23,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,15.0,179.0,0,Transient,46.21,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,November,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,55.36,0,0,Check-Out,2019-07-04 -Resort Hotel,0,44,2015,October,44,25,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,35.84,0,2,Check-Out,2018-08-03 -City Hotel,1,156,2016,March,16,31,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,64,Transient,89.09,0,0,Canceled,2018-12-03 -City Hotel,1,207,2016,October,43,15,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,186.38,0,0,Canceled,2019-08-04 -City Hotel,0,255,2017,August,36,21,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,9.0,179.0,0,Transient,229.66,0,0,Check-Out,2020-07-03 -Resort Hotel,0,153,2016,March,10,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient,71.32,0,0,Check-Out,2019-03-04 -Resort Hotel,0,87,2015,July,37,6,2,5,2,0.0,0,BB,NLD,Online TA,Direct,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,96.77,0,0,Check-Out,2018-06-02 -City Hotel,1,26,2016,June,27,18,1,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.03,0,1,Canceled,2019-02-01 -City Hotel,1,390,2015,July,29,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.59,0,0,Canceled,2017-12-03 -City Hotel,1,236,2017,March,27,21,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,99.0,0,0,Canceled,2019-12-04 -City Hotel,1,159,2017,August,37,28,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,167.63,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2017,January,3,28,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,333.0,72.0,0,Transient,30.48,0,0,Check-Out,2019-12-04 -City Hotel,1,258,2015,October,45,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,57.38,0,0,Canceled,2017-12-03 -City Hotel,1,250,2017,February,11,13,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,73.39,0,0,Canceled,2019-10-04 -Resort Hotel,0,188,2017,July,34,21,0,6,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,249.21,0,1,Check-Out,2020-06-02 -City Hotel,0,17,2016,March,10,22,1,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Transient,66.04,0,0,Check-Out,2018-11-02 -City Hotel,1,34,2015,November,51,17,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,11.0,45.0,0,Transient,61.07,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,January,9,5,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,E,1,No Deposit,89.0,179.0,0,Group,66.7,0,0,Check-Out,2018-10-03 -City Hotel,0,272,2016,June,43,29,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,157.93,1,2,Check-Out,2019-05-04 -Resort Hotel,0,194,2016,August,37,13,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,316.0,179.0,0,Transient-Party,82.76,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,November,50,12,1,0,2,0.0,0,BB,GBR,Complementary,TA/TO,1,0,0,C,I,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -Resort Hotel,0,15,2016,October,37,25,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,1,Refundable,17.0,222.0,0,Transient-Party,115.63,1,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2016,March,19,15,0,3,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,14.0,223.0,75,Transient-Party,35.64,1,3,Check-Out,2019-01-03 -City Hotel,0,0,2016,June,27,17,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,118.9,0,1,Check-Out,2019-03-04 -Resort Hotel,0,193,2016,February,11,30,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,86.35,0,0,Check-Out,2018-12-03 -City Hotel,0,150,2016,July,22,1,4,6,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,129.67,0,0,Check-Out,2019-05-04 -City Hotel,0,6,2016,December,53,30,1,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.83,0,1,Check-Out,2019-05-04 -City Hotel,1,32,2015,September,34,14,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,49.39,0,0,Canceled,2018-06-02 -Resort Hotel,0,6,2017,September,36,18,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,241.0,0,Transient,70.73,1,1,Check-Out,2020-01-04 -City Hotel,0,2,2017,May,36,28,2,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.35,0,2,Check-Out,2020-07-03 -Resort Hotel,0,154,2016,May,26,28,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,81.0,179.0,0,Transient,82.89,0,0,Check-Out,2019-02-01 -City Hotel,1,44,2016,November,50,2,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.28,0,0,Canceled,2019-09-03 -City Hotel,0,138,2016,November,45,5,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,154.08,0,2,Check-Out,2019-10-04 -City Hotel,0,2,2015,October,46,27,0,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,63.64,0,0,Check-Out,2018-07-03 -City Hotel,1,30,2016,May,19,12,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.19,0,0,Canceled,2019-03-04 -City Hotel,0,90,2015,November,42,21,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient-Party,90.03,0,2,Check-Out,2018-09-02 -City Hotel,1,410,2016,August,36,8,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,156.26,0,0,Canceled,2019-08-04 -City Hotel,1,206,2016,June,28,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,95.49,0,0,Canceled,2019-02-01 -Resort Hotel,0,252,2015,September,36,10,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.6,0,0,Check-Out,2018-01-03 -Resort Hotel,0,0,2016,February,10,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,223.0,0,Transient,38.08,0,0,Check-Out,2018-11-02 -City Hotel,0,11,2015,August,37,5,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.76,0,0,Check-Out,2019-04-03 -Resort Hotel,0,40,2016,August,35,28,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient-Party,122.25,0,0,Check-Out,2019-05-04 -Resort Hotel,0,162,2016,February,11,27,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,146.0,179.0,0,Transient-Party,63.47,0,0,Check-Out,2019-10-04 -Resort Hotel,0,79,2016,July,25,21,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,77.49,0,1,Check-Out,2019-04-03 -City Hotel,0,48,2017,April,18,7,0,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient,128.03,0,0,Check-Out,2020-02-01 -City Hotel,1,239,2015,September,37,20,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,0,Transient,114.01,0,0,Canceled,2018-09-02 -City Hotel,1,147,2016,September,37,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,71.0,179.0,0,Transient,71.4,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,January,34,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,3,No Deposit,12.0,179.0,0,Transient,0.2,1,0,Check-Out,2018-12-03 -Resort Hotel,0,14,2016,August,35,7,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,228.23,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,December,50,7,1,4,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient-Party,119.14,0,1,Check-Out,2018-08-03 -Resort Hotel,0,120,2015,December,53,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,80.11,0,0,Check-Out,2019-01-03 -Resort Hotel,0,160,2017,August,32,2,2,4,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,240.0,179.0,0,Transient,123.94,0,2,Check-Out,2020-05-03 -City Hotel,1,159,2015,August,38,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,100.63,0,0,Canceled,2018-08-03 -Resort Hotel,0,382,2017,April,36,18,1,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,171.0,179.0,0,Transient,108.99,0,1,Check-Out,2020-04-02 -Resort Hotel,0,33,2015,December,53,31,0,7,2,0.0,0,Undefined,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,104.13,0,2,Check-Out,2018-12-03 -City Hotel,0,44,2015,September,50,10,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.16,0,0,Check-Out,2018-06-02 -City Hotel,1,14,2017,August,33,22,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient,122.06,0,2,Canceled,2020-02-01 -City Hotel,0,104,2017,April,16,23,0,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,11.0,179.0,0,Transient,77.1,0,2,Check-Out,2020-04-02 -City Hotel,1,284,2016,April,23,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,91.71,0,0,Canceled,2017-12-03 -City Hotel,0,48,2016,April,18,7,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.01,0,0,Check-Out,2019-02-01 -Resort Hotel,0,56,2017,July,32,2,2,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,H,1,No Deposit,249.0,179.0,0,Transient,167.41,0,3,Check-Out,2020-04-02 -City Hotel,0,0,2017,February,11,15,1,0,2,1.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,72.84,1,0,Check-Out,2019-10-04 -City Hotel,0,10,2017,March,13,28,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.49,0,1,Check-Out,2020-04-02 -City Hotel,0,33,2016,June,35,6,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,101.88,1,0,Check-Out,2019-05-04 -City Hotel,1,84,2016,May,22,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,45,Transient-Party,66.55,0,0,Check-Out,2019-03-04 -City Hotel,0,93,2017,March,11,24,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,78.27,0,0,Check-Out,2020-01-04 -City Hotel,0,16,2017,April,18,16,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,242.05,0,0,Check-Out,2020-02-01 -Resort Hotel,1,442,2016,June,27,26,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,44,Transient,130.34,0,0,Canceled,2019-05-04 -City Hotel,1,100,2017,May,31,15,2,5,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,134.42,0,3,Canceled,2020-03-03 -City Hotel,0,274,2017,July,31,2,1,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient,165.09,0,1,Check-Out,2020-05-03 -Resort Hotel,0,45,2015,December,51,30,0,4,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient-Party,59.36,0,0,Check-Out,2019-11-03 -City Hotel,0,7,2016,June,28,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,12.0,74.0,0,Transient,142.98,0,2,Check-Out,2019-06-03 -Resort Hotel,1,76,2016,March,26,16,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,140.0,179.0,0,Transient,74.68,0,0,Check-Out,2019-01-03 -Resort Hotel,1,240,2017,February,9,21,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,69.0,0,Transient,37.58,0,0,Canceled,2019-12-04 -City Hotel,0,13,2016,May,23,15,0,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,251.0,0,Transient-Party,68.25,0,0,Check-Out,2019-03-04 -City Hotel,0,156,2016,June,27,20,4,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,175.0,179.0,0,Transient,128.31,0,0,Check-Out,2019-04-03 -City Hotel,1,13,2016,June,45,22,0,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,90.71,0,0,Canceled,2019-05-04 -Resort Hotel,0,153,2017,August,10,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,37.59,0,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,June,27,18,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,97.0,242.0,0,Transient,0.21,0,0,Check-Out,2019-03-04 -City Hotel,0,4,2015,August,35,28,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.53,0,0,Check-Out,2018-08-03 -City Hotel,0,130,2017,May,26,17,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.44,0,0,Check-Out,2019-11-03 -City Hotel,1,17,2016,July,30,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,123.71,0,2,Canceled,2019-11-03 -City Hotel,0,0,2017,January,3,16,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,60.79,0,0,Check-Out,2019-09-03 -City Hotel,0,30,2016,January,4,28,0,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,64.45,0,1,Check-Out,2018-11-02 -City Hotel,1,333,2016,May,37,18,3,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,60.97,0,0,Canceled,2018-08-03 -City Hotel,1,2,2017,May,42,5,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.85,0,0,Canceled,2019-11-03 -City Hotel,0,103,2017,February,10,14,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,98.8,0,2,Canceled,2020-01-04 -Resort Hotel,1,36,2016,August,14,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,10.0,179.0,0,Transient,63.78,0,0,Canceled,2019-03-04 -Resort Hotel,1,42,2015,December,53,28,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient-Party,50.38,0,0,Canceled,2018-09-02 -City Hotel,1,9,2016,May,22,20,0,10,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,252.0,179.0,0,Transient,74.05,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,October,45,31,0,3,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,98.87,0,2,Check-Out,2018-08-03 -City Hotel,0,16,2016,September,45,27,0,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,331.0,0,Transient,74.59,0,0,Check-Out,2019-07-04 -City Hotel,0,233,2015,July,32,9,0,1,2,1.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,135.99,0,1,Check-Out,2018-06-02 -City Hotel,1,419,2015,October,43,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.42,0,0,Canceled,2018-08-03 -City Hotel,0,4,2016,March,10,23,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,116.07,0,2,Check-Out,2018-12-03 -City Hotel,1,14,2015,October,47,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,234.0,0,Transient-Party,60.93,0,0,Canceled,2018-01-31 -City Hotel,1,13,2017,August,25,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,212.14,0,0,Canceled,2020-07-03 -Resort Hotel,0,147,2015,December,43,21,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,85.75,0,1,Check-Out,2018-08-03 -City Hotel,0,22,2016,July,29,18,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,119.91,0,0,Check-Out,2019-06-03 -Resort Hotel,0,121,2015,October,44,15,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,91.96,0,1,Check-Out,2018-08-03 -City Hotel,0,47,2017,May,26,15,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.84,0,1,Check-Out,2020-03-03 -Resort Hotel,0,48,2017,July,31,5,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.93,0,1,Check-Out,2020-07-03 -Resort Hotel,0,115,2016,March,9,27,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.23,0,0,Check-Out,2019-02-01 -Resort Hotel,1,103,2017,January,9,20,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,230.5,0,0,Canceled,2019-09-03 -City Hotel,0,104,2017,April,16,29,2,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,120.17,0,1,Check-Out,2020-02-01 -City Hotel,0,241,2016,February,36,25,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.9,0,2,Check-Out,2019-06-03 -City Hotel,0,184,2016,August,41,21,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.64,0,1,Check-Out,2019-08-04 -City Hotel,1,19,2016,September,38,14,0,1,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,197.52,0,1,Canceled,2019-08-04 -City Hotel,1,18,2016,August,44,24,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,82.56,0,0,Canceled,2019-08-04 -City Hotel,1,12,2016,September,43,18,1,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.84,0,1,Canceled,2019-08-04 -Resort Hotel,0,144,2016,July,26,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,149.0,179.0,0,Transient-Party,78.81,0,0,Check-Out,2019-02-01 -City Hotel,1,191,2015,August,34,31,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,165.0,179.0,0,Transient,40.64,0,0,No-Show,2018-06-02 -City Hotel,0,222,2017,June,27,2,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.11,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,January,5,26,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,1,No Deposit,13.0,66.0,0,Transient-Party,63.25,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2015,December,50,21,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient-Party,63.97,1,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,September,34,17,0,1,1,0.0,0,HB,PRT,Direct,Direct,1,0,1,A,I,1,No Deposit,14.0,224.0,0,Transient,106.29,0,0,Check-Out,2018-05-03 -City Hotel,0,21,2016,November,51,10,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,117.78,1,0,Check-Out,2019-05-04 -City Hotel,1,246,2015,September,53,20,0,1,2,0.0,0,HB,ITA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,74.7,0,0,Canceled,2018-06-02 -City Hotel,0,92,2015,October,42,6,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.79,0,2,Check-Out,2018-09-02 -City Hotel,0,20,2016,October,44,22,0,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,160.99,0,3,Check-Out,2019-08-04 -City Hotel,0,96,2016,July,46,22,1,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,160.85,0,0,Check-Out,2019-06-03 -City Hotel,0,49,2016,March,10,23,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,72.83,0,0,Check-Out,2019-03-04 -Resort Hotel,0,46,2017,April,16,25,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient-Party,146.93,0,0,Check-Out,2020-03-03 -Resort Hotel,0,161,2017,May,22,5,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,146.75,0,2,Check-Out,2020-04-02 -City Hotel,1,57,2017,July,28,27,2,0,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,123.01,0,0,Canceled,2020-04-02 -City Hotel,0,9,2016,September,47,28,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,E,1,No Deposit,8.0,179.0,0,Transient,139.75,0,2,Check-Out,2019-08-04 -City Hotel,1,167,2015,November,53,29,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.98,0,0,Canceled,2018-11-02 -Resort Hotel,0,94,2017,June,33,31,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,17.0,179.0,0,Transient,227.64,0,0,Check-Out,2020-04-02 -City Hotel,0,18,2015,September,39,13,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.77,0,0,Check-Out,2018-08-03 -City Hotel,0,197,2016,May,22,15,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,B,2,No Deposit,10.0,179.0,0,Transient-Party,82.66,0,0,Check-Out,2019-02-01 -City Hotel,1,266,2016,November,49,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,16,Transient,60.48,0,0,Canceled,2019-09-03 -City Hotel,0,14,2016,September,43,14,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,75.76,0,1,Check-Out,2019-05-04 -City Hotel,1,47,2015,February,32,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,123.69,0,0,Canceled,2017-12-03 -City Hotel,0,67,2017,May,24,24,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,127.04,0,1,Check-Out,2020-04-02 -Resort Hotel,0,89,2017,July,36,21,0,1,2,0.0,0,HB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,373.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,February,8,27,1,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,378.0,179.0,0,Transient,29.39,0,0,Check-Out,2018-11-02 -Resort Hotel,0,29,2015,December,53,31,2,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,47.0,179.0,0,Transient-Party,35.62,0,0,Check-Out,2018-12-03 -City Hotel,0,40,2016,August,44,13,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,115.11,0,0,Check-Out,2019-05-04 -City Hotel,1,2,2016,July,33,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,66.69,0,0,Canceled,2019-05-04 -City Hotel,0,33,2015,August,35,27,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,130.31,0,2,Check-Out,2018-06-02 -City Hotel,0,234,2016,June,27,20,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.31,0,0,Check-Out,2019-03-04 -City Hotel,1,102,2017,June,27,26,2,10,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Contract,73.49,0,0,Canceled,2020-03-03 -City Hotel,1,99,2015,August,33,5,2,5,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,185.01,0,1,Canceled,2019-07-04 -City Hotel,0,38,2015,November,53,18,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,87.19,0,1,Check-Out,2018-08-03 -City Hotel,0,41,2016,June,26,9,2,3,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,120.46,0,1,Check-Out,2019-05-04 -City Hotel,0,15,2016,June,28,20,0,4,1,0.0,0,BB,ITA,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,8.0,179.0,39,Group,97.75,0,1,Check-Out,2019-05-04 -City Hotel,1,187,2016,April,38,2,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,75.59,0,0,Canceled,2019-02-01 -Resort Hotel,1,152,2017,July,27,16,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,136.64,0,0,Canceled,2020-04-02 -City Hotel,0,12,2016,March,16,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,77.0,179.0,0,Transient,110.46,0,0,Canceled,2019-01-03 -Resort Hotel,0,48,2016,April,17,31,2,5,2,0.0,0,FB,SWE,Groups,TA/TO,0,0,0,A,E,1,Non Refund,141.0,179.0,21,Transient,73.12,0,0,Check-Out,2019-03-04 -Resort Hotel,0,47,2016,March,19,31,0,3,1,0.0,0,BB,BEL,Groups,Corporate,0,0,0,A,D,1,No Deposit,13.0,224.0,0,Transient-Party,40.08,0,0,Check-Out,2019-03-04 -Resort Hotel,1,91,2015,December,53,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,32.61,0,0,Canceled,2019-01-03 -City Hotel,0,11,2017,August,36,20,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,226.05,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,February,9,25,0,1,2,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,331.0,0,Transient,32.15,1,0,Check-Out,2020-01-04 -City Hotel,0,4,2016,June,37,13,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.48,0,0,Check-Out,2019-03-04 -City Hotel,0,39,2016,March,16,10,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,72.33,0,1,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,September,41,30,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,77.0,179.0,0,Transient,36.75,0,0,Check-Out,2019-05-04 -City Hotel,0,253,2016,November,42,26,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,68.89,0,0,Check-Out,2020-01-04 -City Hotel,0,109,2017,May,21,21,0,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,76.6,0,0,Check-Out,2020-05-03 -City Hotel,1,147,2016,April,27,19,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,42,Transient,92.7,0,0,Canceled,2018-12-03 -Resort Hotel,1,129,2017,September,35,21,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,172.14,0,3,Canceled,2019-05-04 -City Hotel,1,149,2016,December,51,17,0,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,88.15,0,2,Canceled,2019-09-03 -Resort Hotel,0,27,2016,October,21,19,0,3,1,0.0,0,BB,IRL,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,43.26,0,0,Check-Out,2018-12-03 -City Hotel,1,107,2016,March,16,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,67.45,0,1,Canceled,2019-01-03 -City Hotel,1,1,2015,December,50,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,60.11,0,0,Canceled,2018-11-02 -City Hotel,0,198,2016,May,16,21,0,1,1,0.0,0,Undefined,CN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,262.0,179.0,0,Transient,43.7,0,0,Check-Out,2019-04-03 -Resort Hotel,1,96,2015,December,53,18,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,37.63,0,0,Canceled,2018-10-03 -City Hotel,1,38,2016,June,19,18,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,87.31,0,0,Canceled,2019-02-01 -Resort Hotel,0,17,2016,September,45,3,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,61.54,0,1,Check-Out,2019-07-04 -Resort Hotel,0,108,2016,June,35,27,2,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,71.72,0,2,Check-Out,2019-09-03 -City Hotel,1,149,2016,October,16,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,94.41,0,0,Canceled,2018-10-03 -Resort Hotel,1,15,2017,February,7,17,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,Non Refund,11.0,331.0,0,Transient,41.73,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,January,9,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.88,0,2,Check-Out,2019-10-04 -City Hotel,0,1,2016,July,29,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,73.09,0,0,Check-Out,2019-05-04 -Resort Hotel,0,41,2017,January,5,13,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,323.0,179.0,0,Transient-Party,76.89,0,1,Check-Out,2019-10-04 -City Hotel,1,103,2016,September,22,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,129.32,0,0,Canceled,2019-01-03 -City Hotel,1,2,2017,February,11,16,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient,74.74,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2017,June,34,29,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-06-02 -City Hotel,0,1,2016,September,44,14,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,132.92,0,1,Check-Out,2019-07-04 -Resort Hotel,0,98,2016,October,22,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,68.08,0,0,Check-Out,2019-09-03 -Resort Hotel,0,155,2016,October,44,20,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,72.02,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,February,10,12,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,87.0,0,Transient,62.74,0,0,Check-Out,2020-02-01 -Resort Hotel,0,194,2016,October,45,5,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,192.0,179.0,0,Contract,63.88,0,0,Check-Out,2019-06-03 -City Hotel,0,237,2016,October,44,21,2,3,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,85.52,0,0,Check-Out,2018-08-03 -Resort Hotel,0,50,2015,December,51,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,2.0,179.0,0,Contract,59.07,0,0,Check-Out,2018-01-31 -Resort Hotel,0,146,2016,December,50,24,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,54.22,0,0,Check-Out,2019-04-03 -Resort Hotel,0,40,2017,March,11,24,2,5,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,D,2,No Deposit,197.0,179.0,0,Transient,61.67,0,2,Check-Out,2020-01-04 -City Hotel,0,110,2017,June,27,15,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.97,0,1,Check-Out,2020-04-02 -City Hotel,1,52,2017,February,10,15,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.65,0,1,Canceled,2019-11-03 -Resort Hotel,1,1,2015,July,36,20,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,159.67,0,0,Canceled,2018-05-03 -City Hotel,0,12,2017,April,17,22,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,136.78,0,1,Check-Out,2020-02-01 -Resort Hotel,0,44,2015,December,53,21,2,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,36.62,0,0,Check-Out,2018-12-03 -City Hotel,0,194,2016,August,33,30,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,194.05,0,3,Check-Out,2020-05-03 -Resort Hotel,0,5,2015,October,47,23,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,93.04,0,0,Check-Out,2018-05-03 -City Hotel,0,42,2017,March,22,10,0,1,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,142.54,0,3,Check-Out,2020-03-03 -Resort Hotel,0,40,2016,April,37,9,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,15.0,179.0,0,Transient,126.64,1,0,Check-Out,2020-04-02 -City Hotel,0,116,2017,June,19,8,0,2,2,0.0,0,BB,FRA,Direct,TA/TO,1,0,0,E,F,0,No Deposit,13.0,179.0,0,Transient,103.26,0,1,Check-Out,2020-05-03 -City Hotel,1,10,2016,June,27,27,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,122.26,0,0,Canceled,2019-03-04 -Resort Hotel,0,62,2017,July,36,16,1,0,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,87.94,1,2,Check-Out,2020-07-03 -City Hotel,1,98,2016,March,18,22,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.63,0,0,Canceled,2019-01-03 -City Hotel,1,35,2016,December,53,29,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.01,0,0,Canceled,2019-10-04 -City Hotel,0,115,2015,April,26,29,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,60.27,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,July,31,3,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,106.41,0,0,Check-Out,2020-05-03 -City Hotel,1,25,2015,July,39,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,15.0,45.0,0,Transient,115.16,0,0,Canceled,2018-09-02 -City Hotel,1,32,2017,February,11,13,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,77.27,0,0,Canceled,2020-01-04 -Resort Hotel,1,217,2015,August,39,25,2,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,1,No Deposit,238.0,179.0,0,Transient,149.01,0,2,Canceled,2018-05-03 -City Hotel,0,41,2016,August,37,12,0,3,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,177.89,0,2,Check-Out,2020-06-02 -City Hotel,0,103,2015,July,32,9,0,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,117.34,1,0,Check-Out,2019-11-03 -City Hotel,0,208,2016,July,29,15,2,4,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,F,B,2,No Deposit,13.0,179.0,0,Transient-Party,96.09,0,0,Check-Out,2019-02-01 -City Hotel,0,264,2017,June,25,9,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,152.61,0,0,Check-Out,2020-02-01 -City Hotel,1,297,2016,October,41,11,2,5,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,197.73,0,1,Canceled,2019-07-04 -City Hotel,0,234,2015,July,33,25,0,3,1,1.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,96.92,0,0,Canceled,2018-06-02 -Resort Hotel,0,250,2016,September,33,15,4,10,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,159.0,179.0,0,Transient,74.45,0,0,Check-Out,2019-09-03 -City Hotel,0,148,2017,May,26,15,1,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,173.24,0,1,Check-Out,2020-06-02 -Resort Hotel,0,115,2017,May,28,30,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,E,E,1,No Deposit,11.0,179.0,0,Transient-Party,128.03,0,3,Check-Out,2020-04-02 -City Hotel,1,157,2016,June,20,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,129.0,179.0,39,Transient,61.97,0,0,Canceled,2018-11-02 -City Hotel,0,137,2017,April,17,25,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,82.72,0,0,Check-Out,2020-04-02 -Resort Hotel,0,340,2017,May,21,6,3,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,114.05,0,0,Check-Out,2020-04-02 -City Hotel,1,19,2015,August,39,16,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.53,0,0,Canceled,2018-06-02 -City Hotel,1,155,2016,September,36,14,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,75.62,0,1,Canceled,2018-11-02 -City Hotel,1,209,2015,October,43,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,45,Transient,105.87,0,0,Canceled,2018-05-03 -Resort Hotel,0,80,2016,May,22,14,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,C,C,2,No Deposit,326.0,179.0,0,Transient,117.73,1,0,Check-Out,2019-07-04 -Resort Hotel,0,2,2015,October,41,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,17.0,223.0,0,Transient,44.3,0,3,Check-Out,2019-10-04 -Resort Hotel,0,41,2016,March,10,2,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,239.0,0,Transient-Party,72.58,0,0,Check-Out,2019-03-04 -Resort Hotel,1,50,2016,August,36,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,94.62,0,0,Canceled,2019-01-03 -City Hotel,0,54,2016,October,53,16,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,100.15,1,1,Check-Out,2019-10-04 -Resort Hotel,0,148,2016,August,36,27,2,4,2,0.0,0,HB,BEL,Online TA,Direct,0,0,0,F,E,1,No Deposit,244.0,179.0,0,Transient,240.21,1,0,Check-Out,2020-03-03 -Resort Hotel,1,204,2017,August,35,26,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,378.0,179.0,0,Transient,81.04,0,0,Canceled,2020-04-02 -Resort Hotel,0,3,2017,May,24,28,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,191.54,0,3,Check-Out,2020-03-03 -City Hotel,1,14,2017,August,34,23,0,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.94,0,1,Canceled,2020-06-02 -Resort Hotel,1,160,2017,March,17,30,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,302.0,179.0,0,Transient,90.86,0,2,Canceled,2019-10-04 -Resort Hotel,0,3,2016,August,20,23,2,6,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,299.0,179.0,0,Transient-Party,64.89,0,0,Check-Out,2019-05-04 -Resort Hotel,1,166,2017,April,18,28,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.31,0,0,Canceled,2019-10-04 -Resort Hotel,1,23,2016,January,3,6,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,76.9,0,1,No-Show,2019-06-03 -Resort Hotel,0,147,2016,December,52,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,224.0,0,Transient-Party,65.51,1,0,Check-Out,2019-05-04 -City Hotel,0,27,2015,September,42,21,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,77.91,0,0,Check-Out,2018-08-03 -Resort Hotel,0,38,2016,March,10,3,0,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,C,A,0,No Deposit,193.0,179.0,0,Transient-Party,71.15,0,0,Check-Out,2019-02-01 -City Hotel,1,11,2015,October,43,4,2,1,2,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,26.59,0,0,Canceled,2018-09-02 -Resort Hotel,0,42,2016,October,42,21,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,173.0,179.0,0,Transient-Party,102.42,0,1,Check-Out,2019-09-03 -City Hotel,1,85,2015,September,36,22,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,73.85,0,0,Canceled,2018-06-02 -Resort Hotel,0,3,2016,November,49,10,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,250.0,179.0,0,Transient,46.02,1,0,Check-Out,2019-05-04 -Resort Hotel,0,298,2015,August,38,25,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,0.88,0,0,Check-Out,2018-06-02 -City Hotel,0,16,2017,May,24,20,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,E,E,0,No Deposit,13.0,193.0,0,Transient,92.8,1,0,Check-Out,2019-10-04 -City Hotel,0,49,2017,April,17,6,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.49,0,0,Check-Out,2019-02-01 -City Hotel,1,421,2017,May,37,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,158.0,179.0,0,Transient,146.41,0,0,Canceled,2020-07-03 -City Hotel,0,8,2017,June,26,20,0,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient,135.91,0,0,Check-Out,2019-11-03 -City Hotel,1,44,2016,April,17,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,4.0,179.0,0,Transient,99.63,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,August,37,15,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,150.2,0,1,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,March,12,28,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,61.29,1,0,Check-Out,2018-10-03 -City Hotel,0,40,2017,August,32,6,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,114.15,0,1,Check-Out,2020-06-02 -City Hotel,0,15,2016,February,12,28,0,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,73.0,179.0,0,Transient-Party,59.27,0,0,Check-Out,2018-11-02 -City Hotel,0,164,2015,September,36,18,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,99.87,0,1,Check-Out,2018-06-02 -City Hotel,1,287,2016,May,24,24,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,237.41,0,1,Canceled,2019-08-04 -Resort Hotel,0,18,2015,November,45,13,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,44.74,0,0,Check-Out,2018-06-02 -City Hotel,0,224,2017,August,43,17,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,91.07,0,2,Check-Out,2020-01-04 -City Hotel,1,39,2017,August,39,19,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,231.86,0,0,Canceled,2020-07-03 -Resort Hotel,0,92,2017,April,18,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,298.0,179.0,0,Transient,88.86,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,October,41,5,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,2018-05-03 -Resort Hotel,0,59,2015,December,53,11,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,43.84,0,0,Check-Out,2018-11-02 -Resort Hotel,0,93,2016,August,37,31,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,176.01,0,0,Check-Out,2019-06-03 -City Hotel,1,58,2015,December,51,9,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.48,0,0,Canceled,2018-08-03 -Resort Hotel,0,7,2016,October,28,28,0,1,2,2.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,80.51,0,0,Check-Out,2019-06-03 -Resort Hotel,0,51,2017,November,36,16,0,6,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,76.86,1,1,Check-Out,2019-09-03 -City Hotel,0,99,2016,October,42,6,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,99.88,0,2,Check-Out,2019-07-04 -Resort Hotel,0,60,2016,July,31,15,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,209.74,0,1,Check-Out,2019-08-04 -City Hotel,1,149,2017,July,29,15,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,74.42,0,0,Canceled,2020-06-02 -Resort Hotel,0,53,2017,February,11,17,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,I,0,No Deposit,378.0,179.0,0,Transient-Party,87.8,0,0,Check-Out,2020-02-01 -City Hotel,1,47,2016,October,46,29,2,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,159.85,0,1,Canceled,2019-11-03 -City Hotel,1,55,2015,September,38,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.8,0,0,Canceled,2018-06-02 -Resort Hotel,1,5,2017,February,10,6,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Transient,37.89,0,0,Canceled,2019-09-03 -Resort Hotel,0,11,2016,December,51,31,2,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,E,E,0,No Deposit,100.0,179.0,0,Transient,91.17,0,0,Check-Out,2019-11-03 -City Hotel,0,24,2016,October,44,15,1,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,121.6,0,1,Check-Out,2019-08-04 -Resort Hotel,0,220,2017,April,17,21,2,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,93.53,0,0,Check-Out,2020-05-03 -City Hotel,1,248,2015,June,45,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.04,0,0,Canceled,2018-01-03 -City Hotel,1,309,2017,May,20,5,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient-Party,77.64,0,0,Canceled,2020-03-03 -City Hotel,0,39,2017,March,18,23,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,84.0,179.0,0,Transient,114.6,0,0,No-Show,2020-02-01 -City Hotel,0,55,2015,August,38,9,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,109.98,0,0,Check-Out,2018-08-03 -City Hotel,1,389,2015,October,44,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,82.67,0,0,Canceled,2018-08-03 -Resort Hotel,0,59,2016,May,22,16,0,5,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,89.0,179.0,0,Transient,62.1,0,0,Check-Out,2019-08-04 -City Hotel,1,33,2016,July,32,9,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,62.42,0,0,Canceled,2018-05-03 -City Hotel,1,21,2016,November,50,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,13.0,45.0,0,Transient,59.57,0,0,Canceled,2018-11-02 -Resort Hotel,0,45,2016,October,43,9,1,10,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,141.03,1,0,Check-Out,2019-09-03 -City Hotel,1,0,2017,February,10,10,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,66.5,0,0,Canceled,2020-02-01 -City Hotel,0,14,2017,February,10,5,2,1,2,0.0,0,SC,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,82.39,0,0,Check-Out,2020-03-03 -Resort Hotel,0,151,2015,September,31,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Contract,58.12,0,1,Check-Out,2019-06-03 -Resort Hotel,0,266,2016,August,34,12,4,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,160.81,0,1,Check-Out,2019-05-04 -City Hotel,1,355,2015,August,35,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,85.18,0,0,Canceled,2018-06-02 -City Hotel,1,15,2017,February,10,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.95,0,0,Canceled,2020-03-03 -City Hotel,1,110,2016,October,37,28,2,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.74,0,0,Canceled,2019-08-04 -City Hotel,0,48,2016,December,50,6,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.14,0,0,Check-Out,2018-09-02 -City Hotel,1,33,2017,February,20,8,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,155.0,179.0,0,Transient,109.98,0,0,Canceled,2019-11-03 -City Hotel,1,279,2017,August,34,28,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient-Party,170.28,0,0,Canceled,2020-07-03 -City Hotel,0,58,2017,March,15,9,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,93.07,0,1,Check-Out,2020-01-04 -Resort Hotel,0,149,2017,July,30,10,1,2,1,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,245.0,179.0,0,Transient,104.0,1,1,Check-Out,2020-02-01 -City Hotel,0,158,2016,July,32,7,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,136.56,0,2,Check-Out,2019-05-04 -Resort Hotel,0,1,2015,July,32,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,55.74,1,2,Check-Out,2018-06-02 -Resort Hotel,0,40,2016,December,53,4,1,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,68.39,0,1,Check-Out,2019-12-04 -Resort Hotel,0,142,2016,March,16,24,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,132.0,179.0,0,Transient,61.95,0,0,Check-Out,2019-03-04 -City Hotel,1,109,2015,August,51,18,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,63,Transient,125.91,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,October,44,26,1,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,153.2,0,0,Check-Out,2019-06-03 -City Hotel,0,41,2016,July,43,29,2,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,175.24,0,2,Check-Out,2019-08-04 -City Hotel,1,368,2017,March,31,21,0,2,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,63.39,0,0,Canceled,2019-10-04 -City Hotel,0,1,2017,February,10,10,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient-Party,77.43,0,0,Check-Out,2020-02-01 -City Hotel,0,242,2016,July,35,21,2,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,87.06,0,0,Check-Out,2019-06-03 -City Hotel,1,394,2017,August,33,23,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,117.51,0,0,Canceled,2018-05-03 -Resort Hotel,0,2,2017,March,18,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,60.2,0,1,Check-Out,2020-02-01 -City Hotel,1,277,2017,August,34,5,2,5,2,1.0,0,HB,ITA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,94.88,0,1,Canceled,2019-07-04 -Resort Hotel,1,259,2015,February,8,30,2,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,40.85,0,0,Canceled,2019-01-03 -City Hotel,0,263,2016,August,33,28,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,104.45,0,0,Check-Out,2020-06-02 -City Hotel,0,92,2016,April,18,15,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,85.05,0,2,Check-Out,2020-02-01 -City Hotel,1,48,2016,May,19,10,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,106.22,0,0,Canceled,2019-02-01 -City Hotel,0,4,2016,October,44,12,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,45.0,0,Transient,159.39,0,0,Check-Out,2019-09-03 -City Hotel,0,160,2016,June,25,8,1,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,63,Transient,94.25,0,0,Check-Out,2019-06-03 -Resort Hotel,1,243,2015,July,34,21,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,1,0,F,F,0,No Deposit,13.0,179.0,0,Transient,135.36,0,0,Canceled,2018-05-03 -Resort Hotel,1,12,2016,April,9,5,2,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.99,0,0,Canceled,2018-11-02 -Resort Hotel,0,8,2017,March,9,22,0,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,150.0,179.0,0,Transient,72.7,0,1,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,October,43,25,4,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,37.5,0,0,Check-Out,2019-09-03 -City Hotel,0,41,2017,June,26,27,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.04,0,2,Check-Out,2020-06-02 -City Hotel,1,361,2015,July,37,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.78,0,0,Canceled,2018-08-03 -Resort Hotel,0,171,2017,August,36,25,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,179.15,0,1,Check-Out,2020-06-02 -City Hotel,0,1,2017,September,42,15,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,172.34,0,0,Check-Out,2019-11-03 -Resort Hotel,0,8,2016,March,11,6,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,D,D,0,No Deposit,14.0,271.0,0,Transient,43.91,0,0,Check-Out,2019-02-01 -City Hotel,0,257,2016,June,23,8,4,3,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,96.49,0,0,Check-Out,2019-02-01 -Resort Hotel,0,25,2016,July,21,18,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient-Party,137.29,1,0,Check-Out,2019-03-04 -Resort Hotel,0,2,2016,March,4,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,17.0,179.0,0,Transient,45.07,0,0,Check-Out,2019-04-03 -City Hotel,0,49,2016,December,53,25,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,116.0,0,0,Check-Out,2019-10-04 -City Hotel,0,43,2016,December,51,9,0,2,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,108.52,0,0,Check-Out,2019-09-03 -City Hotel,0,62,2015,October,46,27,0,3,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,69.77,0,0,Check-Out,2018-09-02 -City Hotel,0,138,2017,June,24,17,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,127.88,0,0,Check-Out,2020-06-02 -City Hotel,0,18,2017,February,9,13,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-05-03 -City Hotel,0,292,2015,August,36,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,102.5,0,0,Check-Out,2020-06-02 -City Hotel,0,36,2017,May,22,25,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,144.62,0,0,Check-Out,2020-02-01 -City Hotel,0,56,2015,October,45,28,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,59.42,0,0,Check-Out,2018-08-03 -City Hotel,1,253,2016,October,42,5,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,133.99,0,0,Canceled,2019-09-03 -City Hotel,0,0,2017,January,5,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,337.0,63.0,0,Transient,48.09,0,0,Check-Out,2019-10-04 -City Hotel,0,3,2017,February,11,25,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Contract,46.74,0,0,Check-Out,2020-07-03 -Resort Hotel,1,3,2017,December,4,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,E,0,Non Refund,296.0,179.0,0,Transient,60.54,0,0,Canceled,2019-08-04 -City Hotel,1,48,2016,December,50,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,34.0,179.0,0,Transient-Party,68.68,0,0,Canceled,2019-08-04 -City Hotel,1,90,2016,April,18,9,2,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,29.0,179.0,20,Transient,76.22,0,0,Canceled,2019-02-01 -City Hotel,0,2,2016,June,25,2,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,316.0,179.0,0,Transient,101.41,0,0,Check-Out,2019-05-04 -City Hotel,0,38,2016,November,50,9,1,3,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,151.0,0,Transient,80.04,0,0,Check-Out,2019-11-03 -City Hotel,1,435,2016,March,45,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,73.07,0,0,Canceled,2019-01-03 -Resort Hotel,0,16,2017,April,17,11,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,1,No Deposit,19.0,179.0,0,Transient,130.46,0,1,Check-Out,2019-11-03 -City Hotel,0,16,2015,September,43,8,1,2,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,109.69,0,0,Check-Out,2018-08-03 -Resort Hotel,0,148,2015,July,32,27,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,240.0,179.0,0,Transient-Party,63.27,1,1,Check-Out,2018-06-02 -City Hotel,0,11,2016,May,20,18,0,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,10.0,179.0,0,Transient,196.65,0,0,Check-Out,2019-04-03 -Resort Hotel,0,221,2017,June,27,6,2,5,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,117.54,0,0,Check-Out,2020-03-03 -City Hotel,0,48,2016,August,34,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,208.48,1,2,Check-Out,2019-08-04 -City Hotel,0,90,2017,March,10,5,2,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,77.46,0,0,Check-Out,2020-02-01 -City Hotel,0,12,2017,May,27,27,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,122.02,0,1,Check-Out,2020-02-01 -Resort Hotel,0,5,2017,May,19,31,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,73.78,0,0,Check-Out,2020-04-02 -City Hotel,0,286,2017,July,22,30,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,200.48,0,2,Check-Out,2020-04-02 -Resort Hotel,0,284,2016,March,19,31,2,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,19,Transient-Party,45.89,0,0,Check-Out,2018-12-03 -Resort Hotel,0,166,2017,June,24,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,247.0,179.0,0,Transient,214.54,1,0,Check-Out,2019-12-04 -Resort Hotel,0,31,2017,February,8,4,1,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,33.0,331.0,0,Transient,32.73,0,0,Check-Out,2019-03-04 -Resort Hotel,1,313,2016,July,32,28,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,87.31,0,2,Canceled,2019-01-03 -City Hotel,0,110,2016,June,21,4,0,1,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,1,0,0,A,D,1,No Deposit,21.0,179.0,0,Transient-Party,134.67,0,1,Check-Out,2019-03-04 -City Hotel,1,20,2016,March,11,21,2,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,63.62,0,1,Check-Out,2019-02-01 -Resort Hotel,1,11,2017,February,10,29,2,1,2,0.0,0,BB,GBR,Direct,Corporate,0,0,0,E,D,0,No Deposit,211.0,179.0,0,Transient,114.47,0,0,Canceled,2019-11-03 -City Hotel,0,18,2017,March,16,4,0,2,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,127.56,0,1,Check-Out,2020-04-02 -City Hotel,1,13,2016,October,22,20,2,4,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,87.18,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,October,15,10,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,8.0,179.0,0,Transient,90.7,0,2,No-Show,2019-03-04 -City Hotel,1,300,2016,October,45,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.01,0,0,Canceled,2018-08-03 -Resort Hotel,0,101,2015,September,35,13,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,140.0,179.0,0,Transient,80.73,0,0,Check-Out,2017-12-03 -Resort Hotel,0,102,2016,July,27,10,4,10,2,0.0,0,FB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,138.0,179.0,0,Transient,76.51,0,0,Check-Out,2020-04-02 -City Hotel,0,3,2015,December,51,10,1,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient-Party,62.29,0,1,Check-Out,2018-08-03 -City Hotel,0,13,2016,December,52,24,0,1,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,154.7,0,0,Check-Out,2019-10-04 -Resort Hotel,0,84,2016,October,43,10,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,89.72,0,2,Check-Out,2019-09-03 -City Hotel,1,98,2017,April,17,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,100.17,0,1,Canceled,2020-01-04 -Resort Hotel,0,1,2016,December,45,19,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,78.01,0,0,Check-Out,2019-12-04 -City Hotel,0,331,2016,July,30,16,0,1,1,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,78.19,0,0,Check-Out,2020-06-02 -City Hotel,0,128,2016,September,41,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient,77.78,0,0,Check-Out,2019-09-03 -City Hotel,0,142,2016,June,36,6,2,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,100.13,1,1,Check-Out,2019-06-03 -Resort Hotel,1,2,2017,March,11,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,I,0,No Deposit,240.0,179.0,0,Transient,0.0,0,1,No-Show,2020-04-02 -City Hotel,1,288,2016,October,44,6,2,0,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,124.1,0,0,Canceled,2019-08-04 -City Hotel,0,97,2015,July,32,5,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,62.67,0,0,Check-Out,2019-04-03 -City Hotel,0,33,2017,May,20,5,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,1,0,1,A,A,2,No Deposit,10.0,179.0,0,Group,73.49,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,May,24,13,0,10,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,E,E,1,No Deposit,39.0,166.0,0,Transient,80.26,0,0,Check-Out,2019-12-04 -City Hotel,0,320,2015,September,53,20,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient-Party,73.89,0,0,Check-Out,2018-08-03 -City Hotel,1,150,2016,September,38,29,2,5,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,242.38,0,2,Canceled,2019-05-04 -Resort Hotel,1,94,2016,August,35,15,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,152.21,0,2,Canceled,2019-01-03 -Resort Hotel,0,12,2017,February,10,13,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,29.74,0,0,Check-Out,2019-11-03 -City Hotel,1,1,2015,October,43,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,76.74,0,0,No-Show,2018-08-03 -Resort Hotel,0,208,2016,October,45,4,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,92.0,179.0,0,Transient-Party,60.21,0,0,Check-Out,2019-09-03 -City Hotel,1,17,2016,March,17,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,D,D,0,No Deposit,13.0,331.0,0,Transient,80.79,0,0,Canceled,2019-03-04 -City Hotel,0,7,2017,June,22,28,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,24.0,179.0,0,Transient,97.12,0,0,Check-Out,2020-04-02 -City Hotel,1,8,2016,June,21,31,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,111.21,0,0,Canceled,2019-06-03 -City Hotel,1,204,2015,October,45,8,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,32.5,0,0,Canceled,2018-08-03 -City Hotel,1,272,2016,September,38,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient,122.59,0,0,Check-Out,2019-06-03 -City Hotel,0,81,2016,October,46,20,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,68.6,0,0,Check-Out,2019-12-04 -City Hotel,0,102,2015,July,49,27,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,72.06,1,0,Check-Out,2018-05-03 -City Hotel,1,153,2017,June,26,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,99.38,0,0,Canceled,2020-04-02 -Resort Hotel,1,0,2016,December,53,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,F,E,0,No Deposit,13.0,240.0,0,Transient,64.65,0,0,Canceled,2018-11-02 -City Hotel,1,405,2015,October,45,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,2.0,45.0,0,Transient-Party,64.06,0,0,Canceled,2018-08-03 -City Hotel,0,99,2015,November,44,10,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,63.6,1,2,Check-Out,2019-11-03 -City Hotel,1,177,2016,May,20,6,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,120.55,0,0,Canceled,2019-03-04 -Resort Hotel,0,313,2017,May,21,17,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,113.15,0,0,Check-Out,2020-07-03 -City Hotel,1,3,2015,December,53,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,72.87,0,0,Check-Out,2018-05-03 -Resort Hotel,0,8,2016,April,21,24,0,3,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,310.0,179.0,0,Transient,93.54,1,0,Check-Out,2019-03-04 -City Hotel,1,96,2015,December,50,29,2,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.55,0,0,Canceled,2019-07-04 -Resort Hotel,0,98,2016,July,28,24,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,190.36,1,1,Check-Out,2020-06-02 -City Hotel,0,22,2017,June,26,15,2,5,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,110.96,0,0,Check-Out,2020-02-01 -City Hotel,1,3,2017,May,21,31,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,1.13,0,0,Canceled,2020-03-03 -Resort Hotel,1,9,2016,March,17,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,Non Refund,12.0,45.0,0,Transient,91.09,0,0,No-Show,2019-03-04 -City Hotel,1,52,2015,July,28,30,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,89.81,0,0,Canceled,2018-07-03 -City Hotel,0,1,2016,October,42,6,1,0,2,2.0,0,BB,CHE,Online TA,Direct,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,170.92,0,2,Check-Out,2019-08-04 -City Hotel,0,3,2017,August,43,13,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,201.18,0,0,Check-Out,2019-09-03 -City Hotel,0,109,2017,July,34,14,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,143.84,0,1,Check-Out,2020-07-03 -Resort Hotel,1,51,2015,August,39,31,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,171.1,0,0,Canceled,2018-06-02 -Resort Hotel,0,2,2015,September,43,18,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,76.0,179.0,0,Group,58.61,0,0,Check-Out,2018-08-03 -Resort Hotel,0,211,2017,March,17,31,1,2,2,0.0,0,HB,SWE,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,223.0,0,Transient-Party,35.46,0,0,Check-Out,2020-04-02 -Resort Hotel,0,99,2016,November,10,31,0,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,251.0,179.0,0,Transient-Party,34.83,0,0,Check-Out,2019-04-03 -City Hotel,0,25,2017,February,11,16,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,148.27,0,2,Check-Out,2020-04-02 -City Hotel,0,42,2016,June,44,15,0,2,2,2.0,0,HB,ITA,Direct,TA/TO,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,224.27,0,2,Check-Out,2019-09-03 -Resort Hotel,0,16,2016,December,50,4,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,H,I,0,No Deposit,200.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -City Hotel,0,24,2017,May,22,6,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,210.75,0,1,Check-Out,2020-04-02 -City Hotel,0,48,2016,September,38,25,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,126.73,0,1,Check-Out,2019-06-03 -City Hotel,1,36,2016,November,53,28,1,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,131.21,0,0,Canceled,2019-10-04 -City Hotel,1,56,2015,September,35,20,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.15,0,0,Canceled,2018-08-03 -City Hotel,1,136,2017,March,21,18,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,157.98,0,2,Canceled,2019-04-03 -City Hotel,0,35,2017,April,16,21,2,1,1,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,42.86,0,0,Check-Out,2020-03-03 -City Hotel,0,8,2017,August,4,25,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.11,0,1,Check-Out,2020-01-04 -Resort Hotel,1,107,2017,March,17,11,2,7,2,0.0,0,FB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,0,Non Refund,273.0,179.0,0,Transient,126.95,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2016,February,11,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,230.0,0,Transient,49.89,0,0,Check-Out,2018-10-03 -City Hotel,0,9,2016,February,11,21,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,0,No Deposit,87.0,331.0,0,Transient,34.28,0,0,Check-Out,2018-10-03 -City Hotel,1,29,2015,June,26,21,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,72.95,0,0,Canceled,2019-02-01 -City Hotel,0,63,2017,July,24,5,2,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,244.46,0,1,Check-Out,2020-06-02 -City Hotel,0,18,2017,May,22,25,2,1,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-04-02 -Resort Hotel,0,149,2016,March,10,31,0,4,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,3,Refundable,13.0,222.0,0,Transient-Party,49.98,0,0,Check-Out,2019-02-01 -Resort Hotel,1,15,2017,July,36,15,0,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,237.0,179.0,0,Transient,197.0,0,1,Canceled,2020-04-02 -Resort Hotel,0,92,2016,August,9,25,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,80.73,0,0,Check-Out,2019-01-03 -City Hotel,0,42,2016,September,43,17,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,114.25,0,0,Check-Out,2019-12-04 -Resort Hotel,1,63,2015,August,33,15,0,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,160.0,179.0,0,Transient,71.49,0,0,Canceled,2018-06-02 -City Hotel,1,40,2017,May,16,3,2,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.21,0,2,Canceled,2020-03-03 -City Hotel,0,2,2016,October,47,22,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,90.03,0,1,Check-Out,2019-08-04 -Resort Hotel,0,274,2017,June,27,17,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,78.27,1,3,Check-Out,2020-07-03 -City Hotel,0,157,2017,April,15,16,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,144.44,0,2,Check-Out,2020-02-01 -City Hotel,1,15,2016,January,3,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,75.71,0,0,Canceled,2018-11-02 -Resort Hotel,0,2,2017,February,11,31,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,177.0,238.0,0,Transient-Party,36.14,0,0,Check-Out,2020-02-01 -City Hotel,0,150,2017,March,16,15,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Contract,106.55,0,1,Check-Out,2020-03-03 -City Hotel,0,12,2016,March,11,28,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,71.73,0,2,Check-Out,2019-07-04 -City Hotel,0,85,2016,September,46,15,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,120.57,0,0,Check-Out,2019-07-04 -City Hotel,0,19,2015,September,32,29,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.11,0,0,Check-Out,2018-06-02 -City Hotel,0,3,2017,January,3,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,62.31,0,0,Check-Out,2019-08-04 -Resort Hotel,1,256,2015,September,35,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,D,0,No Deposit,164.0,179.0,0,Transient-Party,95.84,0,0,Canceled,2018-05-03 -Resort Hotel,0,22,2016,January,51,27,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,220.0,179.0,0,Transient,43.5,0,0,Check-Out,2019-11-03 -Resort Hotel,1,56,2017,July,23,27,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,62.48,0,0,Canceled,2020-02-01 -City Hotel,1,153,2016,May,23,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.8,0,0,Canceled,2019-03-04 -Resort Hotel,0,152,2016,April,21,6,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,241.0,179.0,0,Transient,67.1,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2017,January,2,6,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,12.0,60.0,0,Transient,62.15,0,0,Check-Out,2019-11-03 -City Hotel,1,390,2016,April,29,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,16,Transient,59.53,0,0,Canceled,2018-11-02 -Resort Hotel,1,9,2016,December,53,26,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,285.0,179.0,0,Transient-Party,73.19,0,0,Canceled,2019-10-04 -City Hotel,1,42,2017,March,17,25,0,3,3,0.0,0,BB,ESP,Complementary,Direct,0,0,0,D,F,2,No Deposit,11.0,179.0,0,Transient,112.01,0,2,Canceled,2020-03-03 -City Hotel,0,7,2017,February,9,9,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,69.0,179.0,0,Transient,71.06,0,1,Check-Out,2019-11-03 -City Hotel,0,15,2016,August,11,30,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,82.95,0,0,Check-Out,2018-09-02 -Resort Hotel,0,153,2016,October,43,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,91.15,0,0,Check-Out,2019-08-04 -City Hotel,1,251,2015,July,44,18,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,58.42,0,0,Canceled,2017-12-03 -City Hotel,0,0,2016,January,4,6,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,95.58,1,1,Check-Out,2019-10-04 -City Hotel,1,21,2016,December,46,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,45.0,0,Transient-Party,76.53,0,0,Canceled,2019-09-03 -City Hotel,1,249,2015,October,44,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,58.9,0,0,Canceled,2017-12-03 -City Hotel,1,40,2016,December,52,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,236.0,179.0,0,Transient,96.02,0,0,No-Show,2019-01-03 -City Hotel,1,14,2016,October,11,2,2,1,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,96.33,0,1,Canceled,2019-03-04 -Resort Hotel,0,127,2017,July,28,15,2,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,189.0,179.0,0,Transient-Party,243.99,0,0,Check-Out,2020-04-02 -Resort Hotel,0,84,2017,February,10,18,0,5,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,75,Transient,77.57,0,0,Check-Out,2019-11-03 -City Hotel,0,86,2015,December,50,25,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,8.0,179.0,0,Contract,59.05,0,0,Check-Out,2018-09-02 -Resort Hotel,1,42,2016,May,31,24,0,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,218.69,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,May,21,10,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,134.58,0,1,Check-Out,2020-04-02 -City Hotel,0,120,2016,June,42,17,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,75.08,0,1,Check-Out,2019-09-03 -Resort Hotel,0,11,2016,July,22,21,2,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,February,12,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,18.0,179.0,0,Transient,30.69,1,0,Check-Out,2019-03-04 -Resort Hotel,0,2,2017,January,4,4,1,0,3,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,60.9,0,1,Check-Out,2019-12-04 -Resort Hotel,0,245,2017,June,23,28,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,161.44,1,1,Check-Out,2020-02-01 -Resort Hotel,0,50,2015,December,50,18,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,63.45,0,0,Check-Out,2018-09-02 -City Hotel,1,94,2015,December,53,6,2,3,2,1.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,79.77,0,2,Canceled,2018-06-02 -City Hotel,0,19,2016,May,23,24,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.53,0,0,Check-Out,2019-03-04 -City Hotel,0,250,2015,September,35,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,67.92,0,0,Check-Out,2018-08-03 -Resort Hotel,0,57,2015,August,36,6,2,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,239.0,179.0,0,Transient,97.09,0,2,Check-Out,2018-06-02 -City Hotel,0,1,2017,May,19,7,2,1,2,0.0,0,BB,GBR,Aviation,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,153.81,0,2,Check-Out,2020-06-02 -City Hotel,0,40,2017,April,22,28,0,1,3,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,9.0,225.0,0,Transient-Party,132.11,0,0,Check-Out,2020-04-02 -Resort Hotel,1,0,2016,March,11,28,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,62.19,0,0,Canceled,2019-03-04 -City Hotel,0,0,2017,April,15,28,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.3,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2016,February,18,27,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.64,0,0,Check-Out,2018-11-02 -Resort Hotel,0,7,2015,November,50,21,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,59.99,1,0,Check-Out,2019-01-03 -City Hotel,1,105,2017,July,32,9,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,202.19,0,1,Canceled,2020-04-02 -City Hotel,1,93,2016,May,23,9,2,0,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,B,2,No Deposit,33.0,179.0,0,Transient,184.46,0,0,Canceled,2019-02-01 -Resort Hotel,0,250,2015,August,33,24,2,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,83.23,0,0,Check-Out,2018-09-02 -City Hotel,1,51,2016,April,8,10,2,2,2,2.0,0,HB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,161.95,0,0,Canceled,2019-01-03 -City Hotel,1,33,2017,January,3,4,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.8,0,0,Canceled,2019-08-04 -City Hotel,1,12,2016,July,41,6,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,165.89,0,1,Canceled,2019-01-03 -City Hotel,0,28,2017,June,25,15,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,86.0,0,0,Check-Out,2020-03-03 -City Hotel,0,4,2016,August,34,5,1,0,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,B,0,No Deposit,10.0,179.0,0,Transient,99.61,0,0,Check-Out,2019-05-04 -Resort Hotel,0,242,2015,October,42,10,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.33,0,0,Check-Out,2018-08-03 -City Hotel,1,51,2015,August,35,21,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,41,Transient,95.68,0,0,Canceled,2017-11-02 -City Hotel,0,0,2016,February,13,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,16.0,45.0,0,Transient,62.7,0,0,Check-Out,2019-11-03 -City Hotel,1,89,2017,May,23,25,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,96.96,0,1,Canceled,2019-11-03 -Resort Hotel,0,39,2017,March,18,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient-Party,69.6,0,0,Check-Out,2020-01-04 -City Hotel,0,13,2017,May,26,9,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,149.02,0,3,Check-Out,2020-04-02 -City Hotel,1,36,2016,November,50,11,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,144.21,0,2,Canceled,2019-09-03 -Resort Hotel,0,2,2016,February,12,29,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,322.0,67.0,0,Transient-Party,63.18,0,0,Check-Out,2018-10-03 -City Hotel,1,136,2015,August,33,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,115.36,0,1,Canceled,2018-05-03 -City Hotel,1,0,2017,June,24,14,0,1,1,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.8,0,0,No-Show,2019-07-04 -Resort Hotel,1,2,2016,August,35,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,46.68,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,January,2,15,0,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,250.0,331.0,0,Transient,33.88,0,0,Check-Out,2019-11-03 -Resort Hotel,0,16,2017,June,26,2,0,1,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,162.75,0,0,Check-Out,2020-06-02 -City Hotel,1,161,2016,April,22,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,112.1,0,0,Canceled,2019-03-04 -City Hotel,1,13,2016,November,50,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,13.0,179.0,0,Transient,60.31,0,0,Canceled,2019-09-03 -City Hotel,0,230,2016,July,27,20,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,102.64,0,1,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,March,21,17,1,5,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,2,No Deposit,13.0,179.0,0,Transient,59.82,0,1,Check-Out,2019-06-03 -City Hotel,0,17,2017,March,26,7,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.73,0,2,Check-Out,2020-04-02 -Resort Hotel,1,0,2016,February,10,23,0,3,1,0.0,0,BB,PRT,Corporate,Direct,0,1,0,A,D,0,Non Refund,17.0,179.0,0,Transient,59.66,0,0,Canceled,2018-12-03 -Resort Hotel,0,146,2017,December,52,27,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,2,No Deposit,378.0,179.0,0,Transient-Party,70.33,0,0,Check-Out,2019-11-03 -City Hotel,1,217,2017,September,26,13,0,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,97.41,0,0,Canceled,2018-09-02 -City Hotel,1,162,2015,July,38,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,97.02,0,0,Canceled,2018-06-02 -City Hotel,1,39,2015,September,47,15,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.07,0,0,Canceled,2018-08-03 -City Hotel,0,1,2017,May,20,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,121.62,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2016,March,16,14,1,0,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,0,28,2015,August,32,9,2,1,2,0.0,0,FB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,46.4,0,0,Check-Out,2018-07-03 -City Hotel,1,420,2017,July,38,17,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,123.01,0,0,Canceled,2018-08-03 -City Hotel,0,19,2016,August,37,9,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,78.47,0,0,Check-Out,2019-06-03 -City Hotel,1,138,2016,December,53,10,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.1,0,0,Canceled,2019-10-04 -City Hotel,0,247,2015,August,33,5,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,80.62,0,1,Check-Out,2018-07-03 -City Hotel,0,94,2017,April,22,15,2,5,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.08,0,0,Check-Out,2020-03-03 -Resort Hotel,1,38,2016,May,27,17,1,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,122.36,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2017,April,16,16,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,244.0,179.0,0,Transient,69.27,0,2,Check-Out,2020-03-03 -City Hotel,0,0,2016,September,28,19,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,80.66,0,0,Check-Out,2019-07-04 -City Hotel,1,23,2016,June,35,20,0,1,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,94.71,1,0,Canceled,2019-01-03 -City Hotel,0,0,2017,May,22,15,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,143.0,0,Transient,125.46,0,0,Check-Out,2020-04-02 -City Hotel,0,4,2015,July,31,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,83.34,0,0,Check-Out,2018-06-02 -City Hotel,1,78,2017,March,11,15,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.28,0,2,Canceled,2020-03-03 -City Hotel,0,89,2017,April,23,5,2,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,103.68,0,1,Check-Out,2020-07-03 -City Hotel,0,38,2016,December,49,1,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.95,0,0,Check-Out,2019-07-04 -City Hotel,1,377,2015,October,44,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,66,Transient,60.75,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2015,November,49,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,59.57,0,0,Check-Out,2018-07-03 -City Hotel,1,315,2015,October,44,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.22,0,1,Canceled,2017-11-02 -Resort Hotel,0,273,2015,October,46,17,0,1,1,0.0,0,HB,ESP,Groups,Corporate,0,0,0,A,C,3,No Deposit,12.0,259.0,0,Transient-Party,59.98,0,0,Check-Out,2018-09-02 -Resort Hotel,1,107,2016,July,27,24,2,5,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,332.0,179.0,0,Transient,210.74,0,0,Canceled,2019-02-01 -Resort Hotel,0,7,2016,March,10,25,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,103.2,0,0,Check-Out,2019-02-01 -Resort Hotel,1,104,2016,September,23,5,2,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,130.4,0,0,Canceled,2019-06-03 -City Hotel,0,1,2016,June,26,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,65.0,179.0,0,Transient,80.66,0,0,Check-Out,2019-01-03 -Resort Hotel,1,19,2017,March,9,6,0,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,61.45,0,0,Canceled,2020-03-03 -City Hotel,1,105,2016,August,23,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,70.5,0,0,Canceled,2018-08-03 -City Hotel,1,38,2017,March,20,21,2,5,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.54,0,1,Check-Out,2020-02-01 -Resort Hotel,0,22,2016,June,23,9,2,0,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,297.0,179.0,0,Transient,66.05,0,0,Check-Out,2019-04-03 -Resort Hotel,1,12,2017,February,8,25,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,D,D,0,No Deposit,336.0,239.0,0,Transient,36.69,0,0,Canceled,2020-03-03 -City Hotel,0,49,2015,August,38,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,115.52,0,1,Check-Out,2018-08-03 -Resort Hotel,1,88,2016,December,53,19,2,1,3,0.0,0,BB,BRA,Direct,Direct,0,0,1,E,E,0,No Deposit,15.0,179.0,0,Transient,137.81,0,0,Canceled,2019-10-04 -Resort Hotel,1,240,2017,July,31,18,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,241.0,179.0,0,Transient,91.0,0,0,No-Show,2019-05-04 -City Hotel,0,2,2017,January,4,22,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,87.57,0,1,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,December,50,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,37.05,0,0,Check-Out,2019-09-03 -Resort Hotel,0,109,2017,April,17,25,2,5,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,91.83,0,1,No-Show,2020-03-03 -City Hotel,1,46,2017,May,20,30,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient-Party,207.12,0,0,Canceled,2020-01-04 -City Hotel,1,263,2016,May,21,26,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,91.55,0,0,Canceled,2019-02-01 -Resort Hotel,0,11,2016,January,5,28,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,100.0,0,Transient,63.04,0,1,Check-Out,2019-08-04 -Resort Hotel,0,258,2016,October,44,24,2,1,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,240.0,179.0,0,Transient,157.51,0,3,Check-Out,2019-08-04 -City Hotel,1,17,2016,February,11,25,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,69.33,0,1,Canceled,2019-02-01 -City Hotel,0,48,2017,June,16,31,0,1,1,0.0,0,BB,CN,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.9,0,0,Check-Out,2020-04-02 -City Hotel,0,260,2015,October,41,17,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,72.02,0,2,Check-Out,2018-09-02 -Resort Hotel,0,51,2017,June,26,2,2,7,1,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,378.0,179.0,0,Transient,96.83,0,0,Check-Out,2020-06-02 -Resort Hotel,0,36,2016,January,2,23,0,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,167.0,179.0,0,Transient,87.26,0,0,Check-Out,2019-02-01 -Resort Hotel,0,14,2017,May,21,30,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,118.36,0,0,Check-Out,2020-07-03 -Resort Hotel,0,2,2016,September,44,16,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,161.12,0,0,Check-Out,2020-03-03 -City Hotel,0,109,2016,April,17,20,2,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,86.65,0,2,Check-Out,2019-04-03 -City Hotel,1,102,2016,July,31,15,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.01,0,0,Canceled,2019-06-03 -City Hotel,0,115,2015,October,42,20,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient,120.22,0,3,Check-Out,2018-12-03 -City Hotel,1,96,2017,May,25,20,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,102.39,0,0,Canceled,2020-02-01 -City Hotel,1,33,2016,May,32,29,0,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,137.77,0,1,Canceled,2020-03-03 -City Hotel,0,0,2015,August,34,14,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,142.78,0,1,Check-Out,2018-07-03 -City Hotel,0,2,2016,October,45,10,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,88.9,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2017,May,21,21,1,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,119.42,1,2,Check-Out,2019-12-04 -City Hotel,1,97,2016,March,10,13,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,80.0,179.0,0,Transient,61.63,0,0,No-Show,2019-02-01 -Resort Hotel,0,3,2016,August,39,9,1,3,2,0.0,0,BB,NLD,Online TA,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,240.19,0,1,Check-Out,2019-06-03 -Resort Hotel,0,56,2017,April,22,29,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,157.92,1,2,Check-Out,2020-03-03 -City Hotel,0,61,2015,July,31,19,0,1,2,0.0,0,BB,CHE,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,130.87,0,0,Canceled,2018-06-02 -City Hotel,1,357,2017,January,23,29,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,70.69,1,0,Canceled,2019-11-03 -City Hotel,1,389,2017,August,44,31,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.61,0,0,Canceled,2019-11-03 -Resort Hotel,1,103,2017,March,53,18,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,237.0,179.0,0,Transient,194.26,0,3,Canceled,2019-11-03 -City Hotel,0,2,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,A,1,No Deposit,13.0,62.0,0,Transient,0.16,0,3,Check-Out,2020-02-01 -City Hotel,1,298,2016,July,31,15,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,97.68,0,0,Canceled,2018-08-03 -Resort Hotel,0,10,2017,May,20,15,1,5,1,0.0,0,SC,GBR,Aviation,Corporate,0,0,0,E,E,2,No Deposit,14.0,186.0,0,Transient,130.97,0,0,Check-Out,2020-04-02 -Resort Hotel,0,143,2017,August,36,6,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,239.0,179.0,0,Transient,202.95,0,3,Check-Out,2020-07-03 -Resort Hotel,1,149,2016,March,15,31,2,5,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,221.0,0,Transient-Party,71.02,0,0,Canceled,2019-06-03 -City Hotel,0,165,2017,March,23,27,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,G,0,No Deposit,13.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-10-04 -Resort Hotel,0,44,2016,August,34,6,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,193.38,0,0,Check-Out,2019-01-03 -City Hotel,0,54,2016,April,15,15,2,4,3,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,157.61,0,0,Check-Out,2019-02-01 -City Hotel,0,246,2015,August,44,5,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,241.0,179.0,0,Transient-Party,60.52,0,1,Check-Out,2018-12-03 -City Hotel,1,17,2017,February,10,27,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,70.07,0,0,Canceled,2020-02-01 -Resort Hotel,0,153,2016,August,36,13,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient-Party,133.83,1,2,Check-Out,2019-08-04 -City Hotel,0,43,2017,May,22,18,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,130.27,0,0,Check-Out,2020-03-03 -City Hotel,0,9,2016,June,3,10,1,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.59,0,0,Check-Out,2019-03-04 -City Hotel,1,149,2016,March,17,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient-Party,71.55,0,0,Canceled,2018-12-03 -Resort Hotel,0,40,2017,March,17,27,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,178.64,1,0,Check-Out,2020-02-01 -City Hotel,0,53,2016,June,30,15,0,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,94.69,0,0,Check-Out,2019-04-03 -City Hotel,0,8,2017,July,23,20,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,113.83,0,1,Check-Out,2019-12-04 -City Hotel,0,94,2015,September,41,18,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,75.05,0,0,Check-Out,2018-08-03 -City Hotel,1,4,2015,September,35,4,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,165.07,0,2,Canceled,2018-06-02 -City Hotel,0,97,2017,June,22,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.61,1,3,Check-Out,2020-01-04 -City Hotel,0,40,2016,August,25,30,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,107.8,0,1,Check-Out,2019-06-03 -City Hotel,1,47,2017,June,26,27,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,80.58,0,0,Canceled,2020-07-03 -City Hotel,0,144,2016,June,25,2,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,65.15,0,0,Check-Out,2019-02-01 -City Hotel,0,94,2016,June,27,30,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.27,0,0,Check-Out,2019-01-03 -Resort Hotel,0,6,2017,June,28,8,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,0,D,D,2,No Deposit,16.0,225.0,0,Transient,117.8,0,0,Check-Out,2020-06-02 -City Hotel,1,144,2016,December,53,24,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,G,G,2,No Deposit,314.0,179.0,0,Transient,68.8,0,3,Canceled,2019-10-04 -Resort Hotel,0,38,2016,March,17,28,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,329.0,179.0,0,Transient,58.93,0,3,Check-Out,2019-02-01 -City Hotel,1,91,2017,May,25,25,2,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,121.16,0,0,Canceled,2020-01-04 -City Hotel,1,139,2016,August,36,9,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,110.52,0,0,Canceled,2018-05-03 -City Hotel,0,58,2016,December,51,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,67.57,0,2,Check-Out,2019-08-04 -City Hotel,1,101,2015,December,5,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,76.35,0,0,Canceled,2018-11-02 -City Hotel,1,31,2017,March,16,6,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.13,0,3,Canceled,2020-03-03 -City Hotel,0,250,2017,June,31,5,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,119.61,0,2,Check-Out,2020-03-03 -Resort Hotel,1,11,2016,March,17,15,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,75.62,0,0,Canceled,2019-02-01 -City Hotel,1,161,2015,March,45,31,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.76,0,0,Canceled,2018-11-02 -Resort Hotel,0,57,2017,July,33,7,1,0,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,161.17,0,0,Check-Out,2020-06-02 -City Hotel,0,53,2015,December,51,28,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,167.0,179.0,0,Transient-Party,90.86,0,2,Check-Out,2018-11-02 -City Hotel,1,423,2017,August,32,2,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,130.51,0,0,Canceled,2019-07-04 -City Hotel,0,3,2016,December,50,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,41.0,223.0,0,Transient-Party,60.81,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,October,43,19,0,2,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,17.0,179.0,0,Transient,174.92,0,0,Check-Out,2019-09-03 -City Hotel,0,18,2016,September,33,26,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,84.36,0,0,Check-Out,2019-09-03 -Resort Hotel,0,3,2015,August,34,12,0,2,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient-Party,107.04,0,0,Check-Out,2018-05-03 -City Hotel,0,39,2016,December,43,27,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.63,0,2,Check-Out,2019-12-04 -City Hotel,1,40,2015,October,44,22,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.27,0,1,Canceled,2018-08-03 -City Hotel,1,330,2016,December,24,27,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,65.36,0,0,Canceled,2019-10-04 -City Hotel,0,109,2016,August,34,9,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,108.18,0,3,Check-Out,2019-08-04 -City Hotel,1,151,2017,August,37,27,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.08,0,0,Canceled,2019-11-03 -City Hotel,0,154,2016,April,17,31,1,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.47,1,2,Check-Out,2019-03-04 -Resort Hotel,0,1,2017,January,2,9,0,2,2,2.0,0,BB,BEL,Online TA,Direct,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,63.85,0,0,Check-Out,2019-09-03 -City Hotel,1,7,2016,September,45,11,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,144.06,0,0,No-Show,2018-12-03 -Resort Hotel,0,86,2017,February,10,28,0,1,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,76.82,0,0,Check-Out,2020-03-03 -City Hotel,0,34,2016,December,51,6,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,73.37,0,1,Check-Out,2019-09-03 -Resort Hotel,0,1,2015,November,50,12,0,1,1,0.0,0,BB,NLD,Direct,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,39.09,0,0,Check-Out,2018-11-02 -City Hotel,0,4,2016,October,42,10,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,F,0,No Deposit,14.0,45.0,0,Transient,0.35,0,1,Check-Out,2019-08-04 -City Hotel,0,147,2017,April,16,10,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,106.71,0,0,Check-Out,2020-04-02 -City Hotel,1,166,2016,August,26,9,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,1.0,179.0,0,Transient,88.86,0,0,Canceled,2018-08-03 -City Hotel,1,98,2016,December,53,21,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.5,0,2,Canceled,2019-11-03 -City Hotel,0,11,2017,June,26,27,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,172.51,0,1,Canceled,2020-06-02 -City Hotel,0,231,2017,May,10,27,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,60.95,0,0,Check-Out,2019-11-03 -City Hotel,1,426,2015,October,46,21,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.24,0,0,Canceled,2017-11-02 -City Hotel,0,4,2015,December,50,21,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,88.69,0,0,Check-Out,2019-11-03 -City Hotel,0,154,2017,May,36,21,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,160.72,0,1,Check-Out,2019-11-03 -City Hotel,1,35,2015,July,30,14,0,4,2,0.0,0,BB,GBR,Undefined,Undefined,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,99.7,0,1,Canceled,2020-06-02 -Resort Hotel,0,13,2016,June,17,30,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,246.0,179.0,0,Transient,118.02,0,1,Check-Out,2019-11-03 -City Hotel,0,10,2017,May,21,28,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,11.0,179.0,0,Transient-Party,97.11,0,0,Check-Out,2020-02-01 -City Hotel,1,410,2015,October,45,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.29,0,0,Canceled,2018-08-03 -Resort Hotel,1,18,2015,December,49,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,1,L,D,0,No Deposit,192.0,179.0,0,Transient,60.12,0,0,Canceled,2018-11-02 -City Hotel,0,138,2017,August,34,9,2,2,3,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,E,L,0,No Deposit,8.0,179.0,0,Transient,131.52,0,1,Check-Out,2020-06-02 -City Hotel,0,21,2016,June,25,23,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,75.82,0,0,Check-Out,2019-07-04 -Resort Hotel,0,37,2017,January,9,28,0,1,1,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,250.0,179.0,0,Transient-Party,86.05,0,0,Check-Out,2019-10-04 -Resort Hotel,0,23,2017,July,32,25,2,6,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,160.62,0,2,Check-Out,2020-04-02 -City Hotel,1,9,2016,October,45,28,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,92.12,0,0,Canceled,2019-11-03 -City Hotel,0,3,2016,August,9,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,39.45,0,0,Check-Out,2018-11-02 -City Hotel,1,104,2016,June,27,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.6,0,1,Canceled,2019-03-04 -City Hotel,0,12,2016,October,42,19,1,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.96,0,2,Check-Out,2019-05-04 -City Hotel,0,13,2015,September,42,20,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,99.75,0,2,Check-Out,2018-09-02 -City Hotel,0,118,2015,October,44,10,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,251.0,0,Transient-Party,76.08,0,0,Check-Out,2018-08-03 -Resort Hotel,1,165,2015,December,49,11,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,45.0,179.0,0,Transient,63.0,0,0,Canceled,2018-12-03 -Resort Hotel,1,9,2017,March,11,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,239.0,179.0,0,Transient,34.55,0,0,Canceled,2018-11-02 -City Hotel,0,60,2017,July,37,6,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,156.56,0,2,Check-Out,2019-07-04 -City Hotel,1,407,2017,February,3,15,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,92.62,0,0,Canceled,2019-11-03 -Resort Hotel,0,19,2016,September,43,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,3,No Deposit,199.0,179.0,0,Transient,61.28,0,0,Check-Out,2019-08-04 -City Hotel,0,257,2016,July,30,17,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,101.97,0,1,Check-Out,2019-04-03 -Resort Hotel,1,30,2016,August,36,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,113.59,0,0,No-Show,2019-01-03 -Resort Hotel,0,2,2017,September,34,19,4,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,0,No Deposit,17.0,179.0,0,Transient,102.93,1,0,Check-Out,2020-06-02 -City Hotel,1,6,2017,March,16,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,73.0,179.0,0,Group,31.51,0,1,Canceled,2020-01-04 -City Hotel,0,48,2015,August,32,5,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,132.73,0,0,Check-Out,2018-05-03 -City Hotel,1,13,2016,October,42,14,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,38.05,0,0,No-Show,2019-09-03 -City Hotel,0,49,2017,May,22,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Group,131.13,0,0,Check-Out,2020-04-02 -Resort Hotel,0,151,2016,July,32,8,2,7,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2016,September,35,15,0,3,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-07-04 -City Hotel,1,16,2017,March,26,27,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.38,0,1,Canceled,2020-02-01 -City Hotel,0,1,2016,March,16,10,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,January,3,5,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Group,0.0,0,1,Check-Out,2018-11-02 -City Hotel,0,1,2015,October,44,30,0,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,183.1,0,0,Check-Out,2018-09-02 -City Hotel,1,266,2016,April,43,25,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,74.5,0,0,Canceled,2018-08-03 -City Hotel,1,18,2017,March,9,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,60.62,0,0,Canceled,2019-10-04 -Resort Hotel,0,16,2015,October,42,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,45.0,0,Transient,35.1,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,February,3,5,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,64.7,0,1,Check-Out,2018-11-02 -City Hotel,0,78,2016,June,24,22,0,1,1,0.0,0,SC,CN,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,82.02,0,0,Check-Out,2019-03-04 -City Hotel,0,97,2016,October,44,31,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.27,0,0,Check-Out,2019-04-03 -Resort Hotel,1,302,2016,August,36,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,10.0,179.0,0,Transient,175.14,0,0,Canceled,2018-05-03 -City Hotel,0,50,2016,September,38,13,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,119.0,0,0,Check-Out,2018-12-03 -Resort Hotel,0,148,2016,March,10,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,Refundable,14.0,222.0,0,Transient,35.62,1,0,Check-Out,2019-01-03 -Resort Hotel,1,17,2015,November,51,31,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.31,0,0,Canceled,2018-05-03 -City Hotel,0,3,2016,March,9,30,0,3,3,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient,115.38,0,1,Check-Out,2019-02-01 -Resort Hotel,0,12,2016,March,51,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,249.0,236.0,0,Transient,31.79,0,2,Check-Out,2019-12-04 -Resort Hotel,0,37,2016,May,24,30,1,1,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,197.75,1,2,Check-Out,2019-03-04 -Resort Hotel,0,43,2016,April,15,28,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,222.0,0,Transient-Party,59.46,1,0,Check-Out,2019-02-01 -Resort Hotel,0,44,2017,August,21,19,1,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,121.55,1,1,Check-Out,2020-05-03 -Resort Hotel,0,193,2016,October,36,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,145.73,0,2,Check-Out,2019-08-04 -City Hotel,1,83,2016,August,18,21,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.04,0,0,Canceled,2018-11-02 -City Hotel,1,169,2015,September,35,15,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,2.0,179.0,0,Contract,61.9,0,0,Canceled,2017-11-02 -Resort Hotel,1,0,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,32.96,0,0,Canceled,2019-10-04 -City Hotel,1,0,2016,January,5,23,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,64.74,0,0,No-Show,2018-11-02 -City Hotel,0,52,2017,February,22,31,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.14,0,0,Check-Out,2020-03-03 -City Hotel,0,132,2017,May,22,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,69.16,1,0,Check-Out,2020-04-02 -Resort Hotel,0,142,2017,April,29,8,2,3,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,54.53,1,2,Check-Out,2020-04-02 -Resort Hotel,1,164,2017,July,31,28,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,E,0,Non Refund,14.0,179.0,0,Transient,122.66,0,0,Canceled,2020-06-02 -City Hotel,0,3,2015,July,30,26,2,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,44.53,0,0,Check-Out,2018-06-02 -City Hotel,0,86,2016,July,32,20,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.7,0,0,Check-Out,2019-05-04 -Resort Hotel,0,159,2016,October,44,26,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Contract,43.24,0,0,Check-Out,2019-06-03 -City Hotel,0,348,2015,July,31,17,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient-Party,104.64,0,0,Canceled,2018-06-02 -City Hotel,0,99,2017,May,23,28,1,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,125.26,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2016,November,41,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,100.4,0,0,Check-Out,2019-10-04 -City Hotel,0,247,2017,June,27,8,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,173.89,0,1,Check-Out,2020-03-03 -City Hotel,1,149,2016,March,9,2,0,3,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,68.86,0,0,Canceled,2019-02-01 -City Hotel,1,13,2017,June,27,30,2,4,1,1.0,0,BB,,Corporate,Corporate,0,0,0,E,E,2,No Deposit,13.0,179.0,0,Transient,221.94,0,0,Canceled,2020-03-03 -City Hotel,1,40,2016,March,9,15,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.69,0,0,Canceled,2018-11-02 -City Hotel,0,154,2017,July,35,18,2,3,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,128.25,0,1,Check-Out,2020-06-02 -Resort Hotel,0,242,2016,August,32,15,2,5,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,329.0,179.0,0,Contract,143.8,0,0,Check-Out,2019-03-04 -Resort Hotel,0,141,2017,June,33,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.68,0,3,Check-Out,2020-06-02 -Resort Hotel,1,79,2015,August,36,22,1,5,2,1.0,0,HB,,Direct,Direct,0,0,0,C,C,1,No Deposit,13.0,179.0,0,Transient,249.48,0,0,Canceled,2018-06-02 -Resort Hotel,0,62,2017,July,8,16,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient-Party,65.21,0,1,Canceled,2018-06-02 -Resort Hotel,0,13,2017,June,26,4,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,1.05,1,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,June,25,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.82,0,1,Check-Out,2019-04-03 -Resort Hotel,1,62,2016,December,52,26,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,3.0,179.0,0,Transient,122.83,0,0,Canceled,2019-09-03 -City Hotel,0,256,2016,May,21,6,0,2,2,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient-Party,98.54,0,0,Check-Out,2019-06-03 -City Hotel,0,148,2016,June,28,27,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,D,0,No Deposit,133.0,179.0,0,Contract,82.63,0,2,Check-Out,2019-02-01 -City Hotel,0,2,2016,July,27,30,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.01,0,2,Check-Out,2019-11-03 -City Hotel,0,53,2017,June,20,27,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.51,0,1,Check-Out,2019-12-04 -Resort Hotel,0,1,2017,May,22,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,148.05,0,3,Check-Out,2020-04-02 -City Hotel,1,100,2016,June,36,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,60,Transient,71.26,0,0,Canceled,2018-08-03 -City Hotel,1,364,2016,April,27,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,90.61,0,0,Canceled,2019-02-01 -City Hotel,0,11,2016,April,15,29,2,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,18,Transient-Party,74.74,0,0,Check-Out,2019-02-01 -City Hotel,0,89,2016,December,52,29,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,64.17,1,1,Check-Out,2019-10-04 -City Hotel,0,0,2016,January,4,9,0,1,1,0.0,0,BB,,Direct,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,69.93,0,1,Check-Out,2019-10-04 -Resort Hotel,0,14,2016,October,45,20,1,0,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,A,0,No Deposit,99.0,188.0,0,Transient,28.77,0,0,Check-Out,2019-11-03 -City Hotel,0,12,2015,July,30,12,2,2,2,0.0,0,BB,,Online TA,Undefined,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,64.36,0,1,Check-Out,2018-07-03 -City Hotel,1,97,2015,January,4,31,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,58.45,0,0,Canceled,2018-11-02 -Resort Hotel,0,161,2016,October,43,24,1,7,2,1.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,70.68,0,0,Check-Out,2019-09-03 -Resort Hotel,0,12,2015,September,36,21,2,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,237.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-09-03 -City Hotel,0,24,2016,June,29,20,0,2,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,183.0,0,Transient,222.96,0,0,Check-Out,2019-04-03 -Resort Hotel,0,37,2016,August,34,21,3,0,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,227.12,0,0,Check-Out,2019-05-04 -City Hotel,1,21,2016,March,10,24,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,Non Refund,28.0,79.0,0,Transient,61.17,0,0,Canceled,2019-09-03 -City Hotel,0,35,2017,June,27,18,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,100.5,0,1,Check-Out,2020-05-03 -Resort Hotel,0,111,2016,December,53,8,2,5,2,0.0,0,HB,,Groups,TA/TO,0,0,0,D,D,0,No Deposit,38.0,179.0,0,Transient-Party,86.41,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,July,27,19,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-03-03 -City Hotel,1,47,2015,July,36,10,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,B,A,0,No Deposit,12.0,179.0,0,Transient,117.55,0,0,Canceled,2018-08-03 -City Hotel,1,11,2016,December,53,24,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.56,0,0,Canceled,2019-09-03 -City Hotel,1,101,2017,August,36,6,0,1,3,0.0,0,BB,AUT,Online TA,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,152.35,0,0,Canceled,2020-07-03 -City Hotel,0,92,2017,April,17,28,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,30.0,179.0,0,Contract,99.88,1,0,Check-Out,2020-04-02 -City Hotel,0,422,2017,May,9,20,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,194.71,0,0,Check-Out,2020-04-02 -City Hotel,1,429,2017,May,21,10,0,1,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,126.3,0,0,Canceled,2020-03-03 -City Hotel,1,414,2016,August,37,2,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.06,0,2,Canceled,2019-07-04 -City Hotel,0,0,2015,August,37,21,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.33,1,0,Check-Out,2018-08-03 -City Hotel,0,13,2017,August,36,13,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.31,0,2,Check-Out,2019-10-04 -City Hotel,0,238,2017,July,33,28,2,3,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-06-03 -City Hotel,1,156,2016,March,16,25,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,66.33,0,0,Canceled,2019-03-04 -City Hotel,1,414,2015,October,46,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,70.9,0,0,Canceled,2018-09-02 -City Hotel,1,66,2017,March,7,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,G,0,Non Refund,8.0,179.0,0,Transient,60.59,0,0,Canceled,2019-10-04 -City Hotel,1,202,2016,May,42,28,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,81.77,1,0,Canceled,2019-08-04 -City Hotel,0,337,2016,October,46,21,1,4,1,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.3,0,0,Check-Out,2019-08-04 -Resort Hotel,0,22,2017,June,22,29,0,2,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,240.0,179.0,0,Transient,120.94,1,0,Check-Out,2020-04-02 -Resort Hotel,0,48,2016,November,52,9,0,1,2,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,D,0,No Deposit,97.0,179.0,0,Transient,32.38,0,0,Check-Out,2018-11-02 -City Hotel,0,353,2016,August,37,25,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,108.0,0,1,Canceled,2019-08-04 -Resort Hotel,1,148,2016,July,33,9,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,152.77,0,0,Canceled,2019-07-04 -City Hotel,0,2,2017,January,12,28,1,0,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,43.95,0,1,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,February,10,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,191.0,224.0,0,Transient,37.06,1,0,Check-Out,2019-12-04 -Resort Hotel,1,0,2016,December,5,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,244.0,0,Transient,35.55,0,0,Canceled,2019-10-04 -Resort Hotel,0,102,2016,March,16,13,2,1,2,0.0,0,BB,DEU,Groups,Corporate,0,0,0,D,D,1,Refundable,13.0,221.0,0,Transient,71.17,1,0,Check-Out,2019-02-01 -City Hotel,0,14,2016,August,45,14,1,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,112.93,0,0,Check-Out,2019-09-03 -Resort Hotel,0,260,2016,May,22,27,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,136.0,179.0,0,Transient,30.61,0,0,Check-Out,2019-04-03 -City Hotel,0,9,2017,June,20,5,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,172.59,0,3,Check-Out,2020-04-02 -City Hotel,1,303,2015,October,44,10,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.08,0,0,Canceled,2017-09-02 -City Hotel,1,42,2015,February,3,5,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,61.07,0,0,Canceled,2018-11-02 -Resort Hotel,1,26,2016,October,37,3,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,150.39,0,1,No-Show,2019-09-03 -City Hotel,0,46,2017,June,20,28,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,230.84,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2016,March,10,10,0,1,2,0.0,0,BB,IRL,Complementary,TA/TO,1,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,60.87,0,1,Check-Out,2019-11-03 -City Hotel,0,19,2017,April,18,24,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,135.04,0,2,Check-Out,2020-03-03 -City Hotel,1,24,2017,June,27,19,0,3,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,E,F,0,No Deposit,189.0,179.0,0,Transient,138.82,0,0,Canceled,2020-03-03 -City Hotel,1,33,2016,August,39,21,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,188.86,0,2,Canceled,2020-06-02 -Resort Hotel,0,278,2016,September,36,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,42.41,0,1,Check-Out,2019-07-04 -City Hotel,0,0,2016,May,23,14,0,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,185.0,0,Transient,76.84,0,0,Check-Out,2019-02-01 -Resort Hotel,0,145,2016,September,35,29,2,1,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,C,0,Refundable,14.0,179.0,0,Transient,27.98,1,0,Check-Out,2019-02-01 -City Hotel,0,121,2015,October,45,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,60.94,0,0,Check-Out,2018-08-03 -Resort Hotel,1,115,2017,February,12,29,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient,77.93,0,2,Canceled,2019-09-03 -Resort Hotel,0,10,2016,June,44,13,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,91.76,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2016,April,17,13,2,0,1,0.0,0,BB,,Corporate,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,1,21,2017,March,3,5,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.6,0,2,Canceled,2019-03-04 -City Hotel,1,244,2016,June,24,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.74,0,1,No-Show,2019-08-04 -City Hotel,1,14,2016,August,36,22,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.72,0,0,Canceled,2018-08-03 -City Hotel,0,41,2016,January,4,9,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,H,2,No Deposit,16.0,179.0,0,Transient-Party,79.1,0,0,Check-Out,2019-10-04 -City Hotel,1,41,2016,June,36,23,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.61,0,0,Canceled,2019-02-01 -Resort Hotel,0,47,2017,July,17,9,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,331.0,179.0,0,Transient,151.55,0,0,Check-Out,2020-06-02 -Resort Hotel,1,1,2017,March,12,6,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,139.58,0,0,No-Show,2020-01-04 -City Hotel,0,1,2016,May,21,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.66,0,1,Check-Out,2020-04-02 -Resort Hotel,0,42,2016,August,35,15,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,216.42,1,1,Check-Out,2019-05-04 -Resort Hotel,0,207,2017,March,19,12,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,99.94,0,0,Check-Out,2020-05-03 -City Hotel,0,38,2016,October,45,5,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,116.89,0,0,Canceled,2019-06-03 -City Hotel,1,141,2017,June,21,10,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.21,0,0,Canceled,2020-03-03 -Resort Hotel,1,14,2017,June,27,9,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,14.0,51.0,0,Transient,79.8,0,0,Canceled,2020-03-03 -City Hotel,0,17,2016,June,27,30,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.07,0,1,Check-Out,2019-04-03 -Resort Hotel,0,0,2016,October,44,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,41.43,0,0,Check-Out,2019-06-03 -City Hotel,1,147,2016,September,11,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,60.92,0,0,Canceled,2018-11-02 -City Hotel,0,31,2017,February,3,27,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,G,A,2,No Deposit,16.0,179.0,0,Transient,99.53,0,0,Check-Out,2019-10-04 -Resort Hotel,1,62,2016,March,3,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,67.86,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,November,45,21,2,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,I,2,No Deposit,16.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-10-04 -Resort Hotel,1,302,2016,August,35,2,3,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,201.0,179.0,0,Transient,176.07,0,0,Canceled,2019-07-04 -Resort Hotel,0,1,2017,February,8,27,0,1,1,0.0,0,BB,GBR,Direct,Direct,1,0,0,A,A,1,No Deposit,16.0,91.0,0,Transient,38.9,1,0,Check-Out,2019-12-04 -City Hotel,1,14,2016,March,18,10,0,1,3,0.0,0,BB,PRT,Groups,Direct,0,1,0,D,D,0,Non Refund,15.0,179.0,0,Transient,39.32,0,0,Canceled,2019-02-01 -City Hotel,0,14,2016,December,49,25,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,128.22,1,1,Check-Out,2019-10-04 -City Hotel,1,249,2016,December,53,20,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,18,Transient,70.75,0,0,Canceled,2019-09-03 -Resort Hotel,0,87,2017,February,8,15,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,46.5,0,1,Check-Out,2020-01-04 -Resort Hotel,0,56,2016,February,7,4,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,49.14,0,0,Check-Out,2019-10-04 -City Hotel,1,192,2016,October,43,30,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,84.62,0,1,No-Show,2019-08-04 -Resort Hotel,0,8,2016,March,4,3,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,75.54,1,1,Check-Out,2018-11-02 -City Hotel,1,17,2015,July,33,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,59.98,0,0,Canceled,2018-05-03 -City Hotel,0,0,2017,April,20,10,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.04,0,1,Check-Out,2020-04-02 -Resort Hotel,0,251,2016,October,45,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient-Party,77.96,0,1,Check-Out,2019-06-03 -City Hotel,1,298,2015,July,37,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,104.1,0,0,Canceled,2018-04-02 -City Hotel,0,4,2017,May,20,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,119.58,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,March,11,29,0,1,2,0.0,0,BB,IRL,Groups,Corporate,1,0,1,A,A,0,No Deposit,15.0,223.0,0,Transient-Party,30.25,0,0,Check-Out,2019-03-04 -City Hotel,1,402,2016,April,18,28,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,118.77,0,0,Canceled,2019-02-01 -City Hotel,1,155,2017,March,10,30,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,100.01,0,0,Canceled,2019-09-03 -Resort Hotel,0,13,2017,February,11,13,1,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,69.95,0,0,Check-Out,2019-10-04 -City Hotel,0,29,2016,March,25,11,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient,68.99,0,2,Check-Out,2019-02-01 -Resort Hotel,0,92,2016,April,18,10,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient,67.13,1,0,Check-Out,2019-03-04 -Resort Hotel,1,54,2016,July,33,6,2,4,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,138.4,0,0,Canceled,2019-05-04 -City Hotel,1,42,2016,June,29,26,0,2,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,120.97,0,0,Canceled,2019-01-03 -Resort Hotel,0,181,2015,August,32,16,0,5,2,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,3.0,179.0,0,Transient-Party,62.95,0,0,Check-Out,2018-07-03 -Resort Hotel,1,99,2017,May,23,29,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,78.2,0,0,Canceled,2020-01-04 -City Hotel,0,13,2015,October,44,26,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Contract,41.62,0,1,Check-Out,2018-09-02 -Resort Hotel,0,37,2017,June,26,15,1,3,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,C,1,No Deposit,352.0,179.0,0,Transient,105.73,0,0,Check-Out,2020-03-03 -Resort Hotel,1,109,2017,July,27,18,2,4,2,0.0,0,Undefined,DEU,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,309.0,179.0,0,Transient-Party,124.51,0,0,Canceled,2019-10-04 -City Hotel,1,250,2016,September,31,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,103.72,0,1,Canceled,2019-04-03 -City Hotel,1,394,2015,July,37,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,68.51,0,0,Canceled,2018-05-03 -City Hotel,0,1,2017,May,20,9,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,64.78,0,0,Check-Out,2020-02-01 -City Hotel,1,318,2015,May,23,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,18,Transient-Party,61.58,0,0,Canceled,2017-12-03 -City Hotel,0,99,2016,June,27,5,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.04,0,1,Check-Out,2020-06-02 -City Hotel,0,197,2016,August,37,23,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,119.84,0,0,Check-Out,2019-06-03 -City Hotel,0,80,2015,December,53,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,59.72,0,0,Check-Out,2019-10-04 -Resort Hotel,0,140,2016,July,32,11,0,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,196.56,0,1,Check-Out,2019-04-03 -City Hotel,1,366,2015,July,37,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,71.18,0,0,Canceled,2018-06-02 -City Hotel,0,33,2016,December,32,20,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.02,0,0,Check-Out,2018-11-02 -City Hotel,1,3,2017,May,27,23,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,162.16,0,0,No-Show,2020-05-03 -City Hotel,0,43,2015,September,32,20,0,2,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-05-03 -City Hotel,1,268,2015,July,33,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.49,0,0,Canceled,2018-06-02 -City Hotel,0,158,2016,June,22,22,1,1,1,0.0,0,Undefined,ITA,Groups,Corporate,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,102.75,0,0,Check-Out,2019-05-04 -Resort Hotel,0,261,2017,May,22,24,2,5,2,0.0,0,HB,SWE,Groups,TA/TO,0,0,0,C,C,0,No Deposit,328.0,179.0,0,Transient,83.62,0,0,Check-Out,2020-01-04 -Resort Hotel,0,20,2016,August,37,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,66.0,0,Transient,42.75,0,0,Check-Out,2019-06-03 -Resort Hotel,0,32,2016,November,50,10,4,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,36.79,0,1,Check-Out,2019-10-04 -City Hotel,0,203,2016,October,45,30,2,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,103.7,0,2,Check-Out,2019-08-04 -Resort Hotel,0,247,2017,June,27,17,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,132.51,0,0,Check-Out,2020-04-02 -City Hotel,1,151,2017,June,25,15,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,25.0,179.0,0,Transient,210.62,0,0,Canceled,2019-11-03 -City Hotel,1,169,2016,June,37,6,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.98,0,0,Canceled,2019-01-03 -Resort Hotel,1,38,2017,March,9,16,1,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,D,0,Non Refund,239.0,179.0,0,Transient,75.73,0,0,Canceled,2018-12-03 -City Hotel,1,299,2017,May,21,31,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,Non Refund,10.0,179.0,0,Transient,208.55,0,0,Canceled,2019-12-04 -City Hotel,0,40,2016,May,16,10,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,209.26,0,1,Check-Out,2019-03-04 -Resort Hotel,0,1,2015,August,36,9,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,249.0,179.0,0,Transient,43.03,0,0,Check-Out,2018-06-02 -Resort Hotel,0,150,2016,March,15,31,1,0,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,58.48,0,0,Check-Out,2019-03-04 -City Hotel,0,368,2015,October,45,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.57,0,0,Check-Out,2018-08-03 -City Hotel,1,385,2016,July,37,12,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,107.37,0,0,Canceled,2017-10-03 -Resort Hotel,0,1,2015,October,43,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,14.0,233.0,0,Transient-Party,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,18,2017,July,34,5,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,7.0,179.0,0,Transient,209.37,0,1,Check-Out,2020-05-03 -Resort Hotel,0,15,2016,April,17,7,1,1,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,78.83,0,0,Check-Out,2019-02-01 -Resort Hotel,1,15,2016,October,43,9,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,38.43,0,0,Canceled,2018-12-03 -City Hotel,0,160,2017,April,17,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,69.36,0,0,Check-Out,2020-04-02 -City Hotel,1,214,2017,July,37,17,4,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,171.0,179.0,0,Transient,195.63,0,0,Canceled,2020-06-02 -City Hotel,0,27,2017,May,21,30,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.69,1,0,Check-Out,2019-04-03 -City Hotel,0,167,2016,April,21,25,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,97.67,0,1,Check-Out,2019-04-03 -City Hotel,1,4,2016,January,4,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,71.06,0,0,No-Show,2018-12-03 -Resort Hotel,1,8,2016,March,12,13,1,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,E,E,1,No Deposit,184.0,179.0,0,Transient,75.32,0,0,Canceled,2019-01-03 -Resort Hotel,1,251,2016,June,24,13,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,60.1,0,2,No-Show,2019-03-04 -City Hotel,1,16,2016,March,15,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,63,Transient,70.01,0,0,Canceled,2018-11-02 -City Hotel,0,125,2015,September,35,2,2,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,124.15,0,0,Check-Out,2018-08-03 -Resort Hotel,0,241,2016,October,44,30,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,93.67,0,2,Check-Out,2020-01-04 -City Hotel,1,183,2016,September,39,30,0,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,133.91,0,0,Canceled,2019-04-03 -City Hotel,0,31,2015,August,35,15,1,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,D,D,1,No Deposit,12.0,179.0,0,Group,0.0,0,1,Check-Out,2018-06-02 -City Hotel,1,301,2016,July,26,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,90.99,0,0,Canceled,2019-01-03 -City Hotel,0,10,2016,January,11,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,35.54,0,0,Check-Out,2018-11-02 -City Hotel,1,56,2016,December,53,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,36.5,0,0,Canceled,2018-12-03 -City Hotel,0,132,2015,July,32,19,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,143.42,0,2,Check-Out,2018-06-02 -City Hotel,0,4,2017,August,26,16,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,18.0,179.0,0,Transient,96.14,0,1,Check-Out,2020-06-02 -City Hotel,1,247,2016,August,37,22,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,117.97,0,1,Canceled,2019-08-04 -City Hotel,0,1,2016,February,11,28,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,88.0,0,Transient-Party,61.58,0,0,Check-Out,2018-10-03 -City Hotel,0,2,2016,October,44,10,1,0,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,164.97,0,0,Check-Out,2019-08-04 -City Hotel,0,11,2016,January,4,7,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,62.08,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2016,October,45,9,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,140.4,0,2,Check-Out,2019-09-03 -City Hotel,1,109,2017,July,2,23,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,149.95,0,0,Canceled,2019-10-04 -City Hotel,0,51,2017,May,22,18,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,124.33,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2016,November,50,27,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,1,A,A,2,No Deposit,13.0,72.0,0,Transient,74.73,0,0,Check-Out,2019-05-04 -City Hotel,1,5,2015,November,51,22,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,81.78,0,0,No-Show,2018-08-03 -Resort Hotel,0,306,2017,July,30,6,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,138.71,1,1,Check-Out,2020-04-02 -Resort Hotel,1,42,2017,January,10,6,0,4,2,2.0,0,FB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,200.55,0,0,Canceled,2020-02-01 -City Hotel,1,4,2017,February,10,21,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,0,Non Refund,113.0,79.0,0,Transient,76.97,0,0,Canceled,2019-12-04 -Resort Hotel,0,258,2017,June,19,10,3,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,H,G,0,No Deposit,249.0,179.0,0,Transient,123.51,1,1,Check-Out,2020-02-01 -City Hotel,0,1,2017,May,27,8,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,69.0,0,Transient,127.48,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,February,10,27,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,67.76,0,2,Check-Out,2019-02-01 -City Hotel,1,113,2017,June,17,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,72.55,0,0,Canceled,2019-10-04 -Resort Hotel,0,2,2015,January,3,21,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,49.82,1,0,Check-Out,2018-11-02 -Resort Hotel,0,159,2017,December,53,22,2,5,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,E,B,1,No Deposit,183.0,179.0,0,Transient,72.16,0,1,Check-Out,2019-12-04 -Resort Hotel,0,1,2017,March,17,31,2,4,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,I,0,No Deposit,378.0,222.0,0,Transient-Party,90.67,0,0,Check-Out,2020-05-03 -City Hotel,1,36,2016,March,7,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,59.05,0,0,Canceled,2019-01-03 -City Hotel,0,30,2016,March,16,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,77.0,179.0,0,Transient,66.82,0,0,Check-Out,2020-02-01 -City Hotel,1,14,2015,July,33,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,76.3,0,0,Canceled,2018-09-02 -Resort Hotel,0,20,2017,February,9,8,2,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,16.0,331.0,0,Transient,44.69,0,0,Check-Out,2020-03-03 -City Hotel,0,49,2015,October,45,30,2,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,86.82,0,2,Check-Out,2019-09-03 -City Hotel,0,13,2017,May,20,15,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.6,1,2,Check-Out,2020-04-02 -City Hotel,0,33,2015,July,34,20,2,0,2,2.0,0,BB,AUT,Direct,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,220.41,0,0,Check-Out,2018-06-02 -Resort Hotel,0,25,2016,November,50,16,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,241.0,179.0,0,Transient,210.9,1,1,Check-Out,2019-11-03 -Resort Hotel,0,303,2016,May,22,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient,60.78,0,0,Canceled,2019-02-01 -Resort Hotel,1,64,2017,July,34,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,78.89,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,April,38,14,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,49.42,1,0,Check-Out,2018-12-03 -City Hotel,1,45,2016,September,30,5,2,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,9.0,179.0,0,Transient,102.0,0,1,Canceled,2019-05-04 -City Hotel,1,48,2017,February,10,19,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,69.62,0,0,Canceled,2019-11-03 -Resort Hotel,0,253,2017,August,35,6,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,185.31,0,0,Canceled,2020-04-02 -Resort Hotel,1,248,2016,September,42,10,2,5,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,290.0,179.0,0,Transient,50.93,0,0,Canceled,2019-06-03 -City Hotel,0,34,2015,September,36,4,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.93,0,2,Check-Out,2019-05-04 -City Hotel,1,20,2016,December,53,1,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,76.46,0,0,Canceled,2019-10-04 -City Hotel,0,39,2016,October,45,17,1,4,3,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.49,0,1,Check-Out,2019-07-04 -City Hotel,0,100,2017,March,18,18,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,185.87,0,1,Check-Out,2019-02-01 -Resort Hotel,1,17,2017,February,8,28,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,194.0,179.0,0,Transient,33.2,0,0,Canceled,2019-03-04 -Resort Hotel,1,259,2017,August,35,24,2,3,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient,204.96,0,0,Canceled,2020-06-02 -City Hotel,0,49,2015,December,53,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,125.58,0,1,Check-Out,2018-08-03 -City Hotel,0,32,2017,May,20,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,61.19,0,0,Check-Out,2020-04-02 -Resort Hotel,0,14,2015,November,43,17,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,156.5,0,0,Check-Out,2018-12-03 -City Hotel,1,20,2016,February,16,5,1,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,264.0,179.0,0,Transient,126.2,0,0,Canceled,2019-02-01 -City Hotel,0,9,2016,July,31,29,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,123.24,0,2,Check-Out,2019-05-04 -City Hotel,1,2,2015,November,51,21,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,L,0,No Deposit,9.0,179.0,0,Transient,62.97,0,0,Canceled,2018-12-03 -City Hotel,0,38,2016,March,17,24,2,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,65.71,0,2,Check-Out,2019-02-01 -Resort Hotel,0,166,2016,May,27,9,0,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,Refundable,242.0,179.0,0,Transient-Party,188.96,0,1,Check-Out,2019-03-04 -City Hotel,0,101,2015,December,50,9,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,106.61,0,0,Check-Out,2019-01-03 -Resort Hotel,0,81,2016,July,37,28,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,227.34,0,2,Check-Out,2019-09-03 -City Hotel,0,5,2017,August,36,16,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.74,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,June,39,8,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,L,H,2,No Deposit,17.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -Resort Hotel,0,19,2016,September,45,10,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,204.0,179.0,0,Transient,165.97,0,0,Check-Out,2019-07-04 -City Hotel,1,145,2017,May,22,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,83.49,0,0,Canceled,2019-11-03 -Resort Hotel,0,254,2017,July,35,20,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,47.16,0,1,Check-Out,2020-07-03 -City Hotel,1,377,2017,May,16,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,1,A,A,0,Non Refund,24.0,179.0,0,Transient,70.84,0,0,Canceled,2019-11-03 -City Hotel,1,297,2016,April,23,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,71.82,0,0,Canceled,2019-03-04 -Resort Hotel,0,52,2017,June,27,8,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,3,No Deposit,13.0,88.0,0,Transient,120.57,0,0,Check-Out,2020-07-03 -City Hotel,0,0,2017,January,3,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,1,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,1.86,0,0,Check-Out,2019-10-04 -Resort Hotel,0,264,2017,April,26,5,2,5,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,79.95,0,2,Check-Out,2020-03-03 -City Hotel,0,58,2016,April,23,2,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,88.0,179.0,0,Transient,109.73,0,2,Check-Out,2019-09-03 -City Hotel,1,26,2016,March,15,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,72.07,0,0,Canceled,2018-09-02 -City Hotel,1,404,2017,May,22,6,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,9.0,179.0,0,Transient,152.3,0,3,Canceled,2020-04-02 -City Hotel,1,99,2015,November,42,25,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,15,Contract,61.89,0,0,Canceled,2017-12-03 -Resort Hotel,0,147,2017,March,9,15,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,239.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-04-02 -City Hotel,0,42,2016,November,51,17,1,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.43,0,1,Check-Out,2019-12-04 -City Hotel,0,16,2015,December,49,2,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,120.57,0,1,Check-Out,2019-09-03 -City Hotel,0,273,2015,July,27,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,115.25,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,March,3,9,0,2,2,0.0,0,BB,FRA,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,128.54,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2016,December,4,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.14,0,0,Check-Out,2018-12-03 -Resort Hotel,0,13,2016,August,17,10,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,37.04,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,March,18,21,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,184.15,0,3,Check-Out,2020-02-01 -City Hotel,1,16,2016,March,9,27,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.77,0,2,Canceled,2018-12-03 -City Hotel,1,265,2016,July,32,28,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,109.89,0,1,Canceled,2019-02-01 -City Hotel,1,3,2017,January,21,27,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,94.27,0,1,Canceled,2019-01-03 -City Hotel,1,136,2016,January,4,20,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,151.22,0,2,No-Show,2019-09-03 -City Hotel,1,422,2016,May,46,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.8,0,0,Canceled,2018-08-03 -City Hotel,0,36,2016,September,42,5,2,1,2,0.0,0,SC,RUS,Online TA,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,1.51,0,0,Check-Out,2019-08-04 -Resort Hotel,1,105,2015,December,50,31,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,46.02,0,0,Canceled,2018-09-02 -City Hotel,1,2,2016,February,4,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,115.2,0,0,Canceled,2019-01-03 -Resort Hotel,1,320,2016,May,28,31,0,3,2,0.0,0,HB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,3.0,222.0,0,Transient-Party,118.27,1,0,Canceled,2019-06-03 -City Hotel,1,111,2016,June,21,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,120.25,0,1,Canceled,2020-02-01 -City Hotel,1,25,2016,October,44,18,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.36,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,May,22,29,0,1,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,0.83,0,1,Check-Out,2020-03-03 -Resort Hotel,0,152,2016,July,33,24,3,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,218.0,179.0,0,Transient,123.19,0,2,Check-Out,2019-03-04 -City Hotel,1,51,2016,June,26,27,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,121.37,0,0,Canceled,2019-05-04 -Resort Hotel,0,194,2016,March,18,21,1,2,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,313.0,179.0,0,Transient-Party,82.2,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,March,18,24,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,112.0,179.0,0,Transient,231.95,1,0,Check-Out,2018-10-03 -City Hotel,0,44,2017,March,18,31,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,65.46,0,0,Check-Out,2020-05-03 -City Hotel,0,79,2017,July,28,2,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,7.0,179.0,0,Transient,73.65,0,2,Check-Out,2020-07-03 -City Hotel,0,99,2016,July,15,18,2,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,71.48,0,0,Check-Out,2019-01-03 -Resort Hotel,1,10,2015,October,45,21,1,1,1,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,230.0,0,Transient-Party,60.93,0,0,Check-Out,2018-09-02 -City Hotel,1,108,2017,July,30,5,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.73,0,1,Canceled,2020-06-02 -City Hotel,0,232,2017,June,26,12,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.52,0,1,Check-Out,2020-05-03 -City Hotel,0,2,2016,October,43,2,0,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.91,0,0,Check-Out,2019-09-03 -City Hotel,0,11,2016,March,10,2,1,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,60.85,1,0,Check-Out,2019-02-01 -Resort Hotel,0,48,2017,July,32,18,0,2,3,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-06-02 -Resort Hotel,1,42,2017,March,9,6,1,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,38.02,0,1,No-Show,2020-03-03 -City Hotel,0,0,2015,October,41,25,0,1,2,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.7,0,2,Check-Out,2018-09-02 -Resort Hotel,0,144,2016,July,36,5,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,219.33,1,0,Check-Out,2019-06-03 -City Hotel,1,287,2016,November,52,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,55.35,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2016,February,28,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,59.0,0,Transient,103.72,0,0,Check-Out,2020-03-03 -City Hotel,0,41,2015,August,37,27,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,75.0,179.0,0,Transient-Party,99.42,0,0,Check-Out,2018-06-02 -City Hotel,0,51,2016,April,15,16,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.51,0,0,Check-Out,2019-01-03 -Resort Hotel,0,202,2016,April,16,31,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,167.0,179.0,0,Transient-Party,61.3,0,0,Check-Out,2019-04-03 -City Hotel,0,274,2015,July,36,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,138.0,179.0,0,Contract,103.29,0,0,Check-Out,2017-11-02 -Resort Hotel,0,0,2016,December,51,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,17.0,72.0,0,Transient,32.37,1,0,Check-Out,2018-12-03 -Resort Hotel,0,3,2017,April,16,18,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient,67.33,0,1,Check-Out,2020-03-03 -Resort Hotel,1,14,2017,August,22,16,2,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,151.13,0,2,Canceled,2019-11-03 -Resort Hotel,0,0,2016,December,51,10,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,245.0,179.0,0,Group,39.2,0,1,Check-Out,2019-11-03 -City Hotel,0,147,2016,May,27,9,0,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,79.22,0,0,Check-Out,2019-05-04 -Resort Hotel,0,26,2016,April,21,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,16.0,231.0,0,Transient-Party,59.21,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2017,July,29,17,0,7,3,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,H,1,No Deposit,19.0,179.0,0,Transient,245.37,1,3,Check-Out,2020-06-02 -City Hotel,0,166,2016,July,27,5,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Contract,76.18,0,1,Check-Out,2019-06-03 -Resort Hotel,0,239,2016,September,34,2,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,76.76,1,2,Check-Out,2019-05-04 -City Hotel,1,327,2016,September,44,13,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.77,0,0,Canceled,2018-08-03 -City Hotel,0,269,2017,June,27,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,87.46,0,0,Check-Out,2020-03-03 -City Hotel,0,317,2015,September,34,28,2,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Contract,88.83,0,0,Check-Out,2018-07-03 -Resort Hotel,0,32,2016,May,21,8,0,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,319.0,179.0,0,Transient-Party,101.38,0,0,Check-Out,2019-06-03 -City Hotel,0,166,2016,October,41,5,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.58,0,2,Check-Out,2019-09-03 -City Hotel,0,94,2017,April,17,29,2,1,1,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,96.96,0,0,Check-Out,2020-04-02 -Resort Hotel,1,55,2015,February,9,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,95.0,179.0,0,Transient,45.18,0,0,Canceled,2018-11-02 -City Hotel,0,54,2017,April,24,16,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,218.44,0,1,Check-Out,2020-03-03 -Resort Hotel,0,37,2016,March,34,28,0,2,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,2.19,0,0,Check-Out,2019-04-03 -City Hotel,0,12,2016,September,35,6,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,196.08,0,3,Check-Out,2019-05-04 -City Hotel,1,317,2015,October,36,15,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.43,0,0,Canceled,2017-09-02 -Resort Hotel,1,19,2015,December,53,30,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,68.53,0,0,Canceled,2018-11-02 -City Hotel,0,46,2016,August,35,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,111.08,0,1,Check-Out,2019-09-03 -City Hotel,0,49,2015,July,35,28,0,2,2,2.0,0,BB,NOR,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,173.7,0,0,Check-Out,2018-05-03 -City Hotel,1,1,2016,October,42,2,1,1,1,0.0,0,BB,CN,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.04,0,2,No-Show,2019-06-03 -Resort Hotel,0,152,2016,May,22,9,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,308.0,179.0,0,Transient-Party,97.53,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,February,30,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,81.17,1,0,Check-Out,2018-12-03 -Resort Hotel,0,18,2017,February,9,16,0,1,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient-Party,42.95,0,0,Check-Out,2020-02-01 -Resort Hotel,0,87,2015,July,33,6,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,126.69,0,0,Check-Out,2018-06-02 -City Hotel,1,96,2016,May,26,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,73.83,0,0,Canceled,2018-11-02 -City Hotel,0,93,2016,March,11,24,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,76.9,0,2,Check-Out,2019-01-03 -City Hotel,0,142,2016,August,36,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,161.52,0,1,Check-Out,2019-06-03 -Resort Hotel,0,20,2017,March,16,30,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,103.18,1,0,Check-Out,2020-02-01 -City Hotel,0,142,2017,July,26,2,0,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,102.26,0,0,Check-Out,2020-06-02 -City Hotel,0,19,2015,October,53,28,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,195.5,0,2,Check-Out,2018-08-03 -Resort Hotel,1,358,2017,May,23,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,305.0,179.0,0,Transient,113.38,0,1,Canceled,2019-12-04 -City Hotel,1,419,2017,April,17,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient,72.17,0,0,Canceled,2018-11-02 -City Hotel,0,2,2015,July,50,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,15.0,45.0,0,Transient,62.28,0,0,Check-Out,2018-08-03 -Resort Hotel,1,408,2016,March,17,31,1,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,2.0,179.0,0,Transient-Party,63.99,0,0,Canceled,2019-01-03 -Resort Hotel,0,38,2015,December,51,12,2,3,2,0.0,0,HB,POL,Direct,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,98.67,0,2,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,February,12,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,62.12,0,0,Check-Out,2018-11-02 -Resort Hotel,1,49,2017,March,18,7,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient-Party,63.93,0,0,Canceled,2019-10-04 -Resort Hotel,0,153,2015,August,31,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.21,0,0,Check-Out,2018-06-02 -Resort Hotel,0,3,2016,January,3,13,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,1,0,A,D,0,No Deposit,244.0,179.0,0,Transient,38.75,0,0,Canceled,2018-11-02 -City Hotel,1,52,2016,June,28,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,6.0,179.0,0,Transient,102.25,0,0,Canceled,2019-03-04 -Resort Hotel,1,274,2017,January,2,16,2,5,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,250.0,0,Transient,39.67,0,0,Canceled,2020-01-04 -City Hotel,1,1,2017,February,10,10,2,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,83.73,0,2,Canceled,2020-02-01 -City Hotel,0,10,2015,December,5,15,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,61.09,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2015,January,4,19,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,0,No Deposit,12.0,73.0,0,Transient,75.01,0,2,Check-Out,2018-11-02 -City Hotel,1,38,2016,August,37,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,121.47,0,0,Canceled,2019-02-01 -City Hotel,1,260,2015,August,32,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,78.8,0,0,Canceled,2018-06-02 -City Hotel,0,134,2017,July,26,6,2,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,168.06,1,2,Check-Out,2020-02-01 -City Hotel,1,2,2016,December,3,2,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,59.8,0,0,Canceled,2018-11-02 -City Hotel,0,169,2017,March,11,28,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.06,0,0,Check-Out,2019-10-04 -City Hotel,0,41,2016,January,4,6,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,93.0,179.0,0,Transient,60.09,0,0,Check-Out,2018-10-03 -Resort Hotel,0,3,2015,August,38,20,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,119.7,0,0,Check-Out,2018-05-03 -City Hotel,0,18,2017,May,27,5,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.71,0,3,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,September,44,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,35.92,0,0,Check-Out,2019-07-04 -Resort Hotel,0,10,2016,December,20,8,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,C,I,1,No Deposit,16.0,331.0,0,Transient,0.69,1,0,Check-Out,2019-10-04 -Resort Hotel,0,104,2016,June,26,2,0,2,1,1.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,114.84,1,1,Check-Out,2019-02-01 -Resort Hotel,0,318,2015,October,45,30,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,279.0,179.0,0,Transient-Party,122.3,0,0,Check-Out,2018-06-02 -Resort Hotel,1,111,2015,September,50,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,72.36,0,0,Canceled,2018-11-02 -City Hotel,0,9,2016,October,41,6,2,0,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Group,79.54,0,0,Check-Out,2019-09-03 -City Hotel,1,162,2017,May,23,14,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.39,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2016,June,27,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,61.5,0,1,Check-Out,2019-02-01 -City Hotel,0,2,2016,August,34,25,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.35,0,1,Check-Out,2020-07-03 -City Hotel,0,2,2016,October,45,7,0,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.49,0,1,Check-Out,2020-01-04 -City Hotel,0,17,2017,October,18,28,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.69,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2017,February,8,13,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,76.74,0,0,Check-Out,2020-02-01 -City Hotel,0,38,2016,December,53,30,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,177.94,0,2,Check-Out,2019-10-04 -City Hotel,0,2,2016,September,42,13,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,84.27,0,0,Check-Out,2019-11-03 -Resort Hotel,0,367,2017,May,23,7,2,10,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,323.0,179.0,0,Transient-Party,157.24,0,1,Check-Out,2019-11-03 -City Hotel,0,130,2016,July,35,2,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.14,0,0,Check-Out,2019-04-03 -Resort Hotel,0,234,2017,July,35,24,2,5,3,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -Resort Hotel,1,150,2017,May,10,24,1,5,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,65.93,1,0,No-Show,2020-04-02 -City Hotel,0,93,2016,September,36,25,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,194.92,0,0,Check-Out,2019-07-04 -Resort Hotel,0,3,2015,November,50,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,246.0,0,Transient,57.85,0,0,Check-Out,2018-08-03 -Resort Hotel,1,11,2016,February,11,28,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,39.92,0,1,Canceled,2019-08-04 -City Hotel,0,0,2016,October,44,9,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,118.01,0,1,Check-Out,2019-09-03 -City Hotel,0,13,2017,May,38,28,1,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,200.81,0,0,Check-Out,2020-04-02 -City Hotel,0,367,2016,October,43,18,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,93.17,0,0,Check-Out,2018-08-03 -Resort Hotel,1,8,2016,February,9,17,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,I,1,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Canceled,2018-11-02 -Resort Hotel,1,0,2016,February,8,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,27.4,0,0,No-Show,2019-03-04 -City Hotel,0,0,2017,May,11,28,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,78.91,0,0,Check-Out,2019-12-04 -Resort Hotel,0,196,2017,August,35,30,1,1,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,249.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -City Hotel,1,6,2016,March,17,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,32.36,0,0,Canceled,2019-01-03 -Resort Hotel,0,11,2016,August,36,6,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-06-03 -Resort Hotel,0,18,2015,December,53,25,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,36.45,0,0,Check-Out,2018-10-03 -Resort Hotel,0,14,2016,October,42,13,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,153.57,0,3,Check-Out,2019-09-03 -City Hotel,0,1,2016,December,51,8,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,1,0,D,D,0,No Deposit,15.0,183.0,0,Transient,64.62,0,0,Check-Out,2019-06-03 -City Hotel,1,57,2017,June,27,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,152.31,0,0,Canceled,2020-03-03 -City Hotel,0,16,2017,August,38,30,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,216.1,0,0,Check-Out,2020-03-03 -Resort Hotel,0,235,2017,August,38,25,2,0,2,1.0,0,HB,PRT,Direct,Direct,1,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient-Party,173.73,0,2,Canceled,2020-06-02 -City Hotel,0,0,2017,June,14,24,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,16.0,179.0,0,Transient,3.36,0,0,Check-Out,2020-05-03 -City Hotel,1,31,2016,November,51,12,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,60.78,0,0,Canceled,2019-11-03 -City Hotel,1,102,2016,July,36,28,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,116.9,0,0,Check-Out,2019-07-04 -City Hotel,0,94,2017,March,16,21,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,105.71,0,1,Check-Out,2019-10-04 -Resort Hotel,1,12,2015,August,46,31,2,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,85.51,0,0,Canceled,2018-05-03 -Resort Hotel,1,48,2017,June,21,20,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,154.46,0,0,Canceled,2020-01-04 -Resort Hotel,1,183,2015,July,32,29,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,15.0,179.0,0,Transient,168.86,0,0,Canceled,2019-05-04 -City Hotel,1,102,2016,October,44,15,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,100.37,0,0,Canceled,2019-10-04 -Resort Hotel,1,37,2015,August,37,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,1,No Deposit,195.0,179.0,0,Transient,61.18,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2017,February,11,2,1,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,39.0,331.0,0,Transient-Party,59.91,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,February,8,12,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.26,0,2,Check-Out,2018-09-02 -Resort Hotel,0,15,2016,June,21,16,1,2,3,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,119.84,1,0,Check-Out,2019-05-04 -City Hotel,0,1,2015,July,27,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,215.0,0,Transient-Party,63.58,0,0,Check-Out,2018-08-03 -City Hotel,1,106,2017,January,53,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,41.69,0,0,Canceled,2019-09-03 -City Hotel,0,423,2017,June,23,28,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,122.8,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,May,20,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,9.0,179.0,0,Group,157.95,0,1,Check-Out,2019-02-01 -City Hotel,0,43,2017,April,8,31,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.73,0,1,Check-Out,2020-03-03 -City Hotel,1,14,2017,May,21,14,1,2,2,0.0,0,BB,IRL,Complementary,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,145.13,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2016,March,22,9,2,1,2,0.0,0,BB,GBR,Groups,GDS,0,0,0,A,D,0,No Deposit,95.0,249.0,0,Transient,76.06,0,0,Check-Out,2019-02-01 -City Hotel,0,156,2016,August,27,10,0,10,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,122.66,0,1,Check-Out,2019-05-04 -Resort Hotel,0,13,2016,March,12,6,0,1,1,0.0,0,Undefined,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,152.0,331.0,0,Transient-Party,63.79,0,0,Check-Out,2019-01-03 -City Hotel,1,10,2017,April,10,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,40,Transient,45.07,0,0,Canceled,2019-11-03 -City Hotel,0,1,2016,September,42,18,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,177.81,0,2,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,May,22,2,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,111.95,0,1,Check-Out,2019-02-01 -Resort Hotel,0,10,2015,August,43,2,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient-Party,115.84,1,0,Check-Out,2018-08-03 -Resort Hotel,0,160,2016,March,28,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,82.74,0,0,Check-Out,2019-04-03 -Resort Hotel,0,20,2016,May,16,21,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,313.0,179.0,0,Transient-Party,65.54,0,0,Check-Out,2019-04-03 -Resort Hotel,0,11,2016,December,51,30,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,85.7,1,3,Check-Out,2019-10-04 -Resort Hotel,0,2,2016,February,11,20,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,61.63,0,0,Check-Out,2019-01-03 -Resort Hotel,0,230,2016,June,27,15,0,2,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient-Party,63.39,0,0,Check-Out,2019-04-03 -Resort Hotel,0,2,2017,May,23,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,252.0,179.0,0,Transient,44.26,0,0,Check-Out,2020-04-02 -City Hotel,0,193,2016,August,37,10,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.68,0,1,Check-Out,2019-06-03 -City Hotel,1,378,2016,December,45,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,62.56,0,0,Canceled,2018-09-02 -City Hotel,0,33,2016,October,45,31,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,145.48,0,1,Check-Out,2019-08-04 -City Hotel,1,43,2016,August,37,13,0,4,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,220.57,0,1,Canceled,2019-07-04 -Resort Hotel,0,93,2016,December,51,5,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,80.0,179.0,0,Transient,71.44,0,1,Check-Out,2019-03-04 -City Hotel,0,98,2016,March,31,28,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.14,0,2,Check-Out,2018-12-03 -City Hotel,0,42,2016,April,15,13,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.96,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,March,18,27,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,H,I,1,No Deposit,13.0,248.0,0,Transient,0.0,1,0,Check-Out,2019-01-03 -Resort Hotel,0,170,2017,August,35,31,0,4,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,199.32,0,1,Check-Out,2020-07-03 -Resort Hotel,0,256,2017,March,16,28,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,222.0,0,Transient-Party,76.15,0,0,Check-Out,2019-02-01 -City Hotel,0,247,2015,September,44,5,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,99.89,0,0,Check-Out,2018-06-02 -City Hotel,0,116,2016,December,51,27,2,1,1,0.0,0,BB,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,198.0,179.0,0,Transient,92.47,0,0,Check-Out,2019-10-04 -City Hotel,1,304,2016,April,18,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,72.83,0,0,Canceled,2018-12-03 -City Hotel,0,0,2017,February,10,9,2,0,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -City Hotel,0,40,2016,May,24,28,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.6,0,0,Check-Out,2019-04-03 -City Hotel,0,31,2017,June,23,9,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,61.85,0,1,Check-Out,2020-04-02 -City Hotel,0,12,2015,August,32,9,0,1,1,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,16.0,179.0,0,Transient,205.98,0,0,Canceled,2018-06-02 -Resort Hotel,0,19,2016,August,37,25,0,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,D,G,0,No Deposit,248.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-09-03 -Resort Hotel,0,181,2016,September,43,13,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,147.85,0,2,Check-Out,2019-05-04 -Resort Hotel,0,241,2015,July,33,24,0,4,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,61.24,0,1,Check-Out,2018-06-02 -City Hotel,1,8,2016,March,16,6,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.12,0,1,Canceled,2019-02-01 -City Hotel,1,6,2015,August,37,17,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,45.38,0,0,No-Show,2019-06-03 -Resort Hotel,0,17,2015,September,44,25,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,60.65,0,0,Check-Out,2018-09-02 -City Hotel,0,26,2017,May,23,15,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,140.41,0,1,Check-Out,2020-04-02 -City Hotel,0,239,2016,February,25,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,74.74,0,0,Canceled,2018-11-02 -Resort Hotel,0,58,2015,July,31,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,251.0,179.0,0,Transient,81.67,0,0,Check-Out,2018-06-02 -Resort Hotel,0,157,2015,December,33,30,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,98.31,0,0,Check-Out,2018-06-02 -City Hotel,1,17,2016,July,28,17,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.6,0,1,Canceled,2019-04-03 -Resort Hotel,1,105,2016,March,11,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,131.0,179.0,0,Transient,95.46,1,2,Check-Out,2019-03-04 -City Hotel,0,13,2016,October,45,14,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,6.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-07-04 -City Hotel,0,9,2016,March,10,20,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,48.63,0,0,Check-Out,2018-12-03 -Resort Hotel,0,223,2016,July,21,4,2,5,2,2.0,0,BB,GBR,Groups,TA/TO,0,0,0,C,C,0,No Deposit,315.0,179.0,0,Transient,75.83,0,2,Check-Out,2019-08-04 -City Hotel,1,36,2016,January,3,6,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,90.8,0,0,Canceled,2018-11-02 -City Hotel,1,127,2016,August,36,16,0,1,2,1.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,161.84,0,2,Canceled,2019-06-03 -City Hotel,0,83,2016,October,51,3,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,H,1,No Deposit,7.0,179.0,0,Transient,90.45,1,0,Check-Out,2019-07-04 -City Hotel,1,28,2016,April,18,9,2,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,309.0,179.0,0,Transient-Party,80.87,0,0,Canceled,2019-02-01 -City Hotel,1,150,2016,April,17,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,41,Transient,68.45,0,0,Canceled,2019-02-01 -City Hotel,1,307,2015,September,49,27,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,210.0,0,Transient-Party,60.63,0,0,Canceled,2018-08-03 -Resort Hotel,0,186,2016,October,42,27,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,82.0,179.0,0,Transient,103.49,0,3,Check-Out,2019-09-03 -City Hotel,0,18,2017,March,9,10,0,1,2,0.0,0,SC,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,237.0,331.0,0,Transient-Party,40.21,0,0,Check-Out,2020-03-03 -City Hotel,1,154,2016,June,25,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,121.06,0,1,Canceled,2018-12-03 -City Hotel,0,3,2015,January,4,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.32,0,1,Check-Out,2018-10-03 -City Hotel,1,408,2016,October,41,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,43,Transient,88.92,0,0,Canceled,2019-10-04 -City Hotel,0,23,2015,November,53,28,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,123.4,0,1,Check-Out,2018-08-03 -Resort Hotel,0,1,2017,March,17,6,1,0,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,E,E,0,No Deposit,326.0,179.0,0,Transient,75.0,0,0,Check-Out,2020-02-01 -City Hotel,1,247,2016,April,16,5,2,4,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,94.04,0,2,Canceled,2019-03-04 -City Hotel,0,144,2016,July,27,25,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,193.82,0,2,Check-Out,2019-04-03 -City Hotel,0,21,2016,February,10,29,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,7.0,179.0,0,Transient,59.13,0,1,Check-Out,2018-11-02 -City Hotel,0,14,2017,January,10,7,2,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,81.5,0,1,Check-Out,2019-11-03 -City Hotel,1,1,2016,February,10,21,1,1,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,128.43,0,0,Canceled,2019-03-04 -City Hotel,1,50,2017,August,30,5,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,10.0,179.0,0,Transient,153.26,0,1,Canceled,2020-05-03 -City Hotel,0,85,2016,June,25,21,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,62.0,0,Transient,77.91,0,0,Check-Out,2019-04-03 -City Hotel,0,30,2016,October,44,16,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.39,0,2,Check-Out,2019-09-03 -City Hotel,1,374,2017,May,22,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,162.37,0,0,Canceled,2020-06-02 -City Hotel,1,16,2017,August,18,15,2,0,2,0.0,0,HB,DEU,Undefined,TA/TO,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,113.17,0,2,Canceled,2020-05-03 -City Hotel,1,406,2016,March,16,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.22,0,0,Canceled,2019-10-04 -City Hotel,1,247,2017,June,25,4,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.7,0,0,Canceled,2019-02-01 -City Hotel,0,161,2017,July,27,20,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,141.97,0,0,Check-Out,2020-05-03 -Resort Hotel,1,0,2016,December,51,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,228.0,0,Transient,40.42,0,0,Canceled,2019-10-04 -Resort Hotel,0,13,2016,May,44,16,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,288.0,179.0,0,Transient,62.99,0,1,No-Show,2018-12-03 -City Hotel,0,16,2016,May,25,30,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,238.31,0,1,Check-Out,2019-03-04 -Resort Hotel,0,239,2016,July,36,18,0,4,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,159.59,0,3,Check-Out,2019-05-04 -Resort Hotel,0,152,2016,June,33,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,E,0,No Deposit,181.0,179.0,0,Transient,211.97,0,0,Check-Out,2020-06-02 -City Hotel,1,44,2016,December,51,17,1,3,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,93.03,0,0,Canceled,2019-09-03 -City Hotel,1,397,2015,September,37,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.47,0,0,Canceled,2018-05-03 -City Hotel,1,17,2016,May,22,15,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,153.52,0,2,Canceled,2019-02-01 -Resort Hotel,0,43,2016,April,16,15,2,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,80.0,179.0,0,Transient-Party,69.48,0,0,Check-Out,2019-02-01 -Resort Hotel,0,30,2016,March,17,15,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,238.0,179.0,0,Transient,191.32,1,1,Check-Out,2019-02-01 -Resort Hotel,1,136,2017,March,18,31,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,10.0,223.0,0,Transient,87.31,0,0,Canceled,2019-11-03 -Resort Hotel,0,3,2016,December,50,30,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,204.76,1,2,Check-Out,2018-11-02 -Resort Hotel,0,46,2017,March,10,29,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,1,A,A,0,No Deposit,14.0,223.0,0,Transient-Party,43.28,0,0,Check-Out,2020-02-01 -City Hotel,1,329,2015,July,30,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.13,0,0,Canceled,2018-06-02 -Resort Hotel,0,56,2017,January,11,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,250.0,179.0,0,Transient,63.48,0,0,Check-Out,2020-04-02 -Resort Hotel,1,228,2017,May,21,15,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient,95.75,0,1,Canceled,2020-01-04 -City Hotel,1,0,2017,August,34,21,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,6.54,0,0,Canceled,2019-12-04 -Resort Hotel,0,200,2016,April,18,29,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,66.11,0,0,Check-Out,2019-03-04 -City Hotel,0,40,2016,December,52,23,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,69.76,0,0,Check-Out,2019-12-04 -City Hotel,1,159,2016,September,42,24,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.88,0,0,Canceled,2019-08-04 -Resort Hotel,0,146,2017,August,27,2,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,135.68,1,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,August,36,24,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,183.29,0,1,Check-Out,2019-06-03 -Resort Hotel,0,40,2016,July,30,10,2,5,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,161.37,0,1,Check-Out,2019-02-01 -City Hotel,1,40,2017,June,32,24,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,158.02,0,2,Canceled,2020-02-01 -Resort Hotel,0,9,2017,June,27,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,147.43,0,0,Check-Out,2020-05-03 -City Hotel,1,163,2016,November,50,11,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,123.55,0,0,Canceled,2019-09-03 -City Hotel,1,301,2015,August,45,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,93.91,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2015,February,17,10,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,59.37,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2015,December,42,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,35.68,0,0,Check-Out,2018-09-02 -City Hotel,1,163,2017,February,16,21,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,73.24,0,0,Canceled,2019-11-03 -City Hotel,0,98,2017,April,17,27,0,1,1,0.0,0,BB,ESP,Direct,Corporate,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,137.89,0,0,Check-Out,2020-01-04 -Resort Hotel,1,111,2015,August,37,24,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,223.74,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,March,10,4,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,61.41,0,0,Check-Out,2018-11-02 -City Hotel,0,140,2017,June,27,15,0,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,105.09,0,0,Check-Out,2019-10-04 -City Hotel,1,144,2017,June,27,6,2,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.94,0,1,Canceled,2020-02-01 -Resort Hotel,0,153,2016,October,42,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,80.05,0,3,Check-Out,2019-08-04 -City Hotel,1,75,2016,July,22,31,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.79,0,2,Canceled,2019-03-04 -Resort Hotel,0,193,2016,September,34,26,2,10,1,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient-Party,95.04,0,0,Check-Out,2019-07-04 -Resort Hotel,0,4,2015,October,44,30,2,4,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,12.0,68.0,0,Transient,32.74,0,0,Check-Out,2018-08-03 -City Hotel,1,385,2016,May,17,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,41,Transient,128.34,0,0,Canceled,2018-11-02 -City Hotel,1,13,2016,January,3,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,H,0,No Deposit,10.0,179.0,0,Transient,110.69,0,0,No-Show,2020-02-01 -City Hotel,0,18,2017,June,21,10,0,2,2,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.04,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,March,44,21,1,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,278.0,179.0,0,Transient,28.75,0,0,Check-Out,2019-04-03 -Resort Hotel,0,2,2016,January,10,28,2,0,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,36.53,0,0,Check-Out,2018-12-03 -City Hotel,0,14,2016,October,42,20,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,73.11,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,November,50,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,228.0,0,Transient,75.31,0,0,Check-Out,2019-08-04 -City Hotel,0,108,2016,March,15,16,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,7.0,179.0,0,Transient,0.0,0,1,Canceled,2019-02-01 -Resort Hotel,0,146,2016,March,11,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,32.43,0,0,Check-Out,2019-04-03 -City Hotel,0,23,2015,October,45,10,2,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,F,1,No Deposit,12.0,331.0,0,Transient-Party,80.48,0,0,Check-Out,2019-12-04 -City Hotel,1,39,2016,September,44,24,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.7,0,0,Canceled,2019-07-04 -Resort Hotel,0,290,2016,March,16,29,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,25.86,1,0,Check-Out,2019-07-04 -City Hotel,0,393,2017,June,22,9,0,1,1,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,268.0,179.0,0,Transient-Party,121.33,0,0,Check-Out,2020-06-02 -Resort Hotel,0,4,2017,August,36,29,4,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,154.78,0,0,Check-Out,2020-06-02 -Resort Hotel,0,50,2015,November,42,2,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,39.92,0,0,Check-Out,2018-12-03 -Resort Hotel,1,62,2015,December,49,22,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,43.32,0,0,Canceled,2018-07-03 -City Hotel,0,228,2016,September,44,18,2,4,2,1.0,0,HB,CHE,Direct,Direct,0,0,0,F,F,3,No Deposit,16.0,179.0,0,Transient,148.39,0,2,Check-Out,2019-08-04 -City Hotel,1,11,2016,December,10,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,63.0,0,Transient,62.82,0,0,Canceled,2019-06-03 -Resort Hotel,0,8,2017,February,33,13,2,4,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,225.49,1,0,Check-Out,2019-02-01 -City Hotel,1,158,2016,March,15,27,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,67.94,0,0,Canceled,2018-11-02 -Resort Hotel,0,271,2016,April,15,8,0,4,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient-Party,235.82,1,0,Check-Out,2019-02-01 -Resort Hotel,0,160,2016,August,37,16,4,10,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-06-03 -City Hotel,1,311,2016,October,44,9,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.72,0,0,Canceled,2018-08-03 -Resort Hotel,0,103,2015,July,33,24,2,5,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,252.0,0,2,Check-Out,2018-06-02 -City Hotel,0,101,2017,May,22,9,0,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,E,0,No Deposit,316.0,179.0,0,Transient-Party,97.06,0,0,Check-Out,2020-02-01 -City Hotel,0,11,2016,June,22,13,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,14.0,229.0,0,Transient,70.74,1,1,Check-Out,2019-07-04 -City Hotel,0,0,2016,September,44,24,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,112.7,0,2,Check-Out,2019-07-04 -City Hotel,1,292,2016,March,10,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.29,0,0,Canceled,2019-09-03 -Resort Hotel,1,2,2017,August,30,18,0,1,2,0.0,0,BB,,Direct,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,97.21,0,0,Canceled,2020-04-02 -Resort Hotel,0,104,2016,December,53,31,2,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,304.0,179.0,0,Transient-Party,78.88,0,0,Check-Out,2019-09-03 -City Hotel,1,53,2016,December,3,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.2,1,0,Canceled,2019-10-04 -City Hotel,0,37,2016,June,24,26,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,124.76,0,1,Check-Out,2019-06-03 -City Hotel,1,82,2017,May,21,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,42.44,0,0,Canceled,2019-01-03 -Resort Hotel,1,265,2015,August,37,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,246.0,179.0,0,Transient,62.7,0,0,Canceled,2018-06-02 -Resort Hotel,1,106,2015,December,53,30,1,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,289.0,179.0,0,Transient-Party,62.13,0,0,Canceled,2019-01-03 -Resort Hotel,0,99,2017,June,23,18,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,91.83,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2017,February,9,2,0,2,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,74.0,84.0,0,Transient,93.64,0,0,Check-Out,2020-02-01 -City Hotel,0,21,2017,March,10,15,1,2,1,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,95.28,0,0,Check-Out,2020-02-01 -City Hotel,1,49,2016,February,10,18,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,Non Refund,12.0,228.0,0,Transient,45.29,0,0,Canceled,2018-11-02 -City Hotel,1,373,2016,October,45,20,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,84.41,0,0,Check-Out,2019-08-04 -City Hotel,1,413,2015,September,45,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.09,0,0,Canceled,2018-08-03 -City Hotel,0,3,2017,July,28,7,2,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,202.0,179.0,0,Transient,64.84,0,2,Check-Out,2019-12-04 -City Hotel,0,103,2015,July,33,23,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,21.0,179.0,0,Group,94.53,0,1,Check-Out,2018-05-03 -Resort Hotel,0,91,2016,December,5,27,1,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,87.07,0,3,Check-Out,2018-11-02 -Resort Hotel,1,1,2017,March,17,6,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,C,1,Non Refund,13.0,179.0,0,Group,42.24,0,1,Canceled,2020-01-04 -City Hotel,0,7,2016,August,37,2,1,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,77.39,0,1,Check-Out,2019-06-03 -City Hotel,1,0,2016,February,11,10,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,111.07,0,0,No-Show,2018-11-02 -City Hotel,1,48,2017,May,19,29,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Contract,155.11,0,0,Canceled,2020-02-01 -City Hotel,1,108,2016,August,33,14,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,173.83,0,1,Canceled,2019-11-03 -Resort Hotel,0,4,2016,February,17,14,0,1,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,223.0,75,Transient-Party,33.39,1,0,Check-Out,2019-03-04 -City Hotel,0,1,2015,September,37,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,227.0,0,Transient,64.51,0,0,Check-Out,2018-09-02 -Resort Hotel,0,373,2015,September,42,28,4,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Contract,37.71,0,0,Check-Out,2018-08-03 -City Hotel,0,107,2017,April,17,6,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.11,0,2,Check-Out,2020-02-01 -Resort Hotel,1,13,2016,February,10,11,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,E,0,Non Refund,94.0,179.0,0,Transient,64.05,0,0,Canceled,2018-11-02 -City Hotel,1,3,2016,January,9,13,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.34,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,March,9,9,0,1,2,0.0,0,BB,CHE,Corporate,Direct,0,0,0,A,F,0,No Deposit,17.0,179.0,0,Transient,77.44,0,3,Check-Out,2020-02-01 -Resort Hotel,1,136,2016,May,27,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.11,0,0,Canceled,2019-05-04 -City Hotel,0,2,2017,April,16,19,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.88,0,1,Check-Out,2020-03-03 -City Hotel,1,255,2016,August,44,9,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,200.27,0,0,Canceled,2019-07-04 -City Hotel,0,0,2015,October,44,21,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,33.41,0,0,Check-Out,2018-09-02 -City Hotel,0,26,2016,May,22,27,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.01,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2017,January,11,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,167.0,45.0,0,Transient,71.37,0,0,Check-Out,2020-05-03 -City Hotel,0,0,2015,July,36,24,0,1,3,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,2,No Deposit,17.0,179.0,0,Transient,233.44,0,0,Check-Out,2018-07-03 -Resort Hotel,0,164,2016,November,51,2,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,63.72,0,3,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,June,11,15,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,104.67,0,0,Check-Out,2019-02-01 -City Hotel,1,1,2015,November,44,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,17.0,45.0,0,Transient,32.83,0,0,Canceled,2018-09-02 -City Hotel,0,250,2017,July,31,30,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,84.56,0,1,Check-Out,2020-06-02 -Resort Hotel,1,62,2016,July,25,15,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,1,0,A,F,0,No Deposit,242.0,179.0,0,Transient,127.15,1,2,Canceled,2019-05-04 -City Hotel,1,374,2016,November,44,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,93.79,0,0,Canceled,2019-08-04 -City Hotel,1,49,2017,June,20,24,2,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,39.0,179.0,62,Transient,161.51,0,0,Check-Out,2020-06-02 -City Hotel,1,10,2017,February,9,2,2,0,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,10.0,179.0,0,Contract,147.37,0,0,Canceled,2020-03-03 -City Hotel,1,46,2016,June,32,14,0,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,185.86,0,0,Canceled,2019-01-03 -City Hotel,0,18,2016,May,20,2,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,130.39,0,0,Check-Out,2019-02-01 -Resort Hotel,0,13,2016,May,23,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,H,0,No Deposit,16.0,179.0,0,Transient-Party,97.38,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,June,9,6,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,98.59,0,0,Check-Out,2019-08-04 -Resort Hotel,0,289,2017,May,21,16,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,115.35,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2016,August,34,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,264.0,179.0,0,Transient-Party,79.18,0,0,Check-Out,2018-12-03 -City Hotel,1,53,2015,September,42,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,73.14,0,0,Canceled,2018-06-02 -City Hotel,1,88,2015,August,37,20,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,83.88,0,0,Canceled,2019-04-03 -City Hotel,1,102,2017,June,24,22,0,2,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,84.97,0,0,Canceled,2020-02-01 -Resort Hotel,0,150,2017,April,18,21,2,7,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,79.12,0,0,Check-Out,2020-04-02 -Resort Hotel,0,283,2016,June,25,22,4,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,1,A,D,2,No Deposit,28.0,179.0,0,Contract,72.31,0,0,Check-Out,2019-05-04 -Resort Hotel,0,254,2017,June,20,5,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,172.55,0,1,Check-Out,2020-03-03 -City Hotel,1,6,2016,September,45,2,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,146.12,0,2,Canceled,2019-08-04 -Resort Hotel,0,47,2016,December,50,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,37.8,1,1,Check-Out,2019-10-04 -Resort Hotel,0,2,2017,August,35,15,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,229.61,1,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,February,8,25,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.42,0,1,Check-Out,2019-03-04 -City Hotel,0,7,2017,May,22,13,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,E,F,0,No Deposit,13.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-04-02 -Resort Hotel,0,307,2017,May,23,6,4,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,99.98,0,0,Check-Out,2020-02-01 -City Hotel,0,36,2015,February,8,9,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,93.1,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2016,December,50,12,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,L,0,No Deposit,185.0,179.0,0,Transient,76.37,0,0,Check-Out,2019-11-03 -City Hotel,0,14,2016,October,43,21,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,148.57,0,2,Check-Out,2018-09-02 -City Hotel,0,14,2016,October,51,18,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.12,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,September,43,22,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Group,71.5,0,1,Check-Out,2019-09-03 -Resort Hotel,1,122,2017,August,31,25,2,3,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,2020-05-03 -Resort Hotel,0,17,2016,October,43,29,1,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,35.14,0,0,Check-Out,2019-07-04 -City Hotel,0,147,2015,October,45,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,90.21,0,3,Check-Out,2018-08-03 -City Hotel,0,2,2016,October,44,21,0,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.58,0,2,Check-Out,2019-01-03 -City Hotel,0,47,2015,September,40,6,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,88.06,0,0,Check-Out,2018-08-03 -City Hotel,0,49,2016,April,22,27,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,137.17,0,2,Check-Out,2019-03-04 -Resort Hotel,0,282,2016,August,36,21,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,202.09,0,2,Check-Out,2019-07-04 -City Hotel,0,52,2015,July,32,6,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,118.95,0,0,Check-Out,2018-08-03 -City Hotel,1,139,2017,March,11,16,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,27.0,179.0,0,Transient,42.19,0,0,Canceled,2019-10-04 -City Hotel,1,58,2016,December,53,24,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.45,0,0,Canceled,2019-10-04 -Resort Hotel,0,165,2016,July,34,10,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,96.71,0,2,Check-Out,2018-05-03 -City Hotel,1,136,2016,April,17,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.58,0,0,Canceled,2018-12-03 -City Hotel,1,7,2016,February,8,15,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.42,0,0,Canceled,2018-10-03 -City Hotel,0,29,2016,February,36,18,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.87,0,1,Check-Out,2019-07-04 -City Hotel,0,15,2016,December,50,9,0,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,78.32,0,0,Check-Out,2019-10-04 -Resort Hotel,0,157,2016,March,16,9,2,5,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,E,D,0,No Deposit,248.0,179.0,0,Transient,79.12,1,0,Check-Out,2019-01-03 -City Hotel,0,145,2017,June,26,17,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,206.61,0,3,Check-Out,2020-06-02 -City Hotel,0,14,2017,August,22,10,2,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient,129.46,1,0,Check-Out,2020-05-03 -City Hotel,0,305,2015,August,39,25,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,2.0,179.0,0,Contract,61.15,0,0,Canceled,2017-12-03 -City Hotel,1,87,2017,July,32,6,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,120.93,0,0,Canceled,2020-05-03 -Resort Hotel,1,70,2016,August,35,24,2,5,3,0.0,0,HB,,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,229.76,0,0,Canceled,2019-08-04 -City Hotel,1,46,2017,February,10,25,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,154.24,0,0,Canceled,2019-10-04 -City Hotel,0,1,2016,June,31,22,0,1,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,138.93,1,2,Check-Out,2019-07-04 -Resort Hotel,0,15,2016,March,12,16,0,2,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,58.66,0,0,Check-Out,2019-02-01 -City Hotel,1,296,2017,May,21,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,163.0,179.0,22,Transient,95.15,0,0,Canceled,2019-09-03 -City Hotel,1,43,2015,October,41,22,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient-Party,103.96,0,0,Check-Out,2018-08-03 -City Hotel,0,39,2016,October,44,22,2,4,2,2.0,0,BB,RUS,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,165.2,0,3,Check-Out,2019-08-04 -City Hotel,0,227,2016,May,44,15,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,74.09,0,3,Check-Out,2019-07-04 -City Hotel,0,1,2017,January,4,18,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.8,0,1,Check-Out,2019-11-03 -City Hotel,0,33,2015,September,33,28,1,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,120.6,0,0,Check-Out,2018-08-03 -Resort Hotel,0,151,2016,October,44,13,0,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,140.53,0,0,Check-Out,2019-09-03 -Resort Hotel,0,151,2016,May,17,30,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,C,2,Refundable,13.0,179.0,0,Transient-Party,68.25,0,0,Check-Out,2019-04-03 -Resort Hotel,0,10,2016,June,27,19,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,43.19,0,0,Check-Out,2019-03-04 -Resort Hotel,0,85,2015,October,42,5,0,6,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,39.72,0,0,Check-Out,2018-09-02 -City Hotel,0,16,2016,August,38,30,1,1,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,149.59,0,1,Check-Out,2019-09-03 -City Hotel,1,4,2016,February,11,28,2,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,115.61,0,0,No-Show,2018-11-02 -City Hotel,1,61,2017,June,21,31,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,170.37,0,0,Canceled,2020-03-03 -Resort Hotel,0,281,2017,May,22,8,2,4,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,110.16,1,1,Check-Out,2020-06-02 -City Hotel,0,13,2016,December,50,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,59.0,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,March,5,25,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.32,0,1,Check-Out,2019-03-04 -Resort Hotel,0,101,2016,April,24,13,2,5,2,0.0,0,Undefined,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,31.0,179.0,75,Transient-Party,82.3,0,0,Check-Out,2020-02-01 -Resort Hotel,0,13,2015,July,37,21,4,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Contract,61.26,0,0,Check-Out,2017-12-03 -City Hotel,1,397,2016,September,43,20,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,0,Transient,60.86,0,0,Canceled,2018-09-02 -City Hotel,0,14,2016,September,44,15,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.52,0,1,Check-Out,2019-09-03 -Resort Hotel,1,1,2016,June,43,28,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,85.0,179.0,0,Transient,78.61,0,0,Canceled,2019-08-04 -City Hotel,0,25,2017,March,8,15,1,1,1,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,91.63,0,1,Check-Out,2020-02-01 -City Hotel,0,2,2016,October,43,3,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,49.73,1,3,Check-Out,2019-09-03 -City Hotel,0,12,2016,February,10,6,0,4,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,114.63,0,0,Check-Out,2018-11-02 -City Hotel,0,165,2017,August,37,31,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.7,0,2,Check-Out,2020-07-03 -City Hotel,1,51,2015,July,42,23,2,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,8.0,179.0,0,Transient,141.24,0,1,Canceled,2018-08-03 -City Hotel,0,0,2016,January,49,18,0,2,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,L,0,No Deposit,10.0,179.0,0,Transient,99.15,0,0,Check-Out,2018-12-03 -City Hotel,0,5,2016,February,12,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,E,0,No Deposit,14.0,67.0,0,Transient,42.94,0,0,Check-Out,2019-10-04 -City Hotel,0,101,2017,March,8,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.65,0,0,Check-Out,2020-02-01 -City Hotel,1,98,2017,June,21,24,2,5,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,1,No Deposit,14.0,179.0,0,Transient,186.98,0,0,No-Show,2020-04-02 -City Hotel,1,41,2016,January,4,4,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,93.5,0,1,No-Show,2018-11-02 -City Hotel,0,12,2016,October,43,10,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,115.37,0,2,Check-Out,2019-06-03 -Resort Hotel,0,90,2016,July,27,10,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,152.57,0,3,Check-Out,2020-03-03 -City Hotel,1,18,2016,December,50,29,1,1,1,0.0,0,BB,BRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,71.04,0,0,Canceled,2019-10-04 -City Hotel,0,240,2015,July,37,18,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.55,0,0,Check-Out,2017-11-02 -Resort Hotel,0,17,2015,October,44,18,0,2,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,47.84,0,0,Check-Out,2018-08-03 -Resort Hotel,0,85,2016,November,43,2,2,7,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,73.35,0,1,Check-Out,2019-09-03 -City Hotel,1,140,2016,June,20,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,128.0,179.0,0,Transient,116.5,0,0,Canceled,2019-03-04 -Resort Hotel,1,254,2015,July,34,30,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,F,0,No Deposit,241.0,179.0,0,Transient,127.15,0,0,Canceled,2018-05-03 -Resort Hotel,1,155,2016,May,36,27,1,1,2,1.0,0,BB,PRT,Groups,Direct,0,0,0,C,C,2,No Deposit,330.0,179.0,0,Transient,161.83,0,0,Canceled,2019-11-03 -City Hotel,1,3,2016,April,29,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,72.0,0,Transient,60.91,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2015,November,46,8,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,199.0,0,Transient,111.96,0,0,Check-Out,2018-09-02 -City Hotel,1,188,2017,May,23,27,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.89,0,0,Canceled,2019-10-04 -City Hotel,0,15,2017,April,17,9,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,98.16,0,2,Check-Out,2019-12-04 -City Hotel,0,27,2016,July,32,6,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,106.98,0,2,Check-Out,2019-03-04 -City Hotel,1,197,2016,July,28,19,0,1,3,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,119.0,0,2,No-Show,2019-02-01 -City Hotel,0,16,2017,August,35,18,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,146.96,0,1,Check-Out,2020-07-03 -City Hotel,1,141,2016,April,21,27,0,1,1,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,130.0,179.0,19,Transient,94.09,0,0,Canceled,2019-02-01 -City Hotel,1,320,2017,August,32,9,4,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,75,Transient,209.23,0,0,Canceled,2020-06-02 -City Hotel,1,105,2016,August,31,4,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,98.94,0,1,Canceled,2019-06-03 -Resort Hotel,1,5,2016,May,22,2,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,229.0,179.0,0,Transient,75.26,0,0,Canceled,2019-03-04 -City Hotel,0,14,2016,November,52,10,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,60.11,0,0,Check-Out,2019-08-04 -Resort Hotel,0,162,2016,June,8,27,2,4,2,2.0,0,FB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,96.15,0,0,Canceled,2019-01-03 -City Hotel,0,16,2016,October,44,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,234.0,0,Transient,30.37,0,0,Check-Out,2019-08-04 -Resort Hotel,1,188,2016,April,17,28,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,B,A,0,Non Refund,330.0,179.0,0,Transient,94.51,0,0,Canceled,2019-02-01 -City Hotel,0,287,2016,May,22,17,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,1,Non Refund,10.0,179.0,0,Transient-Party,73.25,0,0,Canceled,2019-03-04 -City Hotel,1,294,2017,May,27,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.71,0,0,Canceled,2019-12-04 -Resort Hotel,0,8,2016,June,3,31,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,16.0,179.0,0,Transient,144.62,0,0,Check-Out,2019-02-01 -Resort Hotel,0,2,2017,March,9,6,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient-Party,41.95,1,0,Check-Out,2020-02-01 -Resort Hotel,0,45,2017,June,27,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,2,No Deposit,241.0,179.0,0,Group,0.0,0,1,Check-Out,2020-06-02 -City Hotel,0,284,2015,October,45,21,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.11,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2015,October,45,19,0,1,1,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,62.49,0,0,Check-Out,2018-08-03 -City Hotel,1,104,2016,September,44,12,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,120.82,0,0,Canceled,2019-07-04 -Resort Hotel,0,21,2016,December,51,23,1,0,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,38.0,331.0,0,Transient-Party,55.25,0,0,Check-Out,2020-01-04 -Resort Hotel,0,108,2017,February,11,17,0,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,298.0,179.0,0,Transient,41.55,0,1,Check-Out,2020-02-01 -City Hotel,0,52,2015,August,37,18,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.71,0,0,Check-Out,2019-09-03 -City Hotel,1,163,2016,March,14,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,61,Transient,64.71,0,0,Canceled,2018-11-02 -City Hotel,1,2,2016,January,10,3,0,1,1,0.0,0,SC,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.09,0,0,Canceled,2019-03-04 -City Hotel,0,168,2016,July,43,27,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,7.0,179.0,0,Transient,128.95,0,2,Check-Out,2019-10-04 -Resort Hotel,0,15,2016,April,23,16,1,2,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,236.0,179.0,0,Transient,243.17,0,0,Check-Out,2019-02-01 -City Hotel,1,17,2015,July,34,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.35,0,1,Canceled,2018-05-03 -City Hotel,0,76,2015,August,33,4,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,61.91,0,1,Check-Out,2018-09-02 -City Hotel,1,49,2016,October,43,28,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Contract,101.7,0,0,No-Show,2019-08-04 -City Hotel,0,45,2015,November,42,20,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,63.24,0,0,Check-Out,2018-08-03 -Resort Hotel,0,235,2015,September,37,29,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,146.8,0,2,Check-Out,2018-08-03 -City Hotel,0,104,2017,April,9,13,1,0,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.98,0,1,Check-Out,2020-01-04 -City Hotel,0,0,2017,June,24,4,0,1,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,F,E,1,No Deposit,10.0,179.0,0,Transient-Party,193.74,0,1,Check-Out,2020-05-03 -City Hotel,1,84,2017,May,22,10,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.81,0,1,Canceled,2020-05-03 -City Hotel,0,12,2017,March,16,20,2,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient-Party,81.21,0,0,Check-Out,2019-02-01 -Resort Hotel,1,21,2017,April,16,10,1,0,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,14.0,186.0,0,Transient,2.0,0,0,Canceled,2020-03-03 -City Hotel,0,50,2016,March,16,2,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,76.37,0,2,Check-Out,2019-03-04 -City Hotel,0,10,2015,July,32,21,2,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,167.4,0,1,Check-Out,2019-05-04 -Resort Hotel,0,11,2016,July,29,20,2,7,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,183.0,179.0,0,Contract,83.93,0,0,Check-Out,2020-06-02 -City Hotel,0,57,2016,March,49,8,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.24,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,August,35,15,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,372.0,179.0,0,Transient,61.34,1,0,Check-Out,2018-06-02 -City Hotel,1,30,2016,March,16,10,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,61.53,0,0,Canceled,2019-02-01 -Resort Hotel,0,148,2016,March,10,30,0,5,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,76.81,0,0,Check-Out,2019-11-03 -Resort Hotel,1,1,2015,November,43,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,104.29,0,0,Canceled,2018-10-03 -City Hotel,0,52,2015,July,25,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,108.03,0,0,Canceled,2018-12-03 -Resort Hotel,1,141,2016,December,53,30,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,32.76,0,0,Canceled,2019-09-03 -Resort Hotel,0,156,2017,August,32,30,2,2,2,0.0,0,HB,SWE,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,112.82,1,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,May,22,31,1,0,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,131.16,0,0,Check-Out,2020-02-01 -City Hotel,1,0,2017,February,10,20,0,1,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,63.71,0,0,Canceled,2020-02-01 -City Hotel,0,146,2016,July,32,6,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.17,0,0,Check-Out,2018-05-03 -Resort Hotel,0,34,2016,September,37,12,1,2,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,C,C,2,No Deposit,14.0,179.0,0,Transient,157.92,0,1,Check-Out,2019-06-03 -City Hotel,1,36,2016,June,21,18,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,155.55,0,0,Canceled,2019-02-01 -Resort Hotel,1,46,2016,February,7,27,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,48.78,0,2,Canceled,2018-10-03 -City Hotel,1,253,2015,July,33,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.08,0,0,Canceled,2018-06-02 -City Hotel,0,2,2017,August,36,30,0,2,1,0.0,0,BB,RUS,Online TA,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,200.04,0,3,Check-Out,2019-11-03 -Resort Hotel,0,260,2016,July,25,25,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,209.35,0,0,Check-Out,2019-07-04 -Resort Hotel,1,246,2017,April,28,25,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient,180.33,0,2,No-Show,2020-03-03 -City Hotel,1,266,2016,September,39,25,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,92.8,0,0,Canceled,2019-08-04 -City Hotel,0,193,2016,June,28,21,1,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,189.48,0,0,Check-Out,2019-03-04 -City Hotel,0,44,2016,May,17,23,2,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.19,0,0,Check-Out,2019-12-04 -City Hotel,0,42,2016,May,20,15,1,4,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.19,0,1,Check-Out,2019-02-01 -Resort Hotel,0,103,2015,November,43,21,2,1,2,0.0,0,HB,,Direct,Direct,0,0,0,A,A,1,No Deposit,190.0,179.0,0,Transient-Party,33.5,1,0,Check-Out,2018-07-03 -City Hotel,1,253,2015,July,44,28,1,1,1,0.0,0,HB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.3,0,0,Canceled,2018-06-02 -City Hotel,0,15,2016,January,4,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,63.79,0,3,Check-Out,2019-09-03 -City Hotel,1,58,2016,October,38,28,0,2,3,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,9.0,179.0,0,Transient,115.87,0,1,Canceled,2019-07-04 -City Hotel,0,0,2016,December,4,25,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,15.0,233.0,0,Transient-Party,61.7,0,0,Check-Out,2018-12-03 -Resort Hotel,0,180,2016,July,34,28,3,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,74.0,179.0,0,Transient-Party,85.92,0,0,Check-Out,2018-06-02 -City Hotel,1,97,2016,February,12,20,0,4,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,91.42,0,0,Canceled,2019-02-01 -City Hotel,1,97,2017,May,22,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,121.31,0,0,Canceled,2020-03-03 -Resort Hotel,0,230,2016,June,25,28,1,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,148.09,1,2,Check-Out,2019-03-04 -Resort Hotel,0,88,2016,February,49,15,2,1,2,0.0,0,FB,CN,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,40.94,0,0,Check-Out,2019-07-04 -Resort Hotel,0,254,2015,August,35,21,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,103.07,0,2,Check-Out,2018-06-02 -City Hotel,0,187,2017,June,24,12,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.54,0,1,Check-Out,2020-07-03 -City Hotel,1,267,2016,October,44,21,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,18,Transient,97.42,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,May,48,27,0,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,122.17,0,0,Check-Out,2019-12-04 -City Hotel,1,44,2016,March,9,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,109.63,0,0,Canceled,2018-12-03 -City Hotel,0,325,2017,August,37,23,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,175.0,179.0,0,Contract,218.45,0,0,Check-Out,2020-01-04 -City Hotel,0,18,2016,June,29,8,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,0,No Deposit,15.0,238.0,0,Transient-Party,82.52,0,0,Check-Out,2019-04-03 -City Hotel,1,46,2016,August,34,26,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,98.21,0,0,Canceled,2019-07-04 -Resort Hotel,0,2,2017,June,25,9,0,1,1,0.0,0,BB,USA,Direct,Direct,1,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,109.45,0,3,Check-Out,2020-06-02 -City Hotel,0,11,2015,December,38,7,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,66.0,0,Transient,44.84,0,0,Check-Out,2018-09-02 -City Hotel,1,147,2016,March,15,21,0,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,162.0,179.0,0,Transient,72.88,0,0,Canceled,2019-02-01 -Resort Hotel,0,16,2016,September,36,10,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,122.24,0,2,Check-Out,2019-05-04 -Resort Hotel,0,198,2015,September,36,20,2,2,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient-Party,99.4,0,1,Check-Out,2018-07-03 -City Hotel,0,47,2016,December,53,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.95,0,1,Check-Out,2018-12-03 -Resort Hotel,0,1,2015,August,33,13,0,3,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,A,0,No Deposit,165.0,179.0,0,Transient-Party,219.7,0,0,Check-Out,2018-09-02 -City Hotel,0,19,2016,September,44,17,2,5,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,A,1,No Deposit,15.0,169.0,0,Transient,166.11,0,0,Check-Out,2019-09-03 -Resort Hotel,0,20,2015,October,43,9,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,115.58,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,January,4,15,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,2,No Deposit,354.0,90.0,0,Transient,35.64,0,0,Check-Out,2019-10-04 -Resort Hotel,1,145,2016,August,35,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,198.02,0,0,Canceled,2019-04-03 -Resort Hotel,1,250,2016,August,39,5,2,2,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,2019-06-03 -Resort Hotel,1,102,2016,December,10,14,0,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,313.0,179.0,0,Transient-Party,61.37,0,0,Canceled,2018-11-02 -Resort Hotel,1,35,2016,October,44,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,91.0,179.0,0,Transient,48.21,0,0,Canceled,2019-06-03 -City Hotel,1,18,2017,January,2,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.22,0,0,Canceled,2019-11-03 -Resort Hotel,0,11,2016,May,52,27,0,3,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient-Party,82.13,1,0,Check-Out,2019-05-04 -City Hotel,0,2,2015,November,51,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,76.0,0,Transient,29.29,0,0,Check-Out,2018-12-03 -City Hotel,1,2,2016,January,10,5,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.17,0,1,Canceled,2018-11-02 -City Hotel,1,373,2017,May,22,28,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,61.07,0,0,Canceled,2020-02-01 -City Hotel,1,90,2016,November,49,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,61.8,0,0,Canceled,2019-08-04 -City Hotel,0,45,2016,May,21,9,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.71,0,2,Check-Out,2020-01-04 -City Hotel,1,150,2015,August,37,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,78.21,0,0,Canceled,2018-09-02 -City Hotel,0,0,2017,January,11,12,1,1,2,1.0,0,BB,POL,Direct,Direct,0,0,0,G,D,0,No Deposit,17.0,179.0,0,Transient,144.59,0,3,Check-Out,2019-10-04 -City Hotel,1,17,2017,May,19,30,1,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.7,1,2,Canceled,2020-02-01 -Resort Hotel,0,0,2017,June,36,20,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,1,No Deposit,15.0,179.0,0,Transient,219.71,0,0,Check-Out,2020-05-03 -City Hotel,1,0,2016,August,38,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,240.0,179.0,0,Transient,108.51,0,0,Canceled,2019-07-04 -City Hotel,1,118,2017,August,34,16,2,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,174.51,0,0,Canceled,2020-06-02 -City Hotel,1,165,2015,December,50,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,42,Transient,62.08,0,0,Canceled,2018-08-03 -City Hotel,0,216,2016,June,25,27,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,79.26,0,0,Check-Out,2019-05-04 -Resort Hotel,1,122,2016,August,37,9,3,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,378.0,179.0,0,Contract,179.82,0,2,Canceled,2019-07-04 -Resort Hotel,0,60,2015,December,53,20,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,38.74,0,0,Check-Out,2018-10-03 -Resort Hotel,1,307,2017,July,32,24,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,87.07,0,0,Canceled,2020-05-03 -Resort Hotel,0,49,2016,December,53,18,1,4,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-11-03 -City Hotel,1,269,2016,March,10,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,75,Transient,75.92,0,1,Canceled,2018-12-03 -Resort Hotel,1,269,2017,August,35,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,313.0,179.0,0,Transient,191.44,0,3,No-Show,2020-02-01 -Resort Hotel,0,0,2016,March,10,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,92.0,179.0,0,Transient,64.91,0,0,Check-Out,2019-03-04 -Resort Hotel,0,36,2015,July,50,21,2,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,125.07,0,2,Check-Out,2019-02-01 -Resort Hotel,1,45,2015,July,35,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,90.91,0,0,Canceled,2017-12-03 -City Hotel,1,190,2016,August,41,4,2,4,3,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,8.0,179.0,0,Transient,107.45,0,1,Canceled,2019-04-03 -City Hotel,1,44,2017,February,10,14,0,3,2,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,72.0,0,Transient,65.31,0,0,Canceled,2019-12-04 -Resort Hotel,0,38,2015,July,53,9,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,140.47,0,0,Check-Out,2018-12-03 -Resort Hotel,0,186,2016,October,44,2,1,1,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,C,1,No Deposit,14.0,179.0,0,Transient,108.79,0,0,Check-Out,2019-09-03 -City Hotel,1,98,2017,July,26,13,2,5,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,154.67,0,1,Canceled,2020-03-03 -City Hotel,1,13,2016,October,43,28,1,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,L,0,No Deposit,13.0,179.0,0,Transient,129.29,0,0,Canceled,2018-11-02 -Resort Hotel,0,36,2017,May,23,16,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,G,2,No Deposit,251.0,179.0,0,Transient,193.79,0,0,Check-Out,2020-02-01 -City Hotel,1,0,2016,February,3,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,13.0,59.0,0,Transient,37.2,0,0,Canceled,2018-11-02 -City Hotel,1,43,2016,May,17,20,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,114.93,0,0,Canceled,2019-02-01 -City Hotel,1,41,2017,August,36,19,1,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.33,0,0,Canceled,2020-07-03 -City Hotel,0,2,2015,July,33,5,1,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.63,0,0,Check-Out,2018-05-03 -City Hotel,0,0,2015,September,32,5,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,3.0,179.0,0,Transient-Party,63.58,0,0,Check-Out,2018-08-03 -City Hotel,0,88,2016,April,19,6,0,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.34,0,2,Check-Out,2019-04-03 -City Hotel,1,412,2015,September,40,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,110.47,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,March,18,31,0,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,118.46,0,0,Check-Out,2019-02-01 -City Hotel,0,23,2015,October,46,20,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,45.0,0,Transient,61.81,0,0,Check-Out,2018-09-02 -City Hotel,1,117,2016,April,18,24,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,258.0,179.0,0,Transient,45.41,0,0,Canceled,2019-02-01 -Resort Hotel,0,13,2017,May,20,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,158.61,0,1,Check-Out,2020-05-03 -City Hotel,0,63,2016,May,28,30,2,0,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient,66.59,0,0,Check-Out,2019-08-04 -City Hotel,1,183,2016,June,25,4,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.05,0,0,Canceled,2019-02-01 -City Hotel,0,231,2016,October,43,5,2,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,92.75,0,3,Check-Out,2019-06-03 -Resort Hotel,0,49,2017,April,25,17,0,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,214.83,1,1,Check-Out,2020-03-03 -City Hotel,0,16,2016,June,29,20,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,156.0,0,Transient,123.06,0,0,Check-Out,2019-03-04 -City Hotel,0,101,2016,April,18,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.54,0,0,Check-Out,2019-02-01 -City Hotel,1,300,2016,May,26,25,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.42,0,0,Canceled,2019-03-04 -City Hotel,0,0,2016,March,12,5,1,0,1,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,0.52,0,0,Canceled,2019-04-03 -Resort Hotel,0,245,2017,August,31,6,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,G,0,No Deposit,378.0,179.0,0,Transient-Party,81.95,0,0,Check-Out,2020-07-03 -Resort Hotel,1,406,2015,October,44,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,Non Refund,244.0,179.0,0,Transient,61.45,0,0,Canceled,2017-10-03 -City Hotel,0,3,2017,June,9,2,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,71.0,179.0,41,Transient,81.11,0,0,Canceled,2019-01-03 -Resort Hotel,1,40,2015,December,45,30,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,60.01,0,0,Canceled,2018-06-02 -City Hotel,1,380,2015,December,51,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,41,Transient,38.54,0,0,Canceled,2018-11-02 -Resort Hotel,0,33,2016,December,43,22,1,4,2,1.0,0,SC,PRT,Online TA,TA/TO,1,0,0,H,I,1,No Deposit,240.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-01-03 -City Hotel,1,9,2017,March,4,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,162.7,0,1,Canceled,2019-12-04 -City Hotel,1,33,2016,February,12,28,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,69.53,0,0,Canceled,2018-12-03 -City Hotel,1,158,2017,February,9,28,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.21,0,0,Canceled,2019-11-03 -Resort Hotel,0,31,2017,April,17,15,0,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient-Party,77.2,0,0,Check-Out,2020-04-02 -Resort Hotel,0,271,2016,July,45,28,2,10,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,3,No Deposit,271.0,179.0,0,Transient,131.8,0,2,Check-Out,2019-08-04 -Resort Hotel,0,26,2017,August,9,14,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient,75.01,0,1,Check-Out,2020-06-02 -City Hotel,0,13,2016,November,17,23,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,94.74,1,0,Check-Out,2018-12-03 -Resort Hotel,1,163,2017,July,36,28,2,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,183.29,0,0,Canceled,2020-07-03 -City Hotel,0,9,2017,February,12,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,331.0,0,Transient-Party,99.02,0,0,Check-Out,2019-10-04 -City Hotel,0,295,2015,September,35,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.13,0,0,Check-Out,2017-11-02 -Resort Hotel,0,0,2017,February,9,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,33.58,0,3,Check-Out,2020-03-03 -City Hotel,1,44,2016,March,17,20,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.61,0,2,Canceled,2019-02-01 -Resort Hotel,1,16,2017,August,37,16,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,170.74,0,1,Canceled,2020-02-01 -Resort Hotel,0,45,2015,December,46,28,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,89.51,1,0,Check-Out,2018-08-03 -Resort Hotel,0,40,2017,March,12,27,1,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,101.0,179.0,75,Contract,72.76,0,2,Check-Out,2019-11-03 -Resort Hotel,0,40,2015,October,50,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,43.72,0,3,Check-Out,2018-10-03 -Resort Hotel,0,34,2016,October,43,6,2,5,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,156.12,0,3,Check-Out,2019-07-04 -City Hotel,0,106,2016,February,10,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,19.0,71.0,0,Transient,66.49,0,0,Check-Out,2019-01-03 -Resort Hotel,0,48,2017,April,18,25,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,74.0,179.0,0,Transient-Party,88.53,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2017,June,28,2,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,1,No Deposit,14.0,166.0,0,Transient,122.36,0,0,Check-Out,2020-06-02 -Resort Hotel,0,180,2017,February,10,15,0,1,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,38.17,0,0,No-Show,2020-01-04 -City Hotel,1,251,2015,October,44,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.32,0,0,Canceled,2017-12-03 -Resort Hotel,0,149,2016,November,42,17,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,239.0,179.0,0,Transient,121.32,0,3,Check-Out,2019-08-04 -City Hotel,1,15,2016,September,35,5,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,106.76,0,0,Canceled,2019-02-01 -City Hotel,0,87,2017,May,15,9,1,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,C,G,1,No Deposit,16.0,179.0,0,Transient,201.78,0,1,Check-Out,2020-04-02 -City Hotel,0,7,2017,February,8,9,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,72.02,0,0,Check-Out,2019-11-03 -Resort Hotel,0,20,2017,February,9,12,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,65.68,0,0,Check-Out,2019-11-03 -City Hotel,1,21,2017,April,16,10,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,160.54,0,2,Canceled,2020-04-02 -Resort Hotel,0,88,2017,March,17,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,146.91,1,1,Check-Out,2020-03-03 -Resort Hotel,1,203,2016,May,10,18,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,38.65,0,0,Canceled,2019-11-03 -Resort Hotel,0,14,2015,November,42,17,3,5,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,241.0,179.0,0,Transient,47.08,0,0,Check-Out,2018-08-03 -Resort Hotel,0,201,2016,April,16,31,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,68.49,0,0,Check-Out,2019-07-04 -City Hotel,1,40,2016,March,17,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,73.93,0,0,Canceled,2019-02-01 -Resort Hotel,1,164,2016,May,26,27,2,10,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,318.0,179.0,0,Transient,95.02,0,0,Canceled,2019-04-03 -City Hotel,1,304,2015,October,44,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,88.42,0,1,Canceled,2018-08-03 -City Hotel,1,43,2017,April,18,21,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,181.23,0,0,Canceled,2019-12-04 -City Hotel,0,42,2015,October,53,16,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.23,0,2,Check-Out,2018-08-03 -City Hotel,1,90,2017,May,22,28,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,136.67,0,2,Canceled,2019-03-04 -Resort Hotel,0,195,2016,June,26,29,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,81.59,0,1,Check-Out,2019-06-03 -City Hotel,0,192,2016,October,45,14,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.4,0,2,Check-Out,2019-06-03 -Resort Hotel,0,47,2017,March,9,10,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,115.26,0,1,Check-Out,2020-01-04 -City Hotel,0,92,2016,August,32,13,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,112.41,0,1,Check-Out,2019-05-04 -City Hotel,0,15,2017,June,27,18,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,84.71,0,0,Check-Out,2020-02-01 -Resort Hotel,0,106,2015,December,51,23,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,325.0,179.0,0,Transient-Party,33.19,0,0,Check-Out,2018-10-03 -Resort Hotel,1,57,2016,March,17,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,43.97,0,0,Canceled,2019-02-01 -City Hotel,0,53,2016,April,17,24,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,89.26,0,0,Check-Out,2019-02-01 -City Hotel,1,28,2017,August,31,5,2,4,3,0.0,0,BB,USA,Online TA,Direct,0,0,0,E,G,0,No Deposit,12.0,179.0,0,Transient,143.11,0,1,No-Show,2020-04-02 -City Hotel,0,35,2016,August,36,13,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.36,0,2,Check-Out,2019-08-04 -City Hotel,1,27,2016,October,44,13,2,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.9,0,0,Canceled,2019-09-03 -Resort Hotel,0,392,2017,June,26,22,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient-Party,69.59,0,0,Check-Out,2020-06-02 -Resort Hotel,0,46,2015,October,40,20,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,18.01,0,0,Check-Out,2018-08-03 -City Hotel,0,38,2016,August,36,26,2,2,2,2.0,0,BB,SWE,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,184.57,0,0,Check-Out,2019-07-04 -Resort Hotel,0,41,2015,October,43,30,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,150.75,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2017,February,9,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.75,0,0,No-Show,2020-02-01 -Resort Hotel,1,43,2017,October,45,2,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,61.23,0,0,Canceled,2019-12-04 -Resort Hotel,0,38,2017,March,17,5,0,2,2,2.0,0,HB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,208.89,0,1,Check-Out,2020-05-03 -Resort Hotel,0,37,2016,April,15,26,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,238.0,179.0,0,Transient,49.41,0,1,Check-Out,2018-12-03 -City Hotel,1,19,2016,December,43,17,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.15,1,0,No-Show,2019-11-03 -City Hotel,1,30,2016,July,29,21,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,103.56,0,1,Canceled,2019-02-01 -City Hotel,0,11,2016,June,28,18,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.55,0,0,Check-Out,2019-02-01 -Resort Hotel,0,85,2016,October,42,31,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,134.15,1,0,Check-Out,2019-09-03 -City Hotel,1,239,2016,July,31,6,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,101.86,0,1,Canceled,2018-06-02 -Resort Hotel,1,157,2017,July,31,24,1,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,145.95,0,0,Canceled,2020-06-02 -City Hotel,0,258,2016,July,33,28,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.54,0,0,Check-Out,2018-09-02 -City Hotel,0,161,2016,October,44,28,2,2,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,72.3,0,0,Check-Out,2019-10-04 -City Hotel,0,47,2017,May,22,15,0,1,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.96,0,1,Check-Out,2020-03-03 -Resort Hotel,1,252,2016,November,43,28,4,7,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,168.16,0,0,Canceled,2019-07-04 -Resort Hotel,0,8,2016,July,26,6,1,10,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,171.23,0,2,Check-Out,2019-05-04 -Resort Hotel,0,10,2017,May,24,18,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,G,2,No Deposit,327.0,179.0,0,Transient-Party,61.72,1,0,Check-Out,2020-05-03 -Resort Hotel,0,80,2015,December,53,6,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,72.42,0,2,Check-Out,2018-12-03 -City Hotel,0,47,2016,February,8,13,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.21,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2015,September,50,4,0,3,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,C,0,No Deposit,12.0,45.0,0,Transient,60.23,0,0,Check-Out,2018-08-03 -Resort Hotel,0,105,2016,July,37,31,1,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,188.19,0,0,Check-Out,2019-05-04 -Resort Hotel,0,152,2017,February,12,16,1,0,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,361.0,179.0,0,Transient,40.49,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2015,August,51,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,1,No Deposit,15.0,179.0,0,Group,160.85,0,1,Check-Out,2018-06-02 -City Hotel,1,181,2017,July,33,26,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,A,0,Non Refund,9.0,179.0,0,Transient,189.17,0,0,Canceled,2019-11-03 -City Hotel,0,16,2015,March,29,12,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient-Party,40.9,0,0,Check-Out,2018-08-03 -Resort Hotel,0,209,2017,May,45,31,0,4,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.1,0,2,Check-Out,2020-01-04 -City Hotel,0,16,2016,August,45,13,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,69.44,0,2,Check-Out,2019-09-03 -City Hotel,1,0,2017,May,26,20,0,2,1,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,124.08,0,0,Canceled,2020-02-01 -City Hotel,1,0,2016,June,27,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,45.0,0,Transient,93.43,0,0,Canceled,2018-12-03 -City Hotel,1,257,2016,April,17,19,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,43,Transient,92.75,0,0,Canceled,2019-01-03 -Resort Hotel,0,195,2017,April,16,29,2,5,2,1.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,58.91,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2017,January,3,27,1,0,2,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,D,0,No Deposit,329.0,331.0,0,Transient,39.48,0,0,Check-Out,2019-12-04 -Resort Hotel,0,36,2016,August,36,28,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient-Party,88.76,1,2,Check-Out,2019-06-03 -City Hotel,0,15,2016,February,4,9,0,2,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,84.76,0,1,Check-Out,2018-11-02 -City Hotel,0,0,2017,May,20,6,1,0,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,D,F,0,No Deposit,16.0,45.0,0,Transient,0.0,1,1,Check-Out,2020-02-01 -Resort Hotel,0,8,2017,March,11,21,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,15.0,242.0,0,Transient,36.02,0,0,Check-Out,2020-04-02 -Resort Hotel,0,43,2017,April,35,28,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,240.0,179.0,0,Transient,151.01,0,2,Check-Out,2020-06-02 -City Hotel,0,53,2017,March,19,6,1,0,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,122.32,0,0,Check-Out,2020-02-01 -City Hotel,0,131,2017,June,19,26,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,125.85,0,0,Check-Out,2020-06-02 -Resort Hotel,0,143,2016,March,17,20,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,75,Transient-Party,56.35,1,3,Check-Out,2019-02-01 -Resort Hotel,1,34,2016,July,4,9,2,5,2,2.0,0,HB,,Direct,Direct,0,0,0,C,C,2,No Deposit,252.0,179.0,0,Transient,252.0,0,0,Canceled,2019-10-04 -Resort Hotel,0,36,2016,October,52,5,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,33.53,0,2,Check-Out,2019-11-03 -Resort Hotel,0,16,2015,December,52,20,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,45.4,1,0,Check-Out,2018-12-03 -Resort Hotel,0,49,2015,November,51,6,0,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,239.0,179.0,0,Transient,40.66,1,0,Check-Out,2018-08-03 -City Hotel,0,65,2017,June,21,13,0,1,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,97.29,0,1,Check-Out,2020-05-03 -Resort Hotel,0,244,2017,April,20,1,2,10,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,E,1,No Deposit,378.0,179.0,0,Transient-Party,126.01,1,0,Check-Out,2020-06-02 -Resort Hotel,0,107,2016,May,21,14,3,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,373.0,179.0,0,Transient,75.92,0,3,Check-Out,2019-05-04 -City Hotel,0,58,2015,October,50,5,0,1,1,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,74.99,0,0,Check-Out,2018-09-02 -City Hotel,1,196,2016,June,28,15,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.52,0,0,Canceled,2019-01-03 -City Hotel,0,124,2016,April,12,23,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,37.0,331.0,0,Transient-Party,63.05,0,0,Check-Out,2019-02-01 -City Hotel,1,40,2015,October,43,15,1,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,1,B,A,0,No Deposit,9.0,179.0,0,Transient,89.91,0,2,Canceled,2018-06-02 -Resort Hotel,0,32,2017,April,18,21,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,165.67,0,0,Check-Out,2020-02-01 -Resort Hotel,0,244,2016,October,35,24,0,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,63.39,0,0,Check-Out,2019-06-03 -City Hotel,1,96,2017,June,26,25,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,98.11,0,1,Canceled,2020-06-02 -Resort Hotel,0,57,2015,October,41,2,2,10,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,40.34,0,0,Check-Out,2018-08-03 -City Hotel,1,377,2016,October,46,23,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,122.94,0,0,Canceled,2019-10-04 -City Hotel,0,48,2015,July,34,27,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,15.0,179.0,0,Transient,163.32,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,August,35,14,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.5,0,2,Check-Out,2019-03-04 -Resort Hotel,0,50,2016,August,35,26,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,129.7,0,2,Check-Out,2019-07-04 -Resort Hotel,0,112,2016,June,24,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,240.0,179.0,0,Transient,94.78,0,1,Check-Out,2019-04-03 -City Hotel,0,3,2017,May,21,3,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.79,0,2,Check-Out,2020-03-03 -City Hotel,0,1,2016,March,10,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,40,Transient,95.77,0,0,Check-Out,2018-11-02 -City Hotel,1,36,2016,January,8,3,2,0,3,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,B,D,0,No Deposit,12.0,179.0,0,Transient,62.78,0,0,No-Show,2019-02-01 -Resort Hotel,1,3,2016,December,5,16,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,3,No Deposit,248.0,179.0,0,Transient,0.0,0,1,Canceled,2019-09-03 -Resort Hotel,0,226,2017,July,33,6,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,245.98,0,1,Check-Out,2020-07-03 -City Hotel,1,110,2017,May,21,16,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.34,0,3,Canceled,2019-10-04 -Resort Hotel,0,1,2016,March,18,2,3,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,83.57,0,1,Check-Out,2019-10-04 -City Hotel,0,16,2016,October,26,30,0,10,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.37,0,0,Check-Out,2019-05-04 -City Hotel,1,260,2015,September,37,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,F,0,No Deposit,9.0,179.0,0,Transient,143.73,0,0,Canceled,2018-07-03 -City Hotel,1,110,2017,August,37,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,153.0,179.0,0,Transient,191.79,0,0,Canceled,2019-11-03 -Resort Hotel,0,192,2017,May,18,10,1,1,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,90.0,179.0,0,Transient-Party,62.8,0,1,Check-Out,2019-07-04 -Resort Hotel,0,98,2017,February,17,6,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,78.4,0,1,Check-Out,2019-04-03 -City Hotel,0,153,2017,June,26,30,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,H,0,No Deposit,40.0,179.0,0,Transient-Party,98.37,0,0,Check-Out,2020-03-03 -City Hotel,0,188,2016,March,15,25,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,121.33,0,1,Check-Out,2019-01-03 -Resort Hotel,0,47,2016,July,22,15,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,141.98,1,0,Check-Out,2019-07-04 -City Hotel,0,0,2015,August,36,16,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.2,0,1,Check-Out,2019-06-03 -City Hotel,1,321,2015,October,43,31,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.63,0,0,Canceled,2017-10-03 -Resort Hotel,0,285,2016,August,38,24,3,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,161.0,179.0,0,Transient,116.58,0,0,Check-Out,2019-07-04 -City Hotel,0,150,2016,October,44,3,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,88.47,0,2,Check-Out,2019-08-04 -City Hotel,0,230,2015,July,34,20,1,2,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,118.39,1,0,Check-Out,2018-06-02 -Resort Hotel,0,3,2016,March,50,26,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,E,D,0,No Deposit,304.0,179.0,0,Transient,34.28,0,0,Check-Out,2018-12-03 -City Hotel,1,109,2017,May,21,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,32.0,179.0,0,Group,108.06,0,0,Canceled,2019-10-04 -Resort Hotel,0,3,2016,March,20,16,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,39.35,1,1,Check-Out,2018-11-02 -City Hotel,1,11,2016,June,29,27,2,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,157.29,0,1,Canceled,2019-05-04 -City Hotel,1,136,2016,August,39,21,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,224.15,0,0,Canceled,2019-02-01 -Resort Hotel,0,14,2017,March,10,2,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,35.0,0,2,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,May,22,13,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,106.66,0,0,Check-Out,2020-02-01 -Resort Hotel,0,15,2015,October,46,22,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,235.0,0,Transient-Party,30.39,0,0,Check-Out,2018-09-02 -Resort Hotel,0,87,2017,May,22,23,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,239.0,179.0,0,Transient,198.92,1,0,Check-Out,2020-04-02 -City Hotel,0,53,2015,October,47,28,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,59.15,0,0,Check-Out,2018-09-02 -City Hotel,0,83,2017,June,24,9,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,74.17,0,0,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,January,10,27,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,45.01,0,3,Check-Out,2018-11-02 -City Hotel,1,74,2016,March,9,28,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,30,2016,July,33,5,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,208.79,1,0,Check-Out,2020-04-02 -Resort Hotel,0,316,2016,August,38,4,0,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,E,0,No Deposit,87.0,179.0,0,Transient-Party,82.07,0,0,Check-Out,2019-04-03 -City Hotel,1,11,2015,October,42,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,88.0,64.0,0,Transient,91.03,0,0,Canceled,2018-08-03 -Resort Hotel,1,73,2015,August,46,17,2,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,L,D,0,No Deposit,13.0,179.0,0,Transient-Party,81.22,0,0,Canceled,2019-03-04 -City Hotel,1,322,2016,July,34,20,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.63,0,0,Canceled,2018-12-03 -City Hotel,0,1,2017,October,35,13,2,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,155.83,0,3,Check-Out,2019-11-03 -Resort Hotel,0,6,2016,December,53,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Group,77.07,1,0,Check-Out,2019-11-03 -Resort Hotel,1,86,2016,June,25,13,4,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,75.03,0,2,No-Show,2019-02-01 -Resort Hotel,0,227,2017,December,16,27,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,84.49,1,2,Check-Out,2019-11-03 -City Hotel,0,20,2016,September,37,14,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,171.68,0,0,Check-Out,2018-09-02 -City Hotel,1,149,2017,May,27,27,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,152.95,0,0,Canceled,2020-03-03 -Resort Hotel,1,112,2016,October,42,9,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,79.0,179.0,0,Transient,75.95,0,1,Canceled,2019-08-04 -City Hotel,1,192,2016,April,14,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,122.71,0,0,Canceled,2019-04-03 -City Hotel,1,156,2016,September,28,8,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,23.0,179.0,20,Transient,95.63,0,0,Canceled,2019-04-03 -Resort Hotel,0,2,2017,June,25,30,0,3,1,0.0,0,HB,POL,Direct,Direct,1,0,1,E,F,0,No Deposit,246.0,179.0,0,Transient,127.77,1,0,Check-Out,2020-06-02 -City Hotel,0,38,2017,May,9,5,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.93,0,0,Check-Out,2019-10-04 -City Hotel,1,174,2015,November,50,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,98.22,0,0,Canceled,2018-12-03 -Resort Hotel,1,105,2016,April,18,30,0,1,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,F,0,No Deposit,244.0,179.0,0,Transient,192.15,1,0,Canceled,2019-11-03 -Resort Hotel,0,2,2016,January,16,24,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,172.0,179.0,0,Transient-Party,61.38,0,0,Check-Out,2018-12-03 -Resort Hotel,0,45,2015,December,53,5,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,243.0,179.0,0,Transient,64.17,1,2,Check-Out,2019-12-04 -City Hotel,0,1,2017,June,27,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient,75.63,0,1,Check-Out,2020-04-02 -City Hotel,0,249,2017,May,22,28,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,76.68,0,0,Check-Out,2020-04-02 -City Hotel,1,48,2017,January,3,20,1,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,7.0,179.0,0,Transient,92.45,0,0,Canceled,2019-11-03 -Resort Hotel,0,26,2017,March,11,13,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,B,0,No Deposit,10.0,179.0,0,Transient,70.78,1,0,Check-Out,2020-01-04 -City Hotel,1,111,2016,July,32,27,0,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,65,Transient-Party,125.53,0,0,Canceled,2018-12-03 -City Hotel,0,111,2016,June,25,23,0,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.72,0,0,Check-Out,2019-05-04 -Resort Hotel,1,298,2015,July,33,15,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Refundable,2.0,179.0,0,Contract,59.01,0,0,Canceled,2017-11-02 -Resort Hotel,0,37,2015,December,53,31,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,97.91,1,0,Check-Out,2018-06-02 -Resort Hotel,0,95,2016,October,43,15,1,10,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,2,No Deposit,170.0,179.0,0,Transient,71.18,0,0,Check-Out,2019-06-03 -City Hotel,1,89,2016,May,15,21,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,65.92,0,0,Canceled,2019-03-04 -City Hotel,0,1,2017,May,19,27,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,96.61,1,2,Check-Out,2020-03-03 -City Hotel,1,406,2017,May,22,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient-Party,62.18,0,0,Canceled,2020-02-01 -Resort Hotel,0,33,2017,February,9,9,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,93.0,331.0,0,Transient,42.34,0,0,Check-Out,2020-03-03 -Resort Hotel,0,246,2016,July,20,30,2,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,94.8,1,1,Check-Out,2019-12-04 -Resort Hotel,0,78,2015,November,49,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,313.0,179.0,0,Transient-Party,79.71,0,1,Check-Out,2018-08-03 -City Hotel,0,107,2016,April,22,30,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.61,0,1,Check-Out,2019-03-04 -Resort Hotel,1,111,2016,May,24,10,2,10,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,78.84,0,0,Canceled,2019-02-01 -City Hotel,0,31,2016,October,53,6,1,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.83,0,3,Check-Out,2019-10-04 -City Hotel,1,99,2016,March,16,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,42,Transient,104.34,0,0,Canceled,2018-11-02 -City Hotel,0,22,2016,September,43,10,2,1,1,0.0,0,BB,CN,Aviation,Corporate,0,0,0,A,D,0,No Deposit,15.0,182.0,0,Transient,98.87,0,0,Check-Out,2018-08-03 -City Hotel,0,101,2015,December,51,29,2,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,110.31,0,0,Check-Out,2018-07-03 -Resort Hotel,0,302,2017,January,26,10,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,120.82,0,3,Check-Out,2019-11-03 -Resort Hotel,0,10,2016,August,33,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,244.0,179.0,0,Transient,154.86,0,1,Check-Out,2019-05-04 -City Hotel,0,0,2015,September,41,21,0,1,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,100.34,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,January,12,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,78.0,0,Transient,33.4,1,0,Check-Out,2019-11-03 -City Hotel,0,355,2015,October,45,21,1,5,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,31.0,179.0,0,Contract,88.94,0,0,Check-Out,2018-08-03 -City Hotel,1,391,2016,September,36,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,69.0,179.0,0,Transient,112.45,0,0,Canceled,2018-08-03 -Resort Hotel,1,45,2016,March,27,28,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,121.64,0,1,Canceled,2019-02-01 -Resort Hotel,0,5,2016,March,17,16,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,F,F,1,No Deposit,13.0,331.0,0,Transient,0.0,0,1,Check-Out,2019-01-03 -City Hotel,0,0,2017,April,22,24,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,61.27,0,2,Check-Out,2020-01-04 -City Hotel,1,99,2015,September,45,17,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,69.74,0,0,Canceled,2018-06-02 -City Hotel,1,0,2015,September,43,25,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,64.0,0,Transient,61.67,0,0,Canceled,2018-08-03 -City Hotel,0,2,2016,February,12,28,1,0,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,189.31,0,0,Check-Out,2019-03-04 -Resort Hotel,1,20,2016,October,44,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,17.0,68.0,0,Transient,44.76,0,0,Canceled,2019-03-04 -Resort Hotel,0,15,2016,June,27,18,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.39,0,1,Check-Out,2019-05-04 -City Hotel,1,289,2017,May,22,26,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,89.9,0,0,Canceled,2019-12-04 -City Hotel,0,2,2016,October,44,24,1,1,3,0.0,0,BB,GBR,Complementary,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,216.86,0,0,Check-Out,2019-08-04 -City Hotel,0,248,2016,October,42,20,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,99.63,0,0,Check-Out,2019-11-03 -Resort Hotel,0,105,2017,August,37,31,2,5,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,226.83,0,0,Check-Out,2020-06-02 -Resort Hotel,0,260,2017,July,30,26,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,114.63,0,2,Check-Out,2020-03-03 -City Hotel,0,20,2016,November,33,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.98,0,1,Check-Out,2019-08-04 -Resort Hotel,0,43,2016,February,12,25,4,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,332.0,179.0,0,Transient,78.03,0,0,Check-Out,2019-03-04 -City Hotel,0,237,2016,October,44,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient-Party,121.39,0,0,Check-Out,2019-06-03 -City Hotel,0,288,2016,September,37,19,0,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,81.12,0,2,Check-Out,2019-06-03 -Resort Hotel,1,1,2017,February,4,24,1,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,35.22,0,3,Canceled,2018-10-03 -City Hotel,1,58,2015,November,43,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.59,0,0,Canceled,2018-07-03 -City Hotel,0,244,2017,September,44,10,1,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,153.93,0,1,Check-Out,2019-11-03 -City Hotel,0,86,2016,May,28,12,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.63,0,0,Check-Out,2019-07-04 -City Hotel,1,13,2017,May,21,16,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,84.61,0,0,Canceled,2020-04-02 -Resort Hotel,0,21,2017,August,23,20,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,3,No Deposit,249.0,179.0,0,Transient,179.07,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2015,October,44,30,1,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,87.41,0,0,Check-Out,2018-06-02 -City Hotel,0,182,2015,September,35,17,0,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,139.76,0,1,Check-Out,2018-08-03 -City Hotel,1,56,2016,October,43,15,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,118.67,0,1,Canceled,2018-01-03 -City Hotel,0,49,2017,October,44,13,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient-Party,147.47,0,0,Check-Out,2019-10-04 -Resort Hotel,0,34,2016,September,36,13,0,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,76.83,0,0,Check-Out,2018-09-02 -Resort Hotel,0,62,2016,March,18,26,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,86.71,0,2,Check-Out,2019-01-03 -City Hotel,1,10,2017,May,24,16,0,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,D,A,0,No Deposit,7.0,179.0,0,Transient,126.32,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2015,November,48,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,1,1,A,A,0,No Deposit,11.0,45.0,0,Group,48.16,0,0,Check-Out,2018-07-03 -City Hotel,0,289,2015,September,43,25,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.45,0,0,Check-Out,2017-11-02 -City Hotel,0,303,2017,July,25,24,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.9,0,3,Check-Out,2020-04-02 -City Hotel,0,37,2016,February,9,5,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,69.64,0,1,Check-Out,2019-12-04 -City Hotel,0,0,2015,August,39,24,1,0,1,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-07-03 -City Hotel,0,78,2017,May,22,20,0,2,1,0.0,0,BB,FRA,Aviation,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,118.64,0,2,Check-Out,2020-02-01 -City Hotel,1,1,2016,October,45,27,1,1,1,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,128.81,0,0,Canceled,2019-11-03 -City Hotel,0,14,2016,October,46,9,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.06,0,3,Check-Out,2019-10-04 -City Hotel,1,15,2017,May,20,16,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,149.3,0,3,Canceled,2020-04-02 -Resort Hotel,0,43,2016,May,23,26,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,158.0,179.0,0,Transient,152.48,0,0,Check-Out,2019-08-04 -Resort Hotel,0,235,2016,May,23,27,2,10,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,72.13,0,0,Check-Out,2019-01-03 -City Hotel,0,146,2016,June,42,18,2,7,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,94.63,0,1,Check-Out,2019-05-04 -City Hotel,0,19,2016,April,15,5,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Group,74.64,0,2,Check-Out,2019-03-04 -Resort Hotel,0,46,2016,December,50,9,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Group,26.11,0,0,Check-Out,2019-10-04 -Resort Hotel,0,59,2015,November,50,30,2,4,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,102.0,179.0,0,Transient-Party,61.92,0,2,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,November,48,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,I,0,No Deposit,13.0,179.0,0,Transient,0.0,1,1,Check-Out,2018-08-03 -City Hotel,1,24,2016,March,10,28,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.68,0,0,No-Show,2019-03-04 -City Hotel,0,0,2017,February,11,28,0,1,1,0.0,0,BB,,Corporate,GDS,0,0,0,A,A,0,No Deposit,198.0,45.0,0,Transient,76.7,0,0,Check-Out,2020-02-01 -City Hotel,0,104,2017,July,35,26,2,3,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,125.88,0,2,Check-Out,2018-06-02 -Resort Hotel,1,86,2016,June,30,15,2,3,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,125.34,0,2,No-Show,2019-06-03 -Resort Hotel,0,230,2016,December,51,31,2,5,2,1.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,243.0,179.0,0,Transient,104.7,1,3,Check-Out,2018-05-03 -Resort Hotel,0,147,2017,March,11,31,2,5,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,D,I,0,No Deposit,202.0,223.0,0,Transient,46.86,1,0,Check-Out,2020-04-02 -City Hotel,0,263,2017,May,26,22,2,5,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,183.08,0,0,Check-Out,2020-02-01 -City Hotel,0,61,2016,July,29,20,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,75.94,0,1,Check-Out,2019-05-04 -City Hotel,0,20,2017,February,21,16,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,62.68,0,1,Check-Out,2020-04-02 -City Hotel,0,27,2017,May,24,16,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,86.02,0,1,Check-Out,2020-03-03 -City Hotel,1,2,2015,September,44,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,62.03,0,0,Canceled,2018-09-02 -City Hotel,1,272,2017,June,27,17,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,164.84,0,0,Canceled,2020-05-03 -City Hotel,0,156,2017,August,38,16,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,203.38,0,0,Check-Out,2019-05-04 -City Hotel,1,61,2017,February,26,26,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.79,0,0,Canceled,2020-04-02 -City Hotel,0,170,2015,September,39,30,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,124.17,0,2,Check-Out,2019-08-04 -City Hotel,1,94,2016,June,31,10,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,147.81,0,0,Canceled,2019-02-01 -City Hotel,0,8,2017,June,28,20,4,6,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,E,E,1,No Deposit,138.0,179.0,0,Transient,75.0,0,1,Check-Out,2019-02-01 -City Hotel,1,160,2015,September,37,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,31.0,179.0,0,Transient,94.95,0,0,Canceled,2018-08-03 -City Hotel,0,3,2017,June,26,19,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,87.05,0,0,Check-Out,2020-07-03 -City Hotel,0,9,2015,September,44,22,1,5,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,224.61,0,0,Check-Out,2018-08-03 -Resort Hotel,1,2,2016,February,9,25,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,247.0,179.0,0,Transient,43.0,0,0,Canceled,2018-11-02 -City Hotel,0,47,2016,July,36,27,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,142.06,0,1,Check-Out,2019-06-03 -Resort Hotel,0,5,2015,December,53,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,58.92,1,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2017,March,9,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,60.79,0,2,Check-Out,2020-03-03 -Resort Hotel,0,148,2017,July,28,3,2,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,238.0,179.0,0,Transient,217.64,0,3,Check-Out,2020-07-03 -City Hotel,0,103,2017,July,34,4,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,159.91,0,1,Check-Out,2020-06-02 -City Hotel,0,248,2016,December,44,20,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,210.0,0,Transient,113.33,0,0,Check-Out,2019-06-03 -Resort Hotel,1,250,2017,July,32,7,2,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,231.34,0,0,Canceled,2020-06-02 -Resort Hotel,0,103,2015,December,12,31,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,322.0,179.0,75,Transient-Party,61.42,0,0,Canceled,2018-12-03 -City Hotel,0,105,2015,September,32,4,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Group,129.14,0,0,Check-Out,2018-07-03 -Resort Hotel,0,240,2016,October,45,24,1,0,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,330.0,179.0,0,Transient-Party,77.03,0,0,Check-Out,2019-07-04 -Resort Hotel,0,56,2017,March,18,9,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,I,2,No Deposit,239.0,179.0,0,Transient,62.94,1,1,Check-Out,2020-02-01 -City Hotel,0,3,2017,August,37,9,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,171.99,0,0,Check-Out,2020-06-02 -Resort Hotel,1,14,2017,June,28,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,75.31,0,1,No-Show,2020-05-03 -Resort Hotel,0,11,2017,August,35,12,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,I,1,No Deposit,255.0,179.0,0,Transient-Party,52.73,0,1,Check-Out,2020-06-02 -City Hotel,1,48,2016,May,22,12,0,1,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,74.21,0,0,Canceled,2019-11-03 -Resort Hotel,0,115,2015,July,42,5,3,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,39.31,0,0,Check-Out,2019-06-03 -Resort Hotel,0,8,2017,August,36,20,2,0,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,C,I,0,No Deposit,11.0,179.0,0,Transient,0.19,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2017,May,22,6,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.95,0,1,Check-Out,2020-04-02 -Resort Hotel,0,329,2016,May,15,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,72.36,0,0,Check-Out,2019-06-03 -City Hotel,0,94,2016,May,15,30,2,3,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,70.69,0,0,Check-Out,2019-03-04 -City Hotel,1,391,2016,October,44,20,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,107.11,0,0,Canceled,2019-08-04 -Resort Hotel,1,297,2016,October,26,14,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,1,No Deposit,159.0,179.0,0,Transient-Party,35.34,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,February,10,2,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,159.0,179.0,0,Transient-Party,75.76,0,0,Check-Out,2018-11-02 -City Hotel,0,97,2017,June,29,27,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,2,No Deposit,11.0,179.0,0,Transient-Party,131.66,0,1,Check-Out,2020-01-04 -Resort Hotel,1,146,2016,October,43,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,83.0,179.0,0,Transient,42.88,0,0,Canceled,2019-08-04 -Resort Hotel,1,256,2015,July,27,8,2,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,71.78,0,0,Canceled,2018-05-03 -City Hotel,0,109,2017,May,22,21,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,170.95,0,0,Check-Out,2020-03-03 -City Hotel,1,415,2017,March,22,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.53,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2016,February,9,10,1,4,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient-Party,71.65,0,0,Check-Out,2018-12-03 -City Hotel,0,154,2016,June,26,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,98.28,0,2,Check-Out,2019-02-01 -Resort Hotel,0,231,2016,September,35,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.11,0,2,Check-Out,2019-08-04 -Resort Hotel,0,54,2017,March,16,20,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,A,2,No Deposit,241.0,179.0,0,Transient,90.77,0,0,Check-Out,2020-02-01 -Resort Hotel,0,14,2016,July,29,7,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,109.03,0,1,Check-Out,2019-12-04 -City Hotel,1,164,2016,April,16,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,31.0,179.0,0,Transient,89.96,0,0,Canceled,2018-10-03 -Resort Hotel,1,14,2017,January,3,15,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,86.81,0,0,Canceled,2019-10-04 -City Hotel,0,2,2017,May,22,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,87.0,179.0,0,Contract,148.34,0,0,Canceled,2020-03-03 -Resort Hotel,1,105,2017,August,37,14,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,184.51,0,1,Canceled,2020-03-03 -Resort Hotel,0,7,2015,December,49,22,2,5,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,86.44,0,0,Check-Out,2018-08-03 -Resort Hotel,0,199,2016,October,44,27,0,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,I,2,Refundable,14.0,223.0,0,Transient-Party,63.9,1,0,Check-Out,2019-09-03 -City Hotel,1,12,2017,February,10,13,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,60.8,0,2,Canceled,2019-10-04 -City Hotel,1,105,2016,April,27,13,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.22,0,2,Canceled,2019-05-04 -City Hotel,0,6,2015,October,46,21,1,4,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,147.78,0,0,Check-Out,2018-08-03 -Resort Hotel,0,169,2017,July,34,7,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,284.0,179.0,0,Transient,224.32,1,0,Check-Out,2020-03-03 -Resort Hotel,0,99,2015,October,43,20,2,5,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,45.39,0,1,Check-Out,2018-09-02 -Resort Hotel,0,35,2015,December,50,9,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,27.61,0,2,Check-Out,2018-12-03 -Resort Hotel,1,149,2017,June,23,15,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,303.0,179.0,75,Transient,93.16,0,0,Canceled,2019-11-03 -City Hotel,0,400,2017,July,32,26,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,184.57,0,0,Check-Out,2020-06-02 -City Hotel,0,267,2016,October,45,9,0,1,1,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,124.68,0,0,Check-Out,2019-11-03 -City Hotel,1,294,2016,June,28,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.83,0,0,Canceled,2019-04-03 -City Hotel,0,46,2017,August,3,13,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.07,0,1,Check-Out,2019-12-04 -Resort Hotel,0,4,2016,December,49,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,84.81,0,1,Check-Out,2019-08-04 -City Hotel,1,233,2017,June,27,21,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,179.0,0,Transient,100.55,0,0,Canceled,2020-07-03 -Resort Hotel,0,30,2017,March,11,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,Non Refund,12.0,331.0,0,Transient,29.19,0,0,Check-Out,2020-03-03 -City Hotel,0,149,2016,June,25,25,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,163.36,0,0,Check-Out,2019-05-04 -Resort Hotel,0,14,2017,August,22,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,62.61,0,1,Check-Out,2019-05-04 -Resort Hotel,1,111,2016,November,16,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,71.56,0,1,Canceled,2019-07-04 -City Hotel,0,103,2016,September,44,5,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,178.68,0,1,Check-Out,2019-08-04 -City Hotel,1,75,2016,February,7,18,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,10.0,179.0,0,Transient,88.78,0,1,Canceled,2019-02-01 -City Hotel,0,153,2016,May,23,25,2,1,2,2.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,97.44,1,0,Check-Out,2019-06-03 -Resort Hotel,0,13,2015,October,43,18,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,3,No Deposit,15.0,179.0,0,Transient,25.1,0,0,Check-Out,2018-08-03 -Resort Hotel,0,205,2016,May,43,2,2,1,2,0.0,0,Undefined,CHE,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,111.1,0,1,Check-Out,2019-05-04 -Resort Hotel,0,251,2017,May,23,28,2,1,1,0.0,0,HB,GBR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,71.8,0,2,Check-Out,2020-03-03 -City Hotel,1,210,2016,December,45,24,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,44,Transient,102.56,0,0,Canceled,2018-11-02 -City Hotel,1,1,2016,May,37,9,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.11,0,0,Canceled,2019-02-01 -Resort Hotel,0,9,2016,December,51,30,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,248.0,179.0,0,Transient,121.57,1,0,Check-Out,2019-11-03 -Resort Hotel,0,16,2016,December,53,13,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,82.56,0,0,Check-Out,2018-12-03 -Resort Hotel,0,268,2016,October,43,19,1,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.02,0,1,Check-Out,2019-11-03 -City Hotel,0,44,2017,February,8,30,0,3,2,0.0,0,HB,,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,1.35,0,0,Check-Out,2020-02-01 -City Hotel,1,104,2015,July,33,24,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,83.34,0,0,Check-Out,2018-06-02 -City Hotel,0,3,2017,June,27,15,0,2,1,0.0,0,BB,USA,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,65.0,0,Transient-Party,102.66,0,0,Check-Out,2020-05-03 -Resort Hotel,0,53,2016,October,35,17,0,4,2,1.0,0,BB,AUT,Direct,TA/TO,0,0,0,C,G,0,No Deposit,246.0,179.0,0,Transient,140.36,0,0,Check-Out,2019-11-03 -City Hotel,0,237,2015,October,43,6,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Contract,119.82,0,2,Check-Out,2018-08-03 -City Hotel,0,18,2016,May,25,2,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,113.89,0,1,Check-Out,2019-02-01 -City Hotel,0,16,2015,December,51,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,241.0,0,Transient,68.64,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,February,8,9,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,74.73,1,1,Check-Out,2020-02-01 -City Hotel,0,148,2017,May,19,31,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.44,0,2,Check-Out,2020-03-03 -City Hotel,0,24,2016,April,19,5,0,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,160.83,0,1,Check-Out,2019-02-01 -City Hotel,1,406,2016,March,15,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,86.0,179.0,40,Transient,65.3,0,0,Canceled,2019-02-01 -City Hotel,0,40,2017,July,27,21,1,2,2,1.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,79.72,0,0,Check-Out,2020-06-02 -City Hotel,1,238,2017,June,26,30,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,121.97,0,0,Canceled,2020-05-03 -Resort Hotel,0,149,2017,February,10,9,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,64.6,0,0,Check-Out,2019-02-01 -Resort Hotel,0,34,2015,December,51,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-10-04 -Resort Hotel,0,10,2016,January,4,9,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,196.0,179.0,0,Transient,76.64,0,0,Check-Out,2018-11-02 -Resort Hotel,1,193,2016,June,9,12,0,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,163.0,179.0,0,Transient,72.58,0,0,Canceled,2018-11-02 -City Hotel,0,3,2017,March,11,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,79.0,0,Transient,60.88,0,1,Check-Out,2020-02-01 -City Hotel,0,37,2016,March,13,5,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient,83.32,0,2,Check-Out,2020-02-01 -Resort Hotel,0,38,2015,December,53,28,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,15.0,179.0,0,Transient,45.38,0,0,Check-Out,2018-11-02 -City Hotel,0,154,2017,June,27,16,0,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,75.79,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,July,30,28,0,2,2,0.0,0,SC,,Online TA,TA/TO,1,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,2.71,0,1,Check-Out,2019-09-03 -City Hotel,1,97,2015,October,39,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,57.51,0,0,Canceled,2018-08-03 -City Hotel,0,46,2017,May,22,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,146.09,0,1,Check-Out,2020-03-03 -City Hotel,1,259,2015,July,38,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.17,0,0,Canceled,2017-12-03 -City Hotel,0,12,2016,October,42,17,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,128.48,0,0,Check-Out,2019-11-03 -City Hotel,1,158,2016,March,17,14,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,127.73,0,0,Canceled,2019-02-01 -City Hotel,0,183,2017,March,43,2,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,113.53,0,1,Check-Out,2020-05-03 -Resort Hotel,1,104,2015,December,51,11,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,45.58,0,0,Canceled,2018-10-03 -Resort Hotel,0,149,2016,March,18,16,2,3,1,0.0,0,BB,,Corporate,TA/TO,1,0,0,D,D,1,No Deposit,11.0,223.0,0,Transient,32.18,0,2,Check-Out,2019-04-03 -Resort Hotel,0,240,2017,July,30,15,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,F,E,2,No Deposit,250.0,179.0,0,Transient,168.21,0,0,Check-Out,2020-06-02 -City Hotel,1,51,2016,September,35,13,0,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,190.03,0,0,Canceled,2018-06-02 -City Hotel,1,31,2016,June,32,4,2,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,114.2,0,1,No-Show,2019-08-04 -City Hotel,0,12,2016,March,10,10,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,87.06,0,0,Check-Out,2019-10-04 -City Hotel,0,4,2015,October,39,2,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient-Party,76.77,0,1,Check-Out,2018-09-02 -City Hotel,1,118,2015,December,44,18,1,1,2,0.0,0,FB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,70.86,0,0,Canceled,2018-09-02 -Resort Hotel,0,17,2017,March,13,16,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,235.0,179.0,0,Transient,105.84,0,1,Check-Out,2020-03-03 -Resort Hotel,1,31,2016,May,16,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,L,0,No Deposit,238.0,179.0,0,Transient,65.38,0,0,Canceled,2019-02-01 -Resort Hotel,1,1,2017,January,2,6,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,331.0,0,Transient,29.16,0,0,Canceled,2019-10-04 -Resort Hotel,1,399,2017,May,23,10,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient-Party,78.59,0,0,Canceled,2019-12-04 -Resort Hotel,0,3,2015,September,37,30,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,62.08,0,0,Check-Out,2018-09-02 -City Hotel,1,59,2017,July,37,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.69,0,0,Canceled,2019-10-04 -Resort Hotel,1,62,2016,October,42,25,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Canceled,2019-05-04 -Resort Hotel,0,140,2016,July,33,5,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,240.0,179.0,0,Transient,206.17,1,1,Check-Out,2019-06-03 -City Hotel,1,226,2016,October,46,16,1,1,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,A,D,0,No Deposit,13.0,148.0,0,Transient,99.61,0,0,Check-Out,2019-09-03 -City Hotel,0,27,2016,June,27,6,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.5,0,1,Check-Out,2019-03-04 -City Hotel,1,250,2016,April,15,2,2,5,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,23.0,179.0,75,Transient,94.52,0,0,Canceled,2019-01-03 -City Hotel,0,18,2015,October,43,8,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,72.71,0,0,Check-Out,2018-09-02 -City Hotel,0,106,2016,December,42,9,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,59,Transient,117.77,0,1,Check-Out,2019-10-04 -City Hotel,1,143,2017,June,26,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,179.0,0,Transient,116.68,0,1,Canceled,2020-06-02 -City Hotel,0,233,2017,June,18,4,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient-Party,166.37,1,0,Check-Out,2020-03-03 -City Hotel,0,1,2015,October,45,31,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,120.16,0,2,Check-Out,2018-09-02 -City Hotel,0,3,2016,April,17,31,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -Resort Hotel,1,32,2016,August,34,27,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,202.78,0,0,Canceled,2018-06-02 -City Hotel,1,15,2016,October,42,14,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Canceled,2019-08-04 -City Hotel,1,7,2016,August,36,3,0,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,65.66,0,0,Canceled,2019-06-03 -Resort Hotel,0,39,2015,December,48,6,3,5,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,E,D,1,Non Refund,31.0,179.0,0,Transient,72.17,0,0,Check-Out,2019-02-01 -City Hotel,1,154,2015,August,37,21,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.74,0,1,Canceled,2018-05-03 -City Hotel,0,21,2017,April,17,5,0,1,1,0.0,0,BB,CN,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,99.42,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,March,11,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,Non Refund,16.0,223.0,0,Transient,45.59,0,0,Canceled,2020-05-03 -City Hotel,0,42,2016,January,4,27,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,154.51,0,1,Check-Out,2019-03-04 -Resort Hotel,0,34,2016,June,25,27,4,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,127.39,0,1,Check-Out,2019-02-01 -City Hotel,0,2,2016,March,10,23,0,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,11.0,179.0,0,Transient-Party,109.89,0,0,Check-Out,2019-02-01 -City Hotel,1,11,2016,January,3,25,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,42,Transient,65.81,0,0,Canceled,2018-12-03 -City Hotel,1,86,2016,February,7,9,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,57.09,0,0,Canceled,2018-10-03 -City Hotel,0,15,2017,March,3,30,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,11.0,331.0,0,Transient,78.89,0,0,Check-Out,2019-10-04 -City Hotel,0,402,2017,January,10,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,2.0,179.0,0,Transient-Party,61.47,0,0,Canceled,2019-10-04 -City Hotel,0,0,2017,August,34,13,1,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,154.06,0,3,Check-Out,2020-06-02 -City Hotel,1,370,2015,October,44,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.45,0,0,Canceled,2017-09-02 -Resort Hotel,0,41,2015,October,50,19,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,14.0,179.0,0,Transient,42.76,0,0,Check-Out,2018-12-03 -City Hotel,1,0,2015,July,35,5,2,5,2,0.0,0,BB,PRT,Online TA,Undefined,0,1,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,85.77,0,1,Canceled,2018-06-02 -City Hotel,1,95,2016,September,38,28,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,94.11,0,1,Canceled,2018-11-02 -City Hotel,1,87,2016,June,27,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.32,0,2,Canceled,2019-07-04 -City Hotel,0,100,2017,July,31,15,0,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,167.3,0,1,Check-Out,2020-07-03 -City Hotel,1,101,2017,February,7,8,2,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,121.96,0,2,Canceled,2020-03-03 -City Hotel,0,52,2017,July,38,30,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,243.0,179.0,0,Transient,99.8,1,3,Check-Out,2020-06-02 -City Hotel,0,191,2017,April,15,10,2,2,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,85.34,0,0,Check-Out,2020-03-03 -City Hotel,0,21,2017,June,28,30,0,1,1,0.0,0,BB,AUT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,3.57,0,1,Check-Out,2020-07-03 -Resort Hotel,0,2,2015,October,42,20,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,147.0,179.0,0,Contract,38.1,0,0,Check-Out,2017-11-02 -City Hotel,0,12,2017,May,10,12,4,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,158.62,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,June,28,24,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,177.46,0,0,Check-Out,2020-04-02 -City Hotel,1,16,2016,January,10,5,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,77.8,0,1,Canceled,2019-01-03 -City Hotel,0,96,2016,June,28,28,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,91.46,0,0,Check-Out,2019-05-04 -Resort Hotel,0,191,2017,July,22,18,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Contract,151.86,0,0,Check-Out,2020-02-01 -City Hotel,1,332,2016,October,42,9,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,103.25,0,0,Canceled,2019-07-04 -Resort Hotel,0,116,2016,October,43,31,4,7,2,2.0,0,FB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,75.44,0,0,Check-Out,2019-08-04 -City Hotel,0,210,2016,May,23,27,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,80.56,0,0,Canceled,2019-06-03 -Resort Hotel,0,95,2017,April,23,7,2,5,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient,92.27,0,2,Check-Out,2020-03-03 -City Hotel,1,136,2015,October,46,28,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,61,Transient,112.13,0,0,Canceled,2018-08-03 -City Hotel,1,49,2016,October,36,26,2,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,182.86,0,1,Canceled,2019-08-04 -City Hotel,0,5,2016,November,51,31,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,78.78,0,0,Check-Out,2019-07-04 -City Hotel,0,2,2016,March,4,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,82.0,0,Transient-Party,67.27,0,0,Check-Out,2018-12-03 -City Hotel,1,2,2017,February,10,9,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,250.0,0,Transient-Party,101.44,0,0,Canceled,2019-12-04 -City Hotel,0,101,2016,November,51,28,0,4,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,127.61,0,0,Check-Out,2019-09-03 -City Hotel,0,11,2016,December,51,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,72.41,0,0,Check-Out,2019-10-04 -Resort Hotel,0,10,2017,February,9,13,2,5,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,Non Refund,16.0,331.0,0,Transient,29.64,0,0,Check-Out,2020-03-03 -City Hotel,0,77,2015,July,31,21,1,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,90.29,0,0,Check-Out,2018-06-02 -City Hotel,1,223,2016,July,26,2,0,3,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.07,0,0,Canceled,2019-02-01 -City Hotel,1,295,2017,March,16,31,1,3,1,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,0,Refundable,11.0,223.0,0,Transient-Party,59.74,0,0,Canceled,2019-03-04 -City Hotel,0,44,2015,October,43,8,2,2,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient-Party,84.28,0,0,Check-Out,2018-09-02 -City Hotel,1,188,2016,February,9,12,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,68.95,0,1,Canceled,2019-03-04 -Resort Hotel,0,4,2017,August,37,6,0,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,127.88,0,0,Check-Out,2020-07-03 -City Hotel,0,4,2016,March,10,12,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,74.0,179.0,0,Transient,92.35,0,2,Check-Out,2018-11-02 -Resort Hotel,0,17,2016,June,30,30,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,164.64,0,1,Check-Out,2019-05-04 -City Hotel,0,49,2016,October,45,20,2,5,3,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,165.87,0,0,Canceled,2019-08-04 -City Hotel,0,104,2017,April,17,28,2,5,3,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Contract,103.0,0,1,Check-Out,2020-01-04 -City Hotel,1,12,2016,July,24,13,0,1,3,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,D,D,0,Non Refund,10.0,179.0,0,Transient,135.41,0,0,Canceled,2019-05-04 -City Hotel,0,145,2016,May,22,2,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,94.81,0,3,Check-Out,2019-03-04 -Resort Hotel,1,28,2016,March,19,24,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,30.83,0,0,Canceled,2019-02-01 -City Hotel,1,264,2016,October,42,21,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,P,0,No Deposit,8.0,179.0,0,Transient,113.77,0,2,Canceled,2019-07-04 -City Hotel,1,384,2016,June,28,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,156.33,0,0,Canceled,2019-01-03 -City Hotel,1,318,2016,August,38,18,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Contract,119.04,0,2,Canceled,2019-08-04 -Resort Hotel,0,244,2016,December,23,18,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,116.59,0,2,Check-Out,2019-11-03 -City Hotel,1,17,2017,January,7,5,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,B,0,No Deposit,15.0,179.0,0,Transient,131.86,0,1,Canceled,2019-11-03 -City Hotel,1,238,2017,July,36,16,1,1,2,0.0,0,HB,NLD,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2020-05-03 -City Hotel,0,46,2016,June,37,27,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,95.02,0,0,Check-Out,2019-06-03 -City Hotel,1,36,2016,March,17,19,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,34.77,0,0,Canceled,2019-03-04 -City Hotel,0,20,2016,November,35,10,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,165.97,0,1,Check-Out,2018-11-02 -City Hotel,0,181,2017,July,32,16,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,85.72,0,2,Check-Out,2020-06-02 -City Hotel,0,194,2016,May,22,20,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,147.67,0,0,Check-Out,2019-05-04 -City Hotel,1,249,2017,June,27,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,226.52,0,0,Canceled,2020-07-03 -Resort Hotel,0,18,2017,March,17,15,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,15.0,223.0,0,Transient,44.03,1,0,Check-Out,2020-04-02 -City Hotel,0,10,2017,May,20,10,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,72.85,0,1,Check-Out,2020-03-03 -City Hotel,0,50,2016,February,8,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,68.52,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2016,October,45,6,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,0,Non Refund,15.0,45.0,0,Transient,62.47,0,0,Canceled,2019-07-04 -City Hotel,0,195,2016,June,26,28,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.54,0,0,Check-Out,2019-01-03 -Resort Hotel,0,12,2016,June,25,20,4,7,2,0.0,0,BB,,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,142.41,0,0,Check-Out,2019-04-03 -City Hotel,1,39,2016,March,17,25,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,60.16,0,0,Canceled,2018-11-02 -City Hotel,1,52,2017,May,29,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,219.06,0,2,Canceled,2020-02-01 -Resort Hotel,0,0,2016,September,41,30,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,96.22,1,0,Check-Out,2019-04-03 -City Hotel,0,42,2017,June,22,15,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,118.96,0,1,Check-Out,2019-11-03 -Resort Hotel,0,296,2017,April,19,13,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Contract,44.57,0,0,Canceled,2020-03-03 -City Hotel,1,205,2017,August,22,18,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,126.3,0,0,Canceled,2020-03-03 -Resort Hotel,1,94,2016,March,11,25,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,136.0,179.0,0,Transient,60.64,0,0,Canceled,2019-01-03 -Resort Hotel,1,2,2016,January,4,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,42.58,0,0,Canceled,2019-02-01 -Resort Hotel,0,193,2017,August,36,20,2,1,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,99.73,0,0,Check-Out,2020-07-03 -City Hotel,1,99,2017,June,16,28,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,104.04,0,0,Canceled,2020-02-01 -Resort Hotel,1,166,2017,July,31,21,2,5,2,1.0,0,BB,IRL,Direct,TA/TO,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,215.6,0,3,Canceled,2020-05-03 -City Hotel,0,19,2015,December,52,9,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient-Party,94.36,0,0,Check-Out,2018-08-03 -City Hotel,0,18,2016,April,17,29,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,140.25,0,1,Check-Out,2020-03-03 -City Hotel,1,17,2017,April,14,21,0,2,2,0.0,0,HB,PRT,Aviation,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,115.26,0,1,Canceled,2020-03-03 -City Hotel,0,29,2016,July,27,6,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.37,0,2,Check-Out,2019-02-01 -Resort Hotel,1,188,2016,March,15,21,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,302.0,179.0,0,Transient,46.84,0,0,Canceled,2018-11-02 -Resort Hotel,0,35,2016,December,49,20,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,76.92,1,0,Check-Out,2018-12-03 -City Hotel,0,59,2015,November,51,17,4,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Group,74.71,0,0,Check-Out,2018-09-02 -Resort Hotel,0,49,2017,July,31,24,2,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,234.25,1,2,Check-Out,2020-06-02 -City Hotel,0,237,2016,March,9,17,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.77,0,2,Check-Out,2019-03-04 -City Hotel,1,3,2016,February,7,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,62.26,0,0,Canceled,2018-11-02 -City Hotel,1,195,2015,September,44,9,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,99.95,0,0,Canceled,2018-07-03 -Resort Hotel,0,94,2015,September,35,20,1,0,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,91.35,0,0,Check-Out,2018-08-03 -Resort Hotel,0,3,2016,March,16,29,2,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,37.49,1,2,Check-Out,2019-01-03 -Resort Hotel,1,153,2015,July,31,24,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,6.0,179.0,0,Transient,60.68,1,0,Canceled,2018-06-02 -City Hotel,0,2,2016,June,25,28,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,A,1,No Deposit,11.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -City Hotel,1,261,2016,May,23,12,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,66.13,0,0,Canceled,2019-02-01 -City Hotel,1,157,2017,August,26,15,0,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,16.0,179.0,0,Transient,165.94,0,0,Canceled,2020-06-02 -Resort Hotel,0,238,2016,October,45,18,1,2,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,92.0,179.0,0,Transient,69.08,0,0,Check-Out,2019-10-04 -City Hotel,0,62,2016,September,42,12,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,106.83,0,3,Check-Out,2019-05-04 -Resort Hotel,0,96,2016,March,17,31,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,Refundable,11.0,224.0,0,Transient-Party,70.44,0,0,Check-Out,2019-03-04 -Resort Hotel,0,15,2016,December,53,24,1,3,1,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,76.13,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,May,17,10,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,F,0,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,0,96,2016,May,21,30,0,2,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,149.72,0,0,Check-Out,2019-06-03 -Resort Hotel,0,374,2016,March,51,9,0,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,60.23,0,0,Check-Out,2019-07-04 -City Hotel,1,280,2016,September,13,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,67.05,0,0,Canceled,2018-10-03 -City Hotel,1,302,2015,August,38,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.57,0,0,Canceled,2017-12-03 -City Hotel,1,203,2017,June,29,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.73,0,1,Canceled,2019-04-03 -City Hotel,0,0,2017,February,7,20,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,98.0,0,Transient-Party,40.81,0,0,Check-Out,2019-12-04 -City Hotel,1,145,2016,August,37,29,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,170.34,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,June,25,31,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,29.18,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2015,September,36,31,0,1,1,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,154.07,1,3,Check-Out,2019-06-03 -Resort Hotel,1,213,2016,October,23,27,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,37.49,0,2,No-Show,2019-03-04 -Resort Hotel,0,297,2017,June,28,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,127.13,0,0,Check-Out,2020-06-02 -Resort Hotel,0,289,2016,October,35,12,4,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,303.0,179.0,0,Contract,77.51,0,0,Check-Out,2019-05-04 -City Hotel,0,33,2015,July,33,24,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Contract,159.23,0,0,Check-Out,2018-06-02 -City Hotel,0,79,2016,May,22,2,1,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,75.95,1,1,Check-Out,2019-03-04 -City Hotel,1,200,2017,June,22,27,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,88.65,0,2,Canceled,2020-04-02 -City Hotel,1,265,2016,July,27,14,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Transient,79.06,0,0,Canceled,2019-01-03 -City Hotel,1,102,2017,June,28,20,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,11.0,179.0,0,Transient,187.4,0,0,Canceled,2020-02-01 -Resort Hotel,0,272,2016,June,20,30,4,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,81.05,0,1,Check-Out,2019-02-01 -Resort Hotel,0,94,2015,November,43,13,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient-Party,113.99,0,1,Check-Out,2018-09-02 -City Hotel,0,2,2017,June,9,29,0,2,1,0.0,0,BB,PRT,Corporate,GDS,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,0.26,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2016,June,22,18,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,206.0,254.0,0,Transient,108.3,0,0,Check-Out,2019-03-04 -City Hotel,1,331,2015,December,43,13,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,75,Transient,62.53,0,0,Canceled,2018-01-03 -City Hotel,0,16,2017,July,27,5,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,122.78,0,1,Check-Out,2020-06-02 -City Hotel,1,56,2015,September,43,8,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,67.0,179.0,0,Transient,72.24,0,0,Canceled,2018-06-02 -Resort Hotel,1,255,2016,June,33,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Refundable,143.0,179.0,0,Transient,61.13,0,0,Canceled,2019-12-04 -City Hotel,1,362,2015,October,43,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,91.1,0,0,Canceled,2019-08-04 -City Hotel,0,0,2017,January,3,2,0,1,2,0.0,0,BB,CHN,Aviation,GDS,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,82.09,0,0,Check-Out,2019-12-04 -Resort Hotel,0,3,2015,August,36,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,36.89,0,0,Check-Out,2019-06-03 -City Hotel,1,92,2016,May,23,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.71,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2015,November,30,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,13.0,45.0,0,Group,39.13,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2016,November,45,12,1,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,112.55,0,0,Check-Out,2019-10-04 -City Hotel,0,104,2016,October,46,18,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,121.39,0,0,Canceled,2019-12-04 -City Hotel,0,3,2015,December,51,9,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Transient-Party,120.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,193,2016,March,13,31,0,5,2,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,D,2,No Deposit,11.0,223.0,0,Transient-Party,37.66,0,0,Check-Out,2019-03-04 -City Hotel,0,14,2016,May,22,21,2,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,132.67,0,1,Check-Out,2019-01-03 -City Hotel,0,93,2017,May,21,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.03,0,1,Check-Out,2020-04-02 -Resort Hotel,0,9,2016,November,43,14,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,78.2,1,2,Check-Out,2020-01-04 -City Hotel,0,7,2017,June,26,13,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.85,0,1,Check-Out,2019-12-04 -City Hotel,1,0,2016,May,12,10,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,61.22,0,0,No-Show,2019-03-04 -City Hotel,1,159,2016,December,53,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,3,No Deposit,30.0,179.0,40,Transient-Party,37.98,0,0,Canceled,2018-11-02 -City Hotel,0,14,2016,November,51,30,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.18,0,2,Check-Out,2019-10-04 -City Hotel,0,16,2017,March,30,2,0,3,1,0.0,0,BB,BEL,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.49,0,0,Check-Out,2019-01-03 -City Hotel,1,38,2017,February,9,27,0,1,1,0.0,0,BB,DEU,Online TA,Corporate,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient-Party,67.72,0,1,Canceled,2020-01-04 -Resort Hotel,0,0,2016,October,44,9,0,7,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,146.12,0,0,Check-Out,2019-09-03 -Resort Hotel,0,12,2016,July,31,29,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,161.31,1,0,Check-Out,2018-06-02 -City Hotel,1,3,2016,October,46,9,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,125.63,0,0,Canceled,2018-09-02 -City Hotel,0,154,2017,June,31,13,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,71.81,0,0,Check-Out,2019-08-04 -City Hotel,0,314,2016,September,43,31,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.0,0,3,Check-Out,2019-06-03 -City Hotel,1,1,2016,February,7,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.11,0,0,No-Show,2018-12-03 -Resort Hotel,0,1,2016,August,36,24,1,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,249.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,32,2016,February,14,11,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient,77.68,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,June,27,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,13.0,221.0,0,Transient,86.2,0,0,Check-Out,2019-06-03 -City Hotel,0,89,2016,August,45,28,1,1,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.75,0,2,Check-Out,2019-06-03 -Resort Hotel,0,150,2017,June,27,25,4,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,88.16,0,3,Check-Out,2020-06-02 -Resort Hotel,0,148,2017,August,37,6,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,63.05,0,1,Check-Out,2020-04-02 -City Hotel,1,46,2017,July,28,5,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,7.0,179.0,0,Transient,154.5,0,1,Canceled,2020-06-02 -Resort Hotel,1,233,2016,June,26,27,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,Non Refund,17.0,179.0,0,Transient,96.55,0,0,Canceled,2019-05-04 -City Hotel,0,11,2016,April,26,20,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,103.46,0,1,Check-Out,2019-02-01 -Resort Hotel,0,16,2016,January,50,24,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,320.0,179.0,0,Transient,38.93,0,0,Check-Out,2019-02-01 -City Hotel,0,96,2016,March,11,10,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,18,Transient,59.79,0,0,Check-Out,2019-03-04 -City Hotel,0,242,2017,June,25,12,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,80.8,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,January,4,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,26.0,238.0,0,Group,42.15,0,0,Check-Out,2018-11-02 -Resort Hotel,0,46,2016,September,45,31,2,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,147.76,1,2,Check-Out,2019-08-04 -City Hotel,0,26,2016,September,44,15,2,5,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.15,0,2,Check-Out,2019-08-04 -City Hotel,0,14,2016,May,22,15,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,134.46,0,0,Check-Out,2019-04-03 -Resort Hotel,0,99,2016,January,3,30,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,240.36,0,0,Check-Out,2019-02-01 -Resort Hotel,0,265,2017,August,36,9,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,87.81,0,1,Check-Out,2020-06-02 -Resort Hotel,0,42,2016,May,23,25,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,74.8,1,2,Check-Out,2019-07-04 -City Hotel,0,1,2015,October,42,15,2,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,94.31,0,0,Check-Out,2018-09-02 -Resort Hotel,1,139,2017,February,11,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,70.14,0,0,Canceled,2019-10-04 -City Hotel,0,103,2016,December,53,8,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,82.83,0,1,Check-Out,2019-10-04 -Resort Hotel,0,94,2017,May,20,17,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,148.2,1,3,Check-Out,2020-03-03 -City Hotel,0,38,2016,October,43,21,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.35,0,2,Check-Out,2019-11-03 -City Hotel,1,317,2017,March,10,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,69.63,0,0,Canceled,2020-03-03 -City Hotel,0,45,2016,October,44,13,1,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,36.77,0,0,Check-Out,2019-08-04 -Resort Hotel,0,160,2016,August,39,28,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,221.4,0,2,Check-Out,2020-06-02 -Resort Hotel,1,11,2016,May,23,13,2,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,239.0,179.0,0,Transient,166.8,0,2,Canceled,2019-01-03 -City Hotel,0,42,2015,April,27,28,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,75.13,0,0,Check-Out,2018-12-03 -City Hotel,1,265,2017,April,16,10,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,99.71,0,0,Canceled,2019-12-04 -City Hotel,0,66,2017,August,31,5,2,5,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,8.0,179.0,0,Transient,186.59,1,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,February,10,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,95.0,45.0,0,Transient,60.25,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2016,March,16,31,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.57,0,1,Check-Out,2019-01-03 -Resort Hotel,0,3,2017,March,17,6,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,119.1,0,3,Check-Out,2020-02-01 -City Hotel,0,43,2015,December,51,9,0,2,2,0.0,0,BB,BRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,66.38,0,1,Check-Out,2018-11-02 -Resort Hotel,0,1,2016,November,46,13,1,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,251.52,0,0,Check-Out,2019-08-04 -Resort Hotel,1,159,2016,September,44,21,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,103.11,0,3,Canceled,2019-08-04 -Resort Hotel,0,14,2016,May,44,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,118.5,0,0,Check-Out,2019-06-03 -City Hotel,0,39,2016,September,35,2,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,221.92,1,1,Check-Out,2019-07-04 -City Hotel,1,2,2017,March,17,2,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.44,0,0,Canceled,2020-01-04 -Resort Hotel,0,56,2017,March,18,30,0,2,1,0.0,0,HB,ESP,Groups,Corporate,1,0,0,A,D,0,No Deposit,14.0,223.0,0,Transient,99.25,0,0,Check-Out,2020-03-03 -City Hotel,1,236,2015,July,42,24,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,60.83,0,0,Canceled,2018-01-03 -City Hotel,0,10,2017,January,32,28,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,13.0,85.0,0,Transient,70.4,0,0,Check-Out,2020-06-02 -City Hotel,1,16,2017,March,15,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.7,0,0,Canceled,2020-02-01 -City Hotel,0,2,2017,February,11,5,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,73.0,179.0,0,Transient,70.47,0,1,Check-Out,2020-03-03 -City Hotel,1,2,2016,October,43,19,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.46,0,0,Canceled,2019-09-03 -Resort Hotel,1,102,2016,November,48,12,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,H,0,No Deposit,267.0,179.0,0,Transient,74.59,0,0,Canceled,2018-10-03 -Resort Hotel,0,95,2017,June,26,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,68.0,179.0,0,Transient-Party,108.25,0,1,Check-Out,2020-02-01 -City Hotel,0,107,2017,May,21,26,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Group,65.44,0,2,Check-Out,2020-06-02 -Resort Hotel,0,102,2017,May,21,23,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,F,0,No Deposit,16.0,179.0,0,Transient,110.69,1,0,Check-Out,2020-04-02 -Resort Hotel,0,204,2016,May,16,24,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,76.82,0,0,Check-Out,2019-03-04 -City Hotel,1,94,2015,October,45,31,0,1,2,1.0,0,BB,CHN,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,117.43,0,0,Canceled,2018-08-03 -City Hotel,1,47,2015,July,33,29,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,A,0,No Deposit,11.0,179.0,0,Contract,39.21,0,0,Canceled,2018-06-02 -City Hotel,0,44,2016,December,51,10,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,99.45,0,1,Check-Out,2018-07-03 -City Hotel,0,149,2017,August,31,21,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,E,F,2,No Deposit,9.0,179.0,0,Contract,160.21,0,3,Check-Out,2020-06-02 -City Hotel,1,161,2017,July,31,15,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Contract,161.28,0,2,Canceled,2020-03-03 -City Hotel,0,258,2015,July,30,21,2,2,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,78.97,0,1,Check-Out,2019-06-03 -City Hotel,0,37,2016,September,44,14,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,164.0,179.0,0,Contract,43.37,0,1,Check-Out,2019-08-04 -City Hotel,1,2,2017,January,2,10,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient,59.52,0,0,Canceled,2018-12-03 -City Hotel,1,7,2016,June,4,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,123.88,0,0,No-Show,2019-02-01 -City Hotel,0,288,2017,June,21,13,2,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,210.36,0,2,Check-Out,2020-02-01 -City Hotel,1,36,2015,December,50,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,91.04,0,0,Canceled,2018-11-02 -Resort Hotel,1,292,2017,July,25,16,0,5,2,0.0,0,HB,PRT,Complementary,Direct,1,0,0,E,F,0,No Deposit,244.0,179.0,0,Transient,0.0,0,1,Canceled,2020-03-03 -City Hotel,0,90,2017,July,27,25,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,76.18,0,1,Check-Out,2019-11-03 -City Hotel,0,178,2017,June,37,21,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,167.16,0,1,Check-Out,2020-07-03 -Resort Hotel,0,156,2016,August,35,21,0,2,2,0.0,0,BB,POL,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,119.35,0,1,Check-Out,2019-06-03 -City Hotel,1,272,2016,May,27,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.38,0,0,Canceled,2018-08-03 -Resort Hotel,0,43,2015,December,42,5,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,37.0,0,1,Check-Out,2018-08-03 -Resort Hotel,0,98,2015,August,51,28,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,1,No Deposit,250.0,179.0,0,Transient,38.49,0,2,Check-Out,2018-11-02 -City Hotel,1,25,2016,April,22,9,2,3,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.48,0,0,Canceled,2019-01-03 -City Hotel,0,93,2017,February,10,10,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,77.91,0,1,Check-Out,2019-10-04 -City Hotel,1,53,2017,March,4,27,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.01,0,0,Canceled,2019-11-03 -Resort Hotel,0,8,2016,December,51,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,118.11,1,1,Check-Out,2019-10-04 -Resort Hotel,0,40,2016,December,13,25,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,244.0,179.0,0,Transient,40.96,1,0,Check-Out,2018-12-03 -Resort Hotel,0,99,2016,November,51,27,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,E,E,1,No Deposit,91.0,179.0,63,Group,22.75,0,0,Check-Out,2018-12-03 -City Hotel,1,263,2015,September,33,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.71,0,0,Canceled,2018-07-03 -City Hotel,0,1,2015,July,37,18,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.48,0,0,Check-Out,2018-07-03 -Resort Hotel,0,91,2017,June,33,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,70.28,0,2,Check-Out,2020-02-01 -City Hotel,0,50,2017,July,36,10,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,129.8,0,1,Check-Out,2020-04-02 -City Hotel,0,49,2016,October,44,2,1,0,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.39,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,January,5,25,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,60.07,0,2,Check-Out,2019-11-03 -City Hotel,0,82,2015,September,44,31,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,131.52,0,2,Check-Out,2018-07-03 -City Hotel,0,17,2016,April,23,24,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,133.88,0,0,Check-Out,2019-04-03 -City Hotel,0,45,2016,October,44,9,2,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,17,Transient-Party,125.01,0,0,Check-Out,2019-12-04 -Resort Hotel,1,188,2016,May,26,2,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,269.0,179.0,0,Transient,83.79,0,0,Canceled,2019-04-03 -Resort Hotel,0,86,2017,March,13,31,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,259.0,179.0,0,Transient,80.06,1,0,Check-Out,2019-11-03 -Resort Hotel,0,12,2016,August,38,25,1,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,297.0,179.0,0,Contract,89.94,0,1,Check-Out,2019-04-03 -City Hotel,0,250,2016,September,43,16,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,285.0,179.0,0,Transient,127.81,0,1,Check-Out,2019-10-04 -City Hotel,1,55,2016,March,16,9,0,4,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Contract,62.23,0,0,Canceled,2018-10-03 -City Hotel,0,11,2017,June,15,26,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,80.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,53,2017,May,22,1,1,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,H,0,No Deposit,310.0,179.0,0,Transient-Party,79.95,0,0,Check-Out,2019-04-03 -City Hotel,0,133,2016,May,24,28,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,91.95,0,2,Check-Out,2019-05-04 -Resort Hotel,1,48,2015,December,50,30,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,85.23,0,0,Canceled,2019-02-01 -City Hotel,1,127,2017,June,27,17,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,158.0,179.0,0,Transient,120.06,0,0,Canceled,2020-04-02 -Resort Hotel,0,44,2016,December,53,10,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,D,0,No Deposit,13.0,179.0,62,Transient,43.33,0,2,Check-Out,2018-11-02 -City Hotel,0,9,2016,February,10,28,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,152.4,0,3,Check-Out,2018-10-03 -City Hotel,0,7,2017,May,22,23,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Contract,163.55,1,0,Check-Out,2020-02-01 -City Hotel,0,7,2016,September,26,3,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,K,0,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-06-03 -City Hotel,0,230,2016,May,21,4,0,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,95.5,0,0,Check-Out,2019-07-04 -Resort Hotel,1,153,2017,June,27,20,2,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,270.0,179.0,0,Transient,120.26,0,0,Canceled,2020-03-03 -City Hotel,1,29,2016,January,3,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,70.01,0,2,No-Show,2018-12-03 -Resort Hotel,0,1,2016,January,13,29,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,60.56,0,1,Check-Out,2018-11-02 -Resort Hotel,0,3,2015,November,44,5,2,1,2,0.0,0,BB,AUT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,71.04,0,0,Check-Out,2018-08-03 -City Hotel,1,13,2017,April,15,10,0,3,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,F,1,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Canceled,2020-02-01 -City Hotel,1,100,2016,April,17,25,2,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,84.21,0,0,Canceled,2019-01-03 -City Hotel,0,85,2017,May,26,18,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,118.59,0,1,Check-Out,2020-04-02 -City Hotel,0,160,2017,April,18,10,2,0,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,48.0,179.0,0,Transient-Party,96.79,0,0,Check-Out,2020-02-01 -Resort Hotel,0,1,2016,May,22,27,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,18.0,179.0,0,Transient,127.13,1,0,Check-Out,2019-02-01 -Resort Hotel,1,152,2017,July,36,22,0,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Refundable,241.0,179.0,0,Transient,218.48,0,0,Canceled,2020-05-03 -City Hotel,1,157,2016,March,9,5,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,81.72,0,0,Canceled,2019-11-03 -City Hotel,1,143,2016,October,26,30,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,120.87,0,0,Canceled,2019-08-04 -Resort Hotel,1,47,2017,June,11,19,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient,116.75,0,0,Check-Out,2020-04-02 -Resort Hotel,1,18,2016,March,10,16,0,3,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,Refundable,2.0,222.0,0,Transient-Party,62.7,0,0,Canceled,2019-11-03 -Resort Hotel,0,86,2016,December,53,27,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,42.0,179.0,0,Transient-Party,37.69,0,0,Check-Out,2019-11-03 -City Hotel,0,9,2016,October,44,21,2,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.5,0,0,Check-Out,2019-07-04 -Resort Hotel,0,153,2016,August,36,28,1,1,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,G,F,0,No Deposit,246.0,179.0,0,Transient,63.85,1,0,Check-Out,2019-11-03 -City Hotel,1,48,2015,September,44,28,2,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,93.09,0,0,Canceled,2018-08-03 -City Hotel,0,0,2017,January,3,6,0,3,2,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,100.48,0,1,Check-Out,2019-11-03 -Resort Hotel,1,254,2016,July,26,16,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,238.0,179.0,0,Group,163.51,0,1,Canceled,2020-02-01 -Resort Hotel,0,48,2016,December,50,24,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,98.0,179.0,0,Transient-Party,69.23,0,0,Check-Out,2019-10-04 -City Hotel,0,37,2016,August,33,30,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,118.58,0,2,Check-Out,2019-06-03 -City Hotel,0,2,2016,August,35,21,1,5,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,103.38,0,0,Check-Out,2020-06-02 -City Hotel,1,148,2015,August,38,21,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,62.51,0,0,Canceled,2018-05-03 -City Hotel,0,52,2015,December,53,21,0,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.85,0,1,Canceled,2018-06-02 -City Hotel,0,9,2016,August,37,17,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,89.83,0,1,Check-Out,2019-08-04 -Resort Hotel,1,9,2016,January,4,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,69.36,0,1,No-Show,2018-11-02 -City Hotel,0,4,2016,April,16,15,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,9.0,179.0,0,Transient,130.06,0,2,Check-Out,2019-02-01 -City Hotel,0,3,2017,July,26,21,0,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,121.45,0,2,Check-Out,2020-05-03 -City Hotel,0,160,2016,June,25,7,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,76.0,179.0,0,Transient,125.54,0,1,Check-Out,2019-04-03 -Resort Hotel,0,92,2017,May,21,21,2,10,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,1,0,1,E,A,0,No Deposit,168.0,179.0,0,Group,100.41,1,1,Check-Out,2020-03-03 -City Hotel,1,43,2016,March,16,12,0,1,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,10.0,179.0,0,Transient,67.16,0,0,Canceled,2019-01-03 -City Hotel,0,12,2016,August,38,30,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.18,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,March,37,10,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient-Party,41.83,1,3,Check-Out,2019-07-04 -Resort Hotel,1,146,2016,December,49,10,1,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,239.0,179.0,0,Transient-Party,81.23,0,0,Canceled,2019-11-03 -City Hotel,1,297,2017,May,16,20,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.37,0,0,Canceled,2020-04-02 -City Hotel,1,216,2015,August,33,6,2,5,3,2.0,0,HB,PRT,Undefined,Undefined,0,1,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,48.83,0,1,Canceled,2018-06-02 -City Hotel,1,403,2017,July,27,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,45.0,0,Transient,109.29,0,0,Canceled,2017-12-03 -Resort Hotel,0,281,2016,June,27,9,4,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,115.01,0,0,Check-Out,2019-02-01 -Resort Hotel,0,150,2016,August,30,30,2,10,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,116.35,0,2,Check-Out,2020-05-03 -City Hotel,1,66,2016,March,16,31,0,3,1,1.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,4.0,179.0,0,Transient,44.16,0,0,Canceled,2018-10-03 -City Hotel,0,8,2015,August,35,4,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,2,No Deposit,14.0,179.0,0,Transient-Party,106.19,0,1,Check-Out,2018-06-02 -Resort Hotel,0,35,2017,April,23,26,0,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,203.73,1,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,January,5,20,1,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,254.0,0,Transient-Party,31.86,1,0,Check-Out,2019-10-04 -Resort Hotel,1,17,2017,February,9,15,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,193.23,0,0,Canceled,2019-10-04 -Resort Hotel,1,244,2015,December,53,26,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,99.13,0,0,Canceled,2019-11-03 -City Hotel,1,49,2016,February,10,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,80.57,0,0,Canceled,2019-09-03 -Resort Hotel,1,123,2017,August,34,27,2,2,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,113.67,0,1,Canceled,2020-03-03 -City Hotel,0,3,2016,March,10,21,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.05,0,2,Check-Out,2019-10-04 -Resort Hotel,1,147,2015,September,38,27,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,No Deposit,245.0,179.0,0,Transient,144.27,0,0,Canceled,2018-09-02 -Resort Hotel,0,227,2016,May,22,4,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,73.44,1,0,Check-Out,2019-07-04 -City Hotel,0,30,2017,June,3,17,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,118.23,0,1,Check-Out,2020-01-04 -City Hotel,0,42,2016,June,29,1,0,1,2,0.0,0,BB,,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient,2.15,0,0,Check-Out,2019-06-03 -City Hotel,0,15,2016,October,46,27,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,177.0,0,Transient,116.58,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,August,35,16,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,A,1,No Deposit,15.0,179.0,0,Transient,0.0,0,2,Canceled,2018-07-03 -City Hotel,0,3,2015,September,38,12,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,63.44,0,0,Check-Out,2018-08-03 -City Hotel,0,109,2016,October,44,12,1,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,9.0,179.0,0,Contract,124.28,0,3,Check-Out,2019-08-04 -Resort Hotel,0,47,2016,October,43,30,4,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,97.81,0,0,Check-Out,2019-05-04 -City Hotel,0,14,2016,August,38,27,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Contract,218.59,0,1,Canceled,2019-07-04 -City Hotel,1,194,2016,December,50,21,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,81.03,0,0,Canceled,2018-12-03 -Resort Hotel,0,6,2016,December,51,28,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,248.0,0,Transient-Party,27.96,0,0,Check-Out,2019-11-03 -City Hotel,0,4,2017,May,25,16,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.35,0,0,Check-Out,2020-04-02 -City Hotel,1,299,2016,May,22,24,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,117.9,0,0,Canceled,2019-02-01 -City Hotel,0,1,2016,February,16,10,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.07,0,0,Check-Out,2019-11-03 -City Hotel,0,37,2017,March,11,5,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,137.33,0,1,Check-Out,2019-11-03 -City Hotel,1,192,2017,April,16,30,0,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,73.33,0,0,Canceled,2020-03-03 -City Hotel,0,150,2016,September,37,28,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,140.65,0,0,Check-Out,2019-08-04 -Resort Hotel,0,102,2016,July,24,3,3,5,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,112.05,0,1,Check-Out,2019-03-04 -City Hotel,1,370,2017,May,21,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.92,0,1,Canceled,2020-04-02 -City Hotel,1,11,2015,October,45,11,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,14.0,45.0,0,Transient-Party,57.73,0,0,Canceled,2018-09-02 -Resort Hotel,0,182,2016,February,12,20,1,5,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,1,No Deposit,15.0,179.0,0,Transient,61.86,0,0,Check-Out,2019-02-01 -City Hotel,1,48,2016,July,16,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,A,0,Non Refund,1.0,179.0,0,Transient,32.41,0,0,Canceled,2019-01-03 -Resort Hotel,0,49,2016,July,9,28,0,1,1,1.0,0,BB,GBR,Direct,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-04-02 -City Hotel,1,123,2017,June,26,21,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,66.0,179.0,42,Transient,112.99,0,0,Canceled,2020-02-01 -City Hotel,1,64,2015,December,53,21,2,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient,27.38,0,2,Canceled,2019-09-03 -City Hotel,0,7,2016,December,51,28,1,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,57.06,0,1,Check-Out,2019-11-03 -City Hotel,0,3,2016,June,19,24,0,1,2,0.0,0,BB,FRA,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,86.5,0,0,Check-Out,2019-04-03 -Resort Hotel,0,266,2016,March,17,31,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,59.82,1,0,Check-Out,2019-03-04 -City Hotel,0,99,2017,March,20,10,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,112.9,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,May,22,19,1,0,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,C,0,No Deposit,13.0,331.0,0,Transient,77.62,0,0,Check-Out,2020-04-02 -City Hotel,0,11,2016,October,28,18,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.01,0,0,Check-Out,2019-06-03 -Resort Hotel,1,289,2017,August,38,18,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,230.65,0,1,Canceled,2020-07-03 -Resort Hotel,0,44,2016,August,23,26,0,4,1,0.0,0,HB,PRT,Direct,Corporate,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,115.41,1,0,Check-Out,2019-05-04 -Resort Hotel,0,30,2016,November,50,2,0,4,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient-Party,87.95,1,0,Check-Out,2019-11-03 -City Hotel,1,191,2017,August,37,6,2,2,2,2.0,0,BB,RUS,Undefined,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,114.95,0,0,Canceled,2019-12-04 -Resort Hotel,0,138,2017,May,20,31,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,87.0,179.0,0,Contract,89.55,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2016,August,50,10,2,1,1,0.0,0,BB,CHE,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,130.3,0,0,Check-Out,2019-10-04 -Resort Hotel,1,154,2017,March,12,15,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,76.0,0,Transient,39.96,0,0,Canceled,2019-04-03 -Resort Hotel,0,12,2017,December,53,28,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,60.13,0,1,Check-Out,2019-10-04 -City Hotel,1,44,2016,August,40,4,0,2,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,161.55,0,2,Canceled,2018-06-02 -City Hotel,0,24,2016,October,45,26,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,93.0,179.0,65,Transient-Party,88.17,0,0,Check-Out,2019-12-04 -Resort Hotel,0,37,2016,December,53,24,0,2,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient-Party,2.38,0,0,Check-Out,2020-01-04 -Resort Hotel,0,290,2017,July,24,2,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,82.21,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,April,15,7,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,125.0,179.0,0,Transient,118.03,0,1,Check-Out,2019-03-04 -Resort Hotel,0,9,2017,May,31,6,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,F,I,1,No Deposit,15.0,179.0,0,Transient,0.41,1,2,Check-Out,2020-06-02 -Resort Hotel,0,157,2016,September,36,13,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,255.0,179.0,0,Transient,84.37,0,0,Check-Out,2020-01-04 -Resort Hotel,0,101,2016,June,26,30,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,127.07,0,2,Check-Out,2019-05-04 -City Hotel,0,16,2016,December,50,28,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,12.0,179.0,0,Transient,95.31,1,2,Check-Out,2019-11-03 -Resort Hotel,0,109,2015,November,51,25,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient-Party,63.52,0,0,Check-Out,2019-02-01 -City Hotel,1,91,2016,July,32,17,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient,108.32,0,2,Canceled,2020-05-03 -City Hotel,0,38,2016,October,43,5,1,3,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.82,0,1,Check-Out,2019-09-03 -City Hotel,0,159,2017,July,32,26,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,224.97,0,3,Check-Out,2020-06-02 -City Hotel,1,303,2016,April,15,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,78.87,0,0,Canceled,2019-02-01 -City Hotel,1,147,2016,September,42,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,40,Transient,100.26,0,0,Canceled,2019-01-03 -City Hotel,0,25,2016,December,53,28,2,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.28,0,0,Check-Out,2019-10-04 -Resort Hotel,0,2,2017,May,31,16,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,F,1,No Deposit,254.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-07-03 -Resort Hotel,0,35,2015,August,38,17,0,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,D,1,No Deposit,13.0,179.0,0,Transient,211.45,1,0,Check-Out,2018-06-02 -City Hotel,1,327,2015,September,44,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.85,0,0,Canceled,2018-01-03 -City Hotel,0,38,2016,December,4,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.32,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2016,September,37,15,0,1,1,1.0,0,BB,,Direct,Direct,0,0,0,G,G,1,No Deposit,17.0,179.0,0,Transient,211.25,0,0,Check-Out,2019-05-04 -City Hotel,1,53,2017,April,18,31,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,82.15,0,0,Canceled,2020-01-04 -City Hotel,1,25,2016,September,36,14,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.11,0,2,Canceled,2019-08-04 -City Hotel,0,2,2016,November,50,13,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,105.39,0,0,Check-Out,2019-12-04 -City Hotel,0,50,2016,October,43,25,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,72.92,0,1,Check-Out,2019-08-04 -Resort Hotel,0,172,2017,July,34,6,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,75.31,0,2,Check-Out,2020-07-03 -Resort Hotel,0,268,2016,October,37,30,2,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,99.68,0,0,Check-Out,2019-08-04 -City Hotel,1,255,2015,July,31,31,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.88,0,0,Canceled,2018-07-03 -City Hotel,1,94,2016,November,44,24,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.59,0,0,Canceled,2019-05-04 -Resort Hotel,0,49,2017,May,31,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,63.6,1,2,Check-Out,2020-04-02 -City Hotel,0,104,2016,March,18,15,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,75.0,179.0,0,Transient,107.7,0,0,Check-Out,2019-02-01 -Resort Hotel,1,54,2017,March,17,29,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,321.0,179.0,0,Transient,40.71,0,0,Canceled,2019-09-03 -City Hotel,1,64,2016,October,44,6,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.76,0,2,Canceled,2019-03-04 -Resort Hotel,0,49,2016,November,44,9,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,C,0,No Deposit,241.0,179.0,0,Transient,61.3,1,0,Check-Out,2018-09-02 -City Hotel,0,12,2016,August,53,10,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,131.86,0,1,Check-Out,2019-06-03 -Resort Hotel,0,262,2017,July,30,21,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,4.0,179.0,0,Transient-Party,41.82,0,0,Check-Out,2020-06-02 -City Hotel,1,238,2016,August,37,16,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.08,0,1,Canceled,2018-06-02 -City Hotel,0,59,2016,April,23,28,0,3,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,327.0,179.0,0,Transient-Party,112.12,0,1,Check-Out,2019-01-03 -Resort Hotel,0,56,2016,December,50,2,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,97.93,1,2,Check-Out,2019-10-04 -Resort Hotel,0,44,2016,January,10,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,90.0,179.0,0,Transient-Party,63.34,0,0,Check-Out,2018-11-02 -City Hotel,0,10,2015,August,39,28,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,96.06,0,0,Check-Out,2019-03-04 -City Hotel,0,9,2015,July,40,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.57,0,0,Check-Out,2017-09-02 -City Hotel,1,241,2015,August,38,22,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.17,0,0,Canceled,2017-10-03 -City Hotel,1,36,2016,August,34,17,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.05,0,1,Canceled,2018-09-02 -City Hotel,0,391,2017,June,21,30,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,89.38,0,2,Check-Out,2020-06-02 -City Hotel,0,49,2016,October,43,20,1,2,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,70.49,0,0,Check-Out,2019-09-03 -Resort Hotel,0,103,2015,July,32,24,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,44.28,0,0,Check-Out,2018-06-02 -City Hotel,0,21,2016,May,41,23,2,3,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,77.0,0,Transient-Party,94.49,0,2,Check-Out,2019-04-03 -Resort Hotel,0,29,2016,May,22,28,1,1,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,F,1,No Deposit,347.0,179.0,0,Transient,124.2,0,0,Check-Out,2019-02-01 -Resort Hotel,0,100,2016,July,42,24,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,172.0,179.0,0,Transient,113.86,0,0,Check-Out,2019-09-03 -City Hotel,0,43,2016,July,16,24,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,113.78,0,0,Check-Out,2019-03-04 -City Hotel,0,99,2016,May,26,13,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.16,0,1,Check-Out,2019-06-03 -City Hotel,1,2,2016,June,27,21,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.74,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2016,December,16,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,101.49,1,0,Check-Out,2019-03-04 -Resort Hotel,1,18,2015,September,43,9,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.96,0,0,Canceled,2018-08-03 -Resort Hotel,0,324,2016,December,51,13,0,1,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,D,0,No Deposit,13.0,331.0,16,Transient-Party,64.07,0,0,Check-Out,2018-11-02 -Resort Hotel,0,64,2016,May,17,31,2,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,67.63,1,1,Check-Out,2019-01-03 -City Hotel,0,1,2016,May,24,31,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,86.04,0,0,Check-Out,2019-03-04 -City Hotel,1,51,2016,March,11,5,0,4,3,0.0,0,HB,POL,Groups,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient-Party,120.61,0,0,Canceled,2018-11-02 -City Hotel,1,18,2016,November,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,12.0,68.0,43,Transient,64.41,0,0,Canceled,2018-11-02 -Resort Hotel,1,69,2016,September,32,15,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,237.0,179.0,0,Transient,147.55,0,0,Canceled,2019-08-04 -City Hotel,0,146,2016,June,24,2,0,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,109.88,1,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,October,41,27,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,132.02,0,0,Check-Out,2019-08-04 -Resort Hotel,1,20,2015,November,45,22,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,61.18,0,0,Canceled,2018-08-03 -City Hotel,0,383,2016,October,44,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,68.24,0,1,Check-Out,2018-08-03 -City Hotel,1,55,2017,August,27,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,120.86,0,3,Canceled,2020-06-02 -Resort Hotel,0,419,2017,May,20,29,2,1,2,0.0,0,HB,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,84.7,0,0,Check-Out,2020-02-01 -Resort Hotel,1,222,2017,July,22,24,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,61.51,0,1,Canceled,2019-11-03 -City Hotel,1,97,2016,December,53,16,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,96.45,0,1,Canceled,2019-01-03 -City Hotel,1,171,2017,May,21,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,125.88,0,0,Canceled,2020-03-03 -Resort Hotel,0,79,2016,May,20,12,1,2,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient,63.63,0,0,Check-Out,2019-03-04 -City Hotel,0,31,2016,May,25,15,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,211.9,0,2,Check-Out,2019-02-01 -Resort Hotel,0,294,2017,May,22,31,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,153.14,1,1,Check-Out,2020-06-02 -Resort Hotel,1,10,2015,August,35,6,2,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,77.96,0,3,No-Show,2018-05-03 -City Hotel,1,403,2016,October,27,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,92.88,0,0,Canceled,2019-06-03 -City Hotel,1,93,2016,May,22,5,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.77,0,0,Canceled,2019-02-01 -City Hotel,0,108,2016,October,45,29,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,2,No Deposit,9.0,179.0,0,Transient,92.42,0,1,Check-Out,2019-03-04 -City Hotel,0,179,2017,August,36,11,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,176.99,0,0,Check-Out,2020-06-02 -City Hotel,0,4,2017,February,10,15,2,3,2,2.0,0,HB,CHE,Online TA,TA/TO,0,0,0,F,L,0,No Deposit,10.0,179.0,0,Transient,115.54,0,1,Check-Out,2020-05-03 -Resort Hotel,0,15,2015,November,50,18,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,243.0,179.0,0,Contract,41.65,0,0,Check-Out,2018-08-03 -Resort Hotel,0,15,2017,April,17,5,0,1,1,0.0,0,HB,ESP,Complementary,Corporate,1,0,0,E,D,1,No Deposit,184.0,331.0,0,Group,0.0,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2016,December,53,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,2,No Deposit,16.0,179.0,0,Transient,41.36,0,0,Check-Out,2018-11-02 -City Hotel,1,13,2016,November,51,27,0,1,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.83,0,0,Canceled,2018-08-03 -City Hotel,1,158,2017,June,26,17,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,62.34,0,0,Canceled,2020-05-03 -City Hotel,1,11,2016,May,33,27,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,72.21,0,2,Canceled,2019-08-04 -City Hotel,1,225,2017,June,24,2,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,149.41,0,1,Canceled,2020-01-04 -City Hotel,0,8,2017,June,29,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,12.0,45.0,0,Transient,67.16,0,2,Check-Out,2020-05-03 -Resort Hotel,0,154,2016,May,22,7,2,7,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,272.0,179.0,0,Transient-Party,84.15,0,0,Check-Out,2019-02-01 -City Hotel,1,56,2017,May,20,24,0,5,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,121.2,0,0,Canceled,2020-03-03 -Resort Hotel,1,297,2015,September,45,10,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient-Party,64.69,0,0,Canceled,2018-09-02 -City Hotel,0,96,2017,August,38,18,2,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,186.36,1,1,Check-Out,2020-07-03 -Resort Hotel,0,67,2017,August,35,27,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,245.0,179.0,0,Transient,75.13,0,1,Check-Out,2019-12-04 -Resort Hotel,1,119,2016,March,18,9,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient-Party,63.14,0,0,Canceled,2019-01-03 -City Hotel,0,11,2017,June,25,6,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.43,0,1,Check-Out,2020-04-02 -Resort Hotel,1,71,2015,September,37,21,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,42.48,0,0,Canceled,2018-07-03 -City Hotel,0,108,2017,July,34,27,2,5,2,1.0,0,BB,USA,Direct,Direct,0,0,0,G,G,0,No Deposit,17.0,179.0,0,Transient,139.0,0,2,Check-Out,2020-05-03 -City Hotel,1,252,2015,September,36,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,62,Transient,122.17,0,0,Canceled,2018-08-03 -Resort Hotel,1,34,2015,July,31,25,2,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,99.05,0,0,Check-Out,2018-06-02 -City Hotel,1,246,2017,May,26,19,0,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,112.57,0,0,Canceled,2020-02-01 -City Hotel,1,0,2016,May,25,2,1,0,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,D,D,0,No Deposit,12.0,45.0,0,Transient,0.78,0,1,Canceled,2019-02-01 -Resort Hotel,0,11,2016,November,49,5,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,45.0,223.0,0,Transient-Party,60.33,0,0,Check-Out,2019-11-03 -Resort Hotel,1,15,2017,August,38,27,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,75.82,0,0,Canceled,2020-03-03 -City Hotel,0,35,2016,May,22,28,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.45,1,2,Check-Out,2019-03-04 -City Hotel,0,262,2015,October,41,12,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.65,0,2,Check-Out,2018-08-03 -Resort Hotel,0,8,2015,October,43,5,1,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,D,3,No Deposit,249.0,179.0,0,Transient,94.46,1,1,Check-Out,2018-09-02 -Resort Hotel,0,175,2017,June,26,26,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,303.0,179.0,0,Transient-Party,71.35,0,2,Check-Out,2020-05-03 -City Hotel,0,172,2015,December,49,6,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.95,0,0,Check-Out,2019-11-03 -Resort Hotel,0,9,2017,May,27,5,2,0,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,E,2,No Deposit,14.0,179.0,0,Transient,123.11,0,0,Check-Out,2020-04-02 -City Hotel,1,288,2017,May,22,29,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Contract,104.6,0,3,Canceled,2020-03-03 -City Hotel,0,0,2016,August,46,5,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,116.44,0,2,Check-Out,2018-08-03 -City Hotel,1,24,2016,July,26,8,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,129.34,0,1,Canceled,2019-02-01 -City Hotel,0,9,2016,October,46,27,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.98,0,0,Check-Out,2019-11-03 -City Hotel,1,51,2016,September,43,5,2,5,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,86.55,0,1,Canceled,2017-10-03 -City Hotel,0,115,2017,June,26,8,2,1,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,A,E,2,No Deposit,12.0,179.0,0,Transient,134.4,0,0,Check-Out,2020-03-03 -City Hotel,0,44,2016,January,3,28,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,61.32,0,2,Check-Out,2019-11-03 -Resort Hotel,0,87,2016,July,33,21,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,103.06,1,1,Check-Out,2018-06-02 -City Hotel,0,0,2017,October,21,27,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,124.21,0,2,Check-Out,2020-03-03 -Resort Hotel,0,45,2016,May,18,21,1,3,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,119.11,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,December,53,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,H,I,0,No Deposit,239.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-07-04 -Resort Hotel,0,3,2017,March,13,29,0,1,1,0.0,0,BB,GBR,Groups,Corporate,1,0,0,A,A,2,No Deposit,13.0,223.0,75,Transient-Party,38.2,0,0,Check-Out,2019-11-03 -City Hotel,1,1,2015,August,34,4,0,2,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Contract,86.16,0,1,Canceled,2018-07-03 -City Hotel,1,21,2016,September,43,10,2,5,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,151.27,0,2,Canceled,2019-07-04 -City Hotel,0,14,2016,October,44,13,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.21,0,2,Check-Out,2019-06-03 -City Hotel,0,65,2017,July,28,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.32,0,1,Check-Out,2020-06-02 -City Hotel,1,66,2016,July,32,9,0,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,118.71,0,0,Canceled,2019-02-01 -Resort Hotel,1,272,2016,April,16,24,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,Non Refund,243.0,179.0,0,Transient,100.16,0,0,Canceled,2019-02-01 -City Hotel,0,12,2016,May,22,15,1,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,160.81,0,0,Check-Out,2019-03-04 -City Hotel,1,9,2016,October,43,8,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.15,0,0,Canceled,2019-07-04 -City Hotel,0,3,2016,July,31,30,4,1,3,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,37.0,179.0,0,Transient,132.81,0,0,Check-Out,2020-06-02 -City Hotel,1,89,2017,July,31,14,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.58,0,0,Canceled,2019-11-03 -City Hotel,1,2,2015,July,31,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,64.11,0,0,Canceled,2018-06-02 -City Hotel,0,304,2015,July,28,6,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.5,0,1,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,May,21,12,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,213.0,0,Transient,132.23,0,0,Check-Out,2020-04-02 -City Hotel,1,16,2015,July,35,16,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.45,0,0,Canceled,2018-05-03 -City Hotel,0,3,2015,November,43,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,0,Transient,62.76,0,0,Check-Out,2018-08-03 -City Hotel,1,209,2016,September,37,30,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,63.37,0,0,Canceled,2017-12-03 -City Hotel,0,104,2017,June,34,13,2,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,141.13,0,1,Check-Out,2020-07-03 -City Hotel,1,15,2016,October,44,19,1,1,2,0.0,0,HB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,147.9,0,0,Canceled,2019-08-04 -Resort Hotel,0,24,2017,December,36,21,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,77.4,0,3,Check-Out,2019-12-04 -City Hotel,1,155,2016,July,27,22,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.59,0,2,Canceled,2019-02-01 -City Hotel,0,242,2016,May,20,15,2,5,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,L,B,1,No Deposit,13.0,179.0,0,Transient,183.78,0,1,Check-Out,2019-02-01 -City Hotel,1,40,2017,August,36,4,0,4,3,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,187.54,0,3,Canceled,2020-03-03 -Resort Hotel,1,260,2016,September,32,24,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,244.0,179.0,0,Transient,61.04,0,0,Canceled,2019-04-03 -City Hotel,1,248,2015,July,38,6,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,101.53,0,2,Canceled,2018-06-02 -City Hotel,0,1,2016,March,15,5,0,3,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.39,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,January,5,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,38.16,0,0,Check-Out,2018-09-02 -City Hotel,0,155,2017,June,28,23,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.29,0,1,Check-Out,2019-04-03 -City Hotel,1,52,2017,December,9,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,F,2,No Deposit,11.0,179.0,0,Transient,75.66,0,0,Canceled,2019-10-04 -Resort Hotel,0,36,2016,January,13,27,1,4,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,73.26,1,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,March,10,14,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,230.0,0,Transient,41.36,1,0,Check-Out,2019-06-03 -Resort Hotel,0,7,2017,February,11,21,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,75,Transient,40.71,0,0,Check-Out,2020-02-01 -City Hotel,1,441,2015,October,51,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,64,Transient,61.97,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,October,43,30,0,1,1,0.0,0,SC,CN,Aviation,GDS,0,0,0,A,A,0,No Deposit,191.0,79.0,0,Transient,108.34,0,0,Check-Out,2019-09-03 -City Hotel,1,14,2015,August,40,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.36,0,0,Canceled,2018-01-31 -Resort Hotel,1,3,2016,February,10,13,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,79.81,0,0,Canceled,2019-02-01 -Resort Hotel,0,300,2015,July,36,3,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Contract,61.49,0,0,Check-Out,2017-11-02 -City Hotel,1,83,2015,September,42,10,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,73.15,0,0,Canceled,2018-08-03 -City Hotel,1,2,2017,May,22,28,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,P,E,0,No Deposit,15.0,170.0,0,Transient,154.61,0,0,Canceled,2020-03-03 -Resort Hotel,0,38,2017,February,11,15,1,4,2,0.0,0,BB,CN,Online TA,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,36.28,0,3,Canceled,2020-03-03 -City Hotel,0,2,2015,October,46,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,83.77,0,0,Check-Out,2018-06-02 -Resort Hotel,0,151,2016,March,16,31,2,5,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,36.73,0,0,Check-Out,2019-03-04 -Resort Hotel,1,21,2017,July,33,7,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,82.06,0,0,Canceled,2020-06-02 -Resort Hotel,0,262,2017,July,33,10,2,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient-Party,105.18,1,2,Check-Out,2020-06-02 -Resort Hotel,1,291,2017,July,15,31,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,118.09,0,1,Canceled,2020-03-03 -City Hotel,1,287,2016,June,20,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,42,Transient,76.97,0,0,Canceled,2019-03-04 -City Hotel,1,0,2016,July,36,6,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,124.82,0,1,No-Show,2018-09-02 -Resort Hotel,1,302,2017,July,33,2,0,2,1,0.0,0,BB,USA,Corporate,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,192.43,0,0,Canceled,2020-07-03 -Resort Hotel,0,18,2017,June,21,27,0,1,2,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,E,A,0,No Deposit,378.0,179.0,0,Transient-Party,127.76,1,0,Check-Out,2020-04-02 -City Hotel,0,14,2017,June,17,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,79.91,0,0,Check-Out,2020-04-02 -Resort Hotel,0,19,2015,October,45,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,45.3,0,0,Check-Out,2018-07-03 -City Hotel,0,90,2016,October,45,15,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,88.57,0,2,Check-Out,2019-09-03 -City Hotel,0,0,2017,February,10,5,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,K,1,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2016,December,51,18,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,91.11,0,2,Check-Out,2019-11-03 -City Hotel,0,206,2017,May,27,15,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,102.89,0,0,Check-Out,2020-06-02 -City Hotel,1,264,2017,January,9,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,79.77,0,0,Canceled,2019-09-03 -Resort Hotel,1,244,2015,July,31,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Contract,81.78,0,0,Canceled,2018-05-03 -Resort Hotel,0,138,2016,April,18,31,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,3.0,179.0,0,Contract,60.25,0,0,Check-Out,2019-03-04 -City Hotel,1,274,2015,December,53,24,2,4,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,84.59,0,0,Canceled,2018-08-03 -City Hotel,0,32,2017,June,23,9,0,2,2,0.0,0,BB,IRL,Online TA,Corporate,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,130.15,0,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,April,17,28,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,36.71,0,0,Check-Out,2018-12-03 -City Hotel,0,3,2016,October,42,13,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,113.92,0,0,Check-Out,2019-12-04 -City Hotel,0,18,2017,January,4,31,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.31,0,1,Check-Out,2018-11-02 -City Hotel,1,0,2016,August,32,10,1,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,130.72,0,0,Canceled,2019-05-04 -City Hotel,0,11,2017,May,21,18,2,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.12,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,September,44,13,2,0,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,250.0,0,Transient,79.76,1,0,Check-Out,2019-08-04 -Resort Hotel,0,2,2016,October,43,18,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,250.0,179.0,0,Transient,39.22,0,0,Check-Out,2018-06-02 -Resort Hotel,0,120,2016,July,22,13,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,230.67,0,2,Check-Out,2020-03-03 -City Hotel,0,9,2016,December,37,14,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.36,0,1,Check-Out,2019-08-04 -City Hotel,0,239,2016,May,16,13,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.18,0,1,Check-Out,2019-03-04 -City Hotel,0,87,2015,July,26,17,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.99,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2015,September,43,9,1,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,H,0,No Deposit,1.0,179.0,0,Transient-Party,90.07,0,0,Check-Out,2018-05-03 -City Hotel,0,6,2016,February,8,6,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,61.36,0,2,Check-Out,2018-11-02 -Resort Hotel,1,0,2016,August,34,9,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,204.99,0,0,Canceled,2019-06-03 -Resort Hotel,0,109,2016,June,22,6,4,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient,69.64,0,1,Check-Out,2019-01-03 -Resort Hotel,0,2,2016,October,44,29,0,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,75.81,0,0,Check-Out,2019-09-03 -City Hotel,1,9,2015,October,44,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.65,0,0,Canceled,2019-05-04 -Resort Hotel,0,1,2016,October,42,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,39.22,0,0,Check-Out,2020-01-04 -Resort Hotel,0,2,2017,March,12,24,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,D,0,No Deposit,209.0,179.0,0,Transient,74.4,0,0,Check-Out,2019-02-01 -City Hotel,0,41,2016,July,33,15,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,106.44,0,2,Check-Out,2019-03-04 -Resort Hotel,0,18,2017,May,16,21,2,1,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,243.0,179.0,0,Transient,88.82,0,0,Check-Out,2020-02-01 -City Hotel,0,34,2017,April,19,18,2,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient-Party,105.85,0,0,Check-Out,2020-03-03 -City Hotel,0,18,2015,September,41,21,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,126.77,0,0,Check-Out,2018-07-03 -City Hotel,1,267,2016,September,37,4,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,8.0,179.0,0,Transient,75.0,0,0,Canceled,2019-04-03 -City Hotel,0,2,2016,May,23,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient,95.87,0,0,Check-Out,2019-03-04 -Resort Hotel,0,171,2017,May,18,28,3,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,G,I,1,No Deposit,319.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-12-04 -City Hotel,0,40,2017,May,27,28,1,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,101.43,1,1,Check-Out,2019-03-04 -City Hotel,0,59,2016,December,48,9,1,3,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,73.33,0,0,Check-Out,2018-12-03 -City Hotel,0,144,2017,August,31,10,2,5,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,D,G,0,No Deposit,15.0,179.0,0,Transient,224.72,0,3,Check-Out,2020-06-02 -City Hotel,0,3,2016,December,51,13,0,1,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,94.1,0,0,Check-Out,2019-10-04 -City Hotel,0,12,2017,August,28,21,0,2,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,125.74,0,1,Check-Out,2020-07-03 -Resort Hotel,0,106,2017,February,11,20,2,1,1,1.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,71.71,0,0,Check-Out,2020-01-04 -Resort Hotel,1,182,2017,September,10,30,2,1,2,0.0,0,FB,PRT,Direct,Direct,1,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,78.18,0,0,Canceled,2019-11-03 -Resort Hotel,0,142,2016,March,19,31,1,5,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,14.0,223.0,0,Transient-Party,38.39,1,0,Check-Out,2019-02-01 -City Hotel,1,106,2015,November,45,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,72.78,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,June,25,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,212.0,0,Transient,36.66,0,0,Check-Out,2019-04-03 -City Hotel,0,155,2015,September,38,16,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,123.67,0,1,Check-Out,2018-08-03 -City Hotel,0,2,2015,October,44,6,0,2,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,11.0,179.0,0,Group,94.64,0,1,Check-Out,2018-08-03 -Resort Hotel,0,36,2015,December,50,6,0,3,2,0.0,0,HB,AUT,Groups,Direct,0,0,0,D,D,2,No Deposit,248.0,179.0,0,Transient-Party,41.43,0,1,Check-Out,2018-07-03 -Resort Hotel,1,245,2015,September,29,5,1,2,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,C,D,0,No Deposit,240.0,179.0,0,Transient-Party,80.16,0,0,Canceled,2018-06-02 -Resort Hotel,0,138,2017,June,26,7,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient,164.14,0,1,Check-Out,2020-03-03 -City Hotel,1,41,2017,April,17,17,1,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,171.0,179.0,0,Transient,137.22,0,0,Canceled,2020-01-04 -City Hotel,0,42,2015,September,43,14,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,97.07,0,0,Check-Out,2018-06-02 -City Hotel,0,11,2016,August,38,6,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.56,0,2,Check-Out,2019-06-03 -City Hotel,1,371,2017,May,38,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,117.48,0,0,Canceled,2019-12-04 -City Hotel,0,48,2016,December,53,6,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,105.67,0,3,Check-Out,2019-11-03 -Resort Hotel,0,23,2016,December,52,4,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,I,2,No Deposit,245.0,179.0,0,Transient,1.47,1,3,Check-Out,2019-08-04 -Resort Hotel,1,328,2017,March,17,31,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,40.23,0,0,Canceled,2020-04-02 -Resort Hotel,1,198,2015,July,34,19,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,187.0,179.0,0,Transient,195.83,0,0,Canceled,2018-06-02 -City Hotel,1,52,2017,August,36,15,2,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.08,0,2,Canceled,2020-03-03 -City Hotel,0,186,2017,June,24,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,12.0,179.0,0,Transient,112.59,0,2,Check-Out,2020-06-02 -City Hotel,0,1,2015,November,50,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,231.0,0,Transient,59.94,1,0,Check-Out,2019-11-03 -City Hotel,1,114,2016,September,43,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,29.0,179.0,0,Transient,127.81,0,0,Canceled,2018-10-03 -City Hotel,1,43,2017,April,16,30,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,128.62,0,0,Canceled,2020-01-04 -City Hotel,0,75,2017,May,19,22,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,103.85,0,2,Check-Out,2020-04-02 -City Hotel,0,1,2016,June,41,29,1,0,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,0,No Deposit,12.0,45.0,0,Transient,0.0,1,1,Check-Out,2019-06-03 -City Hotel,0,88,2015,July,33,27,2,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,D,D,2,No Deposit,12.0,179.0,0,Group,127.22,0,0,Check-Out,2020-05-03 -Resort Hotel,0,54,2016,June,27,23,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,173.6,1,2,Check-Out,2019-05-04 -City Hotel,0,230,2016,July,25,5,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,91.59,0,1,Check-Out,2019-05-04 -Resort Hotel,1,240,2017,July,38,2,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,239.0,179.0,0,Transient,196.75,1,2,Canceled,2019-05-04 -City Hotel,0,42,2017,May,10,29,0,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,158.78,0,0,Check-Out,2019-12-04 -City Hotel,1,154,2017,August,31,24,0,1,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,F,D,0,No Deposit,12.0,179.0,0,Transient,93.58,0,0,Canceled,2019-12-04 -City Hotel,0,0,2017,May,22,19,1,2,3,0.0,0,BB,BRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,164.25,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,March,18,15,2,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,110.13,0,0,Check-Out,2019-01-03 -City Hotel,0,101,2017,June,15,13,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,106.75,0,0,Check-Out,2020-02-01 -Resort Hotel,0,391,2017,August,36,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient-Party,129.91,0,0,Check-Out,2020-07-03 -Resort Hotel,0,22,2017,April,15,6,2,4,2,0.0,0,HB,USA,Direct,Direct,1,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,67.55,0,3,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,March,10,30,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient,76.38,0,0,Check-Out,2019-04-03 -City Hotel,1,176,2016,October,44,2,1,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,B,2,No Deposit,9.0,179.0,0,Transient,98.6,0,0,No-Show,2019-10-04 -Resort Hotel,1,14,2017,June,27,28,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,113.24,0,1,Canceled,2020-02-01 -City Hotel,0,0,2016,February,12,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,70.0,0,Transient,61.03,0,0,Canceled,2018-12-03 -City Hotel,0,39,2016,September,41,18,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.22,0,1,Check-Out,2019-08-04 -City Hotel,0,320,2016,September,36,8,0,1,2,0.0,0,BB,GBR,Direct,GDS,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,108.47,0,0,Check-Out,2019-07-04 -City Hotel,1,12,2016,March,18,29,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,64.24,0,1,Canceled,2019-02-01 -Resort Hotel,0,48,2016,August,37,20,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,107.96,0,0,Check-Out,2019-03-04 -City Hotel,0,11,2016,December,50,13,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,1,No Deposit,15.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -City Hotel,0,29,2017,March,22,29,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,63.94,0,0,Check-Out,2020-03-03 -Resort Hotel,0,15,2016,May,23,16,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,249.0,179.0,0,Transient,122.78,0,0,Check-Out,2019-02-01 -City Hotel,1,46,2015,October,44,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.55,0,0,Canceled,2017-10-03 -Resort Hotel,0,28,2016,August,39,21,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient-Party,160.81,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,October,41,21,0,1,1,0.0,0,BB,POL,Complementary,Corporate,1,0,0,A,I,3,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-04-03 -Resort Hotel,0,162,2017,August,37,26,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,144.87,0,3,Canceled,2020-07-03 -City Hotel,1,371,2016,December,38,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.3,0,0,Canceled,2019-11-03 -City Hotel,0,80,2016,December,53,30,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,128.04,0,1,Check-Out,2019-06-03 -City Hotel,0,7,2016,September,28,18,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,E,E,1,No Deposit,16.0,191.0,0,Transient,114.68,1,0,Check-Out,2019-06-03 -City Hotel,0,37,2017,March,17,16,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.44,0,1,Check-Out,2020-04-02 -City Hotel,1,134,2016,July,27,22,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.59,0,0,Canceled,2019-02-01 -Resort Hotel,1,51,2015,October,51,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,142.85,0,0,No-Show,2018-08-03 -City Hotel,1,11,2016,June,33,23,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,60.92,0,0,Canceled,2019-06-03 -Resort Hotel,1,120,2016,August,16,24,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,169.0,179.0,0,Transient,64.05,0,0,Canceled,2018-09-02 -City Hotel,0,13,2016,October,44,13,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,106.01,0,1,Check-Out,2019-08-04 -City Hotel,0,234,2017,April,11,24,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,142.82,0,1,Check-Out,2020-04-02 -Resort Hotel,1,239,2015,August,41,16,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,171.36,0,2,Canceled,2018-06-02 -City Hotel,0,19,2016,February,10,21,1,3,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,62.56,1,1,Check-Out,2019-10-04 -City Hotel,1,392,2016,June,25,2,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,17,Transient,59.86,0,0,Canceled,2019-05-04 -Resort Hotel,1,17,2017,August,37,21,2,4,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,176.78,0,1,Canceled,2020-06-02 -City Hotel,0,42,2016,January,5,24,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-11-02 -Resort Hotel,1,109,2015,December,50,17,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Transient-Party,66.87,0,0,Canceled,2018-07-03 -City Hotel,0,372,2017,May,36,27,1,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,86.0,179.0,0,Transient-Party,59.77,0,0,Check-Out,2020-06-02 -City Hotel,0,46,2015,December,53,6,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.82,0,2,Check-Out,2019-09-03 -City Hotel,0,1,2016,January,31,4,0,1,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient,179.19,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2017,January,8,5,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,96.91,0,0,Check-Out,2019-03-04 -City Hotel,0,11,2017,May,26,8,0,1,1,0.0,0,BB,BEL,Direct,GDS,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,169.49,1,1,Check-Out,2020-06-02 -Resort Hotel,1,107,2016,September,45,27,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,113.01,0,1,No-Show,2020-01-04 -City Hotel,1,1,2016,August,37,13,0,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,137.16,0,2,Check-Out,2019-10-04 -Resort Hotel,0,31,2016,February,8,23,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient-Party,166.17,1,0,Check-Out,2019-02-01 -Resort Hotel,0,120,2016,September,43,22,2,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,E,3,No Deposit,11.0,179.0,0,Transient,202.66,1,2,Check-Out,2019-07-04 -City Hotel,1,2,2015,August,36,10,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,K,0,No Deposit,157.0,179.0,0,Transient,0.0,0,0,Canceled,2018-05-03 -City Hotel,1,32,2016,June,26,8,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,146.19,0,0,No-Show,2019-02-01 -City Hotel,1,34,2015,September,41,20,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.9,0,0,Canceled,2017-11-02 -City Hotel,0,13,2016,March,18,10,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,45.91,0,0,Check-Out,2019-02-01 -Resort Hotel,1,310,2016,July,22,27,2,5,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,76.26,0,0,Canceled,2018-05-03 -City Hotel,0,99,2016,September,43,27,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,105.74,0,2,Check-Out,2019-08-04 -City Hotel,1,0,2016,January,10,9,0,3,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,102.7,0,0,No-Show,2018-12-03 -City Hotel,0,132,2017,April,17,29,2,3,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,E,E,0,No Deposit,177.0,65.0,0,Transient-Party,98.64,0,0,Check-Out,2020-05-03 -City Hotel,0,44,2016,May,21,30,0,4,3,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,10.0,179.0,0,Transient,209.65,0,1,Check-Out,2019-05-04 -City Hotel,0,50,2016,January,5,27,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,342.0,179.0,0,Transient-Party,59.39,0,0,Check-Out,2019-10-04 -City Hotel,0,4,2016,May,26,8,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,61,Transient-Party,85.59,0,0,Check-Out,2019-03-04 -City Hotel,0,92,2017,March,11,15,2,5,2,0.0,0,HB,USA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,142.36,0,3,Canceled,2020-01-04 -Resort Hotel,0,15,2017,February,9,26,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,94.0,331.0,0,Transient,27.94,0,0,Check-Out,2020-03-03 -City Hotel,1,34,2015,August,38,20,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,139.1,0,2,No-Show,2018-09-02 -City Hotel,1,273,2015,February,12,28,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,41.38,0,0,Canceled,2018-12-03 -City Hotel,0,59,2017,July,32,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,10.0,179.0,0,Transient-Party,107.74,0,1,Check-Out,2020-06-02 -City Hotel,1,29,2017,May,23,5,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.88,0,1,Canceled,2020-02-01 -Resort Hotel,0,323,2017,April,21,25,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,74.72,0,1,Check-Out,2020-05-03 -City Hotel,0,2,2015,October,40,21,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,62.61,0,0,Check-Out,2018-07-03 -City Hotel,1,298,2015,August,35,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,131.5,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,March,53,31,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,79.71,0,2,Check-Out,2019-11-03 -City Hotel,1,29,2015,October,43,17,0,2,1,0.0,0,BB,SWE,Undefined,TA/TO,1,0,0,A,B,0,No Deposit,11.0,246.0,0,Transient,61.58,0,2,Canceled,2019-11-03 -City Hotel,1,104,2017,January,2,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.6,0,0,Canceled,2018-12-03 -City Hotel,1,120,2015,July,35,30,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,15.0,179.0,0,Transient,219.45,0,0,Canceled,2018-06-02 -City Hotel,0,1,2017,March,17,25,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,107.7,0,1,Check-Out,2020-03-03 -City Hotel,1,267,2016,March,9,10,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,67.07,0,0,Canceled,2018-11-02 -City Hotel,1,373,2017,May,22,13,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,296.0,179.0,0,Transient-Party,161.4,0,0,Canceled,2020-02-01 -Resort Hotel,0,103,2017,August,41,31,3,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-07-03 -City Hotel,1,94,2016,February,9,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.72,0,0,Canceled,2018-12-03 -City Hotel,0,0,2017,February,7,15,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,0,A,F,1,No Deposit,9.0,70.0,0,Transient-Party,0.77,0,0,Check-Out,2019-12-04 -City Hotel,0,241,2016,July,25,17,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,81.67,0,1,Check-Out,2019-06-03 -City Hotel,0,303,2016,October,40,16,4,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,34.0,179.0,0,Contract,67.35,0,0,Check-Out,2019-08-04 -City Hotel,0,44,2017,February,9,20,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,251.45,1,1,Check-Out,2020-04-02 -City Hotel,0,0,2016,March,16,10,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,7.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -Resort Hotel,0,255,2017,August,32,20,2,7,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,231.66,1,0,Check-Out,2020-07-03 -City Hotel,0,1,2016,April,21,8,0,1,1,0.0,0,BB,ESP,Complementary,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,100.31,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,February,9,6,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,38.14,0,1,Check-Out,2018-10-03 -City Hotel,1,38,2015,December,52,30,2,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient-Party,98.39,0,0,Canceled,2018-11-02 -City Hotel,1,8,2017,February,10,15,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.64,0,0,Canceled,2019-09-03 -City Hotel,0,103,2016,May,32,28,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,62.71,0,0,Check-Out,2020-06-02 -Resort Hotel,0,33,2016,November,53,28,1,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,75.54,0,0,Check-Out,2019-07-04 -City Hotel,0,83,2016,December,51,1,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient-Party,57.09,0,0,Check-Out,2019-12-04 -City Hotel,0,132,2016,March,8,7,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,137.0,179.0,0,Transient,89.45,0,0,Canceled,2019-01-03 -Resort Hotel,0,202,2016,April,15,6,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,71.66,0,1,Check-Out,2019-06-03 -City Hotel,0,1,2017,August,9,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,202.73,1,2,Check-Out,2020-07-03 -City Hotel,0,200,2016,October,47,27,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,13.0,179.0,63,Transient,70.6,0,3,Check-Out,2019-08-04 -City Hotel,1,3,2015,August,36,27,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,35.27,0,0,No-Show,2019-01-03 -City Hotel,0,152,2017,June,26,3,0,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,99.95,0,1,Check-Out,2019-12-04 -City Hotel,0,47,2016,March,8,20,2,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,179.0,0,Transient,65.08,0,0,Check-Out,2019-03-04 -Resort Hotel,1,268,2017,May,17,16,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,75,Transient,75.4,0,0,Canceled,2020-03-03 -City Hotel,0,18,2016,August,37,16,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,156.53,0,2,Check-Out,2019-06-03 -Resort Hotel,1,112,2016,December,16,21,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,157.0,179.0,0,Transient,48.08,0,0,Canceled,2019-11-03 -City Hotel,0,157,2016,July,33,15,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,140.37,0,2,Check-Out,2019-05-04 -City Hotel,1,395,2017,May,22,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,75.01,0,0,Canceled,2020-02-01 -Resort Hotel,0,14,2016,August,14,4,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,242.0,179.0,0,Transient,189.33,0,0,Canceled,2019-02-01 -City Hotel,0,2,2017,March,12,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,65.03,0,1,Check-Out,2020-02-01 -Resort Hotel,1,108,2017,July,33,10,2,5,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,244.0,179.0,0,Transient,173.43,0,2,Canceled,2020-02-01 -City Hotel,1,152,2016,September,32,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,39,Transient,106.72,0,0,Canceled,2019-07-04 -City Hotel,1,31,2017,May,23,24,1,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,G,F,0,No Deposit,14.0,179.0,0,Transient,132.03,0,3,Canceled,2019-12-04 -City Hotel,1,0,2016,February,10,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,298.0,179.0,0,Transient,65.25,0,0,No-Show,2018-12-03 -City Hotel,0,2,2017,April,21,20,0,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,98.18,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2015,August,38,10,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,183.67,0,0,Check-Out,2018-07-03 -Resort Hotel,1,101,2016,December,53,29,1,2,1,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,E,A,0,Non Refund,307.0,179.0,0,Transient,74.72,0,0,Canceled,2019-01-03 -Resort Hotel,1,1,2016,January,4,3,1,1,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,79.2,0,2,No-Show,2018-11-02 -City Hotel,1,41,2017,August,27,9,0,1,1,0.0,0,SC,ESP,Undefined,TA/TO,0,0,0,B,A,0,No Deposit,13.0,179.0,0,Transient-Party,79.31,0,0,Canceled,2020-07-03 -City Hotel,0,10,2016,October,46,21,0,3,3,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,331.0,0,Group,101.51,0,0,Check-Out,2019-10-04 -City Hotel,0,151,2017,October,37,12,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,168.26,0,1,Check-Out,2019-09-03 -City Hotel,1,19,2017,December,23,19,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,80.0,0,Transient,77.06,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2015,December,51,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,C,0,No Deposit,17.0,249.0,0,Transient-Party,26.78,0,0,Check-Out,2019-01-03 -City Hotel,0,102,2016,June,41,17,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,1,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-06-03 -City Hotel,1,99,2015,October,43,12,2,5,2,0.0,0,BB,ITA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.87,0,0,Canceled,2018-07-03 -Resort Hotel,0,77,2016,July,30,7,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient,172.5,1,2,Check-Out,2019-05-04 -City Hotel,1,198,2016,April,18,10,2,5,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,100.48,0,0,Canceled,2019-07-04 -City Hotel,0,273,2017,July,32,21,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,216.94,0,2,Check-Out,2020-05-03 -City Hotel,0,36,2017,January,9,6,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,65.42,0,1,Check-Out,2020-02-01 -Resort Hotel,1,86,2017,February,10,19,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,72.48,0,0,Canceled,2020-03-03 -City Hotel,1,143,2017,August,37,21,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,175.58,0,0,Canceled,2019-11-03 -Resort Hotel,0,10,2015,October,45,28,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,61.6,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2017,February,11,28,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,37.62,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2015,October,43,30,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,156.46,0,0,Check-Out,2018-08-03 -Resort Hotel,1,249,2016,June,27,2,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,9.0,179.0,0,Transient,179.33,0,1,Canceled,2019-04-03 -City Hotel,1,295,2016,August,35,27,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,210.34,0,0,Canceled,2019-04-03 -City Hotel,1,23,2016,February,10,15,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.43,0,1,Canceled,2019-05-04 -City Hotel,1,301,2017,July,35,29,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.56,0,1,Canceled,2020-04-02 -Resort Hotel,0,110,2016,April,50,15,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,3,No Deposit,249.0,179.0,0,Transient,47.29,0,0,Check-Out,2018-12-03 -City Hotel,1,95,2015,July,32,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,80.08,0,0,Canceled,2017-12-03 -City Hotel,0,2,2016,January,3,2,0,2,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,65.59,0,1,Check-Out,2018-12-03 -Resort Hotel,0,123,2015,December,53,6,0,5,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient-Party,35.23,0,0,Check-Out,2018-09-02 -City Hotel,0,360,2017,June,23,31,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.57,0,0,Check-Out,2020-04-02 -City Hotel,1,246,2016,July,32,12,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient,106.78,0,0,Canceled,2019-04-03 -City Hotel,0,17,2017,January,3,21,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,189.0,45.0,0,Transient,0.0,0,0,Check-Out,2020-06-02 -City Hotel,1,0,2016,December,50,5,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,2019-09-03 -City Hotel,1,81,2015,July,33,29,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.56,0,2,Canceled,2019-08-04 -Resort Hotel,0,246,2016,May,21,24,2,5,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,74.96,0,0,Check-Out,2018-12-03 -City Hotel,0,16,2016,June,22,9,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,7.0,179.0,0,Transient,216.7,0,1,Check-Out,2019-07-04 -City Hotel,1,298,2015,July,38,23,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.11,0,0,Canceled,2018-05-03 -Resort Hotel,0,20,2017,April,12,24,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,60.32,0,0,Check-Out,2020-03-03 -City Hotel,1,41,2017,March,9,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient,73.97,0,1,Canceled,2019-10-04 -City Hotel,0,249,2016,October,43,11,1,2,2,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,65.51,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2016,September,43,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,123.75,0,0,Check-Out,2019-06-03 -City Hotel,0,96,2016,September,37,23,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -City Hotel,0,53,2017,May,21,5,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.74,0,0,Check-Out,2020-03-03 -City Hotel,0,22,2015,October,32,2,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,105.44,0,0,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,November,51,15,0,2,2,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,E,2,No Deposit,11.0,179.0,75,Transient-Party,158.21,1,3,Check-Out,2019-08-04 -City Hotel,1,251,2016,July,26,9,0,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,181.0,179.0,0,Transient,158.93,0,2,Canceled,2020-05-03 -City Hotel,0,31,2016,December,53,28,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,97.17,0,0,Check-Out,2019-10-04 -Resort Hotel,0,12,2016,October,44,27,1,2,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,188.11,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2016,August,46,28,1,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,2.75,0,0,Canceled,2019-06-03 -City Hotel,1,8,2016,May,23,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.45,0,0,Canceled,2019-05-04 -City Hotel,1,320,2016,May,37,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,17,Transient,62.35,0,0,Canceled,2017-11-02 -City Hotel,1,267,2016,October,44,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,157.81,0,0,Canceled,2019-09-03 -Resort Hotel,0,1,2016,August,44,31,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,243.0,179.0,0,Transient,41.79,1,0,Check-Out,2019-08-04 -Resort Hotel,0,14,2015,September,44,22,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Contract,60.11,0,2,Check-Out,2018-09-02 -City Hotel,0,59,2017,June,43,16,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.24,0,1,Canceled,2020-06-02 -City Hotel,0,24,2016,October,42,14,0,4,3,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,73.78,0,0,Check-Out,2018-09-02 -City Hotel,0,149,2017,June,21,24,4,10,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,30.0,179.0,0,Transient-Party,127.81,0,0,Check-Out,2020-07-03 -Resort Hotel,0,43,2016,January,21,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,82.34,1,1,Check-Out,2019-04-03 -Resort Hotel,1,126,2016,August,37,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Group,118.69,0,1,Canceled,2019-06-03 -City Hotel,0,150,2016,June,29,23,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient,97.7,1,0,Check-Out,2019-07-04 -City Hotel,0,18,2015,September,48,28,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.93,0,0,Check-Out,2018-07-03 -City Hotel,1,285,2015,July,34,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,59.06,0,0,Canceled,2017-10-03 -Resort Hotel,0,106,2016,March,11,28,2,3,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,141.0,179.0,0,Transient,43.38,0,0,Check-Out,2018-12-03 -City Hotel,1,275,2017,July,32,24,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Non Refund,242.0,179.0,0,Transient,162.98,0,0,Canceled,2020-02-01 -City Hotel,1,45,2015,September,41,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.63,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,February,10,18,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,70.17,1,0,Check-Out,2018-12-03 -Resort Hotel,0,105,2017,August,33,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,188.2,1,2,Check-Out,2020-07-03 -City Hotel,1,293,2016,June,37,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.0,0,0,Canceled,2017-11-02 -City Hotel,0,84,2017,May,24,14,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,101.0,0,1,Check-Out,2020-04-02 -City Hotel,1,16,2015,December,45,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,227.0,0,Transient,70.67,0,0,Canceled,2019-09-03 -City Hotel,0,29,2016,December,44,22,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,75,Transient,104.01,0,1,Check-Out,2019-03-04 -Resort Hotel,0,38,2016,December,53,21,2,2,2,0.0,0,Undefined,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,44.3,0,1,Check-Out,2019-01-03 -City Hotel,0,151,2017,August,36,10,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,98.16,0,1,Check-Out,2019-12-04 -City Hotel,1,36,2017,July,9,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,79.93,0,0,Canceled,2019-12-04 -Resort Hotel,0,2,2016,March,10,10,0,2,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,H,D,0,Non Refund,246.0,179.0,0,Transient,43.78,0,0,Check-Out,2018-11-02 -Resort Hotel,0,33,2016,June,16,10,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,168.0,179.0,0,Transient,122.29,0,0,Check-Out,2019-04-03 -Resort Hotel,0,2,2015,August,36,7,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,117.65,1,0,Check-Out,2018-05-03 -Resort Hotel,0,268,2016,October,42,16,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,224.0,0,Transient-Party,38.25,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2017,April,25,16,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.42,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,October,43,22,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,1,105,2016,August,28,10,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,E,E,0,No Deposit,14.0,67.0,0,Transient,64.51,0,0,Canceled,2019-06-03 -City Hotel,0,46,2016,November,50,27,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,112.65,1,3,Check-Out,2019-07-04 -City Hotel,0,50,2016,October,40,26,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.92,0,2,Check-Out,2019-08-04 -Resort Hotel,1,49,2016,February,11,2,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,200.04,0,0,Canceled,2019-04-03 -City Hotel,1,57,2017,June,43,2,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,124.34,0,3,Canceled,2019-12-04 -City Hotel,0,103,2017,April,18,28,1,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.39,0,0,Check-Out,2020-05-03 -Resort Hotel,0,1,2017,June,25,19,1,0,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,G,0,No Deposit,17.0,179.0,0,Group,112.76,1,0,Check-Out,2020-06-02 -City Hotel,1,341,2015,August,38,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.52,0,0,Canceled,2018-05-03 -City Hotel,0,44,2017,April,17,18,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.47,0,2,Check-Out,2020-03-03 -City Hotel,0,54,2017,June,24,24,0,4,1,0.0,0,BB,,Direct,Direct,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,121.22,0,3,Check-Out,2020-04-02 -City Hotel,0,49,2016,October,38,13,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,169.29,0,2,Check-Out,2019-09-03 -Resort Hotel,0,16,2017,July,27,18,2,5,2,1.0,0,HB,NOR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-05-03 -City Hotel,0,48,2017,March,18,7,2,0,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,60.17,0,0,Check-Out,2020-02-01 -City Hotel,1,426,2017,August,35,19,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,126.18,0,0,Canceled,2020-07-03 -City Hotel,1,160,2016,January,10,27,1,1,2,2.0,0,BB,,Online TA,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,114.69,0,0,Canceled,2018-10-03 -Resort Hotel,0,24,2016,March,12,16,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient,63.75,0,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2015,October,42,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,222.0,0,Transient,33.97,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2017,June,25,30,0,3,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,15.0,61.0,0,Transient,80.78,0,0,Check-Out,2020-06-02 -Resort Hotel,1,55,2017,December,52,6,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient,87.06,0,0,Canceled,2019-10-04 -City Hotel,0,115,2017,August,35,13,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.17,0,1,Check-Out,2020-07-03 -City Hotel,0,144,2016,May,24,9,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,165.0,179.0,0,Transient,97.67,0,0,Check-Out,2019-02-01 -City Hotel,0,39,2017,April,17,28,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,93.18,0,1,Check-Out,2020-03-03 -City Hotel,1,260,2016,October,46,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.66,0,0,Canceled,2019-03-04 -Resort Hotel,1,32,2016,July,25,30,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,129.26,0,0,No-Show,2019-03-04 -City Hotel,0,10,2016,December,50,28,1,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,82.5,0,0,Check-Out,2018-11-02 -City Hotel,1,232,2016,December,53,29,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,6.0,179.0,0,Transient,101.6,0,2,Canceled,2019-11-03 -Resort Hotel,0,40,2016,November,43,25,4,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,111.78,1,1,Check-Out,2019-09-03 -City Hotel,1,5,2016,August,32,7,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,109.75,0,1,Canceled,2019-05-04 -Resort Hotel,0,7,2016,October,43,21,0,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,184.0,179.0,0,Transient,85.74,0,0,Check-Out,2019-07-04 -City Hotel,1,257,2015,September,35,15,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,A,E,0,No Deposit,1.0,179.0,0,Transient,93.67,0,0,Canceled,2018-08-03 -City Hotel,1,9,2016,August,34,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.51,0,1,No-Show,2019-06-03 -City Hotel,0,210,2016,August,38,21,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,B,F,0,No Deposit,14.0,179.0,0,Transient,129.77,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,December,53,6,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -Resort Hotel,1,16,2016,August,39,2,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,96.61,0,0,Canceled,2018-06-02 -City Hotel,1,32,2017,July,32,27,1,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,96.66,0,0,Canceled,2019-11-03 -City Hotel,1,1,2017,February,10,26,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,Non Refund,12.0,88.0,0,Transient,61.22,0,0,Canceled,2019-11-03 -Resort Hotel,0,23,2015,August,29,8,0,1,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,124.11,0,3,Check-Out,2018-04-02 -City Hotel,0,2,2015,November,42,18,0,3,2,0.0,0,HB,,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,103.27,0,2,Check-Out,2018-07-03 -City Hotel,0,23,2017,April,18,6,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.79,0,1,Check-Out,2020-02-01 -City Hotel,1,265,2015,August,32,20,2,3,1,0.0,0,BB,PRT,Direct,Corporate,0,1,0,E,E,1,No Deposit,12.0,179.0,0,Transient,116.65,0,0,Canceled,2019-06-03 -Resort Hotel,1,13,2016,June,31,27,2,1,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,E,0,No Deposit,297.0,179.0,0,Transient-Party,123.69,1,1,Canceled,2019-05-04 -City Hotel,1,1,2015,August,35,27,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,1,0,A,D,0,Non Refund,13.0,179.0,0,Transient,112.25,0,0,Canceled,2017-11-02 -City Hotel,0,1,2017,May,9,13,0,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.26,0,1,Check-Out,2020-06-02 -City Hotel,1,235,2015,April,36,27,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,63,Transient,96.82,0,0,Canceled,2018-08-03 -Resort Hotel,0,159,2017,March,18,5,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,3,No Deposit,378.0,179.0,0,Transient-Party,70.09,0,1,Check-Out,2020-04-02 -City Hotel,1,158,2016,October,44,17,1,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,62,Transient,85.57,0,0,Canceled,2018-08-03 -City Hotel,1,12,2016,March,9,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,0,No Deposit,13.0,179.0,0,Transient,68.98,0,0,Canceled,2018-10-03 -Resort Hotel,0,0,2016,April,10,20,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,C,H,0,No Deposit,318.0,179.0,0,Transient,72.06,1,0,Check-Out,2019-04-03 -City Hotel,1,0,2016,January,3,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.37,0,0,No-Show,2018-11-02 -Resort Hotel,0,2,2016,March,17,28,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,19.0,179.0,0,Transient,50.38,1,0,Check-Out,2019-01-03 -City Hotel,0,38,2017,July,32,21,2,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,203.3,0,1,Canceled,2020-06-02 -Resort Hotel,1,101,2017,December,53,21,2,4,2,1.0,0,BB,DEU,Groups,TA/TO,0,0,0,E,E,2,Non Refund,194.0,179.0,0,Transient,101.14,0,0,Canceled,2019-11-03 -City Hotel,1,12,2016,July,28,12,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,75.53,0,0,Canceled,2019-05-04 -Resort Hotel,0,247,2016,March,17,31,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,223.0,0,Transient-Party,63.64,0,0,Check-Out,2019-02-01 -Resort Hotel,0,10,2016,March,18,31,0,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,B,2,Refundable,12.0,223.0,0,Transient-Party,76.61,0,0,Check-Out,2019-06-03 -City Hotel,1,141,2016,June,28,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,152.0,179.0,0,Transient,80.65,0,0,Canceled,2019-04-03 -Resort Hotel,0,1,2015,November,44,17,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,64.0,0,0,Check-Out,2018-08-03 -Resort Hotel,0,239,2016,June,23,31,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,Refundable,18.0,223.0,0,Transient-Party,119.39,1,0,Check-Out,2019-05-04 -City Hotel,0,18,2017,March,10,30,0,1,2,0.0,0,BB,ISR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,212.0,0,Transient,102.39,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2016,May,15,25,2,1,2,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,94.87,1,0,Check-Out,2019-02-01 -Resort Hotel,0,17,2016,May,36,13,1,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,C,0,No Deposit,100.0,179.0,0,Transient,185.69,0,0,Check-Out,2020-07-03 -City Hotel,1,426,2015,December,53,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,0,Contract,123.83,0,0,Canceled,2017-12-03 -Resort Hotel,0,2,2016,March,49,5,2,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,347.0,179.0,0,Transient,36.28,0,1,Check-Out,2018-11-02 -City Hotel,1,104,2017,August,37,16,2,5,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,135.05,0,2,Canceled,2020-07-03 -Resort Hotel,0,2,2017,February,10,5,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,37.33,0,0,Check-Out,2020-06-02 -City Hotel,1,248,2016,July,33,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,96.51,0,2,Canceled,2019-03-04 -City Hotel,1,105,2017,June,25,27,2,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,175.25,0,0,Canceled,2020-03-03 -City Hotel,1,266,2017,March,11,15,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.93,0,0,Canceled,2019-10-04 -Resort Hotel,0,35,2016,March,16,30,2,5,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,D,D,1,No Deposit,15.0,64.0,0,Transient,65.42,0,0,Check-Out,2019-02-01 -Resort Hotel,0,150,2017,August,36,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,215.58,0,1,Check-Out,2020-06-02 -Resort Hotel,0,246,2016,March,17,21,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,222.0,0,Transient-Party,73.32,0,0,Check-Out,2019-06-03 -City Hotel,1,1,2016,June,24,10,0,1,1,0.0,0,BB,PRT,Corporate,GDS,0,1,0,A,A,0,Non Refund,181.0,179.0,0,Transient,76.05,0,0,Canceled,2019-03-04 -Resort Hotel,0,157,2016,March,7,25,2,10,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,60.11,0,0,Canceled,2018-11-02 -City Hotel,1,81,2017,June,20,16,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.03,0,0,Canceled,2020-03-03 -City Hotel,0,11,2016,June,27,17,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,88.2,0,0,Check-Out,2019-08-04 -City Hotel,0,86,2015,December,51,6,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,62.03,0,3,Check-Out,2018-11-02 -City Hotel,1,6,2016,May,20,19,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,122.6,0,0,No-Show,2019-03-04 -Resort Hotel,0,154,2017,May,35,9,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-10-04 -City Hotel,1,56,2017,May,11,29,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,88.42,0,0,Canceled,2020-03-03 -City Hotel,0,47,2016,March,12,17,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,117.31,0,3,Check-Out,2019-02-01 -City Hotel,0,242,2015,September,40,12,0,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,76.0,179.0,0,Transient-Party,68.07,0,0,Check-Out,2018-08-03 -Resort Hotel,0,29,2016,July,28,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,150.0,179.0,0,Transient,61.6,0,0,Check-Out,2018-06-02 -City Hotel,0,42,2015,July,33,24,2,2,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient-Party,153.93,0,1,Check-Out,2018-06-02 -Resort Hotel,0,254,2016,October,37,24,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,43.74,0,3,Check-Out,2019-09-03 -City Hotel,1,258,2015,August,33,15,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,170.74,0,3,Canceled,2018-06-02 -Resort Hotel,0,0,2016,December,4,20,2,0,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,302.0,179.0,0,Transient-Party,73.31,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2016,March,35,6,2,0,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,85.87,0,3,Check-Out,2019-02-01 -City Hotel,1,12,2015,December,37,12,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,121.03,0,0,No-Show,2018-11-02 -City Hotel,0,64,2015,November,52,27,0,1,2,0.0,0,BB,FRA,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,90.57,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,February,11,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,36.93,0,1,Check-Out,2018-11-02 -City Hotel,1,15,2016,June,26,3,2,4,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,72.0,179.0,0,Transient,104.93,0,0,Canceled,2019-04-03 -City Hotel,0,34,2016,December,53,30,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,248.0,179.0,0,Transient,81.01,0,0,Check-Out,2019-09-03 -City Hotel,0,202,2016,May,34,24,1,10,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,78.91,0,0,Check-Out,2019-06-03 -City Hotel,1,0,2016,March,11,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,41,Transient,68.17,0,0,Canceled,2018-12-03 -Resort Hotel,0,3,2015,December,53,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,44.62,0,2,Check-Out,2018-11-02 -City Hotel,0,114,2016,September,46,25,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,105.88,0,2,Check-Out,2019-08-04 -Resort Hotel,1,85,2016,October,42,25,2,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,Non Refund,244.0,179.0,0,Transient,37.38,0,2,No-Show,2019-06-03 -City Hotel,1,17,2016,July,10,28,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,191.9,0,0,Canceled,2018-11-02 -City Hotel,0,36,2016,March,9,20,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,96.0,179.0,58,Transient-Party,68.92,0,0,Check-Out,2019-01-03 -City Hotel,0,53,2015,September,41,12,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.75,0,0,Check-Out,2018-08-03 -Resort Hotel,0,252,2016,October,42,21,1,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,75.9,1,1,Check-Out,2019-07-04 -City Hotel,0,10,2015,December,53,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,95.57,0,0,Check-Out,2018-10-03 -City Hotel,1,103,2016,December,52,27,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.06,0,0,Canceled,2019-11-03 -City Hotel,1,45,2017,January,9,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,44,Transient,61.39,0,0,Canceled,2019-09-03 -Resort Hotel,1,343,2016,December,17,30,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,63.13,0,0,Canceled,2019-02-01 -Resort Hotel,0,48,2015,September,26,20,2,5,2,1.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,72.65,0,0,Check-Out,2018-06-02 -Resort Hotel,0,94,2016,March,18,4,2,5,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,2,No Deposit,315.0,179.0,0,Transient-Party,51.91,0,0,Check-Out,2020-04-02 -City Hotel,1,378,2016,October,45,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,74.49,0,0,Canceled,2018-01-03 -City Hotel,1,305,2017,July,26,18,2,4,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Canceled,2020-02-01 -City Hotel,0,85,2017,May,23,28,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.6,0,1,Check-Out,2019-06-03 -Resort Hotel,0,105,2016,June,26,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,174.34,1,2,Check-Out,2019-05-04 -City Hotel,0,39,2016,October,45,28,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.6,0,1,Check-Out,2019-07-04 -City Hotel,1,12,2017,September,22,5,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,12.0,179.0,0,Transient,152.42,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,February,11,27,1,0,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,82.06,0,0,Check-Out,2019-03-04 -City Hotel,0,276,2016,June,30,15,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,78.26,0,0,Check-Out,2019-05-04 -City Hotel,0,16,2016,December,41,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,12.0,231.0,0,Transient,87.53,1,0,Check-Out,2019-07-04 -Resort Hotel,1,105,2017,May,22,29,2,5,2,0.0,0,BB,IRL,Online TA,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,122.82,0,2,No-Show,2020-05-03 -City Hotel,1,264,2016,October,45,29,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,61.21,0,0,Canceled,2018-08-03 -Resort Hotel,0,57,2015,September,37,30,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,248.0,179.0,0,Transient,96.91,0,0,Canceled,2018-09-02 -Resort Hotel,0,17,2016,April,27,24,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,1,No Deposit,378.0,179.0,0,Transient-Party,74.4,0,0,Check-Out,2019-02-01 -City Hotel,1,58,2015,December,39,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,11.0,45.0,0,Transient,61.22,0,0,Canceled,2018-08-03 -Resort Hotel,0,34,2016,October,44,18,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,36.76,0,3,Check-Out,2019-09-03 -City Hotel,0,14,2017,June,29,18,0,2,1,0.0,0,SC,,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,87.28,0,0,Check-Out,2020-06-02 -Resort Hotel,0,134,2016,June,22,28,2,4,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,C,1,No Deposit,240.0,179.0,0,Transient,183.31,1,2,Check-Out,2019-06-03 -Resort Hotel,0,18,2017,June,22,5,0,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,184.0,179.0,0,Transient,78.48,0,0,Check-Out,2019-04-03 -City Hotel,0,92,2016,August,37,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,74.53,0,1,Check-Out,2019-09-03 -City Hotel,1,15,2017,May,23,21,1,0,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,153.22,0,1,Canceled,2020-04-02 -Resort Hotel,1,160,2015,July,50,10,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,91.0,179.0,0,Transient,99.09,0,0,Canceled,2018-08-03 -City Hotel,1,13,2016,June,17,21,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,115.11,0,2,Canceled,2019-02-01 -City Hotel,0,0,2016,February,4,13,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,80.0,0,2,Check-Out,2018-11-02 -Resort Hotel,0,1,2017,March,13,24,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,D,0,No Deposit,306.0,179.0,0,Transient,72.23,0,0,Check-Out,2020-01-04 -Resort Hotel,0,0,2015,October,42,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,I,1,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-08-03 -City Hotel,0,8,2016,July,33,2,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,139.87,0,0,Check-Out,2019-08-04 -City Hotel,0,16,2017,August,27,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,117.58,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,September,44,9,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,No Deposit,3.0,45.0,0,Transient-Party,60.12,0,0,Canceled,2018-06-02 -Resort Hotel,0,20,2016,January,3,6,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,41.32,1,0,Check-Out,2018-12-03 -City Hotel,0,102,2015,June,43,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,63,Transient-Party,125.63,0,0,Check-Out,2019-05-04 -City Hotel,0,90,2017,June,27,21,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,132.58,0,0,Check-Out,2020-05-03 -City Hotel,1,262,2015,October,44,12,2,0,1,0.0,0,BB,ITA,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,74.57,0,0,Canceled,2018-08-03 -Resort Hotel,0,105,2016,March,32,28,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,72.95,0,2,Check-Out,2019-03-04 -Resort Hotel,0,319,2016,May,21,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,B,1,Refundable,13.0,224.0,0,Transient-Party,77.69,0,0,Check-Out,2019-05-04 -City Hotel,1,114,2016,February,49,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,79.63,0,0,Canceled,2018-12-03 -City Hotel,1,57,2017,May,18,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient,148.1,0,0,Canceled,2019-09-03 -Resort Hotel,0,253,2017,June,26,18,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,92.41,0,2,Check-Out,2020-05-03 -City Hotel,1,98,2016,February,10,29,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.28,0,0,Canceled,2019-11-03 -Resort Hotel,1,247,2016,May,17,21,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,0,Refundable,33.0,222.0,0,Transient-Party,77.27,0,0,Check-Out,2019-02-01 -City Hotel,1,57,2015,December,49,20,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,70.27,0,0,Canceled,2018-06-02 -City Hotel,1,111,2017,March,16,22,2,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,130.78,0,0,Canceled,2019-12-04 -City Hotel,1,93,2016,April,9,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,35.46,0,0,Canceled,2019-10-04 -Resort Hotel,0,152,2016,October,45,28,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,123.5,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,October,42,30,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,78.06,0,0,Check-Out,2019-09-03 -City Hotel,1,1,2015,September,37,5,0,1,2,0.0,0,BB,ESP,Direct,TA/TO,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,76.39,0,0,Canceled,2018-05-03 -City Hotel,0,1,2017,May,22,16,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,G,K,1,No Deposit,14.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-03-03 -City Hotel,0,0,2017,March,12,10,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,17.0,331.0,0,Transient-Party,53.43,0,0,Check-Out,2019-10-04 -City Hotel,1,69,2017,June,28,17,0,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,150.21,0,1,Canceled,2020-04-02 -City Hotel,1,94,2016,August,33,5,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,92.19,0,1,Canceled,2018-11-02 -Resort Hotel,1,9,2015,December,53,25,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,61.05,0,0,Canceled,2018-12-03 -Resort Hotel,0,107,2016,May,33,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,113.48,0,2,Check-Out,2019-03-04 -City Hotel,0,80,2016,November,53,29,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,9.0,179.0,0,Transient,89.32,1,1,Check-Out,2019-10-04 -City Hotel,1,393,2016,October,45,18,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.11,0,0,Canceled,2019-03-04 -City Hotel,0,3,2016,May,18,9,1,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,71.49,0,0,Check-Out,2019-12-04 -City Hotel,0,85,2016,July,51,27,2,7,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,121.49,0,2,Check-Out,2019-04-03 -Resort Hotel,0,254,2016,August,37,18,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,245.0,179.0,0,Transient,174.16,1,2,Check-Out,2019-09-03 -Resort Hotel,0,85,2016,May,22,28,0,1,1,0.0,0,BB,NLD,Online TA,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,74.44,0,0,Check-Out,2019-02-01 -City Hotel,0,36,2015,October,42,24,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.97,0,0,Check-Out,2018-09-02 -City Hotel,1,356,2016,September,21,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,61.16,0,0,Canceled,2019-02-01 -City Hotel,1,317,2015,August,48,20,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,225.0,179.0,0,Transient,61.53,0,0,Canceled,2018-03-03 -Resort Hotel,0,68,2016,March,11,25,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,76.21,0,0,Check-Out,2019-12-04 -Resort Hotel,1,151,2017,July,28,5,2,6,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,F,0,Non Refund,298.0,179.0,0,Transient,126.04,0,0,Canceled,2018-11-02 -City Hotel,0,10,2016,July,36,5,0,1,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,186.86,0,1,Check-Out,2019-06-03 -City Hotel,1,43,2016,February,9,29,1,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,70.47,0,0,No-Show,2018-12-03 -City Hotel,1,409,2016,August,37,5,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.72,0,0,Canceled,2017-11-02 -City Hotel,1,38,2017,May,23,28,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,79.23,0,1,Canceled,2020-04-02 -City Hotel,0,193,2017,April,17,23,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,94.87,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,August,24,27,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,K,3,No Deposit,15.0,179.0,0,Transient,46.2,0,0,Check-Out,2020-07-03 -Resort Hotel,1,302,2016,September,44,31,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,261.0,179.0,0,Contract,73.45,0,0,Canceled,2019-07-04 -City Hotel,1,256,2017,August,28,13,2,5,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,123.87,0,1,Canceled,2020-02-01 -City Hotel,1,1,2015,July,35,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.83,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,October,43,21,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -Resort Hotel,0,98,2016,July,28,27,3,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,99.74,0,0,Check-Out,2019-06-03 -City Hotel,0,212,2017,August,17,12,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,193.62,0,2,Check-Out,2020-05-03 -City Hotel,0,107,2016,May,21,5,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,172.0,179.0,0,Transient-Party,149.02,0,0,Check-Out,2019-03-04 -City Hotel,1,107,2016,July,22,28,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,153.06,0,0,Canceled,2019-03-04 -City Hotel,0,54,2016,August,38,29,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,80.25,0,0,Check-Out,2019-12-04 -City Hotel,1,0,2016,December,48,3,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,13.0,242.0,0,Transient,1.89,0,0,Canceled,2019-12-04 -City Hotel,0,197,2017,March,22,9,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,32.0,179.0,19,Transient,89.98,0,0,Check-Out,2020-03-03 -City Hotel,1,266,2016,May,14,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,71.45,0,0,Canceled,2019-02-01 -City Hotel,0,93,2017,June,18,28,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,87.01,0,2,Check-Out,2019-11-03 -Resort Hotel,0,7,2016,March,3,14,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,62.7,0,2,Check-Out,2019-01-03 -City Hotel,1,15,2016,December,50,5,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,91.83,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2016,April,23,9,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient-Party,135.26,0,0,Check-Out,2019-04-03 -City Hotel,1,177,2017,August,37,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,122.97,0,0,Canceled,2020-06-02 -Resort Hotel,0,24,2016,October,43,13,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,62.33,0,2,Check-Out,2019-07-04 -City Hotel,1,0,2016,February,11,21,2,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.89,0,0,No-Show,2019-03-04 -Resort Hotel,1,98,2017,April,24,30,1,3,2,2.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,324.0,179.0,0,Transient,217.2,0,2,Canceled,2020-06-02 -City Hotel,0,85,2017,June,29,4,3,2,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,82.51,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2017,May,19,24,1,2,2,0.0,0,SC,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,131.03,0,0,Check-Out,2020-05-03 -City Hotel,0,64,2016,October,44,20,2,4,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,126.03,0,0,Check-Out,2019-08-04 -City Hotel,1,65,2016,April,17,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,39,Transient,121.41,0,0,Canceled,2019-03-04 -City Hotel,1,58,2016,November,50,30,0,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,61.64,0,0,Canceled,2019-11-03 -Resort Hotel,1,101,2015,August,30,8,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,F,E,0,Non Refund,29.0,179.0,0,Transient,126.75,0,0,Canceled,2018-06-02 -City Hotel,0,93,2016,March,12,26,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,75,Transient,44.3,0,0,Canceled,2018-11-02 -City Hotel,0,133,2016,July,35,19,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,154.53,0,0,Check-Out,2019-06-03 -Resort Hotel,1,7,2016,February,7,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,90.0,179.0,0,Transient,54.36,0,0,No-Show,2019-02-01 -Resort Hotel,0,86,2016,December,50,14,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient-Party,61.61,0,0,Check-Out,2019-01-03 -City Hotel,0,9,2016,June,3,5,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,115.27,0,1,Check-Out,2018-10-03 -Resort Hotel,1,237,2016,September,43,9,2,5,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,113.68,0,0,Canceled,2019-03-04 -Resort Hotel,0,36,2016,May,20,9,0,10,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,1,No Deposit,14.0,179.0,75,Transient-Party,77.6,0,0,Check-Out,2019-07-04 -Resort Hotel,0,25,2015,November,49,29,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Contract,61.19,0,0,Check-Out,2018-07-03 -City Hotel,0,2,2017,August,37,5,1,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,170.89,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2017,March,8,2,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.42,0,2,Check-Out,2019-10-04 -City Hotel,0,143,2016,December,46,22,0,2,2,0.0,0,Undefined,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,41,Transient-Party,70.28,0,0,Check-Out,2019-11-03 -Resort Hotel,0,4,2015,October,47,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient-Party,73.95,0,2,Check-Out,2018-09-02 -Resort Hotel,0,1,2017,May,23,11,0,1,2,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,182.0,0,Transient,109.79,1,0,Check-Out,2020-05-03 -Resort Hotel,0,112,2015,September,45,12,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,85.0,179.0,0,Group,41.45,0,1,Check-Out,2018-07-03 -City Hotel,1,253,2017,May,31,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,151.42,0,0,Canceled,2019-12-04 -City Hotel,0,204,2016,January,49,30,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient-Party,76.99,0,0,Check-Out,2018-11-02 -City Hotel,0,12,2016,October,32,10,3,5,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,D,D,2,No Deposit,186.0,179.0,0,Transient,138.56,0,0,Check-Out,2019-05-04 -City Hotel,0,33,2016,March,17,30,1,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,182.43,0,0,Check-Out,2019-02-01 -Resort Hotel,0,43,2015,October,42,10,2,5,1,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient-Party,66.78,0,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2016,August,36,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,53.57,0,1,Check-Out,2019-05-04 -City Hotel,0,1,2017,June,26,17,0,3,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,151.86,0,0,Check-Out,2020-02-01 -City Hotel,1,54,2016,January,26,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,124.82,0,0,Canceled,2018-10-03 -City Hotel,0,56,2016,March,9,9,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,114.54,0,1,Check-Out,2019-03-04 -Resort Hotel,0,243,2015,July,33,30,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,135.0,179.0,0,Transient-Party,65.41,0,0,Check-Out,2018-06-02 -Resort Hotel,0,55,2017,August,28,25,2,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,195.72,1,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2017,January,44,31,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,187.84,1,3,Check-Out,2018-11-02 -City Hotel,1,148,2016,March,9,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,79.31,0,0,Canceled,2018-11-02 -City Hotel,1,136,2016,August,32,21,2,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.67,0,1,Canceled,2019-02-01 -City Hotel,0,18,2017,May,22,27,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient-Party,120.73,0,0,Check-Out,2020-04-02 -City Hotel,0,101,2015,September,43,15,0,1,1,0.0,0,BB,POL,Corporate,Corporate,0,0,0,A,E,0,No Deposit,12.0,331.0,0,Transient-Party,61.94,0,1,Check-Out,2018-08-03 -City Hotel,1,45,2016,October,18,6,0,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,9.0,179.0,0,Transient,91.48,0,3,Canceled,2019-06-03 -Resort Hotel,0,90,2015,July,32,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,62.59,0,0,Check-Out,2018-06-02 -Resort Hotel,0,19,2015,October,49,13,2,5,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,C,I,0,No Deposit,242.0,179.0,0,Transient,0.0,1,0,Check-Out,2018-11-02 -Resort Hotel,1,0,2017,May,10,23,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,98.66,1,0,Canceled,2020-03-03 -Resort Hotel,1,113,2016,July,32,5,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,131.65,0,3,Canceled,2019-05-04 -Resort Hotel,0,55,2016,September,49,5,2,3,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,120.63,0,1,Check-Out,2019-05-04 -City Hotel,1,56,2017,March,12,31,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,74.08,0,0,Canceled,2020-02-01 -Resort Hotel,0,37,2016,December,50,23,2,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,128.07,0,3,Check-Out,2019-06-03 -City Hotel,0,3,2017,February,3,20,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.75,1,1,Check-Out,2019-12-04 -Resort Hotel,0,41,2017,March,18,25,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,1,0,0,E,E,0,No Deposit,38.0,179.0,0,Transient-Party,105.6,0,0,Check-Out,2020-04-02 -City Hotel,0,14,2017,May,22,10,2,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,91.09,0,0,Check-Out,2020-03-03 -City Hotel,1,274,2017,August,38,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,190.51,0,0,Canceled,2020-03-03 -Resort Hotel,0,112,2016,April,27,28,4,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,179.0,0,Transient,72.15,0,0,Check-Out,2019-04-03 -Resort Hotel,0,311,2017,June,34,30,1,2,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,173.0,179.0,0,Transient-Party,118.74,0,2,Check-Out,2020-06-02 -Resort Hotel,1,88,2016,October,43,9,2,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,80.73,0,2,No-Show,2019-09-03 -Resort Hotel,0,8,2017,March,18,21,1,5,1,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,1,No Deposit,16.0,222.0,75,Transient-Party,37.05,1,0,Check-Out,2020-01-04 -Resort Hotel,0,323,2015,October,45,21,2,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,L,0,No Deposit,227.0,179.0,0,Transient-Party,76.44,0,0,Check-Out,2018-09-02 -City Hotel,0,103,2015,August,33,20,0,4,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,145.15,0,0,Check-Out,2018-05-03 -Resort Hotel,1,201,2016,June,26,17,4,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,192.39,0,0,Canceled,2019-05-04 -Resort Hotel,0,45,2017,May,22,18,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,251.0,179.0,0,Transient,124.79,1,1,Check-Out,2020-03-03 -City Hotel,1,279,2017,May,20,7,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient-Party,140.92,0,1,Check-Out,2020-02-01 -City Hotel,1,145,2016,October,46,28,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,71.53,0,0,Canceled,2019-08-04 -Resort Hotel,0,252,2015,November,49,14,2,2,1,0.0,0,FB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Transient-Party,88.09,0,0,Check-Out,2019-12-04 -City Hotel,1,147,2016,December,53,20,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,62,Transient-Party,72.97,0,0,Canceled,2019-11-03 -City Hotel,1,2,2017,February,11,28,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.45,0,0,Canceled,2018-11-02 -Resort Hotel,0,138,2015,August,35,9,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Contract,103.49,0,0,Check-Out,2018-08-03 -City Hotel,0,57,2016,April,19,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,91.02,0,2,Check-Out,2019-02-01 -Resort Hotel,0,21,2017,July,27,18,2,7,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,162.3,0,3,Check-Out,2020-03-03 -City Hotel,1,63,2017,February,8,8,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient,38.47,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,March,9,16,0,1,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,16.0,179.0,75,Transient,38.38,1,0,Check-Out,2019-01-03 -City Hotel,0,2,2016,September,37,28,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,1,No Deposit,18.0,179.0,0,Transient,164.02,0,0,Check-Out,2018-07-03 -Resort Hotel,1,84,2016,May,22,7,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,89.94,1,1,Canceled,2019-01-03 -Resort Hotel,0,98,2015,December,51,8,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,76.52,0,0,Check-Out,2018-11-02 -Resort Hotel,1,316,2016,July,25,5,1,7,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,253.0,179.0,0,Transient,97.07,0,2,Canceled,2019-01-03 -Resort Hotel,0,8,2015,December,53,26,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,1,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,47.67,0,0,Check-Out,2019-01-03 -Resort Hotel,0,274,2016,June,27,21,0,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Contract,62.58,0,0,Check-Out,2019-03-04 -City Hotel,0,8,2016,February,7,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,F,0,No Deposit,95.0,179.0,0,Transient,61.33,0,0,Check-Out,2019-02-01 -City Hotel,1,395,2016,May,21,20,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.53,0,0,Canceled,2018-03-03 -Resort Hotel,0,0,2016,March,10,29,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,32.8,0,1,Check-Out,2018-10-03 -Resort Hotel,0,37,2016,March,10,31,1,3,2,0.0,0,BB,CHE,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,37.26,0,0,Check-Out,2019-03-04 -City Hotel,1,47,2017,February,8,18,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,92.39,0,0,Canceled,2019-01-03 -Resort Hotel,0,40,2017,January,5,9,0,2,2,2.0,0,BB,PRT,Groups,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient-Party,71.58,0,2,Check-Out,2019-11-03 -Resort Hotel,1,195,2017,March,9,18,0,5,2,0.0,0,BB,AUT,Groups,Direct,0,0,0,A,D,0,Refundable,287.0,222.0,0,Transient-Party,47.86,1,0,Check-Out,2019-10-04 -Resort Hotel,0,156,2017,August,32,19,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,243.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-06-02 -City Hotel,0,1,2016,June,16,12,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,16.0,179.0,0,Transient,137.81,0,0,Check-Out,2019-06-03 -Resort Hotel,1,238,2016,October,43,13,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,37.23,0,0,Canceled,2017-11-02 -City Hotel,1,80,2017,June,27,21,2,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,H,0,No Deposit,8.0,179.0,0,Transient,140.19,0,3,Canceled,2020-03-03 -City Hotel,0,10,2016,May,22,10,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.32,0,0,Check-Out,2019-12-04 -City Hotel,0,106,2016,August,38,23,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,214.54,1,2,Check-Out,2019-01-03 -Resort Hotel,0,109,2017,April,38,26,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,77.82,0,1,Canceled,2020-05-03 -City Hotel,0,193,2016,May,43,28,3,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.22,0,1,Check-Out,2019-09-03 -City Hotel,0,33,2016,October,41,22,1,1,2,2.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,101.91,0,0,Check-Out,2019-08-04 -City Hotel,0,100,2016,April,22,23,0,3,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient-Party,99.13,0,0,Check-Out,2020-04-02 -Resort Hotel,0,12,2016,November,42,20,2,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,45.5,1,0,Check-Out,2018-12-03 -Resort Hotel,1,45,2015,October,44,31,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,242.0,179.0,0,Transient,44.99,0,2,No-Show,2018-08-03 -City Hotel,0,100,2016,November,45,5,0,2,1,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,137.75,0,1,Check-Out,2019-12-04 -Resort Hotel,0,12,2016,June,28,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,234.0,0,Transient-Party,36.82,0,0,Check-Out,2019-05-04 -City Hotel,0,68,2015,January,4,6,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,63.33,0,0,Check-Out,2018-11-02 -City Hotel,1,10,2016,November,51,28,0,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,57.94,0,0,Canceled,2019-09-03 -City Hotel,1,268,2015,September,37,5,0,2,1,2.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,186.93,0,0,Canceled,2017-10-03 -Resort Hotel,0,88,2016,October,43,25,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,81.05,1,2,Check-Out,2019-09-03 -City Hotel,0,18,2015,September,42,17,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,64.0,0,0,Check-Out,2018-08-03 -City Hotel,1,41,2016,March,3,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,39,Transient,88.55,0,0,Canceled,2018-11-02 -City Hotel,0,12,2015,December,53,19,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,37.0,179.0,0,Transient,78.04,0,0,Check-Out,2018-12-03 -City Hotel,1,266,2015,September,43,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.67,0,0,Canceled,2017-10-03 -City Hotel,0,25,2016,May,22,29,0,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.63,0,1,Check-Out,2019-02-01 -City Hotel,1,33,2016,January,3,24,1,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,93.28,0,3,Canceled,2018-11-02 -City Hotel,1,90,2015,September,42,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Contract,63.43,0,0,Canceled,2017-09-02 -Resort Hotel,1,91,2016,July,37,6,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,8.0,179.0,0,Transient,71.33,0,2,No-Show,2019-06-03 -City Hotel,0,191,2017,May,22,29,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient-Party,79.46,0,1,Check-Out,2020-03-03 -City Hotel,0,3,2015,October,44,12,0,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,126.66,0,0,Check-Out,2018-09-02 -Resort Hotel,0,31,2016,May,19,5,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,120.17,0,0,Check-Out,2019-03-04 -City Hotel,1,0,2017,March,8,14,2,2,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,69.53,0,1,Canceled,2020-02-01 -Resort Hotel,0,41,2017,December,49,5,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,E,3,No Deposit,378.0,179.0,0,Transient-Party,61.26,0,0,Check-Out,2019-10-04 -City Hotel,1,17,2016,May,35,2,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.16,0,0,Canceled,2019-05-04 -Resort Hotel,0,105,2017,March,16,30,0,4,3,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,165.0,179.0,0,Transient,121.31,0,1,Check-Out,2020-03-03 -City Hotel,1,77,2017,March,20,9,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,E,F,0,No Deposit,29.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,95,2017,May,21,28,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,251.0,179.0,0,Transient,1.62,1,0,Check-Out,2020-04-02 -City Hotel,0,151,2017,August,34,20,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,194.18,0,1,Check-Out,2020-07-03 -City Hotel,1,171,2017,June,25,17,0,1,2,0.0,0,BB,DEU,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,126.34,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2017,April,19,19,4,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,165.23,1,1,Check-Out,2020-02-01 -Resort Hotel,0,9,2017,August,35,16,1,4,2,0.0,0,BB,USA,Direct,Direct,1,0,1,E,F,0,No Deposit,248.0,179.0,0,Group,226.61,1,2,Check-Out,2020-06-02 -Resort Hotel,0,2,2017,March,16,29,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,3,No Deposit,18.0,179.0,0,Transient,159.45,1,0,Check-Out,2020-02-01 -City Hotel,1,433,2016,September,17,17,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,84.49,0,0,Canceled,2018-01-03 -City Hotel,0,258,2015,December,44,12,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,102.03,0,0,Check-Out,2018-08-03 -Resort Hotel,0,12,2017,February,12,9,0,1,2,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,78.43,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2017,May,38,10,0,1,2,0.0,0,BB,ESP,Complementary,Corporate,0,0,0,A,A,0,No Deposit,4.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,7,2017,August,36,5,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,65.99,0,0,Check-Out,2020-07-03 -City Hotel,1,6,2016,March,10,24,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.32,0,1,No-Show,2019-11-03 -City Hotel,0,292,2015,August,37,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,61.35,0,1,Check-Out,2018-06-02 -Resort Hotel,0,36,2017,May,23,18,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,201.0,179.0,0,Transient-Party,119.47,0,1,Check-Out,2020-03-03 -City Hotel,1,13,2017,May,9,10,0,2,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,182.0,68.0,0,Transient-Party,63.27,0,0,Canceled,2020-04-02 -City Hotel,1,15,2017,May,21,2,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,88.05,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2015,October,44,28,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,H,0,No Deposit,243.0,179.0,0,Transient,29.06,0,1,Check-Out,2018-08-03 -Resort Hotel,0,24,2016,September,36,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,215.0,0,Transient-Party,64.47,0,0,Check-Out,2020-06-02 -City Hotel,0,8,2015,September,44,2,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,134.45,0,0,Check-Out,2019-06-03 -City Hotel,0,92,2016,March,18,10,1,4,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,115.69,1,2,Check-Out,2019-02-01 -City Hotel,0,261,2017,May,23,25,1,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,121.67,0,1,Check-Out,2020-04-02 -City Hotel,0,80,2016,January,11,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.21,0,1,Check-Out,2018-10-03 -City Hotel,0,4,2017,June,28,20,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,G,B,0,No Deposit,15.0,331.0,0,Transient,218.35,0,0,Check-Out,2020-06-02 -City Hotel,0,18,2016,August,39,18,2,1,3,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,115.3,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2016,February,36,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,62.0,0,Transient,61.27,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,January,8,15,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,1,No Deposit,11.0,45.0,0,Transient,0.0,0,1,Check-Out,2018-11-02 -City Hotel,1,266,2017,June,27,21,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,62.8,0,1,Canceled,2020-06-02 -Resort Hotel,1,46,2016,October,43,12,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,83.0,179.0,0,Transient-Party,142.97,0,0,Canceled,2018-05-03 -City Hotel,0,85,2017,July,30,19,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.78,1,1,Check-Out,2020-03-03 -City Hotel,0,174,2017,June,17,28,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,62.52,0,0,Check-Out,2020-04-02 -City Hotel,0,270,2017,June,26,21,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,223.92,0,0,Canceled,2020-07-03 -City Hotel,1,0,2015,August,36,9,2,1,2,0.0,0,BB,NOR,Direct,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,54.9,0,0,Canceled,2018-06-02 -Resort Hotel,0,150,2016,October,35,31,1,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,98.28,0,0,Check-Out,2019-05-04 -City Hotel,0,33,2016,March,43,30,2,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.63,0,0,Check-Out,2018-12-03 -City Hotel,1,16,2016,June,26,20,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,130.65,0,0,Canceled,2019-04-03 -Resort Hotel,1,46,2015,July,32,25,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,122.55,0,0,Canceled,2018-05-03 -Resort Hotel,0,1,2015,July,34,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,0,No Deposit,17.0,179.0,0,Transient,2.38,0,0,Check-Out,2018-06-02 -Resort Hotel,1,66,2016,July,33,2,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,240.0,179.0,0,Transient,223.87,0,1,Canceled,2018-06-02 -Resort Hotel,0,13,2017,March,13,16,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,E,A,0,No Deposit,84.0,179.0,0,Group,60.19,0,0,Check-Out,2020-01-04 -City Hotel,1,38,2017,March,11,3,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,219.0,0,Transient,67.51,0,0,Canceled,2019-12-04 -City Hotel,0,39,2017,May,11,21,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,102.98,0,1,Check-Out,2020-03-03 -City Hotel,1,249,2016,October,36,13,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,D,A,0,Non Refund,71.0,179.0,0,Transient,89.4,0,0,Canceled,2019-07-04 -Resort Hotel,1,58,2015,December,51,22,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,306.0,179.0,0,Transient,76.72,0,0,Canceled,2018-12-03 -City Hotel,0,108,2016,April,37,15,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,122.74,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2016,April,17,13,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,73.5,0,0,Check-Out,2019-02-01 -City Hotel,1,120,2017,March,10,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,71.44,0,0,Canceled,2020-03-03 -City Hotel,0,154,2016,February,3,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,61.72,0,0,Check-Out,2018-11-02 -Resort Hotel,1,21,2017,May,22,2,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,L,F,1,No Deposit,249.0,179.0,0,Transient,156.13,1,2,No-Show,2019-11-03 -City Hotel,0,46,2016,March,9,27,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,7.0,179.0,0,Transient,72.07,1,2,Check-Out,2018-12-03 -City Hotel,1,47,2017,May,23,6,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.8,0,0,Canceled,2019-05-04 -City Hotel,1,46,2017,July,26,5,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.32,0,0,Canceled,2020-03-03 -City Hotel,1,205,2016,May,17,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.1,0,0,Canceled,2019-02-01 -City Hotel,1,36,2016,May,21,20,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,30.0,179.0,0,Transient-Party,69.24,0,0,Canceled,2019-02-01 -Resort Hotel,1,51,2017,June,20,27,1,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Refundable,245.0,179.0,0,Transient,200.8,0,0,Canceled,2020-03-03 -City Hotel,0,14,2016,April,21,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,83.63,0,0,Check-Out,2019-02-01 -Resort Hotel,0,8,2017,April,17,20,2,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,66.37,0,1,Check-Out,2020-02-01 -Resort Hotel,0,44,2015,December,50,6,1,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,42.11,0,0,Check-Out,2019-09-03 -City Hotel,0,4,2016,March,10,20,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,80.2,0,0,Check-Out,2020-03-03 -Resort Hotel,1,84,2016,July,31,5,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient-Party,163.59,1,0,Check-Out,2019-04-03 -City Hotel,1,51,2016,June,21,18,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,167.0,179.0,0,Transient,129.97,0,0,Canceled,2019-02-01 -Resort Hotel,0,6,2016,February,10,27,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,131.15,1,0,Check-Out,2020-06-02 -City Hotel,0,56,2016,June,27,6,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.32,0,1,Check-Out,2019-07-04 -City Hotel,1,72,2017,February,9,26,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,122.77,0,0,Canceled,2019-12-04 -Resort Hotel,1,36,2017,May,23,5,0,1,1,0.0,0,BB,USA,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,129.19,0,0,No-Show,2020-01-04 -City Hotel,1,97,2015,December,50,18,1,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.99,0,0,Canceled,2018-05-03 -Resort Hotel,1,167,2017,June,35,2,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,E,2,Non Refund,355.0,179.0,0,Transient,160.57,0,0,Canceled,2020-03-03 -Resort Hotel,0,15,2015,July,37,29,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,98.13,1,2,Check-Out,2018-06-02 -Resort Hotel,0,95,2016,May,23,15,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,326.0,179.0,0,Transient-Party,60.97,0,1,Check-Out,2019-04-03 -Resort Hotel,1,250,2017,May,22,29,2,2,2,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,159.0,179.0,0,Transient,177.14,0,0,Canceled,2020-02-01 -City Hotel,1,11,2016,September,43,19,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.47,0,0,Canceled,2018-08-03 -City Hotel,1,148,2017,March,10,2,2,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,2,No Deposit,36.0,179.0,0,Transient,87.69,0,0,Canceled,2020-02-01 -Resort Hotel,1,146,2017,February,8,3,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,321.0,179.0,0,Transient,52.11,0,0,Canceled,2019-11-03 -City Hotel,0,24,2015,October,42,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,79.98,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2016,August,34,24,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,P,P,1,No Deposit,13.0,179.0,0,Transient,150.22,0,0,Canceled,2019-05-04 -City Hotel,0,380,2016,September,42,15,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,96.64,0,0,Check-Out,2019-08-04 -Resort Hotel,0,86,2016,July,29,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,186.0,179.0,0,Transient,96.6,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,December,53,31,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,36.73,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,October,45,29,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,12.0,179.0,0,Transient-Party,1.38,0,0,Check-Out,2019-06-03 -City Hotel,1,271,2017,August,36,27,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,January,10,13,1,2,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient,76.0,1,0,Check-Out,2018-10-03 -City Hotel,1,305,2015,August,37,30,0,1,3,0.0,0,BB,CHN,Online TA,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,41.97,0,1,Canceled,2018-06-02 -Resort Hotel,0,103,2015,November,50,25,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,D,2,No Deposit,241.0,179.0,0,Group,116.72,0,2,Check-Out,2018-08-03 -Resort Hotel,0,12,2016,September,43,24,1,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,2,No Deposit,16.0,331.0,0,Transient,0.0,1,2,Check-Out,2019-06-03 -City Hotel,1,2,2015,October,44,5,2,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,97.87,0,0,Canceled,2018-08-03 -City Hotel,1,150,2017,March,3,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,25.0,179.0,18,Transient,87.84,0,0,Canceled,2018-10-03 -Resort Hotel,0,10,2016,July,33,18,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-05-04 -City Hotel,0,13,2017,May,26,30,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.12,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,October,45,11,1,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,302.0,179.0,0,Transient-Party,84.25,0,0,Check-Out,2019-08-04 -City Hotel,1,312,2016,August,35,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.74,0,0,Canceled,2017-12-03 -City Hotel,0,150,2016,June,21,5,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.75,0,2,Check-Out,2019-05-04 -City Hotel,0,50,2017,May,21,23,0,2,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,116.55,0,2,Check-Out,2020-04-02 -City Hotel,0,71,2016,February,22,24,1,3,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient-Party,76.18,0,0,Check-Out,2019-03-04 -Resort Hotel,1,267,2017,February,10,2,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,49.54,0,0,Canceled,2019-11-03 -City Hotel,1,30,2016,June,28,16,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.07,0,2,Canceled,2019-07-04 -City Hotel,0,64,2016,October,46,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,73.89,0,0,Check-Out,2018-09-02 -Resort Hotel,1,105,2015,December,53,25,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,75.1,0,0,Canceled,2018-08-03 -City Hotel,1,81,2016,June,36,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,8.0,179.0,0,Transient,71.58,0,1,Canceled,2018-12-03 -Resort Hotel,0,98,2016,July,36,25,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,310.0,179.0,0,Transient-Party,99.11,0,1,Check-Out,2020-06-02 -City Hotel,0,16,2016,June,52,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,236.0,0,Transient,62.68,1,0,Check-Out,2019-12-04 -Resort Hotel,1,285,2017,May,21,6,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,82.2,0,0,Canceled,2020-03-03 -City Hotel,0,2,2017,June,25,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,8.0,45.0,0,Transient,101.28,0,0,Check-Out,2020-06-02 -City Hotel,0,195,2016,May,28,5,2,5,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,12.0,179.0,0,Transient,231.05,0,0,Check-Out,2019-02-01 -City Hotel,1,10,2017,August,32,22,2,5,2,0.0,0,HB,ITA,Aviation,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,157.09,0,1,Canceled,2020-07-03 -Resort Hotel,1,52,2017,March,11,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,238.0,179.0,0,Transient,104.4,0,0,Canceled,2019-12-04 -City Hotel,0,3,2017,May,21,19,1,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,68.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -Resort Hotel,0,248,2016,July,32,31,1,3,1,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,79.14,0,0,Check-Out,2019-05-04 -Resort Hotel,0,195,2017,June,31,2,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Contract,75.21,0,1,Check-Out,2020-05-03 -City Hotel,1,48,2015,September,35,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.92,0,0,Canceled,2017-11-02 -City Hotel,1,49,2015,December,45,5,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,89.75,0,0,Canceled,2018-08-03 -City Hotel,1,150,2016,September,37,14,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,153.05,0,0,Canceled,2019-04-03 -City Hotel,0,42,2017,May,22,10,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.65,0,0,Check-Out,2020-05-03 -Resort Hotel,0,81,2016,October,50,9,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,I,0,No Deposit,10.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-01-03 -City Hotel,1,104,2016,April,17,25,0,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.32,0,0,Canceled,2018-11-02 -Resort Hotel,0,12,2016,October,46,29,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,88.95,0,1,Check-Out,2019-07-04 -Resort Hotel,0,111,2017,February,9,24,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient,78.24,0,0,Check-Out,2020-06-02 -City Hotel,0,53,2015,December,51,24,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,98.34,0,1,Check-Out,2018-11-02 -City Hotel,1,44,2015,October,46,25,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,95.48,0,0,Canceled,2018-08-03 -City Hotel,0,380,2016,May,21,16,0,2,1,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,119.65,0,1,Check-Out,2019-05-04 -City Hotel,0,2,2016,June,31,11,1,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,116.77,0,1,Check-Out,2019-08-04 -City Hotel,0,4,2017,March,18,24,0,2,3,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,45.0,0,Transient-Party,56.42,0,0,Check-Out,2020-01-04 -Resort Hotel,0,39,2016,September,36,25,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,242.0,179.0,0,Transient,118.6,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2016,February,9,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,58.87,0,0,Check-Out,2019-02-01 -City Hotel,0,84,2017,February,4,25,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.39,0,1,Check-Out,2019-10-04 -Resort Hotel,1,12,2016,May,29,28,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,201.11,0,0,Canceled,2020-03-03 -City Hotel,0,8,2016,November,51,6,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,74.0,0,Transient,71.06,0,0,Check-Out,2019-11-03 -City Hotel,0,14,2016,March,33,21,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.24,0,0,Check-Out,2019-06-03 -Resort Hotel,0,46,2015,October,44,1,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,12.0,244.0,0,Transient-Party,39.31,0,0,Check-Out,2018-09-02 -City Hotel,1,22,2016,August,39,31,0,3,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,179.54,0,2,Canceled,2019-06-03 -City Hotel,1,245,2016,February,9,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,38,Transient,69.96,0,0,Canceled,2018-12-03 -Resort Hotel,0,230,2017,June,21,25,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,313.0,179.0,0,Transient,105.73,0,0,Check-Out,2020-02-01 -Resort Hotel,0,305,2017,May,22,24,2,7,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,244.0,179.0,0,Transient,237.3,0,0,Check-Out,2020-02-01 -Resort Hotel,0,3,2016,August,30,6,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,252.0,0,3,Check-Out,2018-11-02 -City Hotel,0,9,2016,October,43,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,108.56,0,2,Check-Out,2019-08-04 -Resort Hotel,0,14,2016,January,8,5,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,19,Transient,37.58,0,0,Check-Out,2018-12-03 -City Hotel,1,54,2016,July,44,24,2,3,3,1.0,0,BB,,Direct,Direct,0,0,0,H,H,0,No Deposit,11.0,179.0,0,Transient,210.84,0,0,Canceled,2019-08-04 -City Hotel,0,273,2017,July,22,10,2,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Contract,61.57,0,0,Check-Out,2018-09-02 -City Hotel,1,35,2017,March,15,6,2,0,3,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,8.0,179.0,0,Contract,71.88,0,0,Canceled,2020-02-01 -Resort Hotel,1,6,2016,September,35,21,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,343.0,179.0,0,Transient,229.28,0,0,Canceled,2019-09-03 -City Hotel,1,107,2016,March,16,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,39,Transient,102.15,0,0,Canceled,2019-02-01 -City Hotel,0,90,2016,September,44,25,2,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.3,0,1,Check-Out,2019-08-04 -City Hotel,0,10,2015,December,50,31,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,101.24,0,0,Check-Out,2018-06-02 -City Hotel,1,258,2017,August,35,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Contract,63.07,0,1,Canceled,2020-06-02 -Resort Hotel,0,0,2016,January,4,27,1,0,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,159.63,0,3,Check-Out,2019-02-01 -City Hotel,0,0,2017,February,8,9,1,0,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient-Party,45.36,0,0,Check-Out,2020-01-04 -City Hotel,0,10,2017,January,11,29,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,68.42,0,2,Check-Out,2019-09-03 -Resort Hotel,0,26,2016,January,10,28,1,0,1,0.0,0,BB,ESP,Online TA,TA/TO,1,1,0,G,C,0,No Deposit,241.0,179.0,0,Transient,59.76,1,0,Check-Out,2018-11-02 -Resort Hotel,1,151,2017,July,33,15,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,204.78,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2017,February,8,12,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,19.0,179.0,0,Transient,52.13,0,3,Check-Out,2020-06-02 -Resort Hotel,1,98,2017,July,31,8,0,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,2020-05-03 -City Hotel,1,390,2016,October,46,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.94,0,0,Canceled,2018-12-03 -Resort Hotel,1,199,2016,April,16,24,1,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,102.58,0,0,Canceled,2019-01-03 -City Hotel,0,32,2016,December,53,4,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,89.27,0,0,Check-Out,2019-12-04 -Resort Hotel,0,295,2017,May,22,30,0,10,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Contract,33.43,0,0,Check-Out,2020-04-02 -City Hotel,1,202,2016,April,23,28,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,63,Transient-Party,59.81,0,0,Canceled,2019-06-03 -Resort Hotel,1,84,2016,January,31,15,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,206.76,0,0,Canceled,2019-02-01 -City Hotel,1,10,2015,August,38,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,70.48,0,0,Canceled,2018-06-02 -City Hotel,0,10,2015,October,45,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,11.0,64.0,0,Transient-Party,71.95,0,2,Check-Out,2018-09-02 -City Hotel,0,107,2017,May,26,24,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,163.16,0,1,Check-Out,2020-03-03 -City Hotel,1,41,2017,February,9,20,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,E,0,Non Refund,9.0,179.0,0,Transient,83.9,0,0,Canceled,2019-12-04 -City Hotel,1,211,2016,October,43,31,2,3,2,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,207.67,0,1,Canceled,2019-07-04 -City Hotel,0,50,2016,November,49,9,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,76.17,0,0,Check-Out,2019-08-04 -Resort Hotel,0,13,2016,June,16,22,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,H,F,1,No Deposit,13.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-02-01 -City Hotel,0,0,2016,December,51,30,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,124.25,0,1,Check-Out,2019-10-04 -City Hotel,0,37,2017,May,23,5,1,0,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,101.21,0,1,Check-Out,2020-03-03 -Resort Hotel,0,31,2017,March,11,24,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,341.0,179.0,0,Transient,78.52,1,0,Check-Out,2020-04-02 -City Hotel,1,40,2016,June,25,30,2,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,148.94,0,2,Canceled,2019-11-03 -City Hotel,0,13,2017,March,10,28,2,3,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.23,0,1,Check-Out,2020-02-01 -City Hotel,1,216,2017,August,37,10,2,4,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,176.85,0,3,Canceled,2020-02-01 -City Hotel,1,242,2016,December,53,28,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.97,0,0,Canceled,2019-08-04 -City Hotel,1,218,2016,June,32,13,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.87,0,0,Canceled,2020-02-01 -City Hotel,1,17,2016,June,23,28,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.93,0,0,No-Show,2019-03-04 -Resort Hotel,0,6,2016,November,50,8,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,2,No Deposit,347.0,179.0,0,Transient-Party,41.11,0,0,Check-Out,2019-10-04 -City Hotel,1,141,2016,July,30,13,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient-Party,59.74,0,0,Canceled,2019-12-04 -City Hotel,1,204,2016,April,53,3,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.91,0,0,Canceled,2019-10-04 -Resort Hotel,0,48,2016,March,18,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,147.0,179.0,0,Transient,73.55,0,1,Check-Out,2019-02-01 -City Hotel,0,28,2016,June,27,2,1,1,2,1.0,0,BB,CHE,Online TA,Direct,0,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,200.03,0,2,Check-Out,2019-04-03 -City Hotel,0,140,2016,January,4,28,0,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.03,0,2,Check-Out,2019-02-01 -Resort Hotel,0,50,2015,October,42,30,1,1,2,0.0,0,HB,ITA,Direct,Direct,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,38.52,0,0,Check-Out,2018-09-02 -City Hotel,0,148,2016,June,23,10,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,76.01,0,1,Check-Out,2019-07-04 -City Hotel,1,57,2016,August,49,5,2,5,3,2.0,0,HB,,Online TA,Direct,0,0,0,B,B,2,No Deposit,13.0,179.0,0,Transient,145.34,0,3,Canceled,2019-08-04 -Resort Hotel,0,10,2016,August,36,28,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,199.55,0,1,Check-Out,2019-05-04 -City Hotel,1,56,2016,August,37,4,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,109.56,0,0,Canceled,2019-08-04 -Resort Hotel,0,150,2016,March,19,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,224.0,75,Transient-Party,62.26,0,0,Check-Out,2019-01-03 -City Hotel,0,13,2017,February,9,10,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,32.93,1,1,Check-Out,2019-11-03 -City Hotel,1,123,2016,March,9,25,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,15,Transient,73.19,0,0,Canceled,2018-11-02 -Resort Hotel,1,48,2017,February,7,12,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Non Refund,39.0,331.0,0,Transient,44.2,0,0,Canceled,2019-12-04 -City Hotel,0,2,2016,June,28,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,58.47,0,0,Check-Out,2019-03-04 -Resort Hotel,0,147,2016,May,28,21,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,79.0,179.0,0,Transient,118.31,0,0,Check-Out,2019-05-04 -Resort Hotel,0,48,2017,February,17,24,2,1,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,82.93,0,1,Check-Out,2020-02-01 -City Hotel,0,91,2016,March,11,18,0,2,2,1.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.26,1,2,Check-Out,2019-09-03 -City Hotel,0,16,2017,April,17,9,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,111.62,0,0,Check-Out,2020-02-01 -Resort Hotel,0,142,2015,July,39,22,1,5,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,F,E,0,No Deposit,246.0,179.0,0,Transient,210.68,1,1,Check-Out,2018-05-03 -Resort Hotel,0,301,2017,May,23,24,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,314.0,179.0,0,Transient-Party,128.11,0,0,Canceled,2020-04-02 -Resort Hotel,1,38,2017,January,2,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,194.0,179.0,0,Transient,138.84,0,0,Canceled,2020-04-02 -Resort Hotel,0,15,2015,December,53,6,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,62.7,1,0,Check-Out,2019-10-04 -Resort Hotel,0,260,2015,September,35,8,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,181.0,179.0,0,Contract,59.94,0,0,Check-Out,2018-09-02 -City Hotel,1,50,2017,May,17,16,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,7.0,179.0,0,Transient,158.29,0,0,Canceled,2020-02-01 -Resort Hotel,0,141,2016,August,37,14,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,71.0,179.0,0,Transient,75.31,0,0,Check-Out,2019-06-03 -Resort Hotel,0,29,2015,September,44,29,1,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,87.28,1,0,Check-Out,2018-07-03 -City Hotel,1,263,2016,September,43,15,2,5,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,115.63,0,0,Canceled,2019-04-03 -City Hotel,1,195,2017,February,4,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.45,0,0,Canceled,2019-10-04 -City Hotel,1,97,2016,October,46,7,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.6,0,1,Canceled,2019-08-04 -City Hotel,0,56,2017,July,34,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.87,0,3,Canceled,2020-04-02 -City Hotel,1,47,2016,August,37,16,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,147.33,0,1,Canceled,2019-10-04 -City Hotel,0,98,2016,March,10,4,1,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,L,D,0,No Deposit,16.0,179.0,0,Transient,100.46,1,1,Check-Out,2019-02-01 -City Hotel,1,91,2016,August,34,3,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,148.37,0,2,Canceled,2019-06-03 -City Hotel,0,267,2015,October,44,5,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,244.0,0,Transient-Party,66.48,0,0,Check-Out,2018-09-02 -City Hotel,0,8,2017,March,18,31,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,7.0,179.0,0,Transient-Party,143.77,0,1,Check-Out,2020-03-03 -Resort Hotel,0,152,2016,May,21,18,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,99.1,0,1,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,October,43,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,45.8,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,February,9,5,1,0,2,0.0,0,BB,,Direct,Corporate,0,0,0,A,I,0,No Deposit,12.0,179.0,0,Transient,69.27,0,0,Check-Out,2019-02-01 -Resort Hotel,0,120,2017,August,35,16,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,230.72,0,2,Check-Out,2020-06-02 -Resort Hotel,0,1,2017,May,28,15,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,177.78,0,1,Check-Out,2020-04-02 -City Hotel,0,99,2016,May,23,28,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,78.1,0,2,Check-Out,2019-03-04 -City Hotel,1,186,2015,October,36,16,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,145.36,0,0,Canceled,2018-07-03 -Resort Hotel,1,149,2017,September,36,17,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,237.0,179.0,0,Transient,153.95,0,1,Canceled,2019-09-03 -City Hotel,0,2,2016,March,17,9,1,1,2,0.0,0,BB,BRA,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,105.66,1,0,Check-Out,2018-11-02 -City Hotel,0,48,2015,October,45,21,0,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,59.25,0,0,Check-Out,2018-09-02 -Resort Hotel,0,265,2016,March,11,22,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,A,0,No Deposit,15.0,223.0,0,Transient-Party,38.14,0,0,Check-Out,2019-02-01 -City Hotel,1,144,2016,December,53,21,2,2,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,G,G,2,No Deposit,193.0,179.0,0,Transient,92.9,0,0,Check-Out,2019-09-03 -City Hotel,1,168,2017,June,21,28,2,5,3,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,161.32,0,0,Canceled,2020-03-03 -Resort Hotel,0,264,2016,November,50,18,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,90.0,179.0,0,Transient-Party,63.59,0,0,Check-Out,2019-12-04 -City Hotel,1,157,2015,September,37,20,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,59.33,0,0,Canceled,2018-09-02 -City Hotel,1,39,2016,November,40,22,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,72.7,0,0,Canceled,2019-05-04 -Resort Hotel,1,47,2015,July,11,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Transient,62.16,1,1,Check-Out,2018-06-02 -City Hotel,0,19,2017,April,16,30,1,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,82.0,179.0,75,Transient-Party,60.98,1,1,Check-Out,2020-02-01 -City Hotel,0,154,2017,July,31,5,1,5,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient-Party,115.26,0,0,Check-Out,2020-06-02 -City Hotel,0,38,2015,October,43,17,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,67.13,0,2,Check-Out,2018-09-02 -Resort Hotel,0,3,2015,November,50,21,0,1,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,316.0,179.0,0,Transient-Party,39.39,1,0,Check-Out,2018-12-03 -City Hotel,0,145,2017,July,28,31,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,25.0,179.0,0,Transient-Party,80.81,0,0,Check-Out,2020-07-03 -Resort Hotel,0,5,2017,May,22,30,2,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,322.0,179.0,0,Transient-Party,63.91,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2015,November,42,28,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,45.04,0,0,Check-Out,2018-09-02 -Resort Hotel,0,166,2017,June,35,19,2,7,2,0.0,0,HB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,112.9,0,2,Canceled,2020-03-03 -Resort Hotel,1,49,2015,December,53,28,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,84.92,0,0,Canceled,2018-06-02 -Resort Hotel,0,15,2016,September,45,30,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,143.69,0,0,Check-Out,2019-07-04 -Resort Hotel,0,232,2016,October,45,27,1,2,2,2.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,C,C,3,No Deposit,318.0,179.0,0,Transient-Party,90.09,0,0,Check-Out,2020-01-04 -City Hotel,1,285,2015,September,38,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient,61.12,0,0,Canceled,2018-08-03 -Resort Hotel,0,295,2017,May,26,25,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,130.62,0,1,Check-Out,2020-04-02 -Resort Hotel,0,192,2017,August,38,25,4,7,2,0.0,0,HB,USA,Direct,Direct,0,0,0,A,E,0,No Deposit,249.0,179.0,0,Transient,200.36,0,0,Check-Out,2020-06-02 -City Hotel,0,143,2016,August,37,2,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,204.49,0,1,Canceled,2019-08-04 -Resort Hotel,0,85,2016,October,43,15,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,310.0,179.0,0,Transient-Party,81.65,0,0,Check-Out,2019-09-03 -Resort Hotel,0,13,2017,March,10,7,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Group,61.2,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,February,9,10,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -City Hotel,1,33,2015,July,30,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,8.0,179.0,0,Transient,62.99,0,0,No-Show,2018-07-03 -Resort Hotel,0,0,2016,October,44,15,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,119.45,1,2,Check-Out,2019-05-04 -City Hotel,0,171,2016,August,37,20,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient-Party,79.54,0,1,Check-Out,2019-06-03 -City Hotel,1,57,2015,September,41,28,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,87.5,0,0,Canceled,2018-07-03 -City Hotel,0,36,2017,September,30,6,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.81,0,1,Check-Out,2020-06-02 -City Hotel,1,444,2016,August,38,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.72,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2015,December,50,9,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,18.0,46.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,1,45,2016,February,11,28,0,2,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,70.87,0,0,Canceled,2018-12-03 -City Hotel,0,150,2017,August,37,19,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,235.69,0,1,Check-Out,2020-06-02 -City Hotel,0,23,2016,March,11,14,1,2,2,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,H,1,No Deposit,80.0,179.0,23,Transient-Party,36.83,0,0,Check-Out,2019-02-01 -City Hotel,0,191,2015,August,37,17,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,62.0,179.0,0,Transient,126.7,0,0,Check-Out,2018-05-03 -City Hotel,1,4,2017,September,38,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,156.53,0,0,Canceled,2019-12-04 -City Hotel,0,3,2016,February,21,20,2,2,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,91.17,0,1,Check-Out,2019-06-03 -City Hotel,1,157,2015,December,50,24,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,42,Transient,95.9,0,0,Canceled,2019-01-03 -City Hotel,0,15,2017,May,23,30,0,1,1,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,156.83,0,0,Check-Out,2020-07-03 -Resort Hotel,0,1,2017,May,26,13,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,245.0,179.0,0,Transient,39.79,1,1,Check-Out,2020-04-02 -City Hotel,0,241,2017,June,27,13,2,1,1,0.0,0,BB,USA,Aviation,Corporate,0,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,101.12,0,0,Check-Out,2020-02-01 -City Hotel,1,39,2016,April,17,18,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,198.64,0,1,Canceled,2019-02-01 -City Hotel,1,0,2016,July,27,28,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,91.27,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,May,23,9,1,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,151.99,0,0,Check-Out,2020-03-03 -City Hotel,1,101,2016,October,45,28,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,159.79,0,0,Canceled,2019-08-04 -City Hotel,0,385,2017,May,21,5,1,2,1,0.0,0,HB,USA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,81.62,0,0,Check-Out,2020-03-03 -Resort Hotel,0,3,2015,October,43,12,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,16.0,179.0,0,Transient,58.96,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2017,February,9,9,2,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,71.7,0,0,Check-Out,2019-10-04 -City Hotel,1,30,2015,August,38,3,0,3,1,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,85.95,0,0,Canceled,2018-06-02 -City Hotel,0,118,2017,March,23,16,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient,212.35,0,1,Check-Out,2020-04-02 -City Hotel,0,8,2017,May,22,31,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,61.6,0,0,Check-Out,2020-02-01 -City Hotel,0,21,2017,July,34,29,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,202.14,0,0,Check-Out,2019-10-04 -Resort Hotel,1,0,2016,July,27,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,64.23,0,0,Canceled,2019-03-04 -City Hotel,0,201,2017,August,35,18,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.92,0,2,Check-Out,2020-04-02 -Resort Hotel,0,27,2017,April,11,29,0,1,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,285.0,179.0,0,Transient,66.37,0,0,Check-Out,2020-04-02 -Resort Hotel,0,363,2016,June,23,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient-Party,37.75,0,0,Check-Out,2019-06-03 -City Hotel,1,145,2016,February,16,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,125.0,179.0,16,Transient,60.06,0,0,Canceled,2018-10-03 -Resort Hotel,0,0,2015,October,43,19,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,41.47,0,1,Check-Out,2018-08-03 -City Hotel,1,259,2016,June,32,1,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.01,0,0,Canceled,2019-03-04 -City Hotel,0,2,2017,July,8,16,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.14,0,2,Check-Out,2020-04-02 -City Hotel,1,253,2016,July,30,24,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.22,0,0,Canceled,2019-04-03 -City Hotel,0,0,2016,August,38,24,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,198.13,0,0,Canceled,2019-07-04 -City Hotel,0,25,2017,April,17,29,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,96.22,1,1,Check-Out,2020-02-01 -City Hotel,1,148,2015,July,33,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,115.27,0,0,Canceled,2018-07-03 -City Hotel,0,33,2016,January,5,25,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.23,0,2,Check-Out,2019-10-04 -Resort Hotel,0,14,2016,November,50,17,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,97.0,239.0,0,Transient,34.56,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2017,June,28,16,3,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,131.46,0,2,Check-Out,2020-04-02 -City Hotel,0,0,2016,August,34,17,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.8,0,0,Check-Out,2019-07-04 -City Hotel,1,272,2016,November,22,15,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.02,0,0,Canceled,2018-10-03 -City Hotel,0,161,2017,August,37,17,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,186.17,0,1,Check-Out,2020-07-03 -Resort Hotel,1,53,2015,December,53,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,34.72,0,0,Canceled,2018-10-03 -City Hotel,0,87,2016,July,22,3,0,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient-Party,105.26,0,0,Check-Out,2019-06-03 -City Hotel,1,33,2015,September,43,21,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,114.46,0,0,Canceled,2018-06-02 -Resort Hotel,0,36,2016,January,15,27,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,249.0,179.0,0,Transient,119.47,1,0,Check-Out,2019-01-03 -City Hotel,1,95,2015,September,43,2,2,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient,75.51,0,0,Canceled,2017-12-03 -City Hotel,0,47,2016,April,17,28,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,126.86,0,2,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,September,43,13,1,0,1,0.0,0,BB,CHE,Complementary,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-05-04 -City Hotel,1,0,2016,June,27,5,0,1,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,4.03,0,0,Canceled,2020-03-03 -City Hotel,1,36,2015,December,53,10,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,238.0,179.0,0,Transient,74.58,0,2,No-Show,2018-11-02 -Resort Hotel,1,38,2016,April,17,23,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,172.59,0,0,Canceled,2019-02-01 -Resort Hotel,0,244,2016,June,28,19,0,10,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,68.96,0,0,Check-Out,2019-01-03 -City Hotel,0,50,2015,August,39,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,119.52,0,1,Check-Out,2018-07-03 -Resort Hotel,0,206,2016,October,41,28,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-08-04 -Resort Hotel,0,44,2016,May,22,28,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,119.42,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2015,October,43,24,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,F,1,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,16,2017,May,27,28,1,0,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,G,F,0,No Deposit,12.0,179.0,0,Transient,125.41,0,1,Check-Out,2020-05-03 -City Hotel,1,262,2016,November,49,10,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,71.39,0,0,Canceled,2019-08-04 -Resort Hotel,0,17,2016,October,22,27,0,1,3,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,86.0,179.0,0,Transient-Party,123.71,0,0,Check-Out,2019-03-04 -City Hotel,1,40,2015,September,39,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,74.21,0,0,Canceled,2018-08-03 -City Hotel,1,405,2017,May,27,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,87.51,0,0,Canceled,2019-11-03 -Resort Hotel,0,198,2016,June,28,2,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,83.6,0,0,Check-Out,2019-11-03 -Resort Hotel,1,255,2015,July,34,13,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,132.53,0,0,Canceled,2018-05-03 -Resort Hotel,0,199,2016,March,10,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,69.9,0,0,Check-Out,2019-06-03 -Resort Hotel,0,250,2015,October,42,10,2,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Contract,42.08,0,0,Check-Out,2018-09-02 -Resort Hotel,1,182,2016,August,42,6,3,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,F,E,2,No Deposit,243.0,179.0,0,Transient,104.35,0,2,Canceled,2019-05-04 -Resort Hotel,1,156,2017,August,36,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,63.07,0,0,Canceled,2020-06-02 -Resort Hotel,0,198,2016,October,16,27,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,317.0,179.0,0,Contract,78.25,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2015,August,39,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,75.73,0,0,Check-Out,2018-06-02 -City Hotel,1,260,2015,October,43,24,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,1,0,D,A,0,Non Refund,1.0,179.0,0,Contract,124.84,0,0,Canceled,2018-07-03 -City Hotel,0,12,2016,February,9,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,67.0,0,Transient,35.74,0,0,Check-Out,2019-03-04 -City Hotel,0,39,2017,March,9,15,0,5,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient,89.3,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,May,8,12,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,B,3,No Deposit,11.0,179.0,0,Transient,126.74,0,0,Check-Out,2020-04-02 -City Hotel,0,10,2016,October,44,21,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,76.93,0,0,Check-Out,2018-08-03 -Resort Hotel,0,47,2015,November,50,27,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,264.0,0,Transient-Party,30.18,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2015,September,45,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,218.0,0,Transient-Party,80.69,0,0,Check-Out,2018-08-03 -City Hotel,0,9,2017,July,30,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient-Party,68.99,0,1,Check-Out,2020-06-02 -City Hotel,0,85,2017,September,35,2,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.18,0,2,Check-Out,2020-07-03 -City Hotel,1,117,2016,December,51,24,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,41,Transient,77.31,0,0,Canceled,2018-09-02 -City Hotel,1,0,2016,January,29,31,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,70.97,0,0,Canceled,2019-02-01 -City Hotel,0,11,2017,August,31,21,1,5,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,170.0,179.0,0,Transient-Party,128.69,0,1,Check-Out,2020-06-02 -City Hotel,0,52,2017,June,22,13,0,1,1,0.0,0,BB,USA,Corporate,GDS,0,0,0,A,A,0,No Deposit,203.0,46.0,0,Group,88.24,0,0,Check-Out,2019-12-04 -City Hotel,1,13,2017,February,9,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,Non Refund,16.0,81.0,0,Transient,90.97,0,0,Canceled,2020-03-03 -City Hotel,1,330,2015,August,36,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,80.34,0,0,Canceled,2017-09-02 -Resort Hotel,0,54,2017,January,4,21,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,213.31,0,0,Check-Out,2019-11-03 -City Hotel,0,285,2017,June,27,30,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,241.0,179.0,0,Transient,63.04,0,3,Check-Out,2020-06-02 -City Hotel,0,90,2017,June,26,24,0,4,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.69,0,1,Check-Out,2020-04-02 -City Hotel,1,89,2016,March,15,17,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,124.69,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2016,August,31,13,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,244.0,179.0,0,Transient,239.91,1,0,Check-Out,2020-06-02 -City Hotel,1,284,2015,October,43,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.51,0,0,Canceled,2018-01-03 -Resort Hotel,0,60,2017,August,38,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,184.81,0,0,Check-Out,2020-06-02 -City Hotel,1,320,2015,October,45,19,2,5,1,0.0,0,BB,CN,Online TA,TA/TO,0,1,1,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,63.72,0,0,Canceled,2017-12-03 -Resort Hotel,0,49,2017,March,19,31,1,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,224.0,0,Transient-Party,30.52,0,0,Check-Out,2020-04-02 -Resort Hotel,1,250,2017,August,35,22,2,5,2,0.0,0,HB,GBR,Direct,Corporate,0,0,0,G,F,2,No Deposit,13.0,179.0,0,Transient-Party,81.03,0,0,Canceled,2020-06-02 -City Hotel,1,100,2017,May,25,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.59,0,0,Canceled,2019-11-03 -City Hotel,1,139,2016,January,49,20,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,92.55,0,0,Canceled,2019-10-04 -Resort Hotel,0,154,2017,August,36,25,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,248.4,1,1,Check-Out,2020-07-03 -Resort Hotel,1,41,2017,June,25,21,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,A,0,No Deposit,175.0,201.0,0,Transient,100.04,0,0,Canceled,2020-05-03 -Resort Hotel,0,150,2016,June,27,24,1,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,35.86,0,0,Check-Out,2019-03-04 -Resort Hotel,0,99,2016,November,51,9,2,7,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,F,3,No Deposit,33.0,179.0,0,Transient-Party,64.34,0,0,Check-Out,2019-12-04 -Resort Hotel,0,16,2015,September,51,29,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,87.97,0,0,Check-Out,2018-09-02 -Resort Hotel,0,45,2015,January,3,28,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,52.73,1,0,Check-Out,2018-11-02 -City Hotel,0,244,2016,August,44,9,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.04,0,1,Check-Out,2019-08-04 -City Hotel,0,14,2015,October,44,29,1,0,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,224.0,0,Transient-Party,65.72,0,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2017,April,27,27,0,1,2,0.0,0,BB,ESP,Direct,Direct,1,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,132.77,1,1,Check-Out,2020-03-03 -City Hotel,0,113,2016,June,16,30,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,31.0,179.0,0,Transient-Party,69.44,0,0,Check-Out,2020-02-01 -City Hotel,0,17,2015,December,45,30,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,124.38,0,0,Check-Out,2018-08-03 -City Hotel,1,117,2017,June,27,5,0,3,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,73.67,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2015,October,40,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,L,I,1,No Deposit,14.0,179.0,0,Transient,51.9,0,0,Check-Out,2018-06-02 -Resort Hotel,0,153,2017,June,25,14,2,5,3,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,378.0,179.0,0,Transient,103.52,0,1,Check-Out,2020-03-03 -City Hotel,0,22,2016,May,21,6,1,0,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,39.0,179.0,0,Transient-Party,77.56,0,0,Check-Out,2019-03-04 -City Hotel,1,408,2017,July,28,24,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,79.32,0,0,Canceled,2020-06-02 -Resort Hotel,1,43,2016,October,35,9,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,245.0,179.0,0,Transient,51.29,0,2,Canceled,2018-10-03 -City Hotel,1,157,2016,May,20,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,70.23,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,July,41,20,4,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,D,0,No Deposit,16.0,205.0,0,Transient,107.23,0,0,Check-Out,2019-04-03 -City Hotel,0,43,2016,September,45,5,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.21,0,1,Check-Out,2019-12-04 -Resort Hotel,0,157,2017,June,26,18,2,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,128.79,0,1,Check-Out,2020-02-01 -City Hotel,0,77,2016,March,15,20,2,0,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,259.0,0,Transient,74.84,0,0,Check-Out,2019-02-01 -City Hotel,0,40,2016,December,52,20,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,11.0,179.0,0,Transient,108.03,0,0,Check-Out,2019-10-04 -City Hotel,1,12,2016,February,11,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,65.14,0,0,Canceled,2019-02-01 -City Hotel,0,141,2015,December,53,31,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,62,Transient-Party,72.35,0,0,Check-Out,2018-12-03 -Resort Hotel,0,48,2016,October,22,15,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,290.0,179.0,0,Transient,44.72,1,0,Check-Out,2019-09-03 -City Hotel,1,247,2015,July,34,4,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.32,0,0,Canceled,2018-05-03 -City Hotel,1,102,2016,April,15,24,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,65,Transient,92.04,0,0,Canceled,2019-02-01 -City Hotel,1,390,2017,August,32,29,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,224.0,179.0,0,Transient,99.16,0,0,Canceled,2020-07-03 -City Hotel,1,244,2015,August,32,27,0,5,2,0.0,0,BB,,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2018-06-02 -City Hotel,1,130,2017,May,17,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,207.18,0,1,Canceled,2019-11-03 -Resort Hotel,0,28,2016,March,10,24,1,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,42.98,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,January,4,7,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,84.92,0,2,Check-Out,2018-12-03 -City Hotel,1,3,2015,December,44,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,80.78,0,0,Canceled,2017-11-02 -City Hotel,0,7,2016,February,11,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,18.0,82.0,0,Group,38.7,0,0,Check-Out,2019-09-03 -City Hotel,0,104,2016,August,45,6,2,0,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Contract,97.48,0,1,Check-Out,2019-05-04 -City Hotel,0,0,2016,October,43,24,0,1,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,190.0,331.0,0,Transient,89.32,0,0,Check-Out,2019-08-04 -Resort Hotel,1,281,2015,July,35,22,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,115.88,0,2,Canceled,2018-05-03 -Resort Hotel,0,43,2017,May,21,16,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,74.5,1,0,Check-Out,2020-03-03 -City Hotel,1,381,2017,August,16,12,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,70.02,0,0,Canceled,2019-10-04 -City Hotel,0,51,2015,July,30,3,0,2,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,71.78,0,1,Check-Out,2018-06-02 -City Hotel,0,42,2016,October,44,14,2,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,75.56,0,2,Check-Out,2019-09-03 -City Hotel,0,267,2016,June,28,27,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,123.76,0,0,Check-Out,2019-05-04 -City Hotel,1,295,2015,June,37,20,2,10,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.43,0,0,Canceled,2017-10-03 -Resort Hotel,0,53,2015,July,31,22,0,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient-Party,145.03,1,2,Check-Out,2019-06-03 -City Hotel,1,262,2016,May,43,24,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,84.0,179.0,0,Transient,67.69,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2017,March,11,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,223.0,0,Transient-Party,47.76,0,0,Check-Out,2020-03-03 -Resort Hotel,0,286,2016,October,44,29,1,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,81.26,0,1,Check-Out,2019-09-03 -City Hotel,0,0,2016,October,43,13,1,0,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,H,I,0,No Deposit,8.0,179.0,0,Transient,152.62,0,0,Check-Out,2019-06-03 -Resort Hotel,0,100,2015,October,42,1,2,7,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,87.0,179.0,0,Transient,59.82,0,0,Check-Out,2018-08-03 -City Hotel,0,254,2016,October,43,23,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,313.0,179.0,0,Transient-Party,89.76,0,0,Check-Out,2018-09-02 -City Hotel,1,385,2017,November,21,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,63,Transient,60.99,0,0,Canceled,2019-09-03 -City Hotel,0,9,2017,June,20,5,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,102.15,0,1,Check-Out,2020-05-03 -Resort Hotel,0,103,2015,November,53,8,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,42,Transient,45.0,0,2,Check-Out,2019-10-04 -Resort Hotel,1,56,2017,February,10,13,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,60.59,0,0,Canceled,2019-10-04 -City Hotel,1,48,2016,March,10,20,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.59,0,0,Canceled,2019-03-04 -City Hotel,0,50,2016,September,43,2,2,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,79.89,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2016,October,43,8,1,1,1,0.0,0,BB,GBR,Complementary,Direct,0,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,0,51,2017,March,8,5,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,215.0,0,1,Check-Out,2020-04-02 -City Hotel,1,17,2016,September,36,20,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,99.55,0,0,Canceled,2019-06-03 -City Hotel,0,25,2015,October,44,7,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,219.0,179.0,0,Transient-Party,33.93,0,0,Check-Out,2018-08-03 -City Hotel,0,46,2016,September,27,19,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,F,1,No Deposit,16.0,65.0,0,Transient,94.0,0,0,Check-Out,2019-03-04 -City Hotel,1,109,2016,December,50,25,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,74.4,0,0,Canceled,2019-09-03 -City Hotel,1,53,2016,May,21,16,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,40,Transient,83.98,0,0,Canceled,2019-03-04 -City Hotel,0,21,2016,August,38,26,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,153.22,1,2,Check-Out,2019-05-04 -Resort Hotel,0,24,2016,May,29,30,1,1,3,2.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,2,No Deposit,246.0,179.0,0,Transient,205.8,0,1,Check-Out,2019-06-03 -City Hotel,0,1,2017,June,23,18,0,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,2.47,0,0,Check-Out,2020-07-03 -City Hotel,1,81,2015,August,37,10,2,2,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,68.79,0,1,Canceled,2018-08-03 -Resort Hotel,0,210,2016,April,22,13,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,285.0,179.0,75,Transient,182.45,1,0,Check-Out,2018-12-03 -City Hotel,1,216,2016,October,43,18,2,4,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,Non Refund,185.0,179.0,0,Transient,73.26,0,0,Canceled,2019-08-04 -Resort Hotel,1,322,2017,July,32,28,2,5,3,2.0,0,HB,AUT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient,147.01,0,1,Canceled,2020-04-02 -City Hotel,0,14,2017,July,32,28,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,167.13,0,3,Check-Out,2020-06-02 -Resort Hotel,0,290,2017,May,21,18,1,1,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,C,G,1,No Deposit,245.0,179.0,0,Transient,143.54,1,3,Check-Out,2020-04-02 -City Hotel,0,1,2015,September,43,16,2,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,103.06,1,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,November,44,23,0,1,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,E,0,No Deposit,197.0,331.0,0,Transient,39.46,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,August,34,13,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-12-03 -Resort Hotel,1,1,2017,January,2,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,76.0,0,Transient,46.25,0,0,Canceled,2019-11-03 -City Hotel,1,117,2016,November,49,12,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,68.58,0,0,Canceled,2019-04-03 -City Hotel,0,7,2016,June,25,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,73.09,0,1,Check-Out,2019-05-04 -City Hotel,0,5,2017,July,35,4,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.37,0,2,Check-Out,2020-06-02 -City Hotel,0,145,2017,July,32,27,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,November,17,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,14.0,45.0,0,Transient,31.99,0,0,Check-Out,2019-03-04 -City Hotel,1,323,2016,March,16,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,38,Transient,60.39,0,0,Canceled,2018-12-03 -Resort Hotel,0,112,2016,October,46,28,1,6,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,241.0,179.0,0,Transient,152.68,0,3,Check-Out,2019-11-03 -City Hotel,1,35,2016,January,11,6,2,3,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,253.0,179.0,24,Transient-Party,91.77,0,0,Check-Out,2019-10-04 -Resort Hotel,1,240,2015,October,40,2,2,5,1,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,33.28,0,0,Canceled,2018-08-03 -Resort Hotel,1,43,2017,August,33,21,1,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,249.0,179.0,0,Transient,233.74,0,0,Canceled,2020-06-02 -Resort Hotel,0,26,2017,March,11,31,0,3,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,No Deposit,13.0,223.0,0,Transient-Party,41.33,0,0,Check-Out,2020-04-02 -Resort Hotel,1,80,2017,August,39,5,2,5,2,0.0,0,BB,CN,Direct,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -City Hotel,0,256,2016,June,20,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,94.13,0,1,Check-Out,2019-05-04 -Resort Hotel,0,40,2017,July,30,24,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,198.0,179.0,0,Transient,128.73,0,0,Check-Out,2020-05-03 -Resort Hotel,0,3,2016,October,46,27,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,35.7,0,0,Check-Out,2018-08-03 -City Hotel,1,146,2015,June,18,29,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,73.08,0,0,Canceled,2018-09-02 -Resort Hotel,0,296,2016,September,38,9,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,137.0,179.0,0,Contract,157.74,0,0,Check-Out,2019-04-03 -Resort Hotel,0,17,2016,September,35,7,4,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,76.0,0,1,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,March,9,5,1,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.07,0,0,Check-Out,2020-02-01 -City Hotel,1,289,2015,August,36,25,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,155.98,0,0,Canceled,2018-05-03 -City Hotel,0,7,2016,June,27,15,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.74,0,2,Check-Out,2019-06-03 -City Hotel,1,63,2016,September,37,21,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,0,Transient,102.17,0,0,Canceled,2019-09-03 -City Hotel,1,409,2016,October,44,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,92.12,0,0,Canceled,2018-08-03 -City Hotel,0,45,2016,June,21,5,0,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,68.0,0,Transient,102.69,0,0,Check-Out,2020-04-02 -Resort Hotel,0,10,2016,July,37,25,2,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,239.0,179.0,0,Transient,184.85,1,3,Check-Out,2019-05-04 -City Hotel,0,53,2017,June,22,17,2,0,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,187.61,0,1,Check-Out,2020-03-03 -City Hotel,0,2,2016,January,8,29,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,16,Transient,36.22,0,0,Check-Out,2018-10-03 -Resort Hotel,0,80,2016,December,53,30,0,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,378.0,179.0,0,Transient-Party,74.14,0,1,Check-Out,2018-11-02 -City Hotel,0,1,2017,June,26,7,1,3,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,76.99,0,0,Canceled,2020-04-02 -Resort Hotel,0,49,2016,October,49,5,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,93.08,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2017,May,42,21,2,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,E,2,No Deposit,14.0,179.0,0,Transient,81.99,0,1,Check-Out,2019-11-03 -City Hotel,0,2,2017,June,33,19,0,1,1,0.0,0,BB,POL,Direct,Direct,0,0,0,H,F,0,No Deposit,14.0,179.0,0,Transient,161.27,1,0,Check-Out,2020-06-02 -Resort Hotel,1,93,2015,August,32,19,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,214.02,0,0,Canceled,2020-06-02 -City Hotel,0,247,2016,June,25,16,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,74.9,0,0,Check-Out,2019-05-04 -Resort Hotel,0,17,2016,September,44,27,2,5,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2016,December,51,15,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,111.3,0,0,Check-Out,2019-08-04 -Resort Hotel,1,52,2017,June,10,2,0,2,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,239.0,179.0,0,Transient,0.9,0,0,Canceled,2020-04-02 -City Hotel,1,340,2017,June,39,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,6.0,179.0,0,Transient,111.73,0,0,Canceled,2019-11-03 -City Hotel,0,102,2016,December,53,26,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,62,Transient-Party,88.17,0,1,Check-Out,2019-12-04 -City Hotel,0,32,2017,August,35,29,1,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,161.88,1,3,Check-Out,2020-07-03 -Resort Hotel,0,52,2016,November,21,23,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Group,61.91,0,2,Check-Out,2019-03-04 -Resort Hotel,1,127,2016,June,19,7,1,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Contract,81.45,0,0,No-Show,2019-01-03 -City Hotel,0,10,2016,January,5,3,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,62.09,0,1,Check-Out,2019-03-04 -City Hotel,0,47,2016,April,24,27,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,129.92,0,0,Check-Out,2019-05-04 -City Hotel,1,103,2017,August,35,25,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.16,0,2,Canceled,2019-09-03 -Resort Hotel,0,187,2016,May,26,18,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,61.63,0,0,Check-Out,2019-03-04 -City Hotel,0,108,2016,July,30,17,1,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.17,0,0,Check-Out,2019-03-04 -City Hotel,0,51,2016,April,16,9,2,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,86.2,0,0,Check-Out,2019-03-04 -City Hotel,1,159,2016,March,17,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,20,Transient,68.8,0,0,Canceled,2018-11-02 -Resort Hotel,0,60,2017,March,12,6,2,5,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,18.0,179.0,0,Transient,241.89,0,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2015,July,35,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,163.0,179.0,0,Transient-Party,62.46,0,1,Check-Out,2018-06-02 -City Hotel,0,13,2017,April,17,15,2,0,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.29,1,1,Check-Out,2020-04-02 -Resort Hotel,0,179,2016,March,17,25,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,69.54,0,0,Check-Out,2019-03-04 -City Hotel,0,8,2016,August,38,21,2,3,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,192.46,1,1,Check-Out,2019-06-03 -Resort Hotel,0,19,2015,September,42,31,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient-Party,93.53,1,0,Check-Out,2018-05-03 -City Hotel,0,94,2016,December,53,10,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,97.0,179.0,0,Transient,110.32,0,1,Check-Out,2019-11-03 -City Hotel,1,103,2016,June,20,14,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,35.0,179.0,0,Transient,73.62,0,0,Canceled,2019-02-01 -City Hotel,1,153,2017,July,29,18,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,84.53,0,0,Canceled,2017-11-02 -City Hotel,1,222,2016,September,36,2,0,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,136.47,0,3,Canceled,2019-08-04 -Resort Hotel,0,54,2017,May,21,9,1,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,C,2,No Deposit,312.0,179.0,0,Transient-Party,89.19,1,0,Check-Out,2020-03-03 -City Hotel,0,19,2016,October,45,15,1,2,1,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.7,0,0,Check-Out,2019-06-03 -Resort Hotel,0,16,2015,August,35,2,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-09-02 -Resort Hotel,1,98,2017,February,10,29,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,F,1,Non Refund,74.0,179.0,0,Transient,41.43,0,0,Canceled,2020-02-01 -Resort Hotel,0,254,2017,April,17,11,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,121.56,0,1,Check-Out,2020-03-03 -City Hotel,1,162,2015,December,50,6,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,42.71,0,0,Canceled,2018-10-03 -City Hotel,0,133,2016,December,53,28,2,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,31.0,179.0,0,Transient-Party,72.21,1,2,Check-Out,2019-11-03 -City Hotel,1,267,2016,August,39,15,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,172.23,0,0,Canceled,2019-05-04 -Resort Hotel,1,1,2016,November,49,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,247.0,0,Transient,58.71,0,0,Canceled,2019-10-04 -City Hotel,0,86,2017,August,31,6,2,4,2,1.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,93.32,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2017,February,11,14,1,0,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,41.51,0,2,Check-Out,2020-02-01 -City Hotel,1,8,2016,June,25,14,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,185.39,0,0,Canceled,2018-12-03 -Resort Hotel,0,11,2016,September,37,12,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,74.0,179.0,0,Transient,158.77,0,0,Check-Out,2019-04-03 -Resort Hotel,0,1,2015,February,36,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,3,No Deposit,147.0,179.0,0,Transient,44.78,0,0,Check-Out,2020-03-03 -Resort Hotel,0,290,2015,August,34,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Contract,60.85,0,1,Check-Out,2018-01-03 -Resort Hotel,1,156,2016,August,36,23,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,176.61,0,0,Canceled,2018-12-03 -City Hotel,0,1,2017,December,4,5,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,119.66,0,1,Check-Out,2020-06-02 -City Hotel,0,249,2016,October,42,12,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,103.7,0,2,Check-Out,2018-08-03 -Resort Hotel,0,102,2016,June,28,17,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,240.0,179.0,0,Transient,81.86,0,2,Check-Out,2019-03-04 -City Hotel,0,152,2017,June,34,27,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,101.4,0,2,Check-Out,2019-10-04 -City Hotel,1,93,2016,September,38,28,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.74,0,2,Canceled,2019-09-03 -Resort Hotel,0,141,2016,December,44,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,35.0,179.0,0,Transient-Party,64.18,0,1,Check-Out,2019-10-04 -City Hotel,0,3,2017,August,21,1,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,172.69,0,1,Check-Out,2020-07-03 -Resort Hotel,0,50,2015,December,53,10,2,1,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,100.72,0,0,Check-Out,2018-10-03 -Resort Hotel,0,4,2016,June,26,30,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,A,E,2,No Deposit,16.0,331.0,0,Transient,88.07,0,0,Check-Out,2019-06-03 -Resort Hotel,0,15,2017,February,11,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,62.28,0,0,Canceled,2019-04-03 -City Hotel,0,232,2016,October,43,16,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.79,0,1,Check-Out,2018-08-03 -Resort Hotel,1,319,2016,August,35,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient-Party,44.06,0,0,Canceled,2019-08-04 -City Hotel,1,41,2017,April,17,7,1,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.57,0,2,Canceled,2019-01-03 -City Hotel,0,2,2016,November,49,15,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,102.33,0,1,Check-Out,2019-10-04 -Resort Hotel,1,90,2016,July,21,5,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,184.32,0,0,Canceled,2019-02-01 -City Hotel,1,63,2015,December,49,5,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,313.0,179.0,0,Transient,73.73,0,1,Canceled,2019-01-03 -City Hotel,0,259,2017,August,38,18,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,238.2,1,2,Check-Out,2020-06-02 -City Hotel,0,1,2016,October,44,13,0,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,155.41,0,0,Check-Out,2019-08-04 -City Hotel,0,10,2017,February,9,5,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,44.53,0,0,Check-Out,2019-11-03 -Resort Hotel,0,90,2016,February,10,9,2,3,2,0.0,0,Undefined,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,93.07,0,0,Check-Out,2019-02-01 -City Hotel,1,33,2016,October,49,14,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.53,0,1,Canceled,2019-12-04 -Resort Hotel,0,51,2016,September,45,30,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,E,0,No Deposit,294.0,179.0,0,Transient,122.78,1,0,Check-Out,2019-09-03 -City Hotel,1,112,2017,March,11,10,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,60.48,0,0,Canceled,2020-02-01 -City Hotel,0,13,2016,May,28,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,60.42,0,0,Check-Out,2019-09-03 -Resort Hotel,1,308,2016,March,17,31,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Refundable,12.0,179.0,0,Transient-Party,74.4,0,0,Canceled,2019-01-03 -City Hotel,1,158,2016,March,9,22,0,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.78,0,0,Canceled,2019-03-04 -City Hotel,0,25,2017,June,26,21,2,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,220.25,1,1,Check-Out,2020-03-03 -City Hotel,1,318,2016,February,10,29,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,61.55,0,0,Canceled,2019-10-04 -Resort Hotel,1,12,2017,January,4,27,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,29.39,0,1,No-Show,2019-09-03 -Resort Hotel,0,315,2016,August,36,29,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,49.85,1,1,Check-Out,2019-05-04 -Resort Hotel,0,12,2015,December,50,6,2,5,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,204.0,331.0,0,Transient,40.87,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,January,9,26,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,92.0,179.0,0,Transient,42.29,0,1,Check-Out,2018-11-02 -City Hotel,0,48,2017,June,25,13,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.95,1,2,Check-Out,2020-05-03 -City Hotel,0,15,2016,March,21,26,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient-Party,62.24,0,0,Check-Out,2019-02-01 -Resort Hotel,0,81,2016,August,35,26,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,241.0,179.0,0,Transient,51.2,1,1,Check-Out,2018-09-02 -Resort Hotel,1,28,2016,August,37,30,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,155.33,0,1,No-Show,2019-05-04 -City Hotel,0,5,2016,March,23,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,227.0,0,Transient,88.87,1,2,Check-Out,2019-03-04 -City Hotel,0,0,2017,March,14,6,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,66.51,0,2,Check-Out,2019-04-03 -City Hotel,0,43,2017,July,32,12,2,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,112.63,0,2,Check-Out,2020-05-03 -City Hotel,1,104,2017,March,11,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,239.0,179.0,0,Transient,83.04,0,0,No-Show,2019-12-04 -Resort Hotel,0,0,2017,May,22,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,43.08,0,0,Check-Out,2020-04-02 -City Hotel,1,42,2016,March,10,15,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,80.59,0,0,Canceled,2018-12-03 -City Hotel,0,11,2016,December,52,6,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,95.38,0,2,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,August,36,28,2,1,1,0.0,0,BB,GBR,Groups,TA/TO,1,0,1,A,A,0,No Deposit,164.0,179.0,0,Group,75.03,0,1,Check-Out,2020-07-03 -City Hotel,0,41,2016,August,36,26,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,131.74,0,1,Check-Out,2019-05-04 -Resort Hotel,0,137,2016,March,15,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,67.46,0,0,Check-Out,2019-04-03 -City Hotel,1,266,2017,June,27,25,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,205.76,0,1,Canceled,2020-06-02 -City Hotel,0,28,2016,September,34,25,2,2,1,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.47,0,1,Check-Out,2019-05-04 -City Hotel,0,0,2017,February,7,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,1,No Deposit,16.0,179.0,0,Transient,46.56,1,0,Check-Out,2019-12-04 -Resort Hotel,0,111,2017,August,33,5,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,244.24,1,2,Check-Out,2020-06-02 -City Hotel,0,94,2016,June,33,5,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,82.78,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,December,51,8,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,61.84,1,0,Check-Out,2018-11-02 -City Hotel,1,0,2017,June,33,20,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.99,0,0,Canceled,2020-04-02 -City Hotel,0,287,2017,June,25,9,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.51,0,1,Check-Out,2019-07-04 -Resort Hotel,0,13,2016,January,24,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,182.0,179.0,0,Transient-Party,61.84,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2016,May,21,15,0,1,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,68.0,0,Transient-Party,70.59,0,0,Check-Out,2019-03-04 -Resort Hotel,0,38,2016,April,18,28,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,107.88,0,0,Check-Out,2019-03-04 -City Hotel,0,33,2017,June,33,12,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,99.01,0,1,Check-Out,2020-07-03 -City Hotel,0,97,2016,May,22,25,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,98.61,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,July,31,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,62.7,0,2,Check-Out,2018-11-02 -City Hotel,0,41,2015,December,51,22,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,59.35,0,3,Check-Out,2018-08-03 -City Hotel,1,50,2017,March,9,20,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,109.71,0,0,Canceled,2019-11-03 -City Hotel,0,240,2016,November,49,13,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,95.0,179.0,0,Transient,79.03,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,January,5,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,242.0,179.0,0,Group,98.42,0,1,Check-Out,2018-10-03 -City Hotel,0,11,2016,December,50,21,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,121.36,0,0,Check-Out,2019-11-03 -Resort Hotel,0,102,2016,December,50,20,2,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,1,0,0,D,A,0,No Deposit,228.0,179.0,0,Group,30.12,1,3,Check-Out,2019-10-04 -City Hotel,1,46,2016,October,23,26,1,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,121.59,0,0,Canceled,2019-11-03 -Resort Hotel,0,110,2017,April,16,13,2,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,157.76,0,0,Check-Out,2020-03-03 -City Hotel,1,84,2016,December,53,29,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,78.15,0,1,Canceled,2019-12-04 -City Hotel,0,163,2017,June,35,12,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,112.94,0,0,Check-Out,2019-11-03 -City Hotel,0,10,2017,October,49,21,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,109.47,0,0,Check-Out,2019-10-04 -City Hotel,1,149,2016,April,16,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,157.0,179.0,19,Transient,120.79,0,0,Canceled,2019-01-03 -City Hotel,1,59,2017,March,21,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,76.0,179.0,0,Transient,84.27,0,2,Canceled,2019-12-04 -Resort Hotel,1,240,2016,March,20,31,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Refundable,11.0,179.0,0,Transient-Party,86.93,0,0,Canceled,2019-03-04 -City Hotel,1,169,2017,January,3,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,121.29,0,0,Canceled,2019-11-03 -Resort Hotel,1,102,2017,March,17,10,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,200.0,179.0,0,Transient,105.36,0,0,Canceled,2019-11-03 -Resort Hotel,1,294,2016,August,36,2,2,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,85.59,0,1,Canceled,2019-07-04 -Resort Hotel,0,95,2015,August,34,7,2,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,251.0,179.0,0,Transient,244.57,1,3,Check-Out,2018-05-03 -City Hotel,0,150,2017,July,26,27,2,5,2,2.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,24.0,179.0,0,Contract,163.02,0,1,Check-Out,2020-03-03 -City Hotel,0,16,2016,March,16,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,13.0,225.0,0,Transient,61.03,1,0,Check-Out,2019-04-03 -Resort Hotel,0,11,2016,June,23,31,2,5,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,68.47,1,0,Check-Out,2019-06-03 -Resort Hotel,0,87,2016,December,44,5,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,86.66,0,1,Check-Out,2019-09-03 -City Hotel,1,252,2017,June,24,21,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,100.75,0,2,Canceled,2020-04-02 -Resort Hotel,1,6,2017,January,2,3,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,78.0,0,Transient,34.19,0,1,Canceled,2020-01-04 -City Hotel,1,115,2016,June,28,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,140.0,179.0,0,Transient,118.53,0,0,Canceled,2019-02-01 -City Hotel,1,104,2017,March,9,21,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,75.14,0,1,Canceled,2020-03-03 -City Hotel,1,12,2015,October,43,30,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,76.0,179.0,0,Transient,123.38,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,October,43,24,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,113.6,1,1,Check-Out,2019-07-04 -Resort Hotel,1,1,2015,August,36,21,0,2,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,1.05,1,0,Canceled,2018-06-02 -City Hotel,1,46,2016,December,53,19,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,22,Transient,76.08,0,0,Canceled,2018-11-02 -City Hotel,1,51,2016,October,22,29,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.42,0,0,Canceled,2018-06-02 -Resort Hotel,0,50,2016,October,43,17,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,63.12,1,1,Check-Out,2019-06-03 -City Hotel,0,11,2016,March,10,21,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,7.0,179.0,0,Transient,66.91,0,1,Check-Out,2019-01-03 -City Hotel,0,149,2017,April,22,19,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,0,Transient,127.35,0,1,Check-Out,2020-03-03 -Resort Hotel,1,196,2017,July,32,9,2,2,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,154.21,0,1,Canceled,2019-12-04 -City Hotel,1,152,2017,July,36,21,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.29,0,0,Canceled,2019-11-03 -Resort Hotel,1,61,2015,July,43,27,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,0.0,0,0,Canceled,2018-06-02 -City Hotel,0,1,2017,May,22,28,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,G,K,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,124,2016,April,16,9,2,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient-Party,76.58,0,0,Check-Out,2019-06-03 -City Hotel,1,106,2016,March,45,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,13,Transient,68.59,0,0,Canceled,2018-11-02 -City Hotel,0,59,2017,March,8,10,2,3,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,30.0,179.0,0,Transient,65.46,0,1,Check-Out,2020-02-01 -Resort Hotel,0,53,2016,November,51,23,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,352.0,179.0,0,Transient,57.59,0,0,Check-Out,2019-09-03 -City Hotel,1,106,2016,May,23,27,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient-Party,97.85,0,0,Canceled,2019-01-03 -Resort Hotel,0,198,2015,October,43,5,2,7,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,3,No Deposit,15.0,179.0,0,Transient-Party,127.36,0,0,Check-Out,2018-08-03 -City Hotel,1,25,2016,February,3,20,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.58,0,0,No-Show,2019-03-04 -Resort Hotel,1,94,2017,May,34,13,2,5,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,243.0,179.0,0,Transient,211.03,0,3,Canceled,2020-04-02 -Resort Hotel,0,207,2017,July,36,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,121.93,0,1,Check-Out,2020-07-03 -City Hotel,0,26,2017,January,53,25,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient,113.81,0,2,Check-Out,2019-12-04 -Resort Hotel,0,191,2016,September,43,30,2,10,1,0.0,0,BB,CN,Groups,TA/TO,0,0,0,D,D,0,No Deposit,178.0,179.0,0,Transient,77.3,0,0,Check-Out,2019-08-04 -City Hotel,0,48,2016,August,36,10,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.26,0,1,Check-Out,2019-07-04 -Resort Hotel,0,113,2017,May,21,7,1,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,0,39,2015,October,49,18,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,118.45,0,0,Check-Out,2019-07-04 -City Hotel,0,256,2016,April,26,15,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,139.01,0,0,Check-Out,2019-02-01 -City Hotel,0,85,2016,August,35,13,2,5,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,112.75,0,2,Check-Out,2019-06-03 -Resort Hotel,0,119,2016,March,17,30,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,323.0,179.0,0,Transient,125.25,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2015,December,51,2,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,64.21,0,0,Check-Out,2018-07-03 -Resort Hotel,0,19,2015,November,45,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,42.32,1,1,Check-Out,2018-08-03 -City Hotel,0,158,2016,September,45,30,4,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,165.0,179.0,0,Transient,122.94,0,0,Check-Out,2019-08-04 -Resort Hotel,0,34,2016,April,15,31,0,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,51.62,1,2,Check-Out,2019-03-04 -City Hotel,0,12,2017,March,17,28,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Contract,130.58,0,0,Check-Out,2020-03-03 -Resort Hotel,0,6,2016,October,44,10,2,1,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,125.87,0,2,Check-Out,2019-06-03 -City Hotel,0,1,2016,October,46,29,1,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,194.73,0,3,Check-Out,2019-08-04 -City Hotel,0,5,2017,April,11,28,0,3,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,121.86,1,0,Check-Out,2020-02-01 -Resort Hotel,0,96,2016,November,35,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,239.0,179.0,0,Transient,97.91,1,2,Check-Out,2019-09-03 -City Hotel,1,56,2016,March,17,12,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.4,0,1,Canceled,2019-03-04 -City Hotel,0,351,2016,November,21,17,0,1,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,76.31,0,0,Check-Out,2019-11-03 -City Hotel,0,147,2015,September,35,15,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.17,0,1,Check-Out,2018-08-03 -City Hotel,1,247,2015,October,44,16,2,5,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,39.31,0,1,Canceled,2018-08-03 -City Hotel,0,15,2017,June,25,27,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,156.0,179.0,0,Transient,4.53,0,0,Check-Out,2020-03-03 -City Hotel,0,38,2016,March,2,29,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.92,0,0,Check-Out,2019-02-01 -Resort Hotel,0,12,2016,January,5,2,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,61.05,0,1,Check-Out,2018-11-02 -Resort Hotel,0,96,2015,December,53,30,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,74.13,0,2,Check-Out,2018-11-02 -City Hotel,1,195,2016,June,28,20,1,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,139.0,179.0,0,Transient,84.45,0,0,Canceled,2019-02-01 -City Hotel,0,45,2016,May,25,12,2,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.72,0,2,Check-Out,2019-03-04 -Resort Hotel,1,7,2016,January,3,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,291.0,179.0,0,Transient,61.34,0,1,No-Show,2018-11-02 -Resort Hotel,0,144,2017,August,35,27,0,5,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,122.67,0,0,Check-Out,2020-06-02 -Resort Hotel,1,101,2017,August,38,2,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,168.42,0,1,Canceled,2020-05-03 -City Hotel,0,45,2015,December,51,24,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,13.0,179.0,0,Transient-Party,75.75,0,0,Check-Out,2018-12-03 -City Hotel,0,178,2017,May,20,6,0,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,222.95,1,3,Check-Out,2020-04-02 -Resort Hotel,0,50,2015,December,51,22,2,4,1,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,53.7,0,0,Check-Out,2019-01-03 -Resort Hotel,1,39,2016,December,50,2,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,12.0,230.0,0,Transient,60.82,0,0,Canceled,2019-06-03 -City Hotel,0,41,2016,March,16,4,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.51,1,1,Check-Out,2020-04-02 -City Hotel,1,104,2016,December,53,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.75,0,0,Canceled,2019-10-04 -City Hotel,0,15,2017,August,36,6,0,1,1,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,109.13,0,1,Check-Out,2020-07-03 -City Hotel,0,157,2016,June,27,18,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.36,0,0,Check-Out,2019-05-04 -City Hotel,1,0,2017,February,3,29,3,0,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,71.36,0,0,No-Show,2019-09-03 -City Hotel,0,50,2017,August,37,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.42,0,2,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,May,16,21,0,1,1,0.0,0,HB,PRT,Complementary,Direct,0,0,0,D,I,3,No Deposit,12.0,179.0,0,Transient,123.66,1,1,Check-Out,2018-12-03 -Resort Hotel,0,40,2017,April,27,15,0,3,3,1.0,0,BB,USA,Direct,TA/TO,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-04-03 -City Hotel,0,152,2016,February,10,27,0,3,2,0.0,0,BB,DEU,Corporate,TA/TO,0,0,0,A,E,1,No Deposit,12.0,179.0,75,Transient-Party,62.06,0,0,Check-Out,2018-12-03 -Resort Hotel,0,168,2017,June,25,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Contract,99.82,1,1,Check-Out,2020-02-01 -City Hotel,0,236,2016,July,32,13,0,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,73.64,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2017,May,22,28,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,0.4,1,2,Check-Out,2020-02-01 -City Hotel,1,134,2017,July,25,5,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,128.68,0,3,Canceled,2020-06-02 -Resort Hotel,0,36,2016,September,35,24,4,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,179.74,0,0,Check-Out,2019-08-04 -City Hotel,1,156,2016,May,22,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,33.39,0,0,Canceled,2019-02-01 -Resort Hotel,0,93,2016,January,6,28,1,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,4.46,1,0,Check-Out,2018-11-02 -City Hotel,0,43,2017,August,36,28,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.57,1,2,Check-Out,2020-07-03 -City Hotel,1,192,2016,May,21,27,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient-Party,77.27,0,0,Canceled,2018-09-02 -Resort Hotel,0,0,2016,April,23,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,68.31,0,0,Check-Out,2020-03-03 -Resort Hotel,0,47,2015,December,50,27,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,63.5,1,0,Check-Out,2019-10-04 -Resort Hotel,0,253,2016,June,42,30,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,105.31,0,2,Check-Out,2019-08-04 -Resort Hotel,0,12,2017,March,11,9,1,0,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,61.08,1,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2016,May,22,27,2,5,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient,74.74,0,0,Check-Out,2019-03-04 -City Hotel,0,113,2016,November,9,6,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,100.7,0,0,Check-Out,2019-11-03 -Resort Hotel,1,116,2015,July,26,28,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,11.0,179.0,0,Transient,75.25,0,0,Canceled,2019-01-03 -City Hotel,1,7,2016,June,27,19,1,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,H,0,No Deposit,12.0,179.0,0,Transient,109.22,0,0,No-Show,2019-02-01 -City Hotel,0,9,2016,July,32,21,0,1,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,152.95,0,1,Check-Out,2018-06-02 -City Hotel,0,166,2017,June,23,27,1,3,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,9.0,179.0,0,Transient,218.39,0,1,Check-Out,2020-05-03 -City Hotel,1,350,2016,May,22,28,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,70.12,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2015,November,43,5,0,2,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,176.07,0,1,Check-Out,2018-11-02 -City Hotel,0,0,2015,October,44,23,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,88.64,0,0,Check-Out,2018-07-03 -City Hotel,1,283,2017,June,37,8,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,11.0,179.0,0,Transient,131.24,0,0,Canceled,2020-05-03 -Resort Hotel,1,48,2015,December,53,17,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,154.95,0,2,Canceled,2019-03-04 -City Hotel,0,111,2017,May,21,11,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,10.0,179.0,0,Group,120.96,0,1,Check-Out,2020-04-02 -City Hotel,1,5,2017,July,32,20,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,158.89,0,0,Canceled,2020-05-03 -City Hotel,1,46,2017,May,22,31,2,1,2,2.0,0,BB,GBR,Groups,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,185.21,0,0,Canceled,2020-01-04 -City Hotel,0,7,2017,June,28,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,E,E,0,No Deposit,32.0,179.0,0,Group,123.49,0,0,Check-Out,2019-03-04 -City Hotel,1,159,2016,March,16,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,41,Transient,74.85,0,0,Canceled,2018-10-03 -City Hotel,0,1,2016,June,21,23,0,1,1,0.0,0,BB,DEU,Aviation,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,0,Transient,105.86,0,0,Canceled,2019-02-01 -City Hotel,1,158,2017,March,9,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,90.41,0,0,Canceled,2019-10-04 -City Hotel,0,1,2017,May,17,24,2,0,1,0.0,0,BB,PRT,Corporate,GDS,0,0,0,A,A,0,No Deposit,31.0,331.0,0,Transient-Party,76.11,0,0,Check-Out,2020-02-01 -City Hotel,1,207,2015,July,31,19,2,2,2,0.0,0,HB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,63.33,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,July,26,10,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.65,0,0,Check-Out,2019-06-03 -City Hotel,0,36,2016,April,17,5,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.36,0,0,Check-Out,2019-02-01 -Resort Hotel,0,14,2016,March,11,9,0,2,2,0.0,0,Undefined,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient-Party,63.8,0,0,Check-Out,2019-02-01 -Resort Hotel,1,308,2017,February,9,24,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,173.0,179.0,0,Transient,177.93,0,0,Canceled,2020-03-03 -City Hotel,1,15,2017,January,9,24,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,243.0,0,Transient,77.5,0,0,No-Show,2020-02-01 -City Hotel,1,38,2016,November,49,8,0,1,1,0.0,0,BB,,Online TA,Corporate,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,125.56,0,0,Canceled,2019-09-03 -Resort Hotel,0,160,2017,February,11,5,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient-Party,63.96,0,0,Check-Out,2019-12-04 -City Hotel,0,237,2015,October,42,10,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,28.0,179.0,0,Transient-Party,77.28,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2016,May,45,2,0,4,1,0.0,0,BB,BRA,Complementary,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,118.37,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,June,22,4,2,7,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,L,0,No Deposit,15.0,160.0,0,Transient,90.49,0,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,February,28,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,3,No Deposit,15.0,77.0,0,Transient,34.02,1,0,Check-Out,2018-12-03 -City Hotel,1,170,2017,July,34,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,115.07,0,0,Canceled,2020-07-03 -City Hotel,1,61,2015,September,36,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.55,0,0,Canceled,2018-05-03 -Resort Hotel,0,1,2016,February,9,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,150.0,179.0,0,Transient,73.78,0,0,Check-Out,2018-11-02 -City Hotel,1,240,2015,August,18,12,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,42,Transient,72.68,0,0,Canceled,2018-12-03 -Resort Hotel,0,55,2016,July,26,27,2,3,2,1.0,0,HB,IRL,Online TA,TA/TO,1,0,0,C,I,0,No Deposit,238.0,179.0,0,Transient,0.49,0,3,Check-Out,2020-02-01 -City Hotel,0,0,2017,May,21,18,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,0,No Deposit,14.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-03-03 -Resort Hotel,0,55,2017,August,38,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,39.74,1,0,Check-Out,2020-07-03 -City Hotel,1,26,2016,November,45,13,0,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,9.0,179.0,0,Transient,71.76,0,0,Canceled,2019-10-04 -City Hotel,1,230,2017,July,26,22,2,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.71,0,1,Canceled,2020-03-03 -City Hotel,0,13,2017,March,16,10,1,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.5,0,1,Check-Out,2020-03-03 -Resort Hotel,1,55,2017,July,39,20,1,2,2,2.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,0,No Deposit,251.0,179.0,0,Transient,173.82,0,0,Canceled,2020-02-01 -Resort Hotel,0,93,2015,July,32,14,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,C,2,No Deposit,16.0,179.0,0,Transient,200.69,0,3,Check-Out,2018-06-02 -City Hotel,1,154,2015,July,34,15,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,1,A,F,0,No Deposit,9.0,179.0,0,Transient,124.95,0,0,No-Show,2017-12-03 -City Hotel,1,10,2016,January,3,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,95.88,0,0,No-Show,2018-11-02 -City Hotel,1,152,2017,December,53,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,92.72,0,0,Canceled,2019-10-04 -City Hotel,0,249,2015,September,32,6,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.96,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,October,46,3,0,4,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.84,0,0,Check-Out,2019-08-04 -Resort Hotel,0,294,2016,September,44,3,0,2,2,0.0,0,HB,AUT,Online TA,TA/TO,1,0,0,A,G,1,No Deposit,240.0,179.0,0,Transient-Party,53.5,1,2,Check-Out,2019-05-04 -Resort Hotel,0,17,2016,April,45,26,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,115.6,0,2,Check-Out,2020-02-01 -Resort Hotel,0,88,2017,June,25,28,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,86.84,0,0,Check-Out,2020-04-02 -Resort Hotel,0,151,2016,March,16,31,0,3,2,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,62.83,0,0,Check-Out,2019-02-01 -City Hotel,0,14,2017,August,33,6,2,0,2,2.0,0,SC,DEU,Online TA,TA/TO,0,0,0,G,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,366,2017,July,37,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,66.32,0,1,Check-Out,2020-05-03 -City Hotel,0,13,2015,December,50,6,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,61,Transient-Party,95.42,0,0,Check-Out,2019-01-03 -City Hotel,0,253,2017,June,32,12,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.06,0,1,Check-Out,2020-06-02 -Resort Hotel,0,39,2017,May,4,15,0,5,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,2,No Deposit,249.0,179.0,0,Transient,41.64,1,3,Check-Out,2019-11-03 -Resort Hotel,0,145,2017,April,17,6,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,64.51,1,2,Check-Out,2020-04-02 -City Hotel,0,0,2016,March,11,13,1,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,63.3,0,1,Check-Out,2018-11-02 -Resort Hotel,0,42,2015,September,50,9,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,116.94,0,0,Check-Out,2018-08-03 -City Hotel,0,234,2016,October,44,14,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.33,0,1,Check-Out,2019-07-04 -City Hotel,1,101,2016,May,20,6,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,77.72,0,0,Canceled,2019-01-03 -City Hotel,0,10,2016,June,26,5,1,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,114.62,0,0,Check-Out,2019-02-01 -City Hotel,1,44,2016,April,16,13,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,99.81,0,1,Canceled,2018-11-02 -Resort Hotel,0,38,2017,April,10,10,0,7,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,251.0,179.0,0,Transient,78.63,0,0,Check-Out,2020-04-02 -City Hotel,1,19,2017,June,22,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,119.51,0,0,Canceled,2020-04-02 -Resort Hotel,0,0,2016,April,16,5,2,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,I,1,No Deposit,241.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-02-01 -Resort Hotel,0,42,2015,November,52,18,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,E,1,No Deposit,17.0,262.0,0,Transient-Party,107.18,1,0,Check-Out,2018-10-03 -City Hotel,0,90,2016,June,31,5,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,121.69,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,March,14,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,13.0,179.0,0,Transient,76.82,1,0,Check-Out,2018-11-02 -City Hotel,0,22,2016,October,43,13,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,91.71,0,0,Check-Out,2019-04-03 -City Hotel,0,17,2016,October,43,24,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.07,0,0,Check-Out,2019-04-03 -City Hotel,0,148,2016,June,25,21,0,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,136.79,0,0,Check-Out,2019-02-01 -Resort Hotel,1,2,2017,July,3,15,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,2019-11-03 -City Hotel,0,3,2017,March,11,15,0,1,1,0.0,0,SC,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,331.0,0,Transient,71.25,0,0,Check-Out,2020-02-01 -Resort Hotel,0,141,2016,March,15,9,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,77.67,1,1,Check-Out,2019-04-03 -City Hotel,0,49,2016,October,46,31,0,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,105.39,0,1,Check-Out,2019-08-04 -Resort Hotel,0,35,2016,July,32,16,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,239.0,179.0,0,Transient,220.81,0,3,Check-Out,2019-03-04 -Resort Hotel,0,88,2015,November,37,16,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,42.4,0,0,Canceled,2018-09-02 -City Hotel,0,93,2017,February,10,24,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,94.14,0,2,Check-Out,2019-11-03 -Resort Hotel,0,220,2016,June,26,21,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Transient,66.38,0,0,Check-Out,2019-02-01 -Resort Hotel,0,172,2017,June,32,27,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,128.98,0,1,Check-Out,2020-03-03 -City Hotel,0,160,2017,April,22,29,2,5,2,1.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,156.72,1,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,August,37,13,2,4,1,0.0,0,BB,,Aviation,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,230.0,0,0,Check-Out,2019-05-04 -City Hotel,1,50,2016,November,43,5,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,65,Transient,97.67,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,February,10,13,0,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,2,No Deposit,16.0,179.0,0,Transient,44.39,0,0,Check-Out,2019-03-04 -City Hotel,0,49,2016,April,23,11,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,28.0,179.0,0,Transient,73.07,0,0,Check-Out,2019-01-03 -City Hotel,1,292,2016,December,51,22,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.88,0,1,Canceled,2019-10-04 -Resort Hotel,0,155,2017,June,27,15,0,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,116.83,0,3,Check-Out,2020-03-03 -City Hotel,0,70,2017,April,18,12,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,7.0,179.0,0,Contract,76.95,0,0,Canceled,2020-02-01 -City Hotel,1,85,2015,October,42,29,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.08,0,0,Canceled,2018-08-03 -City Hotel,0,35,2015,October,43,24,0,2,2,2.0,0,HB,ESP,Groups,Direct,0,0,0,C,C,3,No Deposit,13.0,179.0,0,Transient-Party,158.52,0,0,Check-Out,2018-08-03 -Resort Hotel,1,402,2016,October,45,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Transient,65.38,0,0,Canceled,2019-11-03 -Resort Hotel,0,1,2017,June,31,27,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,366.0,179.0,0,Transient,195.46,0,1,Check-Out,2020-02-01 -City Hotel,1,156,2015,August,36,20,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,88.11,0,0,Canceled,2019-07-04 -Resort Hotel,0,10,2016,March,11,29,0,6,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,32.37,1,0,Check-Out,2019-12-04 -City Hotel,1,35,2016,December,49,6,0,1,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,0.83,0,0,Canceled,2019-12-04 -Resort Hotel,0,24,2015,December,50,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient-Party,93.37,0,0,Check-Out,2018-08-03 -City Hotel,0,383,2016,May,45,2,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,171.0,179.0,0,Transient-Party,159.91,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2017,February,12,22,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,45.0,0,Transient,123.99,0,0,Check-Out,2018-10-03 -City Hotel,1,48,2015,August,53,28,0,2,2,0.0,0,SC,USA,Online TA,Undefined,0,0,0,B,B,2,No Deposit,13.0,179.0,0,Transient-Party,65.68,0,2,Canceled,2019-01-03 -Resort Hotel,0,295,2016,October,40,10,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,294.0,179.0,0,Contract,40.02,0,0,Check-Out,2018-08-03 -Resort Hotel,0,141,2016,March,17,9,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,70.2,0,0,Check-Out,2019-03-04 -Resort Hotel,0,164,2017,August,37,19,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,95.0,179.0,0,Transient,178.88,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,March,11,17,2,0,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,71.23,0,1,Check-Out,2020-03-03 -City Hotel,0,251,2017,August,44,9,2,1,1,0.0,0,BB,CN,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,132.3,0,0,Check-Out,2019-11-03 -City Hotel,0,101,2017,May,20,21,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.49,0,0,Check-Out,2020-03-03 -City Hotel,1,0,2017,May,21,9,2,0,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,2.26,0,2,Canceled,2020-04-02 -City Hotel,1,16,2016,August,38,4,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,111.84,0,1,Check-Out,2019-07-04 -City Hotel,1,257,2016,March,10,17,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,75.95,0,0,Canceled,2019-02-01 -City Hotel,1,2,2017,January,2,18,1,0,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,59.28,0,0,Canceled,2018-10-03 -Resort Hotel,1,152,2016,March,17,30,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,B,0,Refundable,11.0,179.0,0,Transient-Party,63.56,0,0,Canceled,2019-01-03 -City Hotel,1,83,2015,August,32,5,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,115.04,0,0,Canceled,2018-05-03 -City Hotel,0,15,2016,December,51,6,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.9,0,2,Check-Out,2019-06-03 -Resort Hotel,0,57,2017,August,26,2,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,71.15,0,1,Check-Out,2019-06-03 -Resort Hotel,1,10,2017,May,22,10,2,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,312.0,179.0,0,Transient-Party,80.96,0,0,Canceled,2020-02-01 -Resort Hotel,0,3,2016,July,38,27,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient-Party,2.28,1,1,Check-Out,2018-06-02 -Resort Hotel,0,50,2016,September,42,20,2,1,3,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,158.2,1,2,Check-Out,2019-06-03 -City Hotel,0,48,2017,July,28,6,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.19,0,1,Check-Out,2020-06-02 -City Hotel,0,4,2016,February,10,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,Non Refund,15.0,179.0,0,Transient,101.16,1,0,Check-Out,2019-02-01 -City Hotel,0,151,2016,July,26,15,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,134.0,179.0,0,Contract,165.47,0,0,Check-Out,2020-02-01 -City Hotel,1,3,2016,November,50,1,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,198.0,179.0,0,Transient,86.79,0,0,Canceled,2019-02-01 -City Hotel,1,3,2015,September,39,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,105.94,0,0,Canceled,2018-07-03 -Resort Hotel,0,196,2016,October,46,11,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.59,0,0,Check-Out,2019-08-04 -Resort Hotel,0,146,2016,June,28,30,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,130.21,1,2,Check-Out,2019-05-04 -City Hotel,0,36,2016,September,45,9,2,5,3,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,114.56,0,2,Check-Out,2019-08-04 -City Hotel,0,0,2016,January,12,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,74.94,0,3,Check-Out,2018-10-03 -Resort Hotel,1,48,2015,October,51,10,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,D,0,Non Refund,16.0,179.0,0,Transient,62.34,0,0,Canceled,2019-01-03 -City Hotel,1,326,2017,June,28,18,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,71.66,0,0,Canceled,2018-12-03 -City Hotel,0,8,2017,June,25,6,1,0,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.38,0,0,Check-Out,2020-03-03 -Resort Hotel,0,56,2016,September,43,9,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-07-04 -Resort Hotel,0,100,2017,May,27,14,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,124.62,0,3,Check-Out,2020-04-02 -Resort Hotel,0,139,2016,March,11,16,1,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,B,0,Refundable,13.0,222.0,0,Transient-Party,37.92,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,October,41,12,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,238.0,0,Transient,95.48,0,0,Check-Out,2019-10-04 -City Hotel,1,237,2015,July,37,13,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.05,0,0,Canceled,2018-07-03 -City Hotel,0,0,2017,April,17,6,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,223.0,0,Transient,92.71,0,0,Check-Out,2020-02-01 -City Hotel,1,37,2017,March,16,9,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,19,Transient,85.26,0,0,Canceled,2018-10-03 -Resort Hotel,0,190,2017,August,37,6,1,5,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,78.71,0,1,Check-Out,2020-06-02 -City Hotel,0,251,2016,July,34,10,0,5,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,233.08,0,1,Check-Out,2019-08-04 -Resort Hotel,0,245,2016,April,25,2,2,5,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,134.0,179.0,0,Transient-Party,68.47,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2017,July,31,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,223.59,0,2,Check-Out,2020-04-02 -City Hotel,0,18,2017,July,38,28,2,5,3,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.51,0,0,Check-Out,2019-11-03 -City Hotel,1,37,2016,September,45,30,0,2,3,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,211.03,0,0,Canceled,2019-07-04 -City Hotel,0,8,2016,December,9,5,2,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,71.37,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2017,March,12,13,1,2,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,331.0,75,Transient-Party,24.2,1,0,Check-Out,2020-01-04 -City Hotel,1,409,2016,June,35,4,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,113.73,0,0,Canceled,2019-07-04 -City Hotel,1,259,2016,June,24,12,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,130.4,0,0,Canceled,2019-01-03 -Resort Hotel,0,152,2016,October,28,28,3,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,120.41,0,0,Check-Out,2019-09-03 -City Hotel,0,12,2016,October,45,25,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.97,0,0,Check-Out,2019-08-04 -Resort Hotel,0,23,2016,October,41,28,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,167.0,179.0,0,Transient-Party,132.58,0,0,Check-Out,2019-07-04 -Resort Hotel,0,45,2017,May,37,31,0,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,F,D,0,No Deposit,17.0,179.0,0,Transient,153.61,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,July,30,5,2,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,C,1,No Deposit,15.0,179.0,0,Transient,35.7,0,0,Check-Out,2018-05-03 -City Hotel,1,107,2016,May,17,6,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,103.97,0,0,Canceled,2019-01-03 -City Hotel,0,33,2015,December,50,18,2,3,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient-Party,70.59,0,0,Check-Out,2018-09-02 -City Hotel,0,18,2016,October,19,16,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.42,0,2,Check-Out,2019-06-03 -City Hotel,0,161,2016,August,38,9,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,133.06,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2015,October,45,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,81.0,179.0,0,Group,77.03,0,0,Check-Out,2018-08-03 -City Hotel,0,155,2016,August,35,28,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,80.26,1,1,Check-Out,2018-07-03 -Resort Hotel,0,1,2017,June,27,12,0,10,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,E,E,2,No Deposit,244.0,331.0,0,Transient,81.99,1,0,Check-Out,2020-04-02 -City Hotel,0,40,2016,June,11,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,125.69,0,0,Check-Out,2018-10-03 -City Hotel,0,4,2016,March,17,25,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-03-04 -City Hotel,1,53,2017,April,16,10,2,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,132.43,0,2,Canceled,2020-02-01 -City Hotel,0,109,2016,January,32,15,0,2,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,240.45,1,1,Check-Out,2019-05-04 -Resort Hotel,0,97,2017,January,12,26,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient-Party,84.4,1,0,Check-Out,2019-10-04 -Resort Hotel,0,298,2016,December,51,8,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,40.0,179.0,0,Transient-Party,59.69,0,0,Check-Out,2019-06-03 -City Hotel,0,91,2016,August,42,20,2,3,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.34,0,0,Check-Out,2019-07-04 -City Hotel,1,147,2016,October,45,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,161.77,0,2,Canceled,2019-11-03 -City Hotel,1,61,2015,September,44,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,81.0,179.0,63,Transient,110.41,0,0,Canceled,2018-09-02 -City Hotel,1,16,2016,October,43,1,1,3,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,148.3,0,2,Canceled,2019-08-04 -City Hotel,0,65,2016,July,15,17,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,180.75,0,2,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,January,8,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,98.3,0,0,Check-Out,2019-02-01 -Resort Hotel,0,83,2016,May,28,24,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,92.0,179.0,0,Transient,68.07,0,0,Check-Out,2019-04-03 -City Hotel,1,148,2016,June,34,2,0,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,70.6,0,0,Canceled,2019-03-04 -City Hotel,0,22,2016,June,22,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient-Party,125.11,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,June,28,10,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,A,A,1,No Deposit,12.0,189.0,0,Transient,81.1,0,0,Check-Out,2019-07-04 -City Hotel,1,116,2017,June,34,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,127.14,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2015,July,36,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,103.01,0,0,Check-Out,2018-06-02 -City Hotel,0,12,2015,December,53,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,36.0,179.0,0,Transient-Party,63.02,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2015,December,53,31,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,60.8,0,0,Check-Out,2018-08-03 -City Hotel,1,1,2016,January,4,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,74.65,0,0,No-Show,2018-11-02 -City Hotel,0,0,2015,October,44,18,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,75.49,0,0,Check-Out,2018-08-03 -Resort Hotel,0,211,2016,April,17,20,2,4,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,325.0,179.0,0,Transient-Party,90.88,0,0,Check-Out,2019-01-03 -Resort Hotel,0,16,2016,October,45,28,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,67.79,0,0,Check-Out,2019-08-04 -Resort Hotel,0,2,2017,February,9,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,C,C,2,No Deposit,252.0,179.0,0,Transient,83.08,0,0,Check-Out,2020-05-03 -Resort Hotel,0,108,2017,April,22,6,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,238.0,179.0,0,Transient,106.17,0,1,Check-Out,2020-04-02 -City Hotel,0,36,2016,March,16,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,66.0,0,Transient,42.88,0,0,Check-Out,2019-03-04 -City Hotel,1,43,2017,March,10,16,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,72.1,0,0,Canceled,2019-12-04 -City Hotel,0,17,2015,September,36,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,62.98,0,0,Check-Out,2018-08-03 -Resort Hotel,0,40,2016,August,33,18,3,5,3,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,2,No Deposit,250.0,179.0,0,Transient,216.25,0,0,Check-Out,2019-08-04 -Resort Hotel,1,158,2016,July,14,2,2,5,2,0.0,0,FB,CN,Groups,TA/TO,0,0,0,A,A,0,Refundable,177.0,179.0,0,Transient-Party,83.84,0,0,Check-Out,2018-09-02 -Resort Hotel,1,238,2015,September,37,6,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,42.28,0,2,Canceled,2018-06-02 -Resort Hotel,0,228,2015,July,35,8,4,7,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,A,0,No Deposit,137.0,179.0,0,Contract,57.9,0,0,Check-Out,2018-08-03 -Resort Hotel,0,26,2016,March,16,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,I,2,Refundable,13.0,223.0,0,Transient,40.52,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2017,January,15,12,2,2,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.53,0,2,Check-Out,2020-05-03 -Resort Hotel,0,3,2017,June,23,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,68.17,0,1,Check-Out,2020-05-03 -City Hotel,1,273,2017,June,21,13,2,3,2,0.0,0,BB,SWE,Direct,TA/TO,0,0,0,B,G,1,No Deposit,12.0,179.0,75,Transient,137.5,0,0,Canceled,2020-02-01 -City Hotel,0,0,2016,August,38,29,0,1,1,0.0,0,HB,PRT,Complementary,Corporate,1,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,59,2017,December,50,28,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,24.0,179.0,0,Transient,102.09,0,0,Canceled,2019-11-03 -City Hotel,1,15,2016,March,11,10,1,0,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.81,0,0,No-Show,2019-03-04 -City Hotel,0,24,2016,March,10,10,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,B,0,No Deposit,10.0,179.0,0,Contract,153.12,0,2,Check-Out,2019-03-04 -City Hotel,0,99,2016,August,36,6,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.24,0,0,Check-Out,2019-06-03 -City Hotel,0,41,2016,October,44,15,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,160.52,0,3,Check-Out,2019-08-04 -City Hotel,1,424,2016,September,31,30,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,41,Transient,102.14,0,0,Canceled,2019-01-03 -City Hotel,1,49,2016,March,11,22,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.6,0,0,Canceled,2018-11-02 -City Hotel,1,232,2016,October,46,2,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,77.07,0,1,Canceled,2019-05-04 -Resort Hotel,1,96,2017,April,16,28,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,E,0,No Deposit,273.0,179.0,0,Transient,92.23,0,0,Canceled,2020-01-04 -Resort Hotel,1,292,2017,April,18,27,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,311.0,179.0,0,Transient-Party,78.98,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2016,November,50,8,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,378.0,179.0,0,Transient,155.64,0,0,Check-Out,2019-12-04 -City Hotel,1,273,2017,August,37,3,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,99.43,0,0,Canceled,2020-05-03 -Resort Hotel,0,302,2015,September,32,16,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,116.38,0,1,Check-Out,2018-08-03 -Resort Hotel,0,14,2016,March,11,25,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,49.5,1,1,Check-Out,2018-12-03 -City Hotel,1,149,2016,January,4,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,35.0,179.0,0,Transient,61.31,0,0,Canceled,2018-10-03 -City Hotel,1,48,2017,May,22,18,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,142.51,0,0,Canceled,2020-03-03 -Resort Hotel,0,40,2015,July,32,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,1,No Deposit,303.0,179.0,0,Transient-Party,62.92,0,0,Check-Out,2018-07-03 -Resort Hotel,1,64,2017,June,23,7,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,172.0,179.0,0,Transient,194.93,0,0,Canceled,2020-03-03 -City Hotel,0,2,2016,November,52,11,1,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,66.68,0,0,Check-Out,2019-10-04 -City Hotel,1,246,2016,April,27,24,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,256.0,179.0,0,Transient,115.23,0,1,No-Show,2019-02-01 -City Hotel,0,46,2016,September,32,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,173.18,0,2,Check-Out,2018-06-02 -City Hotel,0,47,2016,December,50,17,2,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,63.71,0,0,Check-Out,2019-10-04 -City Hotel,1,3,2017,July,20,16,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.05,0,0,Canceled,2019-12-04 -Resort Hotel,0,14,2016,August,37,15,0,2,1,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,1,No Deposit,84.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-04-03 -City Hotel,0,22,2015,December,51,30,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient-Party,88.82,0,3,Check-Out,2019-09-03 -City Hotel,0,0,2016,July,26,30,2,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,157.98,0,3,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,March,9,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,24.71,0,0,Check-Out,2019-03-04 -City Hotel,1,149,2016,November,49,14,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,73.0,179.0,0,Transient-Party,72.09,0,0,Canceled,2017-09-02 -City Hotel,1,10,2015,August,45,15,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,167.66,0,0,Canceled,2019-08-04 -Resort Hotel,0,8,2016,December,53,20,0,1,1,0.0,0,BB,POL,Online TA,Direct,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,79.4,1,1,Check-Out,2019-06-03 -Resort Hotel,0,16,2015,October,38,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,183.59,1,0,Check-Out,2019-07-04 -City Hotel,0,0,2015,October,43,6,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,60.4,0,0,Check-Out,2018-08-03 -City Hotel,1,268,2017,June,29,16,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.66,0,1,Canceled,2020-02-01 -City Hotel,0,94,2017,May,22,9,2,4,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,104.39,0,3,Check-Out,2020-04-02 -Resort Hotel,0,12,2016,March,17,31,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,237.0,179.0,0,Transient,109.57,0,1,Check-Out,2019-01-03 -City Hotel,0,3,2017,August,31,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,140.79,0,0,Check-Out,2020-07-03 -Resort Hotel,0,203,2017,May,24,14,2,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,117.59,1,1,Check-Out,2020-05-03 -City Hotel,1,31,2016,June,26,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.68,0,0,Canceled,2019-05-04 -City Hotel,1,103,2015,August,34,5,2,2,3,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,71.22,0,1,Canceled,2018-06-02 -City Hotel,0,38,2016,June,35,2,0,3,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,145.97,0,0,Check-Out,2019-06-03 -City Hotel,0,35,2016,December,53,26,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Group,88.13,0,0,Check-Out,2019-11-03 -City Hotel,1,189,2017,October,44,11,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,134.12,0,2,Canceled,2020-04-02 -Resort Hotel,1,1,2015,December,53,30,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,240.0,179.0,0,Transient,88.95,0,0,Canceled,2018-11-02 -City Hotel,0,99,2016,May,21,14,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,115.07,0,2,Check-Out,2019-02-01 -City Hotel,0,209,2017,August,31,27,0,2,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,128.05,0,0,Check-Out,2020-06-02 -Resort Hotel,0,7,2016,May,10,2,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,2.0,79.0,0,Transient,62.54,0,0,Check-Out,2019-02-01 -City Hotel,0,31,2015,October,41,9,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,81.78,0,0,Check-Out,2018-09-02 -City Hotel,0,41,2015,September,42,16,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.65,0,0,Check-Out,2018-08-03 -City Hotel,1,13,2015,September,37,15,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,174.74,0,0,Canceled,2019-08-04 -City Hotel,1,279,2016,July,34,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,138.15,0,0,Canceled,2017-11-02 -Resort Hotel,0,273,2016,September,35,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,60.64,0,1,Check-Out,2019-06-03 -City Hotel,1,44,2016,April,15,21,0,2,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,94.7,0,0,Canceled,2019-02-01 -Resort Hotel,0,105,2016,December,44,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,148.66,1,1,Check-Out,2019-08-04 -City Hotel,0,2,2017,February,10,25,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,A,0,No Deposit,15.0,179.0,0,Transient,82.21,0,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,October,44,9,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,35.88,0,0,Check-Out,2018-09-02 -City Hotel,1,180,2017,March,20,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,108.87,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,February,12,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,Non Refund,17.0,45.0,0,Transient,76.54,0,0,Canceled,2018-11-02 -Resort Hotel,0,14,2015,October,45,10,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,1,No Deposit,12.0,68.0,0,Transient-Party,33.32,0,0,Check-Out,2018-09-02 -City Hotel,1,191,2015,October,43,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,62,Transient-Party,60.64,0,0,Canceled,2018-08-03 -Resort Hotel,0,40,2015,December,53,24,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient-Party,43.9,0,0,Check-Out,2018-08-03 -Resort Hotel,0,258,2015,August,37,15,2,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,62.04,0,0,Check-Out,2018-06-02 -City Hotel,0,1,2016,October,45,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,104.05,0,0,Check-Out,2019-09-03 -Resort Hotel,0,293,2017,June,30,5,1,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Contract,162.8,0,2,Check-Out,2020-04-02 -City Hotel,0,2,2015,November,52,30,2,5,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,12.0,179.0,0,Group,75.68,0,1,Check-Out,2018-12-03 -Resort Hotel,1,111,2016,August,22,27,0,2,2,0.0,0,HB,POL,Online TA,Direct,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,221.69,0,1,Canceled,2019-10-04 -City Hotel,1,31,2017,May,22,15,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.46,0,1,Check-Out,2020-03-03 -Resort Hotel,0,157,2016,April,13,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,69.17,1,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,March,10,31,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,74.25,0,0,Check-Out,2019-01-03 -Resort Hotel,1,138,2016,April,22,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Contract,117.69,0,0,Canceled,2019-02-01 -Resort Hotel,0,41,2016,November,50,13,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,C,3,No Deposit,245.0,179.0,0,Transient,27.54,1,2,Check-Out,2019-12-04 -Resort Hotel,0,24,2015,July,12,11,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,63.06,0,1,Check-Out,2018-11-02 -City Hotel,0,199,2017,July,32,2,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,176.67,0,2,Check-Out,2020-06-02 -City Hotel,1,1,2016,November,51,15,0,3,1,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -City Hotel,0,245,2017,May,21,13,1,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,9.0,179.0,0,Transient,152.07,0,0,Check-Out,2020-04-02 -Resort Hotel,0,12,2016,June,22,12,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,1,No Deposit,316.0,179.0,0,Transient-Party,64.26,0,0,Check-Out,2019-03-04 -Resort Hotel,0,13,2017,April,33,15,2,5,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,A,2,No Deposit,16.0,221.0,0,Transient,112.52,1,0,Check-Out,2020-04-02 -City Hotel,0,32,2016,May,20,5,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,62.29,0,0,Check-Out,2019-06-03 -City Hotel,0,19,2017,May,20,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,73.53,1,0,Check-Out,2020-02-01 -City Hotel,1,60,2016,August,18,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,95.76,0,0,Canceled,2019-02-01 -City Hotel,0,1,2016,November,48,12,0,1,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,63.22,0,0,Check-Out,2019-07-04 -Resort Hotel,0,48,2015,December,53,29,0,1,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,318.0,179.0,0,Transient-Party,38.77,0,0,Check-Out,2019-11-03 -City Hotel,0,71,2017,March,17,25,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,120.92,1,0,Check-Out,2020-03-03 -Resort Hotel,0,150,2016,June,26,16,3,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,79.35,0,0,Check-Out,2019-05-04 -Resort Hotel,0,153,2016,May,22,30,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,13.0,179.0,0,Transient-Party,70.1,0,0,Check-Out,2019-03-04 -Resort Hotel,0,155,2015,December,53,31,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,76.55,0,0,Check-Out,2018-11-02 -Resort Hotel,0,94,2015,September,43,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,69.0,179.0,0,Transient,61.82,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,January,4,27,1,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.16,0,2,Check-Out,2019-05-04 -Resort Hotel,0,153,2015,March,26,25,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,37.0,179.0,0,Contract,37.32,0,0,Check-Out,2018-01-03 -City Hotel,0,264,2017,August,27,12,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.18,0,1,Check-Out,2020-06-02 -Resort Hotel,1,58,2016,December,53,27,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient-Party,75.68,0,0,Canceled,2018-11-02 -City Hotel,0,10,2017,January,2,2,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.48,0,3,Check-Out,2019-10-04 -City Hotel,1,269,2016,May,16,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,256.0,179.0,0,Transient,38.92,0,0,Canceled,2019-10-04 -City Hotel,0,290,2016,August,35,9,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,167.31,0,3,Check-Out,2019-07-04 -City Hotel,0,0,2017,June,26,21,2,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,November,45,13,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,339.0,179.0,0,Transient-Party,68.36,0,0,Check-Out,2019-08-04 -City Hotel,0,41,2017,March,10,22,2,3,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,68.6,0,2,Check-Out,2020-03-03 -City Hotel,1,93,2017,May,21,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,139.87,0,1,Canceled,2020-03-03 -Resort Hotel,0,63,2016,September,45,7,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,68.19,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,September,44,2,0,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,130.37,1,2,Check-Out,2019-11-03 -City Hotel,1,9,2016,May,22,30,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,86.34,0,0,Canceled,2019-02-01 -City Hotel,1,249,2015,August,44,29,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,84.68,0,2,No-Show,2018-08-03 -City Hotel,0,15,2016,December,53,31,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.36,0,0,Check-Out,2019-09-03 -City Hotel,1,311,2016,June,27,2,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,64,Transient,63.3,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2015,August,37,19,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,35.17,1,0,Check-Out,2018-06-02 -City Hotel,0,0,2015,August,34,16,0,5,1,0.0,0,BB,PRT,Direct,Undefined,0,1,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2018-06-02 -City Hotel,1,39,2017,January,4,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,Non Refund,7.0,179.0,0,Transient,93.98,0,0,No-Show,2019-12-04 -City Hotel,1,90,2017,March,16,11,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,0,Transient,76.29,0,0,Canceled,2019-11-03 -Resort Hotel,0,38,2016,February,13,13,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,61.2,0,0,Check-Out,2019-11-03 -City Hotel,0,38,2017,January,3,5,1,0,2,0.0,0,BB,CHE,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,97.93,0,1,Check-Out,2019-10-04 -City Hotel,0,48,2017,August,34,18,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,128.98,0,1,Check-Out,2020-07-03 -City Hotel,0,1,2016,August,19,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,77.31,0,0,Check-Out,2019-03-04 -Resort Hotel,0,238,2016,December,52,25,2,4,2,0.0,0,BB,GBR,Offline TA/TO,Direct,1,0,0,A,A,1,No Deposit,94.0,179.0,0,Transient,86.6,0,0,Canceled,2019-10-04 -City Hotel,1,95,2016,December,53,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,26.0,179.0,60,Transient-Party,93.73,0,1,Canceled,2019-10-04 -City Hotel,0,14,2016,October,17,31,0,3,1,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,65.57,0,0,Check-Out,2019-04-03 -City Hotel,1,1,2016,March,16,21,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,67.02,0,0,Canceled,2019-02-01 -City Hotel,0,84,2015,July,49,10,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,117.06,0,2,Check-Out,2018-06-02 -City Hotel,1,261,2015,October,47,13,1,1,1,0.0,0,BB,BEL,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,244.0,0,Transient-Party,60.5,0,0,Canceled,2018-08-03 -City Hotel,0,8,2017,April,19,22,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient-Party,120.24,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,March,11,30,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,242.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-07-04 -City Hotel,1,158,2016,November,45,16,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,85.2,0,0,Canceled,2019-11-03 -Resort Hotel,1,55,2016,August,37,31,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,72.84,0,0,Canceled,2019-02-01 -City Hotel,0,93,2017,March,19,6,1,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,65.31,0,0,Check-Out,2020-04-02 -City Hotel,1,172,2015,September,35,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,98.08,0,0,Canceled,2018-08-03 -City Hotel,1,94,2016,May,26,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.39,1,1,Canceled,2019-02-01 -Resort Hotel,0,307,2017,August,37,11,2,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,240.0,179.0,0,Transient,115.5,0,3,Check-Out,2020-04-02 -City Hotel,0,54,2015,August,31,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Contract,62.69,0,1,Check-Out,2020-06-02 -City Hotel,0,200,2017,June,20,7,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,15.0,75.0,0,Transient-Party,101.98,0,3,Check-Out,2019-11-03 -City Hotel,0,25,2015,October,42,20,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,124.34,0,0,Check-Out,2018-08-03 -Resort Hotel,0,107,2017,February,11,10,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,75.17,0,0,Check-Out,2019-10-04 -City Hotel,1,47,2016,November,50,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,Non Refund,12.0,179.0,0,Transient,85.66,0,0,Canceled,2019-10-04 -City Hotel,0,10,2016,October,17,23,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,211.0,0,Transient,103.1,0,0,Check-Out,2019-05-04 -Resort Hotel,0,45,2015,December,53,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,59.96,1,0,Check-Out,2019-01-03 -City Hotel,1,0,2016,October,48,8,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Group,3.19,0,0,Check-Out,2020-01-04 -Resort Hotel,1,9,2016,September,43,21,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,198.9,0,0,Canceled,2019-08-04 -City Hotel,1,1,2016,October,42,17,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.86,0,0,Canceled,2019-09-03 -Resort Hotel,0,100,2016,December,51,27,1,5,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,44.42,1,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,October,42,20,0,1,1,0.0,0,BB,,Direct,Corporate,1,0,1,D,E,0,No Deposit,12.0,179.0,0,Group,121.38,0,1,Check-Out,2019-03-04 -Resort Hotel,0,241,2015,September,42,31,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,95.91,0,2,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,October,44,7,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,34.45,0,1,Check-Out,2018-08-03 -Resort Hotel,0,36,2016,April,17,28,2,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,119.18,0,2,Check-Out,2019-01-03 -Resort Hotel,0,0,2015,January,53,10,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,14.0,179.0,0,Group,61.43,0,2,Check-Out,2018-11-02 -Resort Hotel,0,139,2017,June,19,18,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,168.0,179.0,0,Transient-Party,74.05,0,0,Check-Out,2020-03-03 -City Hotel,0,89,2017,April,11,21,0,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,78.06,0,2,Check-Out,2020-02-01 -Resort Hotel,0,21,2017,August,35,6,2,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,250.0,179.0,0,Transient,156.78,1,0,Check-Out,2020-06-02 -City Hotel,1,0,2016,December,50,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,81.0,0,Transient,62.19,0,0,Canceled,2019-02-01 -City Hotel,0,27,2016,December,53,20,2,5,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.8,0,0,Check-Out,2019-11-03 -City Hotel,1,101,2017,May,21,15,2,0,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,6.0,179.0,0,Transient,91.23,0,0,Canceled,2020-02-01 -City Hotel,0,1,2016,December,11,6,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,120.68,0,3,Check-Out,2018-11-02 -City Hotel,0,15,2015,October,47,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,221.0,0,Transient-Party,68.61,0,0,Check-Out,2018-09-02 -Resort Hotel,0,152,2015,October,44,29,1,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,43.72,1,2,Check-Out,2018-09-02 -City Hotel,0,35,2015,July,44,17,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,62.38,0,2,Check-Out,2018-05-03 -City Hotel,1,258,2016,August,36,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,62.14,0,0,Canceled,2017-12-03 -Resort Hotel,0,100,2017,May,24,28,2,6,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,241.0,179.0,0,Transient,188.65,1,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,December,4,2,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,K,1,No Deposit,247.0,179.0,0,Transient-Party,75.67,1,0,Check-Out,2019-09-03 -City Hotel,1,44,2016,November,48,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.23,0,0,Canceled,2019-02-01 -Resort Hotel,0,3,2016,February,11,28,1,5,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,B,0,No Deposit,200.0,179.0,0,Transient,74.79,0,0,Check-Out,2018-11-02 -City Hotel,1,134,2016,July,32,2,2,3,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,7.0,179.0,0,Transient,141.16,0,3,Canceled,2019-05-04 -Resort Hotel,0,34,2015,August,42,25,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient-Party,116.21,0,0,Check-Out,2019-07-04 -City Hotel,0,9,2017,May,26,13,0,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,2,No Deposit,33.0,179.0,0,Transient-Party,79.54,0,1,Check-Out,2020-04-02 -City Hotel,0,3,2016,October,45,28,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,119.42,0,1,Check-Out,2019-08-04 -Resort Hotel,1,14,2017,February,7,28,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,0.53,0,0,Canceled,2019-10-04 -Resort Hotel,0,95,2016,October,42,9,0,4,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,C,I,2,No Deposit,241.0,179.0,0,Transient,113.93,0,3,Check-Out,2019-06-03 -City Hotel,1,49,2016,August,15,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.95,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2017,May,26,26,2,5,3,2.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,18.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-12-04 -Resort Hotel,1,14,2017,August,33,20,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,252.0,0,3,Canceled,2020-07-03 -City Hotel,0,2,2016,November,43,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient-Party,62.87,0,0,Check-Out,2019-06-03 -Resort Hotel,1,92,2017,July,33,22,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,378.0,179.0,0,Transient,157.75,0,0,Canceled,2020-04-02 -Resort Hotel,1,18,2016,March,17,31,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient,66.65,0,0,No-Show,2019-02-01 -City Hotel,0,90,2016,April,18,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,122.66,0,2,Check-Out,2019-01-03 -Resort Hotel,0,3,2016,November,49,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,104.81,0,2,Check-Out,2019-10-04 -Resort Hotel,0,150,2015,December,51,30,2,5,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,44.91,0,2,Check-Out,2018-06-02 -City Hotel,0,96,2016,July,33,8,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,100.59,0,2,Check-Out,2019-06-03 -Resort Hotel,1,179,2017,August,32,16,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,326.0,179.0,0,Transient,176.78,0,0,Canceled,2020-07-03 -City Hotel,0,0,2017,May,16,5,2,1,2,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,107.11,0,2,Check-Out,2020-02-01 -Resort Hotel,0,46,2016,June,27,15,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,120.8,0,0,Check-Out,2019-05-04 -City Hotel,0,24,2017,May,14,28,1,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,286.0,179.0,0,Transient-Party,60.46,0,0,Check-Out,2020-03-03 -City Hotel,1,11,2016,October,42,9,0,1,3,0.0,0,SC,NLD,Corporate,Corporate,1,0,0,P,P,0,No Deposit,16.0,272.0,0,Transient,2.4,0,0,Canceled,2019-08-04 -City Hotel,0,53,2016,March,23,27,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,13.0,179.0,0,Transient,208.57,0,0,Check-Out,2019-09-03 -City Hotel,0,18,2017,February,8,5,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,13.0,87.0,0,Transient,67.09,0,0,Check-Out,2019-12-04 -City Hotel,0,3,2017,January,9,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,109.7,0,0,Check-Out,2019-10-04 -City Hotel,0,60,2015,November,51,31,2,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,D,F,1,No Deposit,8.0,179.0,0,Transient,112.02,0,1,Check-Out,2018-08-03 -City Hotel,1,165,2016,October,45,25,1,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,75.58,0,2,Canceled,2018-08-03 -City Hotel,0,37,2017,March,21,9,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,122.21,0,1,Canceled,2020-03-03 -City Hotel,0,226,2017,July,31,9,0,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,197.29,0,0,Check-Out,2020-05-03 -Resort Hotel,0,94,2015,December,53,3,0,1,2,0.0,0,BB,NOR,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,37.58,0,0,Check-Out,2018-12-03 -City Hotel,0,81,2016,July,28,30,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,197.61,0,0,Check-Out,2019-05-04 -Resort Hotel,1,16,2016,July,31,15,3,5,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,100.17,0,0,Canceled,2018-06-02 -City Hotel,1,15,2016,September,35,2,2,1,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,8.0,179.0,0,Transient,0.11,0,1,Canceled,2019-08-04 -City Hotel,0,21,2017,August,23,23,0,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient-Party,230.8,0,1,Check-Out,2020-03-03 -Resort Hotel,1,294,2017,August,9,13,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,64.2,0,0,Canceled,2019-12-04 -Resort Hotel,0,150,2017,June,23,9,2,1,1,0.0,0,Undefined,,Groups,Corporate,0,0,0,A,A,2,No Deposit,40.0,179.0,0,Transient-Party,116.22,0,0,Check-Out,2020-06-02 -Resort Hotel,0,16,2016,August,36,10,0,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,128.93,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,May,27,13,1,4,2,1.0,0,HB,USA,Direct,Direct,0,0,0,H,H,0,No Deposit,248.0,179.0,0,Transient,194.73,0,2,Check-Out,2020-03-03 -City Hotel,1,54,2016,October,43,10,2,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,124.16,0,0,Canceled,2019-08-04 -Resort Hotel,0,306,2015,August,36,31,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Contract,58.65,0,0,Check-Out,2017-11-02 -City Hotel,0,51,2015,October,45,18,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,67.27,0,0,Check-Out,2018-09-02 -Resort Hotel,0,11,2015,October,45,11,0,4,1,0.0,0,BB,IRL,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,73.09,0,0,Check-Out,2018-12-03 -Resort Hotel,0,8,2016,March,9,6,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient-Party,77.98,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,February,9,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,318.0,86.0,0,Transient,29.32,0,0,Check-Out,2019-03-04 -Resort Hotel,0,35,2016,June,18,5,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,60.95,1,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,October,47,17,1,0,2,0.0,0,SC,USA,Online TA,Direct,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,256,2016,May,31,2,2,7,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,74.2,0,0,Check-Out,2019-05-04 -City Hotel,1,35,2016,January,3,17,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,98.87,0,0,No-Show,2018-11-02 -City Hotel,1,48,2016,March,15,23,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,98.88,0,0,Canceled,2019-02-01 -City Hotel,0,56,2016,September,45,30,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,203.88,0,1,Check-Out,2019-04-03 -City Hotel,0,16,2015,August,38,30,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,130.96,0,3,Check-Out,2019-05-04 -Resort Hotel,0,0,2015,November,44,11,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,126.63,1,2,Check-Out,2018-08-03 -City Hotel,1,199,2017,May,37,21,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.81,0,2,Canceled,2020-03-03 -Resort Hotel,1,115,2017,August,38,7,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,190.54,0,2,Canceled,2020-06-02 -Resort Hotel,1,275,2015,October,42,21,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient-Party,77.25,0,0,Canceled,2018-09-02 -City Hotel,0,55,2016,September,23,28,0,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,9.0,179.0,0,Transient,239.44,0,3,Check-Out,2019-06-03 -City Hotel,0,11,2017,June,27,21,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.47,0,1,Check-Out,2020-03-03 -City Hotel,0,17,2016,October,44,25,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,115.08,0,1,Check-Out,2019-08-04 -Resort Hotel,1,94,2017,January,2,18,2,4,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,63.1,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2016,August,36,21,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,248.0,179.0,0,Transient,52.27,0,0,Check-Out,2018-09-02 -Resort Hotel,1,114,2017,August,37,15,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,167.47,0,1,Canceled,2020-02-01 -Resort Hotel,0,18,2016,December,10,9,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,247.0,0,Transient,61.33,0,0,Check-Out,2019-03-04 -City Hotel,1,373,2016,October,22,23,1,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,61.02,0,0,Canceled,2019-07-04 -City Hotel,0,17,2015,July,53,27,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,71.91,0,2,Check-Out,2018-12-03 -City Hotel,1,245,2017,May,45,19,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.37,0,0,Canceled,2020-01-04 -City Hotel,0,307,2016,October,44,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,193.05,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,January,10,29,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.31,0,1,Check-Out,2018-12-03 -City Hotel,0,0,2016,February,10,29,1,0,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,B,B,1,No Deposit,10.0,232.0,0,Group,61.23,0,0,Check-Out,2018-11-02 -City Hotel,0,92,2015,December,53,6,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,63.01,0,1,Check-Out,2018-11-02 -City Hotel,1,207,2016,August,32,16,2,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,210.24,0,3,Canceled,2019-05-04 -City Hotel,1,141,2016,June,27,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,A,0,Non Refund,10.0,179.0,0,Transient,61.09,0,0,Canceled,2019-02-01 -City Hotel,1,117,2016,June,27,24,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,62.0,0,0,Canceled,2019-01-03 -City Hotel,1,47,2016,August,36,21,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.15,0,0,Canceled,2018-11-02 -City Hotel,0,55,2015,December,51,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,114.32,0,0,Check-Out,2018-11-02 -City Hotel,1,182,2017,August,11,28,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.99,0,0,Canceled,2019-11-03 -City Hotel,1,9,2016,December,12,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,7.0,179.0,0,Transient,62.88,0,0,Canceled,2018-10-03 -City Hotel,1,37,2016,February,11,27,2,5,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,180.0,179.0,0,Transient,75.65,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2017,January,2,15,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,82.0,0,Transient,31.35,1,0,Check-Out,2019-10-04 -City Hotel,0,13,2017,May,22,20,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.78,0,0,Check-Out,2020-04-02 -City Hotel,0,29,2016,December,51,27,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,9.0,179.0,0,Transient,143.93,0,3,Check-Out,2019-11-03 -City Hotel,0,13,2015,July,32,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,156.73,0,0,Check-Out,2018-11-02 -Resort Hotel,0,287,2015,December,53,6,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient-Party,87.54,0,2,Check-Out,2018-12-03 -City Hotel,0,15,2016,June,20,6,2,2,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,124.72,0,2,Check-Out,2019-03-04 -City Hotel,0,11,2016,September,44,13,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,46.07,0,0,Check-Out,2019-08-04 -City Hotel,0,16,2017,January,10,10,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,351.0,179.0,0,Transient,42.19,0,0,Check-Out,2019-10-04 -City Hotel,0,17,2016,December,52,21,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.07,0,1,Check-Out,2019-10-04 -City Hotel,0,48,2017,July,32,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.91,0,1,Check-Out,2020-03-03 -Resort Hotel,0,24,2017,March,17,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,1,No Deposit,12.0,221.0,0,Transient,80.08,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,June,21,15,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,H,I,1,No Deposit,9.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2020-02-01 -Resort Hotel,1,35,2017,November,37,28,2,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,161.0,179.0,0,Transient,153.2,0,0,Canceled,2019-10-04 -City Hotel,0,172,2017,July,32,25,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,156.52,0,0,Check-Out,2020-06-02 -City Hotel,1,442,2017,June,8,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,127.16,0,0,Check-Out,2020-02-01 -City Hotel,0,10,2016,October,44,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,79.86,0,0,Check-Out,2018-08-03 -City Hotel,0,7,2016,June,24,29,2,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient,109.57,0,0,Check-Out,2019-04-03 -City Hotel,1,247,2017,March,16,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,90.51,0,0,Canceled,2019-11-03 -Resort Hotel,0,55,2015,December,30,9,2,1,2,0.0,0,BB,,Groups,TA/TO,1,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient,65.34,0,0,Check-Out,2018-06-02 -City Hotel,0,14,2016,November,51,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,73.91,0,0,Canceled,2019-05-04 -Resort Hotel,1,0,2016,April,16,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.06,0,0,Canceled,2019-02-01 -City Hotel,0,48,2016,December,50,10,0,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,61.58,1,0,Check-Out,2018-11-02 -Resort Hotel,0,355,2015,August,34,21,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,148.0,179.0,0,Transient-Party,105.77,0,0,Check-Out,2018-06-02 -City Hotel,1,45,2017,June,29,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,154.14,0,0,Canceled,2020-03-03 -Resort Hotel,0,48,2017,March,8,10,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,43.2,0,1,Check-Out,2020-01-04 -City Hotel,0,41,2017,June,22,18,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,94.79,0,1,Check-Out,2019-11-03 -City Hotel,0,140,2016,June,28,20,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,97.71,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2017,January,3,21,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,122.36,0,0,Check-Out,2019-11-03 -Resort Hotel,1,0,2015,September,43,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,68.54,0,0,Canceled,2018-05-03 -City Hotel,1,1,2016,August,33,30,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.8,0,0,Canceled,2019-05-04 -City Hotel,0,99,2017,May,26,21,2,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.08,0,1,Check-Out,2020-04-02 -City Hotel,1,17,2016,March,17,10,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,42,Transient,86.27,0,0,Canceled,2019-01-03 -Resort Hotel,0,18,2017,August,37,21,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,106.2,0,2,Check-Out,2019-07-04 -City Hotel,0,58,2016,October,47,28,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,112.47,0,0,Check-Out,2019-11-03 -City Hotel,0,51,2016,March,17,24,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,3,No Deposit,8.0,179.0,0,Transient,65.85,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,October,45,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,235.0,179.0,0,Transient,120.03,0,2,Check-Out,2018-09-02 -City Hotel,1,159,2016,November,44,21,2,2,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,D,A,0,Non Refund,10.0,179.0,63,Transient-Party,119.29,0,0,Canceled,2018-12-03 -Resort Hotel,0,236,2015,August,36,9,2,5,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,E,D,0,No Deposit,243.0,179.0,0,Transient,160.82,0,1,Check-Out,2018-06-02 -Resort Hotel,1,48,2016,December,53,13,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,73.25,0,0,Canceled,2018-12-03 -City Hotel,0,154,2016,October,45,29,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,88.49,0,3,Check-Out,2019-10-04 -City Hotel,0,32,2017,May,22,27,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,136.47,0,1,Check-Out,2020-04-02 -City Hotel,1,26,2017,May,16,5,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.49,0,0,No-Show,2020-03-03 -City Hotel,1,0,2015,August,53,15,0,2,1,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,2.0,70.0,0,Transient-Party,55.09,0,0,Canceled,2018-07-03 -City Hotel,0,10,2016,July,31,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.68,0,1,Check-Out,2019-02-01 -City Hotel,1,2,2017,March,19,21,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,115.21,0,0,Canceled,2020-02-01 -City Hotel,1,152,2017,March,18,18,0,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.39,0,1,Canceled,2019-11-03 -City Hotel,1,377,2016,September,37,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.59,0,0,Canceled,2017-12-03 -City Hotel,1,54,2017,July,25,15,2,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,186.91,0,1,Canceled,2020-02-01 -City Hotel,1,2,2015,August,33,15,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,124.01,0,0,No-Show,2018-06-02 -Resort Hotel,0,0,2016,March,8,5,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,184.0,179.0,0,Transient-Party,62.48,1,0,Check-Out,2019-01-03 -Resort Hotel,0,74,2016,January,4,28,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,77.66,0,0,Check-Out,2018-11-02 -Resort Hotel,0,14,2015,December,38,10,2,2,3,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,82.51,0,2,Check-Out,2018-11-02 -Resort Hotel,0,99,2016,July,11,27,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,122.54,0,1,Check-Out,2018-11-02 -City Hotel,1,50,2015,October,44,16,2,5,2,0.0,0,BB,ISR,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,10.0,239.0,0,Transient-Party,69.94,0,0,Canceled,2018-09-02 -Resort Hotel,1,159,2016,December,50,15,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,293.0,179.0,0,Transient,62.15,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,February,10,2,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,245.0,179.0,0,Transient,38.88,0,1,Check-Out,2018-11-02 -Resort Hotel,1,152,2016,December,50,28,4,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,244.0,179.0,75,Transient-Party,75.71,0,0,Canceled,2019-12-04 -City Hotel,0,235,2015,September,45,25,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,72.3,0,0,Check-Out,2018-07-03 -City Hotel,0,13,2017,April,21,29,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.82,0,2,Check-Out,2020-04-02 -City Hotel,0,29,2015,November,33,18,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,36.38,0,0,Check-Out,2018-06-02 -Resort Hotel,0,11,2015,August,38,28,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,60.0,0,Transient,61.65,0,0,Check-Out,2018-05-03 -City Hotel,1,333,2016,April,32,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,45.0,39,Transient-Party,62.62,0,0,Canceled,2019-01-03 -Resort Hotel,0,96,2017,February,10,9,2,0,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,0,No Deposit,48.0,331.0,0,Transient,68.43,0,0,Check-Out,2020-04-02 -City Hotel,0,272,2017,May,21,18,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,20.0,179.0,0,Transient-Party,100.45,0,1,Check-Out,2020-03-03 -City Hotel,1,106,2017,February,14,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.94,0,0,Canceled,2019-10-04 -City Hotel,0,215,2017,July,32,25,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,124.63,0,2,Check-Out,2020-07-03 -City Hotel,1,103,2017,March,17,30,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,12.0,179.0,0,Transient,103.41,0,3,Canceled,2019-09-03 -Resort Hotel,1,8,2016,February,9,13,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,37.26,0,0,Canceled,2018-12-03 -City Hotel,1,411,2015,October,39,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.27,0,0,Canceled,2018-05-03 -City Hotel,1,60,2017,February,9,5,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,F,2,No Deposit,8.0,179.0,0,Transient,60.33,0,1,Canceled,2019-10-04 -City Hotel,0,30,2017,July,31,28,0,3,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.98,1,1,Check-Out,2020-07-03 -City Hotel,1,50,2016,September,45,18,1,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,163.43,0,1,Canceled,2018-08-03 -Resort Hotel,0,242,2016,October,43,19,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,30.0,179.0,0,Transient-Party,108.72,0,0,Check-Out,2019-08-04 -Resort Hotel,0,13,2016,July,35,7,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,87.66,0,2,Check-Out,2019-06-03 -City Hotel,0,95,2017,May,26,18,2,6,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,155.77,0,1,Check-Out,2020-03-03 -City Hotel,0,48,2016,March,32,9,2,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,122.89,0,2,Check-Out,2019-03-04 -Resort Hotel,1,150,2015,October,45,16,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,248.0,179.0,0,Transient,103.49,0,2,Canceled,2018-08-03 -Resort Hotel,0,11,2017,February,11,26,0,1,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,72.8,0,0,Check-Out,2020-02-01 -City Hotel,0,58,2016,October,45,24,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,107.02,0,2,Check-Out,2019-09-03 -Resort Hotel,0,149,2016,August,35,21,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,243.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-07-04 -Resort Hotel,0,20,2016,May,21,25,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-04-03 -Resort Hotel,1,136,2016,July,34,30,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,104.03,0,0,Canceled,2019-06-03 -City Hotel,0,140,2016,June,27,30,0,2,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,78.16,0,0,Check-Out,2019-06-03 -Resort Hotel,0,14,2017,April,9,29,1,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,192.0,179.0,0,Transient-Party,71.71,0,0,Check-Out,2019-11-03 -Resort Hotel,0,166,2016,July,37,9,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,243.0,179.0,0,Transient,225.03,0,0,Check-Out,2019-08-04 -City Hotel,0,42,2015,September,41,20,0,3,1,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,Refundable,1.0,179.0,62,Transient-Party,92.26,0,0,Check-Out,2018-07-03 -City Hotel,0,150,2017,March,26,7,3,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.57,0,3,Check-Out,2020-04-02 -City Hotel,0,18,2016,September,37,25,0,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,130.85,0,0,Check-Out,2019-03-04 -City Hotel,1,13,2017,June,27,4,2,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,195.05,0,0,Canceled,2020-02-01 -City Hotel,1,85,2017,June,26,6,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.3,0,0,Canceled,2020-02-01 -Resort Hotel,1,297,2016,September,35,15,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,42.31,0,0,Canceled,2019-06-03 -City Hotel,1,16,2016,August,44,8,2,1,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,10.0,179.0,0,Transient,207.69,0,2,Canceled,2019-07-04 -City Hotel,1,358,2016,September,45,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.81,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2016,August,33,7,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,40.9,0,1,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,March,11,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,98.0,219.0,0,Transient-Party,35.48,0,0,Check-Out,2019-04-03 -City Hotel,0,1,2017,January,10,5,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,80.94,1,0,Check-Out,2019-09-03 -City Hotel,1,233,2016,May,26,21,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.53,0,0,Canceled,2019-01-03 -City Hotel,0,128,2017,August,37,29,2,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,237.0,179.0,0,Transient,91.23,0,0,Check-Out,2020-04-02 -City Hotel,0,19,2016,May,22,9,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.6,0,0,Check-Out,2019-02-01 -City Hotel,0,152,2017,March,3,4,1,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,121.02,0,2,Check-Out,2020-06-02 -City Hotel,0,2,2017,June,26,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,17.0,45.0,0,Transient,83.22,0,0,Check-Out,2020-06-02 -Resort Hotel,1,168,2016,March,17,16,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,66.35,0,0,Canceled,2019-02-01 -Resort Hotel,0,137,2016,July,25,30,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,311.0,179.0,0,Transient-Party,76.44,0,2,Check-Out,2019-03-04 -City Hotel,1,0,2016,June,26,18,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,Non Refund,11.0,179.0,0,Group,61.38,0,0,Canceled,2019-02-01 -City Hotel,1,390,2015,September,45,15,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.8,0,0,Canceled,2018-09-02 -Resort Hotel,0,150,2016,March,12,2,1,3,1,0.0,0,BB,IRL,Groups,Corporate,0,0,1,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,35.48,0,0,Check-Out,2019-03-04 -City Hotel,0,12,2015,September,37,5,0,3,1,0.0,0,BB,,Aviation,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,121.92,0,0,Check-Out,2018-08-03 -City Hotel,0,80,2017,February,8,6,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,61.86,0,0,Check-Out,2020-02-01 -City Hotel,0,15,2016,October,43,2,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,237.0,179.0,0,Transient,78.88,0,2,Check-Out,2019-05-04 -City Hotel,1,32,2016,December,3,6,1,4,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,67.01,0,0,No-Show,2018-11-02 -Resort Hotel,1,269,2017,June,23,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,242.0,179.0,0,Transient,98.35,0,0,Canceled,2020-06-02 -Resort Hotel,0,261,2017,April,14,28,0,1,1,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,D,I,0,No Deposit,236.0,179.0,0,Transient,153.76,1,2,Check-Out,2020-03-03 -City Hotel,1,138,2016,August,36,30,2,0,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,8.0,179.0,0,Transient,97.61,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,January,9,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,59.0,0,Transient,36.7,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,December,50,27,1,1,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient,36.32,1,0,Check-Out,2019-11-03 -Resort Hotel,0,121,2017,July,32,15,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,151.63,0,2,Check-Out,2020-06-02 -Resort Hotel,0,12,2015,December,53,31,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,73.34,0,2,Check-Out,2018-11-02 -City Hotel,0,15,2015,October,45,2,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,12.0,225.0,0,Transient-Party,93.56,1,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2016,October,44,31,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,143.1,0,0,Check-Out,2019-08-04 -City Hotel,0,25,2017,June,27,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,11.0,63.0,0,Transient,4.21,0,0,Check-Out,2020-02-01 -Resort Hotel,0,34,2015,December,53,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,84.08,0,2,Check-Out,2018-10-03 -Resort Hotel,0,20,2016,June,37,25,4,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,244.0,179.0,0,Transient,38.13,0,0,Check-Out,2019-02-01 -Resort Hotel,0,148,2015,August,36,10,0,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,63.64,0,0,Check-Out,2018-07-03 -City Hotel,1,153,2015,July,32,29,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,139.18,0,0,Canceled,2018-05-03 -City Hotel,0,23,2016,May,23,28,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,7.0,179.0,0,Transient,77.98,0,0,Check-Out,2019-11-03 -Resort Hotel,0,41,2016,October,43,22,2,4,2,0.0,0,HB,ISR,Online TA,TA/TO,1,0,0,E,D,0,No Deposit,9.0,179.0,0,Group,115.31,0,3,Check-Out,2019-10-04 -Resort Hotel,0,69,2015,December,53,9,2,4,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,118.47,0,2,Check-Out,2018-12-03 -City Hotel,1,54,2016,May,37,21,2,2,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,B,A,1,No Deposit,9.0,179.0,0,Transient,135.66,0,0,Canceled,2020-05-03 -City Hotel,1,149,2016,June,26,20,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,68.0,179.0,0,Transient,89.83,0,0,Canceled,2019-02-01 -Resort Hotel,0,61,2016,April,25,5,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,174.75,1,2,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,December,4,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,104.4,0,3,Check-Out,2019-09-03 -City Hotel,1,54,2015,August,33,27,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,A,0,No Deposit,9.0,179.0,0,Transient,65.06,0,0,Canceled,2018-07-03 -City Hotel,0,28,2016,March,11,16,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,D,D,0,No Deposit,13.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-01-03 -City Hotel,0,12,2017,March,12,13,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,196.47,0,3,Check-Out,2020-03-03 -Resort Hotel,0,3,2017,March,9,7,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,42.58,0,1,Check-Out,2020-02-01 -City Hotel,1,93,2015,August,36,25,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,G,0,No Deposit,13.0,179.0,0,Transient,205.59,0,0,No-Show,2018-06-02 -Resort Hotel,0,46,2017,July,33,30,2,3,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,145.69,1,2,Check-Out,2020-04-02 -City Hotel,1,305,2015,October,44,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,58.26,0,0,Canceled,2018-09-02 -City Hotel,1,4,2017,February,9,27,2,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,209.13,0,0,Canceled,2019-11-03 -Resort Hotel,0,144,2016,July,36,16,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,67.91,0,1,Check-Out,2019-07-04 -City Hotel,1,60,2017,June,25,25,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,166.79,0,2,Canceled,2019-02-01 -City Hotel,1,96,2015,August,36,28,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,202.82,0,0,Canceled,2018-07-03 -City Hotel,0,14,2017,May,23,21,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,76.48,0,0,Check-Out,2020-04-02 -City Hotel,1,35,2015,December,45,25,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.02,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2016,February,3,29,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,34.83,0,1,Check-Out,2018-10-03 -City Hotel,1,24,2016,December,15,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,40,Transient-Party,101.47,0,0,Canceled,2019-11-03 -City Hotel,0,28,2015,October,44,20,1,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,C,0,No Deposit,11.0,232.0,0,Transient-Party,63.33,0,0,Check-Out,2018-10-03 -City Hotel,0,200,2016,October,43,28,0,1,2,2.0,0,BB,ESP,Groups,TA/TO,0,0,0,F,A,1,No Deposit,11.0,179.0,0,Transient-Party,191.88,0,0,Check-Out,2018-09-02 -Resort Hotel,1,101,2016,July,52,25,2,3,3,1.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,243.23,0,0,Canceled,2019-03-04 -Resort Hotel,0,7,2016,June,44,24,0,5,3,1.0,0,HB,,Direct,Direct,0,0,0,H,H,2,No Deposit,249.0,179.0,0,Transient,169.75,0,0,Check-Out,2019-08-04 -City Hotel,1,396,2016,October,44,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,43,Transient,75.36,0,0,Canceled,2019-11-03 -Resort Hotel,0,31,2016,December,53,21,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,65.65,0,0,Check-Out,2019-09-03 -Resort Hotel,0,7,2017,March,12,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,1,No Deposit,15.0,86.0,0,Transient-Party,55.9,0,0,Check-Out,2020-03-03 -Resort Hotel,0,201,2016,October,42,28,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,81.74,0,0,Check-Out,2019-08-04 -City Hotel,1,0,2016,December,53,2,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,13.0,270.0,0,Transient,1.18,0,0,Canceled,2019-12-04 -City Hotel,0,1,2016,October,42,2,0,1,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,116.35,0,0,Check-Out,2019-08-04 -City Hotel,1,53,2016,August,10,8,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,139.13,0,0,Canceled,2019-02-01 -Resort Hotel,1,265,2016,December,53,29,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,154.16,0,1,Canceled,2019-08-04 -City Hotel,0,4,2015,September,42,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,1,No Deposit,14.0,179.0,0,Group,63.76,0,0,Check-Out,2019-01-03 -Resort Hotel,0,15,2016,January,10,6,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,50.74,0,2,Check-Out,2018-11-02 -Resort Hotel,0,49,2016,December,50,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,2,Non Refund,322.0,179.0,0,Transient,60.63,0,0,Check-Out,2019-10-04 -City Hotel,1,416,2016,June,21,13,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,72.84,0,0,Canceled,2019-02-01 -Resort Hotel,1,104,2017,April,32,20,2,5,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,129.42,0,0,Canceled,2019-02-01 -City Hotel,0,48,2017,May,21,21,2,1,3,2.0,0,HB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,224.16,0,0,Check-Out,2020-02-01 -Resort Hotel,0,20,2015,October,45,25,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,63.16,0,1,Check-Out,2019-02-01 -City Hotel,0,380,2017,May,26,6,0,1,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.1,0,1,Check-Out,2020-07-03 -Resort Hotel,0,87,2016,March,11,29,0,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,75.63,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2015,July,44,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,2.76,1,0,Check-Out,2018-08-03 -Resort Hotel,0,37,2017,March,11,9,2,2,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,2,No Deposit,14.0,224.0,0,Transient,39.77,0,0,Check-Out,2020-03-03 -Resort Hotel,1,186,2017,May,16,21,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,307.0,179.0,0,Transient,242.97,0,0,Canceled,2019-12-04 -City Hotel,1,81,2016,March,19,28,2,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,96.79,0,0,Canceled,2019-03-04 -City Hotel,0,18,2017,February,12,28,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,83.02,0,1,Check-Out,2019-12-04 -Resort Hotel,0,162,2017,August,30,14,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,169.0,179.0,0,Transient,124.34,1,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,February,8,10,1,0,1,0.0,0,BB,CN,Corporate,Corporate,0,0,0,A,D,0,No Deposit,95.0,179.0,0,Transient,30.06,0,0,Check-Out,2019-01-03 -City Hotel,1,343,2016,August,36,23,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.02,0,0,Canceled,2019-09-03 -City Hotel,0,242,2016,May,21,13,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-05-04 -Resort Hotel,0,9,2015,October,52,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,B,0,No Deposit,14.0,179.0,0,Transient,75.63,0,0,Check-Out,2018-08-03 -City Hotel,1,74,2017,June,22,31,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,155.76,0,1,Canceled,2020-03-03 -City Hotel,0,2,2016,September,39,21,1,0,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,76.8,0,0,Check-Out,2019-09-03 -Resort Hotel,0,15,2015,September,45,10,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,146.52,1,0,Check-Out,2018-08-03 -City Hotel,0,26,2016,December,51,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,15.0,45.0,0,Transient,62.7,0,0,Check-Out,2019-06-03 -City Hotel,0,238,2016,May,23,12,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,61.08,0,1,Check-Out,2019-06-03 -Resort Hotel,0,143,2015,December,49,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Contract,41.2,0,0,Canceled,2019-11-03 -City Hotel,0,50,2016,November,50,9,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,67.79,0,0,Check-Out,2019-07-04 -Resort Hotel,0,14,2015,September,40,21,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,10.0,179.0,75,Transient-Party,70.71,1,0,Check-Out,2018-05-03 -City Hotel,0,44,2016,June,28,20,0,1,1,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,0.29,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,June,26,15,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.47,0,1,Check-Out,2019-06-03 -City Hotel,1,0,2016,December,36,2,0,1,3,0.0,0,SC,,Online TA,Direct,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,1,81,2016,June,27,7,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,117.01,0,0,Canceled,2019-03-04 -Resort Hotel,0,162,2016,September,34,30,4,10,3,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,128.3,0,0,Check-Out,2019-02-01 -Resort Hotel,1,293,2017,July,26,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,F,0,No Deposit,239.0,179.0,0,Transient,97.73,0,0,Canceled,2019-11-03 -Resort Hotel,0,47,2017,March,16,31,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,252.0,1,3,Check-Out,2019-11-03 -City Hotel,0,268,2017,August,36,6,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.44,0,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2015,October,52,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,15.0,45.0,0,Transient,29.32,0,0,Check-Out,2018-09-02 -City Hotel,1,6,2016,April,17,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,58.26,0,0,Canceled,2019-03-04 -Resort Hotel,0,150,2016,August,38,22,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,74.94,0,2,Check-Out,2019-07-04 -City Hotel,0,8,2016,December,51,28,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,66.41,0,0,Check-Out,2019-10-04 -City Hotel,0,38,2017,May,39,23,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,230.54,0,0,Check-Out,2020-06-02 -City Hotel,0,16,2016,December,52,18,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,69.23,0,0,Check-Out,2019-09-03 -Resort Hotel,0,4,2017,May,23,10,2,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,246.0,179.0,0,Transient,199.13,0,0,Check-Out,2020-02-01 -City Hotel,0,18,2015,October,45,26,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,65.73,0,0,Check-Out,2018-08-03 -City Hotel,1,409,2016,October,43,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,83.45,0,0,Canceled,2018-08-03 -Resort Hotel,1,267,2016,June,29,25,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.2,0,0,Canceled,2019-03-04 -City Hotel,0,257,2016,April,18,9,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,105.25,0,0,Check-Out,2019-02-01 -Resort Hotel,1,16,2016,July,33,6,0,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,131.38,0,0,Canceled,2019-02-01 -City Hotel,0,12,2016,May,44,6,1,0,1,0.0,0,BB,CHE,Online TA,GDS,0,0,0,D,D,0,No Deposit,192.0,179.0,0,Transient,88.05,0,0,Check-Out,2019-05-04 -Resort Hotel,0,30,2015,December,51,31,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,38.64,1,1,Check-Out,2018-08-03 -Resort Hotel,0,99,2017,August,37,31,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,173.02,1,1,Check-Out,2019-07-04 -City Hotel,0,231,2016,January,3,13,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,73.93,0,3,Check-Out,2018-11-02 -City Hotel,0,3,2017,August,27,13,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,119.49,0,1,Check-Out,2020-06-02 -Resort Hotel,0,157,2017,June,15,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,139.28,1,1,Check-Out,2020-03-03 -City Hotel,1,296,2016,June,26,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,76.65,0,0,Canceled,2019-08-04 -City Hotel,1,47,2016,April,49,6,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,85.74,0,0,Canceled,2019-01-03 -City Hotel,0,0,2017,March,11,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.21,0,1,Check-Out,2020-03-03 -City Hotel,0,89,2016,August,37,28,2,4,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,133.45,0,2,Check-Out,2020-01-04 -Resort Hotel,0,2,2016,June,42,13,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.61,0,2,Check-Out,2019-05-04 -City Hotel,1,9,2016,June,22,27,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,150.79,0,0,Canceled,2019-12-04 -City Hotel,0,149,2017,June,29,18,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,94.5,0,0,Check-Out,2019-12-04 -City Hotel,0,242,2015,July,32,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,101.01,0,0,Check-Out,2018-06-02 -Resort Hotel,1,301,2015,September,41,17,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,60.96,0,2,Check-Out,2017-11-02 -City Hotel,0,0,2016,January,9,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,42.83,0,1,Check-Out,2018-11-02 -Resort Hotel,1,359,2015,September,37,30,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.35,0,0,Canceled,2017-10-03 -City Hotel,0,53,2016,October,42,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.71,0,1,Check-Out,2019-08-04 -City Hotel,0,3,2016,August,32,13,0,3,2,0.0,0,BB,ISR,Online TA,Corporate,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,235.96,0,0,Check-Out,2019-05-04 -Resort Hotel,1,252,2015,August,37,21,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,E,0,No Deposit,245.0,179.0,0,Contract,62.36,0,1,Check-Out,2018-05-03 -City Hotel,1,106,2017,August,36,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,128.44,0,1,Canceled,2020-02-01 -City Hotel,0,89,2015,August,32,10,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient,132.37,0,0,Check-Out,2018-05-03 -City Hotel,1,4,2015,August,33,10,2,5,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,E,E,0,No Deposit,12.0,331.0,0,Transient,113.48,0,0,Canceled,2018-06-02 -City Hotel,0,2,2017,April,10,6,2,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,45.2,0,0,Check-Out,2020-02-01 -Resort Hotel,0,84,2015,December,53,31,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,61.98,1,0,Check-Out,2018-11-02 -City Hotel,1,41,2015,December,52,30,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,58.96,0,0,Canceled,2018-12-03 -Resort Hotel,0,14,2017,August,32,15,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,188.0,71.0,0,Transient,128.13,1,0,Check-Out,2020-06-02 -City Hotel,1,90,2016,February,18,28,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.97,0,2,Canceled,2019-03-04 -City Hotel,0,0,2017,January,3,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,97.65,0,3,Check-Out,2020-06-02 -City Hotel,0,251,2016,July,32,27,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.67,0,2,Check-Out,2019-06-03 -Resort Hotel,1,147,2017,August,41,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,E,0,No Deposit,247.0,179.0,0,Transient,72.28,0,0,Canceled,2020-01-04 -Resort Hotel,1,57,2016,November,31,23,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,41.65,0,0,Canceled,2019-08-04 -City Hotel,0,90,2015,June,26,21,0,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,103.57,0,1,Check-Out,2018-05-03 -City Hotel,1,100,2016,July,34,21,2,5,3,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient,98.81,0,0,Canceled,2019-02-01 -Resort Hotel,1,254,2017,July,32,3,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,228.8,0,0,Canceled,2020-05-03 -Resort Hotel,0,201,2016,March,17,31,1,3,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,80.03,0,0,Check-Out,2019-02-01 -City Hotel,1,117,2016,April,16,10,0,1,1,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.39,0,0,Canceled,2019-02-01 -City Hotel,1,52,2016,December,51,24,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,110.27,0,1,Canceled,2019-10-04 -City Hotel,1,150,2016,June,27,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,69.75,0,0,Canceled,2019-07-04 -Resort Hotel,0,11,2015,December,51,28,0,5,2,0.0,0,HB,POL,Direct,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,37.65,1,0,Check-Out,2018-08-03 -City Hotel,0,48,2017,June,25,4,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.95,0,0,Check-Out,2020-03-03 -Resort Hotel,0,165,2016,September,34,6,3,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,98.35,0,3,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,August,36,9,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,71.77,0,0,Check-Out,2019-04-03 -Resort Hotel,0,78,2015,September,37,17,2,4,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,2018-06-02 -City Hotel,1,248,2015,September,45,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,43,Transient,67.57,0,0,Canceled,2018-08-03 -City Hotel,1,9,2017,March,16,21,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.93,0,2,No-Show,2020-02-01 -Resort Hotel,1,337,2016,October,43,28,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,263.0,179.0,0,Transient,111.97,0,1,Canceled,2019-08-04 -City Hotel,0,38,2016,March,19,18,2,3,3,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.26,1,2,Check-Out,2019-03-04 -City Hotel,0,1,2015,October,36,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,118.4,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,March,28,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,I,0,No Deposit,13.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2020-03-03 -City Hotel,1,412,2015,September,44,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,58.85,0,0,Canceled,2018-08-03 -Resort Hotel,0,178,2015,July,30,16,1,2,2,0.0,0,HB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,71.39,0,0,Check-Out,2018-06-02 -Resort Hotel,0,17,2015,August,38,10,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,62.08,0,2,Check-Out,2018-06-02 -Resort Hotel,0,13,2017,August,39,31,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,191.51,0,0,Check-Out,2020-07-03 -Resort Hotel,0,41,2017,August,37,30,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient-Party,157.02,1,1,Check-Out,2020-04-02 -City Hotel,0,14,2017,July,31,18,1,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,79.12,0,0,Check-Out,2020-06-02 -City Hotel,0,43,2016,July,31,26,1,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,61.91,0,0,Check-Out,2019-06-03 -City Hotel,0,102,2017,June,10,9,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,43.0,179.0,0,Transient-Party,70.83,0,0,Check-Out,2020-03-03 -City Hotel,1,209,2017,April,17,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,119.06,0,0,Canceled,2020-03-03 -City Hotel,0,0,2016,January,17,11,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,F,0,No Deposit,12.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -City Hotel,0,0,2017,February,7,31,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.79,0,1,Check-Out,2020-03-03 -Resort Hotel,0,93,2016,June,28,30,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,116.81,0,1,Check-Out,2019-06-03 -City Hotel,1,111,2016,April,13,22,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,136.39,0,1,Canceled,2019-02-01 -Resort Hotel,0,22,2016,September,22,8,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,46.71,0,2,Check-Out,2019-12-04 -City Hotel,0,102,2016,April,17,3,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,123.51,0,1,Check-Out,2019-02-01 -City Hotel,1,386,2016,March,25,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,61,Transient,80.8,0,0,Canceled,2018-12-03 -City Hotel,1,16,2016,January,27,13,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,65.56,0,0,No-Show,2019-05-04 -City Hotel,1,12,2015,October,43,10,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,B,0,No Deposit,12.0,45.0,0,Transient,70.78,0,0,Canceled,2018-08-03 -City Hotel,1,168,2016,September,49,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.35,0,0,Canceled,2018-09-02 -City Hotel,0,94,2015,December,51,15,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,71.15,0,1,Check-Out,2018-12-03 -City Hotel,0,146,2017,June,45,12,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.52,0,2,Check-Out,2020-01-04 -City Hotel,1,337,2016,May,44,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,41,Transient,71.17,0,0,Canceled,2018-12-03 -Resort Hotel,0,268,2015,July,31,7,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,2.0,179.0,0,Contract,106.32,0,0,Check-Out,2018-05-03 -Resort Hotel,0,0,2017,February,11,21,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,1,No Deposit,14.0,179.0,0,Transient,146.07,0,0,Check-Out,2020-02-01 -City Hotel,1,36,2017,January,5,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,331.0,0,Transient-Party,61.75,0,0,Canceled,2019-10-04 -City Hotel,1,153,2016,September,37,27,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,82.89,0,0,Canceled,2019-08-04 -City Hotel,1,206,2017,April,36,21,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,101.65,0,0,Canceled,2019-09-03 -City Hotel,0,1,2015,October,44,6,0,1,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,113.94,0,0,Check-Out,2018-11-02 -Resort Hotel,0,141,2016,March,17,31,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,223.0,0,Transient-Party,47.0,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2016,March,16,2,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,89.45,0,0,Canceled,2019-01-03 -Resort Hotel,0,163,2017,July,26,10,2,6,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Contract,64.25,0,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2015,July,36,10,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,125.7,0,3,Check-Out,2018-07-03 -City Hotel,0,1,2016,May,20,17,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,63.41,0,1,Check-Out,2018-11-02 -City Hotel,1,389,2016,September,36,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,40,Transient,89.04,0,0,Canceled,2018-09-02 -City Hotel,0,2,2015,December,45,6,1,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,109.67,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,August,36,30,0,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,97.05,1,0,Check-Out,2018-06-02 -City Hotel,0,98,2016,August,33,23,0,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,103.69,0,1,Check-Out,2019-04-03 -City Hotel,0,99,2016,March,15,27,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,71.95,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,January,9,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,36.05,0,3,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,October,11,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient-Party,42.85,0,0,Check-Out,2018-12-03 -City Hotel,0,3,2016,January,9,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,45.0,18,Transient,72.09,0,1,Check-Out,2019-09-03 -Resort Hotel,1,213,2017,August,22,9,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient-Party,41.84,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2015,December,44,30,2,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient-Party,43.77,0,3,Check-Out,2018-12-03 -City Hotel,1,0,2017,May,16,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,D,0,No Deposit,15.0,179.0,0,Transient,119.88,0,0,Canceled,2020-04-02 -Resort Hotel,0,6,2017,March,17,13,0,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,65.64,0,0,Check-Out,2020-01-04 -Resort Hotel,0,19,2016,September,42,24,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,99.0,179.0,0,Transient,67.0,0,0,Check-Out,2019-09-03 -City Hotel,1,172,2016,February,10,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,76.51,0,0,Canceled,2018-11-02 -Resort Hotel,1,254,2015,October,45,10,2,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,331.0,0,Transient-Party,30.52,0,0,Check-Out,2018-08-03 -City Hotel,1,20,2017,April,22,25,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,65.01,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,October,43,25,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,109.76,0,0,Check-Out,2019-06-03 -City Hotel,0,413,2016,September,36,5,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.55,0,3,Check-Out,2019-09-03 -City Hotel,1,421,2016,October,45,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.93,0,0,Canceled,2017-11-02 -Resort Hotel,0,59,2016,May,26,29,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,185.0,179.0,0,Transient,70.01,0,0,Check-Out,2019-04-03 -Resort Hotel,0,201,2017,November,46,28,2,1,2,2.0,0,BB,SWE,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,133.26,0,0,Check-Out,2019-11-03 -City Hotel,0,247,2015,October,44,10,0,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,70.07,0,0,Check-Out,2018-08-03 -City Hotel,0,4,2016,April,17,25,2,5,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,D,D,0,No Deposit,180.0,179.0,0,Transient,46.45,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2016,May,42,28,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-03-04 -Resort Hotel,0,271,2015,October,45,19,0,1,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,33.43,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2017,August,37,9,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-06-02 -City Hotel,1,47,2017,August,36,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.56,0,0,Canceled,2020-07-03 -City Hotel,1,297,2015,August,35,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,90.77,0,0,Canceled,2018-08-03 -City Hotel,0,7,2015,October,32,22,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,331.0,0,Transient,158.42,0,0,Check-Out,2018-08-03 -City Hotel,0,7,2016,May,44,9,1,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,2,No Deposit,13.0,331.0,0,Transient-Party,77.84,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2017,August,10,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,74.1,1,2,Check-Out,2020-04-02 -City Hotel,1,118,2017,May,49,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,E,F,0,Non Refund,23.0,179.0,0,Group,63.4,0,0,Canceled,2019-10-04 -City Hotel,0,3,2015,November,48,6,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,1,0,A,B,0,No Deposit,12.0,45.0,0,Transient-Party,0.0,0,1,Check-Out,2017-12-03 -City Hotel,1,241,2016,July,27,28,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Contract,74.67,0,0,Canceled,2018-06-02 -Resort Hotel,0,248,2016,April,18,12,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,283.0,179.0,0,Transient-Party,35.25,0,0,Check-Out,2019-05-04 -City Hotel,0,48,2017,April,16,4,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.59,0,2,Check-Out,2020-02-01 -City Hotel,0,0,2017,June,36,7,0,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,219.2,0,3,Check-Out,2020-02-01 -City Hotel,0,28,2017,May,21,2,2,1,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,99.36,0,0,Check-Out,2020-04-02 -City Hotel,1,189,2017,May,15,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,97.39,0,0,Canceled,2019-10-04 -City Hotel,0,46,2015,October,43,16,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,81.0,179.0,0,Contract,60.6,0,0,Check-Out,2018-08-03 -Resort Hotel,0,44,2017,July,27,30,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,127.58,1,1,Check-Out,2020-04-02 -Resort Hotel,0,16,2016,April,22,29,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,66.45,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,January,3,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,249.0,75.0,0,Transient,60.74,1,0,Check-Out,2019-10-04 -Resort Hotel,1,113,2017,March,12,28,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.56,0,0,Canceled,2019-10-04 -City Hotel,1,2,2016,July,3,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,33.42,0,0,Canceled,2018-12-03 -City Hotel,1,34,2016,July,18,12,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,113.57,0,0,Canceled,2019-03-04 -Resort Hotel,0,100,2016,December,53,24,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,333.0,179.0,0,Transient,77.04,0,0,Check-Out,2018-11-02 -Resort Hotel,0,7,2016,August,32,24,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,238.0,179.0,0,Transient,127.05,0,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2017,January,3,17,0,2,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,D,0,No Deposit,14.0,100.0,0,Transient,33.24,0,0,Check-Out,2019-09-03 -City Hotel,1,156,2017,July,35,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -Resort Hotel,1,153,2015,December,36,2,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,231.0,179.0,0,Transient,60.3,0,0,Canceled,2018-09-02 -Resort Hotel,0,29,2016,February,10,5,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient,36.57,0,1,Check-Out,2019-11-03 -Resort Hotel,1,261,2016,April,16,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,64.27,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2017,May,16,18,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,77.64,0,0,Check-Out,2020-03-03 -City Hotel,1,15,2017,May,11,31,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,201.03,0,0,Canceled,2020-04-02 -Resort Hotel,0,139,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient,45.77,0,0,Check-Out,2019-02-01 -City Hotel,0,264,2016,October,43,8,1,1,1,0.0,0,BB,SWE,Aviation,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,143.58,0,0,Check-Out,2019-08-04 -Resort Hotel,0,32,2016,September,41,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,129.24,0,1,Check-Out,2019-08-04 -City Hotel,0,83,2016,July,30,2,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.04,0,3,Check-Out,2019-06-03 -City Hotel,0,1,2016,November,50,28,0,1,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,31.83,0,0,Check-Out,2018-11-02 -City Hotel,1,248,2015,September,36,21,2,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.92,0,0,Canceled,2018-07-03 -City Hotel,0,257,2016,October,42,20,2,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,11.0,179.0,0,Transient,89.18,0,0,Check-Out,2019-06-03 -City Hotel,0,245,2015,September,45,19,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,98.65,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2017,May,21,21,0,5,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,41.02,0,0,Check-Out,2020-04-02 -Resort Hotel,0,4,2017,January,3,31,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,10.0,84.0,0,Transient,61.58,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2017,March,9,9,2,0,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,60.83,0,0,Check-Out,2020-01-04 -City Hotel,0,107,2016,June,26,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,117.54,0,0,Check-Out,2019-05-04 -Resort Hotel,0,313,2015,October,43,24,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,185.0,179.0,0,Contract,43.44,0,0,Check-Out,2018-08-03 -City Hotel,1,43,2017,February,16,2,0,3,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,120.69,0,0,Canceled,2020-02-01 -City Hotel,0,9,2015,December,53,19,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,103.99,0,2,Check-Out,2019-08-04 -City Hotel,0,9,2016,December,51,5,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,106.05,0,3,Check-Out,2019-11-03 -City Hotel,0,44,2016,May,32,27,1,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,127.57,0,0,Check-Out,2019-06-03 -City Hotel,1,15,2017,April,23,28,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.44,0,0,Check-Out,2020-02-01 -City Hotel,1,12,2016,March,9,16,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,60.55,0,0,Canceled,2018-11-02 -Resort Hotel,0,229,2016,October,42,2,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,77.77,0,2,Check-Out,2019-09-03 -City Hotel,1,263,2016,September,45,1,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,40,Transient,107.91,0,0,Canceled,2019-07-04 -Resort Hotel,0,1,2016,February,10,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,1,0,A,B,0,No Deposit,247.0,65.0,0,Transient,60.81,0,3,Check-Out,2018-09-02 -City Hotel,1,38,2016,September,16,15,4,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,78.68,0,0,Canceled,2019-02-01 -City Hotel,1,297,2017,June,22,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.7,0,0,Canceled,2019-12-04 -City Hotel,1,264,2016,June,24,15,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.29,0,0,Canceled,2018-11-02 -Resort Hotel,0,2,2017,August,18,28,2,2,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,205.27,1,3,Check-Out,2020-05-03 -Resort Hotel,0,145,2016,October,45,20,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,240.0,179.0,0,Transient,61.81,1,1,Check-Out,2019-09-03 -City Hotel,0,11,2016,October,44,7,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,3,No Deposit,13.0,179.0,0,Transient,110.28,0,0,Check-Out,2019-08-04 -Resort Hotel,0,40,2017,March,11,24,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,74.58,0,3,Check-Out,2020-02-01 -Resort Hotel,1,153,2017,July,30,3,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,122.8,0,1,Canceled,2020-05-03 -City Hotel,1,188,2017,June,33,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Refundable,10.0,179.0,0,Transient,129.68,0,1,Canceled,2019-03-04 -City Hotel,0,93,2016,August,35,5,0,4,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,86.96,0,1,Check-Out,2019-06-03 -City Hotel,1,39,2016,March,9,20,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient,120.68,0,0,Canceled,2019-02-01 -City Hotel,1,103,2016,February,10,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,65,Transient,75.71,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2016,April,22,6,0,3,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,F,0,No Deposit,246.0,179.0,0,Transient,0.0,1,2,Check-Out,2019-02-01 -City Hotel,0,50,2016,October,44,23,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,132.08,0,1,Check-Out,2019-08-04 -City Hotel,1,334,2016,May,23,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.86,0,0,Canceled,2017-11-02 -City Hotel,0,207,2017,June,27,29,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,12.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-02-01 -City Hotel,0,48,2017,April,24,28,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,120.01,0,2,Check-Out,2019-11-03 -City Hotel,0,17,2015,October,53,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,81.0,179.0,0,Transient,38.56,0,1,Check-Out,2018-08-03 -Resort Hotel,0,154,2016,May,18,23,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,121.87,1,2,Check-Out,2019-02-01 -City Hotel,0,27,2016,January,5,14,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,60.6,0,0,Check-Out,2018-11-02 -City Hotel,0,99,2017,May,27,20,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,131.71,0,0,Check-Out,2019-11-03 -City Hotel,1,30,2017,April,19,30,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,112.59,0,0,Canceled,2020-02-01 -City Hotel,1,53,2016,December,53,5,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,100.82,0,2,Canceled,2018-12-03 -City Hotel,0,140,2017,June,28,4,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,145.4,0,0,Check-Out,2020-05-03 -City Hotel,0,232,2016,October,41,7,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.49,0,0,Check-Out,2019-09-03 -City Hotel,1,58,2017,August,37,21,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,114.35,0,1,Canceled,2020-07-03 -City Hotel,0,41,2017,June,16,6,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,252.0,0,Transient-Party,92.99,0,0,Check-Out,2020-04-02 -City Hotel,0,6,2016,December,50,13,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,67.87,1,0,Check-Out,2019-10-04 -Resort Hotel,0,33,2016,January,4,28,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,332.0,179.0,43,Transient-Party,45.31,0,0,Check-Out,2019-10-04 -City Hotel,1,286,2015,September,34,22,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.44,0,0,Canceled,2017-09-02 -City Hotel,0,224,2016,December,51,7,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.86,0,2,Check-Out,2019-12-04 -City Hotel,0,3,2017,February,12,25,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,140.49,0,1,Check-Out,2020-02-01 -City Hotel,0,44,2017,June,25,12,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,73.0,179.0,0,Transient,98.65,0,1,Check-Out,2020-03-03 -City Hotel,0,300,2017,July,25,20,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,105.02,0,1,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,October,41,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,211.0,0,Transient,81.73,1,0,Check-Out,2019-09-03 -City Hotel,1,346,2016,May,22,26,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,58.62,0,0,Canceled,2019-10-04 -City Hotel,0,54,2017,June,27,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,27.0,179.0,0,Group,101.9,0,0,Check-Out,2019-11-03 -City Hotel,1,248,2016,July,8,5,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,72.53,0,3,Canceled,2019-06-03 -Resort Hotel,0,2,2015,October,39,5,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient-Party,30.98,0,2,Check-Out,2018-05-03 -City Hotel,0,36,2017,May,21,9,0,3,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.71,0,1,Check-Out,2020-03-03 -City Hotel,1,113,2017,April,19,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,79.43,0,0,Canceled,2019-09-03 -Resort Hotel,0,50,2016,November,43,17,0,1,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,157.99,0,2,Check-Out,2019-09-03 -City Hotel,1,139,2016,November,44,28,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,183.0,179.0,40,Transient,70.01,0,1,Canceled,2018-11-02 -City Hotel,0,12,2016,December,53,29,2,1,2,0.0,0,FB,POL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,87.0,179.0,0,Transient-Party,61.8,0,0,Check-Out,2018-10-03 -Resort Hotel,0,0,2016,December,51,9,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,16.0,242.0,0,Transient,41.48,0,0,Check-Out,2019-10-04 -City Hotel,0,49,2016,October,43,19,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,157.82,0,0,Check-Out,2019-06-03 -Resort Hotel,0,13,2015,November,43,22,2,3,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,L,F,0,No Deposit,15.0,179.0,0,Transient,120.8,0,0,Check-Out,2018-06-02 -City Hotel,0,13,2016,March,9,16,0,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,96.02,0,0,Check-Out,2019-02-01 -Resort Hotel,0,92,2017,August,33,5,1,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-07-03 -City Hotel,1,0,2016,September,36,25,2,1,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,157.4,0,2,No-Show,2019-08-04 -City Hotel,1,0,2017,February,7,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.58,0,0,Canceled,2019-11-03 -Resort Hotel,0,44,2015,September,43,20,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,103.31,0,0,Check-Out,2018-08-03 -City Hotel,0,49,2017,May,22,15,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.73,0,1,Check-Out,2020-03-03 -City Hotel,1,237,2017,June,32,4,0,1,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,3.98,0,0,Canceled,2020-01-04 -City Hotel,0,2,2017,May,25,28,0,1,2,0.0,0,HB,BEL,Direct,Direct,1,0,0,A,A,0,No Deposit,17.0,331.0,0,Transient,130.82,1,0,Check-Out,2020-02-01 -City Hotel,1,19,2017,May,22,21,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,207.46,0,0,Canceled,2020-05-03 -Resort Hotel,1,2,2015,July,33,21,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,G,0,No Deposit,17.0,179.0,0,Transient,209.32,0,0,No-Show,2018-05-03 -City Hotel,0,1,2016,June,32,14,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,1,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,91.81,0,1,Check-Out,2019-03-04 -Resort Hotel,0,27,2017,August,38,17,3,5,2,0.0,0,HB,AUT,Online TA,TA/TO,1,0,1,E,I,1,No Deposit,244.0,179.0,0,Transient-Party,231.62,1,3,Check-Out,2020-05-03 -Resort Hotel,0,107,2017,August,36,6,2,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,30.82,0,2,Check-Out,2020-06-02 -City Hotel,0,0,2016,February,10,30,0,3,1,0.0,0,BB,AUT,Direct,TA/TO,0,0,0,G,B,0,No Deposit,11.0,179.0,0,Transient,91.06,0,0,Check-Out,2018-12-03 -Resort Hotel,0,111,2016,October,34,2,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,49.38,0,0,Check-Out,2019-06-03 -City Hotel,1,99,2017,July,30,9,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient,172.57,0,1,Canceled,2020-03-03 -Resort Hotel,0,162,2016,October,26,15,3,10,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,203.0,179.0,0,Transient,146.5,1,0,Check-Out,2019-08-04 -City Hotel,0,40,2016,September,44,5,0,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,74.0,0,Transient,64.52,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2016,December,48,12,0,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,96.92,0,0,Check-Out,2019-01-03 -City Hotel,1,54,2016,October,45,25,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,13.0,179.0,0,Transient,213.07,0,0,Canceled,2019-09-03 -City Hotel,0,8,2016,June,21,15,0,3,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,163.66,0,0,Check-Out,2019-02-01 -City Hotel,1,1,2017,November,42,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,99.07,0,0,Canceled,2019-11-03 -City Hotel,0,20,2017,April,17,31,2,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,109.74,0,2,Check-Out,2020-01-04 -Resort Hotel,0,95,2017,July,37,18,3,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,187.34,1,0,Check-Out,2020-06-02 -City Hotel,1,51,2015,July,34,27,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,43.19,0,0,No-Show,2018-08-03 -City Hotel,1,275,2017,May,21,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,76.81,0,0,Canceled,2020-02-01 -City Hotel,1,45,2017,August,36,9,2,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,218.83,0,0,Canceled,2020-07-03 -City Hotel,0,153,2016,September,42,20,0,1,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,137.81,0,0,Canceled,2018-08-03 -Resort Hotel,0,29,2015,October,45,13,0,1,2,2.0,0,BB,ESP,Complementary,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient-Party,77.46,0,0,Check-Out,2019-08-04 -Resort Hotel,0,156,2017,April,16,23,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient-Party,85.95,0,0,Check-Out,2020-04-02 -Resort Hotel,0,247,2015,August,36,31,0,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient,85.55,0,0,Check-Out,2019-09-03 -Resort Hotel,1,262,2016,November,44,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,37.0,179.0,0,Transient,81.3,0,0,Canceled,2019-07-04 -Resort Hotel,0,1,2016,March,11,29,1,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,60.22,0,0,Check-Out,2018-11-02 -City Hotel,1,36,2016,December,49,5,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.04,0,0,Canceled,2018-11-02 -Resort Hotel,0,39,2016,November,49,6,2,1,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,114.24,0,1,Check-Out,2019-06-03 -Resort Hotel,1,156,2016,December,50,28,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,85.28,0,0,Canceled,2019-07-04 -City Hotel,0,256,2016,June,17,30,0,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,91.24,0,0,Check-Out,2019-02-01 -Resort Hotel,0,21,2017,June,37,15,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,125.93,1,0,Check-Out,2020-07-03 -City Hotel,1,435,2017,June,28,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.2,0,0,Canceled,2020-04-02 -City Hotel,1,421,2016,September,16,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.86,0,0,Canceled,2018-11-02 -City Hotel,1,85,2016,July,31,6,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.71,0,0,Canceled,2019-04-03 -Resort Hotel,1,18,2016,January,50,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,L,0,No Deposit,240.0,179.0,0,Transient,64.88,0,0,Canceled,2018-11-02 -Resort Hotel,0,168,2017,May,23,19,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,148.52,0,0,Check-Out,2020-02-01 -City Hotel,1,208,2017,July,33,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,126.31,0,0,Canceled,2020-06-02 -Resort Hotel,0,2,2015,September,34,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,36.38,0,0,Check-Out,2018-08-03 -City Hotel,1,146,2016,October,44,16,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.98,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2015,October,38,30,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,C,1,No Deposit,241.0,179.0,0,Transient,122.25,1,3,Check-Out,2019-05-04 -City Hotel,0,418,2017,June,26,27,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,77.86,0,0,Canceled,2020-02-01 -City Hotel,0,10,2016,September,37,9,0,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,103.86,0,0,Check-Out,2019-09-03 -Resort Hotel,0,98,2017,June,28,9,0,7,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,248.0,179.0,0,Transient,118.78,1,0,Check-Out,2020-03-03 -City Hotel,0,100,2017,August,36,28,0,2,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,232.21,1,1,Check-Out,2020-03-03 -City Hotel,1,19,2015,October,46,28,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,119.8,0,0,Canceled,2018-08-03 -City Hotel,0,32,2017,March,22,10,2,0,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Group,0.41,1,0,Check-Out,2020-02-01 -Resort Hotel,1,245,2015,August,37,15,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,162.0,179.0,0,Transient,79.98,0,0,Canceled,2018-06-02 -Resort Hotel,0,165,2016,December,10,31,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,81.25,0,0,Check-Out,2018-11-02 -City Hotel,1,101,2016,May,21,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,145.45,0,0,Canceled,2019-01-03 -City Hotel,0,266,2016,June,26,20,2,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,176.84,0,0,Check-Out,2019-05-04 -City Hotel,1,47,2016,September,37,31,2,5,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,104.55,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,January,10,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient-Party,85.45,0,0,Check-Out,2019-02-01 -City Hotel,1,22,2015,September,35,6,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,101.14,0,0,Canceled,2018-05-03 -City Hotel,0,91,2017,April,17,11,2,0,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.89,0,0,Check-Out,2020-02-01 -Resort Hotel,0,43,2017,September,21,8,2,5,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,204.25,0,0,Check-Out,2019-08-04 -Resort Hotel,0,21,2016,March,11,13,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,195.0,214.0,0,Transient,80.45,0,0,Check-Out,2019-02-01 -City Hotel,0,13,2017,May,22,27,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,22.0,179.0,0,Transient-Party,133.99,0,0,Check-Out,2020-05-03 -City Hotel,0,10,2015,November,53,27,0,3,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,F,B,0,No Deposit,16.0,179.0,0,Transient,132.29,0,0,Check-Out,2018-11-02 -City Hotel,0,29,2016,March,17,24,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient-Party,74.31,0,0,Check-Out,2019-01-03 -City Hotel,0,41,2015,November,45,22,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,58.73,0,0,Check-Out,2018-09-02 -City Hotel,1,4,2016,January,4,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,60.95,0,0,Canceled,2018-10-03 -Resort Hotel,0,0,2016,December,53,2,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.69,1,0,Check-Out,2018-11-02 -City Hotel,0,26,2015,September,43,10,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,122.98,0,0,Check-Out,2018-08-03 -City Hotel,1,154,2016,April,17,24,2,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,37.92,0,0,Canceled,2019-03-04 -City Hotel,0,91,2016,June,26,30,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,202.96,1,0,Check-Out,2019-05-04 -City Hotel,1,96,2016,March,20,10,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,20,Transient,91.74,0,0,Canceled,2019-02-01 -City Hotel,0,8,2017,January,5,18,1,1,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,91.0,0,Transient,82.16,0,3,Check-Out,2019-09-03 -City Hotel,0,2,2016,August,32,30,0,1,1,0.0,0,BB,CN,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient-Party,85.72,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2016,March,16,31,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,72.0,179.0,0,Transient,70.69,0,0,Check-Out,2019-01-03 -City Hotel,0,2,2016,December,50,21,0,2,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,166.97,0,2,Check-Out,2019-09-03 -City Hotel,1,60,2016,December,52,22,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,128.89,0,0,Canceled,2019-08-04 -Resort Hotel,0,90,2016,December,44,23,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,100.86,0,0,Check-Out,2019-11-03 -Resort Hotel,0,138,2015,September,45,31,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,224.45,1,2,Check-Out,2019-06-03 -City Hotel,0,10,2016,March,8,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,0,Transient,73.35,0,0,Check-Out,2018-10-03 -City Hotel,1,12,2016,January,4,30,1,0,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Contract,119.32,0,0,No-Show,2018-12-03 -City Hotel,0,97,2017,April,17,18,2,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.72,0,1,Check-Out,2020-04-02 -Resort Hotel,0,17,2016,December,4,26,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,71.91,0,0,Check-Out,2019-10-04 -Resort Hotel,1,312,2015,August,35,20,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,158.0,179.0,0,Transient-Party,83.02,0,0,Canceled,2018-06-02 -City Hotel,1,246,2017,July,27,10,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.12,0,0,Canceled,2020-04-02 -Resort Hotel,0,235,2016,October,43,18,2,1,2,0.0,0,BB,FRA,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,272.0,179.0,0,Transient,57.95,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2016,October,42,10,0,1,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Group,1.49,0,0,Check-Out,2019-09-03 -City Hotel,0,67,2017,March,9,29,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,96.4,0,1,Check-Out,2019-11-03 -Resort Hotel,0,387,2016,January,9,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,72.85,0,0,Check-Out,2018-12-03 -City Hotel,1,96,2016,September,41,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,171.0,179.0,0,Transient,79.95,0,0,Canceled,2019-01-03 -City Hotel,1,265,2017,June,17,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,71.0,179.0,0,Transient,133.64,0,0,Canceled,2020-01-04 -Resort Hotel,0,32,2016,January,8,28,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,1,0,A,D,0,No Deposit,242.0,179.0,0,Transient,46.44,0,0,Check-Out,2018-12-03 -Resort Hotel,0,161,2017,May,23,29,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,12.0,179.0,0,Transient,126.86,0,3,Check-Out,2020-02-01 -City Hotel,1,142,2017,April,8,6,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,173.0,179.0,0,Transient,120.62,0,0,Canceled,2019-09-03 -City Hotel,0,35,2015,September,43,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,94.26,0,0,Check-Out,2018-08-03 -City Hotel,1,414,2015,September,35,15,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.28,0,0,Canceled,2017-11-02 -City Hotel,0,10,2016,May,21,24,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,308.0,179.0,0,Transient,67.82,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2016,September,30,27,0,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,130.56,0,0,Check-Out,2019-05-04 -Resort Hotel,0,14,2016,February,8,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient,33.15,0,0,Check-Out,2018-10-03 -Resort Hotel,0,15,2015,October,48,22,2,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,61.25,0,0,Check-Out,2018-09-02 -Resort Hotel,0,33,2016,October,15,14,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,F,C,1,No Deposit,247.0,179.0,0,Transient,52.61,0,0,Check-Out,2019-02-01 -City Hotel,0,29,2016,October,45,25,2,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,82.81,0,0,Canceled,2019-01-03 -City Hotel,0,28,2016,July,31,21,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,11.0,179.0,0,Transient,85.92,0,2,Check-Out,2019-05-04 -City Hotel,1,153,2017,April,27,30,2,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,B,0,No Deposit,7.0,179.0,0,Transient,118.49,0,0,Canceled,2019-02-01 -City Hotel,0,2,2017,March,11,21,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,120.21,0,1,Check-Out,2020-07-03 -Resort Hotel,0,2,2017,April,17,22,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,118.86,0,0,Check-Out,2020-02-01 -Resort Hotel,0,183,2017,July,31,6,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,G,2,No Deposit,16.0,179.0,0,Transient,212.44,0,3,Check-Out,2020-06-02 -City Hotel,0,55,2017,March,16,27,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.85,0,1,Canceled,2020-02-01 -City Hotel,1,41,2016,April,24,29,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,189.29,0,3,Check-Out,2019-02-01 -Resort Hotel,0,96,2017,April,17,24,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,C,E,1,No Deposit,378.0,179.0,0,Transient-Party,79.59,0,0,Check-Out,2020-02-01 -City Hotel,1,107,2017,May,17,15,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,151.73,0,3,Canceled,2020-07-03 -City Hotel,0,22,2016,November,43,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,110.53,0,1,Check-Out,2018-08-03 -Resort Hotel,0,165,2017,July,37,27,2,4,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,78.67,0,0,Check-Out,2020-07-03 -Resort Hotel,1,27,2016,February,10,11,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,64.85,0,0,Canceled,2018-12-03 -City Hotel,1,381,2016,May,20,10,1,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,240.0,179.0,0,Transient,130.9,1,0,Canceled,2019-07-04 -City Hotel,1,288,2015,November,46,3,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.5,0,0,Canceled,2018-07-03 -City Hotel,0,1,2016,May,11,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,331.0,0,Contract,108.64,0,1,Check-Out,2020-06-02 -City Hotel,1,178,2016,December,44,7,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,99.74,0,2,Canceled,2019-11-03 -Resort Hotel,0,15,2016,October,50,20,2,10,2,0.0,0,BB,CN,Direct,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,114.33,1,1,Check-Out,2019-12-04 -City Hotel,0,202,2016,December,50,30,0,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,111.88,0,1,Check-Out,2019-11-03 -City Hotel,0,103,2016,October,43,8,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,C,0,No Deposit,15.0,179.0,0,Transient,84.24,1,0,Check-Out,2019-03-04 -Resort Hotel,1,13,2016,January,2,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,67.63,0,0,No-Show,2018-11-02 -Resort Hotel,0,4,2015,September,42,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,41.95,0,0,Check-Out,2018-05-03 -City Hotel,0,184,2017,August,31,22,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,144.69,1,1,Check-Out,2020-07-03 -City Hotel,0,33,2017,December,53,6,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.21,0,3,Check-Out,2019-11-03 -City Hotel,0,99,2017,April,17,30,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,86.62,0,1,Check-Out,2020-03-03 -Resort Hotel,0,39,2017,February,8,25,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,82.0,0,Transient-Party,33.91,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,April,18,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,93.92,1,1,Check-Out,2019-02-01 -City Hotel,0,1,2016,May,23,28,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.91,0,2,Check-Out,2019-06-03 -City Hotel,1,410,2017,August,36,16,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,363.0,179.0,0,Transient,156.35,0,0,Canceled,2018-09-02 -Resort Hotel,0,72,2015,December,50,29,2,5,1,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,50.52,0,0,Check-Out,2018-05-03 -City Hotel,1,0,2016,September,43,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,62.46,0,0,Canceled,2019-08-04 -Resort Hotel,0,154,2017,April,17,29,2,5,2,0.0,0,HB,,Direct,Direct,0,0,0,G,D,2,No Deposit,13.0,179.0,0,Transient,167.61,0,0,Check-Out,2020-02-01 -City Hotel,0,18,2016,September,34,5,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,125.43,0,0,Canceled,2018-07-03 -City Hotel,1,53,2017,February,9,4,1,0,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.26,0,0,Canceled,2019-11-03 -City Hotel,0,1,2017,March,11,6,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,125.04,0,0,Check-Out,2020-02-01 -Resort Hotel,1,18,2016,October,43,26,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,79.21,0,0,Canceled,2019-08-04 -Resort Hotel,0,0,2016,May,17,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,45.0,227.0,0,Transient,34.65,0,0,Check-Out,2019-04-03 -City Hotel,1,87,2015,August,39,31,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.1,0,0,Canceled,2018-06-02 -City Hotel,0,101,2017,March,14,6,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.58,0,1,Check-Out,2020-02-01 -City Hotel,0,88,2017,May,23,16,1,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,124.03,0,1,Check-Out,2020-03-03 -City Hotel,0,2,2017,March,11,26,0,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,302.0,179.0,0,Transient-Party,74.37,0,3,Check-Out,2019-12-04 -Resort Hotel,0,125,2016,May,25,2,4,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,173.0,179.0,0,Transient-Party,69.86,0,0,Check-Out,2019-03-04 -Resort Hotel,1,1,2016,June,26,20,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,F,D,0,No Deposit,247.0,179.0,0,Transient,109.37,0,2,Check-Out,2019-03-04 -Resort Hotel,0,149,2016,December,45,10,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,168.0,179.0,0,Transient-Party,107.52,0,2,Check-Out,2019-09-03 -Resort Hotel,1,163,2016,December,49,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,44.64,0,0,Canceled,2018-11-02 -City Hotel,0,84,2016,December,52,18,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.42,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2016,October,51,8,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,76.02,0,0,Check-Out,2019-09-03 -Resort Hotel,0,39,2017,February,10,29,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,76.1,0,0,Check-Out,2018-10-03 -Resort Hotel,0,15,2017,January,3,13,0,1,2,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,81.0,0,Transient,31.21,1,0,Check-Out,2019-11-03 -Resort Hotel,1,98,2016,March,16,9,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,104.06,1,2,Canceled,2019-02-01 -City Hotel,0,46,2015,November,53,10,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.04,0,1,Canceled,2018-08-03 -Resort Hotel,1,90,2016,March,10,28,3,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,E,0,Non Refund,241.0,179.0,0,Transient,101.58,0,0,Canceled,2019-11-03 -City Hotel,1,93,2015,August,37,24,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,64.09,0,0,Canceled,2017-11-02 -City Hotel,1,395,2016,June,22,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient,88.94,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2015,August,42,24,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,183.42,1,0,Check-Out,2019-06-03 -Resort Hotel,0,97,2016,October,44,31,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,114.94,0,2,Check-Out,2019-08-04 -City Hotel,0,6,2017,March,11,16,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,68.54,0,2,Check-Out,2020-03-03 -City Hotel,1,38,2016,June,27,1,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.0,0,0,Canceled,2019-04-03 -City Hotel,1,63,2016,September,36,20,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,79.72,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,November,49,10,2,1,2,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,84.09,0,0,Check-Out,2019-08-04 -City Hotel,0,10,2017,June,33,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,213.0,0,Transient,79.42,0,0,Check-Out,2020-07-03 -Resort Hotel,0,93,2016,March,11,24,2,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,42.38,0,0,Check-Out,2018-11-02 -City Hotel,0,174,2017,August,37,30,0,3,3,1.0,0,BB,BEL,Direct,Direct,0,0,0,D,G,0,No Deposit,14.0,179.0,0,Transient,211.09,0,1,Check-Out,2020-07-03 -City Hotel,0,88,2017,March,10,6,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,116.01,0,0,Check-Out,2020-01-04 -City Hotel,1,11,2017,March,9,14,2,0,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.36,0,0,Canceled,2020-02-01 -Resort Hotel,1,19,2017,February,10,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient-Party,79.49,0,0,Canceled,2019-11-03 -Resort Hotel,0,96,2017,April,16,21,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,109.52,0,1,Check-Out,2020-04-02 -City Hotel,0,41,2016,June,31,17,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,35.0,179.0,0,Transient,74.85,0,1,Check-Out,2019-06-03 -City Hotel,0,3,2016,October,43,19,0,1,1,0.0,0,BB,GBR,Aviation,Corporate,1,0,0,A,B,1,No Deposit,14.0,171.0,0,Transient-Party,80.38,0,0,Check-Out,2019-06-03 -Resort Hotel,1,44,2015,July,30,28,2,4,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,157.26,0,0,Canceled,2019-01-03 -Resort Hotel,0,152,2017,August,37,15,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,243.0,179.0,0,Contract,116.74,0,1,Check-Out,2020-06-02 -Resort Hotel,1,13,2017,July,32,18,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,213.78,0,0,Canceled,2020-03-03 -City Hotel,0,251,2017,June,33,14,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,60.82,0,0,Check-Out,2020-04-02 -City Hotel,0,7,2015,October,45,22,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient-Party,87.13,0,3,Check-Out,2018-09-02 -City Hotel,0,17,2015,September,38,20,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,120.6,0,0,Check-Out,2018-08-03 -Resort Hotel,0,103,2016,February,10,28,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,36.91,1,1,Check-Out,2019-03-04 -Resort Hotel,0,82,2016,July,42,18,2,3,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,168.0,179.0,0,Transient,102.72,1,2,Check-Out,2019-08-04 -City Hotel,0,1,2017,February,8,27,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,81.0,0,Transient,136.42,1,0,Check-Out,2020-01-04 -Resort Hotel,0,38,2016,December,51,22,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,240.0,179.0,0,Transient,155.33,0,0,Check-Out,2019-11-03 -City Hotel,0,31,2016,December,22,30,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,315.0,179.0,0,Transient,119.3,0,0,Check-Out,2019-11-03 -Resort Hotel,0,156,2016,May,11,9,0,7,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,70.27,1,0,Check-Out,2019-02-01 -City Hotel,0,47,2016,October,44,18,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,151.62,1,0,Check-Out,2019-06-03 -Resort Hotel,0,87,2015,December,53,31,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,63.48,1,0,Check-Out,2018-09-02 -City Hotel,1,7,2016,December,45,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,11.0,45.0,0,Transient,85.66,0,0,Canceled,2018-11-02 -City Hotel,1,168,2017,July,26,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,83.51,0,0,Canceled,2019-10-04 -Resort Hotel,0,19,2016,March,18,27,0,5,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,183.0,179.0,0,Transient,34.52,0,0,Check-Out,2019-04-03 -City Hotel,0,45,2016,January,10,9,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,111.09,0,2,Check-Out,2018-11-02 -City Hotel,1,98,2017,June,29,5,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,8.0,179.0,0,Transient,130.25,0,0,Canceled,2019-03-04 -City Hotel,0,2,2016,January,9,25,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,55.01,0,0,Canceled,2018-10-03 -Resort Hotel,0,9,2015,December,52,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,101.0,179.0,0,Transient-Party,62.08,0,0,Check-Out,2018-12-03 -City Hotel,1,19,2015,October,47,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,32.02,0,0,Canceled,2018-08-03 -City Hotel,1,47,2015,December,53,15,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,75.49,0,1,Canceled,2018-12-03 -City Hotel,1,16,2017,March,17,9,2,5,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.22,0,2,Canceled,2020-02-01 -Resort Hotel,1,4,2015,July,29,9,2,2,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,111.0,0,0,Check-Out,2018-06-02 -City Hotel,0,13,2016,November,50,2,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,H,0,No Deposit,16.0,331.0,0,Transient,64.43,0,0,Check-Out,2019-10-04 -Resort Hotel,0,37,2016,March,17,17,0,2,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,71.73,0,0,Check-Out,2019-03-04 -City Hotel,0,15,2015,July,32,6,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,1.0,179.0,0,Contract,61.7,0,0,Check-Out,2018-06-02 -City Hotel,1,40,2017,March,9,13,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,115.51,0,0,No-Show,2019-03-04 -Resort Hotel,0,143,2016,June,27,18,3,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,144.0,179.0,0,Transient,76.96,0,0,Check-Out,2019-02-01 -Resort Hotel,0,50,2015,October,46,2,1,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,C,0,No Deposit,15.0,179.0,0,Transient-Party,35.04,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,November,44,15,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,A,I,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -Resort Hotel,0,7,2016,May,20,10,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,297.0,179.0,0,Transient,82.17,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2016,March,9,28,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.44,0,2,Check-Out,2020-03-03 -City Hotel,1,339,2015,October,43,5,1,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,132.56,0,0,Canceled,2018-08-03 -City Hotel,0,1,2017,May,22,16,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.68,0,1,Check-Out,2020-04-02 -City Hotel,1,111,2017,June,21,31,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,No Deposit,34.0,179.0,0,Transient,111.6,0,0,Canceled,2020-06-02 -Resort Hotel,0,124,2016,July,32,5,1,4,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,245.0,179.0,0,Transient,132.28,1,2,Check-Out,2020-05-03 -City Hotel,0,41,2017,May,22,6,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.88,0,0,Check-Out,2020-03-03 -City Hotel,1,1,2015,October,43,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,41.65,0,0,Canceled,2018-08-03 -City Hotel,1,158,2017,March,15,18,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.09,0,0,Canceled,2019-10-04 -Resort Hotel,0,41,2015,November,51,20,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,129.72,0,2,Check-Out,2018-12-03 -Resort Hotel,0,265,2015,September,35,30,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,182.0,179.0,0,Contract,108.99,0,2,Check-Out,2018-07-03 -City Hotel,0,10,2015,October,50,6,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.3,0,0,Check-Out,2018-08-03 -Resort Hotel,1,267,2017,May,31,25,2,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,225.83,0,1,Canceled,2020-02-01 -City Hotel,1,45,2016,July,33,2,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,159.53,0,1,Canceled,2019-04-03 -City Hotel,0,370,2015,September,42,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.2,0,0,Check-Out,2018-08-03 -City Hotel,0,47,2015,September,44,28,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Contract,62.11,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2016,March,10,23,2,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.9,0,0,Canceled,2018-11-02 -City Hotel,0,257,2016,May,23,27,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,87.0,179.0,0,Transient-Party,67.47,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2017,March,12,28,0,2,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient-Party,74.82,0,0,Check-Out,2019-12-04 -City Hotel,1,233,2017,March,15,28,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,130.0,179.0,0,Transient,69.46,0,0,Canceled,2020-04-02 -City Hotel,1,95,2016,June,28,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.14,0,1,Canceled,2019-02-01 -City Hotel,1,34,2015,January,8,5,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,121.23,0,0,Canceled,2018-11-02 -City Hotel,0,52,2017,April,18,12,0,1,1,0.0,0,SC,PRT,Undefined,Corporate,0,0,0,A,A,0,No Deposit,12.0,55.0,0,Transient-Party,75.91,0,0,Check-Out,2020-04-02 -City Hotel,0,36,2016,March,30,6,0,3,3,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,108.0,0,0,Check-Out,2018-12-03 -Resort Hotel,0,1,2016,April,29,10,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,63.45,0,0,Check-Out,2019-02-01 -City Hotel,0,15,2017,July,25,20,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,9.0,179.0,0,Transient,131.53,0,2,Check-Out,2020-06-02 -Resort Hotel,1,86,2017,May,19,24,0,2,2,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,79.71,0,0,Canceled,2019-01-03 -Resort Hotel,1,61,2017,August,34,21,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,207.86,0,2,Canceled,2020-02-01 -City Hotel,0,27,2016,March,17,22,2,3,1,0.0,0,BB,NLD,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,110.81,0,0,Check-Out,2019-03-04 -City Hotel,0,95,2017,March,22,25,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,20.0,179.0,0,Transient,97.25,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2016,October,44,20,0,2,2,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,92.46,0,0,Check-Out,2019-09-03 -City Hotel,1,401,2015,October,45,28,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.41,0,0,Canceled,2017-11-02 -City Hotel,0,15,2016,October,47,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,109.86,0,2,Check-Out,2018-09-02 -Resort Hotel,0,140,2016,November,51,31,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,228.74,1,2,Check-Out,2019-05-04 -City Hotel,1,6,2016,September,43,13,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,163.47,0,2,Canceled,2019-07-04 -Resort Hotel,1,115,2017,July,21,2,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,A,0,No Deposit,243.0,179.0,0,Transient,69.01,0,0,Canceled,2020-04-02 -City Hotel,1,36,2016,February,8,5,0,1,3,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.19,0,2,Canceled,2019-02-01 -City Hotel,0,51,2016,August,17,4,2,4,3,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,116.71,0,0,Check-Out,2019-05-04 -City Hotel,1,3,2016,November,51,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,162.0,179.0,0,Transient,44.13,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2016,January,3,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,63.24,0,0,Check-Out,2018-05-03 -City Hotel,0,98,2016,July,31,12,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.04,0,1,Check-Out,2019-04-03 -City Hotel,0,195,2017,May,23,17,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.77,0,2,Check-Out,2020-05-03 -Resort Hotel,0,88,2016,December,53,19,0,4,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,74.04,0,0,Check-Out,2019-11-03 -City Hotel,0,34,2016,January,4,24,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,61.43,0,0,Check-Out,2019-09-03 -City Hotel,0,94,2016,December,51,20,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,35.0,179.0,0,Transient-Party,76.64,0,0,Check-Out,2019-09-03 -City Hotel,1,19,2016,February,29,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,60.82,0,0,Canceled,2018-09-02 -City Hotel,0,14,2016,November,35,24,2,1,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient-Party,99.48,0,1,Check-Out,2019-06-03 -Resort Hotel,0,13,2016,February,11,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,39.0,72.0,0,Transient,39.62,0,0,Check-Out,2018-12-03 -Resort Hotel,0,32,2015,September,35,18,0,2,2,0.0,0,HB,ESP,Offline TA/TO,Direct,0,0,0,A,C,1,No Deposit,243.0,179.0,0,Transient-Party,101.16,1,0,Check-Out,2019-09-03 -City Hotel,0,39,2016,March,15,30,1,1,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,97.02,0,1,Check-Out,2020-01-04 -City Hotel,0,11,2015,August,35,20,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,117.72,0,3,Check-Out,2018-06-02 -City Hotel,1,216,2016,August,33,6,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,239.0,179.0,0,Transient,61.86,0,3,Canceled,2019-05-04 -Resort Hotel,0,0,2016,February,10,5,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,I,0,No Deposit,241.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-10-03 -City Hotel,1,44,2017,February,10,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,94.45,0,0,Canceled,2019-10-04 -City Hotel,1,152,2017,June,21,10,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,162.75,0,0,Canceled,2020-03-03 -City Hotel,1,306,2016,August,36,10,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,211.05,1,3,Canceled,2019-05-04 -City Hotel,1,297,2017,May,25,29,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,110.94,0,0,Canceled,2019-12-04 -City Hotel,0,98,2017,May,21,21,1,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,82.23,0,0,Check-Out,2020-03-03 -City Hotel,1,312,2015,September,44,28,4,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Contract,62.61,0,2,Canceled,2017-11-02 -Resort Hotel,1,151,2016,April,16,2,2,5,2,0.0,0,FB,IRL,Groups,TA/TO,0,0,0,A,A,3,No Deposit,80.0,179.0,0,Transient,79.82,0,0,Canceled,2019-04-03 -City Hotel,1,146,2016,June,25,24,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,106.5,0,0,Canceled,2019-01-03 -City Hotel,1,50,2016,March,3,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,18.0,179.0,0,Transient,120.82,0,0,Canceled,2018-11-02 -Resort Hotel,0,49,2016,March,11,10,1,3,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,1,No Deposit,14.0,331.0,0,Transient,39.02,0,0,Check-Out,2018-12-03 -City Hotel,0,64,2016,May,22,18,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,65.33,0,1,Check-Out,2019-03-04 -City Hotel,0,63,2016,March,16,25,2,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,83.0,179.0,0,Transient-Party,77.35,0,0,Check-Out,2019-01-03 -Resort Hotel,1,388,2016,May,21,26,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,79.94,0,0,Canceled,2019-02-01 -City Hotel,1,59,2016,June,43,24,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.97,0,0,Canceled,2019-02-01 -City Hotel,1,17,2016,January,37,26,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.28,0,0,No-Show,2019-07-04 -City Hotel,0,9,2017,April,10,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,13.0,45.0,0,Transient,74.41,1,0,Check-Out,2020-05-03 -City Hotel,0,17,2016,August,37,6,2,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,89.69,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2016,September,50,23,0,3,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,0.65,0,0,Check-Out,2019-10-04 -City Hotel,0,17,2016,November,50,27,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,75.44,0,0,Check-Out,2019-11-03 -City Hotel,1,20,2017,July,26,9,1,7,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,7.0,179.0,0,Transient,152.06,0,0,Canceled,2020-01-04 -City Hotel,0,90,2015,July,31,4,2,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.61,0,1,Check-Out,2018-06-02 -Resort Hotel,0,48,2016,September,45,19,1,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,244.0,179.0,0,Transient,61.41,0,3,Check-Out,2019-08-04 -City Hotel,1,22,2017,March,12,29,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,96.4,0,0,Canceled,2019-10-04 -Resort Hotel,0,8,2015,December,50,9,1,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,32.38,0,1,Check-Out,2018-12-03 -Resort Hotel,0,44,2016,August,33,2,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,193.88,1,2,Check-Out,2018-06-02 -City Hotel,0,97,2016,June,28,25,0,1,2,0.0,0,BB,CHE,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.37,0,0,Check-Out,2019-02-01 -City Hotel,1,255,2016,June,21,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,94.38,0,0,Canceled,2019-03-04 -Resort Hotel,1,33,2015,December,53,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,61.59,0,0,Canceled,2018-11-02 -Resort Hotel,1,198,2017,May,28,31,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient-Party,164.58,0,1,No-Show,2020-03-03 -Resort Hotel,0,263,2016,September,41,6,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,C,0,No Deposit,77.0,179.0,0,Group,35.16,0,3,Check-Out,2018-09-02 -Resort Hotel,0,25,2015,July,30,6,2,4,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,F,F,0,No Deposit,249.0,179.0,0,Transient,110.62,1,0,Check-Out,2018-06-02 -City Hotel,1,296,2015,August,32,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,107.24,0,0,Canceled,2018-06-02 -City Hotel,0,11,2015,July,37,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,12.0,45.0,0,Transient,60.99,0,0,Check-Out,2018-06-02 -City Hotel,0,37,2016,November,51,6,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,131.36,0,2,Check-Out,2019-05-04 -Resort Hotel,0,25,2015,December,53,31,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,40.59,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2016,April,22,29,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,125.48,0,2,Check-Out,2019-12-04 -City Hotel,0,122,2016,April,14,9,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,93.0,0,1,Check-Out,2018-11-02 -City Hotel,0,24,2016,March,53,2,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,75.06,0,2,Check-Out,2018-12-03 -Resort Hotel,0,3,2017,May,23,11,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,76.53,0,1,Check-Out,2020-01-04 -Resort Hotel,0,2,2015,September,37,10,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,31.07,1,2,Check-Out,2018-06-02 -Resort Hotel,0,151,2016,March,10,10,2,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient-Party,68.01,0,0,Check-Out,2019-03-04 -Resort Hotel,1,35,2017,February,8,15,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,25.41,0,0,Canceled,2020-01-04 -City Hotel,1,48,2016,February,9,27,0,3,2,2.0,0,BB,PRT,Groups,TA/TO,0,1,0,F,F,0,Non Refund,13.0,179.0,0,Transient,77.45,0,0,Canceled,2019-01-03 -City Hotel,0,338,2017,July,31,17,0,3,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,146.25,1,1,Check-Out,2020-07-03 -Resort Hotel,0,361,2017,July,31,24,4,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,69.73,0,3,Check-Out,2020-06-02 -Resort Hotel,1,0,2015,August,37,6,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,29.75,0,1,No-Show,2019-05-04 -City Hotel,1,139,2016,December,49,23,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,39,Transient,70.98,0,0,Canceled,2019-09-03 -City Hotel,1,0,2017,February,12,15,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Canceled,2019-02-01 -City Hotel,0,42,2017,January,25,14,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,13.0,222.0,0,Transient-Party,115.81,0,0,Check-Out,2019-10-04 -City Hotel,1,107,2017,March,9,8,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,8.0,179.0,0,Transient,142.7,0,0,Canceled,2018-12-03 -Resort Hotel,1,152,2016,March,15,27,2,3,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,34.0,179.0,75,Transient,71.61,0,0,Canceled,2019-01-03 -City Hotel,0,100,2017,March,10,15,0,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,125.57,0,3,Check-Out,2019-11-03 -City Hotel,0,107,2016,July,29,8,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,40,Transient-Party,71.74,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2016,March,43,7,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.62,0,2,Check-Out,2019-03-04 -City Hotel,1,61,2017,March,9,4,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,105.62,0,0,Canceled,2020-02-01 -City Hotel,0,119,2016,June,31,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,26.0,179.0,0,Transient-Party,122.07,0,1,Check-Out,2020-05-03 -City Hotel,0,84,2017,June,16,28,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,101.07,0,0,Check-Out,2020-03-03 -City Hotel,0,6,2016,November,49,12,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,60.89,0,2,Check-Out,2019-09-03 -Resort Hotel,0,26,2017,May,11,18,2,0,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-04-02 -City Hotel,0,3,2016,August,34,31,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,113.56,0,1,Check-Out,2019-06-03 -City Hotel,0,48,2016,July,32,15,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,103.2,0,0,Check-Out,2019-04-03 -City Hotel,1,11,2015,August,32,6,2,5,1,0.0,0,HB,PRT,Direct,Direct,1,1,1,A,A,0,No Deposit,14.0,179.0,0,Group,39.49,0,0,Canceled,2018-05-03 -City Hotel,0,0,2016,June,24,30,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,133.77,0,0,Check-Out,2019-11-03 -City Hotel,1,36,2016,April,16,15,3,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,42,Transient,74.66,0,0,Canceled,2019-02-01 -City Hotel,1,333,2015,July,35,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,120.18,0,0,Canceled,2018-05-03 -Resort Hotel,0,149,2017,July,32,31,2,4,1,1.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,2,No Deposit,246.0,179.0,0,Transient,213.67,0,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2015,October,46,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,45.0,0,Transient,32.58,0,0,Check-Out,2017-12-03 -City Hotel,0,50,2016,October,46,13,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,166.15,0,1,Check-Out,2019-06-03 -Resort Hotel,0,10,2016,August,52,29,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,146.85,0,2,Check-Out,2019-11-03 -Resort Hotel,0,15,2017,March,8,9,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,71.06,0,2,Check-Out,2020-03-03 -Resort Hotel,0,13,2017,August,38,24,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,123.69,0,0,Check-Out,2020-07-03 -Resort Hotel,1,114,2017,March,8,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,80.19,0,1,Check-Out,2020-02-01 -City Hotel,0,19,2015,September,41,27,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,76.79,0,0,Canceled,2018-08-03 -City Hotel,1,14,2015,November,44,10,2,3,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,109.52,0,0,Canceled,2018-05-03 -Resort Hotel,0,103,2017,June,36,10,0,3,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,99.67,0,2,Check-Out,2020-05-03 -City Hotel,1,81,2017,August,22,12,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,132.51,0,1,Canceled,2020-04-02 -City Hotel,0,0,2016,December,51,28,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,K,0,No Deposit,17.0,259.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -City Hotel,0,35,2016,July,37,20,1,1,3,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,82.01,0,0,Check-Out,2019-06-03 -Resort Hotel,0,250,2017,August,29,29,3,7,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,A,3,No Deposit,378.0,179.0,0,Transient-Party,81.55,0,1,Check-Out,2020-07-03 -City Hotel,1,245,2015,September,40,21,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.03,0,0,Canceled,2018-08-03 -City Hotel,1,178,2017,June,28,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,130.41,0,0,Canceled,2020-02-01 -City Hotel,1,370,2015,October,44,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,59.67,0,0,Canceled,2017-12-03 -City Hotel,1,1,2016,October,46,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,109.7,0,0,Canceled,2018-08-03 -Resort Hotel,0,9,2015,September,36,9,1,3,2,2.0,0,HB,,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,2.28,0,0,Check-Out,2018-06-02 -City Hotel,0,19,2016,October,35,5,0,2,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,215.74,1,3,Check-Out,2019-08-04 -City Hotel,0,0,2015,September,44,13,2,1,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,C,0,No Deposit,163.0,179.0,0,Transient-Party,61.9,0,0,Check-Out,2018-08-03 -Resort Hotel,0,170,2016,August,37,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,160.35,0,3,Check-Out,2019-06-03 -Resort Hotel,0,78,2017,May,24,30,2,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient-Party,123.53,0,2,Check-Out,2020-03-03 -Resort Hotel,0,49,2016,September,44,24,0,1,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,F,1,No Deposit,16.0,179.0,0,Transient,178.98,0,0,Check-Out,2019-07-04 -City Hotel,1,0,2016,February,9,27,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient,82.65,0,0,Canceled,2018-11-02 -City Hotel,0,22,2016,March,4,6,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,90.29,0,0,Check-Out,2019-10-04 -Resort Hotel,0,12,2016,July,32,28,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,101.22,1,0,Check-Out,2019-06-03 -City Hotel,0,99,2015,October,42,15,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Contract,71.83,0,1,Check-Out,2018-08-03 -Resort Hotel,0,0,2017,March,11,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,1,1,H,F,1,No Deposit,20.0,179.0,0,Transient,1.01,1,0,Check-Out,2019-12-04 -City Hotel,1,148,2016,May,44,27,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.26,0,0,Canceled,2019-10-04 -City Hotel,1,44,2017,March,8,13,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,69.41,0,0,Canceled,2019-10-04 -City Hotel,0,0,2017,August,32,28,0,1,2,2.0,0,BB,PRT,Complementary,Direct,1,0,0,A,I,1,No Deposit,15.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-05-03 -City Hotel,1,157,2015,July,37,31,0,10,2,0.0,0,BB,GBR,Groups,TA/TO,1,1,0,A,A,0,Non Refund,260.0,179.0,0,Contract,61.3,0,0,Canceled,2018-09-02 -Resort Hotel,1,135,2016,February,11,18,0,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,66.53,0,0,Canceled,2018-12-03 -Resort Hotel,0,118,2015,December,53,10,2,3,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient-Party,62.49,0,0,Check-Out,2019-01-03 -City Hotel,1,44,2015,October,43,18,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,89.72,0,0,Canceled,2018-10-03 -Resort Hotel,0,11,2016,March,9,21,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,321.0,179.0,0,Transient,78.27,0,0,Check-Out,2019-02-01 -City Hotel,0,21,2016,May,22,24,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,83.0,179.0,0,Transient-Party,88.14,0,0,Check-Out,2019-03-04 -Resort Hotel,0,16,2015,December,53,6,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,60.62,0,0,Check-Out,2018-10-03 -City Hotel,0,18,2017,August,30,15,2,2,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,138.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,294,2017,August,35,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,60.0,179.0,0,Transient,120.87,0,0,Canceled,2018-09-02 -City Hotel,0,159,2015,July,31,2,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient,79.3,0,0,Check-Out,2018-08-03 -City Hotel,1,43,2016,May,21,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,120.47,0,0,Canceled,2019-02-01 -Resort Hotel,0,41,2016,December,12,27,1,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,66.36,0,0,Check-Out,2019-10-04 -City Hotel,0,106,2016,March,9,15,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,91.43,0,0,Check-Out,2018-12-03 -City Hotel,0,39,2016,March,18,28,2,1,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,71.39,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2015,September,44,29,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,D,0,No Deposit,18.0,76.0,0,Transient,33.57,0,0,Check-Out,2018-09-02 -Resort Hotel,1,110,2016,July,31,9,2,0,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,148.26,0,0,Canceled,2019-05-04 -City Hotel,0,54,2017,June,20,15,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,117.0,0,0,Check-Out,2020-02-01 -Resort Hotel,0,16,2015,November,50,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,59.91,0,0,Check-Out,2018-11-02 -City Hotel,1,59,2015,July,34,7,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.58,0,0,Canceled,2018-04-02 -Resort Hotel,0,49,2016,December,51,29,0,3,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,45.73,0,1,Check-Out,2018-12-03 -City Hotel,1,163,2017,May,17,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,114.83,0,0,Canceled,2020-02-01 -City Hotel,1,303,2016,May,23,24,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,41,Transient,120.39,0,0,Canceled,2019-02-01 -City Hotel,0,32,2016,August,34,6,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.39,0,1,Check-Out,2019-05-04 -City Hotel,0,1,2016,February,10,16,0,2,2,0.0,0,BB,BEL,Offline TA/TO,Corporate,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,100.97,0,0,Check-Out,2018-12-03 -City Hotel,1,38,2017,May,21,13,2,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,103.66,0,0,Canceled,2020-02-01 -City Hotel,0,2,2015,August,38,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,91.75,0,0,Check-Out,2018-12-03 -Resort Hotel,0,6,2016,February,10,24,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,133.0,179.0,0,Transient,62.41,1,0,Check-Out,2019-03-04 -Resort Hotel,1,284,2016,March,38,31,1,5,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,224.0,0,Transient-Party,60.59,0,0,Canceled,2019-05-04 -City Hotel,1,245,2017,June,26,13,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,65.37,0,0,Canceled,2020-03-03 -Resort Hotel,1,0,2016,December,42,30,1,0,1,0.0,0,BB,PRT,Direct,Direct,1,1,0,A,I,1,No Deposit,12.0,179.0,0,Transient,0.0,0,2,Check-Out,2018-06-02 -City Hotel,1,1,2016,January,9,21,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,155.59,0,0,No-Show,2018-12-03 -City Hotel,1,259,2016,August,34,6,0,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,113.22,0,0,Canceled,2019-02-01 -Resort Hotel,0,140,2016,September,37,25,2,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,247.46,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2016,June,27,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,16.0,80.0,0,Transient,91.6,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2015,July,31,5,1,4,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,143.38,0,0,Check-Out,2018-06-02 -City Hotel,0,1,2015,August,37,20,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,164.69,0,1,Check-Out,2018-06-02 -Resort Hotel,0,193,2015,October,46,29,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,25.33,0,0,Check-Out,2018-09-02 -Resort Hotel,0,15,2016,March,17,30,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,193.32,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,April,23,25,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,201.17,0,0,Check-Out,2019-02-01 -Resort Hotel,1,3,2015,December,51,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,182.0,179.0,0,Transient,44.99,0,0,Canceled,2018-06-02 -City Hotel,1,37,2016,October,40,18,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,115.75,0,2,Canceled,2019-08-04 -Resort Hotel,0,15,2016,July,38,30,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,209.34,1,1,Check-Out,2019-05-04 -Resort Hotel,0,252,2015,September,35,24,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Contract,30.75,0,1,Check-Out,2018-08-03 -City Hotel,1,34,2017,February,9,15,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.83,0,0,Canceled,2019-11-03 -Resort Hotel,0,32,2015,December,49,19,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,40.97,0,0,Check-Out,2018-06-02 -Resort Hotel,1,33,2015,July,27,21,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,140.0,179.0,0,Transient,35.94,0,0,Canceled,2018-07-03 -City Hotel,1,188,2016,February,9,5,2,5,2,0.0,0,BB,SWE,Online TA,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient,81.21,0,0,Canceled,2019-03-04 -City Hotel,0,145,2016,May,26,9,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,94.59,0,0,Check-Out,2019-03-04 -City Hotel,1,15,2016,August,36,13,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-08-04 -City Hotel,1,16,2016,August,36,26,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,81.26,0,0,Canceled,2018-08-03 -City Hotel,1,212,2016,August,36,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,153.0,179.0,0,Transient,103.66,0,0,Canceled,2019-05-04 -City Hotel,0,100,2016,July,26,12,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,100.43,0,1,Check-Out,2019-06-03 -City Hotel,0,203,2017,October,42,6,2,5,2,0.0,0,Undefined,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,79.85,1,0,Check-Out,2019-10-04 -City Hotel,0,9,2017,May,15,2,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient-Party,123.91,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,February,10,24,1,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,35.7,0,0,Check-Out,2019-01-03 -Resort Hotel,0,264,2017,May,23,28,2,1,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,68.99,0,0,Canceled,2020-04-02 -City Hotel,0,137,2016,May,21,24,2,0,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.98,1,2,Check-Out,2019-04-03 -Resort Hotel,0,44,2016,October,45,10,1,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,295.0,179.0,0,Transient-Party,39.12,0,0,Check-Out,2019-08-04 -City Hotel,1,0,2016,August,51,12,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,271.0,0,Transient,3.81,0,0,Canceled,2019-03-04 -City Hotel,1,55,2016,May,15,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,64.51,0,0,Canceled,2018-12-03 -City Hotel,1,365,2017,May,23,14,1,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient-Party,74.49,0,0,Canceled,2020-03-03 -City Hotel,1,361,2017,January,21,2,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,62.47,0,0,Canceled,2019-09-03 -Resort Hotel,0,115,2016,June,27,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,97.71,0,2,Check-Out,2019-02-01 -City Hotel,0,37,2017,August,35,20,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,99.77,0,1,Check-Out,2020-07-03 -City Hotel,0,144,2015,August,31,5,0,3,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient-Party,153.18,0,2,Check-Out,2018-06-02 -City Hotel,1,40,2016,March,9,28,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.18,0,0,Canceled,2018-12-03 -City Hotel,0,37,2016,May,17,4,2,0,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.18,0,2,Check-Out,2020-04-02 -City Hotel,0,149,2017,March,10,23,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,66.27,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2016,March,17,27,2,3,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,84.99,0,1,Check-Out,2019-10-04 -City Hotel,1,113,2016,May,30,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,76.83,0,0,Canceled,2018-11-02 -Resort Hotel,0,150,2017,August,37,31,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,133.95,1,1,Check-Out,2020-07-03 -City Hotel,0,121,2016,April,17,16,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,121.86,0,1,Check-Out,2018-12-03 -City Hotel,0,16,2016,April,47,29,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,D,D,0,No Deposit,13.0,228.0,0,Transient,124.25,0,0,Check-Out,2019-02-01 -Resort Hotel,0,264,2016,October,42,29,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,106.12,0,0,Check-Out,2019-06-03 -City Hotel,1,44,2015,August,37,6,0,2,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,11.0,45.0,0,Transient,83.4,0,0,Canceled,2018-01-31 -Resort Hotel,1,9,2016,April,22,10,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,D,D,0,No Deposit,9.0,179.0,0,Transient,69.92,0,0,Canceled,2019-03-04 -Resort Hotel,1,241,2016,August,36,28,2,6,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Canceled,2019-05-04 -Resort Hotel,1,165,2016,September,35,20,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,91.17,0,0,Canceled,2018-12-03 -City Hotel,0,39,2017,March,11,6,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,68.0,0,Transient,58.89,0,1,Check-Out,2020-03-03 -Resort Hotel,0,6,2015,October,40,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,83.64,1,0,Check-Out,2018-09-02 -Resort Hotel,0,199,2017,June,8,30,0,1,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,78.14,0,0,Check-Out,2020-03-03 -City Hotel,0,147,2016,June,25,9,2,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,102.03,1,1,Check-Out,2019-07-04 -City Hotel,1,326,2015,August,38,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.71,0,0,Canceled,2018-06-02 -City Hotel,0,55,2017,July,34,8,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,158.34,0,2,Check-Out,2020-06-02 -City Hotel,1,30,2015,August,37,2,0,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,156.38,0,1,Canceled,2019-05-04 -Resort Hotel,0,1,2017,April,18,2,2,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,42.62,0,0,Check-Out,2020-01-04 -Resort Hotel,0,3,2016,August,36,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,18.0,179.0,0,Transient,127.82,1,0,Check-Out,2020-07-03 -City Hotel,1,22,2017,February,10,27,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.8,0,0,Canceled,2019-11-03 -Resort Hotel,0,294,2016,June,26,28,0,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-04-03 -City Hotel,0,158,2016,May,37,12,2,4,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,216.2,0,3,Check-Out,2019-02-01 -City Hotel,1,163,2017,May,10,24,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,255.0,179.0,0,Transient,81.96,0,0,Canceled,2020-03-03 -City Hotel,1,22,2016,July,30,19,0,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,88.86,0,2,Canceled,2019-05-04 -Resort Hotel,0,27,2016,March,18,20,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,237.0,179.0,0,Transient,64.07,1,0,Check-Out,2019-04-03 -City Hotel,1,1,2016,March,11,13,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,62.57,0,0,Check-Out,2018-12-03 -City Hotel,1,107,2016,April,17,23,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,31.0,179.0,0,Transient-Party,81.49,0,0,Canceled,2019-02-01 -Resort Hotel,0,23,2015,October,53,6,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient-Party,50.19,0,0,Check-Out,2018-08-03 -City Hotel,1,107,2017,April,21,25,2,5,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient-Party,77.64,0,0,Canceled,2020-02-01 -City Hotel,1,149,2016,November,50,26,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,179.0,179.0,0,Transient,44.02,0,0,Canceled,2019-07-04 -City Hotel,0,18,2016,March,16,24,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.22,0,1,Check-Out,2019-02-01 -Resort Hotel,0,109,2016,May,20,9,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,71.95,0,2,Check-Out,2019-05-04 -City Hotel,0,31,2016,October,44,27,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,101.13,0,0,Check-Out,2019-07-04 -Resort Hotel,0,232,2017,August,28,24,3,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient-Party,112.89,1,0,Check-Out,2020-05-03 -Resort Hotel,0,103,2017,July,32,30,4,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,324.0,179.0,0,Transient-Party,98.87,0,0,Check-Out,2018-09-02 -Resort Hotel,0,13,2017,March,17,21,0,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,55.0,0,Transient,49.2,1,0,Check-Out,2020-04-02 -Resort Hotel,1,55,2017,July,36,9,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,1,0,0,A,A,0,Non Refund,180.0,179.0,0,Transient-Party,63.47,0,0,Canceled,2020-07-03 -City Hotel,1,97,2017,March,9,27,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient-Party,74.42,0,3,Canceled,2020-02-01 -City Hotel,0,142,2016,August,32,10,1,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,128.48,0,3,Check-Out,2019-06-03 -Resort Hotel,0,255,2016,August,36,6,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,119.28,1,2,Check-Out,2019-06-03 -City Hotel,0,38,2016,October,42,30,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,8.0,179.0,0,Transient,117.46,0,3,Check-Out,2019-08-04 -City Hotel,0,3,2016,October,43,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,K,0,No Deposit,10.0,179.0,0,Group,73.75,0,0,Check-Out,2018-08-03 -City Hotel,1,398,2017,July,28,9,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,124.32,0,0,Canceled,2020-03-03 -Resort Hotel,1,307,2015,October,49,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,61.51,0,0,Canceled,2017-12-03 -City Hotel,1,0,2017,February,9,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,11.0,79.0,0,Transient,62.52,0,0,Canceled,2020-02-01 -City Hotel,0,375,2017,July,32,2,1,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,129.31,0,0,Check-Out,2020-07-03 -City Hotel,0,358,2017,May,21,26,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,88.62,0,0,Check-Out,2020-03-03 -City Hotel,1,256,2017,March,16,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.81,0,0,Canceled,2020-02-01 -City Hotel,0,109,2016,July,32,27,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,106.99,0,1,Check-Out,2019-06-03 -City Hotel,0,6,2016,March,10,28,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.44,0,1,Check-Out,2019-03-04 -City Hotel,1,103,2016,September,42,25,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,236.0,179.0,0,Transient,129.41,0,0,Canceled,2019-04-03 -City Hotel,0,52,2016,April,17,12,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,118.37,0,0,Check-Out,2020-02-01 -City Hotel,0,68,2016,July,31,21,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,93.29,0,0,Check-Out,2019-06-03 -City Hotel,1,1,2017,August,34,26,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,141.72,0,0,Canceled,2020-06-02 -Resort Hotel,0,5,2015,December,51,20,2,4,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,29.71,0,0,Check-Out,2018-10-03 -City Hotel,1,316,2015,September,37,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.33,0,0,Canceled,2018-06-02 -City Hotel,0,10,2016,January,10,9,1,2,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,3,No Deposit,13.0,179.0,0,Transient,102.21,0,1,Check-Out,2019-11-03 -City Hotel,0,53,2016,August,36,21,1,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,114.64,0,2,Check-Out,2018-06-02 -City Hotel,1,392,2016,October,28,8,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient,62.74,0,0,Canceled,2018-06-02 -Resort Hotel,0,193,2017,May,18,13,2,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,205.0,179.0,0,Transient-Party,152.73,1,0,Check-Out,2020-04-02 -Resort Hotel,0,26,2016,March,18,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,12.0,223.0,0,Transient-Party,66.21,0,0,Check-Out,2019-11-03 -Resort Hotel,1,13,2016,October,44,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,70.93,0,0,Canceled,2019-05-04 -City Hotel,1,24,2016,May,22,13,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.95,0,0,Canceled,2019-01-03 -Resort Hotel,1,118,2016,August,38,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,165.16,0,0,Canceled,2019-06-03 -City Hotel,0,19,2017,June,28,3,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,G,H,0,No Deposit,16.0,179.0,0,Transient,161.19,1,3,Check-Out,2020-06-02 -Resort Hotel,0,159,2017,August,34,19,0,3,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,99.08,1,2,Check-Out,2020-06-02 -City Hotel,0,144,2016,October,53,19,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,105.35,0,1,Check-Out,2019-12-04 -Resort Hotel,0,243,2017,May,29,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Contract,224.13,1,1,Check-Out,2020-03-03 -City Hotel,1,400,2016,May,20,9,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,133.6,0,0,Canceled,2019-03-04 -City Hotel,0,96,2017,May,22,9,0,4,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,1,No Deposit,23.0,179.0,0,Transient-Party,76.6,0,0,Check-Out,2020-05-03 -Resort Hotel,0,85,2015,July,26,30,0,4,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,17.0,179.0,0,Transient,156.0,1,0,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,January,9,2,0,1,2,0.0,0,BB,FRA,Corporate,Direct,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Transient,74.42,0,1,Check-Out,2019-02-01 -City Hotel,1,14,2016,June,19,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,15.0,45.0,0,Transient,59.98,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,December,50,30,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,233.0,0,Transient,43.02,0,0,Check-Out,2019-11-03 -City Hotel,1,3,2016,September,27,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,23,Transient,96.06,0,0,Canceled,2019-03-04 -City Hotel,1,1,2016,October,42,10,0,1,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Canceled,2019-09-03 -Resort Hotel,0,108,2015,November,37,5,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,113.77,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,January,8,29,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,77.39,0,1,Check-Out,2019-10-04 -City Hotel,0,16,2017,May,21,21,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.96,1,0,Check-Out,2020-05-03 -City Hotel,0,3,2017,August,35,15,2,1,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,140.97,0,2,Check-Out,2020-06-02 -Resort Hotel,0,19,2015,August,37,27,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,E,E,0,No Deposit,104.0,179.0,0,Group,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,159,2015,September,37,15,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,235.72,0,3,Check-Out,2018-09-02 -City Hotel,0,3,2015,July,37,6,0,1,2,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,A,K,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,1,66,2015,September,39,10,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,60.32,0,0,Canceled,2017-11-02 -City Hotel,0,26,2016,May,23,8,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,156.82,0,1,Check-Out,2019-05-04 -Resort Hotel,1,257,2017,September,33,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,42.0,179.0,0,Contract,107.56,0,2,Canceled,2018-07-03 -City Hotel,0,157,2017,March,16,16,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,92.28,0,1,Check-Out,2019-12-04 -Resort Hotel,0,93,2016,July,46,10,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,39.78,1,1,Check-Out,2019-05-04 -City Hotel,0,10,2016,April,15,28,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.83,1,2,Check-Out,2020-04-02 -City Hotel,0,10,2015,August,44,29,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,122.04,0,0,Check-Out,2017-11-02 -City Hotel,0,11,2016,November,50,23,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,71.44,0,0,Check-Out,2019-10-04 -Resort Hotel,0,97,2015,February,13,21,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,141.0,179.0,0,Group,46.37,0,1,Check-Out,2018-11-02 -Resort Hotel,0,13,2016,January,4,16,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,37.36,1,1,Check-Out,2018-12-03 -City Hotel,0,3,2016,December,49,27,0,1,2,0.0,0,SC,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,65.93,0,0,Check-Out,2018-11-02 -City Hotel,0,146,2016,April,17,28,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,24,Transient,104.82,0,0,Canceled,2018-12-03 -City Hotel,0,43,2017,January,5,30,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient-Party,74.3,1,0,Check-Out,2019-11-03 -Resort Hotel,1,161,2016,December,43,13,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,333.0,179.0,0,Transient,52.62,0,0,Canceled,2018-11-02 -Resort Hotel,0,149,2017,June,23,30,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,177.0,179.0,75,Transient-Party,63.03,0,0,Check-Out,2020-05-03 -City Hotel,0,4,2017,May,21,20,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,98.89,0,1,Check-Out,2020-04-02 -Resort Hotel,0,93,2017,May,4,28,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,249.0,179.0,0,Transient,188.74,0,3,Check-Out,2020-07-03 -City Hotel,0,164,2017,April,23,28,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,106.7,0,0,Check-Out,2020-03-03 -Resort Hotel,0,42,2015,August,38,3,2,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,214.97,1,2,Check-Out,2018-06-02 -Resort Hotel,1,326,2015,July,53,10,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,264.0,179.0,0,Transient,52.87,0,0,Canceled,2019-09-03 -Resort Hotel,1,277,2017,July,25,28,0,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,237.0,179.0,0,Transient,111.84,0,0,Canceled,2019-11-03 -Resort Hotel,1,95,2017,May,23,7,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,143.62,0,2,Canceled,2020-03-03 -City Hotel,0,241,2015,July,32,5,1,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,108.86,0,0,Check-Out,2020-06-02 -City Hotel,0,250,2015,July,32,20,0,5,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,96.11,0,0,Check-Out,2018-06-02 -City Hotel,1,326,2016,July,33,12,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,166.0,179.0,0,Transient,115.27,0,0,Canceled,2019-08-04 -City Hotel,1,47,2016,May,24,29,2,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,159.52,0,0,Canceled,2019-02-01 -City Hotel,0,207,2016,May,21,11,1,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient-Party,70.1,1,0,Check-Out,2020-03-03 -City Hotel,0,100,2016,May,10,6,1,2,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,157.65,0,0,Check-Out,2019-08-04 -Resort Hotel,0,56,2016,April,16,28,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,90.45,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,October,44,13,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,35.39,0,0,Check-Out,2019-09-03 -City Hotel,1,14,2016,August,39,9,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,171.09,0,0,Canceled,2019-08-04 -Resort Hotel,0,151,2016,May,18,31,0,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,D,D,2,Refundable,15.0,179.0,0,Transient-Party,77.01,1,0,Check-Out,2019-01-03 -Resort Hotel,0,140,2016,March,10,5,0,3,1,0.0,0,BB,DEU,Corporate,Corporate,1,0,1,A,D,1,No Deposit,11.0,245.0,0,Transient,28.06,0,0,Check-Out,2019-05-04 -City Hotel,0,12,2016,March,17,25,2,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,98.74,0,0,Check-Out,2019-02-01 -Resort Hotel,1,178,2017,March,18,25,0,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,90.23,0,0,Canceled,2019-09-03 -Resort Hotel,0,34,2017,March,10,5,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,63.67,0,1,Check-Out,2018-12-03 -Resort Hotel,0,204,2017,July,35,13,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,251.71,0,1,Check-Out,2019-08-04 -Resort Hotel,0,20,2016,February,10,8,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,84.48,1,0,Check-Out,2019-02-01 -City Hotel,1,83,2015,December,46,31,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.49,0,0,Canceled,2018-06-02 -City Hotel,0,78,2017,May,9,16,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.92,0,1,Check-Out,2020-01-04 -City Hotel,1,226,2016,September,36,21,0,2,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.02,0,0,Check-Out,2018-06-02 -Resort Hotel,0,263,2016,July,43,15,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,246.0,179.0,0,Contract,120.44,0,1,Check-Out,2019-06-03 -City Hotel,1,16,2015,October,45,28,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,93.32,0,0,Canceled,2018-07-03 -City Hotel,1,194,2017,April,25,3,2,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.68,0,0,Canceled,2019-12-04 -Resort Hotel,0,16,2015,December,44,31,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,60.76,0,0,Check-Out,2018-11-02 -City Hotel,0,14,2016,January,50,18,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,59.61,0,0,Check-Out,2018-12-03 -City Hotel,1,19,2015,December,50,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,62.32,0,1,Check-Out,2018-11-02 -Resort Hotel,1,151,2016,March,10,31,0,3,2,0.0,0,BB,NLD,Groups,Direct,0,1,0,A,A,0,Refundable,14.0,222.0,0,Transient,62.28,0,0,Canceled,2018-12-03 -City Hotel,1,11,2017,May,22,9,0,1,1,0.0,0,BB,CHE,Corporate,Corporate,0,0,0,C,F,2,No Deposit,14.0,331.0,0,Transient,158.22,0,0,Canceled,2019-11-03 -City Hotel,1,85,2016,July,32,17,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,184.59,0,0,No-Show,2019-05-04 -City Hotel,1,3,2015,August,39,13,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,0.7,0,0,Canceled,2018-08-03 -City Hotel,1,365,2017,June,20,27,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,61.06,0,0,Canceled,2019-11-03 -City Hotel,1,150,2016,August,33,6,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,190.89,0,0,Canceled,2019-11-03 -City Hotel,1,88,2016,October,42,19,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,126.23,0,2,Check-Out,2019-06-03 -Resort Hotel,0,423,2016,February,13,18,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,0,Transient-Party,75.73,0,0,Check-Out,2019-06-03 -City Hotel,1,28,2016,October,44,30,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.57,0,0,Canceled,2019-09-03 -Resort Hotel,0,42,2016,December,51,27,0,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,71.6,1,1,Check-Out,2019-11-03 -City Hotel,0,1,2017,April,19,29,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,55.0,179.0,0,Transient,116.55,0,0,Check-Out,2020-03-03 -Resort Hotel,0,12,2016,April,27,21,0,1,2,0.0,0,BB,,Complementary,TA/TO,1,0,0,A,K,0,No Deposit,245.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-03-04 -Resort Hotel,1,10,2016,June,24,9,1,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,165.13,0,0,Canceled,2019-02-01 -City Hotel,0,4,2016,January,50,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,13.0,268.0,0,Transient-Party,60.92,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,March,18,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,58.63,1,1,Check-Out,2018-12-03 -City Hotel,1,145,2017,June,22,27,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,100.79,0,0,Canceled,2020-03-03 -Resort Hotel,1,378,2016,September,43,29,0,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,77.01,0,0,Canceled,2019-08-04 -Resort Hotel,0,253,2015,October,43,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,61.71,0,0,Check-Out,2018-07-03 -City Hotel,0,116,2016,August,37,10,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.48,0,1,Check-Out,2019-06-03 -Resort Hotel,1,62,2017,October,38,26,2,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,250.0,179.0,0,Transient,49.03,0,0,No-Show,2020-04-02 -City Hotel,0,11,2017,May,34,16,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,F,2,No Deposit,14.0,179.0,0,Transient,100.96,0,1,Check-Out,2020-06-02 -Resort Hotel,1,101,2016,May,22,22,2,0,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,184.81,0,0,Canceled,2019-01-03 -City Hotel,1,177,2016,September,26,21,0,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.59,0,0,Canceled,2019-08-04 -City Hotel,0,0,2017,March,9,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,88.0,179.0,0,Group,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,104,2017,March,20,27,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,83.91,0,0,Check-Out,2020-04-02 -Resort Hotel,0,17,2015,December,53,26,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.39,0,0,Check-Out,2017-12-03 -Resort Hotel,0,258,2017,June,8,8,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,311.0,179.0,0,Transient-Party,86.05,0,1,Check-Out,2020-04-02 -City Hotel,1,416,2015,October,45,12,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,63.06,0,0,Canceled,2017-11-02 -Resort Hotel,1,118,2015,October,44,14,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,237.0,179.0,0,Transient,101.78,0,1,Canceled,2018-06-02 -City Hotel,1,0,2016,December,42,10,2,0,1,0.0,0,SC,PRT,Complementary,Direct,1,0,1,B,G,1,No Deposit,16.0,179.0,0,Transient,0.0,0,1,Canceled,2019-06-03 -Resort Hotel,1,26,2017,May,21,19,1,2,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,222.02,0,2,Canceled,2019-05-04 -City Hotel,0,197,2016,June,24,5,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient,78.04,0,0,Check-Out,2019-06-03 -City Hotel,0,18,2016,October,44,21,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,88.99,0,2,Check-Out,2019-06-03 -Resort Hotel,1,161,2017,June,24,20,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,97.14,0,0,Canceled,2019-11-03 -Resort Hotel,1,2,2015,February,11,22,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,43.6,0,1,Canceled,2018-10-03 -Resort Hotel,1,2,2017,July,34,2,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,249.0,179.0,0,Transient,152.5,0,0,No-Show,2020-06-02 -City Hotel,0,2,2016,December,51,24,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.98,0,0,Check-Out,2019-11-03 -City Hotel,0,96,2016,October,17,24,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,129.41,0,2,Check-Out,2019-01-03 -City Hotel,1,407,2017,May,20,5,2,0,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,77.3,0,0,Canceled,2020-03-03 -City Hotel,1,236,2015,August,37,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,146.96,0,2,Canceled,2018-05-03 -City Hotel,1,33,2016,August,17,24,0,2,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient,139.94,0,1,Canceled,2018-11-02 -Resort Hotel,0,2,2017,March,11,28,1,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,41.57,0,1,Check-Out,2019-11-03 -City Hotel,1,0,2015,July,35,8,0,1,2,0.0,0,BB,PRT,Direct,Undefined,0,1,0,B,B,0,No Deposit,18.0,179.0,0,Transient-Party,65.45,0,0,Canceled,2018-07-03 -City Hotel,1,152,2017,April,16,6,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,125.93,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,January,50,6,0,1,2,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,195.0,179.0,0,Transient-Party,38.78,1,0,Check-Out,2019-09-03 -City Hotel,1,191,2017,April,17,24,2,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,166.66,0,0,Canceled,2019-04-03 -Resort Hotel,0,229,2015,July,29,18,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Contract,38.93,0,1,Check-Out,2017-12-03 -Resort Hotel,0,201,2017,July,28,25,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,202.2,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,November,18,20,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,183.0,0,Transient,143.19,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,December,51,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,241.0,0,Transient-Party,95.76,0,0,Check-Out,2019-11-03 -Resort Hotel,1,59,2017,April,18,29,2,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,241.0,179.0,0,Transient,151.6,0,1,Canceled,2019-02-01 -City Hotel,0,20,2017,April,16,29,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.91,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,January,2,4,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,255.0,0,Transient,39.05,0,1,Check-Out,2019-12-04 -Resort Hotel,1,249,2015,July,33,13,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,74.75,0,0,Canceled,2018-05-03 -Resort Hotel,0,2,2017,February,4,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,62.81,0,0,Check-Out,2019-11-03 -City Hotel,0,238,2015,July,31,19,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,93.99,0,0,Check-Out,2018-05-03 -City Hotel,0,29,2016,December,46,27,1,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,104.31,0,3,Check-Out,2019-10-04 -City Hotel,1,157,2017,March,16,21,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,97.32,0,0,Canceled,2019-10-04 -City Hotel,1,4,2016,March,8,16,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,96.2,0,0,Canceled,2018-11-02 -City Hotel,1,444,2017,May,23,22,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,95.6,0,0,Canceled,2019-05-04 -City Hotel,1,356,2016,May,20,15,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,12,Transient,62.26,0,0,Canceled,2019-02-01 -Resort Hotel,0,200,2016,September,43,24,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,No Deposit,181.0,179.0,0,Transient,38.29,0,0,Check-Out,2019-08-04 -Resort Hotel,0,30,2016,April,17,30,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,43.45,0,0,Check-Out,2018-12-03 -Resort Hotel,0,29,2017,June,22,5,0,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,75,Transient,175.98,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2016,May,24,29,0,4,2,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,181.0,0,Transient,129.59,0,0,Check-Out,2019-03-04 -City Hotel,1,0,2015,September,43,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,64.0,0,Transient,46.95,0,0,No-Show,2018-07-03 -City Hotel,0,4,2016,June,21,1,0,3,1,0.0,0,BB,,Direct,Direct,0,0,0,D,A,1,No Deposit,15.0,179.0,0,Transient,102.05,0,0,Check-Out,2019-03-04 -City Hotel,1,393,2016,May,32,10,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,61,Transient,71.76,0,0,Canceled,2018-12-03 -City Hotel,0,2,2017,August,10,13,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.28,0,0,Check-Out,2020-06-02 -Resort Hotel,0,111,2015,August,26,14,1,5,2,1.0,0,BB,USA,Direct,Direct,0,0,0,F,F,2,No Deposit,17.0,179.0,0,Transient,161.25,0,0,Check-Out,2019-05-04 -City Hotel,0,53,2016,April,15,28,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,73.15,0,0,Check-Out,2019-02-01 -Resort Hotel,0,235,2017,June,23,27,0,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,72.88,0,1,Check-Out,2020-03-03 -Resort Hotel,0,249,2016,July,33,21,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient,169.59,0,1,Check-Out,2019-08-04 -Resort Hotel,0,164,2016,March,22,6,2,5,2,0.0,0,HB,ISR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,179.0,0,Transient,78.2,0,0,Check-Out,2019-02-01 -City Hotel,1,45,2016,January,4,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,19.0,179.0,15,Transient,57.58,0,2,Canceled,2018-11-02 -Resort Hotel,0,143,2016,April,15,9,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,152.0,179.0,0,Transient,77.87,1,0,Check-Out,2020-02-01 -Resort Hotel,0,5,2016,August,39,7,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,240.0,179.0,0,Transient,204.25,1,1,Check-Out,2019-08-04 -City Hotel,1,199,2016,September,37,12,0,1,1,0.0,0,BB,,Groups,Corporate,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,71.06,0,0,Canceled,2018-09-02 -City Hotel,0,13,2017,June,25,5,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,133.45,0,1,Check-Out,2020-06-02 -Resort Hotel,0,152,2015,August,37,22,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,160.14,1,0,Check-Out,2018-06-02 -City Hotel,0,15,2017,July,27,9,1,3,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,E,E,0,No Deposit,15.0,190.0,0,Transient,205.75,0,0,Canceled,2020-03-03 -City Hotel,1,32,2017,January,9,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,61,Transient,95.66,0,0,Canceled,2019-11-03 -Resort Hotel,1,239,2017,May,21,15,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,197.41,0,0,Canceled,2020-04-02 -City Hotel,0,3,2016,November,49,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,59.87,0,0,Check-Out,2018-11-02 -City Hotel,0,141,2016,June,26,17,0,2,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.43,0,0,Check-Out,2019-05-04 -Resort Hotel,0,19,2015,December,52,10,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,36.79,0,1,Check-Out,2018-10-03 -Resort Hotel,0,152,2016,June,28,30,4,3,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,120.07,0,1,Check-Out,2019-06-03 -City Hotel,1,25,2017,December,51,31,0,2,2,0.0,0,BB,ITA,Online TA,Corporate,0,0,0,A,D,1,No Deposit,13.0,66.0,0,Transient,118.58,0,0,Canceled,2020-01-04 -City Hotel,1,280,2017,May,20,16,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.44,0,0,Canceled,2020-04-02 -Resort Hotel,0,1,2016,August,38,6,0,1,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,2,No Deposit,248.0,179.0,0,Transient,219.14,0,0,Check-Out,2019-05-04 -City Hotel,1,15,2015,September,35,18,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,71.39,0,0,Canceled,2018-06-02 -City Hotel,0,11,2017,February,8,19,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-10-04 -City Hotel,1,1,2016,November,50,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,1,0,A,D,0,Non Refund,16.0,45.0,0,Transient,104.02,0,0,Canceled,2018-08-03 -City Hotel,0,33,2017,May,27,22,0,1,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,C,A,1,No Deposit,13.0,179.0,0,Transient,90.71,0,3,Check-Out,2019-12-04 -Resort Hotel,0,83,2015,September,44,19,2,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,135.76,1,0,Check-Out,2019-06-03 -City Hotel,0,40,2017,March,3,15,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,22.0,179.0,0,Transient,70.83,0,1,Check-Out,2019-12-04 -Resort Hotel,0,107,2017,May,36,30,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,79.96,0,0,Check-Out,2020-07-03 -Resort Hotel,1,95,2016,May,23,6,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,324.0,179.0,0,Transient,85.25,0,0,Canceled,2019-05-04 -City Hotel,1,94,2017,August,38,10,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,162.57,0,0,Canceled,2020-01-04 -Resort Hotel,0,43,2016,January,4,27,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,314.0,179.0,0,Transient,61.38,0,0,Check-Out,2019-03-04 -Resort Hotel,0,23,2016,March,18,29,0,1,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,73.1,0,0,Check-Out,2019-04-03 -City Hotel,0,44,2017,March,18,9,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,93.2,0,1,Check-Out,2020-03-03 -City Hotel,1,74,2015,July,35,28,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,77.45,0,1,Canceled,2018-04-02 -City Hotel,1,42,2016,April,16,16,2,5,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,142.9,0,0,Canceled,2019-01-03 -City Hotel,0,39,2015,November,45,28,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,113.18,0,0,Check-Out,2018-09-02 -Resort Hotel,1,87,2015,July,50,28,2,5,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,77.62,0,0,Canceled,2019-05-04 -City Hotel,0,48,2016,July,25,9,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.87,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,June,27,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,17.0,179.0,0,Transient,3.07,1,0,Check-Out,2020-05-03 -Resort Hotel,0,59,2015,November,50,4,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,No Deposit,112.0,179.0,0,Transient-Party,58.79,0,0,Check-Out,2018-08-03 -City Hotel,0,146,2017,June,26,5,2,3,2,0.0,0,BB,USA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient,158.92,0,0,Check-Out,2020-02-01 -City Hotel,0,18,2015,October,42,21,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Contract,77.03,0,2,Check-Out,2017-11-02 -City Hotel,1,91,2015,August,32,4,2,0,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2018-07-03 -City Hotel,0,1,2017,January,10,31,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,65.37,0,2,Check-Out,2019-09-03 -City Hotel,1,16,2016,July,49,5,0,2,3,0.0,0,BB,BRA,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,77.65,0,0,Canceled,2019-12-04 -Resort Hotel,1,153,2017,July,9,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,79.65,0,0,Canceled,2020-03-03 -Resort Hotel,1,80,2017,March,10,21,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,70.65,0,2,Canceled,2020-01-04 -City Hotel,0,17,2016,December,50,5,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,45.0,0,Transient,72.94,1,0,Check-Out,2019-12-04 -City Hotel,0,5,2017,July,26,10,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,83.04,1,3,Check-Out,2020-06-02 -Resort Hotel,0,144,2017,May,23,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,D,C,2,Refundable,13.0,222.0,0,Transient-Party,66.26,1,0,Check-Out,2020-02-01 -Resort Hotel,0,1,2015,October,44,31,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,22.47,1,0,Check-Out,2018-09-02 -City Hotel,0,12,2016,March,10,13,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient-Party,68.67,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2015,October,44,10,1,1,1,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,120.68,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2016,May,19,17,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,242.0,179.0,0,Transient-Party,63.16,1,0,Check-Out,2019-03-04 -City Hotel,1,7,2017,March,22,23,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,191.9,0,0,Canceled,2020-02-01 -Resort Hotel,0,32,2015,December,53,7,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,39.2,0,2,Check-Out,2018-10-03 -City Hotel,1,49,2017,February,12,23,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,28.7,0,2,Canceled,2020-04-02 -City Hotel,0,49,2016,December,51,24,1,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Contract,68.67,0,1,Check-Out,2019-11-03 -City Hotel,1,260,2017,June,27,5,0,2,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,115.93,0,0,Canceled,2019-11-03 -City Hotel,1,107,2017,May,22,30,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,214.31,0,1,Canceled,2020-04-02 -Resort Hotel,1,263,2015,September,33,21,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,282.0,179.0,0,Contract,30.52,0,0,Canceled,2017-11-02 -City Hotel,0,1,2017,February,9,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,96.11,0,0,Check-Out,2019-09-03 -City Hotel,1,36,2017,March,11,16,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,62.58,0,0,Canceled,2020-02-01 -City Hotel,0,218,2017,February,10,29,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.84,0,1,Check-Out,2020-03-03 -Resort Hotel,0,20,2015,October,43,3,2,1,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,69.28,0,3,Check-Out,2018-08-03 -City Hotel,1,139,2017,June,25,21,2,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,82.7,0,0,Canceled,2020-04-02 -City Hotel,1,77,2016,January,9,13,0,2,2,2.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.87,0,0,Canceled,2019-11-03 -Resort Hotel,0,56,2015,October,50,30,0,3,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,104.78,0,2,Check-Out,2018-09-02 -City Hotel,0,99,2016,December,51,31,1,5,2,1.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,79.62,1,0,Check-Out,2019-10-04 -City Hotel,0,19,2017,March,29,27,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.93,0,1,Canceled,2020-02-01 -City Hotel,0,39,2017,July,4,21,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,G,3,No Deposit,10.0,179.0,0,Transient,100.37,0,0,Check-Out,2019-12-04 -Resort Hotel,0,35,2017,February,11,25,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,76.32,0,1,Check-Out,2020-01-04 -City Hotel,0,38,2017,July,30,6,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,87.42,1,2,Check-Out,2020-02-01 -Resort Hotel,0,269,2016,August,35,23,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,83.42,0,2,Check-Out,2019-07-04 -Resort Hotel,0,13,2016,June,26,5,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,164.44,1,2,Check-Out,2019-03-04 -Resort Hotel,0,213,2015,September,48,10,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient-Party,80.09,0,0,Check-Out,2018-08-03 -Resort Hotel,1,6,2016,December,49,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,226.0,0,Transient,35.66,0,0,Canceled,2019-12-04 -Resort Hotel,0,8,2016,May,22,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,C,C,0,No Deposit,241.0,179.0,0,Group,85.77,1,1,Check-Out,2020-03-03 -City Hotel,0,1,2016,October,44,27,0,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,D,0,No Deposit,10.0,191.0,0,Transient-Party,128.18,0,0,Check-Out,2018-09-02 -City Hotel,1,159,2017,March,18,24,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,42,Transient,73.87,0,0,Canceled,2018-11-02 -City Hotel,0,144,2016,June,25,24,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient-Party,93.22,0,1,Check-Out,2019-05-04 -City Hotel,0,37,2016,August,35,14,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,76.22,0,1,Check-Out,2019-05-04 -Resort Hotel,1,113,2017,July,39,3,3,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,172.88,0,0,Canceled,2020-06-02 -Resort Hotel,1,109,2015,July,36,15,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,107.7,0,0,Canceled,2018-07-03 -City Hotel,1,393,2017,April,15,28,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,120.19,0,0,Canceled,2019-11-03 -Resort Hotel,0,59,2016,August,36,13,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,157.43,1,0,Check-Out,2020-06-02 -City Hotel,1,26,2016,June,22,2,0,2,2,0.0,0,BB,CN,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,98.97,0,0,Check-Out,2019-04-03 -City Hotel,1,0,2016,December,53,3,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,59.59,0,1,Canceled,2018-10-03 -Resort Hotel,0,39,2016,March,17,10,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,239.0,179.0,0,Transient,86.68,1,0,Check-Out,2019-03-04 -City Hotel,0,148,2016,November,50,26,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,168.87,0,1,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,May,20,5,3,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,37.18,0,0,Check-Out,2019-08-04 -Resort Hotel,0,347,2016,September,41,25,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,G,0,No Deposit,279.0,179.0,0,Transient,39.7,0,0,Check-Out,2020-06-02 -City Hotel,0,13,2017,September,43,15,1,1,2,0.0,0,BB,GBR,Direct,Direct,1,0,1,D,D,0,No Deposit,13.0,179.0,0,Group,111.29,0,1,Check-Out,2019-12-04 -Resort Hotel,0,0,2015,September,35,12,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,F,0,No Deposit,245.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,105,2016,March,34,12,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.8,0,2,Check-Out,2019-05-04 -City Hotel,0,287,2015,October,38,22,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,208.0,0,Transient-Party,60.32,0,0,Check-Out,2018-09-02 -Resort Hotel,0,25,2015,September,36,4,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,48.5,0,2,No-Show,2018-05-03 -City Hotel,0,97,2016,May,24,17,2,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient-Party,125.9,0,0,Check-Out,2019-09-03 -City Hotel,1,27,2016,March,16,9,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,No Deposit,1.0,179.0,0,Transient,61.32,0,0,Canceled,2018-12-03 -City Hotel,0,44,2016,January,4,28,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.28,0,1,Check-Out,2019-03-04 -Resort Hotel,1,5,2016,August,32,19,0,6,3,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,209.45,0,0,Canceled,2019-02-01 -City Hotel,1,25,2017,August,34,27,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,71.87,0,0,Canceled,2019-11-03 -City Hotel,0,4,2016,May,21,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,206.38,0,0,Canceled,2019-10-04 -City Hotel,0,236,2017,July,21,23,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.42,0,1,Check-Out,2020-03-03 -Resort Hotel,0,14,2015,October,43,9,2,2,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Contract,35.13,0,1,Check-Out,2018-12-03 -Resort Hotel,0,39,2015,July,32,9,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,267.0,179.0,0,Transient-Party,62.72,1,0,Check-Out,2018-08-03 -City Hotel,0,13,2017,June,26,6,0,1,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,218.46,0,0,Check-Out,2020-07-03 -Resort Hotel,1,55,2015,August,37,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Transient,59.68,0,0,Canceled,2018-12-03 -Resort Hotel,1,104,2016,September,43,21,2,3,3,0.0,0,BB,IRL,Online TA,Direct,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,2019-09-03 -City Hotel,0,1,2017,March,8,24,0,1,2,0.0,0,BB,POL,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,74.0,0,Transient,73.89,0,1,Check-Out,2019-01-03 -City Hotel,0,123,2016,February,9,5,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,88.66,0,0,Check-Out,2019-03-04 -City Hotel,0,40,2016,September,52,7,0,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.79,0,2,Check-Out,2019-11-03 -City Hotel,0,2,2016,June,23,20,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,144.37,0,2,Check-Out,2019-05-04 -City Hotel,1,14,2016,March,15,11,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,134.64,0,0,Canceled,2019-02-01 -Resort Hotel,0,130,2016,May,24,31,1,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,1,Refundable,304.0,223.0,0,Transient-Party,38.82,0,0,Check-Out,2019-02-01 -Resort Hotel,0,59,2015,July,32,7,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Contract,61.5,0,0,Check-Out,2018-06-02 -City Hotel,1,154,2016,August,38,15,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,130.91,0,1,Canceled,2018-08-03 -Resort Hotel,0,24,2017,February,11,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,47.78,0,0,Check-Out,2018-10-03 -City Hotel,0,124,2016,July,23,24,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,93.0,179.0,0,Transient-Party,121.68,0,1,Check-Out,2019-05-04 -City Hotel,0,8,2017,June,34,28,0,3,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,14.0,225.0,0,Transient-Party,123.37,1,0,Check-Out,2020-07-03 -City Hotel,0,84,2017,June,27,2,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,24.0,179.0,75,Transient,92.89,0,0,Check-Out,2019-05-04 -City Hotel,0,152,2015,July,43,18,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,179.0,0,Transient,84.98,0,0,Check-Out,2018-08-03 -Resort Hotel,1,52,2016,July,44,31,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,239.0,179.0,0,Transient,151.7,1,1,Canceled,2018-06-02 -Resort Hotel,1,181,2017,August,29,22,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,208.25,0,0,Canceled,2020-03-03 -Resort Hotel,0,264,2015,September,39,31,0,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Contract,59.6,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,March,29,20,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,14.0,217.0,0,Transient-Party,39.38,0,0,Check-Out,2019-07-04 -City Hotel,0,16,2016,July,22,28,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.84,0,1,Check-Out,2019-06-03 -City Hotel,0,159,2016,August,35,23,2,3,3,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,2,No Deposit,14.0,179.0,0,Transient,240.0,0,3,Check-Out,2019-05-04 -Resort Hotel,0,0,2015,January,4,31,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,C,0,No Deposit,251.0,179.0,0,Transient,35.3,0,1,Check-Out,2018-09-02 -City Hotel,1,267,2015,September,43,21,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.39,0,0,Canceled,2018-06-02 -City Hotel,1,205,2017,May,26,5,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,117.94,0,1,Canceled,2020-04-02 -City Hotel,0,19,2016,February,8,4,0,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,80.2,0,1,Check-Out,2018-12-03 -City Hotel,0,15,2016,August,36,19,0,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,186.19,0,0,Check-Out,2019-05-04 -Resort Hotel,0,240,2015,July,31,4,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,45.73,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2016,May,22,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient,70.63,0,0,Check-Out,2019-03-04 -City Hotel,0,4,2015,October,42,17,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient-Party,86.16,0,0,Check-Out,2018-08-03 -City Hotel,0,141,2016,January,4,14,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,166.0,179.0,0,Contract,61.77,0,3,Check-Out,2019-11-03 -City Hotel,0,196,2016,October,44,17,0,1,1,0.0,0,BB,GBR,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,91.19,0,0,Check-Out,2019-08-04 -Resort Hotel,0,37,2016,October,46,24,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.81,0,0,Check-Out,2019-09-03 -City Hotel,0,16,2017,May,29,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.2,0,1,Check-Out,2020-04-02 -Resort Hotel,0,47,2016,December,51,6,2,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,49.61,1,0,Check-Out,2019-11-03 -Resort Hotel,0,46,2016,April,17,14,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,310.0,179.0,0,Transient,30.28,0,0,Check-Out,2019-03-04 -City Hotel,0,151,2016,July,35,9,2,4,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,140.23,0,1,Check-Out,2019-06-03 -City Hotel,1,56,2017,August,23,15,2,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,152.42,0,0,Canceled,2020-04-02 -City Hotel,1,110,2017,July,16,26,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Contract,91.06,0,0,Canceled,2020-03-03 -Resort Hotel,1,42,2016,February,9,25,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,64.77,0,0,Canceled,2018-10-03 -City Hotel,1,143,2016,September,50,31,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,154.85,0,0,Canceled,2018-08-03 -City Hotel,0,0,2015,December,53,7,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Contract,61.03,0,0,Check-Out,2018-11-02 -Resort Hotel,1,0,2016,February,4,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,65.97,0,0,No-Show,2018-11-02 -City Hotel,0,0,2016,June,26,25,0,4,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,1,26,2016,May,25,2,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,114.47,0,1,Canceled,2019-03-04 -City Hotel,1,85,2016,March,9,2,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient,103.73,0,1,Canceled,2018-10-03 -Resort Hotel,0,112,2016,August,32,30,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,197.69,0,3,Check-Out,2020-05-03 -City Hotel,0,0,2016,December,11,9,2,0,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,D,E,0,No Deposit,15.0,51.0,0,Transient,49.72,0,0,Check-Out,2019-01-03 -Resort Hotel,1,87,2016,July,28,22,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,122.76,0,0,Canceled,2019-01-03 -City Hotel,0,2,2017,January,8,14,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,63.58,1,2,Check-Out,2020-02-01 -City Hotel,0,37,2016,June,41,15,0,4,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.94,0,0,Check-Out,2019-07-04 -Resort Hotel,0,145,2016,April,17,28,2,5,2,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,112.16,1,0,Check-Out,2019-02-01 -City Hotel,0,89,2016,March,17,15,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,112.81,0,1,Check-Out,2019-04-03 -Resort Hotel,0,39,2016,October,44,16,2,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,234.54,0,2,Check-Out,2019-05-04 -City Hotel,1,1,2016,October,42,24,2,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.0,0,2,Canceled,2019-03-04 -City Hotel,0,102,2017,April,9,6,1,3,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,1,0,1,D,D,0,No Deposit,140.0,331.0,0,Group,74.65,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2015,September,33,13,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,71.46,0,0,Check-Out,2017-11-02 -City Hotel,0,30,2016,November,53,15,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.71,0,1,Check-Out,2019-10-04 -City Hotel,0,148,2016,April,19,31,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,98.0,0,2,Check-Out,2019-03-04 -Resort Hotel,0,4,2015,November,43,5,4,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,39.62,0,0,Check-Out,2018-08-03 -Resort Hotel,0,140,2017,February,10,20,2,5,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,64.24,0,0,Check-Out,2020-04-02 -Resort Hotel,0,34,2015,December,52,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,40.48,1,2,Check-Out,2018-09-02 -City Hotel,0,137,2017,December,53,15,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.16,0,1,Check-Out,2019-10-04 -Resort Hotel,0,2,2015,November,46,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,179.0,0,Transient,129.72,1,0,Check-Out,2019-08-04 -Resort Hotel,0,10,2016,October,44,26,0,2,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,189.0,179.0,0,Transient-Party,60.46,0,0,Check-Out,2019-09-03 -City Hotel,0,46,2017,March,4,4,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,60.62,1,2,Check-Out,2019-10-04 -City Hotel,1,57,2016,December,51,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,229.0,179.0,0,Transient,40.73,0,0,Canceled,2018-08-03 -Resort Hotel,0,45,2017,May,10,8,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,37.09,1,1,Check-Out,2020-02-01 -City Hotel,1,194,2016,March,7,19,2,3,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,106.4,0,1,Canceled,2019-02-01 -Resort Hotel,0,0,2017,April,16,13,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,84.54,1,0,Check-Out,2020-02-01 -Resort Hotel,0,102,2016,September,39,8,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,210.0,179.0,0,Transient,92.36,0,0,Check-Out,2019-09-03 -Resort Hotel,0,52,2016,December,50,24,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,37.6,0,3,Check-Out,2019-10-04 -City Hotel,1,92,2017,May,21,28,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,84.27,0,0,Canceled,2020-04-02 -Resort Hotel,0,60,2016,December,9,6,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,78.08,0,0,Check-Out,2019-11-03 -Resort Hotel,0,2,2015,November,46,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,331.0,0,Transient-Party,42.99,1,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,July,26,30,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,213.42,0,2,Check-Out,2020-06-02 -City Hotel,0,16,2016,October,42,21,1,0,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,83.58,0,0,Check-Out,2018-08-03 -Resort Hotel,1,382,2016,March,10,31,1,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,327.0,223.0,0,Transient-Party,63.97,0,0,Canceled,2019-02-01 -Resort Hotel,0,195,2017,May,31,25,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,H,1,No Deposit,378.0,179.0,0,Transient-Party,80.65,0,0,Check-Out,2020-04-02 -Resort Hotel,1,114,2016,July,17,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,248.0,179.0,0,Transient-Party,63.96,1,0,Canceled,2019-03-04 -City Hotel,1,91,2017,June,21,30,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,152.37,0,0,Canceled,2020-01-04 -City Hotel,0,4,2016,October,43,12,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.31,0,0,Check-Out,2019-09-03 -City Hotel,1,412,2016,May,21,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,116.75,0,0,Canceled,2019-01-03 -Resort Hotel,1,151,2017,July,33,5,2,5,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,149.25,0,0,Canceled,2020-06-02 -Resort Hotel,0,14,2015,December,31,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,125.92,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2017,May,23,21,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,315.0,69.0,0,Transient-Party,61.6,0,0,Check-Out,2020-03-03 -Resort Hotel,1,163,2016,October,43,16,3,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,Non Refund,131.0,179.0,0,Transient,81.22,0,0,Canceled,2019-07-04 -Resort Hotel,0,7,2017,February,12,24,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient,67.9,0,0,Check-Out,2019-11-03 -Resort Hotel,0,144,2015,December,36,31,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Contract,36.03,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,February,11,17,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,A,1,No Deposit,13.0,331.0,0,Transient,43.2,0,0,Check-Out,2019-10-04 -City Hotel,0,12,2017,January,4,31,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.66,0,1,Check-Out,2019-09-03 -City Hotel,1,352,2016,September,38,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.44,0,0,Canceled,2018-08-03 -City Hotel,0,18,2016,August,36,27,2,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,109.88,0,0,Check-Out,2019-06-03 -City Hotel,0,8,2015,August,33,17,0,2,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,100.91,0,1,Check-Out,2018-07-03 -Resort Hotel,0,16,2016,August,37,21,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient-Party,73.9,0,0,Check-Out,2019-06-03 -City Hotel,1,43,2016,September,38,27,0,2,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.58,0,0,Canceled,2019-08-04 -City Hotel,0,20,2016,February,16,10,1,0,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,74.73,0,0,Check-Out,2018-11-02 -City Hotel,0,19,2016,January,4,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,76.16,0,0,Check-Out,2018-12-03 -Resort Hotel,1,261,2016,June,26,27,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,234.48,0,0,Canceled,2019-04-03 -City Hotel,1,132,2016,June,28,14,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,125.0,179.0,44,Transient,91.74,0,0,Canceled,2019-02-01 -City Hotel,0,251,2016,August,35,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.21,0,1,Check-Out,2019-06-03 -Resort Hotel,1,2,2016,January,9,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,48.17,1,1,Canceled,2018-11-02 -City Hotel,0,10,2015,October,45,22,1,1,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,1,No Deposit,3.0,228.0,0,Transient-Party,139.09,0,0,Check-Out,2018-09-02 -City Hotel,1,61,2016,September,34,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,3.0,179.0,0,Transient-Party,89.17,0,0,Canceled,2019-01-03 -City Hotel,0,14,2017,July,31,5,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,119.74,0,0,Check-Out,2020-05-03 -Resort Hotel,1,229,2016,May,24,28,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,111.98,0,1,Canceled,2019-02-01 -City Hotel,0,94,2016,June,43,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,94.42,0,0,Check-Out,2019-06-03 -City Hotel,0,100,2016,January,4,5,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.38,0,2,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,January,4,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,76.0,0,Transient,79.9,1,0,Check-Out,2018-10-03 -City Hotel,1,262,2017,July,34,21,0,1,2,2.0,0,BB,PRT,Groups,Direct,0,1,0,D,F,0,Non Refund,14.0,179.0,0,Transient,202.32,0,0,Canceled,2018-06-02 -Resort Hotel,0,92,2016,October,42,7,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,108.35,0,1,Check-Out,2019-02-01 -Resort Hotel,0,46,2016,October,49,9,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient-Party,86.86,0,2,Check-Out,2018-09-02 -Resort Hotel,0,15,2017,January,4,21,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,3,No Deposit,16.0,85.0,0,Transient,62.93,0,0,Check-Out,2019-10-04 -City Hotel,1,21,2016,August,33,5,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,97.42,0,0,Canceled,2019-07-04 -City Hotel,1,195,2016,May,23,27,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,149.17,0,1,Canceled,2019-08-04 -City Hotel,0,83,2017,March,16,6,1,0,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,66.09,0,0,Check-Out,2020-02-01 -Resort Hotel,0,32,2015,December,51,4,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,37.25,0,0,Check-Out,2019-10-04 -Resort Hotel,0,154,2016,March,17,30,0,4,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,243.0,179.0,75,Transient-Party,60.43,1,2,Check-Out,2019-02-01 -Resort Hotel,1,231,2015,August,36,20,2,5,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient-Party,177.0,0,0,Canceled,2018-06-02 -City Hotel,1,24,2015,October,50,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.36,0,0,Canceled,2017-11-02 -Resort Hotel,0,5,2015,July,43,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,244.0,179.0,0,Transient,76.74,1,0,Check-Out,2018-06-02 -Resort Hotel,0,10,2016,December,53,24,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,80.49,1,0,Check-Out,2019-01-03 -City Hotel,0,43,2016,March,15,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,114.72,0,2,Check-Out,2019-02-01 -Resort Hotel,0,96,2017,April,19,27,2,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,E,E,2,No Deposit,299.0,179.0,0,Transient-Party,63.41,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,November,3,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,40.0,258.0,0,Transient,30.12,0,0,Check-Out,2019-09-03 -City Hotel,0,35,2017,May,15,6,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.38,0,0,Check-Out,2020-03-03 -Resort Hotel,0,251,2016,June,25,24,4,5,1,0.0,0,HB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,186.0,179.0,0,Transient,31.4,0,0,Check-Out,2019-06-03 -City Hotel,1,401,2016,August,22,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.09,0,0,Canceled,2018-09-02 -Resort Hotel,0,45,2017,February,8,10,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,100.17,0,0,Check-Out,2019-09-03 -City Hotel,0,20,2016,October,42,20,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,45.0,0,Transient,73.09,0,0,Check-Out,2018-11-02 -City Hotel,1,180,2017,July,33,9,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,127.56,0,1,Canceled,2020-07-03 -Resort Hotel,0,21,2016,August,46,29,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,235.0,179.0,0,Transient,187.34,0,1,Check-Out,2019-07-04 -City Hotel,1,260,2015,August,32,6,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.02,0,1,Canceled,2017-12-03 -City Hotel,0,2,2016,August,34,21,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,98,2017,June,27,14,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,133.58,0,1,Check-Out,2020-06-02 -City Hotel,0,276,2015,October,43,21,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,79.1,0,0,Check-Out,2018-07-03 -City Hotel,1,68,2017,April,10,15,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,92.7,0,2,Canceled,2019-10-04 -City Hotel,0,57,2016,July,36,30,0,1,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,13.0,179.0,0,Transient,236.2,0,3,Check-Out,2020-06-02 -City Hotel,0,102,2017,June,27,15,0,1,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.26,0,1,Check-Out,2020-06-02 -City Hotel,1,257,2016,April,22,13,0,1,1,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.19,0,0,Canceled,2019-01-03 -Resort Hotel,0,55,2015,October,42,5,0,5,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,85.71,0,0,Check-Out,2019-07-04 -City Hotel,0,45,2015,December,51,7,1,2,1,0.0,0,BB,PRT,Groups,Corporate,1,1,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,59.75,0,0,Canceled,2018-11-02 -City Hotel,0,45,2017,June,22,15,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.96,0,0,Check-Out,2020-02-01 -City Hotel,0,101,2016,May,27,9,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,112.53,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2016,May,7,8,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,71.28,0,0,Check-Out,2019-02-01 -Resort Hotel,0,148,2017,June,27,30,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,15.0,223.0,0,Transient-Party,152.22,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2015,October,42,5,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,243.0,0,Transient,61.48,0,0,Check-Out,2018-08-03 -City Hotel,0,8,2016,April,18,13,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,80.0,179.0,0,Transient,99.28,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2016,February,10,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,15.0,45.0,0,Transient,42.1,0,0,Check-Out,2018-11-02 -City Hotel,0,182,2016,July,16,6,2,5,2,0.0,0,BB,NOR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.98,0,0,Check-Out,2020-03-03 -Resort Hotel,1,54,2017,February,10,30,2,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,310.0,179.0,0,Transient-Party,64.78,0,0,Canceled,2019-10-04 -City Hotel,1,40,2016,August,37,20,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,180.78,0,0,Canceled,2020-06-02 -Resort Hotel,1,200,2016,April,9,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,40.61,0,0,Canceled,2018-11-02 -Resort Hotel,1,18,2016,January,10,31,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,45.87,0,2,Canceled,2018-11-02 -Resort Hotel,0,2,2016,November,43,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,14.0,179.0,0,Transient,64.45,0,0,Check-Out,2019-07-04 -City Hotel,0,12,2016,September,42,25,1,4,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,169.97,0,0,Check-Out,2019-07-04 -Resort Hotel,0,7,2016,May,19,13,1,0,1,0.0,0,BB,SWE,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,186.0,0,Transient,77.52,0,0,Check-Out,2019-02-01 -Resort Hotel,0,256,2017,August,38,12,2,4,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,221.05,1,2,Check-Out,2020-07-03 -City Hotel,1,425,2016,September,38,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.55,0,0,Canceled,2018-08-03 -City Hotel,0,14,2017,April,23,13,2,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,71.48,0,0,Check-Out,2020-02-01 -City Hotel,1,1,2016,January,38,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,74.94,0,0,No-Show,2018-12-03 -Resort Hotel,1,2,2016,March,10,6,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,241.0,179.0,0,Transient,30.06,0,2,Check-Out,2019-02-01 -City Hotel,0,155,2017,May,22,30,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,72.53,0,0,Check-Out,2020-04-02 -Resort Hotel,0,152,2015,September,41,13,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,33.66,0,0,Check-Out,2018-09-02 -City Hotel,0,147,2016,May,23,20,0,4,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,98.91,0,0,Check-Out,2019-03-04 -Resort Hotel,1,0,2017,January,2,16,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,294.0,179.0,0,Transient,44.35,0,0,Canceled,2019-11-03 -Resort Hotel,0,18,2016,September,44,30,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,119.4,0,0,Check-Out,2019-08-04 -City Hotel,1,0,2016,March,9,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,64.71,0,0,Canceled,2018-11-02 -Resort Hotel,0,36,2016,July,32,31,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,240.0,179.0,0,Transient,63.24,1,2,Check-Out,2019-06-03 -Resort Hotel,0,55,2015,October,43,31,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,36.3,0,2,Check-Out,2018-08-03 -Resort Hotel,0,126,2016,July,37,7,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,141.12,1,0,Check-Out,2019-06-03 -City Hotel,1,416,2017,May,27,10,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,85.95,0,0,No-Show,2020-03-03 -City Hotel,0,4,2016,November,50,30,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,78.54,0,0,Check-Out,2019-10-04 -Resort Hotel,0,3,2016,August,37,27,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,98.45,0,0,Check-Out,2018-08-03 -City Hotel,1,39,2016,September,45,2,0,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,94.44,0,0,Canceled,2019-05-04 -City Hotel,0,90,2016,June,25,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.7,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2016,June,27,13,2,2,2,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,108.29,0,0,Check-Out,2019-04-03 -City Hotel,1,125,2017,July,20,29,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,62.87,1,2,Canceled,2020-02-01 -City Hotel,0,73,2015,October,43,24,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,79.92,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,March,17,20,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,81.02,0,0,Check-Out,2019-03-04 -City Hotel,0,136,2017,June,28,9,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient,94.59,0,0,Check-Out,2020-06-02 -City Hotel,0,27,2017,April,17,22,0,1,1,0.0,0,BB,GBR,Aviation,Corporate,1,0,0,A,A,0,No Deposit,12.0,187.0,0,Transient,105.09,0,0,Check-Out,2020-04-02 -City Hotel,1,203,2017,September,45,21,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,202.33,0,0,Canceled,2019-10-04 -City Hotel,1,93,2017,May,21,28,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.91,0,0,Canceled,2020-02-01 -City Hotel,0,65,2015,December,50,9,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,72.77,0,0,Canceled,2018-12-03 -City Hotel,0,255,2015,October,43,23,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,38.35,0,0,Check-Out,2018-08-03 -City Hotel,1,42,2017,August,21,7,2,5,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,152.15,0,1,Canceled,2019-11-03 -City Hotel,0,1,2016,January,10,12,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,D,0,No Deposit,17.0,46.0,0,Transient,0.0,0,0,Check-Out,2018-11-02 -City Hotel,1,262,2016,March,26,24,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,40,Transient-Party,80.35,0,0,Canceled,2018-11-02 -City Hotel,0,19,2016,October,45,9,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,175.28,0,2,Check-Out,2019-12-04 -City Hotel,0,52,2017,May,22,13,0,1,1,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-02-01 -Resort Hotel,1,0,2015,October,44,9,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,163.81,0,0,Canceled,2018-08-03 -City Hotel,0,7,2016,January,3,20,0,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,74.97,0,0,Check-Out,2019-02-01 -City Hotel,0,13,2017,February,8,28,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,59.44,0,3,Check-Out,2020-01-04 -City Hotel,0,0,2016,December,50,15,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,2,No Deposit,16.0,284.0,0,Transient,0.48,0,0,Check-Out,2020-01-04 -City Hotel,0,25,2016,March,16,16,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,105.3,0,1,Check-Out,2019-02-01 -Resort Hotel,0,34,2016,February,10,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,91.14,0,2,Check-Out,2019-10-04 -City Hotel,1,13,2016,October,46,11,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,130.27,0,0,No-Show,2019-08-04 -Resort Hotel,0,7,2016,April,26,2,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,80.19,0,0,Check-Out,2018-12-03 -Resort Hotel,0,198,2016,February,12,27,2,3,2,0.0,0,Undefined,BEL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,73.03,0,0,Check-Out,2019-11-03 -City Hotel,0,55,2016,June,27,9,2,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,113.53,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2015,August,35,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,A,0,No Deposit,144.0,179.0,0,Group,39.39,0,0,Check-Out,2018-05-03 -Resort Hotel,0,1,2017,February,8,24,0,1,1,0.0,0,HB,,Corporate,Direct,0,0,0,A,A,0,No Deposit,16.0,331.0,0,Transient,40.18,0,2,Check-Out,2020-02-01 -City Hotel,1,49,2016,February,11,29,1,3,2,0.0,0,BB,PRT,Groups,GDS,0,1,0,A,A,0,Non Refund,15.0,237.0,20,Transient,71.13,0,0,Canceled,2018-11-02 -City Hotel,0,51,2017,March,18,31,0,3,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,104.77,0,1,Check-Out,2020-05-03 -Resort Hotel,1,202,2017,July,31,27,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,175.0,179.0,0,Transient,62.0,0,0,Canceled,2019-12-04 -City Hotel,0,258,2015,September,42,9,2,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.63,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2016,May,22,19,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,72.22,0,0,Canceled,2019-02-01 -Resort Hotel,1,82,2016,January,4,29,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,66.8,0,1,No-Show,2018-12-03 -City Hotel,0,112,2016,June,25,20,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,33.0,179.0,0,Transient-Party,126.92,0,0,Check-Out,2019-03-04 -City Hotel,0,5,2015,June,26,3,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,91.1,0,0,Check-Out,2018-06-02 -City Hotel,0,105,2016,April,20,21,2,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.32,0,0,Check-Out,2019-02-01 -Resort Hotel,1,207,2016,December,51,27,2,7,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,320.0,179.0,0,Transient,99.87,0,0,Canceled,2019-11-03 -City Hotel,0,1,2016,October,45,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,67.45,0,0,Check-Out,2019-08-04 -Resort Hotel,1,148,2016,July,26,17,4,4,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,79.24,0,0,Canceled,2019-07-04 -City Hotel,0,0,2016,May,44,23,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,2,No Deposit,16.0,248.0,0,Transient,1.84,0,0,Check-Out,2019-09-03 -Resort Hotel,0,340,2016,June,22,30,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,307.0,179.0,0,Transient-Party,118.96,0,1,Check-Out,2019-04-03 -City Hotel,1,11,2017,March,16,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,65.87,0,0,Canceled,2019-11-03 -Resort Hotel,1,136,2016,June,26,18,0,1,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,12.0,179.0,0,Transient,110.31,0,0,Canceled,2019-04-03 -City Hotel,0,0,2015,October,44,11,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,36.13,0,0,Check-Out,2018-07-03 -Resort Hotel,0,281,2016,October,25,2,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,158.69,1,0,Check-Out,2019-05-04 -City Hotel,1,107,2016,March,18,29,1,2,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,179.0,20,Transient,60.39,0,0,Canceled,2019-02-01 -City Hotel,0,49,2016,June,41,4,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,84.23,0,2,Check-Out,2019-03-04 -City Hotel,0,271,2016,August,25,20,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.45,0,1,Check-Out,2019-05-04 -City Hotel,0,145,2016,July,34,30,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,152.12,0,2,Check-Out,2019-04-03 -Resort Hotel,1,256,2016,April,18,13,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,266.0,179.0,0,Transient-Party,69.33,0,1,Canceled,2019-02-01 -City Hotel,0,8,2017,July,26,17,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,99.06,1,2,Check-Out,2020-06-02 -Resort Hotel,0,294,2016,June,35,15,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Contract,78.49,0,0,Check-Out,2019-04-03 -City Hotel,0,14,2016,September,35,31,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,217.38,0,0,Check-Out,2019-05-04 -Resort Hotel,0,160,2017,May,21,28,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,C,2,No Deposit,243.0,179.0,0,Transient,154.79,0,1,Check-Out,2020-03-03 -Resort Hotel,0,9,2017,March,12,12,2,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,78.0,179.0,0,Transient,31.85,0,0,Check-Out,2020-03-03 -City Hotel,0,78,2016,December,50,31,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,95.62,0,2,Check-Out,2019-09-03 -City Hotel,0,2,2017,January,2,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,73.0,0,Transient,39.16,0,0,Check-Out,2019-10-04 -City Hotel,1,18,2017,June,24,27,1,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,159.05,0,0,Canceled,2020-03-03 -City Hotel,1,263,2017,July,26,22,0,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.04,0,0,Canceled,2020-06-02 -City Hotel,1,23,2016,August,38,28,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,158.44,0,0,No-Show,2019-04-03 -City Hotel,0,1,2017,May,23,10,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,127.91,0,0,Check-Out,2020-03-03 -City Hotel,0,200,2016,July,37,31,1,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.23,0,2,Check-Out,2020-06-02 -City Hotel,0,40,2015,September,52,22,2,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient-Party,86.85,0,0,Check-Out,2018-06-02 -City Hotel,1,100,2016,March,10,16,0,2,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,70.0,0,0,Canceled,2018-11-02 -City Hotel,0,150,2017,June,26,13,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,16.0,179.0,0,Transient,157.08,0,0,Check-Out,2020-06-02 -City Hotel,0,111,2017,July,8,6,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,110.09,0,1,Check-Out,2020-02-01 -City Hotel,0,4,2016,June,28,16,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,P,K,1,No Deposit,10.0,179.0,0,Transient,4.22,0,0,Check-Out,2019-08-04 -Resort Hotel,0,42,2017,July,31,15,3,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,165.0,179.0,0,Transient,86.6,0,0,Check-Out,2020-06-02 -City Hotel,0,19,2016,May,10,2,1,0,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-02-01 -Resort Hotel,1,366,2015,September,35,5,0,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,0,Transient,36.12,0,0,Canceled,2018-06-02 -City Hotel,0,0,2017,May,22,20,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,0.32,0,0,Check-Out,2020-02-01 -Resort Hotel,0,18,2016,May,21,26,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Non Refund,95.0,179.0,0,Transient,62.81,0,0,Check-Out,2019-02-01 -Resort Hotel,0,135,2016,August,31,31,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,252.0,1,1,Check-Out,2018-05-03 -City Hotel,0,138,2016,December,53,27,1,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,G,2,No Deposit,13.0,179.0,0,Transient,60.25,0,1,Check-Out,2019-09-03 -City Hotel,0,239,2016,October,45,20,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,81.0,179.0,0,Contract,124.07,0,0,Check-Out,2019-05-04 -Resort Hotel,0,207,2016,July,32,25,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,161.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2017,May,21,15,1,2,2,0.0,0,BB,POL,Complementary,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,170.87,0,1,Check-Out,2020-05-03 -City Hotel,0,252,2015,July,32,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Contract,91.63,0,0,Canceled,2018-06-02 -Resort Hotel,0,96,2016,April,17,5,2,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,72.15,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,July,32,6,0,1,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,96.38,0,3,Check-Out,2019-05-04 -City Hotel,1,252,2015,July,29,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.27,0,0,Canceled,2018-05-03 -Resort Hotel,1,27,2015,October,44,21,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,52.03,0,1,No-Show,2018-07-03 -City Hotel,1,301,2016,June,22,25,0,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,83.0,179.0,0,Transient-Party,74.96,0,0,Canceled,2019-03-04 -City Hotel,0,1,2016,March,23,10,1,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.94,0,1,Check-Out,2019-02-01 -Resort Hotel,1,397,2016,October,22,4,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,42.03,0,0,Canceled,2019-06-03 -City Hotel,1,6,2016,March,12,31,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,115.23,0,0,Canceled,2019-03-04 -City Hotel,0,90,2017,July,31,14,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Contract,155.0,0,3,Check-Out,2020-05-03 -City Hotel,0,165,2016,July,35,30,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.61,0,2,Check-Out,2019-02-01 -City Hotel,0,5,2017,June,35,31,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,2,No Deposit,15.0,179.0,0,Transient-Party,135.35,0,3,Check-Out,2020-06-02 -City Hotel,1,49,2015,December,53,21,2,3,2,2.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.45,0,0,Canceled,2018-10-03 -Resort Hotel,0,1,2016,August,44,24,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,189.9,1,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2015,July,38,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,2,No Deposit,18.0,179.0,0,Transient,0.32,0,0,Check-Out,2018-06-02 -City Hotel,1,233,2015,July,38,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.99,0,0,Canceled,2017-11-02 -City Hotel,0,46,2015,October,46,17,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,233.0,0,Transient-Party,93.55,1,0,Check-Out,2018-08-03 -City Hotel,0,15,2016,May,22,27,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,122.37,1,0,Check-Out,2019-03-04 -City Hotel,1,99,2017,April,22,6,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.5,0,0,Canceled,2020-02-01 -Resort Hotel,0,154,2016,August,35,31,2,4,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,250.25,1,1,Check-Out,2020-06-02 -Resort Hotel,0,38,2017,March,17,25,2,5,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,125.6,0,3,Check-Out,2020-03-03 -City Hotel,0,196,2017,May,23,17,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,68.12,0,1,Check-Out,2020-04-02 -Resort Hotel,1,205,2016,August,36,20,1,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,168.0,179.0,0,Transient,104.53,0,0,Canceled,2018-12-03 -Resort Hotel,0,53,2017,March,10,30,0,3,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient,146.56,0,0,Check-Out,2019-05-04 -City Hotel,0,9,2016,February,49,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,2,No Deposit,15.0,179.0,0,Transient,73.87,0,0,Check-Out,2018-12-03 -Resort Hotel,0,45,2016,December,52,24,2,5,2,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient-Party,63.97,1,0,Check-Out,2019-03-04 -Resort Hotel,0,100,2015,December,50,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,39.88,0,0,Check-Out,2019-01-03 -City Hotel,0,54,2016,March,12,29,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.28,0,1,Check-Out,2019-11-03 -Resort Hotel,0,328,2017,July,33,19,2,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,246.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -Resort Hotel,0,306,2015,September,37,21,1,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,61.8,1,0,Check-Out,2019-05-04 -City Hotel,0,16,2016,November,42,20,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,151.86,0,2,Check-Out,2019-07-04 -City Hotel,0,15,2016,June,34,29,2,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,157.25,0,1,Check-Out,2019-03-04 -Resort Hotel,0,105,2016,September,53,17,0,2,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,237.0,179.0,0,Transient,199.93,1,0,Check-Out,2019-05-04 -City Hotel,0,326,2017,September,24,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,173.0,179.0,0,Transient-Party,123.64,0,0,Check-Out,2020-05-03 -Resort Hotel,0,10,2017,August,33,10,0,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,156.12,1,1,Check-Out,2020-07-03 -Resort Hotel,0,3,2016,September,36,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-07-03 -City Hotel,0,295,2015,September,42,5,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,34.32,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2017,February,10,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,32.0,65.0,0,Transient,62.86,0,0,Canceled,2019-11-03 -City Hotel,0,149,2017,December,53,4,0,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,68.96,0,0,Check-Out,2019-11-03 -Resort Hotel,0,10,2017,April,16,22,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -Resort Hotel,0,357,2017,May,21,24,0,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,77.01,0,0,Check-Out,2020-05-03 -Resort Hotel,0,61,2015,December,51,11,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,63.4,0,2,Check-Out,2018-05-03 -Resort Hotel,1,300,2015,July,34,27,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,91.14,0,2,Canceled,2018-06-02 -City Hotel,1,145,2017,May,22,28,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.56,0,0,Canceled,2019-03-04 -City Hotel,1,37,2017,August,39,13,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,96.31,0,1,Canceled,2020-07-03 -Resort Hotel,0,32,2017,June,33,22,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient-Party,185.16,0,1,Check-Out,2019-11-03 -City Hotel,1,2,2017,April,19,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.52,0,0,Canceled,2020-01-04 -City Hotel,0,53,2016,October,48,17,1,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,76.0,179.0,65,Transient-Party,106.79,0,0,Check-Out,2019-06-03 -Resort Hotel,0,26,2017,March,19,30,0,4,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,D,1,No Deposit,15.0,223.0,0,Transient,41.78,1,0,Check-Out,2020-04-02 -City Hotel,0,0,2017,May,22,2,2,0,1,0.0,0,BB,IRL,Aviation,Corporate,0,0,0,A,E,0,No Deposit,196.0,160.0,0,Transient,102.81,0,0,Check-Out,2020-03-03 -City Hotel,1,102,2016,September,37,25,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.43,0,0,Canceled,2017-12-03 -Resort Hotel,0,158,2016,March,21,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,66.68,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2017,June,24,16,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,0.54,0,1,Check-Out,2020-03-03 -City Hotel,1,18,2017,March,16,10,2,0,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,0,Transient,119.99,0,0,Check-Out,2019-12-04 -Resort Hotel,0,217,2017,July,20,10,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,101.74,0,0,Check-Out,2020-07-03 -City Hotel,0,2,2017,January,3,21,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,75.73,0,1,Check-Out,2019-10-04 -City Hotel,0,3,2015,October,51,9,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,40.07,0,2,Check-Out,2018-09-02 -City Hotel,0,3,2017,October,39,28,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,171.44,0,0,Check-Out,2019-11-03 -City Hotel,0,86,2017,July,33,21,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.19,0,2,Check-Out,2020-05-03 -City Hotel,1,34,2016,July,25,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,121.45,0,1,Canceled,2019-03-04 -City Hotel,0,0,2017,February,10,11,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.52,0,1,Check-Out,2020-02-01 -Resort Hotel,0,45,2016,March,10,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,60.54,0,0,Check-Out,2019-03-04 -Resort Hotel,0,13,2016,October,44,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.42,0,0,Check-Out,2019-09-03 -City Hotel,1,0,2016,January,10,6,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,92.75,0,1,No-Show,2018-12-03 -City Hotel,0,52,2015,October,42,31,2,4,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.91,0,0,Check-Out,2018-09-02 -Resort Hotel,0,34,2016,July,35,28,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,96.46,1,1,Check-Out,2019-05-04 -City Hotel,1,17,2017,August,36,10,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient,223.48,0,1,Canceled,2020-06-02 -City Hotel,0,260,2015,September,35,24,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,104.12,0,0,Check-Out,2018-07-03 -City Hotel,1,11,2016,October,45,16,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,80.53,0,1,Canceled,2019-10-04 -Resort Hotel,0,14,2016,June,26,19,2,3,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,202.36,0,1,Check-Out,2019-04-03 -City Hotel,0,15,2017,March,22,31,0,3,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,A,3,No Deposit,11.0,179.0,0,Transient,111.88,0,3,Check-Out,2020-05-03 -City Hotel,1,299,2017,May,21,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.92,0,0,Canceled,2019-03-04 -City Hotel,0,16,2015,November,49,3,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,69.35,0,0,Check-Out,2019-07-04 -Resort Hotel,0,4,2017,March,9,14,0,5,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,1,No Deposit,18.0,223.0,75,Transient-Party,90.32,1,3,Check-Out,2019-12-04 -City Hotel,0,85,2015,July,38,14,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,124.26,0,2,Check-Out,2018-01-03 -Resort Hotel,1,54,2016,May,17,28,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,65.57,0,2,Canceled,2019-01-03 -City Hotel,0,43,2017,May,23,4,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,100.07,0,0,Check-Out,2019-12-04 -Resort Hotel,0,42,2015,October,44,9,2,5,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,171.0,179.0,0,Transient,80.98,0,0,Check-Out,2018-08-03 -Resort Hotel,1,195,2016,October,40,19,2,5,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,44.74,0,1,Canceled,2019-03-04 -Resort Hotel,0,40,2016,December,53,5,0,2,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,304.0,179.0,0,Transient,60.31,0,0,Check-Out,2019-10-04 -City Hotel,1,89,2016,August,36,25,2,5,3,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,218.7,0,2,Canceled,2019-07-04 -City Hotel,0,135,2017,June,27,10,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,D,0,No Deposit,13.0,170.0,0,Transient,126.36,0,0,Check-Out,2020-04-02 -Resort Hotel,0,98,2015,July,33,21,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,199.84,0,1,Check-Out,2018-05-03 -Resort Hotel,1,116,2016,July,27,2,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,120.05,0,0,Canceled,2019-02-01 -Resort Hotel,0,2,2015,November,49,17,2,3,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,113.42,0,0,Check-Out,2018-08-03 -City Hotel,0,52,2016,March,9,28,2,2,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,64.15,0,1,Check-Out,2018-11-02 -City Hotel,0,0,2015,September,43,10,0,3,2,0.0,0,HB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,95.3,0,2,Check-Out,2018-08-03 -City Hotel,0,15,2017,May,22,28,1,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,K,0,No Deposit,14.0,45.0,0,Group,0.63,0,0,Check-Out,2019-09-03 -City Hotel,0,49,2015,October,50,18,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,66.36,0,0,Check-Out,2018-09-02 -Resort Hotel,1,159,2017,August,36,15,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,114.78,0,1,Canceled,2019-09-03 -City Hotel,0,4,2016,September,34,25,2,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.78,0,2,Check-Out,2019-05-04 -Resort Hotel,0,27,2017,August,39,26,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,197.11,0,1,Check-Out,2020-07-03 -City Hotel,1,153,2016,September,34,5,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,102.75,0,0,Canceled,2019-05-04 -City Hotel,0,12,2017,May,36,2,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.67,1,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,February,10,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,12.0,67.0,0,Transient,40.13,0,0,Check-Out,2018-10-03 -Resort Hotel,0,0,2017,September,43,16,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,I,0,No Deposit,316.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-12-04 -Resort Hotel,0,43,2017,July,30,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,A,2,No Deposit,185.0,179.0,0,Group,100.2,0,0,Check-Out,2020-06-02 -Resort Hotel,1,116,2016,July,31,28,1,0,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,204.33,0,0,Canceled,2019-02-01 -City Hotel,1,11,2016,October,53,25,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.28,0,2,Canceled,2018-08-03 -City Hotel,0,117,2016,March,9,28,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,39.0,179.0,0,Transient-Party,76.71,0,0,Check-Out,2019-03-04 -City Hotel,0,10,2016,March,18,5,1,2,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,96.84,0,0,Check-Out,2019-03-04 -Resort Hotel,0,148,2017,May,22,26,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,291.0,179.0,0,Transient-Party,77.83,0,1,Check-Out,2019-11-03 -Resort Hotel,0,14,2017,August,33,13,0,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,245.42,0,3,Check-Out,2020-06-02 -City Hotel,0,47,2016,January,4,18,0,2,2,0.0,0,BB,,Corporate,Corporate,0,0,0,A,B,0,No Deposit,10.0,63.0,0,Transient-Party,72.79,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2017,May,21,20,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,331.0,0,Transient-Party,62.66,0,0,Check-Out,2020-01-04 -City Hotel,0,98,2017,April,27,20,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,121.7,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,February,9,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,38.24,0,0,Check-Out,2020-02-01 -Resort Hotel,0,3,2015,September,41,5,1,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,60.9,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2017,April,8,12,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.71,0,1,Check-Out,2020-02-01 -City Hotel,0,56,2015,December,53,27,2,2,2,2.0,0,BB,USA,Online TA,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,74.35,0,1,Check-Out,2019-03-04 -Resort Hotel,0,18,2015,November,49,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,208.0,179.0,0,Contract,34.67,0,0,Check-Out,2018-08-03 -City Hotel,0,37,2016,December,53,30,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,79.13,0,0,Check-Out,2019-11-03 -City Hotel,1,88,2016,July,30,13,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.4,0,3,Canceled,2018-11-02 -City Hotel,0,47,2015,July,31,5,0,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,1,A,A,0,No Deposit,12.0,60.0,0,Transient,126.44,0,0,Check-Out,2020-06-02 -Resort Hotel,1,263,2016,March,17,6,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,40.53,0,0,Check-Out,2019-03-04 -City Hotel,0,12,2016,May,18,10,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,209.54,0,1,Check-Out,2019-06-03 -City Hotel,0,89,2016,January,9,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,65.07,0,0,Check-Out,2019-01-03 -Resort Hotel,1,230,2017,August,37,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,162.43,0,1,Canceled,2019-11-03 -City Hotel,0,21,2017,July,27,15,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,178.1,0,1,Check-Out,2020-06-02 -City Hotel,0,139,2017,June,25,25,0,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,C,G,2,No Deposit,14.0,179.0,0,Transient,149.63,0,3,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,September,49,15,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,250.0,0,Transient,30.6,1,0,Check-Out,2018-09-02 -Resort Hotel,0,23,2016,December,53,13,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,38.73,1,1,Check-Out,2019-01-03 -Resort Hotel,0,29,2016,April,15,9,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,311.0,179.0,0,Transient-Party,118.84,1,2,Check-Out,2019-02-01 -City Hotel,0,1,2015,October,49,15,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,H,I,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-08-03 -City Hotel,0,21,2016,May,29,28,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,61.52,0,2,Check-Out,2019-11-03 -City Hotel,0,2,2016,January,3,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,92.0,179.0,0,Transient,80.19,0,0,Check-Out,2018-11-02 -City Hotel,0,78,2016,December,49,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,174.95,0,1,Check-Out,2019-11-03 -City Hotel,0,54,2017,May,22,5,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,E,0,No Deposit,91.0,179.0,0,Transient,60.34,0,0,Check-Out,2020-02-01 -Resort Hotel,0,77,2016,October,27,12,4,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,F,1,No Deposit,331.0,331.0,0,Transient,28.12,0,0,Check-Out,2019-07-04 -City Hotel,0,15,2016,December,49,24,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,A,1,No Deposit,12.0,179.0,0,Transient-Party,69.24,0,0,Check-Out,2019-10-04 -Resort Hotel,0,50,2015,October,51,30,2,5,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,101.57,0,2,Check-Out,2018-12-03 -Resort Hotel,0,181,2015,September,37,3,0,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,77.49,0,0,Check-Out,2018-05-03 -City Hotel,1,109,2016,June,34,9,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient,76.15,0,1,No-Show,2019-05-04 -City Hotel,0,183,2017,June,36,2,0,3,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.15,0,1,Check-Out,2019-09-03 -City Hotel,0,59,2015,October,47,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,32.19,0,0,Check-Out,2018-09-02 -City Hotel,0,11,2016,June,25,18,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,36.0,179.0,0,Transient,94.74,0,0,Check-Out,2019-02-01 -City Hotel,0,4,2016,October,47,12,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,200.0,179.0,0,Transient,2.69,0,0,Check-Out,2019-05-04 -City Hotel,1,108,2015,July,33,18,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,14.0,179.0,62,Transient,105.17,0,0,Canceled,2019-02-01 -City Hotel,1,47,2016,October,44,4,0,2,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,96.54,0,0,Canceled,2018-12-03 -City Hotel,1,416,2015,September,38,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.22,0,0,Canceled,2018-01-03 -Resort Hotel,0,12,2015,October,43,6,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,62.86,1,0,Check-Out,2018-08-03 -City Hotel,0,64,2016,August,9,9,0,1,2,0.0,0,BB,CN,Direct,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.1,0,0,Check-Out,2019-06-03 -Resort Hotel,0,44,2016,May,23,6,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,H,2,No Deposit,11.0,179.0,0,Transient,179.21,1,2,Check-Out,2020-03-03 -City Hotel,1,90,2017,April,10,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,A,0,No Deposit,13.0,179.0,0,Transient,89.81,0,0,Canceled,2019-11-03 -City Hotel,0,88,2017,May,20,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,120.42,0,0,Check-Out,2020-03-03 -Resort Hotel,1,48,2017,May,23,18,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,45.13,0,0,Canceled,2019-02-01 -City Hotel,0,10,2017,April,16,30,2,5,3,0.0,0,BB,BRA,Complementary,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,75.42,0,0,Check-Out,2019-11-03 -Resort Hotel,0,12,2015,October,44,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,44.38,1,3,Check-Out,2018-09-02 -City Hotel,0,261,2017,July,31,18,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.5,0,3,Check-Out,2020-07-03 -City Hotel,1,0,2017,January,3,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,111.12,0,1,No-Show,2020-02-01 -Resort Hotel,0,8,2016,May,22,24,0,6,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,299.0,179.0,0,Contract,69.33,0,0,Check-Out,2019-08-04 -City Hotel,1,3,2016,October,38,5,2,2,1,0.0,0,BB,ITA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,0.87,0,0,Canceled,2019-07-04 -City Hotel,0,24,2016,June,24,21,0,1,1,0.0,0,BB,,Direct,Corporate,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,125.2,0,0,Check-Out,2019-02-01 -City Hotel,0,174,2017,April,18,29,1,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,E,2,No Deposit,11.0,179.0,0,Transient,189.44,1,2,Check-Out,2020-03-03 -City Hotel,1,209,2017,August,13,13,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,7.0,179.0,0,Transient,114.73,1,0,Canceled,2019-11-03 -City Hotel,0,281,2015,September,44,20,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,86.95,0,0,Check-Out,2018-08-03 -City Hotel,1,1,2017,February,9,27,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,30.71,0,0,Canceled,2018-10-03 -Resort Hotel,0,1,2015,September,43,26,2,2,2,1.0,0,HB,ESP,Groups,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient-Party,85.03,1,0,Check-Out,2018-07-03 -City Hotel,1,266,2016,October,45,10,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,61.08,0,0,Canceled,2019-10-04 -City Hotel,0,52,2016,October,43,21,0,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,232.0,0,Transient-Party,109.21,0,0,Canceled,2019-11-03 -City Hotel,1,7,2017,March,11,10,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,72.09,0,0,Canceled,2018-12-03 -Resort Hotel,0,51,2016,August,37,19,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,H,2,No Deposit,244.0,179.0,0,Transient,228.67,1,2,Check-Out,2019-07-04 -Resort Hotel,0,207,2017,July,31,16,0,4,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,10.0,179.0,75,Transient,63.27,1,3,Canceled,2020-05-03 -Resort Hotel,0,0,2017,March,11,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,77.0,0,Transient,51.18,0,0,Check-Out,2020-02-01 -Resort Hotel,0,15,2016,August,11,21,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,81.65,1,0,Check-Out,2018-12-03 -City Hotel,0,1,2015,October,45,3,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.47,0,0,Check-Out,2018-08-03 -City Hotel,1,104,2017,July,23,24,0,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,122.52,0,3,Canceled,2020-07-03 -City Hotel,0,2,2016,June,25,5,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,173.28,0,0,Check-Out,2019-05-04 -City Hotel,1,43,2016,July,33,27,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,84.06,0,0,Canceled,2019-03-04 -City Hotel,1,33,2016,June,22,9,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,77.0,179.0,0,Transient,120.3,0,0,Canceled,2019-01-03 -City Hotel,0,37,2017,March,32,15,0,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.22,0,0,Check-Out,2020-01-04 -Resort Hotel,0,31,2016,December,53,21,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,45.02,0,1,Check-Out,2019-11-03 -City Hotel,0,52,2017,April,18,9,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,99.92,0,1,Check-Out,2020-04-02 -City Hotel,0,2,2015,October,36,2,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,162.97,0,3,Check-Out,2019-08-04 -City Hotel,0,86,2017,June,27,24,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,0,No Deposit,16.0,202.0,0,Transient,135.07,0,0,Check-Out,2020-04-02 -City Hotel,0,43,2016,March,10,13,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,56.59,0,1,Check-Out,2019-02-01 -City Hotel,1,36,2017,February,10,21,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,78.58,0,0,Canceled,2019-10-04 -Resort Hotel,1,190,2016,December,50,29,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,45,Transient,86.31,0,0,Canceled,2019-08-04 -Resort Hotel,0,179,2017,June,16,9,2,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,72.35,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2017,March,36,30,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,20.0,179.0,0,Transient,199.52,1,0,Check-Out,2020-05-03 -City Hotel,0,88,2016,April,17,29,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.75,0,2,Check-Out,2019-04-03 -City Hotel,0,157,2017,August,31,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,1.0,179.0,0,Group,75.63,1,0,Check-Out,2020-06-02 -Resort Hotel,1,261,2017,July,29,9,2,5,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,17.0,179.0,0,Transient,193.53,0,0,Canceled,2018-06-02 -City Hotel,1,165,2017,August,23,22,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.71,0,0,Canceled,2020-06-02 -Resort Hotel,0,14,2016,October,9,5,2,5,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,D,D,1,No Deposit,28.0,179.0,0,Transient-Party,78.05,0,0,Check-Out,2019-10-04 -Resort Hotel,0,30,2016,September,44,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,45.25,1,1,Check-Out,2019-08-04 -City Hotel,0,42,2016,January,3,6,1,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.77,0,2,Check-Out,2019-09-03 -Resort Hotel,0,45,2015,December,53,13,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,83.0,179.0,0,Transient,35.05,0,0,Check-Out,2019-02-01 -Resort Hotel,0,4,2016,August,38,21,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,207.61,0,2,Check-Out,2019-06-03 -City Hotel,1,18,2017,September,36,31,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,146.56,0,1,Canceled,2019-09-03 -City Hotel,0,17,2016,January,10,28,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,6.0,179.0,0,Transient,97.2,0,1,Check-Out,2019-08-04 -Resort Hotel,0,38,2017,February,11,12,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,No Deposit,378.0,331.0,0,Transient-Party,65.88,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2015,September,35,9,0,1,1,0.0,0,HB,RUS,Complementary,Undefined,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,64.91,0,1,Check-Out,2018-07-03 -Resort Hotel,0,165,2016,May,18,30,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,223.0,0,Transient-Party,81.23,0,0,Canceled,2019-02-01 -Resort Hotel,0,46,2016,November,46,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,80.76,0,0,Check-Out,2019-07-04 -Resort Hotel,0,3,2016,June,23,30,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,19.0,179.0,0,Transient,129.06,0,0,Check-Out,2020-04-02 -Resort Hotel,1,252,2016,July,26,14,0,5,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,203.6,0,0,Canceled,2019-04-03 -City Hotel,1,273,2017,June,29,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,177.0,179.0,0,Transient,124.53,0,0,Canceled,2020-03-03 -Resort Hotel,0,91,2016,December,53,27,1,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,240.0,179.0,0,Transient,123.67,1,1,Check-Out,2019-11-03 -City Hotel,0,86,2015,October,53,13,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Contract,69.02,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2016,December,53,6,2,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,7.0,179.0,0,Transient,125.66,0,3,Check-Out,2018-11-02 -City Hotel,0,143,2017,August,36,29,2,0,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.07,0,0,Check-Out,2020-06-02 -City Hotel,0,3,2017,August,33,24,2,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.14,0,1,Check-Out,2020-06-02 -Resort Hotel,1,47,2016,September,35,10,0,3,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,71.71,0,0,Canceled,2018-08-03 -City Hotel,1,99,2016,May,21,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.1,0,0,Canceled,2019-01-03 -City Hotel,0,31,2016,October,42,24,2,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,167.1,0,3,Check-Out,2019-12-04 -City Hotel,0,1,2017,May,20,30,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.05,0,1,Check-Out,2020-03-03 -Resort Hotel,0,136,2016,February,17,14,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient,92.78,0,0,Check-Out,2019-02-01 -City Hotel,1,319,2017,May,22,11,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,11.0,179.0,0,Transient,111.98,0,1,Canceled,2020-02-01 -Resort Hotel,0,97,2017,May,25,10,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,161.02,0,0,Check-Out,2020-06-02 -Resort Hotel,0,39,2017,January,3,18,4,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,319.0,179.0,0,Transient,34.45,1,0,Canceled,2019-12-04 -Resort Hotel,0,27,2016,March,11,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,71.73,0,0,Check-Out,2019-01-03 -City Hotel,1,16,2015,October,37,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,37.86,0,0,Canceled,2018-01-03 -Resort Hotel,0,0,2016,February,8,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,52.0,0,Transient,31.78,0,0,Check-Out,2018-10-03 -City Hotel,1,50,2017,May,21,27,1,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,163.05,0,1,Check-Out,2020-04-02 -Resort Hotel,0,49,2017,October,33,2,2,4,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,121.29,1,3,Check-Out,2019-12-04 -Resort Hotel,0,10,2016,April,17,17,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,42.27,1,1,Check-Out,2019-02-01 -Resort Hotel,1,165,2016,August,34,15,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,Non Refund,280.0,179.0,0,Transient,202.1,0,0,Canceled,2019-03-04 -City Hotel,0,91,2016,March,15,10,1,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,90.91,0,3,Check-Out,2019-02-01 -Resort Hotel,0,2,2015,December,53,31,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,62.42,0,1,Check-Out,2018-11-02 -Resort Hotel,0,159,2016,March,10,11,1,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,179.0,0,Transient-Party,42.49,0,0,Check-Out,2019-03-04 -Resort Hotel,0,154,2016,August,25,27,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient,36.07,0,1,Check-Out,2019-06-03 -City Hotel,0,94,2017,March,22,16,2,5,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,190.93,0,2,Check-Out,2020-04-02 -Resort Hotel,1,205,2017,May,22,21,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,Refundable,10.0,179.0,0,Transient,137.77,0,0,Canceled,2020-02-01 -Resort Hotel,0,34,2016,March,11,13,2,2,2,0.0,0,BB,CHE,Groups,TA/TO,0,0,0,A,H,0,No Deposit,309.0,179.0,0,Transient,28.5,0,0,Check-Out,2019-02-01 -City Hotel,0,93,2017,March,10,25,0,4,2,1.0,0,BB,BRA,Direct,Direct,0,0,0,D,G,0,No Deposit,13.0,179.0,0,Transient,150.41,0,3,Check-Out,2019-11-03 -City Hotel,1,39,2016,December,50,30,0,2,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,40,Transient,119.49,0,0,Canceled,2019-10-04 -Resort Hotel,0,154,2017,July,34,31,2,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,209.79,1,3,Check-Out,2020-07-03 -City Hotel,1,45,2016,January,2,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient,59.66,0,0,Canceled,2018-10-03 -Resort Hotel,0,98,2017,February,11,10,0,2,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,67.56,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2017,August,29,15,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,191.19,1,0,Check-Out,2020-06-02 -City Hotel,1,193,2017,March,16,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,36.0,179.0,0,Transient,73.37,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2015,September,38,10,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,204.52,1,0,Check-Out,2018-06-02 -Resort Hotel,1,13,2017,March,17,31,0,1,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,D,0,Non Refund,87.0,179.0,0,Transient,65.04,0,0,Canceled,2019-02-01 -City Hotel,1,417,2016,May,21,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.86,0,0,Canceled,2019-02-01 -City Hotel,0,91,2016,February,11,13,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,123.8,0,0,Check-Out,2019-02-01 -City Hotel,0,44,2016,December,12,20,0,3,2,2.0,0,BB,ITA,Complementary,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,119.32,0,0,Check-Out,2019-01-03 -Resort Hotel,1,4,2017,February,10,2,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,71.72,0,1,No-Show,2019-09-03 -Resort Hotel,0,43,2017,May,23,26,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,181.5,0,0,Check-Out,2020-05-03 -Resort Hotel,0,1,2016,March,12,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,39.72,0,0,Check-Out,2018-10-03 -City Hotel,1,162,2016,October,30,20,0,3,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,118.62,0,1,Canceled,2019-08-04 -City Hotel,0,43,2016,December,51,15,1,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,97.71,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2015,December,51,18,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,61.24,0,1,Check-Out,2018-08-03 -City Hotel,0,22,2017,June,30,21,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,166.97,0,0,Check-Out,2020-04-02 -Resort Hotel,0,63,2016,October,43,28,1,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,45.88,0,0,Check-Out,2019-08-04 -Resort Hotel,1,78,2015,August,36,4,2,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,14.0,179.0,0,Transient,144.85,0,0,Canceled,2018-05-03 -City Hotel,0,36,2015,September,37,19,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.8,0,1,Check-Out,2018-09-02 -Resort Hotel,0,158,2016,December,27,30,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,73.23,0,1,Check-Out,2019-12-04 -City Hotel,0,128,2016,June,26,20,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,65.0,179.0,64,Transient,151.11,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2015,September,35,6,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,94.0,179.0,0,Contract,62.47,0,1,Check-Out,2017-11-02 -Resort Hotel,0,41,2015,December,51,10,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,43.09,0,3,Check-Out,2018-12-03 -Resort Hotel,1,113,2017,April,27,9,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,11.0,179.0,0,Transient,141.51,0,0,Canceled,2019-03-04 -City Hotel,1,284,2017,May,26,27,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,128.44,0,0,Canceled,2020-02-01 -Resort Hotel,0,13,2017,April,32,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,252.0,179.0,0,Transient,145.62,1,3,Check-Out,2020-04-02 -City Hotel,1,289,2016,September,22,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,18,Transient,61.79,0,0,Canceled,2018-11-02 -City Hotel,0,56,2016,July,32,26,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,141.26,0,0,Check-Out,2018-06-02 -City Hotel,0,53,2017,July,32,19,0,3,2,2.0,0,BB,AUT,Online TA,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,228.72,0,1,Check-Out,2020-07-03 -City Hotel,1,108,2016,March,9,21,0,2,3,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,42,Transient,90.85,0,0,Canceled,2019-01-03 -City Hotel,1,202,2016,September,37,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.06,0,0,Canceled,2019-08-04 -City Hotel,1,323,2016,September,37,20,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,111.28,0,0,Canceled,2018-08-03 -City Hotel,1,14,2016,November,46,22,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,Non Refund,12.0,233.0,0,Transient,59.75,0,0,Canceled,2019-11-03 -Resort Hotel,0,91,2016,February,10,12,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,84.0,179.0,0,Transient,119.78,0,0,Check-Out,2019-11-03 -City Hotel,0,92,2016,March,16,13,0,3,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,45.0,0,Transient,101.71,0,0,Check-Out,2019-04-03 -City Hotel,1,86,2016,December,53,9,2,5,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.05,0,1,Canceled,2019-10-04 -City Hotel,0,106,2017,June,31,13,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,146.22,0,2,Check-Out,2020-06-02 -Resort Hotel,0,150,2016,April,17,21,0,4,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,E,1,No Deposit,378.0,179.0,0,Transient,74.78,0,0,Check-Out,2019-02-01 -City Hotel,0,11,2016,June,25,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,93.09,0,0,Check-Out,2019-03-04 -Resort Hotel,1,209,2016,June,26,20,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,191.91,0,1,Canceled,2019-10-04 -City Hotel,1,14,2016,April,19,28,2,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,42.98,0,0,Canceled,2019-02-01 -City Hotel,1,241,2017,July,26,20,2,7,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,75.0,179.0,0,Transient,90.37,0,0,Canceled,2020-06-02 -City Hotel,0,207,2015,September,40,4,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,64.37,0,1,Check-Out,2017-11-02 -Resort Hotel,0,37,2016,May,17,31,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,123.01,0,1,Check-Out,2019-03-04 -Resort Hotel,0,208,2015,October,45,29,2,2,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,92.47,0,0,Check-Out,2018-08-03 -Resort Hotel,1,364,2017,August,34,5,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,1,A,A,1,Non Refund,311.0,179.0,0,Transient,52.45,0,0,Canceled,2018-07-03 -City Hotel,0,12,2016,May,21,28,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,79.34,0,0,Check-Out,2019-03-04 -City Hotel,0,19,2016,September,28,21,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,63.0,0,Transient,86.48,0,0,Check-Out,2019-06-03 -Resort Hotel,1,25,2017,January,8,13,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,0.36,0,0,Canceled,2020-03-03 -Resort Hotel,0,2,2016,March,10,9,0,1,1,0.0,0,Undefined,ESP,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,88.29,0,0,Check-Out,2019-03-04 -City Hotel,1,48,2016,July,38,2,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,84.1,0,0,Canceled,2019-07-04 -City Hotel,0,21,2016,December,53,27,0,1,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,44.0,179.0,60,Transient-Party,68.63,0,1,Check-Out,2019-08-04 -City Hotel,0,125,2016,May,22,12,1,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,68.78,0,0,Check-Out,2019-03-04 -City Hotel,0,107,2017,April,16,6,0,1,1,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,88.78,0,0,Check-Out,2020-03-03 -Resort Hotel,0,350,2016,October,44,11,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Contract,186.98,1,1,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,October,44,12,0,1,1,1.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,176.0,1,0,Check-Out,2019-09-03 -Resort Hotel,0,13,2015,September,37,5,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,E,E,0,No Deposit,278.0,179.0,0,Transient,60.01,1,0,Check-Out,2018-09-02 -Resort Hotel,1,253,2015,September,37,21,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,39.95,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,November,36,16,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,F,K,0,No Deposit,18.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -City Hotel,0,95,2016,March,9,17,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,72.2,1,1,Check-Out,2019-03-04 -City Hotel,1,261,2015,October,34,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,59.52,0,0,Canceled,2017-12-03 -City Hotel,0,42,2017,May,21,5,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.75,0,0,Check-Out,2020-03-03 -Resort Hotel,0,23,2015,September,43,17,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,1,No Deposit,12.0,179.0,0,Transient,0.0,0,3,Check-Out,2018-06-02 -Resort Hotel,0,61,2017,March,12,30,2,0,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,40.15,0,0,Check-Out,2020-02-01 -City Hotel,0,100,2016,December,53,28,0,4,2,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,79.76,0,0,Check-Out,2019-10-04 -City Hotel,1,6,2016,June,27,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.32,0,0,Canceled,2019-03-04 -City Hotel,1,51,2017,June,29,4,0,2,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,157.38,0,3,Canceled,2020-06-02 -City Hotel,1,9,2017,May,21,25,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,117.5,0,0,Canceled,2020-04-02 -City Hotel,0,1,2017,April,17,29,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.78,0,0,Check-Out,2020-01-04 -City Hotel,0,43,2017,July,33,17,2,4,3,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,239.5,0,1,Check-Out,2020-06-02 -City Hotel,0,43,2015,July,27,30,0,3,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,B,0,No Deposit,25.0,179.0,0,Transient,111.31,1,0,Check-Out,2019-06-03 -City Hotel,0,47,2016,March,17,30,0,2,2,1.0,0,HB,CHE,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,129.39,0,1,Check-Out,2019-01-03 -City Hotel,1,143,2017,July,10,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,E,D,0,No Deposit,33.0,179.0,0,Transient-Party,64.18,0,0,Canceled,2019-11-03 -City Hotel,1,397,2017,August,36,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,161.76,0,0,Canceled,2018-06-02 -City Hotel,0,1,2017,February,9,13,2,1,2,0.0,0,BB,,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.83,0,1,Check-Out,2019-09-03 -Resort Hotel,1,295,2016,May,24,10,1,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,145.74,0,0,No-Show,2019-01-03 -Resort Hotel,0,4,2015,August,37,8,3,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,55.31,0,2,Check-Out,2018-08-03 -City Hotel,1,369,2017,May,33,11,2,0,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,Refundable,8.0,179.0,0,Transient,114.89,0,2,Canceled,2020-05-03 -Resort Hotel,0,53,2017,July,26,7,2,5,2,2.0,0,BB,,Online TA,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,158.5,0,0,Check-Out,2020-04-02 -Resort Hotel,1,25,2015,July,37,6,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,1,0,H,H,0,No Deposit,245.0,179.0,0,Transient,215.52,0,0,Canceled,2018-06-02 -Resort Hotel,1,17,2016,April,17,20,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,61.38,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,November,53,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,80.66,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,October,45,30,1,0,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,E,0,No Deposit,16.0,256.0,0,Transient,59.61,1,0,Check-Out,2019-07-04 -City Hotel,0,16,2016,July,27,31,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,134.0,179.0,0,Transient-Party,123.73,0,0,Check-Out,2019-06-03 -Resort Hotel,0,108,2017,July,32,5,1,2,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,175.72,0,3,Check-Out,2020-05-03 -City Hotel,0,132,2016,August,35,13,0,2,2,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient-Party,94.8,0,0,Check-Out,2019-06-03 -Resort Hotel,0,151,2017,June,24,27,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,81.17,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2017,June,27,20,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,19.0,179.0,0,Transient,95.77,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,January,50,19,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,44.78,0,0,Check-Out,2018-11-02 -City Hotel,1,312,2016,September,44,14,1,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,10.0,179.0,0,Transient,114.9,0,0,Canceled,2019-10-04 -City Hotel,1,356,2016,October,46,21,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,59.04,0,0,No-Show,2019-12-04 -City Hotel,0,0,2016,September,44,16,0,2,1,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.15,0,0,Check-Out,2019-10-04 -City Hotel,1,89,2017,July,26,20,1,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,93.46,0,1,Canceled,2020-02-01 -City Hotel,1,44,2016,January,3,15,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,138.05,0,0,Canceled,2019-01-03 -City Hotel,0,145,2017,January,5,16,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,150.57,0,3,Check-Out,2020-07-03 -City Hotel,0,3,2016,September,28,8,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,105.42,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,January,9,16,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,G,E,1,No Deposit,17.0,179.0,0,Transient-Party,194.24,0,0,Check-Out,2020-02-01 -City Hotel,1,376,2017,July,31,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,149.95,0,1,Canceled,2019-06-03 -City Hotel,0,7,2017,April,17,31,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient-Party,81.64,0,0,Check-Out,2019-10-04 -City Hotel,0,188,2017,August,33,13,0,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -City Hotel,1,39,2016,December,53,30,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,73.3,0,1,Canceled,2018-11-02 -Resort Hotel,1,17,2016,December,53,31,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,2018-11-02 -City Hotel,0,26,2017,June,26,5,2,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.79,0,1,Check-Out,2020-04-02 -City Hotel,0,90,2016,July,33,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,114.84,0,1,Check-Out,2019-04-03 -City Hotel,0,7,2016,May,20,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.12,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2015,November,42,20,0,2,1,0.0,0,BB,,Complementary,Corporate,1,0,0,A,C,1,No Deposit,15.0,179.0,43,Transient-Party,0.0,0,0,Check-Out,2018-09-02 -Resort Hotel,1,105,2016,July,33,20,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,220.9,0,0,Canceled,2019-05-04 -City Hotel,0,33,2015,October,43,5,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,A,0,No Deposit,14.0,179.0,0,Transient,116.58,0,3,Check-Out,2019-08-04 -City Hotel,1,39,2015,October,45,28,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,76.46,0,0,Canceled,2018-07-03 -City Hotel,1,414,2015,October,45,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Transient,120.88,0,0,Canceled,2018-09-02 -City Hotel,0,3,2015,October,45,16,0,1,1,0.0,0,BB,SWE,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,91.11,0,0,Check-Out,2018-09-02 -Resort Hotel,1,53,2017,May,14,22,2,1,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,152.32,0,0,Canceled,2020-01-04 -Resort Hotel,0,254,2016,March,17,30,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,33.0,224.0,0,Transient-Party,39.66,0,0,Check-Out,2019-04-03 -City Hotel,0,34,2016,June,27,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,142.41,0,1,Check-Out,2019-02-01 -City Hotel,0,29,2016,August,24,2,1,1,1,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,135.27,0,1,Check-Out,2019-11-03 -Resort Hotel,0,40,2017,July,36,22,2,5,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,13,2015,December,49,30,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,A,0,No Deposit,246.0,179.0,0,Transient,74.52,0,2,Check-Out,2018-09-02 -City Hotel,1,16,2017,February,9,28,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Transient,120.49,0,1,Canceled,2019-10-04 -City Hotel,1,162,2016,August,33,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.14,0,0,Canceled,2018-05-03 -City Hotel,0,1,2016,December,52,10,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,146.86,1,2,Check-Out,2019-09-03 -City Hotel,0,24,2017,March,10,2,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,149.91,1,2,Check-Out,2020-04-02 -Resort Hotel,0,11,2017,February,8,6,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,40.0,331.0,0,Transient-Party,60.58,0,0,Check-Out,2020-03-03 -City Hotel,0,49,2017,March,17,24,0,1,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,219.76,0,0,Check-Out,2020-03-03 -City Hotel,0,50,2017,June,26,6,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.75,0,2,Check-Out,2020-05-03 -City Hotel,0,50,2017,June,34,30,0,2,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,122.88,0,0,Check-Out,2020-06-02 -City Hotel,0,150,2016,January,11,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,40,Transient,75.93,0,0,Check-Out,2018-11-02 -Resort Hotel,1,16,2017,April,18,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,89.0,195.0,0,Transient,65.92,0,0,Canceled,2019-12-04 -City Hotel,1,267,2015,August,34,6,2,5,2,0.0,0,HB,CHE,Online TA,Undefined,0,0,0,B,B,3,No Deposit,11.0,179.0,0,Contract,73.68,0,1,Canceled,2018-06-02 -Resort Hotel,1,39,2016,July,33,5,1,3,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Canceled,2019-06-03 -Resort Hotel,0,1,2015,December,53,10,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,37.0,179.0,0,Transient-Party,47.5,0,0,Check-Out,2018-06-02 -Resort Hotel,0,96,2016,December,18,29,2,3,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,31.0,179.0,0,Transient-Party,97.95,0,0,Check-Out,2018-11-02 -Resort Hotel,1,49,2015,December,32,5,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,F,0,Non Refund,13.0,179.0,0,Transient,93.3,0,0,Canceled,2018-12-03 -City Hotel,1,310,2016,October,44,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,75.88,0,0,Canceled,2019-08-04 -City Hotel,0,4,2015,September,44,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,64.08,0,0,Check-Out,2018-05-03 -City Hotel,1,262,2017,June,27,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,117.52,0,0,Canceled,2020-05-03 -City Hotel,1,0,2017,March,9,5,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,125.0,179.0,0,Transient,101.7,0,0,Canceled,2019-09-03 -City Hotel,1,439,2016,October,44,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.71,0,0,Canceled,2018-11-02 -City Hotel,0,0,2015,October,43,9,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,116.75,0,0,Check-Out,2018-06-02 -City Hotel,0,111,2016,April,15,16,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,B,D,1,No Deposit,9.0,179.0,0,Transient-Party,86.1,0,0,Canceled,2019-02-01 -Resort Hotel,0,262,2017,May,21,26,2,1,2,0.0,0,Undefined,DEU,Groups,Corporate,0,0,0,C,H,0,No Deposit,378.0,179.0,0,Transient-Party,121.29,0,0,Check-Out,2020-03-03 -City Hotel,0,33,2016,December,49,5,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.51,0,2,Check-Out,2019-06-03 -Resort Hotel,0,164,2017,July,37,16,4,10,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,142.53,1,1,Check-Out,2020-04-02 -City Hotel,1,53,2016,June,23,27,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,9.0,179.0,0,Transient,86.64,0,0,Canceled,2019-03-04 -Resort Hotel,1,107,2017,August,20,2,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,222.74,0,0,Canceled,2020-03-03 -City Hotel,0,38,2015,September,44,20,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,122.72,0,0,Check-Out,2019-05-04 -City Hotel,1,108,2015,July,33,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.46,0,0,Canceled,2018-05-03 -City Hotel,1,350,2016,June,26,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,100.56,0,0,Canceled,2019-05-04 -Resort Hotel,0,59,2016,May,22,21,0,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,127.83,1,2,Check-Out,2019-04-03 -City Hotel,0,266,2017,May,19,22,2,1,2,2.0,0,BB,IRL,Online TA,Direct,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,156.76,0,0,Check-Out,2020-02-01 -Resort Hotel,1,27,2016,August,32,18,2,4,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,176.06,1,0,Canceled,2019-03-04 -Resort Hotel,0,169,2017,March,17,18,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,239.0,179.0,0,Transient-Party,101.0,0,2,Check-Out,2020-02-01 -Resort Hotel,0,27,2017,August,37,13,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,119.53,0,0,Check-Out,2020-06-02 -City Hotel,1,367,2017,June,23,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,17,Transient,119.98,0,0,Canceled,2019-11-03 -City Hotel,1,374,2016,September,45,29,2,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,197.78,0,0,Canceled,2019-08-04 -City Hotel,0,1,2016,March,21,28,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,155.0,179.0,0,Transient,74.36,0,2,Check-Out,2019-06-03 -City Hotel,1,9,2016,June,27,10,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,153.28,0,2,Canceled,2019-03-04 -City Hotel,1,416,2016,October,42,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,41,Transient,84.69,0,0,Canceled,2019-07-04 -City Hotel,1,53,2017,March,3,18,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,84.07,0,2,Canceled,2019-12-04 -Resort Hotel,0,196,2016,July,35,23,1,5,1,0.0,0,HB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,99.58,0,0,Check-Out,2019-06-03 -Resort Hotel,0,138,2016,July,26,10,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,13.0,179.0,0,Transient,195.94,1,2,Check-Out,2019-05-04 -City Hotel,1,406,2015,October,43,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.34,0,0,Canceled,2018-07-03 -City Hotel,0,145,2016,August,27,21,2,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,135.24,0,0,Check-Out,2019-05-04 -City Hotel,1,4,2017,February,9,6,1,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,82.19,0,0,Canceled,2019-12-04 -City Hotel,1,40,2016,July,27,16,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,59.76,0,0,Canceled,2019-01-03 -Resort Hotel,0,321,2017,July,33,21,2,6,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient-Party,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2016,May,49,28,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,128.15,0,0,Check-Out,2019-07-04 -City Hotel,0,43,2016,October,16,2,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,139.0,179.0,0,Transient-Party,95.53,0,0,Check-Out,2019-06-03 -Resort Hotel,0,244,2016,July,32,5,0,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,314.0,179.0,0,Transient-Party,135.25,0,0,Check-Out,2018-06-02 -Resort Hotel,1,84,2015,December,53,30,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,62.2,0,0,Canceled,2018-12-03 -City Hotel,1,47,2015,August,39,10,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,152.0,0,0,Canceled,2019-07-04 -City Hotel,0,303,2015,September,34,23,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,2.0,179.0,0,Transient-Party,113.93,0,0,Check-Out,2018-07-03 -Resort Hotel,0,103,2016,March,16,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,259.0,0,Transient-Party,27.61,0,0,Check-Out,2019-06-03 -City Hotel,0,14,2017,July,33,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,172.4,0,2,Check-Out,2020-07-03 -Resort Hotel,0,42,2016,December,53,9,1,7,2,0.0,0,FB,NLD,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,77.0,0,0,Check-Out,2019-05-04 -City Hotel,1,110,2016,March,16,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,1.0,179.0,18,Transient,140.92,0,0,Canceled,2018-10-03 -Resort Hotel,0,162,2017,July,33,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,238.18,0,0,Check-Out,2020-04-02 -City Hotel,0,3,2016,September,22,18,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,81.28,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2016,November,45,5,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,114.28,0,0,Check-Out,2018-08-03 -City Hotel,0,154,2016,June,22,29,0,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,97.06,0,0,Check-Out,2019-06-03 -City Hotel,1,44,2016,February,8,21,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,63.53,0,0,Canceled,2019-03-04 -City Hotel,1,157,2016,October,43,25,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,65.45,0,2,Canceled,2019-08-04 -City Hotel,1,3,2015,November,50,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,61.88,0,0,Canceled,2018-07-03 -City Hotel,0,14,2016,May,23,24,0,1,3,2.0,0,BB,ESP,Direct,TA/TO,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,199.72,0,0,Check-Out,2019-04-03 -Resort Hotel,0,165,2017,August,27,18,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,D,1,No Deposit,241.0,179.0,0,Transient,162.04,1,3,Check-Out,2020-07-03 -Resort Hotel,0,78,2017,July,27,16,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,163.0,179.0,0,Transient,173.92,0,0,Check-Out,2020-03-03 -City Hotel,0,10,2016,November,4,14,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,74.33,0,1,Check-Out,2019-09-03 -Resort Hotel,0,41,2015,December,53,28,1,3,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.61,0,0,Check-Out,2018-12-03 -Resort Hotel,0,7,2016,January,9,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,71.83,1,1,Check-Out,2019-11-03 -Resort Hotel,1,47,2017,May,22,30,0,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,29.49,0,0,Check-Out,2020-04-02 -City Hotel,0,12,2017,March,11,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient-Party,65.74,0,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2016,August,37,18,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,95.0,179.0,0,Transient,93.47,0,0,Check-Out,2018-08-03 -City Hotel,0,4,2015,September,43,11,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,66.9,0,0,Check-Out,2018-09-02 -City Hotel,1,250,2016,May,20,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.46,0,0,Canceled,2019-03-04 -Resort Hotel,1,147,2016,August,27,28,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,85.0,179.0,0,Transient,78.41,0,0,Canceled,2018-07-03 -Resort Hotel,1,40,2015,August,38,15,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,255.0,179.0,0,Transient-Party,59.69,0,0,Canceled,2018-06-02 -City Hotel,1,281,2017,June,21,19,1,1,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,111.78,0,0,Canceled,2019-05-04 -Resort Hotel,0,275,2017,May,22,23,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,78.92,0,3,Check-Out,2020-05-03 -City Hotel,0,99,2015,July,32,5,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,10.0,179.0,0,Transient-Party,96.73,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,August,35,28,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,117.78,0,1,Check-Out,2019-06-03 -City Hotel,0,169,2017,March,18,19,0,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,127.95,0,1,Check-Out,2019-10-04 -City Hotel,0,150,2016,October,52,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.77,0,2,Check-Out,2019-06-03 -Resort Hotel,1,297,2016,May,50,9,1,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,283.0,179.0,0,Transient,62.64,0,0,Canceled,2019-01-03 -City Hotel,0,311,2017,May,22,3,1,1,2,0.0,0,BB,SWE,Offline TA/TO,Direct,0,0,0,G,F,0,No Deposit,12.0,179.0,0,Transient,179.02,0,2,Check-Out,2020-07-03 -City Hotel,1,4,2015,September,38,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,131.99,0,0,Canceled,2018-09-02 -City Hotel,0,2,2017,April,17,29,0,2,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,90.39,0,0,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,April,18,27,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,80.57,1,0,Check-Out,2019-03-04 -Resort Hotel,1,24,2017,July,26,2,1,1,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,170.22,0,0,Canceled,2020-06-02 -City Hotel,1,29,2016,May,22,5,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,90.86,0,0,Canceled,2019-04-03 -City Hotel,1,9,2017,May,12,10,2,1,1,0.0,0,SC,GBR,Corporate,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,83.83,0,0,Canceled,2019-11-03 -City Hotel,1,32,2016,September,33,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,59.53,0,1,Canceled,2019-06-03 -Resort Hotel,1,193,2017,June,26,28,1,1,1,0.0,0,HB,SWE,Aviation,Corporate,0,0,0,E,E,2,No Deposit,316.0,195.0,0,Transient,121.52,0,0,Canceled,2020-04-02 -Resort Hotel,0,82,2017,April,17,28,1,2,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,68.93,0,0,Check-Out,2020-03-03 -Resort Hotel,1,9,2017,May,17,28,2,1,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,240.0,179.0,0,Transient,175.48,0,0,Canceled,2019-06-03 -Resort Hotel,0,98,2016,August,27,31,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,169.08,1,1,Check-Out,2019-06-03 -Resort Hotel,0,334,2017,June,36,31,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,128.29,0,1,Check-Out,2020-02-01 -City Hotel,0,3,2017,January,9,30,1,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,165.49,0,0,Check-Out,2020-01-04 -City Hotel,0,0,2017,January,2,27,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,260.0,0,Transient,55.6,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,October,42,5,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,D,0,No Deposit,11.0,45.0,0,Group,151.11,0,0,Check-Out,2018-08-03 -Resort Hotel,0,196,2017,July,25,6,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,96.0,179.0,0,Transient-Party,93.81,0,0,Check-Out,2020-07-03 -Resort Hotel,0,267,2017,August,34,29,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,240.0,179.0,0,Transient,201.87,0,0,Check-Out,2020-07-03 -City Hotel,1,155,2016,May,45,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,18,Transient,59.37,0,0,Canceled,2018-08-03 -City Hotel,0,47,2015,October,44,20,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,222.0,0,Transient,112.75,0,0,Check-Out,2018-09-02 -Resort Hotel,1,154,2017,July,28,28,1,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,236.83,0,0,Canceled,2019-12-04 -City Hotel,0,117,2017,August,36,2,2,1,2,2.0,0,BB,FRA,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,236.75,0,2,Check-Out,2020-07-03 -Resort Hotel,0,16,2016,March,9,24,1,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,1,No Deposit,250.0,179.0,0,Transient,48.22,0,0,Check-Out,2018-11-02 -Resort Hotel,0,19,2017,July,26,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,239.0,179.0,0,Group,80.76,0,1,Check-Out,2020-07-03 -City Hotel,1,38,2015,July,37,28,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.82,0,0,Canceled,2018-05-03 -City Hotel,0,45,2017,May,22,23,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,79.54,0,1,Check-Out,2020-01-04 -City Hotel,1,258,2016,July,32,18,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,78.7,0,0,Canceled,2019-03-04 -City Hotel,0,1,2017,March,12,3,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.28,0,0,Check-Out,2020-03-03 -Resort Hotel,1,45,2016,June,32,27,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,207.74,0,3,Canceled,2019-02-01 -Resort Hotel,0,209,2017,April,17,9,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient-Party,130.9,1,0,Check-Out,2020-04-02 -City Hotel,0,33,2015,July,27,9,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,13.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,April,16,28,1,2,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-10-04 -City Hotel,1,56,2015,September,41,13,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.48,0,0,Check-Out,2018-08-03 -Resort Hotel,1,57,2017,April,12,16,2,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,238.0,179.0,0,Transient,118.07,0,3,Canceled,2020-01-04 -City Hotel,0,30,2015,October,41,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.15,0,1,Check-Out,2018-08-03 -City Hotel,1,101,2016,June,28,13,2,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.28,0,2,Canceled,2019-06-03 -City Hotel,0,146,2016,June,25,30,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,95.98,0,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2015,November,50,30,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,34.1,0,3,Check-Out,2018-11-02 -Resort Hotel,0,1,2016,May,23,9,2,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,352.0,179.0,0,Transient,106.76,0,0,Check-Out,2019-02-01 -City Hotel,0,192,2015,September,37,20,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,111.53,0,0,Check-Out,2018-08-03 -City Hotel,0,148,2017,March,15,12,0,4,1,0.0,0,HB,GBR,Direct,Corporate,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient-Party,96.15,0,0,Check-Out,2020-01-04 -Resort Hotel,1,168,2016,July,28,21,0,3,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,124.22,0,2,Canceled,2019-10-04 -City Hotel,1,224,2017,July,32,16,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,203.93,0,0,Canceled,2020-06-02 -City Hotel,0,0,2017,March,12,25,0,1,2,0.0,0,BB,RUS,Direct,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,73.13,1,1,Check-Out,2020-01-04 -City Hotel,1,274,2016,April,20,28,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,77.23,0,0,Canceled,2019-02-01 -City Hotel,1,59,2017,May,22,9,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,167.79,0,0,Canceled,2020-04-02 -Resort Hotel,0,113,2017,May,34,27,0,1,1,2.0,0,BB,NLD,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,197.91,0,0,Check-Out,2020-06-02 -City Hotel,0,282,2016,September,43,23,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,59.99,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,June,24,31,1,2,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-02-01 -City Hotel,0,277,2016,August,35,6,2,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,139.79,0,1,Check-Out,2019-07-04 -City Hotel,0,37,2017,June,28,7,1,0,1,0.0,0,BB,ISR,Online TA,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,117.53,0,2,Check-Out,2019-07-04 -City Hotel,1,265,2015,September,45,5,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,156.08,0,0,Canceled,2017-11-02 -Resort Hotel,1,73,2017,February,11,29,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient-Party,65.34,0,0,No-Show,2020-04-02 -City Hotel,1,104,2016,June,20,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,86.0,0,0,Canceled,2019-02-01 -City Hotel,0,13,2016,September,44,10,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.0,0,1,Check-Out,2019-10-04 -City Hotel,0,19,2017,April,18,17,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,68.83,0,0,Check-Out,2019-10-04 -City Hotel,1,46,2015,October,45,6,2,0,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,154.29,0,2,Canceled,2018-08-03 -City Hotel,0,89,2016,July,33,23,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.91,0,0,Check-Out,2019-05-04 -Resort Hotel,0,16,2016,January,3,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,64.25,1,0,Check-Out,2018-12-03 -City Hotel,1,288,2016,December,53,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,86.66,0,0,Canceled,2018-11-02 -Resort Hotel,0,36,2016,February,10,21,0,2,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,D,0,Non Refund,200.0,179.0,0,Transient-Party,39.45,0,0,Check-Out,2018-12-03 -City Hotel,0,16,2017,January,10,14,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.4,0,1,Check-Out,2020-02-01 -Resort Hotel,0,231,2017,December,11,20,0,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,36.0,179.0,0,Transient-Party,49.48,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2016,October,43,27,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.81,0,2,Check-Out,2019-07-04 -Resort Hotel,0,156,2016,October,42,30,3,7,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,1,E,E,1,No Deposit,13.0,331.0,0,Transient,82.58,0,0,Check-Out,2019-07-04 -City Hotel,0,32,2016,May,20,6,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,188.41,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2016,February,10,6,0,5,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,81.38,0,0,Check-Out,2019-02-01 -Resort Hotel,0,40,2016,March,9,29,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,76.7,0,0,Check-Out,2019-02-01 -City Hotel,1,16,2015,September,43,20,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,64,Transient-Party,167.76,0,0,Canceled,2018-08-03 -City Hotel,0,99,2017,March,10,6,1,1,1,0.0,0,SC,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,65.71,0,1,Check-Out,2020-03-03 -Resort Hotel,0,40,2017,July,33,21,1,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,257,2016,October,43,22,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,148.3,0,0,Check-Out,2019-07-04 -City Hotel,0,17,2015,December,49,26,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,74.24,0,0,Check-Out,2019-11-03 -City Hotel,0,140,2016,December,49,4,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,33.0,179.0,0,Transient,69.14,0,0,Check-Out,2020-01-04 -Resort Hotel,1,45,2015,August,36,15,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,60.54,0,0,Canceled,2018-05-03 -Resort Hotel,0,165,2017,July,38,31,0,4,2,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,64,2015,September,44,15,2,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,170.0,179.0,0,Transient-Party,71.83,0,0,Canceled,2018-08-03 -City Hotel,0,225,2016,October,30,16,2,5,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.97,0,3,Check-Out,2019-05-04 -City Hotel,0,154,2016,July,34,30,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,116.77,0,2,Check-Out,2020-04-02 -Resort Hotel,0,137,2017,April,22,11,3,10,1,0.0,0,HB,CN,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,309.0,179.0,0,Transient-Party,68.82,0,0,Check-Out,2020-04-02 -Resort Hotel,0,251,2015,December,50,17,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,92.0,179.0,0,Contract,51.85,0,0,Check-Out,2017-11-02 -Resort Hotel,1,29,2016,August,37,20,0,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,250.0,179.0,0,Transient,221.33,0,0,Canceled,2018-06-02 -City Hotel,1,103,2016,December,15,5,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,30.0,179.0,0,Transient,122.07,0,0,Canceled,2019-02-01 -City Hotel,0,386,2015,November,51,28,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.73,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,December,52,24,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,18.0,245.0,0,Transient,38.2,1,2,Check-Out,2019-11-03 -Resort Hotel,0,214,2016,October,44,10,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,111.7,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,November,9,13,1,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,35.63,0,0,Check-Out,2018-11-02 -Resort Hotel,0,1,2016,August,36,4,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,37.5,0,0,Check-Out,2019-05-04 -Resort Hotel,1,50,2016,June,49,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,91.86,0,2,Canceled,2019-02-01 -Resort Hotel,0,8,2017,February,11,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,60.2,1,1,Check-Out,2020-04-02 -City Hotel,0,0,2016,May,22,21,0,2,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,62.12,0,0,Check-Out,2019-03-04 -City Hotel,0,26,2015,October,42,23,2,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,93.53,0,0,Check-Out,2018-09-02 -Resort Hotel,0,13,2016,December,53,31,0,2,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,E,D,0,No Deposit,246.0,179.0,0,Transient-Party,62.28,1,2,Check-Out,2018-11-02 -City Hotel,1,151,2016,December,50,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,38.0,179.0,16,Transient,60.36,0,0,Canceled,2019-09-03 -Resort Hotel,0,88,2017,April,19,18,2,5,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,303.0,331.0,0,Transient-Party,84.08,0,0,Check-Out,2020-04-02 -City Hotel,1,362,2015,July,34,9,0,1,2,0.0,0,BB,POL,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,115.05,0,0,Canceled,2017-12-03 -Resort Hotel,0,106,2016,May,23,24,2,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,17.0,179.0,0,Transient,146.19,0,0,Check-Out,2019-04-03 -City Hotel,0,43,2016,December,43,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.59,1,2,Check-Out,2019-06-03 -City Hotel,1,188,2016,July,28,8,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.68,0,1,Canceled,2019-03-04 -City Hotel,1,340,2016,June,20,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,64.72,0,0,Canceled,2018-12-03 -City Hotel,1,6,2016,October,46,16,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,164.05,0,2,Canceled,2019-11-03 -City Hotel,1,244,2016,June,28,15,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,74.0,179.0,41,Transient,123.18,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,May,22,17,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,29.67,0,2,Check-Out,2019-03-04 -City Hotel,0,110,2016,December,53,31,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,241.0,179.0,0,Transient-Party,71.38,0,0,Check-Out,2019-10-04 -City Hotel,0,153,2016,March,20,5,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,127.28,0,2,Check-Out,2019-02-01 -City Hotel,1,48,2017,May,20,18,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,87.52,0,1,Canceled,2020-03-03 -City Hotel,0,62,2016,September,43,2,2,0,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.09,1,0,Check-Out,2019-05-04 -City Hotel,0,0,2015,September,37,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,70.0,179.0,0,Transient-Party,103.9,1,0,Check-Out,2018-09-02 -Resort Hotel,0,132,2016,March,16,21,2,5,1,0.0,0,BB,GBR,Direct,Corporate,1,0,0,D,D,1,No Deposit,15.0,224.0,0,Transient,36.8,0,0,Check-Out,2019-03-04 -City Hotel,1,0,2017,March,9,20,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,237.0,179.0,0,Transient,61.11,0,1,Canceled,2020-04-02 -City Hotel,1,306,2015,September,38,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,108.77,0,0,Canceled,2017-12-03 -Resort Hotel,0,249,2015,October,42,5,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,50.38,0,0,Check-Out,2018-09-02 -Resort Hotel,0,195,2016,May,22,28,2,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,123.22,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,January,2,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,81.0,0,Transient,42.77,0,0,Check-Out,2019-10-04 -Resort Hotel,0,180,2016,October,45,24,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,174.19,1,2,Check-Out,2019-02-01 -Resort Hotel,0,38,2016,April,16,10,2,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,67.3,0,1,Check-Out,2019-03-04 -City Hotel,0,36,2016,October,45,26,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.49,0,3,Check-Out,2019-10-04 -City Hotel,0,0,2015,June,31,3,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Group,61.2,0,1,Check-Out,2018-05-03 -Resort Hotel,0,116,2016,March,17,6,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,C,0,Refundable,15.0,222.0,0,Transient,95.66,0,0,Check-Out,2019-02-01 -City Hotel,0,10,2015,October,44,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,45.0,0,Transient-Party,70.45,1,0,Check-Out,2018-09-02 -City Hotel,0,54,2016,September,44,2,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.81,0,1,Check-Out,2019-09-03 -City Hotel,0,291,2017,May,20,13,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,25.0,179.0,0,Group,72.43,0,1,Check-Out,2020-04-02 -City Hotel,1,248,2015,September,33,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.61,0,0,Canceled,2018-09-02 -City Hotel,0,0,2016,June,21,26,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,250.0,0,Transient,126.15,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2016,December,50,9,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,200.0,179.0,0,Transient,0.3,0,0,Check-Out,2019-09-03 -Resort Hotel,0,5,2016,March,11,21,1,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,B,G,0,No Deposit,16.0,179.0,0,Group,37.82,0,0,Check-Out,2020-01-04 -Resort Hotel,0,73,2015,December,51,21,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,59.97,1,0,Check-Out,2018-11-02 -City Hotel,1,19,2017,June,23,25,1,0,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,117.6,0,0,Canceled,2020-04-02 -City Hotel,1,6,2016,August,36,21,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,92.86,0,1,No-Show,2019-06-03 -City Hotel,1,47,2016,October,45,30,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.09,0,0,Canceled,2019-11-03 -Resort Hotel,1,8,2015,September,36,20,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,37.09,0,0,Canceled,2018-08-03 -Resort Hotel,0,256,2016,December,53,31,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,243.0,179.0,0,Transient,191.83,0,2,Check-Out,2019-11-03 -City Hotel,0,0,2017,March,10,15,1,2,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,99.91,1,1,Check-Out,2020-03-03 -City Hotel,1,268,2015,September,37,18,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,119.38,0,0,Canceled,2018-01-31 -City Hotel,0,14,2015,September,43,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,38.5,0,0,Check-Out,2017-12-03 -City Hotel,0,8,2016,June,37,25,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.12,0,0,Check-Out,2019-07-04 -City Hotel,1,146,2017,August,32,27,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,125.2,0,1,Canceled,2020-06-02 -City Hotel,0,45,2017,April,17,28,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,91.85,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2017,December,48,4,0,1,2,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,12.0,97.0,0,Group,2.8,0,0,Check-Out,2019-12-04 -City Hotel,1,38,2016,December,53,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.73,0,1,Canceled,2019-11-03 -City Hotel,1,15,2017,May,23,29,1,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,62.44,0,0,Canceled,2019-11-03 -City Hotel,0,195,2017,May,22,29,2,3,1,0.0,0,BB,POL,Aviation,Corporate,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,82.53,0,0,Check-Out,2020-03-03 -City Hotel,0,39,2016,October,42,17,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,78.21,0,2,Check-Out,2019-12-04 -City Hotel,0,99,2016,April,18,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.08,0,1,Check-Out,2018-11-02 -City Hotel,0,16,2017,May,21,7,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.52,0,0,Check-Out,2020-05-03 -City Hotel,0,90,2017,July,32,2,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,231.22,0,0,Check-Out,2019-06-03 -City Hotel,1,276,2015,July,35,4,0,2,2,0.0,0,BB,PRT,Undefined,Undefined,1,1,0,B,B,0,No Deposit,3.0,179.0,0,Transient-Party,84.54,0,0,Canceled,2018-07-03 -Resort Hotel,1,17,2017,August,37,2,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,195.21,0,0,Canceled,2020-04-02 -Resort Hotel,0,159,2017,February,8,5,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,No Deposit,207.0,331.0,0,Transient,33.21,0,0,Check-Out,2019-12-04 -City Hotel,0,12,2017,June,18,21,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,75.0,179.0,0,Transient-Party,100.32,0,0,Check-Out,2020-04-02 -Resort Hotel,0,166,2017,May,22,31,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,76.96,0,0,Check-Out,2020-02-01 -City Hotel,0,194,2016,October,44,28,2,0,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,147.39,0,0,Check-Out,2019-05-04 -Resort Hotel,1,35,2017,April,18,26,2,1,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,82.38,0,0,Canceled,2020-03-03 -City Hotel,1,289,2017,May,21,10,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,95.48,0,0,Canceled,2020-06-02 -City Hotel,0,27,2016,August,36,13,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.11,0,0,Check-Out,2019-07-04 -City Hotel,0,3,2016,October,44,20,1,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,76.97,0,0,Check-Out,2019-08-04 -City Hotel,0,13,2015,September,49,10,0,1,1,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,D,D,1,No Deposit,12.0,202.0,0,Transient,99.2,0,0,Check-Out,2018-09-02 -City Hotel,1,267,2016,May,36,7,2,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,153.47,0,0,Canceled,2019-09-03 -City Hotel,0,91,2017,May,24,26,1,0,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,E,F,0,No Deposit,14.0,179.0,0,Transient,77.06,0,0,Check-Out,2020-03-03 -City Hotel,1,314,2016,March,20,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,77.95,0,0,Canceled,2019-01-03 -City Hotel,0,34,2017,June,25,21,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,120.62,0,0,Check-Out,2020-03-03 -Resort Hotel,0,9,2016,August,37,28,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,167.02,1,2,Check-Out,2019-04-03 -Resort Hotel,1,16,2017,June,25,2,0,2,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,107.34,0,1,Canceled,2020-06-02 -Resort Hotel,0,147,2016,August,39,11,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,208.23,1,2,Check-Out,2019-06-03 -City Hotel,1,259,2015,July,38,18,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.33,0,0,Canceled,2017-10-03 -Resort Hotel,0,141,2017,July,33,8,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,142.41,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,October,45,29,1,0,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,158.38,0,0,Check-Out,2018-09-02 -Resort Hotel,0,33,2017,February,12,10,2,1,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,118.22,0,2,Check-Out,2020-02-01 -Resort Hotel,0,150,2017,July,33,28,2,5,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,240.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-06-02 -City Hotel,1,160,2015,September,45,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,115.69,0,0,Canceled,2018-01-03 -City Hotel,0,1,2017,July,28,7,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,93.54,0,2,Check-Out,2020-04-02 -City Hotel,0,6,2017,June,20,20,2,2,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Contract,47.94,0,0,Check-Out,2020-06-02 -Resort Hotel,0,123,2016,October,44,30,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,313.0,179.0,0,Transient-Party,35.57,0,0,Check-Out,2019-08-04 -City Hotel,0,11,2017,July,29,28,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,235.0,179.0,0,Transient,153.45,0,1,Check-Out,2020-06-02 -City Hotel,0,101,2016,June,26,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,0,Transient,105.75,0,1,Check-Out,2019-05-04 -Resort Hotel,1,23,2017,August,36,22,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,17.0,179.0,0,Transient,252.0,0,0,Canceled,2018-05-03 -City Hotel,0,16,2017,January,3,15,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,78.49,0,3,Check-Out,2019-11-03 -City Hotel,1,252,2015,October,45,28,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,90.04,0,0,No-Show,2018-09-02 -Resort Hotel,0,1,2017,July,11,18,2,2,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,E,D,0,No Deposit,14.0,179.0,0,Transient,78.97,0,3,Check-Out,2018-12-03 -City Hotel,1,34,2015,October,44,12,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,95.28,0,0,Canceled,2018-09-02 -City Hotel,0,113,2017,April,16,15,2,2,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,C,F,0,No Deposit,23.0,179.0,0,Transient-Party,176.88,0,0,Check-Out,2019-03-04 -Resort Hotel,0,90,2015,November,32,12,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Contract,64.1,0,0,Check-Out,2018-06-02 -City Hotel,1,0,2016,November,11,16,0,1,2,0.0,0,BB,PRT,Undefined,Corporate,1,1,1,A,A,2,No Deposit,15.0,77.0,0,Transient,0.0,0,0,Canceled,2019-05-04 -City Hotel,0,54,2016,March,16,28,0,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,60.58,0,0,Check-Out,2019-03-04 -City Hotel,0,39,2017,July,29,27,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,76.58,0,0,Check-Out,2020-06-02 -City Hotel,0,44,2017,March,11,15,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,152.98,0,1,Check-Out,2020-03-03 -Resort Hotel,0,162,2016,August,34,16,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,295.0,179.0,0,Transient-Party,133.09,0,1,Check-Out,2019-03-04 -Resort Hotel,0,4,2016,April,23,29,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,122.7,1,2,Check-Out,2019-03-04 -City Hotel,0,44,2016,November,49,23,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.88,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2017,May,21,18,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,133.79,0,0,Check-Out,2020-06-02 -Resort Hotel,0,150,2016,July,17,6,2,3,1,0.0,0,BB,ITA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,38.35,1,0,Check-Out,2019-07-04 -City Hotel,0,49,2017,March,12,27,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,111.05,1,1,Check-Out,2020-04-02 -City Hotel,1,3,2016,October,43,10,0,2,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,70.69,0,0,No-Show,2019-08-04 -City Hotel,0,89,2015,July,31,5,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,73.14,0,1,Check-Out,2018-09-02 -Resort Hotel,0,22,2015,December,50,9,2,1,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,166.0,179.0,0,Transient,35.97,0,0,Check-Out,2018-09-02 -City Hotel,0,212,2017,July,33,5,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,146.32,0,1,Check-Out,2020-06-02 -City Hotel,0,3,2017,January,4,28,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,55.33,0,0,Check-Out,2019-10-04 -City Hotel,0,42,2017,February,7,5,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,83.24,0,1,Check-Out,2019-09-03 -Resort Hotel,0,196,2017,June,27,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,240.0,179.0,0,Transient,120.16,0,2,Check-Out,2020-07-03 -City Hotel,0,39,2017,June,23,24,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,188.0,179.0,0,Transient,116.93,0,0,Check-Out,2020-03-03 -City Hotel,1,127,2017,February,9,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,113.68,0,2,Canceled,2020-04-02 -Resort Hotel,0,46,2016,October,42,11,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,67.99,0,0,Check-Out,2019-01-03 -Resort Hotel,0,156,2016,October,44,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,D,0,Refundable,15.0,223.0,0,Transient-Party,59.3,0,0,Check-Out,2019-04-03 -City Hotel,1,20,2017,May,21,16,2,0,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,7.0,179.0,0,Transient,119.87,0,0,Canceled,2020-04-02 -Resort Hotel,0,31,2016,May,27,24,2,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient-Party,157.76,0,0,Check-Out,2019-03-04 -City Hotel,1,290,2015,August,36,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.05,0,1,Canceled,2017-10-03 -City Hotel,1,12,2017,May,24,11,2,0,2,0.0,0,HB,ESP,Undefined,TA/TO,0,0,0,P,F,0,No Deposit,13.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2020-04-02 -Resort Hotel,0,4,2016,August,36,3,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,180.37,1,2,Check-Out,2019-03-04 -City Hotel,0,46,2016,October,42,6,0,2,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,1,No Deposit,184.0,179.0,0,Transient,98.33,0,0,Check-Out,2019-05-04 -Resort Hotel,0,2,2015,December,51,30,1,3,1,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,32.71,0,0,Check-Out,2018-08-03 -Resort Hotel,0,148,2017,March,19,28,1,1,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,103.42,1,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,September,37,10,2,0,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,164.88,0,0,Check-Out,2019-03-04 -City Hotel,0,3,2016,October,43,21,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,1,No Deposit,177.0,179.0,0,Transient,137.36,0,0,Check-Out,2019-09-03 -Resort Hotel,0,33,2016,October,43,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,55.04,1,0,Check-Out,2018-11-02 -City Hotel,1,0,2016,December,48,8,0,1,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,1.21,0,0,Canceled,2019-11-03 -Resort Hotel,0,285,2017,April,21,13,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,129.0,179.0,0,Transient-Party,94.92,0,0,Check-Out,2020-02-01 -Resort Hotel,0,128,2016,July,19,28,2,1,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,179.16,1,0,Check-Out,2019-02-01 -City Hotel,1,386,2015,April,23,12,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.02,0,0,Canceled,2018-01-03 -Resort Hotel,0,50,2016,January,3,12,2,4,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,241.48,0,0,Check-Out,2019-01-03 -City Hotel,1,33,2016,January,3,2,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.38,0,0,Canceled,2018-11-02 -Resort Hotel,1,41,2017,March,17,11,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,213.0,179.0,0,Transient,60.35,0,2,Canceled,2019-03-04 -City Hotel,0,113,2017,July,31,5,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,168.55,0,1,Check-Out,2020-04-02 -Resort Hotel,0,47,2017,April,18,9,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,319.0,179.0,0,Transient-Party,123.06,0,0,Check-Out,2020-04-02 -City Hotel,1,191,2016,February,11,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,41,Transient,75.98,0,0,Canceled,2018-11-02 -Resort Hotel,1,11,2017,February,8,20,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,43.94,0,0,Canceled,2019-12-04 -City Hotel,0,12,2015,September,34,14,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,62.17,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2016,August,37,2,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,203.92,0,0,Check-Out,2019-05-04 -City Hotel,1,93,2017,August,10,30,0,3,2,0.0,0,BB,ITA,Direct,Corporate,0,0,0,D,D,0,No Deposit,13.0,179.0,75,Transient,119.26,0,0,Canceled,2019-11-03 -Resort Hotel,0,217,2015,September,41,4,4,6,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,75,Transient-Party,59.64,1,2,Check-Out,2019-06-03 -City Hotel,0,8,2016,October,45,29,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.69,0,0,Check-Out,2019-08-04 -Resort Hotel,0,117,2017,April,18,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,190.0,179.0,0,Transient,34.57,0,0,Check-Out,2020-02-01 -City Hotel,1,18,2016,October,49,27,0,1,2,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,136.64,0,0,Canceled,2019-11-03 -City Hotel,0,4,2016,February,10,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,82.0,0,Transient-Party,81.54,0,1,Check-Out,2019-02-01 -City Hotel,1,13,2016,June,53,23,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.31,0,0,Canceled,2019-03-04 -City Hotel,0,14,2017,April,16,31,2,3,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,90.5,0,0,Check-Out,2020-01-04 -City Hotel,1,50,2016,August,32,5,2,2,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,5.0,179.0,0,Transient,130.08,0,3,Canceled,2019-11-03 -City Hotel,1,136,2016,July,27,23,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.9,0,0,Canceled,2019-04-03 -Resort Hotel,0,35,2016,August,38,29,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,91.46,0,1,Check-Out,2018-12-03 -City Hotel,0,257,2017,July,24,21,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,160.74,0,1,Check-Out,2020-03-03 -City Hotel,1,0,2016,January,3,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,55.09,0,0,Canceled,2018-10-03 -City Hotel,0,139,2017,July,27,20,2,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,244.96,0,2,Check-Out,2020-06-02 -City Hotel,0,14,2017,July,25,2,0,1,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,128.87,0,3,Check-Out,2020-06-02 -Resort Hotel,0,51,2016,August,37,3,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,142.01,1,1,Check-Out,2020-06-02 -Resort Hotel,1,46,2017,May,21,24,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,244.0,179.0,0,Transient,126.85,1,2,Check-Out,2020-03-03 -Resort Hotel,1,19,2016,May,22,18,2,3,1,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,D,H,0,Non Refund,241.0,179.0,0,Transient,72.06,0,2,Canceled,2019-02-01 -City Hotel,0,161,2016,June,44,24,1,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,10.0,179.0,0,Transient,118.49,0,0,Check-Out,2019-11-03 -City Hotel,0,248,2017,July,27,10,2,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.26,0,0,Check-Out,2020-06-02 -City Hotel,1,100,2017,June,20,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,12.0,179.0,0,Transient-Party,129.11,0,0,No-Show,2020-03-03 -City Hotel,0,91,2016,August,38,6,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.81,0,1,Check-Out,2019-03-04 -Resort Hotel,0,1,2015,August,37,27,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,240.0,179.0,0,Contract,60.26,0,0,Check-Out,2018-05-03 -City Hotel,1,307,2016,September,44,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,241.0,179.0,0,Transient,63.29,0,0,Canceled,2019-08-04 -City Hotel,0,113,2015,October,44,13,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,118.07,0,0,Check-Out,2018-08-03 -City Hotel,0,269,2017,June,25,5,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.33,0,1,Check-Out,2020-07-03 -Resort Hotel,0,5,2016,October,44,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,210.0,179.0,0,Transient,102.18,0,0,Check-Out,2019-06-03 -Resort Hotel,0,13,2017,July,27,2,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,118.62,0,1,Check-Out,2020-04-02 -City Hotel,1,52,2016,October,45,15,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,74.02,0,0,Canceled,2019-09-03 -City Hotel,0,149,2017,July,34,13,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.75,0,2,Check-Out,2020-06-02 -Resort Hotel,0,145,2016,July,22,17,2,4,2,2.0,0,BB,CHN,Online TA,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,127.8,0,1,Check-Out,2019-05-04 -Resort Hotel,0,3,2016,October,45,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,127.68,0,2,Check-Out,2019-06-03 -Resort Hotel,0,18,2017,August,22,21,2,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,227.0,179.0,0,Transient,207.44,0,0,Check-Out,2020-06-02 -Resort Hotel,0,240,2017,June,27,21,2,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,258.0,179.0,0,Transient-Party,112.23,0,0,Check-Out,2020-06-02 -City Hotel,0,7,2016,June,35,17,0,1,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,187.0,0,Transient-Party,83.75,0,0,Check-Out,2019-05-04 -Resort Hotel,0,250,2017,May,22,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,E,E,0,No Deposit,294.0,179.0,0,Transient-Party,158.98,0,0,Check-Out,2020-06-02 -Resort Hotel,0,43,2016,March,17,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,1,No Deposit,13.0,179.0,0,Transient,76.42,0,1,Check-Out,2018-11-02 -Resort Hotel,1,178,2017,July,31,25,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,252.0,0,3,Canceled,2020-05-03 -Resort Hotel,0,32,2016,August,38,28,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,195.58,1,1,Check-Out,2019-08-04 -City Hotel,0,97,2015,August,35,19,0,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,98.68,0,1,Check-Out,2018-06-02 -City Hotel,0,152,2017,February,26,13,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,127.63,0,1,Check-Out,2020-03-03 -City Hotel,1,444,2016,September,43,20,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,63,Transient,73.19,0,0,Canceled,2018-08-03 -City Hotel,0,148,2016,March,16,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,B,2,No Deposit,32.0,331.0,0,Transient-Party,81.04,0,0,Check-Out,2019-01-03 -City Hotel,1,88,2015,December,16,11,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,61.29,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2015,July,43,5,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,70.7,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2015,September,45,12,0,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,99.99,0,1,Check-Out,2018-08-03 -Resort Hotel,0,158,2015,November,31,15,0,3,2,1.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient-Party,131.55,0,1,Check-Out,2019-06-03 -Resort Hotel,0,232,2016,July,31,18,2,5,3,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,90.0,179.0,0,Transient,204.78,0,0,Check-Out,2019-05-04 -City Hotel,1,158,2016,June,26,4,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,80.47,0,0,Canceled,2018-11-02 -Resort Hotel,1,97,2016,February,45,28,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,14.0,66.0,0,Transient,59.09,0,0,Canceled,2019-12-04 -City Hotel,1,106,2016,June,28,5,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.6,0,0,Canceled,2019-02-01 -City Hotel,1,272,2016,May,16,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,69.35,0,1,Canceled,2019-11-03 -Resort Hotel,0,1,2017,July,31,10,0,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,64.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,47,2017,March,17,9,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,306.0,179.0,0,Transient-Party,80.44,0,0,Canceled,2020-02-01 -City Hotel,0,105,2017,May,21,29,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,29.0,179.0,0,Transient,148.53,1,0,Check-Out,2020-03-03 -City Hotel,1,393,2016,September,44,24,0,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,73.38,0,0,Canceled,2019-05-04 -Resort Hotel,1,61,2016,October,44,13,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,296.0,179.0,0,Transient,39.08,0,0,Canceled,2018-08-03 -Resort Hotel,0,12,2016,October,43,24,2,1,2,0.0,0,HB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,134.0,0,0,Check-Out,2019-06-03 -Resort Hotel,1,165,2017,February,8,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,71.17,0,0,Canceled,2020-04-02 -Resort Hotel,0,285,2017,August,39,31,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,237.0,179.0,0,Transient,194.81,0,2,Check-Out,2020-06-02 -City Hotel,0,17,2017,March,16,24,0,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,61.14,1,0,Check-Out,2020-03-03 -City Hotel,0,106,2017,May,22,17,2,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,151.8,0,0,Check-Out,2020-01-04 -City Hotel,1,7,2015,August,44,13,2,4,1,0.0,0,HB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,44.09,0,1,Canceled,2019-07-04 -City Hotel,0,244,2016,November,36,20,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,20.0,179.0,40,Transient-Party,98.26,0,2,Check-Out,2019-06-03 -City Hotel,0,22,2017,July,27,23,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.81,0,0,Check-Out,2020-06-02 -City Hotel,1,256,2016,August,35,21,0,4,3,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,179.52,0,0,Canceled,2019-07-04 -City Hotel,1,4,2016,January,37,15,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,Non Refund,11.0,45.0,0,Transient-Party,97.04,0,0,Canceled,2019-04-03 -City Hotel,0,21,2016,November,51,28,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,64.0,0,Transient,79.91,0,0,Check-Out,2019-09-03 -City Hotel,0,3,2017,March,17,28,0,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,3.81,0,0,Check-Out,2020-03-03 -City Hotel,0,9,2016,January,3,2,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,39,Transient,73.38,0,0,Check-Out,2018-10-03 -City Hotel,0,1,2015,October,41,20,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,75.0,179.0,0,Group,98.77,0,0,Check-Out,2018-09-02 -City Hotel,0,16,2016,March,17,9,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient,118.33,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2015,August,38,19,0,1,1,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-07-03 -Resort Hotel,0,96,2017,April,17,16,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,A,2,No Deposit,306.0,179.0,0,Transient-Party,96.71,1,1,Check-Out,2020-03-03 -Resort Hotel,0,3,2017,January,4,20,2,2,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,40.0,87.0,0,Transient,37.29,1,3,Check-Out,2019-09-03 -City Hotel,0,16,2017,August,4,25,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.12,0,1,Check-Out,2020-02-01 -City Hotel,1,85,2016,January,8,27,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,9.0,179.0,0,Transient,59.61,0,1,Canceled,2018-12-03 -City Hotel,0,41,2016,October,42,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,6.0,179.0,0,Transient,121.42,0,2,Check-Out,2019-09-03 -City Hotel,0,0,2016,October,41,24,1,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,89.59,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2016,June,27,9,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,117.82,0,1,Check-Out,2019-06-03 -Resort Hotel,1,54,2016,April,42,15,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,D,0,Non Refund,14.0,179.0,0,Transient,92.25,0,0,Canceled,2019-01-03 -City Hotel,0,89,2016,March,11,21,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,64,Transient-Party,69.07,0,1,Check-Out,2018-12-03 -City Hotel,0,15,2015,October,44,31,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,122.5,0,0,No-Show,2018-07-03 -City Hotel,1,51,2015,December,53,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,237.0,179.0,0,Transient,120.37,0,0,Canceled,2017-09-02 -City Hotel,0,9,2016,August,22,5,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,249.0,0,Transient,130.51,1,0,Check-Out,2019-05-04 -Resort Hotel,1,362,2016,January,10,25,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,68.81,0,0,Canceled,2019-03-04 -Resort Hotel,1,25,2016,March,9,25,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,331.0,0,Transient,38.01,0,1,Canceled,2019-03-04 -Resort Hotel,0,21,2016,March,11,31,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,45.63,1,0,Check-Out,2019-01-03 -City Hotel,1,8,2015,October,45,6,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,94.67,0,1,No-Show,2018-08-03 -City Hotel,1,1,2016,October,46,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,3,No Deposit,209.0,331.0,0,Transient,61.82,0,0,Canceled,2019-12-04 -City Hotel,1,16,2016,March,8,5,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,99.86,0,1,Canceled,2019-02-01 -City Hotel,0,9,2016,August,37,28,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,144.63,0,3,Check-Out,2019-06-03 -City Hotel,0,386,2017,July,34,6,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.21,0,0,Check-Out,2020-06-02 -City Hotel,1,14,2016,December,51,28,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,L,F,0,No Deposit,18.0,179.0,0,Transient,0.0,0,2,Canceled,2018-06-02 -City Hotel,0,240,2015,September,44,15,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,116.34,0,0,Check-Out,2018-07-03 -Resort Hotel,1,49,2016,March,11,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,32.38,0,0,Canceled,2019-02-01 -City Hotel,0,272,2017,March,12,15,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,11.0,179.0,0,Transient,80.65,0,2,Check-Out,2020-02-01 -Resort Hotel,0,12,2017,August,35,2,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,120.42,0,0,Check-Out,2020-07-03 -Resort Hotel,0,3,2015,November,50,17,1,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,A,1,No Deposit,13.0,179.0,0,Transient-Party,114.42,0,1,Check-Out,2018-10-03 -City Hotel,0,15,2017,May,23,10,0,3,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient-Party,117.49,0,1,Check-Out,2020-05-03 -City Hotel,0,102,2016,June,25,2,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient,128.35,0,0,Check-Out,2019-01-03 -City Hotel,1,232,2015,July,33,27,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,139.64,0,0,Canceled,2018-08-03 -Resort Hotel,0,213,2015,September,43,27,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,322.0,179.0,0,Contract,61.59,0,0,Check-Out,2018-08-03 -City Hotel,0,153,2017,July,28,31,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.65,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,February,10,10,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,49.58,0,0,Check-Out,2018-11-02 -City Hotel,0,3,2015,September,35,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,98.15,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,May,22,17,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,F,0,No Deposit,13.0,331.0,0,Transient,135.74,0,0,Check-Out,2020-04-02 -City Hotel,0,208,2016,July,9,15,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,73.22,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2015,October,42,10,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,I,1,No Deposit,241.0,179.0,0,Transient-Party,0.32,1,0,Check-Out,2018-05-03 -City Hotel,1,167,2017,August,36,6,2,5,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.67,0,0,Canceled,2020-03-03 -Resort Hotel,0,40,2016,June,25,5,2,1,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,181.18,0,0,Check-Out,2019-02-01 -Resort Hotel,0,112,2016,March,19,26,1,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,146.0,179.0,0,Transient-Party,76.04,0,0,Check-Out,2019-02-01 -Resort Hotel,1,106,2016,August,36,30,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,252.0,0,2,Canceled,2019-05-04 -City Hotel,0,6,2016,January,4,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,71.73,0,1,Check-Out,2018-10-03 -City Hotel,1,294,2015,September,45,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.42,0,0,Canceled,2017-11-02 -Resort Hotel,0,243,2017,June,26,4,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,2,No Deposit,311.0,179.0,0,Transient-Party,133.76,0,0,Check-Out,2020-06-02 -City Hotel,1,64,2016,March,17,25,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.46,0,0,Canceled,2019-02-01 -City Hotel,0,80,2017,August,43,6,0,5,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,D,2,No Deposit,8.0,179.0,0,Transient,231.4,0,3,Check-Out,2019-11-03 -City Hotel,0,6,2016,March,16,28,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,7.0,179.0,0,Transient,79.92,0,2,Check-Out,2019-03-04 -City Hotel,0,15,2015,July,32,4,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,110.93,0,2,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,February,10,2,0,2,2,0.0,0,Undefined,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,39.39,0,0,Check-Out,2018-11-02 -Resort Hotel,0,174,2016,May,22,30,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,223.0,0,Transient-Party,61.3,0,0,Check-Out,2019-06-03 -Resort Hotel,0,158,2017,August,32,5,1,6,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,93.0,179.0,0,Transient-Party,98.18,0,0,Check-Out,2020-06-02 -City Hotel,1,312,2016,July,27,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,61.96,0,0,Canceled,2018-08-03 -City Hotel,0,10,2017,May,22,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,74.0,179.0,0,Transient,115.63,0,1,Check-Out,2020-03-03 -City Hotel,0,12,2016,March,39,15,1,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.36,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2017,April,12,14,1,0,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,63.53,0,1,Check-Out,2019-12-04 -City Hotel,0,51,2017,March,17,22,0,3,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,71.35,0,0,Check-Out,2020-01-04 -Resort Hotel,0,100,2016,June,37,19,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,174.98,1,1,Check-Out,2019-07-04 -City Hotel,1,29,2016,August,40,6,2,4,3,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,118.95,0,2,Canceled,2019-06-03 -City Hotel,0,9,2017,June,27,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,45.0,0,Transient,92.22,1,0,Check-Out,2020-07-03 -City Hotel,1,105,2016,November,22,5,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,B,1,No Deposit,11.0,179.0,0,Transient,96.61,0,0,Canceled,2019-04-03 -City Hotel,0,0,2016,August,51,14,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,10.0,179.0,0,Transient,1.82,0,1,Check-Out,2019-08-04 -Resort Hotel,0,104,2017,May,32,7,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,293.0,179.0,0,Transient,105.89,1,1,Check-Out,2020-07-03 -Resort Hotel,0,207,2017,June,28,23,2,1,1,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,208.0,179.0,0,Transient,76.07,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,September,44,30,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.48,0,2,Check-Out,2019-07-04 -Resort Hotel,1,12,2016,February,10,29,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,83.24,0,0,Canceled,2019-09-03 -Resort Hotel,0,119,2017,June,32,18,0,3,2,2.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,160.23,0,1,Check-Out,2020-05-03 -City Hotel,0,110,2016,October,43,12,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.64,0,1,Check-Out,2019-07-04 -City Hotel,1,163,2017,August,32,27,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,163.11,0,0,Canceled,2020-06-02 -Resort Hotel,1,153,2017,May,33,10,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,200.13,0,0,Canceled,2020-07-03 -Resort Hotel,0,49,2016,November,43,30,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,51.97,0,1,Check-Out,2018-12-03 -Resort Hotel,0,42,2016,March,53,19,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,244.0,179.0,0,Transient,39.01,0,3,Check-Out,2018-12-03 -City Hotel,1,248,2017,May,28,29,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,95.77,0,0,Canceled,2019-11-03 -Resort Hotel,0,276,2015,September,42,28,2,5,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,58.63,0,0,Check-Out,2018-08-03 -City Hotel,1,159,2017,August,8,14,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,2,No Deposit,13.0,179.0,0,Transient,249.13,0,0,Canceled,2020-02-01 -City Hotel,1,0,2016,December,10,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,331.0,0,Transient,39.45,0,0,Canceled,2018-11-02 -Resort Hotel,0,108,2016,December,50,25,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,46.56,0,3,Check-Out,2019-10-04 -City Hotel,1,98,2015,October,47,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.97,0,0,No-Show,2018-08-03 -Resort Hotel,0,4,2016,October,44,11,2,0,2,0.0,0,BB,USA,Online TA,TA/TO,1,0,1,E,D,1,No Deposit,8.0,179.0,0,Group,76.77,0,2,Check-Out,2019-06-03 -City Hotel,1,258,2016,July,37,9,1,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,78.53,0,2,Canceled,2019-05-04 -City Hotel,0,0,2016,September,38,13,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,153.54,0,0,Check-Out,2019-08-04 -City Hotel,1,57,2016,April,25,27,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient-Party,163.59,0,0,Canceled,2019-05-04 -Resort Hotel,0,45,2017,March,9,30,0,3,1,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,62.59,0,0,Check-Out,2019-12-04 -City Hotel,1,117,2017,May,36,16,2,4,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,154.27,0,0,Canceled,2019-10-04 -City Hotel,0,11,2016,August,29,30,1,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,196.25,0,0,Check-Out,2019-09-03 -Resort Hotel,0,6,2015,August,36,28,1,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,247.0,179.0,0,Transient,165.14,1,0,Check-Out,2018-06-02 -Resort Hotel,0,4,2016,March,9,6,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,67.37,1,2,Check-Out,2019-04-03 -Resort Hotel,0,85,2016,July,25,31,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,240.0,179.0,0,Transient,133.31,1,2,Check-Out,2019-05-04 -City Hotel,0,33,2016,February,11,21,1,0,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,B,0,No Deposit,190.0,242.0,0,Group,2.27,0,0,Check-Out,2019-02-01 -Resort Hotel,0,50,2016,February,11,24,2,2,2,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,147.0,179.0,0,Transient,33.44,0,0,Check-Out,2018-11-02 -City Hotel,1,16,2017,June,23,25,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,229.76,0,0,Canceled,2020-02-01 -Resort Hotel,0,48,2015,August,35,10,0,2,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,109.78,1,0,Check-Out,2018-06-02 -City Hotel,0,276,2016,July,31,3,2,5,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,8.0,179.0,0,Transient,108.08,0,1,Check-Out,2019-08-04 -Resort Hotel,1,206,2015,July,37,4,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,244.0,179.0,0,Transient,51.0,0,2,Canceled,2018-06-02 -City Hotel,0,92,2017,May,20,27,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Contract,96.05,0,0,Check-Out,2020-03-03 -Resort Hotel,0,48,2016,August,33,16,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,96.01,0,2,Check-Out,2020-06-02 -City Hotel,0,5,2016,December,53,31,2,2,3,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,70.13,0,0,Check-Out,2019-11-03 -City Hotel,0,153,2017,June,18,2,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,0,Transient,98.73,0,0,Check-Out,2020-04-02 -Resort Hotel,0,39,2015,August,38,8,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,242.0,179.0,0,Transient,187.43,0,1,Check-Out,2018-05-03 -City Hotel,0,2,2016,February,8,14,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,No Deposit,15.0,72.0,0,Transient,50.84,0,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2017,May,21,5,1,1,2,0.0,0,BB,BEL,Direct,TA/TO,1,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,86.7,1,1,Check-Out,2020-03-03 -Resort Hotel,1,151,2017,March,17,26,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,220.0,0,Transient,67.08,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,January,4,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,27.35,1,0,Check-Out,2018-11-02 -City Hotel,0,0,2016,June,26,15,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,D,0,No Deposit,15.0,180.0,0,Transient,93.18,0,0,Check-Out,2019-08-04 -City Hotel,0,153,2016,June,25,31,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,44,Transient,130.26,0,0,Check-Out,2019-02-01 -City Hotel,1,92,2015,September,35,16,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,60.57,0,0,Canceled,2018-08-03 -Resort Hotel,0,27,2017,May,23,30,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,F,3,No Deposit,244.0,179.0,0,Transient-Party,91.1,1,2,Check-Out,2020-04-02 -City Hotel,0,13,2015,November,51,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,88.13,0,0,Check-Out,2018-08-03 -Resort Hotel,1,75,2016,June,27,12,2,5,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,164.1,0,0,Canceled,2019-03-04 -City Hotel,1,46,2015,August,36,15,2,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.62,0,0,Canceled,2018-07-03 -City Hotel,1,35,2017,February,11,21,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,69.33,0,0,Canceled,2019-08-04 -Resort Hotel,0,57,2016,May,21,5,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient-Party,141.67,0,0,Check-Out,2019-06-03 -City Hotel,1,254,2015,July,36,6,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.15,0,0,Canceled,2018-01-03 -Resort Hotel,0,51,2016,May,33,25,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,213.66,1,1,Check-Out,2019-05-04 -City Hotel,0,17,2015,December,53,6,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,96.58,0,2,Check-Out,2018-10-03 -Resort Hotel,0,0,2017,March,10,31,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,242.0,179.0,0,Transient,191.28,0,1,Check-Out,2020-05-03 -City Hotel,0,0,2016,October,44,21,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,225.0,0,Transient,63.0,0,0,Check-Out,2019-07-04 -Resort Hotel,0,23,2017,August,36,8,0,1,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,202.08,0,3,Check-Out,2020-06-02 -Resort Hotel,1,60,2016,September,41,23,4,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,102.47,0,0,Canceled,2019-05-04 -Resort Hotel,0,38,2016,June,25,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Group,64.67,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,February,9,21,0,3,2,0.0,0,BB,BRA,Online TA,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,68.46,0,1,Check-Out,2019-02-01 -City Hotel,0,14,2017,April,21,5,0,4,2,0.0,0,BB,BRA,Aviation,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,158.47,0,1,Check-Out,2020-03-03 -City Hotel,0,30,2016,December,53,29,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,111.53,0,3,Check-Out,2019-07-04 -Resort Hotel,0,84,2016,April,23,31,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,57.09,0,1,Check-Out,2019-04-03 -City Hotel,0,15,2015,October,47,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient-Party,60.2,0,0,Check-Out,2018-09-02 -City Hotel,1,400,2017,May,22,13,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,26.0,179.0,0,Transient,73.33,0,0,Canceled,2020-03-03 -City Hotel,0,11,2016,June,25,27,1,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,150.4,0,0,Check-Out,2019-06-03 -Resort Hotel,0,209,2016,May,17,31,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,62.19,0,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2016,August,39,9,2,1,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,C,C,1,No Deposit,17.0,179.0,0,Transient-Party,207.73,0,0,Check-Out,2018-07-03 -City Hotel,0,153,2017,July,31,5,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,163.36,0,1,Check-Out,2020-06-02 -Resort Hotel,0,271,2015,December,43,20,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,123.42,1,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2016,December,53,31,2,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Contract,31.26,0,0,Check-Out,2018-12-03 -Resort Hotel,0,98,2015,December,52,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient-Party,71.8,0,1,Check-Out,2018-12-03 -City Hotel,0,52,2016,September,50,19,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,103.16,0,0,Check-Out,2018-08-03 -City Hotel,0,17,2016,June,23,18,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,150.71,0,0,Check-Out,2019-06-03 -City Hotel,0,12,2016,May,37,5,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,175.13,0,1,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,August,37,30,0,4,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,248.0,179.0,0,Transient,223.77,1,0,Check-Out,2018-06-02 -City Hotel,1,50,2016,June,21,22,0,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,9.0,179.0,0,Transient,164.54,0,0,Canceled,2019-02-01 -Resort Hotel,0,30,2017,March,17,16,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,1,0,1,E,I,1,No Deposit,243.0,179.0,75,Transient-Party,188.13,1,1,Check-Out,2020-02-01 -Resort Hotel,0,0,2017,March,10,21,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,Refundable,11.0,222.0,0,Transient-Party,67.03,0,1,Check-Out,2019-02-01 -City Hotel,0,92,2017,May,21,13,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,14,2016,February,49,12,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,E,E,0,No Deposit,24.0,179.0,0,Group,73.83,0,1,Check-Out,2019-02-01 -City Hotel,0,44,2017,August,29,30,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.34,0,2,Check-Out,2020-07-03 -City Hotel,0,2,2016,July,27,14,2,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.74,0,2,Check-Out,2019-06-03 -City Hotel,0,4,2016,October,45,29,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.81,0,0,Check-Out,2019-07-04 -City Hotel,1,107,2016,August,36,5,0,4,2,0.0,0,BB,PRT,Undefined,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Contract,76.97,0,0,Canceled,2018-12-03 -Resort Hotel,0,151,2017,March,11,2,2,5,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,89.0,179.0,75,Transient-Party,63.67,1,0,Check-Out,2020-05-03 -Resort Hotel,0,2,2016,March,12,30,0,1,1,0.0,0,BB,SWE,Corporate,Corporate,1,0,0,D,D,0,No Deposit,10.0,80.0,0,Transient,33.98,0,0,Check-Out,2018-12-03 -City Hotel,0,12,2016,May,21,5,0,1,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,B,0,No Deposit,176.0,179.0,0,Transient,85.59,0,0,Check-Out,2019-02-01 -Resort Hotel,0,54,2017,May,22,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,99.33,0,0,Check-Out,2020-04-02 -City Hotel,1,89,2016,December,53,25,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,62,Contract,73.06,0,1,Canceled,2018-12-03 -City Hotel,0,184,2016,October,41,11,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,92.75,0,1,Check-Out,2019-05-04 -Resort Hotel,0,33,2016,June,10,19,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,64.37,0,2,Check-Out,2019-04-03 -City Hotel,0,276,2016,November,45,30,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,38.0,179.0,0,Transient-Party,65.83,0,0,Check-Out,2019-08-04 -City Hotel,0,4,2016,September,38,2,1,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,154.31,1,2,Check-Out,2019-07-04 -City Hotel,0,24,2016,October,45,12,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,148.84,0,0,Check-Out,2019-05-04 -City Hotel,0,89,2015,April,16,6,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.74,0,0,Check-Out,2019-03-04 -City Hotel,1,286,2016,September,36,27,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,73.97,1,0,Canceled,2019-07-04 -Resort Hotel,0,10,2015,July,33,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,220.0,0,Transient,35.53,0,0,Check-Out,2018-06-02 -City Hotel,1,4,2017,January,4,20,1,2,1,1.0,0,SC,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,89.87,0,0,No-Show,2018-12-03 -City Hotel,0,36,2016,July,27,27,2,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,69.0,179.0,0,Transient,147.61,0,2,Check-Out,2019-04-03 -Resort Hotel,0,95,2016,June,24,28,3,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,74.7,0,2,Check-Out,2019-02-01 -City Hotel,0,2,2016,November,11,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,15.0,229.0,0,Transient,87.76,0,0,Check-Out,2018-11-02 -Resort Hotel,1,2,2017,June,26,28,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,207.88,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2017,February,10,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,2,No Deposit,13.0,331.0,0,Transient,79.77,1,3,Check-Out,2019-12-04 -City Hotel,0,0,2015,December,51,29,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,D,D,1,No Deposit,18.0,78.0,0,Transient,0.0,0,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2017,January,35,30,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,35.48,0,1,Check-Out,2019-12-04 -City Hotel,0,54,2017,August,30,12,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.67,0,2,Check-Out,2020-06-02 -Resort Hotel,0,21,2016,April,50,9,1,1,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,1,E,E,0,No Deposit,17.0,85.0,0,Transient,79.77,1,0,Check-Out,2019-05-04 -City Hotel,0,55,2015,September,35,30,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,123.77,0,1,Check-Out,2018-06-02 -Resort Hotel,0,107,2015,October,45,25,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,115.28,0,1,Check-Out,2018-08-03 -Resort Hotel,1,4,2016,January,10,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient,33.22,0,0,No-Show,2018-12-03 -Resort Hotel,0,97,2015,July,43,10,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,92.0,179.0,0,Contract,62.03,0,1,Check-Out,2018-11-02 -City Hotel,0,75,2016,August,31,21,2,3,3,1.0,0,BB,,Online TA,Direct,0,0,0,B,B,2,No Deposit,13.0,179.0,0,Transient,95.79,0,1,Check-Out,2019-07-04 -City Hotel,0,147,2017,June,27,4,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,110.5,0,0,Check-Out,2020-07-03 -Resort Hotel,0,97,2015,September,42,21,4,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,147.0,179.0,0,Transient,78.15,0,0,Check-Out,2018-08-03 -City Hotel,0,111,2016,September,37,28,2,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,120.37,0,2,Check-Out,2019-06-03 -City Hotel,0,0,2017,March,17,13,2,1,1,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Contract,90.79,0,2,Check-Out,2020-03-03 -City Hotel,0,3,2017,January,4,27,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,110.91,0,1,Check-Out,2020-02-01 -Resort Hotel,1,52,2017,August,38,29,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,240.0,179.0,0,Transient,154.71,0,1,Canceled,2020-07-03 -City Hotel,0,0,2017,May,22,21,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,1,No Deposit,15.0,45.0,0,Transient-Party,0.0,0,2,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,January,3,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,3,No Deposit,16.0,82.0,0,Transient,96.76,0,0,Check-Out,2019-10-04 -City Hotel,0,17,2017,June,21,28,2,1,3,0.0,0,BB,,Online TA,Corporate,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient,197.86,0,2,Check-Out,2020-03-03 -City Hotel,0,97,2016,October,17,30,2,0,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,78.3,0,0,Check-Out,2019-12-04 -City Hotel,1,206,2015,December,51,5,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.19,0,0,Canceled,2018-11-02 -City Hotel,0,48,2016,December,51,30,0,3,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.97,0,0,Check-Out,2019-08-04 -City Hotel,0,132,2016,December,53,25,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,67.91,0,0,Check-Out,2018-12-03 -City Hotel,1,315,2015,August,38,13,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.73,0,2,Canceled,2017-11-02 -Resort Hotel,0,246,2017,March,20,24,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,68.0,1,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,March,12,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,73.64,0,0,Check-Out,2018-12-03 -Resort Hotel,1,32,2015,May,21,4,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,149.0,0,0,Canceled,2018-11-02 -City Hotel,1,358,2017,May,27,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,92.76,0,0,Canceled,2019-11-03 -City Hotel,0,54,2017,April,22,20,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,197.86,0,1,Check-Out,2020-03-03 -Resort Hotel,1,258,2017,July,32,6,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,236.92,0,0,Canceled,2020-02-01 -City Hotel,0,12,2015,October,43,7,0,2,1,0.0,0,BB,IRL,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,35.0,237.0,0,Transient-Party,71.8,0,0,Check-Out,2018-09-02 -Resort Hotel,1,206,2016,December,53,6,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,241.0,179.0,0,Transient,209.93,0,1,Canceled,2019-10-04 -City Hotel,1,0,2015,August,40,14,0,1,1,0.0,0,BB,PRT,Complementary,Undefined,0,1,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-07-03 -Resort Hotel,0,0,2016,May,20,13,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,98.51,1,3,Check-Out,2019-02-01 -City Hotel,1,9,2017,May,21,11,1,0,1,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,A,A,0,No Deposit,11.0,179.0,0,Group,0.0,0,0,Canceled,2020-01-04 -Resort Hotel,1,91,2017,August,37,29,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,100.15,0,0,Canceled,2019-06-03 -Resort Hotel,0,8,2016,September,18,6,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,61.48,0,1,Check-Out,2019-08-04 -Resort Hotel,1,195,2015,August,39,2,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,160.08,0,1,Canceled,2018-07-03 -City Hotel,0,15,2017,May,20,6,2,4,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,126.28,0,0,Check-Out,2020-03-03 -City Hotel,0,314,2017,June,20,21,2,1,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,171.2,0,2,Canceled,2020-04-02 -Resort Hotel,1,1,2017,June,18,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,F,0,No Deposit,14.0,55.0,0,Transient,38.5,0,0,Canceled,2019-11-03 -City Hotel,0,1,2016,October,22,23,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,149.51,0,0,Check-Out,2019-06-03 -Resort Hotel,0,12,2016,September,40,2,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,123.08,1,1,Check-Out,2019-06-03 -Resort Hotel,0,96,2016,April,18,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,137.68,0,2,Check-Out,2019-06-03 -Resort Hotel,0,320,2016,May,24,23,2,5,2,0.0,0,Undefined,NLD,Groups,TA/TO,0,0,0,D,D,1,No Deposit,322.0,179.0,0,Transient-Party,69.81,0,1,Check-Out,2019-05-04 -City Hotel,0,4,2016,May,20,20,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,1,No Deposit,13.0,221.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,0,40,2015,November,50,21,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,39.41,0,0,Check-Out,2018-08-03 -City Hotel,0,131,2017,July,36,12,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,201.11,0,2,Check-Out,2020-06-02 -Resort Hotel,0,96,2015,July,28,30,0,6,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,E,1,No Deposit,14.0,179.0,0,Transient,61.78,0,0,Check-Out,2018-05-03 -City Hotel,1,13,2016,June,25,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,42,Transient-Party,78.19,0,0,Canceled,2019-06-03 -Resort Hotel,1,308,2017,June,22,2,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient-Party,78.09,0,0,Canceled,2020-04-02 -City Hotel,0,183,2016,December,51,28,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.17,0,1,Check-Out,2019-11-03 -City Hotel,0,22,2017,June,27,15,0,3,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,3,No Deposit,11.0,179.0,0,Transient,119.14,0,1,Check-Out,2020-02-01 -Resort Hotel,0,51,2016,June,26,9,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,193.0,179.0,0,Transient,183.22,0,0,Check-Out,2019-06-03 -Resort Hotel,0,145,2016,August,36,31,2,3,1,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,179.0,0,Transient-Party,109.15,0,0,Check-Out,2019-04-03 -City Hotel,1,46,2017,August,35,27,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,183.89,0,0,Canceled,2019-08-04 -City Hotel,0,114,2017,July,28,13,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,133.33,0,2,Check-Out,2020-04-02 -Resort Hotel,0,161,2016,March,15,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,15.0,223.0,0,Transient,49.31,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,July,33,9,0,3,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,216.12,0,3,Check-Out,2020-05-03 -Resort Hotel,0,1,2016,January,2,6,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,41.58,1,1,Check-Out,2018-11-02 -Resort Hotel,1,392,2016,August,35,14,0,2,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient-Party,99.05,0,0,Canceled,2019-12-04 -City Hotel,1,89,2016,June,25,20,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,7.0,179.0,0,Transient,121.22,0,0,Canceled,2019-02-01 -City Hotel,1,41,2016,December,53,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,69.98,0,0,Canceled,2018-10-03 -City Hotel,0,42,2015,October,43,25,2,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,70.91,0,0,Check-Out,2018-08-03 -Resort Hotel,0,241,2015,November,50,17,2,1,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,89.28,0,0,Check-Out,2019-11-03 -Resort Hotel,0,19,2016,July,45,17,4,7,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,332.0,179.0,0,Transient,100.81,0,0,Check-Out,2019-08-04 -City Hotel,1,54,2016,February,8,23,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,72.81,0,0,Canceled,2018-11-02 -City Hotel,0,84,2015,November,44,9,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.7,0,0,Check-Out,2018-09-02 -City Hotel,1,15,2017,August,36,7,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,205.27,0,2,Canceled,2020-07-03 -City Hotel,1,40,2017,February,10,20,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,131.78,0,0,Canceled,2019-12-04 -City Hotel,0,209,2016,September,44,10,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,177.59,0,1,Check-Out,2019-03-04 -Resort Hotel,1,17,2016,February,11,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,16.0,239.0,0,Transient,55.17,0,0,Canceled,2019-11-03 -City Hotel,0,108,2017,July,36,8,0,1,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,163.37,0,1,Check-Out,2020-06-02 -City Hotel,1,94,2017,June,27,7,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,9.0,179.0,0,Transient,206.89,0,1,Canceled,2020-06-02 -City Hotel,1,0,2017,June,2,25,0,2,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,126.02,0,3,Canceled,2020-01-04 -Resort Hotel,0,199,2016,September,35,5,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Contract,60.1,0,1,Check-Out,2019-08-04 -City Hotel,0,0,2015,January,53,6,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,99.09,0,0,No-Show,2018-11-02 -Resort Hotel,0,81,2016,December,50,9,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,76.82,0,0,Check-Out,2019-10-04 -City Hotel,1,149,2017,May,24,27,1,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,D,F,0,No Deposit,14.0,228.0,0,Transient-Party,82.63,0,0,Canceled,2020-01-04 -Resort Hotel,0,1,2016,December,51,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,45.0,226.0,0,Transient-Party,41.3,0,0,Check-Out,2019-11-03 -City Hotel,0,48,2017,October,49,13,0,1,2,0.0,0,HB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,77.22,0,0,Check-Out,2019-12-04 -City Hotel,0,21,2017,July,37,9,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,D,2,No Deposit,15.0,179.0,0,Transient,161.08,0,3,Check-Out,2020-06-02 -City Hotel,0,46,2017,July,32,18,0,3,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,165.5,0,2,Check-Out,2020-06-02 -Resort Hotel,0,12,2016,December,50,2,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,1,No Deposit,16.0,69.0,18,Transient,38.61,1,0,Check-Out,2018-12-03 -Resort Hotel,0,12,2016,August,39,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,100.7,0,1,Check-Out,2020-06-02 -City Hotel,0,98,2015,July,32,17,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,101.81,0,0,Check-Out,2018-06-02 -City Hotel,0,13,2017,June,23,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.77,0,0,Check-Out,2020-03-03 -City Hotel,0,44,2015,September,50,31,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,27.0,179.0,0,Transient-Party,108.99,0,0,Check-Out,2018-08-03 -City Hotel,0,45,2016,June,17,21,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Contract,139.68,0,0,Check-Out,2019-02-01 -City Hotel,0,139,2017,February,10,21,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,102.4,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,March,10,8,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,87.0,179.0,0,Transient,60.96,1,2,Check-Out,2018-12-03 -Resort Hotel,0,39,2015,July,38,9,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,259.0,179.0,0,Transient,76.36,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,September,39,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,1,No Deposit,13.0,45.0,0,Transient-Party,39.66,0,0,Check-Out,2019-05-04 -City Hotel,0,12,2017,June,28,9,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,80.89,0,0,Check-Out,2020-06-02 -Resort Hotel,0,15,2017,February,11,6,2,0,2,0.0,0,SC,PRT,Direct,Direct,1,0,0,A,F,0,No Deposit,16.0,179.0,0,Group,97.47,0,1,Check-Out,2019-09-03 -City Hotel,1,3,2017,June,9,1,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,18.0,179.0,41,Transient,84.78,0,0,Canceled,2019-09-03 -Resort Hotel,0,15,2016,March,5,21,0,3,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,316.0,179.0,0,Transient-Party,41.02,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2017,July,27,9,0,1,1,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,9.0,45.0,0,Transient,0.0,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,December,53,21,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,64.71,0,0,Check-Out,2018-11-02 -City Hotel,0,284,2015,July,35,4,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,93.57,0,2,Check-Out,2018-08-03 -City Hotel,1,309,2017,June,29,19,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,162.0,179.0,0,Transient,125.59,0,0,Canceled,2020-02-01 -City Hotel,0,12,2017,June,26,18,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,139.68,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2015,October,44,5,0,1,1,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,241.0,0,Transient-Party,92.09,0,0,Check-Out,2018-09-02 -City Hotel,0,17,2016,October,42,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,63.71,0,0,Check-Out,2019-08-04 -City Hotel,0,147,2016,April,53,5,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,195.51,0,1,Check-Out,2019-10-04 -City Hotel,0,238,2016,May,22,10,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,74.89,0,1,Check-Out,2019-01-03 -City Hotel,1,32,2017,July,27,6,0,4,3,1.0,0,BB,,Direct,Direct,0,0,0,F,G,2,No Deposit,13.0,179.0,0,Transient,117.73,0,0,Canceled,2020-06-02 -City Hotel,0,4,2016,August,35,11,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,18.0,45.0,0,Transient,5.58,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,April,21,30,0,7,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,120.34,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2017,April,18,13,1,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-03-03 -City Hotel,0,50,2017,May,19,23,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,F,0,No Deposit,13.0,78.0,0,Transient-Party,127.63,0,0,Check-Out,2020-06-02 -Resort Hotel,0,18,2017,January,6,30,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,E,0,No Deposit,319.0,179.0,0,Transient,79.2,1,0,Check-Out,2019-11-03 -Resort Hotel,0,149,2016,August,32,2,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,108.41,0,1,Check-Out,2019-06-03 -City Hotel,1,425,2015,October,32,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,57.93,0,0,Canceled,2018-01-31 -City Hotel,1,103,2016,October,45,21,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,73.78,0,1,Canceled,2019-09-03 -City Hotel,0,138,2017,October,51,28,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,114.21,0,1,Check-Out,2019-11-03 -Resort Hotel,0,25,2016,May,21,3,0,2,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,130.76,1,0,Check-Out,2019-07-04 -City Hotel,0,3,2016,May,21,15,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,86.14,0,0,Check-Out,2019-05-04 -City Hotel,0,153,2015,July,32,9,0,1,1,0.0,0,BB,BEL,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,124.53,0,0,Check-Out,2018-04-02 -City Hotel,1,25,2016,May,21,20,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Group,67.14,0,0,Canceled,2019-02-01 -Resort Hotel,0,159,2016,March,18,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,13.0,223.0,0,Transient-Party,64.15,1,0,Check-Out,2019-07-04 -Resort Hotel,0,105,2017,June,23,27,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,212.79,1,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2015,August,36,9,0,5,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,88.73,1,0,Check-Out,2018-06-02 -Resort Hotel,0,84,2016,December,51,27,2,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,3,No Deposit,378.0,179.0,0,Transient-Party,68.58,0,0,Check-Out,2019-01-03 -City Hotel,0,2,2016,September,45,24,1,2,2,0.0,0,BB,ESP,Complementary,Corporate,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,77.93,0,0,Check-Out,2019-08-04 -City Hotel,0,93,2016,August,26,21,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,83.0,179.0,0,Transient,124.26,0,0,Check-Out,2020-06-02 -City Hotel,0,36,2015,November,49,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.86,0,0,Check-Out,2018-12-03 -Resort Hotel,1,255,2017,July,31,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,94.23,0,2,Canceled,2018-05-03 -Resort Hotel,1,1,2016,July,28,28,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,71.22,0,2,No-Show,2020-07-03 -Resort Hotel,0,7,2017,March,9,15,1,0,2,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,A,1,No Deposit,103.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,39,2016,May,22,29,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,30.0,179.0,43,Transient-Party,59.9,0,0,Check-Out,2019-07-04 -Resort Hotel,0,161,2016,March,18,12,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,10.0,223.0,75,Transient-Party,62.91,1,0,Check-Out,2019-03-04 -City Hotel,0,3,2016,October,45,21,0,4,2,0.0,0,SC,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,1.86,0,2,Check-Out,2019-09-03 -Resort Hotel,0,39,2016,January,8,25,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,43.88,1,2,Check-Out,2019-03-04 -City Hotel,1,27,2016,March,9,9,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,11.0,179.0,0,Transient,60.49,0,0,Canceled,2018-11-02 -Resort Hotel,0,21,2015,December,50,27,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient-Party,60.04,0,0,Check-Out,2018-09-02 -City Hotel,1,49,2017,August,36,6,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,121.54,0,1,Canceled,2020-07-03 -Resort Hotel,0,20,2015,December,53,30,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,36.3,1,0,Check-Out,2018-11-02 -City Hotel,1,1,2016,March,18,28,1,2,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,99.29,0,0,Canceled,2018-11-02 -City Hotel,0,16,2017,May,23,28,2,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.97,0,1,Check-Out,2020-03-03 -City Hotel,0,103,2016,June,26,15,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.38,0,1,Check-Out,2019-05-04 -City Hotel,0,3,2016,February,9,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient-Party,94.07,0,0,Check-Out,2018-11-02 -City Hotel,0,10,2016,October,46,2,1,0,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,17.0,170.0,0,Transient,110.75,0,0,Check-Out,2019-08-04 -Resort Hotel,0,8,2017,February,8,24,0,3,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,186.0,179.0,0,Transient,40.72,0,0,Check-Out,2020-03-03 -City Hotel,1,60,2017,April,16,21,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,77.23,0,0,Canceled,2020-01-04 -City Hotel,0,4,2016,January,4,28,1,1,2,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,A,K,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,1,98,2017,August,35,23,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,116.14,0,0,Canceled,2019-12-04 -Resort Hotel,0,1,2015,December,51,31,1,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,46.4,0,0,Check-Out,2018-11-02 -City Hotel,1,316,2017,September,36,31,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,170.95,0,1,Canceled,2019-08-04 -City Hotel,0,14,2015,September,35,27,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,95.6,0,0,Check-Out,2018-07-03 -City Hotel,1,34,2016,July,33,15,2,3,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,124.34,0,0,Canceled,2019-05-04 -Resort Hotel,0,2,2016,May,21,12,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,100.34,0,0,Check-Out,2019-12-04 -City Hotel,1,420,2016,June,44,26,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,63.1,0,0,Canceled,2018-08-03 -City Hotel,0,62,2016,February,10,5,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,60.76,0,1,Check-Out,2019-03-04 -City Hotel,0,51,2017,March,27,7,2,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,68.05,0,2,Check-Out,2020-03-03 -Resort Hotel,0,44,2016,August,36,28,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -Resort Hotel,1,0,2016,August,40,25,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,76.54,0,0,Canceled,2019-09-03 -Resort Hotel,0,110,2015,November,44,9,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.09,1,1,Check-Out,2018-09-02 -City Hotel,1,107,2017,June,25,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,164.14,0,1,Canceled,2019-06-03 -Resort Hotel,0,0,2016,March,7,11,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,73.25,1,0,Check-Out,2019-03-04 -Resort Hotel,0,315,2015,October,43,13,2,1,2,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,C,0,No Deposit,14.0,234.0,0,Transient-Party,79.62,0,0,Check-Out,2018-08-03 -City Hotel,0,40,2016,May,22,18,1,0,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,168.29,0,1,Check-Out,2019-02-01 -Resort Hotel,0,5,2016,June,23,23,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,193.2,0,0,Check-Out,2019-02-01 -City Hotel,1,34,2017,May,21,26,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,148.93,0,0,Canceled,2019-03-04 -City Hotel,0,0,2016,April,17,15,0,3,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,331.0,0,Transient-Party,96.71,0,0,Check-Out,2019-03-04 -Resort Hotel,0,58,2015,November,49,2,2,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,94.76,0,0,Check-Out,2018-08-03 -Resort Hotel,0,277,2016,May,45,9,2,2,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,288.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-04-03 -Resort Hotel,0,47,2017,March,25,9,0,1,1,0.0,0,HB,PRT,Corporate,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,101.75,0,0,Check-Out,2020-06-02 -City Hotel,0,8,2017,April,19,31,2,0,1,0.0,0,HB,IRL,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient-Party,92.4,0,0,Check-Out,2020-01-04 -City Hotel,1,183,2016,June,26,3,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,122.25,0,1,No-Show,2019-02-01 -City Hotel,0,405,2017,June,30,18,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.92,0,1,Check-Out,2020-07-03 -Resort Hotel,0,14,2015,October,35,29,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,84.75,0,2,Check-Out,2018-08-03 -City Hotel,0,23,2015,December,45,21,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,98.09,0,0,Check-Out,2018-09-02 -City Hotel,0,26,2016,December,47,2,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,204.04,0,1,Check-Out,2019-07-04 -Resort Hotel,1,78,2017,February,9,14,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,16.0,331.0,0,Transient,42.35,0,0,Canceled,2019-12-04 -City Hotel,0,96,2015,August,35,2,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Group,134.13,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,December,50,28,1,0,1,0.0,0,BB,,Online TA,Direct,0,0,0,G,D,0,No Deposit,36.0,179.0,0,Transient,80.41,1,0,Check-Out,2019-09-03 -Resort Hotel,0,271,2015,September,40,29,2,4,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,93.0,179.0,0,Transient-Party,47.8,0,0,Check-Out,2018-07-03 -Resort Hotel,0,51,2017,May,16,9,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,86.64,0,0,Check-Out,2020-04-02 -Resort Hotel,0,202,2016,September,42,31,3,10,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,75,Transient-Party,93.31,1,0,Check-Out,2020-06-02 -City Hotel,1,96,2017,February,9,15,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.06,0,0,Canceled,2019-10-04 -City Hotel,1,278,2016,October,44,27,3,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,42,Transient,98.97,0,2,Canceled,2018-07-03 -Resort Hotel,0,21,2016,April,14,27,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,163.34,0,1,Check-Out,2019-02-01 -Resort Hotel,1,19,2015,December,51,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,128.29,0,2,Canceled,2018-07-03 -City Hotel,0,11,2016,March,10,13,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,297.0,179.0,0,Transient,95.72,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2016,June,27,20,1,0,1,0.0,0,BB,DEU,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,84.58,0,0,Check-Out,2019-03-04 -Resort Hotel,0,8,2017,May,23,28,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,59.94,0,0,Check-Out,2020-03-03 -Resort Hotel,0,42,2016,March,12,15,1,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,E,0,No Deposit,109.0,179.0,0,Transient-Party,60.98,0,0,Check-Out,2019-04-03 -City Hotel,0,19,2015,November,49,6,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,15.0,255.0,0,Transient,61.21,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2016,September,44,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,123.5,0,0,Check-Out,2018-11-02 -City Hotel,0,24,2016,November,43,24,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,132.81,0,0,Check-Out,2019-06-03 -City Hotel,0,95,2017,March,11,14,0,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.52,0,1,Check-Out,2019-11-03 -Resort Hotel,1,108,2017,August,34,28,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,248.0,179.0,0,Transient,130.0,0,0,Canceled,2019-12-04 -Resort Hotel,0,89,2017,May,22,6,2,0,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,91.59,0,2,Check-Out,2020-04-02 -Resort Hotel,0,13,2017,February,9,19,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,297.0,179.0,0,Transient-Party,45.28,0,0,Check-Out,2019-11-03 -City Hotel,0,53,2016,March,7,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,72.06,0,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2016,May,23,21,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,G,G,0,No Deposit,14.0,222.0,0,Transient-Party,74.85,1,0,Check-Out,2019-03-04 -Resort Hotel,0,21,2016,October,43,24,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,73.86,1,0,Check-Out,2019-02-01 -Resort Hotel,0,18,2017,March,18,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,75,Transient,158.54,1,0,Check-Out,2019-04-03 -Resort Hotel,0,155,2016,March,18,31,1,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,H,0,Refundable,14.0,221.0,0,Transient-Party,33.77,0,0,Check-Out,2019-03-04 -Resort Hotel,1,161,2016,June,25,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,145.43,0,2,Canceled,2019-01-03 -City Hotel,1,156,2016,April,15,6,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient,71.63,0,0,Canceled,2019-01-03 -City Hotel,0,435,2015,June,32,5,0,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient-Party,89.05,0,0,Check-Out,2019-05-04 -Resort Hotel,1,0,2017,January,2,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,79.0,0,Transient,46.56,0,0,Canceled,2019-12-04 -City Hotel,0,9,2017,March,15,9,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.51,0,1,Check-Out,2020-05-03 -Resort Hotel,0,104,2016,December,5,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,61.99,0,0,Check-Out,2018-11-02 -City Hotel,1,10,2017,August,37,16,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.42,0,1,Canceled,2019-12-04 -City Hotel,1,256,2017,February,10,20,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,134.0,179.0,0,Transient,61.87,0,0,Canceled,2018-06-02 -City Hotel,0,111,2015,November,50,5,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,0,Transient,32.1,0,0,Check-Out,2018-12-03 -Resort Hotel,0,164,2016,April,15,6,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,180.0,179.0,0,Transient-Party,76.98,0,2,Check-Out,2020-06-02 -City Hotel,0,269,2017,July,31,30,2,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,173.34,0,1,Check-Out,2020-05-03 -City Hotel,1,246,2015,September,36,29,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,Non Refund,2.0,179.0,0,Contract,61.75,0,0,Canceled,2018-08-03 -City Hotel,1,55,2017,August,31,21,0,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.93,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2016,March,9,16,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,179.0,0,Transient,39.55,0,0,Check-Out,2019-02-01 -Resort Hotel,1,112,2016,December,49,31,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,286.0,179.0,0,Transient,77.09,0,0,Canceled,2018-12-03 -City Hotel,0,60,2017,May,24,30,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,209.03,0,1,Check-Out,2020-05-03 -Resort Hotel,0,7,2017,January,2,2,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,15.0,331.0,0,Transient,38.47,0,0,Check-Out,2019-11-03 -City Hotel,1,158,2017,June,21,24,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,F,0,Non Refund,8.0,179.0,0,Transient,160.91,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,February,27,15,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,60.53,0,0,Check-Out,2020-01-04 -Resort Hotel,0,41,2016,November,50,28,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,72.49,0,1,Check-Out,2019-09-03 -City Hotel,1,201,2016,January,4,12,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.58,0,0,Canceled,2019-10-04 -City Hotel,1,436,2015,September,40,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.25,0,0,Canceled,2018-08-03 -City Hotel,0,96,2015,December,49,5,1,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,147.54,0,2,Check-Out,2018-12-03 -Resort Hotel,1,246,2016,July,26,2,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,2019-06-03 -City Hotel,0,7,2017,May,22,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient,166.7,0,1,Check-Out,2020-03-03 -City Hotel,0,62,2017,July,31,10,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,175.16,0,2,Check-Out,2020-06-02 -City Hotel,1,2,2017,January,4,28,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,101.93,0,0,Check-Out,2020-03-03 -City Hotel,1,53,2017,January,2,9,2,0,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,88.57,0,1,Canceled,2019-11-03 -Resort Hotel,0,21,2016,April,17,27,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient,94.85,1,2,Check-Out,2019-03-04 -City Hotel,1,5,2016,June,27,6,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.74,0,0,No-Show,2019-06-03 -City Hotel,0,109,2016,April,17,31,0,4,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,59.83,0,0,Check-Out,2019-02-01 -City Hotel,0,109,2015,July,46,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.56,0,0,Check-Out,2018-08-03 -City Hotel,1,241,2016,July,34,6,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.94,0,0,Canceled,2019-08-04 -Resort Hotel,1,161,2015,December,52,30,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,257.0,179.0,0,Transient-Party,85.28,0,0,Canceled,2018-07-03 -City Hotel,1,221,2017,August,34,15,2,5,2,0.0,0,BB,PRT,Aviation,Direct,0,0,0,D,D,0,Non Refund,13.0,179.0,0,Transient,100.09,0,0,Canceled,2019-11-03 -City Hotel,1,254,2016,October,41,15,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,43,Transient-Party,99.19,0,0,Canceled,2019-04-03 -Resort Hotel,0,43,2017,March,9,15,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-01-04 -Resort Hotel,0,33,2015,July,31,5,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,102.15,0,1,Check-Out,2018-06-02 -City Hotel,1,19,2016,June,27,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,85.55,0,0,Canceled,2019-01-03 -City Hotel,0,144,2017,June,28,27,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.1,0,1,Check-Out,2020-06-02 -City Hotel,1,106,2017,June,31,15,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Contract,99.27,0,3,Canceled,2020-03-03 -City Hotel,0,16,2015,October,46,9,2,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient-Party,95.43,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,May,23,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,262.0,0,Transient,36.61,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,July,32,30,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,72.89,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2016,August,46,30,1,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,0.34,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,October,42,30,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,32.99,0,3,Check-Out,2018-08-03 -City Hotel,0,9,2015,October,43,18,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,97.62,0,2,Check-Out,2018-08-03 -City Hotel,1,20,2016,November,51,8,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.46,0,1,Canceled,2019-11-03 -Resort Hotel,1,238,2016,December,53,29,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Refundable,240.0,179.0,0,Transient,148.2,0,0,Canceled,2019-10-04 -Resort Hotel,0,3,2017,March,31,16,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,152.23,0,2,Check-Out,2020-06-02 -City Hotel,0,151,2016,September,38,30,1,0,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient,116.27,0,1,Check-Out,2019-07-04 -Resort Hotel,0,30,2015,December,51,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,35.58,0,0,Check-Out,2018-12-03 -City Hotel,1,2,2017,February,11,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,59.36,0,0,Canceled,2019-11-03 -City Hotel,0,225,2016,September,44,13,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.43,0,2,Check-Out,2019-12-04 -Resort Hotel,0,10,2015,December,53,25,0,5,2,0.0,0,Undefined,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,64.26,0,0,Check-Out,2018-11-02 -Resort Hotel,0,13,2015,January,5,28,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient,70.87,0,0,Check-Out,2018-09-02 -City Hotel,0,93,2017,May,22,22,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,F,0,No Deposit,14.0,179.0,0,Transient,145.83,1,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,December,53,21,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,61.27,0,0,Check-Out,2018-11-02 -City Hotel,0,33,2016,September,50,19,0,2,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,95.1,0,0,Check-Out,2019-07-04 -City Hotel,1,401,2015,October,44,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.24,0,0,Canceled,2018-09-02 -City Hotel,0,50,2016,July,28,20,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,161.05,0,3,Check-Out,2019-06-03 -City Hotel,0,15,2016,May,10,9,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,125.0,179.0,0,Transient,77.34,0,0,Check-Out,2019-02-01 -City Hotel,0,38,2017,August,37,26,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.99,1,1,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,January,16,6,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,250.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-03-04 -Resort Hotel,1,243,2016,July,28,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,Non Refund,66.0,179.0,0,Transient,91.15,0,0,Canceled,2017-12-03 -Resort Hotel,1,199,2017,March,14,20,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,77.32,0,1,Canceled,2020-02-01 -City Hotel,0,43,2016,December,52,13,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.16,0,1,Check-Out,2019-11-03 -Resort Hotel,0,102,2016,November,44,24,4,7,3,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,E,1,No Deposit,151.0,179.0,0,Transient-Party,93.87,0,0,Check-Out,2019-07-04 -Resort Hotel,1,0,2016,September,46,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,100.0,179.0,0,Transient,41.94,0,0,No-Show,2019-01-03 -Resort Hotel,1,47,2016,February,9,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,44.98,0,0,Canceled,2018-11-02 -City Hotel,1,19,2016,March,16,20,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,66.04,0,0,Canceled,2019-02-01 -City Hotel,1,0,2017,January,2,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,70.0,0,Transient,34.92,0,0,Canceled,2019-10-04 -Resort Hotel,0,40,2016,March,15,9,2,5,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,239.0,179.0,0,Transient,128.74,0,2,Check-Out,2019-03-04 -City Hotel,0,253,2017,August,26,21,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,128.53,0,3,Check-Out,2020-06-02 -City Hotel,0,94,2016,June,26,17,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,115.57,0,0,Check-Out,2019-04-03 -City Hotel,1,383,2017,June,26,21,0,2,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,72.0,179.0,41,Transient,62.92,0,0,Canceled,2018-11-02 -City Hotel,0,86,2017,May,26,15,0,1,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,102.28,0,2,Check-Out,2020-01-04 -Resort Hotel,0,24,2015,December,51,6,1,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,84.25,0,0,Check-Out,2018-08-03 -Resort Hotel,0,12,2015,October,46,5,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,29.93,0,0,Check-Out,2018-09-02 -City Hotel,1,38,2016,December,53,6,2,1,1,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,A,1,No Deposit,9.0,179.0,0,Transient,69.76,0,0,Canceled,2019-10-04 -City Hotel,0,105,2017,August,4,2,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,126.17,0,3,Check-Out,2020-07-03 -City Hotel,0,31,2016,March,4,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,63,Transient,73.78,0,0,Canceled,2018-10-03 -City Hotel,1,46,2016,December,51,9,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.75,0,0,Canceled,2019-05-04 -City Hotel,0,213,2017,July,26,23,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,126.99,0,0,Check-Out,2020-07-03 -Resort Hotel,0,33,2017,March,17,22,2,3,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,61.59,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2016,June,42,8,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,73.78,0,0,Check-Out,2019-06-03 -City Hotel,1,141,2016,June,27,2,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,131.06,0,0,Canceled,2018-12-03 -City Hotel,0,18,2017,May,20,5,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,150.47,1,1,Check-Out,2020-04-02 -Resort Hotel,0,150,2016,December,50,20,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,No Deposit,37.0,179.0,0,Transient,70.69,0,0,Check-Out,2019-06-03 -City Hotel,0,47,2016,December,53,7,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,70.48,0,0,Check-Out,2019-09-03 -City Hotel,0,8,2017,June,11,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,62.18,0,0,Check-Out,2020-06-02 -City Hotel,1,101,2016,October,46,30,2,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,216.72,0,3,Canceled,2019-08-04 -City Hotel,1,439,2016,September,44,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,40,Transient,110.88,0,0,Canceled,2018-08-03 -City Hotel,0,39,2016,December,51,13,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,56.08,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,April,15,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,246.0,179.0,0,Transient,61.69,1,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,June,42,27,0,1,1,0.0,0,BB,CHE,Offline TA/TO,GDS,0,0,0,A,A,2,No Deposit,202.0,250.0,0,Transient,109.78,0,0,Check-Out,2019-12-04 -Resort Hotel,0,206,2016,June,31,27,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,40.51,0,0,Check-Out,2019-06-03 -City Hotel,0,192,2015,July,32,6,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,133.0,179.0,0,Transient-Party,103.37,0,0,Check-Out,2018-06-02 -Resort Hotel,0,10,2015,July,38,21,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,121.45,0,2,Check-Out,2018-06-02 -City Hotel,0,1,2015,October,49,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,2,No Deposit,13.0,179.0,0,Transient-Party,122.61,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,October,43,18,2,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,2,No Deposit,13.0,179.0,0,Transient,1.63,0,0,Check-Out,2019-08-04 -Resort Hotel,0,30,2015,October,42,10,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Group,105.41,0,1,Check-Out,2018-06-02 -City Hotel,0,96,2016,December,44,18,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,83.63,0,1,Check-Out,2019-04-03 -Resort Hotel,1,40,2016,July,33,28,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,78.07,0,0,No-Show,2018-08-03 -City Hotel,0,20,2016,January,3,24,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-11-02 -City Hotel,1,26,2016,February,10,14,0,2,3,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient,55.38,0,1,Canceled,2019-01-03 -Resort Hotel,0,245,2016,August,36,6,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,231.6,1,0,Canceled,2020-05-03 -Resort Hotel,0,257,2016,May,23,31,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,12.0,224.0,75,Transient-Party,68.63,1,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,September,36,25,3,10,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,59.55,0,0,Check-Out,2019-07-04 -Resort Hotel,1,102,2016,April,21,9,2,10,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,35.46,0,1,No-Show,2019-03-04 -City Hotel,1,99,2016,March,50,7,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,60.11,0,2,Canceled,2018-12-03 -Resort Hotel,0,0,2017,January,10,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,16.0,45.0,0,Transient,69.18,1,0,Check-Out,2019-01-03 -City Hotel,1,41,2017,February,9,10,2,2,2,0.0,0,HB,FRA,Groups,GDS,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,88.81,0,0,Canceled,2020-01-04 -Resort Hotel,1,50,2017,June,35,15,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,336.0,179.0,0,Transient,117.31,0,0,No-Show,2020-06-02 -City Hotel,1,60,2015,February,32,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.92,0,0,Canceled,2018-01-03 -City Hotel,0,36,2016,April,18,19,2,3,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,137.09,0,0,Check-Out,2019-02-01 -Resort Hotel,0,113,2017,July,31,24,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,171.0,179.0,0,Transient,178.6,0,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,June,26,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,C,I,0,No Deposit,237.0,179.0,0,Transient,1.08,0,2,Check-Out,2019-05-04 -City Hotel,0,37,2016,March,17,28,0,3,1,0.0,0,SC,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,11.0,78.0,0,Transient-Party,90.95,0,1,Check-Out,2019-01-03 -Resort Hotel,0,13,2017,January,12,26,1,0,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,62.21,1,3,Check-Out,2019-10-04 -Resort Hotel,0,262,2017,June,24,10,3,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,93.91,0,3,Check-Out,2020-07-03 -Resort Hotel,1,16,2016,June,28,8,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,Non Refund,102.0,179.0,0,Transient,59.9,0,0,Canceled,2019-03-04 -City Hotel,1,56,2015,August,39,15,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,170.36,0,0,Canceled,2018-11-02 -City Hotel,0,2,2015,July,37,9,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,D,0,No Deposit,14.0,179.0,0,Transient,147.59,0,0,Check-Out,2018-06-02 -Resort Hotel,1,169,2016,May,21,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,124.9,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2017,January,4,15,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,74.57,0,0,Check-Out,2020-06-02 -Resort Hotel,0,11,2016,March,10,18,2,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,136.0,179.0,0,Transient,29.92,0,0,Canceled,2018-12-03 -Resort Hotel,0,20,2016,July,32,5,2,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,120.56,0,0,Check-Out,2020-04-02 -City Hotel,0,19,2016,September,36,6,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,223.03,0,1,Check-Out,2018-08-03 -Resort Hotel,1,94,2016,February,16,9,2,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,139.0,179.0,0,Transient,79.41,0,0,Canceled,2019-03-04 -City Hotel,1,92,2016,March,15,6,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,94.46,0,0,Canceled,2019-01-03 -City Hotel,0,94,2016,January,5,30,0,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,217.2,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,January,3,24,0,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,98.77,0,1,Check-Out,2019-11-03 -Resort Hotel,0,2,2017,January,4,24,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,42.31,0,0,Check-Out,2018-10-03 -City Hotel,0,296,2015,October,43,21,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Contract,68.2,0,0,Check-Out,2018-09-02 -City Hotel,0,81,2015,December,53,6,0,2,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,100.66,0,2,Check-Out,2018-12-03 -Resort Hotel,0,2,2016,February,12,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,37.64,0,0,Check-Out,2018-12-03 -Resort Hotel,0,368,2015,October,40,20,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,89.0,179.0,0,Contract,83.13,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,March,12,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,17.0,179.0,0,Transient,124.19,0,0,Check-Out,2018-12-03 -Resort Hotel,0,53,2015,October,44,27,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,69.92,0,0,Check-Out,2018-08-03 -Resort Hotel,0,309,2016,May,23,28,2,10,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,103.0,179.0,0,Transient-Party,71.54,0,0,Check-Out,2019-07-04 -City Hotel,0,4,2016,February,9,21,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,233.0,0,Transient,75.63,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2015,October,42,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,70.71,0,0,Check-Out,2018-08-03 -City Hotel,0,90,2017,March,19,29,2,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.58,0,2,Check-Out,2020-04-02 -City Hotel,1,240,2017,June,25,4,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,A,1,No Deposit,12.0,179.0,0,Transient,97.5,0,0,Canceled,2020-05-03 -City Hotel,1,162,2016,February,16,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,11.0,179.0,16,Transient,44.55,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,May,44,23,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,84.33,0,0,Check-Out,2019-06-03 -Resort Hotel,0,11,2015,October,45,20,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,D,E,0,No Deposit,195.0,179.0,0,Transient-Party,58.75,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2015,September,11,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,60.42,0,0,Check-Out,2018-12-03 -Resort Hotel,0,22,2017,April,23,29,2,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,F,3,No Deposit,16.0,179.0,0,Transient,165.73,1,0,Check-Out,2020-04-02 -City Hotel,1,239,2017,June,25,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,92.77,0,0,Canceled,2020-02-01 -City Hotel,1,36,2016,August,38,28,0,1,3,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,240.29,0,0,Canceled,2019-08-04 -City Hotel,1,2,2017,January,3,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,220.0,0,Transient,99.12,0,0,Canceled,2019-12-04 -City Hotel,0,15,2017,February,8,15,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,91.89,0,1,Check-Out,2020-01-04 -Resort Hotel,0,321,2017,August,37,28,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,227.49,1,3,Check-Out,2020-06-02 -Resort Hotel,0,36,2017,April,15,10,0,1,1,0.0,0,HB,AUT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,301.0,179.0,0,Transient-Party,93.93,0,0,Check-Out,2019-12-04 -Resort Hotel,0,54,2017,May,21,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,173.4,0,1,Check-Out,2019-05-04 -City Hotel,1,44,2017,May,21,5,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,149.65,0,0,Canceled,2020-02-01 -City Hotel,0,43,2015,September,34,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,29.0,179.0,0,Transient-Party,99.22,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,October,51,15,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,34.45,0,1,Check-Out,2019-09-03 -Resort Hotel,1,0,2017,January,3,20,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,59.94,1,0,Canceled,2018-11-02 -Resort Hotel,0,355,2017,April,21,26,0,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,94.62,0,0,Check-Out,2020-05-03 -City Hotel,0,394,2016,October,31,4,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.43,0,0,Check-Out,2018-08-03 -City Hotel,0,22,2016,October,43,13,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,83.9,0,1,Check-Out,2019-10-04 -City Hotel,1,77,2015,July,33,20,2,1,2,0.0,0,BB,CHE,Direct,Undefined,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,70.58,0,1,Canceled,2018-07-03 -City Hotel,0,32,2017,July,30,19,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,88.1,0,0,Check-Out,2020-07-03 -Resort Hotel,0,11,2015,December,52,31,0,1,2,0.0,0,BB,,Complementary,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,36.44,1,1,Check-Out,2019-10-04 -City Hotel,0,33,2015,August,36,13,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,182.22,0,0,Check-Out,2018-08-03 -City Hotel,1,8,2017,May,20,9,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.55,0,0,Canceled,2020-03-03 -Resort Hotel,0,2,2016,August,37,26,2,3,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,1,No Deposit,252.0,179.0,0,Transient,122.86,1,0,Check-Out,2019-09-03 -Resort Hotel,1,25,2017,July,31,5,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,240.0,179.0,0,Transient,121.27,0,0,Canceled,2019-11-03 -City Hotel,1,94,2016,June,33,13,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.69,0,2,Canceled,2019-03-04 -City Hotel,1,313,2015,August,38,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,18,Transient,46.68,0,0,Canceled,2018-08-03 -City Hotel,1,236,2016,July,20,6,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.47,0,0,Canceled,2018-08-03 -City Hotel,1,11,2016,October,43,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,72.42,0,0,Canceled,2019-09-03 -City Hotel,0,57,2016,October,45,17,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,186.21,0,2,Check-Out,2019-09-03 -Resort Hotel,0,302,2015,October,44,9,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Contract,62.52,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,August,36,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,19.0,179.0,0,Transient,3.01,1,0,Check-Out,2018-07-03 -City Hotel,0,15,2015,October,43,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,86.0,179.0,0,Contract,85.54,0,1,Check-Out,2017-12-03 -City Hotel,0,95,2017,April,18,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,197.0,0,Transient-Party,82.9,0,0,Check-Out,2020-05-03 -Resort Hotel,0,85,2015,December,53,27,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.15,0,0,Check-Out,2018-05-03 -Resort Hotel,0,1,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,87.0,0,Transient,42.38,1,0,Check-Out,2019-10-04 -Resort Hotel,0,31,2017,March,17,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,67.6,0,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,March,10,13,1,1,2,0.0,0,BB,CHN,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,75.58,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2016,September,44,8,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,62.54,0,0,Check-Out,2019-09-03 -City Hotel,1,409,2017,May,21,27,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,70.45,0,0,Canceled,2018-01-03 -City Hotel,1,0,2016,December,50,13,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,237.0,0,Transient,0.87,0,0,Canceled,2019-09-03 -Resort Hotel,0,48,2015,August,37,11,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Contract,100.13,0,1,Check-Out,2018-06-02 -City Hotel,1,247,2016,July,26,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,64.05,0,0,Canceled,2018-06-02 -Resort Hotel,0,43,2015,July,29,6,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,112.74,0,2,Check-Out,2018-06-02 -Resort Hotel,0,17,2017,February,7,30,2,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,225.0,0,Transient,35.54,0,0,Check-Out,2020-02-01 -City Hotel,1,96,2016,July,32,16,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,113.72,0,1,Canceled,2019-02-01 -City Hotel,0,2,2017,May,23,20,0,1,1,0.0,0,BB,ESP,Aviation,Corporate,1,0,1,A,A,0,No Deposit,16.0,157.0,0,Transient-Party,3.38,0,0,Check-Out,2020-04-02 -City Hotel,0,137,2016,June,26,27,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,175.73,0,3,Check-Out,2019-05-04 -City Hotel,1,283,2017,June,36,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,144.85,0,0,Canceled,2019-05-04 -City Hotel,0,50,2015,November,53,5,1,1,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,87.4,0,3,Check-Out,2018-08-03 -City Hotel,1,266,2016,June,43,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,41,Transient,63.3,0,0,Canceled,2017-11-02 -City Hotel,0,2,2015,December,49,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,45.0,0,Transient-Party,93.99,0,0,Check-Out,2019-10-04 -Resort Hotel,1,20,2016,March,9,28,1,0,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,45.16,0,0,Canceled,2018-12-03 -City Hotel,0,3,2016,September,44,28,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.73,0,0,Check-Out,2019-06-03 -City Hotel,1,0,2016,April,23,21,0,1,1,0.0,0,BB,,Aviation,Corporate,1,0,0,A,A,0,No Deposit,14.0,173.0,0,Transient,99.08,0,0,Canceled,2019-04-03 -Resort Hotel,1,50,2016,June,31,31,3,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,91.97,0,0,Canceled,2019-06-03 -City Hotel,1,250,2016,June,26,2,2,5,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,81.23,0,0,Canceled,2019-02-01 -City Hotel,0,82,2016,August,36,19,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.98,0,3,Check-Out,2019-06-03 -City Hotel,0,37,2016,August,30,19,0,3,2,1.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,173.68,0,3,Check-Out,2019-06-03 -City Hotel,0,1,2016,December,49,12,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,11.0,179.0,0,Transient,64.66,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,March,11,13,2,0,1,0.0,0,BB,GBR,Complementary,Direct,1,0,0,D,F,0,No Deposit,14.0,331.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,March,17,20,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,113.63,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2015,October,45,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,16.0,259.0,0,Transient-Party,25.54,0,0,Check-Out,2018-09-02 -City Hotel,1,155,2017,March,12,11,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,75,Transient,72.63,0,0,Canceled,2019-10-04 -Resort Hotel,0,15,2016,May,22,9,1,1,1,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,186.0,179.0,0,Transient-Party,84.67,0,0,Check-Out,2019-04-03 -City Hotel,0,275,2016,October,42,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,127.26,0,0,Check-Out,2019-08-04 -City Hotel,0,12,2017,May,18,28,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,118.13,1,1,Check-Out,2020-02-01 -Resort Hotel,0,41,2016,March,15,29,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,331.0,0,Transient-Party,59.25,0,0,Check-Out,2019-03-04 -Resort Hotel,0,281,2016,August,26,7,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient-Party,62.8,1,1,Check-Out,2020-03-03 -Resort Hotel,1,358,2017,May,22,10,3,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,77.38,0,2,Canceled,2020-02-01 -City Hotel,0,37,2017,June,24,13,0,1,1,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,89.89,0,0,Check-Out,2020-06-02 -City Hotel,0,172,2016,August,36,22,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,108.67,0,1,Check-Out,2019-04-03 -Resort Hotel,1,182,2016,April,17,24,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,122.21,0,2,Canceled,2019-02-01 -Resort Hotel,0,102,2017,March,18,24,1,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,32.0,179.0,0,Transient-Party,37.73,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,May,20,2,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,123.24,1,0,Check-Out,2019-06-03 -Resort Hotel,0,149,2016,October,49,28,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,86.35,0,1,Canceled,2019-09-03 -Resort Hotel,0,98,2016,April,9,24,2,5,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,79.0,179.0,0,Transient,87.85,0,0,Check-Out,2019-03-04 -City Hotel,0,111,2017,July,26,5,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,122.59,0,1,Check-Out,2020-06-02 -Resort Hotel,1,30,2017,February,12,5,0,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,292.0,179.0,0,Transient-Party,74.5,0,0,Canceled,2019-10-04 -Resort Hotel,0,231,2015,October,43,19,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Contract,31.18,0,0,Check-Out,2018-09-02 -City Hotel,1,328,2015,October,45,28,0,2,2,0.0,0,BB,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.23,0,0,Canceled,2018-08-03 -City Hotel,1,49,2016,June,24,4,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,303.0,179.0,0,Transient,52.13,0,0,Canceled,2019-03-04 -Resort Hotel,0,98,2017,June,21,12,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Contract,41.6,0,0,Canceled,2020-07-03 -City Hotel,1,234,2015,August,39,29,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.9,0,0,Canceled,2018-05-03 -City Hotel,0,15,2016,June,25,31,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.98,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,September,36,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,D,1,No Deposit,17.0,179.0,0,Transient,119.29,0,0,Check-Out,2018-05-03 -City Hotel,1,42,2016,June,27,10,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,78.8,0,0,Canceled,2018-12-03 -Resort Hotel,0,39,2017,June,26,24,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,64.87,0,2,Check-Out,2020-03-03 -City Hotel,0,8,2017,February,12,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,0,No Deposit,16.0,69.0,0,Transient,74.89,1,0,Check-Out,2020-02-01 -Resort Hotel,1,372,2016,October,44,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,80.17,0,0,Canceled,2019-09-03 -City Hotel,0,101,2017,May,9,6,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.8,0,3,Check-Out,2020-07-03 -City Hotel,0,11,2016,September,35,15,0,2,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,139.33,0,2,Check-Out,2019-04-03 -Resort Hotel,1,8,2017,March,12,25,1,1,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,1,Non Refund,82.0,222.0,0,Transient-Party,41.01,0,0,Canceled,2020-04-02 -Resort Hotel,1,99,2015,December,50,5,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,244.0,179.0,0,Transient,63.48,0,2,Canceled,2019-10-04 -City Hotel,1,35,2017,February,11,2,0,2,1,0.0,0,BB,PRT,Groups,Corporate,1,0,1,A,A,0,Non Refund,15.0,179.0,0,Transient,91.79,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2016,April,36,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,235.0,0,Transient,36.91,0,0,Check-Out,2019-03-04 -Resort Hotel,0,13,2017,February,10,21,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,36.03,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2017,January,4,5,0,2,3,0.0,0,BB,BEL,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,12.0,79.0,0,Transient,110.04,0,0,Check-Out,2019-10-04 -City Hotel,0,13,2016,January,3,30,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.07,0,2,Check-Out,2019-11-03 -City Hotel,1,45,2017,February,9,24,1,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,60.87,0,0,Canceled,2019-12-04 -Resort Hotel,0,2,2016,October,43,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,2,No Deposit,100.0,179.0,0,Transient,36.01,0,0,Check-Out,2019-04-03 -City Hotel,0,15,2015,October,53,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,66.09,0,0,Check-Out,2018-08-03 -City Hotel,0,193,2016,November,45,29,2,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,91.24,0,2,Check-Out,2019-09-03 -City Hotel,0,24,2017,May,22,6,0,1,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,144.54,0,1,Check-Out,2020-05-03 -Resort Hotel,1,0,2017,January,3,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,89.0,0,Transient,33.75,0,0,Canceled,2019-11-03 -Resort Hotel,1,1,2015,December,52,5,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,28.43,0,0,Canceled,2018-11-02 -Resort Hotel,1,61,2015,December,48,16,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,358.0,179.0,0,Transient,43.79,0,0,Canceled,2018-12-03 -City Hotel,0,16,2015,October,48,29,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,14.0,179.0,0,Transient-Party,59.43,0,0,Check-Out,2018-09-02 -City Hotel,0,90,2016,July,32,28,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.94,0,3,Check-Out,2020-05-03 -City Hotel,0,151,2016,June,24,15,0,2,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,126.03,0,0,Check-Out,2019-02-01 -City Hotel,1,98,2017,April,18,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,118.9,0,2,Canceled,2019-12-04 -City Hotel,0,50,2017,July,28,20,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,1,No Deposit,16.0,74.0,0,Transient,252.0,0,3,Check-Out,2020-02-01 -City Hotel,0,40,2016,April,17,21,2,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,118.68,0,1,Check-Out,2019-11-03 -City Hotel,0,98,2017,April,17,31,1,3,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,324.0,179.0,0,Transient-Party,129.3,0,0,Check-Out,2020-03-03 -City Hotel,0,140,2017,January,21,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,78.84,0,1,Check-Out,2020-04-02 -City Hotel,0,98,2016,October,27,17,1,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.45,0,1,Check-Out,2019-03-04 -City Hotel,0,4,2017,January,4,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,331.0,0,Transient,57.68,0,0,Check-Out,2019-09-03 -Resort Hotel,0,13,2016,July,27,13,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,176.09,0,0,Check-Out,2019-06-03 -City Hotel,0,5,2016,October,45,14,0,3,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,90.33,0,0,No-Show,2019-07-04 -City Hotel,0,2,2016,December,43,13,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-12-04 -Resort Hotel,0,105,2016,December,49,7,1,3,1,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient-Party,124.26,0,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2017,May,35,27,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-12-04 -Resort Hotel,0,19,2016,June,27,29,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,15.0,179.0,0,Transient-Party,195.06,1,0,Check-Out,2019-06-03 -Resort Hotel,1,26,2016,March,12,25,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,61.21,0,2,Canceled,2019-04-03 -City Hotel,1,16,2017,June,15,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,B,0,Non Refund,11.0,68.0,0,Transient,123.14,0,1,Canceled,2020-01-04 -City Hotel,1,17,2016,September,51,22,0,3,1,0.0,0,BB,BEL,Corporate,Corporate,1,0,0,A,D,0,No Deposit,13.0,68.0,0,Transient,111.14,0,0,Canceled,2019-08-04 -City Hotel,0,0,2017,December,5,28,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.67,0,2,Canceled,2019-09-03 -Resort Hotel,1,0,2016,March,10,10,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,30.32,0,0,No-Show,2019-02-01 -Resort Hotel,1,94,2015,November,52,30,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,39.53,0,0,Canceled,2018-12-03 -City Hotel,0,8,2017,May,22,13,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,86.79,0,0,Check-Out,2020-03-03 -City Hotel,0,8,2017,June,22,30,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.12,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,April,37,2,0,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,252.0,179.0,0,Transient,196.26,1,0,Check-Out,2020-06-02 -City Hotel,0,241,2016,July,33,16,0,5,2,0.0,0,HB,DEU,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.68,0,1,Check-Out,2019-05-04 -Resort Hotel,0,200,2016,September,43,18,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,133.36,0,1,Check-Out,2019-06-03 -City Hotel,0,14,2016,September,35,5,0,3,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.36,0,1,Check-Out,2018-12-03 -City Hotel,0,142,2016,June,32,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,159.0,179.0,0,Transient,130.57,0,0,Check-Out,2019-06-03 -Resort Hotel,0,285,2016,December,45,28,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,239.0,179.0,0,Transient,124.87,1,0,Check-Out,2019-08-04 -City Hotel,1,42,2016,June,26,7,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,156.91,0,1,Canceled,2019-05-04 -City Hotel,1,203,2016,October,44,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.1,0,0,Canceled,2018-08-03 -Resort Hotel,1,35,2016,July,38,22,2,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,155.4,0,1,Canceled,2019-05-04 -City Hotel,0,22,2015,August,37,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,71.63,0,2,Check-Out,2018-08-03 -City Hotel,0,11,2015,December,53,5,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,75.47,0,1,Check-Out,2018-12-03 -Resort Hotel,0,42,2016,May,24,28,2,0,2,0.0,0,BB,GBR,Complementary,Direct,0,0,0,C,C,3,No Deposit,250.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-10-04 -City Hotel,0,8,2016,December,51,29,0,4,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.97,0,0,Check-Out,2019-11-03 -City Hotel,0,259,2016,June,21,22,0,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,66.33,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,August,37,20,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,14.0,179.0,0,Transient,60.82,0,0,Canceled,2018-06-02 -Resort Hotel,0,31,2016,December,42,20,0,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,I,1,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -Resort Hotel,1,169,2017,February,10,18,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Transient,79.51,0,0,Canceled,2019-11-03 -Resort Hotel,1,168,2017,August,33,25,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient,206.83,0,3,Canceled,2020-06-02 -City Hotel,0,117,2017,April,15,16,2,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,117.06,0,0,Check-Out,2020-03-03 -City Hotel,1,96,2016,December,53,15,2,5,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,8.0,179.0,0,Transient,195.5,0,3,Canceled,2019-03-04 -Resort Hotel,0,113,2016,June,34,13,4,5,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,H,0,No Deposit,17.0,179.0,0,Transient,159.9,0,0,Check-Out,2019-08-04 -Resort Hotel,1,11,2017,February,11,16,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,20.0,225.0,0,Transient,83.83,0,0,Canceled,2019-12-04 -City Hotel,0,0,2017,November,32,20,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,98.43,0,1,Check-Out,2019-11-03 -Resort Hotel,0,9,2017,July,26,23,0,3,2,0.0,0,BB,USA,Direct,Corporate,0,0,0,E,E,0,No Deposit,186.0,179.0,0,Transient,158.84,1,0,Check-Out,2020-02-01 -City Hotel,0,3,2015,July,33,23,0,1,1,0.0,0,BB,BEL,Direct,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,62.25,0,0,Check-Out,2018-06-02 -Resort Hotel,0,53,2017,February,9,31,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,79.34,0,0,Check-Out,2018-11-02 -City Hotel,1,51,2017,April,17,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,10.0,179.0,0,Transient,83.77,0,0,Canceled,2020-01-04 -City Hotel,0,0,2016,February,11,21,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,71.0,0,Transient,61.03,0,0,Canceled,2019-02-01 -City Hotel,0,2,2016,October,44,15,0,2,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,F,1,No Deposit,13.0,179.0,0,Transient-Party,96.25,0,3,Check-Out,2019-09-03 -Resort Hotel,0,41,2015,October,43,26,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,150.29,1,2,Check-Out,2018-09-02 -City Hotel,1,101,2016,May,43,19,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Transient,70.03,0,0,Canceled,2019-03-04 -Resort Hotel,0,16,2015,October,43,21,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,96.85,1,2,Check-Out,2018-08-03 -Resort Hotel,0,93,2017,March,10,15,2,5,2,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,117.76,0,0,Check-Out,2020-02-01 -City Hotel,0,110,2015,July,33,17,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,120.96,0,0,Check-Out,2018-05-03 -Resort Hotel,0,97,2017,June,26,16,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,378.0,179.0,0,Transient,101.34,0,2,Check-Out,2020-02-01 -City Hotel,1,196,2016,May,16,28,1,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,80.93,0,0,Check-Out,2019-02-01 -Resort Hotel,0,37,2015,September,42,28,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,236.0,179.0,0,Transient-Party,71.5,1,1,Check-Out,2018-05-03 -City Hotel,1,434,2016,November,45,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.46,0,0,Canceled,2018-10-03 -City Hotel,0,186,2016,August,38,6,2,3,2,1.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,126.39,0,1,Check-Out,2019-07-04 -Resort Hotel,0,14,2015,December,51,22,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,64.42,0,0,Check-Out,2019-10-04 -City Hotel,1,55,2017,August,25,20,0,5,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,171.4,0,0,Canceled,2020-06-02 -City Hotel,1,293,2017,March,2,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,75.34,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2016,June,29,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,59.65,1,0,Check-Out,2019-03-04 -Resort Hotel,0,101,2017,July,32,27,2,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,121.93,0,1,Check-Out,2020-06-02 -Resort Hotel,0,56,2016,February,9,15,0,2,2,0.0,0,HB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,116.49,0,1,Check-Out,2019-03-04 -Resort Hotel,1,78,2016,June,20,22,3,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,64.04,0,0,No-Show,2019-06-03 -Resort Hotel,0,57,2015,December,53,10,0,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,70.3,0,0,Check-Out,2017-11-02 -Resort Hotel,1,242,2015,September,38,21,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,48.01,0,0,Canceled,2017-12-03 -City Hotel,0,0,2017,February,11,10,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-12-04 -City Hotel,0,35,2016,October,45,6,2,4,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,6.0,179.0,0,Transient,85.55,0,1,Check-Out,2019-11-03 -City Hotel,0,85,2016,May,16,17,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,152.7,0,2,Check-Out,2019-02-01 -Resort Hotel,0,219,2017,May,23,15,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,40.63,0,0,Check-Out,2020-03-03 -City Hotel,1,19,2016,January,4,27,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.16,0,2,No-Show,2018-11-02 -City Hotel,1,197,2017,June,33,16,0,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,144.36,0,1,Canceled,2020-05-03 -City Hotel,1,0,2016,April,21,21,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,K,1,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,2018-11-02 -City Hotel,1,206,2016,October,43,13,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,62.23,0,0,Canceled,2019-08-04 -City Hotel,0,54,2016,March,10,24,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,88.57,0,2,Check-Out,2019-03-04 -City Hotel,1,254,2015,July,31,17,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,65.28,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2016,March,11,14,0,1,1,0.0,0,HB,PRT,Direct,Direct,1,0,1,E,I,2,No Deposit,19.0,223.0,75,Transient-Party,148.61,1,1,Check-Out,2020-01-04 -City Hotel,1,176,2016,September,44,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,40,Transient,74.5,0,0,Canceled,2018-09-02 -City Hotel,1,195,2016,August,33,2,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,106.74,0,2,Canceled,2018-05-03 -Resort Hotel,1,305,2017,December,36,17,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,62.96,0,0,Canceled,2018-08-03 -Resort Hotel,0,40,2017,May,27,6,0,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,89.91,0,0,Check-Out,2020-04-02 -City Hotel,1,96,2016,June,27,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,142.19,0,0,Canceled,2019-01-03 -Resort Hotel,0,12,2015,December,51,11,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,48.99,0,1,Check-Out,2018-08-03 -City Hotel,1,38,2017,August,38,28,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,235.0,179.0,0,Transient,207.17,1,2,Canceled,2020-06-02 -Resort Hotel,0,165,2017,August,27,29,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,30.0,179.0,0,Transient,248.89,0,0,Check-Out,2020-06-02 -Resort Hotel,1,271,2016,June,21,22,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,20,Transient-Party,80.16,0,0,Canceled,2019-02-01 -City Hotel,0,48,2016,May,27,20,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,39.0,179.0,0,Transient,67.9,0,0,Check-Out,2019-08-04 -Resort Hotel,1,0,2017,January,2,12,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,Non Refund,14.0,73.0,0,Transient,36.41,0,0,Canceled,2019-12-04 -Resort Hotel,1,54,2016,March,17,20,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,36.05,0,0,Canceled,2019-11-03 -Resort Hotel,0,149,2017,March,10,28,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,246.0,264.0,0,Transient,43.72,0,0,Check-Out,2020-03-03 -City Hotel,0,37,2017,January,4,22,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,97.78,0,1,Canceled,2019-10-04 -City Hotel,0,0,2016,May,21,11,2,0,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,69.31,0,1,Check-Out,2020-01-04 -Resort Hotel,0,22,2017,April,17,29,2,5,3,2.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,213.92,1,3,Check-Out,2019-11-03 -Resort Hotel,0,15,2016,March,12,22,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,44.57,0,0,Check-Out,2019-03-04 -City Hotel,0,411,2015,October,46,28,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,103.0,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2015,October,44,10,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,118.71,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,May,19,4,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,242.0,179.0,0,Transient,41.9,0,0,Check-Out,2020-02-01 -City Hotel,0,271,2016,December,23,9,0,3,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,94.58,0,0,Check-Out,2019-04-03 -Resort Hotel,0,168,2016,March,24,31,1,3,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,87.36,0,0,Check-Out,2019-03-04 -City Hotel,0,293,2015,September,41,22,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Contract,116.59,0,0,Check-Out,2018-08-03 -City Hotel,1,397,2016,February,9,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,16,Transient,71.55,0,0,Canceled,2018-11-02 -Resort Hotel,0,58,2016,March,18,27,0,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,238.0,179.0,0,Transient,143.03,0,2,Check-Out,2018-12-03 -City Hotel,1,50,2017,February,11,27,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,71.68,0,0,Canceled,2019-11-03 -Resort Hotel,0,249,2017,March,12,30,0,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,93.06,1,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,December,51,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,331.0,0,Transient,39.5,0,0,Check-Out,2019-11-03 -Resort Hotel,0,136,2017,June,25,31,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,62.25,0,0,Check-Out,2020-03-03 -Resort Hotel,1,36,2016,April,8,3,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,149.94,0,0,Canceled,2019-04-03 -Resort Hotel,0,58,2016,February,9,20,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,33.1,0,0,Check-Out,2018-12-03 -City Hotel,0,40,2015,July,34,17,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,10.0,179.0,0,Group,155.95,0,3,Check-Out,2018-08-03 -City Hotel,1,28,2016,August,37,13,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.55,0,1,Canceled,2019-03-04 -City Hotel,0,0,2016,September,25,15,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.85,0,2,Check-Out,2019-11-03 -Resort Hotel,0,13,2016,February,12,29,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,77.59,0,0,Check-Out,2019-01-03 -City Hotel,0,186,2016,October,27,2,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,101.83,0,0,Check-Out,2019-07-04 -City Hotel,0,84,2016,December,43,3,2,1,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.98,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,March,8,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,38.31,0,0,Check-Out,2019-03-04 -Resort Hotel,1,100,2015,December,53,21,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,41.56,0,0,Canceled,2018-12-03 -City Hotel,1,113,2017,May,37,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,140.38,0,0,Canceled,2019-11-03 -Resort Hotel,0,92,2017,April,12,28,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,110.66,1,0,Check-Out,2020-03-03 -City Hotel,0,34,2015,September,41,21,0,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,119.83,0,0,Check-Out,2019-04-03 -City Hotel,0,19,2016,January,33,29,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,123.04,0,2,Check-Out,2018-12-03 -City Hotel,0,145,2016,November,51,24,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,3,No Deposit,10.0,179.0,0,Transient,116.26,0,3,Check-Out,2019-09-03 -City Hotel,0,63,2017,March,16,22,2,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,7.0,179.0,0,Transient,158.72,0,2,Check-Out,2020-05-03 -City Hotel,1,20,2016,April,18,28,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.34,0,1,Canceled,2019-03-04 -City Hotel,1,50,2015,December,50,11,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,120.14,0,0,Canceled,2017-11-02 -Resort Hotel,0,16,2017,January,4,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,75.32,1,1,Check-Out,2019-10-04 -City Hotel,0,34,2015,August,33,9,1,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-07-03 -Resort Hotel,0,206,2016,November,22,24,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,310.0,179.0,0,Transient,71.62,0,0,Check-Out,2019-08-04 -Resort Hotel,0,146,2016,March,17,31,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,81.18,0,0,Check-Out,2019-03-04 -City Hotel,1,2,2016,June,26,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,62.92,0,0,Canceled,2019-07-04 -City Hotel,0,18,2016,December,23,5,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,154.52,0,1,Check-Out,2019-05-04 -City Hotel,0,47,2017,March,18,27,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,125.58,0,2,Check-Out,2020-04-02 -City Hotel,0,4,2016,February,11,4,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,D,0,No Deposit,143.0,179.0,0,Group,75.63,0,0,Check-Out,2019-02-01 -Resort Hotel,0,4,2015,December,52,11,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,47.71,0,0,Check-Out,2018-11-02 -City Hotel,0,137,2017,June,27,20,1,3,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,194.0,0,Transient,149.81,0,1,Check-Out,2020-03-03 -City Hotel,0,193,2016,August,34,20,2,2,2,1.0,0,HB,,Direct,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-07-04 -City Hotel,0,8,2015,October,45,5,2,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Transient-Party,88.79,0,0,Check-Out,2018-08-03 -Resort Hotel,0,27,2016,May,37,11,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,61.72,0,0,Check-Out,2019-05-04 -City Hotel,1,3,2016,January,9,6,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.76,0,0,Canceled,2018-11-02 -Resort Hotel,0,14,2016,April,17,10,0,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,E,1,No Deposit,207.0,179.0,0,Transient,39.03,0,0,Canceled,2019-03-04 -City Hotel,0,154,2017,May,20,21,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,130.53,0,1,Check-Out,2020-04-02 -City Hotel,0,248,2016,September,44,19,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,128.23,0,2,Check-Out,2019-08-04 -Resort Hotel,0,123,2017,June,26,9,2,5,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,61.11,1,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,July,37,24,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,17.0,179.0,0,Transient,247.45,1,0,Check-Out,2018-06-02 -City Hotel,0,20,2016,October,46,24,0,2,1,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.04,0,0,Check-Out,2019-06-03 -Resort Hotel,0,97,2016,June,18,26,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,108.64,0,1,Check-Out,2019-02-01 -City Hotel,0,163,2016,June,27,31,1,2,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,98.05,0,1,Check-Out,2019-06-03 -Resort Hotel,1,4,2017,March,15,14,0,3,3,0.0,0,BB,NLD,Groups,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,41.26,1,1,Canceled,2020-04-02 -City Hotel,0,61,2017,December,49,9,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,C,0,No Deposit,198.0,179.0,0,Transient,1.34,0,0,Check-Out,2019-11-03 -Resort Hotel,0,23,2016,December,52,23,2,1,2,2.0,0,BB,AUT,Groups,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient-Party,70.32,0,0,Check-Out,2019-11-03 -City Hotel,1,48,2017,February,9,21,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,98.13,0,0,Canceled,2019-11-03 -City Hotel,1,45,2016,November,51,2,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,116.07,0,0,Canceled,2019-10-04 -City Hotel,0,264,2017,June,37,30,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.59,0,1,Check-Out,2020-06-02 -Resort Hotel,1,0,2016,July,32,15,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,196.39,0,1,Canceled,2019-05-04 -Resort Hotel,1,173,2017,May,21,2,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,243.0,179.0,0,Transient,117.95,0,2,Check-Out,2020-04-02 -City Hotel,1,248,2016,October,44,28,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,1,0,A,F,0,Non Refund,10.0,179.0,0,Transient,95.06,0,0,Canceled,2019-09-03 -City Hotel,1,306,2016,October,43,14,2,3,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,254.0,179.0,0,Transient-Party,97.83,0,0,Canceled,2017-11-02 -City Hotel,0,3,2016,July,28,27,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.28,0,0,Check-Out,2019-02-01 -City Hotel,1,54,2016,August,35,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,89.92,0,0,Canceled,2018-08-03 -City Hotel,0,0,2015,October,46,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,238.0,0,Transient-Party,39.39,0,0,Check-Out,2018-08-03 -City Hotel,0,101,2016,March,17,30,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,98.83,1,2,Check-Out,2019-02-01 -City Hotel,0,360,2015,September,35,21,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,71.37,0,0,Check-Out,2018-06-02 -City Hotel,0,15,2015,August,34,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,124.92,0,0,Check-Out,2018-08-03 -City Hotel,0,252,2017,January,4,31,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,143.57,0,1,Check-Out,2020-01-04 -City Hotel,0,64,2016,June,50,27,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,106.91,0,0,Check-Out,2019-06-03 -City Hotel,1,37,2017,March,21,28,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.22,0,0,Canceled,2019-11-03 -Resort Hotel,0,392,2016,February,9,13,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,318.0,179.0,0,Transient,60.9,0,0,Check-Out,2018-12-03 -City Hotel,0,17,2017,March,11,2,0,1,3,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,124.91,0,1,Check-Out,2020-03-03 -City Hotel,0,87,2015,July,36,28,2,2,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,102.74,0,0,Check-Out,2018-06-02 -City Hotel,0,266,2016,June,22,29,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,100.98,0,3,Check-Out,2019-08-04 -Resort Hotel,0,23,2015,August,34,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,249.0,179.0,0,Transient,64.65,1,2,Check-Out,2018-06-02 -Resort Hotel,1,255,2015,August,38,22,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,1,0,D,E,0,No Deposit,238.0,179.0,0,Transient,208.12,0,1,Canceled,2018-05-03 -City Hotel,1,67,2015,December,45,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.43,0,0,Canceled,2018-10-03 -City Hotel,1,20,2017,May,23,21,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,122.07,0,1,Canceled,2020-03-03 -City Hotel,1,12,2017,February,9,21,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,199.88,0,1,Canceled,2019-11-03 -City Hotel,0,239,2017,June,20,5,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.87,0,0,Check-Out,2020-02-01 -City Hotel,1,29,2016,August,37,2,2,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,76.4,0,1,Canceled,2019-05-04 -Resort Hotel,0,22,2017,May,22,20,2,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,C,0,No Deposit,251.0,179.0,0,Transient,123.73,0,2,Check-Out,2020-02-01 -City Hotel,0,39,2016,September,44,20,1,0,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Transient-Party,70.09,0,0,Check-Out,2019-06-03 -Resort Hotel,0,30,2015,November,36,21,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,81.77,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,February,9,27,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,86.0,0,Transient,69.97,0,0,Check-Out,2020-04-02 -Resort Hotel,0,104,2015,September,35,30,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,73.57,1,2,Check-Out,2018-06-02 -City Hotel,1,85,2017,March,10,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,67.04,0,0,Canceled,2020-02-01 -City Hotel,1,104,2016,July,33,20,2,3,2,0.0,0,BB,CHE,Direct,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,124.89,0,1,Canceled,2019-05-04 -City Hotel,1,263,2016,April,15,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,124.14,0,1,Canceled,2019-01-03 -City Hotel,1,36,2016,April,15,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,0,A,E,0,Non Refund,27.0,179.0,0,Transient,61.59,0,0,Canceled,2019-02-01 -City Hotel,0,91,2017,April,22,25,1,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,80.49,0,0,Check-Out,2020-01-04 -City Hotel,0,100,2016,July,25,10,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,121.49,0,0,Check-Out,2019-02-01 -Resort Hotel,1,182,2017,May,21,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient,61.56,0,3,Canceled,2020-03-03 -City Hotel,0,153,2016,October,41,16,4,3,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,74.0,179.0,0,Transient-Party,97.21,0,2,Check-Out,2019-06-03 -Resort Hotel,0,42,2016,October,44,9,0,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,189.13,0,2,Check-Out,2019-06-03 -Resort Hotel,0,18,2017,July,33,29,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,141.32,0,2,Check-Out,2020-06-02 -City Hotel,0,1,2015,October,45,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,41.5,0,0,Check-Out,2018-06-02 -City Hotel,0,52,2016,May,17,24,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient-Party,86.23,1,0,Check-Out,2019-11-03 -City Hotel,0,13,2016,October,45,13,0,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,73.3,0,0,Check-Out,2019-08-04 -Resort Hotel,1,3,2016,May,45,27,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-08-04 -Resort Hotel,1,232,2015,August,37,13,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,192.75,0,1,Canceled,2018-05-03 -City Hotel,0,35,2017,March,18,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,H,0,Non Refund,178.0,179.0,0,Transient-Party,96.65,0,0,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,March,10,17,2,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,93.0,179.0,0,Group,36.15,0,1,Check-Out,2020-02-01 -City Hotel,0,27,2015,October,44,28,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.65,0,2,Check-Out,2018-09-02 -City Hotel,0,36,2016,May,24,27,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient,63.05,0,0,Check-Out,2019-06-03 -City Hotel,0,102,2016,May,44,9,1,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,121.2,0,0,Check-Out,2019-06-03 -Resort Hotel,0,38,2017,August,35,18,0,5,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,135.41,1,0,Check-Out,2018-06-02 -Resort Hotel,0,111,2017,May,20,9,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,132.85,0,2,Check-Out,2020-03-03 -Resort Hotel,0,73,2015,October,41,27,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,241.0,179.0,0,Transient-Party,72.78,1,0,Check-Out,2019-09-03 -City Hotel,0,35,2016,August,36,31,2,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,180.77,0,1,Check-Out,2019-09-03 -Resort Hotel,1,21,2017,April,17,6,2,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,238.0,179.0,0,Transient,43.17,0,0,Canceled,2020-03-03 -City Hotel,1,2,2017,March,8,15,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,63.05,0,0,Canceled,2019-11-03 -City Hotel,0,104,2017,March,18,24,1,1,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,127.09,0,0,Check-Out,2020-04-02 -City Hotel,1,265,2017,May,22,6,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,42.54,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,October,44,21,0,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,162.56,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2016,March,17,27,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.77,0,1,Check-Out,2019-04-03 -Resort Hotel,0,8,2015,July,44,17,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient-Party,100.74,0,3,Check-Out,2018-06-02 -City Hotel,0,15,2017,June,23,2,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,101.12,0,1,Check-Out,2020-03-03 -Resort Hotel,0,25,2016,April,16,16,0,1,1,0.0,0,BB,NLD,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,63.58,0,0,Check-Out,2020-01-04 -City Hotel,0,36,2016,April,9,9,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.57,0,2,Check-Out,2018-12-03 -City Hotel,1,49,2016,July,27,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,122.09,0,0,Canceled,2020-06-02 -Resort Hotel,0,92,2016,September,44,31,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,64.33,0,0,Check-Out,2019-10-04 -Resort Hotel,1,307,2017,August,39,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,181.59,0,1,Canceled,2020-07-03 -City Hotel,0,152,2016,September,37,10,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,10.0,179.0,0,Transient,119.21,0,2,Check-Out,2019-06-03 -City Hotel,0,241,2016,November,43,23,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,73.03,0,0,Check-Out,2018-09-02 -City Hotel,0,243,2015,October,42,24,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,106.49,0,1,Check-Out,2018-09-02 -City Hotel,0,99,2016,November,49,2,1,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,56.77,0,0,Check-Out,2019-09-03 -City Hotel,0,47,2016,December,44,5,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,69.99,0,1,Check-Out,2018-08-03 -Resort Hotel,1,0,2016,January,13,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,59.35,0,0,Canceled,2018-09-02 -Resort Hotel,0,145,2016,August,33,31,0,5,2,0.0,0,HB,AUT,Online TA,TA/TO,1,0,1,A,I,1,No Deposit,244.0,179.0,0,Transient-Party,43.13,1,1,Check-Out,2019-04-03 -Resort Hotel,0,18,2017,May,22,24,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,E,I,0,No Deposit,7.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2020-01-04 -City Hotel,1,46,2017,June,26,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,285.0,179.0,0,Transient,147.06,0,0,Canceled,2020-03-03 -City Hotel,0,248,2017,May,24,30,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient-Party,120.19,0,0,Check-Out,2020-06-02 -Resort Hotel,1,67,2015,July,37,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,249.0,179.0,0,Transient,32.5,0,1,Canceled,2018-11-02 -Resort Hotel,0,194,2015,September,43,21,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,268.0,179.0,0,Transient-Party,63.53,0,0,Check-Out,2018-09-02 -City Hotel,1,14,2016,September,49,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,20,Transient,76.54,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,May,25,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Transient,160.3,1,0,Check-Out,2019-04-03 -City Hotel,0,2,2016,February,10,9,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,113.34,0,2,Check-Out,2018-11-02 -Resort Hotel,0,107,2017,July,30,14,3,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,36.0,179.0,0,Transient,235.79,0,1,Check-Out,2020-06-02 -City Hotel,0,38,2016,October,50,24,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.04,0,2,Canceled,2019-03-04 -City Hotel,1,6,2015,August,39,4,0,1,1,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,62.35,0,0,Canceled,2018-07-03 -Resort Hotel,0,35,2017,May,19,25,2,5,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,K,1,No Deposit,73.0,179.0,0,Transient-Party,123.55,0,1,Check-Out,2020-03-03 -City Hotel,0,3,2015,October,47,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,57.6,0,0,Check-Out,2018-09-02 -City Hotel,1,366,2016,April,18,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.46,0,0,Canceled,2019-02-01 -Resort Hotel,0,85,2016,September,17,9,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,137.0,179.0,0,Contract,61.99,0,2,Check-Out,2019-06-03 -Resort Hotel,0,314,2017,January,44,29,2,2,2,0.0,0,BB,GBR,Direct,TA/TO,1,0,1,D,D,0,No Deposit,247.0,179.0,0,Contract,60.34,0,1,Check-Out,2019-12-04 -City Hotel,1,24,2017,February,9,30,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Canceled,2020-01-04 -Resort Hotel,0,141,2016,June,28,31,3,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,72.72,0,1,Check-Out,2019-03-04 -City Hotel,0,16,2016,July,33,6,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,120.05,0,2,Check-Out,2019-06-03 -City Hotel,1,51,2016,July,33,17,2,7,3,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,301.0,179.0,0,Transient,160.61,0,2,Canceled,2020-03-03 -Resort Hotel,0,107,2017,August,25,21,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,November,42,2,0,1,2,0.0,0,HB,PRT,Complementary,Direct,1,0,1,A,I,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-07-04 -Resort Hotel,0,7,2015,November,49,10,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,16.0,225.0,0,Transient-Party,42.87,0,2,Check-Out,2018-08-03 -City Hotel,0,272,2017,June,28,31,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.42,0,1,Check-Out,2020-07-03 -City Hotel,0,42,2016,April,16,5,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,76.92,0,0,Check-Out,2019-03-04 -City Hotel,0,31,2017,April,17,25,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient-Party,132.41,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,March,17,5,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,121.27,0,0,Check-Out,2019-12-04 -City Hotel,1,14,2016,December,49,24,0,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,114.66,0,0,Canceled,2019-10-04 -City Hotel,0,40,2016,October,44,9,2,7,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,104.81,0,2,Check-Out,2019-08-04 -City Hotel,0,22,2015,August,34,9,2,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,235.24,0,0,Check-Out,2018-06-02 -City Hotel,0,38,2016,May,45,31,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.39,0,0,Check-Out,2019-03-04 -City Hotel,0,43,2017,May,20,8,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,66.46,0,0,Check-Out,2020-02-01 -Resort Hotel,0,13,2016,July,32,5,1,4,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,139.17,0,0,Check-Out,2019-05-04 -Resort Hotel,0,171,2016,April,16,10,2,5,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,D,D,2,Refundable,15.0,220.0,75,Transient,81.82,0,0,Check-Out,2019-02-01 -City Hotel,0,92,2016,July,16,21,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,137.0,179.0,0,Transient,93.61,0,0,Check-Out,2019-01-03 -Resort Hotel,0,29,2017,April,17,12,2,5,1,0.0,0,HB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,81.87,0,0,Check-Out,2019-11-03 -Resort Hotel,0,44,2017,February,10,14,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-03-03 -Resort Hotel,0,16,2016,February,12,6,2,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,77.4,1,0,Check-Out,2019-10-04 -City Hotel,0,29,2017,April,21,29,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.67,0,0,Check-Out,2020-02-01 -City Hotel,0,4,2017,February,10,5,2,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,153.71,0,1,Check-Out,2020-04-02 -City Hotel,0,2,2016,August,36,17,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.99,0,1,Check-Out,2019-08-04 -City Hotel,0,1,2016,November,4,18,1,0,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,202.0,179.0,0,Transient,60.07,0,0,Check-Out,2019-10-04 -Resort Hotel,0,253,2016,November,44,28,1,4,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,114.86,0,2,Check-Out,2019-08-04 -Resort Hotel,0,10,2016,March,18,31,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,16.0,222.0,0,Transient,47.13,0,0,Check-Out,2018-12-03 -City Hotel,0,4,2017,May,21,9,0,1,2,0.0,0,BB,,Complementary,Corporate,0,0,0,B,F,0,No Deposit,13.0,179.0,0,Transient,134.71,0,1,Check-Out,2020-03-03 -Resort Hotel,0,149,2017,March,22,31,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,0,Refundable,12.0,222.0,0,Transient-Party,99.14,0,0,Check-Out,2020-03-03 -Resort Hotel,0,104,2017,July,28,10,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,39.21,0,0,Check-Out,2020-04-02 -Resort Hotel,0,9,2017,February,10,25,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,Non Refund,14.0,331.0,0,Transient-Party,36.87,0,0,Check-Out,2020-01-04 -City Hotel,0,38,2017,May,22,17,0,1,1,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.49,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2015,December,53,30,2,7,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,D,2,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,87,2016,October,43,27,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,60.93,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2015,October,46,10,0,1,1,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,A,1,No Deposit,12.0,331.0,0,Transient-Party,31.69,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2017,January,2,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,13.0,80.0,0,Transient,38.05,0,2,Check-Out,2019-11-03 -Resort Hotel,0,41,2016,July,33,29,0,1,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,124.21,0,3,Check-Out,2018-05-03 -Resort Hotel,0,0,2017,January,10,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,185.68,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,April,15,10,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,149.82,0,1,Check-Out,2019-06-03 -Resort Hotel,0,15,2016,August,37,30,2,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,162.28,0,0,Check-Out,2019-05-04 -City Hotel,1,340,2016,September,45,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.09,0,0,Canceled,2018-08-03 -City Hotel,1,264,2016,November,50,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,73.56,0,0,Canceled,2019-09-03 -City Hotel,1,263,2016,November,51,29,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,71.03,0,0,Canceled,2019-10-04 -Resort Hotel,0,17,2016,April,17,13,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,73.07,0,2,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,June,17,4,0,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,87.7,0,0,Check-Out,2019-02-01 -Resort Hotel,0,197,2016,August,33,6,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,G,2,No Deposit,175.0,179.0,0,Transient,104.45,0,0,Check-Out,2019-07-04 -City Hotel,0,40,2017,April,17,9,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.21,0,1,Check-Out,2019-12-04 -City Hotel,0,12,2017,May,23,24,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.35,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2017,January,3,9,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.61,0,1,Check-Out,2019-10-04 -City Hotel,1,247,2016,August,38,19,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,179.45,0,1,Canceled,2019-06-03 -City Hotel,1,102,2015,December,44,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.64,0,0,Canceled,2018-08-03 -City Hotel,0,20,2017,June,25,6,0,1,2,0.0,0,SC,PRT,Offline TA/TO,Corporate,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.0,0,1,Check-Out,2020-06-02 -Resort Hotel,0,276,2016,March,22,26,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,33.0,223.0,0,Transient-Party,104.95,0,0,Check-Out,2020-03-03 -City Hotel,1,142,2016,March,11,10,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,79.07,0,0,Canceled,2019-02-01 -Resort Hotel,1,12,2015,July,39,28,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,59.31,0,0,Canceled,2018-06-02 -City Hotel,0,13,2017,July,32,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,121.53,0,1,Check-Out,2020-05-03 -City Hotel,0,384,2016,December,50,28,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,92.89,0,1,Check-Out,2019-11-03 -Resort Hotel,0,249,2016,July,27,7,2,7,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-04-03 -City Hotel,0,246,2017,May,21,6,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,102.7,0,0,Check-Out,2020-05-03 -Resort Hotel,0,21,2016,July,29,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,117.1,0,0,Check-Out,2019-04-03 -City Hotel,0,1,2016,December,50,28,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,77.11,0,0,Check-Out,2018-11-02 -City Hotel,1,8,2015,July,36,21,2,4,3,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,10.0,179.0,0,Transient,206.8,0,2,Canceled,2018-05-03 -City Hotel,0,7,2016,April,17,13,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,85.85,0,2,Check-Out,2019-02-01 -City Hotel,1,110,2016,June,28,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.62,0,0,Canceled,2019-05-04 -City Hotel,1,0,2016,February,9,13,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.32,0,0,Canceled,2019-03-04 -Resort Hotel,0,145,2016,August,35,23,3,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,121.55,0,0,Check-Out,2020-06-02 -City Hotel,1,58,2016,February,3,24,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,111.84,0,3,Canceled,2018-11-02 -City Hotel,0,159,2016,November,44,6,0,7,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,69.92,0,3,Check-Out,2019-09-03 -City Hotel,0,8,2017,June,29,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,40.0,45.0,0,Transient-Party,82.44,0,0,Check-Out,2020-04-02 -City Hotel,1,160,2017,February,10,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,31.0,179.0,0,Transient,62.23,0,0,Canceled,2019-11-03 -City Hotel,1,34,2016,October,18,14,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.87,0,0,Canceled,2019-03-04 -City Hotel,1,49,2017,May,22,4,0,1,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,144.88,0,0,Canceled,2020-04-02 -Resort Hotel,0,26,2015,August,39,31,1,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,210.61,0,0,Check-Out,2018-06-02 -City Hotel,1,202,2016,June,18,23,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,77.15,0,0,Canceled,2018-11-02 -City Hotel,0,47,2016,February,10,24,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,204.25,0,0,Check-Out,2019-05-04 -Resort Hotel,0,100,2017,February,21,25,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,220.55,0,2,Check-Out,2020-03-03 -Resort Hotel,0,12,2016,July,38,5,4,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,187.21,0,0,Check-Out,2019-06-03 -City Hotel,0,75,2016,October,49,23,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.91,0,0,Check-Out,2019-05-04 -Resort Hotel,0,65,2016,August,36,14,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,245.0,179.0,0,Transient,94.87,0,0,Check-Out,2019-07-04 -City Hotel,1,56,2017,July,33,9,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,F,0,No Deposit,13.0,179.0,0,Transient,121.53,0,0,Canceled,2020-07-03 -Resort Hotel,0,34,2016,December,53,28,1,5,2,2.0,0,BB,POL,Direct,Direct,0,0,0,G,G,2,No Deposit,250.0,179.0,0,Transient,125.78,1,0,Check-Out,2019-11-03 -City Hotel,1,149,2017,May,22,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,2,Non Refund,75.0,179.0,0,Transient,112.99,0,0,Canceled,2020-03-03 -City Hotel,0,25,2017,February,12,30,2,1,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,73.96,0,0,Check-Out,2019-09-03 -City Hotel,1,19,2015,September,44,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,90.17,0,0,Canceled,2018-08-03 -Resort Hotel,1,2,2017,July,32,9,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,0,No Deposit,252.0,179.0,0,Transient,247.66,0,1,No-Show,2019-12-04 -City Hotel,0,8,2017,December,39,16,0,1,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,116.53,0,3,Check-Out,2019-12-04 -Resort Hotel,0,157,2016,March,10,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,74.66,0,0,Check-Out,2020-03-03 -City Hotel,1,9,2017,November,9,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,26.0,179.0,0,Group,69.98,0,1,Canceled,2019-10-04 -City Hotel,1,0,2016,September,43,13,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.34,0,0,Canceled,2018-08-03 -City Hotel,1,104,2016,September,30,30,2,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,233.85,0,0,Canceled,2019-08-04 -City Hotel,1,166,2016,January,3,2,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,97.07,0,0,Canceled,2019-11-03 -City Hotel,0,44,2017,January,8,2,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,72.64,0,3,Check-Out,2019-09-03 -City Hotel,0,50,2016,April,17,28,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,240.29,0,0,Check-Out,2019-06-03 -City Hotel,0,44,2016,March,22,20,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,59.6,0,0,Check-Out,2019-03-04 -City Hotel,1,88,2016,March,15,16,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.13,0,0,Canceled,2019-02-01 -City Hotel,1,29,2016,December,45,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,57.04,0,0,Check-Out,2019-08-04 -Resort Hotel,0,31,2016,March,9,16,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,71.39,1,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,February,10,21,0,1,3,0.0,0,BB,POL,Complementary,Direct,1,0,0,H,K,0,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-03-03 -Resort Hotel,0,212,2016,September,32,12,0,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,135.39,0,1,Check-Out,2018-09-02 -Resort Hotel,0,43,2016,November,43,21,0,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient-Party,38.81,0,0,Check-Out,2019-12-04 -City Hotel,0,36,2017,February,10,28,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,8.0,179.0,0,Transient-Party,69.24,1,1,Check-Out,2019-12-04 -City Hotel,1,12,2016,September,44,28,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.51,0,0,Canceled,2019-09-03 -City Hotel,1,138,2016,September,45,30,0,1,1,0.0,0,BB,IRL,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,67.9,0,0,Canceled,2019-05-04 -Resort Hotel,0,43,2015,October,51,20,2,2,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,42.5,0,0,Check-Out,2018-06-02 -City Hotel,1,7,2016,March,17,29,2,1,1,0.0,0,Undefined,ESP,Corporate,Corporate,0,0,0,B,A,1,Non Refund,186.0,179.0,0,Transient-Party,77.93,0,0,Canceled,2019-02-01 -Resort Hotel,0,130,2015,July,35,10,3,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,305.0,179.0,0,Transient,108.08,0,3,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,February,11,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,118.54,1,0,Check-Out,2018-10-03 -City Hotel,0,148,2016,January,3,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Contract,66.94,0,0,Check-Out,2018-12-03 -City Hotel,1,8,2016,July,33,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,111.71,0,0,Canceled,2018-12-03 -City Hotel,1,17,2017,January,3,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.7,0,0,Canceled,2019-12-04 -City Hotel,0,295,2017,May,20,2,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,8.0,179.0,0,Transient-Party,226.56,0,0,Check-Out,2020-03-03 -Resort Hotel,0,15,2017,March,11,25,1,1,2,0.0,0,BB,CN,Groups,Corporate,1,0,0,A,A,0,No Deposit,296.0,223.0,0,Transient-Party,29.32,0,0,Check-Out,2019-12-04 -City Hotel,1,93,2015,December,49,6,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,103.24,0,0,Canceled,2017-11-02 -Resort Hotel,1,28,2015,December,43,13,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,15.0,179.0,0,Transient,78.6,0,0,Canceled,2018-11-02 -Resort Hotel,0,2,2015,August,35,9,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,79.65,0,1,Check-Out,2018-06-02 -City Hotel,1,296,2016,May,23,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.52,0,0,Canceled,2018-12-03 -City Hotel,1,43,2016,October,50,5,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,1.43,0,1,Canceled,2018-12-03 -City Hotel,0,92,2017,July,37,27,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,74.53,0,1,Check-Out,2020-07-03 -Resort Hotel,0,23,2017,June,27,31,0,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,C,1,No Deposit,313.0,179.0,0,Transient-Party,131.49,0,1,Check-Out,2020-07-03 -Resort Hotel,1,145,2016,November,51,1,2,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,57.78,0,0,Canceled,2019-08-04 -City Hotel,1,110,2016,March,16,13,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,83.71,0,0,Canceled,2018-10-03 -Resort Hotel,1,245,2016,July,38,30,3,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,151.6,0,2,Canceled,2019-07-04 -City Hotel,1,265,2017,August,23,25,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,145.24,0,0,Canceled,2019-11-03 -City Hotel,1,49,2015,July,30,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,61.15,0,0,Canceled,2018-11-02 -Resort Hotel,0,44,2016,January,5,10,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,65.81,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,May,22,27,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,C,H,0,No Deposit,247.0,179.0,0,Transient,110.41,0,0,Check-Out,2019-03-04 -City Hotel,0,108,2017,June,26,13,0,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,294.0,179.0,0,Transient-Party,84.38,0,0,Check-Out,2020-06-02 -City Hotel,0,278,2017,May,26,5,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,20.0,179.0,0,Transient,110.09,0,2,Check-Out,2020-06-02 -City Hotel,1,91,2016,September,37,22,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,1,0,1,D,D,0,No Deposit,13.0,45.0,0,Transient,103.72,0,2,Canceled,2019-06-03 -City Hotel,1,339,2017,May,20,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,94.97,0,0,Canceled,2019-03-04 -City Hotel,1,257,2017,August,31,28,0,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.05,0,0,Canceled,2020-07-03 -Resort Hotel,0,17,2017,February,10,28,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,G,0,No Deposit,16.0,179.0,0,Transient,62.36,0,2,Check-Out,2020-01-04 -Resort Hotel,0,10,2017,July,23,5,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,123.31,1,2,Check-Out,2020-06-02 -Resort Hotel,0,50,2016,November,42,16,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,75.7,0,2,Check-Out,2019-06-03 -Resort Hotel,0,31,2015,December,53,5,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,241.0,179.0,0,Transient,53.48,0,1,Check-Out,2018-11-02 -City Hotel,0,82,2017,April,18,28,2,1,2,0.0,0,BB,ISR,Complementary,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,224.73,0,2,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,October,44,27,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,118.47,0,0,Check-Out,2018-09-02 -City Hotel,0,7,2015,June,33,6,0,2,1,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient,60.33,0,0,Check-Out,2018-06-02 -Resort Hotel,1,259,2017,June,33,29,3,6,3,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,171.41,0,2,Canceled,2020-03-03 -City Hotel,0,258,2015,February,11,13,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,150.0,179.0,0,Contract,62.5,0,0,Check-Out,2017-11-02 -City Hotel,0,16,2016,October,22,23,2,0,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,192.45,0,0,Check-Out,2019-05-04 -City Hotel,0,115,2017,May,22,28,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,127.18,0,0,Check-Out,2020-03-03 -City Hotel,1,48,2017,June,20,24,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,153.12,0,3,Canceled,2019-11-03 -City Hotel,0,97,2015,August,33,3,0,5,1,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,220.05,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,July,36,21,0,1,2,2.0,0,BB,,Direct,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,110.41,1,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,June,22,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,71.54,1,1,Check-Out,2019-07-04 -City Hotel,0,285,2015,September,36,16,1,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,36.51,0,0,Check-Out,2017-10-03 -City Hotel,1,57,2016,September,36,30,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.14,0,2,Canceled,2019-06-03 -City Hotel,0,0,2017,May,22,13,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,2,No Deposit,15.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-03-03 -City Hotel,0,2,2017,July,25,5,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,125.43,0,1,Check-Out,2020-06-02 -Resort Hotel,1,93,2015,December,50,6,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,60.26,1,0,Canceled,2018-08-03 -Resort Hotel,0,217,2016,August,34,21,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,234.72,0,1,Check-Out,2020-03-03 -Resort Hotel,0,13,2016,June,26,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,45.0,231.0,0,Transient,70.57,0,0,Check-Out,2020-01-04 -City Hotel,0,112,2017,June,24,15,1,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,96.74,0,2,Check-Out,2020-04-02 -City Hotel,0,33,2017,July,21,6,2,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,114.47,0,1,Check-Out,2020-02-01 -City Hotel,0,2,2017,August,34,27,0,1,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,126.94,0,2,Check-Out,2020-06-02 -City Hotel,0,96,2016,March,9,24,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,93.31,0,0,Check-Out,2019-03-04 -City Hotel,1,1,2017,June,32,23,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,1,A,A,0,No Deposit,3.0,45.0,0,Transient,93.52,0,0,Canceled,2019-11-03 -Resort Hotel,0,40,2017,June,23,5,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,248.0,179.0,0,Transient,136.66,1,0,Check-Out,2020-03-03 -City Hotel,0,18,2017,January,3,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.1,0,1,Check-Out,2019-10-04 -City Hotel,1,34,2016,July,34,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,90.91,0,1,No-Show,2019-12-04 -City Hotel,0,2,2017,May,21,15,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,H,F,0,No Deposit,16.0,179.0,0,Transient,128.49,0,2,Check-Out,2020-02-01 -City Hotel,0,3,2016,March,9,13,2,0,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,135.0,179.0,0,Transient,77.23,0,0,Check-Out,2019-03-04 -Resort Hotel,0,49,2015,December,52,5,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,347.0,179.0,0,Transient-Party,64.02,0,0,Check-Out,2018-07-03 -Resort Hotel,0,15,2017,July,24,19,0,6,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,245.18,1,0,Check-Out,2020-05-03 -Resort Hotel,0,202,2016,October,46,29,0,2,1,0.0,0,HB,ISR,Groups,Direct,0,0,0,A,A,1,No Deposit,282.0,179.0,0,Transient-Party,68.71,0,1,Check-Out,2019-08-04 -City Hotel,1,84,2017,July,20,13,0,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,258.0,179.0,0,Transient-Party,79.43,0,0,Canceled,2020-04-02 -City Hotel,1,104,2017,June,38,24,0,1,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.98,0,0,Canceled,2019-12-04 -City Hotel,1,401,2015,September,33,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.08,0,0,Canceled,2018-01-03 -City Hotel,0,39,2016,May,19,5,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.8,0,1,Check-Out,2019-02-01 -City Hotel,0,14,2016,January,4,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,45.0,0,Group,60.91,0,1,Check-Out,2019-08-04 -City Hotel,0,151,2017,August,36,14,0,2,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,224.57,0,1,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,August,31,15,1,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,161.54,1,0,Check-Out,2020-06-02 -Resort Hotel,1,22,2016,July,31,2,2,5,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,71.22,0,1,No-Show,2019-08-04 -Resort Hotel,0,152,2016,July,30,18,4,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,197.0,179.0,0,Transient,134.9,0,0,Check-Out,2019-07-04 -City Hotel,1,310,2016,May,22,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,69.41,0,0,Canceled,2019-11-03 -Resort Hotel,0,54,2015,December,49,9,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient,62.45,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2015,January,37,9,0,2,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,105.45,0,1,Check-Out,2018-09-02 -City Hotel,0,1,2017,April,17,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.53,0,0,Check-Out,2020-04-02 -City Hotel,0,19,2015,January,50,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-11-02 -Resort Hotel,0,3,2015,December,51,30,1,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient-Party,47.07,0,0,Check-Out,2018-07-03 -Resort Hotel,0,232,2016,September,42,20,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,100.03,0,0,Check-Out,2019-05-04 -City Hotel,0,234,2015,October,43,23,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,63,Contract,71.49,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,April,23,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,36.7,0,0,Check-Out,2019-04-03 -City Hotel,1,50,2016,August,38,28,2,4,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,201.03,0,2,Canceled,2019-05-04 -City Hotel,1,15,2017,February,17,7,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,107.05,0,2,Canceled,2020-04-02 -Resort Hotel,0,55,2017,July,36,31,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,46.95,0,0,Canceled,2020-06-02 -City Hotel,0,10,2017,June,24,4,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,1,No Deposit,12.0,179.0,0,Transient,4.4,0,1,Check-Out,2020-01-04 -City Hotel,0,1,2017,January,3,16,1,0,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.35,0,1,Check-Out,2019-12-04 -City Hotel,1,346,2016,September,49,2,0,3,2,0.0,0,SC,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,157.0,179.0,0,Transient,78.69,0,2,Canceled,2019-08-04 -City Hotel,0,53,2016,December,5,27,0,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,278.0,179.0,0,Transient-Party,33.67,0,0,Check-Out,2018-11-02 -City Hotel,0,203,2017,August,37,20,1,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,115.18,0,0,Check-Out,2020-07-03 -Resort Hotel,1,242,2017,August,38,22,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,197.15,1,3,Canceled,2020-02-01 -City Hotel,1,3,2015,December,51,14,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,109.66,0,0,Canceled,2018-08-03 -City Hotel,0,26,2015,September,34,11,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,61,Transient-Party,61.39,0,0,Check-Out,2018-08-03 -Resort Hotel,0,158,2017,March,17,9,0,5,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,203.52,1,2,Canceled,2020-04-02 -City Hotel,0,35,2017,February,22,25,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,63.09,0,0,Check-Out,2020-05-03 -City Hotel,1,0,2015,August,36,21,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,69.96,0,0,No-Show,2018-06-02 -City Hotel,0,240,2017,June,26,8,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2020-04-02 -City Hotel,1,160,2017,May,22,24,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,78.89,0,0,Canceled,2020-06-02 -City Hotel,1,0,2016,February,11,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,64.74,0,0,Canceled,2019-10-04 -City Hotel,1,40,2016,December,51,9,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.17,0,0,Canceled,2019-10-04 -City Hotel,0,51,2017,June,34,17,2,4,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,224.76,0,3,Check-Out,2020-07-03 -Resort Hotel,0,49,2017,April,17,28,0,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,174.0,179.0,0,Transient-Party,62.29,0,0,Check-Out,2019-07-04 -City Hotel,0,95,2017,July,32,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,126.08,1,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,August,37,7,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,152.74,0,1,Check-Out,2019-10-04 -City Hotel,0,227,2015,September,42,6,1,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,90.36,0,0,Check-Out,2017-11-02 -Resort Hotel,0,27,2017,June,27,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,81.62,0,0,Check-Out,2020-04-02 -Resort Hotel,0,41,2016,July,31,28,1,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,131.32,0,3,Check-Out,2019-07-04 -City Hotel,0,2,2016,October,43,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,219.0,0,Transient,74.48,0,0,Check-Out,2018-09-02 -City Hotel,0,45,2017,April,16,25,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.86,0,2,Check-Out,2020-05-03 -City Hotel,1,153,2016,June,26,20,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,42,Transient,99.57,0,0,Canceled,2019-04-03 -City Hotel,0,16,2016,July,30,31,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.76,0,1,Check-Out,2019-04-03 -City Hotel,1,182,2016,September,43,3,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Group,66.76,0,1,Canceled,2019-08-04 -City Hotel,1,12,2016,March,10,15,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,10.0,179.0,0,Transient,79.03,0,0,Canceled,2018-11-02 -Resort Hotel,0,152,2016,June,25,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,91.17,0,1,Check-Out,2019-06-03 -City Hotel,1,313,2016,October,45,16,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,142.13,0,0,Canceled,2019-06-03 -Resort Hotel,0,0,2016,October,42,9,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,123.55,0,1,Check-Out,2019-07-04 -Resort Hotel,0,8,2016,May,20,6,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,35.53,1,0,Check-Out,2019-03-04 -City Hotel,1,44,2017,March,25,11,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.74,1,0,Canceled,2020-05-03 -Resort Hotel,0,12,2017,March,11,5,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,E,E,2,No Deposit,9.0,179.0,0,Transient,75.0,0,0,Check-Out,2019-11-03 -City Hotel,1,21,2016,June,42,27,1,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,94.51,0,0,Canceled,2019-03-04 -City Hotel,1,269,2016,May,22,26,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,64.82,0,0,Canceled,2019-02-01 -City Hotel,0,35,2015,December,51,7,0,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,81.02,0,1,Check-Out,2019-11-03 -Resort Hotel,0,45,2017,January,3,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,81.12,1,1,Check-Out,2019-10-04 -Resort Hotel,0,192,2016,September,37,9,0,2,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,G,A,0,No Deposit,15.0,179.0,0,Transient,128.36,0,0,Check-Out,2019-04-03 -City Hotel,1,44,2016,October,46,15,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,126.16,0,0,Canceled,2019-08-04 -City Hotel,1,98,2017,May,24,16,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,203.81,0,0,Canceled,2020-04-02 -City Hotel,1,29,2017,August,37,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,146.64,0,0,Canceled,2019-09-03 -Resort Hotel,0,37,2017,April,14,27,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient-Party,91.06,0,0,Check-Out,2020-07-03 -City Hotel,0,6,2015,September,45,25,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Contract,108.57,0,0,Check-Out,2018-09-02 -City Hotel,1,282,2015,October,43,17,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Contract,75.78,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2015,November,49,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,13.0,254.0,0,Transient,41.26,0,0,Check-Out,2018-06-02 -City Hotel,0,40,2016,March,15,25,1,5,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.5,0,0,Check-Out,2019-03-04 -City Hotel,0,17,2017,December,4,5,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.09,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,March,11,25,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,1,No Deposit,84.0,179.0,0,Group,39.24,0,1,Check-Out,2020-02-01 -City Hotel,0,32,2015,August,37,21,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,11.0,179.0,0,Transient-Party,169.74,0,0,Check-Out,2020-05-03 -City Hotel,1,116,2017,February,7,17,2,3,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,207.51,0,0,Check-Out,2019-11-03 -Resort Hotel,0,105,2017,May,27,27,2,3,1,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,252.0,179.0,0,Transient,115.57,1,1,Check-Out,2020-02-01 -Resort Hotel,1,268,2017,March,21,27,2,7,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,184.93,1,0,Canceled,2019-11-03 -Resort Hotel,1,14,2016,June,30,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,9.0,179.0,0,Transient,170.04,0,1,No-Show,2019-03-04 -City Hotel,1,4,2016,August,50,9,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,5.36,0,1,Canceled,2019-12-04 -City Hotel,1,349,2016,April,17,29,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.7,0,0,Canceled,2019-04-03 -City Hotel,0,29,2016,December,23,21,0,2,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,117.7,1,0,Check-Out,2019-06-03 -Resort Hotel,0,290,2017,July,32,18,2,5,3,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,245.0,179.0,0,Transient,252.0,0,1,Canceled,2020-06-02 -Resort Hotel,0,4,2016,March,11,4,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,223.0,75,Transient-Party,59.42,1,0,Check-Out,2018-11-02 -City Hotel,0,28,2016,January,4,28,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,149.73,0,0,Check-Out,2018-11-02 -City Hotel,1,2,2015,September,44,15,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Contract,38.68,0,0,Canceled,2018-09-02 -Resort Hotel,0,30,2015,September,45,26,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,104.97,0,1,Canceled,2018-06-02 -City Hotel,1,35,2016,February,10,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,27.0,179.0,0,Transient,60.65,0,0,Canceled,2019-02-01 -Resort Hotel,0,283,2017,July,34,30,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,247.0,179.0,0,Transient,207.04,1,0,Check-Out,2020-07-03 -City Hotel,0,41,2016,January,11,5,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,69.22,0,1,Check-Out,2018-12-03 -City Hotel,1,11,2016,June,25,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,137.0,179.0,0,Transient,60.27,0,0,No-Show,2019-03-04 -City Hotel,1,370,2015,July,37,20,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,117.66,0,0,Canceled,2018-06-02 -City Hotel,1,163,2017,March,11,28,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,276.0,179.0,0,Transient,126.92,0,0,Canceled,2019-09-03 -City Hotel,1,0,2016,February,10,31,0,1,2,0.0,0,BB,AUT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,92.37,0,0,Check-Out,2018-11-02 -City Hotel,1,31,2017,April,17,18,2,5,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,75.78,0,0,Canceled,2020-03-03 -City Hotel,0,283,2016,June,23,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,42,Transient,119.35,1,0,Check-Out,2019-01-03 -City Hotel,1,40,2017,February,8,26,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.02,0,0,Canceled,2019-11-03 -City Hotel,1,16,2015,September,43,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,117.76,0,0,Canceled,2018-08-03 -City Hotel,1,0,2015,July,34,6,1,1,2,0.0,0,BB,FRA,Online TA,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2018-07-03 -City Hotel,0,7,2016,July,32,22,0,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,79.42,0,1,Check-Out,2019-05-04 -City Hotel,0,145,2017,February,11,15,2,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,71.82,0,2,Check-Out,2020-04-02 -City Hotel,1,20,2017,June,24,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,175.92,0,0,Canceled,2020-02-01 -City Hotel,0,93,2015,February,11,13,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,61.86,0,0,Check-Out,2018-12-03 -Resort Hotel,0,54,2016,October,45,23,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,106.0,179.0,0,Transient-Party,60.74,0,0,Check-Out,2019-09-03 -Resort Hotel,0,2,2015,October,45,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,38.55,0,0,Check-Out,2018-08-03 -Resort Hotel,0,87,2017,June,30,9,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,182.7,0,0,Check-Out,2020-06-02 -City Hotel,0,21,2017,February,11,9,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,3,No Deposit,9.0,179.0,0,Transient,175.25,0,0,Check-Out,2020-06-02 -City Hotel,0,194,2016,July,26,24,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,22.0,179.0,0,Transient-Party,103.87,0,0,Check-Out,2019-04-03 -City Hotel,1,267,2016,May,24,12,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,E,E,2,No Deposit,167.0,179.0,0,Transient-Party,223.15,0,0,Check-Out,2019-03-04 -Resort Hotel,0,247,2015,November,44,5,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,D,D,0,No Deposit,35.0,179.0,0,Contract,95.7,0,0,Check-Out,2018-08-03 -City Hotel,0,162,2017,August,34,30,2,4,1,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,165.0,179.0,0,Transient,128.18,0,1,Check-Out,2020-07-03 -Resort Hotel,1,19,2016,December,51,25,1,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,185.0,179.0,0,Transient,94.68,0,0,Canceled,2019-11-03 -Resort Hotel,0,234,2016,August,39,22,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-05-04 -City Hotel,0,3,2016,February,10,14,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.9,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2016,March,9,6,1,1,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,113.94,0,1,Check-Out,2019-08-04 -Resort Hotel,0,23,2016,February,10,18,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient,70.02,1,0,Check-Out,2019-01-03 -City Hotel,0,1,2017,February,8,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,90.0,84.0,0,Transient,123.96,0,0,Check-Out,2020-01-04 -City Hotel,0,64,2016,October,44,12,3,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,90.6,0,0,Check-Out,2019-05-04 -City Hotel,1,242,2017,June,28,21,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,8.0,179.0,0,Transient,156.39,0,1,Canceled,2020-03-03 -Resort Hotel,0,246,2016,July,31,5,2,0,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,E,1,No Deposit,79.0,179.0,0,Transient,80.01,0,0,Check-Out,2019-07-04 -Resort Hotel,0,3,2015,October,44,13,0,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,38.89,0,0,Check-Out,2019-05-04 -City Hotel,1,233,2016,September,45,31,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,108.81,0,1,Canceled,2019-09-03 -Resort Hotel,0,50,2016,December,51,17,2,2,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,289.0,179.0,0,Transient-Party,83.84,1,0,Check-Out,2019-11-03 -City Hotel,1,11,2017,March,10,30,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.82,0,1,Check-Out,2020-03-03 -City Hotel,1,162,2015,September,36,4,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,82.98,0,0,Canceled,2018-01-03 -Resort Hotel,0,2,2016,October,18,6,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,38.47,1,0,Check-Out,2019-02-01 -City Hotel,1,132,2016,June,25,1,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,122.15,0,0,No-Show,2019-03-04 -City Hotel,1,157,2016,August,39,14,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,A,0,No Deposit,7.0,179.0,0,Transient,140.5,0,0,Canceled,2018-11-02 -Resort Hotel,0,194,2017,August,36,30,2,0,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,69.53,0,0,Check-Out,2020-05-03 -City Hotel,0,1,2017,May,16,25,1,1,1,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,121.44,1,0,Check-Out,2020-02-01 -City Hotel,1,0,2016,May,19,20,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,F,D,0,No Deposit,15.0,179.0,0,Transient,94.23,0,3,Canceled,2019-02-01 -City Hotel,0,48,2016,September,35,20,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,147.31,0,1,Check-Out,2019-06-03 -City Hotel,1,256,2017,April,12,29,1,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.98,0,0,Canceled,2019-10-04 -City Hotel,1,371,2016,September,36,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,61.57,0,0,Canceled,2018-08-03 -Resort Hotel,0,63,2015,July,31,28,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,No Deposit,245.0,179.0,0,Transient,34.87,0,1,Check-Out,2018-06-02 -City Hotel,0,45,2017,April,17,21,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,103.05,0,0,Check-Out,2020-02-01 -City Hotel,1,387,2015,September,46,2,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.89,0,0,Canceled,2018-01-03 -City Hotel,1,48,2017,March,17,23,2,2,3,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,146.7,0,0,Canceled,2020-03-03 -City Hotel,1,246,2017,June,36,21,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,121.4,0,0,Canceled,2019-07-04 -Resort Hotel,1,245,2016,October,41,9,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Contract,44.08,0,0,Canceled,2019-07-04 -City Hotel,1,242,2016,June,25,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.15,0,0,Canceled,2018-10-03 -City Hotel,0,236,2016,May,22,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,89.0,179.0,0,Transient,74.6,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,August,43,8,0,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,199.34,1,0,Check-Out,2019-09-03 -Resort Hotel,0,12,2017,April,18,10,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,I,0,No Deposit,237.0,179.0,0,Transient,64.48,0,1,Check-Out,2020-01-04 -Resort Hotel,0,157,2016,August,34,31,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.82,0,1,Check-Out,2019-06-03 -City Hotel,1,31,2016,October,44,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,73.74,0,0,Canceled,2019-02-01 -City Hotel,1,256,2015,October,43,20,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,58.62,0,0,Canceled,2018-07-03 -City Hotel,0,0,2015,October,46,16,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Contract,61.53,0,0,Check-Out,2018-09-02 -City Hotel,0,95,2015,December,51,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,331.0,0,Transient-Party,88.2,0,0,Check-Out,2019-11-03 -City Hotel,1,251,2017,September,37,6,1,2,2,0.0,0,SC,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,180.13,0,3,Canceled,2019-12-04 -City Hotel,0,41,2016,December,51,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient-Party,78.92,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2015,August,42,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,13.0,45.0,0,Transient-Party,43.17,0,0,Check-Out,2018-06-02 -Resort Hotel,0,149,2016,September,44,20,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Contract,124.31,0,1,Check-Out,2019-03-04 -Resort Hotel,0,433,2017,September,35,29,0,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Contract,39.21,0,2,Check-Out,2019-12-04 -Resort Hotel,0,0,2017,May,26,4,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,264.0,179.0,0,Transient,160.51,1,0,Check-Out,2020-04-02 -City Hotel,0,12,2016,November,36,25,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,222.0,0,Transient,118.48,0,0,Check-Out,2019-11-03 -Resort Hotel,1,54,2015,August,36,24,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient-Party,121.71,0,0,Canceled,2018-05-03 -City Hotel,0,109,2016,August,11,14,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,D,0,No Deposit,13.0,179.0,0,Transient,80.94,0,0,Canceled,2019-01-03 -City Hotel,0,292,2015,July,28,6,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,74.07,0,0,Check-Out,2017-11-02 -City Hotel,1,48,2017,March,12,2,1,2,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,108.75,0,1,Canceled,2020-02-01 -City Hotel,1,120,2016,December,53,26,0,3,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,5.0,179.0,0,Transient,86.85,0,1,Canceled,2019-08-04 -City Hotel,0,112,2015,December,53,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,63.34,0,1,Check-Out,2018-06-02 -City Hotel,0,118,2017,April,31,15,3,3,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,100.43,0,1,Check-Out,2020-04-02 -Resort Hotel,0,4,2017,January,12,28,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,1,1,D,D,0,No Deposit,248.0,179.0,0,Group,50.75,0,1,Check-Out,2020-02-01 -Resort Hotel,0,101,2017,June,24,28,4,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,65.03,1,3,Check-Out,2020-03-03 -Resort Hotel,0,227,2016,July,21,21,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,172.9,0,2,Check-Out,2019-06-03 -Resort Hotel,0,94,2016,April,16,10,0,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,65.79,0,0,Check-Out,2019-04-03 -City Hotel,1,41,2016,December,22,19,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,65.46,0,0,Canceled,2019-11-03 -City Hotel,0,36,2016,December,32,2,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,85.93,0,1,Check-Out,2019-01-03 -City Hotel,0,201,2017,June,11,6,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.8,0,3,Check-Out,2020-04-02 -Resort Hotel,0,18,2016,September,44,23,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,121.15,0,0,Check-Out,2019-11-03 -City Hotel,1,30,2017,June,20,15,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,17.0,179.0,0,Transient,88.31,0,0,Canceled,2020-02-01 -Resort Hotel,0,241,2016,October,43,6,4,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,75.0,179.0,0,Transient-Party,86.56,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,October,45,7,2,5,3,1.0,0,BB,USA,Online TA,Direct,0,0,0,H,H,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-08-04 -City Hotel,1,23,2016,January,3,20,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.27,0,0,No-Show,2019-03-04 -Resort Hotel,0,249,2015,August,30,9,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,D,2,No Deposit,14.0,179.0,0,Transient,80.48,0,2,Check-Out,2018-06-02 -City Hotel,1,2,2017,April,22,10,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,1.61,0,0,Canceled,2020-02-01 -City Hotel,0,315,2016,June,27,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,110.62,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2015,August,37,31,0,3,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,3,No Deposit,13.0,179.0,0,Transient,127.37,0,0,Check-Out,2019-05-04 -Resort Hotel,0,137,2016,June,26,2,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,79.0,179.0,0,Group,101.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,247,2017,August,38,17,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,221.85,0,2,Check-Out,2020-06-02 -Resort Hotel,0,2,2016,October,37,2,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,252.0,1,3,Check-Out,2019-09-03 -City Hotel,0,90,2015,December,50,6,0,7,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,45.0,0,Transient-Party,62.79,0,0,Check-Out,2018-06-02 -Resort Hotel,0,10,2016,August,21,12,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,84.78,1,2,Check-Out,2019-07-04 -City Hotel,1,118,2017,April,17,26,2,5,2,1.0,0,HB,RUS,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,104.41,0,2,Canceled,2020-02-01 -City Hotel,1,276,2017,July,31,16,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.76,0,2,Canceled,2020-06-02 -City Hotel,1,199,2016,July,44,16,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.54,0,3,Canceled,2019-12-04 -City Hotel,0,12,2016,August,40,21,0,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient,195.69,0,0,Check-Out,2019-07-04 -City Hotel,0,1,2015,August,28,17,0,2,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,61.51,0,0,Check-Out,2018-06-02 -City Hotel,1,17,2016,February,3,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,59.74,0,0,Canceled,2019-11-03 -City Hotel,1,34,2016,July,36,27,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,158.69,0,2,Canceled,2019-02-01 -Resort Hotel,1,34,2015,August,36,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.39,0,0,Canceled,2018-11-02 -Resort Hotel,0,56,2016,January,50,28,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,98.0,179.0,0,Transient-Party,61.77,0,0,Check-Out,2019-10-04 -City Hotel,0,90,2016,September,46,6,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,158.31,0,2,Check-Out,2019-09-03 -Resort Hotel,1,56,2017,July,33,25,2,5,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,3,No Deposit,18.0,179.0,0,Transient,227.17,0,0,Canceled,2020-06-02 -Resort Hotel,0,21,2017,May,21,30,1,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,143.93,1,2,Check-Out,2020-04-02 -Resort Hotel,0,48,2016,August,37,21,1,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,214.07,1,1,Check-Out,2019-08-04 -Resort Hotel,0,12,2015,December,50,25,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,57.82,0,0,Check-Out,2018-08-03 -Resort Hotel,0,39,2015,August,36,24,1,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Contract,159.67,0,0,Check-Out,2018-05-03 -City Hotel,0,53,2016,July,35,30,1,3,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,130.58,0,2,Check-Out,2019-06-03 -City Hotel,0,0,2017,June,23,16,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,226.0,0,Transient,81.34,1,0,Check-Out,2020-04-02 -Resort Hotel,0,4,2017,January,3,28,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient,73.47,0,0,Check-Out,2020-02-01 -City Hotel,1,392,2015,October,36,5,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,50.82,0,0,Canceled,2018-09-02 -City Hotel,1,6,2016,October,45,21,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,107.87,0,0,Canceled,2019-11-03 -Resort Hotel,0,15,2015,October,47,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,12.0,227.0,0,Transient-Party,22.96,0,0,Check-Out,2018-09-02 -Resort Hotel,0,46,2016,April,21,15,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,3,No Deposit,312.0,179.0,0,Transient-Party,147.26,0,0,Check-Out,2019-07-04 -Resort Hotel,0,135,2016,June,27,18,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,108.38,0,2,Check-Out,2019-05-04 -City Hotel,1,252,2015,October,44,27,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Contract,89.83,0,0,Canceled,2018-08-03 -City Hotel,1,36,2016,June,26,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,67.28,0,0,Canceled,2019-03-04 -Resort Hotel,0,254,2015,December,53,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,28.45,0,0,Check-Out,2018-07-03 -Resort Hotel,0,151,2017,August,33,24,0,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-07-03 -Resort Hotel,0,94,2015,November,42,21,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,39.0,179.0,0,Contract,71.87,0,0,Check-Out,2018-09-02 -City Hotel,0,38,2017,March,11,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,F,0,No Deposit,15.0,243.0,0,Transient-Party,62.67,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2017,March,9,16,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,1,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.54,0,1,Check-Out,2020-03-03 -Resort Hotel,0,107,2016,August,40,6,0,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,181.77,0,1,Check-Out,2019-05-04 -Resort Hotel,0,163,2016,December,51,28,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,39.57,0,1,Check-Out,2019-10-04 -City Hotel,0,308,2016,May,27,28,1,1,2,0.0,0,HB,DEU,Groups,Corporate,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,61.29,0,0,Check-Out,2019-03-04 -City Hotel,0,20,2017,February,11,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,85.05,0,0,Check-Out,2019-03-04 -City Hotel,0,16,2016,April,18,24,2,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,74.25,0,0,Check-Out,2019-04-03 -Resort Hotel,0,149,2016,July,43,3,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,241.0,179.0,0,Transient,214.18,1,1,Check-Out,2019-05-04 -City Hotel,1,85,2015,December,42,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,122.87,0,0,Canceled,2018-11-02 -Resort Hotel,0,262,2017,May,22,9,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,2,No Deposit,378.0,179.0,0,Transient-Party,78.12,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,May,21,19,1,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,118.4,0,0,Check-Out,2019-07-04 -City Hotel,1,34,2016,October,45,27,2,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,41,Transient,76.36,0,0,Canceled,2018-12-03 -City Hotel,1,58,2016,March,11,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,70.87,0,0,Canceled,2019-01-03 -City Hotel,0,198,2016,August,44,6,2,0,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,154.98,0,1,Check-Out,2019-08-04 -City Hotel,0,16,2016,June,27,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,2.12,0,0,Check-Out,2019-03-04 -City Hotel,1,194,2016,August,43,20,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,120.78,0,0,Canceled,2018-11-02 -City Hotel,1,0,2017,February,9,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,31.32,0,0,Canceled,2018-12-03 -Resort Hotel,0,7,2017,December,4,30,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,E,E,1,No Deposit,206.0,179.0,0,Transient,34.09,1,0,Check-Out,2019-11-03 -Resort Hotel,1,85,2015,December,52,22,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,81.79,0,0,Canceled,2018-10-03 -City Hotel,1,250,2015,September,34,6,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Contract,151.75,0,0,Canceled,2018-07-03 -Resort Hotel,0,1,2015,July,35,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,35.85,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2016,December,43,6,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,156.0,0,Transient,115.59,0,0,Check-Out,2019-12-04 -Resort Hotel,0,33,2015,December,51,10,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,80.08,1,0,Check-Out,2018-11-02 -City Hotel,0,17,2015,December,4,31,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,89.27,0,1,Check-Out,2019-10-04 -Resort Hotel,0,297,2016,October,42,21,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,101.51,1,1,Check-Out,2019-08-04 -Resort Hotel,0,103,2017,March,11,27,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,97.0,179.0,0,Transient-Party,69.04,0,0,Check-Out,2019-12-04 -Resort Hotel,0,163,2016,August,33,30,2,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,249.46,0,0,Check-Out,2019-04-03 -Resort Hotel,1,14,2016,January,10,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,175.0,179.0,0,Transient,95.67,0,0,Canceled,2019-09-03 -City Hotel,0,9,2016,June,34,24,2,1,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,24.0,179.0,0,Group,113.93,0,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2016,August,38,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,1,No Deposit,19.0,179.0,0,Transient,228.26,0,0,Check-Out,2019-02-01 -City Hotel,1,30,2016,March,16,16,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,72.0,179.0,0,Transient,69.87,0,0,Canceled,2019-02-01 -City Hotel,1,372,2016,March,10,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,87.0,179.0,23,Transient,63.03,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2015,November,53,9,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,43.0,0,0,Check-Out,2019-01-03 -City Hotel,0,50,2016,August,38,29,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,120.52,0,1,Check-Out,2019-07-04 -City Hotel,0,110,2017,June,32,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,80.41,0,1,Check-Out,2020-03-03 -City Hotel,0,57,2017,March,3,20,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,101.69,0,1,Check-Out,2019-12-04 -City Hotel,1,50,2017,March,10,10,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,56.89,0,0,Canceled,2019-01-03 -City Hotel,1,321,2017,May,22,27,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,135.25,0,0,Canceled,2020-04-02 -Resort Hotel,0,0,2016,October,43,28,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,30.0,0,1,Check-Out,2019-07-04 -Resort Hotel,0,2,2015,December,51,21,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,39.22,0,0,Check-Out,2018-10-03 -Resort Hotel,0,2,2016,October,46,21,1,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,77.0,0,Transient,72.2,0,0,Check-Out,2018-12-03 -City Hotel,0,150,2016,July,35,2,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,216.72,0,1,Check-Out,2018-05-03 -City Hotel,1,102,2017,June,26,28,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,27.0,179.0,0,Transient,152.02,0,0,Canceled,2020-02-01 -Resort Hotel,0,3,2017,August,35,6,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,126.83,0,0,Check-Out,2020-07-03 -Resort Hotel,0,2,2016,March,50,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,249.0,179.0,0,Transient,38.69,1,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,October,11,27,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,L,0,No Deposit,247.0,179.0,0,Transient,77.22,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2016,May,21,21,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,158.63,0,0,Check-Out,2019-01-03 -Resort Hotel,1,25,2016,January,37,24,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,G,G,0,No Deposit,240.0,179.0,0,Transient,47.01,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,February,9,29,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.56,0,1,Check-Out,2019-10-04 -City Hotel,1,19,2017,June,28,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,134.09,0,0,Canceled,2020-07-03 -City Hotel,0,44,2016,August,35,1,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,141.14,0,1,Check-Out,2019-05-04 -City Hotel,0,45,2017,June,21,5,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,114.59,0,3,Check-Out,2020-07-03 -Resort Hotel,0,0,2017,March,18,30,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,42.9,0,0,Check-Out,2020-03-03 -Resort Hotel,0,70,2017,June,16,22,2,5,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,227.19,0,0,Check-Out,2020-04-02 -City Hotel,0,291,2015,October,20,15,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Contract,65.84,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2016,October,43,23,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,92.05,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,October,50,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,40.49,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,June,44,12,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,2,No Deposit,200.0,220.0,0,Transient,0.0,0,0,Check-Out,2019-07-04 -City Hotel,1,238,2015,August,34,21,2,2,3,0.0,0,HB,ESP,Undefined,Undefined,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,67.66,0,0,Canceled,2018-06-02 -City Hotel,0,374,2017,February,9,21,0,3,2,0.0,0,SC,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,102.14,0,1,Check-Out,2019-10-04 -City Hotel,0,50,2016,June,46,27,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,225.15,0,0,Check-Out,2019-06-03 -City Hotel,0,98,2016,June,27,9,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.09,0,2,Check-Out,2019-03-04 -City Hotel,1,238,2017,August,37,16,2,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.98,0,2,Canceled,2020-07-03 -Resort Hotel,0,0,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,18.0,89.0,0,Transient,34.59,0,0,Check-Out,2019-10-04 -Resort Hotel,0,28,2016,September,25,20,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,35.59,0,0,Check-Out,2019-08-04 -City Hotel,1,42,2016,March,16,9,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,71.92,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2016,October,43,15,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,C,F,1,No Deposit,14.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-09-03 -City Hotel,0,102,2015,December,5,31,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,84.79,1,2,Check-Out,2018-10-03 -City Hotel,0,207,2016,June,26,9,0,3,3,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,178.0,179.0,0,Transient,115.72,0,0,Check-Out,2020-02-01 -Resort Hotel,0,47,2015,July,33,23,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,2,No Deposit,250.0,179.0,0,Transient,161.09,0,3,Check-Out,2018-06-02 -City Hotel,0,13,2017,March,10,9,2,0,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.8,0,0,Check-Out,2020-01-04 -City Hotel,1,13,2015,December,51,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,63.82,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2017,February,10,3,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,25.63,0,1,Check-Out,2020-02-01 -Resort Hotel,0,10,2016,July,22,12,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,173.56,0,0,Check-Out,2020-05-03 -Resort Hotel,0,22,2016,March,9,30,1,2,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,93.0,179.0,0,Transient,92.64,0,0,Check-Out,2018-12-03 -City Hotel,0,305,2016,September,36,12,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,19,Transient-Party,100.41,0,0,Check-Out,2018-08-03 -Resort Hotel,0,3,2015,December,51,17,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,50.0,179.0,0,Transient,111.63,1,0,Check-Out,2018-08-03 -City Hotel,0,239,2017,February,9,15,2,1,2,0.0,0,BB,CHN,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,86.94,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2015,August,38,21,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,182.14,0,0,Check-Out,2018-06-02 -City Hotel,1,35,2016,March,15,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,16,Transient,72.98,0,0,Canceled,2018-09-02 -City Hotel,1,40,2015,September,38,18,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.34,0,0,Canceled,2018-06-02 -City Hotel,1,444,2015,July,33,5,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.46,0,0,Canceled,2017-12-03 -Resort Hotel,0,103,2016,December,48,6,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,59.55,1,0,Check-Out,2019-02-01 -City Hotel,1,27,2016,August,39,13,1,3,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.72,0,0,No-Show,2019-06-03 -Resort Hotel,0,59,2015,December,51,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,48.75,0,3,Check-Out,2019-11-03 -City Hotel,1,419,2017,April,20,7,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.3,0,0,Canceled,2019-11-03 -City Hotel,1,408,2016,October,43,9,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,74.0,179.0,0,Transient,74.3,0,0,Canceled,2019-10-04 -City Hotel,1,53,2016,March,15,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.93,0,0,Canceled,2018-12-03 -Resort Hotel,0,21,2015,October,45,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,137.41,0,0,Check-Out,2018-09-02 -City Hotel,0,278,2016,October,43,8,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,125.2,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2017,August,35,10,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,11.0,179.0,0,Transient,3.14,0,1,Check-Out,2020-07-03 -City Hotel,0,39,2016,August,35,24,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.31,0,1,Check-Out,2019-06-03 -City Hotel,1,99,2016,June,20,2,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,16,Transient,107.54,0,0,Canceled,2019-03-04 -City Hotel,0,31,2017,March,11,28,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.82,0,0,Check-Out,2019-11-03 -City Hotel,0,77,2015,August,40,5,2,3,2,0.0,0,HB,RUS,Online TA,Undefined,0,0,0,B,B,3,No Deposit,10.0,179.0,0,Transient-Party,70.71,0,1,Check-Out,2018-09-02 -City Hotel,1,9,2017,January,3,28,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,67.86,0,0,No-Show,2019-10-04 -Resort Hotel,1,208,2017,August,32,27,0,1,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,239.0,179.0,0,Transient,156.11,0,0,Canceled,2020-07-03 -City Hotel,0,3,2016,December,4,27,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,205.0,179.0,0,Transient,78.87,0,0,Check-Out,2019-10-04 -City Hotel,1,39,2016,November,51,28,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.33,0,1,Canceled,2019-09-03 -City Hotel,0,101,2016,June,43,12,1,1,1,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,P,0,No Deposit,9.0,179.0,0,Transient,152.65,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,December,50,2,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,0,No Deposit,13.0,248.0,0,Transient,58.35,1,0,Check-Out,2019-11-03 -Resort Hotel,0,36,2015,October,43,23,2,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,90.64,0,0,Check-Out,2018-08-03 -Resort Hotel,0,51,2016,May,22,20,0,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,79.39,0,0,Check-Out,2019-06-03 -Resort Hotel,0,157,2015,October,36,8,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Contract,72.78,0,0,Check-Out,2018-09-02 -City Hotel,1,94,2015,December,53,31,0,2,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,76.52,0,0,Canceled,2018-08-03 -Resort Hotel,0,163,2016,July,35,31,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,70.96,0,0,Canceled,2019-04-03 -City Hotel,0,16,2016,December,50,23,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.98,0,3,Check-Out,2019-11-03 -City Hotel,0,150,2015,March,11,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,153.84,0,0,Check-Out,2018-12-03 -City Hotel,0,46,2016,December,51,20,1,0,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,2,No Deposit,13.0,179.0,0,Transient,76.93,0,0,Check-Out,2019-07-04 -City Hotel,0,89,2016,December,53,6,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,5.0,179.0,0,Transient,127.17,0,1,Check-Out,2018-12-03 -Resort Hotel,0,2,2017,March,10,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,11.0,65.0,0,Transient,38.56,0,0,Check-Out,2019-11-03 -City Hotel,1,146,2016,May,22,10,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,122.01,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,January,3,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,246.0,67.0,0,Transient,40.29,0,0,Check-Out,2019-03-04 -City Hotel,0,87,2016,December,50,18,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,105.35,0,0,Check-Out,2019-11-03 -City Hotel,1,22,2016,February,9,12,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,58.13,0,0,Canceled,2019-02-01 -City Hotel,0,90,2016,December,49,5,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.13,0,3,Check-Out,2019-10-04 -City Hotel,1,257,2015,October,45,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,66,Transient,73.3,0,0,Canceled,2018-01-03 -Resort Hotel,1,101,2016,February,10,29,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,149.0,179.0,0,Transient,79.24,0,0,Canceled,2019-01-03 -City Hotel,0,387,2015,September,40,5,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,44.09,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,May,10,18,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,167.51,0,0,Check-Out,2020-03-03 -Resort Hotel,0,149,2016,March,17,18,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,B,0,Refundable,13.0,223.0,0,Transient-Party,60.3,0,0,Canceled,2019-02-01 -City Hotel,0,104,2017,March,19,28,2,3,2,0.0,0,HB,DEU,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,88.51,0,0,Check-Out,2019-10-04 -City Hotel,0,36,2015,July,42,15,2,5,2,0.0,0,BB,AUT,Direct,Direct,1,0,0,D,D,0,No Deposit,13.0,179.0,0,Group,98.59,0,0,Check-Out,2018-06-02 -City Hotel,0,18,2016,October,50,17,0,1,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.51,0,1,Check-Out,2019-11-03 -City Hotel,0,192,2016,October,42,23,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,111.55,0,0,Check-Out,2019-09-03 -Resort Hotel,0,6,2015,October,42,18,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,45.6,0,2,Check-Out,2018-09-02 -Resort Hotel,0,101,2015,December,53,7,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,245.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-11-03 -City Hotel,1,53,2017,April,15,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,75.03,0,0,Canceled,2020-02-01 -City Hotel,1,169,2016,May,23,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.98,0,0,Canceled,2018-11-02 -City Hotel,1,171,2017,June,27,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,118.52,0,0,Canceled,2019-12-04 -City Hotel,0,244,2016,August,36,9,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.77,0,1,Check-Out,2019-06-03 -Resort Hotel,0,30,2016,October,49,30,0,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,233.0,0,Transient,65.01,0,2,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,March,10,4,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,13.0,242.0,0,Transient,74.3,0,0,Check-Out,2020-02-01 -City Hotel,1,3,2015,September,37,8,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Transient,91.51,0,0,Canceled,2017-10-03 -Resort Hotel,1,142,2015,December,50,18,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,72.93,0,0,Canceled,2018-06-02 -Resort Hotel,1,57,2017,February,7,15,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,146.38,0,0,Canceled,2020-05-03 -Resort Hotel,0,21,2016,March,12,13,1,0,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,92.0,179.0,0,Transient-Party,37.29,0,0,Check-Out,2019-01-03 -City Hotel,1,275,2015,October,45,6,2,5,1,0.0,0,HB,,Groups,Corporate,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.32,0,0,Canceled,2018-07-03 -City Hotel,1,24,2016,June,37,12,0,5,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,130.65,0,0,Canceled,2019-02-01 -Resort Hotel,0,193,2017,July,28,24,3,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,0,No Deposit,249.0,179.0,0,Transient,170.91,1,0,Canceled,2019-01-03 -City Hotel,0,42,2016,October,44,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,162.37,0,0,Check-Out,2019-04-03 -City Hotel,1,39,2015,December,53,6,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,94.05,0,0,Canceled,2018-10-03 -City Hotel,0,13,2017,January,11,28,1,0,2,1.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Contract,80.67,0,1,Check-Out,2019-11-03 -City Hotel,1,100,2016,November,49,27,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,61.28,0,0,Canceled,2019-09-03 -City Hotel,1,258,2017,June,26,21,0,1,1,0.0,0,BB,SWE,Direct,Direct,0,0,0,G,A,2,No Deposit,15.0,179.0,0,Transient,133.52,0,0,Canceled,2020-04-02 -City Hotel,0,9,2016,October,43,18,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.66,0,1,Check-Out,2019-09-03 -Resort Hotel,1,254,2017,July,26,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,166.0,179.0,0,Transient,172.45,0,1,Canceled,2020-02-01 -City Hotel,0,3,2016,October,44,19,1,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,192.0,0,Transient,112.63,0,1,Check-Out,2019-09-03 -City Hotel,0,92,2017,May,23,9,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,88.64,0,2,Check-Out,2020-05-03 -City Hotel,0,16,2016,January,4,29,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,75.54,0,0,Canceled,2019-08-04 -Resort Hotel,0,17,2016,April,12,23,0,2,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,320.0,179.0,0,Transient-Party,61.72,0,0,Check-Out,2019-03-04 -Resort Hotel,0,247,2017,May,29,20,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,61.84,0,0,Check-Out,2020-06-02 -Resort Hotel,0,53,2016,July,28,25,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,115.06,0,1,Check-Out,2019-02-01 -City Hotel,0,91,2016,April,19,2,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,78.0,179.0,0,Transient-Party,96.17,0,0,Check-Out,2019-03-04 -Resort Hotel,0,51,2016,October,43,17,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient,92.78,1,3,Check-Out,2019-08-04 -City Hotel,1,199,2017,June,9,4,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.73,0,1,Canceled,2019-12-04 -Resort Hotel,0,79,2016,October,42,2,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,54.4,0,0,Check-Out,2019-11-03 -City Hotel,0,151,2016,August,33,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,7.0,179.0,0,Transient,78.67,0,1,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,June,26,17,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient,43.26,0,0,Check-Out,2019-02-01 -City Hotel,1,234,2016,May,22,4,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.68,0,0,Canceled,2019-07-04 -City Hotel,1,6,2017,June,35,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,0.0,0,0,Canceled,2020-06-02 -City Hotel,1,1,2016,March,26,13,0,2,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,P,1,No Deposit,7.0,179.0,0,Transient,88.31,0,1,Canceled,2020-02-01 -City Hotel,0,0,2016,October,45,20,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,65.46,0,0,Check-Out,2019-10-04 -City Hotel,0,90,2016,March,15,21,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,90.83,0,1,Check-Out,2019-04-03 -Resort Hotel,1,92,2017,June,27,3,0,2,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,125.92,0,1,No-Show,2020-03-03 -Resort Hotel,0,144,2015,August,37,13,0,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,148.04,1,0,Check-Out,2018-09-02 -Resort Hotel,0,16,2016,December,53,25,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,88.0,179.0,0,Transient,60.96,0,1,Check-Out,2018-12-03 -Resort Hotel,0,146,2016,September,44,30,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,240.0,179.0,75,Transient-Party,95.07,0,0,Check-Out,2019-08-04 -Resort Hotel,1,16,2017,July,27,21,2,2,2,0.0,0,HB,PRT,Groups,Corporate,1,0,1,D,D,0,No Deposit,299.0,179.0,0,Group,49.69,0,0,Canceled,2019-11-03 -Resort Hotel,1,153,2017,August,37,21,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,271.0,179.0,0,Transient,104.07,0,0,Canceled,2018-06-02 -Resort Hotel,0,8,2016,May,25,15,0,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,243.0,179.0,0,Group,115.1,0,1,Check-Out,2019-01-03 -Resort Hotel,1,2,2016,September,37,29,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,210.05,0,0,Canceled,2018-12-03 -City Hotel,0,206,2017,May,22,6,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient,118.92,0,0,Check-Out,2020-02-01 -City Hotel,1,287,2017,May,21,3,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,173.26,0,0,Canceled,2020-03-03 -Resort Hotel,1,273,2015,August,39,14,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,F,0,No Deposit,9.0,179.0,0,Transient,115.77,0,1,Canceled,2018-06-02 -City Hotel,0,0,2017,August,20,5,2,4,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.46,0,0,Check-Out,2020-04-02 -City Hotel,0,101,2017,July,25,27,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.7,0,1,Check-Out,2020-06-02 -City Hotel,1,97,2015,December,53,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,62.44,0,0,Canceled,2018-11-02 -City Hotel,0,16,2015,October,43,20,1,10,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,26.0,179.0,0,Transient-Party,62.19,1,0,Check-Out,2018-10-03 -City Hotel,1,37,2016,September,42,9,1,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,12.0,179.0,0,Transient,207.99,0,0,Canceled,2019-04-03 -Resort Hotel,0,1,2016,May,24,10,0,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,246.0,179.0,0,Transient,47.24,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2016,March,16,5,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.23,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2016,December,26,3,2,0,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -Resort Hotel,1,1,2017,February,9,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,79.0,64.0,0,Transient,119.97,0,0,Canceled,2018-12-03 -City Hotel,0,378,2015,July,32,31,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,189.46,0,0,Check-Out,2020-06-02 -City Hotel,0,260,2016,October,31,2,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,194.83,0,3,Canceled,2019-06-03 -City Hotel,1,104,2016,October,43,5,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,126.98,0,0,Canceled,2018-08-03 -City Hotel,0,75,2017,March,10,13,2,5,2,1.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,F,G,0,No Deposit,165.0,179.0,0,Transient,72.56,0,0,Check-Out,2020-02-01 -City Hotel,1,206,2016,June,28,19,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,117.89,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2017,January,2,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,35.87,1,0,Check-Out,2019-11-03 -City Hotel,1,17,2016,September,38,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,152.46,0,0,Canceled,2018-01-03 -City Hotel,0,1,2017,June,27,12,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.71,0,1,Check-Out,2020-06-02 -Resort Hotel,0,13,2016,January,16,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,61.22,0,2,Check-Out,2018-12-03 -City Hotel,1,245,2016,October,45,13,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.26,0,1,No-Show,2019-12-04 -Resort Hotel,0,1,2017,May,23,23,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,378.0,179.0,0,Transient,230.71,1,0,Check-Out,2020-02-01 -Resort Hotel,1,29,2016,December,51,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Transient,61.59,0,0,Canceled,2018-11-02 -City Hotel,0,146,2017,June,9,14,0,1,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,105.79,0,1,Check-Out,2020-03-03 -City Hotel,0,12,2016,October,42,9,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,32.0,179.0,0,Transient,116.19,0,0,Check-Out,2019-05-04 -City Hotel,1,365,2016,September,37,2,1,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,160.0,0,0,Canceled,2019-12-04 -City Hotel,1,135,2017,April,17,25,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,115.13,0,0,Canceled,2019-02-01 -City Hotel,1,267,2016,July,33,9,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.59,0,0,Canceled,2018-06-02 -Resort Hotel,1,205,2016,December,50,5,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,Non Refund,30.0,179.0,0,Transient,76.84,0,0,Canceled,2019-09-03 -City Hotel,0,2,2016,January,3,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,63.08,0,0,Check-Out,2018-11-02 -City Hotel,1,16,2016,August,9,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,P,D,0,No Deposit,6.0,179.0,0,Transient,110.97,0,0,Canceled,2019-02-01 -City Hotel,1,14,2015,July,35,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,63.22,0,0,Canceled,2018-06-02 -City Hotel,0,15,2016,November,50,8,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Transient-Party,60.62,0,0,Check-Out,2019-12-04 -City Hotel,0,89,2016,June,21,24,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,66.0,179.0,0,Transient,151.54,0,3,Check-Out,2019-02-01 -Resort Hotel,0,246,2017,August,32,7,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,240.0,179.0,0,Transient,198.11,0,2,Check-Out,2019-08-04 -Resort Hotel,0,235,2017,May,20,15,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,120.31,0,2,Check-Out,2019-02-01 -Resort Hotel,1,0,2016,October,50,21,1,0,2,0.0,0,SC,PRT,Complementary,Direct,1,1,1,A,F,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Canceled,2019-08-04 -City Hotel,1,1,2017,March,8,4,2,5,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,E,B,0,No Deposit,10.0,179.0,0,Transient,68.11,0,0,Canceled,2020-01-04 -City Hotel,0,10,2017,June,29,24,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,128.37,0,0,Check-Out,2020-05-03 -City Hotel,1,258,2015,November,44,26,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,28.26,0,0,Canceled,2018-08-03 -City Hotel,0,9,2016,November,44,6,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,119.11,0,2,Check-Out,2019-12-04 -City Hotel,0,13,2016,January,9,15,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,69.83,0,0,Check-Out,2018-11-02 -City Hotel,1,250,2016,June,31,15,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,162.09,0,0,Canceled,2019-04-03 -Resort Hotel,0,36,2016,March,11,30,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,61.48,0,0,Check-Out,2018-11-02 -City Hotel,0,10,2017,April,21,6,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,37.62,0,0,Check-Out,2020-05-03 -Resort Hotel,1,65,2016,September,17,24,0,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,102.13,0,0,Canceled,2018-11-02 -City Hotel,0,12,2016,April,23,5,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,114.11,0,2,Check-Out,2019-02-01 -City Hotel,0,4,2017,September,26,15,1,1,2,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,D,0,No Deposit,35.0,221.0,0,Group,97.56,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,January,3,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,246.0,179.0,0,Transient,0.0,1,0,Check-Out,2018-11-02 -City Hotel,0,89,2017,July,32,30,2,3,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Contract,225.37,0,3,Check-Out,2020-02-01 -City Hotel,0,2,2017,February,9,27,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.98,0,2,Check-Out,2020-04-02 -Resort Hotel,0,0,2015,July,36,10,1,1,2,1.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,145.0,179.0,0,Transient,125.3,0,0,Check-Out,2018-06-02 -City Hotel,0,4,2017,May,15,16,1,3,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,200.76,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,September,42,6,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,232.0,0,Transient,98.22,1,0,Check-Out,2019-09-03 -City Hotel,0,24,2016,September,44,24,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,157.72,0,2,Check-Out,2019-08-04 -City Hotel,1,32,2016,March,9,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.86,0,0,Canceled,2018-10-03 -City Hotel,1,363,2017,May,22,12,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,115.04,0,0,Canceled,2020-02-01 -Resort Hotel,0,18,2015,September,45,26,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient-Party,179.89,0,0,Check-Out,2018-08-03 -City Hotel,1,11,2016,June,28,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,126.23,0,0,Canceled,2019-04-03 -City Hotel,0,2,2016,October,43,21,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient,79.92,0,1,Check-Out,2019-08-04 -Resort Hotel,1,134,2016,August,23,27,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,213.54,1,1,No-Show,2019-12-04 -City Hotel,0,258,2016,July,26,18,0,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,144.34,0,2,Check-Out,2020-06-02 -City Hotel,0,39,2016,September,41,15,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.84,0,2,Check-Out,2019-05-04 -Resort Hotel,0,136,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient,58.76,0,0,Check-Out,2019-06-03 -City Hotel,0,8,2017,May,23,16,0,1,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,71.35,0,2,Check-Out,2020-03-03 -City Hotel,0,1,2016,February,10,10,0,1,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,B,0,No Deposit,12.0,61.0,0,Transient-Party,59.75,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,January,3,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,2,No Deposit,15.0,179.0,0,Transient,47.2,0,0,Check-Out,2019-03-04 -Resort Hotel,0,89,2015,October,42,25,0,2,3,0.0,0,BB,PRT,Corporate,Direct,1,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,69.88,1,0,Check-Out,2018-09-02 -City Hotel,0,9,2016,July,34,12,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,122.96,0,1,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,July,31,9,2,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,250.0,179.0,0,Transient,167.02,1,0,Check-Out,2018-06-02 -City Hotel,1,247,2017,August,35,21,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,235.18,0,0,Canceled,2020-06-02 -City Hotel,1,48,2016,October,43,27,2,2,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,92.96,0,1,Check-Out,2019-12-04 -City Hotel,0,90,2017,May,21,12,2,3,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,234.13,0,0,Check-Out,2020-03-03 -Resort Hotel,0,198,2015,October,42,5,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,41.76,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2016,November,51,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,16.0,253.0,0,Transient,32.2,1,0,Check-Out,2018-12-03 -City Hotel,0,15,2016,August,37,27,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,83.19,0,1,Check-Out,2020-06-02 -Resort Hotel,0,97,2017,May,20,20,2,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,67.22,0,2,Check-Out,2020-04-02 -City Hotel,1,55,2016,November,46,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,64,Transient,73.59,0,0,Canceled,2018-08-03 -City Hotel,1,142,2015,October,41,17,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.1,0,0,Canceled,2018-11-02 -City Hotel,0,153,2017,July,35,24,2,5,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,80.68,0,2,Check-Out,2020-06-02 -Resort Hotel,0,24,2015,December,38,18,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,91.92,0,0,Check-Out,2018-11-02 -City Hotel,1,164,2017,June,27,30,0,3,1,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,106.23,0,2,Canceled,2020-03-03 -City Hotel,1,122,2016,October,42,26,2,1,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,162.4,0,0,Canceled,2019-09-03 -City Hotel,0,1,2017,March,15,13,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,0.0,0,1,Check-Out,2019-09-03 -Resort Hotel,0,95,2016,April,18,28,0,3,3,0.0,0,HB,PRT,Direct,Direct,1,0,1,A,A,1,No Deposit,13.0,179.0,0,Group,123.98,0,3,Check-Out,2019-02-01 -City Hotel,0,92,2017,June,29,10,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,136.8,0,0,Check-Out,2020-01-04 -Resort Hotel,0,52,2017,July,32,2,3,3,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,244.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -City Hotel,1,244,2016,September,47,28,0,4,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,162.19,0,3,Canceled,2019-12-04 -City Hotel,1,94,2016,August,37,30,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.07,0,2,Canceled,2019-05-04 -City Hotel,0,157,2016,July,32,8,0,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.74,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2017,January,4,20,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient-Party,63.6,0,1,Check-Out,2019-10-04 -City Hotel,1,37,2016,May,21,9,1,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.87,0,0,Canceled,2019-06-03 -City Hotel,0,43,2015,July,31,5,0,2,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.59,0,0,Check-Out,2018-06-02 -Resort Hotel,0,258,2016,December,48,12,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Group,43.32,0,0,Check-Out,2019-06-03 -Resort Hotel,0,19,2015,December,51,23,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,44.39,0,0,Check-Out,2018-11-02 -City Hotel,0,254,2017,June,26,17,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,69.01,0,1,Check-Out,2020-06-02 -Resort Hotel,0,254,2017,August,39,14,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,219.67,0,1,Check-Out,2020-07-03 -City Hotel,1,34,2016,July,26,27,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.82,0,1,Canceled,2018-11-02 -City Hotel,0,18,2016,September,44,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,244.0,0,Transient,47.17,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2017,January,3,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,E,E,0,No Deposit,28.0,179.0,0,Transient,70.38,0,0,Check-Out,2018-10-03 -City Hotel,0,83,2016,August,40,14,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,206.42,0,1,Check-Out,2020-07-03 -City Hotel,0,12,2016,September,44,13,0,2,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,2,No Deposit,211.0,179.0,0,Transient,108.63,0,0,Check-Out,2019-07-04 -Resort Hotel,0,152,2016,December,21,8,0,1,1,0.0,0,HB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,120.07,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2016,March,9,19,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.31,0,1,Check-Out,2019-02-01 -Resort Hotel,0,27,2017,January,2,29,0,3,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,3,No Deposit,17.0,75.0,0,Transient,31.2,1,0,Check-Out,2019-11-03 -City Hotel,0,14,2017,March,10,5,2,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.16,0,0,Check-Out,2020-03-03 -Resort Hotel,1,31,2017,May,23,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,73.32,0,3,Canceled,2019-11-03 -City Hotel,0,59,2016,May,36,18,1,3,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,164.07,0,0,Canceled,2019-06-03 -Resort Hotel,0,245,2015,October,43,15,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,3.0,179.0,0,Contract,63.68,0,1,Check-Out,2018-08-03 -City Hotel,1,80,2017,June,26,15,2,1,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,A,1,No Deposit,9.0,179.0,0,Transient,84.8,0,3,No-Show,2020-04-02 -Resort Hotel,0,42,2015,October,43,10,2,2,2,2.0,0,BB,ITA,Online TA,Direct,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient-Party,206.71,0,2,Check-Out,2018-06-02 -Resort Hotel,1,309,2015,September,42,30,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,E,E,0,Non Refund,138.0,179.0,0,Contract,73.31,0,0,Canceled,2018-10-03 -City Hotel,1,122,2016,June,26,22,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.5,0,0,No-Show,2019-04-03 -Resort Hotel,0,329,2015,July,30,9,2,5,2,0.0,0,BB,IRL,Groups,TA/TO,0,1,0,A,D,0,No Deposit,3.0,179.0,0,Contract,63.61,0,0,Check-Out,2017-11-02 -Resort Hotel,0,2,2015,October,44,30,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,38.37,0,2,Check-Out,2018-08-03 -City Hotel,1,32,2016,July,31,20,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.7,0,1,Canceled,2018-06-02 -Resort Hotel,0,89,2016,December,53,24,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,62,Transient-Party,77.85,0,0,Check-Out,2019-01-03 -City Hotel,0,1,2016,February,11,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,1,0,A,F,1,No Deposit,19.0,45.0,0,Transient,81.26,0,0,Check-Out,2019-03-04 -City Hotel,0,39,2017,June,28,17,0,2,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,203.61,0,2,Check-Out,2020-06-02 -City Hotel,0,16,2015,December,53,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,33.93,1,1,Check-Out,2018-12-03 -Resort Hotel,0,16,2016,December,51,9,1,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,98.0,179.0,0,Transient-Party,75.41,0,0,Check-Out,2018-11-02 -Resort Hotel,0,3,2016,October,45,3,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,96.0,179.0,0,Group,58.33,0,0,Check-Out,2019-10-04 -Resort Hotel,1,17,2017,June,26,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.89,0,1,No-Show,2020-06-02 -Resort Hotel,0,262,2016,October,42,7,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient-Party,121.56,0,0,Check-Out,2019-07-04 -Resort Hotel,0,2,2016,September,40,19,1,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,37.05,0,0,Check-Out,2019-09-03 -Resort Hotel,0,6,2017,August,40,7,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,240.0,179.0,0,Transient,182.1,0,1,Check-Out,2020-06-02 -City Hotel,1,33,2017,March,12,2,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,Non Refund,141.0,179.0,0,Transient-Party,61.46,0,0,Canceled,2020-06-02 -City Hotel,0,19,2016,March,9,16,0,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.99,0,1,Check-Out,2019-02-01 -Resort Hotel,0,14,2017,February,19,8,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient-Party,132.63,1,2,Check-Out,2020-02-01 -City Hotel,1,2,2017,January,7,12,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,64.87,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,May,17,6,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,152.51,0,0,Check-Out,2019-04-03 -City Hotel,0,10,2017,August,37,28,0,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,103.28,0,1,Check-Out,2020-05-03 -Resort Hotel,0,20,2016,October,40,20,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,243.0,179.0,0,Transient,153.53,0,1,Check-Out,2019-08-04 -City Hotel,0,13,2016,February,10,20,2,0,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,64.17,0,0,Check-Out,2019-02-01 -Resort Hotel,0,38,2016,July,32,10,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,200.73,1,3,Check-Out,2019-05-04 -City Hotel,0,3,2015,September,42,28,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,60.41,0,0,Check-Out,2018-08-03 -Resort Hotel,0,11,2016,June,17,9,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,60.62,0,0,Check-Out,2019-02-01 -City Hotel,0,53,2017,June,26,15,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-04-02 -Resort Hotel,0,139,2016,April,23,27,2,1,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,C,H,3,No Deposit,14.0,179.0,0,Transient,128.51,1,0,Check-Out,2019-03-04 -Resort Hotel,0,198,2017,August,33,16,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,115.3,0,1,Check-Out,2020-06-02 -City Hotel,1,146,2016,September,50,31,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,103.72,0,1,Canceled,2019-10-04 -City Hotel,0,28,2016,December,20,7,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.39,0,0,Check-Out,2019-03-04 -City Hotel,1,301,2016,August,37,31,2,5,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,74.28,0,1,No-Show,2019-05-04 -Resort Hotel,0,253,2017,May,22,9,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,128.43,1,2,Check-Out,2020-05-03 -City Hotel,0,144,2016,September,43,20,0,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,9.0,179.0,0,Transient-Party,94.54,0,0,Canceled,2018-09-02 -Resort Hotel,0,88,2015,August,35,25,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient-Party,192.4,1,0,Check-Out,2018-06-02 -City Hotel,0,176,2016,October,44,31,0,3,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,0.54,0,1,Check-Out,2019-10-04 -Resort Hotel,0,43,2016,September,41,10,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,61.46,1,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,October,51,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,248.0,76.0,0,Transient,43.88,1,0,Check-Out,2019-04-03 -City Hotel,0,99,2016,May,22,10,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,161.71,0,0,Check-Out,2019-03-04 -Resort Hotel,0,11,2015,November,42,27,0,1,2,1.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,40.93,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,October,45,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,74.2,1,0,Check-Out,2019-09-03 -City Hotel,0,157,2016,December,53,27,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,D,2,No Deposit,240.0,179.0,0,Transient,176.84,0,3,Check-Out,2019-07-04 -Resort Hotel,1,90,2016,December,51,24,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,84.83,0,0,Canceled,2018-12-03 -City Hotel,0,2,2016,February,11,22,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,237.0,0,Transient,61.09,0,0,No-Show,2019-09-03 -City Hotel,0,30,2017,April,22,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,206.0,179.0,0,Transient-Party,63.73,0,0,Check-Out,2020-04-02 -City Hotel,0,6,2016,June,26,10,0,3,1,0.0,0,SC,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,1,16,2015,November,44,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.35,0,0,Canceled,2018-01-03 -City Hotel,0,3,2016,November,43,27,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,41.35,0,0,Check-Out,2019-10-04 -City Hotel,0,16,2015,October,44,9,0,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Contract,71.75,0,0,Check-Out,2018-09-02 -City Hotel,0,55,2017,July,33,11,2,0,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,189.47,0,3,Check-Out,2020-07-03 -City Hotel,0,1,2016,July,32,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,D,A,1,No Deposit,15.0,331.0,0,Transient,61.66,0,0,Check-Out,2019-07-04 -Resort Hotel,0,167,2017,August,36,15,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,127.13,0,1,Check-Out,2020-08-03 -Resort Hotel,0,36,2015,August,36,19,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,75.0,179.0,0,Transient-Party,122.93,0,2,Check-Out,2018-08-03 -City Hotel,0,0,2017,May,19,27,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,K,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Canceled,2020-01-04 -City Hotel,0,13,2016,October,42,24,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,110.82,0,1,Check-Out,2019-08-04 -Resort Hotel,1,31,2015,August,39,29,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,1,0,C,C,0,No Deposit,248.0,179.0,0,Transient,212.94,0,0,Canceled,2018-06-02 -Resort Hotel,0,145,2016,August,36,10,2,2,1,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,D,D,1,No Deposit,318.0,179.0,0,Transient,78.43,0,2,Check-Out,2019-06-03 -City Hotel,0,4,2017,March,9,27,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,74.59,0,0,Check-Out,2020-01-04 -Resort Hotel,0,94,2016,November,51,30,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,55.75,0,2,Check-Out,2019-10-04 -City Hotel,0,12,2017,July,33,17,0,3,3,1.0,0,BB,USA,Online TA,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,114.64,0,1,Check-Out,2020-06-02 -Resort Hotel,0,264,2016,August,36,9,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,3,No Deposit,12.0,179.0,0,Transient,73.11,0,1,Check-Out,2020-06-02 -City Hotel,0,50,2017,February,17,30,2,3,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.41,0,0,Check-Out,2020-03-03 -City Hotel,0,82,2016,October,43,25,2,4,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,116.89,0,0,Check-Out,2019-06-03 -City Hotel,1,390,2017,May,23,26,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Contract,86.21,0,0,Canceled,2020-07-03 -City Hotel,0,48,2017,May,19,15,0,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,30.0,179.0,0,Transient-Party,73.58,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2015,October,43,27,1,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,2,No Deposit,14.0,179.0,0,Transient,91.77,0,0,Check-Out,2018-08-03 -Resort Hotel,0,55,2017,June,10,26,0,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,64.83,0,0,Check-Out,2020-02-01 -City Hotel,1,10,2015,September,43,21,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,61.51,0,0,Canceled,2018-09-02 -City Hotel,1,17,2016,January,4,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.4,0,0,No-Show,2019-10-04 -City Hotel,0,1,2016,February,9,15,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,61.31,0,0,Check-Out,2020-02-01 -Resort Hotel,0,10,2016,May,22,14,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,230.22,1,0,Check-Out,2020-03-03 -Resort Hotel,0,245,2015,July,33,31,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,119.05,0,1,Check-Out,2018-07-03 -City Hotel,0,3,2015,September,43,22,0,1,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,71.0,0,Transient-Party,67.55,0,0,Check-Out,2018-08-03 -City Hotel,0,304,2017,August,35,31,1,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,122.75,0,1,Check-Out,2020-06-02 -Resort Hotel,0,9,2015,October,43,6,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,79.21,1,2,Check-Out,2018-08-03 -City Hotel,0,16,2016,March,16,28,0,1,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,79.77,0,0,Check-Out,2019-01-03 -City Hotel,0,285,2017,July,27,17,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,128.53,0,0,Check-Out,2020-06-02 -City Hotel,1,235,2015,July,36,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,156.64,0,0,Canceled,2018-05-03 -City Hotel,1,148,2016,June,41,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,102.89,0,0,Canceled,2018-12-03 -City Hotel,1,81,2016,July,32,21,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient,165.04,0,3,Canceled,2019-05-04 -City Hotel,1,16,2017,February,10,18,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,36.0,45.0,0,Transient,66.58,0,0,Canceled,2018-12-03 -City Hotel,0,59,2016,May,16,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,1,No Deposit,10.0,179.0,0,Transient-Party,160.89,0,3,Check-Out,2019-06-03 -Resort Hotel,0,197,2017,May,23,28,2,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,C,3,No Deposit,269.0,179.0,0,Transient,120.24,0,0,Check-Out,2020-07-03 -Resort Hotel,0,146,2017,August,32,13,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,95.13,0,3,Check-Out,2020-05-03 -Resort Hotel,1,160,2016,January,53,5,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,103.32,0,0,Canceled,2019-07-04 -City Hotel,0,0,2016,September,42,10,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,D,0,No Deposit,15.0,245.0,0,Transient,0.0,0,0,Check-Out,2019-04-03 -City Hotel,1,207,2017,March,21,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,110.63,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,November,50,4,0,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,127.38,1,0,Check-Out,2019-08-04 -City Hotel,0,42,2016,May,43,24,0,2,3,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,135.46,0,2,Check-Out,2019-10-04 -Resort Hotel,0,17,2016,August,34,31,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,44.36,0,1,Check-Out,2019-07-04 -City Hotel,1,406,2016,December,50,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,28.0,179.0,0,Transient,61.03,0,0,Canceled,2019-10-04 -City Hotel,1,257,2016,September,36,16,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,Non Refund,13.0,179.0,0,Transient,62.08,0,0,Canceled,2019-05-04 -Resort Hotel,0,57,2016,November,43,2,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient,69.65,0,0,Check-Out,2019-08-04 -City Hotel,0,45,2016,December,46,9,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,7.0,179.0,0,Transient,98.5,0,1,Check-Out,2019-11-03 -City Hotel,0,150,2017,March,10,2,2,0,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,69.77,0,0,Check-Out,2020-03-03 -Resort Hotel,0,3,2015,July,31,25,2,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,198.51,0,0,Check-Out,2018-06-02 -Resort Hotel,1,107,2017,February,10,27,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,8.0,179.0,0,Transient,77.87,0,0,Canceled,2019-12-04 -Resort Hotel,0,202,2016,October,45,27,4,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Contract,72.54,0,0,Check-Out,2019-08-04 -City Hotel,1,237,2015,December,53,29,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.51,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2016,February,11,12,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,66.26,0,3,Check-Out,2019-02-01 -Resort Hotel,0,3,2017,February,3,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,49.64,0,1,Check-Out,2019-10-04 -Resort Hotel,0,4,2015,December,51,8,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient-Party,92.64,0,2,Check-Out,2018-10-03 -City Hotel,0,3,2015,December,50,10,0,2,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,C,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -City Hotel,1,245,2016,July,36,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,237.0,179.0,0,Transient,60.93,0,0,Canceled,2019-05-04 -City Hotel,1,1,2016,October,43,4,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,1.1,0,0,Canceled,2019-06-03 -Resort Hotel,0,50,2015,November,34,19,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,H,D,0,No Deposit,359.0,179.0,0,Transient,52.6,1,3,Check-Out,2018-08-03 -Resort Hotel,0,323,2015,July,44,8,2,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,51.36,0,2,Check-Out,2018-11-02 -Resort Hotel,0,40,2016,August,37,6,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,207.12,0,0,Check-Out,2019-09-03 -City Hotel,1,39,2016,March,15,31,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,39,Transient,85.48,0,0,Canceled,2019-01-03 -Resort Hotel,0,12,2016,January,3,30,0,1,2,0.0,0,BB,GBR,Direct,Corporate,0,0,1,A,D,2,No Deposit,15.0,86.0,0,Transient,51.55,0,0,Check-Out,2019-10-04 -City Hotel,0,4,2016,February,53,4,0,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,133.35,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2016,May,25,28,1,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,0,42,2015,July,30,22,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,89.11,0,0,Check-Out,2019-07-04 -City Hotel,0,53,2017,May,19,31,1,1,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,235.21,1,0,Check-Out,2020-06-02 -City Hotel,0,12,2017,August,30,25,0,2,2,0.0,0,BB,BRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,136.89,0,1,Check-Out,2020-07-03 -City Hotel,0,17,2015,October,45,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,58.23,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,March,10,9,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,0,No Deposit,13.0,45.0,0,Transient,30.26,1,0,Check-Out,2019-03-04 -Resort Hotel,0,322,2016,October,50,24,3,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,61.52,0,1,Check-Out,2019-06-03 -City Hotel,0,13,2016,December,42,5,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,141.28,0,0,Check-Out,2019-01-03 -Resort Hotel,0,17,2017,February,16,10,2,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,60.48,0,1,Check-Out,2019-12-04 -City Hotel,0,85,2016,June,24,21,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Contract,114.75,0,1,Check-Out,2019-06-03 -City Hotel,1,444,2016,September,36,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.94,0,0,Canceled,2018-08-03 -City Hotel,1,2,2016,March,12,18,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,64.44,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2017,May,17,9,1,0,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,199.0,331.0,0,Transient,40.59,0,0,Check-Out,2019-11-03 -City Hotel,1,225,2015,October,45,11,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,161.84,0,0,Canceled,2018-08-03 -City Hotel,0,92,2016,January,4,6,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,71.97,0,1,Check-Out,2019-10-04 -Resort Hotel,0,146,2017,June,26,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,205.91,1,1,Check-Out,2020-07-03 -Resort Hotel,0,8,2016,November,51,5,0,3,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,72.0,0,Transient,31.54,1,1,Check-Out,2019-12-04 -Resort Hotel,1,54,2016,May,21,30,1,1,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,224.0,0,Transient-Party,67.66,0,0,Canceled,2019-03-04 -Resort Hotel,0,99,2016,July,27,15,1,2,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,144.0,179.0,0,Transient-Party,72.68,0,0,Check-Out,2019-04-03 -Resort Hotel,0,44,2015,November,52,30,3,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,E,0,No Deposit,17.0,179.0,0,Transient,151.48,1,0,Check-Out,2018-11-02 -City Hotel,1,160,2016,November,44,31,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,78.12,0,0,Canceled,2018-11-02 -City Hotel,1,103,2016,August,25,21,2,5,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,151.15,0,2,Canceled,2019-09-03 -City Hotel,0,9,2016,January,10,15,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.78,0,0,Check-Out,2019-11-03 -City Hotel,1,44,2016,November,3,6,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,84.58,0,1,Canceled,2019-10-04 -Resort Hotel,1,204,2016,March,16,31,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,223.0,0,Transient,71.7,0,0,Check-Out,2019-01-03 -City Hotel,0,166,2016,July,32,29,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,107.9,0,0,Check-Out,2018-04-02 -Resort Hotel,0,22,2015,November,51,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,40.39,0,0,Check-Out,2018-08-03 -Resort Hotel,1,2,2017,January,5,10,0,1,2,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,115.69,0,1,No-Show,2020-03-03 -City Hotel,1,321,2015,October,45,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.62,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,September,36,9,0,3,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,1,No Deposit,12.0,76.0,0,Transient,178.24,0,0,Check-Out,2019-08-04 -City Hotel,1,242,2017,May,14,24,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.11,0,0,Canceled,2019-11-03 -City Hotel,1,336,2015,October,44,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,59.63,0,0,Canceled,2018-08-03 -City Hotel,1,8,2016,May,22,2,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,73.29,0,0,Canceled,2019-03-04 -City Hotel,0,2,2017,April,16,2,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.6,0,0,Check-Out,2020-02-01 -City Hotel,1,282,2016,September,33,9,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.98,0,0,Canceled,2017-09-02 -Resort Hotel,0,35,2016,March,16,17,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,89.13,0,0,Check-Out,2018-12-03 -City Hotel,0,117,2016,October,44,31,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.49,1,3,Check-Out,2020-01-04 -City Hotel,1,6,2017,February,8,12,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,61.38,0,0,Canceled,2020-04-02 -Resort Hotel,0,63,2017,April,18,16,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,112.66,1,3,Check-Out,2020-03-03 -City Hotel,1,105,2016,April,17,29,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,69.69,0,0,Canceled,2018-10-03 -Resort Hotel,0,50,2017,June,25,2,4,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,116.89,1,3,Check-Out,2019-03-04 -Resort Hotel,1,51,2017,August,38,18,2,5,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,217.68,0,0,Canceled,2018-06-02 -City Hotel,0,3,2017,June,11,5,1,3,1,0.0,0,BB,,Direct,Direct,1,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,99.26,0,0,Check-Out,2020-04-02 -City Hotel,0,102,2017,August,34,22,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,79.29,0,1,Check-Out,2020-06-02 -City Hotel,0,87,2015,December,51,25,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,62,Transient-Party,66.3,0,0,Check-Out,2018-09-02 -City Hotel,0,21,2016,September,44,27,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,170.7,1,1,Check-Out,2019-09-03 -City Hotel,1,51,2016,December,50,28,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,65.43,0,0,Canceled,2019-09-03 -City Hotel,0,104,2017,June,25,21,1,3,1,0.0,0,BB,GBR,Direct,Direct,1,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,100.44,0,3,Check-Out,2020-06-02 -Resort Hotel,0,14,2016,January,9,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,E,0,No Deposit,245.0,179.0,0,Transient,64.45,1,1,Check-Out,2018-11-02 -Resort Hotel,0,1,2017,June,21,17,2,0,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,C,C,0,No Deposit,17.0,179.0,0,Transient,123.75,0,0,Check-Out,2020-06-02 -Resort Hotel,1,98,2016,July,38,6,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,194.89,0,0,Canceled,2019-06-03 -City Hotel,1,277,2016,September,43,16,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,Non Refund,8.0,179.0,0,Transient,97.71,0,0,Canceled,2019-10-04 -Resort Hotel,0,51,2015,July,53,21,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,48.17,0,0,Check-Out,2018-06-02 -City Hotel,0,101,2017,May,21,17,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.34,0,2,Check-Out,2020-02-01 -Resort Hotel,0,33,2016,December,50,30,0,3,1,1.0,0,BB,PRT,Complementary,Direct,1,0,1,C,I,2,No Deposit,16.0,179.0,75,Transient-Party,0.54,0,0,Check-Out,2019-10-04 -Resort Hotel,1,298,2017,August,37,12,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,195.5,0,0,Canceled,2020-06-02 -Resort Hotel,0,41,2016,November,50,25,1,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,175.62,0,0,Check-Out,2019-10-04 -Resort Hotel,1,0,2017,April,36,21,2,5,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,E,E,0,No Deposit,15.0,170.0,0,Transient,241.36,0,0,No-Show,2019-05-04 -City Hotel,1,11,2015,September,35,30,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,110.03,0,0,Canceled,2017-11-02 -City Hotel,0,11,2016,June,31,4,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,74.38,0,1,Check-Out,2019-02-01 -City Hotel,0,9,2016,October,42,2,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,79.24,0,1,Check-Out,2019-12-04 -City Hotel,0,155,2017,July,32,19,2,5,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Transient,156.12,0,2,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,October,43,2,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Group,67.15,0,0,Check-Out,2018-12-03 -Resort Hotel,0,10,2016,June,27,18,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,80.85,0,0,Check-Out,2019-03-04 -Resort Hotel,0,58,2016,June,23,24,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,93.28,1,1,Check-Out,2019-03-04 -City Hotel,1,1,2017,February,9,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,329.0,179.0,0,Transient-Party,60.69,0,0,Canceled,2019-10-04 -Resort Hotel,1,8,2015,October,43,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Contract,59.47,0,0,No-Show,2018-06-02 -Resort Hotel,0,12,2015,September,38,22,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,93.0,179.0,0,Contract,38.72,0,0,Check-Out,2017-12-03 -City Hotel,0,36,2016,August,40,25,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-07-03 -Resort Hotel,0,34,2017,May,20,14,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,66.27,0,1,Check-Out,2020-02-01 -City Hotel,0,15,2016,October,46,20,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,138.07,0,1,Check-Out,2019-04-03 -City Hotel,0,1,2017,February,13,8,0,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.8,0,1,Check-Out,2019-11-03 -Resort Hotel,1,47,2016,February,7,16,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,72.7,0,0,Canceled,2019-10-04 -Resort Hotel,0,277,2015,September,44,31,4,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Contract,118.55,0,0,Check-Out,2018-08-03 -City Hotel,1,155,2017,May,22,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.05,0,1,Canceled,2020-02-01 -Resort Hotel,0,152,2017,February,8,27,0,1,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,133.0,179.0,18,Transient-Party,70.51,0,1,Check-Out,2019-11-03 -City Hotel,0,2,2016,February,12,15,0,1,3,0.0,0,BB,,Corporate,Corporate,0,0,0,D,F,0,No Deposit,14.0,65.0,0,Transient,60.91,0,0,Check-Out,2019-01-03 -Resort Hotel,0,12,2015,October,45,22,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,11.0,241.0,0,Transient-Party,73.32,0,0,Check-Out,2018-09-02 -Resort Hotel,0,18,2016,December,51,23,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient-Party,123.52,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2017,February,9,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,240.0,179.0,0,Transient,47.21,0,1,Check-Out,2019-09-03 -City Hotel,1,3,2016,August,37,9,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,1,0,P,P,0,No Deposit,11.0,179.0,0,Transient,3.61,0,0,Canceled,2019-09-03 -City Hotel,1,372,2016,October,44,13,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,280.0,179.0,0,Transient,61.76,0,0,Canceled,2019-08-04 -City Hotel,0,84,2016,August,36,31,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.79,0,1,Check-Out,2018-09-02 -Resort Hotel,0,54,2016,October,44,2,0,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,86.84,0,0,Check-Out,2019-08-04 -City Hotel,1,91,2017,July,32,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,3,No Deposit,7.0,179.0,0,Transient,157.25,0,3,Canceled,2020-05-03 -City Hotel,0,102,2016,December,51,21,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,116.78,0,0,Canceled,2019-09-03 -City Hotel,1,11,2017,January,4,5,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,73.0,0,Transient,101.45,0,1,No-Show,2019-10-04 -Resort Hotel,0,1,2015,November,44,28,2,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,29.15,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,February,3,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,275.0,179.0,0,Transient,38.96,0,0,Check-Out,2018-11-02 -City Hotel,0,14,2016,November,44,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,237.0,0,Transient,84.75,0,0,Check-Out,2019-06-03 -City Hotel,1,108,2016,October,37,2,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.55,0,1,Canceled,2019-04-03 -City Hotel,1,18,2016,June,22,30,1,1,1,0.0,0,BB,ESP,Online TA,Corporate,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient-Party,155.17,0,0,Canceled,2019-05-04 -Resort Hotel,0,1,2017,January,3,4,0,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,D,D,0,No Deposit,331.0,331.0,0,Transient,60.12,1,0,Check-Out,2019-11-03 -City Hotel,1,11,2016,February,15,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,41,Transient,68.41,0,0,Canceled,2018-12-03 -City Hotel,1,94,2016,July,28,24,2,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,104.3,0,0,Canceled,2019-02-01 -City Hotel,0,0,2017,June,26,20,0,2,1,0.0,0,HB,GBR,Corporate,Corporate,1,0,0,E,E,2,No Deposit,16.0,221.0,0,Transient,127.2,1,0,Check-Out,2020-07-03 -City Hotel,0,0,2017,April,18,22,0,1,1,0.0,0,SC,,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,245.0,0,Transient-Party,67.67,0,0,Check-Out,2020-04-02 -City Hotel,0,34,2016,December,49,5,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.75,0,1,Check-Out,2019-04-03 -City Hotel,1,30,2016,February,10,27,1,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,74.07,0,0,Check-Out,2018-12-03 -Resort Hotel,0,103,2017,July,33,31,2,5,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,C,C,2,No Deposit,15.0,179.0,0,Transient,112.25,0,0,Check-Out,2020-02-01 -City Hotel,1,444,2016,May,24,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.38,0,0,Canceled,2018-08-03 -City Hotel,0,9,2015,October,44,12,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.26,0,0,Check-Out,2017-12-03 -City Hotel,0,87,2015,September,39,4,2,3,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,66.67,0,0,Check-Out,2018-08-03 -Resort Hotel,1,112,2017,July,26,15,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,133.2,0,0,Canceled,2020-02-01 -Resort Hotel,0,7,2017,February,9,15,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,188.0,331.0,0,Transient,40.29,0,0,Check-Out,2020-04-02 -City Hotel,1,203,2017,May,21,27,2,4,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,94.29,0,1,Canceled,2020-02-01 -Resort Hotel,0,21,2015,December,49,30,2,5,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,44.85,1,0,Check-Out,2018-12-03 -City Hotel,1,12,2017,January,8,2,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -Resort Hotel,0,45,2015,July,32,9,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,E,0,No Deposit,3.0,179.0,0,Contract,63.59,0,0,Check-Out,2018-04-02 -Resort Hotel,0,11,2015,August,32,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,60.13,1,1,Check-Out,2018-07-03 -City Hotel,1,429,2016,November,50,20,0,1,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,B,0,No Deposit,32.0,179.0,0,Transient-Party,63.75,0,0,Check-Out,2019-05-04 -City Hotel,1,42,2016,January,4,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,20,Transient-Party,72.74,0,0,No-Show,2018-12-03 -Resort Hotel,0,0,2015,September,42,13,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,I,0,No Deposit,177.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,17,2015,July,49,15,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient-Party,93.97,0,1,Check-Out,2019-06-03 -Resort Hotel,0,63,2016,January,50,6,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,64.98,1,2,Check-Out,2019-11-03 -Resort Hotel,0,6,2017,November,11,25,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,1,No Deposit,202.0,206.0,0,Transient,78.86,0,2,Check-Out,2019-12-04 -City Hotel,0,29,2016,November,51,30,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,106.81,0,0,Check-Out,2019-08-04 -Resort Hotel,0,92,2015,October,43,21,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,85.83,0,1,Check-Out,2019-08-04 -Resort Hotel,0,14,2016,February,11,25,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,74.48,0,0,Check-Out,2019-10-04 -Resort Hotel,0,104,2017,April,21,6,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,124.6,1,1,Check-Out,2020-03-03 -Resort Hotel,1,18,2016,April,23,24,3,2,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,F,H,0,No Deposit,246.0,179.0,0,Transient,189.96,0,2,Canceled,2019-02-01 -City Hotel,0,11,2017,April,18,10,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,155.38,0,1,Check-Out,2020-04-02 -Resort Hotel,0,4,2017,March,10,11,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,64.05,1,0,Check-Out,2020-03-03 -City Hotel,0,128,2015,July,32,24,2,3,1,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,122.28,0,0,Check-Out,2018-05-03 -City Hotel,0,110,2017,April,22,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.51,0,2,Canceled,2019-11-03 -Resort Hotel,0,2,2017,February,11,13,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,63.73,1,0,Check-Out,2019-11-03 -City Hotel,0,55,2016,August,4,24,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,89.22,0,2,Check-Out,2019-01-03 -Resort Hotel,0,2,2016,September,28,25,1,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,60.87,0,0,Check-Out,2019-03-04 -Resort Hotel,1,48,2016,October,43,28,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Transient,73.93,0,1,Canceled,2019-10-04 -Resort Hotel,0,0,2015,October,43,29,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient-Party,118.17,1,0,Check-Out,2018-09-02 -City Hotel,1,334,2016,June,27,27,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,31.0,179.0,0,Transient,102.63,0,0,Canceled,2019-04-03 -Resort Hotel,1,275,2016,September,33,10,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,115.32,0,0,Canceled,2019-10-04 -City Hotel,0,47,2016,July,32,5,1,3,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,142.03,0,0,Check-Out,2019-07-04 -City Hotel,1,13,2017,August,11,14,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,139.35,0,2,Canceled,2019-11-03 -Resort Hotel,0,104,2015,October,41,8,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,53.28,0,0,Check-Out,2018-08-03 -City Hotel,0,52,2017,June,9,13,2,2,2,0.0,0,BB,DEU,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.25,0,1,Check-Out,2020-01-04 -Resort Hotel,0,65,2017,August,37,31,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,159.18,0,3,Check-Out,2020-07-03 -City Hotel,0,0,2015,November,4,12,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2016,October,42,5,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,113.38,0,2,Check-Out,2019-11-03 -Resort Hotel,0,17,2016,October,46,23,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,17.0,179.0,0,Transient,60.64,1,0,Check-Out,2019-09-03 -Resort Hotel,0,95,2016,March,14,10,2,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,147.0,179.0,0,Transient-Party,42.88,0,0,Check-Out,2018-12-03 -City Hotel,0,43,2016,April,18,17,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.92,0,1,Check-Out,2019-03-04 -City Hotel,0,38,2015,December,50,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,95.04,0,0,Check-Out,2018-08-03 -Resort Hotel,1,10,2016,June,9,29,0,3,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,81.54,0,0,Canceled,2019-03-04 -Resort Hotel,0,235,2015,September,36,6,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,296.0,179.0,0,Transient-Party,111.74,1,1,Check-Out,2018-06-02 -City Hotel,1,1,2016,December,11,17,0,1,2,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,B,B,1,Non Refund,13.0,179.0,0,Transient,175.79,0,0,Canceled,2019-04-03 -City Hotel,1,22,2016,December,53,29,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.2,0,0,Canceled,2018-10-03 -City Hotel,0,27,2017,March,16,16,2,1,2,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,181.0,0,Transient,104.92,0,0,Check-Out,2020-04-02 -Resort Hotel,1,257,2017,August,37,11,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.8,0,0,Canceled,2020-03-03 -City Hotel,1,192,2016,April,18,25,2,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.23,0,0,Canceled,2019-04-03 -City Hotel,0,48,2017,February,3,22,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,61.37,0,1,Check-Out,2019-10-04 -Resort Hotel,1,0,2017,August,26,9,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient,74.99,0,0,Canceled,2020-07-03 -Resort Hotel,0,282,2016,July,30,11,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,63.51,0,1,Check-Out,2019-04-03 -City Hotel,0,2,2017,March,16,5,1,3,2,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,156.02,0,1,Check-Out,2020-02-01 -Resort Hotel,0,1,2017,May,22,5,1,0,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient-Party,157.03,0,0,Check-Out,2020-03-03 -City Hotel,1,38,2016,May,22,15,2,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.42,0,1,Canceled,2019-01-03 -Resort Hotel,0,260,2016,October,42,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,35.08,0,1,Check-Out,2019-11-03 -City Hotel,0,104,2015,July,32,24,2,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Transient-Party,118.82,0,0,Check-Out,2018-06-02 -City Hotel,0,115,2015,December,53,27,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,113.46,0,1,Check-Out,2019-01-03 -City Hotel,0,34,2016,August,36,6,2,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.45,0,0,Check-Out,2019-04-03 -Resort Hotel,0,15,2017,March,11,14,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,A,I,1,No Deposit,15.0,222.0,75,Transient-Party,35.83,1,0,Check-Out,2020-01-04 -City Hotel,0,81,2017,May,24,18,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,59.05,0,1,Check-Out,2019-12-04 -City Hotel,0,236,2015,October,43,28,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,96.75,0,0,Check-Out,2018-08-03 -City Hotel,1,255,2016,July,27,9,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,133.62,0,0,Canceled,2019-05-04 -Resort Hotel,0,18,2016,April,23,26,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,112.1,0,1,Check-Out,2020-01-04 -Resort Hotel,1,258,2016,October,43,5,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,83.12,0,0,Canceled,2019-11-03 -Resort Hotel,0,1,2016,December,17,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,60.0,0,Transient,37.91,1,0,Check-Out,2019-12-04 -Resort Hotel,1,193,2017,May,20,2,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,155.0,179.0,0,Transient,75.04,0,0,Canceled,2019-11-03 -Resort Hotel,0,318,2017,May,23,12,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,37.22,1,1,Check-Out,2020-03-03 -Resort Hotel,1,40,2016,December,50,27,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,62.4,0,0,Canceled,2019-09-03 -Resort Hotel,0,3,2017,March,8,17,1,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,79.43,1,0,Check-Out,2020-05-03 -City Hotel,0,39,2016,December,45,5,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,114.66,0,2,Check-Out,2019-12-04 -Resort Hotel,0,436,2017,July,38,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.16,0,0,Check-Out,2020-06-02 -City Hotel,0,106,2016,August,44,16,2,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,212.47,0,2,Check-Out,2019-08-04 -Resort Hotel,0,33,2016,March,11,21,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,73.3,1,0,Check-Out,2019-02-01 -City Hotel,1,10,2016,May,21,30,1,2,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,71.84,0,0,Canceled,2019-02-01 -City Hotel,1,22,2015,July,33,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,99.29,0,0,Canceled,2018-07-03 -City Hotel,1,244,2016,May,22,25,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Contract,236.43,0,0,Canceled,2020-03-03 -City Hotel,0,10,2017,June,24,30,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.52,0,1,Check-Out,2020-07-03 -City Hotel,0,94,2017,June,25,18,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,165.36,0,0,Check-Out,2020-01-04 -City Hotel,0,109,2016,February,8,29,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,78.0,0,Transient,65.22,0,0,Check-Out,2019-01-03 -Resort Hotel,0,33,2016,June,16,22,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,69.5,0,0,Check-Out,2019-04-03 -Resort Hotel,0,26,2017,February,8,12,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,107.0,331.0,0,Transient-Party,31.11,0,0,Check-Out,2019-12-04 -City Hotel,1,428,2017,June,32,5,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,F,0,Non Refund,239.0,179.0,0,Transient,98.67,0,0,Canceled,2020-03-03 -City Hotel,0,32,2016,June,22,15,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,158.48,0,0,Check-Out,2019-03-04 -City Hotel,1,91,2016,October,41,21,2,5,1,0.0,0,HB,IRL,Groups,TA/TO,0,1,0,A,A,0,No Deposit,378.0,179.0,75,Transient,77.49,0,3,Canceled,2018-07-03 -Resort Hotel,0,46,2016,December,53,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,61.12,1,1,Check-Out,2018-12-03 -Resort Hotel,0,142,2016,June,24,24,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,94.32,0,1,Check-Out,2019-03-04 -City Hotel,0,104,2017,January,3,16,1,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,63.59,0,1,Check-Out,2019-12-04 -City Hotel,0,252,2016,August,37,5,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,104.98,0,1,Check-Out,2020-07-03 -City Hotel,1,272,2015,September,44,18,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,123.78,0,0,Canceled,2018-08-03 -City Hotel,0,1,2015,September,37,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,120.67,0,1,Check-Out,2018-09-02 -Resort Hotel,1,7,2016,January,10,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,Non Refund,179.0,179.0,0,Transient,60.35,0,0,Canceled,2018-10-03 -Resort Hotel,0,30,2017,March,10,9,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,248.17,1,0,Check-Out,2020-05-03 -City Hotel,0,35,2016,October,42,5,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,73.28,0,0,Check-Out,2019-08-04 -City Hotel,0,203,2017,August,27,15,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,198.19,0,1,Check-Out,2020-07-03 -Resort Hotel,0,147,2017,July,35,25,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,237.0,179.0,0,Transient,131.75,1,2,Check-Out,2020-04-02 -City Hotel,1,28,2016,May,22,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.72,0,0,Canceled,2019-02-01 -City Hotel,0,371,2016,August,37,28,2,5,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.05,0,2,Check-Out,2019-08-04 -City Hotel,1,255,2016,May,21,16,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,58.87,0,0,Canceled,2019-02-01 -City Hotel,1,94,2016,September,11,25,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,82.63,0,0,No-Show,2019-01-03 -City Hotel,1,9,2016,June,25,17,0,1,1,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.05,0,1,Canceled,2019-04-03 -Resort Hotel,1,251,2016,June,29,24,2,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,99.03,0,0,Canceled,2019-02-01 -City Hotel,1,48,2016,November,7,2,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,7.0,179.0,0,Transient,67.25,0,0,Canceled,2018-11-02 -Resort Hotel,0,150,2017,August,40,29,2,4,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,240.0,179.0,0,Transient,154.65,0,2,Check-Out,2020-06-02 -City Hotel,0,43,2016,February,37,18,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,118.23,0,0,Check-Out,2019-02-01 -Resort Hotel,0,36,2016,May,15,30,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,155.68,0,1,Check-Out,2020-04-02 -City Hotel,0,198,2016,July,27,23,1,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,179.0,179.0,0,Transient,161.35,0,1,Check-Out,2019-11-03 -Resort Hotel,0,7,2016,June,30,6,2,5,1,0.0,0,BB,PRT,Online TA,Corporate,1,0,1,E,E,1,No Deposit,196.0,179.0,0,Transient-Party,126.29,0,1,Check-Out,2019-07-04 -City Hotel,1,412,2017,June,26,3,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Contract,159.28,0,0,Canceled,2020-03-03 -Resort Hotel,0,169,2017,August,36,9,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,179.03,0,1,Canceled,2020-04-02 -Resort Hotel,0,51,2016,July,26,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,244.0,179.0,0,Transient,112.56,1,1,Check-Out,2019-02-01 -City Hotel,1,162,2015,December,49,20,0,2,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,92.81,0,0,Canceled,2018-08-03 -Resort Hotel,0,86,2016,October,45,29,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient-Party,99.37,0,2,Check-Out,2019-12-04 -City Hotel,0,48,2017,April,17,30,2,1,1,0.0,0,SC,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.38,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,February,12,29,0,1,2,0.0,0,BB,ESP,Direct,Corporate,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient-Party,41.0,1,0,Check-Out,2018-10-03 -Resort Hotel,1,8,2015,December,44,23,2,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,63.09,0,0,Check-Out,2018-05-03 -City Hotel,1,89,2016,July,26,16,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.57,0,0,Canceled,2019-06-03 -City Hotel,0,53,2016,September,35,19,0,3,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,71.0,179.0,0,Transient-Party,83.12,0,0,Check-Out,2019-09-03 -City Hotel,1,25,2016,September,42,18,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.62,0,0,Canceled,2018-12-03 -Resort Hotel,0,16,2015,November,50,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,63.98,0,2,Check-Out,2018-08-03 -City Hotel,1,197,2016,November,51,29,2,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.86,0,0,Canceled,2019-09-03 -Resort Hotel,0,32,2016,February,8,27,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,77.47,0,0,Canceled,2019-12-04 -City Hotel,0,111,2017,May,22,30,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,73.28,0,1,Check-Out,2019-02-01 -Resort Hotel,1,22,2016,February,35,13,3,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,247.0,179.0,0,Transient,62.91,0,0,Canceled,2018-10-03 -Resort Hotel,0,89,2016,October,41,12,1,1,2,1.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,191.86,0,0,Check-Out,2019-08-04 -City Hotel,0,29,2016,December,49,24,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,100.72,0,2,Check-Out,2019-07-04 -Resort Hotel,0,14,2017,May,21,2,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,110.39,0,3,Check-Out,2019-12-04 -City Hotel,0,19,2016,May,22,24,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,27.0,64.0,0,Transient,60.3,0,0,Check-Out,2019-04-03 -Resort Hotel,0,193,2016,May,24,23,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,117.3,0,1,Check-Out,2019-02-01 -City Hotel,0,395,2017,May,35,6,2,1,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,3,No Deposit,2.0,179.0,0,Transient-Party,63.74,0,0,Check-Out,2018-09-02 -City Hotel,1,6,2016,October,45,25,1,0,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.42,0,0,No-Show,2019-09-03 -City Hotel,0,36,2016,August,38,2,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,171.72,0,0,Check-Out,2019-05-04 -Resort Hotel,0,151,2017,May,18,29,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,2020-03-03 -City Hotel,0,40,2016,October,43,18,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,91.73,0,0,Check-Out,2019-09-03 -City Hotel,1,161,2017,July,35,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,90.91,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,November,43,15,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,81.0,0,Transient,30.79,1,0,Check-Out,2019-11-03 -City Hotel,0,15,2017,August,34,20,2,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-05-03 -Resort Hotel,0,94,2016,April,17,24,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,70.44,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,September,42,28,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,177.89,1,0,Check-Out,2019-07-04 -City Hotel,1,2,2015,September,35,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,211.35,0,0,Canceled,2018-05-03 -City Hotel,0,113,2016,August,37,30,2,4,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,133.23,0,2,Check-Out,2019-05-04 -City Hotel,0,153,2017,June,22,17,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,77.52,0,0,Check-Out,2020-06-02 -City Hotel,0,37,2017,June,33,21,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,212.96,0,3,Check-Out,2020-06-02 -City Hotel,0,94,2015,December,53,30,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,75.27,0,1,Check-Out,2019-07-04 -Resort Hotel,0,202,2016,March,27,31,3,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,84.97,0,0,Check-Out,2019-10-04 -Resort Hotel,0,3,2016,May,17,13,2,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,98.28,0,3,Check-Out,2019-02-01 -City Hotel,1,112,2016,June,25,24,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,111.34,0,0,Canceled,2019-08-04 -City Hotel,1,270,2017,August,32,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,F,F,0,Non Refund,11.0,179.0,0,Transient,170.69,0,0,Canceled,2020-06-02 -Resort Hotel,0,253,2016,October,42,15,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,F,0,No Deposit,247.0,179.0,0,Transient,45.96,0,0,Check-Out,2019-09-03 -City Hotel,1,360,2017,June,26,14,0,6,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,130.31,0,0,Canceled,2020-04-02 -Resort Hotel,0,19,2016,October,44,6,4,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Contract,38.68,0,1,Check-Out,2020-01-04 -City Hotel,0,0,2017,June,27,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,2.85,0,0,Check-Out,2019-11-03 -City Hotel,0,51,2016,October,44,15,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Transient-Party,150.78,0,1,Check-Out,2019-09-03 -City Hotel,0,261,2015,September,33,24,2,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,110.36,0,0,Canceled,2018-05-03 -Resort Hotel,0,48,2017,August,33,17,2,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,245.0,179.0,0,Transient,198.17,0,0,Check-Out,2020-07-03 -City Hotel,0,76,2015,October,45,28,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,155.3,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2017,February,12,16,1,0,2,0.0,0,BB,GBR,Online TA,GDS,0,0,0,E,D,0,No Deposit,312.0,179.0,0,Transient,30.09,0,1,Check-Out,2019-11-03 -Resort Hotel,0,14,2016,October,35,18,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,129.1,1,0,Check-Out,2019-06-03 -City Hotel,0,21,2016,November,50,10,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,90.2,0,0,Check-Out,2019-10-04 -City Hotel,1,56,2015,December,51,31,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,33.75,0,1,Canceled,2018-10-03 -City Hotel,1,7,2015,December,32,4,1,1,2,0.0,0,BB,,Undefined,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,117.85,0,1,Canceled,2018-06-02 -City Hotel,0,39,2015,October,46,21,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient-Party,125.88,0,2,Check-Out,2018-08-03 -Resort Hotel,0,47,2016,January,10,31,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,59.04,0,0,Check-Out,2019-03-04 -City Hotel,0,50,2017,May,21,23,0,1,1,0.0,0,SC,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,85.62,0,0,Check-Out,2020-06-02 -Resort Hotel,0,48,2017,March,10,9,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,2,No Deposit,378.0,179.0,0,Transient-Party,36.71,0,0,Check-Out,2020-05-03 -Resort Hotel,0,19,2015,October,46,30,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,F,0,No Deposit,100.0,45.0,0,Transient,100.3,0,0,Check-Out,2019-12-04 -City Hotel,0,2,2016,January,2,5,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.76,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,March,18,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,Refundable,16.0,224.0,0,Transient-Party,67.12,0,0,Check-Out,2019-04-03 -Resort Hotel,0,103,2017,June,28,29,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,76.25,0,1,Check-Out,2020-04-02 -City Hotel,0,100,2017,February,10,24,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,12.0,92.0,0,Transient,88.36,1,0,Check-Out,2020-04-02 -City Hotel,1,138,2015,July,31,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,74.13,0,0,Canceled,2017-12-03 -Resort Hotel,0,156,2017,August,28,26,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,188.83,0,1,Check-Out,2020-07-03 -City Hotel,1,152,2017,June,26,2,2,5,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,8.0,179.0,0,Transient,196.95,0,0,Canceled,2020-05-03 -Resort Hotel,1,100,2017,July,22,31,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,235.32,0,0,Canceled,2020-02-01 -City Hotel,0,11,2017,January,10,15,0,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,E,0,No Deposit,8.0,243.0,0,Transient,60.98,0,1,Check-Out,2019-09-03 -Resort Hotel,0,266,2016,March,10,28,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,285.0,179.0,0,Transient,69.26,0,0,Check-Out,2019-03-04 -City Hotel,1,3,2015,July,38,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.37,0,1,Canceled,2018-06-02 -City Hotel,1,346,2016,December,51,9,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,41,Transient,63.02,0,0,Canceled,2019-09-03 -Resort Hotel,1,3,2017,February,11,15,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,195.0,179.0,0,Transient,125.6,0,0,Canceled,2020-03-03 -City Hotel,1,17,2017,March,8,16,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,155.89,0,0,Canceled,2019-11-03 -City Hotel,1,1,2016,June,27,24,1,1,1,0.0,0,SC,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,106.74,0,0,Canceled,2019-11-03 -City Hotel,1,241,2016,July,25,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.54,0,1,Canceled,2019-04-03 -City Hotel,0,2,2017,February,7,13,1,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient-Party,117.67,1,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,February,9,18,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,A,0,No Deposit,17.0,245.0,0,Transient,43.26,1,0,Check-Out,2019-11-03 -City Hotel,0,18,2017,May,23,30,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,1,No Deposit,322.0,179.0,0,Transient-Party,116.65,0,0,Check-Out,2019-02-01 -Resort Hotel,0,120,2017,August,30,29,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,112.59,0,1,Check-Out,2020-07-03 -City Hotel,0,140,2016,October,36,11,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.33,0,1,Check-Out,2019-09-03 -Resort Hotel,1,103,2016,March,10,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,60.35,0,0,Canceled,2019-01-03 -City Hotel,0,67,2017,June,22,9,0,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,78.07,0,2,Check-Out,2020-04-02 -City Hotel,1,422,2017,June,17,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,96.62,0,0,Canceled,2019-11-03 -City Hotel,1,153,2016,June,28,10,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.13,0,0,No-Show,2018-06-02 -Resort Hotel,0,1,2015,November,43,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,251.0,179.0,0,Transient,37.7,1,0,Check-Out,2018-12-03 -City Hotel,0,20,2016,July,24,5,0,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.12,0,2,Check-Out,2019-05-04 -Resort Hotel,1,44,2015,August,35,5,1,2,2,0.0,0,Undefined,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient-Party,2.12,0,0,Canceled,2018-06-02 -City Hotel,0,36,2015,December,51,6,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,40.68,0,2,Check-Out,2018-11-02 -City Hotel,1,400,2016,August,37,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,134.07,0,0,Canceled,2017-10-03 -City Hotel,1,105,2017,May,20,11,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2017,August,11,2,1,1,1,0.0,0,BB,PRT,Online TA,GDS,1,0,0,A,A,0,No Deposit,81.0,179.0,0,Group,62.83,1,0,Check-Out,2019-11-03 -City Hotel,1,108,2016,August,36,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,125.01,0,1,Canceled,2019-08-04 -City Hotel,0,1,2016,February,10,24,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,79.0,0,Transient,63.22,0,1,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,January,10,2,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,1,1,0,A,I,0,No Deposit,238.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-10-03 -City Hotel,0,1,2017,March,37,3,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,164.45,0,0,Check-Out,2020-07-03 -City Hotel,0,14,2015,December,51,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,261.0,0,Transient-Party,67.66,0,0,Check-Out,2018-08-03 -City Hotel,0,22,2017,September,38,25,0,1,2,2.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,197.36,1,0,Check-Out,2019-09-03 -Resort Hotel,0,81,2017,March,11,25,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,47.24,0,0,Check-Out,2019-10-04 -City Hotel,1,365,2015,September,39,30,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.11,0,0,Canceled,2017-11-02 -City Hotel,0,192,2016,November,43,9,2,1,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,96.0,179.0,0,Transient-Party,77.51,0,0,Check-Out,2019-11-03 -City Hotel,0,11,2017,May,23,5,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,136.25,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,March,11,19,0,3,2,0.0,0,HB,PRT,Direct,Corporate,1,1,1,E,I,1,No Deposit,16.0,331.0,75,Transient-Party,32.34,1,3,Check-Out,2019-11-03 -City Hotel,0,207,2016,August,33,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,232.78,0,3,Check-Out,2020-05-03 -City Hotel,0,35,2017,June,25,9,0,1,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,45.0,0,Transient,77.23,0,1,Check-Out,2020-05-03 -Resort Hotel,0,49,2016,May,21,24,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,176.0,179.0,0,Transient,86.92,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,July,22,24,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,F,0,No Deposit,268.0,179.0,0,Transient,227.95,1,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,April,46,2,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,16.0,215.0,0,Transient,76.51,1,0,Check-Out,2019-05-04 -Resort Hotel,0,93,2016,July,38,28,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,167.21,0,0,Check-Out,2019-05-04 -City Hotel,1,317,2017,August,37,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,174.42,0,0,Canceled,2020-07-03 -City Hotel,1,141,2016,July,30,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,71.49,0,0,Canceled,2018-12-03 -City Hotel,0,15,2017,August,35,7,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,97.76,0,1,Check-Out,2019-12-04 -City Hotel,1,88,2017,June,27,9,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,109.94,0,0,Canceled,2019-05-04 -City Hotel,1,13,2017,March,11,10,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.11,0,0,Canceled,2020-02-01 -City Hotel,1,105,2017,August,8,5,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.04,0,0,Canceled,2019-11-03 -City Hotel,0,179,2016,October,44,15,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,169.24,1,2,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,May,21,16,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,124.7,0,0,Check-Out,2019-02-01 -City Hotel,0,15,2017,March,11,28,0,4,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,29.0,179.0,0,Transient-Party,77.66,0,0,Check-Out,2019-03-04 -Resort Hotel,0,142,2016,September,37,30,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,162.0,179.0,0,Transient,181.88,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,August,36,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient-Party,64.11,0,0,Check-Out,2018-07-03 -Resort Hotel,0,361,2016,March,46,10,0,3,1,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,32.74,0,0,Check-Out,2019-02-01 -Resort Hotel,0,37,2016,October,43,4,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,161.31,0,0,Check-Out,2019-08-04 -City Hotel,0,21,2016,April,44,16,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.77,0,2,Check-Out,2019-03-04 -City Hotel,0,249,2017,June,25,6,1,3,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.75,0,1,Check-Out,2020-06-02 -City Hotel,1,313,2016,October,53,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,70.29,0,0,Canceled,2019-10-04 -Resort Hotel,0,105,2016,January,4,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,62.84,1,1,Check-Out,2019-11-03 -City Hotel,0,26,2015,August,35,20,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,163.88,0,0,Check-Out,2018-06-02 -Resort Hotel,0,273,2015,August,35,9,2,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,1,1,A,C,1,No Deposit,320.0,179.0,0,Transient-Party,66.32,0,0,Check-Out,2018-06-02 -Resort Hotel,1,54,2017,February,11,7,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,D,F,0,No Deposit,240.0,179.0,0,Transient,76.64,0,2,Canceled,2020-03-03 -Resort Hotel,0,2,2017,June,27,6,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,E,0,No Deposit,325.0,179.0,0,Transient,148.18,0,0,Check-Out,2020-03-03 -City Hotel,1,11,2016,August,32,12,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,118.36,0,0,No-Show,2018-12-03 -City Hotel,1,102,2016,March,16,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,42,Transient,88.49,0,0,Canceled,2018-10-03 -City Hotel,1,57,2016,February,9,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,78.51,0,0,Canceled,2018-10-03 -City Hotel,0,52,2017,January,13,28,1,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.43,0,0,Check-Out,2020-03-03 -City Hotel,1,39,2016,September,43,10,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.38,0,0,Canceled,2019-08-04 -City Hotel,1,90,2016,May,20,18,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.36,0,0,Canceled,2019-01-03 -City Hotel,1,246,2015,July,35,18,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,61.64,0,0,Canceled,2018-07-03 -City Hotel,1,53,2017,August,39,2,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,L,0,No Deposit,8.0,179.0,0,Transient,162.23,0,1,Canceled,2020-06-02 -City Hotel,1,8,2017,October,42,12,0,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.76,0,1,Canceled,2019-12-04 -City Hotel,1,34,2016,January,4,31,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.05,0,1,No-Show,2019-03-04 -City Hotel,0,50,2017,April,21,15,0,2,2,0.0,0,SC,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,88.02,0,0,Check-Out,2020-03-03 -City Hotel,1,14,2016,May,18,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,183.51,0,0,Canceled,2019-02-01 -Resort Hotel,0,39,2016,July,34,19,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,187.71,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,November,43,13,1,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,72.53,1,0,Check-Out,2019-08-04 -City Hotel,1,12,2016,March,9,8,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,E,0,No Deposit,151.0,179.0,0,Transient-Party,226.06,0,0,Canceled,2019-02-01 -Resort Hotel,0,107,2016,November,27,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,178.0,179.0,75,Transient,81.57,0,0,Check-Out,2019-05-04 -Resort Hotel,0,5,2016,April,15,16,0,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.71,1,0,Check-Out,2019-03-04 -City Hotel,0,195,2016,April,28,25,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.49,0,1,Check-Out,2019-06-03 -Resort Hotel,1,296,2016,May,14,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,163.54,1,2,Canceled,2019-02-01 -City Hotel,0,3,2016,April,52,21,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.6,0,1,Canceled,2019-08-04 -City Hotel,0,91,2017,May,23,24,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.52,0,2,Check-Out,2020-03-03 -City Hotel,0,55,2016,November,44,9,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,94.42,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,May,27,3,1,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,A,1,No Deposit,14.0,45.0,0,Transient,3.0,0,0,Check-Out,2019-06-03 -Resort Hotel,0,9,2017,June,25,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,243.0,179.0,0,Transient,84.2,1,1,Check-Out,2020-06-02 -City Hotel,0,141,2017,July,33,16,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,219.94,0,0,Check-Out,2020-06-02 -City Hotel,0,40,2017,March,12,29,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,93.45,0,0,Check-Out,2019-09-03 -City Hotel,0,11,2016,August,40,2,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,112.36,0,3,Check-Out,2019-09-03 -City Hotel,1,14,2017,August,27,15,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,104.11,0,1,Canceled,2020-04-02 -City Hotel,0,11,2016,August,35,6,2,1,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,9.0,179.0,0,Transient-Party,123.15,0,1,Check-Out,2019-08-04 -City Hotel,0,44,2017,March,10,21,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,331.0,0,Transient,68.88,0,2,Check-Out,2019-01-03 -Resort Hotel,0,85,2017,January,4,29,0,2,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,E,E,2,No Deposit,191.0,331.0,0,Transient,62.51,1,0,Check-Out,2019-10-04 -City Hotel,0,43,2016,December,53,24,0,1,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.6,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2015,November,44,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,16.0,45.0,0,Transient,50.14,0,0,Check-Out,2018-11-02 -City Hotel,0,53,2016,August,35,19,0,4,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,146.04,0,1,Check-Out,2018-09-02 -City Hotel,0,251,2017,June,30,15,0,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,208.97,0,1,Check-Out,2020-06-02 -City Hotel,1,382,2016,June,25,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,59.7,0,0,Canceled,2018-11-02 -City Hotel,1,34,2017,January,2,21,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,66.36,0,1,Canceled,2019-11-03 -City Hotel,1,153,2016,December,53,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,75.77,0,0,Canceled,2019-10-04 -Resort Hotel,0,34,2016,May,23,14,2,3,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,C,2,No Deposit,317.0,331.0,0,Transient-Party,66.62,0,0,Check-Out,2019-04-03 -City Hotel,1,110,2017,March,16,10,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,Non Refund,1.0,179.0,0,Transient,113.69,0,0,Canceled,2019-10-04 -City Hotel,1,88,2016,April,15,21,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,66.39,0,0,Canceled,2019-02-01 -Resort Hotel,1,255,2017,August,35,13,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,216.59,0,0,Canceled,2019-03-04 -City Hotel,0,99,2016,May,15,20,0,1,2,0.0,0,BB,CHN,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,124.38,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,August,18,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,206.69,1,0,Check-Out,2020-06-02 -City Hotel,1,251,2015,September,35,15,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,116.09,0,0,Canceled,2018-08-03 -City Hotel,0,17,2015,November,45,5,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,82.81,0,0,Check-Out,2018-08-03 -City Hotel,1,147,2016,March,16,18,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,40,Transient,92.99,0,0,Canceled,2018-11-02 -City Hotel,0,44,2017,June,29,4,1,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,144.91,0,1,Check-Out,2020-07-03 -City Hotel,0,0,2016,March,19,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,45.0,0,Transient-Party,91.51,0,0,Check-Out,2019-04-03 -City Hotel,0,260,2016,January,49,9,1,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,75.56,0,0,Check-Out,2019-11-03 -City Hotel,1,0,2016,November,45,18,1,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,128.32,0,0,No-Show,2019-06-03 -Resort Hotel,0,12,2016,December,10,9,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient-Party,46.84,0,0,Check-Out,2019-08-04 -City Hotel,0,255,2017,July,26,5,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,111.37,0,0,Check-Out,2020-07-03 -City Hotel,0,249,2017,June,31,23,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,170.95,0,1,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,September,36,29,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,113.88,0,1,Check-Out,2019-05-04 -City Hotel,1,202,2016,February,9,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,74.0,179.0,0,Transient,61.21,0,0,Canceled,2018-11-02 -Resort Hotel,0,219,2016,June,28,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,38.41,0,1,Check-Out,2019-03-04 -City Hotel,0,34,2016,February,10,30,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.98,0,1,Check-Out,2019-02-01 -City Hotel,0,8,2016,December,51,23,1,0,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,68.94,0,2,Check-Out,2019-11-03 -Resort Hotel,0,146,2015,July,35,26,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,36.0,179.0,0,Group,102.23,0,0,Check-Out,2018-05-03 -Resort Hotel,0,14,2017,May,37,6,3,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,F,3,No Deposit,244.0,179.0,0,Transient,166.51,1,2,Check-Out,2020-07-03 -Resort Hotel,0,0,2017,April,23,15,0,1,1,0.0,0,BB,GBR,Direct,Corporate,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,184.36,0,1,Check-Out,2020-02-01 -Resort Hotel,0,7,2017,June,26,9,0,1,1,0.0,0,HB,PRT,Complementary,Corporate,1,0,0,H,I,1,No Deposit,207.0,179.0,0,Transient,2.5,0,0,Check-Out,2020-05-03 -City Hotel,0,56,2016,July,34,25,2,3,3,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,136.05,1,2,Check-Out,2019-05-04 -City Hotel,0,92,2016,May,23,20,2,1,2,0.0,0,BB,,Groups,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,61.09,0,0,Check-Out,2019-03-04 -Resort Hotel,0,42,2016,March,10,31,0,5,2,0.0,0,FB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,78.04,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,October,44,2,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,141.0,0,0,Check-Out,2019-09-03 -Resort Hotel,0,6,2015,December,50,29,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,97.44,1,2,Check-Out,2018-09-02 -City Hotel,1,18,2016,March,9,14,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.04,0,2,Canceled,2018-12-03 -Resort Hotel,0,12,2016,June,29,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,154.36,0,1,Canceled,2019-04-03 -City Hotel,0,4,2015,August,31,21,2,1,1,0.0,0,BB,PRT,Groups,Undefined,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,49.67,0,1,Check-Out,2018-07-03 -City Hotel,0,279,2017,July,26,11,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.33,0,0,Check-Out,2019-05-04 -City Hotel,0,46,2015,September,35,15,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,61.56,0,0,Check-Out,2018-07-03 -City Hotel,0,18,2017,August,37,6,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.17,0,0,Check-Out,2020-07-03 -City Hotel,0,35,2016,May,17,28,2,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,94.17,0,0,Check-Out,2019-11-03 -Resort Hotel,0,193,2016,September,26,15,2,7,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,185.0,179.0,0,Transient,211.9,0,0,Check-Out,2019-06-03 -City Hotel,1,267,2017,August,30,30,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient,166.27,0,0,Canceled,2020-06-02 -City Hotel,0,96,2015,July,32,10,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,118.02,0,2,Check-Out,2018-06-02 -Resort Hotel,0,11,2015,December,38,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,171.75,0,0,Check-Out,2018-12-03 -City Hotel,0,44,2016,March,10,6,2,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.42,0,2,Check-Out,2018-12-03 -City Hotel,0,0,2016,June,25,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,154.36,0,1,Check-Out,2019-06-03 -City Hotel,0,162,2016,June,21,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,B,0,No Deposit,26.0,179.0,0,Transient-Party,77.18,0,0,Check-Out,2019-02-01 -City Hotel,1,44,2016,October,44,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,21,Transient,85.21,0,0,Canceled,2019-03-04 -Resort Hotel,0,245,2015,August,35,21,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,180.0,179.0,0,Transient,108.37,0,0,Check-Out,2018-06-02 -City Hotel,1,211,2017,March,17,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,38.9,0,0,Canceled,2019-12-04 -City Hotel,0,0,2016,March,17,7,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,D,D,0,No Deposit,11.0,179.0,0,Group,115.07,0,1,Check-Out,2019-01-03 -Resort Hotel,1,0,2015,July,36,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,44.94,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,March,10,31,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.36,0,2,Check-Out,2019-08-04 -City Hotel,1,7,2016,August,37,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.37,0,1,No-Show,2019-09-03 -City Hotel,0,11,2016,December,53,31,0,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,99.18,0,0,Check-Out,2019-09-03 -City Hotel,0,148,2016,September,44,12,1,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,167.46,0,2,Check-Out,2019-05-04 -City Hotel,1,13,2016,October,44,29,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Group,76.12,0,1,Canceled,2019-10-04 -Resort Hotel,0,98,2017,March,11,19,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,120.96,0,0,No-Show,2020-03-03 -City Hotel,0,3,2017,March,17,12,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,86.23,0,2,Check-Out,2020-01-04 -City Hotel,1,100,2015,July,33,5,2,5,2,0.0,0,BB,,Direct,Undefined,0,0,0,B,B,1,No Deposit,17.0,179.0,0,Transient-Party,73.92,0,1,Canceled,2018-07-03 -Resort Hotel,1,156,2016,March,17,25,1,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,181.0,179.0,0,Transient-Party,72.89,0,0,Canceled,2018-11-02 -City Hotel,1,254,2016,May,17,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,81.29,0,0,Canceled,2019-02-01 -City Hotel,0,9,2017,March,14,9,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,238.0,179.0,0,Transient,65.29,0,2,Check-Out,2020-01-04 -Resort Hotel,0,9,2015,December,51,10,2,2,2,0.0,0,Undefined,DEU,Groups,Direct,0,0,0,A,A,0,No Deposit,100.0,179.0,0,Transient-Party,103.31,0,0,Check-Out,2019-11-03 -City Hotel,1,326,2017,June,26,18,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,140.3,0,0,Canceled,2020-02-01 -City Hotel,1,133,2016,October,46,20,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,B,0,No Deposit,7.0,179.0,0,Contract,68.96,0,0,Canceled,2018-08-03 -City Hotel,0,11,2016,September,43,18,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,1,A,D,0,No Deposit,13.0,331.0,0,Transient,159.24,0,0,Check-Out,2019-08-04 -Resort Hotel,1,257,2017,August,38,29,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,111.83,0,3,Canceled,2019-12-04 -City Hotel,1,363,2016,December,51,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,94.0,179.0,0,Transient-Party,111.26,0,0,Canceled,2019-10-04 -City Hotel,0,2,2016,December,50,15,1,2,3,0.0,0,BB,CHE,Online TA,GDS,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,135.7,0,0,Check-Out,2019-11-03 -Resort Hotel,1,100,2016,May,21,31,0,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,72.84,0,0,Canceled,2019-01-03 -City Hotel,0,0,2015,November,32,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,E,F,0,No Deposit,16.0,240.0,0,Group,0.0,0,0,Check-Out,2018-08-03 -Resort Hotel,0,47,2017,March,9,24,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,70.95,0,2,Check-Out,2020-02-01 -Resort Hotel,0,58,2017,July,34,26,0,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,153,2016,December,50,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,78.94,0,0,Check-Out,2019-09-03 -Resort Hotel,0,165,2016,March,18,31,0,5,2,0.0,0,HB,BEL,Groups,Corporate,0,0,0,A,I,1,No Deposit,13.0,179.0,75,Transient-Party,68.44,0,0,Check-Out,2019-06-03 -Resort Hotel,0,290,2015,September,33,16,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,0,No Deposit,3.0,179.0,0,Contract,59.3,0,0,Check-Out,2018-01-03 -City Hotel,1,14,2016,March,9,13,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,76.51,0,0,Canceled,2018-12-03 -City Hotel,0,13,2017,February,9,20,0,1,1,0.0,0,FB,,Corporate,Corporate,1,0,0,A,A,2,No Deposit,11.0,331.0,0,Transient,43.09,0,0,Check-Out,2019-11-03 -City Hotel,0,167,2016,October,44,28,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.15,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2015,April,18,30,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,175.12,1,0,Check-Out,2019-03-04 -City Hotel,1,16,2016,December,10,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,69.0,0,Transient,41.53,1,0,Check-Out,2019-11-03 -City Hotel,0,49,2017,May,22,21,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.62,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,June,23,26,1,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,E,0,No Deposit,14.0,181.0,0,Transient,86.02,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2016,January,4,21,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,101.01,0,3,Check-Out,2019-02-01 -City Hotel,0,0,2016,March,9,13,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,14.0,103.0,0,Group,1.15,0,0,Check-Out,2019-04-03 -City Hotel,1,422,2016,July,11,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,63.1,0,0,Canceled,2018-09-02 -City Hotel,0,97,2017,June,26,20,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.48,0,1,Check-Out,2020-04-02 -City Hotel,0,46,2015,October,47,27,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,61.28,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2016,February,34,5,0,5,1,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,188.0,179.0,0,Transient,94.98,0,0,Check-Out,2018-12-03 -Resort Hotel,0,27,2015,December,51,25,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,142.0,179.0,0,Transient-Party,58.79,0,0,Check-Out,2018-07-03 -City Hotel,1,163,2017,May,16,16,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,91.6,0,0,Canceled,2020-04-02 -City Hotel,0,7,2016,April,23,28,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,132.37,0,0,Check-Out,2019-02-01 -Resort Hotel,0,17,2016,July,32,31,4,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,71.59,0,1,Check-Out,2019-05-04 -Resort Hotel,0,19,2016,November,44,19,2,5,2,0.0,0,BB,USA,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,77.83,0,0,Check-Out,2019-10-04 -Resort Hotel,0,41,2015,August,37,21,1,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,125.84,0,0,Check-Out,2018-05-03 -City Hotel,0,0,2016,November,51,12,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,198.0,179.0,0,Transient,73.13,0,0,Check-Out,2019-10-04 -City Hotel,1,56,2016,August,35,12,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,102.83,0,0,Canceled,2019-02-01 -City Hotel,0,26,2017,March,10,21,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,25.0,179.0,63,Transient,74.25,0,0,Check-Out,2019-09-03 -City Hotel,1,17,2016,October,44,20,0,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient,81.77,0,0,Canceled,2019-05-04 -City Hotel,0,85,2015,November,50,29,0,2,1,0.0,0,BB,BRA,Online TA,Corporate,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,68.62,0,1,Check-Out,2018-08-03 -City Hotel,0,304,2016,September,45,17,0,1,1,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,121.0,0,1,Check-Out,2018-05-03 -City Hotel,0,16,2016,June,28,30,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,126.97,0,0,Check-Out,2020-04-02 -City Hotel,0,4,2017,January,10,27,1,0,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,74.43,0,3,Check-Out,2018-12-03 -City Hotel,1,258,2017,August,37,13,2,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,149.29,0,0,Canceled,2020-06-02 -City Hotel,0,16,2017,August,36,28,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.65,0,2,Check-Out,2020-06-02 -City Hotel,1,52,2015,October,45,19,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,66.08,0,0,Canceled,2018-09-02 -Resort Hotel,0,382,2016,October,43,28,1,2,1,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,95.71,0,0,No-Show,2019-08-04 -City Hotel,1,59,2016,January,3,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,61.68,0,0,Canceled,2018-11-02 -Resort Hotel,1,166,2017,July,25,22,1,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,March,13,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,60.49,0,0,Check-Out,2019-03-04 -City Hotel,0,139,2017,February,25,4,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.87,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,October,42,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,270.0,179.0,0,Transient-Party,36.08,0,0,Check-Out,2019-09-03 -City Hotel,0,94,2016,March,11,15,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,29.0,179.0,0,Transient,76.63,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2016,March,8,10,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,98.0,179.0,0,Transient,63.11,0,0,Check-Out,2019-02-01 -City Hotel,1,81,2017,June,24,20,0,2,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,127.46,0,1,Canceled,2020-02-01 -Resort Hotel,0,0,2016,October,42,8,1,0,1,0.0,0,HB,AUT,Corporate,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,75,Transient-Party,61.34,1,0,Check-Out,2019-05-04 -Resort Hotel,0,3,2015,December,53,9,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,34.28,0,0,Check-Out,2018-10-03 -City Hotel,1,47,2016,May,35,20,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,45.39,0,1,Check-Out,2019-02-01 -Resort Hotel,0,3,2016,July,27,31,2,5,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,215.3,0,1,Check-Out,2019-05-04 -City Hotel,1,19,2017,February,10,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,72.37,0,0,Canceled,2019-10-04 -City Hotel,0,8,2016,October,45,14,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.77,0,2,Check-Out,2019-06-03 -Resort Hotel,0,97,2016,October,42,31,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,241.0,179.0,0,Transient,51.73,0,2,Check-Out,2019-02-01 -Resort Hotel,1,302,2015,August,34,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,60.17,0,0,Canceled,2018-06-02 -City Hotel,1,11,2015,October,42,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,81.53,0,0,Canceled,2018-08-03 -City Hotel,0,39,2017,February,9,2,0,1,2,0.0,0,HB,BRA,Corporate,Corporate,1,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,97.53,0,1,Check-Out,2019-10-04 -Resort Hotel,1,252,2017,August,37,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.8,0,0,Canceled,2018-03-03 -Resort Hotel,0,13,2017,May,43,11,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,123.13,1,3,Check-Out,2019-12-04 -City Hotel,1,156,2017,March,18,9,2,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,H,E,1,No Deposit,186.0,179.0,0,Transient,173.94,0,0,Canceled,2019-01-03 -City Hotel,0,11,2017,June,21,30,0,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.33,0,2,Check-Out,2020-06-02 -Resort Hotel,0,110,2016,February,9,24,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,43.58,0,0,Check-Out,2018-11-02 -City Hotel,0,183,2017,August,34,30,0,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,122.57,0,1,Check-Out,2019-12-04 -Resort Hotel,0,134,2017,August,39,28,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,178.0,179.0,0,Transient,119.38,0,2,Check-Out,2020-07-03 -City Hotel,0,42,2016,November,45,30,0,1,3,0.0,0,BB,CHN,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,131.45,0,0,Check-Out,2019-07-04 -City Hotel,0,95,2017,April,16,31,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,127.54,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,October,43,28,1,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient-Party,66.48,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2017,April,22,20,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,123.95,0,0,Check-Out,2020-04-02 -City Hotel,0,14,2015,October,50,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Group,59.48,0,0,Check-Out,2018-08-03 -City Hotel,0,228,2017,February,10,25,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,76.14,0,0,Check-Out,2020-02-01 -City Hotel,1,115,2015,August,38,8,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.76,0,0,Canceled,2017-11-02 -Resort Hotel,0,9,2017,February,10,21,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,30.88,0,1,Check-Out,2019-10-04 -Resort Hotel,0,157,2015,July,32,20,2,5,2,0.0,0,FB,PRT,Offline TA/TO,Direct,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,84.38,0,0,Check-Out,2018-06-02 -City Hotel,0,81,2017,May,21,20,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.33,0,0,Check-Out,2020-04-02 -City Hotel,0,10,2016,February,11,20,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,75.25,0,1,Check-Out,2019-02-01 -City Hotel,1,0,2016,December,45,10,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,1,0,E,A,0,No Deposit,6.0,179.0,0,Transient,116.67,0,2,Canceled,2019-08-04 -Resort Hotel,0,10,2016,July,34,16,1,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,162.83,0,1,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,October,44,27,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,72.0,0,Transient-Party,31.79,1,0,Check-Out,2018-09-02 -City Hotel,1,255,2016,June,44,21,1,2,1,0.0,0,SC,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,316.0,179.0,0,Transient,75.0,0,0,Canceled,2019-06-03 -City Hotel,1,41,2017,May,21,5,2,0,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,75.29,0,0,Canceled,2019-07-04 -Resort Hotel,0,85,2016,June,24,29,0,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,87.92,0,2,Check-Out,2019-05-04 -City Hotel,0,285,2015,July,30,8,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.37,0,0,Check-Out,2018-07-03 -City Hotel,1,102,2017,July,29,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,128.72,0,0,Canceled,2020-06-02 -Resort Hotel,0,15,2015,October,43,19,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,35.99,0,0,Check-Out,2018-12-03 -City Hotel,1,0,2015,July,35,25,2,1,2,0.0,0,BB,,Online TA,Direct,0,1,0,A,F,2,No Deposit,12.0,179.0,0,Transient,152.59,1,0,Canceled,2018-06-02 -Resort Hotel,1,1,2017,March,10,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,E,D,1,No Deposit,17.0,232.0,0,Transient,61.74,0,0,Canceled,2019-11-03 -Resort Hotel,0,1,2016,January,3,9,0,3,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-10-03 -Resort Hotel,0,2,2017,February,11,9,0,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,70.11,0,2,Check-Out,2020-02-01 -City Hotel,1,389,2017,June,21,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,99.44,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2016,November,49,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,15.0,231.0,0,Transient,40.28,0,3,Check-Out,2019-09-03 -City Hotel,0,39,2017,February,10,28,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,223.0,0,Transient,63.73,0,0,Check-Out,2019-12-04 -City Hotel,1,56,2017,March,17,31,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,79.7,0,1,Canceled,2020-02-01 -Resort Hotel,1,194,2016,March,21,31,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient,60.54,0,0,Canceled,2019-02-01 -City Hotel,1,92,2017,July,31,21,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,130.44,0,2,Canceled,2020-06-02 -Resort Hotel,0,60,2016,December,45,9,1,2,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,C,1,No Deposit,15.0,202.0,0,Transient,64.87,1,0,Check-Out,2019-06-03 -City Hotel,0,96,2015,October,42,22,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Contract,61.15,0,0,Check-Out,2018-09-02 -Resort Hotel,1,146,2016,October,44,25,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,281.0,179.0,0,Transient,93.61,0,0,Canceled,2019-08-04 -Resort Hotel,1,48,2016,August,35,20,0,5,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,228.59,0,0,Canceled,2019-08-04 -City Hotel,0,90,2015,August,36,24,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,111.44,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,May,27,2,1,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,104.08,1,0,Check-Out,2019-11-03 -City Hotel,1,80,2017,May,21,21,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.65,0,0,Canceled,2020-03-03 -City Hotel,1,0,2016,January,4,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,59.39,0,0,No-Show,2018-12-03 -Resort Hotel,0,228,2015,October,44,30,1,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,124.28,0,1,Check-Out,2018-09-02 -City Hotel,1,148,2017,May,27,27,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,8.0,179.0,0,Transient,104.46,0,1,Canceled,2020-03-03 -City Hotel,0,0,2017,February,11,17,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,85.0,0,Transient,78.27,0,0,Check-Out,2020-01-04 -City Hotel,0,289,2015,August,37,27,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.97,0,0,Check-Out,2018-06-02 -Resort Hotel,0,12,2015,April,17,9,0,1,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,B,D,0,No Deposit,12.0,179.0,0,Transient-Party,144.97,0,0,Check-Out,2018-11-02 -City Hotel,1,53,2016,April,17,2,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,219.27,0,0,Canceled,2019-01-03 -Resort Hotel,0,95,2017,February,12,10,2,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,63.04,0,0,Check-Out,2019-11-03 -City Hotel,0,171,2016,September,42,16,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.49,0,2,Check-Out,2019-09-03 -Resort Hotel,0,98,2016,August,36,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,177.25,0,3,Check-Out,2020-05-03 -Resort Hotel,0,31,2017,May,23,28,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,284.0,179.0,0,Transient-Party,87.8,0,0,Check-Out,2020-05-03 -Resort Hotel,0,59,2017,March,9,18,2,5,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,39.86,0,0,Check-Out,2019-12-04 -Resort Hotel,0,94,2016,March,11,20,2,5,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,331.0,0,Transient,37.79,1,0,Check-Out,2019-02-01 -City Hotel,0,58,2016,December,50,2,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,78.11,0,0,No-Show,2018-12-03 -Resort Hotel,1,160,2016,March,9,16,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,257.0,179.0,0,Transient,43.96,0,0,Canceled,2019-02-01 -City Hotel,1,296,2015,July,36,12,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.0,0,0,Canceled,2017-11-02 -Resort Hotel,0,41,2016,October,52,25,1,1,2,0.0,0,HB,FRA,Direct,TA/TO,0,0,0,E,G,0,No Deposit,246.0,179.0,0,Transient,78.17,0,2,Check-Out,2019-11-03 -City Hotel,0,2,2015,October,42,30,1,3,1,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,113.62,0,0,Check-Out,2018-08-03 -Resort Hotel,1,89,2016,August,35,12,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient-Party,180.84,1,0,Canceled,2019-04-03 -Resort Hotel,1,14,2016,February,11,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,58.97,0,0,Canceled,2018-11-02 -City Hotel,0,0,2015,August,36,10,0,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,G,A,1,No Deposit,14.0,179.0,0,Transient,121.64,0,0,Check-Out,2018-07-03 -City Hotel,0,112,2016,August,43,20,1,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,170.27,0,0,Check-Out,2019-07-04 -Resort Hotel,0,51,2017,June,23,11,2,10,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,214.36,0,0,Check-Out,2020-06-02 -Resort Hotel,0,49,2016,July,32,14,2,7,2,1.0,0,HB,,Direct,Direct,0,0,0,F,E,1,No Deposit,17.0,179.0,0,Transient,126.97,0,2,Check-Out,2018-06-02 -Resort Hotel,1,34,2015,August,39,31,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,168.65,0,2,Canceled,2018-05-03 -Resort Hotel,0,49,2017,August,34,29,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,126.49,0,1,Check-Out,2020-07-03 -City Hotel,1,286,2015,July,32,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.48,0,0,Canceled,2017-11-02 -City Hotel,0,1,2016,June,24,10,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient-Party,75.56,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,February,10,29,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,83.0,0,Transient,61.94,0,0,Check-Out,2020-01-04 -City Hotel,1,115,2016,January,9,9,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,58.92,0,1,Canceled,2018-10-03 -City Hotel,0,146,2016,August,9,10,0,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,159.67,0,1,Check-Out,2020-04-02 -City Hotel,0,43,2017,February,8,14,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.65,0,3,Check-Out,2020-03-03 -City Hotel,0,188,2016,August,27,16,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,5.0,179.0,0,Transient,119.56,0,2,Check-Out,2019-06-03 -Resort Hotel,1,101,2016,May,21,21,2,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient-Party,252.0,0,0,Canceled,2019-02-01 -City Hotel,1,52,2016,December,53,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,60.21,0,0,Canceled,2018-10-03 -City Hotel,1,64,2017,August,38,24,1,4,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,F,0,No Deposit,14.0,179.0,0,Transient,210.71,0,0,Canceled,2020-07-03 -Resort Hotel,0,0,2015,August,35,5,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,254.0,179.0,0,Transient,249.8,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2015,October,43,22,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,96.1,0,0,Check-Out,2018-09-02 -City Hotel,0,59,2015,September,41,18,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,92.88,0,0,Check-Out,2018-09-02 -Resort Hotel,0,47,2016,October,46,20,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,261.0,179.0,0,Transient,33.64,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2015,December,32,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient-Party,114.8,0,0,Check-Out,2018-05-03 -City Hotel,1,23,2015,January,37,28,0,10,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,60.41,0,0,Canceled,2018-09-02 -City Hotel,0,202,2016,October,44,15,0,2,2,0.0,0,BB,DEU,Groups,Corporate,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient-Party,66.29,0,0,Check-Out,2019-08-04 -City Hotel,1,305,2017,May,24,28,1,2,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,117.12,0,0,Canceled,2020-05-03 -City Hotel,1,44,2015,October,45,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,77.12,0,0,Canceled,2018-08-03 -City Hotel,0,34,2016,June,21,16,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,124.93,0,2,Check-Out,2019-06-03 -Resort Hotel,0,19,2016,December,53,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,120.14,0,2,Check-Out,2019-10-04 -City Hotel,0,17,2017,June,22,20,2,1,3,2.0,0,BB,BRA,Direct,Direct,0,0,0,G,G,2,No Deposit,12.0,179.0,0,Transient,222.1,1,0,Check-Out,2020-03-03 -City Hotel,1,3,2016,March,52,13,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Canceled,2020-02-01 -City Hotel,0,42,2016,July,31,9,0,3,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,118.86,0,1,Check-Out,2019-07-04 -City Hotel,0,1,2016,May,23,13,0,1,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,104.79,0,0,Check-Out,2020-07-03 -City Hotel,0,0,2016,August,38,31,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.92,0,1,Check-Out,2019-05-04 -City Hotel,0,1,2015,December,16,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.37,0,0,Check-Out,2019-01-03 -City Hotel,1,393,2017,April,23,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.2,0,0,Canceled,2020-03-03 -City Hotel,1,101,2017,May,8,29,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,10.0,179.0,0,Transient-Party,93.08,0,1,Canceled,2020-03-03 -Resort Hotel,0,3,2017,March,8,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,245.0,179.0,0,Transient,63.43,1,2,Check-Out,2020-03-03 -City Hotel,0,11,2015,September,43,2,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,74.0,179.0,0,Transient-Party,112.41,0,0,Check-Out,2019-05-04 -City Hotel,1,392,2015,September,41,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,64.58,0,0,Canceled,2018-07-03 -City Hotel,0,3,2016,August,37,29,0,4,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,197.52,0,1,Check-Out,2019-08-04 -City Hotel,0,0,2017,January,7,13,1,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,152.28,0,0,Check-Out,2019-08-04 -City Hotel,0,241,2015,July,33,9,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,133.07,0,1,Check-Out,2018-06-02 -Resort Hotel,1,50,2017,April,17,17,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,63.27,0,0,Canceled,2020-03-03 -City Hotel,1,144,2017,April,16,25,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,66,Transient,96.87,0,0,Canceled,2019-11-03 -Resort Hotel,1,21,2015,August,37,4,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,250.0,179.0,0,Transient,181.53,1,0,Canceled,2018-06-02 -Resort Hotel,0,84,2016,December,53,18,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,76.94,0,0,Canceled,2019-11-03 -City Hotel,1,45,2016,October,39,23,2,2,2,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,120.98,0,3,Canceled,2019-02-01 -City Hotel,0,42,2016,June,22,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,123.24,0,1,Check-Out,2019-06-03 -Resort Hotel,0,3,2015,March,9,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,63.3,0,1,Check-Out,2018-06-02 -Resort Hotel,0,85,2017,July,34,6,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,121.56,1,2,Check-Out,2020-06-02 -Resort Hotel,0,83,2017,May,23,21,2,2,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,235.31,0,0,Check-Out,2020-05-03 -Resort Hotel,1,0,2016,June,25,13,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,193.63,0,0,Canceled,2019-06-03 -City Hotel,0,0,2017,March,9,14,0,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,79.24,0,1,Check-Out,2020-01-04 -Resort Hotel,1,40,2016,July,24,28,2,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,163.15,0,0,Canceled,2019-04-03 -City Hotel,0,15,2017,August,36,13,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,162.38,0,1,Check-Out,2019-11-03 -City Hotel,1,404,2016,June,36,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,41,Transient,63.36,0,0,Canceled,2018-08-03 -City Hotel,1,8,2015,February,10,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.53,0,0,No-Show,2018-12-03 -City Hotel,1,81,2017,May,20,16,2,3,2,0.0,0,SC,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,131.23,0,0,Canceled,2020-03-03 -Resort Hotel,0,267,2016,June,27,15,4,7,1,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,E,E,2,No Deposit,44.0,179.0,0,Transient,115.91,0,0,Check-Out,2019-02-01 -Resort Hotel,0,30,2016,April,18,28,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,118.79,1,2,Check-Out,2019-11-03 -Resort Hotel,0,388,2015,December,37,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,62.93,1,2,Check-Out,2018-12-03 -City Hotel,1,39,2016,January,3,13,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.48,0,0,Canceled,2018-10-03 -Resort Hotel,1,30,2015,July,32,5,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,172.0,179.0,0,Transient,61.95,0,0,Check-Out,2017-12-03 -Resort Hotel,0,7,2016,March,17,28,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,71.38,0,0,Check-Out,2019-01-03 -City Hotel,0,3,2016,July,25,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.2,0,0,Check-Out,2019-03-04 -Resort Hotel,1,305,2015,August,36,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.77,0,0,Canceled,2018-09-02 -City Hotel,1,40,2015,October,42,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,79.03,0,0,Canceled,2018-07-03 -City Hotel,0,1,2017,March,25,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,F,0,No Deposit,19.0,45.0,0,Group,0.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,17,2017,June,21,28,0,3,2,0.0,0,FB,USA,Direct,Direct,0,0,0,A,G,0,No Deposit,247.0,179.0,0,Transient,101.59,1,0,Check-Out,2020-02-01 -City Hotel,1,267,2016,May,28,12,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.12,0,0,Canceled,2019-01-03 -Resort Hotel,0,28,2017,February,10,20,0,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,41.97,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,June,26,10,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,185.0,0,Transient,88.76,0,0,Check-Out,2019-06-03 -City Hotel,0,17,2016,June,25,27,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,1,No Deposit,11.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-06-03 -Resort Hotel,0,212,2016,October,42,21,3,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,285.0,179.0,0,Transient-Party,35.19,0,0,Check-Out,2019-08-04 -City Hotel,1,14,2017,January,3,21,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.1,0,0,Canceled,2019-11-03 -City Hotel,0,0,2015,August,33,27,0,1,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,0.0,1,1,Check-Out,2018-07-03 -Resort Hotel,0,13,2017,May,10,15,1,3,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,61.66,0,0,Check-Out,2019-11-03 -City Hotel,0,198,2017,June,27,17,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,123.17,0,0,Check-Out,2020-05-03 -City Hotel,1,177,2015,November,51,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.17,0,1,Canceled,2018-08-03 -Resort Hotel,0,3,2015,November,49,8,2,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,85.0,179.0,0,Transient-Party,38.25,0,0,Check-Out,2019-02-01 -Resort Hotel,0,90,2017,April,17,21,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,173.0,179.0,0,Transient,181.41,0,0,Check-Out,2020-04-02 -City Hotel,1,53,2016,June,28,10,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,129.55,0,0,Canceled,2019-01-03 -Resort Hotel,0,17,2016,July,33,26,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,209.32,1,0,Check-Out,2019-02-01 -City Hotel,0,65,2017,June,30,20,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.58,0,0,Check-Out,2020-05-03 -City Hotel,0,50,2015,December,33,30,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.46,0,2,Check-Out,2018-06-02 -City Hotel,0,47,2017,April,20,9,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient-Party,98.36,0,2,Check-Out,2020-03-03 -City Hotel,1,260,2016,May,24,29,0,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.81,0,0,Canceled,2019-10-04 -City Hotel,0,204,2016,September,42,28,1,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,D,A,0,No Deposit,2.0,179.0,0,Contract,75.75,0,0,Check-Out,2019-07-04 -Resort Hotel,1,91,2015,December,53,6,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,283.0,179.0,0,Transient,72.17,0,0,Canceled,2018-12-03 -City Hotel,0,45,2016,May,22,24,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,139.3,0,1,Check-Out,2019-03-04 -City Hotel,1,327,2017,July,31,20,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,12.0,179.0,0,Transient,173.09,0,0,Canceled,2020-02-01 -City Hotel,0,29,2016,June,31,10,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.11,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,January,2,9,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,17.0,82.0,0,Transient,41.93,0,0,Check-Out,2019-10-04 -Resort Hotel,1,99,2016,March,16,21,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,38.28,0,0,Canceled,2019-01-03 -Resort Hotel,0,159,2017,March,26,13,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,104.34,0,3,Check-Out,2020-05-03 -Resort Hotel,0,15,2016,March,4,13,2,1,2,0.0,0,BB,CHE,Direct,Corporate,0,0,0,E,E,0,No Deposit,185.0,179.0,0,Transient,63.7,0,0,Check-Out,2019-10-04 -City Hotel,1,29,2016,October,42,2,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,66.88,0,0,Canceled,2019-04-03 -Resort Hotel,0,4,2017,August,37,11,2,5,1,0.0,0,BB,GBR,Undefined,Corporate,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,182.42,0,0,Check-Out,2020-06-02 -City Hotel,1,169,2016,June,36,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,0,Transient,120.83,0,0,Canceled,2018-08-03 -City Hotel,1,413,2017,February,9,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.69,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2015,December,43,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,249.0,179.0,0,Transient,49.54,1,2,Check-Out,2018-12-03 -Resort Hotel,0,82,2016,May,34,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,148.74,0,3,Check-Out,2019-06-03 -City Hotel,0,2,2017,March,45,10,0,1,1,0.0,0,SC,CHN,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,111.02,0,0,Check-Out,2019-12-04 -Resort Hotel,0,8,2017,February,4,2,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,118.6,0,1,Check-Out,2020-02-01 -Resort Hotel,0,83,2016,March,21,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,172.0,179.0,0,Transient,113.3,0,0,Check-Out,2019-01-03 -Resort Hotel,0,20,2016,April,53,8,1,4,3,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,128.03,0,0,Check-Out,2019-03-04 -Resort Hotel,0,152,2016,March,17,31,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,15.0,221.0,0,Transient-Party,43.7,0,0,Check-Out,2018-11-02 -Resort Hotel,0,7,2016,February,10,28,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,61.14,0,0,Check-Out,2019-04-03 -Resort Hotel,0,162,2016,August,37,9,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,120.91,0,2,Check-Out,2020-05-03 -City Hotel,0,2,2017,June,27,21,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,154.11,0,1,Check-Out,2020-04-02 -Resort Hotel,0,90,2017,June,29,22,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,161.0,179.0,0,Transient,120.26,0,3,Check-Out,2020-04-02 -Resort Hotel,0,60,2017,March,17,21,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.83,0,2,Check-Out,2020-04-02 -City Hotel,0,200,2016,August,36,17,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,143.68,0,0,Check-Out,2019-08-04 -City Hotel,1,98,2017,May,25,15,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient,41.48,0,0,Canceled,2020-03-03 -City Hotel,1,99,2015,September,45,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,65.0,179.0,0,Transient,99.25,0,0,Canceled,2018-08-03 -City Hotel,0,45,2015,July,31,6,2,5,2,2.0,0,BB,,Online TA,Undefined,0,0,0,B,B,3,No Deposit,12.0,179.0,0,Transient-Party,120.33,0,1,Check-Out,2018-06-02 -City Hotel,1,96,2016,June,26,17,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.11,0,0,Canceled,2019-03-04 -City Hotel,0,250,2015,July,44,9,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,63.21,0,0,Check-Out,2018-06-02 -City Hotel,0,134,2016,March,15,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,81.0,179.0,0,Transient,101.42,0,0,Check-Out,2019-01-03 -City Hotel,0,40,2017,March,18,20,2,6,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,69.49,0,0,Check-Out,2019-03-04 -City Hotel,0,9,2017,July,29,18,1,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,217.52,0,1,Check-Out,2020-03-03 -Resort Hotel,0,88,2017,May,37,29,1,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,98.03,1,2,Check-Out,2019-10-04 -City Hotel,0,96,2016,February,9,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.95,0,3,Check-Out,2018-12-03 -Resort Hotel,0,2,2015,November,42,12,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Group,89.83,0,1,Check-Out,2018-10-03 -Resort Hotel,0,53,2017,April,19,5,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,238.0,179.0,0,Transient,109.03,0,2,Check-Out,2020-02-01 -City Hotel,1,49,2015,July,33,19,0,1,1,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,51.73,0,0,Canceled,2020-07-03 -Resort Hotel,1,63,2017,July,26,26,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,241.0,179.0,0,Transient,74.26,0,1,Canceled,2020-02-01 -City Hotel,1,0,2016,August,36,9,0,1,3,0.0,0,SC,FRA,Online TA,GDS,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,2019-12-04 -City Hotel,0,39,2016,October,45,22,1,0,1,0.0,0,BB,CHE,Online TA,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,89.24,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2015,November,50,19,2,1,2,0.0,0,FB,GBR,Complementary,Direct,0,0,0,A,E,2,No Deposit,199.0,179.0,0,Transient-Party,77.1,0,0,Check-Out,2019-10-04 -City Hotel,0,269,2016,June,25,14,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.17,0,3,Check-Out,2019-05-04 -City Hotel,0,149,2017,July,34,12,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.58,0,1,Check-Out,2020-06-02 -City Hotel,0,28,2016,December,4,27,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.19,0,0,Check-Out,2019-06-03 -City Hotel,0,4,2015,August,40,1,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,122.9,0,0,Check-Out,2019-05-04 -Resort Hotel,0,36,2016,March,12,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,86.0,0,Transient,62.22,1,0,Check-Out,2019-02-01 -Resort Hotel,0,157,2016,August,37,31,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,73.33,0,0,Check-Out,2019-05-04 -Resort Hotel,0,48,2016,December,52,12,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,187.0,179.0,0,Transient,75.11,0,0,Check-Out,2019-04-03 -City Hotel,0,35,2016,October,52,28,0,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Transient,62.88,0,2,Check-Out,2019-11-03 -Resort Hotel,1,429,2015,August,38,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,59.59,0,0,Canceled,2017-11-02 -City Hotel,1,51,2017,February,10,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,30.58,0,0,Canceled,2018-11-02 -City Hotel,1,93,2016,May,42,5,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,118.18,0,2,Canceled,2019-02-01 -City Hotel,0,1,2017,April,26,12,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.28,0,0,Check-Out,2020-03-03 -Resort Hotel,0,10,2016,March,16,30,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,237.0,179.0,0,Transient-Party,65.25,0,0,Check-Out,2019-01-03 -City Hotel,0,3,2016,September,37,21,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.36,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,February,10,31,0,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,2.45,1,1,Check-Out,2019-10-04 -Resort Hotel,1,52,2017,April,10,28,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,239.0,179.0,0,Transient,82.34,0,0,Canceled,2020-01-04 -City Hotel,1,416,2015,September,42,14,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,41,Transient-Party,60.05,0,0,Canceled,2017-10-03 -City Hotel,0,11,2017,June,26,21,0,2,1,0.0,0,BB,DEU,Online TA,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.56,0,1,Check-Out,2020-06-02 -City Hotel,0,10,2017,June,25,21,2,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.85,0,1,Check-Out,2020-03-03 -City Hotel,0,244,2016,July,26,20,2,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.68,0,0,Check-Out,2018-05-03 -City Hotel,1,293,2017,May,19,14,2,0,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,158.49,0,0,Check-Out,2020-03-03 -City Hotel,1,296,2015,September,43,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.29,0,0,Canceled,2018-08-03 -City Hotel,1,6,2017,May,20,27,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,16.0,239.0,0,Transient,0.0,0,0,Canceled,2020-01-04 -City Hotel,0,11,2015,October,43,2,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,101.57,1,0,Check-Out,2018-08-03 -City Hotel,1,324,2015,September,42,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,63.02,0,0,Canceled,2018-08-03 -City Hotel,1,409,2016,September,51,31,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,43,Transient,86.32,0,0,Canceled,2019-06-03 -City Hotel,0,8,2016,August,37,29,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.93,0,0,Check-Out,2019-05-04 -City Hotel,1,81,2016,March,10,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,66.66,0,0,Canceled,2018-12-03 -City Hotel,1,260,2016,April,20,24,0,4,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,70.31,0,0,Canceled,2019-03-04 -Resort Hotel,1,329,2017,August,30,14,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,211.05,0,0,Canceled,2020-07-03 -City Hotel,0,138,2016,October,37,19,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.42,0,1,Check-Out,2019-04-03 -City Hotel,1,39,2017,March,21,8,0,4,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,64.89,0,1,Canceled,2019-11-03 -City Hotel,1,349,2015,October,46,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,81.74,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,September,45,20,3,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,181.42,1,0,Check-Out,2019-05-04 -City Hotel,0,48,2017,September,33,10,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.41,0,1,Check-Out,2019-12-04 -Resort Hotel,1,248,2017,July,32,6,2,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Canceled,2020-01-04 -City Hotel,0,35,2016,October,45,9,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,109.73,0,2,Check-Out,2019-01-03 -Resort Hotel,0,30,2016,December,51,8,2,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,3,No Deposit,325.0,179.0,0,Transient-Party,118.33,1,2,Check-Out,2019-12-04 -City Hotel,1,39,2016,June,26,9,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,191.22,0,0,Canceled,2019-05-04 -City Hotel,1,96,2016,October,40,3,1,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,142.79,0,0,Canceled,2019-06-03 -City Hotel,0,3,2017,June,25,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,47.98,0,3,Check-Out,2019-03-04 -City Hotel,0,2,2017,April,21,15,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,F,0,No Deposit,18.0,179.0,0,Transient,149.46,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,February,11,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,F,0,No Deposit,241.0,79.0,0,Transient,33.33,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,March,14,9,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,34.86,0,0,Check-Out,2019-04-03 -City Hotel,0,247,2015,October,42,20,0,1,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,93.57,0,0,Check-Out,2018-06-02 -Resort Hotel,0,187,2016,July,32,24,3,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,214.14,0,0,Check-Out,2019-08-04 -City Hotel,1,10,2017,March,14,9,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Group,1.41,0,0,Canceled,2020-03-03 -City Hotel,0,40,2015,September,53,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.72,0,1,Check-Out,2019-06-03 -Resort Hotel,0,40,2016,February,22,15,0,1,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,E,0,No Deposit,245.0,179.0,0,Transient,46.41,0,1,Check-Out,2019-02-01 -Resort Hotel,0,90,2017,May,26,18,0,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,91.47,1,2,Check-Out,2020-02-01 -City Hotel,0,4,2016,June,25,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,101.14,0,0,Check-Out,2019-02-01 -City Hotel,0,55,2015,November,50,30,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,125.07,0,0,Check-Out,2018-11-02 -City Hotel,1,290,2017,March,18,5,0,1,2,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,B,F,0,No Deposit,14.0,179.0,0,Transient,69.77,0,0,Canceled,2020-03-03 -City Hotel,1,95,2016,August,34,9,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.6,0,0,Canceled,2019-05-04 -Resort Hotel,0,6,2016,October,45,27,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,94.0,179.0,0,Transient-Party,76.36,0,0,Check-Out,2019-07-04 -City Hotel,0,15,2016,November,50,10,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,56.59,0,0,Check-Out,2019-10-04 -Resort Hotel,0,3,2017,March,8,17,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,40.81,0,0,Check-Out,2020-04-02 -City Hotel,0,10,2015,August,37,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,8.0,179.0,0,Group,202.37,0,1,Check-Out,2019-05-04 -City Hotel,1,31,2017,March,11,21,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Contract,64.59,0,0,Canceled,2019-10-04 -City Hotel,1,206,2016,July,35,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,213.3,0,1,Canceled,2020-02-01 -City Hotel,1,265,2016,August,26,17,0,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,87.67,0,0,Canceled,2019-04-03 -Resort Hotel,0,155,2016,March,19,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient-Party,64.38,0,0,Check-Out,2019-01-03 -City Hotel,1,61,2016,October,45,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.99,0,0,Canceled,2017-12-03 -City Hotel,0,49,2016,November,45,26,1,6,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Contract,120.99,0,2,Check-Out,2019-12-04 -City Hotel,0,51,2017,March,17,27,0,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,260.0,179.0,0,Transient,69.13,0,0,Check-Out,2020-03-03 -Resort Hotel,0,90,2016,December,51,16,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,378.0,179.0,0,Transient-Party,123.62,0,3,Check-Out,2019-11-03 -City Hotel,0,3,2017,July,37,6,0,3,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,125.46,0,1,Check-Out,2020-07-03 -City Hotel,0,85,2017,May,22,15,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient-Party,114.08,0,0,Check-Out,2020-02-01 -Resort Hotel,1,185,2016,June,37,31,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,76.87,0,0,Canceled,2019-05-04 -Resort Hotel,0,2,2017,February,12,13,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,43.74,0,0,Check-Out,2019-10-04 -City Hotel,1,3,2017,June,33,2,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,1,0,F,D,0,Non Refund,10.0,179.0,0,Transient,156.21,0,0,Canceled,2020-07-03 -Resort Hotel,0,14,2017,January,3,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,378.0,89.0,0,Transient,35.19,0,0,Check-Out,2020-03-03 -City Hotel,0,30,2016,December,52,27,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.62,0,2,Check-Out,2019-11-03 -Resort Hotel,1,34,2017,April,23,28,0,1,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,193.02,1,3,Canceled,2020-03-03 -City Hotel,1,163,2016,April,17,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,59.74,0,0,Canceled,2019-01-03 -City Hotel,0,0,2017,January,4,7,0,1,1,0.0,0,SC,DEU,Online TA,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,70.28,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,October,45,15,0,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,144.05,0,1,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,January,10,16,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,95.48,0,0,Check-Out,2019-02-01 -City Hotel,0,23,2016,July,32,18,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.78,0,2,Check-Out,2019-05-04 -City Hotel,0,13,2017,May,20,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.13,0,0,Check-Out,2020-04-02 -Resort Hotel,1,285,2017,February,8,24,2,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,269.0,179.0,0,Transient,25.03,0,0,Canceled,2019-03-04 -City Hotel,0,29,2015,September,40,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,2.0,179.0,0,Transient-Party,36.45,0,0,Check-Out,2018-08-03 -City Hotel,1,51,2017,April,20,5,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,99.08,0,0,Canceled,2020-01-04 -Resort Hotel,0,163,2016,September,19,9,2,6,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,84.7,0,1,Check-Out,2019-04-03 -City Hotel,0,387,2015,September,42,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.58,0,0,Check-Out,2018-08-03 -Resort Hotel,0,245,2016,July,36,2,2,2,2,1.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,92.3,0,2,Check-Out,2019-08-04 -Resort Hotel,0,145,2016,June,26,16,0,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,175.0,179.0,0,Transient-Party,77.62,0,0,Check-Out,2019-06-03 -City Hotel,1,329,2016,March,16,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,62.03,0,0,Canceled,2018-10-03 -City Hotel,1,37,2016,November,34,18,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,131.53,0,0,Canceled,2018-10-03 -Resort Hotel,0,298,2016,October,43,16,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,138.44,0,0,Check-Out,2019-12-04 -City Hotel,1,181,2016,July,32,13,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,175.97,0,0,Canceled,2019-05-04 -City Hotel,0,14,2017,July,30,6,0,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.01,0,1,Check-Out,2020-06-02 -Resort Hotel,0,269,2017,June,31,6,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,141.0,179.0,0,Contract,80.68,0,0,Check-Out,2020-04-02 -City Hotel,0,18,2015,August,32,4,2,4,2,0.0,0,BB,ESP,Complementary,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,73.62,0,0,Check-Out,2018-07-03 -City Hotel,1,60,2017,February,8,13,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,155.0,179.0,0,Transient,71.12,0,0,Canceled,2020-04-02 -City Hotel,1,316,2015,October,45,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.2,0,0,Canceled,2017-11-02 -Resort Hotel,0,8,2015,December,53,30,1,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,57.05,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,August,35,31,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,203.73,0,1,Check-Out,2019-06-03 -City Hotel,0,18,2016,November,49,13,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,73.31,0,0,Check-Out,2019-09-03 -City Hotel,1,258,2016,July,50,4,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,L,0,No Deposit,8.0,179.0,75,Transient,153.3,0,0,Canceled,2018-12-03 -City Hotel,1,166,2015,September,38,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,85.16,0,0,Canceled,2018-04-02 -Resort Hotel,0,111,2017,March,10,28,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,84.54,0,1,Check-Out,2020-04-02 -City Hotel,0,3,2017,June,27,8,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,124.03,0,0,Check-Out,2020-02-01 -City Hotel,0,32,2017,May,24,27,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.13,0,1,Check-Out,2019-06-03 -City Hotel,1,310,2016,March,37,5,1,2,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,75,Transient,63.59,0,0,Canceled,2019-07-04 -City Hotel,1,333,2017,July,35,24,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,313.0,179.0,0,Transient,78.08,0,0,Canceled,2019-10-04 -City Hotel,1,281,2015,July,34,31,2,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.51,0,2,Canceled,2017-10-03 -Resort Hotel,1,330,2015,December,50,19,2,3,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,89.95,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2016,September,44,16,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,177.0,179.0,0,Transient,163.87,0,0,Check-Out,2019-06-03 -Resort Hotel,0,155,2017,March,18,25,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,1,A,D,0,No Deposit,15.0,223.0,0,Transient-Party,39.4,0,0,Check-Out,2019-12-04 -City Hotel,0,8,2017,February,7,15,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.26,0,0,Check-Out,2020-02-01 -City Hotel,0,11,2016,October,42,6,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,84.71,0,1,Check-Out,2019-06-03 -Resort Hotel,0,152,2016,April,16,31,2,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,E,E,1,Refundable,11.0,223.0,75,Transient-Party,185.21,0,0,Check-Out,2019-02-01 -City Hotel,0,35,2017,March,22,9,1,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,121.45,0,1,Check-Out,2020-04-02 -Resort Hotel,0,170,2017,August,34,13,2,5,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,210.82,0,1,Check-Out,2020-06-02 -City Hotel,1,136,2016,March,17,31,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,68.98,0,0,Canceled,2019-01-03 -City Hotel,1,250,2015,August,38,24,2,2,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,143.97,1,0,Canceled,2018-06-02 -City Hotel,0,36,2016,December,44,24,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,84.09,0,1,Check-Out,2018-11-02 -Resort Hotel,1,14,2016,March,10,24,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,38.0,179.0,0,Transient,31.97,0,0,Canceled,2019-03-04 -City Hotel,1,158,2016,March,16,17,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,318.0,179.0,0,Transient,59.57,0,0,Canceled,2018-11-02 -City Hotel,0,256,2016,July,27,11,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,105.71,0,2,Check-Out,2018-12-03 -Resort Hotel,1,160,2016,March,16,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient,62.19,0,0,Canceled,2019-03-04 -Resort Hotel,0,38,2015,December,51,5,2,5,2,0.0,0,BB,CHE,Online TA,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,106.26,0,0,Check-Out,2019-09-03 -City Hotel,0,13,2016,July,39,6,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,175.62,0,1,Check-Out,2019-08-04 -City Hotel,1,255,2016,July,30,15,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,2.0,179.0,0,Contract,133.32,0,0,Canceled,2018-06-02 -Resort Hotel,0,267,2016,July,29,21,2,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,125.71,0,2,Check-Out,2019-02-01 -City Hotel,0,9,2016,January,3,25,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,69.06,0,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2016,March,12,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,223.0,0,Transient-Party,47.83,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,March,9,12,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.85,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2017,March,13,6,0,1,1,0.0,0,BB,GBR,Aviation,Corporate,1,0,0,A,E,0,No Deposit,180.0,47.0,0,Transient,82.14,0,0,Check-Out,2020-04-02 -City Hotel,1,2,2016,January,4,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,62.0,179.0,0,Transient,64.41,0,0,No-Show,2018-12-03 -Resort Hotel,1,34,2015,September,44,5,0,2,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,33.34,0,0,No-Show,2018-06-02 -City Hotel,1,37,2016,March,10,30,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,1,0,B,A,0,No Deposit,9.0,179.0,0,Transient,70.42,0,0,Canceled,2018-10-03 -Resort Hotel,0,230,2016,October,43,10,1,5,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,239.0,179.0,0,Transient,95.2,0,2,Check-Out,2019-08-04 -Resort Hotel,0,307,2016,October,42,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,60.34,0,0,Check-Out,2019-08-04 -City Hotel,0,3,2017,February,9,18,0,3,1,0.0,0,SC,NOR,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,44.79,0,1,Check-Out,2020-03-03 -City Hotel,1,25,2015,December,50,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,17,Transient-Party,61.19,0,0,Canceled,2018-08-03 -City Hotel,0,2,2015,December,50,6,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,C,0,No Deposit,93.0,179.0,0,Transient-Party,69.03,0,0,Check-Out,2018-06-02 -City Hotel,0,46,2015,October,43,16,1,3,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,2,No Deposit,13.0,216.0,0,Transient-Party,88.51,0,0,Check-Out,2018-08-03 -Resort Hotel,0,7,2016,May,21,28,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,1,No Deposit,240.0,179.0,0,Transient,64.3,1,1,Check-Out,2019-03-04 -City Hotel,0,3,2016,October,47,14,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,10.0,179.0,0,Transient-Party,197.87,1,0,Check-Out,2019-06-03 -Resort Hotel,0,168,2017,February,11,24,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,242.0,179.0,0,Transient,47.13,1,2,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,February,7,19,1,1,2,0.0,0,BB,GBR,Direct,Corporate,0,0,0,A,D,0,No Deposit,17.0,331.0,0,Transient,39.56,0,0,Check-Out,2020-02-01 -City Hotel,1,0,2017,February,3,8,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.21,0,0,Canceled,2019-11-03 -Resort Hotel,1,235,2015,October,34,25,2,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Contract,39.82,0,0,Canceled,2017-11-02 -City Hotel,1,281,2015,October,45,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.75,0,0,Canceled,2017-12-03 -City Hotel,0,18,2016,October,46,3,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.71,1,3,Check-Out,2019-09-03 -City Hotel,1,58,2016,June,23,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.36,0,0,Canceled,2019-02-01 -City Hotel,0,182,2016,August,38,31,0,3,1,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.03,0,1,Check-Out,2019-09-03 -City Hotel,0,19,2016,September,45,20,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,138.62,0,1,Check-Out,2019-11-03 -City Hotel,1,13,2016,March,16,4,0,4,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,117.13,0,0,Canceled,2018-12-03 -Resort Hotel,0,148,2017,March,20,28,1,4,1,0.0,0,BB,ITA,Groups,Corporate,0,0,0,D,D,1,No Deposit,14.0,227.0,0,Transient-Party,65.45,0,0,Check-Out,2020-02-01 -Resort Hotel,0,44,2017,March,12,14,2,0,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,74.86,1,1,Check-Out,2019-09-03 -City Hotel,0,1,2016,October,44,13,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,278.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,0,40,2017,July,30,18,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,227.05,0,2,Check-Out,2019-07-04 -City Hotel,0,58,2017,June,24,29,2,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,3,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-04-02 -City Hotel,0,234,2017,June,29,20,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,B,2,No Deposit,8.0,179.0,0,Transient,98.96,0,1,Check-Out,2020-06-02 -City Hotel,1,93,2016,November,50,4,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,60.21,0,0,Canceled,2019-09-03 -City Hotel,0,40,2016,March,23,30,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,93.22,0,2,Check-Out,2019-06-03 -Resort Hotel,1,51,2015,August,38,26,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,207.23,0,0,Canceled,2018-07-03 -City Hotel,1,180,2016,March,11,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,13.0,179.0,0,Transient,63.4,0,0,Canceled,2018-11-02 -City Hotel,0,253,2015,October,43,18,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,62.79,0,0,Check-Out,2018-08-03 -City Hotel,0,19,2017,March,10,13,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,62,Transient-Party,75.2,0,2,Check-Out,2020-02-01 -City Hotel,1,232,2017,October,53,22,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,99.82,0,1,Canceled,2019-11-03 -City Hotel,1,126,2016,September,32,28,2,4,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,6.0,179.0,0,Transient,140.91,0,3,Canceled,2019-02-01 -Resort Hotel,0,39,2015,December,50,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,40.6,0,0,Check-Out,2018-11-02 -Resort Hotel,0,114,2015,August,32,17,2,5,2,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient,131.83,0,2,Check-Out,2018-06-02 -City Hotel,0,22,2016,June,37,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,66.63,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,March,11,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,126.37,0,1,Check-Out,2020-02-01 -City Hotel,1,271,2015,September,33,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,95.67,0,0,Canceled,2018-07-03 -City Hotel,0,2,2017,January,3,2,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Group,65.7,0,0,Check-Out,2019-11-03 -City Hotel,0,292,2015,July,38,29,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,60.91,0,0,Check-Out,2018-05-03 -City Hotel,0,34,2017,December,51,24,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,93.99,0,3,Check-Out,2019-11-03 -Resort Hotel,0,85,2015,December,53,13,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,127.45,0,2,Check-Out,2018-12-03 -Resort Hotel,0,7,2017,February,9,5,2,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,43.0,331.0,0,Transient,70.86,0,0,Check-Out,2020-02-01 -City Hotel,1,38,2016,April,17,18,0,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,1,D,D,0,Non Refund,10.0,179.0,0,Transient,125.33,0,0,Canceled,2019-03-04 -Resort Hotel,1,36,2017,August,37,21,0,2,2,2.0,0,SC,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,217.94,0,0,Canceled,2020-07-03 -Resort Hotel,0,165,2017,July,32,27,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.36,0,2,Check-Out,2020-07-03 -City Hotel,1,115,2017,March,10,27,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,159.55,0,0,Canceled,2020-02-01 -Resort Hotel,0,143,2016,December,51,25,2,3,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,245.0,179.0,0,Transient,71.55,0,0,Check-Out,2019-10-04 -Resort Hotel,0,19,2015,November,48,26,1,2,1,0.0,0,BB,POL,Online TA,TA/TO,1,0,0,A,G,1,No Deposit,85.0,179.0,0,Transient,61.1,0,0,Check-Out,2019-01-03 -Resort Hotel,0,181,2016,June,21,31,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,70.72,0,0,Check-Out,2019-02-01 -City Hotel,1,172,2017,June,37,31,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,131.47,0,1,Canceled,2020-02-01 -City Hotel,1,167,2016,June,27,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,73.27,0,0,Canceled,2018-08-03 -Resort Hotel,0,266,2016,December,38,27,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,55.92,0,0,Check-Out,2019-07-04 -City Hotel,1,1,2017,February,7,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.17,0,0,Canceled,2019-10-04 -Resort Hotel,0,29,2016,May,33,6,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,81.1,0,1,Check-Out,2019-06-03 -City Hotel,1,0,2015,June,28,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,45.0,0,Transient,44.08,0,0,Canceled,2018-06-02 -City Hotel,0,41,2015,September,43,20,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,118.34,0,0,Check-Out,2018-08-03 -City Hotel,0,34,2016,May,23,15,0,2,1,0.0,0,BB,RUS,Aviation,Corporate,0,0,0,A,D,0,No Deposit,14.0,206.0,0,Transient,103.76,0,1,Check-Out,2020-02-01 -City Hotel,1,96,2015,December,50,11,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,76.53,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2016,June,28,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,17.0,246.0,0,Transient,61.02,0,0,Check-Out,2019-04-03 -Resort Hotel,0,165,2016,May,42,25,2,5,2,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,88.0,179.0,0,Transient-Party,70.44,0,0,Check-Out,2019-06-03 -Resort Hotel,0,148,2017,July,26,28,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,114.94,0,1,Check-Out,2020-02-01 -City Hotel,0,232,2017,June,28,27,4,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.07,0,1,Check-Out,2020-04-02 -Resort Hotel,1,44,2017,January,4,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,240.0,179.0,0,Transient,114.13,0,2,Canceled,2019-11-03 -Resort Hotel,0,21,2017,August,39,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,116.93,0,0,Check-Out,2020-07-03 -Resort Hotel,0,318,2016,May,23,29,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient-Party,34.63,0,1,Check-Out,2019-05-04 -Resort Hotel,0,22,2015,December,51,9,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient-Party,63.41,0,0,Check-Out,2018-10-03 -Resort Hotel,0,283,2017,August,37,16,1,2,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,250.43,1,1,Check-Out,2020-07-03 -Resort Hotel,0,27,2015,September,43,9,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,0,No Deposit,246.0,179.0,0,Transient,185.51,0,0,Check-Out,2018-09-02 -Resort Hotel,1,158,2016,June,26,2,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,68.15,0,1,Canceled,2019-05-04 -City Hotel,0,51,2016,August,38,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,129.83,0,0,Check-Out,2020-07-03 -City Hotel,1,163,2016,August,32,17,2,5,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,152.2,0,0,Canceled,2020-06-02 -City Hotel,0,23,2017,May,27,13,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,10.0,179.0,0,Transient,98.05,0,0,Check-Out,2020-04-02 -City Hotel,1,354,2016,July,35,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.99,0,0,Canceled,2019-03-04 -Resort Hotel,0,52,2015,December,53,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,50.75,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2015,September,43,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,45.0,0,Transient,126.43,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,March,15,24,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,133.0,179.0,0,Transient-Party,45.71,0,2,Check-Out,2019-03-04 -Resort Hotel,0,91,2017,July,17,30,2,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient-Party,126.13,1,0,Check-Out,2020-04-02 -City Hotel,0,116,2016,June,38,26,2,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,82.67,0,0,Check-Out,2019-06-03 -Resort Hotel,1,103,2015,July,33,26,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,252.0,179.0,0,Transient,252.0,0,2,Canceled,2018-06-02 -Resort Hotel,0,25,2017,February,11,29,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,70.13,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,April,23,27,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,31.84,0,0,Check-Out,2019-12-04 -City Hotel,0,86,2016,October,44,10,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,73.29,0,0,Check-Out,2019-11-03 -City Hotel,1,157,2016,March,16,30,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,123.0,179.0,40,Transient,95.78,0,0,Canceled,2019-01-03 -City Hotel,1,260,2017,May,25,15,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,147.52,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2017,February,10,29,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,69.48,0,2,Check-Out,2020-02-01 -City Hotel,1,283,2016,August,25,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,62.84,0,0,No-Show,2019-07-04 -City Hotel,0,9,2017,February,10,6,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.96,0,1,Check-Out,2020-02-01 -Resort Hotel,0,57,2016,July,24,24,2,10,1,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,286.0,179.0,0,Transient,81.1,0,0,Check-Out,2019-02-01 -Resort Hotel,1,164,2017,August,37,24,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,175.87,0,0,Canceled,2020-06-02 -City Hotel,0,16,2015,October,43,21,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,229.0,0,Transient-Party,81.05,0,0,Check-Out,2018-10-03 -City Hotel,1,144,2017,July,32,17,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,136.32,0,0,Canceled,2020-05-03 -Resort Hotel,0,228,2015,November,49,24,2,1,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,228.0,179.0,0,Transient-Party,65.49,0,0,Check-Out,2018-08-03 -City Hotel,0,102,2016,October,44,28,0,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,130.22,0,0,Check-Out,2019-07-04 -City Hotel,0,37,2016,July,29,17,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,158.31,0,1,Check-Out,2019-07-04 -City Hotel,0,2,2017,March,19,7,0,3,2,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,59.95,0,0,Check-Out,2020-02-01 -City Hotel,0,17,2017,February,23,18,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,144.08,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,June,38,28,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,11.0,179.0,0,Transient,94.46,0,1,Check-Out,2019-11-03 -Resort Hotel,1,53,2015,December,53,18,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,Non Refund,240.0,179.0,0,Transient,61.97,0,0,Canceled,2018-12-03 -Resort Hotel,0,261,2017,March,16,30,0,3,1,0.0,0,HB,IRL,Corporate,Corporate,1,0,1,A,D,1,No Deposit,13.0,179.0,0,Transient,62.48,1,0,Check-Out,2020-03-03 -City Hotel,1,26,2016,May,27,24,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,114.28,0,0,Canceled,2019-02-01 -City Hotel,0,250,2015,September,35,18,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.72,0,0,Canceled,2018-08-03 -City Hotel,1,0,2016,December,49,5,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,267.0,0,Transient,4.05,0,0,Canceled,2019-11-03 -City Hotel,0,85,2016,June,25,23,3,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,94.74,0,0,Check-Out,2020-05-03 -Resort Hotel,0,43,2015,August,36,13,0,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,2018-05-03 -Resort Hotel,0,15,2015,November,42,30,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,37.64,0,0,Check-Out,2018-06-02 -Resort Hotel,0,276,2017,July,27,25,3,5,2,1.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,75,Transient,124.47,0,2,Check-Out,2020-03-03 -City Hotel,1,319,2015,October,46,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.32,0,0,Canceled,2018-09-02 -City Hotel,1,304,2016,May,22,29,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,72.82,0,0,Canceled,2019-03-04 -City Hotel,0,0,2016,August,32,17,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,190.67,0,0,Check-Out,2020-06-02 -Resort Hotel,0,36,2016,June,22,28,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,40.93,0,0,Check-Out,2019-03-04 -Resort Hotel,1,42,2015,December,37,27,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,57.5,0,0,Canceled,2018-08-03 -City Hotel,0,108,2016,May,26,16,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,113.31,0,0,Check-Out,2019-03-04 -City Hotel,0,24,2016,January,12,13,0,1,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,71.32,0,1,Check-Out,2019-11-03 -City Hotel,0,9,2016,April,20,25,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,0,No Deposit,11.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-02-01 -Resort Hotel,0,36,2016,March,17,18,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,G,E,0,No Deposit,319.0,179.0,0,Transient,87.08,0,0,Check-Out,2019-04-03 -Resort Hotel,1,43,2017,March,12,24,2,5,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,52.06,0,0,Canceled,2019-10-04 -Resort Hotel,0,17,2017,July,36,21,2,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,3,No Deposit,18.0,179.0,0,Transient,159.32,0,0,Check-Out,2020-02-01 -Resort Hotel,1,100,2017,February,9,15,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,28.91,0,0,Canceled,2018-11-02 -City Hotel,1,201,2016,August,37,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,178.5,0,1,No-Show,2019-05-04 -City Hotel,0,205,2016,August,27,20,0,5,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,87.08,0,0,Check-Out,2019-05-04 -Resort Hotel,0,35,2016,August,17,21,0,3,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,H,H,2,No Deposit,250.0,179.0,0,Transient,180.49,0,0,Check-Out,2019-06-03 -Resort Hotel,1,2,2017,August,36,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,41.19,0,0,Canceled,2020-02-01 -Resort Hotel,0,45,2017,January,3,18,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,146.27,0,1,Check-Out,2020-07-03 -City Hotel,0,0,2015,June,28,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,65.87,0,0,Check-Out,2018-09-02 -City Hotel,0,222,2017,June,27,24,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.66,0,2,Canceled,2020-06-02 -City Hotel,1,17,2017,April,17,29,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.5,0,1,Canceled,2020-02-01 -Resort Hotel,0,0,2016,August,36,10,0,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,I,0,No Deposit,242.0,179.0,0,Transient,1.53,1,0,Check-Out,2019-08-04 -City Hotel,0,16,2017,February,9,14,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,77.0,0,Transient,70.01,0,0,Check-Out,2019-09-03 -City Hotel,0,96,2017,June,25,2,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.26,0,2,Check-Out,2020-03-03 -City Hotel,1,165,2016,June,25,26,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient-Party,103.48,0,0,Canceled,2019-03-04 -City Hotel,0,1,2016,November,43,29,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,F,0,No Deposit,14.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-04-03 -Resort Hotel,0,0,2016,August,38,31,0,3,2,1.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,129.63,1,2,Check-Out,2019-06-03 -City Hotel,0,11,2017,July,31,5,2,0,2,0.0,0,HB,PRT,Undefined,Corporate,0,0,0,A,B,2,No Deposit,14.0,179.0,0,Transient-Party,101.88,1,0,Check-Out,2020-07-03 -City Hotel,0,91,2017,June,25,19,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.13,0,1,Check-Out,2020-03-03 -City Hotel,1,312,2015,September,35,21,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.21,0,0,Canceled,2018-05-03 -City Hotel,0,14,2017,January,5,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,65.26,0,1,Check-Out,2019-11-03 -Resort Hotel,0,38,2017,March,10,25,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,311.0,179.0,0,Transient-Party,87.59,0,1,Check-Out,2020-02-01 -Resort Hotel,0,1,2015,December,51,30,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,62.65,0,0,Check-Out,2018-11-02 -City Hotel,0,38,2015,October,44,27,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,81.31,0,1,Check-Out,2018-09-02 -City Hotel,1,254,2015,August,34,6,2,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,8.0,179.0,0,Transient,74.85,0,1,Canceled,2018-06-02 -City Hotel,0,3,2017,August,36,15,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,119.64,0,2,Check-Out,2020-07-03 -City Hotel,1,1,2017,February,11,27,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,H,F,0,No Deposit,12.0,179.0,0,Transient,72.52,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2017,July,20,9,0,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,250.0,179.0,0,Transient,188.45,1,0,Check-Out,2020-02-01 -City Hotel,1,1,2016,May,17,27,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,102.18,0,0,Canceled,2019-02-01 -City Hotel,1,8,2017,June,27,20,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,B,E,0,No Deposit,12.0,179.0,0,Transient,148.92,0,0,Canceled,2020-03-03 -City Hotel,1,44,2017,June,38,14,2,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,153.0,179.0,0,Transient,74.54,0,0,Canceled,2019-07-04 -City Hotel,0,50,2016,October,38,28,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,241.76,0,0,Check-Out,2019-06-03 -Resort Hotel,0,26,2017,July,33,28,4,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,210.17,0,2,Check-Out,2020-06-02 -City Hotel,0,30,2017,May,22,27,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,180.34,0,0,Check-Out,2020-04-02 -City Hotel,0,54,2016,June,20,19,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,116.29,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2017,May,20,11,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,141.6,0,0,Check-Out,2020-03-03 -Resort Hotel,1,51,2016,April,15,21,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,118.53,0,3,Canceled,2018-12-03 -Resort Hotel,1,11,2017,May,24,24,0,2,3,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,183.0,179.0,0,Transient,133.08,0,0,Canceled,2019-11-03 -City Hotel,0,20,2017,April,17,24,2,1,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,209.79,0,0,Check-Out,2020-03-03 -City Hotel,0,3,2017,March,22,6,0,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,66.22,0,0,Check-Out,2020-02-01 -Resort Hotel,0,101,2016,April,37,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,67.24,0,2,Check-Out,2019-12-04 -City Hotel,1,29,2015,August,36,4,2,5,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,6.0,179.0,0,Contract,155.29,0,1,Canceled,2018-06-02 -Resort Hotel,0,154,2017,July,32,5,1,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,245.66,0,0,Check-Out,2020-07-03 -City Hotel,0,8,2016,February,4,20,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,81.86,0,0,Check-Out,2019-04-03 -City Hotel,0,249,2015,June,27,17,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,78.32,0,0,Check-Out,2020-06-02 -Resort Hotel,1,51,2017,August,38,19,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,139.48,0,0,Canceled,2020-07-03 -City Hotel,1,53,2016,March,17,30,0,2,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,70.6,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,May,23,13,1,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,185.0,0,Transient-Party,85.75,0,0,Check-Out,2019-11-03 -Resort Hotel,0,271,2017,August,40,22,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-07-03 -City Hotel,1,14,2017,May,19,21,1,0,2,0.0,0,SC,PRT,Complementary,TA/TO,0,1,1,A,A,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,1,2,2017,April,16,25,2,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,63.55,0,1,No-Show,2019-02-01 -City Hotel,0,21,2015,November,44,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.69,0,0,Check-Out,2018-08-03 -Resort Hotel,0,51,2016,May,22,10,1,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,204.55,0,1,Check-Out,2019-01-03 -City Hotel,0,233,2015,October,44,15,4,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,63.49,0,0,Check-Out,2018-08-03 -Resort Hotel,1,413,2017,May,21,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient,98.59,0,0,Canceled,2019-12-04 -City Hotel,0,0,2016,September,41,16,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,1,1,1,A,A,2,No Deposit,7.0,179.0,0,Group,80.79,0,1,Check-Out,2018-08-03 -City Hotel,0,3,2016,October,44,28,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-09-03 -City Hotel,1,1,2016,January,4,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.93,0,1,No-Show,2019-01-03 -City Hotel,0,36,2017,May,34,15,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,84.58,0,1,Check-Out,2020-07-03 -City Hotel,0,103,2016,February,10,7,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,68.64,0,1,Check-Out,2019-03-04 -Resort Hotel,0,272,2015,August,35,23,2,5,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,295.0,179.0,0,Transient-Party,77.41,0,0,Check-Out,2018-06-02 -Resort Hotel,0,102,2016,December,51,26,0,1,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,96.0,179.0,0,Transient-Party,68.08,0,0,Check-Out,2020-01-04 -City Hotel,1,435,2016,December,51,4,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,34.0,179.0,0,Transient,69.63,0,0,Canceled,2018-08-03 -City Hotel,1,25,2016,March,11,20,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.36,0,0,Canceled,2019-04-03 -City Hotel,0,217,2015,August,34,21,0,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient-Party,75.45,0,0,Check-Out,2018-05-03 -City Hotel,0,2,2017,May,22,10,1,0,1,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,30.0,331.0,0,Transient,0.47,0,0,Check-Out,2020-04-02 -City Hotel,0,49,2015,July,35,10,1,3,2,1.0,0,BB,NLD,Direct,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,91.39,0,3,Check-Out,2020-06-02 -City Hotel,0,5,2017,May,21,12,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,69.29,1,0,Check-Out,2020-03-03 -City Hotel,1,408,2016,September,37,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,40,Transient,60.19,0,0,Canceled,2017-12-03 -Resort Hotel,1,319,2017,April,15,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Contract,199.24,1,2,Canceled,2020-01-04 -Resort Hotel,0,2,2015,December,52,21,1,0,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient-Party,59.78,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2017,March,8,15,1,0,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,1,No Deposit,17.0,179.0,75,Transient,150.3,1,3,Check-Out,2019-12-04 -Resort Hotel,1,54,2016,January,3,19,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,51.3,0,0,Canceled,2018-11-02 -City Hotel,0,13,2016,December,22,16,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,K,1,No Deposit,13.0,45.0,0,Transient,1.43,0,0,Check-Out,2019-05-04 -Resort Hotel,0,189,2015,July,30,7,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient-Party,62.36,0,1,Check-Out,2018-06-02 -City Hotel,1,47,2015,October,45,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,67.74,0,0,Canceled,2018-08-03 -City Hotel,1,263,2016,October,46,29,2,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,83.74,0,0,Canceled,2019-07-04 -City Hotel,0,50,2017,March,10,21,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,223.0,0,Transient-Party,25.99,0,0,Check-Out,2020-04-02 -Resort Hotel,0,39,2016,April,18,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,248.0,179.0,75,Transient,169.07,0,1,Check-Out,2019-02-01 -City Hotel,1,48,2017,August,31,18,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,170.99,0,0,Canceled,2020-03-03 -City Hotel,0,268,2017,February,10,17,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,184.0,179.0,0,Transient,85.69,1,1,Check-Out,2020-04-02 -Resort Hotel,0,106,2016,December,50,9,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,66.66,1,2,Check-Out,2019-03-04 -City Hotel,1,249,2015,September,42,10,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.87,0,0,Canceled,2018-07-03 -City Hotel,0,87,2016,December,51,17,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,74.48,0,1,Check-Out,2019-12-04 -City Hotel,1,313,2015,November,46,27,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,77.72,0,0,Canceled,2018-08-03 -City Hotel,1,99,2017,March,18,22,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.76,0,1,Canceled,2020-02-01 -Resort Hotel,0,114,2017,August,28,29,2,5,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,246.0,179.0,0,Transient,192.55,1,1,Check-Out,2020-06-02 -City Hotel,0,54,2017,August,22,19,0,3,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,96.73,0,2,Check-Out,2020-04-02 -Resort Hotel,0,13,2017,January,5,27,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,242.0,179.0,0,Transient,94.32,1,1,Check-Out,2019-11-03 -Resort Hotel,0,11,2016,December,26,15,2,3,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,E,0,No Deposit,13.0,68.0,0,Transient,49.53,1,0,Check-Out,2018-12-03 -Resort Hotel,0,60,2015,December,49,5,2,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,31.78,0,2,Check-Out,2018-07-03 -Resort Hotel,0,0,2015,August,32,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,C,I,0,No Deposit,240.0,179.0,0,Transient,1.63,0,1,Check-Out,2018-05-03 -City Hotel,1,408,2017,August,14,17,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,154.35,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2017,March,11,14,0,1,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,191.0,331.0,0,Transient-Party,67.4,0,0,Check-Out,2020-03-03 -City Hotel,0,34,2016,March,10,7,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,69.42,0,2,Check-Out,2018-12-03 -City Hotel,1,153,2016,June,23,8,3,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,61.69,0,0,Canceled,2019-01-03 -City Hotel,0,50,2016,October,43,4,2,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.69,0,3,Check-Out,2019-09-03 -City Hotel,1,111,2016,October,43,2,2,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,168.41,0,1,Canceled,2019-07-04 -Resort Hotel,0,15,2016,June,37,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,59.76,0,2,Check-Out,2019-03-04 -City Hotel,0,1,2016,March,15,16,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,1,No Deposit,10.0,45.0,0,Transient-Party,0.0,0,0,Check-Out,2019-02-01 -City Hotel,0,19,2015,October,47,29,1,1,1,0.0,0,BB,ESP,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,65.61,0,0,Check-Out,2018-09-02 -Resort Hotel,0,14,2017,May,22,15,2,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-03-03 -Resort Hotel,0,15,2016,March,18,28,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,40.03,1,1,Check-Out,2019-01-03 -City Hotel,0,0,2016,October,43,14,1,0,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,2.28,0,0,Check-Out,2019-09-03 -Resort Hotel,0,251,2016,June,25,5,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,86.73,0,0,Check-Out,2019-04-03 -Resort Hotel,0,21,2016,December,52,26,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,42.0,179.0,0,Transient-Party,71.59,0,0,Check-Out,2019-12-04 -City Hotel,0,49,2017,June,21,10,1,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,168.18,0,1,Check-Out,2020-04-02 -City Hotel,0,14,2017,July,25,23,0,4,1,0.0,0,BB,NOR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,166.65,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2017,February,7,21,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,E,A,0,No Deposit,13.0,179.0,0,Group,0.0,0,0,Check-Out,2020-01-04 -City Hotel,0,1,2017,June,19,16,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.35,0,1,Check-Out,2020-04-02 -City Hotel,1,140,2016,December,51,28,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.25,0,0,Canceled,2019-09-03 -City Hotel,1,29,2017,May,12,28,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,156.0,179.0,75,Contract,72.0,0,0,Canceled,2020-03-03 -City Hotel,0,3,2016,March,10,28,2,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,70.09,0,0,Check-Out,2018-11-02 -City Hotel,1,38,2016,September,36,15,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,144.05,0,1,Canceled,2019-07-04 -City Hotel,0,163,2016,December,43,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Group,121.03,0,0,Check-Out,2019-07-04 -City Hotel,1,294,2016,March,16,10,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.57,0,0,Canceled,2019-02-01 -Resort Hotel,0,198,2016,September,32,5,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,98.68,0,0,Check-Out,2019-05-04 -City Hotel,0,157,2015,July,30,6,0,5,1,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.5,0,1,Check-Out,2019-05-04 -City Hotel,1,13,2017,September,44,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,196.0,0,Transient,72.71,0,0,Canceled,2019-11-03 -City Hotel,0,22,2016,October,44,29,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,179.9,0,0,Check-Out,2019-08-04 -Resort Hotel,0,318,2015,June,26,7,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Transient-Party,44.08,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,November,51,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,78.0,0,Transient,62.44,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,March,16,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,175.0,179.0,0,Transient-Party,66.87,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,January,3,27,1,0,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.2,0,1,Check-Out,2018-11-02 -City Hotel,0,1,2016,June,26,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,77.94,0,0,Check-Out,2019-06-03 -City Hotel,0,264,2015,September,41,21,2,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.14,0,0,Check-Out,2018-07-03 -Resort Hotel,0,6,2017,August,36,5,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,I,1,No Deposit,14.0,179.0,0,Transient,152.03,0,2,Check-Out,2020-06-02 -City Hotel,0,8,2015,December,15,20,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,90.59,0,0,Check-Out,2018-12-03 -City Hotel,0,93,2015,December,53,31,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Group,32.01,0,1,Check-Out,2018-12-03 -City Hotel,0,17,2015,September,53,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,118.83,0,3,Check-Out,2019-01-03 -City Hotel,0,9,2015,July,34,10,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,D,D,0,No Deposit,2.0,179.0,0,Contract,61.48,0,2,Check-Out,2018-01-03 -City Hotel,1,206,2017,May,22,9,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.77,0,0,Check-Out,2019-06-03 -City Hotel,0,52,2017,February,8,28,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,71.8,0,1,Check-Out,2019-10-04 -Resort Hotel,1,5,2016,August,32,17,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,141.5,0,2,Canceled,2019-08-04 -City Hotel,0,0,2017,January,10,10,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,70.31,0,0,Check-Out,2019-10-04 -Resort Hotel,0,135,2017,March,12,30,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,E,E,0,No Deposit,270.0,179.0,0,Transient-Party,62.04,1,0,Check-Out,2019-11-03 -Resort Hotel,1,148,2015,September,44,2,0,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,178.75,0,0,Canceled,2018-08-03 -City Hotel,0,157,2017,August,32,6,2,5,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,E,E,2,No Deposit,195.0,179.0,0,Group,128.61,0,0,Check-Out,2020-06-02 -City Hotel,1,63,2016,October,53,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,8.0,179.0,0,Transient,102.19,0,1,Canceled,2019-10-04 -Resort Hotel,0,17,2016,June,26,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient,73.31,0,0,Check-Out,2019-05-04 -City Hotel,1,8,2017,July,23,28,2,1,1,0.0,0,BB,USA,Groups,TA/TO,0,0,0,E,E,0,No Deposit,135.0,179.0,0,Transient-Party,89.14,0,0,Canceled,2020-04-02 -City Hotel,0,1,2017,January,5,20,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,89.0,62.0,0,Transient,74.52,1,0,Check-Out,2019-09-03 -City Hotel,0,1,2017,April,14,6,0,3,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,G,1,No Deposit,13.0,331.0,0,Transient-Party,161.87,0,0,Check-Out,2019-11-03 -City Hotel,0,7,2016,February,11,29,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,58.9,0,0,Check-Out,2019-01-03 -City Hotel,1,149,2016,June,36,29,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,85.08,0,0,Canceled,2019-05-04 -City Hotel,0,3,2016,August,36,6,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,205.58,0,2,Check-Out,2018-09-02 -City Hotel,1,176,2016,June,27,14,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,75.28,0,0,Canceled,2018-08-03 -City Hotel,0,34,2016,June,28,2,0,4,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,E,0,No Deposit,191.0,179.0,0,Transient,89.43,0,0,Check-Out,2019-05-04 -Resort Hotel,0,14,2016,March,16,24,0,5,1,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,81.88,0,0,Check-Out,2019-03-04 -City Hotel,1,136,2016,April,27,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,125.29,0,0,Canceled,2018-12-03 -City Hotel,0,2,2017,August,36,24,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.73,0,3,Check-Out,2020-07-03 -City Hotel,0,26,2016,June,38,15,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.39,0,1,Check-Out,2019-06-03 -City Hotel,1,21,2017,May,24,29,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,151.98,0,0,Canceled,2019-12-04 -Resort Hotel,0,11,2016,February,10,6,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,142.0,179.0,0,Transient,117.22,0,0,Check-Out,2019-01-03 -City Hotel,1,404,2017,May,17,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,125.14,0,0,Canceled,2018-12-03 -Resort Hotel,0,161,2017,March,9,26,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient-Party,73.25,1,0,Check-Out,2019-12-04 -City Hotel,1,0,2015,August,38,5,0,1,2,0.0,0,BB,PRT,Complementary,Undefined,0,1,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,54.06,0,0,Canceled,2018-07-03 -Resort Hotel,0,105,2017,May,27,18,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,85.21,0,3,Check-Out,2020-06-02 -Resort Hotel,1,182,2017,March,11,3,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,Refundable,245.0,179.0,0,Transient,117.84,0,0,Canceled,2019-11-03 -City Hotel,0,71,2017,May,22,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,96.76,0,0,Check-Out,2020-04-02 -Resort Hotel,1,21,2016,March,10,13,2,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,321.0,179.0,0,Transient,77.81,0,0,Canceled,2019-02-01 -City Hotel,0,7,2016,April,17,9,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,118.81,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2015,August,38,23,0,4,3,0.0,0,BB,ITA,Aviation,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,2,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,May,21,30,2,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Contract,58.87,1,0,Check-Out,2019-12-04 -Resort Hotel,1,57,2017,September,37,30,2,5,3,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,190.55,0,3,Canceled,2019-10-04 -Resort Hotel,1,36,2016,May,22,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,141.0,179.0,0,Transient,145.33,0,0,Canceled,2019-02-01 -Resort Hotel,0,46,2016,October,45,2,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,165.56,0,1,Check-Out,2019-09-03 -City Hotel,1,241,2016,April,16,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.9,0,0,Canceled,2018-12-03 -Resort Hotel,1,311,2016,July,30,21,2,3,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,63.52,0,1,No-Show,2019-03-04 -City Hotel,1,39,2017,May,21,21,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,146.84,0,1,Canceled,2020-03-03 -City Hotel,1,135,2017,March,22,13,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,67.35,0,0,Canceled,2019-11-03 -City Hotel,1,22,2017,May,17,28,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,A,0,No Deposit,14.0,179.0,0,Transient,157.64,0,0,Check-Out,2020-02-01 -Resort Hotel,0,17,2016,May,22,10,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,121.53,1,2,Check-Out,2019-02-01 -City Hotel,1,107,2016,June,26,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,A,0,No Deposit,23.0,179.0,0,Transient,117.03,0,0,Canceled,2019-02-01 -Resort Hotel,0,180,2017,May,24,20,2,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Refundable,240.0,179.0,0,Transient,92.96,0,2,Check-Out,2020-05-03 -City Hotel,1,404,2015,September,40,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.27,0,0,Canceled,2018-09-02 -City Hotel,1,9,2016,May,21,2,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,112.06,0,0,No-Show,2019-06-03 -Resort Hotel,0,33,2015,October,43,20,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,2,No Deposit,250.0,179.0,0,Transient,46.94,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,October,46,28,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,A,0,No Deposit,14.0,179.0,0,Transient,104.46,0,0,Check-Out,2019-08-04 -City Hotel,1,149,2015,October,37,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,116.22,0,0,Canceled,2018-09-02 -City Hotel,1,150,2017,June,32,30,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.29,0,3,Canceled,2019-11-03 -City Hotel,0,96,2016,September,37,21,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,6.0,179.0,0,Group,131.3,0,1,Check-Out,2019-05-04 -City Hotel,1,13,2016,June,25,9,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.89,0,1,Canceled,2019-02-01 -Resort Hotel,0,7,2016,October,44,27,0,2,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,H,G,1,No Deposit,243.0,179.0,0,Transient,191.87,0,0,Check-Out,2019-09-03 -City Hotel,0,18,2015,September,43,6,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,45.0,0,Transient,60.0,0,0,Check-Out,2018-08-03 -City Hotel,1,15,2016,September,51,21,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,13.0,220.0,0,Transient,60.68,0,1,Canceled,2019-07-04 -City Hotel,1,55,2016,June,44,15,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,154.74,0,0,Canceled,2019-10-04 -City Hotel,0,1,2016,December,50,31,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,129.76,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,April,9,6,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,14.0,179.0,0,Transient,115.61,0,0,Check-Out,2020-02-01 -Resort Hotel,0,186,2015,August,37,19,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,73.91,1,0,Check-Out,2019-09-03 -City Hotel,0,41,2015,October,42,16,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,103.71,0,1,Check-Out,2018-09-02 -City Hotel,0,0,2016,April,46,17,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,120.92,0,2,Check-Out,2019-04-03 -City Hotel,0,0,2016,December,49,20,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,B,F,1,No Deposit,14.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-02-01 -Resort Hotel,0,1,2017,August,34,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,A,0,No Deposit,253.0,179.0,0,Transient,219.86,0,0,Check-Out,2020-05-03 -City Hotel,0,105,2016,May,23,8,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,1,No Deposit,34.0,179.0,0,Transient-Party,62.92,0,0,Check-Out,2019-05-04 -City Hotel,0,13,2016,December,52,2,0,1,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,77.24,0,2,Check-Out,2019-10-04 -City Hotel,0,44,2017,August,32,31,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.46,1,3,Check-Out,2020-07-03 -Resort Hotel,0,139,2016,March,10,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,61.71,0,0,Check-Out,2019-02-01 -City Hotel,1,164,2017,May,21,15,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.67,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2015,July,33,5,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,132.32,0,0,Check-Out,2018-06-02 -City Hotel,0,46,2016,March,5,28,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,73.03,0,2,Check-Out,2019-03-04 -Resort Hotel,0,51,2017,February,9,15,0,2,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,Non Refund,16.0,331.0,0,Transient,41.72,0,0,Check-Out,2020-01-04 -Resort Hotel,1,278,2016,August,38,15,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,61.39,0,0,Canceled,2019-08-04 -Resort Hotel,0,45,2016,December,49,24,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-06-03 -City Hotel,0,32,2015,October,45,30,1,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.36,0,2,Check-Out,2018-08-03 -City Hotel,0,304,2017,August,34,30,2,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,134.9,0,1,Check-Out,2020-06-02 -City Hotel,1,3,2017,June,27,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient,114.81,0,0,Canceled,2019-05-04 -City Hotel,1,303,2016,October,44,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,3.0,179.0,0,Transient-Party,63.51,0,0,Canceled,2018-08-03 -City Hotel,0,41,2015,August,42,30,0,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,90.6,0,0,Check-Out,2018-09-02 -City Hotel,1,32,2016,October,50,22,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,82.85,0,0,Canceled,2019-10-04 -City Hotel,0,2,2016,December,50,4,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,15.0,179.0,0,Transient,3.28,1,0,Check-Out,2019-12-04 -City Hotel,0,9,2016,March,9,5,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.01,0,2,Check-Out,2019-02-01 -City Hotel,0,156,2017,March,20,12,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,79.69,0,0,Check-Out,2020-04-02 -City Hotel,1,250,2015,July,32,18,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,109.93,0,0,Canceled,2017-10-03 -City Hotel,0,98,2016,January,4,20,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,180.32,0,2,Check-Out,2018-10-03 -City Hotel,1,279,2016,June,32,6,0,2,1,0.0,0,BB,PRT,Aviation,TA/TO,0,0,1,A,A,0,Non Refund,14.0,45.0,0,Transient,99.76,0,0,Canceled,2019-03-04 -City Hotel,0,41,2017,July,26,6,1,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.0,1,1,Check-Out,2020-04-02 -Resort Hotel,1,37,2017,February,9,6,2,0,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,193.93,0,0,Canceled,2019-12-04 -Resort Hotel,0,11,2016,February,11,20,0,2,1,1.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,H,H,1,No Deposit,12.0,179.0,0,Transient,89.6,0,0,Check-Out,2019-02-01 -City Hotel,0,368,2017,June,21,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,103.06,0,0,Check-Out,2020-02-01 -City Hotel,0,18,2017,May,28,29,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,10.0,179.0,0,Transient,115.72,0,2,Check-Out,2020-04-02 -City Hotel,1,415,2016,March,17,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,70.21,0,0,Canceled,2018-12-03 -City Hotel,1,37,2017,January,3,19,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,212.93,0,0,Canceled,2019-09-03 -City Hotel,0,0,2016,September,17,10,0,3,1,0.0,0,SC,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -Resort Hotel,1,2,2016,April,17,28,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,130.0,179.0,0,Transient,75.35,0,0,Canceled,2019-02-01 -City Hotel,0,42,2016,December,38,30,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,D,0,No Deposit,190.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,0,13,2017,May,22,20,2,0,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,43.83,0,0,Check-Out,2020-04-02 -City Hotel,0,10,2015,October,45,19,0,2,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,67.6,0,0,Check-Out,2018-09-02 -City Hotel,0,149,2015,August,36,14,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,99.76,0,0,Canceled,2018-05-03 -Resort Hotel,0,1,2015,October,42,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,37.05,0,0,Check-Out,2018-12-03 -Resort Hotel,1,146,2016,January,4,2,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,316.0,179.0,0,Transient,81.77,0,0,Canceled,2018-10-03 -City Hotel,1,297,2016,September,38,27,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient,201.73,0,0,Canceled,2019-07-04 -Resort Hotel,0,47,2017,June,11,5,1,2,2,0.0,0,BB,GBR,Direct,Corporate,0,0,0,E,E,3,No Deposit,309.0,179.0,0,Transient,98.82,0,0,Check-Out,2020-04-02 -City Hotel,0,76,2016,July,26,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,62.62,0,0,Check-Out,2019-05-04 -Resort Hotel,0,32,2016,January,10,5,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,60.61,0,0,Check-Out,2019-10-04 -Resort Hotel,0,38,2015,October,45,2,0,1,2,0.0,0,BB,,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,89.49,0,1,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,November,18,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,80.0,179.0,0,Transient-Party,61.25,0,0,Check-Out,2018-12-03 -City Hotel,1,210,2016,May,43,14,0,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,C,0,Non Refund,138.0,179.0,0,Transient-Party,78.29,0,0,Canceled,2019-07-04 -Resort Hotel,0,33,2016,June,27,28,0,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,168.0,0,0,Check-Out,2019-05-04 -City Hotel,0,45,2017,July,25,24,0,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,G,A,0,No Deposit,16.0,179.0,0,Transient,222.74,0,2,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,February,10,5,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,19.0,224.0,0,Transient,43.5,0,0,Check-Out,2019-11-03 -City Hotel,0,46,2016,March,14,12,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.14,0,0,Check-Out,2019-01-03 -City Hotel,0,42,2016,December,53,21,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,68.4,0,2,Check-Out,2019-11-03 -Resort Hotel,1,16,2016,July,33,30,0,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,166.0,0,0,Canceled,2019-06-03 -Resort Hotel,0,14,2017,April,11,10,2,1,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,78.35,0,0,Check-Out,2019-12-04 -City Hotel,1,3,2015,September,45,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,37.83,0,0,Canceled,2018-07-03 -City Hotel,0,89,2016,July,32,22,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.46,0,3,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,November,48,17,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,65.33,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,January,12,20,2,0,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,294.0,179.0,0,Transient,61.38,0,0,Check-Out,2018-12-03 -City Hotel,1,265,2016,April,50,10,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,2.0,179.0,63,Transient,61.74,0,0,Canceled,2018-07-03 -City Hotel,0,0,2015,July,31,6,0,1,1,0.0,0,BB,IRL,Direct,Direct,1,0,0,A,I,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2016,May,21,9,2,3,3,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,81.95,1,0,Check-Out,2019-03-04 -City Hotel,1,48,2015,August,30,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,96.78,0,1,Canceled,2018-06-02 -City Hotel,1,0,2017,May,22,10,0,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,267.0,0,Transient,1.13,0,0,Canceled,2020-01-04 -Resort Hotel,0,18,2015,August,40,3,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,165.8,1,2,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,December,52,20,1,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,83.28,0,0,Check-Out,2018-07-03 -City Hotel,0,54,2016,September,43,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.33,0,0,Canceled,2019-05-04 -City Hotel,0,1,2016,June,21,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,B,2,No Deposit,13.0,45.0,0,Transient,93.07,0,1,Check-Out,2019-03-04 -Resort Hotel,0,39,2015,November,48,5,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Contract,41.79,0,0,Check-Out,2018-09-02 -City Hotel,0,241,2017,June,25,12,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,110.87,0,0,Check-Out,2020-05-03 -City Hotel,0,32,2016,March,15,15,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,216.29,0,0,Check-Out,2019-02-01 -Resort Hotel,0,27,2016,October,41,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,39.3,0,0,Check-Out,2019-07-04 -City Hotel,1,69,2015,July,31,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,120.86,0,1,Canceled,2017-11-02 -City Hotel,0,21,2017,June,27,19,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,224.0,0,Transient,61.75,0,0,Check-Out,2020-06-02 -Resort Hotel,0,262,2017,April,22,31,1,4,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,83.23,0,1,Check-Out,2020-02-01 -City Hotel,0,187,2016,September,43,13,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.97,0,0,Check-Out,2019-09-03 -City Hotel,1,332,2015,October,43,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,65,Transient-Party,61.18,0,0,Canceled,2017-11-02 -City Hotel,1,202,2017,February,11,25,1,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,183.0,179.0,0,Transient,41.25,0,0,Canceled,2019-10-04 -Resort Hotel,0,169,2015,September,34,20,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,126.0,179.0,0,Transient-Party,46.84,0,0,Check-Out,2018-06-02 -Resort Hotel,0,130,2016,March,8,11,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,72.37,1,1,Check-Out,2019-02-01 -City Hotel,0,30,2017,September,37,25,1,3,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,157.0,0,Transient,112.48,0,1,Check-Out,2019-09-03 -Resort Hotel,0,67,2015,November,49,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,317.0,179.0,0,Transient-Party,50.52,0,0,Canceled,2019-01-03 -City Hotel,1,93,2017,March,10,5,2,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,71.38,0,0,Canceled,2020-03-03 -Resort Hotel,0,286,2017,May,22,30,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,C,1,No Deposit,85.0,179.0,0,Transient-Party,76.39,0,0,Check-Out,2020-03-03 -City Hotel,0,108,2017,May,22,31,0,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-04-02 -Resort Hotel,1,239,2017,August,34,14,2,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,37.09,0,2,No-Show,2020-05-03 -City Hotel,1,293,2016,June,27,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,220.0,0,Transient,38.14,0,0,Canceled,2019-07-04 -Resort Hotel,0,157,2016,March,22,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,Refundable,14.0,223.0,0,Transient-Party,71.05,1,0,Check-Out,2019-04-03 -City Hotel,0,84,2016,July,26,5,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,69.74,0,1,Check-Out,2019-03-04 -City Hotel,0,94,2016,September,35,15,1,3,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,251.93,0,0,Check-Out,2019-06-03 -City Hotel,1,6,2016,February,11,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,63.87,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2015,November,42,17,0,3,2,0.0,0,BB,IRL,Online TA,Corporate,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,37.74,1,0,Check-Out,2018-08-03 -City Hotel,0,150,2017,May,22,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,0,Transient,128.69,0,0,Check-Out,2020-03-03 -City Hotel,1,107,2016,October,33,12,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.09,0,1,Canceled,2019-05-04 -Resort Hotel,0,279,2015,October,42,4,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,310.0,179.0,0,Contract,61.99,0,0,Check-Out,2018-09-02 -Resort Hotel,0,21,2015,October,42,27,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,38.95,0,0,Check-Out,2019-08-04 -City Hotel,0,108,2017,July,26,9,0,1,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,117.85,0,1,Check-Out,2020-06-02 -City Hotel,0,37,2017,December,43,20,4,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,33.0,179.0,0,Transient,118.89,0,0,Check-Out,2019-12-04 -Resort Hotel,1,98,2017,February,19,29,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,135.0,179.0,0,Transient,70.63,0,0,Canceled,2019-02-01 -City Hotel,1,98,2017,July,28,28,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,1,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,148.68,0,1,Canceled,2019-11-03 -City Hotel,1,318,2015,October,46,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.69,0,0,Canceled,2018-06-02 -Resort Hotel,0,9,2015,October,43,15,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,212.5,0,0,Check-Out,2019-06-03 -City Hotel,1,34,2016,July,26,24,2,3,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.92,0,0,Canceled,2020-01-04 -City Hotel,0,244,2016,May,43,24,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,72.35,0,0,Check-Out,2019-04-03 -Resort Hotel,1,31,2015,August,34,8,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,239.0,179.0,0,Transient,71.38,0,0,Canceled,2018-10-03 -City Hotel,0,152,2016,April,22,24,0,4,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,311.0,179.0,0,Transient-Party,122.3,0,0,Check-Out,2019-03-04 -City Hotel,1,50,2017,March,9,27,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,89.84,0,0,Canceled,2018-11-02 -Resort Hotel,0,16,2017,February,10,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,17.0,94.0,0,Transient,80.94,0,0,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,April,21,25,0,4,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-02-01 -City Hotel,1,6,2016,August,38,23,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.94,0,0,Canceled,2019-07-04 -City Hotel,1,28,2015,July,42,5,0,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,43,Transient,119.74,0,1,Canceled,2018-06-02 -City Hotel,1,90,2017,April,17,24,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,109.6,0,0,Canceled,2019-03-04 -Resort Hotel,0,31,2015,October,34,20,2,5,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,4.66,1,0,Check-Out,2019-08-04 -Resort Hotel,0,23,2016,October,44,7,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,101.84,0,3,Check-Out,2019-09-03 -Resort Hotel,0,12,2017,May,21,27,0,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient-Party,129.69,0,0,Check-Out,2020-04-02 -Resort Hotel,0,238,2016,July,31,25,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,1,No Deposit,378.0,179.0,0,Transient-Party,124.79,0,1,Check-Out,2020-06-02 -Resort Hotel,0,199,2017,August,40,13,4,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,181.0,179.0,0,Transient-Party,154.06,0,0,Canceled,2020-06-02 -City Hotel,1,248,2016,March,10,13,2,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,10.0,179.0,0,Transient,127.88,0,0,Canceled,2019-03-04 -Resort Hotel,1,15,2016,December,53,16,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,237.0,179.0,0,Transient,79.21,0,3,Canceled,2019-02-01 -City Hotel,1,47,2016,January,4,2,1,5,3,0.0,0,BB,USA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,156.98,0,0,Canceled,2019-09-03 -City Hotel,0,0,2016,February,9,14,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,B,1,No Deposit,15.0,256.0,0,Transient,76.03,0,1,Check-Out,2020-02-01 -City Hotel,0,73,2017,May,17,15,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,122.83,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,February,9,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,42.06,0,3,Check-Out,2020-06-02 -City Hotel,0,13,2016,November,52,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.67,0,2,Check-Out,2019-10-04 -City Hotel,0,142,2016,November,44,10,1,2,2,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Transient-Party,88.17,0,0,Check-Out,2019-07-04 -Resort Hotel,0,46,2016,October,44,27,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,141.96,0,2,Check-Out,2019-08-04 -City Hotel,0,99,2017,July,21,6,2,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,154.34,0,0,Check-Out,2020-06-02 -Resort Hotel,1,293,2017,March,11,10,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,11.0,230.0,0,Transient-Party,34.15,0,0,Canceled,2020-01-04 -City Hotel,1,371,2016,September,37,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,115.53,0,0,Canceled,2019-08-04 -City Hotel,0,36,2016,February,53,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,72.61,0,1,Check-Out,2019-11-03 -Resort Hotel,0,16,2015,August,31,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,0,No Deposit,249.0,179.0,0,Transient,0.38,0,0,Check-Out,2018-06-02 -City Hotel,0,133,2016,July,26,22,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.02,1,0,Check-Out,2019-05-04 -City Hotel,1,203,2017,May,23,19,0,1,3,2.0,0,BB,GBR,Online TA,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,164.35,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2017,March,11,14,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,42.11,0,1,Check-Out,2019-02-01 -City Hotel,0,190,2017,March,18,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,75.14,0,1,Check-Out,2020-05-03 -City Hotel,1,305,2015,July,31,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.74,0,0,Canceled,2018-08-03 -Resort Hotel,1,29,2016,August,36,5,2,5,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,185.9,0,2,No-Show,2019-05-04 -City Hotel,1,49,2015,July,32,6,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.13,0,1,Canceled,2018-06-02 -Resort Hotel,0,49,2016,December,53,5,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,76.24,0,0,Check-Out,2019-08-04 -City Hotel,0,19,2016,April,17,11,2,1,1,0.0,0,HB,ESP,Offline TA/TO,GDS,0,0,0,A,A,1,No Deposit,203.0,179.0,0,Transient,138.96,0,0,Check-Out,2019-10-04 -City Hotel,0,4,2017,June,19,17,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,136.45,0,0,Check-Out,2020-03-03 -City Hotel,0,50,2016,April,16,21,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.59,0,0,Check-Out,2019-02-01 -Resort Hotel,1,323,2016,September,23,31,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient,110.36,0,0,Canceled,2019-02-01 -Resort Hotel,0,240,2017,May,26,20,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,C,I,1,No Deposit,241.0,179.0,0,Transient,149.49,0,1,Check-Out,2019-12-04 -City Hotel,1,104,2016,June,21,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,1.0,179.0,43,Transient,72.89,0,0,Canceled,2019-04-03 -Resort Hotel,1,42,2016,October,45,31,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,75.73,0,2,Canceled,2019-05-04 -City Hotel,1,79,2016,September,44,21,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,78.38,0,0,Canceled,2019-04-03 -Resort Hotel,1,1,2015,January,3,25,2,2,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,92.22,0,0,Canceled,2018-11-02 -Resort Hotel,0,122,2016,September,43,30,3,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,192.61,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,June,27,31,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,0,No Deposit,14.0,198.0,0,Transient,99.29,0,0,Check-Out,2019-06-03 -Resort Hotel,0,302,2016,October,44,6,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,255.0,179.0,20,Transient-Party,78.92,0,2,Check-Out,2019-06-03 -Resort Hotel,0,229,2016,June,9,30,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,29.84,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2015,November,34,30,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,143.97,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2016,June,27,23,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,15.0,47.0,0,Transient,1.29,0,0,Check-Out,2019-05-04 -Resort Hotel,0,52,2017,February,11,5,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,42.5,0,1,Check-Out,2019-11-03 -City Hotel,1,19,2016,March,16,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,42.53,0,0,Canceled,2018-11-02 -Resort Hotel,0,12,2015,October,50,9,1,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,112.68,0,0,Check-Out,2018-08-03 -Resort Hotel,1,266,2016,October,42,2,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Transient,80.59,0,3,Canceled,2019-08-04 -City Hotel,1,12,2017,March,9,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,45.0,0,Transient,60.91,0,0,Canceled,2019-11-03 -City Hotel,0,49,2017,May,23,28,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Contract,61.96,0,0,Check-Out,2020-02-01 -Resort Hotel,0,221,2016,October,42,25,2,10,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,307.0,179.0,0,Transient,120.12,0,0,Check-Out,2019-07-04 -City Hotel,1,28,2016,June,16,31,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.37,0,0,Canceled,2019-03-04 -Resort Hotel,0,32,2017,May,21,31,1,1,2,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient-Party,155.64,1,1,Check-Out,2020-04-02 -Resort Hotel,0,41,2016,December,53,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,78.05,1,2,Check-Out,2019-10-04 -City Hotel,0,3,2016,October,41,20,1,1,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,119.61,0,2,Check-Out,2019-10-04 -City Hotel,0,162,2016,June,26,30,2,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,31.0,179.0,0,Transient-Party,188.37,0,0,Check-Out,2019-05-04 -City Hotel,1,145,2016,February,17,20,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,22.0,179.0,44,Transient,99.24,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,May,20,28,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,81.56,0,1,Check-Out,2020-04-02 -City Hotel,1,28,2016,December,50,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,94.15,0,0,Canceled,2019-09-03 -Resort Hotel,0,22,2016,December,17,30,0,3,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,100.78,0,0,Check-Out,2019-10-04 -City Hotel,1,194,2016,August,38,22,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.13,0,0,Canceled,2019-11-03 -City Hotel,0,16,2016,August,23,28,0,1,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,7.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-04-02 -City Hotel,1,53,2017,April,23,27,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,83.65,0,0,Canceled,2020-02-01 -Resort Hotel,0,137,2017,July,27,6,2,5,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,239.0,179.0,0,Transient,98.92,1,2,Check-Out,2020-06-02 -City Hotel,1,255,2016,October,43,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.59,0,2,Canceled,2019-05-04 -City Hotel,0,0,2016,October,44,17,0,3,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,135.33,0,0,Check-Out,2019-06-03 -Resort Hotel,0,104,2015,September,44,30,2,3,2,0.0,0,FB,ESP,Groups,Direct,0,0,0,A,D,3,No Deposit,2.0,179.0,0,Transient-Party,40.93,0,0,Check-Out,2018-07-03 -City Hotel,0,69,2017,May,23,25,2,3,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.36,0,0,Check-Out,2020-04-02 -Resort Hotel,1,167,2017,August,17,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,76.17,0,1,Canceled,2019-11-03 -Resort Hotel,1,3,2016,February,6,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,56.7,0,0,Canceled,2018-10-03 -City Hotel,0,89,2016,April,10,5,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,1,No Deposit,247.0,179.0,39,Transient,101.13,1,2,Check-Out,2019-01-03 -City Hotel,1,114,2016,May,22,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,15,Transient,77.36,0,0,Canceled,2018-12-03 -City Hotel,1,273,2015,October,46,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.22,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2015,November,50,5,0,10,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,32.31,0,2,Check-Out,2018-09-02 -City Hotel,0,0,2016,October,46,21,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,195.0,0,Transient,81.14,0,0,Check-Out,2019-08-04 -Resort Hotel,0,42,2016,March,42,9,2,5,2,0.0,0,FB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,0,Transient-Party,72.72,0,0,Check-Out,2019-07-04 -City Hotel,0,225,2016,August,37,14,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,86.02,1,2,Check-Out,2019-05-04 -City Hotel,1,148,2017,July,34,29,0,4,3,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,26.0,179.0,0,Transient,62.21,0,0,Canceled,2020-03-03 -City Hotel,1,269,2016,July,33,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.48,0,0,Canceled,2019-04-03 -City Hotel,1,251,2015,July,33,25,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Contract,60.94,0,0,Canceled,2017-09-02 -Resort Hotel,0,10,2015,October,45,15,2,6,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,29.49,0,0,Check-Out,2018-07-03 -Resort Hotel,0,153,2016,March,9,19,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,37.69,0,0,Check-Out,2019-02-01 -Resort Hotel,1,275,2017,May,22,6,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,168.48,0,0,Canceled,2020-03-03 -Resort Hotel,0,153,2017,July,33,6,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,129.31,0,3,Check-Out,2020-03-03 -City Hotel,0,4,2015,September,44,6,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,61,Transient-Party,61.52,0,0,Check-Out,2018-07-03 -Resort Hotel,0,1,2017,July,35,25,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-11-03 -City Hotel,1,30,2016,March,8,12,2,1,2,2.0,0,HB,USA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.29,0,1,Canceled,2018-12-03 -City Hotel,1,43,2015,September,45,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,133.47,0,0,Canceled,2017-12-03 -City Hotel,0,102,2017,February,10,18,1,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,64.55,0,0,Check-Out,2019-12-04 -City Hotel,1,284,2015,July,27,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.72,0,0,Canceled,2017-11-02 -City Hotel,0,1,2016,January,20,12,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,71.64,0,0,Check-Out,2019-03-04 -Resort Hotel,0,41,2016,October,51,13,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,265.0,179.0,0,Transient,45.5,0,0,Check-Out,2019-02-01 -Resort Hotel,0,11,2017,June,27,7,0,1,1,0.0,0,HB,PRT,Groups,Corporate,1,0,0,E,I,2,No Deposit,378.0,214.0,0,Transient,159.07,0,0,Check-Out,2020-03-03 -City Hotel,1,53,2015,December,19,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.41,0,0,Canceled,2018-12-03 -City Hotel,0,141,2016,June,26,9,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.82,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,October,42,16,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,C,C,1,No Deposit,16.0,179.0,0,Transient-Party,97.86,0,0,Check-Out,2019-05-04 -Resort Hotel,0,105,2016,December,53,9,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,128.45,0,1,Check-Out,2019-10-04 -Resort Hotel,0,11,2016,July,35,30,0,4,3,1.0,0,BB,,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,247.17,0,0,Check-Out,2019-05-04 -Resort Hotel,0,195,2017,August,38,10,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,119.77,1,2,Check-Out,2020-06-02 -City Hotel,0,33,2015,February,53,21,2,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,149.44,0,0,Check-Out,2019-01-03 -Resort Hotel,0,10,2017,March,27,21,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,220.53,0,0,Check-Out,2020-03-03 -City Hotel,1,1,2017,December,52,14,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,P,P,0,Non Refund,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-12-04 -City Hotel,0,3,2016,December,50,31,2,3,1,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,A,C,0,No Deposit,11.0,331.0,0,Transient,82.58,0,3,Check-Out,2019-12-04 -Resort Hotel,0,43,2017,April,27,6,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,61.3,0,0,Check-Out,2020-06-02 -Resort Hotel,0,18,2017,August,37,5,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,110.44,0,2,No-Show,2020-06-02 -Resort Hotel,0,159,2016,July,26,5,2,4,3,1.0,0,BB,,Direct,Direct,0,0,0,H,H,2,No Deposit,249.0,179.0,0,Transient,238.11,0,0,Check-Out,2019-04-03 -City Hotel,1,95,2016,June,24,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,2,No Deposit,21.0,179.0,0,Group,93.54,0,1,Canceled,2019-07-04 -City Hotel,0,91,2016,March,18,16,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,75.82,0,1,Check-Out,2019-03-04 -City Hotel,0,15,2015,October,44,5,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,8.0,179.0,0,Contract,67.2,0,2,Check-Out,2018-08-03 -City Hotel,1,105,2017,May,23,22,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,162.59,0,1,Canceled,2020-03-03 -Resort Hotel,0,48,2017,May,28,17,2,5,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,1,No Deposit,247.0,179.0,0,Transient,40.85,0,1,Check-Out,2020-05-03 -City Hotel,0,1,2017,February,10,16,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.63,0,0,Check-Out,2019-11-03 -Resort Hotel,0,36,2016,July,33,30,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,153.16,1,1,Check-Out,2019-05-04 -City Hotel,1,165,2016,March,13,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,296.0,179.0,0,Transient,63.18,0,0,Canceled,2018-11-02 -City Hotel,0,5,2016,August,44,31,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,99.91,0,2,Check-Out,2019-08-04 -Resort Hotel,0,245,2016,August,31,8,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,192.58,0,0,Check-Out,2020-06-02 -Resort Hotel,1,106,2015,August,39,28,2,5,3,1.0,0,HB,PRT,Online TA,Undefined,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,217.8,0,0,Canceled,2018-05-03 -City Hotel,1,17,2017,April,16,30,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,78.88,0,1,Canceled,2019-12-04 -City Hotel,0,6,2016,March,17,14,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.81,0,1,Check-Out,2019-04-03 -City Hotel,1,146,2016,June,20,18,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,122.7,0,2,No-Show,2020-03-03 -Resort Hotel,0,152,2017,March,17,14,1,0,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,96.72,0,0,Check-Out,2020-04-02 -City Hotel,1,15,2016,October,44,21,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,160.39,0,1,Canceled,2019-10-04 -Resort Hotel,0,58,2016,February,11,10,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient,44.43,0,1,Check-Out,2019-03-04 -City Hotel,1,53,2016,October,46,16,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,140.65,0,0,Canceled,2019-09-03 -City Hotel,0,3,2016,May,22,6,0,3,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,74.55,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,February,11,13,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,72.0,0,Transient,86.37,0,0,Check-Out,2018-11-02 -City Hotel,1,140,2016,April,19,9,2,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,88.68,0,0,Canceled,2019-01-03 -City Hotel,1,247,2017,July,35,5,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,160.0,179.0,0,Transient,126.39,0,0,Canceled,2019-06-03 -City Hotel,0,19,2016,April,26,24,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.09,0,0,Check-Out,2019-02-01 -City Hotel,0,278,2016,August,27,24,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,114.37,0,1,Check-Out,2019-05-04 -Resort Hotel,0,33,2016,August,37,14,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,C,1,No Deposit,240.0,179.0,0,Transient,239.63,1,1,Check-Out,2019-06-03 -City Hotel,0,91,2016,June,21,14,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,142.86,0,1,Check-Out,2019-06-03 -Resort Hotel,0,51,2016,March,15,24,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,64.92,0,2,Check-Out,2020-04-02 -Resort Hotel,0,118,2016,October,41,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,77.76,0,0,Check-Out,2019-08-04 -City Hotel,1,26,2017,March,9,20,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,233.0,179.0,0,Transient,61.35,0,0,Canceled,2020-02-01 -City Hotel,0,155,2015,October,41,12,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,108.3,0,0,Check-Out,2019-07-04 -Resort Hotel,0,28,2015,January,4,28,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Contract,73.26,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2017,February,10,17,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,18.0,108.0,0,Transient,28.16,0,0,Check-Out,2020-02-01 -City Hotel,0,19,2016,October,34,13,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Contract,121.72,0,2,Check-Out,2019-04-03 -City Hotel,1,44,2017,June,31,16,2,2,1,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,210.32,1,0,Canceled,2020-06-02 -Resort Hotel,0,0,2017,January,3,11,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,17.0,76.0,0,Transient,34.53,0,0,Check-Out,2019-11-03 -City Hotel,0,190,2017,May,21,6,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Group,216.27,0,0,Check-Out,2020-03-03 -City Hotel,0,17,2015,October,43,5,0,1,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient-Party,62.63,0,0,Check-Out,2018-09-02 -City Hotel,1,394,2017,August,38,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.25,0,0,Canceled,2018-09-02 -Resort Hotel,1,87,2016,February,8,26,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient,69.39,0,0,Canceled,2019-01-03 -Resort Hotel,0,46,2017,March,10,20,0,2,2,0.0,0,HB,DEU,Groups,Corporate,0,0,0,A,I,1,No Deposit,301.0,331.0,0,Transient-Party,74.82,0,0,Check-Out,2020-02-01 -City Hotel,0,19,2016,September,44,5,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,134.84,0,2,Check-Out,2019-06-03 -City Hotel,1,35,2017,February,10,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.16,0,0,Canceled,2019-10-04 -City Hotel,0,47,2015,December,53,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Group,80.24,0,2,Check-Out,2019-10-04 -City Hotel,1,90,2017,April,36,2,2,5,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,90.79,0,1,Canceled,2019-10-04 -City Hotel,1,9,2016,November,46,2,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,43.11,0,0,Canceled,2019-07-04 -City Hotel,0,148,2015,September,43,17,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,86.13,0,0,Check-Out,2018-06-02 -City Hotel,0,3,2017,June,25,9,0,3,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.28,0,2,Check-Out,2020-06-02 -Resort Hotel,0,150,2016,March,24,31,1,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,D,1,Refundable,17.0,223.0,0,Transient-Party,40.06,0,0,Check-Out,2019-03-04 -Resort Hotel,0,161,2017,March,12,17,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,147.73,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,September,46,29,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,131.88,1,0,Check-Out,2019-09-03 -Resort Hotel,0,285,2015,September,41,24,0,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,20,Contract,75.39,0,0,Canceled,2018-08-03 -City Hotel,0,140,2016,June,24,16,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.95,1,0,Check-Out,2019-03-04 -City Hotel,0,69,2016,August,36,13,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,8.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-08-04 -Resort Hotel,1,226,2016,February,4,22,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,84.99,0,0,Canceled,2019-02-01 -City Hotel,0,105,2017,May,36,23,2,1,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,76.54,0,0,Check-Out,2020-06-02 -City Hotel,0,27,2015,December,50,10,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,60.1,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2017,July,30,4,0,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,18.0,179.0,0,Transient,199.46,0,0,Canceled,2019-05-04 -City Hotel,0,50,2017,April,16,15,0,3,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.32,1,0,Check-Out,2020-04-02 -City Hotel,0,60,2015,August,31,5,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.34,0,0,Check-Out,2018-11-02 -City Hotel,0,20,2016,November,43,8,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,158.19,0,1,Check-Out,2019-12-04 -Resort Hotel,0,153,2016,June,37,28,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,F,0,No Deposit,250.0,179.0,0,Transient,82.43,1,1,Check-Out,2019-06-03 -Resort Hotel,0,43,2016,August,31,10,1,3,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,C,0,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-05-04 -City Hotel,0,7,2016,June,25,14,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.42,0,1,Check-Out,2019-07-04 -Resort Hotel,0,197,2017,April,17,28,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,248.0,179.0,0,Transient,126.17,1,2,Check-Out,2020-03-03 -City Hotel,0,1,2017,July,30,29,0,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,165.13,0,1,Check-Out,2020-06-02 -City Hotel,1,115,2017,July,31,30,2,5,3,1.0,0,BB,USA,Direct,Direct,0,0,0,F,D,0,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Canceled,2020-06-02 -Resort Hotel,0,102,2016,March,17,20,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,83.0,179.0,0,Transient,72.48,0,1,Check-Out,2019-11-03 -City Hotel,0,3,2016,April,18,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,27.62,0,0,Check-Out,2019-04-03 -Resort Hotel,0,17,2017,February,9,21,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,H,1,No Deposit,18.0,331.0,0,Transient,164.23,0,0,Check-Out,2020-04-02 -City Hotel,1,18,2017,February,8,26,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,69.25,0,0,Canceled,2019-11-03 -City Hotel,1,410,2016,November,22,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,20,Transient,61.75,0,0,Canceled,2019-03-04 -City Hotel,1,93,2016,July,31,17,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,6.0,179.0,0,Transient,183.48,0,3,Canceled,2019-05-04 -Resort Hotel,0,0,2016,April,17,14,0,1,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,H,1,No Deposit,245.0,179.0,0,Transient,97.78,1,0,Check-Out,2020-03-03 -Resort Hotel,0,36,2015,August,31,30,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,D,1,No Deposit,68.0,179.0,0,Transient-Party,105.42,0,0,Check-Out,2018-06-02 -City Hotel,1,58,2016,April,17,19,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,6.0,179.0,0,Transient,164.59,0,0,Canceled,2018-10-03 -City Hotel,0,10,2017,March,13,13,2,2,2,0.0,0,BB,GBR,Aviation,Corporate,1,0,0,E,E,0,No Deposit,14.0,331.0,0,Transient-Party,93.67,0,0,Check-Out,2020-04-02 -Resort Hotel,0,9,2017,April,20,21,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,248.0,179.0,0,Transient,154.84,1,0,Check-Out,2019-03-04 -City Hotel,0,163,2016,June,25,2,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,83.0,179.0,0,Transient,134.51,0,0,Check-Out,2020-01-04 -Resort Hotel,0,2,2016,October,45,9,0,4,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,154.79,0,0,Check-Out,2019-10-04 -Resort Hotel,1,36,2015,October,44,6,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient-Party,37.57,0,0,Check-Out,2019-08-04 -Resort Hotel,0,30,2015,December,51,22,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,87.0,179.0,0,Group,44.03,1,0,Check-Out,2018-08-03 -Resort Hotel,0,164,2015,February,49,2,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,44.78,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2015,September,43,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,91.21,0,0,Check-Out,2018-08-03 -City Hotel,0,113,2015,July,34,5,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,87.87,0,2,Check-Out,2018-06-02 -City Hotel,1,161,2015,July,32,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.17,0,0,Canceled,2018-08-03 -City Hotel,0,383,2015,October,45,22,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,87.98,0,2,Check-Out,2018-08-03 -Resort Hotel,0,262,2016,September,45,6,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,242.0,179.0,0,Contract,166.53,0,2,Check-Out,2019-08-04 -Resort Hotel,1,195,2016,August,31,20,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,160.0,179.0,0,Transient,178.3,0,0,No-Show,2019-06-03 -City Hotel,1,21,2016,April,16,15,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Canceled,2019-03-04 -City Hotel,0,32,2016,June,25,5,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,169.0,179.0,0,Transient,73.29,0,0,Check-Out,2019-02-01 -Resort Hotel,0,34,2015,August,37,22,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,39.05,0,0,Check-Out,2018-06-02 -City Hotel,0,42,2017,July,31,28,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,111.65,0,0,Check-Out,2020-06-02 -City Hotel,0,26,2015,September,35,15,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,79.28,0,2,Check-Out,2018-08-03 -City Hotel,1,87,2016,June,29,30,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,178.92,0,1,Canceled,2020-04-02 -City Hotel,1,388,2016,September,42,15,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,62,Transient,59.89,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2017,May,19,20,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,E,A,2,No Deposit,12.0,179.0,0,Transient-Party,77.06,0,1,Check-Out,2020-03-03 -City Hotel,1,13,2015,September,44,2,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,83.59,0,0,No-Show,2018-08-03 -City Hotel,1,263,2017,August,36,13,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,73.15,0,0,Canceled,2020-07-03 -City Hotel,0,2,2016,May,22,3,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.83,0,1,Check-Out,2019-02-01 -City Hotel,1,156,2017,July,31,5,1,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,212.92,0,2,Canceled,2020-05-03 -Resort Hotel,1,156,2016,March,17,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,2.0,179.0,0,Transient,76.84,0,0,Canceled,2019-03-04 -City Hotel,0,0,2017,June,22,9,2,0,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,Non Refund,184.0,179.0,0,Transient,220.36,0,0,Check-Out,2020-05-03 -Resort Hotel,0,269,2017,August,36,10,2,5,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,176.46,0,2,Check-Out,2020-07-03 -City Hotel,0,2,2016,September,35,6,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,47.58,0,0,Check-Out,2018-06-02 -Resort Hotel,0,101,2017,February,10,21,1,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,87.0,179.0,0,Transient-Party,72.74,0,0,Check-Out,2020-03-03 -Resort Hotel,0,17,2015,September,37,21,4,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,1,A,D,0,No Deposit,13.0,179.0,0,Group,92.54,0,0,Check-Out,2018-07-03 -City Hotel,0,0,2016,December,53,2,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,94.07,0,1,Check-Out,2018-12-03 -City Hotel,0,71,2015,October,50,6,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,99.48,0,0,Check-Out,2018-08-03 -City Hotel,1,1,2016,December,50,5,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,255.0,0,Transient,1.79,0,0,Canceled,2019-09-03 -Resort Hotel,0,2,2016,November,44,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,April,18,10,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,2,No Deposit,247.0,179.0,0,Transient,121.17,1,2,Check-Out,2019-02-01 -City Hotel,1,3,2016,February,2,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.52,0,0,Canceled,2018-11-02 -Resort Hotel,0,2,2017,August,35,13,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,C,0,No Deposit,249.0,179.0,0,Transient,184.93,0,0,Check-Out,2020-07-03 -City Hotel,1,78,2016,December,43,18,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,155.8,0,3,Canceled,2019-10-04 -City Hotel,0,65,2016,April,17,18,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,121.0,179.0,0,Transient-Party,92.6,0,0,Check-Out,2019-02-01 -City Hotel,1,147,2016,June,26,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,90.96,0,0,Canceled,2018-08-03 -City Hotel,0,103,2016,November,50,6,2,0,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,72.74,0,0,Check-Out,2019-09-03 -City Hotel,0,75,2017,October,44,16,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,7.0,179.0,0,Transient,81.35,0,2,Check-Out,2019-12-04 -City Hotel,0,107,2016,April,17,2,0,3,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient,135.08,0,1,Check-Out,2018-11-02 -City Hotel,1,318,2015,September,43,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,43,Transient,70.89,0,0,Canceled,2018-08-03 -City Hotel,0,105,2017,March,9,5,1,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,69.1,0,0,Check-Out,2020-03-03 -Resort Hotel,0,93,2016,April,20,25,0,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient-Party,73.48,0,0,Check-Out,2019-04-03 -Resort Hotel,0,246,2015,October,43,31,1,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,101.56,0,0,Check-Out,2018-06-02 -City Hotel,0,21,2017,May,22,2,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,2.12,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2017,June,26,21,1,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,73.32,0,1,Check-Out,2020-02-01 -City Hotel,0,17,2016,March,28,10,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,28.0,179.0,0,Transient,70.1,0,0,Check-Out,2019-01-03 -Resort Hotel,1,102,2016,April,17,13,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,79.0,179.0,75,Transient-Party,70.96,0,0,Canceled,2019-01-03 -Resort Hotel,0,97,2016,October,46,25,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,67.92,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,November,50,29,1,0,1,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.61,0,2,Check-Out,2019-06-03 -Resort Hotel,0,100,2015,November,50,5,2,1,1,0.0,0,FB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,66.33,0,0,Check-Out,2018-08-03 -Resort Hotel,0,59,2015,November,52,29,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,77.3,1,1,Check-Out,2018-09-02 -Resort Hotel,1,30,2017,May,22,31,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,117.99,0,3,Check-Out,2020-03-03 -Resort Hotel,0,48,2016,March,10,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,242.0,179.0,0,Group,26.71,0,0,Check-Out,2018-11-02 -City Hotel,0,14,2017,May,22,6,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,245.0,179.0,0,Transient,157.35,0,1,Check-Out,2020-03-03 -City Hotel,1,33,2016,October,21,5,2,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,97.45,0,1,Canceled,2019-04-03 -City Hotel,1,19,2015,September,39,22,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,D,D,0,No Deposit,14.0,217.0,0,Transient,174.23,0,0,Canceled,2018-09-02 -City Hotel,1,55,2015,September,42,26,0,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,E,0,Non Refund,23.0,179.0,0,Transient,151.92,0,0,Canceled,2018-08-03 -Resort Hotel,0,50,2016,March,11,15,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,65.84,0,2,Check-Out,2018-12-03 -City Hotel,1,33,2015,December,42,20,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,169.4,0,0,Canceled,2018-08-03 -City Hotel,1,12,2016,July,10,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,89.05,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,May,23,17,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,90.0,179.0,0,Transient,134.06,0,1,Check-Out,2020-03-03 -City Hotel,0,18,2016,October,44,31,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-08-04 -City Hotel,1,87,2016,December,27,27,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,101.23,0,0,Canceled,2019-02-01 -Resort Hotel,0,16,2016,December,49,21,4,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,186.0,179.0,0,Transient,76.37,1,1,Check-Out,2019-11-03 -Resort Hotel,0,139,2016,March,16,31,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,222.0,0,Transient-Party,53.46,0,0,Check-Out,2019-02-01 -City Hotel,1,189,2017,July,35,17,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.09,0,0,Canceled,2019-11-03 -City Hotel,1,42,2015,September,44,24,1,4,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,168.55,0,0,Canceled,2018-08-03 -City Hotel,1,43,2016,April,16,8,2,5,3,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,121.55,0,0,Canceled,2019-01-03 -City Hotel,0,233,2017,July,31,20,0,1,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,113.32,0,1,Check-Out,2020-06-02 -Resort Hotel,0,102,2016,July,27,5,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,194.0,179.0,0,Transient,128.57,0,0,Check-Out,2019-06-03 -City Hotel,0,18,2016,July,26,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.21,0,0,Check-Out,2019-06-03 -City Hotel,1,388,2016,September,38,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.64,0,0,Canceled,2018-09-02 -City Hotel,1,165,2016,May,23,27,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,61.57,0,0,Canceled,2019-10-04 -Resort Hotel,0,38,2016,September,38,31,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,197.0,179.0,0,Transient,61.26,0,0,Check-Out,2019-08-04 -City Hotel,0,14,2016,October,44,7,1,1,1,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,198.51,0,0,Check-Out,2019-07-04 -Resort Hotel,1,1,2017,May,21,9,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,3.46,0,0,Canceled,2020-02-01 -City Hotel,1,107,2017,June,28,21,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,115.27,0,0,Canceled,2020-06-02 -City Hotel,1,52,2017,August,36,4,0,2,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,215.13,0,0,Canceled,2019-07-04 -City Hotel,0,165,2016,December,53,29,0,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,89.27,0,1,Check-Out,2019-08-04 -City Hotel,0,148,2016,November,43,5,2,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.81,0,1,Check-Out,2019-11-03 -City Hotel,0,36,2016,December,52,5,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -Resort Hotel,0,31,2016,May,32,6,0,1,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,77.3,1,2,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,March,17,22,1,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,E,E,1,No Deposit,144.0,179.0,0,Transient,88.94,1,0,Check-Out,2019-02-01 -City Hotel,0,14,2017,May,22,5,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.55,1,3,Check-Out,2019-12-04 -City Hotel,0,51,2016,April,17,10,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.48,0,0,Check-Out,2019-03-04 -City Hotel,1,37,2015,November,36,16,0,2,2,2.0,0,HB,ESP,Online TA,TA/TO,0,1,0,G,G,0,No Deposit,235.0,179.0,0,Transient,145.2,0,0,Canceled,2018-07-03 -City Hotel,1,108,2016,September,38,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,151.8,0,0,Canceled,2019-10-04 -Resort Hotel,0,47,2016,December,51,15,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,311.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2019-09-03 -City Hotel,0,52,2015,September,38,20,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Contract,79.19,0,2,Check-Out,2018-07-03 -Resort Hotel,1,164,2017,February,12,12,0,7,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,376.0,179.0,0,Transient,84.18,0,0,Canceled,2019-10-04 -City Hotel,0,14,2016,December,51,21,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,232.0,0,Transient,60.62,0,0,Check-Out,2019-11-03 -Resort Hotel,0,99,2015,July,33,10,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,100.04,0,0,Check-Out,2018-06-02 -City Hotel,0,38,2015,July,32,8,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.16,0,2,Check-Out,2020-01-04 -City Hotel,1,42,2016,January,9,21,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,0,Transient,62.41,0,0,Canceled,2018-11-02 -City Hotel,0,54,2016,February,50,5,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,76.1,0,1,Check-Out,2019-11-03 -City Hotel,1,33,2016,October,45,16,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,96.59,0,0,Canceled,2019-12-04 -City Hotel,1,143,2016,August,35,6,2,5,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.16,0,0,Canceled,2019-08-04 -Resort Hotel,0,5,2015,July,41,5,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,32.33,0,0,Check-Out,2018-05-03 -City Hotel,0,148,2016,March,23,5,1,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,89.0,179.0,0,Transient-Party,38.07,0,0,Check-Out,2019-01-03 -Resort Hotel,1,105,2017,August,36,27,2,5,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,D,F,1,No Deposit,17.0,179.0,0,Transient,229.12,0,2,Canceled,2020-06-02 -City Hotel,0,187,2017,June,21,17,0,3,1,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-05-03 -Resort Hotel,0,10,2016,August,34,30,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,H,2,No Deposit,248.0,179.0,0,Transient,48.78,1,0,Check-Out,2019-07-04 -City Hotel,0,17,2015,November,44,31,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.52,0,0,Check-Out,2018-09-02 -Resort Hotel,0,40,2015,July,37,6,2,5,3,1.0,0,HB,IRL,Direct,Direct,0,0,0,D,G,3,No Deposit,248.0,179.0,0,Transient,133.71,0,0,Check-Out,2018-07-03 -City Hotel,1,15,2016,May,25,19,1,0,1,0.0,0,SC,PRT,Complementary,TA/TO,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,0.0,0,2,Canceled,2019-11-03 -Resort Hotel,0,230,2015,September,34,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,158.91,1,0,Check-Out,2018-05-03 -Resort Hotel,0,11,2016,August,36,15,0,2,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,250.0,179.0,0,Transient,210.9,1,0,Check-Out,2019-02-01 -Resort Hotel,1,150,2016,July,33,4,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,129.54,0,1,Canceled,2018-10-03 -City Hotel,0,9,2017,May,20,16,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.58,0,0,Check-Out,2020-04-02 -City Hotel,0,102,2017,April,10,5,2,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,221.0,0,Transient,112.86,0,3,Check-Out,2020-03-03 -City Hotel,1,43,2015,October,43,28,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,19,Transient,91.84,0,0,Canceled,2018-08-03 -Resort Hotel,0,154,2016,September,44,31,4,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,114.69,0,0,Check-Out,2019-08-04 -Resort Hotel,0,7,2016,May,22,27,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,84.44,0,2,Check-Out,2019-03-04 -Resort Hotel,1,106,2016,July,31,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,101.74,0,0,Canceled,2019-05-04 -Resort Hotel,0,14,2017,April,11,28,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,67.15,0,0,Check-Out,2020-03-03 -City Hotel,0,45,2017,May,21,15,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,8.0,179.0,0,Transient,142.07,1,2,Check-Out,2019-03-04 -Resort Hotel,0,96,2016,July,32,29,3,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,244.0,0,2,Check-Out,2019-05-04 -City Hotel,0,325,2016,November,44,22,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,66,Transient-Party,121.19,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,January,4,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,78.66,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2017,June,22,24,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,167.97,0,3,Check-Out,2020-06-02 -City Hotel,1,150,2016,July,37,12,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,118.11,0,0,Canceled,2019-04-03 -City Hotel,0,255,2015,September,43,7,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.71,0,0,Check-Out,2017-09-02 -City Hotel,0,197,2017,July,32,6,1,5,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.16,0,1,Check-Out,2020-06-02 -City Hotel,0,18,2016,September,35,9,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,84.84,0,0,Check-Out,2019-07-04 -Resort Hotel,0,47,2016,December,51,30,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,103.45,0,2,Check-Out,2019-10-04 -City Hotel,1,142,2015,September,41,14,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.87,0,0,Canceled,2018-08-03 -City Hotel,0,38,2017,August,17,12,0,3,3,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,148.91,0,1,Check-Out,2020-03-03 -City Hotel,0,35,2017,March,8,15,0,2,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,106.31,0,1,Check-Out,2020-01-04 -City Hotel,1,269,2017,August,37,30,1,2,2,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,10.0,179.0,0,Transient,62.03,0,2,Canceled,2019-12-04 -Resort Hotel,0,31,2017,March,24,28,2,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,60.98,0,0,Check-Out,2019-02-01 -City Hotel,1,215,2017,August,36,6,1,0,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,147.55,0,2,Canceled,2019-09-03 -City Hotel,1,143,2016,June,38,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Contract,86.47,0,0,Canceled,2018-07-03 -Resort Hotel,1,170,2016,October,36,9,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,43.84,0,0,Canceled,2018-09-02 -City Hotel,1,35,2016,February,10,6,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,57.62,0,0,Canceled,2019-02-01 -Resort Hotel,0,12,2017,June,2,2,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,114.72,0,2,Check-Out,2020-03-03 -City Hotel,0,211,2016,August,39,5,2,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.22,0,2,Check-Out,2018-06-02 -City Hotel,1,141,2016,January,11,30,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,81.0,179.0,43,Transient,70.99,0,0,Canceled,2019-02-01 -City Hotel,1,280,2015,October,36,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.83,0,0,Canceled,2018-05-03 -City Hotel,1,38,2015,July,34,24,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,169.72,0,0,Canceled,2018-05-03 -City Hotel,0,25,2016,July,49,5,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,151.89,0,1,Check-Out,2018-08-03 -City Hotel,0,58,2017,April,15,6,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,216.0,179.0,0,Transient,222.07,0,2,Check-Out,2020-03-03 -Resort Hotel,1,142,2016,March,16,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,69.0,0,Transient-Party,61.71,0,0,Canceled,2019-03-04 -City Hotel,1,197,2017,March,16,21,1,3,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,90.92,0,0,Canceled,2020-01-04 -City Hotel,1,41,2017,February,10,16,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,Non Refund,12.0,72.0,0,Transient,67.86,0,0,Canceled,2019-12-04 -City Hotel,0,3,2016,June,26,12,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,177.0,179.0,0,Transient,42.51,0,1,Check-Out,2020-06-02 -City Hotel,1,207,2015,July,36,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.51,0,0,No-Show,2018-09-02 -City Hotel,0,16,2016,February,9,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,2.0,179.0,61,Transient-Party,60.64,0,0,Check-Out,2019-02-01 -City Hotel,1,97,2016,October,43,6,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,155.79,0,2,Canceled,2019-07-04 -Resort Hotel,1,47,2016,December,53,27,1,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,75.41,0,0,Canceled,2018-10-03 -Resort Hotel,1,11,2017,July,35,28,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,214.43,0,3,Canceled,2020-02-01 -City Hotel,0,11,2015,December,50,20,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,73.65,0,0,Check-Out,2019-10-04 -City Hotel,0,254,2017,May,20,13,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,75,Transient-Party,87.84,0,0,Check-Out,2020-02-01 -City Hotel,0,11,2017,June,28,9,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,122.84,0,1,Check-Out,2020-07-03 -City Hotel,0,9,2017,May,21,5,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.45,0,1,Check-Out,2020-05-03 -Resort Hotel,0,43,2016,December,51,26,2,3,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,191.54,0,0,Check-Out,2019-03-04 -Resort Hotel,0,101,2016,April,17,24,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,H,1,No Deposit,242.0,179.0,0,Transient,116.63,1,2,Check-Out,2019-03-04 -City Hotel,0,238,2017,December,52,28,2,5,2,1.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,100.12,0,1,Check-Out,2019-12-04 -City Hotel,0,0,2016,February,10,21,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,79.57,0,1,Check-Out,2018-11-02 -Resort Hotel,0,20,2015,September,36,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,117.86,0,2,Check-Out,2018-05-03 -City Hotel,0,46,2015,August,45,18,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,158.7,0,3,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,December,50,5,1,0,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,61.0,0,Transient,39.96,0,0,Check-Out,2019-11-03 -Resort Hotel,1,293,2016,April,18,18,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,119.52,0,2,Canceled,2019-02-01 -City Hotel,1,82,2016,January,25,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.57,0,0,No-Show,2018-12-03 -Resort Hotel,0,0,2016,April,15,6,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient,31.54,0,1,Check-Out,2019-02-01 -City Hotel,0,17,2017,January,4,28,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,1,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,60.84,0,0,Check-Out,2019-11-03 -Resort Hotel,1,13,2017,July,31,28,0,3,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,238.0,179.0,0,Transient,166.75,1,2,No-Show,2020-04-02 -City Hotel,0,1,2016,September,35,21,3,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,96.67,1,0,Check-Out,2019-06-03 -Resort Hotel,0,5,2015,December,43,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,39.16,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,January,2,12,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,14.0,89.0,0,Transient,36.91,1,0,Check-Out,2019-11-03 -City Hotel,0,19,2016,September,50,18,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,228.0,0,Transient,91.71,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,August,34,30,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,241.0,179.0,0,Transient,194.15,0,0,Check-Out,2020-06-02 -City Hotel,0,7,2016,September,41,14,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.13,0,0,Check-Out,2019-08-04 -Resort Hotel,0,187,2015,September,32,11,1,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Contract,84.33,0,0,Check-Out,2017-10-03 -Resort Hotel,0,0,2016,March,21,8,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,0,No Deposit,13.0,179.0,75,Transient-Party,24.49,1,3,Check-Out,2019-02-01 -City Hotel,0,12,2016,October,44,14,0,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient-Party,84.51,0,0,Check-Out,2019-06-03 -City Hotel,1,116,2017,February,9,20,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,55.41,0,0,Canceled,2019-11-03 -Resort Hotel,0,55,2017,July,24,5,1,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,304.0,179.0,0,Transient,83.01,0,2,Check-Out,2020-04-02 -City Hotel,1,122,2015,November,45,28,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,119.44,0,0,Canceled,2018-09-02 -City Hotel,0,29,2017,July,34,8,0,2,1,2.0,0,BB,CHE,Complementary,Direct,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,121.33,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2015,October,52,19,1,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,78.32,0,1,Check-Out,2018-06-02 -City Hotel,0,41,2017,June,37,6,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,105.04,0,2,Check-Out,2020-05-03 -City Hotel,0,21,2017,May,22,29,2,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,101.39,0,1,Check-Out,2020-04-02 -City Hotel,1,57,2016,April,15,6,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,13.0,55.0,0,Transient,36.26,0,0,Check-Out,2019-11-03 -City Hotel,1,1,2017,May,21,27,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.67,0,0,Canceled,2019-11-03 -City Hotel,1,6,2016,November,43,6,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-07-04 -Resort Hotel,0,219,2017,July,32,24,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -Resort Hotel,0,163,2016,March,18,31,1,3,1,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,H,0,Refundable,307.0,224.0,0,Transient-Party,66.12,0,0,Check-Out,2019-02-01 -Resort Hotel,0,260,2016,September,43,21,2,5,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,122.52,0,2,Check-Out,2019-08-04 -City Hotel,0,1,2015,October,46,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,234.0,0,Transient-Party,60.27,0,1,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,November,50,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,257.0,0,Transient,40.64,0,0,Check-Out,2019-10-04 -City Hotel,0,49,2017,July,20,21,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.72,0,2,Check-Out,2020-04-02 -City Hotel,0,17,2017,June,34,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,64.0,0,Transient,82.24,0,0,Check-Out,2019-08-04 -City Hotel,1,119,2016,April,16,21,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,6.0,179.0,0,Transient,71.17,1,0,Canceled,2018-11-02 -City Hotel,1,152,2016,April,49,12,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,28.0,179.0,66,Transient,73.34,0,0,Canceled,2018-11-02 -City Hotel,1,81,2017,June,23,20,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,62.11,0,0,Canceled,2020-04-02 -Resort Hotel,0,3,2016,July,35,28,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,75.9,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2015,December,53,2,1,3,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,61.9,0,0,Check-Out,2018-12-03 -City Hotel,0,10,2017,August,38,20,0,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.57,1,2,Check-Out,2020-07-03 -City Hotel,0,252,2015,July,33,28,0,2,2,2.0,0,BB,USA,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-06-02 -City Hotel,0,1,2015,July,33,15,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,118.2,0,2,Check-Out,2018-06-02 -City Hotel,1,41,2016,February,9,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,60.75,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2015,October,45,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.77,0,1,Check-Out,2018-08-03 -City Hotel,1,97,2016,January,3,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,59.68,0,0,Canceled,2018-10-03 -Resort Hotel,0,107,2016,March,17,26,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,71.24,0,2,Check-Out,2019-03-04 -Resort Hotel,0,40,2016,December,19,29,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,62.82,1,2,Check-Out,2018-12-03 -City Hotel,1,47,2016,October,42,12,1,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,121.89,0,0,Canceled,2019-09-03 -Resort Hotel,1,2,2016,August,30,5,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,C,K,0,No Deposit,242.0,179.0,0,Transient,0.61,0,1,Check-Out,2019-10-04 -Resort Hotel,0,258,2016,June,26,30,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Contract,82.74,0,0,Check-Out,2019-06-03 -Resort Hotel,0,245,2016,October,45,30,4,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,82.0,179.0,0,Contract,64.87,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,June,37,6,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,2,No Deposit,181.0,179.0,0,Transient,102.23,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,January,2,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,93.0,0,Transient,38.73,0,0,Check-Out,2019-10-04 -Resort Hotel,0,16,2017,April,19,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,G,1,No Deposit,10.0,179.0,0,Transient,137.06,0,1,Check-Out,2020-04-02 -City Hotel,1,149,2016,October,45,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.51,0,0,Canceled,2018-07-03 -City Hotel,0,17,2016,September,37,24,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,108.59,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,December,50,20,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,126.49,1,0,Check-Out,2019-08-04 -City Hotel,1,83,2016,August,36,21,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,122.27,0,1,Canceled,2019-08-04 -Resort Hotel,1,393,2016,November,46,3,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient-Party,59.43,0,0,Canceled,2019-09-03 -Resort Hotel,0,25,2016,December,52,27,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,G,0,No Deposit,16.0,179.0,0,Transient-Party,59.52,0,0,Check-Out,2019-11-03 -Resort Hotel,0,287,2017,April,22,5,2,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,32.57,0,2,Check-Out,2020-04-02 -City Hotel,1,98,2017,March,16,27,2,1,3,0.0,0,BB,,Direct,Direct,1,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,172.56,0,3,No-Show,2020-03-03 -City Hotel,1,15,2016,September,35,10,2,1,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.02,0,0,Canceled,2019-02-01 -Resort Hotel,1,193,2017,March,10,16,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,223.0,0,Transient,40.78,0,0,Canceled,2020-05-03 -City Hotel,0,14,2017,July,31,6,2,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.7,0,0,Check-Out,2020-06-02 -City Hotel,1,436,2016,May,19,18,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,38,Transient,60.68,0,0,Canceled,2019-02-01 -City Hotel,0,106,2017,March,16,24,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,79.4,0,0,Check-Out,2019-09-03 -City Hotel,1,146,2016,July,26,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,3,Canceled,2019-05-04 -City Hotel,0,109,2015,September,46,16,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient-Party,102.62,0,1,Check-Out,2018-08-03 -City Hotel,1,60,2016,November,16,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,87.2,0,0,Canceled,2018-11-02 -City Hotel,0,45,2017,May,22,27,0,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,237.72,0,1,Check-Out,2020-05-03 -City Hotel,0,361,2017,August,30,27,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.97,0,0,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,December,38,30,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,121.92,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2015,September,35,24,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,116.48,1,1,Check-Out,2018-06-02 -City Hotel,0,38,2017,June,22,23,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.9,0,3,Check-Out,2020-03-03 -City Hotel,0,1,2016,November,50,29,1,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,79.91,0,0,Check-Out,2018-11-02 -Resort Hotel,0,12,2017,August,38,6,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,167.1,1,2,Check-Out,2020-07-03 -Resort Hotel,0,24,2017,March,17,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,67.73,0,3,Check-Out,2020-02-01 -Resort Hotel,1,0,2016,January,4,31,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,68.86,0,1,No-Show,2018-12-03 -City Hotel,0,91,2017,May,22,6,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,75.17,0,2,Check-Out,2020-04-02 -City Hotel,0,0,2017,March,17,10,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,0.72,0,1,Check-Out,2019-12-04 -City Hotel,0,5,2016,March,3,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,248.0,179.0,0,Transient,60.5,1,0,Check-Out,2019-02-01 -Resort Hotel,0,2,2015,August,36,16,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,101.31,0,1,Check-Out,2018-06-02 -Resort Hotel,0,7,2016,August,22,24,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,165.63,0,0,Check-Out,2019-05-04 -City Hotel,0,4,2015,October,46,2,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,116.85,0,0,Check-Out,2018-08-03 -City Hotel,0,35,2016,December,53,30,2,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.45,0,1,Check-Out,2019-11-03 -Resort Hotel,0,273,2015,October,44,4,2,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,219.0,0,Contract,73.22,0,0,Check-Out,2018-08-03 -City Hotel,0,97,2016,March,17,16,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,54.8,0,1,Check-Out,2019-04-03 -Resort Hotel,1,76,2016,June,35,21,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,197.51,0,0,No-Show,2019-03-04 -City Hotel,0,93,2016,December,53,26,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,103.49,0,1,Check-Out,2019-11-03 -City Hotel,0,20,2016,August,26,18,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.02,0,1,Check-Out,2019-04-03 -City Hotel,1,267,2017,July,27,7,2,4,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,7.0,179.0,0,Transient,170.68,0,3,Canceled,2020-02-01 -City Hotel,0,1,2017,February,8,18,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,132.08,0,0,Check-Out,2019-10-04 -Resort Hotel,0,61,2015,October,44,8,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,70.42,0,1,Check-Out,2018-12-03 -City Hotel,1,49,2016,July,25,6,1,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.61,0,0,Canceled,2019-05-04 -City Hotel,0,2,2017,March,11,10,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,75.68,0,1,Check-Out,2020-01-04 -Resort Hotel,0,99,2016,December,53,22,2,3,2,0.0,0,FB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,270.0,179.0,0,Transient,86.07,0,0,Check-Out,2019-08-04 -City Hotel,1,256,2015,July,32,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,90.56,0,0,Canceled,2018-06-02 -City Hotel,0,4,2016,July,27,30,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.01,0,0,Check-Out,2019-06-03 -Resort Hotel,0,11,2015,October,43,22,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,149.91,0,0,Check-Out,2019-04-03 -City Hotel,1,280,2016,October,42,13,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,206.53,0,2,Canceled,2019-08-04 -Resort Hotel,0,18,2015,October,43,21,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,32.15,0,0,Check-Out,2018-09-02 -Resort Hotel,0,5,2016,July,42,5,3,10,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,132.76,0,1,Check-Out,2019-05-04 -City Hotel,0,312,2016,August,36,6,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,118.76,0,1,Check-Out,2018-12-03 -Resort Hotel,0,163,2016,December,51,10,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,2,No Deposit,271.0,179.0,0,Transient-Party,79.29,0,0,Check-Out,2019-08-04 -City Hotel,1,101,2016,May,15,9,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.61,0,0,Canceled,2019-01-03 -City Hotel,0,2,2016,October,42,26,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.24,0,0,Check-Out,2019-09-03 -City Hotel,0,4,2017,May,21,5,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.35,0,1,Check-Out,2020-03-03 -City Hotel,0,19,2016,October,53,28,1,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,60.89,0,1,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,December,19,14,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,F,I,1,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,1,41,2015,July,30,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,E,0,Non Refund,9.0,179.0,0,Transient,75.83,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2015,December,53,30,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,44.82,0,1,Check-Out,2018-11-02 -Resort Hotel,0,109,2017,April,18,7,2,5,2,1.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,208.71,0,3,Check-Out,2020-02-01 -City Hotel,0,249,2016,October,51,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,89.13,0,2,Check-Out,2019-01-03 -Resort Hotel,0,56,2015,December,53,6,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,43.05,1,1,Check-Out,2018-11-02 -Resort Hotel,0,16,2017,June,25,16,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,H,2,No Deposit,16.0,179.0,0,Transient,188.89,0,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2016,March,22,15,1,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,71.54,1,0,Check-Out,2019-02-01 -Resort Hotel,0,4,2017,January,4,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,17.0,238.0,0,Transient,52.13,0,0,Check-Out,2019-10-04 -Resort Hotel,0,11,2017,March,17,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,61.13,0,0,Check-Out,2020-01-04 -City Hotel,0,1,2015,October,44,28,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,91.94,0,0,Check-Out,2018-08-03 -City Hotel,0,93,2015,September,41,24,2,1,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,58.43,0,0,Check-Out,2018-08-03 -Resort Hotel,0,12,2017,April,18,25,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,I,0,No Deposit,244.0,179.0,0,Transient,114.53,1,2,Check-Out,2020-02-01 -Resort Hotel,1,108,2015,December,53,31,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,42.91,0,2,No-Show,2018-12-03 -City Hotel,1,50,2016,March,11,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,79.24,0,0,Canceled,2019-02-01 -Resort Hotel,1,229,2016,August,36,21,1,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,1,0,E,E,1,No Deposit,12.0,179.0,0,Transient,173.75,0,0,Canceled,2019-04-03 -Resort Hotel,0,48,2017,July,37,28,2,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,162.13,1,2,Check-Out,2020-06-02 -City Hotel,0,152,2016,October,41,11,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,36.98,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2017,June,29,19,0,4,1,0.0,0,HB,PRT,Offline TA/TO,GDS,0,0,0,E,H,0,No Deposit,175.0,179.0,0,Transient,134.38,0,0,Check-Out,2020-04-02 -City Hotel,0,55,2017,July,27,30,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.05,0,2,Check-Out,2020-05-03 -City Hotel,1,275,2016,May,21,25,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,155.41,0,0,Canceled,2019-01-03 -Resort Hotel,0,18,2016,April,17,29,1,2,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,61.62,0,0,Check-Out,2019-03-04 -City Hotel,0,35,2015,October,45,26,1,1,2,0.0,0,BB,IRL,Online TA,Corporate,0,0,0,A,C,0,No Deposit,10.0,271.0,0,Transient-Party,61.32,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2015,December,50,5,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,40.89,0,0,Check-Out,2018-10-03 -Resort Hotel,0,39,2016,April,18,31,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,239.0,179.0,0,Transient,131.17,0,0,Check-Out,2018-12-03 -Resort Hotel,1,57,2016,March,16,27,1,2,1,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,246.0,179.0,0,Transient,48.21,0,0,Canceled,2018-12-03 -City Hotel,1,147,2016,December,53,26,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,60.6,0,0,Canceled,2019-08-04 -Resort Hotel,0,142,2016,December,49,8,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient-Party,59.86,1,0,Check-Out,2019-01-03 -Resort Hotel,0,267,2015,August,37,6,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient-Party,218.54,0,0,Check-Out,2018-06-02 -Resort Hotel,0,106,2016,September,45,18,0,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,194.87,0,0,Check-Out,2019-08-04 -City Hotel,1,277,2017,April,16,25,2,5,2,0.0,0,FB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,95.59,0,0,Canceled,2020-02-01 -Resort Hotel,0,16,2016,June,22,31,0,4,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,139.97,0,0,Check-Out,2019-06-03 -Resort Hotel,1,110,2015,December,53,30,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,43.36,0,0,Check-Out,2018-11-02 -Resort Hotel,1,58,2017,April,17,20,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,245.0,179.0,0,Transient,104.67,0,0,Canceled,2020-03-03 -City Hotel,1,2,2015,December,53,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.19,0,0,Canceled,2018-11-02 -Resort Hotel,0,48,2017,March,23,17,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,113.61,0,2,Check-Out,2019-11-03 -City Hotel,1,58,2015,September,45,26,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,122.52,0,0,No-Show,2018-07-03 -City Hotel,0,20,2015,November,50,6,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,71.77,0,0,Check-Out,2018-11-02 -City Hotel,1,1,2016,August,39,30,0,1,3,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,113.48,0,0,No-Show,2019-07-04 -City Hotel,1,151,2017,April,17,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.71,0,0,Canceled,2019-11-03 -Resort Hotel,1,148,2017,June,26,2,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,C,0,No Deposit,169.0,179.0,0,Transient,1.16,0,0,Canceled,2019-11-03 -City Hotel,0,288,2016,July,33,17,1,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,155.41,0,1,Check-Out,2019-05-04 -Resort Hotel,0,21,2016,July,33,6,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-06-03 -City Hotel,0,29,2016,July,31,4,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.4,0,0,Canceled,2019-06-03 -Resort Hotel,0,297,2017,August,36,7,2,5,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,198.63,1,1,Check-Out,2020-06-02 -City Hotel,0,72,2017,February,9,12,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,B,A,0,No Deposit,92.0,179.0,0,Transient,104.84,0,0,Check-Out,2020-04-02 -Resort Hotel,0,11,2017,February,11,27,2,1,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,378.0,331.0,0,Transient-Party,36.53,0,0,Check-Out,2020-02-01 -Resort Hotel,1,112,2017,March,33,28,2,5,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,72.09,0,0,Canceled,2020-02-01 -Resort Hotel,1,193,2015,July,34,6,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,L,A,0,No Deposit,243.0,179.0,0,Transient,64.24,0,2,Canceled,2018-05-03 -City Hotel,1,106,2017,May,22,28,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,191.55,0,0,Canceled,2020-04-02 -City Hotel,1,43,2016,August,37,6,0,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,150.18,0,0,Canceled,2019-02-01 -City Hotel,1,48,2016,March,9,16,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,Non Refund,11.0,179.0,75,Transient-Party,61.67,0,0,Canceled,2019-02-01 -City Hotel,1,273,2016,October,42,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,95.42,0,0,Canceled,2018-08-03 -Resort Hotel,0,11,2016,October,51,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,17.0,331.0,0,Transient-Party,60.77,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,June,27,14,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,17.0,290.0,0,Transient,5.71,0,0,Check-Out,2019-02-01 -City Hotel,1,1,2017,February,6,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,52.69,0,0,Canceled,2019-10-04 -City Hotel,1,373,2017,April,10,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.8,0,0,Canceled,2019-02-01 -City Hotel,1,14,2017,May,22,2,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,October,45,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,0,No Deposit,247.0,179.0,0,Transient,197.89,1,0,Check-Out,2018-12-03 -City Hotel,1,58,2016,October,41,2,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.8,0,2,Canceled,2019-03-04 -City Hotel,0,0,2016,November,49,1,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,217.0,0,Transient,81.62,0,0,Check-Out,2019-11-03 -City Hotel,0,85,2016,December,53,5,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.14,0,1,Check-Out,2019-12-04 -Resort Hotel,1,21,2017,June,22,14,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,239.0,179.0,0,Transient,161.27,0,0,Canceled,2020-03-03 -City Hotel,0,56,2015,December,50,9,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.98,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,October,40,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,107.41,0,3,Check-Out,2018-05-03 -Resort Hotel,0,1,2016,January,4,8,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,44.05,1,2,Check-Out,2018-10-03 -City Hotel,0,92,2016,March,17,19,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,87.4,0,2,Check-Out,2019-03-04 -City Hotel,1,120,2016,October,43,1,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,163.74,0,2,Canceled,2019-08-04 -City Hotel,1,202,2016,October,45,5,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,77.32,0,0,Canceled,2019-10-04 -Resort Hotel,0,24,2016,July,36,28,2,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,246.57,0,1,Check-Out,2019-07-04 -City Hotel,0,83,2016,August,35,2,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.88,0,2,Check-Out,2019-12-04 -City Hotel,0,4,2016,December,4,26,0,3,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,122.94,0,0,Check-Out,2018-12-03 -Resort Hotel,0,290,2017,June,23,24,4,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,96.76,0,1,Check-Out,2020-04-02 -Resort Hotel,1,1,2017,March,11,29,0,1,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,336.0,331.0,0,Transient-Party,77.38,0,0,Canceled,2020-03-03 -Resort Hotel,1,36,2015,November,51,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,41.38,0,1,Check-Out,2019-09-03 -City Hotel,0,56,2016,February,10,24,1,4,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,85.35,0,1,Check-Out,2018-11-02 -City Hotel,0,15,2015,September,43,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,95.26,0,0,Check-Out,2018-08-03 -City Hotel,1,275,2016,June,28,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,66.21,0,0,Canceled,2019-05-04 -Resort Hotel,0,212,2017,August,36,16,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,3,No Deposit,248.0,179.0,0,Transient,46.53,0,3,Check-Out,2020-06-02 -City Hotel,0,2,2017,August,35,12,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,D,1,No Deposit,16.0,179.0,0,Transient,138.95,0,0,Check-Out,2020-06-02 -City Hotel,0,21,2016,September,35,6,1,2,3,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,215.26,0,0,Check-Out,2019-08-04 -Resort Hotel,0,38,2016,November,43,14,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,37.47,0,1,Check-Out,2018-12-03 -City Hotel,1,440,2016,September,43,12,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,2.0,179.0,41,Transient,127.3,0,0,Canceled,2018-08-03 -City Hotel,0,32,2015,October,42,21,2,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,42,Transient,99.77,0,0,Check-Out,2018-08-03 -Resort Hotel,1,398,2016,September,38,21,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,201.38,0,0,Canceled,2019-07-04 -Resort Hotel,0,14,2017,January,4,9,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Transient-Party,80.32,0,0,Check-Out,2019-08-04 -City Hotel,1,91,2017,June,15,22,2,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,252.0,0,3,Canceled,2019-10-04 -City Hotel,1,47,2017,February,16,16,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,A,A,0,No Deposit,26.0,179.0,0,Transient,41.65,0,0,Canceled,2020-04-02 -Resort Hotel,0,39,2016,March,43,18,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,224.0,0,Transient,64.31,0,0,Check-Out,2019-08-04 -City Hotel,1,36,2017,May,21,9,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,146.06,0,0,Canceled,2020-03-03 -City Hotel,1,46,2016,November,49,15,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,89.95,0,0,Canceled,2019-09-03 -Resort Hotel,0,143,2017,March,18,30,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,305.0,179.0,0,Transient,64.45,0,1,Check-Out,2020-03-03 -City Hotel,1,151,2016,July,35,24,0,3,2,0.0,0,HB,SWE,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,6.0,179.0,0,Transient,93.15,0,0,Canceled,2018-09-02 -Resort Hotel,0,249,2017,July,33,29,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,244.0,179.0,0,Transient,164.91,1,2,Check-Out,2020-07-03 -City Hotel,0,2,2015,September,51,19,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,59.09,0,0,Check-Out,2018-06-02 -City Hotel,0,22,2016,September,37,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,182.0,179.0,0,Transient,73.48,0,0,Check-Out,2019-07-04 -City Hotel,0,56,2015,July,31,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,139.11,0,3,Check-Out,2018-06-02 -City Hotel,0,90,2017,June,32,27,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,168.82,0,1,Check-Out,2019-08-04 -City Hotel,0,150,2016,December,52,7,1,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient-Party,137.12,0,1,Check-Out,2019-07-04 -Resort Hotel,0,40,2017,July,33,24,2,3,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,F,F,2,No Deposit,12.0,179.0,0,Transient,247.58,1,2,Check-Out,2020-05-03 -City Hotel,1,268,2017,July,34,27,1,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.38,0,0,Canceled,2020-03-03 -City Hotel,0,43,2017,April,16,6,2,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,G,0,No Deposit,16.0,179.0,0,Transient,94.22,0,0,Check-Out,2020-03-03 -Resort Hotel,0,28,2016,March,16,25,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,67.0,0,Transient-Party,62.13,1,0,Check-Out,2019-04-03 -City Hotel,0,29,2016,April,17,15,2,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,198.69,0,0,Check-Out,2020-02-01 -City Hotel,0,3,2017,June,20,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,136.64,0,1,Check-Out,2020-06-02 -City Hotel,1,388,2017,May,38,26,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.54,0,0,Canceled,2020-06-02 -Resort Hotel,0,10,2016,March,12,25,0,1,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,43.61,1,0,Check-Out,2019-01-03 -City Hotel,1,88,2017,April,17,16,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,74.97,0,3,No-Show,2020-01-04 -City Hotel,0,20,2017,June,26,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,188.0,0,Transient,131.57,0,0,Check-Out,2020-06-02 -Resort Hotel,1,116,2017,May,21,23,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,177.0,179.0,0,Transient,152.92,0,3,Canceled,2019-10-04 -Resort Hotel,0,164,2017,March,19,31,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,75,Transient-Party,108.5,0,0,Check-Out,2020-04-02 -City Hotel,1,90,2017,March,15,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,15,Transient,73.0,0,0,Canceled,2018-11-02 -Resort Hotel,0,42,2016,September,42,19,3,3,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,73.82,0,0,Check-Out,2019-06-03 -City Hotel,0,13,2017,May,23,10,1,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,155.36,0,0,Check-Out,2019-12-04 -Resort Hotel,1,82,2015,July,33,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,H,0,No Deposit,11.0,179.0,0,Transient,113.34,0,0,Canceled,2018-06-02 -City Hotel,0,18,2016,October,43,15,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.1,0,2,Check-Out,2019-08-04 -Resort Hotel,0,1,2015,August,34,27,2,6,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,41.46,0,0,Check-Out,2018-06-02 -Resort Hotel,0,4,2015,November,43,16,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,38.07,0,0,Check-Out,2018-08-03 -Resort Hotel,0,16,2015,November,51,21,1,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,36.59,0,2,Check-Out,2018-12-03 -Resort Hotel,0,196,2016,May,23,31,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,119.56,0,1,Check-Out,2019-06-03 -Resort Hotel,0,109,2016,October,44,21,2,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,G,C,2,No Deposit,171.0,179.0,0,Transient-Party,77.86,0,1,Check-Out,2019-08-04 -City Hotel,1,16,2017,May,26,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient,116.76,0,0,Canceled,2020-04-02 -Resort Hotel,1,153,2017,June,26,6,2,6,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,156.0,179.0,0,Transient,76.39,0,0,Canceled,2020-06-02 -Resort Hotel,0,41,2015,December,51,13,1,5,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,42.97,0,2,Check-Out,2018-11-02 -City Hotel,1,15,2016,February,10,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,13.0,64.0,0,Transient,62.63,0,0,Canceled,2018-12-03 -City Hotel,1,380,2015,October,44,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.37,0,0,Canceled,2018-08-03 -Resort Hotel,0,48,2015,December,52,29,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,40.25,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2015,October,46,31,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,40.0,179.0,0,Contract,58.72,0,0,Check-Out,2018-08-03 -Resort Hotel,0,7,2017,February,9,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.51,1,0,Check-Out,2019-03-04 -City Hotel,0,98,2017,May,20,2,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,102.67,0,2,Check-Out,2020-04-02 -City Hotel,0,37,2016,February,4,17,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.18,0,2,Canceled,2018-12-03 -City Hotel,0,14,2016,November,51,28,1,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,136.34,1,2,Check-Out,2019-09-03 -City Hotel,1,6,2015,August,47,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.83,0,0,Canceled,2017-12-03 -City Hotel,1,1,2016,November,45,22,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,1,Non Refund,13.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,1,401,2017,May,22,17,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,118.18,0,0,Canceled,2020-03-03 -City Hotel,1,291,2015,October,44,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.22,0,0,Canceled,2018-08-03 -City Hotel,1,399,2016,September,38,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.96,0,0,Canceled,2018-09-02 -Resort Hotel,0,51,2016,December,44,24,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,59.29,0,1,Check-Out,2019-05-04 -City Hotel,0,401,2017,November,43,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,Non Refund,2.0,179.0,0,Transient-Party,62.26,0,0,Canceled,2019-11-03 -City Hotel,0,34,2017,March,25,6,1,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,8.0,179.0,0,Transient,154.3,0,1,Check-Out,2019-11-03 -City Hotel,0,2,2016,December,49,5,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,84.55,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2017,August,36,14,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,1.02,0,1,Check-Out,2019-07-04 -Resort Hotel,0,2,2017,June,25,20,0,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,250.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-05-03 -City Hotel,1,382,2017,June,21,12,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,0,Transient-Party,129.34,0,0,Canceled,2020-03-03 -City Hotel,1,161,2015,August,34,27,0,3,2,0.0,0,BB,FRA,Undefined,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,92.48,0,0,Canceled,2018-06-02 -City Hotel,1,153,2016,June,17,20,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,D,0,Non Refund,26.0,179.0,0,Transient,118.87,0,0,Canceled,2019-10-04 -City Hotel,0,395,2017,June,26,13,0,2,2,0.0,0,HB,ESP,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,108.33,0,3,Check-Out,2020-05-03 -City Hotel,0,42,2016,August,37,15,2,1,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,239.54,0,3,Canceled,2019-08-04 -Resort Hotel,0,20,2017,January,3,30,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,84.85,1,0,Check-Out,2019-11-03 -Resort Hotel,0,264,2015,September,33,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,38.0,0,0,Check-Out,2017-11-02 -City Hotel,1,87,2017,February,11,10,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.75,0,0,Canceled,2019-10-04 -City Hotel,0,136,2016,July,31,14,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,58.0,179.0,0,Transient,124.21,0,2,Check-Out,2019-04-03 -Resort Hotel,0,156,2016,May,15,31,1,3,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,B,1,Refundable,13.0,179.0,0,Transient-Party,77.04,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,August,23,28,0,3,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,245.27,0,0,Check-Out,2020-06-02 -Resort Hotel,0,301,2016,July,29,18,3,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,2,Refundable,378.0,179.0,0,Transient-Party,48.56,0,0,Check-Out,2019-04-03 -City Hotel,1,306,2017,August,28,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,140.91,0,1,Canceled,2020-07-03 -City Hotel,0,18,2016,October,44,15,0,1,1,0.0,0,BB,CHN,Corporate,Corporate,0,0,0,E,E,0,No Deposit,11.0,222.0,0,Transient-Party,171.63,0,0,Check-Out,2019-11-03 -City Hotel,1,85,2017,January,8,23,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,56.26,0,0,Canceled,2018-11-02 -City Hotel,1,355,2016,January,3,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,39,Transient,99.64,0,0,Canceled,2018-10-03 -Resort Hotel,1,272,2016,August,37,28,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,183.42,0,1,Canceled,2019-05-04 -City Hotel,0,87,2015,July,32,21,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,104.19,1,0,Check-Out,2018-06-02 -Resort Hotel,0,149,2015,July,32,25,2,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,142.84,1,2,Check-Out,2019-07-04 -City Hotel,0,0,2016,January,10,6,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,144.53,0,1,Check-Out,2018-12-03 -City Hotel,0,17,2016,January,4,31,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,92.45,0,0,Check-Out,2018-10-03 -Resort Hotel,1,0,2017,March,17,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,13.0,221.0,0,Transient,62.31,0,0,Canceled,2019-11-03 -City Hotel,0,9,2016,November,43,12,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,104.61,0,1,Check-Out,2019-06-03 -City Hotel,1,39,2016,December,53,25,0,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,105.88,0,0,Canceled,2019-09-03 -City Hotel,0,52,2016,March,51,30,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,71.83,0,2,Check-Out,2019-11-03 -City Hotel,0,15,2017,July,32,15,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,228.67,0,3,Check-Out,2020-06-02 -Resort Hotel,0,13,2016,October,44,23,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,92.0,179.0,0,Transient-Party,158.9,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,April,16,31,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.23,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2015,October,45,14,0,4,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,121.45,0,0,Check-Out,2018-08-03 -City Hotel,0,20,2017,June,28,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,200.0,0,Transient,124.3,1,1,Check-Out,2020-04-02 -Resort Hotel,0,255,2016,June,26,10,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,86.7,0,0,Check-Out,2019-05-04 -Resort Hotel,0,152,2016,October,41,10,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,33.41,0,2,Check-Out,2019-10-04 -Resort Hotel,0,10,2016,February,12,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,60.36,1,0,Check-Out,2018-11-02 -City Hotel,0,0,2017,May,34,25,1,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,204.93,0,0,Check-Out,2020-03-03 -City Hotel,0,15,2016,June,27,26,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,103.56,0,0,Check-Out,2019-03-04 -City Hotel,1,7,2016,October,33,13,0,1,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.5,0,0,No-Show,2019-05-04 -Resort Hotel,1,196,2017,July,36,24,2,5,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,11.0,179.0,0,Transient,154.48,0,0,Canceled,2019-05-04 -Resort Hotel,0,159,2016,March,13,10,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,79.0,179.0,20,Transient-Party,40.73,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2015,December,50,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,90.0,179.0,0,Transient,35.11,0,0,Canceled,2018-11-02 -City Hotel,1,17,2016,June,42,18,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,B,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Canceled,2019-05-04 -City Hotel,1,31,2017,February,9,3,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,116.81,0,0,Canceled,2019-10-04 -Resort Hotel,0,21,2015,July,33,10,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,3.0,179.0,0,Contract,63.02,0,0,Check-Out,2017-11-02 -City Hotel,1,313,2015,August,37,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient,99.64,0,0,Canceled,2018-05-03 -City Hotel,1,44,2016,December,25,5,0,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.05,0,0,Canceled,2019-03-04 -City Hotel,1,49,2017,May,11,14,2,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,7.0,179.0,0,Transient,124.65,0,0,Canceled,2020-02-01 -Resort Hotel,0,21,2017,May,33,28,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,159.86,0,0,Check-Out,2020-02-01 -City Hotel,0,109,2017,June,27,29,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,3,No Deposit,13.0,45.0,0,Transient-Party,0.0,0,0,Check-Out,2020-02-01 -Resort Hotel,1,104,2016,February,12,29,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,A,0,Non Refund,42.0,179.0,0,Transient,80.6,0,0,Canceled,2019-09-03 -City Hotel,0,36,2017,July,32,6,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,127.19,0,2,Check-Out,2020-04-02 -Resort Hotel,0,313,2017,July,37,6,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,159.57,1,3,Check-Out,2020-06-02 -City Hotel,0,0,2017,May,20,21,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,81.31,0,0,Check-Out,2020-07-03 -City Hotel,1,17,2016,November,50,5,1,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,94.35,0,0,Canceled,2019-08-04 -City Hotel,0,47,2017,March,13,15,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,9.0,179.0,0,Transient,80.87,0,2,Check-Out,2020-02-01 -Resort Hotel,0,20,2016,May,43,20,0,1,1,0.0,0,BB,CN,Corporate,Corporate,0,0,0,A,E,0,No Deposit,94.0,69.0,0,Transient-Party,75.44,0,0,Check-Out,2019-06-03 -Resort Hotel,0,283,2016,August,36,24,4,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,166.0,179.0,75,Transient,117.28,0,0,Check-Out,2020-05-03 -Resort Hotel,1,101,2017,July,28,13,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,78.0,179.0,0,Transient,169.94,0,0,Canceled,2019-05-04 -City Hotel,0,282,2016,August,35,15,2,5,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,7.0,179.0,0,Transient,130.56,0,2,Check-Out,2019-03-04 -City Hotel,0,2,2017,May,22,9,0,1,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,157.66,0,2,Check-Out,2020-04-02 -City Hotel,1,244,2016,August,37,9,0,5,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.7,0,0,Canceled,2019-05-04 -Resort Hotel,1,41,2017,March,12,13,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,151.26,0,2,Check-Out,2020-01-04 -City Hotel,1,19,2016,March,21,27,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,12.0,45.0,0,Transient-Party,64.02,0,0,Canceled,2019-04-03 -City Hotel,1,2,2015,August,37,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,70.81,0,0,Canceled,2018-08-03 -City Hotel,0,14,2015,September,46,7,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,77.07,0,0,Canceled,2018-06-02 -Resort Hotel,0,103,2017,June,29,5,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,240.0,179.0,0,Transient,103.67,0,2,Check-Out,2020-06-02 -Resort Hotel,1,107,2016,August,33,24,2,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,1,No Deposit,345.0,179.0,0,Transient,76.3,0,0,Canceled,2020-05-03 -Resort Hotel,1,55,2016,April,17,31,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Refundable,11.0,179.0,0,Transient-Party,51.74,0,0,Canceled,2019-02-01 -City Hotel,1,52,2017,May,23,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient-Party,199.14,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2016,October,43,30,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,122.6,0,0,Check-Out,2019-08-04 -Resort Hotel,0,170,2017,March,16,10,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient,52.05,1,0,Check-Out,2019-11-03 -Resort Hotel,0,45,2016,August,35,18,0,4,3,1.0,0,HB,ESP,Direct,Direct,0,0,0,H,H,2,No Deposit,247.0,179.0,0,Transient-Party,213.07,1,2,Check-Out,2019-06-03 -City Hotel,0,0,2016,June,41,20,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,0,No Deposit,16.0,45.0,0,Transient,0.0,1,1,Check-Out,2019-04-03 -City Hotel,0,172,2017,April,17,20,2,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,138.85,0,0,Check-Out,2020-03-03 -Resort Hotel,0,209,2017,June,26,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,108.09,0,2,Check-Out,2020-04-02 -City Hotel,1,38,2016,July,34,27,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.16,0,1,Canceled,2019-05-04 -City Hotel,1,128,2016,March,15,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,43,Transient,71.37,0,0,Canceled,2019-02-01 -City Hotel,1,282,2016,December,50,20,2,5,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,28.0,179.0,0,Transient,69.69,0,0,Canceled,2019-09-03 -City Hotel,0,22,2016,June,29,18,0,2,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-05-04 -Resort Hotel,0,228,2016,June,27,24,1,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient,93.74,0,0,Check-Out,2019-02-01 -Resort Hotel,1,19,2016,April,16,31,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,88.0,179.0,0,Transient,60.29,0,0,Canceled,2019-01-03 -City Hotel,0,273,2015,September,42,22,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,79.0,179.0,0,Transient-Party,62.35,0,0,Check-Out,2018-07-03 -City Hotel,1,243,2016,June,27,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient,122.23,0,0,Canceled,2018-10-03 -City Hotel,0,163,2017,August,38,24,2,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,244.38,0,0,Check-Out,2019-11-03 -Resort Hotel,0,50,2017,March,12,20,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,F,1,No Deposit,14.0,179.0,0,Transient,171.66,1,2,Check-Out,2020-01-04 -Resort Hotel,0,52,2017,May,17,9,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,238.0,179.0,0,Transient,212.16,0,3,Check-Out,2020-04-02 -City Hotel,0,101,2016,March,16,13,2,4,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,75,Transient-Party,77.59,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2015,September,43,4,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient-Party,77.76,0,0,Check-Out,2018-08-03 -Resort Hotel,0,284,2017,May,21,30,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,38.87,0,2,Check-Out,2020-04-02 -City Hotel,0,21,2017,August,37,11,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,134.5,0,1,Check-Out,2020-06-02 -City Hotel,0,154,2017,May,21,24,0,3,2,0.0,0,HB,PRT,Aviation,Corporate,0,0,0,A,D,1,No Deposit,319.0,179.0,0,Transient,0.72,1,0,Check-Out,2020-02-01 -City Hotel,0,38,2016,February,10,22,0,1,1,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,1.0,179.0,0,Transient-Party,76.44,0,0,Check-Out,2018-11-02 -City Hotel,0,157,2017,July,30,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,123.88,0,1,Check-Out,2020-06-02 -City Hotel,0,36,2017,March,11,12,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,70.58,0,0,Check-Out,2020-02-01 -Resort Hotel,1,36,2017,March,10,17,2,0,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,A,0,Non Refund,161.0,179.0,0,Transient,76.06,0,0,Canceled,2020-02-01 -City Hotel,0,145,2017,July,28,15,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,170.0,179.0,0,Transient,182.51,0,0,Check-Out,2020-03-03 -Resort Hotel,0,63,2015,December,51,18,0,2,2,2.0,0,BB,ESP,Direct,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient-Party,0.0,1,0,Check-Out,2018-07-03 -Resort Hotel,1,151,2016,August,35,21,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,73.06,0,2,Canceled,2019-06-03 -City Hotel,1,397,2016,July,36,10,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.46,0,0,Canceled,2019-05-04 -City Hotel,1,98,2016,April,21,30,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,138.14,0,0,Canceled,2019-03-04 -Resort Hotel,1,120,2015,December,53,27,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,244.0,179.0,0,Transient,49.42,0,0,Canceled,2018-11-02 -City Hotel,0,234,2017,May,34,4,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,108.63,0,1,Check-Out,2019-11-03 -Resort Hotel,0,4,2015,December,50,28,0,10,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,84.24,0,0,Check-Out,2019-10-04 -Resort Hotel,0,3,2016,March,18,27,2,0,1,0.0,0,HB,PRT,Corporate,TA/TO,0,0,0,A,I,1,No Deposit,78.0,331.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -Resort Hotel,0,52,2017,May,24,30,0,1,3,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,161.7,1,0,Check-Out,2020-02-01 -City Hotel,0,1,2016,September,40,5,0,1,2,0.0,0,HB,PRT,Undefined,Direct,0,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient-Party,64.77,0,0,Check-Out,2019-10-04 -Resort Hotel,1,199,2017,June,33,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,194.21,0,0,Canceled,2020-04-02 -Resort Hotel,0,2,2016,January,4,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,49.35,0,0,Check-Out,2019-11-03 -Resort Hotel,0,11,2015,November,51,24,2,3,2,0.0,0,BB,CN,Online TA,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,55.9,0,3,Check-Out,2019-02-01 -City Hotel,0,111,2016,August,44,10,2,7,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,217.88,1,1,Check-Out,2019-08-04 -City Hotel,0,6,2016,August,38,14,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,1.4,0,0,Check-Out,2019-09-03 -City Hotel,1,40,2016,August,25,5,2,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,69.2,0,1,No-Show,2019-06-03 -City Hotel,0,3,2016,October,38,12,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.51,0,2,Check-Out,2019-02-01 -Resort Hotel,0,30,2017,February,8,9,2,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,34.42,0,0,Check-Out,2018-11-02 -City Hotel,0,44,2016,April,16,25,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient-Party,95.42,0,0,Check-Out,2019-03-04 -City Hotel,1,405,2016,August,24,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.43,0,0,Canceled,2018-01-03 -Resort Hotel,0,102,2017,June,27,12,2,4,2,1.0,0,HB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,235.58,1,0,Check-Out,2020-02-01 -City Hotel,1,17,2017,February,9,5,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,82.57,0,1,Canceled,2019-11-03 -City Hotel,1,8,2016,October,44,22,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,103.39,0,2,No-Show,2019-09-03 -Resort Hotel,1,13,2017,January,4,28,0,2,1,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,92.08,0,0,Canceled,2019-12-04 -City Hotel,0,223,2016,June,21,10,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,72.82,0,0,Check-Out,2019-01-03 -City Hotel,0,10,2017,June,17,7,0,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,97.3,0,1,Check-Out,2020-04-02 -City Hotel,0,14,2016,February,10,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,128.15,0,3,Check-Out,2019-05-04 -Resort Hotel,0,31,2016,June,31,22,2,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,146.9,0,1,Check-Out,2019-02-01 -City Hotel,1,53,2017,April,18,22,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,7.0,179.0,0,Transient,129.19,0,0,Canceled,2019-10-04 -Resort Hotel,0,6,2016,May,23,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,124.16,1,2,Check-Out,2019-02-01 -City Hotel,0,27,2016,July,29,19,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,63.84,0,2,Check-Out,2019-05-04 -City Hotel,1,0,2017,June,27,25,1,1,1,0.0,0,HB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,0.54,0,0,Check-Out,2020-06-02 -City Hotel,0,8,2015,July,33,5,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,F,A,1,No Deposit,16.0,179.0,0,Transient,107.71,0,0,Check-Out,2018-05-03 -City Hotel,0,143,2016,May,23,16,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,9.0,179.0,0,Transient,128.56,0,3,Check-Out,2019-05-04 -Resort Hotel,0,19,2016,September,43,9,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,79.43,0,1,Check-Out,2019-09-03 -City Hotel,1,23,2017,May,20,9,0,3,1,0.0,0,BB,AUT,Online TA,Corporate,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,128.23,0,0,Check-Out,2020-02-01 -City Hotel,0,62,2016,December,50,5,0,1,1,0.0,0,BB,POL,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,206.0,179.0,0,Transient,73.53,0,0,Check-Out,2019-11-03 -Resort Hotel,0,246,2016,November,49,29,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,74.02,0,0,Check-Out,2019-07-04 -City Hotel,1,4,2017,January,3,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,237.0,179.0,0,Transient,71.61,0,2,No-Show,2019-11-03 -Resort Hotel,0,310,2017,August,37,30,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,195.51,1,3,Check-Out,2020-06-02 -City Hotel,0,2,2016,November,50,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,94.27,0,0,Check-Out,2019-05-04 -Resort Hotel,0,260,2016,November,41,24,1,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,150.22,1,1,Check-Out,2019-09-03 -Resort Hotel,0,7,2015,October,32,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,18.0,179.0,0,Transient,117.44,0,2,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,April,16,6,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,83.0,179.0,0,Transient-Party,46.06,0,0,Check-Out,2019-02-01 -Resort Hotel,0,243,2017,May,22,22,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient-Party,127.05,0,0,Canceled,2020-03-03 -City Hotel,1,18,2015,January,3,2,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.67,0,0,Canceled,2019-02-01 -Resort Hotel,0,101,2016,March,12,9,2,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient-Party,72.24,0,0,Check-Out,2020-03-03 -City Hotel,1,244,2017,May,19,16,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Contract,92.09,0,0,Canceled,2020-02-01 -City Hotel,0,223,2015,July,33,5,2,3,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,64.0,179.0,0,Transient-Party,105.34,0,0,Check-Out,2018-07-03 -City Hotel,0,34,2016,December,50,7,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,16.0,279.0,0,Transient,0.24,0,0,Canceled,2019-11-03 -City Hotel,0,7,2016,September,46,5,2,4,1,0.0,0,BB,ITA,Offline TA/TO,GDS,0,0,0,A,A,2,No Deposit,191.0,179.0,0,Transient,153.32,0,0,Check-Out,2019-07-04 -Resort Hotel,0,88,2015,December,42,18,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,158.09,0,0,Check-Out,2018-08-03 -City Hotel,1,334,2015,September,44,13,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,74.46,0,0,Canceled,2018-08-03 -City Hotel,0,7,2017,August,36,12,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,D,1,No Deposit,10.0,179.0,0,Transient,242.57,0,3,Check-Out,2020-07-03 -Resort Hotel,0,180,2016,March,17,30,0,3,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,223.0,75,Transient-Party,59.57,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,September,45,21,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.23,0,1,Check-Out,2019-04-03 -City Hotel,0,7,2017,April,16,16,0,2,3,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,123.93,0,0,Check-Out,2020-03-03 -City Hotel,0,11,2017,June,27,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,16.0,45.0,0,Transient-Party,63.43,0,0,Check-Out,2019-11-03 -Resort Hotel,0,114,2016,October,41,28,2,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,1,No Deposit,345.0,179.0,0,Transient,127.7,0,0,Check-Out,2019-08-04 -City Hotel,0,28,2016,October,49,23,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,2,No Deposit,16.0,261.0,0,Transient,2.43,0,0,Check-Out,2019-12-04 -City Hotel,1,399,2017,June,26,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,125.14,0,2,Canceled,2020-04-02 -Resort Hotel,0,38,2016,August,38,25,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,195.19,0,1,Check-Out,2019-07-04 -Resort Hotel,0,253,2015,August,34,30,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,3,No Deposit,378.0,179.0,0,Transient-Party,98.36,0,1,Check-Out,2018-06-02 -City Hotel,1,89,2016,January,3,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,40,Transient,84.19,0,2,Canceled,2018-11-02 -City Hotel,0,19,2016,October,43,20,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,125.24,0,0,Check-Out,2019-08-04 -City Hotel,1,91,2017,April,15,9,2,5,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,154.52,0,0,No-Show,2020-03-03 -Resort Hotel,1,164,2016,March,16,24,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,74.52,0,0,Canceled,2019-01-03 -Resort Hotel,1,252,2017,March,17,29,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.64,0,1,Canceled,2019-11-03 -City Hotel,1,116,2017,April,17,20,2,5,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,75.24,0,0,Check-Out,2020-03-03 -City Hotel,1,95,2016,August,35,21,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,70.16,0,0,Canceled,2019-06-03 -City Hotel,0,1,2017,August,34,2,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,216.1,0,1,Check-Out,2020-07-03 -City Hotel,0,6,2015,December,53,23,0,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,113.84,0,0,Check-Out,2018-09-02 -Resort Hotel,0,9,2016,March,18,21,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,45.2,1,3,Check-Out,2019-07-04 -Resort Hotel,0,1,2015,December,50,10,0,1,1,0.0,0,BB,,Complementary,Direct,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,86.63,0,2,Check-Out,2018-08-03 -City Hotel,0,240,2017,August,35,15,2,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,184.22,0,2,Check-Out,2020-07-03 -City Hotel,1,1,2016,January,4,28,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.49,1,1,No-Show,2018-11-02 -Resort Hotel,0,41,2015,October,42,14,2,5,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,40.08,0,3,Check-Out,2019-08-04 -City Hotel,1,39,2016,April,16,9,0,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,27.0,179.0,20,Transient,93.88,0,0,Canceled,2019-09-03 -Resort Hotel,1,271,2016,September,42,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,187.0,179.0,0,Transient,108.03,0,0,Canceled,2019-07-04 -City Hotel,0,258,2017,May,24,23,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.07,0,2,Check-Out,2020-05-03 -City Hotel,1,96,2016,March,10,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,125.0,179.0,0,Transient-Party,58.24,0,0,Canceled,2019-02-01 -Resort Hotel,0,265,2017,February,9,27,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,2,No Deposit,345.0,179.0,0,Transient,36.05,0,0,Check-Out,2020-03-03 -City Hotel,1,32,2016,August,51,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.78,0,1,Canceled,2019-05-04 -City Hotel,1,174,2016,March,17,30,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.89,0,0,Canceled,2018-12-03 -Resort Hotel,0,47,2016,May,37,30,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,207.5,0,1,Check-Out,2019-06-03 -City Hotel,0,14,2017,March,10,10,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.17,0,0,Check-Out,2020-04-02 -Resort Hotel,1,164,2017,February,8,15,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,234.0,179.0,0,Transient,61.91,0,0,Canceled,2019-12-04 -City Hotel,1,251,2015,December,49,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,67.3,0,0,Canceled,2018-12-03 -City Hotel,0,36,2017,May,17,3,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.75,0,1,Check-Out,2020-03-03 -City Hotel,0,2,2017,June,29,5,0,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,154.0,179.0,0,Transient,108.14,0,1,Check-Out,2020-06-02 -City Hotel,1,157,2016,June,21,8,0,2,3,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,103.11,0,1,Canceled,2019-02-01 -City Hotel,0,70,2016,March,15,6,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.2,0,1,Check-Out,2019-01-03 -City Hotel,0,44,2016,May,40,22,0,3,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,99.22,0,0,Check-Out,2019-08-04 -Resort Hotel,0,23,2016,October,44,24,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,1.89,0,1,Check-Out,2019-09-03 -Resort Hotel,0,40,2015,October,44,10,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,30.78,0,0,Check-Out,2018-08-03 -City Hotel,0,47,2016,March,22,20,2,0,2,2.0,0,BB,DEU,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,158.09,0,0,Check-Out,2019-02-01 -Resort Hotel,1,284,2015,September,31,26,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,185.0,179.0,0,Contract,79.09,0,0,Canceled,2017-09-02 -Resort Hotel,0,47,2017,June,27,18,0,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,118.66,1,0,Check-Out,2020-04-02 -Resort Hotel,0,15,2016,February,49,21,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,81.97,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2016,October,43,28,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,123.05,0,0,Check-Out,2019-07-04 -Resort Hotel,0,41,2016,March,16,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,71.52,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,January,3,14,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,61.93,0,0,Check-Out,2018-11-02 -City Hotel,0,16,2016,April,16,25,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.05,0,1,Check-Out,2019-07-04 -City Hotel,0,5,2016,September,21,7,1,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,97.18,0,0,Check-Out,2018-08-03 -City Hotel,0,134,2017,August,33,13,2,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,120.63,0,1,Check-Out,2020-06-02 -City Hotel,1,150,2017,March,17,26,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,74.64,0,0,Canceled,2019-03-04 -Resort Hotel,1,16,2015,July,33,21,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,A,2,No Deposit,12.0,179.0,0,Transient,127.64,0,0,Canceled,2018-06-02 -Resort Hotel,0,13,2017,May,16,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,180.85,1,1,Check-Out,2020-03-03 -City Hotel,0,2,2017,August,27,30,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,172.36,0,1,Check-Out,2020-07-03 -City Hotel,0,11,2017,March,11,30,0,3,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.61,0,1,Check-Out,2019-12-04 -City Hotel,1,155,2017,July,27,16,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,172.76,0,2,Canceled,2020-05-03 -City Hotel,0,9,2016,October,44,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,77.0,0,Transient,203.0,1,0,Check-Out,2019-09-03 -City Hotel,0,154,2017,July,30,5,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.96,0,2,Check-Out,2020-05-03 -City Hotel,1,48,2017,June,17,27,2,1,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,135.72,0,2,Canceled,2020-02-01 -City Hotel,1,107,2016,March,50,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.98,0,0,Canceled,2018-11-02 -Resort Hotel,0,4,2017,August,36,17,2,5,3,1.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2017,January,5,2,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,15.0,331.0,0,Transient-Party,36.6,1,0,Check-Out,2019-11-03 -City Hotel,1,14,2017,March,21,13,0,1,3,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,120.83,0,2,Canceled,2020-04-02 -City Hotel,1,254,2017,June,36,28,2,5,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,85.71,0,0,Canceled,2019-11-03 -Resort Hotel,0,12,2017,February,10,8,0,1,2,0.0,0,BB,,Groups,Corporate,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,79.17,0,0,Check-Out,2019-11-03 -Resort Hotel,0,61,2015,November,45,18,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,109.27,0,2,Check-Out,2018-09-02 -City Hotel,0,2,2015,September,41,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.78,0,0,Check-Out,2018-08-03 -Resort Hotel,0,112,2017,June,15,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,86.62,0,0,Check-Out,2019-11-03 -Resort Hotel,1,36,2016,May,22,19,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,242.0,179.0,0,Transient,136.71,0,1,No-Show,2019-02-01 -Resort Hotel,0,306,2017,May,20,31,1,3,2,0.0,0,HB,IRL,Offline TA/TO,Corporate,0,0,0,A,B,2,Refundable,13.0,222.0,0,Transient-Party,120.52,1,0,Check-Out,2019-12-04 -Resort Hotel,1,52,2016,August,31,5,1,1,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,139.99,1,0,Canceled,2019-01-03 -Resort Hotel,0,359,2016,October,43,16,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,C,3,No Deposit,244.0,179.0,65,Transient-Party,99.13,0,3,Check-Out,2019-08-04 -City Hotel,1,45,2017,March,17,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,19,Transient,78.58,0,0,Canceled,2019-09-03 -Resort Hotel,1,168,2016,March,34,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,59.78,0,0,Canceled,2018-08-03 -City Hotel,1,170,2015,October,46,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,44,Transient,68.71,0,0,Canceled,2018-09-02 -City Hotel,1,39,2016,December,44,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,81.19,0,0,Canceled,2018-10-03 -City Hotel,1,40,2016,March,9,6,0,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,81.0,179.0,42,Transient,74.67,0,0,Canceled,2019-01-03 -City Hotel,1,79,2016,July,32,7,2,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.48,0,1,Canceled,2019-04-03 -Resort Hotel,0,291,2016,June,24,13,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,140.0,179.0,0,Transient-Party,60.53,0,0,Check-Out,2019-08-04 -City Hotel,0,14,2016,August,36,29,1,0,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,204.75,1,1,Check-Out,2019-05-04 -City Hotel,0,1,2016,January,3,6,1,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,79.29,0,2,Check-Out,2018-11-02 -City Hotel,1,1,2017,March,10,16,1,0,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,8.0,179.0,0,Transient,144.2,0,0,Canceled,2020-01-04 -Resort Hotel,0,27,2017,August,24,6,4,3,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,201.37,0,0,Check-Out,2020-03-03 -Resort Hotel,0,155,2017,February,9,5,2,5,1,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,D,0,No Deposit,197.0,331.0,0,Transient-Party,38.5,0,0,Check-Out,2020-03-03 -City Hotel,0,12,2016,April,20,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,61.29,0,1,Check-Out,2019-12-04 -City Hotel,1,1,2015,October,50,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,75.02,0,0,Canceled,2018-08-03 -City Hotel,0,151,2017,February,10,9,1,1,2,0.0,0,BB,CN,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,124.01,0,0,Check-Out,2020-02-01 -Resort Hotel,0,180,2017,June,18,18,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,378.0,179.0,0,Transient,113.38,0,0,Check-Out,2020-04-02 -Resort Hotel,0,41,2015,December,50,18,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,47.34,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2015,October,43,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,12.0,232.0,0,Transient,88.36,0,0,Check-Out,2018-09-02 -City Hotel,1,19,2016,October,45,18,0,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Contract,139.48,0,0,Canceled,2019-08-04 -City Hotel,1,248,2015,July,33,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,62.26,0,0,Canceled,2017-10-03 -City Hotel,1,209,2016,August,44,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,84.15,0,0,Canceled,2018-08-03 -City Hotel,1,38,2015,November,44,13,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,74.49,0,0,Canceled,2018-09-02 -Resort Hotel,0,2,2015,December,50,21,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,1,No Deposit,247.0,179.0,0,Transient,58.03,1,0,Check-Out,2018-08-03 -City Hotel,1,132,2015,September,38,2,2,1,2,0.0,0,BB,,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.64,0,0,Canceled,2018-08-03 -City Hotel,0,14,2016,October,45,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,101.58,0,0,Check-Out,2019-06-03 -Resort Hotel,0,8,2016,July,35,17,2,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,166.91,0,0,Check-Out,2018-08-03 -Resort Hotel,0,250,2017,July,30,6,2,5,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,208.48,0,1,Check-Out,2020-06-02 -City Hotel,0,22,2017,August,33,6,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,240.69,0,3,Check-Out,2020-06-02 -City Hotel,1,199,2016,May,21,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,167.03,0,0,Canceled,2019-01-03 -City Hotel,0,46,2017,June,25,4,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,81.0,179.0,0,Transient,117.0,0,0,Check-Out,2020-07-03 -Resort Hotel,0,139,2017,June,22,18,0,3,2,0.0,0,HB,POL,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,75,Transient,180.91,0,0,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,January,14,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,40.91,1,0,Check-Out,2019-11-03 -City Hotel,1,101,2015,July,28,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,63.42,0,0,Canceled,2017-12-03 -Resort Hotel,0,152,2017,March,16,10,2,5,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,74.0,179.0,75,Transient-Party,104.27,0,0,Check-Out,2019-03-04 -City Hotel,0,96,2017,March,17,21,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,63.0,0,Transient-Party,87.51,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,August,35,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,19.0,179.0,0,Transient,118.56,1,0,Check-Out,2018-06-02 -City Hotel,1,100,2016,June,26,10,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,139.0,179.0,0,Transient-Party,96.08,0,0,Canceled,2019-02-01 -Resort Hotel,0,17,2015,August,36,18,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Contract,63.47,0,0,Check-Out,2018-12-03 -City Hotel,0,155,2017,August,39,6,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.61,0,1,Check-Out,2020-05-03 -City Hotel,0,1,2016,November,52,21,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,112.57,0,2,Check-Out,2019-07-04 -Resort Hotel,0,116,2016,October,42,2,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,123.65,0,1,Check-Out,2019-07-04 -City Hotel,0,252,2017,May,23,6,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,208.4,0,1,Check-Out,2020-04-02 -City Hotel,0,253,2017,February,9,24,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient-Party,120.15,0,0,Check-Out,2020-01-04 -Resort Hotel,0,1,2015,September,41,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,H,0,No Deposit,247.0,179.0,0,Transient,225.2,0,0,Check-Out,2019-07-04 -City Hotel,1,67,2015,September,45,25,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,100.19,0,0,Canceled,2017-10-03 -City Hotel,1,232,2016,December,53,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,60.35,0,0,Canceled,2018-12-03 -City Hotel,0,10,2016,December,53,30,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.75,0,0,Check-Out,2018-12-03 -Resort Hotel,0,152,2017,June,27,17,2,5,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,H,1,No Deposit,243.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-02-01 -City Hotel,1,40,2016,February,8,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Transient,71.28,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2015,August,35,3,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,100.23,0,0,Check-Out,2018-08-03 -City Hotel,1,59,2015,July,32,5,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.1,0,0,Canceled,2018-08-03 -City Hotel,0,35,2016,September,41,19,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,3,No Deposit,16.0,179.0,0,Transient,96.25,1,2,Check-Out,2019-09-03 -Resort Hotel,0,48,2016,October,44,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,91.05,0,1,Check-Out,2019-05-04 -Resort Hotel,1,87,2016,July,36,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,62.41,0,2,Canceled,2019-05-04 -Resort Hotel,0,146,2017,August,35,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,186.0,179.0,0,Transient-Party,172.04,0,0,Check-Out,2020-07-03 -City Hotel,0,322,2016,June,22,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,101.98,0,0,Check-Out,2019-06-03 -City Hotel,1,407,2015,July,39,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,114.98,0,0,Canceled,2018-01-03 -City Hotel,1,34,2015,July,45,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,37,Transient-Party,61.42,0,0,Canceled,2018-08-03 -City Hotel,0,22,2017,April,22,10,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,129.59,0,1,Check-Out,2020-03-03 -City Hotel,1,92,2016,September,42,10,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,93.84,0,0,Check-Out,2019-06-03 -City Hotel,0,102,2015,August,42,24,0,2,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,60,Group,76.43,0,0,Check-Out,2018-09-02 -City Hotel,1,16,2016,August,36,21,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,131.74,0,3,Canceled,2019-03-04 -Resort Hotel,0,85,2015,December,51,9,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,45.66,0,0,Check-Out,2018-12-03 -Resort Hotel,0,10,2016,October,50,21,2,2,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,C,0,No Deposit,104.0,331.0,0,Transient-Party,70.86,0,0,Check-Out,2019-07-04 -Resort Hotel,0,20,2016,March,15,15,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,169.84,0,2,Check-Out,2018-12-03 -Resort Hotel,0,0,2015,September,34,15,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,March,9,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,30.0,80.0,0,Transient,86.64,0,0,Check-Out,2019-02-01 -Resort Hotel,0,203,2017,June,25,21,2,6,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,134.62,1,2,Check-Out,2019-06-03 -City Hotel,0,0,2016,June,27,16,0,1,1,0.0,0,BB,,Direct,Direct,1,0,0,P,P,1,No Deposit,18.0,46.0,0,Transient,0.58,0,0,Check-Out,2019-06-03 -Resort Hotel,0,101,2016,September,42,5,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,239.0,179.0,0,Transient,87.04,1,1,Check-Out,2019-09-03 -City Hotel,1,110,2017,March,11,28,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,161.32,0,2,Canceled,2019-12-04 -City Hotel,0,0,2016,October,45,2,0,2,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,168.0,0,Transient,109.04,0,0,Check-Out,2019-08-04 -City Hotel,1,20,2015,August,37,6,0,3,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,118.06,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2016,April,17,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,H,1,No Deposit,108.0,218.0,0,Transient,34.96,0,0,Check-Out,2018-12-03 -City Hotel,1,2,2017,January,4,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,87.36,0,1,No-Show,2020-03-03 -City Hotel,0,267,2016,May,23,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,16.0,222.0,0,Transient-Party,77.91,1,0,Check-Out,2019-06-03 -City Hotel,0,17,2015,October,43,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,16.0,240.0,0,Transient-Party,82.19,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2017,March,22,5,0,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,61.95,0,0,Check-Out,2019-02-01 -Resort Hotel,0,47,2015,March,17,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Contract,34.99,0,0,Check-Out,2018-12-03 -City Hotel,0,99,2017,February,10,21,0,2,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,E,D,0,No Deposit,32.0,331.0,0,Transient,72.93,0,0,Check-Out,2019-09-03 -Resort Hotel,0,275,2015,July,30,5,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-04-03 -City Hotel,1,136,2016,August,31,6,2,3,2,2.0,0,BB,AUT,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,250.09,0,1,Canceled,2019-02-01 -Resort Hotel,0,10,2016,March,14,9,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,E,0,No Deposit,94.0,179.0,0,Transient,60.96,1,2,Check-Out,2019-01-03 -City Hotel,1,39,2015,December,49,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,0,No Deposit,14.0,179.0,0,Transient,98.79,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,March,35,20,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,103.29,0,0,Check-Out,2019-05-04 -Resort Hotel,0,59,2017,January,11,24,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,43.0,179.0,0,Transient-Party,80.1,0,0,Check-Out,2019-11-03 -City Hotel,0,145,2016,June,27,15,2,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,115.86,0,1,Check-Out,2019-07-04 -City Hotel,0,0,2016,August,36,10,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.81,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,January,10,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,60.07,1,2,Check-Out,2019-01-03 -Resort Hotel,1,274,2017,May,13,28,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,E,E,0,No Deposit,235.0,179.0,0,Transient,59.27,0,0,Canceled,2020-04-02 -City Hotel,1,100,2016,July,32,28,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,97.84,0,2,Canceled,2019-07-04 -Resort Hotel,0,15,2016,August,38,31,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,202.86,0,0,Check-Out,2019-08-04 -City Hotel,0,8,2017,June,21,13,1,2,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,137.28,0,0,Check-Out,2020-04-02 -Resort Hotel,0,152,2016,November,51,27,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,74.72,0,0,Check-Out,2019-09-03 -City Hotel,0,16,2016,May,44,12,1,2,2,0.0,0,BB,USA,Direct,Corporate,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,119.81,0,0,Check-Out,2019-10-04 -Resort Hotel,0,21,2016,November,51,5,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,110.31,0,0,Check-Out,2019-07-04 -City Hotel,1,3,2016,September,26,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.28,0,1,No-Show,2019-04-03 -City Hotel,1,232,2016,October,46,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,61.72,0,0,No-Show,2018-03-03 -Resort Hotel,0,43,2016,July,31,5,1,6,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,89.0,179.0,0,Transient,154.12,0,1,Check-Out,2019-06-03 -City Hotel,0,394,2017,January,9,2,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,80.7,0,1,Check-Out,2019-12-04 -City Hotel,0,101,2017,June,24,10,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,153.16,0,1,Check-Out,2020-04-02 -Resort Hotel,0,17,2016,December,51,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,1,Non Refund,34.0,179.0,0,Group,68.8,0,0,Check-Out,2019-10-04 -City Hotel,0,151,2016,September,45,17,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,88.0,0,1,Check-Out,2019-08-04 -City Hotel,0,2,2016,August,45,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.68,0,2,Check-Out,2019-06-03 -Resort Hotel,0,100,2016,July,20,6,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,60.93,1,0,Check-Out,2019-02-01 -Resort Hotel,0,151,2016,March,35,27,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,F,1,No Deposit,247.0,179.0,0,Transient,116.85,1,0,Check-Out,2019-02-01 -City Hotel,0,90,2016,June,44,23,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.66,0,0,Check-Out,2019-06-03 -City Hotel,1,231,2017,June,25,27,2,1,2,2.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.47,0,2,Canceled,2019-12-04 -City Hotel,1,9,2017,February,8,10,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.84,0,0,Canceled,2020-03-03 -City Hotel,1,150,2017,June,28,10,2,2,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,108.58,0,3,Canceled,2020-06-02 -City Hotel,0,44,2015,August,35,21,0,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,98.52,0,0,Check-Out,2019-07-04 -City Hotel,0,17,2016,November,50,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.14,0,0,Check-Out,2019-09-03 -City Hotel,1,87,2016,March,17,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,41,Transient,119.44,0,0,Canceled,2018-12-03 -Resort Hotel,1,48,2016,June,26,30,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,178.93,0,0,Canceled,2019-01-03 -Resort Hotel,0,221,2016,October,25,21,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,61,Transient-Party,67.74,0,0,Check-Out,2019-05-04 -City Hotel,0,46,2017,January,2,17,0,2,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,75.0,0,Transient,62.6,0,2,Check-Out,2019-10-04 -City Hotel,0,8,2017,February,12,30,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,F,0,No Deposit,29.0,86.0,0,Transient-Party,80.78,0,0,Check-Out,2020-03-03 -Resort Hotel,0,47,2015,July,35,31,2,5,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,11.0,179.0,0,Transient,120.04,1,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,13.0,77.0,0,Transient,29.14,0,0,Check-Out,2019-12-04 -City Hotel,1,275,2017,July,33,24,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,180.82,0,0,Canceled,2020-03-03 -Resort Hotel,0,114,2016,April,16,21,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,317.0,179.0,0,Transient-Party,63.23,0,0,Check-Out,2019-01-03 -City Hotel,1,144,2016,August,38,7,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,195.59,0,0,Canceled,2019-06-03 -City Hotel,1,1,2017,January,8,9,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,A,0,No Deposit,14.0,222.0,0,Transient,43.76,1,0,Canceled,2020-01-04 -City Hotel,0,5,2016,November,36,20,2,1,2,0.0,0,BB,ITA,Corporate,Corporate,1,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient,94.83,0,0,Check-Out,2019-09-03 -Resort Hotel,0,18,2017,February,9,13,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,224.0,0,Transient,36.67,0,0,Check-Out,2020-04-02 -City Hotel,0,95,2016,December,24,24,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,107.74,0,2,Check-Out,2019-05-04 -Resort Hotel,0,12,2017,May,24,9,1,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient-Party,121.08,0,0,Check-Out,2020-02-01 -Resort Hotel,0,146,2017,March,13,16,1,3,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,223.0,0,Transient-Party,37.21,0,0,Check-Out,2019-12-04 -City Hotel,1,30,2017,June,25,15,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.43,0,1,Canceled,2020-02-01 -City Hotel,0,8,2017,August,36,23,0,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,3,Check-Out,2020-07-03 -City Hotel,0,1,2017,May,21,31,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.15,0,1,Check-Out,2020-05-03 -City Hotel,1,405,2015,December,45,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,39,Transient,60.45,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,May,10,13,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,111.64,0,1,Check-Out,2019-03-04 -Resort Hotel,0,56,2016,October,46,29,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,31.15,1,2,Check-Out,2019-09-03 -Resort Hotel,0,231,2017,August,38,29,0,4,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,124.67,1,2,Check-Out,2020-06-02 -Resort Hotel,0,54,2016,February,12,25,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,61.45,0,0,Check-Out,2018-11-02 -City Hotel,1,341,2016,May,43,6,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,62,Transient,75.48,0,0,Canceled,2019-12-04 -Resort Hotel,0,196,2017,February,12,13,1,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,78.79,0,0,Check-Out,2020-01-04 -Resort Hotel,0,1,2016,July,32,5,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,C,0,No Deposit,242.0,179.0,0,Transient,125.06,1,1,Check-Out,2020-05-03 -City Hotel,0,11,2017,July,49,7,2,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,92.9,0,0,Check-Out,2019-11-03 -City Hotel,1,169,2016,March,16,15,2,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,62.0,179.0,0,Transient,207.01,0,0,Canceled,2018-12-03 -Resort Hotel,0,201,2016,March,20,15,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,224.0,0,Transient-Party,62.35,1,0,Check-Out,2019-06-03 -City Hotel,0,162,2015,July,32,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,64.74,0,0,Check-Out,2018-05-03 -City Hotel,1,301,2016,July,36,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,E,0,Non Refund,9.0,179.0,0,Transient,139.92,0,0,Canceled,2019-01-03 -City Hotel,1,158,2015,August,35,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,78.79,0,0,Canceled,2018-08-03 -City Hotel,0,91,2016,June,22,2,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,113.81,1,2,Check-Out,2019-03-04 -City Hotel,0,14,2017,March,23,23,2,0,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,234.88,0,0,Check-Out,2020-02-01 -City Hotel,0,159,2016,October,51,31,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.96,0,0,Check-Out,2020-01-04 -City Hotel,1,306,2016,June,28,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,122.58,0,0,Canceled,2019-01-03 -Resort Hotel,0,27,2015,December,51,31,2,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,35.97,0,2,Check-Out,2018-08-03 -Resort Hotel,0,85,2015,December,44,22,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,98.09,0,2,Check-Out,2018-08-03 -City Hotel,1,37,2017,February,10,15,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,72.06,0,1,Canceled,2018-10-03 -City Hotel,0,104,2017,June,25,12,0,1,2,0.0,0,BB,PRT,Aviation,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Contract,105.84,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2016,October,40,30,0,1,1,0.0,0,SC,BEL,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,133.92,0,0,Check-Out,2020-01-04 -City Hotel,0,12,2016,May,16,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.58,0,1,Check-Out,2019-02-01 -City Hotel,0,29,2017,January,4,30,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.85,0,1,Check-Out,2019-11-03 -Resort Hotel,1,383,2016,October,34,5,2,10,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,124.42,0,0,Canceled,2019-08-04 -City Hotel,0,1,2015,October,46,20,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,124.15,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,October,43,13,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,43.03,1,0,Check-Out,2019-09-03 -City Hotel,0,8,2016,May,23,6,0,1,1,0.0,0,BB,NLD,Aviation,Corporate,0,0,0,A,A,2,No Deposit,13.0,166.0,0,Transient,135.61,0,0,Check-Out,2019-06-03 -City Hotel,0,88,2017,June,26,27,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,109.27,0,0,Check-Out,2020-06-02 -Resort Hotel,0,279,2017,August,35,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,82.34,1,2,Check-Out,2020-07-03 -City Hotel,0,4,2017,March,17,12,1,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,14.0,75.0,0,Transient,80.71,0,1,Check-Out,2020-03-03 -City Hotel,0,88,2017,June,26,9,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,136.5,0,0,Check-Out,2020-03-03 -City Hotel,0,97,2016,August,38,6,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.59,0,1,Check-Out,2020-06-02 -City Hotel,0,46,2017,April,7,9,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,80.76,0,0,Check-Out,2020-06-02 -City Hotel,0,90,2015,December,53,13,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,88.79,0,0,Check-Out,2019-04-03 -Resort Hotel,0,1,2016,May,24,18,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,C,3,No Deposit,118.0,65.0,0,Transient,76.93,0,0,Check-Out,2019-04-03 -City Hotel,1,10,2016,November,51,5,1,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,60.51,0,0,Canceled,2019-09-03 -Resort Hotel,0,2,2016,April,26,5,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-02-01 -City Hotel,0,6,2017,July,28,2,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,62.78,0,0,Check-Out,2018-08-03 -Resort Hotel,1,285,2016,June,32,9,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,E,0,Non Refund,244.0,179.0,0,Transient,97.72,0,0,Canceled,2019-04-03 -City Hotel,1,18,2015,December,45,14,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,92.03,0,0,Canceled,2019-08-04 -City Hotel,1,2,2017,January,8,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,143.68,0,1,No-Show,2019-11-03 -Resort Hotel,0,2,2016,March,11,24,1,1,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,136.92,0,0,Check-Out,2019-03-04 -Resort Hotel,0,4,2015,November,43,30,1,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,62.24,0,0,Check-Out,2018-08-03 -Resort Hotel,0,7,2016,May,21,25,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,240.0,179.0,0,Transient,133.72,0,1,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,July,36,29,0,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,36.61,1,2,Check-Out,2019-07-04 -City Hotel,0,17,2016,April,22,27,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,118.98,0,1,Check-Out,2019-02-01 -City Hotel,0,13,2016,August,44,16,1,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,169.41,0,2,Check-Out,2019-08-04 -City Hotel,1,38,2017,March,10,26,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,F,0,Non Refund,201.0,179.0,0,Transient,82.94,0,0,Canceled,2020-02-01 -City Hotel,0,247,2017,July,34,19,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,104.86,0,2,Check-Out,2020-06-02 -City Hotel,0,146,2016,October,17,30,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,G,G,1,No Deposit,16.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-12-04 -Resort Hotel,1,193,2017,August,38,30,2,5,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,E,2,No Deposit,252.0,179.0,0,Transient,208.69,0,0,Canceled,2020-01-04 -City Hotel,0,96,2016,April,15,16,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,93.55,0,2,Check-Out,2020-04-02 -City Hotel,0,17,2015,October,46,27,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient-Party,126.44,0,0,Check-Out,2019-05-04 -City Hotel,1,266,2015,June,27,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.19,0,0,Canceled,2018-12-03 -Resort Hotel,0,7,2015,August,38,31,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Check-Out,2018-06-02 -City Hotel,1,262,2015,August,38,9,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Contract,104.38,0,0,Canceled,2017-09-02 -City Hotel,1,94,2017,January,4,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.51,0,0,Canceled,2019-10-04 -City Hotel,1,48,2016,August,36,6,0,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,120.8,0,0,Canceled,2017-11-02 -Resort Hotel,0,94,2017,March,18,29,2,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,94.82,0,2,Check-Out,2019-02-01 -City Hotel,0,20,2016,July,32,9,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,71.95,0,1,Canceled,2019-02-01 -Resort Hotel,0,36,2016,May,22,22,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,239.0,179.0,0,Transient-Party,218.27,1,2,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,September,34,9,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,34.8,1,1,Check-Out,2019-05-04 -City Hotel,1,102,2016,July,33,5,2,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Contract,154.54,0,1,Canceled,2019-05-04 -Resort Hotel,0,6,2015,August,37,15,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,62.04,0,0,Check-Out,2018-07-03 -City Hotel,1,244,2017,August,38,16,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.17,0,2,Canceled,2020-06-02 -City Hotel,0,4,2015,August,50,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,115.52,0,1,Check-Out,2018-08-03 -Resort Hotel,0,40,2016,December,50,29,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,68.28,0,0,Check-Out,2019-08-04 -Resort Hotel,1,177,2016,August,36,18,2,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,240.0,179.0,0,Transient,119.55,0,2,Canceled,2019-05-04 -City Hotel,1,52,2017,May,22,15,2,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,145.42,0,3,Canceled,2020-04-02 -City Hotel,0,5,2015,October,43,17,2,3,1,0.0,0,BB,AUT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient,62.37,1,0,Check-Out,2018-09-02 -City Hotel,1,18,2017,April,17,9,2,5,3,0.0,0,HB,FRA,Direct,TA/TO,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient-Party,103.75,0,0,Canceled,2020-03-03 -Resort Hotel,0,31,2015,December,52,27,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,17.0,179.0,0,Transient,149.4,1,3,Check-Out,2018-08-03 -City Hotel,1,53,2016,October,44,21,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,11.0,179.0,0,Transient,130.9,0,1,Canceled,2019-08-04 -City Hotel,1,99,2016,June,27,5,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,104.58,0,1,No-Show,2020-06-02 -City Hotel,0,13,2016,January,10,13,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,38.16,0,1,Canceled,2018-11-02 -City Hotel,0,18,2016,June,23,29,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.39,1,1,Check-Out,2019-05-04 -City Hotel,1,434,2016,March,12,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.8,0,0,Canceled,2019-10-04 -City Hotel,1,42,2015,October,43,20,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,104.45,0,0,Canceled,2019-10-04 -Resort Hotel,0,29,2016,March,12,6,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,43.06,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2016,November,53,14,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,1,No Deposit,14.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -City Hotel,0,18,2017,February,9,12,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,81.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,188,2016,October,41,12,3,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,100.31,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,February,8,10,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,69.18,0,1,Check-Out,2019-01-03 -Resort Hotel,0,1,2017,July,21,5,2,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,C,1,No Deposit,17.0,179.0,0,Transient,154.73,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,March,11,20,0,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,181.33,0,2,Check-Out,2019-11-03 -City Hotel,1,93,2016,January,6,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.52,0,0,Canceled,2018-12-03 -City Hotel,0,16,2017,June,20,13,1,5,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,110.98,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,August,35,31,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,158.4,0,2,Check-Out,2019-01-03 -Resort Hotel,0,11,2016,May,27,31,1,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,73.81,0,0,Check-Out,2019-05-04 -City Hotel,0,40,2015,December,31,10,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,120.69,0,0,Check-Out,2018-12-03 -City Hotel,1,107,2016,December,50,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,19,Transient-Party,73.43,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,March,16,5,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-03-04 -Resort Hotel,0,2,2016,May,27,30,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,166.37,1,3,Check-Out,2020-02-01 -City Hotel,1,162,2017,June,32,16,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,136.14,0,1,Canceled,2020-03-03 -City Hotel,1,313,2015,July,38,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.51,0,0,Canceled,2017-12-03 -City Hotel,0,190,2017,July,32,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,137.98,0,0,Check-Out,2020-07-03 -Resort Hotel,0,48,2016,November,11,29,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,63.37,0,0,Check-Out,2018-12-03 -City Hotel,1,16,2017,June,22,5,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.3,0,0,No-Show,2020-03-03 -City Hotel,1,165,2017,July,32,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,157.12,0,0,Canceled,2018-07-03 -Resort Hotel,1,8,2016,January,3,3,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,242.0,179.0,0,Transient,117.77,0,0,Canceled,2018-12-03 -City Hotel,0,0,2017,February,9,28,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient-Party,82.69,0,2,Check-Out,2020-02-01 -Resort Hotel,0,101,2017,June,26,9,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,40.0,179.0,0,Transient,148.75,0,0,Check-Out,2020-06-02 -City Hotel,1,133,2016,September,34,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.65,0,0,Canceled,2018-11-02 -City Hotel,0,40,2016,December,53,7,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.37,0,1,Check-Out,2019-10-04 -City Hotel,0,47,2016,October,45,12,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,120.01,0,2,Check-Out,2019-07-04 -Resort Hotel,0,15,2016,January,4,15,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,243.0,331.0,0,Transient,62.53,0,0,Check-Out,2018-10-03 -City Hotel,1,2,2017,May,22,5,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.09,0,0,Canceled,2020-03-03 -City Hotel,0,163,2016,June,26,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,78.79,0,0,Check-Out,2019-02-01 -Resort Hotel,0,52,2016,January,3,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,36.6,0,0,Check-Out,2018-10-03 -City Hotel,0,16,2017,March,9,23,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,146.19,0,2,Check-Out,2020-03-03 -City Hotel,1,39,2017,April,22,28,2,1,2,0.0,0,SC,GBR,Direct,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,108.9,0,1,Check-Out,2020-03-03 -Resort Hotel,0,18,2016,February,11,29,0,1,1,0.0,0,BB,DEU,Corporate,Direct,0,0,0,A,D,0,No Deposit,198.0,179.0,0,Transient,39.03,0,0,Check-Out,2018-11-02 -City Hotel,0,389,2016,August,37,24,0,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,126.42,0,1,Check-Out,2019-06-03 -City Hotel,0,236,2015,July,26,21,4,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,62.34,0,0,Check-Out,2017-12-03 -City Hotel,1,48,2016,February,9,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.52,0,1,Canceled,2018-11-02 -City Hotel,1,93,2017,July,25,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,94.97,0,0,Canceled,2020-03-03 -City Hotel,0,97,2015,July,31,24,0,2,1,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.53,1,2,Check-Out,2018-05-03 -Resort Hotel,0,3,2015,November,50,28,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,62.68,0,1,Check-Out,2018-12-03 -Resort Hotel,0,53,2016,March,17,30,0,3,2,0.0,0,FB,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,12.0,223.0,0,Transient-Party,29.92,0,0,Check-Out,2019-03-04 -Resort Hotel,0,142,2016,June,27,18,2,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,165.23,0,3,Check-Out,2019-08-04 -Resort Hotel,0,36,2017,April,18,21,0,1,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,90.0,179.0,0,Transient-Party,94.6,0,0,Check-Out,2020-02-01 -City Hotel,0,22,2016,July,32,10,2,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,95.0,179.0,0,Transient,99.87,0,2,Check-Out,2018-05-03 -City Hotel,0,91,2016,September,42,24,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient,81.67,0,0,Check-Out,2019-07-04 -Resort Hotel,0,152,2016,August,32,2,2,5,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,203.89,0,0,Check-Out,2020-01-04 -Resort Hotel,0,17,2017,July,22,27,2,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,201.0,179.0,0,Transient,73.43,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,May,23,7,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,85.51,0,0,Check-Out,2020-04-02 -City Hotel,0,248,2015,October,43,2,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,93.93,0,0,Check-Out,2019-05-04 -City Hotel,0,147,2017,August,38,28,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Transient,155.68,0,0,Check-Out,2020-07-03 -Resort Hotel,0,5,2016,July,26,24,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,294.0,179.0,0,Transient,72.16,1,1,Check-Out,2019-04-03 -City Hotel,1,0,2015,March,17,10,1,0,2,2.0,0,BB,CHN,Direct,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,59.11,0,0,Check-Out,2018-12-03 -Resort Hotel,0,134,2017,July,26,24,4,7,1,0.0,0,HB,GBR,Offline TA/TO,Direct,1,0,0,A,A,2,No Deposit,323.0,179.0,0,Transient,96.84,1,2,Check-Out,2020-04-02 -City Hotel,0,86,2017,April,18,31,1,0,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,102.0,331.0,0,Transient-Party,119.95,0,0,Check-Out,2019-12-04 -City Hotel,1,106,2016,January,4,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient,82.04,0,1,Canceled,2018-10-03 -Resort Hotel,1,161,2016,June,26,21,2,5,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,229.86,0,0,Canceled,2019-01-03 -Resort Hotel,0,171,2016,March,21,31,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,B,1,Refundable,14.0,223.0,0,Transient-Party,64.31,0,0,Check-Out,2019-01-03 -City Hotel,1,46,2016,October,45,30,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,64.61,0,0,Canceled,2018-08-03 -City Hotel,0,5,2017,June,26,15,0,2,2,0.0,0,HB,DEU,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,87.69,0,3,Check-Out,2020-04-02 -City Hotel,0,4,2016,August,43,10,2,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,124.5,0,0,Check-Out,2019-05-04 -Resort Hotel,1,49,2017,May,28,31,1,5,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,F,0,No Deposit,275.0,179.0,0,Transient,184.73,0,0,Canceled,2020-03-03 -Resort Hotel,1,276,2016,November,32,23,0,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,124.66,0,0,Canceled,2019-03-04 -City Hotel,0,5,2016,January,3,6,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,73.54,0,0,Check-Out,2019-01-03 -Resort Hotel,0,29,2017,June,31,29,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,172.0,179.0,0,Transient,161.96,0,0,Check-Out,2020-02-01 -City Hotel,1,383,2016,October,44,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,65.51,0,0,Canceled,2017-11-02 -City Hotel,1,137,2016,August,31,2,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,162.39,0,1,Canceled,2018-11-02 -City Hotel,1,432,2015,September,39,15,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,61.23,0,0,Canceled,2018-08-03 -Resort Hotel,0,50,2017,June,26,13,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,162.67,0,1,Check-Out,2020-02-01 -City Hotel,1,35,2017,May,21,12,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,76.0,0,Transient,86.74,0,0,Canceled,2020-03-03 -City Hotel,0,11,2017,February,10,24,1,1,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.81,0,2,Check-Out,2020-03-03 -City Hotel,0,185,2016,August,36,20,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.73,1,1,Check-Out,2019-06-03 -City Hotel,0,54,2016,October,43,15,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.22,1,1,Check-Out,2019-08-04 -Resort Hotel,0,97,2015,December,53,31,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,2,No Deposit,16.0,179.0,0,Transient-Party,41.02,0,0,Check-Out,2018-06-02 -City Hotel,0,18,2016,December,50,27,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-05-04 -City Hotel,0,41,2016,March,4,17,1,3,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,147.91,0,1,Check-Out,2019-02-01 -Resort Hotel,0,101,2016,March,10,18,1,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,79.06,0,0,Check-Out,2019-10-04 -Resort Hotel,0,42,2017,June,25,20,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,212.48,0,0,Check-Out,2020-06-02 -Resort Hotel,0,92,2017,May,33,27,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,0.34,0,1,Check-Out,2020-02-01 -City Hotel,0,55,2016,August,35,13,2,3,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,128.25,0,2,Check-Out,2020-06-02 -City Hotel,0,3,2017,May,9,25,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,12.0,179.0,0,Transient,161.57,0,2,Check-Out,2020-06-02 -Resort Hotel,0,33,2017,January,3,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,339.0,179.0,0,Transient-Party,28.92,0,0,Check-Out,2019-12-04 -Resort Hotel,1,98,2017,June,27,25,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,10.0,179.0,0,Group,73.51,0,2,No-Show,2020-03-03 -City Hotel,1,91,2017,August,33,9,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,140.47,0,0,Canceled,2020-05-03 -City Hotel,1,18,2017,August,31,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,129.48,0,0,Canceled,2020-07-03 -Resort Hotel,1,141,2016,March,22,21,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,79.0,0,0,Canceled,2019-01-03 -City Hotel,1,46,2015,December,53,6,2,5,2,0.0,0,BB,BRA,Groups,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,73.04,0,2,Canceled,2018-11-02 -Resort Hotel,1,54,2016,December,43,6,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,159.7,0,0,Canceled,2019-10-04 -Resort Hotel,1,303,2016,May,24,6,2,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,324.0,179.0,0,Transient,69.7,0,0,Canceled,2019-01-03 -City Hotel,1,62,2015,July,32,13,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.36,0,0,Canceled,2018-05-03 -City Hotel,1,0,2017,January,3,5,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,1,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,72.44,0,2,No-Show,2020-04-02 -City Hotel,1,345,2016,November,45,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,62.01,0,0,Canceled,2019-08-04 -City Hotel,0,88,2017,June,29,29,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,100.51,0,0,Check-Out,2020-07-03 -Resort Hotel,0,249,2017,June,29,2,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,3.38,0,0,Check-Out,2020-03-03 -City Hotel,1,294,2016,July,26,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,63,Transient,115.55,0,0,Canceled,2019-06-03 -City Hotel,0,204,2017,August,26,30,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.36,1,2,Check-Out,2020-07-03 -City Hotel,0,41,2017,March,10,10,0,2,2,0.0,0,HB,PRT,Corporate,Corporate,0,0,1,A,D,1,No Deposit,13.0,179.0,0,Transient,127.27,0,1,Check-Out,2020-03-03 -City Hotel,1,93,2016,October,44,9,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,143.77,0,0,Canceled,2019-09-03 -City Hotel,1,166,2016,April,19,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,76.31,0,0,Canceled,2018-12-03 -Resort Hotel,0,26,2015,December,51,13,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,41.26,0,1,Check-Out,2018-12-03 -City Hotel,0,2,2017,March,11,16,0,1,1,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.27,0,1,Check-Out,2020-05-03 -Resort Hotel,1,13,2017,April,19,29,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,3,No Deposit,246.0,179.0,0,Transient,252.0,0,3,Canceled,2019-11-03 -Resort Hotel,0,58,2017,February,9,26,2,1,2,0.0,0,FB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,89.51,1,0,Check-Out,2019-10-04 -Resort Hotel,1,237,2017,August,34,29,2,6,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,240.0,179.0,0,Transient,182.67,0,2,Canceled,2020-07-03 -City Hotel,0,1,2017,June,28,24,0,1,1,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,234.55,0,0,Check-Out,2020-03-03 -City Hotel,0,7,2016,February,9,2,0,3,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,8.0,45.0,0,Transient,71.7,0,0,Check-Out,2018-11-02 -City Hotel,0,18,2017,June,26,4,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,101.87,0,0,Check-Out,2020-02-01 -Resort Hotel,1,89,2015,December,39,28,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,69.15,0,0,Canceled,2018-06-02 -Resort Hotel,0,28,2015,December,53,31,2,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient-Party,62.97,1,0,Check-Out,2018-12-03 -City Hotel,1,86,2016,June,21,23,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,94.25,0,0,Canceled,2019-02-01 -City Hotel,0,10,2016,June,27,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,85.0,0,0,Check-Out,2019-05-04 -City Hotel,1,15,2016,April,37,21,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,Non Refund,7.0,179.0,0,Transient,129.54,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2017,April,18,12,2,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,E,E,1,No Deposit,206.0,179.0,0,Transient,83.15,0,0,Check-Out,2020-04-02 -Resort Hotel,1,156,2015,December,35,18,2,5,2,0.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient,34.34,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2016,October,50,10,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,2,No Deposit,249.0,179.0,0,Transient,62.53,1,1,Check-Out,2018-12-03 -City Hotel,0,0,2016,December,50,5,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,14.0,259.0,0,Transient,1.03,0,0,Check-Out,2020-01-04 -Resort Hotel,1,288,2016,March,15,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,62.52,0,0,Canceled,2018-11-02 -City Hotel,1,1,2016,February,10,3,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,76.2,0,0,Canceled,2019-01-03 -City Hotel,1,271,2017,February,9,17,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,73.85,0,0,Canceled,2019-10-04 -City Hotel,0,53,2015,July,31,18,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,111.95,0,0,Check-Out,2019-07-04 -City Hotel,1,247,2016,August,35,23,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,1.0,179.0,0,Transient,71.17,0,0,Canceled,2017-10-03 -Resort Hotel,0,10,2016,June,27,31,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,202.0,179.0,0,Transient,174.34,0,0,Check-Out,2019-06-03 -City Hotel,0,22,2016,November,44,20,0,1,2,0.0,0,SC,AUT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,102.3,0,0,Check-Out,2018-12-03 -City Hotel,1,0,2016,September,34,1,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,40,Transient,88.13,0,0,No-Show,2018-12-03 -City Hotel,1,261,2016,October,42,18,2,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,112.04,0,0,Canceled,2018-11-02 -City Hotel,1,273,2016,April,16,28,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,65.21,0,0,Canceled,2018-12-03 -City Hotel,0,21,2017,June,27,2,0,2,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,136.8,0,1,Check-Out,2020-06-02 -City Hotel,1,60,2016,March,9,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.4,0,0,Canceled,2018-11-02 -Resort Hotel,1,54,2016,April,17,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,88.9,0,0,Canceled,2019-01-03 -City Hotel,0,87,2016,July,25,30,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.22,0,0,Check-Out,2020-03-03 -City Hotel,1,24,2017,April,9,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,87.13,0,0,Canceled,2019-10-04 -City Hotel,1,45,2016,December,52,29,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.91,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,February,11,20,1,2,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,D,0,No Deposit,14.0,75.0,0,Transient,61.65,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,March,10,24,1,1,1,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,1.86,1,0,Check-Out,2019-09-03 -City Hotel,0,1,2017,February,10,28,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,E,2,No Deposit,30.0,267.0,0,Transient-Party,61.36,0,0,Check-Out,2020-02-01 -City Hotel,0,10,2016,March,53,6,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,203.97,0,2,Check-Out,2019-03-04 -City Hotel,1,76,2016,July,26,4,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,105.7,0,0,Canceled,2019-03-04 -City Hotel,0,17,2016,May,31,13,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,124.82,1,2,Check-Out,2019-06-03 -City Hotel,0,21,2015,October,46,10,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,93.0,331.0,0,Transient-Party,76.67,0,0,Check-Out,2018-09-02 -Resort Hotel,0,32,2016,May,24,28,1,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,203.67,1,3,Check-Out,2019-06-03 -Resort Hotel,0,108,2015,November,45,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,58.91,0,0,Check-Out,2018-09-02 -Resort Hotel,0,29,2015,December,52,21,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,45.2,0,0,Check-Out,2018-12-03 -Resort Hotel,1,0,2016,April,43,6,1,5,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,D,2,No Deposit,14.0,179.0,0,Transient,42.48,0,0,Canceled,2018-12-03 -City Hotel,0,34,2015,December,52,5,1,0,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,89.0,179.0,61,Transient-Party,54.3,0,0,Check-Out,2019-01-03 -City Hotel,0,147,2017,April,20,26,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,85.24,0,2,Check-Out,2020-02-01 -Resort Hotel,0,54,2016,July,31,18,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,244.0,179.0,0,Transient,128.51,0,2,Check-Out,2019-06-03 -City Hotel,0,239,2016,October,24,15,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.35,0,0,Check-Out,2019-05-04 -Resort Hotel,0,4,2017,February,11,30,0,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,80.0,0,Transient,79.07,0,0,Check-Out,2019-10-04 -Resort Hotel,0,87,2016,September,35,22,2,5,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,105.85,0,0,Check-Out,2018-06-02 -Resort Hotel,0,165,2016,March,16,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,179.0,0,Transient-Party,61.32,0,0,Check-Out,2019-02-01 -Resort Hotel,0,17,2015,October,43,20,2,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,43.96,0,1,Check-Out,2018-09-02 -Resort Hotel,1,157,2017,July,32,30,2,1,1,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,251.0,179.0,0,Transient,160.88,0,0,Canceled,2020-06-02 -City Hotel,1,335,2017,August,42,5,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.4,1,2,Canceled,2019-12-04 -City Hotel,0,16,2016,June,25,5,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,81.0,179.0,0,Transient-Party,62.23,0,0,Check-Out,2019-03-04 -Resort Hotel,0,14,2015,December,51,28,0,1,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-07-04 -City Hotel,1,54,2016,August,36,10,0,1,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Group,147.6,0,0,Canceled,2019-05-04 -Resort Hotel,0,36,2016,November,44,9,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,158.78,0,2,Check-Out,2019-06-03 -City Hotel,1,43,2015,December,45,21,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.83,0,2,Canceled,2018-11-02 -Resort Hotel,1,44,2017,July,33,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,250.0,179.0,0,Transient,192.53,1,3,Canceled,2019-11-03 -City Hotel,1,253,2015,September,41,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient-Party,93.03,0,0,Canceled,2017-11-02 -City Hotel,0,49,2016,June,29,28,0,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,97.98,0,0,Check-Out,2019-01-03 -City Hotel,0,159,2017,July,25,18,2,1,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,122.83,0,3,Check-Out,2020-06-02 -Resort Hotel,0,14,2015,December,53,6,2,2,2,0.0,0,Undefined,ESP,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,94.87,0,0,Check-Out,2018-06-02 -Resort Hotel,0,258,2017,May,22,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,0,Refundable,13.0,222.0,0,Transient-Party,75.41,1,0,Check-Out,2019-11-03 -Resort Hotel,0,148,2017,April,22,24,0,4,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,74.29,0,0,Check-Out,2020-04-02 -City Hotel,1,37,2017,March,10,15,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,183.01,0,2,Canceled,2020-03-03 -City Hotel,0,0,2016,December,53,24,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,84.26,0,1,Check-Out,2019-09-03 -City Hotel,0,111,2017,March,10,13,0,2,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient-Party,112.34,0,0,Check-Out,2020-03-03 -City Hotel,0,55,2017,April,17,1,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.35,0,0,Check-Out,2020-03-03 -Resort Hotel,1,287,2017,June,28,30,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.71,0,0,Canceled,2018-01-03 -City Hotel,0,0,2017,August,36,15,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,178.0,0,Transient,128.98,0,0,Check-Out,2020-05-03 -City Hotel,0,18,2016,December,53,27,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,130.12,0,1,Check-Out,2019-08-04 -City Hotel,1,32,2017,August,33,24,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.57,0,1,Canceled,2019-09-03 -City Hotel,0,49,2016,June,37,9,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,F,E,2,No Deposit,15.0,179.0,0,Transient,198.04,0,0,Check-Out,2019-05-04 -City Hotel,0,87,2016,April,17,24,2,3,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient-Party,108.92,1,0,Check-Out,2019-03-04 -Resort Hotel,1,170,2015,December,53,28,2,4,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,F,0,No Deposit,378.0,179.0,0,Transient,39.21,0,0,Canceled,2018-11-02 -City Hotel,0,138,2016,June,23,11,1,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.64,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2017,February,8,14,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,119.14,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2016,November,49,20,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,A,C,0,No Deposit,12.0,45.0,0,Group,60.68,0,0,Check-Out,2018-11-02 -City Hotel,0,89,2016,October,23,20,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,94.27,0,2,Canceled,2019-05-04 -Resort Hotel,0,38,2017,March,17,6,2,0,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,101.72,0,0,Check-Out,2020-03-03 -City Hotel,1,21,2015,November,50,4,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,80.1,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,June,6,22,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,55,2016,December,53,20,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,335.0,179.0,0,Transient-Party,52.59,0,0,Check-Out,2019-10-04 -City Hotel,1,41,2015,August,36,5,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,165.82,0,1,Canceled,2018-08-03 -City Hotel,0,1,2017,June,23,20,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,331.0,0,Transient-Party,82.02,0,0,Check-Out,2019-12-04 -Resort Hotel,0,97,2016,March,50,5,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient-Party,77.12,0,1,Check-Out,2019-11-03 -Resort Hotel,0,4,2017,February,10,28,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,75.73,0,0,Check-Out,2019-11-03 -Resort Hotel,0,77,2015,August,33,25,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,0,Transient-Party,131.42,0,1,Check-Out,2019-04-03 -City Hotel,0,39,2015,October,51,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,62.64,0,1,Check-Out,2018-08-03 -Resort Hotel,1,102,2017,August,22,15,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,190.56,0,0,Canceled,2019-11-03 -City Hotel,1,33,2016,November,46,31,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,83.76,0,0,Canceled,2019-07-04 -City Hotel,1,28,2017,April,9,31,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,162.0,179.0,0,Transient-Party,79.79,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2017,June,28,6,2,1,3,0.0,0,HB,PRT,Direct,Direct,1,0,0,E,I,1,No Deposit,15.0,179.0,0,Transient,217.37,1,3,Check-Out,2020-05-03 -Resort Hotel,1,21,2017,May,24,25,0,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,H,0,No Deposit,246.0,179.0,0,Transient,114.32,0,0,Canceled,2020-03-03 -Resort Hotel,0,161,2016,March,16,31,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,15.0,222.0,0,Transient-Party,72.43,0,0,Check-Out,2019-03-04 -Resort Hotel,0,28,2015,October,42,27,2,3,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,32.26,1,0,Check-Out,2018-09-02 -City Hotel,1,13,2016,March,16,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,32.0,61.0,0,Transient,60.46,0,0,Canceled,2018-10-03 -City Hotel,1,150,2017,February,18,20,1,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,108.89,0,0,Canceled,2019-12-04 -City Hotel,0,203,2017,June,36,6,0,2,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,132.56,0,1,Check-Out,2020-06-02 -Resort Hotel,0,16,2016,November,43,12,1,1,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,60.5,0,0,Check-Out,2019-07-04 -City Hotel,1,113,2016,March,16,31,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,107.88,0,2,Canceled,2019-03-04 -City Hotel,0,33,2016,February,12,17,0,2,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,E,A,2,No Deposit,15.0,179.0,18,Transient,80.45,0,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2016,January,9,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,36.44,0,0,Check-Out,2018-11-02 -City Hotel,0,126,2016,October,41,2,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,89.5,0,1,Check-Out,2019-06-03 -City Hotel,1,9,2017,May,17,9,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,126.39,0,0,No-Show,2020-04-02 -City Hotel,1,195,2016,August,37,29,0,3,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.31,0,0,Canceled,2019-08-04 -Resort Hotel,0,16,2015,July,32,8,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,106.9,0,2,Check-Out,2018-06-02 -City Hotel,0,33,2016,November,51,10,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,89.07,0,0,Check-Out,2019-09-03 -City Hotel,1,33,2016,August,8,5,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,121.1,0,2,Canceled,2019-03-04 -City Hotel,0,270,2016,April,23,2,1,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,73.43,0,2,Check-Out,2019-02-01 -City Hotel,0,50,2017,July,32,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.09,0,0,Check-Out,2020-06-02 -Resort Hotel,0,40,2016,March,18,16,1,2,1,0.0,0,BB,CN,Groups,Corporate,0,0,0,A,A,1,No Deposit,11.0,222.0,0,Transient-Party,37.59,1,0,Check-Out,2019-03-04 -City Hotel,0,92,2017,May,17,13,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,2,No Deposit,166.0,179.0,0,Transient,89.46,0,2,Check-Out,2020-04-02 -City Hotel,0,135,2016,January,10,2,1,1,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,97.7,0,0,Check-Out,2019-02-01 -City Hotel,1,402,2016,October,51,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,41,Transient,72.93,0,0,Canceled,2018-08-03 -City Hotel,0,46,2017,February,12,6,2,2,1,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,93.41,0,0,Check-Out,2020-04-02 -City Hotel,0,13,2016,May,23,20,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,165.84,0,0,Check-Out,2019-06-03 -City Hotel,0,99,2017,July,21,8,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.18,0,2,Check-Out,2020-05-03 -City Hotel,0,24,2016,December,53,29,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,73.29,0,0,Check-Out,2019-10-04 -Resort Hotel,0,13,2017,June,16,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,12.0,233.0,0,Transient,48.84,0,0,Check-Out,2019-04-03 -City Hotel,1,240,2017,May,22,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,89.71,0,0,Canceled,2020-02-01 -City Hotel,1,5,2016,January,11,20,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,117.82,0,0,No-Show,2018-12-03 -City Hotel,1,54,2016,October,50,15,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,60,Transient,79.06,0,0,Canceled,2018-12-03 -City Hotel,1,16,2017,February,11,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,1,Non Refund,40.0,179.0,0,Transient,60.93,0,0,Canceled,2020-03-03 -Resort Hotel,1,336,2017,October,22,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,240.0,179.0,0,Transient,62.05,0,0,Canceled,2017-12-03 -Resort Hotel,0,185,2016,September,43,13,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,113.2,0,0,Check-Out,2018-08-03 -City Hotel,0,39,2016,June,27,10,2,4,1,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,175.37,0,0,Check-Out,2019-03-04 -Resort Hotel,0,155,2016,March,16,27,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,199.0,229.0,0,Transient,45.47,0,0,Check-Out,2019-03-04 -Resort Hotel,1,244,2016,August,34,30,2,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,224.47,0,0,Canceled,2019-02-01 -City Hotel,0,29,2016,February,9,5,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,60.48,0,0,Check-Out,2018-12-03 -Resort Hotel,0,102,2017,July,30,30,3,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,87.05,0,1,Check-Out,2020-03-03 -City Hotel,0,61,2016,July,32,30,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,106.84,0,0,Check-Out,2019-04-03 -City Hotel,1,107,2016,August,31,8,2,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.47,0,1,Canceled,2019-10-04 -Resort Hotel,0,100,2017,July,34,31,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,145,2016,March,16,31,0,3,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,2,Refundable,12.0,223.0,0,Transient-Party,67.8,1,0,Check-Out,2019-02-01 -City Hotel,1,252,2017,May,21,10,2,0,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,94.8,0,0,Canceled,2020-03-03 -City Hotel,0,33,2015,November,53,10,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,82.85,0,0,Check-Out,2018-06-02 -City Hotel,0,242,2016,December,20,10,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-05-04 -City Hotel,1,43,2016,February,7,5,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,112.71,0,2,No-Show,2018-12-03 -City Hotel,0,113,2015,December,49,6,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,26.0,179.0,0,Transient-Party,89.76,1,0,Check-Out,2018-11-02 -City Hotel,1,15,2017,March,11,16,2,0,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,10.0,45.0,0,Transient,83.88,0,2,Canceled,2019-11-03 -City Hotel,0,28,2016,April,49,24,0,3,3,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,117.35,0,0,Check-Out,2019-11-03 -City Hotel,0,84,2017,February,10,6,1,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,98.22,0,3,Check-Out,2020-03-03 -Resort Hotel,1,21,2016,September,37,2,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,173.71,0,0,Canceled,2019-08-04 -Resort Hotel,0,51,2017,May,36,21,2,1,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,151.53,0,0,Check-Out,2020-07-03 -City Hotel,1,411,2016,September,43,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,112.88,0,0,Canceled,2018-08-03 -Resort Hotel,0,244,2017,May,24,22,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,75.82,1,2,Check-Out,2020-03-03 -City Hotel,0,214,2017,August,35,10,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,95.17,0,1,Check-Out,2020-07-03 -City Hotel,0,2,2016,March,9,9,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,106.33,0,1,Check-Out,2018-11-02 -City Hotel,0,236,2017,June,25,23,2,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,174.0,0,Transient,102.34,0,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2015,October,42,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,35.77,0,0,Check-Out,2019-09-03 -City Hotel,1,109,2015,December,50,18,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.27,0,0,Canceled,2018-07-03 -Resort Hotel,0,15,2015,December,53,15,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,110.13,0,2,Check-Out,2018-12-03 -City Hotel,0,49,2016,December,49,20,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.89,0,0,Canceled,2019-09-03 -City Hotel,1,158,2016,August,37,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,149.0,179.0,0,Contract,115.58,0,0,Canceled,2018-05-03 -Resort Hotel,0,123,2015,October,46,28,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,324.0,179.0,0,Transient-Party,29.49,0,0,Check-Out,2018-09-02 -City Hotel,0,4,2016,August,32,30,0,1,1,0.0,0,BB,FRA,Direct,Corporate,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,95.57,0,1,Check-Out,2019-09-03 -Resort Hotel,0,210,2016,June,37,15,0,3,2,0.0,0,HB,IRL,Offline TA/TO,Direct,0,0,0,A,A,2,No Deposit,308.0,179.0,0,Transient,96.7,0,1,Check-Out,2019-06-03 -City Hotel,1,153,2017,June,26,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,141.0,179.0,0,Transient,110.13,0,0,Canceled,2020-05-03 -Resort Hotel,0,151,2016,September,36,17,0,1,2,0.0,0,SC,ISR,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,238.0,179.0,0,Group,109.71,0,1,Check-Out,2019-07-04 -Resort Hotel,0,302,2017,June,21,11,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,112.95,0,0,Check-Out,2020-04-02 -Resort Hotel,1,33,2016,July,30,21,2,5,2,1.0,0,HB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,287.0,179.0,0,Transient,2.03,0,2,Canceled,2019-06-03 -City Hotel,0,16,2016,November,42,28,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.03,0,1,Check-Out,2019-11-03 -City Hotel,1,261,2016,May,21,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,89.95,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,December,51,17,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,E,E,2,No Deposit,14.0,242.0,0,Transient,115.65,1,0,Check-Out,2019-06-03 -City Hotel,1,345,2015,September,44,10,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.46,0,0,Canceled,2018-08-03 -Resort Hotel,0,51,2015,July,32,27,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,121.7,0,1,Check-Out,2018-06-02 -Resort Hotel,0,15,2017,April,18,29,2,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,90.08,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2016,August,37,6,1,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.79,0,1,Check-Out,2020-06-02 -City Hotel,1,250,2016,July,29,4,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,119.61,0,0,No-Show,2019-03-04 -Resort Hotel,1,48,2017,September,36,2,0,2,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,152.81,0,0,Canceled,2019-12-04 -City Hotel,0,22,2016,October,46,5,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,135.17,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,December,28,9,0,1,1,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,17.0,277.0,0,Group,2.49,0,0,Check-Out,2019-07-04 -City Hotel,1,101,2017,July,39,22,2,5,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,1,D,A,0,No Deposit,11.0,179.0,0,Transient,157.3,0,3,No-Show,2018-09-02 -Resort Hotel,0,36,2016,December,53,29,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient-Party,72.22,0,0,Check-Out,2019-11-03 -City Hotel,1,153,2016,September,33,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.28,0,0,No-Show,2019-06-03 -City Hotel,0,14,2017,June,22,27,0,1,1,0.0,0,HB,PRT,Undefined,Corporate,0,0,0,A,I,1,No Deposit,12.0,331.0,0,Transient-Party,0.0,0,0,Check-Out,2020-05-03 -Resort Hotel,1,69,2017,July,29,4,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,10.0,179.0,0,Transient,173.58,0,2,Canceled,2020-05-03 -City Hotel,0,0,2017,April,17,16,2,0,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.71,0,2,Check-Out,2020-03-03 -Resort Hotel,1,33,2016,February,3,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,90.0,179.0,0,Transient,34.05,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2017,July,11,7,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,42.41,1,0,Canceled,2020-04-02 -City Hotel,1,86,2016,January,4,24,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,92.65,0,0,No-Show,2018-12-03 -Resort Hotel,0,23,2015,October,41,11,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,61.47,0,0,Check-Out,2018-08-03 -City Hotel,1,18,2015,September,45,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,58.89,0,0,Canceled,2018-08-03 -City Hotel,0,3,2016,October,45,10,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.34,0,2,Check-Out,2019-06-03 -Resort Hotel,0,205,2016,May,21,9,2,7,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient-Party,73.97,0,2,Check-Out,2019-06-03 -City Hotel,0,37,2016,October,46,2,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,163.94,0,1,Check-Out,2019-05-04 -Resort Hotel,0,9,2016,June,27,16,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,A,D,2,No Deposit,241.0,179.0,0,Group,111.62,0,1,Check-Out,2019-05-04 -Resort Hotel,1,45,2015,July,31,30,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,122.62,0,0,Canceled,2018-06-02 -Resort Hotel,0,21,2015,December,43,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,63,Transient,69.5,0,0,Check-Out,2018-09-02 -Resort Hotel,0,16,2015,August,36,5,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient-Party,181.34,0,0,Check-Out,2018-06-02 -City Hotel,0,1,2017,April,19,14,0,1,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,133.03,0,1,Check-Out,2020-02-01 -Resort Hotel,0,15,2016,October,45,26,1,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,142.63,0,0,Check-Out,2019-08-04 -Resort Hotel,1,58,2016,February,9,11,2,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,71.13,0,0,Canceled,2019-01-03 -City Hotel,0,51,2016,July,25,30,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,112.13,0,2,Check-Out,2019-07-04 -City Hotel,1,96,2015,December,53,28,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,14.0,179.0,0,Contract,100.83,0,0,Canceled,2018-07-03 -City Hotel,1,251,2016,November,51,30,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.68,0,0,Canceled,2019-11-03 -City Hotel,0,85,2016,October,45,7,1,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,119.55,0,0,Check-Out,2019-06-03 -Resort Hotel,1,59,2016,November,53,20,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,243.0,179.0,0,Transient,176.43,0,0,Canceled,2020-06-02 -Resort Hotel,0,10,2016,March,12,28,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,246.0,179.0,75,Transient,46.55,0,0,Check-Out,2020-02-01 -Resort Hotel,1,137,2017,April,12,28,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,88.68,0,0,Canceled,2019-11-03 -Resort Hotel,0,11,2016,September,28,6,0,2,1,0.0,0,BB,BRA,Corporate,Corporate,0,0,0,A,A,1,Refundable,14.0,206.0,0,Transient,43.5,0,0,Check-Out,2019-06-03 -Resort Hotel,0,211,2017,March,15,16,2,5,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient-Party,0.0,1,0,Check-Out,2020-01-04 -Resort Hotel,0,14,2015,December,53,9,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,60.39,1,0,Check-Out,2018-11-02 -Resort Hotel,0,159,2017,July,39,29,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,169.88,1,3,Check-Out,2020-07-03 -Resort Hotel,0,39,2016,February,13,8,1,1,1,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,E,E,0,No Deposit,95.0,179.0,0,Transient-Party,73.74,0,0,Check-Out,2018-10-03 -City Hotel,0,85,2015,July,33,9,2,3,3,0.0,0,BB,ITA,Direct,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,95.81,0,1,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,April,16,6,0,1,1,0.0,0,BB,FRA,Complementary,Direct,1,0,1,H,I,0,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2018-12-03 -City Hotel,0,7,2017,August,36,10,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,221.57,0,2,Check-Out,2020-01-04 -City Hotel,0,19,2016,November,43,17,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,122.68,0,2,Check-Out,2019-07-04 -City Hotel,1,156,2015,September,36,20,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,35.32,0,0,Canceled,2018-08-03 -City Hotel,1,44,2017,March,17,16,1,2,3,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,232.54,0,0,Canceled,2019-11-03 -City Hotel,1,19,2016,June,25,18,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,97.66,0,0,Canceled,2018-11-02 -Resort Hotel,0,37,2017,April,16,16,2,1,3,0.0,0,HB,,Offline TA/TO,TA/TO,1,0,0,F,P,1,No Deposit,33.0,179.0,0,Transient-Party,99.65,0,0,Check-Out,2019-12-04 -City Hotel,0,40,2016,October,24,30,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.07,0,1,Check-Out,2019-12-04 -City Hotel,0,3,2017,February,9,9,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,39.0,78.0,0,Transient,130.19,0,0,Check-Out,2020-01-04 -City Hotel,1,16,2017,February,8,2,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,61.09,0,0,Canceled,2018-10-03 -City Hotel,0,17,2016,February,9,27,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Transient-Party,85.41,0,0,Check-Out,2018-08-03 -City Hotel,0,41,2016,March,17,7,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,68.94,0,2,Check-Out,2019-03-04 -Resort Hotel,1,139,2016,May,42,21,1,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,83.62,0,0,Canceled,2019-03-04 -Resort Hotel,0,263,2017,May,21,3,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,243.0,179.0,0,Transient,80.66,1,1,Check-Out,2020-03-03 -City Hotel,1,4,2017,March,8,6,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,9.0,179.0,0,Transient,0.35,0,0,Canceled,2019-11-03 -Resort Hotel,0,11,2016,October,44,28,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,126.32,0,1,Check-Out,2019-11-03 -Resort Hotel,0,147,2016,May,26,27,0,3,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,106.31,0,0,Check-Out,2019-03-04 -Resort Hotel,0,31,2017,March,19,26,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient-Party,65.1,0,1,Check-Out,2019-11-03 -City Hotel,0,238,2016,July,31,4,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,125.28,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,May,22,30,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.89,0,0,Check-Out,2020-03-03 -City Hotel,0,13,2017,February,10,29,1,0,1,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,103.29,1,0,Check-Out,2020-02-01 -City Hotel,1,74,2015,July,33,10,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,116.65,0,0,Canceled,2018-06-02 -City Hotel,1,45,2017,March,16,21,0,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,116.64,0,2,Canceled,2020-02-01 -City Hotel,1,293,2015,July,39,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,2.0,179.0,0,Contract,63.21,0,0,Canceled,2017-12-03 -City Hotel,0,42,2016,August,37,28,0,4,2,1.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.72,0,2,Check-Out,2019-06-03 -Resort Hotel,0,24,2015,December,53,25,0,2,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,35.96,0,2,Check-Out,2019-10-04 -Resort Hotel,0,168,2016,May,17,30,2,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,1,Refundable,14.0,222.0,0,Transient-Party,72.39,1,0,Check-Out,2019-04-03 -City Hotel,0,62,2017,June,32,17,2,3,2,1.0,0,SC,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,14.0,179.0,0,Transient,233.03,1,0,Check-Out,2020-06-02 -City Hotel,1,262,2016,July,32,14,0,3,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,6.0,179.0,0,Transient,96.98,0,1,Canceled,2019-05-04 -Resort Hotel,0,1,2016,November,42,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,G,I,1,No Deposit,245.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-05-04 -City Hotel,0,14,2017,June,27,12,0,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,129.67,0,0,Check-Out,2020-06-02 -City Hotel,1,56,2016,March,13,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.48,0,1,Canceled,2019-02-01 -City Hotel,0,2,2016,March,17,23,0,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,134.82,0,0,Check-Out,2019-01-03 -City Hotel,1,43,2016,April,17,25,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,80.61,0,0,Canceled,2019-02-01 -City Hotel,0,188,2016,July,25,21,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.52,0,2,Check-Out,2019-05-04 -City Hotel,0,100,2017,March,17,3,2,4,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,161.58,1,0,Check-Out,2020-01-04 -City Hotel,0,10,2016,December,51,2,1,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Contract,114.09,0,0,Check-Out,2019-01-03 -City Hotel,0,43,2016,April,16,24,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,125.99,0,0,Check-Out,2019-02-01 -Resort Hotel,0,4,2015,October,43,13,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,77.43,0,1,Check-Out,2018-08-03 -Resort Hotel,0,50,2015,August,32,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,112.33,0,0,Check-Out,2019-06-03 -City Hotel,0,94,2017,February,8,24,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,18.0,331.0,0,Transient,46.69,0,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2017,January,4,31,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,78.04,0,1,Check-Out,2020-03-03 -City Hotel,0,45,2017,January,9,6,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.09,0,1,Check-Out,2020-03-03 -Resort Hotel,0,11,2017,February,10,28,2,5,2,0.0,0,BB,CHE,Groups,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient-Party,62.68,0,0,Check-Out,2018-10-03 -Resort Hotel,0,5,2016,June,27,2,0,5,1,0.0,0,BB,BEL,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,217.0,0,Transient,38.0,0,0,Check-Out,2019-03-04 -City Hotel,1,307,2017,April,22,30,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,6.0,179.0,0,Transient,94.31,0,1,Canceled,2019-12-04 -Resort Hotel,0,208,2017,July,30,7,1,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,1,0,Canceled,2020-06-02 -City Hotel,1,291,2016,March,11,10,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.84,0,0,Canceled,2018-11-02 -Resort Hotel,0,91,2017,March,35,13,1,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,75.69,0,2,Check-Out,2020-04-02 -City Hotel,1,278,2015,October,44,29,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,136.56,0,0,Canceled,2018-08-03 -City Hotel,0,11,2017,July,31,25,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,220.54,0,1,Check-Out,2020-04-02 -City Hotel,1,102,2016,January,4,16,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.1,0,2,Canceled,2019-10-04 -City Hotel,0,22,2016,May,35,28,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.61,0,1,Check-Out,2019-03-04 -City Hotel,1,111,2016,June,27,17,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.98,0,0,Canceled,2019-03-04 -Resort Hotel,0,53,2015,December,51,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,C,0,No Deposit,237.0,179.0,0,Group,59.9,0,1,Check-Out,2018-11-02 -Resort Hotel,0,13,2017,August,36,24,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,44.0,179.0,0,Contract,61.24,0,0,Check-Out,2020-03-03 -City Hotel,0,253,2016,June,43,21,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,131.14,0,1,Check-Out,2019-04-03 -City Hotel,1,155,2017,June,27,21,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,136.81,0,1,Canceled,2020-05-03 -City Hotel,0,0,2017,February,10,19,1,1,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,66.11,0,1,Check-Out,2019-12-04 -City Hotel,0,1,2015,October,45,13,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,45.37,0,0,Check-Out,2018-08-03 -Resort Hotel,0,41,2016,April,18,9,2,2,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,42.57,0,1,Check-Out,2019-03-04 -City Hotel,1,0,2016,December,48,13,2,0,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,250.0,0,Transient,4.43,0,0,Canceled,2019-09-03 -City Hotel,0,235,2016,May,22,31,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.56,0,1,Check-Out,2019-06-03 -Resort Hotel,1,195,2017,August,18,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,10.0,179.0,0,Contract,210.41,1,2,Check-Out,2020-05-03 -City Hotel,1,210,2017,April,17,27,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.22,0,0,Canceled,2020-01-04 -City Hotel,1,110,2016,March,16,17,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,39,Transient-Party,88.36,0,0,Canceled,2018-12-03 -Resort Hotel,1,275,2015,August,34,8,2,6,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,44.88,0,0,Canceled,2018-06-02 -Resort Hotel,0,113,2016,September,33,14,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,1,No Deposit,190.0,179.0,0,Transient-Party,65.61,0,0,Check-Out,2019-06-03 -Resort Hotel,0,102,2017,June,24,30,0,4,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,138.22,1,1,Check-Out,2020-06-02 -City Hotel,1,5,2015,July,33,19,2,5,1,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,54.39,0,0,Canceled,2018-07-03 -City Hotel,1,396,2015,September,39,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.16,0,0,Canceled,2018-08-03 -Resort Hotel,0,112,2017,May,19,13,0,1,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,154.52,1,2,Check-Out,2020-02-01 -Resort Hotel,1,8,2015,December,50,29,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,1.93,0,2,Canceled,2018-12-03 -City Hotel,0,1,2016,January,43,27,1,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,69.0,0,Transient,62.19,1,0,Check-Out,2019-11-03 -City Hotel,1,36,2016,February,10,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.35,0,0,Canceled,2018-11-02 -City Hotel,0,227,2016,August,26,16,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,188.66,1,1,Check-Out,2019-02-01 -City Hotel,1,299,2016,June,29,17,2,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,76.32,0,0,Canceled,2019-05-04 -City Hotel,1,37,2015,August,34,4,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,F,E,0,No Deposit,9.0,179.0,0,Contract,156.68,0,2,Canceled,2018-06-02 -City Hotel,1,69,2016,June,28,11,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,114.72,0,0,Canceled,2018-08-03 -City Hotel,1,43,2016,March,17,11,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,149.39,0,0,Canceled,2019-02-01 -Resort Hotel,0,15,2016,March,18,15,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,59.88,1,0,Check-Out,2019-03-04 -Resort Hotel,1,97,2015,December,49,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,69.04,1,0,Canceled,2018-12-03 -City Hotel,0,17,2016,February,11,27,0,1,2,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,94.8,0,0,Check-Out,2019-02-01 -Resort Hotel,0,10,2017,February,10,6,2,1,1,0.0,0,BB,CHE,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,63.24,0,3,Check-Out,2020-03-03 -Resort Hotel,0,59,2016,April,18,25,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,61.34,0,1,Check-Out,2019-03-04 -City Hotel,0,42,2017,June,26,8,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,69.96,0,1,Check-Out,2020-03-03 -Resort Hotel,0,160,2017,March,44,10,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,116.84,1,1,Check-Out,2019-12-04 -Resort Hotel,0,97,2016,May,23,31,0,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,Refundable,14.0,223.0,0,Transient-Party,59.95,0,0,Check-Out,2019-06-03 -City Hotel,1,152,2017,March,18,30,2,1,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient-Party,125.95,0,0,Canceled,2020-03-03 -City Hotel,0,5,2017,June,20,15,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.98,0,1,Check-Out,2020-03-03 -Resort Hotel,0,36,2016,March,13,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,224.0,0,Transient-Party,34.42,0,0,Check-Out,2019-04-03 -City Hotel,1,0,2017,April,22,19,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,107.03,0,1,Canceled,2019-03-04 -Resort Hotel,0,36,2016,March,11,21,2,5,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,239.0,179.0,0,Transient,85.0,0,3,Check-Out,2019-03-04 -City Hotel,0,0,2016,December,44,5,1,1,1,0.0,0,BB,,Corporate,Corporate,0,1,0,A,D,2,No Deposit,17.0,229.0,0,Transient,32.2,0,0,Check-Out,2019-07-04 -Resort Hotel,0,11,2016,October,43,7,2,1,1,0.0,0,BB,USA,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Group,91.29,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,January,8,21,2,5,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,98.49,0,1,Check-Out,2020-03-03 -City Hotel,0,145,2016,June,27,4,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,121.62,0,0,Check-Out,2019-03-04 -City Hotel,1,156,2015,June,38,2,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,77.54,0,0,Canceled,2018-05-03 -Resort Hotel,0,5,2016,November,42,9,2,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,47.86,0,1,Check-Out,2019-05-04 -City Hotel,0,3,2017,June,29,31,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient,74.35,0,1,Check-Out,2020-04-02 -Resort Hotel,1,47,2017,May,22,10,2,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,252.0,0,2,Canceled,2019-09-03 -Resort Hotel,0,0,2016,March,11,9,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,60.97,0,1,Check-Out,2019-01-03 -City Hotel,0,72,2015,August,35,22,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,193.33,0,1,Check-Out,2018-06-02 -City Hotel,0,17,2015,August,36,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,205.33,0,0,Check-Out,2018-08-03 -Resort Hotel,0,53,2016,July,32,10,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,127.02,0,2,Check-Out,2019-06-03 -Resort Hotel,1,322,2017,April,17,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,74.02,0,0,Canceled,2019-10-04 -City Hotel,0,13,2016,February,40,4,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.97,0,2,Check-Out,2019-03-04 -Resort Hotel,0,24,2016,May,23,12,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,152.76,0,0,Check-Out,2019-03-04 -Resort Hotel,0,101,2017,August,36,10,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,225.44,1,2,Check-Out,2020-06-02 -City Hotel,0,106,2017,February,11,28,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,84.78,0,1,Check-Out,2019-11-03 -City Hotel,0,251,2015,September,37,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.87,0,0,Check-Out,2018-08-03 -Resort Hotel,0,262,2015,August,35,20,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,174.0,179.0,0,Transient,139.2,0,0,Check-Out,2018-06-02 -Resort Hotel,0,15,2017,June,27,30,0,4,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,159.26,1,0,Check-Out,2020-05-03 -City Hotel,0,37,2015,October,44,28,2,2,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,79.0,0,Transient-Party,73.75,0,1,Check-Out,2018-09-02 -City Hotel,0,0,2016,July,26,10,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.73,0,1,Check-Out,2020-03-03 -Resort Hotel,0,17,2017,June,19,6,0,4,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,242.0,179.0,0,Group,131.12,0,1,Check-Out,2020-06-02 -City Hotel,0,10,2016,August,37,21,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,186.63,0,0,Check-Out,2019-05-04 -Resort Hotel,0,100,2017,May,17,30,2,4,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.06,1,1,Check-Out,2020-02-01 -City Hotel,0,2,2016,January,3,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,73.0,0,Transient,45.28,1,0,Check-Out,2019-08-04 -Resort Hotel,0,17,2016,January,7,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,81.0,179.0,0,Transient,44.02,1,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2017,April,16,10,2,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,239.0,179.0,0,Transient,42.69,0,3,Check-Out,2020-02-01 -City Hotel,0,83,2017,June,28,17,4,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,101.0,179.0,0,Transient,173.44,0,0,Check-Out,2020-04-02 -City Hotel,0,109,2016,June,15,6,0,1,3,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,74.0,179.0,0,Transient,125.09,0,0,Check-Out,2019-05-04 -Resort Hotel,0,14,2017,January,9,13,2,0,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,63.97,0,2,Check-Out,2019-11-03 -Resort Hotel,0,34,2017,April,18,9,1,0,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,35.58,0,0,Check-Out,2020-02-01 -City Hotel,1,8,2017,May,36,31,1,1,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,177.79,0,1,Canceled,2020-04-02 -City Hotel,0,89,2017,May,38,28,0,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,100.18,0,1,Check-Out,2020-05-03 -Resort Hotel,1,324,2016,June,31,28,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,204.09,0,0,Canceled,2018-12-03 -Resort Hotel,1,80,2015,December,36,19,2,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,13.0,210.0,0,Transient,35.28,0,2,Canceled,2018-06-02 -City Hotel,0,393,2016,June,24,16,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,76.0,179.0,0,Transient-Party,129.23,0,0,Check-Out,2019-05-04 -City Hotel,0,6,2016,June,25,20,2,0,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,1,No Deposit,15.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -City Hotel,1,32,2015,December,51,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,40,Transient-Party,69.97,0,0,Canceled,2019-01-03 -City Hotel,0,48,2016,May,20,9,0,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.85,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2015,August,36,4,0,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,91.11,0,0,Check-Out,2018-05-03 -City Hotel,1,158,2016,March,21,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,63.72,0,0,Canceled,2019-02-01 -City Hotel,0,18,2017,January,10,29,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,62.14,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2015,September,43,29,0,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.91,0,0,Check-Out,2018-08-03 -City Hotel,0,23,2015,October,44,9,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,117.68,0,0,Check-Out,2018-08-03 -City Hotel,1,69,2016,April,17,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,43.1,0,0,Canceled,2019-02-01 -City Hotel,1,413,2017,July,35,19,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,165.0,179.0,0,Transient,224.04,0,0,Canceled,2018-09-02 -City Hotel,0,37,2017,April,15,11,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,93.19,0,1,Check-Out,2020-03-03 -City Hotel,0,182,2016,October,44,10,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.38,0,2,Check-Out,2019-07-04 -City Hotel,0,11,2017,June,22,16,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,64.52,0,0,Check-Out,2020-07-03 -City Hotel,1,381,2016,March,15,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,35.0,179.0,43,Transient,70.79,0,0,Canceled,2018-12-03 -Resort Hotel,1,160,2016,May,23,30,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,1,Refundable,14.0,222.0,0,Transient,59.29,0,0,Canceled,2019-05-04 -Resort Hotel,0,104,2015,July,30,6,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,102.84,0,0,Check-Out,2018-06-02 -City Hotel,1,3,2015,August,38,2,0,2,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,97.54,0,0,Canceled,2018-06-02 -City Hotel,1,155,2016,December,53,23,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,97.49,0,0,Check-Out,2019-09-03 -City Hotel,1,95,2016,March,15,9,2,5,2,0.0,0,FB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,86.18,0,0,Canceled,2018-10-03 -Resort Hotel,0,0,2016,July,26,22,0,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,237.64,1,2,Check-Out,2019-03-04 -City Hotel,0,240,2017,July,30,24,1,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,170.95,0,1,Check-Out,2020-05-03 -City Hotel,0,162,2015,September,33,5,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,69.35,0,0,Check-Out,2018-05-03 -City Hotel,1,192,2016,September,43,10,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,104.34,0,0,Canceled,2019-07-04 -City Hotel,1,214,2016,October,42,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,17,Transient,101.38,0,0,Canceled,2018-08-03 -Resort Hotel,0,3,2015,December,53,20,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,G,D,0,No Deposit,244.0,179.0,0,Transient,46.56,1,2,Check-Out,2018-05-03 -City Hotel,1,157,2016,April,17,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,75,Transient,88.13,0,0,Canceled,2018-10-03 -City Hotel,0,2,2016,November,45,2,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,266.0,0,Transient,0.48,0,0,Check-Out,2019-09-03 -City Hotel,0,104,2017,August,24,10,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,222.02,0,3,Check-Out,2020-05-03 -City Hotel,0,87,2017,August,34,10,1,4,3,0.0,0,BB,USA,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,163.72,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,September,35,2,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,248.0,179.0,0,Transient,37.83,0,2,Check-Out,2018-05-03 -Resort Hotel,0,0,2015,January,9,27,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,26.24,0,0,Check-Out,2018-10-03 -Resort Hotel,0,148,2016,October,41,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,179.0,0,Transient,39.31,0,0,Check-Out,2019-08-04 -Resort Hotel,0,10,2015,November,43,11,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,70.0,0,Transient-Party,66.96,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2016,March,26,2,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,70.41,0,1,Check-Out,2019-03-04 -City Hotel,0,11,2015,November,42,28,2,2,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,D,F,1,No Deposit,15.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-09-02 -City Hotel,0,412,2015,December,46,28,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,60.49,0,0,Check-Out,2018-08-03 -Resort Hotel,0,34,2015,December,51,31,2,5,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,42.39,0,0,Check-Out,2018-08-03 -City Hotel,0,5,2016,January,3,10,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,B,F,0,No Deposit,14.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-09-02 -City Hotel,0,53,2016,December,12,12,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,67.49,0,0,Check-Out,2019-04-03 -Resort Hotel,0,157,2016,September,42,7,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,37.53,0,0,Check-Out,2019-08-04 -City Hotel,1,16,2017,May,25,29,2,2,2,2.0,0,SC,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,152.32,0,3,Canceled,2020-04-02 -City Hotel,0,9,2016,November,49,9,1,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,93.33,0,0,Check-Out,2019-04-03 -Resort Hotel,0,48,2016,December,53,6,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,243.0,179.0,0,Transient-Party,33.9,0,3,Check-Out,2019-11-03 -City Hotel,1,0,2016,December,48,12,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,297.0,0,Transient,1.34,0,0,Canceled,2019-12-04 -City Hotel,0,94,2017,March,10,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,159.0,179.0,0,Transient,95.64,0,0,Check-Out,2020-03-03 -City Hotel,0,13,2016,April,38,13,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,163.0,0,Transient,112.66,0,0,Check-Out,2019-07-04 -Resort Hotel,0,252,2016,October,41,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,85.35,0,1,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,May,23,26,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,241.0,179.0,0,Transient,88.98,1,0,Check-Out,2019-03-04 -Resort Hotel,0,37,2016,November,42,20,0,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,72.6,0,0,Check-Out,2019-07-04 -Resort Hotel,1,188,2015,July,33,24,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,193.22,0,0,Canceled,2020-06-02 -Resort Hotel,0,46,2016,October,44,24,4,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,51.62,0,0,Check-Out,2019-08-04 -Resort Hotel,0,45,2015,September,35,26,0,2,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,241.0,179.0,0,Transient,180.92,0,1,Check-Out,2018-08-03 -Resort Hotel,0,1,2015,January,5,2,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,150.0,179.0,0,Transient-Party,62.56,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2016,January,2,22,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,82.0,0,Transient,79.08,0,2,Check-Out,2018-11-02 -Resort Hotel,0,193,2017,May,18,16,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,24.6,0,0,Check-Out,2020-03-03 -City Hotel,0,5,2015,January,39,21,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,3.0,179.0,0,Contract,59.39,0,0,Check-Out,2017-11-02 -City Hotel,1,120,2016,April,15,30,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,241.0,179.0,0,Transient,72.32,0,2,Canceled,2019-02-01 -City Hotel,0,0,2017,March,18,21,0,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,80.0,179.0,0,Transient-Party,64.15,0,0,Check-Out,2019-12-04 -City Hotel,1,316,2016,October,45,21,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,194.38,0,0,Canceled,2019-08-04 -City Hotel,1,159,2016,December,50,27,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,66.62,0,0,Canceled,2019-11-03 -Resort Hotel,0,11,2017,February,11,10,0,2,2,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,24.41,0,0,Check-Out,2020-04-02 -Resort Hotel,0,4,2016,July,34,12,0,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,95.13,1,0,Check-Out,2019-06-03 -City Hotel,1,67,2017,April,10,25,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,F,0,Non Refund,33.0,179.0,0,Transient,129.61,0,0,Canceled,2019-10-04 -City Hotel,0,2,2015,November,41,27,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,85.0,179.0,18,Transient-Party,80.09,0,0,Check-Out,2018-12-03 -City Hotel,1,251,2016,October,44,2,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,65,Transient,70.97,0,0,Canceled,2018-08-03 -City Hotel,1,0,2016,January,3,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,61.75,0,0,Canceled,2018-10-03 -City Hotel,0,62,2016,November,49,3,0,1,1,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,3,No Deposit,101.0,179.0,0,Transient-Party,110.46,0,0,Check-Out,2019-09-03 -Resort Hotel,0,28,2015,December,53,21,2,3,2,0.0,0,FB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,59.85,0,0,Check-Out,2019-01-03 -City Hotel,0,110,2016,October,45,27,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.37,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2017,May,23,20,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,237.08,0,1,Check-Out,2020-06-02 -Resort Hotel,0,161,2017,July,31,20,0,7,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,76.8,0,0,Check-Out,2020-07-03 -City Hotel,0,1,2016,June,27,19,2,3,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,159.84,0,1,Check-Out,2019-06-03 -City Hotel,0,37,2017,August,18,28,1,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,151.38,0,3,Check-Out,2020-06-02 -City Hotel,0,150,2016,November,32,21,0,2,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.79,0,3,Canceled,2019-11-03 -Resort Hotel,1,23,2016,December,50,8,0,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,38.74,0,0,Canceled,2019-06-03 -City Hotel,0,15,2016,September,46,6,0,1,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,226.62,0,0,Check-Out,2019-07-04 -City Hotel,0,35,2016,April,22,17,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,123.35,0,2,Check-Out,2019-09-03 -City Hotel,1,163,2016,January,3,28,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,70.05,0,0,Canceled,2018-10-03 -City Hotel,1,21,2017,April,9,21,2,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,98.64,0,0,Canceled,2020-03-03 -City Hotel,0,2,2015,August,37,23,0,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,202.43,1,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2017,April,21,18,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,19.0,179.0,0,Transient,246.81,1,0,Check-Out,2020-06-02 -City Hotel,0,0,2017,March,7,12,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,8.0,76.0,0,Transient,59.0,0,0,Check-Out,2020-01-04 -Resort Hotel,0,14,2017,February,10,16,2,0,2,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,202.0,331.0,0,Transient-Party,69.62,0,0,Check-Out,2020-02-01 -City Hotel,0,4,2016,November,49,8,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient,69.79,0,2,No-Show,2019-10-04 -City Hotel,0,30,2015,December,50,25,2,0,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,77.67,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2015,August,34,6,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,61.7,1,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,July,36,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,211.05,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2015,October,42,16,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,F,2,No Deposit,15.0,45.0,0,Transient,0.0,1,2,Check-Out,2019-07-04 -City Hotel,1,162,2017,May,22,5,2,7,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,73.56,0,0,Canceled,2020-01-04 -Resort Hotel,1,24,2017,August,37,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,181.22,0,0,Canceled,2020-07-03 -City Hotel,1,379,2017,May,23,28,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,168.12,0,0,Canceled,2019-12-04 -City Hotel,0,91,2017,April,36,27,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,129.1,0,3,Check-Out,2020-06-02 -City Hotel,1,419,2016,May,22,13,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.41,0,0,Canceled,2017-12-03 -City Hotel,0,37,2016,August,35,17,1,5,1,0.0,0,HB,ITA,Direct,Direct,0,0,0,E,B,0,No Deposit,15.0,179.0,0,Transient,93.44,0,0,Check-Out,2019-02-01 -City Hotel,0,43,2017,July,31,30,2,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,100.14,0,2,Check-Out,2020-07-03 -Resort Hotel,0,34,2016,December,53,28,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,128.4,1,1,Check-Out,2019-09-03 -Resort Hotel,0,52,2016,February,48,6,0,4,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,70.27,0,0,Check-Out,2019-03-04 -City Hotel,0,55,2016,November,22,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,112.4,0,1,Check-Out,2018-12-03 -City Hotel,1,82,2016,March,8,14,0,2,2,0.0,0,Undefined,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,93.38,0,1,Canceled,2018-11-02 -Resort Hotel,0,2,2017,January,9,2,1,0,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,251.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,3,2017,April,19,31,1,0,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,99.27,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,July,28,2,2,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,131.6,0,0,Check-Out,2019-06-03 -Resort Hotel,1,381,2015,July,33,28,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,G,C,0,Non Refund,236.0,179.0,0,Transient,61.62,0,0,Canceled,2018-01-03 -Resort Hotel,0,148,2017,March,12,31,0,3,2,0.0,0,BB,PRT,Groups,Corporate,1,0,1,A,D,1,No Deposit,30.0,222.0,0,Transient-Party,70.02,0,0,Check-Out,2020-05-03 -Resort Hotel,1,175,2017,April,19,31,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,205.12,0,3,Canceled,2020-01-04 -Resort Hotel,0,43,2017,June,24,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,64.33,0,0,Check-Out,2020-06-02 -Resort Hotel,1,156,2017,July,27,26,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,92.11,0,1,Canceled,2019-05-04 -Resort Hotel,0,104,2015,December,51,25,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,49.43,0,0,Check-Out,2018-12-03 -Resort Hotel,1,176,2017,August,36,2,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,186.29,1,1,Canceled,2020-06-02 -Resort Hotel,0,15,2017,August,27,2,1,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,186.98,1,1,Check-Out,2020-05-03 -City Hotel,0,380,2016,December,51,20,2,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,59.41,0,0,Check-Out,2019-10-04 -Resort Hotel,0,19,2015,November,41,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,30.74,0,2,Check-Out,2018-09-02 -City Hotel,1,239,2015,July,32,6,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.01,0,2,Canceled,2017-09-02 -City Hotel,0,248,2017,June,30,4,1,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-06-02 -City Hotel,0,19,2016,March,16,16,0,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,240.0,179.0,0,Transient,104.26,0,2,Check-Out,2019-01-03 -City Hotel,0,14,2017,June,28,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,E,0,No Deposit,12.0,205.0,0,Transient-Party,85.43,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2015,December,49,21,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,61.84,0,0,Canceled,2018-06-02 -Resort Hotel,0,169,2017,August,35,14,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,165.89,1,1,Check-Out,2020-06-02 -Resort Hotel,0,159,2017,June,16,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,134.42,1,2,Check-Out,2020-03-03 -City Hotel,1,388,2015,July,27,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.87,0,0,Canceled,2017-11-02 -Resort Hotel,0,0,2017,May,21,5,1,0,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,87.92,0,0,Check-Out,2020-01-04 -City Hotel,0,1,2016,September,35,5,2,5,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,111.04,0,0,Check-Out,2019-06-03 -Resort Hotel,0,316,2016,September,36,5,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,30.0,179.0,0,Transient,74.58,0,0,Check-Out,2019-07-04 -City Hotel,1,104,2016,April,16,19,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.91,0,0,Canceled,2019-01-03 -City Hotel,1,427,2017,April,18,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,118.89,0,0,Canceled,2019-12-04 -City Hotel,0,50,2016,March,10,6,0,1,2,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,88.0,179.0,0,Transient-Party,101.49,1,1,Check-Out,2018-11-02 -Resort Hotel,0,157,2016,August,21,30,2,3,2,0.0,0,BB,,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,223.0,0,Transient-Party,70.75,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2015,October,47,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,40.4,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,May,20,10,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,235.0,179.0,0,Transient,64.25,0,0,Check-Out,2019-03-04 -City Hotel,0,106,2017,August,43,10,0,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,204.21,0,3,Check-Out,2019-11-03 -City Hotel,1,112,2017,May,33,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,87.03,0,0,Canceled,2019-05-04 -Resort Hotel,0,29,2016,July,12,7,0,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,72.5,1,0,Check-Out,2018-12-03 -Resort Hotel,0,3,2015,September,35,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,249.0,179.0,0,Transient,202.12,1,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,15.0,236.0,0,Group,33.63,0,0,Check-Out,2020-03-03 -Resort Hotel,0,118,2017,June,26,24,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,65.78,0,0,Check-Out,2020-05-03 -City Hotel,0,98,2017,May,23,24,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Contract,77.02,0,1,Check-Out,2020-04-02 -Resort Hotel,1,50,2017,December,27,24,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.44,0,1,Canceled,2019-12-04 -Resort Hotel,0,148,2015,July,29,21,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,10.0,179.0,0,Transient-Party,104.06,0,0,Check-Out,2018-05-03 -Resort Hotel,0,9,2016,January,4,18,4,5,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,279.0,179.0,0,Transient,44.75,0,0,Check-Out,2019-07-04 -City Hotel,1,158,2016,December,53,18,0,2,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,116.95,0,1,Canceled,2019-12-04 -Resort Hotel,1,115,2017,April,14,27,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Canceled,2020-01-04 -City Hotel,1,256,2017,July,36,3,2,4,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,180.99,0,0,Canceled,2020-06-02 -City Hotel,1,302,2017,June,26,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,123.68,0,0,Canceled,2019-11-03 -Resort Hotel,1,208,2015,December,50,15,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.43,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,May,18,13,1,4,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,215.0,0,Transient-Party,74.56,1,0,Check-Out,2019-11-03 -Resort Hotel,0,51,2016,July,45,24,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-12-04 -Resort Hotel,0,2,2015,January,49,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,86.0,179.0,0,Transient,62.37,0,0,Check-Out,2018-06-02 -Resort Hotel,1,80,2015,December,53,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,31.54,0,0,Canceled,2018-11-02 -City Hotel,0,37,2015,July,33,29,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,145.6,0,0,Check-Out,2018-06-02 -Resort Hotel,0,3,2015,December,52,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,253.0,179.0,0,Transient,59.34,1,0,Check-Out,2018-10-03 -City Hotel,0,16,2017,July,31,12,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.67,0,3,Check-Out,2020-03-03 -City Hotel,0,179,2016,July,30,16,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.41,0,1,Check-Out,2020-06-02 -City Hotel,0,17,2017,March,9,29,2,0,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.24,0,1,Check-Out,2020-03-03 -City Hotel,0,14,2017,July,33,17,0,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.21,0,1,Check-Out,2020-06-02 -City Hotel,1,36,2015,September,42,16,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,153.71,0,0,Canceled,2018-11-02 -City Hotel,1,2,2016,February,10,12,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,69.41,0,0,No-Show,2019-02-01 -City Hotel,1,87,2016,September,51,2,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,116.66,1,0,Canceled,2019-11-03 -City Hotel,1,41,2015,November,53,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.25,0,2,Canceled,2018-08-03 -Resort Hotel,0,54,2017,August,33,10,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,January,51,10,1,0,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,180.0,0,Transient,40.06,0,0,Check-Out,2019-01-03 -City Hotel,1,10,2016,November,49,28,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,121.69,0,0,Canceled,2019-05-04 -City Hotel,1,97,2016,July,18,28,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,152.27,0,2,Canceled,2019-02-01 -Resort Hotel,0,148,2016,March,18,31,1,3,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,222.0,75,Transient-Party,38.57,0,0,Check-Out,2019-03-04 -Resort Hotel,1,168,2017,May,24,25,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,249.0,179.0,0,Transient,34.79,0,1,No-Show,2019-10-04 -City Hotel,1,409,2016,September,37,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,63,Transient,150.45,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,January,3,19,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,185.68,0,2,Check-Out,2019-06-03 -Resort Hotel,1,9,2017,April,18,23,1,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,39.89,0,0,Canceled,2019-02-01 -City Hotel,0,16,2016,October,53,15,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,96.43,0,3,Check-Out,2018-12-03 -Resort Hotel,0,1,2015,October,50,15,1,0,1,0.0,0,BB,,Groups,Corporate,0,0,0,A,C,2,No Deposit,243.0,331.0,0,Transient,39.68,0,0,Check-Out,2018-09-02 -Resort Hotel,0,31,2016,January,4,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,H,2,No Deposit,240.0,179.0,0,Transient,73.69,0,2,Check-Out,2019-10-04 -Resort Hotel,0,36,2016,July,34,24,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,215.23,0,0,Check-Out,2019-07-04 -Resort Hotel,0,153,2016,October,42,14,1,0,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,64.06,0,0,Check-Out,2019-06-03 -City Hotel,1,98,2017,May,22,27,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,155.52,0,0,Canceled,2020-04-02 -City Hotel,0,8,2017,March,12,28,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,60.45,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,May,23,23,0,1,1,0.0,0,HB,GBR,Aviation,Corporate,0,0,0,E,E,0,No Deposit,13.0,192.0,0,Transient,117.17,0,0,Check-Out,2020-03-03 -City Hotel,1,90,2017,February,13,13,0,1,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,77.49,0,0,No-Show,2019-11-03 -Resort Hotel,0,22,2015,January,11,29,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,15.0,72.0,0,Transient,54.76,0,0,Check-Out,2018-12-03 -City Hotel,0,137,2016,September,41,15,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,61.0,179.0,0,Transient,118.73,0,1,Check-Out,2019-08-04 -City Hotel,1,369,2017,May,27,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,67.53,0,0,Canceled,2019-11-03 -City Hotel,0,14,2015,September,43,17,1,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,125.02,0,0,Check-Out,2018-06-02 -Resort Hotel,0,18,2015,December,53,31,3,5,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,39.99,0,0,Check-Out,2018-12-03 -City Hotel,1,87,2015,October,45,25,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,33.31,0,0,Canceled,2018-09-02 -City Hotel,1,163,2017,July,37,30,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.62,0,0,Canceled,2019-11-03 -City Hotel,1,67,2016,February,38,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.95,0,0,Canceled,2017-11-02 -City Hotel,0,8,2016,April,18,31,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,115.78,0,2,Check-Out,2019-03-04 -City Hotel,0,39,2015,October,45,4,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.14,0,0,Check-Out,2018-08-03 -City Hotel,1,97,2016,July,25,13,0,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,84.81,0,1,Canceled,2019-02-01 -Resort Hotel,0,54,2015,December,51,6,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,191.0,179.0,0,Transient,30.25,0,0,Check-Out,2019-09-03 -City Hotel,0,37,2017,January,30,2,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.02,0,1,Check-Out,2020-06-02 -Resort Hotel,0,163,2017,July,32,7,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,263.0,179.0,0,Transient,154.36,0,0,Check-Out,2020-02-01 -Resort Hotel,0,1,2017,February,8,6,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,222.0,0,Transient,63.46,0,0,Check-Out,2019-12-04 -City Hotel,0,96,2016,April,14,22,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.85,0,0,Check-Out,2019-03-04 -Resort Hotel,0,57,2016,June,21,27,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-02-01 -City Hotel,1,388,2015,September,45,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.21,0,0,Canceled,2018-09-02 -City Hotel,0,2,2015,August,35,2,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,110.41,0,0,Check-Out,2018-06-02 -City Hotel,0,28,2016,June,18,30,0,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,123.66,0,3,Check-Out,2019-07-04 -City Hotel,1,110,2016,April,16,5,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,145.15,0,1,Canceled,2019-03-04 -City Hotel,0,1,2016,December,50,30,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,274.0,0,Transient,5.63,0,3,Check-Out,2019-09-03 -City Hotel,0,81,2016,July,25,4,2,2,1,0.0,0,HB,,Direct,Direct,1,0,0,A,K,1,No Deposit,14.0,179.0,0,Transient,1.92,0,3,Check-Out,2019-10-04 -City Hotel,1,123,2016,July,32,20,2,6,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,149.0,179.0,0,Transient,117.86,0,0,Canceled,2018-12-03 -Resort Hotel,0,55,2017,August,36,31,2,5,2,1.0,0,BB,AUT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,218.59,0,3,Check-Out,2020-06-02 -City Hotel,1,1,2015,October,41,28,1,4,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,106.55,0,0,Canceled,2018-08-03 -Resort Hotel,0,26,2017,February,10,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,Refundable,95.0,179.0,0,Transient,34.3,0,2,Check-Out,2019-10-04 -City Hotel,0,10,2016,August,36,6,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,146.15,0,1,Check-Out,2019-06-03 -City Hotel,0,153,2016,February,9,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,112.81,0,0,Canceled,2018-10-03 -City Hotel,0,38,2016,December,53,27,0,2,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,96.91,0,2,Check-Out,2019-12-04 -Resort Hotel,0,30,2016,February,12,16,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,2,No Deposit,80.0,179.0,75,Transient-Party,65.5,0,0,Check-Out,2019-02-01 -Resort Hotel,0,154,2017,June,2,16,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,163.46,0,1,Check-Out,2020-03-03 -Resort Hotel,0,18,2016,March,15,18,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,325.0,179.0,0,Transient,79.89,0,0,Check-Out,2019-03-04 -City Hotel,0,257,2015,September,39,9,2,0,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,43.74,0,0,Check-Out,2018-08-03 -City Hotel,1,314,2015,September,35,13,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,A,0,Non Refund,15.0,179.0,0,Contract,60.79,0,0,Canceled,2017-12-03 -Resort Hotel,0,1,2015,September,37,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,116.48,1,2,Check-Out,2018-06-02 -Resort Hotel,1,156,2016,March,11,31,1,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,100.0,179.0,0,Transient,90.72,0,0,Canceled,2019-01-03 -City Hotel,0,100,2016,April,15,28,0,4,2,0.0,0,HB,PRT,Complementary,Direct,1,0,0,D,F,1,No Deposit,16.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-02-01 -City Hotel,0,67,2017,March,18,31,1,3,3,0.0,0,HB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,223.0,0,Transient,62.84,0,0,Check-Out,2020-03-03 -Resort Hotel,0,56,2016,August,37,27,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-06-03 -City Hotel,0,108,2017,March,9,23,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,1.0,331.0,0,Transient-Party,77.13,0,1,Check-Out,2020-02-01 -City Hotel,0,40,2016,October,43,9,0,4,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,126.32,0,0,Check-Out,2019-08-04 -City Hotel,1,11,2016,August,37,13,1,4,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,145.43,0,1,Canceled,2019-11-03 -Resort Hotel,1,11,2017,January,2,28,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,253.0,0,Transient,69.22,0,0,Canceled,2019-12-04 -Resort Hotel,0,109,2017,April,17,24,0,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,74.83,0,0,Check-Out,2019-03-04 -Resort Hotel,0,49,2017,June,26,23,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,67.0,179.0,0,Transient,102.2,0,3,Check-Out,2020-03-03 -City Hotel,0,250,2017,August,40,25,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,191.02,0,1,Check-Out,2020-06-02 -Resort Hotel,0,361,2017,August,36,10,0,1,1,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient-Party,64.75,0,0,Check-Out,2020-07-03 -Resort Hotel,0,83,2015,August,46,29,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,241.0,179.0,0,Transient,129.99,1,2,Check-Out,2018-08-03 -Resort Hotel,0,25,2015,July,35,6,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,252.0,179.0,0,Transient,202.04,1,1,Check-Out,2018-06-02 -City Hotel,0,31,2016,January,53,28,1,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,71.64,0,1,Check-Out,2019-02-01 -Resort Hotel,0,2,2015,December,50,10,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,36.28,0,1,Check-Out,2018-12-03 -City Hotel,0,72,2017,June,30,23,0,1,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient,1.4,0,0,Check-Out,2019-05-04 -City Hotel,0,29,2015,July,38,2,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,L,C,0,No Deposit,14.0,179.0,0,Transient-Party,108.15,0,0,Check-Out,2018-06-02 -Resort Hotel,0,168,2017,July,27,2,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,236.01,1,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2017,June,22,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,136.95,1,0,Check-Out,2020-03-03 -Resort Hotel,1,1,2017,April,10,16,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,35.0,179.0,0,Transient,61.14,0,0,Canceled,2020-03-03 -City Hotel,0,205,2016,October,35,9,2,2,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,130.28,0,3,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,March,16,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,H,I,1,No Deposit,17.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-02-01 -City Hotel,0,2,2016,March,46,29,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.85,0,0,Check-Out,2019-06-03 -City Hotel,1,87,2017,February,9,25,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,72.99,0,0,Canceled,2019-09-03 -City Hotel,0,14,2017,March,16,14,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,9.0,179.0,0,Transient-Party,106.82,0,2,Check-Out,2020-01-04 -City Hotel,0,0,2016,December,51,8,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,2.95,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2015,October,46,17,0,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,263.0,0,Transient-Party,80.59,0,0,Check-Out,2018-08-03 -City Hotel,0,30,2017,March,17,25,2,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,F,1,No Deposit,77.0,179.0,0,Transient,73.58,0,0,Check-Out,2020-02-01 -City Hotel,0,50,2017,July,34,9,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.78,0,2,Canceled,2020-06-02 -Resort Hotel,0,15,2015,October,42,13,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,37.0,179.0,0,Contract,44.83,0,0,Check-Out,2017-11-02 -City Hotel,1,336,2015,September,37,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.45,0,0,Canceled,2018-08-03 -City Hotel,0,19,2016,February,10,5,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,105.39,0,2,Check-Out,2018-11-02 -City Hotel,0,160,2016,April,16,5,0,2,2,0.0,0,SC,FRA,Groups,TA/TO,0,0,0,B,D,0,No Deposit,12.0,179.0,0,Transient,97.85,0,0,Check-Out,2019-02-01 -City Hotel,1,360,2017,May,21,22,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,163.0,179.0,0,Transient,118.96,0,0,Canceled,2020-03-03 -City Hotel,0,2,2017,February,9,9,0,1,2,2.0,0,SC,AUT,Direct,Direct,0,0,0,G,F,0,No Deposit,12.0,179.0,0,Transient,3.02,0,0,Check-Out,2020-02-01 -Resort Hotel,1,309,2017,July,32,6,2,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,239.0,179.0,0,Transient,149.58,0,1,Canceled,2020-02-01 -City Hotel,0,105,2016,May,42,30,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,94.37,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,January,10,21,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,74.11,1,2,Check-Out,2018-12-03 -City Hotel,0,45,2015,December,51,13,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.89,0,1,Check-Out,2018-08-03 -City Hotel,1,257,2016,October,44,28,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,76.24,0,0,Canceled,2018-09-02 -City Hotel,0,13,2016,October,44,2,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.17,0,0,Check-Out,2019-09-03 -Resort Hotel,0,48,2015,November,36,22,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,280.0,179.0,0,Contract,61.31,0,0,Check-Out,2018-05-03 -Resort Hotel,1,27,2017,August,36,23,2,7,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,78.88,0,1,Canceled,2019-11-03 -Resort Hotel,0,0,2017,July,37,28,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient-Party,127.27,1,0,Check-Out,2020-06-02 -Resort Hotel,0,155,2016,March,17,31,1,2,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,I,2,Refundable,12.0,222.0,75,Transient-Party,99.6,0,0,Check-Out,2019-05-04 -Resort Hotel,0,24,2016,March,18,29,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,70.14,0,0,Check-Out,2019-02-01 -City Hotel,0,154,2016,January,4,21,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,187.5,0,0,Check-Out,2019-03-04 -Resort Hotel,1,1,2017,January,2,27,1,0,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,69.0,0,Transient,45.19,0,0,Canceled,2019-10-04 -City Hotel,0,17,2015,September,38,9,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.11,0,3,Check-Out,2018-08-03 -City Hotel,0,130,2017,July,32,20,0,1,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient-Party,117.55,0,1,Check-Out,2020-06-02 -City Hotel,1,280,2015,August,33,28,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.9,0,0,Canceled,2018-06-02 -City Hotel,1,29,2016,March,11,31,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,217.96,0,0,Canceled,2019-05-04 -Resort Hotel,0,28,2016,May,21,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,3.0,179.0,0,Transient-Party,61.03,0,0,Check-Out,2019-03-04 -Resort Hotel,1,0,2016,August,35,21,2,6,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,252.0,0,0,Canceled,2018-06-02 -City Hotel,0,157,2015,August,39,20,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,177.0,179.0,0,Transient-Party,117.77,0,0,Check-Out,2020-05-03 -Resort Hotel,0,144,2016,December,53,20,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,85.33,0,0,Check-Out,2018-12-03 -City Hotel,0,29,2016,February,10,10,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.15,0,0,Check-Out,2018-10-03 -City Hotel,0,28,2016,January,13,23,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.46,0,3,Check-Out,2019-01-03 -City Hotel,0,32,2016,March,17,18,1,5,1,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,145.57,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,December,51,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,17.0,45.0,0,Transient,73.98,1,0,Check-Out,2018-12-03 -City Hotel,0,13,2017,May,21,21,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,116.46,0,0,Check-Out,2020-03-03 -Resort Hotel,0,13,2017,February,10,9,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,65.64,0,0,Check-Out,2019-11-03 -City Hotel,1,90,2016,September,43,13,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,120.55,0,0,Canceled,2018-09-02 -City Hotel,1,12,2016,February,2,26,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,101.66,0,1,No-Show,2019-02-01 -Resort Hotel,0,52,2016,March,9,6,1,0,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient-Party,35.34,0,0,Check-Out,2019-03-04 -City Hotel,1,0,2015,September,37,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,62.49,0,0,Check-Out,2018-07-03 -Resort Hotel,0,181,2016,August,38,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient-Party,60.9,0,0,Check-Out,2018-11-02 -City Hotel,0,51,2016,February,10,27,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.05,0,1,Check-Out,2018-11-02 -City Hotel,0,14,2017,May,21,10,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,124.52,0,1,Check-Out,2020-02-01 -City Hotel,0,157,2017,May,27,8,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,163.0,179.0,0,Transient-Party,151.44,0,2,Check-Out,2020-04-02 -City Hotel,0,30,2017,April,20,24,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-01-04 -City Hotel,0,9,2017,September,42,22,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,146.8,0,1,Check-Out,2019-10-04 -Resort Hotel,1,33,2015,September,36,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,15.0,179.0,0,Transient,133.6,0,0,Canceled,2018-06-02 -Resort Hotel,0,2,2016,March,9,13,4,10,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,199.0,179.0,0,Transient,97.88,0,0,Check-Out,2019-12-04 -City Hotel,0,224,2016,December,51,25,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.97,0,2,Check-Out,2019-11-03 -Resort Hotel,1,149,2016,September,35,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,13.0,221.0,0,Transient,37.42,0,1,Canceled,2018-09-02 -Resort Hotel,1,109,2017,July,32,16,0,3,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,250.0,179.0,0,Transient,225.82,0,0,Canceled,2020-06-02 -City Hotel,0,1,2016,August,36,24,0,3,1,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,130.0,0,1,Check-Out,2020-06-02 -City Hotel,0,39,2016,June,27,24,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.11,0,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2017,June,37,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,215.44,1,0,Check-Out,2020-07-03 -Resort Hotel,0,39,2017,February,11,23,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,349.0,179.0,0,Transient,129.07,0,0,Check-Out,2019-11-03 -Resort Hotel,0,20,2017,August,29,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,156.58,1,0,Check-Out,2020-04-02 -Resort Hotel,0,44,2016,September,37,27,0,5,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.04,0,1,Check-Out,2018-08-03 -City Hotel,0,23,2015,October,41,4,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.16,0,0,Check-Out,2018-08-03 -Resort Hotel,1,94,2015,August,31,6,2,5,3,0.0,0,HB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,179.95,0,0,Canceled,2018-05-03 -City Hotel,1,94,2016,December,3,30,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,72.0,179.0,37,Transient,71.48,0,0,Canceled,2019-05-04 -City Hotel,1,90,2016,October,42,28,2,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.68,0,0,Canceled,2019-03-04 -Resort Hotel,0,152,2016,September,36,2,0,10,3,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,E,0,No Deposit,205.0,179.0,0,Transient,189.29,1,0,Check-Out,2019-06-03 -City Hotel,0,43,2016,March,14,25,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient,62.26,0,0,Check-Out,2018-12-03 -City Hotel,0,141,2016,June,25,21,1,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.12,0,2,Check-Out,2019-04-03 -City Hotel,0,4,2017,January,3,9,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient,59.06,0,2,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,March,12,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,43.43,0,0,Check-Out,2019-03-04 -City Hotel,0,35,2016,October,42,21,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.56,0,2,Check-Out,2018-08-03 -Resort Hotel,0,46,2016,August,36,10,2,4,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,114.66,0,2,Check-Out,2019-08-04 -City Hotel,1,42,2016,September,21,24,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.71,0,2,No-Show,2019-09-03 -City Hotel,0,286,2017,February,16,21,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,22.0,179.0,0,Transient-Party,97.04,0,0,Check-Out,2020-03-03 -Resort Hotel,1,251,2015,October,34,17,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,93.0,179.0,0,Contract,42.13,1,0,Canceled,2017-11-02 -Resort Hotel,0,158,2017,March,10,25,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,12.0,331.0,0,Transient-Party,35.12,1,0,Check-Out,2020-04-02 -City Hotel,1,153,2016,August,34,26,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,71.95,0,0,Canceled,2019-03-04 -Resort Hotel,0,20,2015,December,51,9,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,81.64,0,0,Check-Out,2019-11-03 -City Hotel,1,48,2016,December,53,26,2,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,95.15,0,1,Canceled,2019-11-03 -Resort Hotel,0,33,2016,January,3,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,2.57,0,1,Check-Out,2018-10-03 -City Hotel,1,260,2017,August,37,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,E,0,No Deposit,1.0,179.0,0,Transient,62.45,0,0,Canceled,2020-07-03 -City Hotel,0,0,2016,March,10,15,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,45.0,0,Group,0.0,0,0,Check-Out,2020-01-04 -Resort Hotel,0,260,2016,October,31,5,2,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,139.0,179.0,0,Transient-Party,48.2,0,0,Check-Out,2019-06-03 -Resort Hotel,1,176,2017,April,16,20,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,46.32,0,0,Canceled,2020-01-04 -Resort Hotel,0,151,2016,March,16,10,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,Refundable,11.0,223.0,0,Transient-Party,41.56,1,0,Check-Out,2019-04-03 -Resort Hotel,0,49,2017,August,39,24,2,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,94.8,0,0,Check-Out,2020-07-03 -City Hotel,1,1,2017,February,9,27,1,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.66,0,3,Canceled,2019-11-03 -Resort Hotel,0,57,2015,November,51,9,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,63.04,0,0,Check-Out,2018-11-02 -City Hotel,0,55,2015,December,50,14,2,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient-Party,71.25,0,0,Check-Out,2018-08-03 -City Hotel,1,289,2015,July,32,16,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,11.0,179.0,0,Transient-Party,98.66,0,0,Canceled,2018-06-02 -City Hotel,0,49,2015,July,31,19,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.48,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2017,January,3,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,99.0,0,Transient,39.73,1,0,Check-Out,2019-11-03 -City Hotel,0,100,2016,December,50,8,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,112.84,0,0,Check-Out,2019-06-03 -Resort Hotel,1,1,2017,April,10,2,2,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,0,Non Refund,378.0,179.0,0,Transient-Party,64.85,0,0,Canceled,2019-10-04 -Resort Hotel,1,271,2017,August,35,19,2,4,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,238.3,0,3,Canceled,2020-06-02 -City Hotel,1,58,2017,May,21,23,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,167.49,0,3,Canceled,2020-03-03 -City Hotel,0,104,2016,January,53,17,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,121.16,0,0,Check-Out,2019-11-03 -City Hotel,0,24,2016,November,49,15,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,63.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,203,2016,October,42,9,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,95.74,0,1,Check-Out,2018-08-03 -City Hotel,0,11,2017,May,18,6,0,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,123.64,0,1,Check-Out,2019-02-01 -City Hotel,0,237,2016,July,34,30,0,1,3,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,98.72,0,3,Check-Out,2019-05-04 -City Hotel,1,150,2017,May,23,17,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,85.83,0,0,Canceled,2019-10-04 -Resort Hotel,0,93,2016,December,49,20,2,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,194.0,179.0,0,Transient-Party,81.42,0,0,Check-Out,2018-12-03 -City Hotel,0,12,2016,December,49,14,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,70.96,0,2,Check-Out,2018-12-03 -City Hotel,1,0,2017,April,14,14,0,1,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,F,K,0,No Deposit,7.0,179.0,0,Transient,1.12,0,0,Canceled,2020-02-01 -Resort Hotel,0,39,2015,July,50,15,2,5,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,1,E,D,0,No Deposit,14.0,179.0,0,Transient,63.27,0,0,Check-Out,2018-07-03 -City Hotel,0,9,2016,October,43,9,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.37,0,1,Check-Out,2019-11-03 -City Hotel,1,14,2016,February,11,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,15.0,45.0,0,Transient,37.8,0,0,Canceled,2019-01-03 -City Hotel,1,32,2016,October,42,18,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,73.08,0,0,Canceled,2019-08-04 -City Hotel,1,0,2016,December,48,26,0,1,3,0.0,0,SC,PRT,Corporate,TA/TO,0,1,0,P,P,0,No Deposit,12.0,179.0,0,Transient,1.68,0,0,Canceled,2019-12-04 -City Hotel,0,44,2016,October,38,31,1,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,181.08,0,3,Check-Out,2019-12-04 -City Hotel,0,40,2015,September,38,28,1,0,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,160.93,0,0,Check-Out,2018-08-03 -Resort Hotel,0,291,2017,August,35,21,2,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,122.57,0,1,Check-Out,2020-02-01 -Resort Hotel,0,100,2015,July,35,16,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,104.73,0,0,Check-Out,2018-05-03 -Resort Hotel,1,85,2015,August,30,5,2,5,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient-Party,102.79,0,0,Canceled,2018-06-02 -Resort Hotel,0,37,2016,March,18,27,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,29.0,179.0,0,Transient-Party,59.29,0,0,Check-Out,2019-04-03 -City Hotel,1,260,2016,September,36,29,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,156.27,0,2,Canceled,2018-08-03 -Resort Hotel,1,29,2016,March,9,18,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,75.66,0,0,Canceled,2019-02-01 -City Hotel,1,250,2016,March,21,9,2,1,3,0.0,0,SC,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.93,0,0,Canceled,2019-02-01 -Resort Hotel,0,150,2016,July,32,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,87.73,0,0,Check-Out,2019-06-03 -Resort Hotel,0,16,2016,August,17,8,2,7,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient-Party,64.41,0,0,Check-Out,2018-07-03 -City Hotel,0,116,2017,July,27,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.25,0,0,Check-Out,2020-04-02 -City Hotel,1,288,2016,June,43,24,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.05,0,1,Canceled,2019-02-01 -City Hotel,1,158,2016,January,10,12,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.23,0,0,Canceled,2018-11-02 -Resort Hotel,1,141,2016,June,26,8,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,78.57,0,0,Canceled,2019-01-03 -Resort Hotel,1,154,2016,January,10,29,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,0,Transient,72.06,0,0,Canceled,2018-09-02 -City Hotel,0,84,2017,May,21,20,2,5,2,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,105.06,0,2,Check-Out,2020-06-02 -City Hotel,1,20,2016,July,21,20,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,126.61,1,0,Canceled,2019-02-01 -City Hotel,1,131,2016,June,27,17,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,105.0,0,0,No-Show,2019-07-04 -Resort Hotel,0,19,2017,May,34,3,0,4,2,2.0,0,FB,GBR,Groups,TA/TO,0,0,0,G,E,2,No Deposit,27.0,179.0,0,Transient-Party,229.44,1,0,Check-Out,2020-06-02 -City Hotel,0,52,2016,August,36,22,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,249.72,0,0,Check-Out,2019-05-04 -Resort Hotel,0,23,2016,June,25,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,128.23,1,1,Check-Out,2019-05-04 -City Hotel,0,45,2016,September,31,19,2,3,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.1,0,2,Check-Out,2019-12-04 -City Hotel,1,161,2016,May,20,1,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,118.43,0,0,Canceled,2019-02-01 -City Hotel,1,43,2017,June,33,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,147.81,0,2,Canceled,2019-11-03 -City Hotel,0,3,2017,August,31,29,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,128.17,0,2,Check-Out,2020-06-02 -Resort Hotel,0,20,2015,September,43,29,1,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,104.4,0,0,Check-Out,2018-07-03 -City Hotel,0,3,2016,April,16,4,0,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,107.37,0,0,Check-Out,2018-11-02 -City Hotel,0,256,2017,June,25,27,1,2,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient-Party,121.28,0,0,Check-Out,2020-04-02 -City Hotel,0,106,2016,October,43,5,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,91.94,0,0,Check-Out,2019-06-03 -City Hotel,1,271,2015,July,34,4,2,2,2,0.0,0,BB,AUT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,104.55,0,1,Canceled,2018-07-03 -City Hotel,0,36,2016,December,53,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.92,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,June,26,13,1,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,36.33,0,0,Check-Out,2019-03-04 -Resort Hotel,0,191,2017,May,24,27,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,68.1,0,1,Check-Out,2020-05-03 -Resort Hotel,0,95,2015,December,52,31,2,4,2,0.0,0,FB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient-Party,80.28,0,0,Check-Out,2018-12-03 -Resort Hotel,1,152,2016,December,53,10,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,75,Transient,85.49,0,0,Canceled,2019-12-04 -City Hotel,0,10,2016,October,44,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,L,0,No Deposit,15.0,45.0,0,Group,68.92,0,0,Check-Out,2019-07-04 -Resort Hotel,0,197,2016,May,21,30,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,E,E,0,No Deposit,75.0,179.0,0,Group,68.34,0,2,Check-Out,2019-06-03 -Resort Hotel,0,52,2015,November,50,6,1,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,43.2,1,2,Check-Out,2018-11-02 -City Hotel,1,48,2017,April,20,24,1,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,94.16,0,0,Canceled,2020-03-03 -City Hotel,1,208,2017,April,16,15,2,4,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.77,0,0,Canceled,2019-11-03 -City Hotel,0,10,2017,May,24,20,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,77.32,0,0,Check-Out,2020-05-03 -City Hotel,1,255,2016,August,36,15,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,21,Transient,60.43,0,0,Canceled,2018-12-03 -City Hotel,1,176,2017,May,23,10,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,101.14,0,0,Check-Out,2020-04-02 -City Hotel,1,78,2016,May,26,15,2,5,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,B,0,No Deposit,9.0,179.0,0,Transient,97.26,0,0,Canceled,2019-06-03 -Resort Hotel,0,31,2016,July,32,6,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,131.75,1,0,Check-Out,2019-05-04 -City Hotel,1,414,2017,June,26,14,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Contract,123.7,0,0,Canceled,2020-06-02 -Resort Hotel,0,20,2016,September,45,14,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,145.4,0,1,Check-Out,2019-06-03 -Resort Hotel,0,245,2016,November,48,3,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,77.15,0,0,Check-Out,2019-11-03 -City Hotel,1,100,2016,October,43,27,0,1,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,64,Transient,102.9,0,0,No-Show,2019-06-03 -City Hotel,1,19,2015,August,39,19,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,145.54,0,0,Canceled,2018-06-02 -Resort Hotel,1,199,2017,October,9,26,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,57.86,1,0,Canceled,2019-09-03 -City Hotel,0,154,2016,October,46,27,0,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.54,0,0,Check-Out,2019-06-03 -City Hotel,0,12,2016,December,44,22,1,4,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,38.0,179.0,0,Transient-Party,107.06,0,0,Check-Out,2019-07-04 -Resort Hotel,0,202,2016,August,34,27,3,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient,93.66,0,0,Check-Out,2019-06-03 -Resort Hotel,1,139,2016,April,17,31,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,10.0,223.0,0,Transient-Party,71.51,0,0,Canceled,2019-03-04 -Resort Hotel,1,338,2017,May,17,20,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,158.4,0,1,Canceled,2020-03-03 -Resort Hotel,0,268,2016,June,29,5,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,118.39,1,1,Check-Out,2019-02-01 -City Hotel,0,392,2016,August,35,20,0,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,83.35,1,0,Check-Out,2019-06-03 -City Hotel,0,32,2016,March,36,16,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,164.74,0,0,Check-Out,2019-03-04 -City Hotel,0,97,2016,March,17,31,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,70.48,0,1,Check-Out,2019-03-04 -Resort Hotel,0,1,2015,October,41,5,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,169.0,179.0,0,Transient-Party,108.36,0,2,Check-Out,2018-08-03 -City Hotel,0,0,2017,April,17,5,2,3,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,77.1,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2017,May,10,7,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,0.0,1,2,Check-Out,2020-02-01 -City Hotel,0,0,2017,June,27,10,1,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,83.21,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,March,16,14,1,1,3,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient-Party,33.71,0,0,Check-Out,2019-03-04 -City Hotel,0,63,2016,February,11,28,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,85.0,179.0,0,Transient,143.11,0,0,Check-Out,2019-05-04 -Resort Hotel,1,49,2016,March,3,21,0,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,Non Refund,247.0,179.0,0,Transient,243.23,0,0,Canceled,2019-02-01 -City Hotel,1,254,2015,October,35,10,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,118.71,0,0,Canceled,2018-05-03 -City Hotel,0,88,2016,July,26,27,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,112.22,0,0,Check-Out,2019-07-04 -Resort Hotel,0,12,2015,September,50,10,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,59.78,0,1,Check-Out,2018-08-03 -City Hotel,1,73,2016,February,10,25,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,E,0,Non Refund,32.0,179.0,0,Transient,78.06,0,0,Canceled,2019-09-03 -Resort Hotel,0,106,2017,July,31,25,2,5,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,144.73,1,1,Check-Out,2020-03-03 -City Hotel,0,14,2016,September,44,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,78.87,0,1,Check-Out,2019-02-01 -Resort Hotel,0,57,2017,April,16,31,2,5,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,78.84,0,0,Check-Out,2020-01-04 -City Hotel,0,40,2017,February,11,13,0,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,79.0,0,Transient,66.2,1,1,Check-Out,2019-11-03 -Resort Hotel,1,266,2016,April,11,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,286.0,179.0,0,Transient,73.97,0,0,Canceled,2019-01-03 -City Hotel,1,0,2016,November,43,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,18.0,45.0,0,Transient,92.42,0,0,Canceled,2018-11-02 -City Hotel,1,52,2016,March,17,10,2,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.89,0,1,Canceled,2018-11-02 -Resort Hotel,0,228,2017,May,17,6,2,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,111.37,1,3,Check-Out,2020-04-02 -City Hotel,0,46,2016,October,44,20,0,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.45,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2016,June,43,22,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,F,F,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,224,2017,June,27,22,0,3,2,0.0,0,BB,BEL,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient-Party,126.23,0,0,Check-Out,2020-06-02 -Resort Hotel,0,75,2016,May,22,2,0,2,1,0.0,0,BB,PRT,Groups,Corporate,1,0,1,A,I,1,No Deposit,13.0,179.0,0,Transient,60.61,0,0,Check-Out,2019-03-04 -City Hotel,1,56,2015,September,31,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.31,0,0,Canceled,2018-10-03 -Resort Hotel,1,58,2017,March,9,16,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,61.43,0,0,Canceled,2020-03-03 -Resort Hotel,0,13,2016,May,24,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,89.85,1,0,Check-Out,2019-03-04 -Resort Hotel,0,93,2016,March,18,31,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,85.77,0,2,Check-Out,2019-04-03 -City Hotel,1,39,2016,January,11,28,1,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.37,0,0,Canceled,2019-10-04 -City Hotel,1,13,2016,July,35,17,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,158.38,0,0,Canceled,2019-05-04 -Resort Hotel,0,146,2015,December,51,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient,72.58,0,0,Check-Out,2018-08-03 -City Hotel,1,253,2017,June,25,6,2,2,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,E,A,0,Non Refund,176.0,179.0,0,Transient,102.17,0,0,Canceled,2019-03-04 -Resort Hotel,0,51,2016,August,34,16,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,2,No Deposit,9.0,179.0,0,Transient,0.91,0,1,Check-Out,2019-09-03 -City Hotel,1,108,2016,December,53,25,2,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient,128.2,0,0,Canceled,2019-05-04 -Resort Hotel,0,5,2016,January,50,27,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient-Party,62.96,1,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,June,10,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,74.43,0,0,Check-Out,2019-03-04 -Resort Hotel,0,127,2016,March,15,16,2,5,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,222.0,0,Transient,35.46,0,0,Check-Out,2019-04-03 -City Hotel,1,11,2016,May,21,13,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,73.57,0,0,Canceled,2019-02-01 -City Hotel,1,47,2015,October,42,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,59.7,0,0,Canceled,2018-08-03 -City Hotel,0,17,2016,July,35,3,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,100.24,0,0,Check-Out,2019-07-04 -City Hotel,1,364,2017,June,29,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,113.32,0,0,Canceled,2020-06-02 -City Hotel,1,14,2016,December,44,7,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,78.42,0,1,Canceled,2019-10-04 -City Hotel,1,155,2016,September,44,27,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.65,0,0,Canceled,2018-08-03 -Resort Hotel,1,43,2017,March,17,6,2,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.45,0,2,Canceled,2020-02-01 -Resort Hotel,0,40,2016,March,18,5,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,283.0,179.0,75,Transient,134.94,0,1,Check-Out,2019-04-03 -City Hotel,1,316,2015,October,44,21,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.75,0,1,Canceled,2018-08-03 -Resort Hotel,1,159,2015,July,33,20,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,228.01,0,0,Canceled,2018-06-02 -City Hotel,0,82,2017,August,36,21,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,94.26,0,0,Check-Out,2020-01-04 -Resort Hotel,1,77,2015,October,47,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,241.0,179.0,0,Transient,40.17,0,0,Canceled,2018-08-03 -Resort Hotel,1,164,2017,August,39,15,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,207.68,0,1,Canceled,2018-06-02 -City Hotel,0,138,2016,May,17,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,61.7,0,0,Check-Out,2019-03-04 -Resort Hotel,0,19,2015,November,4,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,1,No Deposit,13.0,73.0,0,Group,38.77,0,0,Check-Out,2019-08-04 -City Hotel,1,16,2017,August,38,24,2,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,237.2,0,0,Canceled,2020-07-03 -City Hotel,0,16,2016,October,45,28,0,1,2,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,201.0,179.0,0,Transient,78.03,0,0,Check-Out,2019-10-04 -City Hotel,1,14,2015,July,31,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,117.94,0,0,Canceled,2018-08-03 -City Hotel,1,65,2017,August,35,5,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,139.56,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,January,12,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,D,D,0,No Deposit,13.0,73.0,0,Transient,34.19,0,0,Check-Out,2018-11-02 -City Hotel,1,49,2016,November,53,10,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,147.62,0,1,Canceled,2019-11-03 -City Hotel,0,13,2017,June,25,10,2,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,113.82,0,1,Check-Out,2020-04-02 -Resort Hotel,0,28,2017,December,5,15,2,4,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,33.0,179.0,0,Transient,69.84,0,0,Check-Out,2019-11-03 -City Hotel,1,314,2017,June,26,25,0,1,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.42,0,1,Canceled,2020-03-03 -City Hotel,0,43,2017,March,10,15,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.9,0,2,Check-Out,2020-04-02 -City Hotel,1,5,2016,June,34,12,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,65.7,0,0,Canceled,2019-11-03 -City Hotel,1,17,2016,June,29,16,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,93.38,0,0,Canceled,2019-06-03 -Resort Hotel,0,1,2016,March,10,25,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,15.0,78.0,0,Transient,44.72,0,0,Check-Out,2018-12-03 -Resort Hotel,0,134,2016,November,50,10,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,37.69,1,3,Check-Out,2019-12-04 -City Hotel,1,368,2015,September,46,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,54.4,0,0,Canceled,2018-09-02 -City Hotel,0,18,2015,November,43,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.46,0,0,Canceled,2017-11-02 -City Hotel,0,207,2016,September,37,13,2,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,110.42,1,1,Check-Out,2019-09-03 -Resort Hotel,1,376,2016,March,10,31,1,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,179.0,0,Transient-Party,62.54,0,0,Canceled,2019-08-04 -City Hotel,1,85,2016,January,7,9,0,3,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,112.75,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2017,January,3,24,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,292.0,80.0,0,Transient,29.72,0,0,Check-Out,2019-11-03 -City Hotel,0,22,2015,July,32,18,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,95.84,0,0,Check-Out,2018-06-02 -City Hotel,0,190,2017,July,34,27,2,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,199.44,0,2,Check-Out,2020-06-02 -City Hotel,0,242,2015,July,33,2,0,3,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,39.51,0,0,Check-Out,2018-06-02 -City Hotel,0,17,2016,December,50,30,0,2,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,85.72,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,October,46,12,1,3,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,59.74,0,0,Check-Out,2019-08-04 -Resort Hotel,0,8,2015,December,53,30,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,62.8,0,1,Check-Out,2018-10-03 -Resort Hotel,0,290,2015,October,42,13,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,64,Contract,63.92,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2016,October,43,28,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,16.0,179.0,0,Transient,0.0,1,2,Check-Out,2019-05-04 -City Hotel,0,18,2017,June,28,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,31.0,179.0,0,Transient,123.71,1,0,Check-Out,2020-06-02 -City Hotel,0,32,2015,September,32,16,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,118.82,0,2,Check-Out,2018-05-03 -City Hotel,1,160,2017,February,10,12,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,72.6,0,0,Canceled,2020-03-03 -Resort Hotel,1,161,2016,August,35,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,61.0,0,0,Canceled,2019-11-03 -City Hotel,0,52,2017,June,26,9,1,3,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,3,No Deposit,15.0,179.0,0,Transient,223.76,0,0,Check-Out,2020-06-02 -City Hotel,0,8,2017,May,22,10,0,4,1,0.0,0,SC,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,115.49,1,1,Check-Out,2020-03-03 -City Hotel,1,13,2016,August,32,15,2,4,2,2.0,0,HB,NOR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,179.1,0,0,Canceled,2019-04-03 -Resort Hotel,0,13,2016,January,3,27,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-03-04 -Resort Hotel,0,209,2017,August,33,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-06-02 -City Hotel,0,97,2016,May,53,26,0,1,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,3.0,179.0,0,Transient-Party,62.14,0,0,Check-Out,2019-07-04 -City Hotel,0,2,2016,October,42,12,1,4,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,135.82,0,0,Check-Out,2019-08-04 -City Hotel,1,102,2017,August,35,16,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,163.3,0,0,Canceled,2019-12-04 -City Hotel,1,75,2015,December,50,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.18,0,0,Canceled,2018-08-03 -Resort Hotel,0,16,2016,August,36,10,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-06-03 -Resort Hotel,0,19,2016,August,35,9,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,120.75,0,0,Check-Out,2019-06-03 -City Hotel,0,9,2015,October,44,15,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,E,C,0,No Deposit,15.0,331.0,0,Transient,70.65,0,0,Check-Out,2018-09-02 -City Hotel,0,12,2017,June,18,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,12.0,331.0,0,Transient,123.58,0,0,Check-Out,2020-03-03 -City Hotel,1,215,2016,December,4,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,41,Transient,61.12,0,0,Canceled,2018-09-02 -City Hotel,1,289,2016,February,21,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient,85.97,0,0,Canceled,2019-06-03 -Resort Hotel,0,2,2017,March,38,5,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,3,No Deposit,11.0,179.0,75,Transient,62.02,1,1,Check-Out,2019-08-04 -Resort Hotel,0,59,2016,January,4,18,1,1,2,1.0,0,BB,CHE,Online TA,Direct,0,0,0,H,H,1,No Deposit,14.0,179.0,0,Transient,73.4,0,0,Check-Out,2019-12-04 -City Hotel,1,297,2015,October,45,25,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.18,0,0,Canceled,2017-12-03 -City Hotel,1,385,2015,September,38,5,0,1,2,0.0,0,BB,,Direct,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.38,0,0,Canceled,2018-08-03 -City Hotel,0,15,2016,April,22,30,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,117.81,0,2,Check-Out,2020-02-01 -Resort Hotel,1,190,2016,July,37,30,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,F,0,No Deposit,242.0,179.0,0,Transient,51.62,0,2,Canceled,2020-03-03 -City Hotel,0,50,2017,April,17,31,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,9.0,179.0,0,Transient,223.98,0,0,Check-Out,2020-02-01 -Resort Hotel,0,28,2016,March,16,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,62.91,0,0,Check-Out,2019-04-03 -Resort Hotel,0,29,2016,April,17,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,78.0,179.0,0,Transient,103.31,1,0,Check-Out,2019-04-03 -Resort Hotel,0,53,2017,August,29,2,2,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,222.58,1,1,Check-Out,2020-06-02 -Resort Hotel,0,263,2016,June,29,10,3,5,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,76.92,0,0,Check-Out,2019-06-03 -Resort Hotel,0,9,2016,March,17,7,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,B,2,Refundable,13.0,223.0,0,Transient-Party,76.14,1,0,Check-Out,2019-03-04 -City Hotel,0,44,2017,March,3,14,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.57,0,1,Check-Out,2020-03-03 -City Hotel,0,98,2016,August,36,13,2,5,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,218.25,1,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,November,49,23,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,81.99,0,0,Check-Out,2018-12-03 -City Hotel,1,15,2015,December,47,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,36.97,0,0,Canceled,2018-12-03 -City Hotel,1,53,2015,September,37,30,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,28.18,0,0,Canceled,2018-05-03 -Resort Hotel,0,59,2017,July,33,3,2,2,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,153.22,1,1,Check-Out,2020-03-03 -City Hotel,0,12,2016,December,50,5,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,72.72,0,2,Check-Out,2019-10-04 -City Hotel,0,0,2017,May,20,13,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,211.0,0,Transient,62.63,0,0,Check-Out,2020-02-01 -City Hotel,0,3,2015,November,49,30,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,93.99,0,2,Check-Out,2018-10-03 -City Hotel,0,54,2016,April,17,15,2,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,125.43,0,1,Check-Out,2019-05-04 -City Hotel,0,192,2017,July,32,6,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,171.12,1,1,Check-Out,2019-06-03 -City Hotel,1,268,2017,August,29,18,2,4,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,121.49,0,2,Canceled,2020-06-02 -Resort Hotel,0,8,2015,July,31,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,232.0,0,Transient,102.28,0,1,Check-Out,2018-06-02 -City Hotel,0,148,2016,August,34,6,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.1,0,1,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,July,37,10,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,119.77,0,2,Check-Out,2019-05-04 -Resort Hotel,0,147,2016,August,35,31,2,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,2,Refundable,15.0,221.0,0,Transient-Party,66.54,0,0,Check-Out,2019-05-04 -Resort Hotel,1,153,2017,March,11,31,1,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,177.56,1,0,Canceled,2020-02-01 -City Hotel,1,153,2016,June,18,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,45.0,0,Transient,81.26,0,0,Canceled,2019-02-01 -Resort Hotel,0,185,2016,May,36,7,3,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,C,B,0,No Deposit,243.0,179.0,0,Transient-Party,126.13,0,0,Check-Out,2019-02-01 -City Hotel,0,15,2015,December,51,13,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Group,58.73,0,0,Check-Out,2018-09-02 -Resort Hotel,0,89,2016,March,8,19,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,307.0,179.0,0,Transient,75.68,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2016,August,37,27,0,2,1,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,113.35,0,1,Check-Out,2018-09-02 -Resort Hotel,0,14,2016,September,43,14,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,93.82,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2017,January,10,29,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.76,0,1,Check-Out,2020-02-01 -Resort Hotel,0,36,2015,August,34,23,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,150.22,0,1,Check-Out,2020-06-02 -City Hotel,0,280,2016,June,24,17,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,86.54,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,January,11,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,87.0,0,Transient,43.38,0,0,Check-Out,2018-12-03 -Resort Hotel,0,1,2016,November,45,20,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,18.0,86.0,0,Transient,33.43,0,0,Check-Out,2019-04-03 -Resort Hotel,0,148,2016,March,16,31,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,2,Refundable,14.0,223.0,0,Transient-Party,76.49,0,0,Check-Out,2019-02-01 -City Hotel,0,155,2016,June,33,15,2,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,118.05,0,1,Check-Out,2020-05-03 -City Hotel,1,17,2016,September,43,16,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,19,Transient,78.63,0,0,Canceled,2018-11-02 -Resort Hotel,0,20,2017,March,14,15,4,3,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,179.0,75,Transient,113.31,1,0,Check-Out,2020-05-03 -Resort Hotel,0,104,2016,April,15,14,2,5,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,141.0,179.0,0,Transient-Party,78.4,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,June,26,12,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,129.89,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2016,April,17,30,0,3,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,211.0,0,Transient-Party,85.65,0,0,Check-Out,2019-04-03 -City Hotel,1,120,2016,March,16,10,1,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,86.45,0,0,Canceled,2019-02-01 -Resort Hotel,0,48,2016,September,36,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,66.16,0,0,Check-Out,2019-06-03 -City Hotel,1,46,2016,August,45,9,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.03,0,3,Canceled,2019-09-03 -City Hotel,0,0,2016,October,44,16,1,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.59,0,0,Check-Out,2019-09-03 -Resort Hotel,0,266,2017,June,21,13,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.97,1,0,Check-Out,2020-07-03 -City Hotel,0,13,2015,April,23,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,39.61,0,0,Check-Out,2018-12-03 -Resort Hotel,0,31,2016,August,35,31,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,66.03,1,0,Check-Out,2019-07-04 -City Hotel,1,24,2016,November,48,20,1,0,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,72.56,0,0,Canceled,2019-09-03 -Resort Hotel,1,419,2015,December,33,31,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.54,0,0,Canceled,2018-01-31 -City Hotel,0,72,2016,August,33,24,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,59.83,0,0,Check-Out,2018-12-03 -Resort Hotel,1,232,2017,August,34,2,2,5,3,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,148.97,0,0,Canceled,2020-06-02 -City Hotel,1,11,2016,October,51,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,13.0,45.0,0,Transient,91.93,0,0,Canceled,2019-11-03 -City Hotel,0,12,2016,May,21,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,137.05,0,1,Check-Out,2019-03-04 -City Hotel,0,3,2017,May,26,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,2,No Deposit,14.0,238.0,0,Transient-Party,64.16,0,0,Check-Out,2019-06-03 -Resort Hotel,0,115,2015,October,42,2,1,4,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,120.77,1,1,Check-Out,2018-08-03 -City Hotel,0,156,2017,August,32,9,2,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,160.67,0,0,Check-Out,2020-06-02 -Resort Hotel,1,5,2016,March,20,28,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,30.04,0,0,No-Show,2019-02-01 -City Hotel,0,55,2015,December,53,30,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,60.36,0,2,Check-Out,2018-09-02 -City Hotel,1,385,2017,May,38,28,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient-Party,71.45,0,0,Canceled,2020-01-04 -City Hotel,1,248,2015,July,35,18,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Contract,130.39,0,0,Canceled,2018-05-03 -Resort Hotel,0,45,2017,March,19,12,1,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,18.0,179.0,0,Transient,117.65,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,February,10,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,115.0,0,Transient,44.74,1,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,July,27,15,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.09,0,2,Check-Out,2019-06-03 -City Hotel,0,47,2016,August,42,19,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.78,0,2,Check-Out,2020-06-02 -City Hotel,0,9,2016,June,26,13,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,I,2,No Deposit,11.0,179.0,0,Transient,1.87,1,0,Check-Out,2019-02-01 -City Hotel,1,57,2016,August,38,15,2,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,136.05,0,1,Canceled,2019-03-04 -City Hotel,0,10,2016,August,43,5,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.15,1,3,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,July,35,18,0,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,101.23,1,2,Check-Out,2020-06-02 -City Hotel,0,258,2015,September,42,13,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,64.53,0,0,Check-Out,2018-08-03 -Resort Hotel,1,259,2016,July,36,25,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,187.96,0,1,Canceled,2019-05-04 -City Hotel,0,10,2016,February,12,12,1,0,2,0.0,0,BB,FRA,Undefined,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,0,94,2016,December,53,6,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,79.19,0,0,Check-Out,2019-05-04 -City Hotel,0,30,2016,February,11,24,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,73.76,0,0,Check-Out,2019-01-03 -City Hotel,1,32,2016,January,4,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,150.56,0,0,Canceled,2018-11-02 -City Hotel,0,2,2017,January,9,17,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,194.69,0,2,Check-Out,2019-12-04 -City Hotel,1,162,2016,April,9,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,17,Transient,84.08,0,0,Canceled,2019-02-01 -City Hotel,1,51,2017,April,10,13,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,69.97,0,0,Canceled,2019-10-04 -Resort Hotel,1,2,2016,February,10,23,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,F,0,Non Refund,295.0,179.0,0,Transient,73.47,0,0,Canceled,2018-12-03 -Resort Hotel,1,46,2016,December,52,21,2,5,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,E,E,0,No Deposit,146.0,179.0,0,Transient-Party,63.82,0,0,Canceled,2018-11-02 -Resort Hotel,0,152,2016,July,29,30,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,117.66,0,3,Check-Out,2020-07-03 -City Hotel,0,140,2017,June,29,6,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,106.77,0,0,Check-Out,2020-06-02 -Resort Hotel,0,279,2016,October,40,2,4,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,68.02,1,1,Check-Out,2019-07-04 -City Hotel,0,47,2016,March,8,28,0,1,2,0.0,0,SC,PRT,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,8.0,45.0,0,Transient-Party,71.63,0,1,Check-Out,2019-02-01 -City Hotel,1,107,2016,April,16,5,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.39,0,0,Canceled,2019-01-03 -City Hotel,0,98,2016,April,44,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,152.28,0,2,Check-Out,2019-06-03 -City Hotel,0,20,2015,September,42,13,1,2,1,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,98.49,0,0,Check-Out,2018-08-03 -City Hotel,1,2,2017,April,15,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,123.09,0,0,Canceled,2019-11-03 -City Hotel,0,1,2015,October,37,1,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,42.98,0,0,Check-Out,2019-10-04 -Resort Hotel,0,22,2017,July,32,2,2,0,2,0.0,0,BB,ESP,Groups,TA/TO,1,0,1,A,D,0,No Deposit,12.0,179.0,0,Group,133.28,0,1,Check-Out,2020-06-02 -City Hotel,0,1,2017,May,21,12,1,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,0.59,0,0,Check-Out,2020-03-03 -City Hotel,0,55,2017,May,21,23,1,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,174.46,0,0,Check-Out,2020-06-02 -City Hotel,0,47,2016,October,45,21,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,86.59,0,1,Check-Out,2019-08-04 -City Hotel,0,20,2016,June,39,30,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-05-04 -City Hotel,1,29,2016,October,46,29,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.34,1,0,Canceled,2019-11-03 -City Hotel,0,106,2015,July,33,30,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.59,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2016,October,45,24,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-08-04 -Resort Hotel,1,306,2017,July,30,20,2,5,1,0.0,0,HB,PRT,Corporate,Corporate,1,1,1,E,E,0,No Deposit,13.0,53.0,0,Transient,107.73,0,0,Canceled,2020-06-02 -Resort Hotel,1,41,2016,September,43,20,4,2,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,145.4,0,2,Canceled,2019-06-03 -City Hotel,0,5,2016,November,50,30,0,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,109.28,0,0,Check-Out,2019-11-03 -City Hotel,0,84,2017,June,21,21,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,76.39,0,1,Check-Out,2020-04-02 -City Hotel,0,34,2015,September,33,13,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,78.16,0,2,Check-Out,2018-08-03 -City Hotel,1,44,2016,February,8,28,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,127.0,179.0,0,Transient,75.93,0,0,No-Show,2018-11-02 -Resort Hotel,0,46,2017,May,21,15,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,163.0,179.0,0,Contract,111.86,0,2,Check-Out,2020-04-02 -Resort Hotel,0,166,2016,July,37,21,2,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,167.06,0,1,Check-Out,2019-06-03 -City Hotel,0,92,2017,May,22,23,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,174.0,179.0,0,Contract,121.47,0,0,Check-Out,2019-12-04 -City Hotel,0,21,2015,October,43,18,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,148.41,0,0,Check-Out,2019-11-03 -City Hotel,0,35,2015,October,50,15,2,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,252.0,179.0,0,Transient-Party,91.4,0,0,Check-Out,2018-09-02 -Resort Hotel,0,3,2016,December,4,5,0,1,1,0.0,0,Undefined,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,60.71,1,0,Check-Out,2018-10-03 -Resort Hotel,1,13,2015,December,53,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,40.45,0,2,Canceled,2018-09-02 -City Hotel,0,0,2017,January,3,19,0,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,81.95,0,1,Check-Out,2019-11-03 -City Hotel,1,22,2017,February,10,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.86,0,0,Canceled,2020-02-01 -Resort Hotel,0,248,2017,May,22,13,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,61.94,0,1,Check-Out,2020-03-03 -Resort Hotel,0,47,2016,October,44,28,4,10,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,75,Transient,98.48,0,0,Check-Out,2019-07-04 -City Hotel,1,171,2015,July,32,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,128.88,0,0,Canceled,2018-06-02 -Resort Hotel,1,344,2017,August,34,9,2,5,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,10.0,179.0,0,Transient-Party,215.66,0,3,Canceled,2020-01-04 -Resort Hotel,1,34,2016,March,10,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,71.49,0,0,No-Show,2018-12-03 -Resort Hotel,1,255,2016,September,42,21,2,5,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,D,F,0,No Deposit,245.0,179.0,0,Transient,127.48,0,1,Canceled,2018-05-03 -City Hotel,0,4,2016,April,50,26,1,3,1,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,1,No Deposit,284.0,179.0,0,Transient-Party,117.63,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2015,September,35,27,0,1,1,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,134.6,0,0,Check-Out,2019-09-03 -Resort Hotel,0,103,2016,December,45,29,2,4,2,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient-Party,71.23,0,2,Check-Out,2019-08-04 -Resort Hotel,0,138,2016,March,16,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,224.0,0,Transient-Party,71.76,0,0,Check-Out,2019-02-01 -City Hotel,0,98,2015,August,26,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,19,Transient,127.68,0,0,Check-Out,2018-06-02 -Resort Hotel,0,5,2015,November,44,17,1,0,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,F,1,No Deposit,47.0,179.0,0,Group,34.69,0,0,Check-Out,2018-08-03 -City Hotel,1,36,2016,February,53,2,2,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.84,0,0,Canceled,2019-11-03 -Resort Hotel,1,157,2017,August,36,15,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,283.0,179.0,75,Transient-Party,106.33,0,0,No-Show,2019-04-03 -City Hotel,0,8,2015,October,46,15,2,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Contract,59.48,0,0,Check-Out,2018-07-03 -City Hotel,0,38,2016,August,39,20,0,3,3,1.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-09-03 -City Hotel,1,157,2016,October,45,17,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.06,0,0,Canceled,2019-07-04 -City Hotel,1,59,2017,August,37,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.66,0,0,Canceled,2018-08-03 -City Hotel,1,302,2015,September,38,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.77,0,0,Canceled,2017-11-02 -City Hotel,1,156,2017,July,32,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Refundable,6.0,179.0,0,Transient,80.18,0,0,Canceled,2020-06-02 -City Hotel,0,18,2017,May,22,6,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.0,0,2,Check-Out,2020-03-03 -City Hotel,1,32,2017,May,16,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.54,0,0,Canceled,2020-02-01 -City Hotel,0,250,2016,August,36,21,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,84.49,0,2,Check-Out,2019-05-04 -City Hotel,1,401,2016,April,16,29,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,64,Transient,44.49,0,0,Canceled,2018-10-03 -Resort Hotel,0,0,2015,October,43,9,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,124.22,0,2,Check-Out,2018-09-02 -City Hotel,0,32,2017,August,36,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Contract,167.78,1,1,Check-Out,2020-05-03 -City Hotel,0,17,2016,October,52,31,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.19,0,1,Check-Out,2019-12-04 -City Hotel,1,12,2016,June,33,27,0,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,123.75,0,2,Canceled,2019-07-04 -City Hotel,0,23,2015,November,50,13,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,61.56,0,0,Check-Out,2018-12-03 -Resort Hotel,0,314,2016,May,21,16,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,Refundable,12.0,222.0,0,Transient-Party,72.44,0,0,Check-Out,2019-02-01 -Resort Hotel,0,5,2015,October,43,6,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,300.0,179.0,0,Contract,37.94,0,0,Check-Out,2018-10-03 -Resort Hotel,0,54,2017,February,12,10,0,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,97.65,0,0,Check-Out,2020-02-01 -Resort Hotel,1,198,2017,June,26,6,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,161.43,0,2,No-Show,2020-04-02 -City Hotel,1,188,2015,July,36,28,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,0,Contract,60.94,0,0,Canceled,2017-10-03 -City Hotel,0,15,2017,March,11,15,1,0,2,0.0,0,SC,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.79,0,3,Check-Out,2020-02-01 -Resort Hotel,0,6,2017,April,24,21,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,173.72,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,March,10,10,1,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,37.68,0,0,Check-Out,2020-01-04 -City Hotel,1,46,2017,February,12,24,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,26.0,179.0,0,Transient,80.6,0,0,Canceled,2019-11-03 -City Hotel,1,2,2016,April,17,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,14,Transient,112.27,0,0,Canceled,2018-11-02 -City Hotel,0,193,2015,November,51,24,0,2,1,0.0,0,HB,DEU,Direct,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,59.96,0,0,Check-Out,2018-09-02 -City Hotel,1,35,2017,June,27,14,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,169.92,0,0,Canceled,2019-12-04 -City Hotel,0,0,2016,November,51,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,39.21,0,1,Check-Out,2019-10-04 -City Hotel,0,1,2016,April,17,9,0,3,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,105.88,0,0,Check-Out,2019-03-04 -City Hotel,0,225,2017,August,36,12,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,161.06,0,0,Check-Out,2020-05-03 -Resort Hotel,1,63,2015,December,53,31,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,H,2,No Deposit,244.0,179.0,0,Transient,86.61,0,2,Canceled,2019-09-03 -City Hotel,1,101,2016,February,8,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,45.0,0,Transient,140.14,0,0,Canceled,2018-11-02 -City Hotel,1,99,2016,May,28,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,B,0,No Deposit,9.0,179.0,41,Transient,66.83,0,2,Canceled,2019-03-04 -City Hotel,0,0,2017,February,8,21,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,86.0,0,Transient,60.01,1,0,Check-Out,2020-04-02 -Resort Hotel,0,104,2016,March,45,29,1,3,1,0.0,0,BB,SWE,Groups,Direct,0,0,0,D,D,0,Refundable,12.0,223.0,0,Transient-Party,37.97,0,0,Check-Out,2019-02-01 -Resort Hotel,0,14,2017,April,16,30,2,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,174.28,0,0,Check-Out,2020-02-01 -Resort Hotel,1,3,2016,February,8,23,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,330.0,79.0,0,Transient,76.7,0,0,Canceled,2019-02-01 -City Hotel,1,25,2016,May,21,22,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,247.07,0,0,Canceled,2019-02-01 -City Hotel,0,157,2017,May,19,28,2,0,3,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,94.96,0,1,Check-Out,2020-04-02 -City Hotel,1,1,2017,March,15,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.73,0,0,Canceled,2019-11-03 -City Hotel,0,12,2016,September,36,5,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,123.49,0,2,Check-Out,2019-08-04 -City Hotel,1,430,2017,August,37,2,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,103.66,0,0,Canceled,2019-10-04 -Resort Hotel,1,251,2017,May,37,6,2,5,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,241.0,179.0,0,Transient,63.72,0,0,Canceled,2020-04-02 -City Hotel,0,255,2017,July,27,22,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.51,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,August,40,15,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,159.08,0,2,Check-Out,2019-06-03 -City Hotel,1,16,2016,November,51,12,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,80.0,179.0,0,Transient,61.86,0,0,Canceled,2018-09-02 -City Hotel,1,52,2015,September,32,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,70.07,0,0,Canceled,2018-08-03 -City Hotel,0,54,2015,October,41,15,1,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,126.99,0,3,Check-Out,2018-06-02 -City Hotel,1,96,2016,September,23,24,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,81.01,0,0,Canceled,2019-02-01 -City Hotel,0,3,2016,October,45,4,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,0,No Deposit,17.0,331.0,0,Transient,36.37,1,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,March,8,15,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,11.0,219.0,0,Transient,116.51,0,2,Check-Out,2020-01-04 -City Hotel,0,37,2016,October,44,30,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,98.31,1,2,Check-Out,2019-06-03 -City Hotel,0,15,2017,April,19,16,0,1,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,91.78,0,1,Check-Out,2020-01-04 -Resort Hotel,0,31,2017,April,21,27,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient,115.1,0,0,Check-Out,2020-04-02 -City Hotel,0,252,2015,September,36,18,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,61,Contract,60.57,0,0,Canceled,2017-10-03 -City Hotel,0,0,2017,February,10,15,0,4,1,0.0,0,BB,GBR,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,118.0,1,1,Check-Out,2020-02-01 -Resort Hotel,1,271,2017,May,22,28,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,116.55,0,0,Canceled,2020-03-03 -Resort Hotel,0,144,2016,August,33,13,0,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Group,172.4,1,0,Check-Out,2019-05-04 -City Hotel,1,359,2016,August,36,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,189.72,0,0,Canceled,2020-02-01 -City Hotel,1,208,2017,January,3,13,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,79.46,0,2,Canceled,2019-10-04 -City Hotel,0,0,2016,December,53,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.22,0,3,Check-Out,2019-10-04 -Resort Hotel,0,321,2016,October,41,21,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Contract,76.29,0,2,Check-Out,2019-07-04 -Resort Hotel,0,45,2016,May,21,28,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,91.85,1,1,Check-Out,2019-02-01 -City Hotel,0,12,2016,October,43,25,2,5,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.2,0,2,Check-Out,2019-09-03 -City Hotel,1,11,2016,June,29,2,0,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,109.73,0,0,Check-Out,2019-03-04 -Resort Hotel,0,106,2017,July,33,28,2,4,2,0.0,0,HB,ESP,Direct,Corporate,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,194.33,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,January,4,13,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,59.95,1,0,Check-Out,2019-02-01 -City Hotel,1,257,2016,August,23,29,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,76.05,0,1,Canceled,2019-09-03 -Resort Hotel,0,4,2015,December,50,31,1,0,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,63.01,1,0,Check-Out,2019-02-01 -City Hotel,1,0,2017,January,3,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,70.35,0,0,Canceled,2019-09-03 -City Hotel,0,0,2017,August,35,12,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.49,0,2,Check-Out,2020-07-03 -City Hotel,1,11,2016,June,53,28,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,8.0,179.0,0,Transient,128.06,0,3,Canceled,2019-06-03 -Resort Hotel,1,303,2016,June,25,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,96.0,179.0,0,Transient,83.08,0,0,Canceled,2019-02-01 -Resort Hotel,1,55,2017,August,32,27,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Canceled,2018-08-03 -City Hotel,0,44,2016,November,45,20,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,117.63,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,January,50,21,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,H,0,No Deposit,15.0,248.0,0,Transient,36.96,0,0,Check-Out,2018-11-02 -Resort Hotel,0,106,2016,November,42,25,2,7,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,121.65,0,3,Check-Out,2019-07-04 -City Hotel,0,40,2016,December,53,23,1,4,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,C,F,3,No Deposit,11.0,179.0,0,Transient,175.72,0,1,Check-Out,2019-02-01 -City Hotel,1,139,2016,December,53,5,2,4,3,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,144.16,0,1,Canceled,2019-08-04 -City Hotel,0,33,2016,February,10,24,1,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,12.0,179.0,0,Transient,58.45,0,0,Check-Out,2019-02-01 -City Hotel,1,2,2017,January,10,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.3,0,0,Canceled,2019-11-03 -City Hotel,1,50,2016,September,37,3,1,1,3,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,129.8,0,0,Canceled,2019-07-04 -City Hotel,0,0,2016,May,16,29,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.73,0,1,Check-Out,2019-03-04 -City Hotel,0,217,2017,July,31,20,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,227.98,0,0,Check-Out,2020-06-02 -Resort Hotel,0,43,2016,May,23,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,207.05,1,3,Check-Out,2019-06-03 -City Hotel,0,13,2017,December,37,29,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.8,0,1,Canceled,2019-11-03 -City Hotel,0,145,2016,July,27,21,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.59,0,0,Check-Out,2019-04-03 -City Hotel,1,37,2017,May,19,5,1,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,164.13,0,1,Check-Out,2020-03-03 -Resort Hotel,0,37,2017,March,17,24,0,1,1,0.0,0,BB,ESP,Direct,Corporate,1,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,62.29,0,2,Check-Out,2020-01-04 -Resort Hotel,1,320,2017,June,25,19,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,82.1,0,3,Canceled,2019-12-04 -City Hotel,0,36,2016,July,26,5,1,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,217.09,0,1,Check-Out,2019-06-03 -City Hotel,0,416,2017,September,32,30,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.94,0,0,Check-Out,2018-08-03 -City Hotel,1,117,2015,August,33,31,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.19,0,0,Canceled,2018-05-03 -Resort Hotel,0,262,2016,September,42,2,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,117.52,0,2,Check-Out,2019-06-03 -City Hotel,0,47,2017,August,36,10,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,15.0,88.0,0,Transient,252.0,1,1,Check-Out,2020-04-02 -Resort Hotel,0,81,2016,August,16,24,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,163.62,0,0,Check-Out,2019-03-04 -City Hotel,0,37,2015,November,52,26,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,80.21,1,1,Check-Out,2019-10-04 -City Hotel,0,53,2017,June,26,5,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,106.1,0,1,Check-Out,2020-04-02 -City Hotel,0,64,2016,June,25,24,1,5,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,89.0,179.0,0,Transient,113.8,0,2,Check-Out,2019-05-04 -Resort Hotel,0,239,2017,July,28,19,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,206.69,0,1,Check-Out,2020-07-03 -Resort Hotel,1,61,2017,March,27,2,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,101.15,0,2,Canceled,2020-03-03 -City Hotel,0,1,2017,March,10,10,2,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,66.59,0,0,Check-Out,2020-01-04 -Resort Hotel,1,280,2016,March,17,31,1,2,2,0.0,0,HB,BEL,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,222.0,0,Transient-Party,63.34,0,0,Canceled,2019-02-01 -Resort Hotel,1,200,2017,July,25,13,2,5,2,0.0,0,HB,PRT,Online TA,Corporate,1,1,1,E,E,0,No Deposit,245.0,179.0,0,Transient,45.65,0,1,Canceled,2020-04-02 -City Hotel,1,242,2015,September,42,5,0,1,2,0.0,0,BB,PRT,Direct,Corporate,1,1,1,A,A,0,Non Refund,13.0,179.0,0,Group,42.36,0,0,Canceled,2018-06-02 -City Hotel,0,96,2016,July,38,7,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,85.3,1,1,Check-Out,2019-02-01 -City Hotel,1,412,2016,May,23,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.57,0,0,Canceled,2017-12-03 -City Hotel,1,190,2016,July,26,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,70.41,0,0,Canceled,2019-03-04 -Resort Hotel,1,0,2017,August,34,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,194.26,0,2,Canceled,2020-05-03 -City Hotel,0,87,2017,May,23,26,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,74.62,0,2,Check-Out,2020-03-03 -City Hotel,1,431,2016,April,17,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,20,Transient,62.13,0,0,Canceled,2019-11-03 -City Hotel,1,2,2017,March,9,23,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,106.52,0,0,Canceled,2019-02-01 -Resort Hotel,0,15,2017,February,11,6,0,1,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,1.34,0,2,Check-Out,2020-03-03 -Resort Hotel,0,6,2016,February,10,9,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,242.0,179.0,0,Transient,64.79,0,0,Check-Out,2019-02-01 -Resort Hotel,1,4,2017,January,2,27,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,1,0,A,A,0,Non Refund,14.0,79.0,0,Transient,47.73,0,0,Canceled,2019-10-04 -Resort Hotel,0,31,2015,December,50,30,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,46.53,1,1,Check-Out,2018-06-02 -Resort Hotel,1,13,2017,August,35,6,1,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,1,No Deposit,251.0,179.0,0,Transient,234.6,0,0,Canceled,2018-08-03 -City Hotel,1,88,2016,July,33,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.78,0,0,Canceled,2018-12-03 -Resort Hotel,1,165,2017,July,26,30,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,212.8,0,0,Canceled,2020-02-01 -Resort Hotel,1,50,2016,April,12,22,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,325.0,179.0,0,Transient,41.28,0,0,Canceled,2019-02-01 -City Hotel,0,56,2015,July,33,29,2,4,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,159.45,0,1,Canceled,2019-05-04 -City Hotel,0,40,2016,December,53,25,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,104.57,0,2,Check-Out,2019-11-03 -Resort Hotel,0,2,2015,July,33,25,0,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,25.25,1,0,Check-Out,2019-06-03 -City Hotel,1,53,2015,September,41,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,77.98,0,0,No-Show,2018-08-03 -City Hotel,1,111,2017,March,17,19,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.59,0,2,Canceled,2020-03-03 -City Hotel,0,2,2015,October,45,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,59.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,March,18,18,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Group,65.5,0,1,Check-Out,2019-03-04 -City Hotel,0,13,2016,February,8,13,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,153.0,179.0,0,Transient,39.2,0,0,Check-Out,2018-12-03 -City Hotel,0,79,2015,July,39,18,0,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,155.98,1,0,Check-Out,2018-06-02 -City Hotel,0,15,2017,August,37,15,1,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,102.38,0,3,Check-Out,2019-12-04 -Resort Hotel,0,31,2016,March,21,30,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,61.53,0,1,Check-Out,2019-03-04 -City Hotel,1,84,2015,September,36,25,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.25,0,2,Canceled,2019-05-04 -Resort Hotel,1,272,2016,May,28,16,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,191.08,0,1,Canceled,2019-02-01 -City Hotel,0,59,2017,March,17,15,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,148.8,0,2,Check-Out,2019-10-04 -City Hotel,0,0,2016,December,46,14,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,119.25,1,0,Check-Out,2018-09-02 -City Hotel,1,40,2017,March,16,14,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,33.32,0,0,Canceled,2020-02-01 -City Hotel,1,368,2016,February,11,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.02,0,0,Canceled,2018-11-02 -City Hotel,0,90,2016,March,4,28,1,1,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,72.87,0,0,Check-Out,2018-11-02 -Resort Hotel,0,12,2015,December,53,6,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient-Party,42.54,0,0,Check-Out,2018-06-02 -City Hotel,0,6,2017,April,20,9,0,1,2,0.0,0,BB,USA,Complementary,Corporate,1,0,1,A,K,2,No Deposit,13.0,79.0,0,Transient,0.0,0,2,Check-Out,2020-01-04 -Resort Hotel,0,12,2015,October,45,20,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,60.46,1,2,Check-Out,2018-07-03 -City Hotel,0,43,2016,January,3,5,1,4,2,0.0,0,BB,USA,Complementary,TA/TO,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,66.57,0,3,Check-Out,2019-10-04 -City Hotel,1,34,2016,December,49,7,1,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Group,68.73,0,1,Canceled,2019-10-04 -City Hotel,0,95,2016,March,10,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient,110.17,0,0,Canceled,2019-02-01 -Resort Hotel,1,258,2016,June,36,6,2,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,Non Refund,337.0,179.0,0,Transient,77.85,0,0,Canceled,2019-05-04 -City Hotel,1,115,2016,October,37,9,1,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,155.95,0,0,Canceled,2019-07-04 -Resort Hotel,0,113,2016,September,42,24,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,77.85,0,0,Check-Out,2019-08-04 -City Hotel,0,93,2016,November,44,9,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,9.0,179.0,0,Transient,147.59,0,3,Check-Out,2019-03-04 -City Hotel,0,254,2017,October,42,21,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,107.18,0,1,Check-Out,2020-07-03 -Resort Hotel,0,11,2017,August,41,4,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,L,F,3,No Deposit,17.0,179.0,0,Transient,0.9,0,0,Check-Out,2019-07-04 -City Hotel,1,59,2016,April,15,28,2,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient-Party,97.07,0,0,Canceled,2018-11-02 -City Hotel,0,0,2016,June,4,29,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.59,0,2,Canceled,2018-11-02 -Resort Hotel,1,250,2016,November,50,21,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,83.68,0,0,Canceled,2018-12-03 -Resort Hotel,1,20,2015,December,51,21,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,33.0,179.0,0,Transient,61.86,0,0,Canceled,2018-10-03 -City Hotel,0,46,2017,July,27,17,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,122.73,0,1,Check-Out,2020-06-02 -City Hotel,0,6,2016,September,36,13,2,5,1,1.0,0,BB,DEU,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,139.49,0,2,Check-Out,2019-05-04 -City Hotel,1,45,2017,July,32,8,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,213.16,0,1,Canceled,2020-05-03 -City Hotel,1,0,2017,April,21,9,0,1,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,15.0,258.0,0,Transient,3.13,0,0,Canceled,2019-12-04 -City Hotel,1,58,2017,February,9,17,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.7,0,1,Canceled,2020-02-01 -Resort Hotel,0,36,2017,February,13,10,0,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,88.0,331.0,0,Transient-Party,59.9,0,0,Check-Out,2020-01-04 -City Hotel,0,20,2015,September,48,17,2,2,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.16,0,0,Check-Out,2018-08-03 -Resort Hotel,0,49,2016,March,11,13,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,76.29,0,3,Check-Out,2019-11-03 -Resort Hotel,0,154,2016,March,13,4,0,2,2,0.0,0,BB,SWE,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,223.0,0,Transient,35.77,0,0,Canceled,2019-03-04 -City Hotel,0,49,2016,March,16,23,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient,76.32,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2016,March,12,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,45.0,0,Transient,38.5,0,0,Check-Out,2019-02-01 -Resort Hotel,0,15,2015,July,35,6,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,230.0,0,Transient,79.67,0,2,Check-Out,2018-08-03 -City Hotel,1,71,2016,March,10,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,Non Refund,10.0,179.0,0,Transient,81.26,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,August,36,9,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.44,0,1,Check-Out,2019-06-03 -City Hotel,0,6,2017,March,22,31,0,3,1,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.28,0,1,Check-Out,2020-03-03 -City Hotel,0,274,2017,July,31,29,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,193.65,0,2,Check-Out,2020-07-03 -City Hotel,1,45,2016,May,44,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,60,Transient,60.05,0,0,Canceled,2018-12-03 -Resort Hotel,0,274,2017,August,35,31,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,104.78,0,1,Check-Out,2020-06-02 -City Hotel,1,127,2017,March,8,28,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,164.52,0,3,Canceled,2020-01-04 -City Hotel,0,5,2016,October,53,28,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,240.8,0,2,Check-Out,2019-09-03 -City Hotel,0,2,2017,May,21,27,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,132.65,1,0,Check-Out,2020-03-03 -City Hotel,0,43,2017,April,22,16,1,2,2,0.0,0,HB,GBR,Groups,Corporate,1,0,0,A,A,0,Non Refund,311.0,179.0,0,Transient-Party,74.02,0,0,Check-Out,2020-03-03 -City Hotel,0,42,2016,October,42,30,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.13,0,3,Check-Out,2019-08-04 -City Hotel,0,0,2017,April,16,28,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,136.9,0,1,Check-Out,2020-03-03 -Resort Hotel,0,15,2017,May,21,9,0,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,297.0,179.0,0,Contract,79.98,0,0,Check-Out,2020-01-04 -City Hotel,0,2,2016,March,17,28,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,G,0,No Deposit,17.0,179.0,0,Transient,96.27,0,0,Check-Out,2019-02-01 -City Hotel,1,262,2017,August,35,2,2,1,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,190.49,0,0,Canceled,2020-07-03 -City Hotel,0,48,2016,May,23,26,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,111.6,0,1,Check-Out,2019-03-04 -City Hotel,0,232,2015,July,29,17,2,1,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,110.05,0,1,Check-Out,2018-06-02 -Resort Hotel,0,13,2016,April,20,9,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,83.09,0,0,Check-Out,2019-02-01 -City Hotel,0,17,2017,May,22,23,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient-Party,210.57,0,1,Check-Out,2020-02-01 -Resort Hotel,0,148,2017,February,3,27,0,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,63.49,0,1,Check-Out,2019-11-03 -City Hotel,0,52,2017,August,35,2,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,143.46,0,2,Check-Out,2020-07-03 -City Hotel,0,21,2016,November,51,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient,74.97,0,0,Check-Out,2018-11-02 -City Hotel,0,45,2017,June,27,17,1,0,2,0.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Group,252.0,0,0,Check-Out,2019-05-04 -City Hotel,1,0,2016,January,10,19,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,58.39,0,1,No-Show,2018-12-03 -City Hotel,1,239,2017,July,26,2,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,123.0,179.0,0,Transient-Party,121.38,0,0,Canceled,2020-07-03 -City Hotel,0,7,2016,April,17,25,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,58.05,0,0,Check-Out,2019-01-03 -City Hotel,1,150,2015,August,40,25,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,199.47,0,0,Canceled,2018-07-03 -Resort Hotel,0,31,2015,September,42,25,2,5,1,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,49.64,0,0,Check-Out,2018-07-03 -City Hotel,0,21,2016,April,16,28,2,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,56.31,0,0,Check-Out,2019-01-03 -Resort Hotel,0,14,2016,October,27,18,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,237.0,0,Transient,44.99,0,0,Check-Out,2019-06-03 -City Hotel,1,7,2017,June,21,2,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,97.03,0,0,Canceled,2020-03-03 -City Hotel,0,16,2017,March,10,16,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,63.67,0,0,Check-Out,2020-01-04 -City Hotel,1,109,2016,December,53,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,131.0,179.0,0,Transient-Party,65.12,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,August,38,2,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,17.0,179.0,0,Transient,128.54,1,1,Check-Out,2020-06-02 -City Hotel,1,2,2017,August,36,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,170.5,0,0,Canceled,2020-06-02 -City Hotel,1,337,2016,September,39,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,119.25,0,1,Canceled,2018-01-31 -City Hotel,1,290,2015,September,46,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,57.71,0,0,Canceled,2018-06-02 -City Hotel,0,3,2017,September,41,26,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,A,1,No Deposit,10.0,222.0,0,Group,92.81,0,1,Check-Out,2019-08-04 -City Hotel,0,37,2017,July,9,21,2,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,No Deposit,17.0,179.0,0,Transient,104.78,1,1,Check-Out,2020-02-01 -Resort Hotel,1,49,2016,June,20,6,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,135.0,179.0,40,Transient,76.55,0,0,Canceled,2018-12-03 -Resort Hotel,0,152,2016,June,23,18,1,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,280.0,179.0,0,Transient,119.17,0,2,Check-Out,2019-01-03 -City Hotel,1,16,2016,December,52,30,0,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,E,0,Non Refund,12.0,179.0,0,Transient-Party,62.16,0,0,Canceled,2018-12-03 -Resort Hotel,0,3,2017,May,25,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,18.0,331.0,0,Transient,161.06,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2017,February,8,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,38.0,331.0,0,Transient,83.98,0,0,Check-Out,2020-02-01 -City Hotel,0,22,2015,August,37,5,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,C,1,No Deposit,17.0,179.0,0,Transient,123.23,0,0,Check-Out,2018-06-02 -Resort Hotel,0,21,2016,August,35,29,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,129.46,0,0,Check-Out,2019-05-04 -Resort Hotel,0,12,2016,September,29,28,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,193.57,0,0,Check-Out,2019-08-04 -Resort Hotel,0,253,2016,October,40,5,2,7,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient,106.58,0,0,Check-Out,2019-07-04 -Resort Hotel,0,87,2016,October,43,28,2,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient-Party,41.13,0,0,Check-Out,2019-12-04 -Resort Hotel,1,375,2015,October,45,25,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,258.0,179.0,0,Transient-Party,62.35,0,0,Canceled,2018-08-03 -City Hotel,1,103,2015,June,32,19,2,2,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,0,A,A,0,Non Refund,31.0,45.0,0,Transient,126.48,0,0,Canceled,2018-08-03 -City Hotel,0,39,2016,January,5,31,0,3,2,0.0,0,BB,GBR,Corporate,TA/TO,1,0,1,A,D,0,No Deposit,9.0,179.0,59,Group,70.64,0,1,Check-Out,2019-09-03 -Resort Hotel,1,100,2015,December,53,11,2,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,62.28,0,0,Canceled,2017-12-03 -City Hotel,1,58,2016,November,50,19,0,2,3,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,63.62,0,0,Canceled,2019-08-04 -City Hotel,1,232,2016,July,33,21,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,147.15,0,0,Canceled,2019-05-04 -City Hotel,1,50,2016,September,44,20,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,158.0,179.0,0,Transient,84.71,0,0,Canceled,2019-08-04 -Resort Hotel,0,120,2016,July,32,17,3,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,84.73,0,0,Check-Out,2019-04-03 -City Hotel,0,237,2017,May,22,16,2,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,F,2,No Deposit,9.0,179.0,0,Transient,128.27,0,3,Check-Out,2020-03-03 -Resort Hotel,0,266,2017,June,25,12,2,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,120.92,0,0,Check-Out,2020-02-01 -Resort Hotel,1,147,2016,February,17,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,131.0,179.0,0,Transient,37.81,0,0,No-Show,2019-04-03 -City Hotel,0,0,2016,October,43,22,1,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.71,0,2,Check-Out,2019-08-04 -City Hotel,1,33,2016,July,30,9,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,136.68,0,0,Canceled,2019-02-01 -Resort Hotel,0,4,2016,September,37,10,3,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,148.06,0,1,Check-Out,2019-05-04 -City Hotel,0,14,2015,July,33,10,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.6,0,0,Check-Out,2018-06-02 -Resort Hotel,1,161,2016,August,34,14,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,44.15,1,0,Canceled,2018-12-03 -Resort Hotel,1,266,2016,July,32,15,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,195.54,0,1,Canceled,2020-05-03 -City Hotel,0,46,2016,April,17,25,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,44.19,0,1,Check-Out,2019-02-01 -Resort Hotel,0,35,2016,February,10,14,2,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,68.81,0,1,Check-Out,2018-12-03 -City Hotel,0,165,2016,July,20,10,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,83.88,0,0,Check-Out,2019-03-04 -City Hotel,1,91,2016,March,9,13,2,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,95.55,0,1,Canceled,2019-02-01 -City Hotel,1,175,2017,May,23,23,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,119.61,0,0,Canceled,2020-02-01 -City Hotel,1,15,2016,November,4,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,60.17,0,0,Canceled,2018-12-03 -Resort Hotel,0,9,2016,February,9,3,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,77.26,0,0,Check-Out,2019-04-03 -City Hotel,0,12,2016,October,43,24,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,82.47,0,2,Check-Out,2019-09-03 -City Hotel,0,1,2017,April,19,6,1,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.79,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2015,September,44,18,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,41.35,0,1,Check-Out,2018-09-02 -City Hotel,1,43,2016,March,11,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,37,Transient,62.7,0,0,Canceled,2018-11-02 -City Hotel,0,1,2015,August,37,24,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,161.6,0,0,Check-Out,2018-06-02 -City Hotel,0,36,2016,February,10,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Transient,63.75,0,1,Check-Out,2019-02-01 -Resort Hotel,0,146,2016,February,8,6,0,1,2,0.0,0,HB,,Corporate,Direct,0,0,0,A,A,2,No Deposit,321.0,179.0,0,Transient,62.14,1,0,Check-Out,2019-03-04 -City Hotel,0,2,2017,July,21,12,0,1,2,0.0,0,BB,USA,Direct,GDS,0,0,0,A,A,0,No Deposit,12.0,236.0,0,Transient-Party,96.78,0,0,Check-Out,2020-04-02 -City Hotel,0,38,2016,December,50,28,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,120.83,0,1,Check-Out,2019-12-04 -City Hotel,1,109,2017,March,11,24,2,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,121.76,0,0,Canceled,2020-02-01 -City Hotel,1,26,2016,March,9,22,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,40.16,0,0,Canceled,2018-11-02 -City Hotel,0,106,2016,July,34,30,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.3,1,2,Check-Out,2019-03-04 -Resort Hotel,0,158,2017,July,31,22,2,4,2,0.0,0,BB,,Direct,Direct,0,0,0,G,G,2,No Deposit,16.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-05-03 -City Hotel,0,3,2017,January,7,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,A,0,No Deposit,19.0,179.0,0,Transient,77.87,0,3,Check-Out,2020-06-02 -City Hotel,0,98,2017,July,30,4,1,0,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,109.15,0,0,Check-Out,2020-06-02 -City Hotel,1,152,2017,March,18,14,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,E,0,No Deposit,155.0,179.0,0,Transient,130.56,0,0,Canceled,2020-03-03 -Resort Hotel,1,165,2017,July,33,6,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,154.08,0,1,Canceled,2020-03-03 -Resort Hotel,0,60,2016,February,9,30,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,187.85,1,2,Check-Out,2019-03-04 -Resort Hotel,1,47,2017,July,7,31,2,5,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,103.42,1,0,Canceled,2019-10-04 -City Hotel,0,23,2016,March,10,30,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Group,64.85,0,0,Check-Out,2019-02-01 -Resort Hotel,0,8,2016,June,26,26,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,I,1,No Deposit,11.0,45.0,0,Transient,62.62,0,0,Check-Out,2019-04-03 -City Hotel,1,4,2015,October,42,18,1,6,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.27,0,2,Canceled,2018-08-03 -Resort Hotel,0,85,2017,March,17,21,4,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,D,2,No Deposit,240.0,179.0,0,Transient,152.57,1,1,Check-Out,2020-03-03 -Resort Hotel,0,17,2015,July,30,16,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,0,E,I,1,No Deposit,243.0,179.0,75,Transient-Party,68.35,1,2,Check-Out,2019-04-03 -Resort Hotel,0,145,2016,August,32,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,152.43,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2015,November,50,27,0,1,1,0.0,0,FB,,Direct,Direct,0,0,0,A,D,2,No Deposit,16.0,179.0,0,Transient,120.77,0,0,Check-Out,2018-08-03 -Resort Hotel,0,99,2016,December,5,31,0,5,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,251.0,179.0,0,Transient,240.08,0,0,Check-Out,2019-10-04 -City Hotel,0,37,2015,July,31,15,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,93.97,0,2,Check-Out,2018-05-03 -City Hotel,0,317,2017,July,34,24,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.1,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,November,42,20,2,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,46.74,0,0,Check-Out,2018-08-03 -Resort Hotel,0,4,2016,October,43,15,1,1,2,0.0,0,BB,DEU,Direct,Direct,1,0,1,A,A,0,No Deposit,354.0,179.0,0,Transient,69.86,0,0,Check-Out,2018-08-03 -City Hotel,1,50,2015,July,36,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,H,0,No Deposit,1.0,179.0,0,Transient-Party,60.72,0,0,Canceled,2018-06-02 -City Hotel,0,10,2017,February,21,6,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.61,0,2,Check-Out,2020-04-02 -City Hotel,1,284,2017,July,32,7,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,8.0,179.0,0,Transient,178.67,0,0,Canceled,2020-07-03 -City Hotel,0,34,2016,March,17,28,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.58,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2015,October,42,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,52.0,0,Transient-Party,67.36,0,0,Check-Out,2018-09-02 -Resort Hotel,0,38,2017,March,16,20,2,3,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,223.0,0,Transient,68.31,0,0,Check-Out,2020-04-02 -City Hotel,1,47,2016,April,17,16,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,40,Transient,89.84,0,0,Canceled,2018-10-03 -Resort Hotel,0,13,2017,January,11,21,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,63.03,1,0,Check-Out,2019-11-03 -Resort Hotel,0,104,2016,February,10,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,309.0,331.0,0,Transient-Party,42.59,0,1,Check-Out,2019-02-01 -City Hotel,1,2,2015,May,26,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,58.0,0,Transient,59.18,0,0,Canceled,2018-01-03 -Resort Hotel,0,35,2015,October,44,10,0,1,1,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,C,0,No Deposit,85.0,179.0,0,Transient-Party,109.49,0,0,Check-Out,2018-09-02 -City Hotel,0,44,2016,December,53,30,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,B,0,No Deposit,10.0,179.0,0,Transient,97.44,0,0,Check-Out,2019-10-04 -City Hotel,1,266,2016,July,32,26,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,147.12,0,0,Canceled,2019-08-04 -City Hotel,0,38,2016,April,21,16,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,101.32,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,May,24,29,1,3,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,92.65,1,2,Check-Out,2019-09-03 -City Hotel,1,1,2015,February,10,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.07,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,December,51,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,0,No Deposit,17.0,247.0,0,Transient,29.17,0,0,Check-Out,2019-12-04 -City Hotel,0,87,2017,May,22,26,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.12,0,1,Check-Out,2020-03-03 -City Hotel,1,65,2016,March,10,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.93,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,April,14,10,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,76.95,0,1,Check-Out,2019-01-03 -City Hotel,0,116,2017,April,23,27,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,102.52,0,3,Check-Out,2020-04-02 -City Hotel,0,47,2017,June,22,12,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,186.05,0,0,Check-Out,2020-03-03 -City Hotel,1,48,2016,July,32,21,1,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.43,0,2,Canceled,2019-08-04 -City Hotel,0,22,2016,August,31,14,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.39,0,0,Check-Out,2019-06-03 -City Hotel,1,29,2016,August,16,13,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,153.83,0,3,Canceled,2019-11-03 -City Hotel,1,404,2017,July,31,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.74,0,0,Canceled,2017-12-03 -Resort Hotel,0,257,2016,September,36,13,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,131.25,0,3,Check-Out,2019-04-03 -Resort Hotel,0,118,2016,June,21,30,3,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,75,Transient,177.62,0,0,Check-Out,2019-03-04 -City Hotel,0,77,2016,June,26,7,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,113.68,1,1,Check-Out,2019-06-03 -City Hotel,1,211,2017,August,35,9,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,200.2,0,0,Canceled,2019-08-04 -City Hotel,0,167,2015,August,32,9,2,1,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,85.46,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2017,May,18,26,1,0,1,1.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,70.27,1,0,Check-Out,2020-02-01 -City Hotel,1,397,2017,May,27,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,117.06,0,0,Canceled,2020-06-02 -City Hotel,1,170,2015,August,32,9,2,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,152.74,0,0,Canceled,2018-05-03 -Resort Hotel,1,47,2016,July,32,10,1,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,217.38,0,0,Canceled,2020-02-01 -City Hotel,0,0,2016,May,22,28,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,91.88,0,0,Check-Out,2019-02-01 -Resort Hotel,0,15,2017,February,9,28,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,31.0,179.0,0,Transient-Party,97.91,0,0,Check-Out,2020-02-01 -City Hotel,1,429,2016,October,36,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,83.0,179.0,0,Transient,59.07,0,0,Canceled,2018-08-03 -Resort Hotel,0,234,2015,October,43,21,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,39.11,0,0,Check-Out,2018-08-03 -City Hotel,0,26,2015,October,43,21,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,136.48,0,1,Check-Out,2018-09-02 -City Hotel,1,54,2015,September,43,9,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,68.72,0,0,Canceled,2018-08-03 -City Hotel,1,11,2017,January,7,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,59.91,0,2,No-Show,2019-11-03 -Resort Hotel,1,64,2017,July,36,16,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,171.41,0,1,Canceled,2020-03-03 -Resort Hotel,0,92,2015,July,37,2,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,65.15,0,0,Check-Out,2018-05-03 -City Hotel,0,4,2016,October,42,7,2,2,1,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,112.63,0,2,Check-Out,2019-07-04 -City Hotel,1,151,2017,June,20,15,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,116.97,0,1,Canceled,2019-12-04 -City Hotel,0,119,2015,December,50,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,20.0,179.0,0,Transient-Party,36.26,1,0,Check-Out,2018-08-03 -City Hotel,0,153,2016,August,37,5,2,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Transient,167.6,0,1,Check-Out,2019-06-03 -City Hotel,1,358,2016,October,44,26,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,70.3,0,0,Canceled,2019-08-04 -Resort Hotel,0,24,2016,December,53,24,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,71.19,1,1,Check-Out,2019-09-03 -Resort Hotel,0,109,2016,May,27,3,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,71.22,0,1,Check-Out,2019-05-04 -City Hotel,0,34,2016,December,44,28,1,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,88.62,0,0,Check-Out,2019-05-04 -Resort Hotel,0,257,2017,June,26,7,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,316.0,179.0,0,Transient-Party,107.86,0,1,Check-Out,2020-03-03 -Resort Hotel,1,16,2016,January,9,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,238.0,179.0,0,Transient,176.81,0,3,Canceled,2019-11-03 -Resort Hotel,0,98,2016,January,8,15,0,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,69.9,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2016,January,4,13,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,50.15,0,0,Check-Out,2018-06-02 -City Hotel,0,14,2016,December,50,29,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.97,0,2,Check-Out,2019-12-04 -City Hotel,1,219,2015,October,51,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.64,0,0,Canceled,2018-09-02 -Resort Hotel,0,2,2017,January,8,5,2,1,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.02,0,0,Check-Out,2020-06-02 -City Hotel,0,10,2016,June,16,2,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,95.92,0,0,Check-Out,2019-03-04 -City Hotel,1,42,2016,September,43,30,0,3,3,1.0,0,BB,ISR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,7.0,179.0,0,Transient,137.77,0,0,Canceled,2019-06-03 -Resort Hotel,0,35,2016,December,11,2,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,39.9,0,0,Check-Out,2019-01-03 -Resort Hotel,0,4,2017,January,9,4,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,156.63,0,1,Check-Out,2020-03-03 -City Hotel,1,103,2017,October,21,4,1,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,126.51,0,1,Canceled,2019-10-04 -City Hotel,1,164,2016,July,32,30,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,130.68,0,0,Canceled,2018-05-03 -Resort Hotel,0,16,2016,May,17,28,2,2,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,80.58,0,0,Check-Out,2019-07-04 -City Hotel,1,88,2017,May,43,25,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.44,0,1,Canceled,2020-03-03 -City Hotel,0,255,2016,July,32,12,2,5,3,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,124.56,0,3,Check-Out,2020-05-03 -Resort Hotel,0,36,2017,February,11,29,0,2,2,0.0,0,HB,PRT,Direct,Corporate,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient,202.37,0,0,Check-Out,2020-02-01 -City Hotel,1,39,2017,March,23,12,2,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,34.0,179.0,0,Transient,63.69,0,0,Canceled,2020-03-03 -City Hotel,0,0,2016,February,11,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,319.0,82.0,0,Transient,59.97,0,0,Check-Out,2019-02-01 -Resort Hotel,0,47,2016,July,32,28,1,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,175.0,179.0,0,Contract,63.67,0,0,Check-Out,2019-06-03 -City Hotel,1,57,2016,October,45,28,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,129.8,0,0,Canceled,2019-07-04 -Resort Hotel,0,41,2016,December,50,26,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,378.0,179.0,23,Transient-Party,68.61,0,0,Check-Out,2019-12-04 -Resort Hotel,1,165,2016,August,39,29,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,240.0,179.0,0,Transient,210.08,0,0,Canceled,2019-08-04 -City Hotel,0,15,2017,April,24,29,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,118.14,1,1,Check-Out,2020-04-02 -Resort Hotel,0,10,2017,April,17,29,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,197.0,0,Transient,78.09,1,1,Check-Out,2020-03-03 -City Hotel,0,91,2016,March,16,10,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,79.63,0,0,Check-Out,2019-03-04 -Resort Hotel,0,7,2016,August,21,30,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,224.81,1,2,Check-Out,2019-06-03 -Resort Hotel,1,0,2016,January,6,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,128.0,179.0,0,Transient,31.5,0,0,No-Show,2018-11-02 -Resort Hotel,0,146,2017,May,31,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Contract,88.52,0,3,Check-Out,2020-06-02 -Resort Hotel,0,168,2016,November,42,28,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,68.0,0,2,Check-Out,2019-09-03 -Resort Hotel,0,49,2017,July,31,27,2,9,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,2,No Deposit,251.0,179.0,0,Transient,196.69,1,0,Check-Out,2020-06-02 -Resort Hotel,0,150,2016,August,35,21,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,214.9,1,1,Check-Out,2019-05-04 -City Hotel,1,9,2015,October,51,9,0,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,118.36,0,0,No-Show,2018-08-03 -Resort Hotel,0,3,2015,December,50,8,2,5,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,39.52,0,0,Check-Out,2018-11-02 -Resort Hotel,0,34,2016,March,16,13,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient-Party,70.82,0,0,Check-Out,2018-11-02 -Resort Hotel,0,41,2016,February,9,18,1,5,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,12.0,179.0,0,Transient,107.81,0,0,Check-Out,2018-11-02 -Resort Hotel,0,100,2016,October,44,26,4,10,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,186.89,0,3,Check-Out,2019-07-04 -City Hotel,0,21,2016,June,27,15,0,2,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,D,A,2,No Deposit,181.0,179.0,0,Transient,94.86,0,0,Check-Out,2019-06-03 -City Hotel,0,15,2016,October,46,9,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient-Party,70.56,0,0,Check-Out,2019-09-03 -City Hotel,1,9,2016,August,37,16,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,175.22,0,0,Canceled,2019-07-04 -City Hotel,0,2,2017,June,17,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,85.47,0,2,Check-Out,2020-02-01 -Resort Hotel,0,26,2016,August,37,19,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,123.94,1,2,Check-Out,2019-05-04 -Resort Hotel,0,207,2016,July,30,13,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,116.29,0,2,Check-Out,2019-04-03 -Resort Hotel,1,168,2017,July,32,18,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,86.97,0,0,Canceled,2020-06-02 -City Hotel,1,113,2016,May,16,6,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,106.78,0,2,Canceled,2019-10-04 -City Hotel,0,15,2015,September,37,9,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,113.7,0,1,Check-Out,2018-08-03 -Resort Hotel,0,58,2017,March,16,12,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,114.83,0,1,Check-Out,2020-02-01 -City Hotel,0,13,2017,January,8,10,1,0,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,71.99,0,2,Check-Out,2019-10-04 -Resort Hotel,0,47,2016,December,53,25,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,241.0,179.0,0,Transient,135.36,1,0,Check-Out,2019-10-04 -City Hotel,1,141,2016,July,32,15,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,141.9,0,0,Canceled,2018-12-03 -Resort Hotel,0,6,2017,March,10,28,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,71.36,0,3,Check-Out,2020-03-03 -City Hotel,1,96,2016,June,28,29,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,66.0,0,Transient,95.37,0,0,Check-Out,2019-07-04 -City Hotel,0,27,2015,September,35,3,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Contract,132.72,0,0,Check-Out,2018-01-03 -City Hotel,1,199,2017,August,33,15,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,213.94,0,0,Canceled,2019-10-04 -City Hotel,0,1,2016,September,36,21,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,1,0,0,A,F,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-07-04 -City Hotel,0,49,2017,February,11,5,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.1,0,2,Check-Out,2019-10-04 -City Hotel,0,0,2017,January,11,25,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,156.33,0,1,Check-Out,2020-05-03 -Resort Hotel,0,155,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,3,Refundable,13.0,223.0,0,Transient-Party,45.22,0,0,Canceled,2019-02-01 -City Hotel,0,184,2016,August,35,24,3,4,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,94.0,179.0,0,Transient-Party,114.86,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2017,May,17,24,0,1,1,0.0,0,BB,DEU,Corporate,Corporate,1,0,1,D,D,1,No Deposit,10.0,232.0,0,Transient,74.29,0,0,Check-Out,2020-02-01 -City Hotel,1,197,2017,May,23,7,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,76.06,0,3,Canceled,2020-04-02 -City Hotel,1,3,2016,October,42,27,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.31,0,0,Canceled,2019-09-03 -Resort Hotel,0,126,2016,August,31,20,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,69.37,0,1,Check-Out,2019-04-03 -City Hotel,1,244,2016,July,28,21,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,100.74,0,2,Canceled,2019-04-03 -City Hotel,1,111,2015,October,45,27,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,D,0,Non Refund,40.0,179.0,0,Transient,120.7,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,November,44,13,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.38,1,0,Check-Out,2019-07-04 -City Hotel,1,217,2017,March,15,10,1,3,2,0.0,0,BB,CHE,Groups,TA/TO,0,0,0,A,D,0,Non Refund,11.0,179.0,0,Transient,76.02,0,0,Canceled,2020-02-01 -Resort Hotel,0,189,2016,October,45,6,2,5,1,0.0,0,Undefined,GBR,Aviation,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.3,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,March,17,22,1,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,76.74,0,0,Check-Out,2019-03-04 -Resort Hotel,1,159,2016,June,27,25,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,72.0,179.0,0,Transient,61.36,0,0,Canceled,2019-03-04 -City Hotel,0,3,2017,May,8,27,0,1,2,0.0,0,HB,ITA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,120.91,0,0,Check-Out,2019-09-03 -Resort Hotel,0,17,2017,February,10,9,2,3,2,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,291.0,179.0,0,Transient-Party,77.97,0,0,Check-Out,2020-03-03 -City Hotel,0,238,2016,October,44,6,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,98.21,0,0,Check-Out,2019-09-03 -City Hotel,1,147,2016,April,8,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,39,Transient,111.81,0,0,Canceled,2018-11-02 -Resort Hotel,0,13,2016,October,44,6,4,1,2,0.0,0,HB,AUT,Groups,Corporate,1,0,1,E,I,1,No Deposit,11.0,222.0,75,Transient-Party,105.75,1,1,Check-Out,2019-05-04 -City Hotel,0,53,2016,May,23,10,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,220.55,0,1,Check-Out,2019-06-03 -Resort Hotel,1,105,2015,September,35,19,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,304.0,179.0,0,Transient-Party,88.16,0,0,Canceled,2018-05-03 -City Hotel,0,3,2016,February,10,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,72.0,0,Transient,34.73,0,0,Check-Out,2018-12-03 -City Hotel,0,100,2016,June,43,26,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.22,0,1,Check-Out,2019-02-01 -Resort Hotel,1,156,2016,August,35,30,0,4,3,1.0,0,FB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,190.17,0,0,Canceled,2019-06-03 -City Hotel,0,48,2016,September,42,20,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,107.62,0,0,Check-Out,2019-08-04 -City Hotel,1,106,2016,June,19,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,69.64,0,0,Canceled,2019-01-03 -Resort Hotel,0,25,2017,May,23,6,1,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,245.0,179.0,0,Transient,124.14,0,0,Check-Out,2020-04-02 -City Hotel,0,265,2016,June,28,10,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,103.81,0,1,Check-Out,2020-06-02 -Resort Hotel,1,90,2017,February,9,21,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,87.0,179.0,0,Transient,29.28,0,0,Canceled,2020-04-02 -Resort Hotel,0,0,2017,March,10,15,1,1,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,1,No Deposit,18.0,179.0,75,Transient-Party,0.0,1,0,Check-Out,2019-11-03 -Resort Hotel,0,50,2016,June,21,26,1,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,L,H,0,No Deposit,249.0,179.0,0,Transient,199.43,0,1,Check-Out,2019-03-04 -City Hotel,1,1,2016,December,53,26,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,226.0,0,Transient,77.3,0,0,Canceled,2018-11-02 -City Hotel,1,40,2016,August,29,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,160.22,0,1,Canceled,2019-06-03 -City Hotel,0,261,2016,October,43,27,0,3,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,83.6,0,0,Check-Out,2018-08-03 -Resort Hotel,0,12,2016,August,27,12,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,113.51,0,1,Check-Out,2019-04-03 -City Hotel,0,40,2016,September,21,21,1,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,161.8,1,3,Check-Out,2019-05-04 -City Hotel,0,109,2017,May,16,14,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.58,0,2,Check-Out,2020-03-03 -Resort Hotel,0,8,2016,April,17,3,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.14,0,0,Check-Out,2019-02-01 -City Hotel,0,153,2017,August,37,13,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.82,0,3,Check-Out,2019-11-03 -Resort Hotel,0,4,2016,December,49,18,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Contract,64.93,0,1,Check-Out,2018-11-02 -City Hotel,0,3,2017,March,36,12,0,1,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,169.0,179.0,0,Transient,158.71,0,0,Check-Out,2020-06-02 -City Hotel,1,1,2015,September,31,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,2,Non Refund,16.0,45.0,0,Transient-Party,62.65,0,0,Canceled,2018-05-03 -Resort Hotel,0,107,2016,August,38,29,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Group,74.62,0,0,Check-Out,2019-06-03 -City Hotel,0,201,2016,September,38,30,0,3,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,139.24,0,0,Check-Out,2019-05-04 -City Hotel,0,94,2016,December,53,30,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.8,0,1,Check-Out,2019-10-04 -City Hotel,0,243,2016,December,51,27,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,60,Transient-Party,79.19,0,0,Check-Out,2019-11-03 -City Hotel,1,144,2016,May,39,12,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.65,0,0,Canceled,2019-04-03 -City Hotel,0,0,2017,June,26,22,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,112.17,0,1,Check-Out,2019-11-03 -City Hotel,0,36,2015,October,47,25,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,81.0,0,Transient-Party,114.57,0,0,Check-Out,2018-10-03 -City Hotel,1,252,2015,September,46,22,2,6,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Transient,70.59,0,0,Canceled,2018-08-03 -City Hotel,0,102,2016,October,49,19,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,75.16,0,0,Check-Out,2019-11-03 -City Hotel,0,85,2015,October,32,20,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,109.41,0,0,Check-Out,2018-08-03 -Resort Hotel,0,10,2016,December,50,19,1,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,194.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-10-04 -City Hotel,1,318,2017,July,39,19,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.54,0,0,Canceled,2018-08-03 -City Hotel,0,158,2017,August,35,6,2,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.57,0,1,Check-Out,2020-03-03 -Resort Hotel,0,22,2016,April,18,24,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,133.0,179.0,0,Transient,105.79,1,0,Check-Out,2019-04-03 -City Hotel,1,206,2015,September,44,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Contract,61.19,0,0,Canceled,2017-10-03 -Resort Hotel,0,0,2017,May,22,7,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,I,2,No Deposit,248.0,179.0,0,Transient-Party,78.46,0,0,Check-Out,2020-05-03 -City Hotel,0,149,2016,December,51,26,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,60,Transient,74.79,0,0,Check-Out,2018-11-02 -City Hotel,0,107,2016,February,10,20,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,81.32,0,0,Check-Out,2018-12-03 -Resort Hotel,0,47,2015,December,51,28,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,35.01,0,1,Check-Out,2018-12-03 -Resort Hotel,0,155,2016,December,53,27,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,117.39,1,2,Check-Out,2019-08-04 -Resort Hotel,0,48,2017,March,10,10,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,153.08,1,1,Check-Out,2020-03-03 -City Hotel,1,107,2017,March,9,12,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.72,0,0,Canceled,2019-01-03 -City Hotel,1,96,2016,January,9,6,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,70.18,0,2,Canceled,2018-11-02 -City Hotel,1,410,2016,October,45,21,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,186.0,179.0,66,Transient,87.72,0,0,Canceled,2018-09-02 -Resort Hotel,0,167,2017,March,16,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,221.0,0,Transient-Party,79.53,0,0,Check-Out,2020-02-01 -City Hotel,1,212,2017,July,29,31,2,3,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,116.52,0,0,Canceled,2019-10-04 -City Hotel,1,26,2016,March,10,20,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,88.74,0,0,Canceled,2019-02-01 -Resort Hotel,0,9,2015,September,39,15,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,190.32,0,0,Check-Out,2018-08-03 -City Hotel,0,25,2017,February,9,10,0,2,1,2.0,0,BB,PRT,Online TA,TA/TO,1,0,0,E,F,1,No Deposit,11.0,56.0,0,Group,117.12,0,1,Check-Out,2019-09-03 -City Hotel,1,106,2016,May,22,31,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,186.0,179.0,0,Transient,200.43,0,0,Canceled,2019-11-03 -City Hotel,0,42,2016,November,49,26,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,263.0,0,Transient-Party,65.99,0,0,Check-Out,2019-11-03 -Resort Hotel,1,88,2016,November,51,28,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,34.0,179.0,0,Transient,81.45,0,0,Canceled,2019-07-04 -Resort Hotel,0,2,2015,December,53,15,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,78.52,0,0,Check-Out,2018-05-03 -City Hotel,0,0,2017,May,24,18,1,0,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,D,1,No Deposit,16.0,151.0,0,Transient,113.31,0,1,Check-Out,2020-04-02 -City Hotel,0,41,2015,October,42,5,0,1,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,60.58,0,2,Check-Out,2018-09-02 -City Hotel,0,19,2016,June,45,12,0,1,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,95.66,0,0,Check-Out,2019-03-04 -City Hotel,1,1,2016,March,10,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,11.0,179.0,0,Transient,116.13,0,0,Canceled,2019-02-01 -City Hotel,1,154,2017,June,28,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,114.86,0,0,Canceled,2019-05-04 -City Hotel,0,42,2016,January,50,6,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,30.85,0,3,Check-Out,2018-09-02 -City Hotel,0,86,2015,December,51,25,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,77.78,0,0,Check-Out,2018-08-03 -City Hotel,0,116,2017,May,18,5,1,0,1,0.0,0,SC,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,89.32,0,0,Check-Out,2020-03-03 -Resort Hotel,0,181,2017,June,27,15,4,10,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,118.06,0,2,Check-Out,2020-03-03 -City Hotel,0,92,2016,April,15,18,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,41,Transient-Party,62.8,0,0,Check-Out,2019-03-04 -Resort Hotel,1,37,2016,January,4,25,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,39.16,0,0,Canceled,2018-12-03 -City Hotel,1,232,2015,July,33,5,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,88.68,0,0,Canceled,2018-06-02 -City Hotel,0,9,2017,January,11,13,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.81,0,1,Check-Out,2019-11-03 -Resort Hotel,0,49,2015,November,53,14,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,72.0,179.0,0,Transient-Party,65.93,0,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2016,February,11,28,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,79.88,0,0,Check-Out,2019-10-04 -Resort Hotel,0,3,2015,July,44,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,71.79,0,0,Check-Out,2018-06-02 -Resort Hotel,0,107,2015,July,31,13,2,5,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,215.18,0,2,Check-Out,2018-06-02 -City Hotel,1,104,2016,October,43,26,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,95.59,0,0,Canceled,2019-07-04 -City Hotel,1,9,2017,April,17,24,0,1,1,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,125.98,0,0,Canceled,2020-02-01 -City Hotel,0,58,2016,April,16,27,0,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,89.56,0,0,Check-Out,2019-02-01 -Resort Hotel,0,191,2016,May,23,24,1,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,D,2,No Deposit,321.0,179.0,0,Transient-Party,79.19,0,0,Check-Out,2019-04-03 -City Hotel,1,263,2016,August,33,7,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,178.63,0,0,Canceled,2019-01-03 -City Hotel,0,8,2016,August,36,28,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,67.88,0,1,Check-Out,2019-06-03 -City Hotel,1,26,2017,June,20,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,195.0,179.0,0,Transient,72.76,0,1,Canceled,2020-03-03 -City Hotel,1,28,2016,January,4,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,72.95,0,0,No-Show,2019-01-03 -City Hotel,1,104,2016,March,16,24,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,161.0,179.0,0,Transient,89.04,0,0,Canceled,2018-12-03 -City Hotel,0,20,2017,June,21,18,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.59,0,1,Check-Out,2020-05-03 -City Hotel,1,44,2015,September,37,21,0,1,1,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,120.48,0,0,Check-Out,2019-06-03 -City Hotel,0,235,2015,September,33,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.5,0,2,Check-Out,2018-08-03 -Resort Hotel,0,197,2017,May,23,22,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,269.0,179.0,0,Transient,209.7,1,0,Check-Out,2020-02-01 -Resort Hotel,0,163,2016,August,32,2,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,102.81,0,3,Check-Out,2019-05-04 -City Hotel,1,430,2016,May,32,10,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.66,0,0,Canceled,2017-12-03 -Resort Hotel,0,1,2015,November,43,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,102,2017,June,22,2,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,97.01,0,0,Check-Out,2020-06-02 -City Hotel,0,378,2017,August,36,17,2,5,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,84.52,0,0,Check-Out,2020-07-03 -City Hotel,0,149,2016,July,32,14,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,173.03,0,1,Check-Out,2019-06-03 -City Hotel,1,207,2016,October,43,5,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,71.27,0,0,Canceled,2019-02-01 -Resort Hotel,0,81,2015,December,51,31,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient-Party,101.02,0,2,Check-Out,2018-12-03 -City Hotel,0,4,2017,June,20,21,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.24,0,0,Check-Out,2019-01-03 -City Hotel,1,37,2016,December,50,25,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,212.0,0,Transient,43.74,0,0,Canceled,2019-11-03 -Resort Hotel,0,79,2015,October,44,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Transient,105.41,1,0,Check-Out,2018-08-03 -Resort Hotel,0,30,2017,June,24,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,188.81,0,2,Check-Out,2020-03-03 -City Hotel,1,12,2017,May,23,2,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.7,0,0,Canceled,2020-04-02 -Resort Hotel,1,52,2015,September,36,26,2,5,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,3,No Deposit,242.0,179.0,0,Transient,171.05,0,0,Canceled,2018-07-03 -Resort Hotel,0,256,2016,July,33,17,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,210.64,0,1,Check-Out,2019-05-04 -City Hotel,0,2,2017,February,9,21,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,146.97,0,0,Check-Out,2020-06-02 -City Hotel,0,17,2015,October,47,10,0,2,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,12.0,217.0,0,Transient-Party,74.23,0,0,Canceled,2018-09-02 -City Hotel,0,251,2015,September,38,25,2,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.97,0,0,Check-Out,2017-10-03 -City Hotel,1,193,2016,March,11,12,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,149.29,0,0,Canceled,2019-02-01 -City Hotel,1,48,2016,May,21,27,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.43,0,0,Canceled,2019-02-01 -City Hotel,1,54,2015,November,44,21,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,40,Transient,59.59,0,0,Canceled,2018-08-03 -City Hotel,0,85,2016,March,11,17,0,2,2,1.0,0,HB,,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,73.6,0,0,Check-Out,2019-10-04 -City Hotel,1,313,2016,June,27,4,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,59.13,0,0,Canceled,2017-12-03 -Resort Hotel,0,0,2017,February,9,31,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.17,0,1,Check-Out,2019-10-04 -City Hotel,0,241,2017,October,40,21,2,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.74,0,0,Check-Out,2019-08-04 -City Hotel,1,0,2016,March,9,21,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,55.13,0,0,Canceled,2018-10-03 -City Hotel,0,160,2015,July,31,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.01,0,0,Check-Out,2018-06-02 -City Hotel,0,13,2016,October,43,26,2,2,3,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,K,0,No Deposit,13.0,154.0,0,Transient,107.14,0,0,Check-Out,2019-06-03 -City Hotel,1,37,2017,February,7,15,0,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,75.97,0,0,Canceled,2019-09-03 -City Hotel,0,1,2015,August,38,13,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,127.84,0,1,Check-Out,2019-05-04 -City Hotel,0,11,2016,May,23,6,0,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,198.18,0,0,Check-Out,2020-04-02 -City Hotel,1,33,2017,June,22,27,1,1,2,0.0,0,BB,CHE,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,150.86,0,0,Check-Out,2019-12-04 -City Hotel,0,98,2017,May,17,6,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.64,0,0,Canceled,2020-04-02 -City Hotel,1,116,2015,January,4,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,98.53,0,0,Canceled,2018-10-03 -City Hotel,1,382,2016,September,43,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,84.73,0,0,Canceled,2019-06-03 -City Hotel,1,37,2016,December,53,28,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,86.97,0,2,Canceled,2018-08-03 -City Hotel,0,239,2017,April,34,9,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,174.63,0,0,Check-Out,2020-01-04 -Resort Hotel,0,15,2016,October,51,28,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,46.97,0,3,Check-Out,2019-11-03 -City Hotel,0,155,2017,March,8,28,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,66.18,0,0,Check-Out,2020-02-01 -Resort Hotel,1,10,2015,December,51,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,0,No Deposit,250.0,179.0,0,Transient,60.7,0,0,Canceled,2018-11-02 -Resort Hotel,0,22,2016,December,51,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,244.0,0,Transient,35.8,0,0,Check-Out,2019-10-04 -Resort Hotel,0,132,2016,October,21,2,0,2,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,245.21,0,3,Check-Out,2019-08-04 -City Hotel,1,1,2017,February,9,16,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,60.44,0,0,Canceled,2019-11-03 -Resort Hotel,0,145,2016,March,12,31,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,80.95,1,0,Check-Out,2019-02-01 -City Hotel,1,12,2015,July,36,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,177.0,0,0,Canceled,2018-05-03 -Resort Hotel,0,40,2016,March,12,27,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,67.94,0,0,Check-Out,2019-01-03 -City Hotel,1,24,2016,January,11,5,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.37,0,1,Canceled,2018-12-03 -City Hotel,0,1,2016,October,41,2,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient-Party,134.75,0,0,Check-Out,2019-06-03 -Resort Hotel,0,8,2017,January,5,2,0,1,2,0.0,0,BB,ESP,Corporate,Corporate,1,0,0,A,D,3,No Deposit,13.0,87.0,0,Transient,116.1,1,0,Check-Out,2019-10-04 -City Hotel,1,14,2016,September,37,28,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.3,0,2,Canceled,2019-05-04 -Resort Hotel,0,30,2016,December,53,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,76.27,0,2,Check-Out,2018-10-03 -Resort Hotel,1,0,2016,January,4,6,1,4,2,0.0,0,BB,,Direct,Direct,0,0,1,A,A,0,No Deposit,14.0,179.0,0,Transient,39.73,0,0,Check-Out,2018-10-03 -City Hotel,0,214,2015,August,30,8,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.31,0,0,Check-Out,2017-12-03 -City Hotel,0,101,2015,July,30,21,2,2,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,111.4,0,2,Check-Out,2018-06-02 -Resort Hotel,0,17,2016,October,45,24,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,80.31,1,3,Check-Out,2019-09-03 -City Hotel,1,40,2016,July,28,25,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,179.0,0,Transient,63.04,0,0,Canceled,2019-04-03 -City Hotel,1,23,2016,June,29,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,120.05,0,1,Canceled,2019-02-01 -Resort Hotel,0,1,2016,February,10,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,29.78,0,0,Check-Out,2019-03-04 -City Hotel,1,140,2017,May,26,11,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,125.87,0,0,Canceled,2020-03-03 -City Hotel,1,190,2016,May,20,18,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,184.85,0,0,Canceled,2019-02-01 -City Hotel,1,46,2016,March,17,29,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient-Party,77.84,0,0,Canceled,2019-01-03 -City Hotel,1,413,2017,August,32,17,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.47,0,0,Canceled,2020-06-02 -City Hotel,0,1,2016,June,17,10,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.57,0,0,Check-Out,2019-02-01 -City Hotel,0,250,2016,July,42,20,2,4,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,154.73,0,1,Check-Out,2019-05-04 -City Hotel,1,58,2017,July,33,31,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,93.52,0,1,Canceled,2019-07-04 -Resort Hotel,0,149,2017,August,22,29,4,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,249.0,179.0,0,Transient,173.76,1,1,Check-Out,2020-01-04 -City Hotel,0,0,2015,August,35,6,1,0,1,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,0.0,0,1,Check-Out,2018-06-02 -City Hotel,0,81,2016,December,53,7,2,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.36,0,1,Check-Out,2019-11-03 -City Hotel,0,32,2015,July,49,5,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,105.64,0,0,Check-Out,2018-05-03 -Resort Hotel,0,247,2017,May,22,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,60.55,1,2,Check-Out,2020-03-03 -City Hotel,0,182,2016,June,35,28,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,100.52,0,1,Check-Out,2019-06-03 -Resort Hotel,0,3,2016,October,43,18,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,No Deposit,93.0,179.0,0,Transient,50.83,0,0,Check-Out,2019-08-04 -City Hotel,1,160,2017,March,11,12,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,113.23,0,0,Canceled,2019-10-04 -City Hotel,1,13,2015,October,46,13,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.9,0,0,Canceled,2018-08-03 -City Hotel,1,99,2016,April,25,20,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.39,0,0,No-Show,2019-04-03 -Resort Hotel,0,16,2017,January,51,15,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,1,D,D,3,No Deposit,15.0,67.0,0,Transient,62.63,0,0,Check-Out,2019-10-04 -Resort Hotel,0,47,2016,March,9,6,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient,73.47,0,0,Check-Out,2018-12-03 -City Hotel,1,264,2017,August,31,21,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.0,0,1,Canceled,2020-07-03 -Resort Hotel,0,0,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,178.0,70.0,0,Transient,32.76,0,0,Check-Out,2019-12-04 -City Hotel,0,40,2016,August,37,9,2,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-08-04 -Resort Hotel,0,18,2017,June,27,18,0,3,1,0.0,0,FB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,15.0,215.0,0,Transient,39.01,1,0,Check-Out,2020-06-02 -Resort Hotel,1,57,2017,August,29,2,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,149.2,0,0,Canceled,2020-03-03 -City Hotel,0,29,2016,June,26,1,0,3,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.23,0,0,Check-Out,2019-02-01 -Resort Hotel,1,217,2017,February,10,27,2,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,E,0,Non Refund,104.0,179.0,0,Transient,86.69,0,0,Canceled,2020-02-01 -Resort Hotel,0,34,2016,October,45,19,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,99.6,0,2,Check-Out,2019-09-03 -Resort Hotel,0,16,2017,February,9,13,2,1,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,2,No Deposit,326.0,331.0,0,Transient,71.43,0,0,Check-Out,2019-10-04 -City Hotel,0,146,2015,July,37,15,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,63.31,0,0,Check-Out,2017-10-03 -City Hotel,0,13,2017,August,37,7,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,3.18,0,1,Check-Out,2020-01-04 -Resort Hotel,0,15,2016,August,25,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,C,1,No Deposit,301.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-04-03 -Resort Hotel,1,189,2016,May,22,31,1,0,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,76.29,0,0,Canceled,2019-01-03 -Resort Hotel,0,156,2016,October,9,13,2,7,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,254.0,179.0,0,Transient-Party,71.13,0,0,Check-Out,2018-12-03 -City Hotel,1,47,2016,October,43,15,0,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,94.97,0,0,Canceled,2019-08-04 -Resort Hotel,0,0,2016,January,11,28,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,72.79,0,0,Check-Out,2019-02-01 -City Hotel,0,215,2017,July,26,12,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.62,0,2,Check-Out,2020-06-02 -Resort Hotel,0,235,2015,December,50,17,1,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,58,Transient-Party,72.01,1,0,Check-Out,2018-09-02 -City Hotel,1,193,2016,June,38,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,10.0,45.0,0,Transient,71.97,0,0,Canceled,2019-06-03 -City Hotel,1,0,2016,January,10,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.37,0,0,No-Show,2018-10-03 -Resort Hotel,0,157,2017,February,11,31,0,2,2,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,A,1,No Deposit,336.0,179.0,0,Transient,65.71,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2016,October,46,10,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,197.0,179.0,0,Transient,78.82,0,0,Check-Out,2019-08-04 -Resort Hotel,0,163,2016,July,35,15,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,168.0,179.0,0,Transient,42.02,0,0,Check-Out,2019-05-04 -Resort Hotel,0,13,2017,February,9,15,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,37.14,0,0,Check-Out,2019-10-04 -City Hotel,1,22,2016,March,10,28,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,59,Transient,92.1,0,0,Canceled,2018-12-03 -Resort Hotel,0,269,2016,October,46,28,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,118.76,0,2,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,January,5,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,I,0,No Deposit,241.0,179.0,0,Transient,1.92,0,2,Check-Out,2018-10-03 -Resort Hotel,0,168,2016,April,18,24,2,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,38.35,0,0,Check-Out,2019-02-01 -City Hotel,0,95,2017,July,31,8,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,107.12,0,2,Check-Out,2020-06-02 -City Hotel,1,0,2016,February,16,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,117.52,0,0,Canceled,2018-10-03 -Resort Hotel,0,149,2016,November,50,16,2,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,132.12,0,1,Check-Out,2019-07-04 -Resort Hotel,1,183,2016,October,44,2,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,69.4,0,0,Canceled,2019-08-04 -Resort Hotel,0,193,2016,March,15,31,1,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient,68.18,1,0,Check-Out,2019-06-03 -City Hotel,0,1,2017,March,24,6,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,77.12,0,0,Check-Out,2020-03-03 -City Hotel,0,39,2016,July,33,9,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.55,0,2,Check-Out,2019-01-03 -City Hotel,0,25,2016,November,49,6,0,1,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,78.74,1,0,Check-Out,2019-10-04 -City Hotel,1,399,2015,October,47,9,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,151.91,0,0,Canceled,2018-08-03 -City Hotel,0,1,2017,May,21,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.31,0,0,Check-Out,2020-04-02 -Resort Hotel,0,53,2017,May,22,9,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient-Party,63.63,1,0,Check-Out,2020-03-03 -City Hotel,1,2,2017,February,10,10,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,8.0,179.0,0,Transient,2.64,0,1,Canceled,2019-10-04 -Resort Hotel,0,98,2016,September,50,28,0,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,D,0,No Deposit,85.0,179.0,75,Transient-Party,91.11,0,0,Check-Out,2019-09-03 -Resort Hotel,1,50,2017,May,16,28,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,237.0,179.0,0,Transient,126.93,0,2,Canceled,2020-02-01 -City Hotel,1,169,2017,March,18,24,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,124.77,0,0,Canceled,2019-09-03 -City Hotel,1,163,2016,September,44,30,0,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,102.69,0,0,Canceled,2019-07-04 -Resort Hotel,0,240,2017,June,26,14,2,3,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,15.0,179.0,75,Transient-Party,100.82,1,1,Check-Out,2019-12-04 -City Hotel,1,19,2016,September,44,25,2,2,2,0.0,0,BB,BRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,85.22,0,0,Canceled,2018-09-02 -City Hotel,1,218,2016,June,26,16,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.1,0,0,Canceled,2020-02-01 -Resort Hotel,0,134,2017,June,26,7,0,1,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,E,E,0,No Deposit,83.0,204.0,0,Transient,101.78,1,1,Check-Out,2020-04-02 -City Hotel,1,94,2017,January,2,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,Non Refund,12.0,90.0,0,Transient,59.96,0,0,Canceled,2019-11-03 -City Hotel,0,145,2016,October,26,5,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,64.02,0,0,Check-Out,2019-01-03 -Resort Hotel,0,261,2017,July,34,20,4,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient,84.55,0,0,Check-Out,2020-07-03 -Resort Hotel,0,35,2015,October,44,9,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,213.0,0,Transient,28.69,0,0,Check-Out,2018-09-02 -Resort Hotel,0,86,2017,May,25,15,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,250.0,179.0,0,Transient,70.93,0,0,Check-Out,2020-05-03 -City Hotel,1,258,2017,May,20,12,2,3,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,130.45,0,0,Canceled,2020-02-01 -City Hotel,0,149,2016,July,31,30,0,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.59,0,2,Check-Out,2019-04-03 -City Hotel,1,82,2015,October,44,14,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Transient,94.09,0,0,Canceled,2018-09-02 -Resort Hotel,1,3,2015,August,34,28,0,1,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.14,0,0,Canceled,2018-06-02 -Resort Hotel,1,2,2016,November,43,27,2,0,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,F,I,0,No Deposit,166.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -Resort Hotel,0,20,2016,February,9,8,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,79.64,0,0,Check-Out,2019-02-01 -Resort Hotel,0,9,2016,August,36,16,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,217.91,1,1,Check-Out,2018-11-02 -City Hotel,0,1,2017,February,9,9,1,0,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,100.87,0,1,Check-Out,2019-10-04 -City Hotel,0,94,2016,August,37,15,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,84.71,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2015,October,43,5,0,1,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,59.0,0,Transient-Party,27.27,0,0,Check-Out,2018-09-02 -City Hotel,0,261,2017,June,33,2,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,2,No Deposit,175.0,179.0,0,Transient-Party,214.07,0,2,Check-Out,2020-06-02 -City Hotel,1,315,2015,September,43,25,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,74.38,0,0,Canceled,2017-10-03 -City Hotel,0,1,2017,February,8,5,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.89,0,1,Check-Out,2019-11-03 -City Hotel,0,41,2016,May,22,10,0,4,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-02-01 -City Hotel,0,99,2016,November,49,8,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,3,No Deposit,13.0,179.0,0,Transient,31.96,0,0,Check-Out,2019-10-04 -Resort Hotel,0,265,2016,October,53,24,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,62.34,0,2,Check-Out,2019-12-04 -City Hotel,0,256,2016,September,43,12,4,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,113.37,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,November,52,25,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,I,1,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -Resort Hotel,0,7,2016,November,45,24,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,122.51,1,0,Check-Out,2019-08-04 -City Hotel,1,47,2017,February,11,25,2,0,1,0.0,0,SC,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,95.69,0,0,Canceled,2019-10-04 -Resort Hotel,0,40,2016,August,34,18,0,3,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.06,0,0,Check-Out,2019-06-03 -Resort Hotel,1,84,2017,April,11,27,1,0,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,29.0,179.0,0,Transient-Party,62.46,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2017,February,8,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,243.0,179.0,0,Group,62.17,0,2,Check-Out,2020-01-04 -City Hotel,0,121,2016,May,22,27,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,99.12,1,2,Check-Out,2019-03-04 -Resort Hotel,0,142,2016,July,31,28,0,1,3,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,C,I,1,No Deposit,10.0,179.0,0,Transient-Party,0.55,0,1,Check-Out,2018-12-03 -City Hotel,0,99,2016,July,37,15,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,236.0,179.0,0,Transient,135.73,0,2,Check-Out,2019-08-04 -Resort Hotel,0,16,2016,September,36,2,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,120.99,0,2,Check-Out,2019-07-04 -Resort Hotel,0,98,2016,December,50,27,0,2,2,1.0,0,BB,POL,Direct,Direct,0,0,0,A,F,0,No Deposit,247.0,179.0,0,Transient,62.81,1,0,Check-Out,2019-11-03 -Resort Hotel,0,2,2015,December,51,30,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,46.03,0,0,Check-Out,2018-12-03 -Resort Hotel,1,116,2017,May,23,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,0,Non Refund,181.0,179.0,0,Transient,148.06,0,0,Canceled,2020-05-03 -Resort Hotel,1,36,2015,August,35,30,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,59.28,0,0,Canceled,2018-06-02 -City Hotel,0,13,2016,December,51,30,0,1,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,B,B,1,No Deposit,189.0,179.0,0,Transient-Party,34.74,0,0,Check-Out,2018-12-03 -City Hotel,1,88,2016,June,17,9,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,127.0,179.0,0,Transient,67.22,0,0,No-Show,2019-03-04 -Resort Hotel,1,240,2016,March,17,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,36.26,0,0,Canceled,2018-11-02 -City Hotel,1,103,2017,June,26,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,63.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,January,2,6,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,78.0,0,Transient,42.99,0,0,Check-Out,2020-01-04 -Resort Hotel,0,11,2017,March,19,31,0,1,2,0.0,0,BB,ESP,Corporate,Direct,0,0,0,F,E,0,No Deposit,245.0,179.0,0,Transient,158.93,1,0,Check-Out,2020-02-01 -City Hotel,1,59,2017,March,16,18,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,97.1,0,2,Canceled,2020-03-03 -Resort Hotel,1,223,2017,August,38,24,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,314.0,179.0,0,Transient-Party,101.84,0,1,Canceled,2020-06-02 -Resort Hotel,0,14,2017,February,11,21,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,30.01,0,1,Check-Out,2019-10-04 -City Hotel,1,20,2016,August,36,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,126.61,0,0,Canceled,2018-12-03 -Resort Hotel,0,96,2016,April,15,24,2,3,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,69.86,0,0,Check-Out,2019-03-04 -City Hotel,1,11,2016,June,27,18,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.4,0,0,Check-Out,2019-06-03 -Resort Hotel,0,5,2016,October,20,26,1,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,252.0,179.0,0,Transient,225.84,0,0,Check-Out,2020-01-04 -Resort Hotel,0,40,2016,June,25,21,0,3,1,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,90.12,0,2,Check-Out,2019-03-04 -Resort Hotel,0,2,2016,February,8,25,0,1,2,0.0,0,FB,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,61.78,0,0,Check-Out,2018-12-03 -City Hotel,0,19,2016,October,44,18,1,2,2,2.0,0,BB,,Online TA,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,110.01,0,0,Check-Out,2019-09-03 -City Hotel,1,158,2016,March,27,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.67,0,0,Canceled,2019-02-01 -City Hotel,1,32,2017,May,26,12,2,5,1,0.0,0,BB,,Direct,Direct,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient,155.66,0,2,No-Show,2020-03-03 -City Hotel,0,12,2017,February,10,31,0,1,1,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,97.34,0,2,Check-Out,2020-03-03 -Resort Hotel,0,8,2016,August,35,6,1,4,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,243.08,0,0,Check-Out,2019-06-03 -Resort Hotel,1,39,2015,November,44,15,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,61.77,0,0,Canceled,2018-08-03 -Resort Hotel,0,4,2017,June,27,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,45.0,0,Transient,144.79,0,0,Check-Out,2020-04-02 -Resort Hotel,0,14,2017,April,19,21,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,114.23,0,1,Check-Out,2020-03-03 -City Hotel,1,163,2016,July,24,20,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,97.0,179.0,0,Transient,78.21,0,0,Canceled,2019-05-04 -City Hotel,1,120,2017,February,14,13,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,83.38,0,0,Canceled,2020-06-02 -Resort Hotel,0,109,2016,May,32,25,2,7,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,C,E,1,No Deposit,290.0,179.0,22,Transient-Party,112.94,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2016,March,12,31,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -Resort Hotel,0,45,2015,July,50,16,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,97.0,179.0,0,Transient-Party,34.24,0,0,Check-Out,2018-07-03 -City Hotel,0,19,2015,June,25,18,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,1,A,A,1,No Deposit,14.0,45.0,0,Transient-Party,65.15,0,0,Check-Out,2019-04-03 -City Hotel,0,16,2016,August,38,29,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,158.68,0,0,Check-Out,2019-05-04 -City Hotel,0,235,2017,July,34,19,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,171.18,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,March,10,19,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.39,0,0,Check-Out,2019-03-04 -Resort Hotel,0,15,2017,May,21,30,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,204.44,0,1,Check-Out,2020-01-04 -Resort Hotel,0,102,2016,October,49,31,4,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient-Party,124.4,0,0,Check-Out,2019-10-04 -Resort Hotel,0,167,2017,July,28,7,0,4,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,25,2016,September,33,18,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,223.03,0,2,Check-Out,2019-07-04 -City Hotel,1,310,2016,September,42,28,2,0,2,0.0,0,BB,ITA,Groups,TA/TO,0,1,0,A,A,0,Non Refund,260.0,179.0,0,Transient,71.94,0,0,Canceled,2018-07-03 -Resort Hotel,0,55,2016,December,22,30,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,77.41,0,0,Check-Out,2019-11-03 -Resort Hotel,0,42,2016,February,11,28,0,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,79.0,179.0,0,Group,36.49,0,1,Check-Out,2019-03-04 -City Hotel,0,17,2015,June,27,10,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,120.42,0,0,Check-Out,2019-06-03 -Resort Hotel,0,28,2016,March,10,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,72.53,0,1,Check-Out,2019-01-03 -Resort Hotel,0,235,2015,July,36,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,3.0,179.0,0,Contract,63.84,0,0,Check-Out,2018-07-03 -City Hotel,1,30,2017,June,22,31,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,249.0,179.0,0,Transient,78.44,0,0,Canceled,2020-03-03 -Resort Hotel,0,97,2015,August,38,18,2,2,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,94.97,0,1,Check-Out,2018-05-03 -City Hotel,1,276,2016,December,31,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.01,0,0,Canceled,2018-12-03 -City Hotel,0,105,2017,June,15,5,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.71,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,February,11,6,0,1,1,0.0,0,BB,ESP,Aviation,GDS,0,0,0,D,D,0,No Deposit,174.0,331.0,0,Transient,1.98,0,0,Check-Out,2019-09-03 -City Hotel,0,15,2015,December,51,15,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,28.0,179.0,64,Transient,60.23,0,0,Check-Out,2019-12-04 -City Hotel,1,12,2017,May,23,13,2,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,204.0,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2016,February,9,22,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,71.93,0,0,Check-Out,2019-03-04 -City Hotel,1,338,2016,September,43,15,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.32,0,2,Canceled,2019-08-04 -City Hotel,0,8,2015,October,44,14,1,1,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,242.0,0,Transient-Party,62.82,0,0,Check-Out,2018-09-02 -City Hotel,0,158,2017,August,31,14,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,142.07,0,3,Check-Out,2020-06-02 -City Hotel,1,12,2015,September,45,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,10.0,179.0,0,Group,62.18,0,0,Canceled,2017-12-03 -Resort Hotel,0,50,2017,February,8,28,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,62.59,0,0,Check-Out,2019-10-04 -City Hotel,0,48,2017,June,26,12,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.67,0,3,Check-Out,2020-06-02 -Resort Hotel,0,23,2016,May,24,12,2,1,2,1.0,0,BB,USA,Direct,Direct,0,0,0,E,F,2,No Deposit,15.0,179.0,0,Transient,193.22,1,0,Check-Out,2019-01-03 -City Hotel,1,107,2017,July,32,21,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,152.66,0,1,Canceled,2020-03-03 -City Hotel,1,1,2017,March,17,28,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,10.0,179.0,0,Transient,94.72,0,0,Canceled,2019-10-04 -City Hotel,1,70,2016,March,10,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,42,Transient,60.0,0,0,Canceled,2018-11-02 -City Hotel,1,383,2016,August,36,13,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.81,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2016,August,35,30,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,77.72,0,0,Check-Out,2019-08-04 -City Hotel,1,14,2017,March,17,16,0,1,1,0.0,0,BB,SWE,Corporate,Corporate,1,0,0,A,A,0,Non Refund,11.0,235.0,0,Transient,72.85,0,0,Canceled,2020-03-03 -City Hotel,0,5,2017,July,32,25,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.75,0,0,Check-Out,2020-07-03 -Resort Hotel,0,189,2015,October,37,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,307.0,179.0,0,Transient,63.24,1,2,Check-Out,2018-08-03 -Resort Hotel,0,199,2017,April,15,10,1,3,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,121.23,0,0,Check-Out,2020-04-02 -City Hotel,1,1,2017,February,8,17,0,1,2,2.0,0,BB,,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,61.37,0,0,Canceled,2019-10-04 -Resort Hotel,0,198,2017,June,24,21,2,4,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,242.0,179.0,0,Transient,227.67,1,2,Check-Out,2020-04-02 -City Hotel,1,61,2015,August,38,3,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,47.76,0,1,Canceled,2018-07-03 -City Hotel,0,17,2015,July,41,4,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,97.25,0,0,Check-Out,2018-06-02 -Resort Hotel,1,172,2017,March,10,29,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,303.0,179.0,0,Transient,41.45,0,0,Canceled,2019-10-04 -Resort Hotel,0,102,2016,October,40,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,309.0,179.0,0,Contract,47.56,0,2,Check-Out,2019-08-04 -Resort Hotel,0,54,2016,May,18,27,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,125.47,1,1,Check-Out,2019-02-01 -Resort Hotel,1,88,2017,May,21,7,2,0,2,0.0,0,HB,PRT,Complementary,TA/TO,1,0,0,C,I,0,No Deposit,158.0,179.0,0,Transient,0.0,0,0,Canceled,2020-01-04 -Resort Hotel,1,279,2016,April,12,20,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,299.0,179.0,0,Transient-Party,59.6,0,0,Canceled,2019-02-01 -City Hotel,1,40,2016,November,43,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,147.5,0,0,Canceled,2019-07-04 -City Hotel,0,3,2016,March,44,17,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,31.0,60.0,0,Transient-Party,69.93,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2016,December,49,13,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,218.35,0,1,Check-Out,2019-11-03 -City Hotel,0,70,2015,September,41,9,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,65.62,0,0,Check-Out,2018-08-03 -City Hotel,1,423,2017,August,38,30,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,184.67,0,0,Canceled,2018-08-03 -City Hotel,0,191,2017,July,30,18,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.64,0,0,Check-Out,2020-05-03 -City Hotel,1,246,2017,May,22,20,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,38.0,179.0,0,Transient,121.71,0,0,Canceled,2020-01-04 -Resort Hotel,0,2,2016,October,44,25,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,108.61,0,0,Check-Out,2019-08-04 -City Hotel,1,59,2016,March,10,31,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient-Party,36.29,0,1,Canceled,2018-12-03 -Resort Hotel,1,254,2016,September,42,10,2,7,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,G,H,0,No Deposit,15.0,179.0,0,Transient,74.22,0,0,Canceled,2019-09-03 -City Hotel,0,93,2016,April,17,28,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.41,1,2,Check-Out,2019-03-04 -City Hotel,0,35,2017,May,18,28,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.06,0,0,Canceled,2019-12-04 -City Hotel,0,3,2017,December,53,28,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,67.16,0,1,Check-Out,2019-11-03 -City Hotel,1,52,2016,October,50,24,0,4,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,75,Transient-Party,129.7,0,0,Canceled,2019-08-04 -City Hotel,0,106,2017,April,17,16,2,4,2,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,175.0,0,Transient,132.71,0,0,Check-Out,2020-04-02 -Resort Hotel,0,19,2015,November,53,24,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,124.52,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2016,August,36,17,0,4,3,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,118.81,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,March,18,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,183.0,228.0,0,Transient-Party,65.15,0,0,Check-Out,2020-03-03 -City Hotel,1,0,2016,December,53,4,2,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,4.34,0,0,Canceled,2019-10-04 -Resort Hotel,1,308,2015,September,42,22,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,112.49,0,0,Canceled,2018-06-02 -City Hotel,0,1,2016,June,21,15,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,114.15,0,1,Check-Out,2019-02-01 -Resort Hotel,0,274,2017,March,17,16,2,5,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,31.26,0,0,Check-Out,2020-05-03 -City Hotel,1,101,2016,March,17,18,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,73.86,0,0,Canceled,2019-02-01 -Resort Hotel,1,121,2016,January,53,5,2,6,2,2.0,0,BB,ITA,Direct,Direct,0,0,0,G,D,1,No Deposit,93.0,179.0,0,Transient,96.25,0,3,Canceled,2019-10-04 -Resort Hotel,1,216,2017,May,19,19,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,151.01,0,0,Canceled,2020-04-02 -City Hotel,1,332,2017,May,22,15,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,86.06,0,0,Canceled,2020-03-03 -Resort Hotel,0,18,2016,December,52,28,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,119.31,0,0,Check-Out,2019-09-03 -City Hotel,1,216,2016,May,28,26,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,80.96,0,0,Canceled,2019-04-03 -City Hotel,0,1,2017,April,23,18,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.75,0,1,Check-Out,2020-05-03 -City Hotel,1,39,2016,May,20,10,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,111.15,0,0,Canceled,2019-01-03 -City Hotel,1,1,2016,January,3,29,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,30.35,0,0,Canceled,2018-11-02 -Resort Hotel,0,37,2016,December,4,28,1,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,244.0,179.0,0,Transient,95.73,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2015,July,35,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,94.5,1,0,Check-Out,2018-06-02 -City Hotel,0,148,2017,June,27,31,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,88.99,1,3,Check-Out,2020-07-03 -City Hotel,0,26,2016,June,24,5,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,86.67,0,1,Check-Out,2018-11-02 -City Hotel,0,3,2017,February,19,16,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,35.95,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2015,November,17,7,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,38.94,1,2,Check-Out,2018-12-03 -Resort Hotel,1,127,2016,July,33,1,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,237.0,179.0,0,Transient,177.85,0,0,Canceled,2019-05-04 -Resort Hotel,1,166,2016,September,35,28,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,Non Refund,317.0,179.0,0,Transient,194.24,0,0,Canceled,2019-04-03 -City Hotel,1,0,2016,January,3,15,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,6.0,179.0,0,Transient,80.09,0,0,No-Show,2019-10-04 -City Hotel,0,142,2017,June,24,18,2,5,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,E,A,1,No Deposit,10.0,179.0,0,Transient,102.34,0,2,Check-Out,2020-02-01 -City Hotel,1,154,2016,June,27,21,1,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,22,Transient,101.62,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2016,October,42,9,1,1,2,0.0,0,BB,USA,Complementary,Direct,1,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -City Hotel,1,88,2016,January,9,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,60.68,0,0,Canceled,2018-12-03 -Resort Hotel,0,102,2016,August,19,30,2,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,191.44,0,2,Check-Out,2019-03-04 -Resort Hotel,0,41,2015,July,31,18,2,5,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient,73.02,0,0,Check-Out,2018-06-02 -City Hotel,0,1,2017,June,26,8,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,83.28,0,0,Check-Out,2019-11-03 -City Hotel,1,148,2016,July,32,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,41,Transient,61.26,0,0,Canceled,2018-06-02 -City Hotel,0,110,2016,August,34,11,0,2,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient-Party,100.66,0,1,Check-Out,2018-06-02 -City Hotel,0,45,2016,September,34,18,1,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,111.87,0,0,Check-Out,2018-07-03 -Resort Hotel,1,154,2016,September,37,29,0,5,2,2.0,0,BB,USA,Direct,Direct,0,0,0,G,G,2,No Deposit,251.0,179.0,0,Transient,250.02,0,0,Canceled,2019-05-04 -City Hotel,1,270,2016,August,36,15,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,7.0,179.0,0,Transient,84.9,0,0,Canceled,2019-07-04 -Resort Hotel,0,0,2016,July,39,29,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,G,I,2,No Deposit,247.0,179.0,0,Transient,211.72,1,1,Check-Out,2019-07-04 -Resort Hotel,0,0,2017,May,10,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,71.45,0,1,Check-Out,2020-03-03 -City Hotel,1,20,2017,May,15,16,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,169.45,0,2,Canceled,2020-03-03 -Resort Hotel,0,40,2017,January,4,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,59.93,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2016,April,15,28,0,3,3,0.0,0,BB,,Direct,Direct,0,0,0,L,A,0,No Deposit,14.0,179.0,0,Transient,176.62,0,0,Check-Out,2019-03-04 -City Hotel,1,307,2017,April,19,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,59.29,0,0,Canceled,2018-10-03 -City Hotel,0,40,2017,April,31,15,0,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,117.41,0,2,Check-Out,2020-05-03 -Resort Hotel,0,48,2017,March,22,27,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,58.98,0,1,Check-Out,2020-05-03 -City Hotel,0,143,2016,December,51,7,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,65.96,0,0,Check-Out,2019-09-03 -Resort Hotel,0,4,2016,January,4,4,1,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,61.58,1,0,Check-Out,2019-05-04 -Resort Hotel,1,1,2017,February,9,10,2,5,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,14.0,223.0,75,Transient-Party,40.65,0,0,Canceled,2019-12-04 -City Hotel,0,260,2016,June,25,9,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,109.69,0,2,Check-Out,2019-07-04 -City Hotel,0,50,2015,October,41,17,2,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,74.15,0,0,Canceled,2018-09-02 -City Hotel,1,218,2017,June,29,27,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,157.89,0,0,Canceled,2019-11-03 -Resort Hotel,0,15,2016,January,4,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,70.7,1,0,Check-Out,2019-01-03 -Resort Hotel,0,4,2016,January,12,10,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,102.0,179.0,0,Transient,41.56,1,0,Check-Out,2018-12-03 -City Hotel,0,144,2016,October,43,9,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,91.73,0,1,Check-Out,2019-09-03 -Resort Hotel,0,88,2017,July,31,27,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,A,0,No Deposit,378.0,179.0,0,Transient,105.5,1,1,Check-Out,2020-04-02 -City Hotel,0,45,2015,November,50,9,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,63.63,0,0,Check-Out,2019-10-04 -Resort Hotel,0,150,2016,March,9,21,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,72.28,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,May,22,30,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,125.13,1,0,Check-Out,2020-06-02 -City Hotel,1,250,2016,May,26,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,114.44,0,0,Canceled,2019-05-04 -City Hotel,1,152,2016,March,10,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,68.66,0,0,Canceled,2018-12-03 -City Hotel,0,14,2017,April,19,18,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,73.0,0,Transient,162.78,0,0,Check-Out,2020-02-01 -City Hotel,0,17,2017,April,18,9,2,5,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,115.64,0,2,Check-Out,2020-03-03 -City Hotel,1,109,2017,August,37,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,129.72,0,0,Canceled,2020-06-02 -City Hotel,1,19,2016,May,15,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.33,0,0,Canceled,2019-02-01 -City Hotel,0,12,2015,September,38,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,60.88,0,0,Check-Out,2017-11-02 -City Hotel,1,299,2015,August,39,15,0,2,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,111.55,0,1,Canceled,2018-06-02 -City Hotel,1,101,2016,May,16,16,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,95.83,0,0,Canceled,2019-02-01 -City Hotel,1,19,2017,April,16,6,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,108.51,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2017,March,11,31,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,1.73,0,0,Check-Out,2019-12-04 -Resort Hotel,0,52,2015,December,53,28,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient-Party,37.06,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2016,February,10,2,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,20,Transient,79.6,1,0,Check-Out,2018-11-02 -City Hotel,0,57,2017,April,8,20,0,2,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,109.09,0,0,Check-Out,2020-02-01 -Resort Hotel,0,5,2016,October,45,28,1,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient-Party,58.02,0,0,Check-Out,2019-09-03 -City Hotel,1,148,2016,March,21,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,80.0,179.0,40,Transient,80.33,0,0,Canceled,2018-12-03 -City Hotel,0,12,2016,December,53,27,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,139.06,0,0,Check-Out,2019-12-04 -City Hotel,0,45,2017,June,26,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,132.2,0,1,Check-Out,2020-04-02 -City Hotel,1,66,2017,April,21,31,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,130.95,0,0,Canceled,2020-02-01 -City Hotel,0,13,2016,April,17,11,0,3,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,80.12,0,0,Check-Out,2019-02-01 -Resort Hotel,0,4,2015,December,33,25,2,5,3,0.0,0,BB,,Direct,Direct,0,0,0,D,E,1,No Deposit,198.0,179.0,0,Transient,153.39,0,0,Check-Out,2018-06-02 -City Hotel,0,273,2015,September,44,13,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,117.42,0,0,Canceled,2018-06-02 -Resort Hotel,0,35,2016,January,35,28,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,74.7,0,1,Check-Out,2018-12-03 -City Hotel,1,15,2016,April,18,30,1,4,2,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,198.0,179.0,0,Transient,72.31,0,0,No-Show,2018-12-03 -Resort Hotel,0,95,2016,July,37,27,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,78.53,1,2,Check-Out,2019-06-03 -City Hotel,0,117,2017,May,23,19,0,4,2,0.0,0,BB,NOR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.89,0,2,Check-Out,2020-04-02 -City Hotel,1,17,2016,June,27,2,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.06,0,0,Canceled,2019-05-04 -City Hotel,1,15,2016,April,20,10,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,181.0,179.0,0,Transient-Party,120.88,0,0,Canceled,2019-02-01 -City Hotel,0,2,2016,November,50,2,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,242.0,0,Transient,91.56,0,0,Check-Out,2019-09-03 -City Hotel,1,121,2015,August,37,4,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.28,0,0,Canceled,2018-05-03 -City Hotel,0,1,2016,October,46,21,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,92.24,0,0,Check-Out,2019-07-04 -Resort Hotel,1,30,2016,May,21,4,1,1,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,I,1,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,13,2017,August,17,9,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,62.49,0,0,Check-Out,2020-06-02 -Resort Hotel,0,329,2017,May,26,29,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,126.76,1,1,Check-Out,2020-02-01 -Resort Hotel,0,29,2015,August,38,31,0,1,2,1.0,0,SC,ESP,Complementary,TA/TO,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient-Party,216.6,1,0,Check-Out,2018-07-03 -Resort Hotel,0,150,2017,June,21,2,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,1,No Deposit,314.0,179.0,0,Transient-Party,121.53,0,0,Check-Out,2019-03-04 -City Hotel,0,12,2016,September,51,29,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.82,0,1,Canceled,2019-12-04 -City Hotel,0,359,2017,September,45,22,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,99.95,0,0,Canceled,2019-08-04 -Resort Hotel,1,117,2017,March,16,21,1,0,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,38.0,179.0,0,Transient-Party,92.89,0,0,Canceled,2019-10-04 -Resort Hotel,0,52,2016,February,10,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,44.51,0,1,Check-Out,2019-02-01 -Resort Hotel,0,146,2017,March,8,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,135.71,1,1,Check-Out,2020-01-04 -City Hotel,1,149,2016,January,10,28,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,60.39,0,1,Canceled,2018-10-03 -City Hotel,0,54,2015,September,32,13,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,92.23,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,February,10,28,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,2,No Deposit,15.0,179.0,0,Transient,62.14,0,0,Check-Out,2018-11-02 -City Hotel,0,15,2017,May,35,4,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,83.12,0,0,Check-Out,2020-04-02 -City Hotel,1,44,2016,March,17,10,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.88,0,0,Canceled,2019-01-03 -City Hotel,1,161,2017,August,39,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,245.0,179.0,0,Transient,172.99,0,0,Canceled,2020-06-02 -City Hotel,0,25,2017,June,25,5,2,2,1,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.22,0,0,Check-Out,2020-05-03 -Resort Hotel,0,48,2016,August,50,21,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,124.64,1,1,Check-Out,2019-08-04 -City Hotel,1,314,2015,September,38,27,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,73.99,0,0,Canceled,2017-11-02 -City Hotel,1,72,2016,October,46,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,30.0,179.0,40,Transient,122.34,0,0,Canceled,2018-08-03 -City Hotel,0,25,2016,March,9,15,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient-Party,85.67,0,0,Check-Out,2019-02-01 -City Hotel,0,146,2017,June,25,1,2,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,72.0,179.0,0,Transient-Party,106.54,0,0,Check-Out,2020-05-03 -City Hotel,1,148,2015,July,27,2,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Contract,124.74,0,0,Canceled,2018-08-03 -Resort Hotel,0,134,2016,August,37,27,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,A,1,No Deposit,246.0,179.0,0,Transient,246.9,1,3,Check-Out,2019-06-03 -City Hotel,0,150,2017,July,28,20,2,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,L,D,1,No Deposit,15.0,179.0,0,Transient,211.57,0,0,Check-Out,2020-05-03 -City Hotel,1,257,2016,June,27,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.29,0,0,Canceled,2019-08-04 -City Hotel,1,329,2017,May,21,20,2,5,3,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,67.41,0,0,Canceled,2020-02-01 -Resort Hotel,1,15,2017,April,17,18,1,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,82.0,179.0,0,Transient,70.12,0,0,Canceled,2020-02-01 -City Hotel,0,0,2017,May,22,30,0,1,2,0.0,0,HB,PRT,Groups,Corporate,1,0,1,A,K,1,No Deposit,37.0,179.0,0,Group,112.85,0,0,Check-Out,2020-04-02 -City Hotel,0,5,2016,March,16,30,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,66.5,0,1,Check-Out,2019-03-04 -City Hotel,1,255,2016,May,23,31,1,2,2,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,D,0,No Deposit,192.0,179.0,0,Transient,137.48,0,0,Canceled,2019-08-04 -City Hotel,1,423,2017,April,16,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.43,0,0,Canceled,2019-11-03 -City Hotel,0,20,2017,May,22,25,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,78.16,0,0,Check-Out,2020-02-01 -Resort Hotel,0,198,2016,June,22,10,2,1,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,139.0,179.0,0,Transient,121.51,0,0,Check-Out,2019-03-04 -Resort Hotel,0,40,2016,October,44,13,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,113.41,1,3,Check-Out,2019-08-04 -Resort Hotel,0,13,2016,December,50,10,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,73.57,0,1,No-Show,2019-05-04 -City Hotel,0,298,2016,June,27,13,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,80.55,0,0,Check-Out,2019-06-03 -City Hotel,0,139,2016,January,4,18,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,76.0,179.0,17,Transient,73.38,0,0,Check-Out,2019-03-04 -Resort Hotel,0,10,2017,March,10,30,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,58.59,1,3,Check-Out,2019-10-04 -City Hotel,0,0,2016,November,44,9,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,182.0,0,Transient,110.25,0,0,Check-Out,2019-09-03 -City Hotel,1,423,2015,September,43,15,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.57,0,0,Canceled,2018-07-03 -City Hotel,1,0,2016,January,4,28,0,2,1,0.0,0,BB,,Online TA,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,83.1,0,0,No-Show,2018-11-02 -Resort Hotel,1,51,2017,February,7,9,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,84.14,0,1,Canceled,2019-12-04 -City Hotel,0,52,2015,September,49,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.62,0,0,Check-Out,2018-08-03 -City Hotel,1,18,2017,March,11,27,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,85.76,0,0,Canceled,2019-11-03 -City Hotel,0,32,2017,July,31,30,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-06-02 -Resort Hotel,0,13,2017,March,18,18,2,1,1,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,E,E,1,No Deposit,173.0,179.0,0,Transient,77.82,0,0,Check-Out,2020-02-01 -Resort Hotel,0,47,2016,October,44,1,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,73.9,0,2,Check-Out,2019-08-04 -City Hotel,1,39,2016,January,5,26,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,58.69,0,0,No-Show,2018-12-03 -City Hotel,1,199,2015,July,33,25,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,99.29,0,0,Canceled,2018-09-02 -Resort Hotel,0,250,2016,July,31,30,0,4,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,250.0,179.0,0,Transient,123.71,1,0,Check-Out,2020-05-03 -Resort Hotel,0,144,2016,September,17,31,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,10.0,222.0,0,Contract,71.1,0,0,Check-Out,2019-05-04 -City Hotel,0,149,2017,January,36,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,142.88,0,3,Check-Out,2020-06-02 -Resort Hotel,0,47,2017,July,23,22,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,238.0,179.0,0,Transient,144.32,0,2,Check-Out,2020-04-02 -City Hotel,0,9,2016,January,50,5,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.95,0,2,Check-Out,2019-11-03 -City Hotel,0,12,2016,December,53,9,2,1,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,79.5,0,0,Check-Out,2019-11-03 -City Hotel,0,3,2015,October,41,27,0,1,2,0.0,0,BB,ITA,Direct,Direct,1,0,1,A,D,0,No Deposit,15.0,179.0,0,Group,127.69,0,0,Check-Out,2018-08-03 -City Hotel,0,140,2017,July,36,6,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.61,0,2,Check-Out,2020-06-02 -Resort Hotel,0,105,2016,November,23,27,1,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,C,G,2,No Deposit,248.0,179.0,0,Transient,240.54,1,1,Check-Out,2019-06-03 -City Hotel,1,51,2017,June,27,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,74.85,0,0,Canceled,2020-03-03 -City Hotel,1,1,2015,August,39,18,0,1,2,0.0,0,BB,PRT,Complementary,Undefined,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Group,62.83,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,October,43,27,1,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,97.84,0,1,Check-Out,2019-07-04 -City Hotel,1,148,2016,June,21,20,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,41.76,0,0,Canceled,2019-01-03 -City Hotel,0,37,2017,May,20,21,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,125.38,0,1,Check-Out,2020-02-01 -City Hotel,1,98,2017,April,11,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,89.53,0,0,Canceled,2019-11-03 -City Hotel,0,9,2016,March,8,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,71.24,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2015,July,30,5,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,93.34,0,0,Check-Out,2018-05-03 -City Hotel,0,15,2017,June,26,9,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.19,0,2,Check-Out,2019-11-03 -Resort Hotel,0,9,2016,February,10,27,0,1,3,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,61.48,0,0,Check-Out,2018-10-03 -City Hotel,0,298,2016,October,44,27,1,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,73.87,0,0,Check-Out,2019-08-04 -City Hotel,1,84,2016,March,37,21,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,6.0,179.0,0,Transient,191.37,0,2,Canceled,2019-12-04 -City Hotel,1,115,2017,July,18,21,2,5,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,12.0,179.0,0,Transient,153.59,1,2,Canceled,2020-02-01 -City Hotel,1,113,2017,April,16,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,67.62,0,0,Canceled,2020-02-01 -Resort Hotel,0,54,2016,September,27,10,3,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,178.0,179.0,0,Transient,73.95,0,0,Check-Out,2019-03-04 -Resort Hotel,0,204,2016,September,43,16,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,45.48,1,0,Check-Out,2019-09-03 -Resort Hotel,0,208,2017,June,21,10,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,63.54,0,0,Check-Out,2020-04-02 -City Hotel,1,286,2016,May,16,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,40,Transient,81.58,0,0,Canceled,2019-01-03 -City Hotel,0,16,2016,October,36,30,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,B,F,0,No Deposit,13.0,179.0,0,Transient,88.55,0,2,Check-Out,2019-08-04 -City Hotel,0,88,2016,December,52,28,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.84,0,0,Check-Out,2019-12-04 -Resort Hotel,0,9,2016,December,50,7,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,331.0,0,Transient,33.0,1,0,Check-Out,2019-01-03 -City Hotel,0,16,2015,July,32,5,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,88.15,0,0,Check-Out,2019-03-04 -City Hotel,0,4,2017,May,24,11,0,2,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,106.92,1,0,Check-Out,2020-04-02 -City Hotel,0,320,2016,August,32,2,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,129.18,0,0,Check-Out,2019-06-03 -City Hotel,0,13,2015,August,30,18,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.09,0,0,Check-Out,2018-05-03 -City Hotel,1,385,2016,September,36,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,142.55,0,0,Canceled,2019-08-04 -City Hotel,1,8,2016,January,7,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,59.3,0,0,Canceled,2018-10-03 -City Hotel,0,47,2015,September,45,5,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,59.66,0,0,Check-Out,2018-09-02 -Resort Hotel,0,98,2016,July,35,6,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,202.47,0,1,Check-Out,2019-05-04 -City Hotel,0,13,2017,May,20,20,0,1,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,72.89,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,August,25,18,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,K,1,No Deposit,16.0,179.0,0,Transient,0.8,1,2,Check-Out,2019-11-03 -City Hotel,1,32,2017,April,9,2,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,148.1,0,0,Canceled,2018-11-02 -City Hotel,0,60,2016,July,16,12,0,3,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,94.34,0,2,Check-Out,2020-03-03 -Resort Hotel,0,95,2016,July,34,20,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient-Party,71.75,0,0,Check-Out,2018-06-02 -City Hotel,1,11,2015,September,32,21,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,183.99,0,0,Canceled,2019-06-03 -City Hotel,1,399,2016,November,50,16,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,67.04,0,2,Canceled,2019-09-03 -Resort Hotel,0,189,2016,September,35,19,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,154.87,1,1,Check-Out,2019-05-04 -Resort Hotel,0,49,2015,August,37,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,166.7,1,2,Check-Out,2018-08-03 -Resort Hotel,0,48,2016,February,11,5,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,33.0,331.0,0,Transient-Party,68.7,0,0,Check-Out,2019-11-03 -Resort Hotel,1,1,2016,April,9,2,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,1,No Deposit,30.0,179.0,0,Transient,35.86,0,0,Canceled,2019-06-03 -City Hotel,0,16,2016,July,26,21,0,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,9.0,179.0,0,Transient,113.09,0,3,Check-Out,2019-05-04 -Resort Hotel,0,12,2017,July,26,22,3,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,E,E,1,No Deposit,312.0,179.0,0,Group,90.38,0,0,Check-Out,2020-01-04 -Resort Hotel,0,253,2016,October,44,31,2,7,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,98.81,1,0,Check-Out,2019-08-04 -Resort Hotel,1,141,2017,August,30,5,2,6,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,10.0,179.0,0,Transient,158.45,0,2,Canceled,2020-05-03 -City Hotel,0,3,2016,July,31,18,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.03,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2015,October,43,15,1,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,83.0,179.0,0,Transient-Party,67.59,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,July,33,5,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,1,No Deposit,13.0,179.0,0,Transient,136.75,0,0,Check-Out,2019-05-04 -Resort Hotel,1,13,2015,July,31,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,194.38,0,0,Canceled,2018-06-02 -City Hotel,1,18,2017,April,23,21,0,2,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,170.0,179.0,0,Transient,145.53,0,0,Check-Out,2020-02-01 -City Hotel,1,5,2015,August,36,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,117.35,0,0,Canceled,2018-06-02 -Resort Hotel,0,43,2016,January,3,2,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,76.92,0,1,Check-Out,2019-12-04 -City Hotel,1,1,2017,July,37,16,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.98,0,2,Canceled,2020-03-03 -City Hotel,1,303,2015,August,37,20,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Contract,130.28,0,1,Canceled,2018-05-03 -City Hotel,1,114,2016,March,17,24,2,3,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,91.0,238.0,20,Transient,47.31,0,0,Canceled,2019-03-04 -City Hotel,1,34,2016,October,44,9,0,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,194.78,0,2,Canceled,2019-11-03 -Resort Hotel,0,2,2016,July,16,18,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,41.96,0,1,Check-Out,2019-05-04 -Resort Hotel,0,105,2016,April,35,26,2,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,F,D,0,No Deposit,16.0,179.0,0,Transient,162.06,1,0,Check-Out,2019-06-03 -City Hotel,1,432,2016,May,26,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.21,0,0,Canceled,2018-05-03 -Resort Hotel,0,15,2016,August,35,20,0,1,3,2.0,0,BB,ESP,Online TA,Direct,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,239.01,0,0,Check-Out,2019-05-04 -Resort Hotel,0,295,2017,May,23,27,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,295.0,179.0,0,Transient-Party,35.59,0,0,Check-Out,2020-03-03 -City Hotel,0,28,2016,April,16,6,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,2,No Deposit,16.0,179.0,0,Transient,212.03,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2016,November,43,25,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,1.74,0,1,Check-Out,2019-08-04 -City Hotel,0,3,2017,August,22,13,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,D,I,1,No Deposit,80.0,179.0,0,Group,0.0,0,0,Check-Out,2020-07-03 -City Hotel,1,24,2016,May,21,13,0,4,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,107.86,0,0,Canceled,2019-01-03 -Resort Hotel,1,25,2017,April,17,30,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,125.95,0,2,Canceled,2019-10-04 -City Hotel,1,229,2016,May,26,20,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,87.83,0,0,No-Show,2019-06-03 -City Hotel,1,314,2016,October,44,20,0,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,1,0,A,A,0,Non Refund,12.0,45.0,0,Transient-Party,121.02,0,0,Canceled,2018-08-03 -City Hotel,0,157,2017,July,33,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,113.66,0,2,Check-Out,2020-06-02 -Resort Hotel,0,264,2017,June,21,12,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,83.58,0,0,Check-Out,2020-02-01 -City Hotel,1,402,2015,August,31,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.87,0,0,Canceled,2017-12-03 -Resort Hotel,0,6,2016,April,23,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,117.03,1,2,Check-Out,2019-03-04 -Resort Hotel,1,3,2016,September,35,6,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,Non Refund,12.0,179.0,0,Transient,0.0,0,0,Canceled,2019-03-04 -City Hotel,1,68,2017,March,9,20,0,4,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.03,0,1,Canceled,2020-02-01 -Resort Hotel,0,62,2015,October,43,27,2,5,2,1.0,0,HB,,Direct,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,53.9,0,2,Check-Out,2018-06-02 -City Hotel,0,27,2016,July,25,4,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,30.0,179.0,0,Transient,148.76,0,0,Check-Out,2019-05-04 -City Hotel,1,1,2016,April,22,10,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,99.47,0,0,Canceled,2019-01-03 -City Hotel,1,391,2016,May,22,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,75.25,0,0,Canceled,2018-11-02 -Resort Hotel,1,44,2016,October,44,20,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.9,0,0,Canceled,2019-07-04 -Resort Hotel,1,58,2015,July,38,15,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,244.0,179.0,0,Transient,106.09,0,0,Canceled,2018-08-03 -City Hotel,1,38,2015,September,46,31,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,187.16,0,0,Canceled,2018-05-03 -Resort Hotel,1,51,2015,December,53,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,313.0,179.0,0,Transient,33.69,0,0,Canceled,2018-11-02 -City Hotel,0,52,2015,September,42,9,1,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Contract,85.84,0,0,Check-Out,2018-08-03 -City Hotel,0,57,2017,February,9,9,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.3,0,2,Check-Out,2020-02-01 -City Hotel,0,244,2017,July,36,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,175.67,0,2,Check-Out,2020-02-01 -Resort Hotel,0,106,2016,March,16,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,37.0,179.0,0,Contract,98.12,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2015,August,39,5,1,1,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,165.41,0,0,Check-Out,2019-07-04 -City Hotel,0,2,2017,February,10,10,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.65,0,1,Check-Out,2020-02-01 -Resort Hotel,0,1,2015,October,34,30,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,40.84,1,0,Check-Out,2018-06-02 -Resort Hotel,0,256,2016,October,43,23,1,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,G,1,No Deposit,8.0,179.0,0,Transient,87.03,0,1,Check-Out,2019-11-03 -City Hotel,0,14,2017,May,22,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient-Party,174.3,1,0,Check-Out,2020-04-02 -City Hotel,0,3,2016,June,44,8,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,117.64,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,October,45,31,1,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,93.91,1,1,Check-Out,2019-06-03 -City Hotel,0,1,2017,January,3,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.19,1,1,Check-Out,2019-09-03 -Resort Hotel,0,36,2016,September,33,27,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,246.73,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2016,January,4,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,12.0,45.0,0,Group,58.85,0,0,Check-Out,2019-09-03 -Resort Hotel,0,11,2016,February,3,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,115.64,0,1,Check-Out,2020-03-03 -City Hotel,0,118,2016,March,16,20,2,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,21.0,179.0,0,Transient,120.29,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,May,23,9,1,0,1,0.0,0,BB,FRA,Complementary,Direct,1,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-05-04 -City Hotel,0,28,2016,August,37,22,2,0,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,K,2,No Deposit,9.0,179.0,0,Transient,2.57,0,1,Check-Out,2020-06-02 -City Hotel,1,231,2016,August,32,21,2,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,179.38,0,0,Canceled,2019-07-04 -City Hotel,1,67,2016,June,34,14,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.88,0,1,No-Show,2019-08-04 -City Hotel,1,422,2015,October,48,10,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,60.15,0,0,Canceled,2018-09-02 -City Hotel,0,55,2017,January,7,16,2,0,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,184.94,0,0,Check-Out,2020-01-04 -Resort Hotel,0,144,2016,March,10,6,2,4,1,0.0,0,BB,GBR,Groups,Corporate,1,0,1,A,A,3,No Deposit,11.0,222.0,0,Transient-Party,66.22,0,0,Check-Out,2020-01-04 -Resort Hotel,0,152,2015,November,50,23,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,61.57,0,0,Check-Out,2018-06-02 -City Hotel,1,53,2015,August,35,24,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,67.37,0,0,Canceled,2018-12-03 -City Hotel,0,0,2017,April,19,15,0,1,1,0.0,0,BB,NLD,Aviation,Corporate,1,0,0,D,E,1,No Deposit,15.0,176.0,0,Transient,3.09,0,0,Check-Out,2020-04-02 -Resort Hotel,1,98,2015,December,51,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient-Party,44.96,0,0,Canceled,2018-05-03 -Resort Hotel,0,81,2017,May,22,28,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.68,1,2,Check-Out,2020-01-04 -City Hotel,1,123,2016,August,37,21,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,252.0,0,3,Canceled,2019-05-04 -Resort Hotel,1,90,2016,March,9,20,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,41,Transient,33.77,0,0,Canceled,2018-12-03 -Resort Hotel,1,96,2016,June,26,10,3,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,32.69,0,0,No-Show,2019-02-01 -City Hotel,0,44,2017,July,30,5,0,1,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,128.48,0,2,Check-Out,2020-06-02 -City Hotel,1,35,2016,September,34,24,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,133.49,0,0,Canceled,2018-06-02 -City Hotel,1,82,2015,August,36,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.1,0,0,Canceled,2017-12-03 -Resort Hotel,0,40,2017,February,9,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient-Party,89.06,1,0,Check-Out,2020-03-03 -Resort Hotel,1,287,2017,July,31,10,2,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,245.0,179.0,0,Transient,222.17,0,3,Canceled,2020-02-01 -Resort Hotel,0,7,2016,October,45,13,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,84.0,179.0,0,Transient-Party,62.2,0,0,Check-Out,2019-10-04 -City Hotel,0,144,2016,October,42,4,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.44,0,1,Check-Out,2019-08-04 -City Hotel,0,172,2016,August,34,5,2,3,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,104.7,0,0,Check-Out,2018-10-03 -Resort Hotel,0,369,2016,May,23,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,3,No Deposit,15.0,70.0,0,Transient,38.23,0,0,Check-Out,2019-04-03 -City Hotel,1,84,2016,May,17,31,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,157.41,0,0,Canceled,2019-03-04 -Resort Hotel,0,105,2016,August,36,2,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,205.27,0,1,Check-Out,2019-05-04 -City Hotel,0,105,2015,July,32,10,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,182.0,179.0,0,Transient,125.29,0,1,Check-Out,2018-05-03 -City Hotel,1,369,2016,May,22,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,121.21,0,0,Canceled,2018-12-03 -Resort Hotel,1,295,2017,August,35,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,242.0,179.0,0,Group,62.63,0,2,Canceled,2020-03-03 -Resort Hotel,0,0,2015,November,50,28,2,1,2,1.0,0,BB,PRT,Direct,Direct,1,0,0,L,C,0,No Deposit,14.0,179.0,0,Transient,76.22,0,0,Check-Out,2019-01-03 -Resort Hotel,0,8,2016,February,9,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,213.29,1,0,Check-Out,2019-02-01 -City Hotel,1,96,2017,February,8,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,H,0,No Deposit,84.0,179.0,0,Transient,70.85,0,0,No-Show,2019-01-03 -City Hotel,1,281,2016,November,50,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.53,0,0,Canceled,2019-09-03 -City Hotel,0,58,2016,October,42,17,0,2,2,2.0,0,BB,,Direct,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,166.92,0,1,Check-Out,2019-08-04 -Resort Hotel,0,149,2016,July,22,26,1,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,131.04,1,0,Check-Out,2019-04-03 -City Hotel,0,151,2016,August,44,23,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,126.8,1,2,Check-Out,2019-08-04 -Resort Hotel,0,147,2017,June,28,29,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,91.84,1,1,Check-Out,2020-03-03 -Resort Hotel,1,256,2017,May,21,22,2,5,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,E,F,2,No Deposit,14.0,179.0,0,Transient,153.13,0,0,Canceled,2020-03-03 -City Hotel,1,6,2017,March,10,15,0,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,147.86,0,0,Canceled,2020-02-01 -City Hotel,1,180,2016,January,3,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient-Party,59.95,0,0,Canceled,2018-10-03 -Resort Hotel,1,156,2017,February,9,25,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,308.0,179.0,0,Transient,168.31,0,3,Canceled,2020-03-03 -City Hotel,1,307,2015,September,34,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,62.38,0,0,Canceled,2017-10-03 -City Hotel,0,281,2016,May,21,24,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,101.37,0,1,Check-Out,2019-04-03 -City Hotel,1,0,2016,September,50,15,2,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,4.64,0,2,Canceled,2019-06-03 -City Hotel,1,0,2016,December,43,27,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,47.3,0,2,No-Show,2019-08-04 -City Hotel,0,14,2016,September,38,6,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,245.89,0,0,Check-Out,2019-08-04 -Resort Hotel,1,19,2017,September,34,20,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,231.54,0,0,Canceled,2020-06-02 -City Hotel,0,37,2016,December,53,5,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,E,E,0,No Deposit,13.0,331.0,0,Transient-Party,76.34,0,0,Check-Out,2019-11-03 -Resort Hotel,0,137,2016,February,9,31,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Contract,31.41,0,0,Check-Out,2019-12-04 -City Hotel,1,346,2016,October,44,24,2,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Refundable,27.0,179.0,0,Transient-Party,35.19,0,0,Canceled,2019-08-04 -Resort Hotel,0,84,2017,March,11,18,1,2,2,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,84.0,239.0,0,Transient,68.4,0,0,Check-Out,2020-03-03 -City Hotel,1,211,2016,December,36,24,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.73,0,2,Canceled,2019-10-04 -Resort Hotel,0,36,2016,February,17,30,2,3,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,66.7,0,0,Check-Out,2019-01-03 -City Hotel,0,23,2016,December,50,23,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,8.0,179.0,0,Transient,49.61,0,2,Check-Out,2018-12-03 -Resort Hotel,0,34,2017,May,26,18,2,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,D,1,No Deposit,240.0,179.0,0,Transient,160.96,1,3,Check-Out,2020-05-03 -City Hotel,1,210,2016,October,43,15,0,3,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,1,No Deposit,315.0,179.0,75,Transient,74.95,0,0,Canceled,2019-11-03 -Resort Hotel,0,174,2016,October,43,12,2,7,1,0.0,0,HB,,Offline TA/TO,Direct,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient,143.26,0,0,Check-Out,2019-08-04 -City Hotel,1,33,2016,May,22,28,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,66.21,0,1,No-Show,2019-06-03 -City Hotel,0,102,2015,July,33,16,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,237.48,0,0,Check-Out,2018-06-02 -City Hotel,0,153,2015,August,38,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,110.02,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2017,February,10,12,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,60.0,0,Transient,126.75,0,0,Check-Out,2020-03-03 -Resort Hotel,0,163,2016,July,32,31,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-07-04 -City Hotel,1,0,2015,October,41,17,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,10.0,179.0,0,Group,0.0,0,0,Canceled,2018-07-03 -City Hotel,0,42,2016,October,44,28,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,106.16,0,0,Check-Out,2019-09-03 -Resort Hotel,0,90,2015,October,43,10,2,5,2,0.0,0,HB,IRL,Direct,TA/TO,0,0,0,A,A,0,No Deposit,275.0,179.0,0,Transient,74.5,0,1,Check-Out,2018-09-02 -City Hotel,1,31,2016,December,53,17,1,0,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.62,0,1,Canceled,2019-11-03 -Resort Hotel,0,104,2017,May,23,24,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,74.53,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,February,12,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,59.08,0,0,Check-Out,2019-02-01 -City Hotel,0,18,2015,September,38,27,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,145.68,0,2,Check-Out,2019-06-03 -Resort Hotel,0,24,2017,August,36,6,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,152.97,0,1,Check-Out,2020-05-03 -Resort Hotel,0,203,2017,July,34,6,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,177.56,1,1,Check-Out,2020-06-02 -City Hotel,0,0,2015,August,34,17,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,D,D,0,No Deposit,32.0,179.0,0,Group,107.07,0,0,Check-Out,2018-06-02 -City Hotel,1,38,2017,March,10,11,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.13,0,0,Canceled,2019-11-03 -City Hotel,1,163,2017,May,36,2,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,236.0,179.0,0,Transient,155.32,0,1,Canceled,2020-04-02 -City Hotel,1,319,2015,September,44,30,1,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.95,0,0,Canceled,2018-08-03 -Resort Hotel,0,4,2016,February,9,25,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,86.74,0,0,Check-Out,2019-10-04 -City Hotel,1,60,2017,March,10,24,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,108.02,0,0,Canceled,2019-11-03 -City Hotel,0,111,2016,February,9,23,0,3,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,153.68,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,October,43,24,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,241.0,179.0,0,Transient,150.92,0,0,Check-Out,2018-08-03 -City Hotel,0,71,2017,January,4,31,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,61.7,0,1,Check-Out,2019-09-03 -Resort Hotel,0,106,2015,October,50,26,4,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,136.0,179.0,0,Transient-Party,48.64,0,0,Check-Out,2018-06-02 -Resort Hotel,0,149,2016,July,31,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,121.77,0,0,Check-Out,2019-06-03 -Resort Hotel,0,53,2016,May,22,17,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,83.82,0,0,Check-Out,2019-03-04 -City Hotel,0,156,2017,June,28,18,0,6,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,8.0,179.0,0,Transient,120.23,0,1,Check-Out,2020-06-02 -City Hotel,1,28,2017,May,22,6,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient,82.37,0,0,Canceled,2020-03-03 -Resort Hotel,1,245,2017,April,15,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,89.83,0,0,Canceled,2019-11-03 -Resort Hotel,0,159,2017,July,33,22,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,C,3,No Deposit,240.0,179.0,0,Transient,93.31,0,1,Check-Out,2020-03-03 -City Hotel,0,31,2016,July,37,3,0,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,64.78,0,2,Check-Out,2019-07-04 -City Hotel,1,264,2015,July,38,2,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,124.08,0,0,Canceled,2018-05-03 -Resort Hotel,1,161,2016,March,17,29,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Refundable,10.0,222.0,0,Transient-Party,95.39,0,0,Canceled,2019-03-04 -City Hotel,0,1,2015,August,38,5,2,1,1,0.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,59.71,0,1,Canceled,2018-06-02 -City Hotel,0,3,2015,December,51,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.86,0,0,Check-Out,2018-10-03 -Resort Hotel,0,0,2016,February,9,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,179.0,0,Group,76.19,0,3,Check-Out,2018-10-03 -City Hotel,0,110,2017,June,27,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient-Party,130.75,0,0,Check-Out,2020-02-01 -Resort Hotel,0,146,2016,July,5,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,34.2,0,0,Check-Out,2019-03-04 -Resort Hotel,1,104,2016,June,25,9,1,3,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,141.0,179.0,0,Transient,44.45,0,0,Canceled,2018-06-02 -City Hotel,0,28,2017,May,23,23,2,0,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,B,2,No Deposit,13.0,179.0,0,Transient-Party,113.16,0,0,Check-Out,2019-06-03 -Resort Hotel,0,156,2015,July,38,29,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,D,1,No Deposit,240.0,179.0,0,Transient,125.47,0,2,Check-Out,2018-10-03 -Resort Hotel,1,2,2016,March,8,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,183.0,179.0,0,Transient,40.68,0,0,Canceled,2018-11-02 -City Hotel,0,80,2015,December,53,10,0,2,2,0.0,0,Undefined,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,100.68,0,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2016,January,3,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,35.93,0,0,Check-Out,2018-12-03 -City Hotel,0,166,2017,June,21,21,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.1,0,1,Canceled,2020-03-03 -Resort Hotel,0,43,2016,December,53,30,0,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,39.0,179.0,0,Transient-Party,94.46,0,0,Check-Out,2019-06-03 -City Hotel,0,7,2017,May,21,28,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,F,0,No Deposit,190.0,179.0,0,Transient,152.95,0,0,Check-Out,2020-01-04 -City Hotel,1,8,2015,September,39,2,1,2,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,94.51,0,0,No-Show,2018-09-02 -City Hotel,0,0,2017,July,31,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.21,0,1,No-Show,2018-05-03 -City Hotel,0,32,2017,May,21,7,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.56,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2017,February,12,22,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,122.24,0,0,Check-Out,2020-01-04 -City Hotel,1,237,2016,December,11,5,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,123.75,0,0,Canceled,2018-11-02 -Resort Hotel,0,18,2015,October,49,20,1,0,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,71.17,0,0,Check-Out,2018-09-02 -City Hotel,0,17,2016,June,27,20,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,10.0,179.0,0,Transient,139.93,0,3,Check-Out,2019-04-03 -City Hotel,0,0,2016,March,8,18,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,0,54,2016,October,22,20,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,181.45,0,3,Check-Out,2019-06-03 -Resort Hotel,0,14,2015,July,35,4,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,104.63,0,0,Check-Out,2018-07-03 -City Hotel,0,38,2017,March,37,2,0,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.4,0,1,Check-Out,2020-07-03 -Resort Hotel,1,259,2016,August,32,5,2,5,2,1.0,0,FB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,122.48,0,0,Canceled,2019-05-04 -City Hotel,1,13,2015,October,42,20,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,108.88,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2016,September,31,7,2,1,2,2.0,0,BB,ITA,Online TA,Direct,0,0,0,F,F,3,No Deposit,11.0,179.0,0,Transient,226.53,0,0,Check-Out,2018-10-03 -City Hotel,0,12,2016,March,17,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.94,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2017,March,11,13,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,76.24,0,0,Check-Out,2019-10-04 -City Hotel,0,54,2015,December,51,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,72.0,179.0,0,Transient,119.02,0,0,Check-Out,2018-08-03 -City Hotel,0,78,2016,October,43,24,2,3,1,0.0,0,BB,BEL,Corporate,Corporate,1,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,69.32,1,0,Check-Out,2019-12-04 -City Hotel,0,29,2016,October,42,22,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,245.37,0,0,Check-Out,2019-08-04 -Resort Hotel,1,115,2015,December,53,2,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,110.18,0,0,Canceled,2018-12-03 -City Hotel,0,2,2017,January,3,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,15.0,97.0,0,Transient,47.13,0,0,Check-Out,2019-09-03 -Resort Hotel,0,196,2017,February,10,20,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,53.97,0,0,Check-Out,2020-01-04 -Resort Hotel,1,23,2016,August,53,14,2,4,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,218.96,0,1,Canceled,2019-05-04 -Resort Hotel,0,156,2017,June,26,28,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,170.0,179.0,0,Transient,126.12,0,1,Check-Out,2020-06-02 -City Hotel,0,58,2015,September,41,25,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Transient-Party,64.01,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,June,19,8,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -City Hotel,0,249,2016,July,25,20,0,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,95.4,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,March,11,24,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,249.0,0,Transient,40.36,0,0,Check-Out,2019-02-01 -Resort Hotel,0,18,2016,March,16,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,34.65,0,0,Check-Out,2019-02-01 -City Hotel,0,146,2017,March,10,28,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,74.59,0,0,Check-Out,2019-12-04 -Resort Hotel,0,4,2017,July,29,20,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,48.59,0,2,Check-Out,2019-11-03 -City Hotel,1,16,2017,January,3,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,81.06,0,0,Canceled,2019-10-04 -City Hotel,0,56,2016,May,22,19,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,76.29,0,0,Check-Out,2019-10-04 -City Hotel,1,18,2016,February,3,28,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,77.0,0,Transient,79.13,0,0,No-Show,2018-11-02 -City Hotel,1,146,2016,June,25,16,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,150.97,0,0,Canceled,2019-05-04 -Resort Hotel,1,53,2017,August,38,21,4,5,2,0.0,0,HB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,193.37,0,1,Check-Out,2020-07-03 -Resort Hotel,1,172,2017,June,33,22,2,5,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,206.13,0,0,No-Show,2020-02-01 -City Hotel,1,15,2016,March,9,15,0,2,2,0.0,0,HB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,15.0,179.0,0,Transient-Party,74.07,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2016,November,45,8,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,73.0,0,Transient,48.19,1,3,Check-Out,2019-07-04 -Resort Hotel,0,205,2016,August,35,28,3,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,35.98,0,0,Check-Out,2019-09-03 -City Hotel,1,141,2016,February,9,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,40.92,0,0,Canceled,2019-04-03 -City Hotel,0,352,2017,January,10,27,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,80.8,0,1,Check-Out,2020-01-04 -Resort Hotel,0,13,2016,October,45,24,1,2,2,0.0,0,SC,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,63,Transient-Party,96.28,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,March,11,21,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,71.35,0,1,Check-Out,2019-02-01 -City Hotel,0,49,2016,December,53,30,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.36,0,1,Check-Out,2019-12-04 -City Hotel,0,31,2017,April,18,15,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,I,0,No Deposit,155.0,179.0,75,Transient-Party,68.06,0,0,Check-Out,2020-03-03 -City Hotel,1,54,2016,March,17,10,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,158.2,0,0,Canceled,2018-12-03 -City Hotel,1,56,2015,December,49,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,11.0,179.0,0,Transient,121.84,0,0,Canceled,2018-10-03 -Resort Hotel,1,258,2015,September,21,15,2,10,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,62.32,0,0,Canceled,2017-12-03 -City Hotel,0,42,2016,December,45,28,1,3,3,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,7.0,179.0,0,Transient,130.36,0,2,Canceled,2019-11-03 -City Hotel,0,110,2017,June,26,21,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,119.08,0,1,Check-Out,2020-06-02 -City Hotel,0,2,2016,February,12,27,1,0,2,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,70.36,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,July,25,7,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,151.58,1,0,Check-Out,2019-05-04 -Resort Hotel,0,4,2016,March,34,31,1,3,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,6.59,0,0,Check-Out,2018-11-02 -City Hotel,1,107,2016,October,44,22,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,155.72,0,2,Canceled,2019-08-04 -City Hotel,1,257,2016,October,46,29,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,95.75,0,0,Canceled,2019-09-03 -City Hotel,1,45,2016,November,50,23,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,13.0,179.0,0,Transient,93.21,0,0,Canceled,2019-08-04 -Resort Hotel,1,108,2016,October,42,10,2,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,2019-08-04 -City Hotel,0,37,2016,October,45,29,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,100.79,0,0,Check-Out,2019-12-04 -City Hotel,0,115,2017,May,23,16,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.37,0,0,Check-Out,2020-03-03 -Resort Hotel,1,105,2015,October,45,21,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,115.12,0,2,No-Show,2018-07-03 -City Hotel,0,106,2016,June,27,15,2,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.89,0,0,Check-Out,2019-06-03 -City Hotel,1,300,2016,August,29,25,0,1,2,0.0,0,BB,ESP,Undefined,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,61.31,0,0,Canceled,2019-06-03 -City Hotel,0,9,2016,October,49,25,0,3,1,0.0,0,BB,FRA,Complementary,Corporate,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,108.84,0,1,Check-Out,2019-09-03 -City Hotel,0,4,2015,October,37,15,0,1,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,1,0,0,D,D,0,No Deposit,97.0,179.0,0,Group,99.9,0,1,Check-Out,2018-08-03 -City Hotel,1,215,2016,June,27,19,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,92.85,0,0,Canceled,2019-02-01 -City Hotel,0,41,2016,January,34,27,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,72.13,0,1,Check-Out,2019-01-03 -City Hotel,1,287,2015,October,44,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.55,0,0,Canceled,2018-09-02 -City Hotel,1,40,2017,May,22,27,2,5,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,82.92,0,2,Canceled,2020-01-04 -City Hotel,0,61,2016,April,16,11,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,69.8,0,0,Check-Out,2018-11-02 -City Hotel,0,48,2015,November,50,24,2,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,94.05,0,0,Check-Out,2018-12-03 -Resort Hotel,0,167,2016,May,18,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,14.0,222.0,0,Transient-Party,61.23,0,0,Check-Out,2019-02-01 -City Hotel,0,101,2017,March,4,28,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.61,0,0,Check-Out,2020-04-02 -City Hotel,0,138,2016,August,36,18,1,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,71.29,1,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,January,2,12,0,1,1,0.0,0,BB,GBR,Corporate,Direct,1,0,0,A,D,0,No Deposit,16.0,94.0,0,Transient,29.13,1,0,Check-Out,2019-10-04 -City Hotel,1,87,2016,January,10,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.74,0,0,Canceled,2019-01-03 -City Hotel,0,35,2016,May,21,5,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,117.05,0,1,Check-Out,2019-03-04 -Resort Hotel,0,149,2016,August,38,19,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,185.97,0,2,Check-Out,2019-09-03 -Resort Hotel,0,323,2017,June,22,29,3,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,107.68,0,0,Check-Out,2020-06-02 -Resort Hotel,0,10,2016,March,11,15,0,4,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,292.0,179.0,75,Transient-Party,38.25,1,1,Check-Out,2020-02-01 -City Hotel,0,39,2016,December,42,31,2,7,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,164.32,0,3,Check-Out,2019-09-03 -Resort Hotel,1,17,2016,May,12,29,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,310.0,179.0,0,Transient,61.0,0,0,Canceled,2020-04-02 -City Hotel,1,94,2016,October,46,21,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.59,0,2,Canceled,2019-08-04 -City Hotel,0,1,2017,January,4,27,0,1,2,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,224.0,0,Transient,123.07,0,1,Check-Out,2020-06-02 -City Hotel,0,31,2016,July,33,15,0,3,1,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,149.29,0,0,Check-Out,2019-06-03 -Resort Hotel,1,52,2016,January,53,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,80.12,0,1,Canceled,2019-10-04 -Resort Hotel,0,2,2016,August,9,10,0,2,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-03-04 -Resort Hotel,0,37,2017,May,17,15,2,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,35.88,0,2,Check-Out,2020-03-03 -Resort Hotel,1,160,2016,April,16,30,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,220.0,0,Transient-Party,63.89,0,0,Canceled,2019-01-03 -City Hotel,0,169,2016,March,3,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,40.42,0,1,Check-Out,2018-12-03 -City Hotel,1,6,2016,October,49,21,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,261.0,0,Transient,0.0,0,0,Canceled,2019-09-03 -City Hotel,0,1,2016,March,17,29,0,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,116.52,1,2,Check-Out,2019-03-04 -City Hotel,1,262,2015,December,50,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.27,0,0,Canceled,2018-08-03 -Resort Hotel,1,302,2015,August,44,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,240.0,179.0,0,Contract,60.01,0,1,Canceled,2017-11-02 -Resort Hotel,0,42,2016,June,27,5,1,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,190.96,1,1,Check-Out,2019-03-04 -Resort Hotel,0,66,2016,April,17,6,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,67.74,0,2,Check-Out,2019-04-03 -Resort Hotel,0,0,2016,March,50,10,2,2,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,52.53,0,1,Check-Out,2018-10-03 -City Hotel,0,18,2016,June,28,27,1,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.22,0,0,Check-Out,2019-05-04 -City Hotel,1,218,2016,October,43,15,2,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,75,Transient,106.56,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,October,41,10,1,0,1,0.0,0,BB,,Complementary,Corporate,1,0,0,A,F,1,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-10-04 -City Hotel,0,157,2017,June,26,2,0,3,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,76.0,179.0,0,Transient,157.15,0,0,Check-Out,2020-02-01 -City Hotel,0,3,2017,May,26,27,0,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,132.43,0,1,Check-Out,2020-04-02 -City Hotel,0,41,2016,December,50,21,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.02,0,2,Check-Out,2019-03-04 -Resort Hotel,0,10,2016,August,38,30,0,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,152.42,0,1,Check-Out,2019-06-03 -City Hotel,0,18,2015,October,44,30,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.92,0,0,Check-Out,2018-09-02 -City Hotel,0,9,2017,February,12,21,2,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,11.0,179.0,0,Transient,77.67,0,3,Check-Out,2019-09-03 -Resort Hotel,1,17,2016,January,10,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,160.29,0,0,Canceled,2019-08-04 -Resort Hotel,0,11,2016,June,27,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,106.43,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,February,11,2,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,39.36,0,0,Check-Out,2019-03-04 -Resort Hotel,1,162,2017,May,18,26,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,A,0,No Deposit,378.0,179.0,0,Transient-Party,99.5,0,2,Canceled,2020-03-03 -City Hotel,0,360,2016,September,37,26,0,1,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,71.74,0,0,Check-Out,2020-06-02 -City Hotel,1,45,2017,May,22,25,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,110.65,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,April,15,31,1,2,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,1,No Deposit,15.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-03-04 -City Hotel,1,89,2016,September,44,30,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,5.0,179.0,0,Transient,190.46,0,1,Canceled,2019-06-03 -Resort Hotel,1,209,2016,March,15,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,130.0,179.0,0,Transient-Party,60.95,0,0,Canceled,2019-03-04 -City Hotel,0,61,2016,December,49,5,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,108.7,0,0,Check-Out,2018-11-02 -Resort Hotel,0,235,2015,September,36,10,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,141.0,179.0,0,Contract,32.87,0,0,Check-Out,2018-08-03 -City Hotel,1,20,2016,October,44,27,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,10.0,179.0,0,Transient,75.17,0,0,Canceled,2019-08-04 -City Hotel,0,13,2015,December,49,16,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-12-03 -City Hotel,0,3,2015,September,41,6,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,D,D,0,No Deposit,85.0,179.0,0,Transient,126.39,0,0,Check-Out,2018-08-03 -Resort Hotel,1,361,2017,May,20,6,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,124.22,0,0,Canceled,2020-03-03 -Resort Hotel,1,50,2016,November,36,27,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Non Refund,240.0,179.0,0,Transient,197.38,0,0,Canceled,2019-09-03 -City Hotel,1,12,2017,May,22,21,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,148.74,0,1,Canceled,2019-03-04 -Resort Hotel,0,98,2015,July,31,6,2,2,2,0.0,0,FB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,317.0,179.0,0,Transient-Party,149.91,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,February,10,31,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,15.0,179.0,0,Transient,82.02,0,0,Check-Out,2019-12-04 -City Hotel,0,167,2017,June,8,16,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,114.62,0,3,Check-Out,2020-05-03 -City Hotel,0,4,2016,June,23,20,0,1,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,193.0,210.0,0,Group,62.23,0,0,Check-Out,2019-06-03 -Resort Hotel,0,121,2017,July,36,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,129.45,0,2,Check-Out,2020-04-02 -Resort Hotel,1,1,2015,October,45,31,1,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,17.0,179.0,0,Transient,76.56,0,0,Canceled,2017-11-02 -Resort Hotel,0,32,2017,May,22,28,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,142.32,1,2,Check-Out,2020-06-02 -Resort Hotel,0,21,2016,March,16,12,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,112.66,0,0,Check-Out,2019-03-04 -City Hotel,0,42,2016,October,46,27,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.74,0,1,Check-Out,2019-07-04 -Resort Hotel,1,53,2017,May,22,16,0,3,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,A,A,0,Non Refund,247.0,179.0,0,Transient,118.43,0,0,Canceled,2020-05-03 -City Hotel,1,10,2017,March,9,14,0,2,3,0.0,0,HB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Canceled,2020-01-04 -Resort Hotel,0,88,2015,October,41,25,2,5,2,0.0,0,HB,NOR,Direct,Direct,0,0,0,A,D,0,No Deposit,364.0,179.0,0,Transient,45.55,1,2,Check-Out,2018-05-03 -Resort Hotel,1,249,2016,October,20,27,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,43.97,0,0,Canceled,2019-08-04 -Resort Hotel,1,8,2015,October,44,2,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,62.1,1,0,Canceled,2018-09-02 -City Hotel,1,90,2017,January,9,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,89.29,0,0,Canceled,2019-10-04 -Resort Hotel,0,36,2017,March,11,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient,84.34,1,0,Check-Out,2020-03-03 -Resort Hotel,0,158,2016,March,10,13,2,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,76.5,0,0,Check-Out,2019-10-04 -City Hotel,1,43,2017,August,25,14,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,199.01,0,0,Canceled,2020-07-03 -Resort Hotel,0,0,2016,March,8,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,30.53,0,0,Check-Out,2018-11-02 -City Hotel,1,225,2015,September,41,7,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.85,0,0,Canceled,2018-08-03 -City Hotel,1,204,2017,March,50,30,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,120.72,0,0,Canceled,2019-10-04 -City Hotel,0,395,2015,August,43,5,0,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,120.14,0,1,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,August,33,5,3,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,61.24,0,2,Check-Out,2018-06-02 -Resort Hotel,1,161,2017,March,17,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,15.0,222.0,0,Transient,79.78,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2016,January,9,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,77.0,0,Transient,71.94,0,0,Check-Out,2018-11-02 -City Hotel,1,15,2016,June,15,21,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,139.0,179.0,0,Transient,90.03,0,0,Canceled,2019-02-01 -Resort Hotel,0,99,2016,September,41,27,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,146.0,179.0,0,Transient-Party,123.46,0,0,Check-Out,2019-09-03 -City Hotel,1,7,2016,March,8,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,64.38,0,0,Canceled,2018-10-03 -City Hotel,1,35,2016,December,53,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,68.07,0,0,Canceled,2018-11-02 -City Hotel,0,30,2016,January,3,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.33,0,0,Check-Out,2018-10-03 -Resort Hotel,0,43,2016,January,11,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,62.22,0,2,Check-Out,2018-11-02 -City Hotel,1,246,2017,June,24,28,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,9.0,179.0,0,Transient,190.94,0,0,Canceled,2019-12-04 -City Hotel,1,19,2015,October,44,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,62,Transient,74.99,0,0,Canceled,2019-01-03 -City Hotel,1,93,2016,November,51,28,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,P,A,0,No Deposit,9.0,179.0,0,Transient,65.96,0,0,Canceled,2019-08-04 -City Hotel,1,103,2017,July,32,13,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,142.25,0,1,Canceled,2019-05-04 -City Hotel,0,160,2016,June,19,2,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.27,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,December,50,5,1,0,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,I,1,No Deposit,15.0,179.0,0,Transient,0.0,1,3,Check-Out,2018-05-03 -City Hotel,0,5,2017,May,8,9,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,13.0,65.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -City Hotel,0,163,2017,July,28,28,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,130.24,0,1,Check-Out,2020-06-02 -City Hotel,1,320,2016,October,45,27,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.07,0,0,Canceled,2019-08-04 -City Hotel,1,276,2015,January,10,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.67,0,0,Canceled,2017-11-02 -City Hotel,0,43,2015,October,45,21,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient-Party,60.44,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2016,November,44,13,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,137.24,0,1,Check-Out,2019-11-03 -City Hotel,1,69,2016,April,17,10,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,61.96,0,0,Canceled,2019-03-04 -Resort Hotel,0,243,2017,March,16,9,0,5,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,31.69,1,1,Check-Out,2019-01-03 -City Hotel,1,17,2016,March,9,30,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.19,0,0,Canceled,2019-02-01 -City Hotel,1,2,2016,May,43,28,0,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,112.52,0,0,Canceled,2019-05-04 -City Hotel,0,21,2016,August,37,24,1,0,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,119.19,0,0,Check-Out,2020-07-03 -City Hotel,0,83,2016,July,31,30,2,4,1,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,C,3,No Deposit,239.0,179.0,0,Transient,130.98,0,0,Check-Out,2018-05-03 -City Hotel,1,389,2016,April,22,17,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,132.0,179.0,0,Transient,83.34,0,0,Canceled,2019-03-04 -City Hotel,0,4,2015,October,44,16,1,0,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,E,E,1,No Deposit,13.0,331.0,0,Transient-Party,71.06,0,0,Check-Out,2018-09-02 -Resort Hotel,0,98,2016,April,16,24,2,5,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient-Party,77.28,0,2,Check-Out,2019-02-01 -City Hotel,1,20,2017,April,22,25,0,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,53.34,0,0,Canceled,2020-02-01 -City Hotel,0,254,2016,October,44,9,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,118.0,0,0,Check-Out,2019-07-04 -City Hotel,0,46,2016,May,23,31,1,1,1,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,84.47,0,0,Check-Out,2019-06-03 -City Hotel,0,47,2015,September,43,21,2,7,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,31.0,179.0,0,Group,107.71,0,0,Check-Out,2018-08-03 -City Hotel,0,130,2016,October,43,1,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,60.11,0,1,Check-Out,2019-06-03 -Resort Hotel,0,56,2015,December,50,24,0,3,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,37.37,1,2,Check-Out,2018-12-03 -City Hotel,1,2,2017,July,9,24,0,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,230.72,0,1,Canceled,2020-06-02 -Resort Hotel,0,3,2015,October,46,21,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,13.0,240.0,0,Transient-Party,33.28,0,0,Check-Out,2018-09-02 -City Hotel,0,12,2017,July,26,22,0,3,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.24,0,1,Check-Out,2020-06-02 -Resort Hotel,0,3,2015,August,39,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,163.0,179.0,0,Transient,61.72,0,0,Check-Out,2018-07-03 -Resort Hotel,0,36,2016,July,22,18,3,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,3,No Deposit,15.0,179.0,0,Transient,122.81,0,0,Check-Out,2019-03-04 -Resort Hotel,1,293,2016,July,36,30,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,252.0,0,3,Canceled,2019-05-04 -City Hotel,0,23,2015,October,44,10,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,58.35,0,0,Check-Out,2018-08-03 -City Hotel,0,98,2016,June,28,9,3,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,135.57,0,0,Check-Out,2019-08-04 -City Hotel,1,272,2015,November,44,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,43,Transient,63.48,0,0,Canceled,2017-11-02 -Resort Hotel,0,1,2015,August,37,18,1,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,62.44,0,0,Check-Out,2018-07-03 -City Hotel,1,238,2017,April,22,6,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.52,0,2,Canceled,2019-09-03 -City Hotel,1,158,2016,June,26,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.37,0,0,Canceled,2019-01-03 -City Hotel,1,164,2017,February,4,27,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,A,0,Non Refund,9.0,179.0,0,Transient,93.59,0,0,Canceled,2019-11-03 -City Hotel,0,152,2016,March,16,25,1,3,2,0.0,0,HB,CHE,Groups,Direct,0,0,0,A,A,3,Refundable,12.0,222.0,0,Transient-Party,77.64,0,0,Canceled,2019-02-01 -City Hotel,0,12,2017,August,27,9,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,203.5,0,1,Check-Out,2020-06-02 -City Hotel,0,17,2015,September,42,7,0,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,79.96,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2016,October,50,4,1,1,1,0.0,0,BB,NLD,Aviation,Corporate,0,0,0,E,E,0,No Deposit,14.0,195.0,0,Transient,90.55,0,0,Check-Out,2019-08-04 -City Hotel,1,18,2017,January,4,24,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,153.27,0,0,Canceled,2019-11-03 -Resort Hotel,0,68,2015,August,35,11,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,167.0,179.0,0,Transient-Party,136.5,0,0,Check-Out,2018-05-03 -Resort Hotel,0,25,2016,July,26,16,1,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,251.0,179.0,0,Transient,102.59,1,2,Check-Out,2019-06-03 -City Hotel,1,22,2016,June,24,2,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,3.0,45.0,0,Transient,61.34,0,0,Canceled,2019-02-01 -City Hotel,1,228,2016,July,34,25,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,6.0,179.0,0,Transient,75.1,0,2,Canceled,2018-11-02 -City Hotel,0,3,2017,February,13,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,193.0,77.0,0,Transient-Party,62.88,0,0,Check-Out,2020-03-03 -City Hotel,0,237,2016,August,31,28,1,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,88.63,0,1,Check-Out,2019-05-04 -Resort Hotel,0,17,2016,May,36,16,0,1,2,0.0,0,HB,IRL,Groups,Direct,0,0,0,A,C,0,No Deposit,43.0,179.0,0,Transient,111.22,0,0,Check-Out,2019-07-04 -City Hotel,1,8,2016,February,10,21,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,0,A,D,0,No Deposit,9.0,60.0,0,Transient,61.59,0,0,Canceled,2018-10-03 -Resort Hotel,0,43,2015,August,35,18,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,105.52,1,0,Check-Out,2018-06-02 -City Hotel,0,226,2016,October,43,19,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,94.23,0,0,Check-Out,2018-09-02 -City Hotel,1,13,2017,May,22,9,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,207.95,0,2,Canceled,2020-03-03 -Resort Hotel,1,123,2016,April,24,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,H,0,Non Refund,243.0,179.0,0,Transient,68.02,0,0,Canceled,2019-03-04 -City Hotel,0,15,2017,January,10,10,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,8.0,179.0,0,Transient,92.27,0,3,Check-Out,2019-10-04 -Resort Hotel,0,207,2017,September,35,2,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,194.86,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,October,42,10,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.74,0,1,Check-Out,2019-09-03 -City Hotel,0,259,2017,August,30,25,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.15,0,1,Check-Out,2020-06-02 -City Hotel,0,49,2016,December,16,24,1,4,2,0.0,0,BB,BRA,Groups,TA/TO,0,0,0,D,D,1,No Deposit,92.0,179.0,0,Transient-Party,81.84,0,0,Check-Out,2020-06-02 -City Hotel,0,69,2016,August,36,10,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,75.27,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2017,March,10,9,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Contract,63.77,0,1,Check-Out,2020-02-01 -City Hotel,0,12,2016,November,26,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,331.0,0,Transient,71.07,0,0,Check-Out,2019-05-04 -City Hotel,0,46,2016,December,50,21,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.69,0,1,Check-Out,2019-09-03 -City Hotel,0,12,2016,September,36,15,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,30.0,179.0,0,Transient-Party,74.35,0,0,Check-Out,2018-09-02 -City Hotel,1,13,2017,July,27,15,0,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,162.0,179.0,0,Transient,115.78,0,0,Canceled,2020-06-02 -City Hotel,1,16,2017,August,28,7,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,A,0,Non Refund,11.0,179.0,0,Transient,76.9,0,0,Canceled,2019-12-04 -City Hotel,0,306,2016,September,37,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,93.55,0,1,Check-Out,2018-08-03 -City Hotel,1,229,2016,August,15,20,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,153.62,0,0,Canceled,2019-03-04 -City Hotel,0,6,2016,December,50,6,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,128.2,0,1,Check-Out,2019-11-03 -City Hotel,1,187,2016,March,50,10,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,31.0,179.0,0,Transient-Party,64.6,0,0,No-Show,2019-02-01 -Resort Hotel,0,133,2016,May,24,30,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,248.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-04-02 -Resort Hotel,1,103,2017,May,21,24,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,2,No Deposit,161.0,179.0,0,Transient,0.0,0,1,No-Show,2019-03-04 -City Hotel,0,88,2015,October,36,4,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,97.07,0,0,Check-Out,2018-08-03 -City Hotel,0,4,2015,July,33,5,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,111.85,0,1,Check-Out,2018-06-02 -City Hotel,1,103,2016,April,18,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.63,0,0,Canceled,2019-02-01 -City Hotel,0,23,2016,July,26,27,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,108.77,0,0,Check-Out,2019-03-04 -Resort Hotel,0,138,2017,June,27,24,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,23.0,179.0,0,Contract,87.74,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2017,February,10,13,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,68.0,0,Transient,37.13,0,1,Check-Out,2020-02-01 -City Hotel,1,242,2015,October,45,5,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient-Party,98.93,0,0,Canceled,2018-07-03 -City Hotel,1,53,2016,March,9,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.55,0,0,No-Show,2018-11-02 -Resort Hotel,0,124,2015,December,50,9,2,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient-Party,79.28,0,0,Check-Out,2018-08-03 -City Hotel,0,18,2017,June,9,27,0,1,1,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.64,0,1,Check-Out,2020-03-03 -Resort Hotel,0,4,2015,December,49,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,0,No Deposit,247.0,179.0,0,Group,42.33,0,1,Check-Out,2018-10-03 -City Hotel,0,0,2017,January,11,30,2,2,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,67.12,0,1,Check-Out,2019-12-04 -Resort Hotel,0,210,2017,April,16,28,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,136.5,0,2,Check-Out,2020-03-03 -Resort Hotel,0,172,2016,December,52,5,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,243.0,179.0,0,Transient,114.93,1,1,Check-Out,2019-08-04 -City Hotel,0,86,2016,October,43,15,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,156.84,0,1,Check-Out,2019-06-03 -City Hotel,1,71,2017,August,36,17,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,99.59,0,1,Canceled,2020-05-03 -City Hotel,0,95,2017,May,21,5,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.69,0,0,Check-Out,2020-05-03 -Resort Hotel,1,19,2015,December,51,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,59.68,0,0,Canceled,2018-08-03 -City Hotel,1,40,2016,October,43,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,76.32,0,2,Canceled,2019-02-01 -Resort Hotel,0,152,2016,March,18,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,75,Transient-Party,70.25,0,0,Check-Out,2019-03-04 -Resort Hotel,0,22,2017,June,29,30,2,7,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,251.0,179.0,0,Transient,114.6,0,2,Check-Out,2020-02-01 -City Hotel,1,177,2017,July,33,2,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,A,3,No Deposit,7.0,179.0,0,Transient,226.58,0,1,Canceled,2020-02-01 -City Hotel,0,158,2017,April,15,10,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,49.38,0,0,Check-Out,2020-01-04 -City Hotel,1,16,2016,May,22,24,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,115.47,0,0,Canceled,2019-03-04 -City Hotel,0,103,2016,October,44,13,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,63.0,0,Transient,120.53,0,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2016,November,39,24,1,2,1,0.0,0,HB,ESP,Groups,Corporate,0,0,0,A,C,2,No Deposit,293.0,179.0,0,Transient-Party,61.38,0,0,Check-Out,2018-09-02 -Resort Hotel,0,193,2017,May,22,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,80.16,1,0,Check-Out,2019-12-04 -City Hotel,0,1,2016,May,20,5,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.17,0,0,Check-Out,2018-08-03 -City Hotel,1,91,2015,August,35,15,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,7.0,179.0,0,Transient,105.01,0,2,Canceled,2018-07-03 -Resort Hotel,1,56,2016,May,36,10,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,250.0,179.0,0,Transient,156.69,0,0,Canceled,2020-02-01 -City Hotel,1,427,2016,December,49,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,87.46,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2017,March,10,24,2,0,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.04,0,1,Check-Out,2020-02-01 -City Hotel,1,107,2017,August,32,31,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.94,0,2,Canceled,2020-05-03 -City Hotel,1,387,2017,April,32,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,72.92,0,0,Canceled,2019-11-03 -Resort Hotel,0,252,2016,November,44,5,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,79.04,0,1,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,December,50,12,0,2,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,37.63,0,0,Check-Out,2018-10-03 -City Hotel,1,170,2016,March,17,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,41,Transient,92.66,0,0,Canceled,2018-12-03 -Resort Hotel,1,101,2016,April,36,27,0,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,B,1,No Deposit,235.0,179.0,0,Transient,93.77,1,1,Canceled,2019-03-04 -Resort Hotel,0,141,2017,April,21,6,2,3,2,0.0,0,BB,SWE,Groups,Corporate,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,97.55,0,0,Check-Out,2020-03-03 -City Hotel,0,10,2015,December,51,20,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,78.6,0,0,Check-Out,2018-08-03 -City Hotel,0,141,2016,December,21,4,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient,83.6,0,1,Check-Out,2019-12-04 -City Hotel,1,246,2017,July,27,16,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,107.55,0,0,Canceled,2019-10-04 -City Hotel,1,253,2017,July,24,12,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,95.08,0,0,Canceled,2020-03-03 -Resort Hotel,0,112,2016,September,49,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,124.34,1,0,Check-Out,2019-06-03 -City Hotel,0,14,2016,November,31,16,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,99.99,0,0,Check-Out,2019-09-03 -City Hotel,0,39,2017,March,17,24,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,156.71,1,0,Check-Out,2020-03-03 -City Hotel,1,22,2015,July,32,5,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.96,0,0,Canceled,2018-06-02 -City Hotel,1,276,2015,July,32,4,0,1,3,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-07-03 -Resort Hotel,1,254,2017,June,42,4,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,69.26,0,0,Canceled,2019-11-03 -City Hotel,1,12,2016,September,45,30,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.72,0,1,Canceled,2020-01-04 -City Hotel,1,150,2016,June,31,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,67.02,0,0,Canceled,2019-03-04 -Resort Hotel,0,268,2015,October,46,30,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,322.0,255.0,0,Transient-Party,43.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,60,2017,April,18,14,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,36.99,1,1,Check-Out,2019-01-03 -Resort Hotel,1,160,2016,May,16,14,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,D,A,0,Non Refund,327.0,179.0,0,Transient-Party,81.65,0,0,Canceled,2019-02-01 -Resort Hotel,0,8,2017,April,15,15,1,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,77.4,1,2,Check-Out,2020-02-01 -Resort Hotel,0,145,2017,August,17,30,4,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,234.0,179.0,0,Transient-Party,126.29,1,3,Check-Out,2020-02-01 -Resort Hotel,1,166,2017,June,26,25,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,125.41,0,2,No-Show,2020-03-03 -City Hotel,0,266,2017,July,27,2,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.13,0,0,Check-Out,2020-05-03 -Resort Hotel,0,94,2017,June,22,17,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient-Party,201.57,1,0,Check-Out,2020-06-02 -City Hotel,0,17,2016,March,15,28,0,3,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Transient,75.41,0,0,Check-Out,2019-02-01 -City Hotel,1,157,2016,March,9,30,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,79.0,179.0,0,Transient,60.8,0,0,Canceled,2018-11-02 -City Hotel,0,17,2016,October,44,12,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,103.57,0,3,Check-Out,2019-09-03 -Resort Hotel,0,11,2016,December,50,30,0,1,1,0.0,0,BB,POL,Corporate,Corporate,0,0,0,A,C,0,No Deposit,378.0,242.0,0,Transient,68.1,0,0,Check-Out,2019-06-03 -City Hotel,0,115,2017,April,22,28,2,1,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,216.59,0,0,Check-Out,2020-02-01 -City Hotel,1,282,2015,November,50,15,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.88,0,0,Canceled,2018-08-03 -Resort Hotel,0,48,2016,December,53,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,59.95,0,0,Check-Out,2018-12-03 -Resort Hotel,1,13,2015,December,53,25,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,31.7,0,0,Canceled,2018-08-03 -City Hotel,0,40,2017,February,10,6,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,31.96,0,0,Check-Out,2020-01-04 -Resort Hotel,1,102,2016,March,9,25,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.46,0,2,Canceled,2019-02-01 -Resort Hotel,1,145,2016,July,33,9,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,121.47,1,2,Canceled,2019-04-03 -Resort Hotel,0,1,2016,September,36,25,2,4,3,1.0,0,BB,GBR,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,214.14,1,0,Check-Out,2019-08-04 -City Hotel,0,88,2016,June,28,2,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.75,0,1,Check-Out,2019-04-03 -City Hotel,1,0,2017,June,23,5,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,2.08,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,May,22,10,0,2,2,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,84.38,0,1,Check-Out,2019-03-04 -Resort Hotel,1,51,2017,January,6,26,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,69.82,0,1,Canceled,2020-01-04 -City Hotel,0,17,2016,October,43,31,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.07,0,0,Check-Out,2019-11-03 -City Hotel,1,12,2016,March,11,23,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient,101.01,0,0,Canceled,2019-10-04 -Resort Hotel,0,7,2017,January,3,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,308.0,331.0,0,Transient,27.95,0,0,Check-Out,2019-09-03 -City Hotel,0,110,2017,July,20,17,1,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient-Party,226.28,0,0,Check-Out,2020-04-02 -Resort Hotel,1,108,2017,February,12,24,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,F,E,0,No Deposit,283.0,179.0,0,Transient,148.39,0,2,Canceled,2020-05-03 -City Hotel,0,0,2017,January,3,18,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-10-04 -City Hotel,1,32,2015,August,39,16,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,138.86,0,0,Canceled,2018-08-03 -City Hotel,1,47,2016,December,17,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.44,0,1,Canceled,2019-02-01 -City Hotel,1,60,2016,October,41,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.31,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2017,February,12,9,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,98.0,179.0,0,Transient,69.97,0,0,Check-Out,2020-03-03 -City Hotel,1,32,2016,March,15,21,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,90.36,0,0,Canceled,2018-12-03 -Resort Hotel,0,10,2015,December,51,31,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,28.66,0,0,Check-Out,2018-09-02 -City Hotel,1,93,2015,July,32,28,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.91,0,2,Canceled,2018-06-02 -Resort Hotel,1,22,2015,July,36,16,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,352.0,179.0,0,Transient,84.1,0,0,Canceled,2019-12-04 -City Hotel,1,333,2017,August,31,30,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,152.06,0,0,Canceled,2020-06-02 -City Hotel,0,6,2016,April,15,15,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.94,0,1,Check-Out,2019-02-01 -City Hotel,0,144,2016,October,35,9,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,196.61,0,1,Check-Out,2019-08-04 -City Hotel,0,0,2016,October,45,28,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.81,0,2,Check-Out,2019-09-03 -City Hotel,1,21,2016,April,15,9,2,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,160.0,179.0,0,Transient,79.9,0,0,Canceled,2019-03-04 -Resort Hotel,0,7,2016,August,37,16,2,5,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,108.54,0,1,Check-Out,2019-06-03 -City Hotel,1,41,2016,March,17,24,0,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.67,0,2,Canceled,2019-02-01 -City Hotel,1,41,2017,June,28,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.84,0,0,Canceled,2019-04-03 -Resort Hotel,1,82,2016,February,8,27,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,92.5,0,0,No-Show,2019-01-03 -City Hotel,0,0,2016,August,5,2,0,3,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,192.1,0,3,Check-Out,2019-11-03 -City Hotel,1,113,2017,May,22,10,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,120.45,0,0,Canceled,2020-02-01 -City Hotel,1,30,2015,July,32,25,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Canceled,2018-11-02 -Resort Hotel,1,0,2017,January,2,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,14.0,88.0,0,Transient,42.79,0,0,Canceled,2019-10-04 -City Hotel,0,3,2016,June,21,18,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,229.43,0,1,Check-Out,2019-05-04 -City Hotel,1,290,2016,July,34,24,2,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,109.33,0,0,Canceled,2019-08-04 -Resort Hotel,0,21,2016,October,42,11,2,5,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,222.0,0,Transient-Party,103.69,0,0,Check-Out,2019-09-03 -Resort Hotel,1,13,2016,December,50,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,14.0,232.0,0,Transient,60.01,0,0,Canceled,2019-10-04 -City Hotel,0,38,2016,September,42,10,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,152.48,0,0,Check-Out,2019-12-04 -City Hotel,1,8,2016,March,10,11,0,1,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,6.0,179.0,0,Transient,120.55,0,1,Canceled,2019-02-01 -City Hotel,0,0,2015,October,42,27,1,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,80.82,0,0,Check-Out,2018-08-03 -Resort Hotel,1,106,2016,July,37,2,2,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,241.0,179.0,0,Transient-Party,91.47,0,0,Canceled,2019-02-01 -City Hotel,0,93,2015,December,50,22,0,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,B,3,No Deposit,43.0,179.0,0,Transient-Party,61.1,0,0,Check-Out,2018-08-03 -Resort Hotel,0,42,2016,October,44,9,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient-Party,49.19,0,0,Check-Out,2019-07-04 -Resort Hotel,0,40,2017,May,17,9,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient-Party,126.99,0,1,Check-Out,2019-03-04 -City Hotel,1,8,2016,March,9,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,78.67,0,0,Canceled,2018-12-03 -City Hotel,0,0,2017,June,26,2,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,15.0,223.0,0,Transient,154.36,0,0,Check-Out,2020-07-03 -Resort Hotel,0,276,2015,July,31,6,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Contract,62.42,0,2,Check-Out,2018-07-03 -City Hotel,0,20,2017,May,25,15,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,A,0,No Deposit,29.0,45.0,0,Transient,124.94,0,0,Check-Out,2020-02-01 -City Hotel,1,9,2016,August,38,22,1,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,232.05,0,0,Canceled,2018-09-02 -Resort Hotel,0,50,2016,December,53,23,2,4,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,27.78,0,0,Check-Out,2019-12-04 -Resort Hotel,1,99,2015,February,11,26,2,2,2,0.0,0,FB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,13.0,254.0,0,Transient,62.23,0,0,Canceled,2018-11-02 -City Hotel,0,95,2017,June,28,17,0,3,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,331.0,0,Transient,71.71,0,0,Check-Out,2020-06-02 -City Hotel,0,92,2017,February,9,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,0.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,61,2016,October,43,27,2,4,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,G,F,1,No Deposit,15.0,179.0,0,Transient,163.28,0,3,Check-Out,2019-08-04 -Resort Hotel,0,251,2016,August,37,19,3,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,30.79,0,1,Check-Out,2018-08-03 -Resort Hotel,1,39,2016,September,33,20,1,5,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,241.0,179.0,0,Transient,189.95,0,0,Canceled,2019-05-04 -City Hotel,0,12,2015,July,36,5,2,4,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,46.68,0,0,Check-Out,2018-12-03 -Resort Hotel,0,131,2017,August,36,24,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,F,A,1,No Deposit,15.0,179.0,0,Transient,78.61,0,0,Check-Out,2019-05-04 -Resort Hotel,0,30,2017,May,24,20,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,342.0,179.0,0,Transient,76.55,0,0,Check-Out,2019-10-04 -Resort Hotel,0,88,2016,August,38,31,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,157.33,0,2,Check-Out,2019-05-04 -Resort Hotel,0,44,2017,November,12,9,0,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,40.4,0,2,Check-Out,2019-12-04 -Resort Hotel,0,150,2016,May,24,5,3,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,310.0,179.0,0,Transient,59.77,0,0,Check-Out,2019-03-04 -Resort Hotel,0,161,2016,March,11,31,0,1,2,0.0,0,BB,NLD,Corporate,Direct,0,0,0,D,D,0,Refundable,13.0,221.0,0,Transient-Party,63.7,0,0,Check-Out,2018-11-02 -Resort Hotel,0,49,2015,October,43,15,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,36.49,0,1,Check-Out,2018-09-02 -City Hotel,1,191,2016,October,49,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,72.67,0,0,Canceled,2019-06-03 -City Hotel,0,2,2016,August,33,9,2,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,151.46,0,1,Check-Out,2019-06-03 -Resort Hotel,1,30,2015,December,53,16,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,173.0,179.0,0,Transient,40.8,0,0,Canceled,2017-11-02 -City Hotel,0,39,2017,January,31,10,1,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.28,0,1,Check-Out,2019-12-04 -City Hotel,0,94,2016,June,28,2,1,2,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,81.19,0,0,Check-Out,2019-02-01 -Resort Hotel,0,140,2017,June,31,24,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,112.74,0,1,Check-Out,2020-04-02 -Resort Hotel,0,120,2017,July,30,2,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,228.0,179.0,0,Transient-Party,108.77,0,0,Check-Out,2020-07-03 -Resort Hotel,0,132,2017,June,28,17,3,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient-Party,127.91,0,0,Check-Out,2020-06-02 -City Hotel,1,50,2016,April,16,7,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,151.11,0,0,Canceled,2019-02-01 -Resort Hotel,0,110,2017,June,24,16,2,7,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,85.63,1,1,Check-Out,2020-03-03 -Resort Hotel,0,118,2016,August,31,7,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,127.35,1,1,Check-Out,2019-04-03 -City Hotel,1,32,2016,June,20,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,136.0,179.0,0,Transient,59.85,0,0,Canceled,2019-02-01 -City Hotel,0,14,2016,April,22,18,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,72.96,0,1,Check-Out,2019-02-01 -City Hotel,1,100,2017,July,30,13,2,4,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,143.09,0,0,Check-Out,2020-03-03 -City Hotel,1,269,2016,October,44,28,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,112.07,0,0,Canceled,2019-08-04 -City Hotel,1,49,2015,December,37,15,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,3,No Deposit,2.0,179.0,0,Transient-Party,79.56,0,0,Canceled,2018-09-02 -City Hotel,1,93,2017,January,4,2,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,96.64,0,1,Canceled,2018-11-02 -City Hotel,1,17,2016,August,36,5,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.3,0,0,Canceled,2019-08-04 -Resort Hotel,1,395,2015,July,31,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,No Deposit,168.0,179.0,0,Transient-Party,147.07,0,0,Canceled,2018-06-02 -City Hotel,0,52,2017,February,10,25,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,92.19,0,0,Check-Out,2020-02-01 -Resort Hotel,0,135,2016,May,21,28,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,313.0,179.0,0,Transient,88.67,1,1,Check-Out,2019-05-04 -City Hotel,0,4,2016,January,4,2,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,80.94,0,0,Check-Out,2018-10-03 -Resort Hotel,0,2,2017,June,26,8,2,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,173.0,179.0,0,Transient,84.22,0,1,Check-Out,2020-03-03 -City Hotel,0,93,2016,May,24,25,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,128.16,1,1,Check-Out,2019-03-04 -City Hotel,0,1,2016,February,8,10,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.13,0,0,Check-Out,2018-11-02 -City Hotel,1,0,2016,August,41,21,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,275.0,0,Transient,0.0,0,0,Canceled,2019-08-04 -City Hotel,1,99,2016,January,10,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,A,0,Non Refund,8.0,179.0,0,Transient,74.98,0,0,Canceled,2018-11-02 -Resort Hotel,0,94,2017,March,11,14,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,244.0,179.0,0,Transient,156.71,0,3,Check-Out,2020-01-04 -City Hotel,0,131,2016,December,53,28,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,39,Transient,69.04,0,0,Check-Out,2019-10-04 -City Hotel,1,103,2017,May,20,5,1,0,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,66.72,0,1,No-Show,2020-03-03 -City Hotel,0,29,2015,August,33,20,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,151.3,0,1,Check-Out,2018-06-02 -Resort Hotel,1,158,2015,July,44,30,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,96.0,179.0,0,Transient,62.75,0,0,Canceled,2018-10-03 -City Hotel,0,46,2016,February,8,31,2,3,2,1.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.04,0,2,Check-Out,2019-02-01 -Resort Hotel,0,237,2015,July,33,22,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,143.0,179.0,0,Contract,61.51,0,0,Check-Out,2017-12-03 -City Hotel,0,48,2015,August,31,28,2,5,2,0.0,0,HB,FRA,Online TA,Direct,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,218.68,0,0,Check-Out,2018-06-02 -City Hotel,1,153,2016,September,36,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,121.25,0,0,Canceled,2019-02-01 -City Hotel,0,151,2016,December,53,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,65.4,0,1,Canceled,2018-11-02 -Resort Hotel,0,347,2017,March,10,13,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,93.02,0,0,Check-Out,2020-02-01 -City Hotel,1,46,2016,March,15,8,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,77.61,0,3,Canceled,2019-02-01 -City Hotel,0,33,2017,April,17,27,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.62,0,2,Check-Out,2020-03-03 -Resort Hotel,1,2,2016,August,37,16,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,124.33,0,1,Canceled,2019-06-03 -City Hotel,1,44,2016,March,17,10,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.55,0,2,Canceled,2019-02-01 -City Hotel,0,0,2017,March,11,28,1,0,2,0.0,0,BB,GBR,Direct,Corporate,0,0,1,A,A,0,No Deposit,12.0,179.0,0,Group,96.12,0,1,Check-Out,2019-10-04 -City Hotel,0,99,2015,September,41,22,2,3,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,70.0,179.0,0,Transient-Party,122.78,0,0,Check-Out,2018-08-03 -City Hotel,0,94,2016,August,35,11,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,90.39,0,0,Check-Out,2019-05-04 -City Hotel,0,86,2017,December,53,21,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.0,0,1,Check-Out,2019-11-03 -Resort Hotel,0,145,2016,March,12,31,1,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,11.0,73.0,0,Transient-Party,37.66,0,0,Check-Out,2019-02-01 -Resort Hotel,0,138,2016,December,53,28,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,68.92,0,0,Canceled,2018-12-03 -Resort Hotel,0,52,2015,December,53,28,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,44.33,0,2,Check-Out,2018-11-02 -City Hotel,0,6,2016,July,32,21,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.13,0,1,Check-Out,2019-03-04 -Resort Hotel,1,38,2016,July,27,30,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,240.83,0,0,Canceled,2019-01-03 -City Hotel,0,109,2016,May,20,27,1,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,3,No Deposit,28.0,179.0,0,Transient,88.55,0,0,Check-Out,2019-03-04 -City Hotel,0,13,2017,March,10,16,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.96,0,1,Check-Out,2020-01-04 -City Hotel,0,4,2017,March,10,10,0,1,3,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,B,F,0,No Deposit,12.0,45.0,0,Transient,68.08,0,1,Canceled,2019-12-04 -City Hotel,0,15,2017,June,9,27,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,74.0,60.0,0,Transient-Party,123.94,0,1,Check-Out,2020-03-03 -City Hotel,1,15,2017,July,30,22,2,1,3,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,F,K,0,No Deposit,10.0,179.0,0,Transient,0.36,0,1,Canceled,2020-05-03 -Resort Hotel,0,14,2016,June,25,9,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,123.89,0,0,Check-Out,2019-06-03 -City Hotel,1,16,2017,March,15,24,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,71.46,0,0,Canceled,2020-03-03 -City Hotel,0,11,2015,October,42,16,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,41.91,0,1,Check-Out,2018-09-02 -City Hotel,1,1,2017,January,9,28,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,44.33,0,0,Canceled,2019-11-03 -Resort Hotel,0,284,2017,July,27,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,164.0,179.0,0,Transient,156.99,0,0,Check-Out,2020-06-02 -Resort Hotel,0,121,2016,June,20,23,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,156.24,0,0,Check-Out,2019-02-01 -City Hotel,0,92,2016,April,18,21,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,72.67,0,1,Check-Out,2019-02-01 -City Hotel,0,2,2016,December,50,31,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,1.19,0,0,Check-Out,2019-06-03 -Resort Hotel,1,153,2017,March,15,16,2,4,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,C,0,Refundable,9.0,223.0,0,Transient-Party,81.46,0,0,Canceled,2020-01-04 -City Hotel,1,2,2017,May,21,28,0,2,3,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,167.11,0,0,Canceled,2020-03-03 -City Hotel,0,111,2016,July,28,16,2,2,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,114.07,0,2,Check-Out,2019-06-03 -City Hotel,0,15,2017,June,30,19,0,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,164.04,0,2,Check-Out,2020-04-02 -City Hotel,0,16,2017,June,24,18,0,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,92.41,0,0,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,March,26,9,0,6,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,102.1,0,1,Check-Out,2020-02-01 -City Hotel,1,1,2016,August,36,23,0,3,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,134.42,0,0,Canceled,2018-08-03 -City Hotel,1,235,2015,August,37,6,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,9.0,179.0,0,Group,60.53,0,1,Canceled,2018-06-02 -City Hotel,0,248,2017,August,21,13,2,10,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Contract,131.18,1,0,Check-Out,2020-06-02 -Resort Hotel,1,124,2017,May,21,18,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,251.0,179.0,0,Transient,252.0,0,0,Canceled,2020-02-01 -City Hotel,0,8,2017,May,26,21,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,101.91,0,0,Check-Out,2020-04-02 -City Hotel,1,258,2016,September,42,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,158.83,0,0,Canceled,2019-07-04 -City Hotel,0,87,2017,July,31,16,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,172.08,0,3,Check-Out,2020-03-03 -City Hotel,1,99,2016,July,32,27,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,106.42,0,1,Canceled,2019-03-04 -City Hotel,0,32,2017,May,21,30,0,1,1,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient-Party,93.73,0,0,Check-Out,2020-04-02 -City Hotel,1,38,2015,July,32,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,137.41,0,0,Canceled,2018-05-03 -Resort Hotel,0,14,2016,August,37,13,1,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient,195.99,0,0,Check-Out,2019-09-03 -Resort Hotel,0,87,2016,July,34,21,2,5,2,0.0,0,HB,GBR,Online TA,Direct,0,0,0,A,I,0,No Deposit,244.0,179.0,0,Transient,115.25,0,2,Check-Out,2019-04-03 -City Hotel,1,157,2017,June,32,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,116.08,0,0,Canceled,2018-11-02 -City Hotel,1,43,2016,December,36,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.41,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2016,July,26,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,250.0,179.0,0,Transient,42.58,0,0,Check-Out,2019-05-04 -City Hotel,0,13,2016,November,44,30,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,210.69,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2015,October,38,22,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,140.37,1,0,Check-Out,2018-06-02 -City Hotel,1,1,2015,August,36,5,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,14.0,179.0,0,Transient,85.58,0,0,Canceled,2018-01-03 -Resort Hotel,0,3,2016,January,9,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,70.72,0,0,Check-Out,2019-02-01 -City Hotel,0,142,2017,July,33,15,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,180.36,0,0,Check-Out,2020-06-02 -City Hotel,1,249,2016,June,27,13,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,273.0,179.0,0,Transient,68.43,0,0,Canceled,2019-05-04 -Resort Hotel,0,3,2015,July,36,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,3.0,179.0,0,Contract,59.79,0,0,Check-Out,2018-05-03 -City Hotel,0,87,2016,June,27,2,2,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,30.0,179.0,41,Transient-Party,85.97,0,0,Check-Out,2019-06-03 -Resort Hotel,0,94,2016,December,25,16,4,7,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,75,Transient-Party,64.77,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,December,51,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,45.0,0,Transient,59.02,0,0,Check-Out,2018-09-02 -City Hotel,0,140,2016,September,44,28,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,127.32,0,1,Check-Out,2019-05-04 -City Hotel,0,2,2017,June,25,20,0,1,2,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,95.84,0,0,Check-Out,2020-06-02 -City Hotel,0,9,2017,April,22,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,331.0,0,Transient-Party,91.44,0,0,Check-Out,2020-03-03 -Resort Hotel,0,23,2016,August,37,9,1,1,2,1.0,0,HB,PRT,Online TA,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,247.54,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2016,October,51,16,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.71,1,2,Check-Out,2018-12-03 -City Hotel,1,85,2016,March,9,24,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,68.32,0,0,Canceled,2019-02-01 -Resort Hotel,0,92,2015,October,44,29,4,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,61.9,0,1,Check-Out,2017-12-03 -Resort Hotel,0,41,2016,June,15,10,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,28.5,0,0,Check-Out,2019-05-04 -Resort Hotel,0,104,2017,March,18,27,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,78.71,1,1,Check-Out,2020-01-04 -City Hotel,0,0,2017,January,3,7,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,64.09,0,1,Check-Out,2019-09-03 -City Hotel,0,2,2016,October,41,19,4,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,2,No Deposit,17.0,179.0,0,Transient,104.96,0,0,Check-Out,2019-05-04 -City Hotel,0,14,2016,October,45,17,0,1,2,0.0,0,HB,ISR,Groups,Direct,0,0,0,D,A,3,No Deposit,313.0,179.0,0,Transient-Party,72.02,0,0,Check-Out,2019-09-03 -Resort Hotel,1,215,2017,October,21,28,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Non Refund,191.0,179.0,0,Transient,221.0,0,0,Canceled,2019-11-03 -City Hotel,0,80,2017,April,16,10,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,79.14,1,1,Check-Out,2020-02-01 -City Hotel,0,133,2016,September,41,25,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,103.03,0,0,Check-Out,2019-08-04 -Resort Hotel,0,3,2017,February,9,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,83.3,0,0,Check-Out,2020-03-03 -City Hotel,0,239,2016,June,27,9,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient-Party,73.47,0,0,Check-Out,2019-06-03 -City Hotel,0,173,2016,April,32,22,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,65.0,0,Transient-Party,126.25,0,0,Check-Out,2019-01-03 -City Hotel,0,6,2015,October,45,10,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,331.0,0,Transient-Party,1.55,0,0,Check-Out,2018-09-02 -Resort Hotel,0,39,2017,March,9,9,1,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,240.0,179.0,0,Transient,96.61,0,2,Check-Out,2019-12-04 -City Hotel,0,40,2015,October,42,14,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,60.49,0,0,Check-Out,2018-09-02 -Resort Hotel,0,137,2017,July,34,17,2,2,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,E,A,1,No Deposit,240.0,179.0,0,Transient,111.02,1,2,Check-Out,2020-07-03 -City Hotel,1,404,2017,June,25,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,113.84,0,0,Canceled,2020-03-03 -Resort Hotel,0,13,2016,November,50,30,2,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,E,F,1,No Deposit,38.0,82.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,April,17,27,0,4,2,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient-Party,125.58,1,0,Check-Out,2020-03-03 -Resort Hotel,0,45,2017,April,16,5,0,1,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,241.0,179.0,0,Transient,123.92,0,2,Check-Out,2019-03-04 -City Hotel,1,281,2016,September,43,15,2,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,119.24,0,1,Canceled,2019-06-03 -City Hotel,0,2,2016,October,44,16,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,131.11,0,2,Check-Out,2019-07-04 -City Hotel,0,6,2016,May,23,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,59.27,0,1,Check-Out,2019-02-01 -City Hotel,0,46,2016,June,26,5,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Contract,79.79,0,0,Check-Out,2019-03-04 -City Hotel,1,29,2016,April,17,23,0,4,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,157.68,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,February,10,25,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,69.17,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,March,18,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,44.09,0,0,Check-Out,2019-04-03 -City Hotel,0,164,2017,August,36,1,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,154.53,0,2,Check-Out,2020-07-03 -City Hotel,1,171,2016,April,17,10,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,21,Transient,129.24,0,0,Canceled,2019-01-03 -City Hotel,1,168,2016,July,25,6,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,79.09,0,0,Canceled,2019-01-03 -City Hotel,0,38,2017,August,38,22,0,2,3,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,90.39,0,0,Check-Out,2020-06-02 -Resort Hotel,0,14,2015,September,37,27,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,68.79,0,0,Check-Out,2018-08-03 -City Hotel,0,39,2016,October,42,30,2,3,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,260.0,179.0,0,Transient-Party,75.02,0,1,Check-Out,2019-09-03 -Resort Hotel,0,105,2017,July,32,5,2,5,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,102.41,1,1,Check-Out,2020-06-02 -Resort Hotel,0,214,2015,November,51,5,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,13.0,179.0,0,Group,34.51,0,1,Check-Out,2018-11-02 -City Hotel,1,14,2017,April,22,28,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,23.0,179.0,61,Transient-Party,75.86,0,0,Canceled,2019-04-03 -Resort Hotel,1,253,2015,August,36,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,63.72,0,2,Canceled,2018-06-02 -City Hotel,0,0,2016,March,22,21,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,C,0,No Deposit,84.0,179.0,0,Transient,73.88,0,0,Check-Out,2019-03-04 -City Hotel,0,131,2016,August,51,17,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.61,0,2,Check-Out,2019-06-03 -Resort Hotel,0,56,2015,November,44,6,2,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,249.0,179.0,0,Transient-Party,27.0,0,0,Check-Out,2018-08-03 -City Hotel,0,103,2017,April,23,28,2,1,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,112.44,0,2,Check-Out,2020-01-04 -City Hotel,0,0,2017,May,16,22,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,79.0,179.0,0,Transient-Party,80.2,0,1,No-Show,2019-11-03 -City Hotel,0,33,2016,November,22,27,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,66.7,0,2,Check-Out,2019-07-04 -City Hotel,0,47,2016,May,22,24,0,2,2,0.0,0,BB,AUT,Aviation,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,102.37,0,1,Check-Out,2019-03-04 -Resort Hotel,0,60,2015,November,44,20,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,75.34,1,1,Check-Out,2018-08-03 -City Hotel,0,15,2016,September,43,19,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.73,0,2,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,October,43,28,2,4,2,0.0,0,HB,,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,91.27,0,0,Check-Out,2018-09-02 -City Hotel,1,378,2017,May,17,11,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,119.09,0,0,Canceled,2020-02-01 -City Hotel,1,10,2017,March,16,20,2,0,1,0.0,0,HB,BRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,295.0,179.0,0,Transient,45.32,0,2,No-Show,2019-03-04 -City Hotel,1,265,2016,March,15,6,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.76,0,0,Canceled,2018-11-02 -Resort Hotel,1,45,2015,December,34,24,2,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,77.15,0,0,Canceled,2018-06-02 -City Hotel,0,252,2016,October,25,9,2,5,2,0.0,0,FB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,95.54,0,0,Check-Out,2019-07-04 -Resort Hotel,1,30,2016,October,44,28,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,66.86,0,0,Canceled,2019-08-04 -City Hotel,1,0,2015,June,29,9,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,B,0,No Deposit,1.0,179.0,0,Contract,60.56,0,0,No-Show,2019-03-04 -City Hotel,1,115,2017,July,28,28,0,2,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,144.45,0,1,Canceled,2020-07-03 -Resort Hotel,1,1,2016,January,3,28,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,76.84,0,0,Canceled,2018-10-03 -City Hotel,1,68,2016,December,49,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.42,0,0,Canceled,2019-10-04 -City Hotel,0,24,2016,October,44,30,1,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,D,2,No Deposit,14.0,179.0,0,Transient-Party,109.96,0,0,Check-Out,2018-09-02 -City Hotel,1,89,2016,August,37,15,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.05,0,0,Canceled,2018-10-03 -City Hotel,0,4,2016,February,4,13,0,1,1,0.0,0,BB,AUT,Corporate,TA/TO,0,0,0,A,G,0,No Deposit,12.0,331.0,0,Group,35.12,0,0,Check-Out,2019-01-03 -City Hotel,1,58,2015,July,31,29,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,122.62,0,0,Canceled,2018-05-03 -City Hotel,0,308,2015,September,41,9,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Contract,75.12,0,0,Check-Out,2017-11-02 -City Hotel,1,54,2017,April,8,27,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,98.4,0,0,Canceled,2019-10-04 -Resort Hotel,0,202,2017,July,27,11,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Contract,91.44,0,0,Check-Out,2020-06-02 -Resort Hotel,1,68,2017,August,34,13,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,225.14,0,0,Canceled,2019-10-04 -City Hotel,0,148,2016,December,53,26,1,4,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.5,0,1,Check-Out,2019-12-04 -City Hotel,1,137,2017,May,27,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient,144.7,0,0,Canceled,2020-02-01 -City Hotel,0,1,2016,April,19,31,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,62.38,0,1,Check-Out,2019-03-04 -City Hotel,1,242,2016,March,21,21,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,B,0,No Deposit,14.0,179.0,0,Transient,69.8,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,May,22,27,1,0,2,0.0,0,HB,DEU,Aviation,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,75,Transient-Party,69.68,0,0,Check-Out,2020-03-03 -Resort Hotel,1,191,2017,March,9,18,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,1,1,1,E,F,0,Non Refund,174.0,179.0,0,Transient,78.85,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,January,10,13,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.29,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,June,11,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,72.0,0,Transient,35.46,0,0,Check-Out,2019-03-04 -City Hotel,0,16,2016,October,43,12,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,77.52,0,2,Check-Out,2019-11-03 -Resort Hotel,0,150,2015,December,50,22,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,134.34,1,3,Check-Out,2018-08-03 -Resort Hotel,0,334,2015,December,48,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,96.0,179.0,0,Transient-Party,31.45,0,0,Check-Out,2018-08-03 -City Hotel,1,2,2016,October,44,9,2,3,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,90.63,0,0,No-Show,2019-06-03 -Resort Hotel,0,8,2016,March,10,15,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,16.0,179.0,75,Transient-Party,67.54,1,1,Check-Out,2019-02-01 -City Hotel,1,99,2016,May,23,31,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient-Party,91.37,0,0,Canceled,2019-01-03 -City Hotel,1,416,2015,September,38,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,62,Transient,60.38,0,0,Canceled,2018-08-03 -City Hotel,0,1,2017,February,10,2,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,F,1,No Deposit,245.0,179.0,0,Group,0.0,0,1,Check-Out,2020-03-03 -City Hotel,0,12,2017,April,17,26,1,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,120.22,0,2,Check-Out,2020-04-02 -City Hotel,0,123,2017,June,30,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,51.0,0,Transient-Party,109.53,0,0,Check-Out,2020-06-02 -City Hotel,0,206,2015,July,53,31,2,3,2,2.0,0,HB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient-Party,106.66,0,0,Check-Out,2018-08-03 -City Hotel,1,283,2016,April,16,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,78.18,0,0,Canceled,2019-02-01 -Resort Hotel,0,183,2016,October,43,25,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,90.0,179.0,0,Transient,81.57,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2017,March,4,5,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,63.95,0,0,Check-Out,2020-02-01 -City Hotel,1,0,2016,March,43,30,0,3,3,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,0,No Deposit,15.0,179.0,0,Transient,0.0,0,2,Canceled,2019-02-01 -City Hotel,0,205,2017,August,34,3,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.26,0,0,Check-Out,2020-06-02 -Resort Hotel,0,7,2016,June,26,21,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,E,E,1,No Deposit,241.0,179.0,0,Transient,159.95,1,2,Check-Out,2019-02-01 -City Hotel,0,57,2016,September,44,24,1,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,175.14,0,3,Check-Out,2019-08-04 -Resort Hotel,1,0,2017,March,11,20,0,1,3,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,11.0,179.0,75,Transient-Party,110.9,1,2,Canceled,2020-01-04 -City Hotel,0,63,2017,February,8,4,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.56,0,0,Check-Out,2020-02-01 -City Hotel,0,6,2016,April,16,19,2,2,3,0.0,0,HB,RUS,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,161.0,179.0,0,Transient-Party,90.72,0,0,Check-Out,2019-04-03 -Resort Hotel,0,9,2016,January,28,19,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,294.0,179.0,0,Transient-Party,61.66,1,0,Check-Out,2019-06-03 -Resort Hotel,1,146,2015,July,30,20,1,2,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,1,Non Refund,11.0,179.0,0,Transient,105.14,0,0,Canceled,2018-09-02 -City Hotel,1,231,2017,May,25,19,2,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.95,0,0,Canceled,2020-01-04 -City Hotel,0,21,2017,August,32,12,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,229.81,0,0,Check-Out,2020-06-02 -City Hotel,1,11,2017,February,9,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,F,0,No Deposit,13.0,239.0,0,Transient,96.33,0,0,Canceled,2019-09-03 -City Hotel,1,49,2017,May,10,5,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,71.18,0,0,Canceled,2019-10-04 -City Hotel,1,46,2016,August,43,21,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,93.65,0,0,Canceled,2019-02-01 -City Hotel,1,214,2015,August,38,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.52,0,0,Canceled,2018-06-02 -City Hotel,0,33,2016,March,43,28,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,103.72,0,3,Check-Out,2019-07-04 -City Hotel,0,12,2017,May,21,28,2,7,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,79.01,0,0,Check-Out,2020-03-03 -Resort Hotel,0,136,2016,June,27,8,2,10,1,0.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,178.0,179.0,0,Transient-Party,128.18,0,0,Check-Out,2019-06-03 -City Hotel,1,24,2017,June,8,21,2,5,2,0.0,0,SC,PRT,Online TA,TA/TO,1,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,109.29,0,2,Canceled,2020-02-01 -City Hotel,1,58,2016,February,10,10,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,39,Transient,60.62,0,0,Canceled,2018-10-03 -City Hotel,0,228,2015,July,33,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient-Party,126.03,0,1,Check-Out,2018-05-03 -Resort Hotel,0,60,2015,October,46,21,0,1,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient-Party,60.31,0,0,Check-Out,2018-09-02 -Resort Hotel,0,3,2016,March,11,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,K,2,No Deposit,12.0,90.0,0,Transient-Party,60.43,0,0,Check-Out,2020-03-03 -City Hotel,1,41,2015,October,44,28,0,1,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,85.27,0,0,Check-Out,2018-09-02 -City Hotel,0,4,2017,May,24,14,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,133.7,0,1,Check-Out,2020-06-02 -Resort Hotel,0,50,2016,May,16,12,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,3,No Deposit,378.0,179.0,0,Transient-Party,40.45,0,0,Check-Out,2020-01-04 -City Hotel,1,0,2016,October,36,16,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,176.67,0,0,No-Show,2019-06-03 -City Hotel,1,18,2016,February,16,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,70.55,0,0,Canceled,2018-10-03 -City Hotel,0,44,2017,May,22,6,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,157.69,1,1,Check-Out,2020-03-03 -City Hotel,0,32,2016,July,30,6,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.69,0,1,Check-Out,2019-06-03 -Resort Hotel,1,17,2017,August,32,5,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,291.0,179.0,0,Transient,237.09,0,0,Canceled,2020-07-03 -City Hotel,0,0,2016,June,33,28,0,1,1,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,204.0,0,Transient,81.94,1,0,Check-Out,2020-06-02 -City Hotel,0,3,2016,April,17,9,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,207.0,0,Transient,170.17,0,0,Check-Out,2019-03-04 -City Hotel,1,61,2016,May,22,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.68,0,0,Canceled,2019-03-04 -Resort Hotel,1,413,2017,April,23,31,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,52.03,0,0,Canceled,2020-02-01 -City Hotel,0,1,2015,July,33,14,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,15.0,179.0,0,Transient-Party,83.93,0,0,Check-Out,2018-05-03 -City Hotel,1,162,2017,June,26,20,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,1,0,0,F,E,2,No Deposit,10.0,179.0,0,Transient,107.06,0,1,Canceled,2020-04-02 -Resort Hotel,0,105,2015,December,52,27,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,286.0,179.0,0,Transient-Party,59.03,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,June,25,19,0,1,1,1.0,0,BB,CHE,Direct,Direct,0,0,0,H,H,1,No Deposit,18.0,179.0,0,Transient,131.12,1,0,Check-Out,2019-05-04 -City Hotel,0,50,2017,April,18,14,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.18,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,August,25,17,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,239.0,0,Transient,108.41,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,January,4,27,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,148.9,0,3,Check-Out,2019-07-04 -City Hotel,1,8,2016,January,3,19,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,58.14,0,0,No-Show,2018-12-03 -City Hotel,0,104,2015,July,11,16,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,36.0,179.0,0,Transient-Party,80.58,0,0,Check-Out,2018-05-03 -City Hotel,0,2,2016,May,24,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,196.0,0,Group,172.67,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,May,22,6,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,F,0,No Deposit,12.0,45.0,0,Transient,0.0,1,1,Check-Out,2019-03-04 -City Hotel,0,33,2016,November,45,7,1,0,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,130.62,0,0,Check-Out,2019-08-04 -Resort Hotel,0,45,2016,March,9,5,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,117.82,0,1,Check-Out,2019-01-03 -City Hotel,1,256,2017,August,31,5,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,72.26,0,0,Canceled,2020-06-02 -Resort Hotel,0,3,2015,August,32,26,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,1,No Deposit,250.0,179.0,0,Transient,226.68,0,0,No-Show,2018-05-03 -City Hotel,0,102,2017,February,15,24,1,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,201.82,0,2,Check-Out,2020-03-03 -City Hotel,0,70,2017,March,21,18,2,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,100.78,0,1,Check-Out,2020-03-03 -City Hotel,1,214,2016,October,44,21,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Contract,155.95,0,0,Canceled,2017-12-03 -Resort Hotel,1,14,2017,June,26,21,0,2,3,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,H,H,0,No Deposit,339.0,179.0,0,Transient,186.43,0,0,Canceled,2020-07-03 -Resort Hotel,0,39,2016,January,9,28,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,41.62,1,0,Check-Out,2018-11-02 -City Hotel,0,15,2017,March,24,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,154.3,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,October,44,2,0,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,A,0,No Deposit,15.0,45.0,0,Transient,65.0,0,0,Check-Out,2019-09-03 -Resort Hotel,0,179,2016,August,37,27,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,90.17,0,0,Check-Out,2019-09-03 -City Hotel,0,45,2016,July,33,30,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.47,0,1,Check-Out,2020-05-03 -City Hotel,0,113,2016,December,50,9,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,78.04,0,0,Check-Out,2019-11-03 -City Hotel,1,11,2015,August,33,5,0,4,3,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,62.82,0,1,Canceled,2018-06-02 -City Hotel,0,2,2016,March,16,12,1,0,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,B,0,No Deposit,30.0,179.0,0,Transient,82.76,0,0,Check-Out,2019-03-04 -Resort Hotel,1,41,2016,March,18,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,237.0,179.0,0,Transient,31.09,0,0,Canceled,2019-01-03 -Resort Hotel,0,6,2015,October,46,29,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,31.81,0,2,Check-Out,2018-07-03 -City Hotel,0,141,2015,June,27,16,3,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,207.0,0,Transient,132.18,0,0,Check-Out,2019-04-03 -Resort Hotel,0,12,2016,June,17,27,1,7,2,0.0,0,HB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient,68.11,0,0,Check-Out,2019-07-04 -City Hotel,0,18,2017,February,3,5,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.61,0,1,Check-Out,2019-09-03 -City Hotel,1,109,2017,March,31,12,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,76.58,0,0,Canceled,2020-03-03 -City Hotel,0,34,2017,June,26,24,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.27,0,2,Check-Out,2020-04-02 -Resort Hotel,0,28,2015,November,49,28,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,76.44,1,0,Check-Out,2020-01-04 -City Hotel,1,115,2015,September,31,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,88.08,0,0,Canceled,2018-06-02 -City Hotel,0,101,2017,March,9,15,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,222.54,0,1,Check-Out,2020-02-01 -Resort Hotel,0,21,2015,October,45,4,0,1,1,0.0,0,BB,BRA,Corporate,Corporate,0,0,0,A,H,0,No Deposit,15.0,249.0,0,Transient-Party,59.31,0,1,Check-Out,2018-09-02 -Resort Hotel,0,21,2015,November,45,24,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,61.49,0,0,Check-Out,2018-08-03 -City Hotel,0,209,2016,June,27,27,0,10,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,84.75,0,0,Check-Out,2019-05-04 -City Hotel,0,102,2016,September,43,24,2,5,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,130.76,0,3,Check-Out,2019-04-03 -Resort Hotel,0,49,2015,July,36,7,0,4,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,126.95,0,2,Check-Out,2018-11-02 -City Hotel,1,420,2016,October,45,9,1,4,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,80.64,0,0,Canceled,2019-01-03 -Resort Hotel,1,261,2015,August,40,13,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,161.0,179.0,0,Transient,177.66,0,0,Canceled,2017-12-03 -City Hotel,0,10,2016,February,18,25,2,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.08,0,1,Canceled,2020-04-02 -City Hotel,0,14,2015,October,45,21,0,2,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Transient-Party,69.87,0,0,Check-Out,2018-08-03 -Resort Hotel,0,254,2016,March,17,23,2,4,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,332.0,240.0,0,Transient,63.84,0,0,Check-Out,2019-03-04 -Resort Hotel,1,7,2016,August,36,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,123.87,0,1,No-Show,2019-08-04 -City Hotel,0,44,2016,July,32,6,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,124.11,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,August,38,16,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,199.14,1,1,Check-Out,2020-06-02 -City Hotel,1,48,2015,November,50,30,2,1,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,59.04,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2017,August,35,29,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,213.93,1,2,Check-Out,2020-06-02 -City Hotel,0,54,2017,February,22,5,2,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,120.9,0,0,Check-Out,2020-01-04 -City Hotel,1,92,2016,March,10,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,68.17,0,1,Canceled,2019-01-03 -Resort Hotel,1,297,2015,September,38,31,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,60.72,0,0,Canceled,2018-07-03 -City Hotel,0,15,2016,January,3,17,1,2,2,0.0,0,BB,PRT,Corporate,Direct,1,0,1,D,D,0,No Deposit,15.0,179.0,0,Transient,59.87,0,0,Check-Out,2019-09-03 -Resort Hotel,0,292,2017,August,26,18,0,4,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,49.92,0,3,Check-Out,2020-07-03 -City Hotel,1,37,2015,September,50,30,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,78.22,0,0,Canceled,2018-05-03 -Resort Hotel,0,111,2016,April,17,3,0,7,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,347.0,179.0,0,Transient,83.02,1,1,Check-Out,2019-01-03 -City Hotel,1,2,2016,August,35,6,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,6.0,179.0,0,Transient,0.0,0,0,Canceled,2018-11-02 -City Hotel,1,0,2017,January,9,18,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.0,1,0,Canceled,2020-01-04 -City Hotel,1,95,2015,December,50,25,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,64,Transient,64.47,0,0,Canceled,2018-11-02 -Resort Hotel,0,24,2016,January,28,24,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,214.24,0,0,No-Show,2019-05-04 -Resort Hotel,1,47,2015,August,35,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient-Party,62.24,0,0,Canceled,2018-05-03 -Resort Hotel,0,192,2016,September,36,25,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,151.78,1,1,Check-Out,2019-09-03 -Resort Hotel,0,45,2016,March,22,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,66.43,0,2,Check-Out,2019-03-04 -City Hotel,0,148,2016,August,36,13,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.96,0,1,Check-Out,2019-04-03 -City Hotel,1,100,2016,May,28,14,0,7,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,81.82,0,0,No-Show,2019-01-03 -City Hotel,0,41,2016,July,31,27,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.3,0,1,Check-Out,2020-06-02 -Resort Hotel,0,50,2016,April,17,13,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,122.47,0,2,Check-Out,2019-01-03 -City Hotel,1,378,2017,May,8,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,43.58,0,0,Canceled,2019-10-04 -City Hotel,0,8,2016,December,4,14,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.38,0,0,Check-Out,2019-11-03 -Resort Hotel,1,372,2016,December,50,31,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,0,Transient,65.19,0,0,Canceled,2018-01-03 -City Hotel,1,54,2017,August,25,13,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.27,0,0,Canceled,2019-12-04 -City Hotel,0,0,2016,October,44,10,1,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,0.0,0,0,Check-Out,2018-09-02 -City Hotel,1,55,2017,August,35,27,0,2,2,2.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,76.34,0,0,Canceled,2018-11-02 -City Hotel,1,260,2015,August,36,5,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,88.75,0,0,Canceled,2018-06-02 -Resort Hotel,0,231,2015,September,42,9,0,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,144.82,0,1,Check-Out,2018-07-03 -Resort Hotel,0,141,2016,March,14,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,64.63,0,1,Check-Out,2019-04-03 -Resort Hotel,0,108,2016,April,17,30,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,148.15,0,2,Check-Out,2019-03-04 -City Hotel,1,131,2016,June,25,24,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,91.27,0,1,Canceled,2019-02-01 -City Hotel,1,103,2016,January,3,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,42,Transient,96.55,0,0,Canceled,2018-10-03 -City Hotel,0,12,2016,November,50,1,0,1,1,0.0,0,BB,CHE,Online TA,Corporate,0,0,0,D,D,1,No Deposit,14.0,75.0,0,Transient-Party,103.28,0,1,Check-Out,2019-12-04 -City Hotel,1,121,2015,December,50,30,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,D,D,0,No Deposit,22.0,179.0,0,Group,79.08,0,0,Canceled,2019-10-04 -City Hotel,1,13,2016,August,33,5,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,121.08,0,1,No-Show,2019-01-03 -City Hotel,0,73,2017,February,12,27,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.06,0,1,Check-Out,2020-03-03 -City Hotel,0,16,2016,April,9,21,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,218.0,0,Transient,32.85,0,0,Check-Out,2019-01-03 -City Hotel,0,212,2016,May,26,15,0,2,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,81.52,0,0,Check-Out,2019-11-03 -Resort Hotel,0,198,2017,May,16,28,2,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,142.87,0,1,Check-Out,2020-05-03 -City Hotel,0,31,2016,November,49,30,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,3,No Deposit,11.0,179.0,0,Transient-Party,85.38,0,0,Check-Out,2019-07-04 -Resort Hotel,0,25,2016,December,49,10,0,4,2,0.0,0,BB,,Corporate,Corporate,0,0,0,D,I,0,No Deposit,16.0,331.0,0,Transient,87.65,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2016,February,9,12,0,1,2,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,61,Transient,96.61,0,0,Check-Out,2019-02-01 -City Hotel,1,48,2016,April,23,10,1,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,140.4,0,0,No-Show,2019-03-04 -City Hotel,1,259,2016,June,21,30,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,105.7,0,0,Canceled,2019-02-01 -Resort Hotel,0,98,2017,August,32,16,2,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,G,A,1,No Deposit,240.0,179.0,0,Transient,243.73,1,3,Check-Out,2020-04-02 -City Hotel,1,34,2016,October,42,4,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,102.43,0,0,Canceled,2018-08-03 -City Hotel,0,21,2016,June,36,21,2,1,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.03,0,2,Check-Out,2019-06-03 -City Hotel,0,163,2016,July,38,29,0,2,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,6.0,179.0,0,Transient,124.15,0,3,Check-Out,2019-05-04 -City Hotel,0,33,2016,April,15,31,0,3,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.57,0,0,Check-Out,2019-02-01 -Resort Hotel,0,35,2017,July,28,18,1,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,234.34,0,2,Check-Out,2020-06-02 -City Hotel,0,2,2015,November,52,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,62.0,0,Transient,60.36,0,0,Check-Out,2018-08-03 -City Hotel,1,341,2016,October,44,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,116.1,0,0,Canceled,2017-11-02 -City Hotel,1,36,2016,October,43,20,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,198.98,0,2,Canceled,2019-07-04 -City Hotel,1,122,2015,September,37,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,87.0,179.0,0,Transient,57.43,0,0,Canceled,2018-08-03 -Resort Hotel,1,101,2015,December,53,28,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,72.61,0,0,Canceled,2018-11-02 -City Hotel,1,39,2016,October,45,28,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,121.04,0,2,Canceled,2019-02-01 -City Hotel,0,14,2016,May,28,23,0,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient,72.07,1,0,Check-Out,2019-05-04 -City Hotel,0,249,2016,June,25,13,3,7,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,74.51,0,0,Check-Out,2019-05-04 -City Hotel,1,145,2016,June,38,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,115.09,0,0,Canceled,2018-08-03 -Resort Hotel,0,310,2016,September,37,31,3,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,55.13,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2017,August,9,15,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,39.52,0,0,Check-Out,2020-03-03 -Resort Hotel,1,108,2016,August,21,2,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,249.0,179.0,0,Transient,200.66,0,0,Canceled,2019-03-04 -Resort Hotel,0,24,2015,December,50,9,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,46.05,1,0,Check-Out,2018-09-02 -Resort Hotel,0,12,2016,October,44,26,1,0,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,69.73,0,0,Check-Out,2019-12-04 -Resort Hotel,0,142,2017,May,21,14,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,311.0,179.0,0,Transient,78.08,0,1,Check-Out,2020-02-01 -City Hotel,1,23,2016,August,21,13,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.55,0,0,No-Show,2019-03-04 -City Hotel,1,53,2017,March,15,15,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,95.9,0,0,Canceled,2018-11-02 -City Hotel,1,252,2015,September,45,6,0,1,1,0.0,0,BB,,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,91.3,0,0,Canceled,2019-06-03 -City Hotel,0,160,2017,July,30,13,1,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,223.08,0,1,Check-Out,2020-06-02 -Resort Hotel,0,97,2017,June,15,16,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,119.6,0,0,Check-Out,2019-01-03 -City Hotel,0,13,2017,May,21,16,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,153.61,0,3,Check-Out,2020-05-03 -Resort Hotel,0,72,2015,December,53,9,2,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,87.27,0,1,Check-Out,2018-12-03 -Resort Hotel,1,153,2017,May,15,15,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient,94.28,0,0,Canceled,2020-02-01 -Resort Hotel,0,52,2015,August,36,27,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,1.11,0,0,Check-Out,2018-06-02 -City Hotel,0,283,2016,May,21,15,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,125.85,0,0,Check-Out,2019-11-03 -City Hotel,1,46,2016,July,37,29,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,102.87,0,0,No-Show,2019-02-01 -Resort Hotel,0,2,2016,September,43,31,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,241.0,179.0,0,Transient,195.87,1,3,Check-Out,2019-08-04 -City Hotel,0,44,2015,November,43,21,0,2,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,69.51,0,0,Check-Out,2018-08-03 -City Hotel,0,304,2015,July,36,25,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.37,0,0,Canceled,2017-12-03 -City Hotel,1,294,2016,October,15,13,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,271.0,179.0,0,Transient,73.7,0,0,Canceled,2019-01-03 -Resort Hotel,0,40,2016,December,51,28,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,245.0,179.0,0,Transient,86.97,1,2,Check-Out,2019-10-04 -City Hotel,0,47,2017,January,3,15,2,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,73.79,0,2,Check-Out,2019-11-03 -City Hotel,1,56,2017,September,36,13,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.9,0,0,Canceled,2019-11-03 -Resort Hotel,0,18,2015,December,50,11,0,2,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,99.6,0,0,Check-Out,2019-11-03 -Resort Hotel,0,150,2016,October,44,23,0,4,2,0.0,0,HB,POL,Groups,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,88.79,0,0,Check-Out,2019-09-03 -Resort Hotel,0,2,2017,February,11,20,0,1,1,0.0,0,Undefined,PRT,Corporate,Corporate,0,0,0,A,F,0,No Deposit,36.0,179.0,0,Transient-Party,76.21,0,0,Check-Out,2020-02-01 -City Hotel,1,138,2015,July,33,9,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.24,0,1,Canceled,2018-07-03 -City Hotel,1,430,2015,October,43,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,64.42,0,0,Canceled,2017-11-02 -City Hotel,0,124,2015,September,35,31,0,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,76.54,0,0,Check-Out,2018-08-03 -City Hotel,0,222,2016,March,18,23,1,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,91.32,0,0,Check-Out,2019-01-03 -City Hotel,0,1,2016,November,51,13,1,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,206.0,179.0,0,Transient,69.34,0,0,Check-Out,2019-10-04 -City Hotel,0,44,2016,July,33,30,0,3,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,103.22,0,3,Check-Out,2019-04-03 -City Hotel,0,39,2017,March,22,13,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,74.54,0,0,Check-Out,2020-03-03 -Resort Hotel,0,10,2015,August,36,11,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,47.63,0,0,Check-Out,2018-05-03 -City Hotel,0,12,2017,May,22,21,2,5,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,E,I,1,No Deposit,13.0,179.0,0,Transient-Party,81.92,0,0,Check-Out,2020-03-03 -City Hotel,1,172,2016,November,44,21,0,2,1,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,149.5,0,0,Canceled,2018-08-03 -City Hotel,1,29,2016,December,51,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,60.63,0,0,Canceled,2018-11-02 -City Hotel,1,388,2016,September,18,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,42,Transient,99.93,0,0,Canceled,2019-01-03 -City Hotel,1,252,2015,September,45,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.85,0,0,Canceled,2017-10-03 -City Hotel,0,0,2015,November,45,24,0,3,1,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.97,0,0,Check-Out,2018-09-02 -Resort Hotel,0,264,2017,August,34,18,3,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,162.83,0,0,Check-Out,2020-07-03 -Resort Hotel,0,1,2017,February,10,24,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Group,60.71,0,1,Check-Out,2020-03-03 -Resort Hotel,1,239,2016,October,37,13,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,118.57,0,0,Canceled,2019-05-04 -City Hotel,1,196,2017,February,16,8,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,102.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,260,2015,July,31,5,0,1,3,0.0,0,HB,DEU,Direct,Direct,0,0,0,D,F,1,No Deposit,14.0,179.0,0,Transient,231.18,0,0,Check-Out,2020-06-02 -City Hotel,1,96,2017,August,36,18,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,152.25,0,2,Canceled,2020-07-03 -City Hotel,0,5,2017,May,22,7,2,0,2,0.0,0,BB,CN,Corporate,Corporate,1,0,0,A,A,2,No Deposit,14.0,331.0,0,Transient-Party,99.64,1,0,Check-Out,2020-04-02 -City Hotel,0,1,2016,August,36,7,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,10.0,179.0,0,Group,0.42,0,1,Check-Out,2019-09-03 -City Hotel,0,20,2016,October,41,19,1,2,2,2.0,0,FB,NLD,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,70.0,179.0,0,Transient,96.47,0,0,Check-Out,2019-09-03 -City Hotel,0,234,2017,June,26,29,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,97.73,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2016,February,23,24,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,1,No Deposit,155.0,331.0,0,Transient-Party,32.92,0,0,Check-Out,2019-03-04 -City Hotel,0,46,2015,October,45,21,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,57.48,0,0,Check-Out,2018-08-03 -Resort Hotel,0,186,2016,October,43,14,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient,68.65,0,0,Check-Out,2019-08-04 -City Hotel,0,9,2017,February,10,23,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,7.0,179.0,0,Transient,70.49,0,0,Check-Out,2020-02-01 -Resort Hotel,0,76,2016,July,31,25,0,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,150.62,1,2,Check-Out,2018-05-03 -City Hotel,1,24,2016,October,51,29,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,70.86,0,0,Canceled,2018-08-03 -Resort Hotel,0,8,2015,July,36,28,0,1,2,0.0,0,HB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,81.86,1,0,Check-Out,2018-07-03 -Resort Hotel,0,15,2016,March,10,30,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,223.19,0,0,Check-Out,2019-10-04 -Resort Hotel,0,19,2016,July,27,5,0,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,79.03,0,0,Check-Out,2019-06-03 -City Hotel,1,232,2015,September,31,5,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,63.47,0,0,Canceled,2017-10-03 -City Hotel,0,0,2017,April,17,9,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,135.12,0,0,Check-Out,2020-03-03 -City Hotel,1,7,2016,October,47,28,1,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,111.16,0,0,No-Show,2019-09-03 -City Hotel,1,59,2015,December,50,10,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,84.2,0,0,Canceled,2018-10-03 -City Hotel,0,107,2016,May,23,27,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,150.38,0,1,Check-Out,2019-03-04 -City Hotel,0,14,2017,January,9,26,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,15.0,179.0,0,Transient-Party,81.74,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,June,10,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,96.76,1,1,Check-Out,2019-01-03 -City Hotel,0,24,2016,October,49,17,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Group,157.83,0,0,Check-Out,2019-12-04 -City Hotel,0,241,2016,July,33,23,2,0,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.36,0,1,Canceled,2019-04-03 -Resort Hotel,0,202,2016,July,37,27,4,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,325.0,179.0,0,Transient,62.69,0,0,Check-Out,2020-06-02 -City Hotel,1,0,2017,February,9,15,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,Non Refund,14.0,80.0,0,Transient,27.58,0,0,Canceled,2019-12-04 -City Hotel,0,296,2017,August,34,18,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,122.27,1,0,Check-Out,2020-06-02 -City Hotel,1,40,2016,March,16,16,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.68,0,0,Canceled,2018-12-03 -City Hotel,1,306,2015,September,34,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,A,0,No Deposit,10.0,179.0,0,Group,122.71,0,2,Canceled,2019-09-03 -City Hotel,1,45,2016,July,53,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,14.0,208.0,0,Transient,71.93,0,0,Canceled,2019-05-04 -Resort Hotel,0,2,2015,December,50,2,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,A,C,0,No Deposit,245.0,179.0,0,Group,0.0,0,1,Check-Out,2018-08-03 -Resort Hotel,0,149,2015,December,51,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,65.63,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2015,July,28,9,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,120.65,0,0,Canceled,2020-06-02 -Resort Hotel,0,28,2016,December,50,18,0,3,2,0.0,0,HB,BRA,Direct,Direct,0,0,0,L,G,2,No Deposit,14.0,179.0,0,Transient,92.22,0,0,Check-Out,2019-10-04 -City Hotel,1,156,2017,July,33,14,0,4,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.03,0,2,Canceled,2020-06-02 -Resort Hotel,0,9,2016,February,8,24,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,67.39,0,0,Check-Out,2019-03-04 -City Hotel,1,8,2016,August,36,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,240.0,179.0,0,Transient,60.65,0,0,Canceled,2018-01-31 -Resort Hotel,0,11,2016,March,16,27,0,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,59.45,1,0,Check-Out,2019-02-01 -City Hotel,1,1,2017,August,31,5,1,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,96.01,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2015,December,49,23,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,41.41,0,0,Check-Out,2018-12-03 -Resort Hotel,0,95,2016,March,18,10,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,41.45,0,0,Check-Out,2019-02-01 -Resort Hotel,0,14,2016,March,16,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,90.0,179.0,0,Transient-Party,94.68,0,0,Check-Out,2018-12-03 -City Hotel,1,270,2016,April,16,18,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,109.02,0,1,Canceled,2018-11-02 -City Hotel,0,2,2016,September,41,15,0,1,1,0.0,0,BB,USA,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,102.11,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2017,August,34,31,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.31,0,0,Check-Out,2020-01-04 -City Hotel,0,142,2017,July,27,5,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.8,0,2,Check-Out,2020-03-03 -Resort Hotel,0,14,2015,December,53,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,64.93,1,0,Check-Out,2018-11-02 -City Hotel,1,389,2016,June,27,6,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,15,Transient,80.07,0,0,Canceled,2018-12-03 -Resort Hotel,0,269,2015,July,33,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.82,0,1,Canceled,2018-06-02 -City Hotel,0,8,2017,August,50,28,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.29,0,0,Check-Out,2019-12-04 -City Hotel,1,395,2017,May,23,27,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,224.0,179.0,0,Transient,74.62,0,0,Canceled,2019-12-04 -City Hotel,1,88,2017,June,26,27,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,Non Refund,14.0,179.0,0,Transient,100.12,0,0,Canceled,2019-11-03 -City Hotel,0,17,2017,May,21,21,1,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,7.0,179.0,0,Transient-Party,123.34,0,1,Check-Out,2020-03-03 -Resort Hotel,0,28,2016,September,34,2,1,2,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,113.32,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2016,September,38,6,0,4,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,150.94,0,1,Check-Out,2019-06-03 -City Hotel,0,19,2015,July,34,22,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,164.32,0,0,Check-Out,2018-06-02 -Resort Hotel,0,11,2015,December,50,31,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,242.0,179.0,0,Group,91.67,0,1,Check-Out,2019-11-03 -City Hotel,0,143,2016,September,35,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,219.0,179.0,0,Transient,90.9,0,0,Check-Out,2019-07-04 -Resort Hotel,1,135,2017,April,11,21,2,5,2,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient-Party,90.67,0,0,Canceled,2019-09-03 -City Hotel,0,257,2015,September,42,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,60.6,0,0,Check-Out,2018-05-03 -City Hotel,1,10,2015,August,36,13,2,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.83,0,3,Canceled,2018-05-03 -City Hotel,0,133,2016,June,27,23,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.31,0,1,Check-Out,2019-06-03 -Resort Hotel,0,111,2016,July,32,15,2,5,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient-Party,114.61,1,1,Check-Out,2019-06-03 -City Hotel,0,42,2017,August,39,27,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,209.26,0,1,Check-Out,2020-07-03 -Resort Hotel,0,138,2016,December,50,31,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient-Party,118.18,0,0,Check-Out,2019-10-04 -Resort Hotel,0,130,2016,May,23,24,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,239.0,179.0,0,Transient,221.08,0,1,Canceled,2019-05-04 -Resort Hotel,0,16,2016,April,22,6,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,72.17,0,1,Check-Out,2019-07-04 -City Hotel,0,1,2016,January,2,2,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.2,0,0,Check-Out,2018-10-03 -City Hotel,0,57,2017,May,17,24,1,2,1,0.0,0,BB,GBR,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.03,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,June,26,27,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,121.84,0,0,Check-Out,2020-06-02 -Resort Hotel,1,278,2016,September,36,12,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,100.29,0,1,Canceled,2017-12-03 -City Hotel,0,52,2017,June,35,28,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.44,0,2,Check-Out,2020-07-03 -Resort Hotel,0,235,2016,July,32,28,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,74.33,0,0,Check-Out,2018-06-02 -City Hotel,1,31,2016,December,53,28,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.52,0,2,Canceled,2019-11-03 -Resort Hotel,0,0,2016,May,22,10,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,250.0,179.0,0,Transient,87.49,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2016,March,11,28,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,140.0,179.0,0,Transient-Party,70.37,0,0,Check-Out,2019-03-04 -Resort Hotel,0,9,2017,March,18,10,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,65.0,179.0,0,Transient,68.47,0,0,Check-Out,2020-01-04 -Resort Hotel,0,0,2016,January,11,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,0,No Deposit,16.0,45.0,0,Transient,41.73,0,0,Check-Out,2019-11-03 -Resort Hotel,0,43,2016,March,15,6,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,78.5,0,0,Check-Out,2019-02-01 -City Hotel,0,224,2017,March,25,25,0,3,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.37,0,2,Check-Out,2019-03-04 -City Hotel,1,265,2017,March,9,29,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,73.97,0,1,Canceled,2020-02-01 -City Hotel,1,173,2017,June,32,31,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.91,0,1,Canceled,2020-07-03 -City Hotel,0,199,2016,September,31,30,2,2,3,2.0,0,BB,BRA,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,216.87,0,0,Check-Out,2018-11-02 -City Hotel,0,3,2016,August,38,5,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,112.54,1,1,Check-Out,2019-07-04 -Resort Hotel,0,39,2016,April,16,31,1,1,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,241.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-03-04 -City Hotel,0,2,2016,October,45,30,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.51,0,2,Check-Out,2019-11-03 -City Hotel,0,34,2016,April,42,23,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.4,0,2,Check-Out,2019-06-03 -City Hotel,1,7,2017,January,8,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.79,0,0,No-Show,2019-12-04 -City Hotel,1,68,2015,February,4,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.34,0,0,Canceled,2018-12-03 -City Hotel,1,13,2016,February,15,20,2,1,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,189.99,0,0,Canceled,2019-01-03 -Resort Hotel,0,261,2017,July,32,24,0,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-06-02 -City Hotel,0,1,2016,June,28,27,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,76.7,0,0,Check-Out,2019-06-03 -City Hotel,0,31,2016,December,53,24,0,3,3,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,8.0,179.0,0,Transient,73.54,0,2,Check-Out,2019-12-04 -City Hotel,0,100,2016,October,45,28,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.64,0,0,Check-Out,2018-08-03 -Resort Hotel,1,100,2015,December,53,9,2,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,293.0,179.0,0,Transient-Party,63.54,0,0,Canceled,2019-10-04 -City Hotel,1,198,2016,March,10,12,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,45.77,0,0,Canceled,2018-12-03 -City Hotel,0,225,2016,May,25,9,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,120.0,179.0,0,Transient,109.41,0,0,Check-Out,2019-02-01 -City Hotel,0,137,2017,April,17,9,0,2,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,76.0,179.0,0,Transient,122.33,0,0,Check-Out,2020-03-03 -Resort Hotel,0,152,2016,December,50,1,0,3,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,189.0,179.0,0,Transient-Party,101.33,0,0,Check-Out,2019-11-03 -City Hotel,0,39,2017,April,17,5,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,72.77,0,0,Check-Out,2020-03-03 -City Hotel,1,188,2016,August,37,13,2,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,172.32,0,3,Canceled,2019-05-04 -City Hotel,1,1,2016,March,18,23,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,162.27,0,1,Check-Out,2019-03-04 -Resort Hotel,0,37,2016,October,43,17,1,3,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,157.6,0,0,Check-Out,2019-08-04 -City Hotel,1,94,2017,March,23,15,0,5,2,0.0,0,HB,DEU,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,223.0,0,Transient-Party,112.54,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,August,35,2,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Transient,216.07,0,0,Check-Out,2019-06-03 -Resort Hotel,0,102,2016,December,50,5,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,137.0,179.0,0,Transient-Party,103.76,0,0,Check-Out,2018-11-02 -City Hotel,1,290,2017,May,20,9,0,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,167.0,179.0,0,Transient,97.21,0,0,Canceled,2020-03-03 -City Hotel,1,37,2016,July,27,15,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,99.76,0,1,Canceled,2019-05-04 -Resort Hotel,0,1,2015,October,48,20,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,67.52,0,0,Check-Out,2018-08-03 -City Hotel,1,250,2015,September,36,25,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,206.0,0,Transient,106.59,0,0,Canceled,2018-08-03 -Resort Hotel,0,53,2015,December,51,28,1,2,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,93.0,179.0,0,Transient-Party,82.83,0,0,Check-Out,2018-12-03 -City Hotel,1,13,2016,August,43,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,128.5,0,0,Canceled,2019-04-03 -City Hotel,0,0,2015,October,37,11,1,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,218,2017,August,34,10,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,246.0,179.0,0,Transient,159.63,1,1,Check-Out,2020-06-02 -Resort Hotel,0,108,2016,October,19,20,0,4,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,E,H,0,No Deposit,246.0,179.0,0,Transient,146.7,0,0,Check-Out,2019-03-04 -City Hotel,0,244,2015,October,44,14,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,36.06,0,0,Check-Out,2018-09-02 -Resort Hotel,0,25,2015,October,46,7,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,87.66,0,0,Check-Out,2019-10-04 -City Hotel,1,410,2015,August,44,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.79,0,0,Canceled,2018-08-03 -City Hotel,0,36,2016,February,16,11,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,64.35,0,1,Check-Out,2019-02-01 -City Hotel,0,13,2016,December,51,24,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,44.31,0,2,Check-Out,2019-09-03 -Resort Hotel,0,241,2016,June,26,5,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,61.16,0,1,Check-Out,2019-07-04 -Resort Hotel,1,50,2016,March,16,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,42.05,0,0,Canceled,2019-02-01 -City Hotel,0,35,2015,August,36,31,2,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient-Party,101.93,0,3,Check-Out,2018-08-03 -City Hotel,0,58,2017,April,18,24,0,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,68.54,0,0,Check-Out,2020-02-01 -City Hotel,1,45,2017,March,16,8,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,9.0,179.0,0,Transient,110.39,0,0,Canceled,2020-01-04 -City Hotel,0,1,2017,April,17,13,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,1,No Deposit,13.0,170.0,0,Transient,84.88,0,0,Check-Out,2020-04-02 -City Hotel,0,18,2017,August,38,31,1,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.16,0,0,Check-Out,2020-03-03 -City Hotel,0,245,2016,October,43,2,0,2,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,3,No Deposit,241.0,179.0,0,Transient,112.18,0,0,Check-Out,2019-09-03 -Resort Hotel,0,21,2015,July,30,6,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,40.79,1,2,Check-Out,2018-06-02 -Resort Hotel,1,163,2016,April,26,19,0,6,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,224.07,0,0,Canceled,2019-02-01 -City Hotel,1,0,2015,September,45,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,71.85,0,1,Canceled,2019-05-04 -City Hotel,1,92,2016,July,32,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,133.0,179.0,0,Transient,62.08,0,0,No-Show,2018-12-03 -City Hotel,1,200,2016,October,44,12,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.99,0,0,Canceled,2019-08-04 -Resort Hotel,0,0,2016,March,21,5,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,178.0,179.0,0,Group,37.38,0,1,Check-Out,2019-10-04 -Resort Hotel,0,272,2016,June,35,5,0,3,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,Refundable,13.0,223.0,0,Transient,65.35,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2015,December,50,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,32.26,1,0,Check-Out,2018-12-03 -City Hotel,0,30,2015,October,43,31,0,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,99.31,0,2,Check-Out,2018-09-02 -Resort Hotel,0,1,2015,October,44,20,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,1,No Deposit,12.0,331.0,0,Transient,68.03,0,0,Check-Out,2019-05-04 -City Hotel,0,10,2017,June,9,16,2,5,1,0.0,0,HB,GBR,Direct,Corporate,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,96.85,0,3,Check-Out,2020-04-02 -City Hotel,0,135,2016,May,20,18,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.58,0,0,Check-Out,2019-03-04 -City Hotel,0,30,2015,July,32,29,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient-Party,131.63,0,0,Check-Out,2018-05-03 -City Hotel,0,3,2015,September,35,13,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,3.0,179.0,0,Contract,92.99,0,0,Check-Out,2018-09-02 -City Hotel,0,46,2016,March,11,28,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,99.54,0,0,Check-Out,2018-12-03 -City Hotel,1,372,2017,June,27,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,105.64,0,0,Canceled,2019-12-04 -Resort Hotel,1,49,2016,February,11,13,1,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,81.24,0,0,Canceled,2019-11-03 -Resort Hotel,0,5,2017,February,7,14,2,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,98.0,331.0,0,Transient,34.2,0,0,Check-Out,2019-12-04 -City Hotel,1,93,2016,June,28,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,61.85,0,0,Canceled,2018-06-02 -City Hotel,0,14,2016,October,46,2,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,82.12,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2017,April,16,28,2,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-04-02 -City Hotel,1,3,2016,February,10,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,2,Non Refund,168.0,179.0,18,Transient,80.21,0,0,Canceled,2018-10-03 -Resort Hotel,0,10,2016,August,39,31,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,181.51,0,2,Check-Out,2018-08-03 -Resort Hotel,1,15,2017,March,16,18,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,119.86,0,0,Canceled,2020-04-02 -City Hotel,0,58,2017,May,19,19,2,3,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,F,B,1,No Deposit,14.0,179.0,0,Transient,151.71,0,1,Check-Out,2020-02-01 -Resort Hotel,0,1,2017,January,3,27,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,0,No Deposit,249.0,179.0,0,Transient,49.25,0,0,Check-Out,2019-09-03 -City Hotel,1,51,2017,March,21,15,2,1,3,0.0,0,BB,CHE,Corporate,TA/TO,1,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,199.78,0,1,Canceled,2020-02-01 -Resort Hotel,0,296,2016,September,35,25,2,7,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,206.52,0,1,Check-Out,2019-04-03 -City Hotel,1,92,2016,February,29,2,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,120.91,0,0,Canceled,2019-01-03 -City Hotel,1,90,2016,November,43,17,2,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.76,0,0,Canceled,2019-05-04 -City Hotel,0,88,2016,October,44,20,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,94.61,0,0,Check-Out,2019-11-03 -City Hotel,1,3,2016,March,9,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,16,Transient,93.64,0,2,Canceled,2018-10-03 -Resort Hotel,0,17,2017,August,35,26,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,75.85,0,0,Check-Out,2020-07-03 -Resort Hotel,1,249,2017,June,28,28,4,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,121.07,0,0,Canceled,2020-03-03 -City Hotel,0,56,2017,April,18,22,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.55,0,0,Check-Out,2020-02-01 -Resort Hotel,0,181,2017,July,32,31,3,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient,210.52,0,2,Check-Out,2019-05-04 -Resort Hotel,0,49,2016,August,36,27,0,3,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,123.59,0,1,Canceled,2019-05-04 -City Hotel,1,0,2016,February,8,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,50.5,0,0,Canceled,2018-11-02 -Resort Hotel,0,312,2017,May,22,31,1,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,80.79,1,0,Check-Out,2020-03-03 -City Hotel,0,10,2017,March,14,10,1,0,2,0.0,0,HB,PRT,Offline TA/TO,Direct,1,0,0,E,F,0,No Deposit,13.0,179.0,75,Group,97.73,0,3,Check-Out,2020-02-01 -City Hotel,0,17,2016,June,45,24,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,0,No Deposit,13.0,61.0,0,Transient,87.43,0,0,Check-Out,2019-06-03 -Resort Hotel,1,94,2017,April,14,15,2,3,2,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,20.0,179.0,0,Transient,91.28,0,0,Canceled,2019-12-04 -City Hotel,0,100,2015,September,49,21,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,61.7,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,April,16,11,2,0,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,6.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -Resort Hotel,1,124,2017,February,20,26,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,2020-02-01 -City Hotel,1,111,2017,June,32,22,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Canceled,2020-01-04 -Resort Hotel,0,0,2016,November,37,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,E,D,0,No Deposit,241.0,179.0,0,Transient,73.34,0,2,Check-Out,2019-06-03 -City Hotel,1,310,2015,June,38,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,70.07,0,0,Canceled,2018-12-03 -Resort Hotel,1,30,2016,February,3,25,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,167.15,0,0,Canceled,2019-03-04 -City Hotel,0,313,2015,September,45,18,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,60.04,0,0,Check-Out,2018-08-03 -Resort Hotel,0,25,2015,December,50,28,2,0,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,33.62,0,0,Check-Out,2018-08-03 -City Hotel,0,151,2017,July,31,2,4,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,211.89,0,2,Check-Out,2020-05-03 -Resort Hotel,0,1,2017,February,9,20,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,39.97,0,0,Check-Out,2020-01-04 -Resort Hotel,1,13,2015,December,53,31,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,49.88,0,0,Canceled,2018-11-02 -Resort Hotel,0,226,2017,August,39,25,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,C,2,No Deposit,243.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-07-03 -City Hotel,1,159,2017,October,28,9,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.28,0,0,Canceled,2019-12-04 -City Hotel,1,309,2016,July,34,27,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.79,0,0,Canceled,2019-04-03 -City Hotel,0,192,2016,August,32,15,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.95,0,1,Check-Out,2019-06-03 -City Hotel,1,254,2015,September,44,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.46,0,0,Canceled,2018-08-03 -City Hotel,1,90,2016,June,27,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,90.67,0,0,Canceled,2019-03-04 -Resort Hotel,0,254,2016,July,25,9,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,134.22,0,0,Check-Out,2020-02-01 -Resort Hotel,0,100,2016,March,18,21,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,238.0,179.0,0,Transient,71.91,0,2,Check-Out,2019-01-03 -City Hotel,0,131,2017,July,32,20,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,193.34,0,0,Check-Out,2019-12-04 -City Hotel,1,61,2017,July,36,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.3,0,0,Canceled,2017-11-02 -Resort Hotel,0,10,2017,June,26,17,0,2,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,C,I,1,No Deposit,244.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -Resort Hotel,1,104,2016,January,42,16,1,1,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,84.18,0,0,Canceled,2019-09-03 -City Hotel,0,36,2016,March,23,27,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,112.93,1,2,Check-Out,2019-03-04 -Resort Hotel,0,17,2017,February,10,9,1,0,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,93.0,90.0,0,Transient,37.18,0,0,Check-Out,2020-04-02 -City Hotel,1,95,2016,December,53,2,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,109.74,0,0,Canceled,2019-02-01 -City Hotel,1,12,2017,May,22,19,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,2,No Deposit,244.0,179.0,0,Transient,252.0,0,3,No-Show,2020-04-02 -City Hotel,0,2,2017,February,8,27,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,38.41,0,1,Check-Out,2019-10-04 -Resort Hotel,1,190,2016,May,26,27,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,116.33,0,0,Canceled,2019-02-01 -City Hotel,1,2,2016,November,37,18,0,2,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,4.53,0,0,Check-Out,2019-12-04 -City Hotel,0,155,2017,July,32,7,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,62.21,0,0,Check-Out,2018-07-03 -Resort Hotel,0,117,2017,July,36,5,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,81.24,0,2,Check-Out,2020-03-03 -City Hotel,0,4,2016,July,38,2,1,3,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,157.99,0,1,Check-Out,2019-06-03 -City Hotel,1,28,2017,May,22,13,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,202.44,0,0,Canceled,2019-10-04 -Resort Hotel,0,45,2015,October,44,30,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,72.45,0,0,Check-Out,2018-11-02 -City Hotel,1,23,2015,March,12,5,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,F,0,No Deposit,18.0,179.0,0,Transient,76.35,0,2,Canceled,2018-12-03 -City Hotel,0,389,2016,October,42,13,2,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,87.67,0,0,Check-Out,2019-08-04 -City Hotel,1,29,2017,May,20,8,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,149.92,0,0,Canceled,2020-04-02 -City Hotel,0,110,2017,March,21,10,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,156.22,0,0,Check-Out,2020-03-03 -City Hotel,1,341,2017,April,23,5,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.4,0,0,Canceled,2019-11-03 -Resort Hotel,0,10,2016,January,10,25,0,2,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,41.86,0,1,Check-Out,2018-11-02 -City Hotel,0,103,2017,June,28,5,2,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.45,0,3,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,January,4,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,368.0,179.0,0,Transient,35.23,0,0,Check-Out,2018-12-03 -Resort Hotel,0,42,2016,August,38,6,2,4,2,1.0,0,HB,NOR,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient,215.8,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,February,17,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,128.14,1,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,January,11,15,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,62.44,0,3,Check-Out,2018-11-02 -City Hotel,1,3,2016,February,11,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient,65.29,0,0,Canceled,2019-10-04 -City Hotel,0,160,2017,May,20,24,2,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,13.0,179.0,0,Transient,230.87,0,0,Check-Out,2020-07-03 -Resort Hotel,0,1,2015,October,43,17,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,32.56,1,1,Check-Out,2019-01-03 -City Hotel,0,52,2016,March,18,10,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.59,0,1,Check-Out,2019-11-03 -City Hotel,0,160,2015,September,36,28,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,78.12,0,0,Check-Out,2018-09-02 -City Hotel,0,46,2017,May,16,20,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,131.48,0,1,Check-Out,2020-03-03 -City Hotel,1,232,2015,July,30,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,8.0,179.0,0,Contract,101.87,0,0,Canceled,2017-11-02 -City Hotel,0,4,2017,August,32,28,2,5,1,0.0,0,HB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,75.17,0,0,Check-Out,2020-07-03 -Resort Hotel,0,209,2017,August,39,29,1,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,178.75,1,3,Check-Out,2020-07-03 -City Hotel,0,23,2017,June,26,4,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,117.38,0,0,Check-Out,2019-11-03 -Resort Hotel,1,35,2017,July,20,17,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,152.2,0,1,No-Show,2020-03-03 -City Hotel,1,167,2016,December,46,21,0,3,2,2.0,0,BB,CHE,Online TA,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,251.69,0,1,Canceled,2019-05-04 -City Hotel,0,87,2017,April,18,9,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,121.98,0,0,Check-Out,2020-04-02 -Resort Hotel,1,17,2017,March,23,27,2,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,212.96,1,0,Canceled,2020-04-02 -City Hotel,0,10,2016,July,33,30,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.8,0,1,Check-Out,2019-03-04 -Resort Hotel,1,36,2016,August,35,21,2,2,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,82.71,0,0,Canceled,2019-06-03 -City Hotel,0,12,2017,August,31,18,0,1,3,1.0,0,SC,USA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,143,2016,October,42,30,0,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.4,0,0,Check-Out,2019-06-03 -City Hotel,1,91,2017,April,14,30,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,171.0,179.0,0,Transient,118.74,0,0,No-Show,2020-04-02 -City Hotel,0,8,2016,May,29,21,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,E,E,0,No Deposit,13.0,331.0,0,Transient,82.89,0,0,Check-Out,2019-11-03 -Resort Hotel,1,0,2017,February,9,6,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,D,0,Non Refund,16.0,179.0,0,Transient,41.15,0,0,Canceled,2019-12-04 -City Hotel,1,99,2016,January,9,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,147.0,179.0,0,Transient,73.77,0,0,Canceled,2018-10-03 -City Hotel,0,3,2016,April,34,8,0,1,1,0.0,0,BB,,Aviation,Direct,0,0,0,D,D,2,No Deposit,100.0,179.0,0,Transient,96.99,0,1,Check-Out,2019-01-03 -City Hotel,1,6,2016,August,34,18,2,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,197.82,0,1,Canceled,2019-02-01 -City Hotel,0,2,2017,July,8,20,0,2,3,0.0,0,BB,FRA,Direct,GDS,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,129.89,0,1,Check-Out,2020-06-02 -City Hotel,1,37,2017,February,9,21,0,1,2,0.0,0,BB,AUT,Corporate,Corporate,0,0,0,G,A,0,Non Refund,12.0,179.0,0,Transient,78.82,0,0,Canceled,2020-03-03 -Resort Hotel,0,4,2016,November,44,30,2,5,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,45.72,1,0,Check-Out,2019-10-04 -City Hotel,1,15,2017,March,9,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,62.71,0,1,Canceled,2019-07-04 -City Hotel,0,14,2016,October,44,13,1,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,98.57,0,3,Check-Out,2019-08-04 -Resort Hotel,1,13,2015,December,52,20,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,307.0,179.0,0,Transient,70.63,0,0,Canceled,2018-01-31 -City Hotel,1,138,2017,June,27,18,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,24.0,179.0,0,Transient,91.02,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,February,8,9,1,0,2,0.0,0,BB,NLD,Direct,TA/TO,0,0,0,H,L,0,No Deposit,11.0,179.0,0,Transient,60.16,0,0,Check-Out,2019-01-03 -City Hotel,1,207,2017,August,33,13,2,1,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,165.9,0,3,Canceled,2019-10-04 -City Hotel,1,0,2017,April,7,8,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,9.0,179.0,0,Transient,0.1,0,0,Canceled,2019-12-04 -City Hotel,1,31,2016,February,7,30,0,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,82.0,179.0,18,Transient,43.16,0,0,Canceled,2018-10-03 -City Hotel,0,12,2016,July,36,23,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.38,0,2,Check-Out,2019-05-04 -City Hotel,1,49,2016,October,46,21,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,159.95,0,0,Canceled,2019-12-04 -Resort Hotel,0,46,2017,August,37,28,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,112.44,1,3,Check-Out,2020-06-02 -Resort Hotel,0,161,2017,June,35,10,3,3,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,116.96,0,0,Check-Out,2020-06-02 -City Hotel,0,17,2016,October,20,1,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,187.99,0,1,Check-Out,2019-03-04 -City Hotel,0,3,2017,March,10,12,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,70.65,0,0,Check-Out,2019-01-03 -Resort Hotel,1,165,2016,February,49,28,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,81.5,0,0,Canceled,2018-12-03 -City Hotel,1,16,2017,March,11,29,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,73.14,0,0,Canceled,2019-12-04 -City Hotel,0,17,2017,June,21,12,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-12-04 -Resort Hotel,0,42,2017,May,21,7,2,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,77.89,0,1,Canceled,2020-04-02 -Resort Hotel,0,406,2017,August,36,13,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,74.91,0,0,Check-Out,2020-06-02 -City Hotel,0,18,2016,July,35,25,1,5,2,1.0,0,SC,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,174.8,1,1,Check-Out,2019-04-03 -Resort Hotel,0,276,2015,October,46,23,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,30.4,0,2,Check-Out,2018-09-02 -City Hotel,0,31,2016,December,17,2,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.92,0,0,Check-Out,2019-03-04 -City Hotel,1,18,2016,February,10,24,0,1,2,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,0,Non Refund,16.0,331.0,0,Transient,50.49,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2015,October,43,20,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,0.0,1,3,Check-Out,2018-08-03 -City Hotel,0,150,2016,June,26,13,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,73.38,0,0,Check-Out,2019-05-04 -Resort Hotel,1,296,2017,July,20,15,2,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient-Party,171.59,0,0,No-Show,2020-05-03 -City Hotel,0,6,2016,December,53,2,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.0,0,3,Check-Out,2019-09-03 -City Hotel,1,281,2015,September,42,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,75.14,0,0,Canceled,2018-08-03 -City Hotel,1,7,2016,June,26,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,15.0,179.0,39,Transient,63.5,0,0,No-Show,2018-12-03 -Resort Hotel,0,99,2016,May,25,9,4,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,191.0,179.0,0,Transient,60.75,0,1,Check-Out,2019-04-03 -Resort Hotel,1,263,2017,March,17,22,0,2,1,0.0,0,HB,NLD,Groups,Corporate,0,0,0,A,A,0,Non Refund,10.0,221.0,0,Transient-Party,65.29,0,0,Canceled,2020-03-03 -City Hotel,1,91,2016,January,9,9,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.0,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2017,February,10,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,80.27,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2015,September,31,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,77.55,0,2,Check-Out,2017-10-03 -City Hotel,0,88,2016,October,46,6,2,7,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.47,0,1,Check-Out,2019-11-03 -Resort Hotel,0,44,2017,June,28,6,4,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,122.49,0,2,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,March,10,27,0,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,1,E,I,2,No Deposit,16.0,179.0,0,Transient,76.29,1,3,Check-Out,2019-11-03 -City Hotel,0,45,2016,March,14,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,34.0,179.0,0,Transient-Party,73.2,0,0,Check-Out,2019-06-03 -Resort Hotel,0,49,2016,December,52,8,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,C,0,No Deposit,15.0,179.0,0,Transient,103.3,0,0,Check-Out,2019-11-03 -City Hotel,1,39,2016,March,18,9,2,5,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,68.85,0,0,Canceled,2018-12-03 -City Hotel,0,39,2016,February,9,6,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,76.0,0,0,Check-Out,2018-10-03 -City Hotel,0,0,2016,March,9,11,0,1,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,A,A,0,No Deposit,13.0,78.0,0,Transient,71.63,0,0,Check-Out,2018-12-03 -Resort Hotel,0,148,2017,March,18,20,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,168.0,179.0,75,Transient,140.33,1,0,Check-Out,2020-01-04 -City Hotel,1,1,2015,July,34,11,2,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,70.57,0,1,Canceled,2018-11-02 -Resort Hotel,0,0,2016,December,53,21,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,68.04,1,0,Check-Out,2019-04-03 -Resort Hotel,0,12,2016,November,45,5,1,4,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Group,112.49,1,1,Check-Out,2019-10-04 -City Hotel,0,39,2017,April,21,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,138.61,1,0,Check-Out,2020-03-03 -City Hotel,1,159,2016,June,23,25,1,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,40,Transient,110.97,0,0,Canceled,2019-02-01 -Resort Hotel,1,27,2015,September,41,16,1,5,1,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Group,63.15,0,0,Canceled,2018-09-02 -Resort Hotel,0,175,2016,March,16,31,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,14.0,179.0,0,Transient-Party,79.78,0,0,Check-Out,2019-03-04 -Resort Hotel,0,57,2017,March,10,8,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Contract,32.29,0,0,Check-Out,2019-10-04 -City Hotel,1,55,2016,March,23,28,0,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,154.17,0,0,Canceled,2019-03-04 -City Hotel,1,148,2017,July,26,24,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,184.0,179.0,0,Transient,92.09,0,0,Canceled,2020-03-03 -City Hotel,0,238,2017,August,38,6,2,0,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,199.87,0,3,Check-Out,2020-06-02 -City Hotel,0,53,2015,July,32,9,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,150.08,0,1,Check-Out,2018-05-03 -City Hotel,0,53,2016,September,36,31,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,182.58,0,2,Check-Out,2019-06-03 -Resort Hotel,1,39,2016,March,15,28,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,94.51,0,0,Canceled,2019-03-04 -Resort Hotel,0,1,2016,February,12,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,78.0,0,Transient,35.44,1,0,Check-Out,2019-03-04 -City Hotel,1,15,2017,February,10,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,84.87,0,0,Canceled,2020-02-01 -Resort Hotel,0,15,2016,December,51,28,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,161.95,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,March,23,9,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient-Party,64.46,0,0,Check-Out,2019-02-01 -Resort Hotel,0,28,2016,March,11,31,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,1,No Deposit,90.0,179.0,0,Transient,94.69,0,1,Check-Out,2019-03-04 -Resort Hotel,0,102,2016,August,26,21,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,33.94,0,0,Check-Out,2019-07-04 -Resort Hotel,0,67,2016,June,21,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,13.0,73.0,0,Transient-Party,77.81,1,0,Check-Out,2019-07-04 -City Hotel,1,2,2017,February,10,23,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,197.7,1,0,Canceled,2020-03-03 -City Hotel,0,38,2016,January,50,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,77.0,179.0,0,Transient,90.95,0,0,Check-Out,2019-01-03 -City Hotel,1,407,2017,February,11,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.66,0,0,Canceled,2019-10-04 -Resort Hotel,0,93,2015,December,51,10,2,4,1,0.0,0,BB,POL,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,98.46,0,3,Check-Out,2018-08-03 -City Hotel,1,98,2017,March,10,10,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.97,0,2,Canceled,2020-01-04 -City Hotel,1,52,2017,February,10,6,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,234.0,179.0,0,Transient,59.52,0,1,Canceled,2020-03-03 -City Hotel,1,73,2017,July,31,30,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,162.66,0,1,Canceled,2020-04-02 -Resort Hotel,1,0,2016,April,15,24,0,1,3,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,C,I,0,No Deposit,9.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2019-02-01 -City Hotel,1,331,2015,July,39,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.8,0,0,Canceled,2017-10-03 -City Hotel,0,303,2017,June,21,13,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,136.99,0,0,Check-Out,2020-03-03 -City Hotel,0,142,2016,December,50,4,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,30.58,0,3,Check-Out,2019-10-04 -City Hotel,0,97,2016,March,27,6,1,2,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.06,0,2,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,June,43,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,17.0,45.0,0,Transient,71.93,1,0,Check-Out,2019-06-03 -City Hotel,0,18,2016,October,44,25,1,0,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Group,110.76,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,October,48,2,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,252.0,179.0,0,Transient,40.3,1,0,Check-Out,2018-08-03 -City Hotel,0,22,2015,September,37,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,78.44,0,0,Check-Out,2018-08-03 -Resort Hotel,0,37,2016,December,19,19,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,262.0,179.0,0,Transient-Party,71.18,1,0,Check-Out,2020-05-03 -Resort Hotel,0,160,2016,July,31,9,2,4,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,126.29,0,0,Check-Out,2019-09-03 -Resort Hotel,0,220,2017,August,38,22,2,5,2,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,240.0,179.0,0,Transient,225.49,1,3,Check-Out,2020-05-03 -City Hotel,0,3,2016,May,22,2,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,152.13,0,0,Check-Out,2020-06-02 -City Hotel,1,290,2017,June,23,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,95.67,0,1,Canceled,2020-06-02 -City Hotel,1,197,2016,August,44,6,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,80.01,0,0,Canceled,2018-08-03 -City Hotel,1,248,2017,June,23,21,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.47,0,1,Canceled,2020-04-02 -Resort Hotel,0,50,2015,October,47,20,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,C,D,0,No Deposit,328.0,179.0,0,Transient,60.89,1,0,Check-Out,2019-01-03 -Resort Hotel,0,148,2016,June,27,7,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,11.0,179.0,0,Transient,117.28,0,0,Check-Out,2019-02-01 -City Hotel,0,7,2016,March,17,29,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient,76.19,0,0,Check-Out,2019-02-01 -Resort Hotel,0,17,2017,July,34,30,0,1,2,1.0,0,BB,USA,Direct,Direct,0,0,0,C,C,2,No Deposit,248.0,179.0,0,Transient,128.16,0,1,Check-Out,2020-06-02 -City Hotel,1,100,2017,May,22,6,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.39,0,0,Canceled,2020-03-03 -City Hotel,0,2,2016,September,44,9,1,0,1,0.0,0,SC,USA,Aviation,GDS,0,0,0,A,A,0,No Deposit,202.0,179.0,0,Transient,102.49,0,0,Check-Out,2019-08-04 -Resort Hotel,0,307,2017,June,29,10,3,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,E,1,No Deposit,176.0,179.0,0,Transient,150.86,0,2,Check-Out,2020-03-03 -City Hotel,1,97,2016,May,22,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,95.62,0,0,Canceled,2018-01-31 -City Hotel,1,9,2016,August,27,22,1,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,A,D,1,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Canceled,2019-06-03 -Resort Hotel,0,164,2017,July,31,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,152.79,1,1,Check-Out,2020-07-03 -City Hotel,0,40,2016,October,51,30,0,4,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient-Party,122.78,0,1,Check-Out,2019-11-03 -City Hotel,0,24,2016,March,15,31,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,79.0,0,Transient,87.96,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2015,December,50,10,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,82.38,0,0,Check-Out,2018-11-02 -City Hotel,0,25,2016,March,30,6,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,208.3,1,2,Check-Out,2019-02-01 -Resort Hotel,0,34,2016,February,9,9,2,5,1,0.0,0,Undefined,IRL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,46.3,0,0,Check-Out,2018-12-03 -City Hotel,1,14,2017,August,32,5,0,4,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,213.55,0,3,Canceled,2019-11-03 -City Hotel,0,2,2016,August,16,30,2,0,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,106.1,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,June,25,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,14.0,70.0,0,Transient,100.59,0,0,Check-Out,2019-04-03 -City Hotel,1,24,2016,June,27,26,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,128.37,0,0,Canceled,2019-02-01 -City Hotel,1,189,2016,May,21,18,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.16,0,0,Canceled,2019-03-04 -City Hotel,1,21,2016,March,44,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.57,0,2,Canceled,2019-03-04 -City Hotel,0,23,2017,May,21,15,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,114.97,0,1,Check-Out,2020-04-02 -City Hotel,1,164,2017,August,40,11,2,4,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,145.0,179.0,0,Transient,232.1,0,0,Canceled,2020-06-02 -City Hotel,0,10,2016,July,32,29,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.16,0,0,Check-Out,2019-05-04 -City Hotel,0,12,2016,June,25,15,1,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,168.85,0,0,Check-Out,2019-05-04 -City Hotel,0,48,2017,August,17,28,2,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.25,1,0,Check-Out,2020-06-02 -City Hotel,0,40,2016,October,44,26,2,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,105.24,0,2,Check-Out,2019-12-04 -Resort Hotel,0,29,2016,May,23,24,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,136.26,0,2,Check-Out,2019-02-01 -City Hotel,1,141,2017,August,37,21,1,2,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,206.23,0,0,Canceled,2020-06-02 -Resort Hotel,0,16,2015,December,52,27,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,D,0,No Deposit,308.0,179.0,0,Transient,61.71,0,0,Check-Out,2019-01-03 -City Hotel,0,188,2016,October,46,15,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,64.68,0,0,Check-Out,2019-08-04 -Resort Hotel,0,7,2016,December,12,10,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,15.0,331.0,0,Transient,34.16,0,0,Check-Out,2020-01-04 -City Hotel,0,48,2016,November,53,30,1,3,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,73.42,0,0,Check-Out,2019-12-04 -City Hotel,1,14,2016,December,51,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.39,0,2,Canceled,2019-09-03 -City Hotel,1,2,2015,September,43,16,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,79.97,0,0,Canceled,2019-08-04 -Resort Hotel,1,90,2017,April,17,2,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,65.62,0,1,Canceled,2020-02-01 -Resort Hotel,1,13,2016,December,53,2,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,64.45,0,0,Canceled,2018-12-03 -City Hotel,1,147,2017,July,26,8,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,138.16,0,0,Canceled,2020-06-02 -City Hotel,0,24,2017,August,4,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Contract,119.65,0,1,Check-Out,2020-06-02 -City Hotel,0,46,2015,October,53,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,59.18,0,2,Check-Out,2018-08-03 -Resort Hotel,1,152,2016,March,18,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,59.33,0,0,Canceled,2019-02-01 -Resort Hotel,1,47,2017,May,20,27,0,1,2,2.0,0,BB,,Online TA,GDS,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,162.27,0,0,Canceled,2020-03-03 -Resort Hotel,1,12,2017,August,38,31,2,5,3,1.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,196.44,0,0,Canceled,2019-06-03 -City Hotel,0,99,2016,July,25,15,2,2,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,199.43,0,3,Check-Out,2019-05-04 -City Hotel,0,0,2017,January,3,16,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,90.0,0,Transient,40.1,0,0,Check-Out,2019-10-04 -City Hotel,0,12,2017,April,18,13,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,120.3,0,0,Check-Out,2020-02-01 -City Hotel,1,127,2017,May,18,7,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,70.32,0,0,Canceled,2020-02-01 -Resort Hotel,0,45,2016,April,15,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,167.0,179.0,0,Transient,99.08,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,March,17,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,122.44,1,0,Check-Out,2019-01-03 -City Hotel,1,442,2015,October,45,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.94,0,0,Canceled,2018-08-03 -Resort Hotel,1,0,2015,January,43,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,110.46,0,0,No-Show,2019-06-03 -City Hotel,0,244,2017,June,25,20,0,3,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,165.0,179.0,0,Transient-Party,135.2,0,0,Check-Out,2020-03-03 -City Hotel,0,147,2017,May,18,29,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,266.0,0,Transient-Party,98.28,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2016,July,36,6,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,153.07,1,2,Check-Out,2019-09-03 -Resort Hotel,0,1,2015,October,43,18,0,4,2,1.0,0,BB,CN,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,37.18,0,0,Check-Out,2018-09-02 -Resort Hotel,1,304,2017,May,24,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,2,No Deposit,243.0,179.0,0,Transient-Party,72.34,0,2,Canceled,2019-02-01 -Resort Hotel,0,260,2016,May,22,10,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,Refundable,44.0,224.0,0,Transient,62.04,0,0,Check-Out,2019-03-04 -City Hotel,1,31,2016,February,9,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,125.0,179.0,20,Transient,37.89,0,0,Canceled,2018-11-02 -City Hotel,0,51,2016,June,25,15,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,117.27,0,0,Check-Out,2019-06-03 -City Hotel,0,47,2017,February,13,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,35.0,179.0,0,Transient-Party,61.38,0,0,Check-Out,2020-03-03 -Resort Hotel,0,165,2016,March,10,18,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,331.0,223.0,75,Transient-Party,82.77,0,0,Check-Out,2019-02-01 -City Hotel,1,107,2015,September,53,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,87.28,0,0,Canceled,2017-11-02 -City Hotel,0,1,2016,February,11,13,1,2,1,0.0,0,BB,,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,70.83,0,2,Check-Out,2019-01-03 -City Hotel,0,53,2017,June,21,30,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.48,0,2,Check-Out,2019-11-03 -City Hotel,1,253,2015,July,20,5,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,79.33,0,0,Canceled,2017-12-03 -Resort Hotel,0,122,2015,July,31,22,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,113.97,0,2,Check-Out,2018-05-03 -City Hotel,1,20,2016,February,8,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,80.94,0,0,Canceled,2018-10-03 -Resort Hotel,1,0,2015,August,37,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,29.46,0,1,No-Show,2018-07-03 -City Hotel,0,50,2016,December,53,25,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,73.01,0,2,Check-Out,2019-11-03 -City Hotel,1,178,2015,September,37,13,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,42,Transient,69.38,0,0,Canceled,2019-08-04 -City Hotel,0,51,2015,November,41,24,1,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,137.43,0,0,Check-Out,2018-08-03 -Resort Hotel,0,5,2015,July,29,8,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,309.0,179.0,0,Transient-Party,75.92,0,0,Check-Out,2018-06-02 -City Hotel,0,345,2016,October,42,10,2,5,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,80.62,0,2,Check-Out,2019-08-04 -City Hotel,0,204,2017,April,17,10,1,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient,155.9,0,0,Check-Out,2020-02-01 -City Hotel,1,94,2015,August,39,18,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,124.12,0,3,Check-Out,2018-08-03 -Resort Hotel,0,123,2017,April,17,23,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,153.7,0,2,Check-Out,2020-02-01 -Resort Hotel,0,0,2015,October,44,15,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,17.0,179.0,0,Transient,100.14,0,0,Check-Out,2018-06-02 -City Hotel,0,168,2017,July,31,20,2,5,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.28,0,0,Canceled,2020-05-03 -City Hotel,1,146,2016,January,3,2,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,7.0,179.0,0,Transient,135.45,0,0,Canceled,2019-09-03 -City Hotel,0,369,2017,July,37,21,1,4,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.2,0,0,Check-Out,2020-06-02 -City Hotel,1,1,2016,January,9,7,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,76.42,0,0,No-Show,2018-11-02 -City Hotel,0,51,2015,October,44,9,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.62,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,April,15,31,0,3,3,1.0,0,BB,ESP,Online TA,Direct,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-03-04 -City Hotel,0,12,2017,April,11,27,1,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.11,0,0,Canceled,2020-03-03 -City Hotel,1,141,2016,June,26,21,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,19,Transient,109.46,0,0,Canceled,2019-03-04 -City Hotel,1,17,2016,March,14,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,36.0,179.0,63,Transient,65.7,0,0,Canceled,2018-11-02 -Resort Hotel,1,158,2016,March,16,31,1,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,51.51,0,0,Canceled,2019-01-03 -City Hotel,0,4,2015,August,46,28,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,1.82,0,1,Check-Out,2018-05-03 -Resort Hotel,0,27,2015,August,37,29,0,2,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient-Party,72.48,0,0,Check-Out,2018-07-03 -City Hotel,1,352,2016,July,33,13,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.78,0,0,Canceled,2019-05-04 -Resort Hotel,0,13,2015,December,53,11,0,5,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,54.18,0,0,Check-Out,2018-11-02 -Resort Hotel,0,5,2016,October,42,5,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,49.46,0,2,Check-Out,2019-06-03 -Resort Hotel,1,276,2017,May,22,6,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,241.0,179.0,0,Transient,172.25,0,0,Canceled,2020-02-01 -City Hotel,0,88,2016,April,15,21,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,147.18,0,2,Check-Out,2019-03-04 -City Hotel,0,56,2016,June,29,5,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,119.45,0,0,Check-Out,2019-05-04 -City Hotel,0,49,2016,July,3,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.22,0,1,Check-Out,2019-06-03 -Resort Hotel,0,38,2017,January,9,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,84.0,0,Transient,77.9,1,1,Check-Out,2020-01-04 -Resort Hotel,0,26,2016,April,16,20,0,1,1,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient-Party,64.04,0,0,Check-Out,2019-04-03 -Resort Hotel,1,21,2016,January,10,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,62.69,0,0,Canceled,2019-12-04 -City Hotel,0,32,2017,August,35,4,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.39,0,2,Check-Out,2019-12-04 -City Hotel,0,20,2016,November,53,23,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,93.0,179.0,0,Contract,112.33,0,1,Check-Out,2019-05-04 -City Hotel,0,13,2017,April,43,27,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,100.0,179.0,0,Transient,66.71,1,0,Check-Out,2019-12-04 -Resort Hotel,0,11,2016,July,36,25,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,130.95,0,1,Check-Out,2019-06-03 -City Hotel,0,10,2016,April,16,30,2,4,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,231.0,0,Transient,96.95,0,0,Check-Out,2019-09-03 -Resort Hotel,0,43,2016,March,9,9,1,2,2,0.0,0,FB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,2,No Deposit,93.0,179.0,0,Transient-Party,65.08,0,0,Check-Out,2019-04-03 -City Hotel,0,1,2015,October,44,21,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Contract,35.57,0,0,Check-Out,2018-08-03 -Resort Hotel,0,110,2016,April,18,31,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Refundable,89.0,179.0,0,Transient,68.4,0,0,Check-Out,2019-03-04 -City Hotel,1,103,2015,August,39,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,99.61,0,0,Canceled,2018-08-03 -City Hotel,0,42,2016,July,25,21,0,1,2,0.0,0,BB,CHE,Online TA,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,215.03,0,1,Check-Out,2019-06-03 -City Hotel,0,240,2015,October,45,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,36.74,0,0,Check-Out,2018-09-02 -Resort Hotel,0,88,2016,July,32,6,4,7,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient-Party,76.23,0,0,Check-Out,2019-04-03 -Resort Hotel,0,95,2016,June,27,27,2,10,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,1,No Deposit,378.0,179.0,0,Transient,68.83,0,0,Check-Out,2019-04-03 -City Hotel,0,267,2017,May,21,31,1,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.89,0,1,Check-Out,2020-02-01 -Resort Hotel,1,1,2017,February,10,13,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,173.0,179.0,0,Transient,26.4,0,0,Canceled,2019-10-04 -Resort Hotel,1,16,2016,April,18,31,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,H,1,Refundable,13.0,222.0,0,Transient-Party,68.06,0,0,Canceled,2019-01-03 -Resort Hotel,0,91,2016,August,37,30,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,78.0,179.0,0,Transient-Party,173.66,0,1,Check-Out,2019-03-04 -Resort Hotel,0,166,2016,March,18,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,65.05,1,0,Check-Out,2019-02-01 -Resort Hotel,1,1,2017,February,4,28,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,H,0,No Deposit,16.0,81.0,0,Transient,113.48,0,0,No-Show,2020-03-03 -City Hotel,0,14,2016,October,44,10,1,0,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,70.03,1,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,March,22,30,0,1,1,0.0,0,BB,GBR,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,74.4,0,0,Check-Out,2019-03-04 -City Hotel,0,44,2016,June,26,27,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.88,0,3,Check-Out,2019-04-03 -Resort Hotel,0,0,2017,February,9,15,1,4,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,223.0,0,Transient,42.73,0,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2015,August,37,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,32.42,0,0,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,January,3,25,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,I,0,No Deposit,239.0,179.0,0,Transient,1.25,0,1,Check-Out,2018-10-03 -Resort Hotel,0,216,2016,June,26,30,3,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,113.99,0,0,Check-Out,2019-06-03 -City Hotel,0,30,2015,November,35,20,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,0,Transient-Party,58.62,0,0,Check-Out,2018-06-02 -Resort Hotel,0,29,2017,April,15,9,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,169.0,179.0,75,Transient,85.96,0,0,Check-Out,2019-09-03 -Resort Hotel,1,107,2016,April,16,6,1,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,317.0,179.0,0,Transient,47.11,0,0,Canceled,2018-12-03 -Resort Hotel,0,16,2015,December,52,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,35.71,0,1,Check-Out,2018-12-03 -Resort Hotel,0,11,2016,February,11,20,0,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,2,No Deposit,250.0,179.0,0,Transient-Party,43.51,1,1,Check-Out,2019-01-03 -City Hotel,0,4,2015,October,46,27,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,D,D,0,No Deposit,12.0,224.0,0,Transient-Party,60.34,0,0,Check-Out,2018-09-02 -Resort Hotel,0,90,2016,April,16,20,2,7,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,251.0,179.0,0,Transient,189.25,0,0,Check-Out,2019-05-04 -City Hotel,1,17,2017,February,10,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.53,0,0,Canceled,2020-02-01 -City Hotel,1,422,2017,July,34,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,128.44,0,0,Canceled,2020-06-02 -City Hotel,0,43,2017,May,23,27,2,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,91.94,0,3,Check-Out,2019-03-04 -City Hotel,0,0,2016,January,4,24,0,3,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,114.24,1,1,Check-Out,2018-11-02 -Resort Hotel,0,13,2017,December,4,5,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,150.3,0,2,Check-Out,2019-10-04 -City Hotel,1,81,2016,August,37,14,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,106.31,0,2,Canceled,2018-12-03 -Resort Hotel,0,59,2016,March,12,25,2,4,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,77.86,0,1,Check-Out,2019-03-04 -Resort Hotel,0,254,2017,May,20,16,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,14.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-05-03 -Resort Hotel,0,7,2015,October,37,25,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Group,46.19,0,0,Check-Out,2018-06-02 -City Hotel,0,9,2015,July,32,27,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.59,0,2,Check-Out,2018-06-02 -City Hotel,1,199,2017,November,36,16,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,1.77,0,0,Canceled,2019-09-03 -City Hotel,0,3,2017,July,31,13,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,217.88,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,August,40,18,0,4,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,222.25,0,2,Check-Out,2018-06-02 -City Hotel,0,101,2017,May,17,27,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,148.24,0,2,Check-Out,2020-04-02 -Resort Hotel,0,3,2017,March,9,21,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,161.0,179.0,0,Transient,60.86,0,0,Check-Out,2020-03-03 -City Hotel,0,381,2016,September,43,9,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.55,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,December,51,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,H,I,1,No Deposit,240.0,179.0,0,Transient,0.0,1,1,Check-Out,2018-11-02 -City Hotel,0,22,2016,September,38,5,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,203.82,0,1,Check-Out,2019-09-03 -Resort Hotel,0,296,2017,July,34,29,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,61.4,0,2,Check-Out,2020-07-03 -Resort Hotel,0,1,2017,March,10,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,12.0,86.0,0,Transient,41.7,1,0,Check-Out,2020-03-03 -City Hotel,0,12,2016,April,22,8,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,25.0,179.0,0,Contract,91.11,0,0,Check-Out,2019-05-04 -City Hotel,1,111,2015,October,44,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.1,0,0,Canceled,2018-08-03 -City Hotel,0,9,2016,December,51,5,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.18,0,2,Check-Out,2019-08-04 -City Hotel,0,6,2016,October,43,21,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,72.75,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2015,September,44,22,2,1,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.18,0,0,Check-Out,2018-09-02 -Resort Hotel,1,1,2015,January,3,21,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,46.76,1,0,Canceled,2018-10-03 -City Hotel,0,102,2015,October,43,20,2,0,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,C,1,No Deposit,15.0,179.0,0,Transient,81.97,0,0,Check-Out,2018-09-02 -Resort Hotel,1,11,2016,August,37,10,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,122.75,0,1,No-Show,2019-08-04 -City Hotel,1,94,2016,October,45,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,191.42,0,1,No-Show,2019-06-03 -Resort Hotel,0,257,2017,June,26,4,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,F,2,No Deposit,243.0,179.0,0,Transient,245.16,1,1,Check-Out,2020-06-02 -City Hotel,0,316,2016,September,23,9,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,87.32,0,1,Check-Out,2019-05-04 -City Hotel,0,21,2017,May,23,19,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,117.1,0,0,Check-Out,2020-04-02 -City Hotel,1,0,2015,August,40,24,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,60.12,0,0,No-Show,2018-06-02 -City Hotel,1,25,2017,June,26,16,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,153.64,0,3,Canceled,2020-03-03 -Resort Hotel,0,94,2017,April,19,24,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,187.71,1,1,Check-Out,2020-04-02 -Resort Hotel,0,150,2016,June,27,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,94.83,0,0,Check-Out,2019-05-04 -City Hotel,0,156,2016,July,38,10,0,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,113.83,0,1,Check-Out,2019-05-04 -City Hotel,1,0,2016,January,4,5,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.39,0,0,No-Show,2018-10-03 -Resort Hotel,0,15,2015,September,34,12,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,40.0,179.0,0,Contract,62.98,0,1,Check-Out,2018-08-03 -City Hotel,0,0,2016,March,16,6,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.29,0,0,Check-Out,2019-06-03 -City Hotel,0,16,2016,December,44,5,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,77.63,0,0,Check-Out,2019-11-03 -Resort Hotel,1,334,2017,April,21,28,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.19,0,2,Canceled,2020-01-04 -Resort Hotel,0,53,2016,August,37,26,2,2,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,156.54,0,2,Check-Out,2019-06-03 -City Hotel,1,252,2017,May,26,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,185.2,0,2,Canceled,2020-03-03 -Resort Hotel,1,112,2017,July,28,30,0,1,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,13.0,179.0,0,Transient,174.94,0,0,Canceled,2020-06-02 -City Hotel,1,375,2015,September,35,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,99.38,0,0,Canceled,2017-11-02 -City Hotel,1,295,2015,August,36,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,109.42,0,0,Canceled,2017-09-02 -City Hotel,0,25,2017,April,17,21,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,96.45,0,0,Check-Out,2020-03-03 -Resort Hotel,0,157,2017,April,16,15,2,7,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,40.03,0,2,Check-Out,2019-11-03 -City Hotel,1,73,2016,March,16,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.97,0,0,Canceled,2018-11-02 -City Hotel,0,11,2016,October,44,6,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,70.14,0,3,Check-Out,2019-12-04 -City Hotel,0,255,2015,October,43,2,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,41.18,0,0,Check-Out,2018-06-02 -Resort Hotel,0,11,2016,September,38,13,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,166.97,1,0,Check-Out,2019-09-03 -City Hotel,0,10,2016,December,45,11,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.31,0,1,Check-Out,2019-09-03 -Resort Hotel,0,13,2016,March,18,14,0,3,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,D,D,0,No Deposit,11.0,331.0,0,Transient-Party,25.37,0,0,Check-Out,2019-06-03 -Resort Hotel,0,13,2016,July,51,23,1,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient-Party,174.43,0,0,Check-Out,2019-08-04 -Resort Hotel,0,280,2016,July,53,5,2,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,64.75,0,0,Check-Out,2018-06-02 -Resort Hotel,0,42,2015,December,51,5,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,D,A,0,No Deposit,89.0,179.0,0,Transient,78.67,0,0,Check-Out,2018-08-03 -Resort Hotel,1,102,2016,June,26,12,1,6,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,208.84,0,0,Canceled,2019-02-01 -City Hotel,1,42,2016,November,51,28,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,82.97,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2017,March,30,27,0,1,1,1.0,0,HB,PRT,Direct,Direct,1,0,0,A,I,1,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -City Hotel,0,15,2015,September,43,28,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.54,0,0,Check-Out,2018-08-03 -City Hotel,1,59,2015,October,45,25,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,61,Transient,80.61,0,0,Canceled,2018-08-03 -Resort Hotel,0,258,2015,October,45,21,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient-Party,118.44,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,February,10,18,2,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,1.0,179.0,41,Transient,43.24,0,1,Check-Out,2020-06-02 -City Hotel,0,189,2015,August,34,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Transient,1.11,0,0,Check-Out,2020-06-02 -City Hotel,1,8,2015,August,37,11,2,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient-Party,98.99,0,0,Canceled,2019-04-03 -Resort Hotel,0,106,2016,April,16,11,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,78.98,0,1,Check-Out,2020-03-03 -Resort Hotel,0,150,2015,August,34,27,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,71.44,0,0,Check-Out,2018-06-02 -Resort Hotel,0,3,2017,May,23,9,1,0,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,348.0,179.0,0,Transient-Party,38.3,0,0,Check-Out,2020-03-03 -City Hotel,1,202,2017,June,28,20,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,F,0,Non Refund,5.0,179.0,0,Transient,88.94,0,0,Canceled,2019-12-04 -Resort Hotel,0,153,2017,March,9,31,0,3,1,0.0,0,HB,PRT,Groups,Corporate,1,0,0,A,A,2,No Deposit,10.0,223.0,0,Transient-Party,39.54,0,0,Check-Out,2020-03-03 -City Hotel,1,12,2015,September,32,2,0,4,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,116.72,0,2,Canceled,2019-12-04 -Resort Hotel,0,35,2016,June,19,15,2,5,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,205.81,0,0,Check-Out,2019-04-03 -City Hotel,0,148,2017,July,33,13,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.67,0,0,Check-Out,2020-06-02 -City Hotel,0,13,2016,August,37,5,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.93,0,3,Check-Out,2019-08-04 -City Hotel,0,241,2017,February,10,29,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.48,0,1,Check-Out,2019-12-04 -Resort Hotel,0,0,2017,February,12,28,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,68.9,0,0,Check-Out,2020-02-01 -Resort Hotel,0,94,2017,June,26,5,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient-Party,97.96,1,1,Check-Out,2019-06-03 -City Hotel,1,96,2016,June,15,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,40,Transient,65.33,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,January,3,29,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,13.0,93.0,0,Transient,37.82,1,0,Check-Out,2019-09-03 -Resort Hotel,0,249,2016,June,25,10,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Contract,63.18,0,1,Check-Out,2019-06-03 -Resort Hotel,0,1,2017,May,22,2,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,193.03,0,2,Check-Out,2020-06-02 -Resort Hotel,0,84,2016,February,10,15,1,1,1,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,37.5,0,0,Check-Out,2019-10-04 -City Hotel,1,122,2016,August,42,12,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.04,0,1,No-Show,2019-09-03 -City Hotel,1,108,2016,August,37,25,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,208.8,0,0,Canceled,2019-08-04 -Resort Hotel,0,2,2015,December,45,31,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,98.06,0,0,Check-Out,2018-06-02 -Resort Hotel,0,206,2016,October,43,15,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,3,No Deposit,246.0,179.0,0,Transient,32.37,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,March,43,14,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient,26.72,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,August,36,25,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,249.0,179.0,0,Transient,232.78,0,3,Check-Out,2020-06-02 -City Hotel,0,53,2016,September,43,5,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,132.91,0,0,Check-Out,2019-05-04 -City Hotel,0,57,2016,June,22,13,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,127.34,0,0,Check-Out,2019-08-04 -Resort Hotel,0,150,2016,July,30,5,2,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,191.64,0,2,Check-Out,2019-04-03 -Resort Hotel,0,100,2017,May,18,19,3,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient-Party,201.21,0,1,Check-Out,2020-04-02 -City Hotel,1,57,2016,March,14,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,82.23,0,0,Canceled,2018-12-03 -City Hotel,0,2,2017,May,27,4,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,58.31,1,0,Check-Out,2020-06-02 -Resort Hotel,0,45,2017,May,24,16,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,0,No Deposit,378.0,331.0,0,Transient-Party,61.47,0,0,Check-Out,2020-03-03 -Resort Hotel,1,48,2016,January,4,20,2,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,87.37,0,0,Canceled,2019-01-03 -City Hotel,1,1,2016,December,51,28,0,2,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,85.06,0,0,Canceled,2019-11-03 -City Hotel,0,12,2016,June,27,13,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,119.95,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,April,16,10,0,4,2,0.0,0,BB,ESP,Complementary,Direct,1,0,0,D,F,1,No Deposit,13.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-03-04 -Resort Hotel,1,41,2016,December,50,24,1,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,73.37,0,0,Canceled,2019-10-04 -Resort Hotel,0,31,2017,May,20,4,0,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,121.37,0,0,Check-Out,2020-04-02 -Resort Hotel,0,224,2016,September,42,30,2,3,2,0.0,0,HB,PRT,Direct,Direct,1,0,1,A,A,1,No Deposit,15.0,179.0,0,Transient,36.37,1,3,Check-Out,2018-11-02 -City Hotel,0,0,2017,February,2,5,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,D,0,No Deposit,20.0,60.0,0,Transient,63.07,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,December,50,30,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,35.61,1,1,Check-Out,2019-09-03 -City Hotel,1,161,2016,August,35,6,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.8,0,0,Canceled,2017-12-03 -City Hotel,0,2,2016,October,43,10,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,2,No Deposit,207.0,331.0,0,Transient,78.72,0,0,Check-Out,2019-08-04 -City Hotel,0,285,2017,August,27,18,1,0,1,0.0,0,BB,,Aviation,Corporate,0,0,0,E,A,0,No Deposit,12.0,202.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,37,2017,May,8,22,2,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,169.68,0,0,Check-Out,2020-01-04 -City Hotel,0,0,2017,July,33,20,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,101.53,0,1,Check-Out,2020-06-02 -City Hotel,1,61,2016,August,34,5,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.69,0,0,Canceled,2019-05-04 -City Hotel,1,80,2016,February,11,18,0,1,2,0.0,0,Undefined,PRT,Online TA,Corporate,1,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,24.11,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2016,January,3,17,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,D,0,No Deposit,14.0,95.0,0,Transient,72.51,0,0,Check-Out,2019-02-01 -City Hotel,0,25,2015,November,35,5,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,94.57,0,2,Check-Out,2018-08-03 -Resort Hotel,0,36,2016,March,10,28,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,100.0,74.0,0,Transient,38.05,0,0,Check-Out,2019-01-03 -City Hotel,1,428,2015,December,47,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.12,0,0,Canceled,2017-11-02 -City Hotel,1,0,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,Non Refund,13.0,87.0,0,Transient,36.87,0,0,Canceled,2019-10-04 -Resort Hotel,0,18,2015,December,51,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,D,1,No Deposit,245.0,179.0,0,Transient,33.3,0,0,Check-Out,2019-09-03 -Resort Hotel,1,198,2016,March,17,31,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,3.0,222.0,0,Transient-Party,104.19,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,February,8,12,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,76.0,0,Transient,79.56,0,0,Check-Out,2020-06-02 -Resort Hotel,0,99,2016,December,51,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,1,No Deposit,378.0,179.0,0,Transient-Party,62.28,0,0,Check-Out,2019-12-04 -City Hotel,0,44,2017,April,16,9,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,124.71,1,3,Check-Out,2020-05-03 -Resort Hotel,0,51,2017,March,17,29,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,167.97,1,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,November,37,18,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,280.0,0,Transient,2.43,0,0,Check-Out,2019-07-04 -City Hotel,0,113,2017,March,9,20,2,4,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,141.42,0,0,Check-Out,2020-03-03 -City Hotel,0,38,2016,May,44,6,1,2,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,134.13,0,1,Check-Out,2019-06-03 -City Hotel,1,0,2015,July,9,21,0,2,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,126.52,0,1,Canceled,2019-01-03 -City Hotel,0,17,2017,February,8,15,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,3,No Deposit,13.0,331.0,0,Transient-Party,98.18,0,0,Check-Out,2020-05-03 -City Hotel,1,411,2016,September,45,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,113.58,0,0,Canceled,2018-08-03 -City Hotel,0,56,2017,April,19,8,0,4,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,116.03,1,2,Check-Out,2020-03-03 -City Hotel,1,98,2017,August,32,16,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,218.79,0,2,Canceled,2020-06-02 -Resort Hotel,0,28,2016,October,41,24,1,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,89.16,0,0,Check-Out,2018-09-02 -City Hotel,0,42,2017,July,33,2,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,129.78,0,2,Check-Out,2020-06-02 -Resort Hotel,1,91,2015,July,29,9,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,95.36,0,0,Check-Out,2018-06-02 -City Hotel,0,41,2016,December,51,2,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,59.38,0,1,Check-Out,2018-12-03 -Resort Hotel,0,168,2017,August,36,9,2,10,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,241.0,179.0,0,Transient,216.02,0,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2015,August,35,17,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,246.0,179.0,0,Contract,29.95,0,0,Check-Out,2018-09-02 -Resort Hotel,0,149,2016,March,10,31,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,3,Refundable,13.0,223.0,0,Transient,29.09,0,0,Check-Out,2019-11-03 -City Hotel,0,273,2016,October,41,8,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,72.41,0,0,Check-Out,2018-08-03 -Resort Hotel,1,142,2017,June,30,27,0,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,190.88,0,0,Canceled,2020-04-02 -City Hotel,0,59,2017,March,9,6,2,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,75.54,0,2,Check-Out,2020-03-03 -Resort Hotel,0,48,2016,October,43,12,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,148.31,1,1,Check-Out,2019-09-03 -City Hotel,1,14,2017,April,20,13,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.44,0,0,Canceled,2020-06-02 -Resort Hotel,0,44,2016,March,20,13,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,32.0,179.0,0,Transient,60.37,0,0,Check-Out,2019-03-04 -City Hotel,1,15,2016,January,2,4,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,69.26,0,2,No-Show,2018-12-03 -City Hotel,0,21,2016,November,44,30,2,4,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Contract,89.11,0,0,Check-Out,2019-09-03 -City Hotel,0,25,2015,December,53,31,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,218.3,0,2,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,May,27,27,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,180.36,1,1,Check-Out,2020-07-03 -City Hotel,0,144,2017,July,37,27,3,3,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,88.59,0,0,Check-Out,2020-06-02 -City Hotel,0,205,2016,November,43,23,0,2,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,79.53,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2017,January,4,29,0,2,2,0.0,0,BB,,Corporate,Corporate,0,1,0,D,D,0,No Deposit,15.0,85.0,0,Transient,41.8,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2015,September,42,5,0,1,1,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,120.25,0,0,Check-Out,2018-08-03 -City Hotel,0,145,2016,January,10,15,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Group,78.67,0,0,Check-Out,2019-02-01 -City Hotel,0,139,2017,June,30,9,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,136.03,0,1,Check-Out,2020-07-03 -City Hotel,0,43,2016,August,35,9,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,109.76,0,2,Check-Out,2019-06-03 -City Hotel,1,406,2015,July,36,23,0,2,2,0.0,0,BB,PRT,Groups,Undefined,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,100.71,0,0,Canceled,2018-05-03 -Resort Hotel,1,389,2017,May,28,6,1,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,286.0,179.0,0,Transient,186.2,0,0,Canceled,2020-03-03 -City Hotel,1,39,2015,July,31,5,0,2,1,0.0,0,BB,PRT,Online TA,Undefined,0,1,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,69.01,0,1,Canceled,2018-07-03 -City Hotel,1,25,2016,March,11,29,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,16.22,0,2,Canceled,2019-02-01 -City Hotel,0,25,2017,August,33,17,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,82.33,0,0,Check-Out,2019-11-03 -City Hotel,0,40,2016,April,22,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,324.0,84.0,0,Transient-Party,59.17,0,1,Check-Out,2019-08-04 -City Hotel,1,39,2016,July,31,28,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,80.49,0,0,Canceled,2019-05-04 -City Hotel,0,96,2016,May,23,27,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,40,Transient-Party,73.76,0,2,Check-Out,2019-03-04 -City Hotel,0,15,2017,June,3,10,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,88.42,0,1,Check-Out,2020-06-02 -City Hotel,0,96,2016,December,51,26,0,1,3,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,84.15,0,1,Check-Out,2019-06-03 -City Hotel,0,13,2015,October,45,22,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.89,0,2,Check-Out,2018-07-03 -City Hotel,1,302,2015,September,44,14,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,69.68,0,0,Canceled,2018-07-03 -Resort Hotel,0,7,2015,August,24,15,0,2,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,207.37,1,0,Check-Out,2019-07-04 -City Hotel,0,14,2016,October,45,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,157.53,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,August,36,16,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,196.06,1,1,Check-Out,2019-08-04 -City Hotel,0,83,2015,September,37,5,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,238.0,179.0,0,Transient,182.93,1,0,Check-Out,2018-06-02 -Resort Hotel,0,262,2017,June,25,15,2,4,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,141.36,0,1,Check-Out,2020-02-01 -Resort Hotel,0,14,2016,March,23,9,0,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient,40.35,0,0,Check-Out,2019-03-04 -City Hotel,0,192,2016,October,43,13,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.66,0,2,Check-Out,2019-08-04 -City Hotel,0,17,2017,June,26,28,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,63.26,1,1,Check-Out,2020-04-02 -Resort Hotel,0,52,2015,December,53,27,0,1,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,85.0,179.0,0,Transient-Party,60.77,0,0,Check-Out,2018-08-03 -City Hotel,1,32,2017,April,11,27,1,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,130.95,0,0,Canceled,2020-02-01 -City Hotel,0,108,2016,June,27,15,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,89.21,0,1,Check-Out,2019-03-04 -City Hotel,0,3,2016,November,51,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,D,0,No Deposit,15.0,331.0,0,Transient,88.24,1,0,Check-Out,2019-11-03 -City Hotel,1,16,2016,September,11,28,2,0,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,122.72,0,1,Canceled,2018-12-03 -Resort Hotel,0,274,2017,June,27,5,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,163.3,0,0,Check-Out,2020-04-02 -Resort Hotel,1,300,2016,May,26,23,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,32.0,179.0,0,Transient,61.69,0,0,No-Show,2019-03-04 -City Hotel,1,1,2016,August,36,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient,77.63,0,0,Canceled,2019-06-03 -Resort Hotel,0,27,2017,February,10,19,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,184.13,0,2,Check-Out,2020-02-01 -Resort Hotel,0,2,2016,November,50,2,1,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,0,No Deposit,249.0,179.0,0,Transient,60.96,1,0,Check-Out,2019-01-03 -Resort Hotel,0,47,2017,February,9,13,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,106.04,0,0,Check-Out,2020-02-01 -City Hotel,1,159,2017,November,50,5,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.65,0,0,Canceled,2019-10-04 -Resort Hotel,0,16,2016,February,12,31,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,269.0,179.0,0,Transient-Party,65.96,0,0,Check-Out,2019-02-01 -City Hotel,1,17,2015,December,51,15,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.8,0,0,Canceled,2019-09-03 -Resort Hotel,0,247,2016,September,42,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,12.0,223.0,62,Transient-Party,41.64,0,0,Check-Out,2019-05-04 -City Hotel,1,88,2017,July,31,31,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,7.0,179.0,0,Transient,214.61,0,1,Canceled,2020-06-02 -Resort Hotel,0,1,2016,July,32,23,1,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,250.0,179.0,0,Transient,119.02,0,0,Check-Out,2019-11-03 -City Hotel,0,16,2015,November,49,2,0,1,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,39.0,331.0,0,Transient-Party,58.73,0,0,Check-Out,2018-08-03 -Resort Hotel,0,3,2017,January,9,25,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,1,No Deposit,18.0,179.0,0,Transient,45.6,0,0,Check-Out,2019-11-03 -Resort Hotel,0,196,2016,October,36,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,3,No Deposit,239.0,179.0,65,Transient-Party,127.98,0,1,Check-Out,2019-10-04 -City Hotel,1,304,2015,September,38,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.49,0,0,Canceled,2017-11-02 -City Hotel,1,181,2017,August,26,23,2,1,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,105.2,0,1,Canceled,2020-07-03 -City Hotel,0,84,2016,August,32,7,2,5,1,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.94,0,1,Check-Out,2019-05-04 -Resort Hotel,0,117,2015,August,34,19,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,313.0,179.0,0,Transient-Party,64.6,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,June,9,31,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,145.91,0,1,Check-Out,2019-02-01 -Resort Hotel,0,88,2015,October,42,19,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,93.66,0,0,Check-Out,2018-05-03 -City Hotel,0,39,2015,December,49,24,1,0,2,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,331.0,0,Transient,40.26,0,0,Check-Out,2018-09-02 -Resort Hotel,1,88,2016,May,9,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,74.0,179.0,0,Transient,61.07,0,0,Canceled,2019-03-04 -City Hotel,1,406,2017,June,28,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,84.8,0,0,Canceled,2019-11-03 -Resort Hotel,0,166,2016,September,37,25,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,126.91,0,0,Check-Out,2019-08-04 -City Hotel,1,63,2016,March,15,8,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.49,0,1,Canceled,2019-02-01 -City Hotel,1,280,2015,July,46,15,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,59.29,0,1,Canceled,2017-11-02 -Resort Hotel,0,2,2016,February,10,28,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,83.99,1,3,Check-Out,2019-11-03 -City Hotel,0,44,2016,October,45,13,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,115.08,0,2,Check-Out,2019-12-04 -Resort Hotel,0,8,2017,June,37,31,0,2,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient-Party,167.79,0,0,Check-Out,2020-06-02 -Resort Hotel,0,77,2017,January,5,14,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,59.91,1,1,Check-Out,2019-12-04 -Resort Hotel,0,3,2015,August,34,12,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,40.23,0,0,Check-Out,2018-05-03 -City Hotel,1,208,2017,May,24,5,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,65.33,0,0,Canceled,2019-12-04 -City Hotel,1,2,2017,January,49,8,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.76,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2015,December,50,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,33.69,0,0,Check-Out,2018-06-02 -City Hotel,1,39,2016,July,31,5,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.28,0,2,No-Show,2019-05-04 -City Hotel,1,384,2016,March,11,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,75.04,0,0,Canceled,2018-12-03 -City Hotel,0,207,2017,August,35,12,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,70.78,0,0,Check-Out,2020-06-02 -Resort Hotel,0,48,2016,August,35,2,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,240.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-06-03 -Resort Hotel,0,107,2016,November,22,9,0,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,H,D,0,No Deposit,273.0,179.0,0,Transient,95.47,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,January,11,16,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,35.0,331.0,0,Transient-Party,62.35,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,December,51,6,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,18.0,179.0,0,Transient,0.0,0,2,Check-Out,2018-08-03 -Resort Hotel,0,196,2016,August,37,2,1,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,3,No Deposit,248.0,179.0,0,Transient,119.17,0,0,Check-Out,2019-06-03 -Resort Hotel,1,48,2017,April,15,17,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,190.21,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,January,3,10,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.49,0,0,No-Show,2019-03-04 -City Hotel,0,12,2016,March,10,21,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,60.31,0,0,Check-Out,2019-02-01 -City Hotel,0,38,2017,April,15,20,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,8.0,179.0,0,Transient,105.11,0,3,Check-Out,2020-03-03 -Resort Hotel,0,242,2016,October,45,27,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,H,A,1,No Deposit,12.0,179.0,0,Transient,124.86,0,0,Check-Out,2019-06-03 -Resort Hotel,0,38,2017,December,51,10,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,181.0,179.0,0,Transient-Party,81.79,0,0,Canceled,2019-10-04 -City Hotel,0,3,2016,September,37,5,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,17.0,68.0,0,Transient,73.95,0,1,Check-Out,2019-07-04 -Resort Hotel,0,28,2016,December,51,30,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient-Party,62.71,1,0,Check-Out,2018-12-03 -City Hotel,1,48,2016,October,43,3,1,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,78.98,0,3,Canceled,2019-07-04 -Resort Hotel,0,219,2015,August,37,24,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient-Party,181.29,0,1,Check-Out,2018-06-02 -Resort Hotel,0,17,2016,March,15,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,223.0,0,Transient-Party,61.62,1,0,Check-Out,2019-03-04 -City Hotel,0,12,2015,December,53,25,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,74.3,0,0,Check-Out,2018-12-03 -City Hotel,1,264,2017,August,31,20,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Transient,183.72,0,0,Canceled,2018-06-02 -City Hotel,1,444,2017,May,23,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,59.35,0,0,Canceled,2019-11-03 -City Hotel,1,54,2016,December,51,27,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,66.19,0,0,Canceled,2019-08-04 -City Hotel,1,80,2015,September,44,22,1,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,107.03,0,3,Canceled,2018-05-03 -City Hotel,1,142,2015,September,36,30,0,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,95.21,0,0,Canceled,2018-05-03 -City Hotel,0,101,2017,August,32,24,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,192.81,1,1,Check-Out,2020-06-02 -City Hotel,1,1,2017,February,10,14,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,59.24,0,0,Canceled,2019-09-03 -City Hotel,0,28,2017,May,20,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,7.0,179.0,0,Contract,73.72,0,1,Check-Out,2020-04-02 -City Hotel,0,202,2016,October,43,11,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,77.37,0,0,Check-Out,2018-08-03 -Resort Hotel,0,142,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,H,1,Refundable,36.0,179.0,0,Transient-Party,71.54,0,0,Check-Out,2019-02-01 -City Hotel,0,45,2015,July,26,27,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,76.0,0,Transient-Party,48.69,0,0,Check-Out,2019-06-03 -Resort Hotel,1,104,2017,July,27,27,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,159.48,0,0,Canceled,2019-10-04 -City Hotel,1,101,2016,July,31,25,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,77.51,0,0,Canceled,2019-01-03 -City Hotel,1,57,2016,November,50,20,2,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,102.1,0,0,Canceled,2019-04-03 -City Hotel,1,106,2016,April,21,6,2,0,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.93,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2016,March,9,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,72.62,1,0,Check-Out,2018-12-03 -City Hotel,1,39,2016,January,4,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,61.49,0,1,No-Show,2019-01-03 -City Hotel,1,21,2017,April,16,10,0,1,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,89.1,0,0,Canceled,2019-10-04 -Resort Hotel,0,239,2015,July,29,28,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Contract,61.38,0,0,Check-Out,2018-01-03 -City Hotel,0,11,2016,November,45,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,159.34,1,0,Check-Out,2019-08-04 -City Hotel,1,39,2016,May,27,9,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.57,0,1,Canceled,2019-06-03 -City Hotel,1,391,2016,April,18,10,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,63,Transient,81.1,0,0,Canceled,2019-02-01 -City Hotel,1,298,2017,June,25,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,97.03,0,0,Canceled,2020-03-03 -City Hotel,0,161,2016,May,23,2,3,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,300.0,179.0,0,Transient,103.28,0,0,Check-Out,2019-02-01 -Resort Hotel,0,136,2016,May,23,29,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,66.57,0,1,Check-Out,2020-03-03 -City Hotel,1,38,2017,February,18,9,2,5,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,94.61,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,October,10,10,0,1,1,2.0,0,BB,USA,Complementary,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,152.82,0,1,Check-Out,2019-03-04 -Resort Hotel,1,47,2016,December,53,29,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,63.34,0,0,Canceled,2019-09-03 -Resort Hotel,0,37,2015,October,43,21,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,63.66,0,0,Check-Out,2018-07-03 -Resort Hotel,0,289,2015,October,43,25,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,68.22,0,0,Check-Out,2017-11-02 -City Hotel,1,151,2016,November,49,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,89.0,45.0,0,Transient-Party,107.28,0,0,Canceled,2019-11-03 -City Hotel,1,55,2016,December,46,13,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,60.71,0,0,Canceled,2019-11-03 -Resort Hotel,0,100,2015,November,43,5,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,153.24,0,0,Check-Out,2018-07-03 -Resort Hotel,0,31,2016,July,37,5,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.51,0,2,Check-Out,2019-07-04 -City Hotel,0,11,2016,March,9,6,1,4,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,147.0,81.0,0,Transient,80.06,0,0,Check-Out,2019-03-04 -Resort Hotel,1,55,2016,March,9,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,131.0,179.0,0,Transient,72.76,0,0,Canceled,2018-11-02 -Resort Hotel,1,353,2016,September,36,16,2,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,61.76,0,0,Canceled,2019-07-04 -Resort Hotel,0,0,2016,March,17,13,0,5,2,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,D,0,No Deposit,13.0,222.0,0,Transient-Party,31.88,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2016,March,17,10,1,0,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.71,0,0,Check-Out,2019-01-03 -Resort Hotel,1,1,2016,June,23,21,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,243.09,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2016,August,36,23,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,37.85,0,0,Check-Out,2019-07-04 -Resort Hotel,0,34,2017,March,10,31,0,3,1,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,D,1,No Deposit,18.0,222.0,75,Transient,54.12,0,0,Check-Out,2020-05-03 -City Hotel,1,59,2017,January,9,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,71.08,0,0,Canceled,2019-10-04 -City Hotel,1,39,2016,March,10,26,0,1,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.48,0,0,Canceled,2019-02-01 -City Hotel,0,2,2017,May,20,27,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,81.44,0,0,Check-Out,2019-02-01 -Resort Hotel,1,44,2015,October,37,15,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,Non Refund,15.0,179.0,0,Transient,83.7,0,0,Canceled,2018-09-02 -City Hotel,1,103,2017,June,27,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,102.43,0,0,Canceled,2020-03-03 -City Hotel,0,0,2015,October,50,28,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,59.48,0,0,Check-Out,2018-09-02 -City Hotel,1,53,2017,May,10,3,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,157.24,0,0,Canceled,2020-01-04 -Resort Hotel,1,114,2016,August,11,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,66.92,0,0,Canceled,2018-11-02 -City Hotel,0,140,2017,March,20,31,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,159.94,0,1,Check-Out,2020-05-03 -Resort Hotel,0,182,2015,September,33,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Contract,79.92,0,0,Check-Out,2017-09-02 -Resort Hotel,0,0,2016,February,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,72.0,0,Transient,41.4,0,0,Check-Out,2018-12-03 -Resort Hotel,0,50,2017,May,23,27,1,0,2,2.0,0,BB,PRT,Groups,Direct,0,0,0,C,C,2,No Deposit,248.0,179.0,0,Transient,166.86,0,0,Check-Out,2020-04-02 -Resort Hotel,1,261,2015,July,28,25,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,1,0,0,A,A,1,No Deposit,86.0,179.0,0,Transient-Party,62.38,0,0,Canceled,2018-06-02 -City Hotel,1,109,2015,October,36,6,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,60.92,0,0,Canceled,2018-08-03 -City Hotel,0,12,2016,March,18,28,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,103.58,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2016,May,44,5,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,26.24,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,January,3,21,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient,33.85,0,0,Check-Out,2020-04-02 -Resort Hotel,0,141,2015,September,32,4,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.38,0,0,Check-Out,2018-07-03 -Resort Hotel,0,2,2017,July,35,24,0,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,222.0,179.0,0,Transient-Party,110.55,0,0,Check-Out,2020-07-03 -City Hotel,0,152,2016,October,45,24,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,79.14,0,0,Check-Out,2018-09-02 -City Hotel,0,144,2015,August,41,21,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,B,3,No Deposit,9.0,179.0,0,Transient-Party,100.93,0,0,Check-Out,2018-06-02 -City Hotel,1,0,2016,March,17,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,Non Refund,14.0,45.0,0,Transient,77.12,0,0,Canceled,2019-01-03 -City Hotel,1,171,2016,December,39,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,8.0,179.0,0,Transient,142.45,0,0,Canceled,2019-12-04 -Resort Hotel,0,2,2017,January,2,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,72.81,0,2,Check-Out,2020-03-03 -City Hotel,0,11,2016,August,9,30,0,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-02-01 -Resort Hotel,1,322,2016,May,42,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,186.0,179.0,0,Transient-Party,81.55,0,0,Canceled,2018-12-03 -City Hotel,1,201,2017,May,21,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,93.8,0,0,Canceled,2018-11-02 -City Hotel,1,9,2016,February,8,27,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,0,Transient,54.77,0,0,Canceled,2018-10-03 -Resort Hotel,0,1,2017,June,23,10,0,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,125.9,1,0,Check-Out,2020-03-03 -City Hotel,1,4,2016,June,21,25,2,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,137.24,0,1,Canceled,2019-02-01 -City Hotel,0,18,2015,September,39,5,0,3,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient-Party,97.83,0,0,Check-Out,2018-07-03 -Resort Hotel,0,256,2017,August,25,15,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,216.49,1,2,Check-Out,2020-07-03 -City Hotel,0,14,2016,December,51,31,0,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,182.84,0,2,Check-Out,2019-11-03 -City Hotel,0,21,2016,October,45,2,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,153.05,0,2,Canceled,2019-07-04 -City Hotel,1,0,2016,October,43,8,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,P,P,2,No Deposit,12.0,179.0,0,Transient,1.22,0,1,Check-Out,2019-09-03 -City Hotel,0,4,2017,May,20,6,2,0,1,0.0,0,BB,BRA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,191.72,0,0,Check-Out,2020-03-03 -City Hotel,1,145,2016,June,26,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,98.98,0,0,Canceled,2019-04-03 -Resort Hotel,1,277,2017,June,27,5,2,10,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,139.22,0,0,Canceled,2020-01-04 -City Hotel,0,2,2016,February,11,9,0,1,1,0.0,0,BB,GBR,Corporate,GDS,0,0,0,A,A,0,No Deposit,198.0,331.0,0,Transient,63.58,0,0,Check-Out,2019-02-01 -City Hotel,1,99,2016,April,16,11,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.94,0,0,Canceled,2019-02-01 -City Hotel,1,253,2015,September,36,9,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,33.99,0,0,Canceled,2017-11-02 -Resort Hotel,0,1,2016,June,10,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,241.0,0,Transient,37.57,1,0,Check-Out,2019-06-03 -City Hotel,0,0,2015,April,17,16,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,57.75,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2017,March,20,9,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,331.0,0,Group,0.0,0,0,Check-Out,2020-05-03 -City Hotel,0,98,2017,June,26,27,1,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,120.79,1,1,Check-Out,2020-04-02 -City Hotel,0,98,2016,November,50,20,0,2,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,73.44,0,0,Check-Out,2019-11-03 -City Hotel,0,16,2016,August,37,5,1,1,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,B,B,2,No Deposit,16.0,179.0,0,Transient,184.64,0,2,Check-Out,2020-06-02 -City Hotel,0,1,2017,June,25,4,0,1,1,0.0,0,BB,IRL,Offline TA/TO,Corporate,0,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,111.31,0,0,Check-Out,2020-02-01 -City Hotel,1,401,2016,November,22,14,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,65.36,0,0,Canceled,2017-12-03 -City Hotel,0,83,2017,June,26,29,1,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.17,0,0,Check-Out,2020-06-02 -Resort Hotel,1,143,2017,August,26,6,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,145.8,0,0,No-Show,2019-05-04 -City Hotel,0,36,2015,October,45,24,1,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,66.55,0,0,Check-Out,2018-09-02 -City Hotel,0,13,2016,October,43,27,0,1,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,74.74,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2016,January,7,30,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,74.99,0,3,Check-Out,2019-04-03 -Resort Hotel,1,106,2017,August,36,14,0,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,227.61,0,0,Canceled,2018-06-02 -City Hotel,0,248,2015,July,33,24,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.43,0,1,Check-Out,2018-06-02 -City Hotel,0,108,2015,March,10,31,0,6,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,58.51,0,1,Check-Out,2018-12-03 -Resort Hotel,0,143,2016,December,51,31,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,3,Refundable,14.0,179.0,0,Transient-Party,51.05,0,0,Check-Out,2019-06-03 -Resort Hotel,1,11,2016,March,10,10,1,2,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,45.25,0,0,Canceled,2019-01-03 -Resort Hotel,1,17,2017,January,3,24,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Non Refund,14.0,331.0,0,Transient,37.18,0,0,Canceled,2019-10-04 -Resort Hotel,0,5,2017,March,10,15,0,3,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,86.73,1,3,Check-Out,2020-02-01 -City Hotel,1,16,2016,September,37,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,184.95,0,0,Canceled,2018-05-03 -Resort Hotel,0,41,2016,April,18,23,1,2,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,B,1,No Deposit,378.0,179.0,0,Transient-Party,93.29,0,0,Check-Out,2019-02-01 -City Hotel,0,47,2016,July,27,10,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient-Party,102.22,0,0,Check-Out,2019-05-04 -City Hotel,0,7,2015,October,43,25,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,69.28,0,0,Check-Out,2018-07-03 -City Hotel,1,14,2017,January,7,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient,32.95,0,0,Canceled,2019-12-04 -City Hotel,0,98,2017,May,34,21,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,101.23,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2016,September,43,12,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,0.92,0,0,Canceled,2019-08-04 -Resort Hotel,0,13,2017,August,22,24,0,4,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,3,No Deposit,249.0,179.0,0,Transient,45.29,0,0,Check-Out,2020-04-02 -City Hotel,1,246,2015,September,43,30,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,112.43,0,0,Canceled,2018-08-03 -City Hotel,1,134,2016,June,26,18,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,73.49,0,1,Canceled,2019-06-03 -City Hotel,1,38,2016,March,3,7,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,64.86,0,0,Canceled,2018-12-03 -City Hotel,1,213,2015,October,44,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,65,Transient,76.95,0,2,Canceled,2018-09-02 -Resort Hotel,0,13,2016,December,53,30,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,61.91,1,1,Check-Out,2019-05-04 -City Hotel,1,4,2016,October,45,26,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,172.56,0,0,Canceled,2019-08-04 -City Hotel,1,35,2017,May,19,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,91.04,0,0,Canceled,2020-02-01 -Resort Hotel,0,32,2016,December,49,20,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,187.0,179.0,57,Transient-Party,81.83,0,0,Check-Out,2019-11-03 -City Hotel,1,45,2017,March,10,28,0,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,59.49,0,0,Canceled,2019-10-04 -City Hotel,0,18,2016,June,27,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.08,0,0,Check-Out,2019-06-03 -City Hotel,0,55,2016,September,36,27,0,2,3,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,185.11,0,0,Check-Out,2019-08-04 -Resort Hotel,1,50,2016,September,36,9,2,5,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,215.46,0,0,Canceled,2018-06-02 -City Hotel,1,255,2015,July,34,14,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.94,0,0,Canceled,2017-09-02 -Resort Hotel,1,7,2017,February,7,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,67.0,0,Transient,34.42,0,0,Canceled,2019-12-04 -City Hotel,0,41,2016,June,21,8,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,94.0,179.0,0,Transient,193.36,0,0,Check-Out,2019-02-01 -Resort Hotel,0,4,2015,December,50,30,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,63.7,0,2,Check-Out,2018-10-03 -City Hotel,1,41,2016,December,50,2,1,0,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,65.31,0,1,Canceled,2019-11-03 -Resort Hotel,0,309,2017,August,38,25,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,186.77,0,2,Check-Out,2020-07-03 -City Hotel,1,15,2016,March,15,28,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,B,0,Non Refund,12.0,179.0,0,Transient,76.3,0,0,Canceled,2019-02-01 -Resort Hotel,0,229,2016,July,33,31,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,116.19,0,0,Check-Out,2018-06-02 -City Hotel,0,151,2017,August,30,16,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.22,0,1,Check-Out,2020-07-03 -City Hotel,0,6,2015,July,32,21,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,118.47,0,0,Canceled,2017-12-03 -Resort Hotel,0,1,2016,October,34,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,86.86,0,1,Check-Out,2019-08-04 -City Hotel,0,3,2016,October,44,13,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,45.0,0,Transient-Party,60.03,0,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2016,March,9,10,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,35.8,0,1,Check-Out,2019-01-03 -Resort Hotel,1,224,2017,June,36,10,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,173.0,179.0,0,Transient,113.36,0,2,Canceled,2019-07-04 -City Hotel,0,273,2016,September,34,5,0,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,85.89,0,0,Check-Out,2019-08-04 -City Hotel,0,63,2016,August,36,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,178.34,0,2,Check-Out,2019-05-04 -City Hotel,0,4,2016,June,27,12,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,78.0,0,Transient,114.86,0,0,Check-Out,2019-06-03 -City Hotel,0,64,2017,August,37,10,0,4,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,248.28,0,0,Check-Out,2020-06-02 -Resort Hotel,0,145,2017,June,22,5,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,313.0,179.0,0,Transient-Party,78.99,1,2,Check-Out,2020-05-03 -City Hotel,0,92,2016,June,26,31,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,70.62,0,1,Check-Out,2019-05-04 -City Hotel,0,59,2016,May,26,7,2,10,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,89.77,0,0,Check-Out,2019-05-04 -City Hotel,0,37,2016,December,52,5,0,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.57,0,2,Canceled,2019-10-04 -City Hotel,1,22,2015,July,28,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.56,0,0,Canceled,2018-05-03 -City Hotel,1,7,2016,January,2,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.66,0,2,No-Show,2019-04-03 -City Hotel,1,270,2017,August,37,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,13.0,179.0,0,Transient,204.31,0,0,Canceled,2020-06-02 -Resort Hotel,1,27,2015,August,32,6,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Contract,117.51,0,1,Canceled,2019-06-03 -Resort Hotel,0,18,2017,July,30,25,0,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,166.67,0,0,Canceled,2020-06-02 -City Hotel,1,411,2016,October,44,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,42,Transient,59.13,0,0,Canceled,2018-07-03 -City Hotel,0,236,2016,October,43,18,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.5,0,1,Check-Out,2019-09-03 -City Hotel,0,2,2016,April,16,8,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,1.01,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2016,June,20,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,80.79,0,0,Check-Out,2019-03-04 -City Hotel,1,43,2016,March,18,22,2,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,120.13,0,0,Canceled,2018-12-03 -City Hotel,1,8,2016,June,38,5,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,161.82,0,0,No-Show,2019-08-04 -City Hotel,1,260,2017,June,28,2,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,105.33,0,3,Canceled,2019-02-01 -Resort Hotel,1,285,2016,June,26,5,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,238.0,179.0,0,Transient,78.35,0,0,Canceled,2019-03-04 -City Hotel,1,37,2017,March,11,21,1,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.88,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2015,October,32,5,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,48.01,0,0,Check-Out,2018-05-03 -City Hotel,1,380,2017,August,36,23,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,139.04,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,July,25,12,0,1,1,1.0,0,BB,PRT,Direct,Direct,1,0,0,A,I,2,No Deposit,13.0,179.0,0,Transient,135.36,0,1,Check-Out,2020-05-03 -City Hotel,0,14,2016,May,21,28,2,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,10.0,179.0,0,Transient,163.22,0,1,Check-Out,2019-11-03 -Resort Hotel,0,6,2017,February,8,6,1,0,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient,76.65,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2015,October,49,15,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient-Party,37.11,0,0,Check-Out,2018-08-03 -City Hotel,0,18,2016,October,45,20,0,3,1,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,220.0,0,Transient-Party,62.55,0,0,Check-Out,2019-07-04 -City Hotel,1,107,2016,April,16,28,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,162.0,0,0,Canceled,2018-12-03 -Resort Hotel,0,67,2015,December,44,29,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,97.66,0,0,Check-Out,2018-08-03 -Resort Hotel,0,6,2016,December,49,17,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,14.0,80.0,0,Transient,43.99,0,0,Check-Out,2019-06-03 -Resort Hotel,1,106,2015,December,52,21,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.98,0,0,Canceled,2018-08-03 -Resort Hotel,0,99,2016,April,35,2,2,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,80.85,0,1,Check-Out,2019-06-03 -Resort Hotel,0,377,2016,March,10,31,0,2,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,221.0,0,Transient-Party,59.81,0,0,Check-Out,2019-03-04 -Resort Hotel,0,7,2015,December,53,21,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,95.13,1,0,Check-Out,2019-11-03 -City Hotel,0,206,2017,June,25,1,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.31,0,2,Check-Out,2020-04-02 -Resort Hotel,0,136,2016,March,12,31,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,Non Refund,12.0,224.0,0,Transient,30.07,0,0,Check-Out,2019-03-04 -City Hotel,1,50,2017,January,12,29,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,79.37,0,2,Canceled,2018-12-03 -City Hotel,1,110,2016,April,17,17,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.92,0,1,Canceled,2019-02-01 -City Hotel,0,143,2017,June,24,9,0,2,3,0.0,0,BB,BEL,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,131.98,0,1,Check-Out,2020-03-03 -Resort Hotel,1,151,2016,July,32,18,2,10,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,227.86,0,0,Canceled,2020-05-03 -City Hotel,0,34,2017,March,10,5,2,5,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,91.37,0,2,Check-Out,2020-02-01 -City Hotel,1,201,2016,May,22,5,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,207.72,0,1,Canceled,2019-02-01 -Resort Hotel,0,325,2016,August,35,9,1,1,2,0.0,0,HB,PRT,Complementary,Direct,0,0,0,C,C,0,No Deposit,329.0,179.0,0,Transient,4.43,0,0,Check-Out,2019-08-04 -City Hotel,0,23,2016,January,51,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,66.17,0,0,Check-Out,2019-09-03 -Resort Hotel,0,18,2017,March,17,29,1,1,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,68.87,1,2,Check-Out,2020-03-03 -City Hotel,0,35,2015,August,33,24,2,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,230.58,0,1,Check-Out,2019-07-04 -City Hotel,1,61,2017,June,19,8,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,162.31,0,0,Canceled,2020-02-01 -Resort Hotel,1,260,2015,August,37,24,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,63.28,0,1,Canceled,2018-05-03 -City Hotel,0,3,2017,June,27,2,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient,63.92,0,2,Check-Out,2020-06-02 -Resort Hotel,1,41,2017,August,34,28,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,247.44,0,2,Canceled,2019-09-03 -City Hotel,0,102,2016,July,31,30,1,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,55.06,0,3,Check-Out,2019-05-04 -City Hotel,1,55,2016,October,11,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,74.42,0,0,Canceled,2019-10-04 -Resort Hotel,1,19,2016,July,9,11,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,115.13,0,0,No-Show,2019-04-03 -City Hotel,1,235,2015,August,31,7,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.23,0,0,Canceled,2018-05-03 -Resort Hotel,1,95,2017,May,22,27,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,117.25,0,0,Canceled,2019-10-04 -City Hotel,0,95,2017,June,32,21,1,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,122.51,0,1,Check-Out,2020-06-02 -City Hotel,1,141,2017,July,33,27,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.62,0,1,Canceled,2020-06-02 -City Hotel,0,34,2015,July,31,9,2,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.78,0,2,Check-Out,2018-11-02 -Resort Hotel,0,70,2017,April,16,21,2,4,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,252.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-02-01 -Resort Hotel,1,189,2017,May,19,15,0,1,2,0.0,0,HB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient,81.58,0,0,Canceled,2020-01-04 -City Hotel,0,190,2015,July,32,20,0,2,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,78.21,0,0,Check-Out,2018-07-03 -City Hotel,1,124,2015,November,45,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,60.08,0,0,Canceled,2018-08-03 -City Hotel,0,9,2017,May,24,15,2,0,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,118.49,0,0,Check-Out,2020-01-04 -Resort Hotel,0,1,2015,December,51,5,2,2,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,C,2,No Deposit,15.0,179.0,0,Transient,48.8,0,0,Check-Out,2018-08-03 -City Hotel,0,36,2016,October,44,14,0,5,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,2,No Deposit,15.0,209.0,0,Transient,101.53,0,0,Check-Out,2019-07-04 -City Hotel,1,11,2016,January,4,9,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,75.54,0,0,No-Show,2018-12-03 -Resort Hotel,0,37,2016,August,36,25,2,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,E,G,3,No Deposit,244.0,179.0,0,Transient,213.67,1,0,Check-Out,2019-05-04 -City Hotel,1,43,2016,October,44,27,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,100.21,0,0,No-Show,2018-11-02 -Resort Hotel,0,143,2016,August,36,31,1,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,65.59,0,0,Check-Out,2019-06-03 -Resort Hotel,0,263,2015,June,28,10,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient-Party,101.73,0,1,Check-Out,2018-06-02 -Resort Hotel,0,1,2017,January,4,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,46.96,0,1,Check-Out,2019-10-04 -City Hotel,0,20,2016,February,10,19,2,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.86,0,0,Check-Out,2019-02-01 -City Hotel,1,113,2017,May,17,4,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.41,0,0,Canceled,2019-10-04 -City Hotel,0,18,2016,May,17,28,0,1,2,2.0,0,BB,POL,Direct,TA/TO,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,87.35,0,0,Check-Out,2019-06-03 -Resort Hotel,0,322,2017,July,34,7,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,157.1,0,0,Check-Out,2020-03-03 -City Hotel,1,159,2017,March,21,16,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,77.41,0,0,Canceled,2019-11-03 -City Hotel,1,42,2017,August,16,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.09,0,0,Canceled,2020-06-02 -Resort Hotel,0,54,2017,July,28,29,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,164.21,0,0,Check-Out,2020-04-02 -Resort Hotel,0,371,2017,May,23,28,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient-Party,72.78,0,0,Check-Out,2019-11-03 -City Hotel,1,45,2016,April,21,21,0,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,104.97,0,1,Canceled,2019-02-01 -City Hotel,1,318,2016,September,37,28,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,185.58,0,0,Canceled,2019-07-04 -Resort Hotel,0,274,2016,October,43,25,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,58.49,0,0,Check-Out,2019-06-03 -City Hotel,0,297,2015,October,43,27,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,67.97,0,0,Check-Out,2018-08-03 -City Hotel,0,92,2015,September,40,20,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,1,No Deposit,1.0,179.0,0,Transient-Party,59.91,0,0,Check-Out,2018-08-03 -Resort Hotel,1,47,2016,November,51,5,1,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Transient,30.47,0,0,Canceled,2018-12-03 -City Hotel,1,197,2016,September,38,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,156.0,179.0,0,Transient,61.28,0,0,Canceled,2019-07-04 -City Hotel,0,52,2017,February,7,1,0,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,F,0,No Deposit,94.0,331.0,0,Transient-Party,73.7,0,0,Check-Out,2020-02-01 -City Hotel,0,97,2017,May,24,17,1,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,76.02,0,0,Check-Out,2020-03-03 -City Hotel,1,268,2015,August,45,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,145.07,0,0,Canceled,2018-05-03 -Resort Hotel,1,200,2017,July,30,29,2,5,2,1.0,0,HB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,248.61,0,0,Canceled,2020-01-04 -Resort Hotel,0,4,2016,March,17,10,0,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,16.0,223.0,0,Transient,41.49,0,0,Check-Out,2019-03-04 -Resort Hotel,0,43,2016,January,44,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient-Party,73.26,0,1,Check-Out,2018-12-03 -Resort Hotel,0,93,2017,January,4,27,2,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,244.0,179.0,0,Transient,74.39,1,3,Check-Out,2019-12-04 -Resort Hotel,0,234,2015,October,42,25,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,62.26,0,2,Check-Out,2017-12-03 -Resort Hotel,0,264,2017,June,26,2,3,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,90.37,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,July,26,8,0,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,119.14,0,0,Check-Out,2019-02-01 -Resort Hotel,0,255,2016,August,35,28,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,154.45,0,0,Check-Out,2019-06-03 -City Hotel,0,43,2016,July,26,4,1,2,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,124.56,0,0,Check-Out,2019-05-04 -City Hotel,0,101,2016,October,44,28,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,123.92,0,0,Check-Out,2019-04-03 -City Hotel,0,1,2015,December,53,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,58.47,1,0,Check-Out,2019-01-03 -City Hotel,1,399,2015,October,44,14,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Contract,65.77,0,0,Canceled,2018-07-03 -City Hotel,0,0,2016,January,4,21,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.08,0,1,Check-Out,2018-12-03 -Resort Hotel,0,264,2016,September,36,28,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,71.19,0,0,Check-Out,2019-08-04 -City Hotel,0,9,2017,May,24,21,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,89.38,0,0,Check-Out,2020-07-03 -City Hotel,0,183,2016,April,22,19,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.32,0,3,Check-Out,2019-11-03 -City Hotel,0,318,2015,August,28,21,2,1,1,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,81.0,179.0,0,Transient-Party,121.56,1,0,Check-Out,2019-05-04 -Resort Hotel,0,110,2016,August,38,16,3,5,3,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,E,0,No Deposit,191.0,179.0,0,Transient,201.89,0,0,Check-Out,2019-08-04 -Resort Hotel,0,118,2017,June,28,25,0,3,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,146.11,1,3,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,October,43,6,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,40.48,0,0,Check-Out,2019-08-04 -City Hotel,1,394,2015,August,39,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,63.02,0,0,Canceled,2018-01-31 -Resort Hotel,0,151,2017,June,16,9,2,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,243.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-02-01 -Resort Hotel,0,37,2016,October,43,24,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,37.5,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2016,May,44,16,0,1,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,D,2,No Deposit,16.0,159.0,0,Transient,63.08,0,0,Check-Out,2019-03-04 -Resort Hotel,0,146,2017,May,31,19,1,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient-Party,74.11,0,0,Check-Out,2019-11-03 -City Hotel,1,106,2016,September,38,10,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,74.47,0,0,Canceled,2018-08-03 -City Hotel,1,37,2015,July,32,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,83.91,0,2,Canceled,2018-06-02 -Resort Hotel,0,3,2017,July,33,22,4,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,161.51,1,0,Check-Out,2020-06-02 -City Hotel,1,178,2017,March,18,29,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,62.9,0,0,Canceled,2020-02-01 -Resort Hotel,0,4,2015,December,50,27,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,37.86,1,0,Check-Out,2018-10-03 -City Hotel,1,3,2016,April,18,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,41,Transient,125.51,0,0,Canceled,2018-11-02 -Resort Hotel,1,300,2017,August,34,15,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,71.9,0,2,Canceled,2019-08-04 -City Hotel,0,21,2017,May,9,10,2,0,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,78.63,0,0,Check-Out,2020-05-03 -City Hotel,0,1,2017,May,10,13,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,0.84,0,0,Check-Out,2020-02-01 -Resort Hotel,0,157,2017,June,35,13,0,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,168.89,0,0,Check-Out,2020-06-02 -City Hotel,0,8,2016,December,50,5,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,147.57,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,January,4,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,51.77,1,3,Check-Out,2019-06-03 -City Hotel,0,113,2015,August,38,28,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,123.58,0,0,Check-Out,2018-06-02 -Resort Hotel,0,57,2017,March,15,28,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,36.95,1,1,Check-Out,2020-03-03 -City Hotel,1,262,2015,July,39,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,58.75,0,0,Canceled,2018-05-03 -City Hotel,0,54,2016,January,18,6,0,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,131.19,0,2,Check-Out,2019-03-04 -City Hotel,1,156,2016,May,23,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,64,Transient,59.96,0,0,Canceled,2018-12-03 -Resort Hotel,0,82,2016,August,35,25,1,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,F,1,No Deposit,15.0,179.0,0,Transient,106.99,1,2,Check-Out,2018-08-03 -City Hotel,0,2,2016,June,27,19,0,2,1,0.0,0,FB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,76.0,179.0,0,Transient,121.6,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2015,September,43,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,87.31,0,0,Check-Out,2018-09-02 -City Hotel,0,34,2016,March,17,12,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,75,Transient-Party,30.96,0,0,Check-Out,2019-03-04 -Resort Hotel,1,322,2016,May,20,14,2,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,238.0,179.0,0,Transient,92.33,0,1,Canceled,2019-01-03 -Resort Hotel,0,200,2017,August,38,15,2,5,3,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,233.0,179.0,0,Transient,83.57,0,0,Check-Out,2020-06-02 -City Hotel,0,92,2015,September,37,7,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.98,1,0,Check-Out,2018-08-03 -Resort Hotel,0,91,2017,February,17,24,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,39.0,179.0,0,Transient-Party,73.85,0,0,Check-Out,2019-12-04 -City Hotel,0,2,2016,May,21,24,0,1,2,2.0,0,BB,DEU,Direct,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,161.21,0,0,Check-Out,2019-12-04 -Resort Hotel,0,5,2016,September,22,2,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-06-03 -City Hotel,0,10,2016,August,29,27,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,223.82,0,0,Check-Out,2019-02-01 -City Hotel,1,166,2016,August,36,18,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.98,0,1,Canceled,2020-02-01 -Resort Hotel,0,12,2016,May,15,7,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,91.39,0,1,Check-Out,2019-03-04 -City Hotel,0,161,2017,April,35,10,0,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,115.21,0,2,Check-Out,2020-06-02 -City Hotel,1,405,2015,July,32,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.79,0,0,Canceled,2018-08-03 -City Hotel,1,106,2016,February,9,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,71.4,0,0,Canceled,2018-10-03 -City Hotel,0,194,2016,August,34,23,0,2,3,2.0,0,BB,USA,Direct,Direct,0,0,0,G,G,2,No Deposit,16.0,179.0,0,Transient,217.76,0,0,Check-Out,2019-04-03 -City Hotel,1,4,2017,February,17,24,0,1,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,134.8,0,0,Canceled,2019-11-03 -City Hotel,1,37,2016,March,10,13,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,223.28,0,0,Canceled,2019-02-01 -City Hotel,0,17,2017,August,9,29,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.29,0,0,Check-Out,2020-03-03 -Resort Hotel,0,9,2015,December,53,7,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.3,0,0,Canceled,2018-08-03 -City Hotel,0,47,2016,March,53,30,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,318.0,179.0,0,Transient-Party,75.23,0,3,Check-Out,2019-11-03 -City Hotel,1,18,2017,March,10,16,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,1,F,A,0,No Deposit,13.0,179.0,0,Transient-Party,127.07,0,0,Canceled,2020-02-01 -City Hotel,0,52,2016,June,27,21,0,1,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,69.59,0,0,Check-Out,2019-05-04 -Resort Hotel,0,176,2017,May,27,23,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,116.1,0,0,Check-Out,2020-04-02 -City Hotel,0,43,2017,March,9,10,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,251.0,179.0,0,Transient-Party,72.52,0,2,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,February,11,20,0,1,2,0.0,0,HB,PRT,Offline TA/TO,Direct,1,0,0,A,F,0,No Deposit,204.0,331.0,0,Transient-Party,1.91,0,0,Check-Out,2020-02-01 -City Hotel,1,45,2016,October,44,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,63.8,0,1,Canceled,2019-11-03 -Resort Hotel,0,220,2017,March,10,10,2,5,2,0.0,0,HB,AUT,Groups,Corporate,1,0,1,E,I,1,No Deposit,11.0,223.0,75,Transient-Party,0.0,1,1,Check-Out,2020-02-01 -City Hotel,1,44,2016,May,8,6,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.37,0,0,Canceled,2018-11-02 -Resort Hotel,0,57,2015,October,41,15,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,103.73,0,0,Check-Out,2018-09-02 -City Hotel,1,22,2016,April,21,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.52,0,0,Canceled,2019-01-03 -City Hotel,1,46,2017,August,34,30,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.53,0,0,Canceled,2019-10-04 -City Hotel,0,260,2016,October,43,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,93.88,0,0,Check-Out,2019-08-04 -Resort Hotel,0,5,2017,February,8,15,0,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,253.0,179.0,0,Transient,35.44,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2017,April,20,30,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2020-03-03 -City Hotel,0,141,2015,October,44,21,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,105.42,0,0,Check-Out,2018-05-03 -City Hotel,0,13,2017,March,9,15,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,9.0,76.0,0,Transient,76.48,0,0,Check-Out,2020-01-04 -City Hotel,1,143,2016,February,4,21,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient,80.4,0,0,Check-Out,2018-10-03 -Resort Hotel,1,152,2017,August,31,17,0,2,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,112.25,0,0,Canceled,2020-07-03 -Resort Hotel,0,5,2017,May,24,6,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,0,No Deposit,15.0,179.0,0,Transient,162.1,1,0,Check-Out,2020-03-03 -Resort Hotel,1,104,2017,June,26,19,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,235.0,179.0,0,Transient,193.1,0,1,Canceled,2020-03-03 -City Hotel,1,34,2016,June,27,29,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,105.59,0,1,Canceled,2019-03-04 -Resort Hotel,0,147,2017,August,34,25,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,105.12,0,1,Check-Out,2020-07-03 -Resort Hotel,0,57,2016,October,42,19,4,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,81.06,0,0,Check-Out,2019-09-03 -Resort Hotel,1,312,2016,July,31,15,4,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,138.0,179.0,0,Transient,75.35,0,1,Canceled,2019-02-01 -Resort Hotel,0,219,2017,August,37,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,96.0,179.0,0,Transient,116.07,1,0,Check-Out,2020-05-03 -City Hotel,0,46,2017,April,8,17,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.33,0,2,Check-Out,2020-04-02 -City Hotel,0,58,2016,July,27,20,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.39,0,3,Check-Out,2019-08-04 -Resort Hotel,1,55,2016,April,16,25,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,136.0,179.0,43,Transient,43.32,0,0,Canceled,2019-02-01 -City Hotel,0,106,2016,September,45,28,2,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,103.98,0,0,Check-Out,2019-09-03 -City Hotel,0,41,2016,June,27,15,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,B,E,0,No Deposit,10.0,179.0,0,Group,70.42,0,0,Check-Out,2019-02-01 -Resort Hotel,1,1,2016,January,4,15,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,44.7,0,0,Canceled,2019-04-03 -City Hotel,1,2,2015,September,45,26,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.13,0,0,No-Show,2018-08-03 -Resort Hotel,1,50,2017,May,20,31,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,244.0,179.0,0,Transient,176.97,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2015,August,37,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,42.06,1,0,Check-Out,2018-06-02 -Resort Hotel,0,4,2016,August,28,6,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,193.91,0,3,Check-Out,2019-07-04 -Resort Hotel,0,256,2017,April,19,17,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,138.02,0,1,Check-Out,2020-04-02 -City Hotel,0,28,2016,January,50,21,0,1,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,125.0,179.0,40,Transient,84.2,0,1,Check-Out,2019-11-03 -Resort Hotel,0,37,2015,October,36,21,0,4,1,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,78.33,1,0,Check-Out,2018-06-02 -City Hotel,1,172,2015,September,38,12,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,A,0,Non Refund,1.0,179.0,0,Transient,146.37,0,0,Canceled,2017-10-03 -Resort Hotel,0,1,2016,November,50,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,3,No Deposit,216.0,179.0,0,Group,27.11,0,3,Check-Out,2018-10-03 -Resort Hotel,1,14,2016,July,26,26,0,10,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,118.49,0,1,No-Show,2019-05-04 -City Hotel,0,26,2016,April,17,5,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,123.76,1,0,Check-Out,2019-11-03 -City Hotel,1,254,2016,December,52,28,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,89.34,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,February,10,2,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.19,0,2,Check-Out,2019-11-03 -City Hotel,0,89,2016,October,42,5,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,Refundable,13.0,179.0,0,Contract,74.13,0,0,Check-Out,2018-08-03 -City Hotel,0,48,2016,October,45,7,2,0,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,122.35,0,0,Check-Out,2019-08-04 -City Hotel,0,7,2017,March,10,30,0,1,1,0.0,0,HB,PRT,Direct,Corporate,1,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,97.54,0,0,Check-Out,2020-02-01 -City Hotel,1,78,2016,February,10,21,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,77.69,0,0,No-Show,2018-12-03 -Resort Hotel,1,300,2017,August,36,6,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,239.0,179.0,0,Transient,140.19,0,2,Canceled,2020-07-03 -City Hotel,0,258,2015,September,44,14,2,7,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Contract,91.19,0,1,Check-Out,2018-08-03 -City Hotel,1,50,2017,July,29,2,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,158.0,179.0,0,Transient,156.73,0,2,Check-Out,2020-06-02 -City Hotel,0,36,2016,February,22,23,2,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,205.44,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,March,26,16,1,5,1,0.0,0,HB,PRT,Corporate,TA/TO,1,0,1,A,I,1,No Deposit,241.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-01-03 -City Hotel,0,2,2015,October,44,20,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,116.34,0,0,Check-Out,2018-07-03 -City Hotel,0,89,2016,December,53,15,0,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,73.24,0,0,Check-Out,2019-10-04 -City Hotel,0,147,2017,February,10,15,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,67.87,0,0,Check-Out,2020-03-03 -Resort Hotel,1,96,2015,August,36,27,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,246.0,179.0,0,Transient,87.2,0,0,Canceled,2018-05-03 -City Hotel,1,67,2017,August,38,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.93,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,February,11,10,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,29.99,0,0,Check-Out,2018-10-03 -City Hotel,0,177,2015,September,44,19,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,126.5,0,2,Check-Out,2019-06-03 -Resort Hotel,0,32,2016,March,12,23,0,1,2,0.0,0,BB,GBR,Corporate,Direct,0,0,0,D,E,2,No Deposit,308.0,179.0,0,Transient,60.54,0,0,Check-Out,2019-04-03 -City Hotel,0,86,2015,December,53,31,2,5,2,0.0,0,Undefined,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,93.38,0,2,Check-Out,2018-11-02 -City Hotel,0,251,2017,July,29,13,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.19,0,2,Check-Out,2020-06-02 -Resort Hotel,0,16,2016,December,44,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,91.99,1,1,Check-Out,2018-11-02 -City Hotel,0,7,2016,January,5,24,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.7,0,2,Check-Out,2019-11-03 -Resort Hotel,1,87,2017,August,23,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,151.26,0,0,Canceled,2020-06-02 -Resort Hotel,1,12,2016,December,19,21,0,1,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,334.0,179.0,0,Transient,61.06,0,0,Canceled,2018-11-02 -City Hotel,0,0,2015,November,45,13,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,120.64,0,2,Check-Out,2018-08-03 -Resort Hotel,0,8,2017,May,22,27,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,C,C,2,No Deposit,251.0,179.0,0,Transient,169.2,1,0,Check-Out,2020-01-04 -Resort Hotel,0,282,2017,August,35,14,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Contract,126.43,0,1,Check-Out,2020-07-03 -City Hotel,0,247,2015,September,43,17,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient-Party,75.88,0,0,Check-Out,2018-05-03 -City Hotel,0,95,2016,May,27,24,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,76.0,179.0,0,Transient,158.9,0,1,Check-Out,2019-02-01 -Resort Hotel,0,5,2017,March,19,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,68.35,0,1,Check-Out,2020-02-01 -Resort Hotel,0,47,2016,April,15,10,2,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,F,3,No Deposit,239.0,179.0,0,Transient,77.64,1,2,Check-Out,2019-04-03 -City Hotel,1,96,2016,April,16,10,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,110.62,0,2,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,February,12,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,127.0,179.0,0,Transient-Party,74.54,0,0,Check-Out,2018-12-03 -City Hotel,1,29,2016,June,25,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,145.68,0,1,Canceled,2019-03-04 -City Hotel,0,20,2016,August,37,15,0,1,3,0.0,0,BB,FRA,Undefined,Corporate,0,0,0,B,D,1,No Deposit,14.0,236.0,0,Transient,80.01,0,0,Check-Out,2019-09-03 -City Hotel,0,12,2017,May,27,31,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,125.33,0,1,Check-Out,2020-04-02 -Resort Hotel,0,143,2016,July,27,20,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,319.0,179.0,0,Contract,45.37,0,1,Check-Out,2019-06-03 -City Hotel,1,3,2017,February,36,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,84.81,0,0,Canceled,2020-01-04 -Resort Hotel,0,139,2017,April,17,28,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,65.32,0,1,Check-Out,2019-12-04 -Resort Hotel,1,26,2017,February,10,2,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,2,No Deposit,19.0,331.0,0,Transient,43.09,0,0,Canceled,2020-03-03 -City Hotel,0,141,2015,August,34,23,2,5,3,0.0,0,HB,PRT,Online TA,Undefined,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Transient-Party,70.41,0,1,Check-Out,2018-06-02 -Resort Hotel,1,0,2016,January,25,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,33.95,0,0,No-Show,2019-03-04 -City Hotel,0,6,2016,January,11,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,80.01,0,1,Check-Out,2019-11-03 -Resort Hotel,0,39,2017,April,22,4,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,248.0,179.0,0,Transient,81.68,0,0,Check-Out,2020-01-04 -City Hotel,0,159,2017,July,29,18,2,4,2,1.0,0,HB,DEU,Online TA,Direct,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,111.1,1,3,Check-Out,2020-06-02 -City Hotel,0,271,2015,September,36,9,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,78.1,0,1,Check-Out,2018-08-03 -City Hotel,1,256,2016,September,43,16,2,4,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,168.16,0,1,Canceled,2019-07-04 -City Hotel,1,8,2016,October,42,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.25,0,1,Canceled,2018-11-02 -City Hotel,0,12,2017,June,26,17,0,2,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,100.45,0,2,Check-Out,2020-03-03 -City Hotel,0,1,2017,July,35,20,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,96.01,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,April,17,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,87.61,1,0,Check-Out,2019-02-01 -City Hotel,1,18,2016,December,53,29,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.06,0,2,Canceled,2019-08-04 -Resort Hotel,0,104,2016,June,20,17,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,136.0,179.0,0,Contract,86.68,0,2,Check-Out,2019-03-04 -Resort Hotel,1,268,2016,July,31,22,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,170.88,0,0,Canceled,2019-08-04 -City Hotel,0,8,2017,May,23,26,1,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,3,No Deposit,14.0,234.0,0,Transient-Party,76.54,0,0,Check-Out,2020-04-02 -City Hotel,0,287,2017,August,37,15,0,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,82.0,179.0,0,Group,119.61,0,1,Check-Out,2020-07-03 -City Hotel,0,11,2016,December,53,21,1,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,205.51,0,2,Check-Out,2019-10-04 -City Hotel,1,143,2016,July,30,19,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,127.4,0,2,Canceled,2019-05-04 -Resort Hotel,0,3,2017,March,16,15,0,5,1,0.0,0,HB,BEL,Corporate,Corporate,1,0,0,A,A,0,No Deposit,10.0,223.0,0,Transient-Party,33.44,1,0,Check-Out,2020-04-02 -City Hotel,1,23,2016,August,28,15,0,1,3,0.0,0,BB,PRT,Complementary,Corporate,0,1,0,B,F,0,No Deposit,13.0,179.0,0,Transient-Party,106.88,0,0,Canceled,2018-05-03 -Resort Hotel,0,154,2016,March,10,31,0,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient,66.79,0,0,Check-Out,2019-01-03 -Resort Hotel,0,79,2017,April,23,6,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,C,A,0,No Deposit,29.0,179.0,0,Transient-Party,78.17,0,0,Check-Out,2020-04-02 -City Hotel,1,96,2016,August,38,21,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,152.91,0,1,Canceled,2019-06-03 -City Hotel,1,296,2017,May,23,13,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.53,0,0,Canceled,2019-12-04 -City Hotel,0,102,2017,February,11,24,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,66.37,0,3,Check-Out,2020-03-03 -City Hotel,0,13,2016,March,53,10,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,123.32,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2017,February,11,27,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,39.14,0,0,Check-Out,2019-09-03 -Resort Hotel,0,11,2017,February,10,4,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,66.91,1,3,Check-Out,2020-03-03 -City Hotel,0,86,2015,July,33,25,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.69,0,0,Check-Out,2018-06-02 -City Hotel,0,1,2017,February,10,28,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,K,0,No Deposit,111.0,68.0,0,Transient,61.67,0,0,Check-Out,2018-12-03 -City Hotel,0,95,2017,June,25,17,2,1,1,0.0,0,BB,USA,Direct,Direct,0,0,1,E,E,2,No Deposit,14.0,179.0,0,Transient,162.31,0,1,Check-Out,2020-06-02 -Resort Hotel,0,14,2017,May,16,24,0,2,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,122.59,0,1,Check-Out,2020-02-01 -Resort Hotel,0,160,2017,June,21,9,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,253.0,179.0,0,Transient,125.47,0,1,Check-Out,2020-03-03 -City Hotel,1,0,2016,February,16,10,2,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.02,0,0,Canceled,2018-11-02 -Resort Hotel,0,272,2016,June,27,15,2,3,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,121.58,0,1,Check-Out,2019-04-03 -City Hotel,0,4,2017,August,17,14,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Group,1.59,0,0,Canceled,2019-11-03 -City Hotel,0,35,2016,May,22,5,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,32.96,0,0,Check-Out,2019-03-04 -City Hotel,0,90,2016,October,46,14,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.8,0,2,Check-Out,2019-12-04 -Resort Hotel,0,158,2017,February,10,12,1,0,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient-Party,35.22,0,0,Check-Out,2020-05-03 -City Hotel,0,1,2016,July,35,20,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,220.0,0,Transient,80.8,0,0,Check-Out,2019-07-04 -Resort Hotel,0,95,2015,October,45,29,2,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,39.3,0,0,Check-Out,2018-06-02 -Resort Hotel,0,135,2016,December,53,24,1,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,61.57,1,1,Check-Out,2019-12-04 -City Hotel,0,57,2016,September,37,24,1,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,83.0,179.0,0,Transient-Party,117.64,0,2,Check-Out,2019-09-03 -City Hotel,1,94,2017,January,11,29,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.18,0,2,Canceled,2019-12-04 -Resort Hotel,0,124,2017,March,12,30,0,1,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,378.0,223.0,75,Transient-Party,27.56,1,0,Check-Out,2020-01-04 -City Hotel,1,400,2016,March,4,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,38,Transient,60.33,0,0,Canceled,2018-11-02 -City Hotel,0,188,2016,October,41,20,2,10,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,70.0,179.0,0,Transient,87.83,0,0,Check-Out,2019-04-03 -City Hotel,1,149,2017,June,28,5,4,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.22,0,0,Canceled,2020-03-03 -City Hotel,0,27,2017,April,22,16,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.17,0,0,Check-Out,2020-02-01 -City Hotel,0,30,2016,November,49,5,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.88,0,1,Check-Out,2019-10-04 -Resort Hotel,0,45,2017,January,3,8,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,349.0,331.0,0,Transient-Party,40.62,1,0,Check-Out,2019-11-03 -City Hotel,0,157,2016,December,50,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,64,Transient,63.95,0,0,Check-Out,2019-02-01 -Resort Hotel,0,42,2015,December,51,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,237.0,0,Transient-Party,20.32,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2017,August,26,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,43.0,179.0,0,Transient,2.34,0,0,Check-Out,2020-06-02 -City Hotel,1,186,2016,October,43,20,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,83.96,0,3,Canceled,2019-08-04 -Resort Hotel,0,42,2015,October,44,6,2,5,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Contract,156.84,0,2,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,August,37,6,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,67.49,0,1,Check-Out,2018-06-02 -City Hotel,0,43,2016,October,44,27,1,6,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.87,0,0,Check-Out,2019-11-03 -City Hotel,1,188,2015,July,34,9,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.82,0,2,Canceled,2018-06-02 -City Hotel,0,21,2017,February,10,13,1,2,2,0.0,0,HB,AUT,Offline TA/TO,Corporate,0,0,1,A,A,1,No Deposit,27.0,331.0,0,Transient-Party,75.76,0,0,Check-Out,2020-04-02 -Resort Hotel,0,48,2015,December,53,5,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,244.0,179.0,0,Contract,51.07,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2015,October,49,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,16.0,239.0,0,Transient,34.18,1,0,Check-Out,2018-09-02 -City Hotel,0,0,2015,September,44,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,18.0,45.0,0,Transient,100.86,0,0,Check-Out,2018-07-03 -City Hotel,0,68,2016,October,45,9,1,1,1,0.0,0,BB,,Groups,Corporate,0,0,0,A,D,0,No Deposit,14.0,223.0,0,Transient-Party,98.64,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2015,September,35,30,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,75.46,1,0,Check-Out,2019-06-03 -City Hotel,0,144,2016,October,44,13,2,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,121.16,0,2,Check-Out,2019-09-03 -Resort Hotel,0,32,2017,June,27,20,0,2,2,0.0,0,HB,PRT,Complementary,TA/TO,0,0,0,E,C,0,No Deposit,187.0,179.0,0,Transient,171.8,0,0,Check-Out,2020-06-02 -City Hotel,0,237,2015,July,26,13,0,1,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,62.07,0,0,Check-Out,2019-02-01 -City Hotel,1,5,2015,September,44,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Transient,65.48,0,0,Canceled,2017-09-02 -City Hotel,1,25,2017,March,10,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,40,Transient,86.95,0,0,Canceled,2020-02-01 -City Hotel,1,12,2016,February,8,17,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,82.0,179.0,0,Transient,70.5,0,0,Canceled,2019-02-01 -Resort Hotel,0,39,2017,February,10,10,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,94.75,0,0,Check-Out,2020-01-04 -Resort Hotel,1,48,2017,July,37,30,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,125.02,0,0,Canceled,2020-06-02 -City Hotel,0,12,2017,June,25,1,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,137.18,0,1,Check-Out,2020-06-02 -City Hotel,0,9,2016,August,34,15,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient-Party,128.63,0,0,Check-Out,2019-06-03 -City Hotel,1,102,2016,February,18,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,117.97,0,0,Canceled,2018-12-03 -Resort Hotel,1,152,2017,August,4,10,1,2,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,139.49,0,1,Canceled,2019-10-04 -City Hotel,0,0,2016,February,2,28,0,2,1,0.0,0,BB,,Complementary,Direct,1,1,1,A,A,0,No Deposit,12.0,71.0,0,Transient,0.0,0,1,Check-Out,2018-11-02 -City Hotel,0,24,2016,March,10,28,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,69.88,0,1,Check-Out,2018-11-02 -Resort Hotel,0,146,2016,February,17,9,1,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,342.0,179.0,0,Transient,43.65,0,0,Check-Out,2019-01-03 -City Hotel,0,39,2016,May,17,27,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,100.79,0,2,Check-Out,2019-04-03 -City Hotel,0,31,2016,December,53,31,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,85.36,0,2,Check-Out,2019-11-03 -City Hotel,0,20,2017,January,3,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,60.48,1,1,Check-Out,2019-10-04 -Resort Hotel,0,272,2016,October,42,26,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,274.0,179.0,0,Transient-Party,79.64,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2017,January,3,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.52,0,0,Check-Out,2019-09-03 -Resort Hotel,0,395,2016,October,43,13,0,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,75.67,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,October,42,13,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-06-03 -City Hotel,0,250,2015,July,30,4,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,127.0,179.0,0,Transient-Party,82.09,0,1,Check-Out,2018-05-03 -Resort Hotel,0,97,2016,December,49,10,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,324.0,179.0,0,Transient-Party,42.5,0,0,Check-Out,2018-12-03 -City Hotel,1,260,2015,August,35,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.52,0,0,Canceled,2018-06-02 -City Hotel,0,44,2017,March,21,18,0,1,2,0.0,0,Undefined,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.37,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,March,11,10,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,D,D,0,No Deposit,13.0,172.0,0,Transient,46.95,0,0,Check-Out,2019-06-03 -Resort Hotel,1,107,2017,April,18,23,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,F,0,Non Refund,12.0,179.0,0,Transient,79.72,0,0,Canceled,2020-02-01 -Resort Hotel,0,103,2016,April,27,27,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,35.91,0,0,Check-Out,2019-03-04 -City Hotel,0,46,2017,April,21,29,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,69.0,179.0,0,Transient,61.29,0,1,Check-Out,2020-02-01 -City Hotel,0,37,2015,September,38,28,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.17,0,2,Check-Out,2018-08-03 -City Hotel,1,13,2017,March,9,29,0,3,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,63.59,0,0,Canceled,2019-09-03 -Resort Hotel,0,112,2017,May,24,27,2,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,241.0,179.0,0,Group,148.59,0,2,Check-Out,2020-02-01 -City Hotel,0,304,2016,June,23,31,1,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,D,0,Refundable,14.0,179.0,0,Transient,142.22,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2017,January,3,13,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,71.5,0,0,Canceled,2019-11-03 -Resort Hotel,0,34,2015,November,42,19,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,73.53,0,0,Check-Out,2018-08-03 -Resort Hotel,1,55,2016,January,3,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,0,Transient,62.02,0,0,Canceled,2019-02-01 -City Hotel,1,254,2016,October,43,18,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,140.57,0,2,Canceled,2019-11-03 -City Hotel,0,40,2016,April,38,14,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.52,0,2,Check-Out,2019-01-03 -City Hotel,0,40,2017,January,3,8,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,60.07,0,1,Check-Out,2019-11-03 -City Hotel,1,12,2016,June,33,15,1,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.93,0,0,No-Show,2019-06-03 -Resort Hotel,1,84,2015,July,32,6,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,E,0,No Deposit,236.0,179.0,0,Transient-Party,61.39,1,2,Canceled,2018-06-02 -City Hotel,1,126,2015,July,36,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.41,0,0,Canceled,2018-11-02 -City Hotel,1,29,2016,August,32,30,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.6,0,0,Canceled,2019-04-03 -City Hotel,0,98,2017,August,37,12,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,137.14,0,2,Check-Out,2020-07-03 -Resort Hotel,0,50,2016,June,26,15,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,116.0,1,1,Check-Out,2019-05-04 -Resort Hotel,0,30,2016,October,41,2,4,4,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,34.52,0,0,Check-Out,2019-08-04 -City Hotel,0,291,2017,June,22,21,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,72.72,0,0,Check-Out,2020-04-02 -City Hotel,1,46,2016,November,43,15,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,168.07,0,2,Canceled,2019-02-01 -Resort Hotel,0,110,2016,August,35,8,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,124.03,0,2,Check-Out,2019-06-03 -City Hotel,1,21,2016,January,4,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,40,Transient,60.18,0,0,Canceled,2018-08-03 -Resort Hotel,0,6,2017,February,11,14,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,95.0,0,Transient,27.02,0,0,Check-Out,2020-03-03 -Resort Hotel,0,188,2016,March,17,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,C,0,Refundable,14.0,222.0,0,Transient-Party,83.95,1,0,Check-Out,2019-02-01 -City Hotel,0,0,2015,November,48,2,0,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,68.82,0,0,Check-Out,2018-08-03 -City Hotel,1,6,2016,January,5,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.08,0,0,No-Show,2019-12-04 -City Hotel,1,0,2016,August,15,9,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,P,P,0,No Deposit,8.0,179.0,0,Transient,0.28,0,0,Canceled,2019-01-03 -City Hotel,0,12,2016,March,19,29,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,65.57,0,0,Check-Out,2019-03-04 -Resort Hotel,0,18,2017,March,13,15,0,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient-Party,72.45,0,0,Check-Out,2020-02-01 -City Hotel,0,6,2016,November,45,23,2,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.1,0,2,Check-Out,2019-07-04 -City Hotel,0,41,2015,September,44,30,2,3,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Contract,83.66,0,0,Check-Out,2018-08-03 -Resort Hotel,0,7,2016,November,46,19,0,3,2,1.0,0,HB,CHE,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,203.11,1,1,Check-Out,2019-09-03 -City Hotel,0,410,2017,August,33,26,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,76.27,0,0,Check-Out,2020-06-02 -City Hotel,0,92,2016,October,23,25,2,4,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,3,No Deposit,11.0,179.0,0,Transient,161.83,0,1,Check-Out,2019-07-04 -Resort Hotel,0,1,2017,May,23,29,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,79.23,0,2,Check-Out,2020-02-01 -City Hotel,1,1,2017,March,11,15,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,102.84,0,0,Canceled,2020-03-03 -City Hotel,0,3,2015,October,44,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.2,0,0,Check-Out,2018-08-03 -Resort Hotel,0,33,2017,July,32,26,2,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,149.08,0,3,Check-Out,2020-07-03 -City Hotel,1,2,2017,September,36,18,2,0,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,153.42,0,0,Canceled,2019-11-03 -City Hotel,1,52,2017,August,36,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,177.78,0,0,Canceled,2019-11-03 -Resort Hotel,0,251,2017,July,33,31,1,7,2,1.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,203.95,1,2,Canceled,2020-04-02 -Resort Hotel,0,24,2015,August,36,24,2,2,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,F,F,1,No Deposit,18.0,179.0,0,Transient,154.57,1,0,Check-Out,2018-06-02 -City Hotel,0,2,2016,June,31,8,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.94,0,2,Check-Out,2019-09-03 -Resort Hotel,0,97,2015,July,32,15,2,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient-Party,64.52,0,0,Check-Out,2018-06-02 -Resort Hotel,0,140,2016,March,12,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,279.0,179.0,0,Transient,62.15,0,0,Check-Out,2019-02-01 -City Hotel,0,97,2016,March,17,20,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,41,Transient,96.92,0,0,Check-Out,2019-12-04 -City Hotel,1,188,2017,May,21,22,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,H,1,No Deposit,12.0,179.0,75,Transient,104.47,0,2,Canceled,2020-04-02 -City Hotel,1,387,2017,May,22,22,0,4,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,309.0,179.0,0,Transient-Party,75.5,0,0,Canceled,2020-03-03 -City Hotel,0,36,2016,June,29,15,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,45.0,0,Transient,150.72,0,0,Check-Out,2019-01-03 -Resort Hotel,0,7,2016,March,17,13,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,175.74,0,0,Check-Out,2019-01-03 -City Hotel,0,89,2017,October,46,15,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,82.47,0,1,Check-Out,2019-12-04 -Resort Hotel,0,136,2017,July,25,28,1,1,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,100.3,0,0,Check-Out,2020-06-02 -City Hotel,0,57,2017,February,9,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,78.0,0,Transient-Party,137.24,0,0,Check-Out,2020-01-04 -Resort Hotel,1,58,2016,June,26,2,0,3,2,0.0,0,FB,PRT,Direct,Corporate,0,0,0,A,A,0,Non Refund,138.0,179.0,0,Transient,127.92,0,0,Canceled,2019-03-04 -Resort Hotel,1,157,2016,March,17,31,2,5,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient,53.95,0,0,Canceled,2019-02-01 -Resort Hotel,1,3,2017,February,9,8,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,60.51,0,0,Canceled,2020-03-03 -Resort Hotel,0,145,2015,October,45,18,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient-Party,34.22,0,0,Check-Out,2018-08-03 -City Hotel,0,14,2017,April,24,28,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.14,0,0,Check-Out,2020-06-02 -City Hotel,0,51,2016,October,17,20,2,5,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.62,0,0,Check-Out,2019-01-03 -Resort Hotel,0,8,2015,August,36,10,2,5,3,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient,204.78,0,1,Check-Out,2018-05-03 -Resort Hotel,0,1,2015,July,10,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,103.79,0,0,Check-Out,2018-11-02 -Resort Hotel,0,153,2017,August,26,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,77.36,0,2,Check-Out,2020-06-02 -Resort Hotel,1,38,2016,April,10,29,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,240.0,179.0,0,Transient,60.78,0,3,Canceled,2019-11-03 -Resort Hotel,0,21,2016,April,15,16,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.01,0,2,Check-Out,2019-01-03 -City Hotel,0,254,2017,July,28,2,0,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,219.12,0,3,Check-Out,2020-06-02 -City Hotel,1,1,2015,October,9,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.53,0,0,Canceled,2018-11-02 -City Hotel,1,404,2016,September,45,21,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.74,0,2,Canceled,2019-08-04 -Resort Hotel,0,0,2016,September,51,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,258.0,0,Transient,66.22,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2015,September,37,17,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,149.82,0,0,Check-Out,2018-06-02 -Resort Hotel,0,13,2016,June,26,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,70.0,0,Transient-Party,62.87,1,0,Check-Out,2019-03-04 -Resort Hotel,1,3,2016,April,50,27,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,98.52,0,0,Canceled,2019-02-01 -City Hotel,0,50,2016,October,43,24,0,2,2,0.0,0,BB,CHE,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,173.53,0,0,Check-Out,2018-09-02 -City Hotel,1,55,2016,June,26,24,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,12.0,179.0,0,Transient,120.66,0,0,Canceled,2019-02-01 -City Hotel,0,93,2016,August,31,21,0,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.86,0,1,Check-Out,2019-05-04 -Resort Hotel,0,15,2016,September,35,18,1,4,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,240.0,179.0,0,Transient-Party,89.47,0,0,Check-Out,2019-03-04 -City Hotel,1,33,2017,April,44,21,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,148.05,0,0,Canceled,2019-11-03 -City Hotel,1,1,2016,November,50,21,1,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,162.53,0,0,Canceled,2018-11-02 -Resort Hotel,1,44,2017,April,9,16,0,1,1,0.0,0,HB,BRA,Direct,Direct,0,0,0,F,F,2,No Deposit,16.0,179.0,0,Transient,149.09,0,0,Canceled,2019-12-04 -Resort Hotel,1,78,2015,July,33,21,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,134.2,0,1,No-Show,2018-06-02 -City Hotel,1,48,2016,March,17,10,2,3,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,67.18,0,1,Canceled,2018-12-03 -City Hotel,1,162,2016,October,43,30,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,8.0,179.0,0,Transient,97.19,0,2,Canceled,2019-08-04 -Resort Hotel,0,18,2015,December,35,12,2,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,89.72,0,0,Check-Out,2018-06-02 -City Hotel,0,63,2016,August,33,8,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.84,1,0,Check-Out,2018-08-03 -Resort Hotel,0,49,2015,October,53,27,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,178.0,179.0,0,Transient-Party,91.7,0,0,Check-Out,2018-12-03 -City Hotel,0,73,2017,May,21,30,1,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,171.68,0,1,Check-Out,2020-03-03 -City Hotel,1,167,2017,August,39,2,0,1,3,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,7.0,179.0,0,Transient,135.26,0,0,Canceled,2020-06-02 -City Hotel,0,47,2017,April,21,9,0,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,124.03,0,2,Check-Out,2020-04-02 -City Hotel,0,224,2015,July,43,27,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.2,0,2,Check-Out,2018-08-03 -City Hotel,0,0,2016,December,50,25,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,83.5,0,1,Check-Out,2018-11-02 -Resort Hotel,1,102,2015,December,53,2,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,68.45,0,0,Canceled,2019-10-04 -Resort Hotel,1,100,2017,June,33,16,0,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,113.6,0,1,Canceled,2019-12-04 -Resort Hotel,1,132,2017,December,27,4,2,4,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,75,Transient-Party,74.0,0,0,Check-Out,2019-11-03 -Resort Hotel,1,95,2015,December,51,21,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,66.3,0,0,Canceled,2018-06-02 -Resort Hotel,0,40,2016,November,43,20,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,14.0,241.0,0,Transient,34.04,1,1,Check-Out,2018-09-02 -Resort Hotel,1,110,2015,December,53,8,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,40.82,0,0,Canceled,2018-12-03 -City Hotel,1,37,2015,June,33,16,0,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,74.66,0,0,No-Show,2018-06-02 -Resort Hotel,0,4,2016,August,32,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,D,D,0,No Deposit,174.0,179.0,0,Group,47.05,0,1,Check-Out,2019-06-03 -Resort Hotel,0,17,2016,December,53,28,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,71.15,1,0,Check-Out,2019-12-04 -Resort Hotel,0,249,2016,March,46,30,1,5,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,D,1,No Deposit,281.0,179.0,0,Transient-Party,37.62,0,0,Check-Out,2019-11-03 -City Hotel,1,98,2015,August,37,6,2,2,2,0.0,0,HB,AUT,Online TA,Undefined,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Group,121.45,0,0,Canceled,2018-08-03 -City Hotel,1,11,2017,January,15,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,102.15,0,0,Canceled,2019-09-03 -City Hotel,0,1,2017,June,25,23,3,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.43,0,0,Check-Out,2020-06-02 -City Hotel,0,250,2017,January,4,27,1,0,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,102.49,0,0,Check-Out,2020-03-03 -City Hotel,1,15,2015,October,42,15,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,68.23,0,0,Canceled,2018-08-03 -City Hotel,0,79,2017,July,31,23,2,5,2,2.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,125.71,0,3,Check-Out,2019-05-04 -Resort Hotel,0,155,2016,July,30,28,2,2,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,108.84,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2017,May,10,21,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,251.0,179.0,0,Transient,185.21,1,0,Check-Out,2020-06-02 -City Hotel,0,264,2016,October,41,8,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,312.0,179.0,0,Transient-Party,106.55,0,0,Check-Out,2019-08-04 -Resort Hotel,0,3,2016,December,52,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,0,No Deposit,14.0,81.0,0,Transient,42.8,0,0,Check-Out,2018-12-03 -City Hotel,1,83,2016,June,19,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,125.45,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,March,19,14,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-04-03 -City Hotel,1,279,2015,September,34,5,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.41,0,0,Canceled,2018-08-03 -City Hotel,0,38,2017,May,21,15,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.42,0,1,Check-Out,2020-04-02 -City Hotel,0,34,2016,July,38,6,2,5,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.21,0,1,Check-Out,2019-05-04 -City Hotel,1,0,2016,July,32,4,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,103.38,0,1,Canceled,2019-05-04 -City Hotel,0,3,2017,August,36,12,0,2,2,0.0,0,BB,USA,Direct,Direct,1,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,92.49,0,0,Check-Out,2018-09-02 -City Hotel,1,36,2016,March,10,16,0,1,1,0.0,0,BB,,Aviation,Corporate,1,1,1,A,E,0,No Deposit,15.0,176.0,0,Transient,78.49,0,0,Canceled,2018-12-03 -Resort Hotel,0,45,2016,December,51,9,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,86.94,0,3,Check-Out,2019-11-03 -Resort Hotel,0,108,2016,June,26,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,131.21,0,1,Check-Out,2019-05-04 -City Hotel,1,159,2016,April,17,10,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,132.0,179.0,0,Transient,73.1,0,0,Canceled,2019-03-04 -City Hotel,0,4,2017,August,35,12,0,4,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,177.0,179.0,0,Transient,131.7,0,0,Check-Out,2020-06-02 -City Hotel,1,106,2015,March,43,5,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,71.18,0,0,Canceled,2018-11-02 -Resort Hotel,1,158,2016,March,17,31,2,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,26.0,223.0,0,Transient-Party,79.79,0,0,Canceled,2019-02-01 -Resort Hotel,1,16,2016,May,23,28,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,116.35,1,1,Canceled,2020-02-01 -City Hotel,1,252,2015,August,38,14,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,71.03,0,0,Canceled,2017-10-03 -City Hotel,1,13,2015,September,38,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,13.0,45.0,0,Transient,59.57,0,0,Canceled,2018-06-02 -City Hotel,0,12,2017,March,21,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,33.0,229.0,0,Transient,86.88,0,0,Canceled,2019-02-01 -Resort Hotel,0,157,2016,March,21,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,2,Refundable,15.0,223.0,0,Transient-Party,99.38,0,0,Check-Out,2019-03-04 -Resort Hotel,0,190,2016,October,37,6,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Transient-Party,39.27,0,0,Check-Out,2019-03-04 -City Hotel,0,198,2016,March,44,14,2,1,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,90.95,0,0,Check-Out,2019-06-03 -City Hotel,0,100,2015,August,20,27,1,2,2,0.0,0,FB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Group,110.97,0,0,Check-Out,2018-08-03 -City Hotel,1,419,2016,April,18,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,98.58,0,0,Canceled,2018-11-02 -Resort Hotel,0,44,2016,February,17,5,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,97.0,179.0,0,Transient,35.44,0,0,Check-Out,2018-12-03 -City Hotel,0,12,2016,January,5,10,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,64.51,0,1,Check-Out,2019-10-04 -City Hotel,0,51,2017,August,50,31,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.04,0,1,Check-Out,2020-01-04 -City Hotel,1,0,2016,September,37,22,0,4,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.63,0,0,Canceled,2019-05-04 -City Hotel,1,0,2015,August,37,10,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,111.22,0,0,Canceled,2018-10-03 -Resort Hotel,1,20,2015,October,46,11,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,70.54,0,0,Canceled,2018-09-02 -City Hotel,0,79,2015,October,44,19,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,88.36,0,0,Check-Out,2018-07-03 -Resort Hotel,0,89,2016,June,28,5,3,6,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,11.0,179.0,75,Transient,122.04,0,3,Check-Out,2019-07-04 -Resort Hotel,0,216,2015,December,44,24,2,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,48.88,0,0,Check-Out,2018-12-03 -Resort Hotel,0,50,2017,March,11,13,1,3,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,37.22,0,0,Check-Out,2019-10-04 -City Hotel,0,3,2016,May,27,12,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,B,0,No Deposit,18.0,82.0,0,Transient,83.15,0,0,Check-Out,2020-03-03 -Resort Hotel,0,142,2015,September,42,8,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,100.0,179.0,63,Contract,58.47,0,0,Check-Out,2018-08-03 -City Hotel,1,41,2016,August,40,16,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,89.99,0,0,Canceled,2019-10-04 -City Hotel,1,33,2016,January,8,16,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,71.28,0,0,No-Show,2018-11-02 -Resort Hotel,0,3,2017,May,20,28,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,I,0,No Deposit,79.0,179.0,0,Transient-Party,127.25,0,0,Check-Out,2020-04-02 -Resort Hotel,0,91,2015,October,36,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,240.0,179.0,0,Group,65.55,0,1,Check-Out,2018-06-02 -Resort Hotel,0,15,2016,February,8,31,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,68.34,0,0,Check-Out,2019-02-01 -Resort Hotel,0,18,2017,March,10,15,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,158.0,179.0,75,Transient-Party,123.18,1,0,Check-Out,2020-04-02 -City Hotel,0,20,2015,November,46,29,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,146.93,0,2,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,June,45,27,0,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,65.06,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,June,25,7,3,10,1,0.0,0,FB,PRT,Aviation,Corporate,0,0,1,A,C,0,No Deposit,178.0,186.0,0,Transient,108.54,0,0,Check-Out,2020-04-02 -City Hotel,0,79,2016,July,31,9,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.22,0,1,Check-Out,2018-06-02 -City Hotel,0,13,2017,May,21,27,0,1,2,0.0,0,BB,AUT,Direct,TA/TO,0,0,0,G,F,0,No Deposit,11.0,179.0,0,Transient,151.78,0,0,Check-Out,2020-03-03 -City Hotel,0,4,2017,May,21,8,1,0,2,0.0,0,SC,FRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,91.65,0,0,Check-Out,2020-03-03 -City Hotel,1,300,2017,June,27,27,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,82.08,0,0,Canceled,2020-02-01 -City Hotel,1,297,2015,July,27,5,0,5,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,109.4,0,0,Canceled,2020-06-02 -City Hotel,0,265,2017,April,22,6,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,32.0,179.0,0,Contract,78.51,0,0,Check-Out,2020-03-03 -City Hotel,0,4,2016,February,11,28,0,4,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.59,0,0,Check-Out,2019-10-04 -City Hotel,0,24,2016,March,10,24,2,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,58.52,0,3,Check-Out,2018-12-03 -City Hotel,0,15,2015,August,34,4,0,2,2,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,84.51,0,1,Check-Out,2018-06-02 -City Hotel,0,146,2017,May,23,31,0,3,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,165.92,0,2,Check-Out,2020-06-02 -City Hotel,1,44,2017,June,23,5,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.37,0,0,No-Show,2020-07-03 -Resort Hotel,0,43,2016,April,17,9,2,5,2,1.0,0,HB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,117.95,1,2,Check-Out,2019-06-03 -Resort Hotel,1,112,2016,July,22,19,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,72.94,0,2,Canceled,2019-02-01 -Resort Hotel,0,101,2016,October,27,27,2,10,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,68.4,0,1,Check-Out,2019-08-04 -Resort Hotel,0,102,2016,May,42,20,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,217.64,0,0,Check-Out,2019-03-04 -City Hotel,1,444,2015,September,38,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,82.97,0,0,Canceled,2018-07-03 -City Hotel,1,105,2017,May,27,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,102.19,0,0,Canceled,2020-06-02 -Resort Hotel,1,42,2015,February,12,5,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,209.0,179.0,0,Transient,62.7,0,0,Canceled,2019-01-03 -City Hotel,0,188,2017,July,38,21,2,5,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,84.3,0,0,Check-Out,2020-06-02 -City Hotel,0,6,2017,January,3,14,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,13.0,179.0,0,Transient,84.24,1,0,Check-Out,2019-09-03 -City Hotel,0,1,2016,December,46,30,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.37,0,2,Check-Out,2019-08-04 -City Hotel,1,258,2017,July,28,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,239.0,179.0,0,Transient,127.28,0,1,Canceled,2020-06-02 -City Hotel,1,40,2016,August,35,23,0,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,117.03,0,1,Canceled,2019-01-03 -City Hotel,1,253,2016,July,32,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,144.7,0,0,Canceled,2018-06-02 -City Hotel,1,54,2016,January,8,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,61.71,0,0,Canceled,2018-10-03 -City Hotel,1,103,2017,March,16,28,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.0,0,0,Canceled,2019-09-03 -City Hotel,0,191,2016,November,42,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,65.48,0,1,Check-Out,2019-10-04 -City Hotel,1,91,2017,April,21,10,2,1,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,85.88,0,0,Canceled,2020-01-04 -City Hotel,0,22,2016,October,44,16,0,2,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,126.0,0,0,Check-Out,2019-04-03 -Resort Hotel,0,2,2016,July,26,26,3,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,I,0,No Deposit,241.0,179.0,0,Transient,229.25,1,0,Check-Out,2019-05-04 -City Hotel,0,161,2016,April,15,31,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,108.29,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,January,2,15,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,86.0,0,Transient,34.62,1,0,Check-Out,2019-12-04 -Resort Hotel,1,256,2016,October,44,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,181.0,179.0,0,Transient,67.88,0,2,Canceled,2019-10-04 -City Hotel,1,309,2015,August,39,30,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,113.81,0,0,Check-Out,2018-05-03 -Resort Hotel,0,117,2017,April,23,7,2,7,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,G,A,0,No Deposit,358.0,179.0,0,Transient,125.69,0,1,Check-Out,2020-03-03 -Resort Hotel,0,36,2016,May,21,26,2,1,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,107.0,179.0,0,Transient,81.17,0,0,Check-Out,2019-02-01 -City Hotel,0,147,2015,December,53,30,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,103.71,0,1,Check-Out,2018-10-03 -City Hotel,0,40,2016,March,16,16,0,3,1,0.0,0,BB,SWE,Online TA,Direct,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,94.21,0,1,Check-Out,2019-02-01 -City Hotel,0,195,2016,October,41,23,0,3,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,D,F,1,No Deposit,10.0,179.0,0,Transient-Party,105.64,0,3,Check-Out,2019-08-04 -City Hotel,0,0,2016,June,28,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,40.65,0,0,Check-Out,2019-06-03 -City Hotel,0,273,2016,August,37,20,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,101.6,0,0,Check-Out,2019-06-03 -City Hotel,0,196,2016,September,46,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,11.0,179.0,0,Transient,62.71,0,3,Check-Out,2019-08-04 -Resort Hotel,1,29,2015,July,36,2,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,41.03,0,0,Canceled,2018-09-02 -Resort Hotel,0,93,2016,June,25,16,0,1,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient-Party,76.05,0,1,Check-Out,2019-06-03 -Resort Hotel,1,117,2017,December,53,27,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,H,0,No Deposit,241.0,179.0,0,Transient,44.61,0,2,Canceled,2019-11-03 -Resort Hotel,0,0,2015,August,42,15,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,250.0,179.0,0,Transient,136.74,1,0,Check-Out,2018-07-03 -City Hotel,0,0,2016,September,44,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient-Party,62.58,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,August,33,30,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,L,F,0,No Deposit,17.0,179.0,0,Transient,154.65,1,0,Check-Out,2018-06-02 -City Hotel,0,14,2015,December,50,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,58.34,0,0,Check-Out,2018-08-03 -City Hotel,1,147,2017,July,31,2,0,6,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,F,0,No Deposit,13.0,179.0,0,Transient,220.49,0,0,Canceled,2020-06-02 -Resort Hotel,0,25,2016,July,31,30,2,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,237.0,179.0,0,Transient-Party,252.0,1,1,Check-Out,2020-06-02 -City Hotel,0,12,2017,January,53,18,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.01,1,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2017,June,27,31,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,119.65,1,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,February,7,9,2,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,194.0,331.0,0,Transient,42.09,0,0,Check-Out,2020-04-02 -City Hotel,1,52,2016,January,4,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,41,Transient,92.92,0,0,Canceled,2018-10-03 -Resort Hotel,1,25,2016,December,53,9,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,46.84,0,1,Canceled,2018-11-02 -City Hotel,0,92,2015,December,53,27,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,162.26,0,1,Check-Out,2019-01-03 -Resort Hotel,1,269,2015,July,37,9,0,3,2,0.0,0,FB,ESP,Groups,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient-Party,128.16,0,0,Canceled,2018-04-02 -Resort Hotel,0,0,2016,January,3,16,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,12.0,81.0,0,Transient,33.04,0,1,Canceled,2018-12-03 -City Hotel,0,105,2016,March,27,28,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,70.67,0,1,Check-Out,2019-07-04 -City Hotel,0,0,2017,June,26,21,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,201.0,0,Transient-Party,110.97,0,0,Check-Out,2020-06-02 -Resort Hotel,0,11,2016,October,42,5,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.71,0,2,Check-Out,2019-09-03 -Resort Hotel,0,5,2017,March,17,12,1,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,61.11,1,1,Check-Out,2020-02-01 -Resort Hotel,0,91,2015,August,49,30,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,239.81,1,2,Check-Out,2018-06-02 -Resort Hotel,0,51,2016,June,18,27,0,2,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient-Party,88.71,0,0,Check-Out,2019-02-01 -Resort Hotel,0,251,2016,July,31,21,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,89.14,0,0,Check-Out,2019-03-04 -City Hotel,0,307,2017,August,4,12,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.84,0,1,Check-Out,2019-11-03 -Resort Hotel,0,15,2017,August,36,6,0,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,246.18,0,0,Check-Out,2020-06-02 -City Hotel,0,103,2015,October,43,19,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Contract,64.18,0,0,Check-Out,2018-08-03 -City Hotel,0,46,2016,March,16,2,1,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,98.2,0,0,Canceled,2019-01-03 -City Hotel,1,82,2016,October,50,29,2,1,1,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,42,Transient,122.47,0,0,No-Show,2019-12-04 -City Hotel,1,260,2016,August,49,9,2,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,136.24,0,0,Canceled,2018-05-03 -Resort Hotel,0,9,2015,October,44,6,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,119.11,1,2,Check-Out,2018-06-02 -City Hotel,1,397,2016,January,50,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,62.63,0,0,Canceled,2019-10-04 -City Hotel,0,244,2016,June,27,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient-Party,73.02,0,0,Check-Out,2019-05-04 -Resort Hotel,0,97,2016,April,17,6,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,242.0,179.0,0,Transient,34.86,0,2,Check-Out,2019-02-01 -City Hotel,1,27,2016,February,10,24,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,64.16,0,1,Canceled,2019-02-01 -Resort Hotel,0,70,2017,March,14,6,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,198.02,0,2,Check-Out,2020-03-03 -Resort Hotel,1,1,2016,December,50,10,0,1,1,0.0,0,FB,PRT,Groups,Direct,1,0,0,A,A,0,Non Refund,359.0,179.0,0,Transient,74.9,0,0,Check-Out,2019-01-03 -Resort Hotel,1,64,2016,January,8,2,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Non Refund,243.0,179.0,0,Transient,63.15,0,0,Canceled,2018-10-03 -Resort Hotel,0,49,2016,June,27,17,1,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,G,2,No Deposit,12.0,179.0,0,Transient,146.86,1,0,Check-Out,2020-03-03 -City Hotel,1,52,2017,May,17,24,1,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,97.05,0,0,Canceled,2020-01-04 -Resort Hotel,1,42,2017,March,12,28,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,13.0,245.0,0,Transient,38.82,0,0,Canceled,2019-12-04 -City Hotel,0,147,2017,April,20,14,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Transient,97.1,0,0,Check-Out,2020-03-03 -City Hotel,1,107,2017,March,24,9,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,1.69,0,0,Canceled,2020-01-04 -Resort Hotel,1,54,2015,December,49,17,0,4,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,216.0,179.0,0,Transient-Party,62.75,0,0,Canceled,2018-06-02 -Resort Hotel,0,5,2015,December,53,30,0,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,60.26,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,March,45,29,0,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient-Party,39.85,0,0,Check-Out,2019-01-03 -Resort Hotel,0,122,2016,December,50,20,0,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,187.0,179.0,0,Transient-Party,96.81,0,0,Check-Out,2019-10-04 -City Hotel,0,3,2016,October,44,9,0,2,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,171.0,0,Transient,109.28,0,0,Check-Out,2019-08-04 -City Hotel,1,11,2017,February,11,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,103.19,0,0,Canceled,2019-12-04 -City Hotel,0,7,2016,June,24,6,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,113.25,0,1,Check-Out,2019-03-04 -City Hotel,1,138,2017,January,9,2,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,101.87,0,0,Canceled,2019-10-04 -City Hotel,1,104,2016,February,9,6,1,5,3,2.0,0,BB,NLD,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,155.21,0,1,Canceled,2018-11-02 -City Hotel,0,17,2016,October,44,2,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,86.62,0,0,Check-Out,2019-11-03 -Resort Hotel,0,62,2016,February,8,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,G,0,No Deposit,247.0,179.0,0,Transient,64.67,1,0,Check-Out,2018-11-02 -Resort Hotel,1,76,2016,December,53,5,1,2,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,80.19,0,2,Canceled,2019-10-04 -City Hotel,0,113,2016,June,27,5,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,134.65,0,3,Check-Out,2019-03-04 -City Hotel,0,39,2016,December,49,21,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,90.05,0,0,Check-Out,2019-11-03 -Resort Hotel,1,295,2015,October,44,15,1,0,2,0.0,0,BB,,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,37.86,0,0,Canceled,2018-09-02 -City Hotel,1,156,2016,July,31,4,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,10.0,179.0,0,Transient,173.26,0,0,Canceled,2019-02-01 -City Hotel,1,39,2015,November,49,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,B,0,Non Refund,1.0,179.0,0,Contract,61.05,0,0,Canceled,2017-11-02 -City Hotel,1,43,2017,March,15,14,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Transient,106.27,0,2,Canceled,2019-02-01 -City Hotel,0,149,2016,May,37,29,0,2,2,0.0,0,SC,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,138.67,0,1,Check-Out,2019-07-04 -City Hotel,1,69,2017,April,18,27,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,132.22,0,0,Canceled,2019-10-04 -City Hotel,0,6,2016,October,44,13,1,0,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,A,1,No Deposit,195.0,331.0,0,Transient,73.66,0,0,Check-Out,2019-09-03 -City Hotel,1,103,2015,September,35,24,2,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Contract,63.25,0,0,Canceled,2018-07-03 -City Hotel,0,3,2015,January,9,30,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,60.0,0,0,Check-Out,2018-12-03 -Resort Hotel,0,17,2015,August,37,28,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,16.0,179.0,0,Transient,60.26,0,0,Check-Out,2019-03-04 -Resort Hotel,1,112,2017,August,32,24,2,5,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,218.06,0,0,Canceled,2020-05-03 -Resort Hotel,1,298,2017,June,36,16,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.5,0,0,Canceled,2020-06-02 -Resort Hotel,1,49,2016,October,45,28,1,1,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,2019-02-01 -City Hotel,0,47,2017,April,17,10,2,5,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,204.3,0,2,Check-Out,2020-02-01 -Resort Hotel,0,42,2016,July,33,30,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,177.0,179.0,0,Transient,233.92,0,2,Check-Out,2019-05-04 -City Hotel,1,392,2016,September,45,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,86.58,0,0,Canceled,2018-08-03 -City Hotel,0,158,2017,August,23,29,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-06-02 -Resort Hotel,1,50,2015,December,36,25,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,62.27,0,0,Canceled,2018-09-02 -City Hotel,1,22,2017,July,9,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,Non Refund,35.0,179.0,0,Transient,87.81,0,0,No-Show,2020-03-03 -Resort Hotel,0,9,2016,June,27,21,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,190.0,179.0,0,Contract,60.43,0,0,Check-Out,2019-01-03 -Resort Hotel,0,15,2015,October,48,16,0,5,2,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,63.45,0,0,Check-Out,2018-08-03 -City Hotel,0,222,2015,August,37,10,0,1,1,2.0,0,BB,ITA,Online TA,Direct,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient-Party,231.37,0,0,Check-Out,2018-08-03 -City Hotel,1,49,2017,May,17,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,62.4,0,0,Canceled,2019-02-01 -City Hotel,1,4,2015,July,39,31,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,F,F,0,No Deposit,11.0,179.0,0,Transient,177.85,0,0,Canceled,2018-08-03 -City Hotel,1,6,2015,July,30,22,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,F,A,0,No Deposit,11.0,179.0,0,Transient,104.9,0,1,No-Show,2018-05-03 -City Hotel,1,59,2017,June,22,2,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.59,0,1,Canceled,2020-02-01 -Resort Hotel,0,119,2015,December,50,30,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,98.65,0,1,Check-Out,2018-09-02 -City Hotel,0,3,2016,June,33,28,0,2,2,0.0,0,SC,GBR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,84.36,0,1,Check-Out,2019-11-03 -City Hotel,0,135,2017,December,50,8,2,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,102.75,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2017,December,36,29,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,33.71,0,2,Check-Out,2019-12-04 -City Hotel,0,3,2015,October,46,22,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient-Party,71.64,0,0,Check-Out,2018-09-02 -Resort Hotel,1,31,2015,October,38,27,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.8,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,March,15,6,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.62,1,0,Check-Out,2018-12-03 -City Hotel,0,159,2016,July,32,15,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,139.07,0,1,Check-Out,2020-02-01 -Resort Hotel,1,40,2015,October,41,13,2,7,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,93.91,0,0,Canceled,2018-08-03 -Resort Hotel,0,15,2017,June,26,21,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,124.64,0,1,Check-Out,2020-02-01 -City Hotel,1,104,2016,December,44,18,2,1,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient-Party,97.79,0,0,Canceled,2019-11-03 -City Hotel,0,244,2016,September,37,15,2,7,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,A,2,No Deposit,32.0,179.0,0,Transient-Party,78.98,0,0,Check-Out,2019-05-04 -Resort Hotel,1,304,2016,October,42,27,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,87.18,0,0,Canceled,2019-08-04 -City Hotel,0,0,2016,October,42,13,1,1,2,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,175.0,0,Transient,56.36,0,0,Check-Out,2019-08-04 -City Hotel,1,17,2017,June,27,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,118.5,0,0,Canceled,2020-04-02 -City Hotel,0,2,2017,January,4,9,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,127.08,0,1,Check-Out,2019-11-03 -Resort Hotel,1,207,2017,April,16,24,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,247.0,179.0,0,Transient,95.1,0,1,Canceled,2019-02-01 -City Hotel,0,40,2017,June,33,13,0,1,2,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.54,0,0,Check-Out,2020-07-03 -City Hotel,0,352,2015,October,43,7,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,119.95,0,1,Check-Out,2018-08-03 -Resort Hotel,0,271,2015,July,35,8,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient-Party,136.53,0,0,Check-Out,2020-06-02 -City Hotel,1,37,2017,June,21,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,58.0,179.0,0,Transient,78.91,0,0,Canceled,2020-04-02 -Resort Hotel,0,55,2016,October,43,6,2,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient-Party,102.42,0,2,Check-Out,2019-05-04 -City Hotel,0,10,2017,March,32,20,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,194.02,0,1,Check-Out,2020-03-03 -City Hotel,0,31,2016,July,31,9,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,99.96,0,1,Check-Out,2019-06-03 -City Hotel,1,0,2017,August,37,16,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,183.76,0,1,Check-Out,2020-07-03 -City Hotel,0,33,2017,April,21,15,0,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,F,0,No Deposit,28.0,179.0,0,Transient,127.74,0,0,Check-Out,2020-03-03 -Resort Hotel,0,170,2017,April,22,30,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,H,0,No Deposit,245.0,179.0,0,Transient,139.58,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2015,October,44,9,2,0,3,0.0,0,BB,,Undefined,Corporate,1,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,148.61,0,1,Check-Out,2019-12-04 -City Hotel,0,14,2015,November,50,21,1,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,C,2,No Deposit,16.0,331.0,0,Transient-Party,63.12,0,0,Check-Out,2019-11-03 -City Hotel,0,50,2017,February,9,27,2,0,2,0.0,0,BB,BRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,85.39,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2015,September,45,15,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2017,July,30,18,0,2,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.98,0,1,Check-Out,2020-05-03 -City Hotel,0,45,2016,October,17,25,2,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,210.5,0,0,Check-Out,2019-03-04 -City Hotel,0,5,2017,February,11,29,0,1,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,211.0,179.0,0,Transient-Party,75.57,1,0,Check-Out,2019-11-03 -City Hotel,1,152,2017,June,27,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,154.0,179.0,0,Transient,131.36,0,0,Canceled,2020-03-03 -City Hotel,0,93,2016,September,41,10,0,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,135.7,0,0,Check-Out,2019-10-04 -Resort Hotel,1,91,2015,December,50,17,0,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,61.95,0,0,Canceled,2018-05-03 -City Hotel,0,20,2016,June,8,25,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.5,0,1,Check-Out,2019-01-03 -City Hotel,0,13,2017,July,30,24,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,132.28,1,0,Check-Out,2020-03-03 -City Hotel,1,131,2017,July,25,6,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,0,No Deposit,13.0,179.0,0,Transient,103.35,0,0,Canceled,2020-02-01 -Resort Hotel,0,2,2017,July,26,5,1,0,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,253.0,179.0,0,Transient,130.87,1,0,Check-Out,2020-06-02 -City Hotel,0,92,2017,July,31,9,2,4,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.62,0,1,Check-Out,2020-06-02 -City Hotel,1,264,2015,September,34,22,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,44.9,0,0,Canceled,2017-11-02 -Resort Hotel,0,48,2017,August,37,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,115.43,1,1,Check-Out,2020-06-02 -City Hotel,0,33,2015,November,44,24,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,66.68,0,0,Check-Out,2018-08-03 -Resort Hotel,0,96,2017,July,35,5,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,122.39,1,2,Check-Out,2020-01-04 -City Hotel,0,18,2017,June,26,13,1,2,1,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,78.56,0,1,Check-Out,2020-04-02 -Resort Hotel,0,144,2016,December,53,31,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,85.0,179.0,0,Transient,70.68,0,0,Check-Out,2019-11-03 -Resort Hotel,0,51,2017,June,29,2,2,7,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,141.72,1,1,Check-Out,2019-11-03 -City Hotel,1,215,2015,July,35,14,0,2,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2018-07-03 -City Hotel,1,31,2017,April,16,22,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,74.5,0,0,Canceled,2020-04-02 -City Hotel,1,51,2016,July,32,23,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,204.18,0,0,Canceled,2019-03-04 -City Hotel,0,25,2015,July,31,20,0,3,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient-Party,79.28,0,0,Check-Out,2018-06-02 -City Hotel,0,163,2017,June,25,18,3,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,102.2,0,0,Check-Out,2020-03-03 -Resort Hotel,0,63,2017,July,27,24,0,4,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,116.86,1,1,Check-Out,2020-05-03 -City Hotel,0,24,2015,December,53,7,2,3,1,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,10.0,179.0,0,Contract,106.9,0,0,Check-Out,2018-05-03 -Resort Hotel,0,1,2016,March,12,15,0,3,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,15.0,225.0,0,Transient-Party,38.13,0,0,Check-Out,2020-03-03 -City Hotel,1,29,2015,July,35,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,70.21,0,1,No-Show,2018-06-02 -Resort Hotel,0,142,2017,May,20,13,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,137.85,0,3,Check-Out,2019-12-04 -City Hotel,0,50,2016,September,35,8,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.64,0,2,Check-Out,2019-09-03 -City Hotel,1,57,2015,October,47,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.93,0,0,Canceled,2018-08-03 -City Hotel,1,24,2015,July,33,25,2,4,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,196.94,0,0,Canceled,2018-06-02 -City Hotel,0,197,2017,August,21,15,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,128.78,0,1,Check-Out,2020-06-02 -City Hotel,0,34,2016,July,27,2,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,183.01,0,1,Check-Out,2019-06-03 -City Hotel,1,90,2015,July,30,23,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,92.17,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2017,March,17,15,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,2,No Deposit,244.0,179.0,0,Transient,194.53,1,1,Check-Out,2020-04-02 -City Hotel,0,52,2017,February,9,14,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,111.54,0,1,Check-Out,2020-02-01 -Resort Hotel,0,1,2016,June,16,23,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,1,No Deposit,193.0,179.0,0,Transient,115.74,0,0,Check-Out,2019-03-04 -Resort Hotel,0,39,2015,December,53,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,42.08,0,1,Check-Out,2018-12-03 -City Hotel,1,256,2015,July,32,21,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,A,D,1,No Deposit,2.0,179.0,0,Contract,63.09,0,0,Canceled,2017-11-02 -Resort Hotel,0,46,2017,May,16,18,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,294.0,179.0,0,Transient,67.23,0,0,Check-Out,2020-03-03 -City Hotel,0,3,2016,September,43,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,10.0,179.0,0,Group,0.03,0,1,Check-Out,2018-11-02 -City Hotel,0,98,2015,August,32,21,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,94.82,0,2,Check-Out,2018-06-02 -City Hotel,0,235,2015,September,33,26,4,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.51,0,0,Check-Out,2018-08-03 -Resort Hotel,0,180,2015,September,44,7,0,4,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,F,F,0,No Deposit,247.0,179.0,0,Transient,157.9,0,0,Check-Out,2018-05-03 -Resort Hotel,0,140,2016,November,51,13,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,E,0,No Deposit,276.0,179.0,75,Transient-Party,78.81,0,0,Check-Out,2019-11-03 -City Hotel,0,14,2016,August,38,16,2,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,216.1,0,3,Check-Out,2019-09-03 -Resort Hotel,0,156,2016,December,36,25,2,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,187.12,1,3,Check-Out,2019-11-03 -City Hotel,1,65,2015,September,42,30,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,75.55,0,0,Canceled,2018-08-03 -Resort Hotel,0,319,2017,May,21,6,4,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Contract,65.37,1,0,Check-Out,2020-03-03 -City Hotel,0,42,2017,March,15,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.43,0,2,Check-Out,2020-03-03 -Resort Hotel,1,61,2015,September,38,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,238.0,179.0,0,Transient,43.81,0,0,Canceled,2018-08-03 -City Hotel,0,165,2016,June,27,22,2,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,1,0,0,E,E,1,No Deposit,80.0,179.0,0,Transient,100.03,0,0,Check-Out,2019-05-04 -Resort Hotel,0,32,2015,July,32,6,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient,123.8,1,0,Check-Out,2019-06-03 -Resort Hotel,0,246,2016,August,33,2,1,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,242.0,179.0,0,Transient,74.09,0,0,Check-Out,2019-04-03 -City Hotel,0,9,2017,June,26,28,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.46,0,0,Check-Out,2020-04-02 -Resort Hotel,0,282,2016,August,45,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Contract,110.77,0,1,Check-Out,2019-05-04 -Resort Hotel,0,267,2016,June,35,6,3,10,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,100.02,0,0,Check-Out,2019-05-04 -City Hotel,0,3,2017,May,10,9,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,75.65,0,0,Check-Out,2020-03-03 -City Hotel,0,5,2016,December,5,25,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,115.07,0,0,Check-Out,2019-11-03 -City Hotel,0,47,2016,May,25,28,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,120.11,0,0,Check-Out,2019-03-04 -Resort Hotel,1,293,2017,June,27,29,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,167.0,179.0,0,Transient,85.38,0,0,Canceled,2020-05-03 -City Hotel,1,3,2015,December,51,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,Non Refund,17.0,63.0,0,Transient,61.47,0,0,Canceled,2018-06-02 -Resort Hotel,0,8,2016,July,26,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,77.34,0,0,Check-Out,2019-05-04 -City Hotel,1,114,2016,June,28,9,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,93.74,0,0,Canceled,2019-01-03 -City Hotel,0,97,2017,May,27,13,1,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.28,0,2,Check-Out,2020-02-01 -City Hotel,1,257,2015,November,44,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Transient,97.18,0,0,Canceled,2018-08-03 -Resort Hotel,0,277,2016,October,44,20,1,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,82.5,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2015,October,44,20,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,C,0,No Deposit,15.0,243.0,0,Transient-Party,34.71,0,1,Check-Out,2018-09-02 -City Hotel,0,42,2017,June,27,13,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.44,0,2,Check-Out,2020-02-01 -City Hotel,1,281,2015,November,37,20,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,46.69,0,0,Canceled,2018-07-03 -Resort Hotel,1,13,2015,December,53,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,100.67,0,0,Canceled,2018-11-02 -City Hotel,0,101,2015,September,37,21,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient-Party,197.32,0,0,Check-Out,2018-07-03 -City Hotel,1,117,2017,April,17,18,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,17.0,179.0,0,Transient,113.99,0,0,Canceled,2019-11-03 -City Hotel,0,146,2017,January,4,30,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,70.21,0,0,Check-Out,2019-11-03 -City Hotel,0,231,2017,June,24,27,2,4,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.97,0,1,Check-Out,2020-05-03 -City Hotel,0,35,2017,August,34,30,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,126.4,0,1,Check-Out,2020-07-03 -City Hotel,0,146,2017,July,27,13,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,199.75,0,1,Check-Out,2020-06-02 -City Hotel,0,18,2017,June,33,12,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,122.06,0,1,Check-Out,2020-07-03 -City Hotel,0,20,2015,October,43,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,110.16,0,0,Check-Out,2019-09-03 -Resort Hotel,1,12,2017,February,11,21,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,16.0,83.0,0,Transient,30.63,0,0,Canceled,2019-01-03 -City Hotel,1,34,2017,February,10,18,0,1,1,0.0,0,BB,ESP,Undefined,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,59.54,0,0,Canceled,2020-04-02 -City Hotel,0,14,2016,October,42,5,1,2,1,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.23,0,0,Check-Out,2019-07-04 -Resort Hotel,0,28,2015,December,51,18,2,2,2,0.0,0,Undefined,POL,Groups,TA/TO,0,0,0,A,A,3,No Deposit,378.0,179.0,0,Transient-Party,78.5,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2016,March,15,24,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,I,1,No Deposit,239.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -City Hotel,1,40,2016,November,49,6,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.81,0,0,Canceled,2019-09-03 -Resort Hotel,0,15,2017,April,16,21,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,C,I,1,No Deposit,10.0,179.0,0,Transient-Party,2.35,0,2,Check-Out,2019-12-04 -City Hotel,0,61,2017,April,18,24,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,111.65,0,0,Check-Out,2019-01-03 -City Hotel,1,69,2015,August,30,14,2,1,2,0.0,0,BB,,Online TA,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,75,Transient,136.98,0,0,Canceled,2018-06-02 -Resort Hotel,0,249,2015,September,43,24,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,99.0,179.0,0,Contract,66.11,0,0,Check-Out,2017-11-02 -Resort Hotel,0,87,2017,April,22,24,0,4,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,70.89,0,0,Check-Out,2020-03-03 -City Hotel,0,22,2015,October,49,11,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,No Deposit,13.0,179.0,0,Transient-Party,61.46,0,0,Check-Out,2018-09-02 -Resort Hotel,0,39,2015,December,49,31,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,42.37,1,2,Check-Out,2019-01-03 -Resort Hotel,0,288,2016,August,34,10,2,5,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,98.79,0,1,Check-Out,2019-06-03 -Resort Hotel,0,165,2016,October,50,10,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,29.0,179.0,0,Transient-Party,79.0,0,1,Check-Out,2019-10-04 -Resort Hotel,1,91,2016,May,21,9,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,80.0,179.0,0,Transient,78.82,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2016,May,26,20,0,1,2,0.0,0,BB,USA,Complementary,Corporate,1,0,0,C,I,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2017,April,17,13,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,101.25,0,2,Check-Out,2020-02-01 -City Hotel,1,242,2015,October,44,13,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,21,Transient,66.36,0,0,Canceled,2018-08-03 -City Hotel,0,24,2016,October,44,15,1,1,2,0.0,0,BB,NLD,Direct,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,78.17,0,1,Check-Out,2019-07-04 -City Hotel,0,1,2016,August,40,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Refundable,239.0,179.0,0,Transient,203.09,0,2,Check-Out,2019-07-04 -City Hotel,1,46,2017,February,10,22,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,F,0,Non Refund,8.0,179.0,0,Transient,0.0,0,0,Canceled,2020-02-01 -City Hotel,0,35,2017,April,15,17,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,162.0,179.0,0,Transient,109.6,0,0,Check-Out,2020-04-02 -Resort Hotel,1,0,2016,July,3,6,0,5,1,0.0,0,BB,USA,Direct,Direct,0,0,1,D,D,2,No Deposit,13.0,179.0,0,Transient,123.57,0,3,No-Show,2019-10-04 -City Hotel,1,321,2015,September,44,21,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.66,0,0,Canceled,2018-08-03 -Resort Hotel,0,243,2016,July,34,10,2,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,152.0,179.0,0,Transient-Party,103.9,0,1,Check-Out,2018-05-03 -City Hotel,0,103,2017,March,18,29,0,5,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,66.11,0,0,Check-Out,2020-04-02 -Resort Hotel,1,118,2016,April,16,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,318.0,179.0,0,Transient,62.42,0,0,Canceled,2019-03-04 -City Hotel,1,95,2016,February,10,21,2,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.45,0,0,Canceled,2018-11-02 -City Hotel,0,18,2016,October,44,13,0,1,2,0.0,0,SC,CHN,Online TA,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,70.53,0,0,Check-Out,2019-08-04 -Resort Hotel,0,91,2017,May,24,24,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,171.0,179.0,0,Contract,60.77,0,1,Check-Out,2020-02-01 -Resort Hotel,1,52,2016,October,4,5,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,76.47,0,0,Canceled,2019-11-03 -Resort Hotel,0,5,2017,June,10,6,0,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,18.0,179.0,0,Transient,196.81,1,0,Check-Out,2020-06-02 -City Hotel,0,383,2016,September,42,20,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,76.4,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,August,31,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,206.06,0,0,Check-Out,2019-07-04 -Resort Hotel,0,48,2017,June,22,2,2,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,189.0,179.0,0,Transient,177.5,0,1,Check-Out,2019-12-04 -City Hotel,1,381,2016,October,42,8,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,86.5,0,0,Canceled,2019-07-04 -Resort Hotel,0,1,2015,December,49,9,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,176.0,179.0,0,Transient,61.07,0,0,Check-Out,2018-12-03 -Resort Hotel,1,126,2016,August,36,21,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,63.62,0,0,Canceled,2019-08-04 -City Hotel,0,40,2015,October,42,13,0,1,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.24,0,0,Check-Out,2018-09-02 -Resort Hotel,1,199,2017,August,29,11,2,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,209.08,0,2,Canceled,2020-03-03 -City Hotel,1,36,2017,December,53,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.98,0,0,Canceled,2019-10-04 -City Hotel,1,170,2016,December,9,3,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,107.6,0,0,Canceled,2019-07-04 -City Hotel,1,39,2017,February,11,13,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.82,0,0,Canceled,2019-10-04 -City Hotel,0,36,2016,June,28,21,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,224.65,0,1,Check-Out,2019-09-03 -Resort Hotel,0,211,2017,May,25,5,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,98.18,0,0,Check-Out,2019-03-04 -City Hotel,0,254,2015,October,44,31,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,98.17,0,0,Check-Out,2018-08-03 -Resort Hotel,0,18,2015,October,43,18,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,123.09,0,0,Check-Out,2019-08-04 -Resort Hotel,0,109,2016,May,22,9,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,141.0,179.0,0,Transient-Party,69.28,0,0,Check-Out,2019-04-03 -Resort Hotel,1,330,2016,October,44,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,77.96,0,0,Canceled,2018-08-03 -Resort Hotel,0,250,2015,October,44,20,2,5,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,40.91,0,0,Check-Out,2018-08-03 -Resort Hotel,0,167,2016,June,38,2,4,10,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,2,No Deposit,183.0,179.0,0,Transient,163.2,0,0,Check-Out,2019-07-04 -Resort Hotel,0,230,2017,April,15,31,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,75.89,0,3,Check-Out,2020-05-03 -Resort Hotel,0,0,2016,January,3,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,0,A,I,0,No Deposit,77.0,179.0,0,Transient,29.04,0,0,Check-Out,2018-10-03 -City Hotel,0,12,2016,September,51,21,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,111.23,0,1,Check-Out,2019-10-04 -Resort Hotel,0,283,2017,May,21,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,43.36,1,2,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,August,36,25,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-09-03 -City Hotel,0,53,2016,September,44,21,2,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,71.38,0,2,Check-Out,2019-05-04 -City Hotel,1,444,2015,November,45,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.37,0,0,Canceled,2017-12-03 -Resort Hotel,0,25,2016,April,17,10,2,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,C,1,No Deposit,83.0,179.0,62,Transient,97.44,0,0,Check-Out,2019-03-04 -Resort Hotel,0,101,2015,December,50,2,2,0,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,82.62,0,0,Check-Out,2019-10-04 -City Hotel,1,54,2016,June,21,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.27,0,0,Canceled,2019-01-03 -City Hotel,1,11,2015,October,45,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,213.0,0,Transient-Party,59.89,0,0,Check-Out,2018-09-02 -City Hotel,1,241,2016,September,42,6,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,104.94,0,1,Canceled,2019-07-04 -City Hotel,0,3,2017,June,25,9,0,2,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,1.71,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2016,September,42,24,0,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,106.07,0,0,Check-Out,2019-09-03 -City Hotel,1,94,2017,March,8,18,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.48,0,0,Canceled,2019-12-04 -City Hotel,0,61,2016,October,44,21,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,101.24,0,0,Check-Out,2019-06-03 -City Hotel,0,16,2017,May,18,31,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,123.04,0,0,Check-Out,2020-02-01 -City Hotel,0,259,2015,October,42,5,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,68.32,0,0,Check-Out,2018-07-03 -City Hotel,1,84,2016,March,16,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,86.34,0,0,Canceled,2019-02-01 -City Hotel,1,0,2016,March,10,28,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,95.46,0,0,Canceled,2019-01-03 -City Hotel,1,6,2016,March,10,20,2,1,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,138.0,179.0,0,Transient,41.04,0,0,Canceled,2019-02-01 -City Hotel,1,154,2016,June,27,30,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,88.19,0,0,Canceled,2019-05-04 -City Hotel,1,100,2017,March,10,25,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,6.0,179.0,0,Transient,95.3,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2016,February,9,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,29.77,1,0,Check-Out,2020-02-01 -Resort Hotel,1,14,2017,December,37,13,2,5,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,62.44,0,0,Canceled,2019-09-03 -City Hotel,1,388,2017,May,27,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,123.66,0,0,Canceled,2020-06-02 -City Hotel,0,2,2015,December,51,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,68.82,0,1,Check-Out,2018-08-03 -City Hotel,0,31,2016,October,44,13,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,100.39,0,1,Check-Out,2019-03-04 -City Hotel,0,90,2016,November,45,30,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,127.08,0,0,Check-Out,2019-01-03 -City Hotel,1,249,2016,June,31,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,139.63,0,1,Canceled,2019-01-03 -Resort Hotel,0,83,2015,December,52,7,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,41.55,0,0,Check-Out,2018-06-02 -City Hotel,1,442,2015,October,44,6,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.43,0,0,Canceled,2018-07-03 -City Hotel,0,265,2016,September,45,29,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,119.41,0,1,Check-Out,2019-12-04 -Resort Hotel,0,13,2016,September,36,27,1,10,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,74.09,0,0,Check-Out,2019-01-03 -City Hotel,0,14,2016,June,27,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,331.0,0,Transient-Party,73.53,1,0,Check-Out,2019-04-03 -City Hotel,0,47,2017,May,20,11,2,1,1,0.0,0,BB,USA,Direct,Corporate,0,0,0,A,A,0,No Deposit,201.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-12-04 -Resort Hotel,1,301,2017,May,20,5,3,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,Non Refund,257.0,179.0,0,Transient,86.99,0,0,Canceled,2020-01-04 -City Hotel,1,152,2017,June,20,19,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,74.91,0,0,Canceled,2020-03-03 -City Hotel,0,267,2016,October,44,22,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,32.0,179.0,0,Contract,43.34,0,1,Check-Out,2019-10-04 -City Hotel,1,185,2016,June,28,9,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,174.7,0,1,Canceled,2019-04-03 -City Hotel,1,269,2017,May,23,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,301.0,179.0,0,Transient,131.62,0,0,Canceled,2020-02-01 -City Hotel,0,90,2016,March,15,4,0,4,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,143.3,0,0,Check-Out,2019-03-04 -Resort Hotel,0,37,2016,January,5,17,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,37.75,0,0,Check-Out,2018-12-03 -Resort Hotel,0,11,2016,December,53,30,0,1,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient-Party,62.89,1,1,Check-Out,2019-11-03 -City Hotel,0,87,2017,July,32,18,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,150.12,0,2,Check-Out,2020-02-01 -Resort Hotel,0,14,2016,June,25,17,0,4,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,G,G,3,No Deposit,246.0,179.0,0,Transient,103.59,1,1,Check-Out,2019-02-01 -City Hotel,0,95,2016,October,43,19,1,4,1,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.67,0,2,Check-Out,2019-11-03 -Resort Hotel,1,229,2016,April,23,25,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,35.27,0,2,No-Show,2019-02-01 -Resort Hotel,1,10,2015,July,31,27,0,3,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,94.79,0,0,Canceled,2018-06-02 -City Hotel,0,97,2017,May,14,31,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.28,0,0,Canceled,2020-02-01 -City Hotel,0,204,2016,May,22,9,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,87.0,179.0,0,Transient,75.78,0,0,Canceled,2019-11-03 -Resort Hotel,1,36,2015,October,37,5,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,45.66,0,2,Canceled,2018-06-02 -City Hotel,0,40,2017,April,28,20,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,45.0,0,Transient,126.99,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,June,23,25,0,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,239.0,179.0,0,Transient,122.01,1,1,Check-Out,2019-01-03 -Resort Hotel,0,217,2017,July,22,29,2,6,2,2.0,0,HB,NOR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-03-03 -Resort Hotel,0,8,2017,June,25,2,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,124.08,0,1,Check-Out,2020-03-03 -City Hotel,0,214,2015,July,36,20,4,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,180.0,179.0,0,Contract,221.05,0,0,Check-Out,2018-05-03 -Resort Hotel,1,44,2017,June,21,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,249.0,179.0,0,Transient,113.1,0,1,Canceled,2020-02-01 -City Hotel,0,7,2016,June,51,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,14.0,331.0,0,Transient,37.86,0,0,Check-Out,2019-03-04 -City Hotel,0,206,2016,December,50,28,0,3,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,77.33,0,0,Check-Out,2019-11-03 -City Hotel,0,59,2016,March,44,17,2,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.85,0,1,Check-Out,2019-03-04 -City Hotel,0,21,2017,May,12,16,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,E,0,No Deposit,15.0,179.0,0,Transient,193.82,1,3,Check-Out,2020-04-02 -City Hotel,0,15,2016,September,37,6,0,1,2,0.0,0,BB,ESP,Groups,GDS,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,155.13,0,0,Check-Out,2019-04-03 -City Hotel,0,8,2017,March,18,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,59.0,0,Transient,97.98,0,0,Check-Out,2019-04-03 -Resort Hotel,1,253,2017,May,27,31,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,106.13,0,0,Canceled,2020-04-02 -Resort Hotel,0,0,2017,March,12,4,0,1,1,0.0,0,HB,PRT,Direct,Corporate,1,0,1,A,I,1,No Deposit,13.0,83.0,75,Transient-Party,59.21,1,0,Check-Out,2019-12-04 -City Hotel,0,128,2016,October,51,30,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.45,0,2,Check-Out,2020-01-04 -City Hotel,0,53,2016,June,24,20,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,20.0,179.0,0,Transient-Party,94.91,0,0,Check-Out,2020-06-02 -Resort Hotel,0,12,2016,June,26,17,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,78.19,1,0,Check-Out,2019-05-04 -Resort Hotel,1,294,2016,September,37,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,C,0,No Deposit,238.0,179.0,0,Transient,210.22,0,0,Canceled,2017-11-02 -Resort Hotel,0,13,2017,March,22,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,61.86,0,1,Check-Out,2020-03-03 -City Hotel,1,120,2017,April,17,31,2,5,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,116.11,0,2,Canceled,2020-02-01 -Resort Hotel,1,40,2015,September,43,25,1,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,14.0,179.0,0,Transient-Party,226.36,0,0,Canceled,2018-08-03 -Resort Hotel,0,12,2016,April,16,25,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,78.73,1,2,Check-Out,2019-02-01 -City Hotel,1,297,2017,July,33,8,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.83,0,0,Canceled,2020-06-02 -City Hotel,1,221,2016,April,17,17,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,71.2,0,0,Canceled,2019-02-01 -City Hotel,1,1,2017,January,11,26,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.83,0,3,Canceled,2019-10-04 -City Hotel,0,16,2017,February,10,16,2,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.97,0,2,Check-Out,2019-11-03 -Resort Hotel,0,93,2016,July,31,11,2,3,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,81.0,179.0,0,Transient-Party,152.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,148,2017,August,38,10,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,72.72,1,1,Check-Out,2019-08-04 -Resort Hotel,0,43,2015,October,50,21,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,36.14,0,0,Check-Out,2018-12-03 -City Hotel,0,106,2015,July,30,5,0,2,2,0.0,0,HB,SWE,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,114.62,0,3,Check-Out,2018-05-03 -Resort Hotel,0,157,2016,August,16,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,3,Refundable,13.0,222.0,0,Transient-Party,73.58,1,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,November,50,12,0,1,1,0.0,0,BB,SWE,Corporate,Direct,0,0,0,D,D,0,No Deposit,378.0,235.0,0,Transient,59.9,0,0,Check-Out,2019-10-04 -City Hotel,1,153,2016,January,4,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,19,Transient,65.4,0,0,Canceled,2018-11-02 -City Hotel,1,5,2017,August,38,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,157.13,0,0,Canceled,2020-07-03 -City Hotel,1,41,2016,October,44,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,90.0,179.0,0,Transient-Party,58.65,0,0,Canceled,2018-08-03 -City Hotel,0,157,2016,March,19,16,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,14.0,179.0,0,Transient,121.88,0,0,Check-Out,2019-03-04 -City Hotel,1,260,2016,October,21,25,1,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,151.78,0,0,Canceled,2019-07-04 -City Hotel,0,15,2016,March,16,9,0,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient,152.01,0,1,Check-Out,2018-12-03 -City Hotel,1,151,2016,March,17,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,75.75,0,0,Canceled,2018-11-02 -Resort Hotel,0,30,2016,April,16,16,1,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,240.8,1,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2016,December,50,28,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,121.08,0,0,Check-Out,2019-10-04 -City Hotel,1,262,2016,May,21,16,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,B,0,No Deposit,31.0,179.0,0,Transient-Party,88.2,0,0,Canceled,2019-02-01 -Resort Hotel,0,199,2016,August,35,5,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,3.08,0,1,Check-Out,2019-06-03 -City Hotel,1,54,2016,December,49,28,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,41,Transient,73.72,0,0,Canceled,2018-11-02 -City Hotel,1,90,2017,January,8,18,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.79,0,1,Canceled,2019-11-03 -Resort Hotel,0,38,2017,February,10,2,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,F,1,No Deposit,15.0,76.0,0,Transient,78.67,0,0,Check-Out,2020-01-04 -City Hotel,0,1,2016,August,38,17,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,102.45,0,3,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,October,43,12,4,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,89.0,179.0,0,Contract,70.73,0,1,Check-Out,2019-08-04 -City Hotel,0,2,2017,May,22,18,2,1,1,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,202.04,0,1,Check-Out,2020-06-02 -Resort Hotel,0,81,2017,February,11,21,1,2,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,1,No Deposit,83.0,179.0,0,Transient,75.3,0,0,Check-Out,2020-04-02 -City Hotel,1,46,2016,June,26,9,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,67.0,179.0,65,Transient,102.15,0,0,Canceled,2019-02-01 -Resort Hotel,1,2,2015,September,36,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,246.0,179.0,0,Transient,150.05,0,0,Canceled,2018-05-03 -Resort Hotel,1,151,2017,June,29,25,3,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,80.47,0,0,Canceled,2019-06-03 -City Hotel,0,12,2016,May,26,2,0,2,3,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,E,3,No Deposit,140.0,179.0,0,Transient,127.98,0,0,Check-Out,2019-05-04 -City Hotel,1,246,2017,May,24,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,81.55,0,0,Canceled,2019-12-04 -Resort Hotel,0,11,2016,June,28,12,0,4,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,237.0,179.0,0,Transient,218.89,0,2,Check-Out,2019-05-04 -Resort Hotel,0,254,2016,July,32,25,0,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,73.58,0,1,Check-Out,2019-05-04 -City Hotel,1,151,2016,April,17,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,100.22,0,0,Canceled,2018-12-03 -City Hotel,0,34,2016,April,27,30,2,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,114.81,0,0,Check-Out,2019-05-04 -Resort Hotel,0,3,2016,June,36,8,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,62.79,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,February,7,23,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,74.33,0,0,Check-Out,2019-12-04 -City Hotel,0,5,2015,November,45,31,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.97,0,3,Check-Out,2018-08-03 -Resort Hotel,1,92,2015,December,33,10,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,81.89,0,0,Canceled,2018-06-02 -City Hotel,0,42,2015,July,43,9,1,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,165.84,0,0,Check-Out,2018-06-02 -Resort Hotel,1,175,2017,June,21,27,2,10,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,63.24,0,0,Canceled,2020-03-03 -City Hotel,1,94,2015,July,34,24,2,2,2,0.0,0,BB,,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,65.52,0,1,Canceled,2018-07-03 -City Hotel,1,61,2017,August,37,6,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,158.3,0,0,No-Show,2020-03-03 -Resort Hotel,0,40,2016,May,27,23,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,243.0,179.0,0,Transient,171.17,1,2,Check-Out,2020-06-02 -City Hotel,0,408,2016,September,38,20,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.32,0,0,Check-Out,2019-08-04 -Resort Hotel,0,8,2017,November,51,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,2,No Deposit,15.0,253.0,75,Transient,33.67,0,0,Check-Out,2019-11-03 -City Hotel,1,257,2017,July,33,19,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,78.98,0,0,Canceled,2019-05-04 -City Hotel,0,94,2016,December,51,5,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,119.03,0,1,Check-Out,2019-12-04 -City Hotel,0,159,2017,June,25,28,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.58,0,2,Check-Out,2020-06-02 -Resort Hotel,0,3,2016,January,11,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,85.0,0,Transient,43.65,0,0,Check-Out,2018-12-03 -Resort Hotel,0,198,2017,March,9,9,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,69.72,0,0,Check-Out,2019-12-04 -Resort Hotel,0,34,2017,April,11,28,1,2,2,0.0,0,Undefined,POL,Groups,Corporate,0,0,0,A,A,0,No Deposit,199.0,179.0,0,Transient-Party,62.85,0,0,Check-Out,2019-12-04 -City Hotel,1,395,2015,October,46,18,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,20,Transient,49.88,0,0,Canceled,2018-09-02 -Resort Hotel,1,111,2016,August,36,21,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient,63.0,0,0,Canceled,2019-01-03 -Resort Hotel,1,171,2017,July,31,16,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,211.32,0,0,Canceled,2020-04-02 -City Hotel,0,100,2017,February,10,23,2,3,2,2.0,0,BB,AUT,Corporate,Direct,0,0,0,G,G,2,No Deposit,13.0,179.0,0,Transient,78.61,1,1,Check-Out,2020-01-04 -City Hotel,1,145,2016,June,25,10,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,41,Transient,83.07,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,January,4,26,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,117.71,0,1,Check-Out,2019-04-03 -Resort Hotel,0,58,2017,July,28,5,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-06-02 -Resort Hotel,0,50,2017,February,11,21,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,68.74,0,1,Check-Out,2019-10-04 -Resort Hotel,0,5,2016,May,22,28,2,0,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,I,1,No Deposit,240.0,179.0,0,Transient,0.87,1,1,Check-Out,2019-04-03 -City Hotel,1,47,2016,June,15,10,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,88.21,0,0,Canceled,2018-11-02 -Resort Hotel,0,292,2017,August,38,30,1,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,108.43,0,2,Check-Out,2020-04-02 -City Hotel,0,144,2017,April,8,5,2,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,85.0,179.0,0,Transient,73.48,0,0,Check-Out,2020-03-03 -City Hotel,0,48,2016,May,34,21,1,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,177.0,179.0,0,Transient-Party,61.58,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,January,50,3,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,D,0,No Deposit,151.0,45.0,0,Group,44.36,0,0,Check-Out,2018-10-03 -City Hotel,0,56,2017,August,28,30,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.04,0,3,Check-Out,2020-06-02 -Resort Hotel,0,134,2017,April,16,23,2,2,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,242.0,179.0,0,Transient,125.89,1,0,Check-Out,2020-05-03 -City Hotel,1,31,2017,June,22,10,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.33,0,0,Canceled,2020-03-03 -Resort Hotel,0,154,2016,April,19,31,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Contract,69.3,0,0,Check-Out,2019-03-04 -City Hotel,1,28,2016,January,3,6,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.11,0,0,No-Show,2019-10-04 -City Hotel,0,19,2016,May,25,9,1,3,3,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,1,No Deposit,17.0,164.0,0,Transient,224.49,0,0,Check-Out,2019-06-03 -Resort Hotel,0,106,2017,June,27,20,0,7,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,310.0,179.0,0,Transient,153.28,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,October,42,3,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,18.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-05-03 -City Hotel,1,153,2015,September,27,26,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.02,0,0,Canceled,2018-08-03 -Resort Hotel,0,65,2016,April,42,9,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,96.0,179.0,0,Transient,40.25,0,0,Check-Out,2019-03-04 -Resort Hotel,0,3,2017,February,9,12,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,D,0,No Deposit,247.0,75.0,0,Transient,43.73,0,2,Check-Out,2020-01-04 -Resort Hotel,0,31,2015,December,52,29,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,60.53,0,0,Check-Out,2018-08-03 -Resort Hotel,0,84,2015,October,42,17,2,3,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,123.0,179.0,0,Transient-Party,39.77,0,0,Check-Out,2018-09-02 -City Hotel,1,38,2016,December,50,29,1,0,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,278.0,0,Transient,2.11,0,0,Check-Out,2019-09-03 -City Hotel,0,150,2016,July,17,6,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,79.84,0,0,Check-Out,2018-12-03 -City Hotel,1,363,2016,September,43,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,61,Transient,75.57,0,0,Canceled,2019-01-03 -Resort Hotel,0,33,2016,August,32,16,1,2,2,2.0,0,BB,CN,Online TA,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,243.25,1,3,Check-Out,2019-06-03 -Resort Hotel,1,259,2015,August,37,6,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,F,0,No Deposit,309.0,179.0,0,Transient-Party,133.37,0,0,Canceled,2018-11-02 -City Hotel,0,145,2017,July,9,22,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,96.13,0,2,Check-Out,2019-11-03 -City Hotel,1,301,2015,September,42,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.85,0,0,Canceled,2017-10-03 -City Hotel,1,13,2017,February,17,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,50.0,0,Transient,82.0,0,0,Canceled,2019-12-04 -Resort Hotel,0,135,2016,April,16,11,2,5,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,135.0,179.0,0,Transient-Party,71.56,0,0,Check-Out,2019-03-04 -Resort Hotel,1,155,2016,December,51,24,0,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,21,Transient-Party,75.86,0,0,Canceled,2018-12-03 -Resort Hotel,0,65,2016,September,43,28,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,156.25,0,3,Check-Out,2019-06-03 -City Hotel,0,8,2017,March,17,29,2,0,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.84,0,0,Check-Out,2020-02-01 -City Hotel,1,203,2017,August,35,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,146.58,0,0,Canceled,2019-08-04 -City Hotel,1,81,2016,January,5,27,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,80.12,0,0,No-Show,2018-11-02 -Resort Hotel,0,0,2016,December,50,5,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,77.47,0,0,Check-Out,2018-11-02 -Resort Hotel,0,43,2015,August,36,23,2,0,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,204.51,1,0,Check-Out,2018-06-02 -Resort Hotel,0,9,2016,March,24,31,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,1,1,1,A,F,1,No Deposit,12.0,179.0,0,Transient-Party,61.99,1,2,Check-Out,2019-04-03 -Resort Hotel,0,139,2017,August,33,22,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,201.86,1,1,Check-Out,2020-06-02 -City Hotel,1,63,2016,June,24,17,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,91.39,0,0,No-Show,2019-02-01 -City Hotel,0,1,2017,February,9,10,0,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,68.36,0,0,Check-Out,2018-10-03 -City Hotel,0,39,2016,May,8,10,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,66.24,0,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2017,March,10,9,2,0,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,38.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,51,2017,May,22,24,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,171.39,0,0,Check-Out,2020-03-03 -City Hotel,0,58,2017,July,29,13,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-06-02 -City Hotel,0,21,2016,April,17,6,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.85,0,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,October,44,30,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,84.11,0,0,Check-Out,2018-09-02 -Resort Hotel,1,14,2016,February,17,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,40.62,0,0,Canceled,2019-03-04 -Resort Hotel,0,5,2016,March,11,28,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,76.85,0,1,Check-Out,2019-02-01 -City Hotel,1,43,2016,October,21,25,2,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.96,0,1,Canceled,2019-03-04 -City Hotel,0,22,2016,March,26,14,2,0,2,2.0,0,HB,CHE,Direct,Corporate,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient-Party,190.13,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2015,September,38,21,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.0,1,2,Check-Out,2018-05-03 -Resort Hotel,0,95,2016,May,23,27,1,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,130.13,0,0,Check-Out,2020-03-03 -Resort Hotel,0,12,2016,January,44,18,0,2,1,0.0,0,FB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,1,Non Refund,87.0,179.0,0,Transient,92.6,0,0,Check-Out,2019-03-04 -City Hotel,0,100,2017,June,25,4,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,153.07,0,0,Check-Out,2020-01-04 -City Hotel,0,1,2017,July,26,9,2,5,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.54,0,3,Check-Out,2020-03-03 -City Hotel,0,42,2016,October,41,7,2,4,2,1.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,133.02,0,1,Check-Out,2019-08-04 -City Hotel,1,332,2016,September,53,20,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,0,Transient,62.96,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2017,March,10,25,2,1,2,0.0,0,HB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,66.22,0,1,Check-Out,2020-02-01 -Resort Hotel,0,8,2016,June,32,28,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,239.0,179.0,0,Transient,154.09,1,0,Check-Out,2019-05-04 -Resort Hotel,0,7,2015,July,35,21,1,2,1,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,62.72,0,0,Check-Out,2018-07-03 -Resort Hotel,0,311,2017,May,38,29,1,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,247.0,179.0,0,Transient,142.96,1,2,Check-Out,2020-05-03 -Resort Hotel,0,11,2017,May,12,26,1,0,2,0.0,0,HB,,Direct,Direct,0,0,0,C,I,2,No Deposit,246.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -Resort Hotel,0,143,2016,July,32,12,2,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,170.59,1,0,Check-Out,2019-06-03 -City Hotel,1,139,2016,August,31,2,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,97.98,0,2,Canceled,2019-04-03 -City Hotel,0,16,2017,March,16,5,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,77.87,0,2,Check-Out,2019-12-04 -Resort Hotel,1,245,2015,October,42,21,2,5,2,0.0,0,FB,GBR,Direct,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Transient,37.57,0,0,Canceled,2018-07-03 -Resort Hotel,1,411,2016,October,42,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,177.0,179.0,0,Transient,42.24,0,0,Canceled,2017-12-03 -Resort Hotel,0,111,2016,May,26,25,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,245.0,179.0,0,Transient,204.67,1,0,Check-Out,2019-03-04 -City Hotel,1,234,2016,October,42,15,2,2,2,2.0,0,SC,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,106.55,0,1,Canceled,2019-02-01 -City Hotel,0,51,2016,June,53,24,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Contract,86.01,0,1,Check-Out,2019-05-04 -City Hotel,1,390,2016,September,44,20,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.1,0,0,Canceled,2019-08-04 -City Hotel,0,109,2016,November,50,20,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,126.73,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2017,October,33,15,2,1,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,161.9,1,0,Check-Out,2020-04-02 -City Hotel,0,44,2016,March,43,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,87.0,179.0,61,Transient,61.78,0,0,Check-Out,2018-12-03 -Resort Hotel,1,143,2016,December,53,31,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,76.33,0,0,Canceled,2018-11-02 -City Hotel,1,342,2015,September,41,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.52,0,0,Canceled,2017-12-03 -Resort Hotel,0,36,2015,July,32,21,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,62.29,1,0,Check-Out,2018-06-02 -City Hotel,1,313,2015,July,33,20,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.14,0,0,Canceled,2018-06-02 -City Hotel,0,48,2017,February,11,14,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,76.6,0,2,Check-Out,2020-02-01 -City Hotel,1,88,2016,August,39,16,2,2,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,6.0,179.0,0,Transient,199.79,0,3,Canceled,2019-12-04 -City Hotel,0,3,2017,June,26,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,62.0,0,Transient,134.25,0,0,Check-Out,2019-12-04 -City Hotel,0,12,2016,May,23,30,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.48,0,1,Check-Out,2019-11-03 -City Hotel,0,54,2017,April,18,31,0,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,7.0,179.0,0,Transient,132.71,0,2,Check-Out,2020-03-03 -Resort Hotel,0,99,2017,February,9,19,2,2,2,0.0,0,HB,GBR,Direct,Corporate,0,0,0,A,C,0,No Deposit,338.0,179.0,0,Transient-Party,44.95,0,0,Check-Out,2019-03-04 -City Hotel,1,0,2017,May,23,18,1,1,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2020-04-02 -City Hotel,1,21,2015,November,53,2,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,37.83,0,1,No-Show,2018-09-02 -City Hotel,0,0,2017,June,24,30,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,2,No Deposit,15.0,179.0,0,Transient,5.25,0,0,Check-Out,2020-07-03 -City Hotel,0,47,2016,September,27,2,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.25,0,0,Check-Out,2019-03-04 -City Hotel,0,16,2016,October,46,29,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,162.11,0,0,Check-Out,2019-08-04 -City Hotel,1,101,2017,May,20,20,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.82,0,3,Canceled,2019-02-01 -City Hotel,0,14,2016,August,50,6,0,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,82.19,0,0,Check-Out,2019-12-04 -City Hotel,0,41,2015,November,50,8,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.01,0,3,Check-Out,2018-10-03 -City Hotel,0,268,2016,August,37,6,2,2,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,207.75,0,3,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,February,11,28,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Transient,59.83,0,0,Check-Out,2019-02-01 -Resort Hotel,0,35,2015,November,31,13,2,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,1,0,0,L,D,0,No Deposit,10.0,179.0,0,Group,59.37,1,0,Check-Out,2018-08-03 -City Hotel,0,17,2016,September,34,20,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.75,0,1,Check-Out,2019-04-03 -Resort Hotel,0,19,2015,November,43,9,2,0,2,0.0,0,BB,ESP,Corporate,Direct,0,0,0,A,A,0,No Deposit,101.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-05-03 -City Hotel,0,141,2016,December,53,24,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,23.0,179.0,41,Transient,112.53,0,0,Check-Out,2019-06-03 -City Hotel,1,42,2016,October,45,13,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.5,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2015,September,36,30,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,71.96,0,0,Check-Out,2018-08-03 -Resort Hotel,0,140,2017,July,27,26,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.27,0,3,Check-Out,2020-04-02 -Resort Hotel,1,205,2017,July,24,22,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,332.0,179.0,0,Transient,154.1,0,0,Check-Out,2020-07-03 -City Hotel,0,155,2016,May,21,23,0,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,66.8,0,0,Check-Out,2019-04-03 -Resort Hotel,0,105,2017,February,12,30,0,2,1,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,E,E,1,No Deposit,280.0,179.0,0,Transient-Party,62.34,0,0,Check-Out,2020-01-04 -City Hotel,1,35,2016,February,11,12,2,0,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,106.78,0,0,Canceled,2018-09-02 -City Hotel,1,2,2017,January,3,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,Non Refund,9.0,45.0,0,Transient,43.26,0,2,Canceled,2019-11-03 -Resort Hotel,1,246,2016,December,51,30,2,1,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,10.0,179.0,0,Transient,102.84,0,0,Canceled,2019-09-03 -City Hotel,1,366,2017,May,22,21,1,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.42,0,1,Canceled,2020-02-01 -Resort Hotel,0,115,2016,June,27,27,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,211.0,179.0,0,Transient,76.59,1,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,May,24,19,1,2,2,0.0,0,BB,USA,Direct,Corporate,0,0,0,E,E,3,No Deposit,204.0,179.0,0,Transient,65.78,1,0,Check-Out,2020-04-02 -Resort Hotel,0,34,2017,August,25,16,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,130.92,1,2,Check-Out,2020-04-02 -Resort Hotel,0,37,2016,August,33,20,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,1,2,Check-Out,2018-09-02 -City Hotel,1,17,2016,July,36,27,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.79,0,0,Canceled,2019-02-01 -City Hotel,0,3,2016,December,49,28,0,3,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,32.7,0,0,Check-Out,2018-11-02 -City Hotel,0,237,2016,July,24,18,1,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,B,1,No Deposit,133.0,179.0,0,Transient-Party,73.22,0,0,Check-Out,2019-03-04 -City Hotel,1,250,2016,August,17,2,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.93,0,1,Canceled,2019-11-03 -City Hotel,0,276,2016,May,22,6,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,87.19,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2017,April,38,31,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,128.07,0,1,Check-Out,2020-01-04 -City Hotel,0,101,2016,October,43,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,73.47,0,1,Check-Out,2019-06-03 -City Hotel,1,7,2017,January,3,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.21,0,0,No-Show,2018-10-03 -Resort Hotel,0,20,2015,December,50,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,34.74,0,0,Check-Out,2018-09-02 -Resort Hotel,0,21,2017,March,10,21,0,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,227.8,0,0,Check-Out,2020-02-01 -City Hotel,0,5,2015,September,35,2,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,5.0,179.0,0,Transient-Party,127.24,0,2,Check-Out,2018-07-03 -City Hotel,0,0,2017,April,18,11,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,0,No Deposit,14.0,231.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,25,2017,March,18,27,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.14,0,2,Check-Out,2019-11-03 -City Hotel,0,140,2017,August,42,30,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,180.26,0,1,Check-Out,2019-10-04 -City Hotel,0,196,2016,May,25,30,2,4,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Contract,124.18,0,1,Check-Out,2019-03-04 -City Hotel,0,106,2017,July,37,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,190.55,0,3,Check-Out,2020-06-02 -City Hotel,0,197,2017,July,33,2,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,69.06,0,0,Check-Out,2019-12-04 -City Hotel,1,48,2017,April,18,31,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.65,0,2,Canceled,2020-03-03 -Resort Hotel,0,17,2016,April,41,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,128.64,1,1,Check-Out,2019-05-04 -City Hotel,0,0,2016,October,44,30,1,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,89.71,0,0,Check-Out,2019-05-04 -City Hotel,0,158,2017,July,4,18,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,101.1,0,0,Check-Out,2018-12-03 -City Hotel,0,149,2016,August,24,13,4,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,63.22,0,0,Check-Out,2019-06-03 -Resort Hotel,1,173,2017,February,11,27,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,G,A,0,Non Refund,321.0,179.0,0,Transient,61.97,0,0,Canceled,2020-04-02 -City Hotel,0,16,2016,September,43,16,0,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,181.86,0,1,Check-Out,2019-07-04 -Resort Hotel,1,107,2015,October,45,20,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,96.73,0,2,Check-Out,2018-11-02 -City Hotel,0,12,2016,March,15,8,0,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.83,0,2,Check-Out,2019-05-04 -City Hotel,0,11,2017,May,22,5,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,128.59,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2015,September,42,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient-Party,115.38,0,1,Check-Out,2018-08-03 -Resort Hotel,1,55,2017,March,36,25,0,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,234.81,0,0,Canceled,2020-04-02 -City Hotel,0,0,2015,April,16,2,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,1,No Deposit,17.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,388,2016,May,16,31,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,11.0,224.0,0,Transient-Party,66.55,0,0,Check-Out,2019-06-03 -City Hotel,0,17,2016,December,45,15,1,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,77.0,179.0,0,Transient,85.42,0,0,Check-Out,2019-03-04 -Resort Hotel,0,53,2016,December,16,16,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,243.0,179.0,0,Transient,72.69,0,1,Check-Out,2019-01-03 -City Hotel,0,17,2016,March,16,10,0,1,2,0.0,0,Undefined,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,97.0,179.0,0,Transient-Party,61.38,0,0,Check-Out,2019-02-01 -City Hotel,0,252,2015,August,33,6,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,132.8,0,2,Check-Out,2018-06-02 -City Hotel,1,261,2016,January,53,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,15,Transient,75.74,0,0,Canceled,2018-12-03 -City Hotel,0,20,2017,August,32,28,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.21,0,1,Check-Out,2020-06-02 -Resort Hotel,0,52,2015,December,53,31,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,73.15,0,0,Check-Out,2018-10-03 -City Hotel,0,2,2016,November,53,7,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -City Hotel,0,111,2016,April,17,25,0,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient,122.25,0,0,Check-Out,2019-03-04 -Resort Hotel,0,10,2017,April,17,17,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,C,C,2,No Deposit,247.0,179.0,0,Transient,85.55,0,2,Check-Out,2020-04-02 -Resort Hotel,0,16,2017,February,12,13,2,3,2,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,61.77,1,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,November,49,8,0,1,3,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,47.0,0,Transient,0.99,0,0,Check-Out,2019-12-04 -City Hotel,0,10,2015,December,53,10,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient-Party,65.96,0,0,Check-Out,2018-12-03 -Resort Hotel,0,7,2016,July,40,3,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,203.59,0,2,Check-Out,2019-06-03 -Resort Hotel,0,250,2016,August,34,20,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,306.0,179.0,0,Transient-Party,85.36,1,0,Check-Out,2019-07-04 -Resort Hotel,1,119,2017,May,19,12,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,201.46,0,2,Canceled,2020-02-01 -Resort Hotel,0,21,2016,December,53,17,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,37.0,179.0,0,Transient,69.07,0,0,Check-Out,2019-10-04 -City Hotel,0,151,2016,June,31,15,0,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,100.34,0,0,Check-Out,2019-06-03 -Resort Hotel,0,17,2017,February,11,21,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,191.0,179.0,0,Transient-Party,76.5,0,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2017,March,11,12,0,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,1,E,D,1,No Deposit,16.0,179.0,75,Transient-Party,60.7,1,1,Check-Out,2019-12-04 -Resort Hotel,0,1,2015,October,45,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,221.0,0,Transient,58.56,0,0,Check-Out,2018-06-02 -City Hotel,0,4,2017,March,9,23,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,10.0,45.0,0,Transient,77.32,0,0,Check-Out,2020-02-01 -City Hotel,0,49,2017,May,15,25,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.63,1,1,Check-Out,2020-06-02 -City Hotel,0,1,2016,September,43,11,0,2,2,0.0,0,BB,CN,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,90.31,0,0,Check-Out,2019-11-03 -Resort Hotel,0,150,2015,August,35,6,2,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,233.2,1,2,Check-Out,2018-06-02 -City Hotel,1,39,2017,March,17,19,0,2,2,0.0,0,BB,PRT,Groups,Corporate,1,0,1,A,A,0,Non Refund,27.0,179.0,0,Transient,73.74,0,0,Canceled,2019-12-04 -City Hotel,0,96,2016,March,15,13,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.7,0,2,Check-Out,2019-02-01 -City Hotel,0,248,2016,September,42,10,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,1,A,D,1,No Deposit,8.0,179.0,0,Group,79.48,0,2,Check-Out,2019-07-04 -Resort Hotel,0,145,2016,October,46,27,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,D,1,No Deposit,303.0,179.0,0,Group,59.96,0,0,Check-Out,2019-08-04 -City Hotel,0,86,2015,August,34,29,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,164.94,0,0,Check-Out,2018-06-02 -Resort Hotel,1,98,2017,March,18,30,2,5,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,200.0,179.0,0,Transient,167.49,0,0,Canceled,2020-02-01 -Resort Hotel,0,200,2017,July,32,30,0,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,102.57,1,1,Check-Out,2020-04-02 -Resort Hotel,0,12,2015,August,38,21,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,120.3,0,0,Check-Out,2018-06-02 -City Hotel,0,17,2016,November,37,18,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.46,0,0,Check-Out,2019-06-03 -Resort Hotel,0,10,2015,October,44,24,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,71.44,1,0,Check-Out,2019-08-04 -City Hotel,1,231,2017,May,20,7,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.83,0,1,Check-Out,2020-05-03 -Resort Hotel,0,108,2017,July,22,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,91.65,0,0,Check-Out,2020-03-03 -Resort Hotel,0,4,2016,September,34,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,182.0,179.0,0,Transient-Party,49.02,1,0,Check-Out,2019-02-01 -City Hotel,0,16,2016,October,51,21,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,234.0,0,Transient,67.3,0,0,Check-Out,2019-09-03 -Resort Hotel,0,44,2016,December,50,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,87.49,0,0,Check-Out,2019-10-04 -City Hotel,1,161,2016,July,33,5,2,4,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,72.0,179.0,0,Transient,104.4,0,2,Canceled,2018-05-03 -City Hotel,1,54,2016,April,16,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,62.45,0,0,Canceled,2019-03-04 -City Hotel,0,40,2016,March,44,2,0,4,2,2.0,0,SC,AUT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,103.0,0,1,Check-Out,2019-04-03 -Resort Hotel,0,15,2017,July,9,6,0,1,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,230.19,1,1,Check-Out,2020-06-02 -City Hotel,0,1,2016,March,16,20,0,4,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,4.0,179.0,0,Transient,90.64,0,1,Check-Out,2019-03-04 -City Hotel,1,0,2016,February,8,10,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,1,A,A,0,Non Refund,8.0,179.0,0,Transient,59.26,0,0,Canceled,2018-10-03 -City Hotel,1,154,2015,September,45,25,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.91,0,0,Canceled,2019-01-03 -City Hotel,1,99,2017,August,32,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,192.28,0,1,No-Show,2020-06-02 -City Hotel,1,262,2017,May,21,22,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,65.47,0,0,Canceled,2020-02-01 -Resort Hotel,0,13,2015,December,51,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,44.91,0,0,Canceled,2018-12-03 -City Hotel,1,7,2016,May,22,25,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.67,0,1,No-Show,2019-02-01 -City Hotel,0,0,2016,January,10,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,1,No Deposit,11.0,179.0,0,Transient,176.94,0,3,Check-Out,2018-10-03 -City Hotel,0,54,2017,August,36,16,0,4,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-07-03 -City Hotel,1,37,2016,October,42,14,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,123.55,0,2,Canceled,2019-08-04 -City Hotel,1,159,2016,April,17,6,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.11,0,0,Check-Out,2020-03-03 -City Hotel,1,33,2017,April,23,22,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.87,0,3,Canceled,2020-03-03 -Resort Hotel,0,54,2016,October,49,20,1,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,47.49,0,3,Check-Out,2019-08-04 -Resort Hotel,0,143,2017,May,24,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,124.01,1,2,Check-Out,2020-05-03 -City Hotel,0,132,2015,December,50,18,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,110.38,1,2,Check-Out,2019-11-03 -Resort Hotel,0,44,2017,February,10,6,2,0,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,89.2,0,0,Check-Out,2020-01-04 -City Hotel,0,185,2016,June,22,5,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.02,0,0,Check-Out,2019-08-04 -City Hotel,1,86,2016,July,25,27,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,122.24,0,0,Canceled,2018-11-02 -City Hotel,0,34,2016,September,45,13,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.82,0,2,Check-Out,2019-06-03 -City Hotel,1,87,2016,December,52,8,0,2,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,74.82,0,0,Canceled,2019-01-03 -Resort Hotel,0,149,2017,August,17,16,2,5,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,9.0,179.0,75,Transient,214.14,0,0,Check-Out,2020-03-03 -City Hotel,0,346,2015,September,43,13,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,110.16,0,0,Check-Out,2018-07-03 -City Hotel,1,244,2016,June,27,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,8.0,179.0,0,Group,39.76,0,2,Canceled,2019-11-03 -City Hotel,0,9,2015,September,44,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,112.89,1,0,Check-Out,2018-08-03 -City Hotel,1,17,2017,March,9,28,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient,122.38,0,1,Canceled,2020-02-01 -Resort Hotel,1,91,2017,June,20,9,2,5,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient-Party,81.93,0,0,Canceled,2020-03-03 -Resort Hotel,0,2,2016,October,44,9,1,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,165.65,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,September,37,25,2,3,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,174.0,179.0,0,Transient-Party,209.86,0,0,Check-Out,2018-07-03 -City Hotel,0,45,2015,October,45,9,0,2,2,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.47,0,2,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,March,12,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,19.0,89.0,0,Transient,37.68,0,0,Check-Out,2019-02-01 -City Hotel,0,183,2017,August,34,25,2,2,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.21,0,0,Check-Out,2020-05-03 -Resort Hotel,0,214,2016,May,23,20,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,30.0,179.0,20,Transient-Party,81.96,0,0,Check-Out,2019-04-03 -City Hotel,0,2,2016,November,51,5,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,D,0,No Deposit,17.0,182.0,75,Transient,4.19,0,0,Check-Out,2019-11-03 -Resort Hotel,1,156,2015,July,32,23,2,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,109.53,0,0,Canceled,2018-06-02 -Resort Hotel,0,53,2017,August,34,7,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,180.51,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2017,June,29,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,62.0,0,Transient,129.22,0,0,Check-Out,2020-03-03 -Resort Hotel,0,55,2017,January,9,28,0,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.23,0,3,Check-Out,2020-06-02 -City Hotel,0,15,2016,October,43,2,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,78.92,0,1,Check-Out,2019-08-04 -Resort Hotel,0,10,2017,February,10,5,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,78.72,0,0,Check-Out,2019-10-04 -City Hotel,1,15,2017,August,27,10,1,0,1,0.0,0,BB,SWE,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,151.0,0,Transient,161.28,0,0,No-Show,2020-06-02 -City Hotel,0,32,2016,December,53,15,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.86,0,1,Check-Out,2019-10-04 -City Hotel,0,45,2016,February,10,29,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,61.21,0,0,Check-Out,2018-11-02 -City Hotel,1,11,2016,May,17,22,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,E,A,0,No Deposit,13.0,179.0,0,Transient,62.03,0,0,Canceled,2019-05-04 -City Hotel,0,86,2017,May,21,6,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.85,0,2,Check-Out,2020-04-02 -Resort Hotel,1,112,2016,June,27,5,3,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,163.0,179.0,0,Transient,98.28,0,2,Canceled,2019-01-03 -City Hotel,0,3,2017,January,50,1,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Transient,75.44,0,1,Check-Out,2019-10-04 -City Hotel,0,13,2016,March,8,9,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.91,0,1,Check-Out,2018-10-03 -City Hotel,0,83,2016,December,53,30,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.54,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,November,46,28,1,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,87.53,0,0,Check-Out,2019-07-04 -City Hotel,0,13,2017,April,21,6,2,2,1,0.0,0,HB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient-Party,82.76,0,0,Check-Out,2019-11-03 -City Hotel,1,47,2017,January,16,24,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,87.58,0,0,Canceled,2019-11-03 -Resort Hotel,0,101,2016,August,36,6,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,156.03,1,2,Check-Out,2019-07-04 -Resort Hotel,1,297,2015,August,43,15,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,327.0,179.0,0,Contract,60.52,0,2,Canceled,2018-01-31 -City Hotel,1,444,2015,September,45,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,63,Transient,105.49,0,0,Canceled,2018-08-03 -City Hotel,0,3,2016,January,4,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,98.0,0,Transient-Party,40.4,0,0,Check-Out,2019-04-03 -City Hotel,0,11,2016,January,10,31,1,2,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,133.82,0,1,Check-Out,2019-11-03 -City Hotel,1,47,2016,March,10,6,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,71.82,0,0,Canceled,2018-10-03 -Resort Hotel,0,248,2015,October,45,12,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,43.49,1,2,Check-Out,2019-08-04 -Resort Hotel,0,297,2016,August,35,2,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,313.0,179.0,0,Transient-Party,76.49,0,2,Check-Out,2019-05-04 -Resort Hotel,0,10,2016,January,50,10,1,2,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,C,E,0,No Deposit,242.0,179.0,0,Transient,60.55,0,0,Check-Out,2018-11-02 -City Hotel,1,64,2016,November,49,21,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,62.08,0,0,Canceled,2019-09-03 -City Hotel,0,52,2017,August,36,7,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,101.14,1,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2017,January,2,15,0,1,1,0.0,0,BB,,Corporate,Direct,1,0,0,D,D,0,No Deposit,14.0,87.0,0,Transient,34.56,0,0,Check-Out,2019-10-04 -City Hotel,0,41,2017,April,20,18,1,0,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,145.52,0,1,Check-Out,2020-03-03 -Resort Hotel,1,44,2016,September,42,24,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,74.72,0,1,Canceled,2019-10-04 -Resort Hotel,0,268,2017,July,32,25,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,203.77,0,2,Check-Out,2020-04-02 -Resort Hotel,0,31,2016,June,25,19,2,4,3,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,E,2,No Deposit,15.0,179.0,0,Transient,123.52,0,0,Check-Out,2020-04-02 -City Hotel,0,19,2017,April,18,13,1,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,194.8,0,0,Check-Out,2019-01-03 -City Hotel,1,30,2017,March,10,21,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient,65.52,0,0,Canceled,2019-10-04 -City Hotel,1,2,2016,October,27,8,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,72.31,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,January,5,11,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,12.0,66.0,0,Transient,33.84,1,0,Check-Out,2019-02-01 -City Hotel,1,1,2016,August,37,20,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,176.61,0,0,Canceled,2019-07-04 -City Hotel,0,19,2017,March,16,21,0,2,1,0.0,0,HB,ESP,Groups,Corporate,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.65,0,0,Check-Out,2020-06-02 -City Hotel,0,41,2016,September,37,21,2,4,2,1.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.89,0,2,Canceled,2019-06-03 -Resort Hotel,0,266,2017,January,10,9,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient-Party,144.78,1,1,Check-Out,2020-04-02 -Resort Hotel,0,234,2015,August,31,16,0,2,2,0.0,0,HB,ESP,Direct,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,92.47,1,0,Check-Out,2018-05-03 -City Hotel,1,19,2017,May,27,12,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.93,0,0,Canceled,2019-11-03 -City Hotel,1,53,2016,May,16,15,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,120.06,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,February,11,20,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,19.0,331.0,0,Transient,36.37,0,0,Check-Out,2020-03-03 -City Hotel,1,7,2016,August,36,8,2,0,3,0.0,0,BB,PRT,Undefined,TA/TO,0,1,0,B,B,0,No Deposit,14.0,179.0,0,Transient,147.21,0,0,Canceled,2019-02-01 -City Hotel,1,96,2016,March,16,28,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,10.0,179.0,0,Transient,61.41,0,3,Canceled,2019-02-01 -City Hotel,0,101,2017,July,25,28,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,190.36,0,1,Check-Out,2020-03-03 -Resort Hotel,0,150,2017,May,26,14,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,247.0,179.0,0,Transient,77.76,0,0,Check-Out,2020-01-04 -Resort Hotel,1,10,2016,December,53,21,2,4,2,2.0,0,BB,POL,Direct,TA/TO,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,78.01,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2017,February,11,6,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,38.42,0,1,Check-Out,2020-02-01 -Resort Hotel,1,81,2016,February,8,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,43.98,0,1,No-Show,2018-12-03 -City Hotel,0,7,2017,May,23,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,F,A,0,No Deposit,180.0,179.0,0,Transient,120.71,1,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,February,12,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,70.02,0,0,Check-Out,2018-12-03 -City Hotel,0,25,2015,November,50,8,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,66.74,0,0,Check-Out,2018-08-03 -Resort Hotel,0,153,2015,December,44,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,61.43,0,0,Check-Out,2019-07-04 -Resort Hotel,0,39,2015,August,36,22,0,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,337.0,179.0,0,Transient-Party,87.56,0,0,Check-Out,2018-07-03 -Resort Hotel,0,263,2016,May,27,8,0,4,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,73.43,0,0,Check-Out,2019-06-03 -Resort Hotel,0,21,2017,March,21,14,2,4,2,1.0,0,HB,,Direct,Direct,0,0,0,E,F,0,No Deposit,247.0,179.0,0,Transient,252.0,1,3,Check-Out,2020-02-01 -City Hotel,1,71,2015,September,38,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.49,0,0,Canceled,2018-08-03 -City Hotel,0,41,2017,May,22,7,0,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.13,0,2,Check-Out,2020-04-02 -City Hotel,0,0,2017,March,10,17,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,K,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -City Hotel,0,19,2017,April,18,18,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,120.68,0,1,Check-Out,2019-10-04 -City Hotel,1,44,2017,June,29,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,133.57,0,0,Canceled,2020-05-03 -City Hotel,1,48,2017,February,10,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,14.0,58.0,0,Transient,64.03,0,0,Canceled,2019-11-03 -Resort Hotel,0,3,2016,February,12,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,19.0,73.0,0,Transient,50.11,0,0,Check-Out,2019-10-04 -City Hotel,1,90,2016,February,9,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,11.0,179.0,0,Transient,94.74,0,0,No-Show,2018-11-02 -Resort Hotel,0,14,2017,June,35,12,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,78.54,0,0,Check-Out,2020-07-03 -City Hotel,1,19,2016,September,48,13,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,205.2,0,0,Canceled,2019-05-04 -Resort Hotel,0,33,2017,March,10,29,2,1,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,70.93,0,1,Check-Out,2020-04-02 -Resort Hotel,0,12,2016,September,36,28,2,5,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,206.16,0,3,Check-Out,2019-05-04 -Resort Hotel,0,17,2016,May,23,28,1,1,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,76.94,0,0,Check-Out,2019-03-04 -City Hotel,1,159,2016,March,18,24,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,65,Transient,97.39,0,0,Canceled,2018-12-03 -City Hotel,0,2,2015,December,52,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,76.03,0,0,Check-Out,2018-12-03 -City Hotel,1,20,2016,November,49,25,0,3,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,74.73,0,0,Canceled,2019-08-04 -City Hotel,1,29,2017,May,18,17,1,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,10.0,179.0,0,Transient,129.19,0,3,Canceled,2020-03-03 -City Hotel,0,2,2017,May,21,16,0,1,1,0.0,0,SC,FRA,Complementary,TA/TO,0,0,0,C,K,0,No Deposit,12.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -City Hotel,1,312,2016,October,45,13,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,E,A,0,No Deposit,10.0,179.0,0,Transient,78.76,0,1,Canceled,2019-07-04 -City Hotel,1,18,2017,January,9,10,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -Resort Hotel,0,62,2017,August,36,3,0,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-07-03 -Resort Hotel,0,60,2015,July,31,16,0,2,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,77.04,0,0,Check-Out,2018-08-03 -Resort Hotel,0,286,2015,July,34,6,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.69,0,0,Check-Out,2018-05-03 -Resort Hotel,1,6,2016,August,36,30,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,77.82,0,0,Canceled,2019-09-03 -Resort Hotel,0,46,2015,December,42,12,0,2,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,101.72,0,2,Check-Out,2019-11-03 -City Hotel,0,95,2016,May,22,6,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.82,0,2,Check-Out,2019-02-01 -City Hotel,0,21,2017,July,31,30,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,201.42,0,2,Check-Out,2020-06-02 -City Hotel,0,86,2016,June,27,5,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,133.86,0,1,Check-Out,2019-04-03 -City Hotel,1,49,2017,August,36,25,0,5,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,196.69,0,3,Canceled,2019-05-04 -City Hotel,1,67,2015,August,45,27,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,1.0,179.0,0,Transient,60.66,0,0,Canceled,2017-11-02 -Resort Hotel,0,225,2017,July,18,22,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,193.0,179.0,0,Transient,83.37,0,0,Check-Out,2020-07-03 -City Hotel,0,265,2015,July,28,12,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,81.12,0,0,Check-Out,2017-11-02 -Resort Hotel,0,259,2017,July,30,18,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,124.96,0,0,Check-Out,2020-06-02 -City Hotel,1,268,2016,August,40,15,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,182.89,0,2,Canceled,2019-08-04 -City Hotel,1,0,2016,August,37,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,58.86,0,0,Canceled,2019-02-01 -City Hotel,0,12,2015,November,51,24,2,1,2,0.0,0,BB,CHE,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,109.17,0,0,Check-Out,2018-09-02 -Resort Hotel,0,18,2017,April,16,30,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,3.0,179.0,0,Transient-Party,140.16,0,0,Check-Out,2019-05-04 -Resort Hotel,0,270,2015,July,43,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,47.46,0,0,Check-Out,2018-06-02 -Resort Hotel,0,130,2017,May,25,28,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,1,No Deposit,298.0,179.0,0,Transient-Party,60.47,1,2,Check-Out,2019-11-03 -City Hotel,1,35,2017,January,19,5,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.88,0,0,No-Show,2019-04-03 -City Hotel,1,100,2015,July,39,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient-Party,121.13,0,0,Canceled,2018-06-02 -City Hotel,0,54,2015,September,28,24,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,95.44,0,0,Check-Out,2018-05-03 -Resort Hotel,1,35,2015,August,43,4,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient,120.84,0,0,Canceled,2017-12-03 -Resort Hotel,0,1,2015,August,36,30,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,218.59,0,1,Check-Out,2018-07-03 -City Hotel,1,11,2017,July,3,20,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,89.21,0,0,Canceled,2018-06-02 -Resort Hotel,1,1,2015,September,36,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,No Deposit,239.0,179.0,0,Transient,61.2,0,0,Canceled,2018-06-02 -City Hotel,0,29,2017,May,23,10,2,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,86.63,0,0,Check-Out,2020-04-02 -City Hotel,0,39,2015,July,36,6,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,98.86,0,0,Check-Out,2019-06-03 -City Hotel,1,42,2017,July,37,30,2,4,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,218.14,0,2,Canceled,2020-03-03 -Resort Hotel,0,86,2015,November,51,30,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,24.02,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2015,September,37,28,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,L,F,0,No Deposit,15.0,179.0,0,Transient,101.63,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2015,October,50,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,3,No Deposit,17.0,331.0,0,Transient,28.51,0,0,Check-Out,2018-09-02 -City Hotel,0,8,2017,July,25,2,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,206.06,1,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,October,45,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,28.9,1,0,Check-Out,2018-06-02 -City Hotel,1,11,2016,December,51,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,10.0,179.0,0,Transient,61.65,0,0,Canceled,2018-11-02 -Resort Hotel,1,175,2017,May,22,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,242.0,179.0,0,Transient,151.18,1,2,Canceled,2020-01-04 -Resort Hotel,0,4,2017,January,2,15,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,80.0,0,Transient,32.74,1,0,Check-Out,2019-12-04 -City Hotel,0,11,2017,February,10,27,0,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.89,0,1,Check-Out,2019-11-03 -City Hotel,0,58,2016,March,8,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient,90.68,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2017,January,3,6,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,60.17,0,0,Check-Out,2019-10-04 -City Hotel,0,10,2017,May,29,9,0,2,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,D,1,No Deposit,13.0,45.0,0,Transient,73.73,0,0,Check-Out,2020-04-02 -Resort Hotel,0,11,2016,July,15,28,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,115.07,0,1,Check-Out,2019-01-03 -City Hotel,0,59,2015,November,37,27,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,156.61,0,2,Check-Out,2018-08-03 -Resort Hotel,0,99,2017,August,26,2,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Transient,150.56,1,3,Check-Out,2020-04-02 -City Hotel,0,98,2017,May,22,18,2,5,2,2.0,0,HB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,231.42,0,3,Check-Out,2020-03-03 -City Hotel,0,49,2017,June,26,21,0,2,1,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.51,0,1,Check-Out,2020-04-02 -City Hotel,0,20,2015,September,45,21,0,3,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,107.9,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2017,February,9,6,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,74.83,0,1,Check-Out,2019-11-03 -City Hotel,0,84,2017,June,22,10,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.33,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,May,27,15,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,153.9,0,3,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,October,42,24,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,30.3,0,0,Check-Out,2018-12-03 -City Hotel,0,38,2016,December,53,23,0,1,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,87.05,0,0,Check-Out,2019-11-03 -Resort Hotel,1,250,2016,June,28,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,16.0,179.0,0,Transient,120.52,0,0,Canceled,2019-06-03 -City Hotel,0,163,2016,December,53,10,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.18,0,1,Check-Out,2019-06-03 -City Hotel,0,101,2016,July,28,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,82.64,0,0,Check-Out,2019-06-03 -City Hotel,1,91,2017,January,3,27,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.84,0,1,Canceled,2019-11-03 -City Hotel,0,63,2015,September,41,25,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Transient-Party,126.16,0,1,Check-Out,2018-08-03 -City Hotel,1,191,2017,April,16,10,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,70.69,0,0,Canceled,2019-10-04 -Resort Hotel,0,116,2016,October,53,14,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,199.26,1,0,Check-Out,2019-09-03 -Resort Hotel,1,234,2015,September,33,24,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,238.0,179.0,0,Contract,42.62,0,2,Canceled,2018-07-03 -City Hotel,0,50,2016,February,10,28,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,71.79,0,1,Check-Out,2018-09-02 -City Hotel,0,47,2016,March,9,28,2,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,83.93,0,0,Check-Out,2019-11-03 -Resort Hotel,0,294,2016,September,36,16,2,5,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-04-03 -Resort Hotel,1,168,2017,April,17,16,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,262.0,179.0,0,Transient,143.99,0,0,Canceled,2020-03-03 -City Hotel,0,110,2016,August,35,9,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,172.22,0,1,Check-Out,2019-08-04 -Resort Hotel,0,19,2016,March,11,31,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,14.0,223.0,75,Transient-Party,67.05,0,0,Check-Out,2019-03-04 -Resort Hotel,0,310,2015,August,37,20,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,55.71,0,1,Canceled,2018-06-02 -City Hotel,0,10,2015,September,44,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,64,Contract,63.2,0,0,Check-Out,2018-08-03 -Resort Hotel,0,261,2017,June,21,12,1,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-03-03 -Resort Hotel,0,24,2017,February,10,18,0,1,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,92.0,331.0,0,Transient-Party,60.52,1,0,Check-Out,2019-11-03 -City Hotel,1,82,2016,January,12,9,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,84.94,0,3,Canceled,2018-12-03 -Resort Hotel,0,210,2017,May,37,14,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,180.0,179.0,0,Transient,72.21,0,0,Check-Out,2019-12-04 -City Hotel,1,71,2016,June,25,20,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,149.9,0,1,No-Show,2019-06-03 -Resort Hotel,0,33,2017,March,16,16,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,43.47,0,1,Check-Out,2020-03-03 -City Hotel,0,35,2016,June,8,24,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.31,0,3,Check-Out,2019-03-04 -City Hotel,1,301,2016,July,36,26,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,E,0,No Deposit,10.0,179.0,0,Transient,122.04,0,0,Canceled,2019-08-04 -Resort Hotel,0,33,2017,February,21,6,2,5,2,1.0,0,BB,GBR,Direct,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,1.56,1,0,Check-Out,2020-01-04 -City Hotel,0,98,2016,March,17,15,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.67,0,2,Check-Out,2019-03-04 -Resort Hotel,0,60,2016,April,16,27,0,6,3,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,217.76,0,0,Canceled,2019-03-04 -Resort Hotel,0,302,2017,May,23,15,2,1,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,E,E,0,No Deposit,307.0,179.0,0,Transient,78.1,0,0,Check-Out,2020-02-01 -City Hotel,1,60,2017,March,8,12,0,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,145.73,0,0,Canceled,2018-10-03 -City Hotel,1,407,2016,October,42,25,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.68,0,0,Canceled,2019-05-04 -Resort Hotel,0,3,2017,May,21,26,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,193.0,179.0,0,Transient,99.85,1,0,Check-Out,2019-10-04 -Resort Hotel,0,2,2016,August,35,5,0,3,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,F,2,No Deposit,16.0,179.0,0,Transient,154.41,0,0,Check-Out,2020-06-02 -City Hotel,1,278,2016,March,15,2,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,125.0,179.0,40,Transient,86.77,0,0,Canceled,2018-11-02 -Resort Hotel,0,89,2015,October,42,15,2,0,2,0.0,0,BB,ESP,Direct,Direct,1,0,0,A,I,1,No Deposit,244.0,179.0,0,Transient,1.49,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2016,October,43,10,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.05,0,1,Check-Out,2019-03-04 -Resort Hotel,0,19,2016,November,50,5,2,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,197.0,0,Transient,40.42,0,0,Check-Out,2019-07-04 -Resort Hotel,0,32,2016,November,49,31,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,32.08,0,0,Check-Out,2019-01-03 -City Hotel,1,82,2016,June,42,6,1,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.63,0,2,No-Show,2019-06-03 -Resort Hotel,1,26,2016,April,10,17,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,94.43,0,0,No-Show,2019-02-01 -City Hotel,0,96,2017,June,21,22,2,4,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,122.6,0,2,Check-Out,2019-11-03 -Resort Hotel,0,26,2016,May,21,23,1,0,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,98.8,0,3,Check-Out,2019-06-03 -City Hotel,1,43,2016,February,9,13,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,Non Refund,103.0,179.0,0,Transient,68.88,0,0,Canceled,2018-11-02 -Resort Hotel,0,379,2017,May,33,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,242.0,179.0,0,Transient,95.85,0,1,Check-Out,2020-04-02 -Resort Hotel,0,17,2015,October,45,9,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,51.86,0,0,Check-Out,2018-09-02 -City Hotel,1,162,2016,June,33,20,0,3,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,153.9,0,0,Canceled,2018-09-02 -Resort Hotel,0,64,2017,August,36,27,0,1,1,1.0,0,BB,USA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,216.93,1,0,Check-Out,2020-06-02 -City Hotel,1,43,2017,February,10,29,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,No Deposit,37.0,179.0,0,Transient,79.65,0,0,Canceled,2019-09-03 -City Hotel,1,39,2017,March,21,6,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,141.32,0,2,Canceled,2020-04-02 -Resort Hotel,0,0,2016,February,10,29,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,43.81,0,1,Check-Out,2018-10-03 -Resort Hotel,0,99,2017,May,27,13,1,2,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient-Party,223.74,0,0,Check-Out,2019-05-04 -City Hotel,0,196,2017,May,23,29,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-05-03 -City Hotel,0,1,2015,October,44,28,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.86,0,2,Check-Out,2018-09-02 -City Hotel,0,100,2017,July,38,2,2,3,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,201.72,0,3,Check-Out,2019-11-03 -City Hotel,1,90,2016,June,26,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,92.01,0,0,Canceled,2019-02-01 -Resort Hotel,0,111,2017,July,32,30,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,227.46,0,0,Check-Out,2019-11-03 -City Hotel,0,94,2017,July,33,15,0,3,3,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,216.99,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2017,July,36,23,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,127.97,0,0,Check-Out,2020-07-03 -Resort Hotel,1,2,2015,November,44,5,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,350.0,179.0,0,Transient,37.29,0,0,Canceled,2018-09-02 -Resort Hotel,0,38,2016,April,37,30,1,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,128.9,0,3,Check-Out,2019-11-03 -Resort Hotel,0,1,2015,October,50,17,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,265.0,0,Transient,33.39,0,0,Check-Out,2018-09-02 -City Hotel,0,254,2017,May,23,29,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-04-02 -City Hotel,1,46,2017,March,21,27,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,150.07,0,0,Canceled,2019-10-04 -City Hotel,0,244,2016,June,26,9,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.9,0,2,Check-Out,2019-04-03 -Resort Hotel,0,58,2016,May,20,4,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,98.4,1,2,Check-Out,2019-02-01 -City Hotel,0,3,2017,May,23,20,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-04-02 -City Hotel,1,46,2017,March,8,6,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.59,0,1,Canceled,2020-01-04 -City Hotel,0,0,2016,October,43,4,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,71.08,0,0,Check-Out,2019-09-03 -City Hotel,1,161,2015,August,37,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,102.25,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,July,27,18,0,5,1,0.0,0,HB,PRT,Complementary,Direct,1,0,1,C,C,1,No Deposit,246.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-06-03 -City Hotel,1,18,2015,October,45,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,37,Transient,90.23,0,0,Canceled,2017-11-02 -Resort Hotel,0,99,2017,May,16,26,0,1,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,86.0,179.0,0,Transient-Party,78.84,0,0,Check-Out,2020-03-03 -City Hotel,1,14,2017,March,10,7,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.06,0,0,Check-Out,2020-07-03 -Resort Hotel,0,100,2016,December,53,24,0,1,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,181.43,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,April,18,17,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,175.75,1,2,Check-Out,2020-02-01 -Resort Hotel,0,32,2017,January,10,21,1,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,63.93,1,1,Check-Out,2019-11-03 -Resort Hotel,0,133,2016,August,38,2,2,5,2,1.0,0,HB,,Online TA,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,250.14,0,1,Check-Out,2019-05-04 -Resort Hotel,0,2,2017,August,34,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,116.85,0,2,Check-Out,2020-06-02 -City Hotel,1,86,2017,May,22,24,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,75.7,0,0,Canceled,2020-03-03 -City Hotel,1,409,2016,October,44,23,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.57,0,0,Canceled,2018-08-03 -Resort Hotel,1,15,2016,March,16,30,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,108.56,0,0,Canceled,2019-11-03 -Resort Hotel,0,91,2017,May,43,7,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,69.76,0,1,Check-Out,2020-05-03 -Resort Hotel,0,87,2016,February,16,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,38.06,0,0,Check-Out,2019-04-03 -City Hotel,0,99,2016,September,42,12,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,140.06,0,0,Check-Out,2019-08-04 -Resort Hotel,0,166,2016,June,25,16,0,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient-Party,36.23,0,0,Check-Out,2019-07-04 -Resort Hotel,0,4,2016,October,44,20,1,2,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,78.86,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2017,January,4,29,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,58.7,1,1,Check-Out,2019-10-04 -City Hotel,0,18,2017,August,36,25,1,5,3,0.0,0,BB,CHN,Online TA,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,196.64,0,0,Check-Out,2019-12-04 -Resort Hotel,0,57,2016,February,11,28,1,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,67.44,0,2,Check-Out,2020-01-04 -City Hotel,0,37,2016,August,30,14,0,4,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.76,0,1,Check-Out,2019-05-04 -City Hotel,1,53,2017,February,9,28,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.34,0,1,Canceled,2019-11-03 -Resort Hotel,1,47,2017,May,17,18,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.56,0,2,Canceled,2020-02-01 -City Hotel,0,2,2015,September,43,17,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,63,Transient-Party,74.64,0,0,Check-Out,2018-08-03 -City Hotel,0,47,2017,March,10,6,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,78.84,0,0,Check-Out,2020-02-01 -City Hotel,1,4,2017,August,38,27,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,239.25,0,0,Canceled,2020-06-02 -Resort Hotel,0,32,2016,May,22,9,2,3,2,0.0,0,HB,USA,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,89.69,0,2,Check-Out,2019-02-01 -City Hotel,1,189,2017,April,13,2,2,5,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,196.98,0,0,Canceled,2020-01-04 -Resort Hotel,0,0,2017,February,8,15,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,104.0,0,Transient,41.07,0,0,Canceled,2020-05-03 -City Hotel,0,91,2016,August,24,15,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,74.78,0,1,Check-Out,2019-03-04 -City Hotel,0,42,2015,July,33,16,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,94.6,0,1,Check-Out,2018-06-02 -City Hotel,0,11,2016,September,43,15,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,102.18,0,1,Check-Out,2019-09-03 -City Hotel,0,56,2016,October,45,16,1,6,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,205.2,0,1,Check-Out,2019-04-03 -City Hotel,0,2,2017,June,26,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,71.0,0,Transient,47.44,0,0,Check-Out,2020-07-03 -City Hotel,0,8,2016,December,44,6,0,1,2,0.0,0,SC,PRT,Complementary,Direct,1,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -Resort Hotel,0,16,2015,December,53,9,2,0,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,88.0,179.0,0,Transient,77.51,0,0,Check-Out,2019-01-03 -City Hotel,0,33,2017,June,25,5,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,143.48,0,1,Check-Out,2020-03-03 -Resort Hotel,0,45,2017,June,12,10,4,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,143.12,1,0,Check-Out,2020-02-01 -City Hotel,1,289,2016,July,33,24,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,176.55,0,0,Canceled,2019-05-04 -City Hotel,1,208,2016,March,11,20,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Transient,75.86,0,0,Canceled,2018-11-02 -City Hotel,0,158,2017,May,27,24,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,113.69,0,0,Check-Out,2020-03-03 -City Hotel,1,92,2017,May,20,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.85,0,0,Canceled,2020-03-03 -Resort Hotel,0,90,2017,June,25,6,0,6,2,0.0,0,BB,NLD,Online TA,Corporate,1,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,130.08,1,1,Check-Out,2020-03-03 -Resort Hotel,0,94,2017,April,16,9,1,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient-Party,170.96,0,0,Check-Out,2019-02-01 -City Hotel,0,294,2016,March,18,23,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,217.29,0,0,Check-Out,2020-02-01 -Resort Hotel,0,11,2016,January,4,23,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,34.09,0,0,Check-Out,2019-03-04 -City Hotel,1,155,2017,February,10,28,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,35.0,179.0,0,Transient,60.99,0,0,Canceled,2019-10-04 -Resort Hotel,0,102,2016,April,19,30,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,73.23,1,2,Check-Out,2019-03-04 -City Hotel,1,83,2016,May,24,2,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,96.92,0,1,Canceled,2019-10-04 -City Hotel,1,156,2016,May,22,2,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,77.78,0,0,Canceled,2019-05-04 -City Hotel,0,95,2015,July,31,3,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,97.41,0,2,Check-Out,2019-04-03 -City Hotel,0,0,2015,September,45,2,0,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.55,0,1,Check-Out,2018-09-02 -City Hotel,0,64,2015,October,44,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,C,1,No Deposit,102.0,240.0,0,Transient-Party,58.75,0,0,Check-Out,2018-09-02 -City Hotel,1,35,2015,October,44,31,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,117.33,0,0,Canceled,2018-08-03 -Resort Hotel,1,170,2016,June,29,28,4,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,128.1,0,0,Canceled,2019-06-03 -Resort Hotel,0,1,2017,June,36,24,0,5,1,0.0,0,BB,ESP,Groups,Corporate,0,0,1,A,A,0,No Deposit,245.0,179.0,0,Transient,71.64,0,0,Check-Out,2020-07-03 -Resort Hotel,1,22,2015,December,51,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,59.9,0,0,Canceled,2018-10-03 -City Hotel,0,81,2017,March,10,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-02-01 -Resort Hotel,1,2,2015,December,50,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,361.0,179.0,0,Transient,1.9,0,0,Canceled,2018-12-03 -City Hotel,0,7,2016,May,21,2,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,81.49,0,0,Check-Out,2019-02-01 -Resort Hotel,0,35,2015,December,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,78.0,0,Transient,42.29,0,0,Check-Out,2018-12-03 -City Hotel,1,114,2016,August,32,27,1,5,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,90.12,0,0,Canceled,2019-06-03 -City Hotel,1,41,2017,July,22,18,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,200.18,0,2,Canceled,2020-04-02 -City Hotel,1,13,2017,April,17,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,159.0,179.0,0,Transient,115.91,0,0,Canceled,2019-02-01 -City Hotel,0,311,2017,July,30,9,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,110.55,0,0,Check-Out,2020-06-02 -City Hotel,0,20,2017,March,10,24,2,5,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.35,0,1,Check-Out,2019-12-04 -City Hotel,1,12,2016,January,3,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,65.7,0,0,Canceled,2018-10-03 -Resort Hotel,0,152,2016,July,32,10,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,142.0,179.0,0,Transient,85.89,0,2,Check-Out,2019-08-04 -City Hotel,0,3,2016,January,12,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,65.0,0,Transient,77.01,0,0,Check-Out,2018-12-03 -City Hotel,1,24,2015,December,53,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,111.98,0,0,Canceled,2018-05-03 -City Hotel,0,0,2016,October,43,20,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,F,0,No Deposit,15.0,45.0,0,Transient,0.0,1,2,Check-Out,2019-09-03 -Resort Hotel,0,103,2016,April,22,23,2,5,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,74.57,0,0,Check-Out,2019-03-04 -Resort Hotel,1,206,2017,August,35,12,2,5,2,1.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,95.59,0,2,Canceled,2020-05-03 -City Hotel,0,4,2015,October,48,8,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,15.0,236.0,0,Transient-Party,58.2,0,0,Check-Out,2018-09-02 -City Hotel,1,268,2016,September,36,28,1,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,134.63,0,0,Canceled,2019-07-04 -Resort Hotel,0,94,2015,August,39,25,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,15.0,179.0,0,Transient,1.89,0,0,Check-Out,2018-05-03 -Resort Hotel,0,259,2017,July,34,2,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,243.0,179.0,0,Transient,156.08,0,2,Check-Out,2020-06-02 -City Hotel,0,92,2015,July,53,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,125.48,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,January,5,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,140.0,179.0,0,Transient-Party,38.17,0,0,Check-Out,2018-12-03 -City Hotel,0,39,2017,May,21,7,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.59,0,1,Check-Out,2020-02-01 -City Hotel,1,270,2016,July,33,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,164.81,0,0,Canceled,2018-07-03 -City Hotel,0,45,2016,August,35,25,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.31,0,1,Check-Out,2019-06-03 -City Hotel,1,10,2016,May,22,28,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.88,0,2,Canceled,2019-11-03 -City Hotel,1,3,2017,June,20,16,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Canceled,2019-09-03 -City Hotel,0,43,2015,October,43,9,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,93.62,0,0,Check-Out,2018-08-03 -City Hotel,1,12,2016,August,38,23,1,1,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,252.0,1,0,No-Show,2019-08-04 -City Hotel,1,31,2015,December,51,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,63.08,1,1,Canceled,2018-08-03 -City Hotel,0,0,2016,May,44,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,16.0,231.0,0,Transient,87.9,1,0,Check-Out,2019-07-04 -Resort Hotel,0,13,2015,October,44,30,0,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,139.89,1,1,Check-Out,2018-08-03 -City Hotel,0,13,2016,March,19,16,0,4,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,203.35,0,1,Check-Out,2019-10-04 -City Hotel,0,152,2017,January,3,15,0,1,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,335.0,179.0,0,Transient,144.02,0,3,No-Show,2019-11-03 -City Hotel,0,6,2016,October,44,10,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.75,0,1,Check-Out,2019-06-03 -City Hotel,0,265,2016,September,36,2,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,179.0,179.0,0,Contract,134.55,0,1,Check-Out,2020-05-03 -Resort Hotel,0,101,2017,May,22,17,2,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,182.17,0,0,Check-Out,2020-04-02 -City Hotel,0,5,2015,February,11,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.94,0,0,Check-Out,2018-12-03 -City Hotel,1,33,2015,August,37,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,237.0,179.0,0,Group,39.93,0,0,Canceled,2018-05-03 -City Hotel,0,47,2016,December,45,2,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,66.65,0,0,Check-Out,2019-10-04 -Resort Hotel,1,45,2015,December,49,24,2,5,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,69.93,0,0,Canceled,2018-12-03 -Resort Hotel,0,10,2016,October,42,6,0,5,1,0.0,0,SC,IRL,Online TA,GDS,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,45.22,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,March,9,19,2,2,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,B,1,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-01-03 -City Hotel,0,0,2016,June,28,17,0,1,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,104.57,0,0,Check-Out,2020-03-03 -City Hotel,0,28,2016,December,53,31,0,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,112.4,0,3,Check-Out,2019-10-04 -City Hotel,0,247,2015,December,50,28,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,60.91,0,0,Check-Out,2018-08-03 -City Hotel,1,55,2015,December,52,31,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.81,0,0,Canceled,2018-05-03 -City Hotel,1,90,2016,March,14,28,0,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,61,Transient,85.42,0,0,Canceled,2019-03-04 -City Hotel,0,105,2017,February,9,21,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.37,0,1,Check-Out,2020-04-02 -City Hotel,0,19,2016,October,46,27,2,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,67.25,0,3,Check-Out,2019-11-03 -City Hotel,0,164,2016,October,43,30,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.18,0,0,Check-Out,2019-05-04 -Resort Hotel,0,138,2017,May,23,31,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,29.0,179.0,0,Transient,159.55,0,0,Check-Out,2020-03-03 -City Hotel,0,55,2016,October,42,13,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,163.48,0,0,Check-Out,2019-08-04 -City Hotel,0,48,2015,August,37,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,113.87,1,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,February,9,21,2,0,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,H,2,No Deposit,24.0,179.0,0,Transient-Party,1.37,0,0,Check-Out,2020-01-04 -City Hotel,0,50,2016,September,42,19,2,7,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.2,0,2,Check-Out,2019-06-03 -City Hotel,1,257,2015,September,37,19,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,210.0,179.0,0,Transient,73.96,0,0,Canceled,2017-11-02 -Resort Hotel,0,137,2017,January,10,18,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,E,2,No Deposit,329.0,179.0,0,Transient-Party,89.13,0,0,Check-Out,2019-11-03 -Resort Hotel,0,58,2015,November,53,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,39.01,0,0,Canceled,2018-08-03 -City Hotel,0,2,2017,February,13,16,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,44.0,179.0,0,Transient,74.68,0,0,Check-Out,2019-09-03 -City Hotel,0,59,2017,February,10,27,0,4,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,86.0,179.0,0,Group,125.29,0,0,Check-Out,2020-02-01 -City Hotel,0,12,2016,December,51,8,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,92.31,0,0,Check-Out,2019-12-04 -City Hotel,0,111,2016,April,16,9,2,3,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.16,0,0,Check-Out,2019-02-01 -City Hotel,0,43,2016,December,46,26,0,2,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient-Party,71.91,0,0,Check-Out,2019-11-03 -City Hotel,1,4,2016,September,42,25,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.06,0,0,Canceled,2019-10-04 -City Hotel,0,5,2017,January,9,21,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,2.09,1,0,Check-Out,2020-04-02 -City Hotel,0,17,2016,October,43,17,0,1,1,0.0,0,BB,SWE,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,206.0,0,Transient,91.23,0,0,Check-Out,2019-07-04 -Resort Hotel,0,20,2017,May,20,27,0,4,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,170.09,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2015,August,26,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,198.27,0,0,Check-Out,2018-06-02 -City Hotel,1,293,2017,April,17,16,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,113.73,0,0,Canceled,2020-02-01 -Resort Hotel,0,35,2016,March,18,29,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,10.0,179.0,0,Group,60.95,0,1,Check-Out,2019-02-01 -Resort Hotel,0,288,2016,August,38,3,4,3,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,61.72,0,0,Check-Out,2019-06-03 -City Hotel,1,36,2016,April,21,24,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,H,0,No Deposit,1.0,179.0,0,Transient,90.97,0,0,Check-Out,2019-03-04 -City Hotel,1,2,2015,September,32,9,2,0,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.67,0,0,Canceled,2018-11-02 -City Hotel,0,86,2016,March,16,24,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,95.25,0,2,Check-Out,2019-02-01 -City Hotel,0,41,2016,March,8,11,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,61.0,0,0,Check-Out,2018-11-02 -City Hotel,1,38,2016,December,5,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,58.61,0,0,Canceled,2018-11-02 -City Hotel,1,112,2015,March,10,22,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.23,0,0,Canceled,2018-11-02 -City Hotel,1,250,2017,June,27,20,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,101.23,0,2,Canceled,2020-03-03 -City Hotel,1,159,2016,January,3,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,112.28,0,0,Canceled,2018-11-02 -Resort Hotel,0,161,2016,October,27,27,3,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,93.0,179.0,75,Transient-Party,64.74,0,0,Check-Out,2019-08-04 -City Hotel,0,12,2016,May,23,27,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.15,0,2,Check-Out,2019-04-03 -City Hotel,0,54,2017,April,17,21,2,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.29,0,1,Check-Out,2020-02-01 -Resort Hotel,0,49,2016,August,37,31,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,172.47,1,1,Canceled,2019-07-04 -City Hotel,1,53,2017,February,9,27,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,117.4,0,0,Canceled,2018-11-02 -City Hotel,1,109,2016,June,10,12,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,1,0,E,A,0,Non Refund,3.0,179.0,60,Transient,60.92,0,0,Canceled,2018-12-03 -City Hotel,0,4,2016,July,33,5,1,1,2,0.0,0,BB,CN,Complementary,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,167.33,1,2,Check-Out,2019-09-03 -City Hotel,1,315,2017,August,37,7,2,1,2,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,166.84,0,0,Canceled,2020-07-03 -City Hotel,1,151,2016,June,27,16,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,110.07,0,0,Canceled,2017-12-03 -Resort Hotel,0,1,2017,June,34,20,1,3,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,77.26,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,August,36,18,0,3,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,233.67,0,0,Check-Out,2020-06-02 -City Hotel,1,376,2017,February,8,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,25.0,179.0,41,Transient,41.74,0,0,Canceled,2019-09-03 -City Hotel,0,55,2015,June,17,18,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,76.14,0,0,Check-Out,2019-03-04 -City Hotel,1,4,2017,August,35,9,2,2,3,0.0,0,BB,,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,198.67,0,3,Check-Out,2020-06-02 -City Hotel,1,59,2017,June,26,26,1,2,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,210.53,0,0,Canceled,2020-02-01 -Resort Hotel,1,63,2016,October,44,10,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,218.21,0,1,Canceled,2019-07-04 -City Hotel,0,42,2016,December,49,15,1,2,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient-Party,109.71,0,0,Check-Out,2019-12-04 -Resort Hotel,1,6,2016,March,10,26,2,4,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient,68.74,0,0,Canceled,2019-01-03 -City Hotel,0,40,2017,May,26,21,0,3,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,162.32,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,June,27,9,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,149.52,0,1,Check-Out,2020-03-03 -City Hotel,1,372,2015,October,33,15,0,3,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,128.0,179.0,0,Transient,77.52,0,0,Canceled,2018-08-03 -Resort Hotel,1,149,2016,October,50,28,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,69.95,0,3,Canceled,2019-09-03 -Resort Hotel,0,5,2016,December,46,2,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,61.14,0,0,Check-Out,2019-07-04 -City Hotel,1,45,2017,April,19,4,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.62,0,0,Canceled,2020-02-01 -City Hotel,0,207,2017,April,19,24,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,128.81,0,2,Check-Out,2020-04-02 -Resort Hotel,0,9,2015,August,34,29,1,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,252.0,1,1,Check-Out,2018-07-03 -Resort Hotel,1,234,2017,August,37,14,2,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,229.84,0,2,Canceled,2019-04-03 -Resort Hotel,1,16,2016,November,52,29,2,7,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,359.0,179.0,0,Transient,59.5,0,0,Canceled,2019-09-03 -Resort Hotel,0,6,2016,March,22,15,0,3,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,11.0,179.0,75,Transient-Party,68.08,1,3,Check-Out,2019-10-04 -Resort Hotel,0,37,2016,March,9,23,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient,37.03,0,0,Check-Out,2019-04-03 -City Hotel,0,4,2016,February,10,9,0,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,79.33,0,0,Check-Out,2019-10-04 -Resort Hotel,0,194,2017,August,39,13,2,5,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.24,0,1,Check-Out,2020-06-02 -City Hotel,1,48,2016,August,45,15,0,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,69.34,0,2,Canceled,2019-02-01 -City Hotel,1,407,2017,May,25,29,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,176.14,0,0,Canceled,2019-11-03 -Resort Hotel,0,159,2016,March,16,27,2,5,1,0.0,0,Undefined,ITA,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,34.0,179.0,75,Transient-Party,72.94,0,0,Check-Out,2019-01-03 -City Hotel,1,236,2015,August,38,5,0,5,2,0.0,0,BB,PRT,Undefined,Undefined,1,1,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-06-02 -Resort Hotel,0,308,2016,May,21,20,1,1,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,D,D,0,No Deposit,269.0,179.0,0,Transient-Party,50.4,0,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2015,December,50,30,1,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,61.95,0,0,Check-Out,2018-08-03 -City Hotel,0,41,2016,September,44,20,2,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,128.77,0,2,Check-Out,2019-05-04 -Resort Hotel,0,3,2016,October,44,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,34.53,0,0,Check-Out,2019-08-04 -City Hotel,0,214,2016,July,31,2,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,97.87,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,March,10,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,18.0,179.0,0,Transient,47.26,0,3,Check-Out,2020-02-01 -Resort Hotel,0,18,2016,April,20,5,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,140.52,0,2,Check-Out,2019-07-04 -City Hotel,0,144,2017,May,16,21,2,1,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,155.7,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2016,February,10,6,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,61.22,0,1,Check-Out,2019-01-03 -City Hotel,1,170,2016,September,32,17,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.76,0,0,Canceled,2019-07-04 -Resort Hotel,0,240,2016,May,22,28,1,4,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,62.97,0,0,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,December,51,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,2,No Deposit,15.0,231.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -City Hotel,0,40,2016,May,20,2,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,151.69,0,1,Check-Out,2019-02-01 -Resort Hotel,0,42,2016,May,21,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,70.93,0,2,Check-Out,2019-09-03 -Resort Hotel,0,48,2017,July,16,20,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,81.39,1,2,Check-Out,2020-02-01 -City Hotel,0,62,2016,May,21,22,0,2,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,30.0,179.0,0,Transient-Party,68.98,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,January,4,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,62.5,0,0,Check-Out,2018-12-03 -Resort Hotel,1,3,2016,July,26,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,152.8,0,1,Canceled,2018-11-02 -City Hotel,0,0,2016,June,26,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,E,0,No Deposit,16.0,221.0,0,Transient,120.49,0,0,Check-Out,2019-05-04 -City Hotel,0,31,2017,December,50,6,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,65.31,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,June,17,29,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,122.74,1,0,Check-Out,2019-02-01 -City Hotel,1,16,2015,August,43,23,2,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,76.28,0,0,Canceled,2018-06-02 -Resort Hotel,1,188,2016,August,36,25,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,74.17,0,2,Canceled,2019-07-04 -City Hotel,1,0,2017,April,20,9,0,1,3,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,6.39,0,0,Check-Out,2020-05-03 -Resort Hotel,0,43,2016,September,44,22,1,4,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,H,I,1,No Deposit,283.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-04-03 -City Hotel,1,267,2016,May,21,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,93.26,0,0,Canceled,2019-02-01 -City Hotel,1,102,2016,May,22,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,288.0,179.0,0,Transient,59.95,0,0,Canceled,2019-03-04 -Resort Hotel,0,32,2016,June,23,18,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,C,0,No Deposit,310.0,179.0,0,Transient-Party,86.41,1,0,Check-Out,2019-02-01 -City Hotel,1,42,2016,February,9,17,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,111.42,0,1,Canceled,2018-12-03 -City Hotel,1,13,2017,January,3,27,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,D,0,Non Refund,12.0,76.0,0,Transient,36.87,0,0,Canceled,2019-10-04 -City Hotel,0,136,2016,December,4,2,0,2,2,0.0,0,BB,,Online TA,Direct,1,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,100.57,0,3,Check-Out,2019-11-03 -Resort Hotel,0,207,2017,March,10,23,2,0,1,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,358.0,179.0,0,Transient,35.3,0,0,Check-Out,2020-05-03 -City Hotel,0,153,2015,September,34,20,2,5,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.76,0,0,Check-Out,2018-07-03 -Resort Hotel,1,207,2015,December,50,14,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,226.0,179.0,0,Transient-Party,98.68,0,0,Canceled,2018-08-03 -Resort Hotel,0,144,2016,August,44,15,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,208.45,0,2,Check-Out,2019-05-04 -City Hotel,0,16,2016,December,50,10,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,78.0,0,Transient,97.75,0,0,Check-Out,2019-07-04 -City Hotel,0,14,2015,July,33,3,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,123.53,0,2,Check-Out,2018-06-02 -Resort Hotel,1,49,2016,August,32,31,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,235.0,179.0,0,Transient,166.39,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,May,43,6,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.61,0,1,Check-Out,2019-10-04 -City Hotel,1,390,2017,July,28,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,79.33,0,0,Canceled,2019-12-04 -City Hotel,1,50,2016,June,27,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,128.11,0,0,Canceled,2019-08-04 -Resort Hotel,0,7,2016,December,53,2,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,351.0,179.0,0,Transient-Party,60.45,0,0,Check-Out,2019-10-04 -City Hotel,0,105,2016,July,32,30,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,207.53,0,2,Check-Out,2019-06-03 -City Hotel,0,11,2016,March,8,22,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.63,0,1,Check-Out,2019-03-04 -City Hotel,1,143,2017,July,27,22,2,3,2,2.0,0,SC,CHE,Direct,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,101.36,0,1,Canceled,2020-03-03 -Resort Hotel,0,1,2015,August,33,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,147.97,1,2,Check-Out,2018-09-02 -Resort Hotel,0,297,2016,August,44,10,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,333.0,179.0,0,Transient-Party,68.56,0,0,Check-Out,2019-12-04 -Resort Hotel,0,3,2017,June,26,4,2,10,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,39.61,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,September,34,17,1,4,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,L,C,0,No Deposit,248.0,179.0,0,Transient,1.26,0,0,Check-Out,2020-06-02 -City Hotel,1,38,2017,May,21,5,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,61.0,0,1,Canceled,2019-12-04 -Resort Hotel,0,60,2016,October,46,28,1,1,2,2.0,0,BB,AUT,Direct,TA/TO,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,181.41,0,0,Check-Out,2019-11-03 -City Hotel,1,20,2016,September,44,15,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,118.35,0,1,No-Show,2019-09-03 -Resort Hotel,0,1,2015,September,36,30,2,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,152.11,0,0,Check-Out,2018-08-03 -City Hotel,1,170,2016,March,14,27,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,136.0,179.0,0,Transient-Party,75.89,0,0,Canceled,2018-11-02 -City Hotel,1,25,2016,September,37,31,2,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.38,0,2,Canceled,2019-06-03 -City Hotel,1,425,2015,October,45,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.57,0,0,Canceled,2017-12-03 -Resort Hotel,1,48,2016,March,10,25,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,39.97,0,0,Canceled,2019-02-01 -Resort Hotel,0,2,2016,July,26,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,80.95,0,0,Check-Out,2019-05-04 -Resort Hotel,1,101,2015,June,16,25,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,62.28,0,0,Canceled,2019-01-03 -City Hotel,1,24,2015,September,47,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.79,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2015,November,46,14,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,60.33,0,0,Check-Out,2018-12-03 -City Hotel,1,118,2017,May,22,18,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,189.59,0,1,Canceled,2020-04-02 -City Hotel,1,410,2016,September,38,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,18,Transient,114.49,0,0,Canceled,2018-08-03 -City Hotel,1,322,2016,June,32,15,0,2,1,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,112.43,0,0,Canceled,2019-02-01 -Resort Hotel,0,17,2017,July,27,5,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,27.0,179.0,0,Transient,122.36,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,June,26,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,73.24,0,0,Check-Out,2019-03-04 -Resort Hotel,1,111,2016,July,22,25,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,234.61,0,1,Canceled,2019-08-04 -Resort Hotel,0,95,2017,March,9,10,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,31.93,0,2,Check-Out,2020-06-02 -City Hotel,0,0,2016,January,11,6,1,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,74.51,0,0,Check-Out,2018-12-03 -City Hotel,0,18,2015,September,32,21,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,128.29,0,0,Check-Out,2018-08-03 -Resort Hotel,1,351,2016,October,42,22,4,10,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,171.31,0,0,Canceled,2019-07-04 -City Hotel,0,254,2016,December,45,30,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.52,0,0,Check-Out,2019-08-04 -City Hotel,0,12,2016,October,45,7,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.55,0,0,Check-Out,2020-01-04 -City Hotel,0,90,2015,December,53,30,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,92.52,0,2,Check-Out,2018-08-03 -Resort Hotel,0,121,2017,March,17,25,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,111.71,0,2,Check-Out,2020-05-03 -Resort Hotel,0,30,2017,March,11,16,0,2,1,0.0,0,BB,BEL,Groups,Corporate,1,0,0,A,D,1,No Deposit,11.0,331.0,0,Transient-Party,39.56,0,0,Check-Out,2019-12-04 -Resort Hotel,0,138,2017,August,26,11,2,5,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,79.03,0,0,Check-Out,2019-12-04 -City Hotel,1,17,2017,April,11,29,1,1,1,0.0,0,BB,NLD,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,130.18,0,0,Canceled,2019-11-03 -Resort Hotel,0,29,2017,March,11,15,2,5,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient,174.05,1,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2017,March,20,15,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,F,2,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Check-Out,2020-02-01 -City Hotel,1,106,2015,November,39,15,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.14,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2016,March,18,21,0,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,13.0,280.0,0,Transient,41.22,1,0,Check-Out,2019-03-04 -City Hotel,0,48,2016,November,22,8,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,123.77,0,1,Check-Out,2019-11-03 -Resort Hotel,1,206,2017,July,28,28,0,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,241.0,179.0,0,Transient,225.15,0,0,Canceled,2020-03-03 -Resort Hotel,0,173,2016,September,36,27,0,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,243.0,179.0,0,Transient-Party,102.01,0,1,Check-Out,2019-08-04 -Resort Hotel,0,255,2015,September,35,30,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient-Party,105.72,0,0,Check-Out,2018-06-02 -City Hotel,1,47,2015,October,51,27,1,2,3,0.0,0,BB,,Online TA,Direct,0,0,0,D,A,0,Non Refund,12.0,179.0,0,Transient,118.22,0,2,Canceled,2019-01-03 -City Hotel,1,110,2015,September,44,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.65,0,0,Canceled,2018-08-03 -Resort Hotel,1,9,2015,March,16,11,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,58.15,1,0,Check-Out,2018-12-03 -City Hotel,0,5,2017,July,34,25,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,122.98,0,1,Check-Out,2020-06-02 -Resort Hotel,0,135,2017,June,21,28,2,7,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,160.84,0,3,Check-Out,2020-04-02 -City Hotel,1,430,2015,September,34,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.04,0,0,Canceled,2017-11-02 -Resort Hotel,1,309,2016,July,27,2,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,1,1,H,H,0,No Deposit,240.0,179.0,0,Transient,166.66,0,0,Canceled,2018-06-02 -Resort Hotel,0,4,2017,December,51,2,0,1,1,0.0,0,BB,PRT,Groups,Direct,1,0,0,A,A,0,No Deposit,44.0,179.0,0,Group,34.4,0,0,Check-Out,2019-09-03 -City Hotel,0,38,2016,January,44,2,1,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,100.88,0,1,Check-Out,2018-12-03 -City Hotel,0,240,2016,October,34,5,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,93.04,0,1,Check-Out,2019-09-03 -City Hotel,0,23,2016,September,41,5,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,78.71,0,0,Check-Out,2018-08-03 -Resort Hotel,0,35,2015,December,51,6,2,5,2,0.0,0,HB,CHE,Groups,Direct,0,0,0,A,A,2,No Deposit,248.0,179.0,0,Transient-Party,39.15,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2015,August,37,15,0,1,1,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,118.98,0,1,Check-Out,2018-08-03 -City Hotel,1,8,2016,August,35,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.08,0,0,Canceled,2019-06-03 -City Hotel,0,23,2017,June,30,9,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,119.47,1,1,Check-Out,2020-05-03 -Resort Hotel,0,122,2016,December,53,22,0,1,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,79.54,0,2,Check-Out,2019-10-04 -Resort Hotel,0,35,2017,April,22,8,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,219.0,179.0,0,Transient-Party,139.01,0,0,Check-Out,2020-02-01 -City Hotel,1,162,2016,October,11,12,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,97.2,0,0,Canceled,2019-07-04 -City Hotel,0,1,2015,August,32,20,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,116.03,0,0,Check-Out,2018-06-02 -City Hotel,1,248,2017,June,32,17,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.61,0,0,Canceled,2020-05-03 -Resort Hotel,0,60,2016,July,44,24,2,7,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,241.0,179.0,0,Transient,105.11,0,2,Check-Out,2018-06-02 -City Hotel,1,217,2015,October,44,19,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Contract,110.43,0,0,Canceled,2018-08-03 -City Hotel,0,0,2017,May,22,28,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,I,0,No Deposit,12.0,45.0,0,Group,0.64,0,1,Check-Out,2019-10-04 -City Hotel,0,239,2016,May,14,2,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.79,0,1,Check-Out,2019-03-04 -City Hotel,1,53,2016,December,9,24,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.97,0,0,Canceled,2018-12-03 -City Hotel,0,219,2016,July,35,21,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,139.0,179.0,0,Transient-Party,62.62,0,2,Check-Out,2018-11-02 -City Hotel,0,17,2017,March,23,13,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,126.21,0,0,Check-Out,2020-03-03 -City Hotel,1,48,2016,August,26,23,2,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,141.95,0,0,Canceled,2019-05-04 -Resort Hotel,0,52,2016,October,44,31,1,2,1,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,D,1,Refundable,15.0,223.0,0,Transient-Party,30.87,0,0,Check-Out,2019-10-04 -City Hotel,0,61,2016,October,44,9,2,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient,119.74,0,0,Check-Out,2019-09-03 -Resort Hotel,0,213,2017,August,30,5,2,4,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2016,November,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,2,No Deposit,15.0,45.0,0,Transient-Party,59.15,1,0,Check-Out,2019-07-04 -City Hotel,0,5,2016,December,53,27,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.77,0,2,Check-Out,2019-05-04 -Resort Hotel,0,59,2016,April,18,29,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,36.9,0,1,Check-Out,2018-12-03 -City Hotel,1,44,2017,March,8,20,2,2,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,7.0,179.0,0,Transient,123.72,0,0,Canceled,2019-02-01 -City Hotel,0,163,2017,June,16,27,2,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient-Party,108.24,0,1,Check-Out,2020-05-03 -City Hotel,0,25,2017,February,10,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,154.96,0,1,Check-Out,2020-01-04 -City Hotel,1,284,2016,April,22,25,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.23,0,0,Canceled,2019-03-04 -City Hotel,1,107,2017,April,23,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,95.0,0,0,Canceled,2018-12-03 -Resort Hotel,0,45,2016,August,37,21,0,6,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,174.9,0,1,Check-Out,2019-08-04 -City Hotel,1,116,2016,August,32,2,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,102.85,0,0,Canceled,2019-06-03 -Resort Hotel,0,150,2017,July,31,28,3,4,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,160.3,0,2,Check-Out,2020-06-02 -City Hotel,1,38,2016,November,51,20,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.06,0,0,Canceled,2019-08-04 -Resort Hotel,0,0,2016,March,25,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,242.0,179.0,0,Transient,80.85,1,0,Check-Out,2019-02-01 -City Hotel,0,178,2015,December,53,20,2,1,2,0.0,0,BB,USA,Offline TA/TO,Direct,0,0,0,A,G,1,No Deposit,12.0,179.0,0,Transient,101.48,0,0,Check-Out,2019-12-04 -City Hotel,0,16,2016,February,9,2,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.46,0,1,Check-Out,2018-12-03 -City Hotel,0,23,2016,October,44,18,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient-Party,80.37,0,0,Check-Out,2019-08-04 -City Hotel,1,97,2016,December,33,6,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,78.29,0,3,Canceled,2019-11-03 -City Hotel,0,83,2017,June,20,6,2,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,8.0,179.0,0,Transient-Party,121.67,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2016,April,22,5,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,69.0,179.0,0,Transient,99.71,0,0,Check-Out,2019-03-04 -Resort Hotel,0,14,2017,January,11,6,0,2,2,0.0,0,BB,ITA,Groups,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,63.14,0,0,Check-Out,2019-10-04 -City Hotel,0,15,2015,September,43,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,12.0,45.0,0,Group,60.86,0,1,Check-Out,2018-08-03 -City Hotel,0,84,2015,August,36,14,2,1,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient-Party,64.48,0,0,Check-Out,2018-08-03 -Resort Hotel,1,1,2016,January,3,12,1,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,10.0,179.0,0,Transient,68.54,0,0,No-Show,2018-12-03 -City Hotel,1,98,2016,May,21,12,1,0,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,59.67,0,0,Canceled,2019-03-04 -Resort Hotel,0,34,2017,July,25,19,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,97.06,1,0,Check-Out,2020-06-02 -Resort Hotel,0,144,2016,March,11,30,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,75,Transient-Party,82.0,0,0,Check-Out,2019-01-03 -City Hotel,0,20,2015,July,36,8,1,1,1,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,120.35,0,0,Check-Out,2018-05-03 -City Hotel,0,1,2017,August,33,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,201.75,0,0,Check-Out,2020-06-02 -City Hotel,0,10,2015,September,43,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,2.0,179.0,0,Contract,42.0,0,0,Check-Out,2018-09-02 -City Hotel,0,13,2016,May,39,29,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,124.98,0,0,Check-Out,2019-03-04 -City Hotel,0,20,2017,August,32,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,233.29,0,0,Check-Out,2020-06-02 -Resort Hotel,0,49,2015,December,49,4,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient-Party,43.97,0,0,Check-Out,2018-08-03 -City Hotel,0,35,2016,October,37,23,1,4,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,231.71,0,2,Check-Out,2019-07-04 -Resort Hotel,0,2,2016,December,50,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,232.0,0,Transient,40.54,0,0,Check-Out,2019-10-04 -City Hotel,0,317,2015,July,33,28,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,66.47,0,0,Check-Out,2018-05-03 -City Hotel,1,43,2016,March,25,6,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,94.0,179.0,0,Transient,97.8,0,0,Canceled,2018-11-02 -City Hotel,0,158,2017,March,16,25,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,95.93,0,2,Check-Out,2020-04-02 -City Hotel,0,280,2017,July,37,18,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.03,0,2,Check-Out,2020-03-03 -City Hotel,0,14,2017,June,22,15,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,126.0,0,3,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,January,8,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,71.0,0,Transient,78.16,1,0,Check-Out,2019-11-03 -Resort Hotel,0,61,2017,January,8,16,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,249.0,179.0,0,Transient,217.43,0,3,Check-Out,2020-05-03 -Resort Hotel,1,1,2016,August,19,5,0,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,201.6,0,0,Check-Out,2019-01-03 -Resort Hotel,1,208,2017,August,37,22,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,172.0,179.0,0,Transient,101.79,0,0,Canceled,2020-03-03 -City Hotel,0,96,2017,March,16,7,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.49,0,2,Check-Out,2020-05-03 -City Hotel,1,50,2016,May,10,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,15,Transient,72.29,0,0,Canceled,2018-12-03 -City Hotel,0,3,2016,October,42,17,1,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,92.83,0,0,Check-Out,2019-09-03 -City Hotel,0,21,2015,October,42,31,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Contract,63.29,0,0,Check-Out,2018-10-03 -City Hotel,0,3,2017,November,45,8,0,1,1,0.0,0,SC,USA,Offline TA/TO,GDS,0,0,0,A,B,0,No Deposit,204.0,331.0,0,Transient,100.59,0,0,Check-Out,2019-12-04 -City Hotel,1,154,2017,August,34,13,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.41,0,0,Canceled,2019-09-03 -City Hotel,1,37,2016,June,19,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,76.68,0,1,Canceled,2019-03-04 -City Hotel,1,104,2016,December,52,6,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,81.0,179.0,0,Transient,92.7,0,0,Canceled,2019-07-04 -City Hotel,1,381,2016,September,42,8,3,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,Non Refund,32.0,179.0,0,Transient,83.38,0,0,Canceled,2019-08-04 -City Hotel,1,145,2016,August,35,6,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,120.67,0,0,Canceled,2019-08-04 -Resort Hotel,0,60,2015,September,50,7,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,43.71,0,2,Check-Out,2018-09-02 -Resort Hotel,1,248,2017,June,22,20,3,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,92.98,0,1,Canceled,2020-05-03 -City Hotel,1,279,2015,September,43,21,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,D,0,Non Refund,1.0,179.0,0,Contract,130.77,0,0,Canceled,2017-10-03 -Resort Hotel,1,110,2016,October,47,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,42.74,0,0,Canceled,2018-12-03 -City Hotel,1,382,2017,April,17,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,170.0,179.0,0,Transient-Party,35.94,0,0,Canceled,2020-04-02 -City Hotel,1,39,2016,April,17,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,88.83,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2015,September,45,28,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,177.92,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,August,31,27,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,128.21,0,1,Check-Out,2020-07-03 -Resort Hotel,0,240,2017,February,9,6,0,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,69.0,179.0,0,Transient-Party,62.19,0,0,Check-Out,2020-04-02 -City Hotel,0,13,2017,January,8,29,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,65.55,0,0,Check-Out,2019-12-04 -City Hotel,0,18,2015,September,43,13,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,95.9,0,0,Check-Out,2018-08-03 -Resort Hotel,0,303,2016,May,23,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,62.7,1,0,Check-Out,2019-03-04 -City Hotel,1,279,2015,September,39,13,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,120.97,0,0,Canceled,2018-05-03 -Resort Hotel,0,301,2016,August,32,24,2,5,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,D,G,1,No Deposit,249.0,179.0,0,Transient,198.75,0,3,Check-Out,2019-05-04 -Resort Hotel,0,0,2015,September,36,30,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,59.96,0,2,Check-Out,2018-09-02 -City Hotel,1,90,2017,June,26,16,1,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,151.62,0,1,Canceled,2020-03-03 -City Hotel,0,12,2016,December,49,31,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.01,0,0,Check-Out,2019-10-04 -Resort Hotel,0,2,2016,October,36,30,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,197.61,0,1,Check-Out,2019-05-04 -City Hotel,0,94,2016,May,21,24,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,B,0,No Deposit,249.0,179.0,0,Transient,72.49,0,0,Check-Out,2019-03-04 -Resort Hotel,0,102,2016,April,16,2,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,44.46,0,2,Canceled,2020-01-04 -Resort Hotel,1,37,2016,February,8,6,0,4,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,170.7,0,0,No-Show,2018-10-03 -City Hotel,0,37,2016,April,19,11,2,3,2,0.0,0,Undefined,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,97.36,0,2,Check-Out,2019-01-03 -City Hotel,0,103,2016,June,22,6,0,3,1,0.0,0,BB,BRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,177.0,0,Transient,131.7,0,2,Check-Out,2019-07-04 -City Hotel,0,20,2016,July,31,17,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.37,0,1,Check-Out,2018-07-03 -City Hotel,0,139,2017,July,53,10,1,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.82,0,1,Check-Out,2019-12-04 -City Hotel,1,45,2015,June,27,23,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.85,0,0,Canceled,2018-08-03 -Resort Hotel,0,60,2017,June,26,7,0,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,175.0,179.0,0,Transient,161.07,0,1,Check-Out,2020-03-03 -Resort Hotel,0,42,2017,April,20,23,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,84.0,179.0,0,Transient-Party,143.83,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,July,27,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,114.53,0,1,Check-Out,2019-06-03 -City Hotel,1,9,2015,October,45,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,38.56,0,0,Canceled,2018-11-02 -City Hotel,0,303,2016,September,44,9,0,1,3,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.46,0,0,Check-Out,2018-05-03 -Resort Hotel,0,234,2016,October,26,8,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,F,1,No Deposit,14.0,179.0,75,Transient,78.49,0,0,Check-Out,2019-07-04 -City Hotel,1,123,2017,September,32,9,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,45.0,179.0,0,Transient,88.12,0,0,Canceled,2017-12-03 -Resort Hotel,0,247,2017,July,24,10,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,101.39,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,September,43,25,2,7,2,0.0,0,BB,PRT,Direct,Direct,1,1,1,A,D,0,No Deposit,12.0,179.0,0,Group,123.09,0,2,Check-Out,2018-05-03 -Resort Hotel,1,43,2016,June,26,17,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,H,I,1,No Deposit,241.0,179.0,0,Transient,0.0,0,3,Canceled,2019-05-04 -Resort Hotel,1,62,2016,June,37,23,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,182.02,0,0,Canceled,2019-05-04 -Resort Hotel,0,98,2015,December,53,12,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,39.13,1,0,Check-Out,2018-10-03 -Resort Hotel,0,14,2015,December,53,11,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,70.64,0,0,Check-Out,2018-10-03 -City Hotel,1,0,2017,May,22,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,F,F,0,No Deposit,17.0,182.0,0,Transient,127.73,0,0,Canceled,2020-04-02 -City Hotel,0,197,2017,June,20,27,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,109.82,0,1,Check-Out,2020-01-04 -Resort Hotel,0,96,2015,March,16,6,1,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,134.0,179.0,0,Transient-Party,31.95,0,0,Check-Out,2019-01-03 -City Hotel,1,324,2017,May,22,11,2,10,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,72.22,0,0,Canceled,2020-03-03 -City Hotel,0,151,2016,September,37,15,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,137.22,0,0,Check-Out,2019-07-04 -City Hotel,1,154,2017,May,21,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,116.48,0,0,Canceled,2019-12-04 -City Hotel,1,161,2016,February,9,24,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,130.16,0,0,Canceled,2018-11-02 -Resort Hotel,0,192,2017,March,10,23,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,11.0,224.0,0,Transient-Party,80.44,0,0,Check-Out,2019-05-04 -City Hotel,1,370,2017,May,21,21,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,36.0,179.0,0,Transient-Party,99.25,0,0,Check-Out,2020-03-03 -Resort Hotel,0,16,2016,June,27,9,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,162.83,1,1,Check-Out,2019-01-03 -City Hotel,1,10,2017,February,23,6,2,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,72.83,0,1,Canceled,2019-10-04 -City Hotel,0,0,2016,July,26,9,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,111.46,0,0,Check-Out,2019-06-03 -City Hotel,0,99,2016,May,12,13,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,93.7,0,1,Check-Out,2019-03-04 -Resort Hotel,0,156,2016,March,17,6,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,135.0,179.0,0,Transient,83.08,0,1,Check-Out,2019-03-04 -Resort Hotel,0,10,2015,December,45,21,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,332.0,179.0,0,Transient,44.74,1,0,Check-Out,2019-07-04 -City Hotel,0,2,2016,February,18,16,1,0,2,1.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.28,0,0,Check-Out,2019-01-03 -Resort Hotel,0,23,2017,May,22,22,2,7,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,F,2,No Deposit,14.0,179.0,0,Transient,140.82,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,May,17,10,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,E,D,0,No Deposit,266.0,179.0,0,Transient-Party,155.44,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,June,37,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,181.89,0,3,Check-Out,2020-06-02 -City Hotel,1,49,2016,October,44,6,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,203.36,0,2,Canceled,2019-09-03 -Resort Hotel,1,165,2017,August,33,20,2,7,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,165.03,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,January,19,15,0,1,2,0.0,0,BB,GBR,Direct,Corporate,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,85.27,0,2,Check-Out,2020-03-03 -City Hotel,0,83,2015,December,53,15,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,E,0,No Deposit,182.0,179.0,0,Transient,93.35,0,0,Check-Out,2018-12-03 -City Hotel,0,63,2016,February,10,10,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.06,0,1,Check-Out,2018-10-03 -City Hotel,0,54,2016,July,30,8,0,2,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,121.8,0,1,Check-Out,2019-05-04 -City Hotel,1,158,2016,November,50,17,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Non Refund,13.0,179.0,0,Transient,136.65,0,0,Canceled,2019-09-03 -City Hotel,1,307,2017,May,45,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,142.32,0,0,Canceled,2019-11-03 -Resort Hotel,0,52,2015,November,50,10,2,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,239.0,179.0,0,Transient,47.75,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,May,50,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,17.0,233.0,0,Transient,59.46,1,0,Check-Out,2019-09-03 -City Hotel,0,86,2016,October,44,20,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,69.38,0,1,Check-Out,2018-08-03 -City Hotel,0,73,2016,September,44,24,2,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,150.95,0,0,Check-Out,2019-05-04 -Resort Hotel,1,0,2016,February,10,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,242.0,179.0,0,Transient,57.76,0,1,No-Show,2019-02-01 -City Hotel,1,331,2017,January,4,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,40.0,179.0,0,Transient-Party,62.53,0,0,Canceled,2019-10-04 -City Hotel,1,278,2015,October,45,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.73,0,0,Canceled,2018-05-03 -Resort Hotel,0,42,2017,May,27,6,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,208.09,0,2,Check-Out,2020-02-01 -City Hotel,0,0,2016,March,11,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,E,3,No Deposit,194.0,62.0,0,Transient,32.25,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,July,37,15,0,3,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,16.0,179.0,75,Transient,172.08,1,3,Check-Out,2020-04-02 -City Hotel,0,38,2015,November,50,2,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.23,0,1,Check-Out,2018-12-03 -City Hotel,0,95,2015,October,41,21,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,87.52,0,2,Check-Out,2018-08-03 -City Hotel,0,40,2015,August,40,12,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,166.48,0,0,Check-Out,2018-06-02 -City Hotel,0,143,2016,July,37,2,0,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.69,0,1,Check-Out,2019-06-03 -City Hotel,0,63,2017,February,30,31,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.43,0,0,Check-Out,2020-06-02 -Resort Hotel,1,31,2017,January,2,10,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Non Refund,15.0,179.0,0,Transient,32.4,0,0,Canceled,2019-10-04 -Resort Hotel,0,245,2017,June,25,21,2,5,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,179.43,0,0,Check-Out,2020-02-01 -Resort Hotel,0,15,2016,September,50,27,1,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,199.25,0,2,Check-Out,2019-07-04 -Resort Hotel,1,341,2017,June,26,7,2,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,0,Transient,147.63,0,1,Canceled,2020-04-02 -Resort Hotel,0,145,2017,June,10,31,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,0.63,1,1,Check-Out,2020-03-03 -City Hotel,0,88,2016,November,50,27,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,93.05,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,May,22,19,0,2,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,G,F,1,No Deposit,17.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -Resort Hotel,0,167,2016,February,4,3,0,2,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,142.0,179.0,0,Transient,78.64,0,0,Canceled,2019-01-03 -City Hotel,0,409,2017,June,28,15,0,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,142.28,0,0,Check-Out,2020-04-02 -Resort Hotel,0,104,2016,March,9,9,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient-Party,70.85,0,0,Check-Out,2019-03-04 -City Hotel,0,31,2017,June,27,15,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,126.71,0,0,Check-Out,2020-05-03 -City Hotel,0,12,2016,December,53,6,0,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,97.0,179.0,0,Transient,59.06,0,0,Check-Out,2019-09-03 -City Hotel,1,37,2015,August,34,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,185.32,0,0,Canceled,2018-05-03 -City Hotel,0,113,2017,October,22,13,2,0,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,95.45,0,0,Check-Out,2019-11-03 -Resort Hotel,0,348,2016,May,21,22,3,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,65.47,0,1,Check-Out,2019-07-04 -City Hotel,0,305,2015,July,38,14,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,Non Refund,2.0,179.0,0,Contract,61.51,0,2,Canceled,2017-12-03 -City Hotel,0,39,2015,July,34,17,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,159.81,0,1,Check-Out,2018-05-03 -City Hotel,1,61,2015,August,35,9,0,1,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.0,0,0,Canceled,2018-06-02 -City Hotel,1,418,2016,May,23,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,119.02,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2015,December,36,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,253.0,179.0,0,Transient,2.82,1,0,Check-Out,2018-06-02 -City Hotel,1,20,2017,August,33,16,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.92,0,0,Canceled,2017-12-03 -City Hotel,0,12,2015,October,47,28,0,1,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.21,0,2,Check-Out,2018-09-02 -City Hotel,1,425,2015,October,46,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.16,0,0,Canceled,2018-08-03 -Resort Hotel,0,13,2016,August,34,3,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,85.66,0,1,Check-Out,2019-05-04 -City Hotel,0,15,2017,February,3,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,1,A,D,0,No Deposit,9.0,70.0,0,Transient,87.84,0,1,Check-Out,2018-10-03 -City Hotel,1,140,2016,July,31,25,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,78.06,0,0,Canceled,2019-01-03 -City Hotel,0,296,2016,June,25,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,104.58,0,0,Check-Out,2018-12-03 -City Hotel,0,42,2017,May,16,22,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Transient,138.96,1,3,Check-Out,2020-06-02 -City Hotel,0,3,2015,September,46,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,18.0,81.0,0,Transient,35.3,0,0,Check-Out,2018-06-02 -City Hotel,0,67,2016,November,20,12,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,E,0,No Deposit,29.0,179.0,17,Transient-Party,76.69,0,0,Check-Out,2019-03-04 -Resort Hotel,0,3,2015,December,53,31,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,46.02,1,2,Check-Out,2018-11-02 -Resort Hotel,0,172,2017,May,24,9,0,10,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,336.0,179.0,75,Transient-Party,73.99,1,1,Check-Out,2020-01-04 -Resort Hotel,0,103,2016,December,51,27,0,1,1,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,D,3,No Deposit,282.0,179.0,0,Transient-Party,36.33,0,0,Check-Out,2019-10-04 -Resort Hotel,1,263,2015,October,45,29,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,269.0,179.0,0,Contract,37.3,0,0,Canceled,2017-10-03 -Resort Hotel,0,45,2015,December,53,30,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,49.11,0,0,Check-Out,2018-10-03 -Resort Hotel,0,268,2017,July,28,1,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,D,A,0,No Deposit,300.0,179.0,0,Transient,246.69,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2015,October,45,6,1,1,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,247.0,0,Transient,67.63,0,0,Check-Out,2018-08-03 -City Hotel,0,5,2016,March,21,14,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,65.15,0,1,Check-Out,2019-12-04 -City Hotel,1,107,2017,April,16,10,0,1,2,0.0,0,BB,PRT,Aviation,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,124.37,0,1,Canceled,2020-02-01 -Resort Hotel,0,43,2015,December,49,6,2,5,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,277.0,179.0,0,Transient,29.08,0,0,Check-Out,2018-08-03 -City Hotel,0,8,2017,June,29,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,12.0,206.0,0,Transient,124.23,1,0,Check-Out,2020-05-03 -Resort Hotel,1,187,2017,March,23,28,1,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,82.24,0,0,Canceled,2019-02-01 -City Hotel,0,17,2016,October,45,30,1,2,2,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,90.9,0,1,Check-Out,2019-10-04 -Resort Hotel,0,97,2016,September,36,2,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,127.36,0,2,Check-Out,2019-09-03 -City Hotel,0,52,2016,April,18,25,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,151.98,0,2,Check-Out,2019-03-04 -City Hotel,0,1,2017,February,7,5,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.73,0,0,Check-Out,2020-02-01 -Resort Hotel,0,139,2016,July,31,22,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,159.98,1,2,Check-Out,2020-06-02 -City Hotel,0,38,2016,November,51,19,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,63.62,0,2,Check-Out,2019-10-04 -City Hotel,1,255,2017,May,23,18,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,116.18,0,0,Canceled,2020-02-01 -City Hotel,1,14,2017,April,18,6,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.89,0,0,Canceled,2019-12-04 -City Hotel,1,203,2016,June,27,14,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,1,1,A,A,0,Non Refund,11.0,179.0,42,Transient,74.77,0,0,Canceled,2019-01-03 -City Hotel,0,46,2016,April,16,24,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,125.93,0,0,Check-Out,2019-01-03 -Resort Hotel,0,37,2015,December,50,10,0,5,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.19,0,0,Check-Out,2018-06-02 -City Hotel,0,86,2016,December,5,9,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,70.83,0,1,Check-Out,2019-12-04 -City Hotel,0,7,2015,December,50,25,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,H,B,0,No Deposit,17.0,179.0,0,Transient-Party,62.13,0,0,Check-Out,2018-06-02 -Resort Hotel,0,17,2017,April,17,9,2,5,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,186.0,179.0,0,Transient-Party,83.18,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,October,41,14,2,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.69,0,0,Check-Out,2019-09-03 -Resort Hotel,0,92,2016,June,53,24,2,5,2,1.0,0,HB,CHN,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,136.86,0,1,Check-Out,2020-03-03 -City Hotel,1,390,2015,July,32,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.12,0,0,Canceled,2018-06-02 -City Hotel,1,204,2016,November,50,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.31,0,0,Canceled,2019-09-03 -City Hotel,0,37,2016,October,44,18,0,2,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,A,D,0,No Deposit,13.0,176.0,0,Transient,129.13,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2015,September,35,23,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient-Party,100.62,0,0,Check-Out,2018-08-03 -City Hotel,1,275,2016,September,37,7,1,5,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,155.41,0,2,Canceled,2019-09-03 -Resort Hotel,0,44,2016,March,11,13,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient-Party,67.71,0,0,Check-Out,2019-03-04 -City Hotel,0,12,2016,February,9,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,46.62,0,0,Check-Out,2018-12-03 -City Hotel,0,15,2017,March,17,23,2,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.82,0,1,Check-Out,2020-03-03 -City Hotel,1,224,2017,June,27,6,4,10,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,160.0,179.0,0,Transient,129.45,0,0,Canceled,2020-01-04 -Resort Hotel,0,0,2015,December,51,30,0,1,1,2.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-12-03 -City Hotel,1,250,2017,July,34,6,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,D,1,No Deposit,10.0,179.0,0,Transient-Party,136.04,0,2,Canceled,2019-10-04 -City Hotel,0,0,2017,March,10,15,0,1,1,0.0,0,SC,PRT,Online TA,Corporate,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,89.58,0,0,Check-Out,2020-02-01 -City Hotel,1,266,2017,March,18,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,96.1,0,0,Canceled,2019-03-04 -City Hotel,1,152,2016,April,15,31,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.92,0,1,Canceled,2019-02-01 -Resort Hotel,0,142,2017,July,32,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,216.05,0,2,Check-Out,2018-06-02 -City Hotel,0,273,2017,June,27,17,2,0,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,94.73,0,3,Check-Out,2020-06-02 -City Hotel,0,110,2015,July,31,9,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Contract,101.48,0,0,Check-Out,2018-08-03 -City Hotel,1,41,2017,February,8,9,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,68.34,0,0,Canceled,2019-10-04 -Resort Hotel,0,47,2016,September,35,9,1,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,185.0,179.0,0,Transient-Party,47.77,0,0,Check-Out,2018-12-03 -Resort Hotel,0,42,2015,October,42,4,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,17,2017,September,26,5,1,3,1,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,140.94,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2015,July,37,16,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,199.83,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,December,50,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,45.0,0,Transient-Party,34.99,1,0,Check-Out,2018-09-02 -City Hotel,1,239,2017,June,27,13,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.71,0,0,Canceled,2020-02-01 -City Hotel,1,35,2017,May,22,29,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.84,0,0,Canceled,2019-12-04 -Resort Hotel,1,337,2016,July,31,6,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,249.21,0,2,Canceled,2019-07-04 -Resort Hotel,0,51,2016,November,50,30,1,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,41.0,179.0,0,Transient-Party,63.95,0,0,Check-Out,2019-09-03 -Resort Hotel,0,4,2017,February,12,28,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient-Party,62.58,0,0,Check-Out,2020-02-01 -City Hotel,1,400,2015,October,45,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.37,0,0,Canceled,2018-08-03 -Resort Hotel,0,42,2015,September,49,31,2,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,49.57,0,0,Check-Out,2018-08-03 -Resort Hotel,0,187,2016,June,25,20,3,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,86.49,0,0,Check-Out,2019-03-04 -Resort Hotel,0,103,2016,August,37,9,2,1,2,1.0,0,HB,GBR,Direct,TA/TO,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-06-03 -City Hotel,0,73,2016,December,50,10,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.31,0,0,Check-Out,2018-11-02 -City Hotel,1,1,2015,June,28,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,79.49,0,0,Canceled,2018-06-02 -City Hotel,1,104,2015,September,51,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,58.62,0,0,Canceled,2018-09-02 -City Hotel,0,0,2016,September,18,30,0,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,60,Transient,116.85,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2016,October,44,6,1,0,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.81,0,0,Check-Out,2019-11-03 -City Hotel,1,33,2016,June,28,30,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,159.02,0,3,Canceled,2019-03-04 -City Hotel,0,200,2017,May,21,2,2,3,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.3,0,1,Check-Out,2020-03-03 -Resort Hotel,1,41,2016,January,9,13,0,1,1,0.0,0,BB,ITA,Groups,TA/TO,0,1,0,E,E,0,Non Refund,180.0,179.0,0,Transient,61.88,0,0,Canceled,2018-11-02 -City Hotel,0,13,2017,August,38,22,2,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,208.95,0,0,Check-Out,2020-07-03 -City Hotel,0,103,2015,December,50,6,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,123.26,0,2,Check-Out,2019-11-03 -Resort Hotel,0,88,2016,September,38,11,2,1,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,184.28,0,1,Check-Out,2019-06-03 -City Hotel,1,38,2017,February,11,5,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,66.38,0,1,Canceled,2019-12-04 -City Hotel,0,149,2017,March,18,29,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,92.28,0,0,Check-Out,2019-12-04 -City Hotel,0,253,2015,August,31,6,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,99.33,0,0,Check-Out,2018-05-03 -City Hotel,1,195,2017,March,17,25,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,8.0,179.0,0,Transient,99.78,0,0,Canceled,2019-12-04 -City Hotel,1,1,2016,May,3,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,126.0,179.0,0,Transient,59.37,0,0,No-Show,2019-03-04 -Resort Hotel,0,133,2016,June,34,31,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient,110.24,0,2,Check-Out,2019-05-04 -City Hotel,0,3,2016,September,53,15,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,102.49,0,2,Check-Out,2020-01-04 -Resort Hotel,0,2,2015,December,50,4,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,63.37,1,0,Check-Out,2018-11-02 -City Hotel,0,159,2017,July,28,13,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,114.36,0,1,Check-Out,2020-07-03 -City Hotel,0,140,2017,May,21,24,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.93,0,1,Check-Out,2020-04-02 -City Hotel,0,8,2015,September,44,31,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,57.87,0,0,Check-Out,2017-11-02 -City Hotel,0,45,2017,June,31,30,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,121.97,0,0,Check-Out,2020-02-01 -City Hotel,0,98,2016,April,23,25,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,88.36,0,0,Check-Out,2019-03-04 -City Hotel,0,31,2017,May,23,11,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,12.0,179.0,0,Transient,240.4,0,3,Check-Out,2020-03-03 -City Hotel,0,196,2015,September,41,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,1.0,179.0,0,Contract,71.28,0,0,Check-Out,2018-08-03 -Resort Hotel,0,159,2017,March,17,6,1,1,1,0.0,0,BB,GBR,Groups,Corporate,1,0,0,A,A,3,No Deposit,15.0,223.0,75,Transient-Party,43.72,0,0,Check-Out,2020-03-03 -City Hotel,1,91,2016,February,11,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,58.66,0,0,Canceled,2018-12-03 -City Hotel,0,42,2017,April,11,7,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.36,0,2,Check-Out,2020-04-02 -City Hotel,0,192,2017,May,27,27,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.66,0,2,Check-Out,2020-07-03 -City Hotel,0,33,2016,April,36,6,1,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,113.16,0,0,Check-Out,2018-12-03 -City Hotel,1,48,2015,September,38,6,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,4.0,179.0,0,Transient,126.0,0,0,Canceled,2018-06-02 -Resort Hotel,1,0,2016,March,10,15,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,222.0,0,Transient,39.71,0,0,Canceled,2019-01-03 -City Hotel,0,1,2017,July,24,2,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,123.83,0,0,Check-Out,2020-03-03 -Resort Hotel,0,115,2016,March,15,31,2,5,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient-Party,78.1,0,0,Check-Out,2019-03-04 -Resort Hotel,1,247,2017,August,32,13,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,149.06,0,1,Canceled,2019-05-04 -City Hotel,0,0,2016,September,42,17,0,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,17.0,179.0,0,Transient,122.24,0,0,Check-Out,2018-08-03 -Resort Hotel,0,37,2016,December,5,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,329.0,179.0,0,Transient,74.2,0,0,Check-Out,2018-11-02 -City Hotel,1,105,2015,July,38,5,0,5,2,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,127.74,0,0,Canceled,2018-06-02 -City Hotel,1,152,2016,June,27,10,0,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,120.72,0,0,Canceled,2019-02-01 -Resort Hotel,0,159,2016,August,36,29,1,1,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,74.56,0,0,Check-Out,2020-07-03 -City Hotel,0,12,2016,April,18,24,0,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,94.02,0,3,Check-Out,2019-06-03 -City Hotel,0,104,2016,April,17,15,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.04,0,0,Check-Out,2019-01-03 -City Hotel,0,33,2015,July,33,25,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,60.23,0,0,Check-Out,2018-06-02 -Resort Hotel,0,190,2015,August,32,6,3,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,251.0,179.0,0,Transient-Party,185.24,1,0,Check-Out,2018-08-03 -City Hotel,0,35,2016,September,51,22,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.03,0,1,Check-Out,2019-07-04 -City Hotel,1,43,2016,January,2,31,2,0,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,71.54,0,0,Canceled,2018-12-03 -City Hotel,1,26,2016,October,45,10,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,80.43,0,0,Check-Out,2019-08-04 -Resort Hotel,0,15,2016,May,22,13,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,2,No Deposit,246.0,179.0,0,Transient,130.37,0,0,Check-Out,2019-06-03 -City Hotel,0,284,2017,August,35,6,1,7,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,3,No Deposit,12.0,179.0,0,Transient,101.04,0,0,Check-Out,2019-07-04 -Resort Hotel,0,166,2015,December,43,24,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,63.88,1,2,Check-Out,2018-09-02 -City Hotel,0,0,2016,November,44,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,14.0,227.0,0,Transient,97.39,0,0,Check-Out,2019-08-04 -City Hotel,1,101,2017,January,11,15,2,1,2,2.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,151.06,0,0,Canceled,2019-11-03 -City Hotel,0,44,2015,August,40,30,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,157.12,0,2,Check-Out,2018-09-02 -City Hotel,0,1,2017,June,28,18,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,176.08,0,0,Check-Out,2020-07-03 -City Hotel,0,95,2016,October,41,19,0,3,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,75.0,179.0,0,Transient-Party,96.23,0,0,Check-Out,2018-09-02 -Resort Hotel,0,8,2017,February,8,5,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,331.0,0,Transient-Party,42.82,0,0,Check-Out,2019-11-03 -City Hotel,0,107,2015,August,38,13,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,61.46,0,0,Canceled,2018-06-02 -Resort Hotel,0,102,2017,January,11,16,1,2,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,89.0,179.0,0,Transient-Party,81.01,0,0,Check-Out,2019-09-03 -Resort Hotel,0,161,2016,April,10,20,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,18,Transient-Party,75.65,0,0,Check-Out,2019-11-03 -City Hotel,0,3,2016,February,25,28,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,97.0,179.0,16,Transient-Party,67.09,0,0,Check-Out,2019-03-04 -City Hotel,1,49,2016,September,38,29,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,210.2,0,1,Canceled,2019-11-03 -City Hotel,1,440,2015,August,33,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,118.21,0,0,Canceled,2018-06-02 -Resort Hotel,1,175,2016,August,32,2,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient,51.16,0,1,No-Show,2019-06-03 -City Hotel,0,371,2017,August,26,27,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.91,0,1,Canceled,2020-06-02 -City Hotel,0,1,2017,July,31,5,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,100.8,0,0,Check-Out,2020-06-02 -City Hotel,0,20,2017,May,16,4,1,1,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient,88.01,0,0,Check-Out,2020-04-02 -Resort Hotel,1,11,2016,March,9,13,0,1,2,0.0,0,FB,PRT,Direct,Direct,1,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,61.05,0,2,Canceled,2019-01-03 -Resort Hotel,1,98,2017,August,39,7,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Canceled,2020-06-02 -City Hotel,0,2,2017,June,27,9,0,4,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,136.08,0,1,Check-Out,2020-02-01 -City Hotel,0,13,2017,June,26,18,1,2,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,104.63,0,1,Check-Out,2020-07-03 -City Hotel,1,37,2016,July,31,29,0,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,153.97,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2015,August,35,4,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient-Party,62.13,1,0,Check-Out,2018-06-02 -Resort Hotel,1,1,2016,April,15,6,1,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,153.88,0,0,Canceled,2019-02-01 -Resort Hotel,1,250,2016,August,36,13,2,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,77.48,0,0,Canceled,2018-08-03 -City Hotel,0,3,2015,August,9,24,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,69.04,0,0,Check-Out,2018-12-03 -Resort Hotel,0,300,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,2,Refundable,15.0,223.0,0,Transient-Party,61.94,0,0,Check-Out,2019-04-03 -City Hotel,1,100,2016,February,11,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.88,0,0,Canceled,2018-10-03 -City Hotel,0,147,2017,May,29,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,146.23,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,May,21,9,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,F,0,No Deposit,16.0,45.0,0,Transient,0.0,0,2,Check-Out,2020-03-03 -City Hotel,0,39,2017,October,43,14,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,191.23,0,1,Check-Out,2019-12-04 -City Hotel,1,405,2017,September,36,30,0,4,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,131.37,0,0,Canceled,2018-09-02 -Resort Hotel,1,43,2017,December,53,28,1,3,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,176.0,179.0,0,Transient,37.55,0,0,Canceled,2019-10-04 -City Hotel,1,235,2015,September,37,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.14,0,0,Canceled,2017-12-03 -Resort Hotel,1,165,2015,December,50,14,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,99.0,179.0,0,Transient,61.16,0,0,Canceled,2018-12-03 -Resort Hotel,0,40,2016,October,43,22,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,125.66,1,2,Check-Out,2019-08-04 -City Hotel,1,89,2016,April,17,26,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,68.26,0,0,Canceled,2019-02-01 -Resort Hotel,0,118,2017,May,22,2,2,3,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,294.0,179.0,0,Transient,176.23,0,1,Check-Out,2020-02-01 -City Hotel,0,1,2016,May,43,10,1,0,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,138.87,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,March,16,5,0,1,1,0.0,0,BB,CN,Direct,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,152.13,0,0,Check-Out,2019-01-03 -Resort Hotel,0,168,2016,August,35,31,0,3,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,D,D,1,Refundable,13.0,222.0,0,Transient-Party,96.64,0,0,Check-Out,2019-06-03 -Resort Hotel,0,47,2016,February,12,28,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,241.0,179.0,0,Transient,72.51,0,3,Check-Out,2018-11-02 -City Hotel,0,15,2015,December,51,7,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,61.11,0,0,Check-Out,2018-06-02 -City Hotel,1,275,2017,June,42,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,167.0,179.0,0,Transient,117.41,0,0,Canceled,2019-10-04 -Resort Hotel,0,114,2015,October,51,30,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,118.7,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2017,February,10,12,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,164.0,179.0,0,Transient,61.79,0,0,Check-Out,2020-02-01 -Resort Hotel,0,91,2016,February,11,15,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,224.0,0,Transient-Party,60.01,1,0,Check-Out,2019-01-03 -City Hotel,0,43,2016,February,8,20,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,61,Group,63.88,0,0,Check-Out,2019-03-04 -City Hotel,1,93,2016,October,42,6,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,145.27,0,2,Canceled,2019-06-03 -City Hotel,1,35,2016,October,46,10,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,109.54,0,0,Canceled,2019-10-04 -Resort Hotel,0,9,2017,July,34,29,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,236.44,0,0,Check-Out,2020-06-02 -Resort Hotel,1,34,2016,July,33,21,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,241.0,179.0,0,Transient,201.14,0,1,No-Show,2019-05-04 -City Hotel,0,3,2017,February,16,11,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,D,1,No Deposit,35.0,179.0,0,Transient-Party,64.66,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2015,July,35,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.16,0,0,Check-Out,2018-05-03 -City Hotel,1,157,2017,May,23,24,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,65.71,0,0,Canceled,2020-04-02 -Resort Hotel,0,35,2016,June,25,13,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,313.0,179.0,0,Transient-Party,63.38,0,0,Check-Out,2019-03-04 -Resort Hotel,0,17,2017,June,27,5,1,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,F,0,No Deposit,212.0,179.0,0,Transient,167.65,1,0,Check-Out,2019-07-04 -City Hotel,1,0,2017,March,11,15,0,1,3,0.0,0,BB,PRT,Undefined,Undefined,1,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,51.56,0,1,Canceled,2020-05-03 -City Hotel,0,93,2016,October,37,16,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.18,0,0,Check-Out,2019-06-03 -City Hotel,1,43,2016,October,46,6,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.43,0,0,Canceled,2019-11-03 -City Hotel,1,170,2016,June,26,12,0,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.45,0,0,Canceled,2019-02-01 -City Hotel,0,25,2016,December,50,26,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient-Party,34.01,0,0,Check-Out,2019-10-04 -City Hotel,0,53,2017,March,22,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,131.39,0,0,Check-Out,2020-04-02 -City Hotel,0,235,2016,June,31,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,130.65,0,0,Check-Out,2020-06-02 -City Hotel,1,43,2016,June,23,2,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,91.1,0,0,Canceled,2019-02-01 -City Hotel,0,100,2016,May,27,17,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,114.8,0,1,Check-Out,2019-06-03 -Resort Hotel,0,100,2017,May,23,30,0,4,3,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,142.88,1,1,Check-Out,2020-03-03 -City Hotel,0,0,2015,March,18,13,0,1,2,0.0,0,BB,PRT,Direct,Undefined,0,1,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2018-07-03 -City Hotel,1,330,2017,May,16,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.71,0,0,Canceled,2020-03-03 -Resort Hotel,0,31,2016,December,45,14,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient-Party,33.6,0,0,Check-Out,2019-10-04 -City Hotel,0,85,2016,July,36,21,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.06,0,0,Check-Out,2019-06-03 -City Hotel,1,406,2017,July,37,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,132.89,0,0,Canceled,2018-08-03 -City Hotel,1,46,2015,July,39,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.42,0,0,Canceled,2018-05-03 -Resort Hotel,1,211,2017,August,36,6,2,5,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,99.19,0,0,Canceled,2020-06-02 -City Hotel,0,3,2016,January,4,9,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.16,0,0,Check-Out,2018-10-03 -Resort Hotel,0,168,2017,June,21,5,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,92.71,0,1,Check-Out,2020-05-03 -City Hotel,0,86,2017,February,9,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,0,F,E,0,No Deposit,80.0,179.0,0,Transient,100.68,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,February,10,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,60.34,0,2,Check-Out,2019-05-04 -Resort Hotel,1,315,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,H,2,Refundable,15.0,223.0,75,Transient-Party,47.57,0,0,Check-Out,2019-01-03 -City Hotel,0,87,2017,August,32,14,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,202.57,0,1,Check-Out,2020-07-03 -Resort Hotel,1,331,2017,April,16,24,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,51.32,0,0,Canceled,2020-02-01 -Resort Hotel,0,53,2015,August,37,21,2,3,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,75.79,0,0,Check-Out,2018-09-02 -Resort Hotel,1,106,2016,February,11,10,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,251.0,179.0,0,Transient,36.52,0,2,Canceled,2020-03-03 -Resort Hotel,1,17,2017,July,31,9,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,238.0,179.0,0,Transient,127.71,0,2,Canceled,2020-02-01 -City Hotel,0,34,2017,February,9,10,1,3,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,163.18,0,2,Check-Out,2020-03-03 -Resort Hotel,1,289,2015,August,36,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,173.36,0,3,Canceled,2018-05-03 -Resort Hotel,0,1,2016,August,37,19,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,43.78,1,0,Check-Out,2018-06-02 -City Hotel,1,260,2015,October,44,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,72.76,0,0,Canceled,2018-08-03 -City Hotel,1,144,2017,July,33,23,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.89,0,1,Canceled,2019-05-04 -City Hotel,1,82,2017,March,28,11,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,119.94,0,0,Canceled,2020-03-03 -City Hotel,1,17,2016,December,51,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,65.06,0,0,Canceled,2018-10-03 -City Hotel,1,3,2016,January,10,15,0,2,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,69.13,0,0,No-Show,2018-11-02 -Resort Hotel,0,2,2015,August,42,6,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,62.17,1,0,Check-Out,2018-08-03 -City Hotel,0,19,2016,February,7,15,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,83.09,0,0,Check-Out,2019-02-01 -Resort Hotel,0,66,2016,August,38,29,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,175.7,0,0,Check-Out,2020-06-02 -Resort Hotel,1,159,2017,May,28,15,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,127.68,0,0,Canceled,2020-03-03 -Resort Hotel,0,210,2017,August,24,5,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,12.0,179.0,0,Group,47.08,0,0,Check-Out,2020-06-02 -Resort Hotel,0,34,2016,July,23,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient-Party,124.29,0,0,Check-Out,2019-06-03 -City Hotel,0,50,2016,December,51,21,2,4,2,0.0,0,BB,BRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,65.04,0,2,Check-Out,2019-11-03 -City Hotel,0,95,2015,August,37,28,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,99.56,0,0,Check-Out,2018-06-02 -Resort Hotel,1,264,2015,February,38,28,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,249.0,179.0,0,Transient,110.69,0,0,Canceled,2018-07-03 -City Hotel,0,94,2016,June,21,20,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,156.23,0,0,Check-Out,2019-06-03 -City Hotel,0,39,2016,May,21,21,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,227.84,0,2,Check-Out,2020-03-03 -City Hotel,1,42,2016,February,9,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,77.88,0,0,Canceled,2019-02-01 -City Hotel,0,105,2016,June,27,2,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,202.91,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2017,March,10,6,0,3,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,88.76,1,0,Check-Out,2020-01-04 -City Hotel,1,8,2016,June,19,19,2,1,3,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,153.65,0,0,No-Show,2020-02-01 -Resort Hotel,0,146,2016,April,17,27,0,3,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,72.72,0,1,Check-Out,2019-02-01 -City Hotel,0,45,2017,October,29,27,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,124.69,0,0,Check-Out,2019-10-04 -Resort Hotel,1,83,2016,May,22,30,0,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,94.11,0,0,Canceled,2019-04-03 -Resort Hotel,0,17,2016,September,17,20,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,F,0,No Deposit,15.0,331.0,0,Transient,76.33,0,0,Check-Out,2019-03-04 -Resort Hotel,0,110,2017,March,12,6,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,35.22,0,1,Check-Out,2020-02-01 -City Hotel,0,98,2017,June,27,18,2,3,2,0.0,0,BB,ITA,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.8,0,0,Check-Out,2020-03-03 -Resort Hotel,0,98,2016,December,51,28,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,195.0,179.0,0,Transient,87.72,0,1,Check-Out,2019-09-03 -City Hotel,1,15,2017,February,7,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,59.14,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2016,February,9,27,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,43.18,0,0,Check-Out,2019-11-03 -Resort Hotel,0,139,2017,May,24,30,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,96.53,0,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2017,February,9,6,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,219.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -City Hotel,1,85,2015,July,26,25,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.29,0,0,No-Show,2018-12-03 -Resort Hotel,0,197,2016,October,50,2,1,3,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,71.72,1,0,Check-Out,2019-12-04 -City Hotel,1,154,2017,June,27,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,Non Refund,12.0,76.0,0,Transient,124.02,0,0,Canceled,2019-10-04 -Resort Hotel,0,92,2016,December,36,6,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,44.31,0,1,Check-Out,2019-06-03 -City Hotel,1,297,2016,July,27,7,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.52,0,0,Canceled,2017-11-02 -City Hotel,1,3,2016,March,49,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,64.38,0,0,Check-Out,2018-11-02 -City Hotel,1,136,2016,June,26,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,66.56,0,0,No-Show,2019-06-03 -City Hotel,1,0,2016,January,4,6,0,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,63.4,0,1,Canceled,2018-11-02 -Resort Hotel,0,207,2017,August,33,6,2,4,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,126.4,1,1,Check-Out,2020-07-03 -City Hotel,1,100,2016,December,53,10,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,116.48,0,3,No-Show,2018-12-03 -City Hotel,0,294,2016,October,44,15,0,1,1,0.0,0,BB,ESP,Groups,Corporate,1,0,1,A,A,1,No Deposit,35.0,179.0,0,Group,108.1,0,0,Check-Out,2019-11-03 -Resort Hotel,1,245,2015,December,51,29,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,271.0,179.0,0,Transient,62.06,0,0,Canceled,2018-09-02 -Resort Hotel,0,139,2016,March,38,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,15.0,224.0,0,Transient,34.42,0,0,Check-Out,2019-06-03 -Resort Hotel,0,66,2017,April,20,22,2,1,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,232.04,0,2,Check-Out,2020-03-03 -City Hotel,1,187,2016,June,26,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,75.83,0,0,Canceled,2018-12-03 -City Hotel,0,1,2017,January,39,10,2,1,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,209.0,179.0,0,Transient,81.21,0,0,Check-Out,2019-11-03 -Resort Hotel,0,38,2015,November,44,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,48.43,0,0,Check-Out,2018-05-03 -City Hotel,0,36,2016,April,14,21,2,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,125.54,0,1,No-Show,2019-02-01 -City Hotel,0,94,2017,June,34,13,2,5,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,12.0,179.0,0,Transient,106.38,1,1,Check-Out,2020-06-02 -City Hotel,0,262,2017,May,23,19,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,79.81,0,0,Check-Out,2020-02-01 -City Hotel,0,29,2016,June,44,6,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.32,0,0,Check-Out,2019-06-03 -Resort Hotel,0,44,2016,August,35,24,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,213.7,1,1,Check-Out,2019-05-04 -Resort Hotel,1,35,2016,August,36,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,171.51,0,0,Canceled,2019-05-04 -City Hotel,1,241,2015,September,38,15,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.64,0,0,Canceled,2018-05-03 -City Hotel,0,193,2016,May,21,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Group,43.06,0,0,Check-Out,2019-02-01 -Resort Hotel,0,46,2015,July,31,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,60.35,0,0,Check-Out,2018-07-03 -City Hotel,0,2,2017,June,31,16,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,158.37,0,0,Check-Out,2020-06-02 -Resort Hotel,0,234,2017,May,23,29,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,178.0,179.0,0,Transient,143.55,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,March,19,17,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,63.84,0,1,Check-Out,2020-04-02 -City Hotel,1,398,2015,October,44,12,2,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,73.42,0,0,Canceled,2019-08-04 -Resort Hotel,0,16,2016,September,44,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,61.87,0,1,Check-Out,2018-12-03 -City Hotel,0,38,2016,November,43,9,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,91.75,1,2,Check-Out,2019-11-03 -City Hotel,0,42,2016,October,35,8,1,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,136.6,0,0,Check-Out,2019-04-03 -City Hotel,1,237,2017,March,25,8,2,5,1,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,166.0,179.0,0,Transient,112.4,0,0,Canceled,2020-01-04 -Resort Hotel,0,30,2017,January,3,27,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,34.29,1,0,Check-Out,2019-11-03 -Resort Hotel,0,233,2015,August,37,28,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,172.06,0,2,Check-Out,2018-08-03 -City Hotel,1,156,2015,August,36,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,130.38,0,0,Canceled,2018-09-02 -Resort Hotel,0,13,2016,March,37,16,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,36.69,0,2,Check-Out,2019-02-01 -City Hotel,1,13,2015,September,47,18,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.84,0,0,Canceled,2019-08-04 -Resort Hotel,0,3,2015,March,48,21,0,7,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,106.0,179.0,0,Transient,28.58,0,0,Check-Out,2019-02-01 -Resort Hotel,0,49,2017,February,11,21,0,1,1,0.0,0,FB,GBR,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,223.0,0,Transient-Party,83.76,0,0,Check-Out,2020-03-03 -Resort Hotel,0,168,2017,March,16,7,1,1,2,0.0,0,HB,CHE,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,221.0,0,Transient-Party,47.0,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2017,May,16,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,I,0,No Deposit,18.0,179.0,0,Transient,143.74,0,1,Check-Out,2020-01-04 -Resort Hotel,0,16,2017,February,8,12,1,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,225.0,0,Transient-Party,31.55,0,0,Check-Out,2020-04-02 -City Hotel,1,136,2015,September,42,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,76.0,179.0,0,Contract,63.52,0,1,Canceled,2018-08-03 -City Hotel,1,85,2017,April,17,30,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.69,0,0,Canceled,2020-04-02 -City Hotel,0,55,2016,April,18,15,0,2,1,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,D,1,No Deposit,287.0,179.0,0,Transient-Party,70.11,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,June,25,12,2,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,147.66,1,0,Check-Out,2019-02-01 -Resort Hotel,0,32,2017,February,12,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,60.42,1,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,December,50,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,H,I,1,No Deposit,15.0,179.0,0,Transient,87.45,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,April,10,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,1,No Deposit,221.0,179.0,0,Transient,106.28,1,0,Check-Out,2020-03-03 -Resort Hotel,1,250,2016,October,43,16,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.63,0,2,Canceled,2019-05-04 -Resort Hotel,0,154,2016,March,9,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,242.0,179.0,0,Transient,137.37,0,0,Check-Out,2018-11-02 -City Hotel,1,159,2015,October,38,24,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,73.39,0,0,Canceled,2018-06-02 -City Hotel,0,104,2016,October,45,17,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,F,0,No Deposit,13.0,221.0,0,Transient-Party,71.77,0,0,Check-Out,2019-02-01 -Resort Hotel,0,164,2015,July,33,5,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,197.77,0,2,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,June,21,8,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,275.0,179.0,0,Transient,120.53,1,0,Check-Out,2019-03-04 -City Hotel,0,21,2017,March,18,13,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,36.05,0,0,Check-Out,2019-12-04 -City Hotel,0,9,2016,December,51,28,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.85,0,1,Check-Out,2019-11-03 -City Hotel,0,12,2016,June,24,12,0,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,121.53,0,0,Check-Out,2019-06-03 -Resort Hotel,0,56,2015,October,43,19,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,36.47,0,0,Check-Out,2018-07-03 -City Hotel,0,14,2017,January,10,2,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,75,Transient-Party,75.53,0,0,Check-Out,2019-09-03 -City Hotel,0,254,2016,July,26,13,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,181.24,0,1,Check-Out,2019-04-03 -City Hotel,1,19,2016,March,10,5,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,6.0,179.0,0,Transient,78.31,1,1,Canceled,2018-10-03 -City Hotel,1,162,2015,November,51,10,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,39,Transient,56.07,0,0,Canceled,2018-08-03 -City Hotel,0,2,2015,October,45,23,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,72.01,0,0,Check-Out,2018-07-03 -City Hotel,1,105,2016,November,31,17,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,95.18,0,0,Canceled,2019-10-04 -City Hotel,0,132,2016,February,49,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,79.0,179.0,0,Transient,81.92,0,0,Check-Out,2019-05-04 -City Hotel,1,342,2016,June,36,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,39.03,0,0,Canceled,2019-06-03 -City Hotel,0,237,2017,August,25,14,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,130.45,0,2,Check-Out,2020-06-02 -Resort Hotel,0,45,2017,March,9,12,2,1,2,2.0,0,HB,BEL,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,241.0,179.0,0,Transient,64.08,0,1,Check-Out,2019-02-01 -City Hotel,0,91,2016,October,46,19,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.46,1,2,Check-Out,2019-08-04 -Resort Hotel,1,221,2016,September,45,28,1,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,77.48,0,0,Canceled,2019-07-04 -City Hotel,1,16,2015,November,50,27,2,1,2,0.0,0,BB,RUS,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.46,0,0,Canceled,2019-09-03 -City Hotel,0,103,2015,August,32,17,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Contract,90.11,0,1,Check-Out,2018-06-02 -City Hotel,0,2,2017,July,28,14,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,198.7,1,0,Check-Out,2020-06-02 -City Hotel,1,204,2017,August,37,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,A,A,0,Non Refund,2.0,179.0,0,Transient,75.44,0,0,Canceled,2020-06-02 -Resort Hotel,0,130,2016,July,27,30,1,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,129.34,1,0,Check-Out,2019-05-04 -City Hotel,0,113,2015,August,42,31,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Contract,126.78,0,1,Check-Out,2019-07-04 -Resort Hotel,0,12,2016,August,33,5,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,130.99,1,1,Check-Out,2019-06-03 -City Hotel,0,2,2016,June,29,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,115.26,0,0,Check-Out,2019-05-04 -City Hotel,0,13,2017,April,19,28,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,83.48,0,0,Check-Out,2020-03-03 -City Hotel,0,252,2015,September,43,23,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,58.84,0,0,Check-Out,2017-12-03 -Resort Hotel,0,2,2016,June,35,2,0,3,2,0.0,0,HB,ESP,Direct,TA/TO,0,0,0,A,H,2,No Deposit,243.0,179.0,0,Transient,222.62,1,1,Check-Out,2019-03-04 -Resort Hotel,0,176,2015,November,36,16,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,49.22,0,2,Check-Out,2018-06-02 -City Hotel,0,121,2016,June,25,4,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.49,0,0,Check-Out,2019-04-03 -City Hotel,1,143,2016,July,26,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,110.89,0,0,Canceled,2018-11-02 -City Hotel,1,292,2016,June,25,17,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.97,0,0,Canceled,2019-01-03 -Resort Hotel,0,11,2016,October,43,14,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,237.0,0,Transient,77.66,0,0,Check-Out,2019-09-03 -City Hotel,1,270,2017,August,36,11,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,185.67,0,1,Canceled,2019-08-04 -City Hotel,0,47,2017,July,32,24,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,165.27,0,2,Check-Out,2020-07-03 -Resort Hotel,1,8,2016,September,40,20,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,105.6,0,0,No-Show,2019-11-03 -Resort Hotel,0,45,2017,August,34,19,0,5,3,0.0,0,BB,,Aviation,Corporate,0,0,0,D,E,0,No Deposit,17.0,200.0,0,Transient,143.45,1,0,Check-Out,2020-06-02 -City Hotel,1,0,2017,February,11,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,77.44,0,0,Canceled,2019-11-03 -City Hotel,0,41,2016,July,37,2,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.16,0,2,Check-Out,2019-05-04 -Resort Hotel,0,42,2017,March,19,2,1,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,137.52,1,2,Check-Out,2020-03-03 -Resort Hotel,0,136,2016,June,26,28,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,92.4,1,0,Check-Out,2019-05-04 -City Hotel,0,11,2017,May,27,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,14.0,58.0,0,Transient,132.43,0,0,Check-Out,2020-04-02 -City Hotel,1,29,2016,December,50,22,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,103.48,0,0,Canceled,2019-09-03 -City Hotel,0,57,2016,March,17,9,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,122.57,0,2,Check-Out,2019-05-04 -City Hotel,0,40,2016,November,42,10,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.96,0,2,Check-Out,2019-10-04 -City Hotel,0,105,2016,July,37,27,0,3,1,0.0,0,BB,SWE,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,81.02,0,0,Check-Out,2019-07-04 -Resort Hotel,0,42,2016,May,38,24,3,6,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,39.7,0,0,Check-Out,2019-03-04 -City Hotel,0,14,2017,February,10,16,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,78.38,0,1,Check-Out,2020-02-01 -Resort Hotel,1,40,2016,September,30,20,2,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,249.51,0,0,Canceled,2019-05-04 -City Hotel,0,3,2017,February,8,12,0,1,1,0.0,0,SC,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,171.0,72.0,0,Transient,70.77,0,0,Check-Out,2020-01-04 -City Hotel,1,116,2017,July,28,23,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,104.01,0,1,Canceled,2018-12-03 -City Hotel,0,101,2016,April,23,27,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,96.06,0,1,Check-Out,2019-03-04 -Resort Hotel,0,206,2017,June,32,16,3,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient,130.48,0,1,Check-Out,2020-06-02 -City Hotel,1,173,2016,June,27,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,75.3,0,0,Canceled,2018-12-03 -Resort Hotel,0,128,2016,July,26,21,2,10,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,131.0,179.0,61,Transient-Party,147.23,0,0,Check-Out,2019-06-03 -Resort Hotel,1,257,2017,July,32,31,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,2019-05-04 -City Hotel,1,156,2016,July,23,12,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.2,0,2,Canceled,2019-09-03 -City Hotel,0,0,2016,April,16,28,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,76.79,0,0,Check-Out,2019-02-01 -Resort Hotel,0,134,2015,July,31,15,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,3,No Deposit,17.0,179.0,0,Transient,82.12,1,2,Check-Out,2018-05-03 -Resort Hotel,1,96,2017,March,17,24,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,E,F,0,No Deposit,310.0,179.0,0,Contract,128.0,0,0,Canceled,2020-01-04 -City Hotel,1,0,2016,December,53,6,0,1,2,2.0,0,BB,BRA,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,136.2,0,1,Canceled,2019-08-04 -City Hotel,0,26,2017,November,49,5,0,3,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.52,0,0,Check-Out,2019-12-04 -Resort Hotel,0,102,2016,July,33,15,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Contract,132.45,1,0,Canceled,2019-06-03 -City Hotel,1,378,2017,August,37,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,107.74,0,0,Canceled,2020-06-02 -Resort Hotel,0,153,2016,July,32,30,3,5,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,378.0,179.0,0,Transient,90.38,0,0,Check-Out,2018-12-03 -City Hotel,1,97,2016,December,51,6,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,61.36,0,0,Canceled,2019-08-04 -City Hotel,0,188,2017,May,23,20,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,102.05,0,0,Check-Out,2019-02-01 -City Hotel,0,245,2017,July,27,10,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,142.14,0,1,Check-Out,2020-06-02 -City Hotel,0,17,2016,October,45,23,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,126.5,0,2,Check-Out,2019-07-04 -City Hotel,0,41,2016,March,45,15,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.65,0,3,Check-Out,2019-07-04 -Resort Hotel,0,1,2015,July,26,13,1,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,224.0,0,Transient-Party,70.97,0,0,Check-Out,2018-06-02 -City Hotel,1,149,2017,May,27,28,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.44,0,0,Canceled,2020-03-03 -City Hotel,0,36,2016,November,50,30,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,136.31,0,1,Check-Out,2019-11-03 -City Hotel,0,89,2016,May,21,13,2,6,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,76.84,0,1,Check-Out,2019-07-04 -City Hotel,1,304,2016,July,36,18,2,4,2,0.0,0,HB,DEU,Groups,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,164.06,0,0,Canceled,2018-05-03 -Resort Hotel,1,4,2016,January,11,21,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,62.1,0,0,Canceled,2018-10-03 -City Hotel,1,152,2016,July,37,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,D,0,No Deposit,17.0,179.0,0,Transient,158.58,0,0,Canceled,2020-01-04 -City Hotel,0,104,2017,June,25,9,0,2,2,0.0,0,HB,RUS,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.19,0,1,Check-Out,2020-03-03 -City Hotel,1,22,2016,January,4,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,69.01,0,0,Canceled,2018-11-02 -City Hotel,1,156,2017,June,29,25,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,84.0,179.0,0,Transient,174.53,0,0,Canceled,2020-04-02 -Resort Hotel,0,33,2017,March,11,30,1,3,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,1,A,D,2,No Deposit,14.0,222.0,0,Transient-Party,41.5,0,0,Check-Out,2020-02-01 -Resort Hotel,1,165,2016,March,22,18,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient,88.34,0,0,Canceled,2019-02-01 -City Hotel,0,18,2016,October,45,29,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,172.13,0,2,Check-Out,2019-05-04 -Resort Hotel,0,73,2016,May,28,2,2,3,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient-Party,77.66,0,2,Check-Out,2019-04-03 -City Hotel,1,181,2016,November,51,15,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,149.49,0,2,Canceled,2019-08-04 -City Hotel,0,45,2015,August,33,29,0,5,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Contract,79.53,0,0,Check-Out,2018-05-03 -Resort Hotel,0,35,2017,May,17,25,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,93.65,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,February,11,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,245.0,179.0,0,Transient,31.33,1,0,Check-Out,2019-01-03 -City Hotel,0,154,2017,May,26,30,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.84,0,1,Check-Out,2020-04-02 -City Hotel,0,105,2016,April,18,27,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,96.47,0,2,Check-Out,2019-02-01 -City Hotel,0,43,2017,May,20,27,2,4,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,95.23,0,0,Check-Out,2020-07-03 -City Hotel,0,40,2016,October,45,21,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.35,0,0,Check-Out,2019-05-04 -City Hotel,0,3,2017,June,20,5,1,1,1,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,64.0,0,Transient,72.48,0,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2017,April,16,18,2,0,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,3.17,1,2,Check-Out,2020-03-03 -City Hotel,1,442,2017,May,21,3,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,69.07,0,0,Canceled,2020-03-03 -City Hotel,1,15,2015,November,51,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,58,Transient-Party,87.9,0,2,Canceled,2018-08-03 -Resort Hotel,1,295,2016,December,53,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,186.0,179.0,0,Transient,64.61,0,0,Canceled,2019-10-04 -City Hotel,0,139,2017,June,36,21,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,217.22,0,1,Check-Out,2020-07-03 -City Hotel,0,51,2017,June,9,18,2,2,1,0.0,0,SC,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.23,0,1,Check-Out,2020-03-03 -City Hotel,1,2,2017,May,21,9,0,1,3,0.0,0,SC,,Complementary,Corporate,1,0,0,P,P,0,No Deposit,13.0,217.0,0,Transient,3.86,0,0,Canceled,2019-12-04 -City Hotel,1,3,2016,January,3,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,68.99,0,0,Canceled,2018-11-02 -Resort Hotel,0,14,2016,October,52,24,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,59.28,0,0,Check-Out,2019-08-04 -Resort Hotel,0,97,2015,September,35,22,2,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,243.0,179.0,0,Transient,142.94,0,0,Canceled,2018-05-03 -City Hotel,0,20,2016,June,26,27,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-06-02 -City Hotel,0,149,2016,October,43,2,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.33,0,1,Canceled,2019-09-03 -City Hotel,0,0,2016,October,44,22,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.24,0,1,Check-Out,2019-07-04 -Resort Hotel,1,225,2015,August,33,27,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,71.61,0,0,Canceled,2017-10-03 -City Hotel,1,372,2016,August,27,2,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,122.81,0,0,Canceled,2018-12-03 -City Hotel,0,3,2017,May,28,23,0,3,1,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,103.48,0,0,Check-Out,2019-02-01 -City Hotel,1,395,2017,August,35,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,305.0,179.0,0,Transient,126.3,0,0,Canceled,2019-12-04 -City Hotel,0,1,2016,October,35,5,0,4,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,11.0,179.0,0,Transient,136.77,0,3,Check-Out,2019-08-04 -Resort Hotel,1,147,2016,March,16,31,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient,40.97,0,0,Canceled,2019-01-03 -City Hotel,0,16,2017,July,25,24,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,127.47,0,2,Check-Out,2020-07-03 -Resort Hotel,0,241,2017,July,34,9,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,2.57,1,3,Check-Out,2020-06-02 -City Hotel,1,34,2016,March,14,15,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,82.65,0,1,Canceled,2018-12-03 -City Hotel,0,12,2016,August,37,15,0,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-05-04 -City Hotel,1,142,2016,July,39,31,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,104.51,0,0,Canceled,2018-06-02 -City Hotel,0,26,2016,April,4,7,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,67.45,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,May,9,9,4,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient-Party,65.93,0,0,Check-Out,2019-02-01 -City Hotel,0,295,2015,September,40,18,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,62,Transient-Party,61.1,0,0,Check-Out,2018-07-03 -City Hotel,0,30,2016,September,35,14,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,181.3,0,1,Check-Out,2019-08-04 -Resort Hotel,0,35,2016,May,18,30,0,3,2,2.0,0,BB,ITA,Groups,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient-Party,67.35,1,0,Check-Out,2019-07-04 -Resort Hotel,0,235,2015,July,31,27,2,4,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,96.45,0,0,Check-Out,2018-06-02 -City Hotel,0,18,2015,December,50,29,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.37,0,1,Check-Out,2018-11-02 -City Hotel,0,0,2016,October,27,21,0,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,117.87,0,0,Check-Out,2019-07-04 -Resort Hotel,1,161,2017,August,38,28,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,Non Refund,160.0,179.0,0,Transient,163.25,0,0,Canceled,2020-06-02 -Resort Hotel,0,155,2016,July,34,29,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,223.24,0,0,Check-Out,2019-06-03 -Resort Hotel,0,328,2015,August,35,15,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,203.0,179.0,0,Transient,185.1,0,0,Check-Out,2018-06-02 -Resort Hotel,0,238,2017,March,18,21,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,A,1,No Deposit,240.0,179.0,0,Transient,31.82,0,2,Check-Out,2019-03-04 -City Hotel,1,249,2017,June,36,17,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,145.2,0,0,Canceled,2019-10-04 -Resort Hotel,1,58,2017,August,37,20,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,173.0,179.0,0,Transient,241.37,0,1,Canceled,2019-05-04 -Resort Hotel,0,60,2017,August,36,31,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,235.82,1,3,Check-Out,2020-06-02 -Resort Hotel,0,2,2016,October,44,13,2,1,2,0.0,0,HB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.55,0,2,Check-Out,2019-07-04 -City Hotel,0,94,2017,December,12,28,1,0,1,0.0,0,BB,ITA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,203.0,179.0,0,Transient,72.13,0,0,Check-Out,2020-01-04 -Resort Hotel,0,0,2016,February,8,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,30.86,0,0,Check-Out,2019-02-01 -City Hotel,1,30,2017,April,16,6,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.73,0,3,Canceled,2020-02-01 -Resort Hotel,1,17,2017,March,9,12,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,D,E,0,No Deposit,240.0,179.0,0,Group,27.94,0,1,Canceled,2020-02-01 -City Hotel,1,55,2016,April,23,12,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,98.53,0,0,Canceled,2019-02-01 -Resort Hotel,0,288,2017,May,21,24,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,111.88,0,2,Check-Out,2020-03-03 -Resort Hotel,0,191,2016,October,40,1,4,7,2,0.0,0,HB,AUT,Direct,Direct,0,0,0,A,D,1,No Deposit,334.0,179.0,0,Transient-Party,39.79,1,0,Check-Out,2019-07-04 -City Hotel,1,48,2016,July,32,21,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.82,0,0,Canceled,2018-06-02 -Resort Hotel,0,23,2017,March,17,27,0,1,1,0.0,0,HB,,Corporate,Corporate,1,0,0,A,E,2,No Deposit,15.0,222.0,0,Transient,43.22,0,0,Check-Out,2020-04-02 -City Hotel,0,62,2016,August,38,24,0,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-08-04 -Resort Hotel,0,30,2016,December,53,31,1,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,123.02,0,0,Check-Out,2019-11-03 -Resort Hotel,1,97,2017,February,10,24,2,2,2,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,E,E,0,No Deposit,193.0,179.0,0,Transient,79.69,0,2,Canceled,2019-10-04 -Resort Hotel,0,11,2017,June,20,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient-Party,63.9,0,0,Check-Out,2019-02-01 -Resort Hotel,1,37,2017,February,8,27,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,91.0,0,Transient,46.09,0,0,Canceled,2019-10-04 -City Hotel,1,21,2017,May,21,10,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.9,0,1,Canceled,2020-04-02 -City Hotel,0,233,2016,June,26,20,2,6,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,183.0,0,Transient,103.2,0,0,Check-Out,2019-06-03 -Resort Hotel,1,49,2017,February,27,18,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,74.39,0,0,Canceled,2020-06-02 -City Hotel,1,19,2017,June,29,13,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.02,0,0,Check-Out,2020-06-02 -Resort Hotel,0,50,2017,July,4,30,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,245.0,179.0,0,Transient,63.58,0,3,Check-Out,2019-12-04 -Resort Hotel,0,97,2016,February,9,21,2,5,2,0.0,0,Undefined,DEU,Groups,Direct,0,0,0,A,A,1,No Deposit,307.0,179.0,0,Transient-Party,82.72,0,0,Check-Out,2019-03-04 -City Hotel,0,278,2015,September,33,6,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,92.21,0,1,Check-Out,2019-05-04 -Resort Hotel,0,171,2017,March,27,2,4,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,44.32,0,1,Check-Out,2020-04-02 -City Hotel,0,84,2016,May,22,28,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,9.0,179.0,0,Transient-Party,73.98,0,1,Check-Out,2019-02-01 -City Hotel,0,21,2016,October,43,20,1,6,3,0.0,0,BB,USA,Direct,Direct,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,146.52,1,1,Check-Out,2018-08-03 -City Hotel,0,48,2015,July,38,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,76.07,0,0,Check-Out,2018-06-02 -City Hotel,1,107,2016,August,43,5,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,162.62,0,3,Canceled,2019-05-04 -Resort Hotel,0,142,2016,March,15,7,1,3,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,224.0,0,Transient-Party,71.33,0,0,Check-Out,2019-09-03 -City Hotel,0,18,2017,June,27,20,0,2,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,110.86,0,1,Check-Out,2020-06-02 -City Hotel,0,29,2016,March,44,21,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.15,0,1,Check-Out,2019-11-03 -City Hotel,1,320,2015,September,41,10,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.13,0,1,Canceled,2018-07-03 -City Hotel,1,442,2015,September,46,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,144.43,0,0,Canceled,2018-08-03 -Resort Hotel,1,116,2017,February,9,27,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,297.0,331.0,0,Transient-Party,60.93,0,0,Canceled,2020-04-02 -City Hotel,0,211,2016,September,35,28,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.19,0,2,Check-Out,2019-05-04 -City Hotel,1,29,2017,February,10,13,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,172.0,179.0,0,Transient,76.65,0,0,Canceled,2019-09-03 -City Hotel,1,66,2016,March,30,20,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.39,0,1,Canceled,2019-05-04 -City Hotel,0,16,2016,August,38,10,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,185.61,0,2,Check-Out,2019-02-01 -Resort Hotel,0,16,2016,August,37,3,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,202.51,1,1,Check-Out,2019-04-03 -Resort Hotel,0,53,2017,June,26,26,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,157.25,1,0,Check-Out,2020-04-02 -City Hotel,0,14,2017,March,17,11,0,2,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,132.71,0,1,Check-Out,2020-03-03 -City Hotel,1,84,2017,February,11,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,74.0,179.0,0,Transient,85.46,0,0,Canceled,2020-01-04 -Resort Hotel,0,212,2017,June,32,13,0,10,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,176.0,179.0,0,Transient,222.3,0,0,Check-Out,2020-06-02 -City Hotel,0,14,2016,October,43,9,2,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,79.4,0,0,Check-Out,2018-08-03 -Resort Hotel,0,53,2017,April,17,5,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,77.22,0,0,Check-Out,2020-03-03 -City Hotel,1,358,2016,November,51,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,54.17,0,0,Canceled,2019-08-04 -Resort Hotel,0,36,2015,October,44,30,1,4,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,36.12,0,2,Check-Out,2018-08-03 -City Hotel,1,5,2017,June,28,30,0,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,83.76,0,0,Canceled,2020-07-03 -City Hotel,1,68,2016,April,20,24,2,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,161.14,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,June,28,10,0,2,1,0.0,0,BB,ESP,Complementary,TA/TO,1,0,1,A,K,0,No Deposit,12.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-02-01 -Resort Hotel,1,150,2017,February,9,10,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,14.0,331.0,0,Transient,79.15,0,0,Canceled,2019-11-03 -City Hotel,0,90,2016,October,45,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,107.61,0,1,Check-Out,2019-10-04 -City Hotel,1,45,2016,October,45,19,2,4,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,L,0,No Deposit,241.0,179.0,0,Transient,127.52,0,0,Canceled,2019-08-04 -City Hotel,1,0,2015,August,35,5,0,1,2,0.0,0,BB,FRA,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-07-03 -Resort Hotel,0,265,2015,August,41,15,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,149.05,0,1,Check-Out,2018-05-03 -Resort Hotel,0,29,2015,October,35,11,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,89.64,0,1,Check-Out,2018-06-02 -Resort Hotel,0,281,2015,August,36,20,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,205.14,0,0,Check-Out,2020-06-02 -Resort Hotel,0,35,2016,May,24,23,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,323.0,179.0,0,Transient-Party,107.02,0,0,Check-Out,2019-04-03 -City Hotel,0,156,2017,June,26,14,0,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,81.95,0,0,Check-Out,2019-05-04 -City Hotel,0,31,2016,April,19,22,1,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,B,B,0,No Deposit,10.0,46.0,0,Transient,58.48,0,1,Check-Out,2019-03-04 -Resort Hotel,0,149,2017,July,34,18,2,5,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,18.0,179.0,0,Transient,180.25,0,0,Check-Out,2020-03-03 -City Hotel,1,106,2017,June,21,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.8,0,1,Canceled,2020-05-03 -Resort Hotel,0,99,2016,April,15,18,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,237.0,179.0,0,Transient,172.41,1,2,Check-Out,2019-03-04 -Resort Hotel,0,96,2016,July,31,9,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,288.0,179.0,0,Contract,83.83,0,2,Check-Out,2019-06-03 -City Hotel,1,159,2016,May,21,30,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,43,Transient,88.97,0,0,Canceled,2018-11-02 -City Hotel,1,0,2016,June,2,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.22,0,0,No-Show,2019-02-01 -City Hotel,0,280,2017,June,26,28,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,150.39,0,1,Check-Out,2020-02-01 -City Hotel,1,152,2016,October,44,18,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,99.7,0,0,Canceled,2018-08-03 -City Hotel,0,64,2015,November,28,8,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,60.76,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,December,53,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,68.31,0,2,Check-Out,2018-11-02 -City Hotel,0,101,2016,May,23,8,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,151.4,0,1,Check-Out,2019-06-03 -City Hotel,1,251,2016,June,26,1,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,Non Refund,9.0,179.0,0,Transient,78.48,0,0,Canceled,2019-03-04 -City Hotel,0,33,2017,April,20,12,2,5,2,0.0,0,SC,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,85.67,0,2,Check-Out,2020-04-02 -Resort Hotel,0,18,2016,March,15,5,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,102.41,0,3,Check-Out,2019-01-03 -Resort Hotel,0,0,2015,September,42,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,20,2017,April,26,17,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,195.28,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,April,35,6,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,68.01,1,2,Check-Out,2019-04-03 -City Hotel,1,91,2016,August,37,18,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,113.72,0,0,Canceled,2018-06-02 -Resort Hotel,0,23,2015,July,30,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,2,No Deposit,14.0,210.0,0,Transient,36.6,0,0,Check-Out,2018-05-03 -Resort Hotel,0,98,2017,February,9,13,2,0,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,74.21,1,1,Check-Out,2020-02-01 -City Hotel,0,24,2016,January,10,20,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,68.1,0,2,Check-Out,2018-11-02 -City Hotel,1,169,2017,May,37,21,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,198.45,0,0,Canceled,2019-10-04 -City Hotel,0,38,2016,May,18,30,0,4,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,28.0,179.0,0,Transient,75.5,0,0,Canceled,2019-06-03 -City Hotel,0,149,2017,June,28,13,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,126.47,0,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,May,22,13,0,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,90.0,179.0,0,Transient,73.51,0,0,Check-Out,2019-03-04 -City Hotel,1,159,2016,March,17,22,0,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,39,Transient,83.08,0,0,Canceled,2018-11-02 -Resort Hotel,0,13,2016,July,35,23,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,180.51,0,0,Check-Out,2018-05-03 -City Hotel,0,36,2016,July,31,20,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Contract,166.67,0,1,Check-Out,2019-03-04 -City Hotel,0,11,2016,April,24,6,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,117.09,0,0,Check-Out,2019-03-04 -Resort Hotel,0,291,2016,June,26,19,0,3,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,79.99,1,1,Check-Out,2019-06-03 -City Hotel,0,308,2015,July,31,28,2,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.72,0,1,Check-Out,2018-06-02 -Resort Hotel,0,106,2016,September,42,6,1,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,240.0,179.0,0,Transient,210.03,0,0,Check-Out,2019-08-04 -Resort Hotel,0,31,2015,December,53,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,162.1,1,2,Check-Out,2018-06-02 -Resort Hotel,0,5,2015,December,50,28,2,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,76.33,1,0,Check-Out,2018-12-03 -Resort Hotel,0,45,2017,May,21,9,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,241.0,179.0,0,Transient-Party,90.12,1,0,Check-Out,2019-12-04 -Resort Hotel,1,6,2016,March,18,28,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,85.0,179.0,0,Transient,60.74,0,0,Canceled,2019-01-03 -City Hotel,1,10,2017,December,49,28,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,0.46,0,0,Canceled,2020-01-04 -City Hotel,1,224,2015,July,37,26,1,4,1,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,156.63,0,0,Canceled,2018-05-03 -Resort Hotel,0,263,2017,May,26,2,2,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,259.0,179.0,0,Transient,103.57,0,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,December,51,16,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,48.43,1,0,Check-Out,2018-12-03 -City Hotel,0,13,2015,August,30,14,0,2,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,191.39,0,0,Check-Out,2018-08-03 -Resort Hotel,0,23,2017,May,32,14,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,220.89,1,1,Check-Out,2019-07-04 -Resort Hotel,1,215,2016,May,24,11,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,311.0,179.0,0,Transient,85.29,0,0,Canceled,2019-09-03 -Resort Hotel,0,185,2016,May,24,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,0,Refundable,15.0,222.0,0,Transient-Party,61.5,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,March,12,19,0,3,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,78.0,0,Transient-Party,117.07,0,0,Check-Out,2019-02-01 -Resort Hotel,0,259,2017,June,32,19,0,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,93.85,0,2,Check-Out,2020-02-01 -Resort Hotel,1,372,2015,August,36,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,1.0,179.0,0,Transient,73.87,0,1,Canceled,2018-06-02 -City Hotel,0,40,2017,March,17,13,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.27,0,2,Canceled,2019-11-03 -City Hotel,0,51,2017,August,37,13,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.92,0,1,Canceled,2020-07-03 -Resort Hotel,0,38,2017,January,4,6,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,G,E,0,No Deposit,246.0,179.0,0,Transient,62.52,1,3,Check-Out,2019-10-04 -City Hotel,1,92,2016,June,27,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.42,0,0,Canceled,2019-05-04 -Resort Hotel,0,8,2016,July,37,28,0,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,125.84,1,1,Check-Out,2019-06-03 -City Hotel,0,95,2015,August,37,12,0,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,92.51,0,0,Check-Out,2018-05-03 -City Hotel,0,1,2017,June,29,2,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.76,0,0,Check-Out,2020-06-02 -Resort Hotel,0,86,2017,June,25,18,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,98.3,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,August,40,20,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-07-04 -Resort Hotel,0,237,2017,July,25,4,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,70.0,179.0,0,Transient-Party,126.43,0,0,Check-Out,2020-07-03 -Resort Hotel,0,18,2016,May,14,30,1,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,179.0,0,Transient-Party,67.45,0,0,Check-Out,2019-02-01 -City Hotel,1,123,2015,July,34,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,128.0,179.0,0,Group,61.41,0,0,Canceled,2017-12-03 -City Hotel,0,27,2017,May,22,9,1,0,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,171.74,0,2,Check-Out,2020-04-02 -City Hotel,1,48,2015,November,45,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,88.42,0,0,Check-Out,2018-08-03 -City Hotel,1,35,2016,September,46,15,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,7.0,179.0,0,Transient,128.7,0,2,Canceled,2019-06-03 -City Hotel,1,18,2017,February,10,24,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.0,0,1,Canceled,2019-10-04 -City Hotel,1,145,2017,February,10,5,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,100.6,0,0,Canceled,2019-09-03 -Resort Hotel,1,60,2017,February,8,20,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,346.0,179.0,0,Transient,105.14,0,0,Canceled,2019-09-03 -City Hotel,0,35,2016,March,9,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,73.76,0,0,Check-Out,2019-01-03 -City Hotel,0,7,2017,June,28,20,2,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,89.49,0,0,Check-Out,2020-04-02 -Resort Hotel,1,276,2015,July,34,6,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,77.19,0,0,Canceled,2017-09-02 -City Hotel,0,16,2017,June,11,21,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,120.42,0,0,Check-Out,2020-03-03 -City Hotel,0,9,2016,December,53,25,0,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.81,0,1,Check-Out,2018-12-03 -City Hotel,1,15,2015,August,36,24,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,76.71,0,0,Canceled,2017-12-03 -City Hotel,0,3,2015,January,10,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,32.0,179.0,0,Contract,60.02,0,0,Check-Out,2018-11-02 -City Hotel,1,97,2015,September,36,13,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,160.54,0,0,Canceled,2018-08-03 -City Hotel,0,37,2016,June,26,28,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.97,0,1,Check-Out,2019-04-03 -City Hotel,1,12,2017,February,9,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,Non Refund,10.0,85.0,0,Transient,69.81,0,0,No-Show,2019-09-03 -City Hotel,1,331,2017,June,26,2,2,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,71.15,0,0,Canceled,2020-03-03 -City Hotel,0,271,2016,August,34,20,0,2,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,131.53,0,2,Check-Out,2019-08-04 -City Hotel,0,0,2017,March,10,13,0,1,1,0.0,0,BB,FRA,Aviation,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,87.6,0,0,Check-Out,2020-04-02 -City Hotel,1,105,2017,May,19,27,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,10.0,179.0,0,Transient,118.7,0,0,Canceled,2020-01-04 -City Hotel,1,387,2015,October,44,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,89.02,0,0,Canceled,2018-08-03 -City Hotel,0,54,2016,November,4,27,0,1,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient-Party,71.72,0,1,Check-Out,2018-12-03 -City Hotel,0,136,2017,August,35,15,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.19,0,1,Check-Out,2020-06-02 -City Hotel,0,20,2016,October,44,15,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.42,0,0,Check-Out,2019-09-03 -Resort Hotel,0,89,2016,February,9,15,1,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,F,1,No Deposit,318.0,179.0,0,Transient,122.77,1,0,Check-Out,2019-06-03 -City Hotel,0,11,2015,October,35,5,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,A,0,No Deposit,8.0,179.0,0,Group,46.22,0,2,Canceled,2018-08-03 -City Hotel,1,341,2016,December,53,6,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.55,0,1,No-Show,2019-11-03 -City Hotel,0,16,2016,October,44,25,0,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,132.95,0,1,Check-Out,2019-07-04 -Resort Hotel,0,20,2017,April,17,10,1,0,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,39.28,0,0,Check-Out,2019-07-04 -Resort Hotel,0,250,2016,August,36,20,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,168.0,179.0,0,Transient-Party,79.1,0,0,Check-Out,2019-06-03 -City Hotel,0,27,2016,December,43,8,1,3,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,154.61,0,0,Check-Out,2019-06-03 -Resort Hotel,0,87,2015,December,53,10,2,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,No Deposit,304.0,179.0,0,Transient,60.79,0,0,Check-Out,2018-12-03 -Resort Hotel,0,88,2017,June,9,21,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient-Party,103.93,0,0,Check-Out,2020-04-02 -Resort Hotel,1,40,2017,July,26,21,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,158.99,0,2,Canceled,2020-06-02 -City Hotel,0,2,2017,February,10,10,1,0,2,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.85,0,1,Check-Out,2020-02-01 -City Hotel,1,50,2016,March,17,5,0,2,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,99.88,0,0,Canceled,2019-01-03 -Resort Hotel,0,3,2016,April,15,28,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient,71.26,0,0,Check-Out,2019-02-01 -City Hotel,1,1,2016,September,44,28,1,1,1,0.0,0,BB,PRT,Groups,GDS,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,111.73,0,0,Canceled,2018-08-03 -City Hotel,0,199,2016,September,45,15,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,77.06,0,0,Check-Out,2019-08-04 -City Hotel,1,84,2016,June,29,5,1,1,1,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,150.0,179.0,0,Transient,94.18,0,0,No-Show,2019-05-04 -Resort Hotel,0,289,2015,September,43,29,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,62.53,0,0,Check-Out,2018-08-03 -Resort Hotel,1,300,2017,February,27,22,0,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,241.0,179.0,0,Transient,127.87,0,0,No-Show,2020-04-02 -City Hotel,1,408,2017,May,22,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,125.91,0,0,Canceled,2020-03-03 -City Hotel,0,22,2015,September,36,21,0,3,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,96.11,0,0,Check-Out,2018-08-03 -City Hotel,0,104,2016,June,22,9,0,1,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,0,No Deposit,102.0,179.0,0,Transient,79.68,0,0,Check-Out,2019-04-03 -Resort Hotel,0,82,2016,May,20,5,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,139.0,179.0,0,Transient-Party,75.02,0,0,Check-Out,2019-02-01 -Resort Hotel,0,18,2016,April,18,27,2,1,1,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,No Deposit,364.0,179.0,0,Transient-Party,61.6,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2016,March,19,30,2,3,1,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,92.14,0,0,Check-Out,2019-02-01 -City Hotel,1,269,2017,June,26,21,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Group,63.84,0,0,Canceled,2020-03-03 -City Hotel,1,3,2016,September,42,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,95.54,0,0,Canceled,2019-08-04 -Resort Hotel,1,13,2016,February,8,28,1,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,65,Transient,76.75,0,0,Canceled,2018-12-03 -City Hotel,0,39,2015,December,53,10,2,2,2,0.0,0,BB,ISR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,15.0,222.0,0,Transient-Party,41.86,0,0,Check-Out,2018-11-02 -Resort Hotel,0,37,2015,December,49,27,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,40.67,0,0,Check-Out,2018-09-02 -City Hotel,1,20,2016,December,50,28,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.92,0,0,Canceled,2019-10-04 -City Hotel,1,172,2016,August,33,21,2,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,153.05,0,1,Canceled,2019-07-04 -City Hotel,0,16,2016,November,44,26,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,70.0,179.0,0,Transient,98.65,0,0,Check-Out,2019-11-03 -City Hotel,1,154,2016,June,19,17,2,2,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,131.2,0,0,Canceled,2019-02-01 -City Hotel,0,101,2017,May,21,28,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,101.69,0,0,Check-Out,2020-02-01 -Resort Hotel,0,199,2017,June,21,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,227.0,0,Transient,2.81,0,0,Check-Out,2020-05-03 -City Hotel,1,12,2016,September,36,12,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,189.48,0,0,Canceled,2019-07-04 -City Hotel,0,76,2015,June,31,5,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Contract,67.32,0,0,Check-Out,2019-01-03 -City Hotel,1,47,2016,October,5,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,63,Transient,74.06,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,November,44,27,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,96.77,0,0,Check-Out,2019-08-04 -City Hotel,1,12,2016,March,10,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,86.81,0,0,No-Show,2018-11-02 -City Hotel,0,16,2016,February,11,27,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,71.01,0,1,Check-Out,2019-04-03 -City Hotel,0,0,2016,April,22,30,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,D,B,0,No Deposit,12.0,45.0,0,Transient,0.0,0,2,Check-Out,2018-10-03 -Resort Hotel,0,73,2016,May,22,21,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,302.0,179.0,0,Transient-Party,84.25,0,0,Check-Out,2019-02-01 -City Hotel,1,149,2016,June,27,24,3,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,86.63,0,0,Canceled,2020-05-03 -City Hotel,0,282,2016,October,45,2,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,73.15,0,1,Check-Out,2019-07-04 -City Hotel,0,1,2017,January,3,10,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,84.22,0,1,Check-Out,2020-06-02 -Resort Hotel,0,147,2016,October,16,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,224.0,22,Transient-Party,66.51,0,0,Check-Out,2019-03-04 -Resort Hotel,1,115,2017,March,9,15,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,59.0,179.0,0,Transient-Party,62.33,0,0,Canceled,2018-11-02 -Resort Hotel,0,33,2017,May,23,31,0,2,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,115.63,0,0,Check-Out,2020-04-02 -City Hotel,0,55,2015,September,46,25,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,114.9,0,0,Check-Out,2018-08-03 -Resort Hotel,0,10,2016,May,18,6,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,132.95,1,0,Check-Out,2019-02-01 -Resort Hotel,0,17,2016,May,27,29,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,249.43,1,0,Check-Out,2019-05-04 -City Hotel,1,54,2015,August,38,18,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,79.7,0,0,Canceled,2018-05-03 -City Hotel,0,112,2017,August,33,16,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,8.0,179.0,0,Transient,167.5,0,1,Check-Out,2020-05-03 -Resort Hotel,0,0,2015,September,42,21,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,I,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,142,2016,November,42,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,15.0,223.0,0,Transient-Party,40.04,1,0,Check-Out,2019-07-04 -City Hotel,0,44,2016,September,45,24,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.91,0,2,Check-Out,2019-11-03 -City Hotel,0,96,2016,July,42,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,107.29,0,1,Check-Out,2019-06-03 -City Hotel,0,1,2016,September,44,21,0,2,2,0.0,0,BB,GBR,Aviation,GDS,0,0,0,D,D,0,No Deposit,186.0,179.0,0,Transient,132.02,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,March,17,16,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,36.56,0,0,Check-Out,2018-11-02 -City Hotel,0,204,2017,June,24,18,2,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,11.0,179.0,0,Transient,166.41,0,3,Check-Out,2020-03-03 -City Hotel,0,46,2017,December,4,27,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -City Hotel,0,50,2016,October,48,5,1,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,B,0,No Deposit,84.0,179.0,0,Transient,116.37,0,1,Check-Out,2019-08-04 -Resort Hotel,1,0,2016,July,11,15,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,B,0,No Deposit,10.0,179.0,0,Transient,73.81,0,0,Canceled,2019-02-01 -Resort Hotel,0,160,2016,September,33,15,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,D,D,1,No Deposit,84.0,179.0,0,Group,44.2,0,1,Check-Out,2019-08-04 -City Hotel,0,41,2017,August,35,5,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,169.03,0,2,Canceled,2019-11-03 -Resort Hotel,0,0,2017,February,9,25,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,E,1,No Deposit,18.0,74.0,0,Transient,82.4,1,0,Check-Out,2019-12-04 -City Hotel,1,17,2016,August,37,27,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,78.0,179.0,0,Transient,77.7,0,0,Canceled,2019-06-03 -Resort Hotel,0,53,2016,June,16,29,0,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,109.69,0,1,Check-Out,2019-03-04 -Resort Hotel,0,34,2016,March,17,18,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,73.01,0,1,Check-Out,2019-03-04 -City Hotel,1,130,2016,July,32,5,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,136.27,0,1,Canceled,2018-05-03 -City Hotel,0,283,2015,August,39,5,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,30.14,0,0,Check-Out,2018-08-03 -Resort Hotel,0,28,2015,March,10,12,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,59.77,0,2,Check-Out,2018-12-03 -Resort Hotel,0,2,2016,December,51,27,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,123.08,1,1,Check-Out,2019-10-04 -City Hotel,1,3,2015,November,51,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,64.5,0,0,Canceled,2018-09-02 -Resort Hotel,0,120,2016,May,23,24,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,99.76,0,1,Check-Out,2020-03-03 -City Hotel,0,232,2016,August,34,10,2,0,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Group,127.39,0,0,Check-Out,2020-06-02 -City Hotel,1,150,2016,November,44,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.88,0,0,Canceled,2018-08-03 -City Hotel,1,266,2017,July,26,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,135.21,0,1,Canceled,2018-08-03 -Resort Hotel,0,95,2016,October,53,30,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,67.11,0,0,Check-Out,2019-11-03 -City Hotel,1,158,2016,March,19,17,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,118.76,0,0,Canceled,2019-11-03 -City Hotel,0,5,2015,November,10,9,1,1,1,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,D,0,No Deposit,173.0,179.0,0,Transient-Party,70.63,0,0,Check-Out,2018-12-03 -Resort Hotel,0,10,2017,March,18,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,103.46,0,2,Check-Out,2019-10-04 -City Hotel,0,22,2016,October,41,4,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.35,0,1,Check-Out,2019-06-03 -City Hotel,0,1,2017,June,27,10,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,141.0,0,0,Check-Out,2020-04-02 -City Hotel,1,38,2016,May,21,14,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.93,0,1,Canceled,2019-03-04 -City Hotel,0,35,2015,October,26,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,41.41,0,0,Check-Out,2018-09-02 -City Hotel,1,282,2017,August,36,4,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,191.43,0,0,Canceled,2020-06-02 -Resort Hotel,0,250,2016,August,38,21,2,4,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,183.92,0,3,Check-Out,2020-06-02 -Resort Hotel,1,255,2016,March,17,31,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,75,Transient,27.54,0,0,Canceled,2019-11-03 -City Hotel,1,10,2016,February,9,6,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.87,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,January,11,16,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,0,No Deposit,11.0,45.0,0,Transient,66.02,0,0,Check-Out,2018-10-03 -City Hotel,0,96,2016,July,32,20,2,5,2,1.0,0,HB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,222.29,0,3,Check-Out,2019-05-04 -Resort Hotel,1,309,2016,September,23,31,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,Refundable,36.0,179.0,0,Transient-Party,76.72,0,0,Canceled,2019-02-01 -City Hotel,0,14,2016,October,41,9,3,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,193.0,0,Transient,72.45,0,0,Check-Out,2019-10-04 -Resort Hotel,1,99,2016,December,53,2,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,221.15,0,1,Canceled,2019-10-04 -Resort Hotel,0,70,2017,July,26,31,0,3,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,208.61,0,2,Check-Out,2020-05-03 -Resort Hotel,0,38,2016,March,10,11,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient,68.93,0,0,Check-Out,2019-06-03 -Resort Hotel,1,3,2016,October,44,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,291.0,179.0,0,Transient-Party,61.91,0,0,Canceled,2019-08-04 -Resort Hotel,0,2,2017,February,11,28,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,I,0,No Deposit,164.0,331.0,0,Transient-Party,71.39,0,1,Check-Out,2020-03-03 -City Hotel,1,297,2017,July,32,14,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,179.73,0,1,Canceled,2020-01-04 -City Hotel,1,3,2016,August,25,21,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2019-05-04 -Resort Hotel,0,244,2017,June,22,21,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,1,No Deposit,26.0,179.0,0,Transient-Party,123.32,0,0,Check-Out,2020-04-02 -City Hotel,0,154,2016,September,45,30,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,113.99,0,1,Check-Out,2019-08-04 -City Hotel,1,37,2015,September,38,10,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,147.38,0,0,Canceled,2018-07-03 -City Hotel,0,89,2017,August,33,28,0,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,132.79,0,2,Check-Out,2020-06-02 -Resort Hotel,0,107,2017,March,38,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Transient,133.05,1,1,Check-Out,2020-04-02 -Resort Hotel,0,242,2015,October,36,17,1,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,74.9,0,0,Check-Out,2018-08-03 -City Hotel,1,137,2016,April,14,21,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,135.0,179.0,62,Transient,76.39,0,0,Canceled,2019-02-01 -Resort Hotel,0,2,2015,July,33,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,191.0,179.0,0,Transient,104.56,0,0,Check-Out,2019-04-03 -City Hotel,0,20,2016,December,52,27,1,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,L,0,No Deposit,14.0,179.0,0,Transient,68.13,0,0,Check-Out,2019-09-03 -Resort Hotel,0,41,2016,July,30,14,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,122.88,0,2,Check-Out,2019-03-04 -City Hotel,1,317,2017,February,15,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,149.64,0,0,Canceled,2019-11-03 -City Hotel,1,345,2015,August,35,15,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,61.9,0,1,Canceled,2017-12-03 -City Hotel,1,11,2016,December,52,24,0,1,2,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,67.0,0,Transient,72.49,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2016,October,42,8,3,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,30.14,0,0,Check-Out,2019-07-04 -City Hotel,0,3,2016,January,11,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,71.96,0,0,Check-Out,2018-11-02 -City Hotel,0,11,2016,October,50,6,0,1,2,0.0,0,BB,GBR,Online TA,GDS,0,0,0,D,D,0,No Deposit,177.0,179.0,0,Transient,110.47,0,1,Check-Out,2019-12-04 -City Hotel,1,262,2017,May,22,27,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,72.62,0,0,Canceled,2020-02-01 -City Hotel,0,4,2017,March,18,30,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,104.95,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2015,September,42,30,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,125.31,0,0,Check-Out,2018-05-03 -City Hotel,1,1,2016,February,10,15,0,1,2,0.0,0,BB,PRT,Undefined,TA/TO,0,1,0,A,A,0,Refundable,11.0,179.0,0,Transient,69.57,0,0,Canceled,2018-12-03 -Resort Hotel,1,67,2017,January,9,10,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,216.13,0,0,Canceled,2019-10-04 -City Hotel,0,32,2017,January,10,30,1,0,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,205.77,0,2,Check-Out,2019-10-04 -City Hotel,0,17,2017,July,26,6,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.62,0,0,Check-Out,2020-05-03 -City Hotel,1,250,2017,April,25,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,1,No Deposit,14.0,45.0,0,Transient,0.0,0,1,Canceled,2020-03-03 -Resort Hotel,1,200,2017,July,33,10,2,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,94.21,0,3,Canceled,2019-04-03 -City Hotel,1,13,2016,June,29,25,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,174.0,179.0,0,Transient,127.52,0,0,No-Show,2019-05-04 -City Hotel,1,196,2017,August,37,4,0,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,10.0,179.0,0,Transient,177.51,0,0,Canceled,2020-01-04 -Resort Hotel,0,38,2016,November,44,27,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,172.97,0,1,Check-Out,2019-09-03 -City Hotel,0,156,2015,October,43,24,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,62,Transient-Party,103.7,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2016,October,45,20,1,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,0,No Deposit,17.0,172.0,0,Transient,99.72,0,0,Check-Out,2019-07-04 -Resort Hotel,0,256,2016,September,42,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,46.9,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2017,February,15,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.59,0,1,Check-Out,2020-04-02 -City Hotel,1,46,2016,December,51,14,0,2,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient,76.08,0,0,Canceled,2019-10-04 -Resort Hotel,1,154,2016,March,8,3,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,Non Refund,83.0,179.0,38,Transient,41.11,0,2,Canceled,2018-10-03 -Resort Hotel,0,2,2016,February,9,3,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,28.78,0,0,Check-Out,2018-11-02 -City Hotel,0,11,2016,June,26,21,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,98.54,0,1,Check-Out,2019-04-03 -Resort Hotel,0,303,2016,May,41,21,2,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,C,1,No Deposit,310.0,179.0,0,Transient-Party,156.06,0,0,Check-Out,2019-06-03 -City Hotel,0,53,2016,April,17,9,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,122.42,0,0,Check-Out,2019-03-04 -Resort Hotel,0,181,2016,August,36,31,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,95.4,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2017,January,3,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,68.18,0,0,Canceled,2019-10-04 -City Hotel,0,33,2016,September,43,12,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.09,0,0,Check-Out,2019-06-03 -Resort Hotel,0,104,2016,December,53,28,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,237.0,179.0,0,Transient,125.41,0,1,Check-Out,2018-11-02 -City Hotel,0,4,2016,March,9,17,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,116.35,1,0,Check-Out,2019-03-04 -City Hotel,0,139,2017,March,17,13,0,2,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,74.0,179.0,0,Transient,75.32,0,1,Check-Out,2020-03-03 -City Hotel,1,89,2016,September,45,16,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.61,0,0,Canceled,2018-08-03 -City Hotel,0,57,2015,September,44,28,0,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,95.0,179.0,0,Contract,62.14,0,0,Check-Out,2018-07-03 -Resort Hotel,0,1,2016,May,23,5,0,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,177.02,1,0,Check-Out,2019-01-03 -City Hotel,0,49,2016,August,27,24,0,1,1,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,160.15,0,1,Check-Out,2019-05-04 -Resort Hotel,0,7,2017,February,11,24,0,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,70.0,179.0,0,Transient,38.23,0,0,Check-Out,2020-02-01 -City Hotel,1,50,2016,March,9,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,20,Transient,92.88,0,0,Canceled,2018-10-03 -Resort Hotel,0,41,2016,February,11,15,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,74.16,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,December,50,2,1,1,1,0.0,0,BB,BEL,Corporate,Corporate,1,0,1,A,A,3,No Deposit,15.0,246.0,0,Transient,67.4,1,0,Check-Out,2019-09-03 -City Hotel,0,283,2015,October,45,22,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,29.92,0,0,Check-Out,2017-12-03 -Resort Hotel,1,12,2016,January,10,13,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,107.39,0,2,Canceled,2018-11-02 -City Hotel,0,45,2016,February,8,23,1,2,2,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,61.71,0,1,Check-Out,2018-12-03 -Resort Hotel,1,33,2017,February,11,25,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,60.48,0,0,Check-Out,2020-02-01 -City Hotel,1,134,2016,February,9,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,70.11,0,0,Canceled,2018-11-02 -City Hotel,0,3,2017,August,35,22,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,219.58,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,November,49,12,1,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,15.0,250.0,0,Transient,2.54,0,0,Check-Out,2019-12-04 -City Hotel,0,40,2016,December,49,15,0,2,1,0.0,0,BB,,Corporate,Corporate,1,1,0,A,A,0,No Deposit,12.0,65.0,0,Transient,83.96,0,0,Check-Out,2018-08-03 -City Hotel,1,187,2015,September,39,19,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,84.69,0,0,Canceled,2018-06-02 -City Hotel,0,75,2015,July,34,20,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.66,0,2,Check-Out,2018-06-02 -Resort Hotel,0,244,2016,October,43,24,2,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,77.63,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2017,August,36,13,1,1,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,221.36,0,0,Check-Out,2019-10-04 -City Hotel,0,110,2016,September,43,17,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,1,0,0,A,C,0,No Deposit,32.0,179.0,0,Group,85.31,0,1,Check-Out,2018-09-02 -Resort Hotel,1,46,2017,July,29,25,2,5,2,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,171.0,179.0,0,Transient,177.63,0,0,Canceled,2020-04-02 -City Hotel,1,433,2016,September,37,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,156.84,0,0,Canceled,2017-10-03 -Resort Hotel,1,303,2015,August,34,10,2,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,E,0,No Deposit,10.0,179.0,0,Transient,61.36,0,0,Canceled,2018-05-03 -City Hotel,1,320,2016,February,9,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,67.36,0,0,Canceled,2018-12-03 -Resort Hotel,0,3,2017,May,22,27,2,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient,0.97,0,0,Check-Out,2020-03-03 -City Hotel,1,213,2017,May,22,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,60.5,0,0,Canceled,2020-03-03 -Resort Hotel,1,13,2016,October,43,2,1,0,1,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,193.03,0,0,Check-Out,2019-08-04 -City Hotel,1,11,2016,March,21,19,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,71.69,0,0,Canceled,2018-12-03 -Resort Hotel,0,11,2016,April,18,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,16.0,63.0,0,Transient,70.73,0,0,Check-Out,2019-07-04 -City Hotel,0,15,2017,January,3,28,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,62.55,0,1,Check-Out,2019-08-04 -City Hotel,0,151,2016,July,36,30,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,196.92,0,2,Check-Out,2020-05-03 -Resort Hotel,0,126,2016,September,32,24,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,124.66,0,1,Check-Out,2019-04-03 -City Hotel,0,2,2017,April,22,20,0,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,151.72,0,0,Check-Out,2020-03-03 -City Hotel,0,151,2017,March,17,29,1,1,1,0.0,0,HB,FRA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,69.02,0,2,Check-Out,2020-02-01 -City Hotel,1,19,2015,October,45,2,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient-Party,60.3,0,1,No-Show,2018-08-03 -City Hotel,0,16,2017,August,31,31,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,155.66,0,1,Check-Out,2020-06-02 -Resort Hotel,1,243,2016,October,44,23,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,A,0,No Deposit,10.0,179.0,0,Transient,128.63,0,3,Canceled,2019-10-04 -City Hotel,1,96,2015,September,42,28,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,94.44,0,1,Canceled,2018-07-03 -City Hotel,0,184,2016,October,44,20,0,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.12,0,0,Check-Out,2019-08-04 -Resort Hotel,1,89,2016,March,16,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,12.0,222.0,75,Transient-Party,58.27,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,August,36,9,3,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,0,No Deposit,249.0,179.0,0,Transient,168.29,1,0,Check-Out,2019-05-04 -City Hotel,1,32,2015,July,32,11,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,119.31,0,2,Canceled,2018-06-02 -Resort Hotel,1,309,2016,August,22,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,179.0,0,Transient,69.49,0,0,Canceled,2019-03-04 -City Hotel,0,102,2017,June,26,28,0,1,1,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,136.32,0,3,Check-Out,2020-03-03 -Resort Hotel,0,91,2015,August,37,10,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,2018-07-03 -City Hotel,1,260,2015,July,33,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,80.35,0,0,Canceled,2017-09-02 -Resort Hotel,0,89,2015,December,51,20,2,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient-Party,40.32,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2017,May,16,31,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,103.07,1,0,Check-Out,2020-03-03 -Resort Hotel,0,211,2016,May,23,28,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,1,Refundable,13.0,224.0,0,Transient-Party,76.7,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,March,10,5,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,124.66,1,0,Check-Out,2018-10-03 -City Hotel,1,153,2017,February,10,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,Non Refund,14.0,86.0,0,Transient,39.58,0,0,Canceled,2018-11-02 -City Hotel,0,2,2016,January,9,24,1,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,77.52,1,2,Check-Out,2019-10-04 -City Hotel,0,294,2017,June,29,27,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,81.25,0,1,Check-Out,2020-04-02 -Resort Hotel,0,17,2017,March,18,13,0,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,1,No Deposit,320.0,179.0,75,Transient-Party,80.43,0,0,Check-Out,2020-03-03 -City Hotel,0,261,2017,April,23,21,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,67.61,0,0,Check-Out,2020-03-03 -City Hotel,0,10,2017,May,25,11,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.55,0,1,Check-Out,2020-05-03 -City Hotel,1,369,2015,August,45,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,123.11,0,0,Canceled,2018-09-02 -Resort Hotel,0,150,2016,July,32,15,0,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,72.35,0,2,Check-Out,2019-05-04 -City Hotel,0,0,2016,December,51,28,1,0,1,0.0,0,BB,USA,Complementary,Direct,1,0,0,A,F,2,No Deposit,17.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-11-03 -Resort Hotel,0,3,2017,January,2,27,1,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient-Party,41.45,1,0,Check-Out,2019-11-03 -Resort Hotel,0,145,2017,June,21,30,1,3,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,C,E,3,Refundable,12.0,179.0,0,Transient-Party,63.46,1,0,Check-Out,2019-12-04 -City Hotel,1,381,2017,May,22,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,68.75,0,0,Canceled,2019-11-03 -Resort Hotel,0,324,2017,August,38,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,132.59,0,2,Check-Out,2020-06-02 -Resort Hotel,0,31,2015,August,26,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,115.07,1,2,Check-Out,2019-01-03 -City Hotel,1,322,2017,July,32,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,221.43,0,0,Canceled,2020-06-02 -City Hotel,0,15,2017,April,22,28,0,2,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,175.15,0,2,Check-Out,2019-12-04 -City Hotel,1,13,2017,June,26,3,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,179.0,0,Transient,78.29,0,0,Canceled,2020-03-03 -Resort Hotel,1,258,2015,July,32,18,1,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,157.0,179.0,0,Contract,107.51,0,0,Canceled,2019-05-04 -Resort Hotel,1,94,2016,June,21,13,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,167.57,0,0,Canceled,2019-01-03 -City Hotel,1,189,2017,June,25,12,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,102.51,0,0,Canceled,2020-01-04 -City Hotel,1,42,2016,December,51,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.72,0,0,Canceled,2019-01-03 -City Hotel,1,153,2017,January,11,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient,70.64,0,0,Canceled,2019-09-03 -City Hotel,1,18,2016,December,53,18,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,8.0,45.0,0,Transient,84.07,0,0,Canceled,2018-12-03 -City Hotel,1,47,2016,February,9,30,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Transient,71.22,0,0,Canceled,2018-11-02 -City Hotel,1,17,2017,August,10,12,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Group,75.99,0,0,Canceled,2020-01-04 -City Hotel,0,54,2015,December,52,23,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,98.56,0,0,Check-Out,2018-08-03 -Resort Hotel,0,39,2016,September,36,31,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,C,D,1,No Deposit,244.0,179.0,0,Transient,182.72,0,1,Check-Out,2019-01-03 -City Hotel,0,40,2016,September,34,6,1,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,171.15,0,1,Check-Out,2019-03-04 -Resort Hotel,1,0,2016,January,9,28,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,36.41,0,0,No-Show,2019-04-03 -Resort Hotel,0,1,2017,June,25,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -City Hotel,1,0,2017,February,8,15,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,17.0,268.0,0,Transient,41.86,0,0,Canceled,2020-01-04 -City Hotel,0,95,2015,September,33,20,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,99.43,0,0,Check-Out,2018-06-02 -City Hotel,0,258,2017,June,27,29,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,12.0,179.0,0,Transient,120.96,0,1,Check-Out,2020-04-02 -Resort Hotel,0,13,2017,June,28,26,4,10,3,0.0,0,HB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,208.0,179.0,0,Transient,119.49,0,0,Check-Out,2019-06-03 -Resort Hotel,1,146,2017,June,16,16,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,98.95,0,1,Canceled,2020-03-03 -City Hotel,0,93,2016,April,16,21,1,3,2,2.0,0,BB,CHE,Online TA,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,217.59,0,1,Check-Out,2019-03-04 -Resort Hotel,0,151,2017,March,10,31,0,3,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,223.0,0,Transient-Party,117.79,0,0,Check-Out,2020-05-03 -City Hotel,0,15,2016,October,44,6,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,226.0,0,Transient-Party,93.03,0,0,Check-Out,2019-09-03 -City Hotel,0,32,2017,May,37,6,1,0,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,199.0,179.0,0,Transient,109.75,0,0,Check-Out,2019-12-04 -City Hotel,1,207,2017,March,11,20,0,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,6.0,179.0,0,Transient,165.33,0,0,Canceled,2020-02-01 -City Hotel,1,193,2016,June,26,12,2,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,63.34,0,0,Canceled,2019-03-04 -City Hotel,1,3,2017,February,12,9,0,1,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.85,0,0,Canceled,2020-03-03 -City Hotel,0,6,2016,May,21,14,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,89.95,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2017,March,11,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,62.3,1,0,Check-Out,2019-11-03 -City Hotel,0,43,2015,August,40,10,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,86.99,0,1,Check-Out,2019-06-03 -City Hotel,0,2,2017,June,24,16,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,155.8,0,0,Check-Out,2020-03-03 -City Hotel,1,59,2016,March,17,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,66.62,0,0,Canceled,2019-02-01 -City Hotel,0,10,2016,October,44,12,0,1,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,80.28,0,0,Check-Out,2019-09-03 -City Hotel,0,7,2016,August,36,28,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.34,0,2,Check-Out,2019-07-04 -City Hotel,0,151,2016,September,35,2,0,4,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,30.0,179.0,0,Transient-Party,91.31,0,0,Check-Out,2018-07-03 -City Hotel,0,43,2017,May,23,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,72.63,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2015,December,53,31,2,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,63.41,0,3,Check-Out,2018-11-02 -City Hotel,1,46,2017,April,16,16,2,5,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.42,0,2,Canceled,2020-02-01 -City Hotel,0,0,2015,August,38,6,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,3,No Deposit,13.0,179.0,0,Transient-Party,187.37,1,2,Check-Out,2019-06-03 -Resort Hotel,0,9,2016,March,11,31,0,3,2,0.0,0,BB,,Groups,Direct,0,0,0,A,D,1,Refundable,14.0,224.0,0,Transient,31.6,1,0,Check-Out,2019-03-04 -Resort Hotel,0,290,2015,September,43,13,4,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.41,0,0,Check-Out,2018-08-03 -City Hotel,1,120,2017,June,21,2,1,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,252.0,179.0,0,Transient,62.46,0,0,Canceled,2020-02-01 -Resort Hotel,0,161,2016,May,23,11,0,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,D,D,2,Refundable,15.0,223.0,0,Transient-Party,114.43,0,0,Check-Out,2019-06-03 -Resort Hotel,0,5,2015,October,44,31,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,97.85,0,0,Check-Out,2018-08-03 -City Hotel,0,94,2017,May,21,28,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.65,0,0,Check-Out,2020-04-02 -City Hotel,0,40,2015,October,45,4,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,91.49,0,0,Check-Out,2018-08-03 -Resort Hotel,0,170,2017,August,36,24,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,174.0,179.0,0,Transient,239.15,0,1,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,May,23,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,333.0,76.0,0,Transient,31.74,1,0,Check-Out,2019-04-03 -Resort Hotel,0,272,2016,August,35,18,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,214.13,1,1,Check-Out,2020-05-03 -City Hotel,1,37,2016,February,9,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.82,0,0,Canceled,2018-11-02 -City Hotel,1,35,2016,December,53,6,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,6.0,179.0,0,Transient,114.12,0,0,Canceled,2019-05-04 -City Hotel,0,50,2016,October,44,20,2,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,109.44,0,0,Check-Out,2019-07-04 -Resort Hotel,0,255,2016,March,18,23,1,3,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,15.0,223.0,0,Transient-Party,69.16,0,0,Check-Out,2019-03-04 -City Hotel,1,2,2017,June,10,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,A,0,Non Refund,11.0,179.0,0,Transient,94.74,0,0,Canceled,2020-03-03 -Resort Hotel,1,247,2015,October,47,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,1,0,A,A,0,No Deposit,1.0,239.0,0,Transient-Party,27.21,0,0,Canceled,2018-09-02 -Resort Hotel,0,90,2016,February,10,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,237.0,179.0,0,Transient-Party,60.93,1,2,Check-Out,2018-12-03 -Resort Hotel,0,33,2017,July,25,20,0,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,87.15,1,3,Check-Out,2020-05-03 -City Hotel,0,45,2017,March,23,21,2,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,C,F,2,No Deposit,14.0,179.0,0,Transient-Party,102.04,0,0,Check-Out,2020-02-01 -Resort Hotel,0,88,2015,December,49,13,0,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,2,No Deposit,36.0,179.0,0,Transient-Party,59.6,0,0,Check-Out,2018-08-03 -City Hotel,0,152,2017,June,26,2,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.18,0,1,Check-Out,2020-06-02 -Resort Hotel,0,14,2016,May,26,6,1,4,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,3,No Deposit,247.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-03-04 -City Hotel,0,1,2015,October,43,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,No Deposit,3.0,179.0,0,Contract,61.39,0,1,Check-Out,2018-01-31 -City Hotel,0,11,2017,April,19,14,0,1,1,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,68.0,179.0,0,Transient-Party,70.38,0,0,Check-Out,2020-03-03 -City Hotel,0,200,2017,June,21,21,1,2,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,331.0,0,Contract,88.37,0,0,Check-Out,2020-03-03 -City Hotel,1,112,2015,December,52,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,23,Transient,60.18,0,0,Canceled,2018-08-03 -City Hotel,1,195,2016,October,39,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.18,0,0,Canceled,2018-11-02 -City Hotel,1,110,2017,July,24,5,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,142.84,0,2,Canceled,2019-12-04 -Resort Hotel,0,102,2016,July,21,23,2,5,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,0,Transient-Party,72.78,0,0,Check-Out,2019-03-04 -City Hotel,0,146,2017,April,16,5,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,26.0,179.0,0,Transient,90.9,0,3,Check-Out,2020-05-03 -Resort Hotel,0,86,2016,March,10,7,0,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,60.46,1,0,Check-Out,2018-12-03 -City Hotel,0,130,2016,December,50,24,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,120.84,0,1,Check-Out,2019-11-03 -City Hotel,0,198,2016,September,37,28,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,98.07,0,1,Canceled,2019-09-03 -City Hotel,0,38,2016,October,46,31,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,118.79,0,2,Check-Out,2019-09-03 -City Hotel,0,1,2016,September,37,28,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.66,0,0,Check-Out,2019-06-03 -Resort Hotel,1,117,2017,February,8,10,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,54.28,0,0,Canceled,2019-11-03 -Resort Hotel,0,253,2016,September,49,2,2,7,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,313.0,179.0,0,Transient-Party,39.18,0,0,Check-Out,2019-09-03 -City Hotel,0,17,2015,December,53,30,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient,66.44,0,0,Check-Out,2018-11-02 -City Hotel,0,262,2015,September,39,9,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,75,Contract,106.38,0,0,Check-Out,2018-07-03 -Resort Hotel,0,43,2015,August,37,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,137.83,0,0,Check-Out,2018-06-02 -City Hotel,0,110,2017,May,22,10,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.19,0,1,Check-Out,2020-05-03 -Resort Hotel,0,2,2017,August,35,4,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,26.0,179.0,0,Transient,90.44,0,0,Check-Out,2020-06-02 -City Hotel,1,248,2016,September,20,6,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,91.11,0,2,Check-Out,2019-03-04 -Resort Hotel,0,195,2016,May,23,26,1,1,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,C,0,No Deposit,294.0,179.0,0,Transient-Party,69.5,0,0,Check-Out,2019-06-03 -City Hotel,1,4,2016,December,51,16,0,1,1,0.0,0,BB,NLD,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,65.78,0,0,Check-Out,2019-11-03 -City Hotel,1,167,2016,June,26,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,119.49,0,0,Canceled,2019-02-01 -City Hotel,0,56,2015,July,31,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.01,0,0,Check-Out,2018-06-02 -Resort Hotel,0,147,2016,March,11,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,71.04,0,0,Check-Out,2019-02-01 -Resort Hotel,0,134,2015,August,33,20,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,67.22,0,0,Check-Out,2018-06-02 -City Hotel,0,104,2017,February,10,6,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.1,0,1,Check-Out,2020-03-03 -City Hotel,1,134,2016,June,26,13,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.47,0,1,Canceled,2019-08-04 -Resort Hotel,0,160,2016,March,10,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,221.0,0,Transient-Party,70.01,0,0,Check-Out,2019-03-04 -City Hotel,0,105,2016,October,44,13,2,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,61,Transient,37.73,0,0,Canceled,2019-01-03 -City Hotel,1,110,2016,June,27,20,2,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,9.0,179.0,0,Transient,93.88,0,0,Canceled,2019-01-03 -City Hotel,1,246,2015,September,43,18,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Contract,32.27,0,2,Canceled,2017-11-02 -City Hotel,1,17,2016,April,19,29,1,3,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,152.17,0,2,Canceled,2019-07-04 -Resort Hotel,0,0,2016,November,47,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,237.0,0,Transient,31.63,0,0,Check-Out,2019-07-04 -Resort Hotel,1,377,2015,July,37,18,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.87,0,0,Canceled,2018-06-02 -City Hotel,1,4,2017,May,36,30,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,167.41,0,1,Canceled,2020-03-03 -Resort Hotel,0,2,2017,July,35,17,4,4,1,1.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,175.04,0,0,Check-Out,2020-06-02 -City Hotel,0,36,2017,March,9,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,70.68,0,0,Check-Out,2020-02-01 -Resort Hotel,1,92,2016,January,8,15,2,0,3,1.0,0,BB,BRA,Online TA,Direct,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,0.2,0,0,Canceled,2019-02-01 -Resort Hotel,0,237,2016,June,20,5,4,10,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,91.89,0,3,Check-Out,2020-01-04 -City Hotel,1,259,2015,February,9,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.76,0,0,Canceled,2017-12-03 -City Hotel,1,215,2016,October,45,14,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,2,Non Refund,23.0,179.0,0,Transient,104.53,0,1,Canceled,2019-07-04 -Resort Hotel,0,39,2016,March,11,30,1,5,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient-Party,69.4,0,0,Check-Out,2019-02-01 -Resort Hotel,0,132,2017,June,28,31,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,166.71,1,1,Check-Out,2020-04-02 -City Hotel,0,112,2016,July,37,28,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,110.41,0,2,Check-Out,2019-03-04 -City Hotel,0,0,2016,March,15,15,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.32,0,2,Check-Out,2019-03-04 -Resort Hotel,0,56,2015,December,53,5,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,35.01,0,0,Check-Out,2018-11-02 -Resort Hotel,0,1,2015,November,44,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,45.92,1,0,Check-Out,2018-12-03 -City Hotel,1,29,2016,August,38,30,2,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,148.64,0,2,Canceled,2019-06-03 -City Hotel,0,40,2016,December,52,28,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,115.86,0,1,Check-Out,2019-10-04 -Resort Hotel,0,74,2016,June,25,28,2,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,C,C,0,No Deposit,13.0,179.0,0,Transient,190.2,1,0,Check-Out,2019-04-03 -Resort Hotel,0,15,2016,January,49,6,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,C,0,No Deposit,14.0,179.0,0,Transient-Party,101.96,0,0,Check-Out,2018-12-03 -Resort Hotel,0,138,2016,August,28,18,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,116.29,0,0,Check-Out,2019-07-04 -City Hotel,0,208,2016,September,45,24,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,122.36,1,0,Check-Out,2019-08-04 -City Hotel,1,144,2017,May,22,25,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,93.11,0,0,Canceled,2019-10-04 -City Hotel,0,5,2015,January,4,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,61.63,0,1,Check-Out,2018-10-03 -Resort Hotel,0,30,2017,February,8,10,2,0,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,165.0,331.0,0,Transient-Party,86.3,0,0,Check-Out,2020-02-01 -City Hotel,1,94,2017,February,49,21,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,94.99,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,April,18,24,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,325.0,179.0,0,Transient-Party,45.62,1,0,Check-Out,2019-03-04 -Resort Hotel,0,310,2017,May,21,1,0,3,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient-Party,70.14,0,0,Check-Out,2020-03-03 -City Hotel,1,9,2016,February,4,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,105.34,0,0,Canceled,2019-01-03 -City Hotel,1,164,2016,October,53,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,114.82,0,0,Canceled,2018-12-03 -Resort Hotel,0,282,2016,October,26,9,0,1,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,88.0,179.0,0,Transient,66.5,0,0,Check-Out,2019-01-03 -City Hotel,1,102,2017,June,35,10,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,F,0,Non Refund,8.0,179.0,0,Transient,93.03,0,2,Canceled,2020-04-02 -Resort Hotel,0,3,2016,November,49,30,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,64.43,1,3,Check-Out,2019-10-04 -City Hotel,1,199,2017,August,38,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.1,0,0,Canceled,2019-09-03 -City Hotel,1,353,2016,November,44,24,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,46.61,0,0,Canceled,2018-01-03 -City Hotel,0,156,2017,May,19,31,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Group,137.91,0,0,Check-Out,2020-04-02 -City Hotel,1,161,2016,March,26,21,2,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,100.46,0,0,Canceled,2019-02-01 -City Hotel,1,56,2016,February,11,24,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,64.97,0,0,Canceled,2018-09-02 -City Hotel,0,47,2017,July,32,9,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,131.12,0,1,Check-Out,2020-06-02 -Resort Hotel,1,0,2015,October,42,5,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,69.01,0,0,No-Show,2018-09-02 -City Hotel,1,3,2017,February,7,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,B,F,0,Non Refund,12.0,179.0,0,Transient,177.2,0,0,Canceled,2020-01-04 -City Hotel,0,269,2015,September,43,21,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.05,0,0,Check-Out,2018-08-03 -Resort Hotel,0,15,2017,May,17,23,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,45.41,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,January,9,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,F,0,No Deposit,108.0,179.0,0,Transient,89.36,0,0,Check-Out,2019-02-01 -Resort Hotel,0,265,2017,August,35,12,2,0,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,82.24,0,0,Check-Out,2020-06-02 -Resort Hotel,0,24,2017,April,17,28,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,243.0,179.0,0,Transient,131.48,1,1,Check-Out,2020-03-03 -Resort Hotel,1,45,2015,December,50,28,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,315.0,179.0,0,Transient,62.14,0,0,Canceled,2019-01-03 -Resort Hotel,0,23,2017,March,11,25,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,193.0,179.0,75,Contract,61.6,1,2,Check-Out,2020-01-04 -Resort Hotel,0,0,2015,July,32,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,250.0,179.0,0,Transient,45.88,0,0,Check-Out,2018-06-02 -City Hotel,0,34,2016,April,17,28,2,1,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,121.25,0,2,Check-Out,2019-02-01 -Resort Hotel,1,241,2017,August,35,16,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,113.99,0,0,Canceled,2020-06-02 -City Hotel,0,296,2016,November,42,8,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,54.87,0,0,Check-Out,2019-07-04 -City Hotel,1,164,2017,June,26,20,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,126.1,0,0,Canceled,2020-04-02 -Resort Hotel,0,2,2015,October,50,28,0,1,1,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,98.0,179.0,0,Group,70.22,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,February,8,14,0,2,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient,59.52,0,0,Check-Out,2020-03-03 -Resort Hotel,1,10,2016,June,28,22,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,119.83,0,0,Canceled,2019-01-03 -Resort Hotel,0,33,2016,November,43,24,2,5,2,0.0,0,HB,ESP,Online TA,Direct,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,199.62,0,2,Check-Out,2019-07-04 -City Hotel,0,2,2015,June,42,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,16.0,45.0,0,Transient,102.93,0,0,Check-Out,2018-06-02 -Resort Hotel,1,7,2017,February,8,9,2,5,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,A,0,Non Refund,11.0,179.0,0,Transient,76.22,0,0,Canceled,2019-12-04 -Resort Hotel,0,39,2016,October,43,16,3,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,75,Transient,78.09,0,1,Check-Out,2019-09-03 -Resort Hotel,0,14,2016,November,42,29,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,301.0,179.0,0,Transient-Party,63.28,0,0,Check-Out,2018-11-02 -City Hotel,0,112,2016,July,32,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,61.43,0,0,Check-Out,2019-06-03 -City Hotel,0,103,2015,August,37,28,0,1,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,93.63,0,0,Check-Out,2018-09-02 -City Hotel,1,36,2016,June,18,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,313.0,179.0,0,Transient,47.85,0,0,Canceled,2019-01-03 -City Hotel,1,17,2016,April,9,10,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,95.79,0,0,Canceled,2019-01-03 -Resort Hotel,1,0,2016,January,4,2,0,1,2,2.0,0,BB,PRT,Direct,Direct,1,0,0,L,D,0,No Deposit,15.0,179.0,0,Transient,61.13,0,0,Canceled,2018-11-02 -City Hotel,0,0,2015,July,25,10,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Group,0.21,0,0,Check-Out,2018-06-02 -City Hotel,0,20,2015,September,36,30,0,1,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,80.25,0,0,Check-Out,2018-09-02 -City Hotel,0,23,2016,October,43,21,1,2,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,116.85,0,0,Check-Out,2019-07-04 -City Hotel,1,219,2015,August,40,19,2,1,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,December,10,29,0,3,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,A,0,No Deposit,15.0,45.0,0,Transient,95.12,0,2,Check-Out,2018-12-03 -Resort Hotel,0,15,2015,December,50,18,2,7,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient-Party,42.69,0,0,Check-Out,2018-08-03 -City Hotel,1,259,2016,October,48,14,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,79.84,0,0,Canceled,2019-03-04 -City Hotel,0,44,2016,October,43,31,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,144.37,0,1,Check-Out,2019-08-04 -City Hotel,1,43,2017,April,16,6,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,95.64,0,1,Canceled,2020-03-03 -Resort Hotel,0,1,2017,March,23,10,2,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,69.16,0,0,Check-Out,2020-03-03 -Resort Hotel,1,15,2017,February,9,29,1,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,2019-10-04 -Resort Hotel,1,80,2017,February,6,15,1,1,1,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,17.0,179.0,0,Transient,130.93,0,0,Canceled,2020-01-04 -City Hotel,1,336,2016,October,43,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.49,0,0,Canceled,2017-10-03 -Resort Hotel,0,1,2017,May,19,10,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,125.64,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2015,October,43,18,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,209.53,1,2,Check-Out,2018-08-03 -City Hotel,0,23,2016,January,8,12,0,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,71.01,0,2,Check-Out,2018-12-03 -City Hotel,1,269,2016,October,43,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,81.4,0,0,Canceled,2017-12-03 -City Hotel,1,8,2017,July,32,4,0,1,2,1.0,0,BB,USA,Direct,Direct,0,0,0,F,E,2,No Deposit,14.0,179.0,0,Transient,203.39,0,0,Canceled,2019-06-03 -City Hotel,1,101,2017,March,8,6,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,108.03,0,0,Canceled,2020-01-04 -City Hotel,0,0,2016,November,10,3,1,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,200.82,0,0,Check-Out,2018-11-02 -City Hotel,0,55,2015,December,53,28,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,98.79,0,0,Check-Out,2018-10-03 -Resort Hotel,0,1,2017,February,11,25,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,71.42,0,0,Check-Out,2019-10-04 -City Hotel,1,0,2016,January,4,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,75.71,0,0,Canceled,2018-11-02 -City Hotel,1,147,2015,July,36,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,120.8,0,0,Canceled,2018-06-02 -City Hotel,1,191,2016,March,18,17,2,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,78.5,0,3,Canceled,2019-03-04 -Resort Hotel,0,102,2016,April,17,28,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,248.0,179.0,0,Transient,87.6,1,0,Check-Out,2019-01-03 -City Hotel,1,153,2016,June,27,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,124.38,0,2,Canceled,2019-02-01 -City Hotel,0,77,2015,September,34,17,0,3,1,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,74.43,0,0,Check-Out,2018-07-03 -City Hotel,0,40,2016,October,45,28,0,4,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,125.23,0,1,Check-Out,2019-11-03 -City Hotel,0,15,2016,July,44,21,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,13.0,179.0,0,Transient,131.96,0,0,Check-Out,2019-05-04 -City Hotel,1,18,2017,March,21,30,0,1,1,0.0,0,BB,PRT,Groups,Direct,1,0,0,A,A,0,Non Refund,35.0,179.0,19,Transient,102.63,0,0,Canceled,2019-10-04 -Resort Hotel,1,279,2017,July,31,21,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,246.0,179.0,0,Transient,115.28,0,1,Canceled,2020-05-03 -City Hotel,1,157,2017,March,11,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,61.78,0,0,Canceled,2019-10-04 -City Hotel,1,35,2016,July,45,5,1,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,193.61,0,1,Canceled,2019-04-03 -City Hotel,0,187,2017,April,21,9,1,5,2,0.0,0,SC,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-07-04 -Resort Hotel,1,151,2017,August,33,20,0,1,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,180.0,179.0,0,Transient,183.59,0,0,Canceled,2019-06-03 -Resort Hotel,1,91,2015,July,37,9,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.7,0,0,Canceled,2018-06-02 -City Hotel,1,42,2016,November,47,20,1,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,154.93,0,0,Canceled,2019-10-04 -City Hotel,1,294,2017,August,35,21,0,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,109.83,0,0,Canceled,2020-07-03 -Resort Hotel,1,33,2016,July,33,21,2,5,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,2018-06-02 -Resort Hotel,0,153,2017,January,3,13,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,87.93,0,1,Check-Out,2019-11-03 -City Hotel,0,19,2016,March,11,15,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,104.48,0,1,Check-Out,2019-03-04 -City Hotel,0,95,2017,May,23,16,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.23,0,2,Check-Out,2020-02-01 -Resort Hotel,1,158,2016,September,37,15,1,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,252.0,0,2,Canceled,2019-08-04 -City Hotel,0,2,2015,October,38,28,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.0,0,2,Canceled,2018-06-02 -City Hotel,0,248,2015,September,43,16,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.48,0,0,Check-Out,2018-08-03 -Resort Hotel,0,198,2017,June,27,27,2,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,92.09,0,2,Check-Out,2020-06-02 -Resort Hotel,0,243,2016,July,31,2,2,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,96.6,0,0,Check-Out,2018-05-03 -Resort Hotel,0,15,2016,May,22,23,3,1,2,0.0,0,BB,USA,Groups,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,124.47,1,1,Check-Out,2019-03-04 -City Hotel,0,20,2016,October,11,15,1,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,91.61,0,0,Check-Out,2019-06-03 -City Hotel,0,17,2017,May,21,28,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,169.99,1,0,Check-Out,2020-03-03 -City Hotel,1,44,2017,May,20,5,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,254.0,179.0,0,Transient,160.83,0,0,Canceled,2020-01-04 -Resort Hotel,0,15,2016,November,51,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,D,0,No Deposit,190.0,179.0,0,Transient-Party,68.21,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,December,42,2,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,46.96,0,0,Check-Out,2018-05-03 -City Hotel,0,403,2015,October,42,6,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,70.14,0,0,Check-Out,2018-08-03 -Resort Hotel,0,162,2017,April,19,20,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,13.0,179.0,0,Transient,121.47,0,3,Check-Out,2020-03-03 -City Hotel,1,307,2016,May,21,27,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,Non Refund,2.0,179.0,0,Transient,104.33,0,0,Canceled,2019-05-04 -City Hotel,1,411,2017,June,16,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,95.22,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,September,21,9,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,98.19,0,0,Check-Out,2019-05-04 -City Hotel,1,58,2015,September,41,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,42,Transient-Party,61.41,0,0,Canceled,2018-07-03 -City Hotel,0,388,2016,May,21,5,1,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,82.96,0,0,Check-Out,2019-03-04 -City Hotel,1,66,2016,March,10,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.54,0,0,Canceled,2018-11-02 -Resort Hotel,1,142,2017,July,34,30,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,125.76,0,1,Canceled,2020-04-02 -City Hotel,0,303,2016,September,43,24,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,146.58,0,0,Canceled,2019-02-01 -City Hotel,0,143,2016,September,38,20,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.77,0,2,Check-Out,2019-09-03 -Resort Hotel,0,260,2016,October,47,20,3,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,349.0,179.0,0,Transient-Party,28.68,0,0,Check-Out,2019-09-03 -Resort Hotel,1,311,2016,July,36,4,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,38.4,0,0,No-Show,2019-05-04 -City Hotel,1,255,2015,July,34,21,2,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.96,0,1,Canceled,2018-05-03 -City Hotel,0,60,2016,October,43,24,2,5,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.68,0,0,Check-Out,2019-11-03 -City Hotel,1,0,2016,October,47,15,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,170.37,0,0,No-Show,2019-07-04 -City Hotel,1,433,2016,September,45,23,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,98.88,0,0,Canceled,2018-11-02 -City Hotel,1,10,2016,December,45,6,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,174.9,0,0,Canceled,2019-11-03 -City Hotel,0,3,2017,March,16,25,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient-Party,80.55,0,0,Check-Out,2020-03-03 -Resort Hotel,0,3,2016,November,27,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,12.0,233.0,0,Transient,37.2,0,0,Check-Out,2019-07-04 -City Hotel,1,56,2017,June,27,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.0,0,0,Canceled,2020-03-03 -Resort Hotel,1,25,2017,May,21,29,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,158.51,0,0,Canceled,2020-02-01 -Resort Hotel,1,11,2017,July,27,30,2,7,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,211.42,0,1,Canceled,2019-11-03 -Resort Hotel,0,46,2015,August,36,27,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,2,No Deposit,18.0,179.0,0,Transient,180.41,1,0,Check-Out,2019-05-04 -City Hotel,1,44,2016,May,22,18,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.92,0,1,Canceled,2018-12-03 -Resort Hotel,0,0,2015,December,50,6,1,1,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,H,E,2,No Deposit,19.0,179.0,0,Transient,123.53,1,0,Check-Out,2019-10-04 -Resort Hotel,0,85,2016,June,29,28,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,152.0,179.0,0,Transient,122.67,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2016,September,42,13,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,0,No Deposit,14.0,45.0,0,Transient,1.87,0,0,Check-Out,2019-09-03 -City Hotel,0,15,2016,December,4,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,84.15,0,1,Canceled,2019-10-04 -City Hotel,1,212,2017,March,22,2,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,99.0,0,0,Canceled,2019-10-04 -City Hotel,1,60,2016,June,26,15,0,2,2,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,G,G,0,No Deposit,88.0,179.0,0,Transient,153.2,0,0,Canceled,2019-07-04 -City Hotel,0,161,2017,June,25,20,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,121.48,0,1,Check-Out,2020-06-02 -City Hotel,0,8,2017,March,9,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,13.0,213.0,0,Transient,33.58,0,0,Check-Out,2020-02-01 -Resort Hotel,0,199,2015,September,35,31,2,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,95.29,1,1,Check-Out,2018-06-02 -Resort Hotel,1,199,2016,June,35,1,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,257.0,179.0,0,Transient-Party,68.81,0,0,Canceled,2018-09-02 -City Hotel,0,94,2017,February,6,28,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.42,0,0,Check-Out,2020-04-02 -City Hotel,0,38,2017,December,22,2,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.26,0,3,Check-Out,2019-11-03 -Resort Hotel,1,145,2016,July,34,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,61.62,0,0,Canceled,2019-03-04 -City Hotel,0,101,2016,July,29,5,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.88,1,3,Check-Out,2019-04-03 -Resort Hotel,0,184,2017,May,22,11,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,150.64,1,0,Check-Out,2020-03-03 -City Hotel,0,266,2016,October,21,6,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,127.18,0,0,Check-Out,2019-08-04 -Resort Hotel,0,3,2016,November,49,27,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,61.82,0,0,Check-Out,2019-08-04 -Resort Hotel,1,58,2017,April,9,23,2,3,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,167.17,1,3,Canceled,2019-10-04 -Resort Hotel,0,103,2016,June,27,24,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,278.0,179.0,0,Transient,149.72,0,2,Check-Out,2019-07-04 -Resort Hotel,0,54,2016,October,44,3,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,332.0,179.0,0,Transient,191.72,0,0,Check-Out,2019-10-04 -City Hotel,0,51,2016,March,16,13,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,79.96,0,0,Check-Out,2019-03-04 -City Hotel,1,163,2016,April,15,30,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,101.82,0,0,Canceled,2019-01-03 -Resort Hotel,0,113,2017,July,22,31,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,103.62,0,2,Check-Out,2020-04-02 -Resort Hotel,0,0,2015,August,38,30,0,1,2,2.0,0,SC,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,193.37,1,0,Check-Out,2019-06-03 -Resort Hotel,1,103,2016,June,26,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,242.0,179.0,0,Transient,77.01,0,0,Canceled,2019-02-01 -City Hotel,1,36,2016,August,35,13,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,170.04,0,0,Canceled,2019-03-04 -Resort Hotel,0,114,2017,March,17,25,2,3,1,0.0,0,BB,GBR,Groups,Corporate,1,0,0,A,D,0,No Deposit,378.0,331.0,0,Transient,71.93,0,0,Check-Out,2020-04-02 -City Hotel,0,19,2016,September,46,29,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-07-04 -Resort Hotel,0,207,2017,March,4,9,1,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,61.67,1,1,Check-Out,2019-11-03 -City Hotel,1,358,2017,June,24,6,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,153.0,179.0,0,Transient,133.96,0,1,Canceled,2020-06-02 -City Hotel,0,2,2016,December,51,5,1,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,0,No Deposit,16.0,192.0,0,Transient,1.62,0,0,Check-Out,2019-11-03 -City Hotel,0,4,2016,December,50,5,2,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,D,0,No Deposit,197.0,179.0,0,Transient,79.56,0,0,Check-Out,2019-10-04 -City Hotel,1,3,2016,February,10,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,36.19,0,0,Canceled,2018-10-03 -City Hotel,1,404,2015,November,44,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,70.46,0,0,Canceled,2018-07-03 -City Hotel,0,262,2017,May,18,25,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Contract,72.15,0,2,Check-Out,2020-05-03 -City Hotel,0,249,2017,July,32,17,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.9,0,1,Check-Out,2020-06-02 -City Hotel,0,40,2016,April,17,28,1,2,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,74.44,0,0,Check-Out,2019-03-04 -City Hotel,0,245,2017,July,30,31,1,0,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,110.12,0,0,Check-Out,2020-06-02 -Resort Hotel,0,104,2017,June,24,16,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,331.0,179.0,0,Transient,144.58,1,1,Check-Out,2020-04-02 -City Hotel,0,18,2016,June,27,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,45.0,0,Transient,104.38,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2017,August,31,9,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,3.03,0,1,Check-Out,2020-05-03 -City Hotel,0,5,2017,June,28,18,0,3,1,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,101.14,0,0,Check-Out,2020-07-03 -City Hotel,0,11,2016,January,3,17,0,2,2,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.0,0,0,Check-Out,2018-11-02 -City Hotel,1,146,2016,December,50,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient,63.86,0,0,Canceled,2019-10-04 -City Hotel,0,260,2017,July,23,17,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,88.78,0,1,Check-Out,2020-07-03 -City Hotel,1,304,2015,July,33,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.77,0,0,Check-Out,2017-11-02 -Resort Hotel,0,0,2017,February,11,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.84,0,3,Check-Out,2020-04-02 -City Hotel,0,99,2016,July,35,24,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,101.47,0,1,Check-Out,2019-01-03 -City Hotel,0,3,2015,August,38,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,L,0,No Deposit,178.0,179.0,0,Transient,50.35,0,0,Check-Out,2018-05-03 -Resort Hotel,0,2,2017,March,8,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,1,No Deposit,17.0,179.0,0,Transient,200.41,1,1,Check-Out,2020-01-04 -City Hotel,1,50,2016,August,39,21,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,156.0,179.0,0,Transient,109.62,0,0,Canceled,2020-06-02 -City Hotel,0,114,2016,April,21,20,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,125.25,0,0,Check-Out,2019-03-04 -Resort Hotel,0,279,2017,May,23,13,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,147.64,0,2,Check-Out,2020-03-03 -City Hotel,1,169,2016,March,27,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,14,Transient,61.88,0,0,Canceled,2019-01-03 -City Hotel,0,146,2017,June,35,20,1,2,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,75.0,179.0,0,Transient,78.24,0,0,Check-Out,2020-02-01 -City Hotel,0,14,2017,February,9,5,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,6.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-03-03 -Resort Hotel,1,58,2017,April,19,18,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,59.82,0,0,Canceled,2018-12-03 -City Hotel,0,40,2017,October,43,20,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,121.02,0,3,Check-Out,2019-11-03 -City Hotel,0,17,2015,September,41,21,2,2,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,120.1,0,2,Check-Out,2018-08-03 -Resort Hotel,0,63,2017,July,31,19,0,1,1,1.0,0,HB,ESP,Direct,Direct,0,0,0,E,D,1,No Deposit,19.0,179.0,0,Transient,203.0,1,0,Check-Out,2020-06-02 -City Hotel,0,27,2015,August,34,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.8,0,1,Check-Out,2018-06-02 -Resort Hotel,1,173,2017,July,32,7,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,80.86,0,2,Canceled,2020-02-01 -City Hotel,1,309,2016,June,22,19,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,81.84,0,0,Canceled,2018-01-03 -Resort Hotel,1,84,2016,March,10,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient,70.81,0,0,Canceled,2019-03-04 -Resort Hotel,0,1,2015,August,32,16,1,2,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,D,0,No Deposit,13.0,179.0,0,Transient,0.0,1,1,Check-Out,2018-06-02 -City Hotel,0,106,2016,March,17,27,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,160.0,179.0,0,Transient,98.05,0,2,Canceled,2020-02-01 -City Hotel,0,1,2015,October,42,10,1,1,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,71.81,0,0,Canceled,2019-08-04 -City Hotel,0,19,2015,November,43,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,41.46,0,1,Check-Out,2019-01-03 -City Hotel,0,43,2017,May,28,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,90.19,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2017,March,10,21,0,1,2,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,A,0,No Deposit,15.0,331.0,0,Transient,76.07,0,0,Canceled,2019-11-03 -Resort Hotel,0,20,2015,October,43,9,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,35.28,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,March,17,19,0,1,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,7.0,179.0,0,Transient,141.12,0,1,Check-Out,2020-02-01 -Resort Hotel,0,106,2017,February,15,24,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,217.17,0,1,Check-Out,2019-12-04 -City Hotel,0,52,2016,March,12,15,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,71.53,0,1,Check-Out,2019-02-01 -City Hotel,1,205,2016,October,46,15,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient-Party,139.71,0,0,Canceled,2019-07-04 -Resort Hotel,0,0,2016,March,11,28,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,100.77,1,2,Check-Out,2018-11-02 -City Hotel,0,9,2017,June,26,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,75.58,0,1,Check-Out,2020-03-03 -City Hotel,1,237,2015,July,46,20,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,77.42,0,0,Canceled,2018-05-03 -City Hotel,1,0,2016,February,8,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,66.91,0,0,Canceled,2019-01-03 -City Hotel,0,12,2016,December,50,31,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,65.27,0,1,Check-Out,2018-12-03 -Resort Hotel,0,187,2015,August,33,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,74.01,0,1,Check-Out,2018-06-02 -Resort Hotel,1,143,2015,December,51,25,2,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,44.05,0,0,Canceled,2018-10-03 -Resort Hotel,1,18,2016,March,16,9,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,237.0,179.0,0,Transient,62.64,0,0,Canceled,2019-02-01 -City Hotel,0,79,2015,August,36,13,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient-Party,90.29,0,1,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,October,43,9,2,3,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,2,No Deposit,246.0,179.0,0,Transient,39.32,0,3,Check-Out,2018-08-03 -Resort Hotel,0,59,2015,August,35,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,121.79,0,1,Check-Out,2020-06-02 -City Hotel,1,444,2017,August,37,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,62.04,0,0,Canceled,2019-12-04 -City Hotel,0,158,2015,October,49,30,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,62.0,179.0,0,Transient-Party,83.1,0,0,Check-Out,2018-07-03 -Resort Hotel,0,3,2015,October,41,2,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,38.03,0,2,Check-Out,2018-08-03 -City Hotel,0,2,2016,February,11,10,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,63.67,0,0,Check-Out,2019-02-01 -City Hotel,0,145,2015,September,44,27,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,122.72,0,0,Check-Out,2018-05-03 -Resort Hotel,1,325,2017,February,25,19,2,2,1,0.0,0,HB,PRT,Corporate,TA/TO,1,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,90.0,0,0,Canceled,2019-12-04 -Resort Hotel,0,3,2016,November,49,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,1,No Deposit,244.0,179.0,0,Transient,3.29,1,2,Check-Out,2019-10-04 -Resort Hotel,0,42,2016,October,43,15,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.33,0,3,Check-Out,2018-09-02 -Resort Hotel,0,151,2016,March,19,31,2,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,3,Refundable,15.0,223.0,0,Transient-Party,63.29,0,0,Check-Out,2019-02-01 -Resort Hotel,1,405,2016,March,18,10,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,76.47,0,0,Canceled,2019-02-01 -City Hotel,1,143,2017,October,10,28,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,151.5,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,February,8,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,D,2,No Deposit,19.0,179.0,0,Transient,82.2,1,3,Check-Out,2020-02-01 -City Hotel,0,60,2015,December,53,20,1,2,1,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,121.87,1,0,Check-Out,2018-08-03 -City Hotel,1,51,2016,June,38,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,80.03,0,0,Canceled,2018-11-02 -City Hotel,0,375,2016,November,50,10,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,36.81,0,0,Check-Out,2019-08-04 -City Hotel,1,167,2017,June,26,5,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,161.94,0,1,No-Show,2020-06-02 -Resort Hotel,0,0,2016,May,20,17,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,103.84,0,0,Check-Out,2019-01-03 -Resort Hotel,0,44,2016,April,18,30,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient-Party,77.47,0,0,Check-Out,2019-04-03 -Resort Hotel,1,14,2017,February,10,29,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,62.05,0,1,Canceled,2019-11-03 -City Hotel,0,17,2016,February,10,26,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,16.0,179.0,0,Transient,122.1,0,0,Check-Out,2019-10-04 -City Hotel,1,321,2017,June,27,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,82.56,0,0,Canceled,2020-03-03 -Resort Hotel,0,15,2016,January,2,2,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,245.0,331.0,0,Transient,41.95,0,1,Check-Out,2019-10-04 -City Hotel,1,162,2016,August,38,30,0,4,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,9.0,179.0,0,Transient,252.0,1,0,Canceled,2019-08-04 -City Hotel,1,100,2017,July,35,9,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,176.49,0,2,Canceled,2020-07-03 -City Hotel,1,100,2016,October,44,18,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,42,Transient,84.46,0,0,Canceled,2018-08-03 -Resort Hotel,1,102,2016,December,50,24,1,5,2,0.0,0,FB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,93.0,179.0,0,Transient,80.61,0,0,Canceled,2018-12-03 -Resort Hotel,0,17,2017,February,10,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient,74.16,1,1,Check-Out,2020-04-02 -City Hotel,1,304,2015,September,37,20,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,90.98,0,0,Canceled,2018-08-03 -City Hotel,0,19,2017,August,37,28,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-06-03 -City Hotel,1,10,2017,March,8,9,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,70.58,0,0,Canceled,2020-04-02 -City Hotel,1,11,2016,July,26,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,155.41,0,0,Canceled,2019-01-03 -Resort Hotel,1,326,2017,April,16,26,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,88.26,0,2,Canceled,2020-02-01 -Resort Hotel,0,145,2016,September,27,20,1,3,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,129.8,0,0,Check-Out,2019-06-03 -Resort Hotel,0,211,2017,April,17,13,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,35.59,0,2,Check-Out,2020-04-02 -Resort Hotel,1,90,2017,July,35,31,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,166.39,0,0,Canceled,2019-12-04 -City Hotel,1,110,2015,October,44,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,62.0,0,Transient,86.67,0,0,Canceled,2018-09-02 -City Hotel,0,40,2017,May,26,5,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,112.94,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,October,44,9,1,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,I,1,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-10-04 -City Hotel,0,16,2017,August,37,18,3,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,179.0,1,3,Check-Out,2020-06-02 -Resort Hotel,0,35,2016,November,26,15,4,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,75.45,1,0,Check-Out,2019-06-03 -City Hotel,0,9,2017,May,21,16,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,74.9,1,1,Check-Out,2020-04-02 -Resort Hotel,0,209,2017,August,36,7,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,120.32,1,2,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,December,51,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,3,No Deposit,15.0,88.0,0,Transient-Party,38.63,1,0,Check-Out,2018-12-03 -Resort Hotel,1,20,2017,February,11,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,39.03,0,0,Canceled,2020-02-01 -Resort Hotel,0,16,2015,September,36,5,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Group,60.47,0,1,Check-Out,2018-06-02 -Resort Hotel,1,45,2017,June,31,21,2,3,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,242.0,179.0,0,Transient,225.6,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2015,August,34,24,0,4,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,1,No Deposit,251.0,179.0,0,Transient,173.97,0,3,Check-Out,2018-05-03 -City Hotel,1,373,2017,May,18,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,91.74,0,0,Canceled,2019-11-03 -City Hotel,0,349,2016,September,42,24,2,7,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.86,0,0,Check-Out,2019-10-04 -Resort Hotel,0,266,2017,July,28,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,143.69,1,1,Check-Out,2020-03-03 -City Hotel,1,272,2017,June,36,5,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,108.2,0,0,Canceled,2020-06-02 -Resort Hotel,0,288,2015,December,45,27,1,4,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,53.16,1,2,Check-Out,2019-09-03 -City Hotel,0,22,2017,June,27,21,1,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-04-02 -City Hotel,1,193,2017,August,37,24,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.61,0,0,Canceled,2020-06-02 -City Hotel,1,208,2015,August,37,20,2,1,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,117.26,0,0,Canceled,2018-05-03 -City Hotel,0,30,2016,July,37,31,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,132.9,0,1,Check-Out,2019-05-04 -Resort Hotel,0,8,2016,November,48,14,1,3,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,110.0,226.0,0,Transient,38.8,0,0,Check-Out,2019-07-04 -City Hotel,1,256,2016,July,25,23,2,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,156.99,0,0,Canceled,2018-10-03 -City Hotel,0,47,2017,June,27,9,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,G,1,No Deposit,7.0,179.0,0,Transient,103.58,0,0,Check-Out,2020-02-01 -City Hotel,0,90,2016,April,53,5,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,187.57,0,0,Check-Out,2019-10-04 -City Hotel,0,248,2015,October,45,10,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,1,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.01,0,0,Check-Out,2018-08-03 -Resort Hotel,1,421,2017,April,22,16,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,76.66,0,0,Canceled,2019-11-03 -City Hotel,1,32,2017,April,22,30,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,77.44,0,0,Canceled,2019-10-04 -City Hotel,0,24,2016,January,3,25,1,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,119.29,0,1,Check-Out,2018-11-02 -City Hotel,0,4,2016,October,18,22,1,3,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,C,0,No Deposit,48.0,331.0,0,Transient-Party,45.09,0,0,Check-Out,2019-07-04 -City Hotel,1,79,2015,July,27,6,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,239.0,179.0,0,Transient,150.74,0,2,Canceled,2018-06-02 -City Hotel,0,80,2015,July,31,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,95.43,0,0,Check-Out,2018-12-03 -Resort Hotel,0,17,2017,June,15,9,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,329.0,209.0,0,Transient-Party,133.71,0,0,Check-Out,2020-03-03 -City Hotel,1,93,2017,December,9,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,175.0,179.0,39,Transient-Party,78.59,0,0,Canceled,2019-11-03 -City Hotel,1,41,2017,August,32,15,0,4,3,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,125.01,0,0,Canceled,2020-03-03 -Resort Hotel,0,147,2016,November,53,25,0,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,70.88,0,0,Check-Out,2019-12-04 -City Hotel,0,19,2016,December,50,28,0,1,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,E,0,No Deposit,13.0,65.0,0,Transient,102.94,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2016,October,45,21,0,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,45.0,0,Transient,106.67,0,0,Check-Out,2019-06-03 -City Hotel,0,21,2016,October,44,4,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,121.64,0,0,Check-Out,2019-05-04 -Resort Hotel,1,63,2015,September,50,9,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,60.8,0,0,Canceled,2017-12-03 -City Hotel,1,98,2016,May,22,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,73.85,0,0,Canceled,2018-12-03 -Resort Hotel,0,276,2016,December,51,28,0,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,40.84,0,2,Check-Out,2019-09-03 -Resort Hotel,0,39,2017,May,21,30,0,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,101.09,0,0,Check-Out,2019-09-03 -City Hotel,0,87,2017,July,31,21,2,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,3,No Deposit,16.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-06-02 -City Hotel,0,160,2017,July,20,21,0,1,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,F,F,2,No Deposit,12.0,179.0,0,Transient,135.73,0,3,Check-Out,2020-03-03 -City Hotel,0,42,2017,March,11,17,2,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,94.29,0,0,Check-Out,2020-03-03 -City Hotel,1,154,2016,December,22,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,21,Transient,60.59,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,June,36,8,2,0,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,D,D,0,No Deposit,193.0,179.0,0,Transient,74.52,0,0,Check-Out,2019-08-04 -Resort Hotel,1,289,2017,July,27,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,G,A,0,No Deposit,313.0,179.0,0,Transient-Party,62.05,0,0,Canceled,2019-11-03 -Resort Hotel,0,13,2017,August,36,23,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,98.81,1,0,Check-Out,2020-07-03 -Resort Hotel,0,221,2015,September,42,5,2,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,58,Contract,32.31,0,0,Check-Out,2018-08-03 -City Hotel,0,7,2017,June,24,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,210.0,0,Transient-Party,64.37,0,0,Check-Out,2020-06-02 -City Hotel,0,34,2017,May,16,17,2,3,1,0.0,0,SC,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,73.0,0,Transient-Party,71.73,1,1,Check-Out,2020-03-03 -City Hotel,1,13,2017,June,19,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,103.14,0,1,Canceled,2019-11-03 -Resort Hotel,0,54,2015,December,38,30,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,152.4,1,1,Check-Out,2018-06-02 -City Hotel,1,3,2017,February,9,27,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,35.36,0,1,Canceled,2020-02-01 -Resort Hotel,0,41,2016,June,29,6,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,251.0,179.0,0,Transient,97.03,0,2,Check-Out,2020-04-02 -City Hotel,1,288,2016,March,17,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,108.19,0,1,Canceled,2019-01-03 -City Hotel,0,12,2016,April,20,9,0,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,1,No Deposit,14.0,168.0,0,Transient,81.74,0,0,Check-Out,2019-03-04 -City Hotel,0,13,2015,October,47,22,1,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,119.4,0,0,Check-Out,2018-08-03 -Resort Hotel,0,15,2016,September,27,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,115.8,0,0,Check-Out,2019-05-04 -City Hotel,1,28,2015,August,43,5,2,4,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,29.0,179.0,0,Contract,62.81,0,1,Canceled,2017-10-03 -City Hotel,1,158,2015,August,37,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient,60.1,0,0,Canceled,2018-05-03 -City Hotel,0,256,2017,July,29,24,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.91,0,2,Check-Out,2020-06-02 -City Hotel,1,150,2017,July,34,10,2,7,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.61,0,2,Canceled,2020-06-02 -City Hotel,1,148,2017,June,26,21,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.7,0,0,Canceled,2020-05-03 -City Hotel,1,342,2017,May,36,19,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.68,0,0,Canceled,2020-03-03 -Resort Hotel,1,302,2016,October,43,6,2,0,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,150.23,0,0,Canceled,2019-07-04 -City Hotel,0,49,2016,August,29,15,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,214.03,0,1,Check-Out,2018-05-03 -Resort Hotel,0,308,2016,September,34,30,0,5,2,0.0,0,HB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,285.0,179.0,0,Contract,41.71,0,1,Check-Out,2019-06-03 -City Hotel,0,185,2017,February,11,15,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.52,0,1,Check-Out,2020-03-03 -Resort Hotel,1,34,2015,December,53,27,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,39.37,0,0,Canceled,2018-11-02 -Resort Hotel,0,104,2016,March,12,29,1,1,2,0.0,0,BB,CHE,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,223.0,0,Transient-Party,29.16,0,0,Check-Out,2019-03-04 -Resort Hotel,1,102,2016,June,26,18,2,3,3,1.0,0,HB,SWE,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,206.11,0,0,Canceled,2019-02-01 -City Hotel,1,221,2015,October,43,8,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.59,0,0,Canceled,2018-05-03 -City Hotel,0,0,2016,January,44,12,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,271.0,179.0,0,Transient,68.34,0,0,Check-Out,2018-12-03 -Resort Hotel,0,326,2017,March,25,5,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,88.72,0,1,Check-Out,2020-06-02 -Resort Hotel,0,126,2017,June,24,21,3,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,362.0,179.0,0,Transient,161.77,1,0,Check-Out,2020-05-03 -Resort Hotel,0,109,2015,August,34,14,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,129.84,0,1,Check-Out,2018-09-02 -Resort Hotel,0,253,2016,July,33,27,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,2,No Deposit,137.0,179.0,0,Contract,126.59,0,0,Canceled,2018-06-02 -City Hotel,0,2,2015,October,44,10,2,5,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Contract,61.64,0,0,Check-Out,2017-12-03 -City Hotel,0,11,2016,March,18,31,0,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,245.69,0,0,Check-Out,2019-03-04 -Resort Hotel,1,40,2016,March,11,15,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,61.53,0,1,Canceled,2018-11-02 -Resort Hotel,0,94,2016,October,51,9,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,88.89,0,1,Check-Out,2019-08-04 -City Hotel,1,0,2016,August,39,15,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,199.19,0,2,No-Show,2019-06-03 -Resort Hotel,1,251,2016,June,26,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Transient,50.79,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2017,January,2,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,79.0,0,Transient,32.06,1,0,Check-Out,2019-10-04 -Resort Hotel,0,327,2016,August,35,10,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,333.0,179.0,0,Contract,45.49,0,0,Check-Out,2019-09-03 -City Hotel,1,83,2015,December,50,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,74.0,0,Transient,67.72,0,0,Canceled,2018-08-03 -City Hotel,1,164,2017,June,25,4,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,132.99,0,0,Canceled,2020-01-04 -City Hotel,0,94,2017,July,33,28,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.51,0,1,Check-Out,2020-05-03 -Resort Hotel,0,2,2016,January,3,16,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,1,A,D,0,No Deposit,15.0,331.0,0,Transient,42.75,0,0,Check-Out,2019-11-03 -Resort Hotel,0,52,2016,October,44,15,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,157.42,0,3,Check-Out,2019-10-04 -City Hotel,1,49,2016,November,49,1,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient-Party,76.93,0,0,Canceled,2018-12-03 -City Hotel,1,98,2017,April,9,16,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,73.43,0,0,Check-Out,2020-02-01 -City Hotel,0,3,2017,August,34,15,2,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,No-Show,2020-03-03 -Resort Hotel,0,1,2016,December,50,4,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,199.0,59.0,0,Transient,47.13,0,0,Check-Out,2019-08-04 -City Hotel,0,12,2017,March,8,31,1,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.41,0,0,Check-Out,2020-04-02 -City Hotel,0,14,2017,January,4,16,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.92,0,0,Check-Out,2020-03-03 -Resort Hotel,0,9,2015,December,53,31,2,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,47.64,0,1,Check-Out,2018-12-03 -Resort Hotel,0,1,2016,March,19,28,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,249.0,179.0,0,Transient,116.57,1,0,Check-Out,2019-02-01 -City Hotel,0,349,2017,September,36,14,1,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,116.97,0,1,Check-Out,2020-04-02 -Resort Hotel,1,121,2017,August,32,5,3,2,2,1.0,0,BB,,Direct,Direct,0,0,0,G,A,0,No Deposit,14.0,179.0,0,Transient,109.39,0,3,Canceled,2020-06-02 -Resort Hotel,0,34,2016,February,9,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,137.0,179.0,0,Transient,72.38,0,0,Check-Out,2019-02-01 -Resort Hotel,0,150,2016,March,17,28,0,2,2,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,97.35,0,0,Check-Out,2019-02-01 -Resort Hotel,0,191,2016,September,33,29,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,161.62,1,2,Check-Out,2019-07-04 -City Hotel,1,233,2016,June,28,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.0,0,0,Canceled,2019-02-01 -City Hotel,0,41,2017,May,35,13,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.91,1,0,Check-Out,2020-04-02 -City Hotel,1,424,2016,March,17,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,119.43,0,0,Canceled,2018-11-02 -Resort Hotel,0,52,2016,October,43,16,1,4,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,G,D,2,No Deposit,13.0,179.0,0,Transient,198.45,1,3,Check-Out,2019-08-04 -City Hotel,1,247,2016,March,9,24,2,5,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,179.0,20,Transient,73.42,0,0,Canceled,2018-12-03 -City Hotel,1,19,2015,August,34,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,178.0,179.0,0,Transient-Party,123.33,0,0,Canceled,2018-07-03 -City Hotel,0,51,2016,March,18,20,2,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,115.89,0,1,Check-Out,2019-03-04 -City Hotel,1,47,2017,April,18,24,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.53,0,0,Canceled,2020-01-04 -City Hotel,1,57,2015,July,36,22,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,61.81,0,0,Canceled,2018-05-03 -City Hotel,1,0,2017,June,27,10,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.36,0,0,Check-Out,2020-03-03 -City Hotel,1,252,2016,October,45,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,106.19,0,0,Canceled,2019-05-04 -City Hotel,1,296,2016,August,38,23,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.87,0,0,No-Show,2019-06-03 -City Hotel,1,213,2017,June,21,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,23.0,179.0,75,Transient,92.86,0,0,Canceled,2020-04-02 -City Hotel,1,103,2016,August,38,14,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,165.67,0,0,Canceled,2019-03-04 -City Hotel,0,18,2016,December,51,9,0,1,2,0.0,0,BB,FRA,Corporate,TA/TO,1,0,0,D,D,2,No Deposit,10.0,179.0,0,Group,60.39,0,0,Check-Out,2019-10-04 -City Hotel,0,93,2016,February,11,21,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,72.81,0,1,Check-Out,2019-02-01 -City Hotel,0,311,2015,September,41,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,103.95,0,0,Check-Out,2018-08-03 -City Hotel,1,393,2016,May,9,28,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.82,0,0,Canceled,2018-12-03 -City Hotel,0,102,2016,May,23,20,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,133.24,0,1,Check-Out,2019-01-03 -Resort Hotel,0,39,2017,March,10,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,D,0,No Deposit,12.0,331.0,0,Transient,43.36,0,0,Check-Out,2020-02-01 -City Hotel,0,11,2016,April,22,27,1,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,101.85,0,0,Check-Out,2019-03-04 -City Hotel,0,101,2016,September,42,18,0,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,155.58,0,1,Check-Out,2019-07-04 -City Hotel,0,190,2017,July,18,13,2,1,1,0.0,0,BB,SWE,Aviation,Corporate,0,0,0,D,D,1,No Deposit,15.0,183.0,0,Transient,223.72,0,1,Check-Out,2020-04-02 -Resort Hotel,1,151,2016,July,26,2,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,126.69,0,0,Canceled,2019-06-03 -City Hotel,0,46,2015,July,32,20,2,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,62.29,1,0,Check-Out,2018-06-02 -City Hotel,0,20,2015,September,43,20,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.41,0,0,Check-Out,2018-08-03 -Resort Hotel,0,24,2017,May,20,11,2,0,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2020-03-03 -City Hotel,1,237,2015,October,46,16,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.51,0,0,Canceled,2018-08-03 -Resort Hotel,1,104,2017,April,17,26,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,D,0,No Deposit,285.0,179.0,0,Transient,127.31,0,0,Canceled,2020-03-03 -City Hotel,0,255,2016,October,45,16,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,97.98,0,1,Check-Out,2019-09-03 -Resort Hotel,1,12,2016,February,9,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,62.51,0,0,Canceled,2018-11-02 -Resort Hotel,1,21,2015,December,53,28,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,63.61,0,0,Canceled,2018-11-02 -City Hotel,1,157,2017,June,25,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Contract,217.98,0,2,Canceled,2020-02-01 -City Hotel,1,1,2017,February,10,28,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.86,0,0,Canceled,2018-10-03 -City Hotel,1,151,2016,July,31,15,0,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,95.77,0,2,Canceled,2019-04-03 -Resort Hotel,0,100,2017,August,30,13,2,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,63.75,0,1,Check-Out,2020-03-03 -Resort Hotel,0,160,2017,January,3,15,1,2,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,49.04,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2015,August,36,30,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,C,0,No Deposit,18.0,179.0,0,Transient,41.74,0,0,Check-Out,2018-05-03 -City Hotel,1,55,2017,August,35,20,0,1,3,2.0,0,BB,,Direct,Direct,0,0,0,G,G,1,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Canceled,2019-10-04 -City Hotel,1,110,2016,June,20,27,0,1,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,87.61,0,0,Canceled,2019-02-01 -Resort Hotel,0,160,2017,January,2,5,4,6,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,50.24,0,0,Check-Out,2019-11-03 -City Hotel,1,87,2016,January,3,18,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,128.73,0,1,Canceled,2019-05-04 -City Hotel,1,16,2017,January,2,9,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,68.43,0,2,No-Show,2019-11-03 -Resort Hotel,1,160,2017,August,31,16,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,184.83,0,2,Canceled,2019-08-04 -Resort Hotel,0,84,2017,March,5,28,2,5,2,1.0,0,HB,ESP,Online TA,Direct,0,0,0,G,G,1,No Deposit,249.0,179.0,75,Transient,201.42,1,3,Check-Out,2019-12-04 -City Hotel,0,52,2016,March,17,16,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,123.19,0,2,Check-Out,2018-12-03 -Resort Hotel,0,0,2015,November,49,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,15.0,179.0,0,Transient,33.27,0,0,Check-Out,2018-08-03 -City Hotel,1,154,2017,July,26,10,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.95,0,1,Canceled,2020-03-03 -City Hotel,1,269,2016,June,21,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,61,Transient,59.3,0,0,Canceled,2018-12-03 -Resort Hotel,1,0,2016,July,33,5,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,117.07,0,0,Canceled,2019-01-03 -City Hotel,0,9,2016,May,22,23,1,1,1,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,11.0,179.0,0,Transient-Party,63.4,0,1,Canceled,2019-01-03 -Resort Hotel,0,282,2015,October,44,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,43.42,0,1,Check-Out,2018-08-03 -City Hotel,0,109,2015,February,9,6,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,100.98,0,0,Check-Out,2018-10-03 -City Hotel,1,36,2016,January,9,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,35.69,0,1,No-Show,2018-12-03 -City Hotel,1,40,2016,October,44,24,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,117.41,0,0,Canceled,2018-12-03 -Resort Hotel,0,386,2016,June,28,20,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,268.0,179.0,0,Transient-Party,77.92,0,0,Check-Out,2019-04-03 -City Hotel,0,102,2017,March,30,24,2,1,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Contract,82.28,0,1,Check-Out,2020-03-03 -City Hotel,1,26,2016,January,4,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,58.67,0,0,Canceled,2018-11-02 -City Hotel,1,47,2016,April,15,23,0,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,169.26,0,0,Canceled,2019-02-01 -City Hotel,0,53,2017,March,10,16,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,104.52,0,0,No-Show,2019-10-04 -Resort Hotel,0,234,2016,April,16,3,1,0,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,60.34,0,1,Check-Out,2019-02-01 -Resort Hotel,0,48,2017,December,4,30,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient-Party,48.68,0,1,Check-Out,2019-11-03 -Resort Hotel,0,1,2017,June,25,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,220.0,0,Transient,41.09,0,0,Check-Out,2019-09-03 -City Hotel,0,38,2016,February,9,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.61,0,2,Check-Out,2019-01-03 -Resort Hotel,1,0,2015,October,46,9,2,1,1,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,30.96,0,1,Canceled,2018-08-03 -City Hotel,1,160,2016,May,22,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,61.38,0,0,Canceled,2018-12-03 -City Hotel,0,16,2016,August,38,12,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,134.54,0,0,Check-Out,2020-06-02 -Resort Hotel,1,260,2016,December,51,21,2,4,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,A,0,Non Refund,87.0,179.0,0,Transient,73.33,0,0,Canceled,2019-11-03 -City Hotel,0,15,2015,October,44,15,1,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient-Party,61.1,0,0,Check-Out,2018-08-03 -City Hotel,1,93,2017,July,38,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,129.23,0,0,Canceled,2020-06-02 -Resort Hotel,0,11,2016,September,43,29,1,1,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,138.8,0,0,Check-Out,2019-08-04 -Resort Hotel,1,21,2017,May,10,29,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,0.0,0,0,Canceled,2020-03-03 -City Hotel,1,392,2015,October,44,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,70.9,0,0,Canceled,2018-08-03 -City Hotel,0,422,2015,August,32,11,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,165.9,0,0,Check-Out,2018-06-02 -City Hotel,0,206,2015,July,43,9,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,91.76,0,0,Check-Out,2018-06-02 -City Hotel,0,183,2016,September,30,5,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,131.36,0,2,Check-Out,2019-06-03 -Resort Hotel,0,19,2017,June,31,5,0,3,2,0.0,0,HB,FRA,Direct,TA/TO,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,117.05,0,0,Check-Out,2020-07-03 -Resort Hotel,0,1,2016,January,10,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,109.0,179.0,0,Transient,86.76,0,0,Check-Out,2018-11-02 -City Hotel,0,47,2016,June,22,7,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.06,0,2,Check-Out,2019-05-04 -Resort Hotel,0,145,2017,August,36,16,2,4,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,207.12,0,1,Check-Out,2020-07-03 -City Hotel,1,419,2016,June,26,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.73,0,0,Canceled,2017-12-03 -City Hotel,1,9,2017,February,9,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,158.0,179.0,0,Transient,61.83,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,August,34,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,73.06,0,0,Check-Out,2019-03-04 -Resort Hotel,0,34,2016,September,42,9,2,4,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,154.98,0,2,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,December,51,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,2,No Deposit,18.0,45.0,0,Transient,31.5,1,0,Check-Out,2018-12-03 -Resort Hotel,0,152,2016,March,18,31,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,1,No Deposit,12.0,223.0,0,Transient-Party,42.16,0,0,Check-Out,2019-04-03 -City Hotel,0,35,2015,July,33,7,1,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.07,0,1,Check-Out,2018-06-02 -City Hotel,1,0,2015,August,38,12,0,2,1,0.0,0,BB,PRT,Undefined,Corporate,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,74.5,0,0,Canceled,2017-12-03 -City Hotel,1,185,2016,April,16,28,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,272.0,179.0,0,Transient,79.39,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2016,October,35,31,2,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,C,I,1,No Deposit,17.0,179.0,0,Transient,3.72,0,2,Check-Out,2019-04-03 -Resort Hotel,0,197,2017,August,32,14,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,46.21,0,0,Check-Out,2020-07-03 -City Hotel,0,2,2017,June,26,20,0,1,1,0.0,0,SC,,Corporate,GDS,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,4.99,0,0,Check-Out,2020-06-02 -Resort Hotel,0,19,2015,August,33,9,2,3,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,129.68,0,1,Check-Out,2020-06-02 -City Hotel,0,1,2016,December,49,8,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,2,No Deposit,15.0,250.0,0,Transient,1.83,0,0,Canceled,2019-11-03 -City Hotel,0,0,2017,July,24,23,2,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,103.77,1,0,Check-Out,2020-06-02 -Resort Hotel,0,102,2016,March,10,22,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,34.43,0,0,Check-Out,2019-03-04 -City Hotel,0,16,2016,May,17,11,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.38,0,1,Check-Out,2019-04-03 -City Hotel,1,243,2017,January,4,2,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.27,0,1,Canceled,2019-11-03 -Resort Hotel,0,3,2016,January,12,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,82.0,0,Transient,62.22,0,0,Check-Out,2018-11-02 -City Hotel,1,44,2016,October,44,31,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,72.97,0,0,Canceled,2019-09-03 -City Hotel,0,12,2016,May,27,13,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.86,0,0,Check-Out,2019-12-04 -City Hotel,1,367,2016,April,19,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,17,Transient,86.74,0,0,Canceled,2019-01-03 -Resort Hotel,0,137,2015,September,41,2,3,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,137.0,179.0,0,Contract,43.48,0,0,Check-Out,2018-05-03 -City Hotel,1,255,2017,June,27,5,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.2,0,0,Canceled,2019-06-03 -City Hotel,1,256,2016,October,43,31,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,162.88,0,1,Canceled,2019-07-04 -City Hotel,1,10,2015,September,52,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,81.83,0,0,Canceled,2018-08-03 -City Hotel,0,13,2016,May,21,18,1,1,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,75.93,0,0,Check-Out,2019-02-01 -City Hotel,1,38,2016,April,17,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,36.85,0,0,Canceled,2019-02-01 -City Hotel,1,104,2015,July,34,28,2,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,167.35,0,1,Canceled,2018-06-02 -City Hotel,1,42,2017,February,12,28,1,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,105.77,0,1,Canceled,2019-10-04 -City Hotel,1,8,2016,September,46,10,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,205.65,0,0,No-Show,2018-09-02 -City Hotel,0,43,2017,February,12,22,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.48,0,2,Check-Out,2020-02-01 -City Hotel,0,6,2016,May,16,28,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,118.89,0,1,Check-Out,2019-02-01 -Resort Hotel,1,209,2017,February,8,15,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,331.0,0,Transient,61.74,0,0,Canceled,2020-03-03 -Resort Hotel,0,129,2016,August,37,28,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,67.22,0,1,Check-Out,2019-07-04 -Resort Hotel,0,17,2015,December,50,6,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,122.25,0,1,Check-Out,2019-10-04 -Resort Hotel,0,43,2016,August,34,25,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,163.22,0,2,Check-Out,2019-04-03 -City Hotel,1,392,2017,April,22,10,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.49,0,0,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,August,27,3,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,90.85,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2016,May,22,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,138.21,0,0,Check-Out,2019-03-04 -City Hotel,1,260,2016,October,45,28,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,72.18,0,2,Canceled,2019-07-04 -City Hotel,0,8,2017,January,4,13,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,89.68,0,3,Check-Out,2019-10-04 -City Hotel,1,11,2016,July,4,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,61.0,179.0,0,Transient,124.14,0,1,No-Show,2019-06-03 -City Hotel,0,144,2015,December,50,13,2,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,94.29,1,0,Check-Out,2018-08-03 -City Hotel,1,104,2015,September,45,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,70.67,0,0,Canceled,2018-06-02 -City Hotel,1,53,2015,November,34,23,2,0,2,0.0,0,BB,PRT,Complementary,Corporate,0,1,0,A,A,0,No Deposit,12.0,256.0,0,Transient-Party,93.49,0,0,Canceled,2018-07-03 -City Hotel,0,18,2016,May,21,27,2,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,87.21,0,2,Check-Out,2019-06-03 -Resort Hotel,0,10,2016,November,51,20,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,1,E,E,2,No Deposit,16.0,58.0,0,Transient,35.46,1,0,Check-Out,2019-12-04 -City Hotel,1,404,2016,October,28,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,21,Transient,60.39,0,0,Canceled,2018-09-02 -City Hotel,1,87,2017,May,17,15,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.88,0,0,Canceled,2019-11-03 -Resort Hotel,1,106,2017,May,15,12,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,251.98,0,2,Canceled,2020-03-03 -City Hotel,0,4,2016,September,37,25,1,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.77,1,0,Check-Out,2019-08-04 -Resort Hotel,0,208,2017,August,37,30,2,1,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,98.68,0,1,Check-Out,2020-07-03 -City Hotel,0,51,2016,March,17,31,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,55.03,0,0,Check-Out,2019-02-01 -Resort Hotel,0,67,2015,July,35,16,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,62.92,1,2,Check-Out,2018-07-03 -City Hotel,0,88,2017,June,25,13,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.99,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,February,11,21,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient-Party,98.67,0,0,Check-Out,2019-10-04 -Resort Hotel,0,145,2017,July,32,16,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,126.69,0,2,Check-Out,2020-06-02 -Resort Hotel,1,18,2016,August,35,8,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,114.73,0,1,No-Show,2019-09-03 -City Hotel,1,29,2015,October,43,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,66.1,0,0,Canceled,2018-06-02 -Resort Hotel,1,170,2017,June,28,10,3,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,23.31,0,0,No-Show,2020-03-03 -Resort Hotel,0,140,2016,June,25,24,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,128.0,179.0,0,Transient-Party,100.05,0,0,Check-Out,2019-02-01 -City Hotel,0,91,2017,May,21,5,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,115.35,0,1,Check-Out,2020-03-03 -City Hotel,1,310,2017,May,21,28,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,80.37,0,0,Canceled,2020-02-01 -Resort Hotel,0,13,2016,October,42,19,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,74.64,1,0,Check-Out,2019-07-04 -City Hotel,0,8,2016,October,45,3,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,94.82,0,1,Check-Out,2019-09-03 -City Hotel,1,155,2016,December,51,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,80.25,0,0,Canceled,2019-10-04 -City Hotel,0,0,2017,February,10,24,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,97.88,0,0,Check-Out,2019-11-03 -Resort Hotel,0,110,2017,September,37,25,0,7,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,C,C,0,No Deposit,90.0,179.0,0,Transient,161.09,1,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,October,43,24,0,2,1,0.0,0,BB,GBR,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,75.65,0,0,Check-Out,2019-09-03 -City Hotel,1,252,2016,July,43,9,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.76,0,1,Canceled,2019-08-04 -Resort Hotel,0,84,2016,August,33,14,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,113.77,1,1,Check-Out,2019-02-01 -Resort Hotel,1,2,2015,October,44,20,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,60.0,0,0,Canceled,2018-06-02 -City Hotel,0,371,2017,May,22,4,1,0,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,76.99,0,0,Check-Out,2020-04-02 -Resort Hotel,0,69,2017,April,17,20,2,5,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,107.72,0,2,Check-Out,2020-03-03 -City Hotel,0,99,2017,February,9,13,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,67.75,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2017,March,9,15,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.65,0,3,Check-Out,2020-02-01 -Resort Hotel,0,161,2017,July,29,9,2,5,3,1.0,0,HB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,204.48,0,3,Canceled,2020-03-03 -City Hotel,0,84,2017,February,8,9,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,59.19,0,0,Check-Out,2019-10-04 -City Hotel,0,111,2017,June,25,20,0,2,1,0.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,93.3,0,1,Check-Out,2020-03-03 -City Hotel,1,109,2016,October,45,31,2,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.59,1,2,Check-Out,2019-10-04 -City Hotel,0,29,2017,April,21,10,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.35,0,2,Check-Out,2020-04-02 -City Hotel,1,191,2016,June,36,5,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.08,0,0,Canceled,2019-01-03 -City Hotel,1,246,2016,July,31,6,0,2,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,168.29,0,0,Canceled,2019-05-04 -Resort Hotel,0,1,2017,October,41,17,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,3,No Deposit,323.0,179.0,0,Transient,101.01,0,0,Check-Out,2019-11-03 -City Hotel,1,29,2017,May,21,16,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,137.58,0,0,Canceled,2019-03-04 -Resort Hotel,0,36,2016,March,8,21,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient-Party,35.47,0,0,Check-Out,2018-11-02 -City Hotel,0,39,2016,May,21,6,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.93,0,1,Check-Out,2019-03-04 -Resort Hotel,0,44,2017,March,16,16,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,121.13,1,2,Check-Out,2020-02-01 -Resort Hotel,0,228,2016,July,25,18,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,81.19,0,2,Check-Out,2019-05-04 -Resort Hotel,0,16,2015,October,42,30,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,3,No Deposit,247.0,179.0,0,Transient,45.26,0,0,Check-Out,2018-06-02 -Resort Hotel,1,2,2016,March,9,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,240.0,0,Transient,40.04,0,0,Canceled,2019-02-01 -City Hotel,1,103,2017,July,32,26,0,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.39,0,0,Canceled,2020-03-03 -City Hotel,1,165,2017,August,37,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.52,0,0,Canceled,2020-07-03 -City Hotel,0,9,2016,September,37,28,0,1,1,0.0,0,BB,SWE,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,104.54,0,0,Check-Out,2019-06-03 -City Hotel,0,106,2017,July,27,15,4,7,2,2.0,0,BB,USA,Direct,Direct,0,0,0,G,F,0,No Deposit,18.0,179.0,0,Transient,126.66,1,0,Check-Out,2020-03-03 -City Hotel,0,13,2016,April,19,23,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,63.0,179.0,0,Transient,126.62,0,0,Check-Out,2019-02-01 -Resort Hotel,1,157,2017,October,42,20,2,5,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient,41.75,0,0,Canceled,2019-11-03 -City Hotel,0,3,2016,August,37,18,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,B,0,No Deposit,11.0,179.0,0,Transient,127.51,0,1,Check-Out,2019-05-04 -City Hotel,0,39,2017,June,10,28,0,1,1,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.99,0,0,Check-Out,2020-05-03 -City Hotel,1,56,2016,May,22,16,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,125.22,0,1,Canceled,2019-02-01 -City Hotel,0,129,2016,August,37,17,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,64.0,179.0,0,Transient-Party,99.96,0,0,Check-Out,2019-07-04 -Resort Hotel,0,10,2017,February,12,13,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient-Party,27.47,0,1,Check-Out,2019-10-04 -City Hotel,0,51,2017,July,35,30,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.78,0,1,Check-Out,2020-06-02 -City Hotel,0,131,2017,May,20,24,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,69.59,0,3,Check-Out,2020-04-02 -City Hotel,0,12,2016,March,15,21,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,97.5,0,1,Check-Out,2018-11-02 -City Hotel,0,36,2016,April,16,4,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,90.93,0,0,Check-Out,2019-03-04 -City Hotel,1,261,2017,June,25,19,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,305.0,179.0,0,Transient,104.32,0,0,Canceled,2020-01-04 -Resort Hotel,0,10,2016,August,36,13,1,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient,172.22,1,3,Check-Out,2019-06-03 -City Hotel,1,24,2016,June,15,20,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,133.31,0,0,Canceled,2019-02-01 -City Hotel,0,41,2015,October,42,12,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,107.11,0,2,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,January,12,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,17.0,72.0,0,Transient,33.54,1,0,Check-Out,2019-11-03 -Resort Hotel,1,159,2016,September,42,10,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,95.88,0,0,Canceled,2019-07-04 -City Hotel,0,163,2017,July,33,24,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.19,0,2,Check-Out,2019-06-03 -Resort Hotel,0,16,2016,August,35,9,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-04-03 -City Hotel,1,444,2016,October,44,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,43,Transient,70.05,0,0,Canceled,2018-08-03 -City Hotel,0,87,2015,July,26,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,70.0,0,Transient-Party,70.6,0,0,Check-Out,2019-07-04 -City Hotel,1,104,2016,April,16,12,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,75,Transient,94.49,0,0,Canceled,2018-12-03 -Resort Hotel,0,242,2015,July,31,20,2,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,64.06,1,0,Check-Out,2018-06-02 -City Hotel,1,88,2017,May,22,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,115.27,0,0,Canceled,2019-02-01 -Resort Hotel,0,16,2017,March,12,31,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,378.0,224.0,0,Transient-Party,54.12,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,March,17,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,17.0,220.0,0,Transient,31.88,1,0,Check-Out,2019-04-03 -Resort Hotel,0,100,2017,August,35,15,2,5,2,1.0,0,BB,,Direct,Direct,0,0,0,H,E,0,No Deposit,14.0,179.0,0,Transient,130.12,1,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,May,36,15,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,92.6,0,0,Check-Out,2019-06-03 -Resort Hotel,1,251,2016,July,34,14,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient,87.66,0,0,Canceled,2019-04-03 -City Hotel,0,0,2016,August,36,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,153.45,0,0,Check-Out,2018-06-02 -City Hotel,0,115,2015,October,44,26,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.1,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,February,26,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,14.0,71.0,0,Transient,58.58,0,0,Check-Out,2019-02-01 -Resort Hotel,0,38,2015,September,45,6,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,231.0,179.0,0,Transient,42.17,0,0,Check-Out,2018-06-02 -Resort Hotel,0,243,2015,September,44,18,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,30.41,0,1,Check-Out,2018-09-02 -Resort Hotel,1,14,2016,September,37,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,62.09,0,0,Canceled,2019-10-04 -City Hotel,1,110,2017,August,33,6,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,161.87,0,2,Canceled,2020-07-03 -Resort Hotel,0,100,2015,December,53,31,2,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,99.09,0,0,Check-Out,2018-05-03 -City Hotel,1,289,2017,September,36,6,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,192.72,0,0,Canceled,2019-04-03 -Resort Hotel,0,68,2017,February,37,28,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,247.0,179.0,0,Transient,191.09,0,0,Check-Out,2020-05-03 -Resort Hotel,1,177,2017,August,37,15,2,4,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,250.86,1,3,Check-Out,2020-06-02 -City Hotel,1,212,2016,April,16,8,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,196.88,0,0,Canceled,2019-02-01 -Resort Hotel,0,199,2015,October,44,13,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,9.0,179.0,0,Group,103.3,0,2,Check-Out,2018-08-03 -City Hotel,1,383,2015,October,44,6,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,39.55,0,0,Canceled,2018-08-03 -Resort Hotel,1,37,2016,March,17,27,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.76,0,0,Canceled,2018-11-02 -Resort Hotel,1,106,2016,February,7,30,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,82.74,0,0,Check-Out,2018-11-02 -Resort Hotel,0,199,2015,December,53,18,1,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient-Party,78.96,0,1,Check-Out,2018-11-02 -City Hotel,0,97,2015,July,33,24,2,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient-Party,125.37,0,0,Check-Out,2018-06-02 -City Hotel,1,21,2017,February,9,19,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,178.0,179.0,0,Transient,80.83,0,0,No-Show,2020-03-03 -City Hotel,0,10,2015,July,35,2,2,1,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,125.75,0,0,Check-Out,2020-06-02 -City Hotel,0,22,2017,June,31,16,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.92,0,1,Check-Out,2020-04-02 -City Hotel,0,20,2017,February,7,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,71.51,0,0,Check-Out,2019-10-04 -City Hotel,0,3,2016,May,44,30,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,1,No Deposit,14.0,179.0,0,Transient,3.49,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,October,43,30,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,100.41,1,0,Check-Out,2018-09-02 -City Hotel,1,15,2016,June,22,27,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,9.0,179.0,0,Transient,114.69,0,0,No-Show,2019-03-04 -City Hotel,1,42,2016,April,17,15,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,74.13,0,0,Canceled,2019-02-01 -City Hotel,1,109,2016,April,16,20,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,94.25,0,0,Canceled,2019-02-01 -Resort Hotel,1,25,2016,December,52,16,2,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,178.32,0,0,Canceled,2019-09-03 -Resort Hotel,0,139,2016,August,37,25,4,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,324.0,179.0,0,Transient-Party,42.35,0,0,Check-Out,2019-06-03 -City Hotel,1,295,2015,September,44,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.0,0,0,Canceled,2017-11-02 -Resort Hotel,0,0,2017,January,4,14,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,240.0,179.0,0,Group,59.64,0,2,Check-Out,2019-11-03 -City Hotel,1,44,2017,May,23,6,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.95,0,0,Canceled,2020-03-03 -City Hotel,0,119,2016,December,53,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.92,0,1,Check-Out,2018-11-02 -City Hotel,0,184,2017,June,26,17,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,101.71,0,3,Check-Out,2019-05-04 -City Hotel,0,155,2016,June,25,6,4,6,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Transient,79.12,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,October,44,7,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,83.41,0,1,Check-Out,2019-08-04 -City Hotel,0,11,2016,October,43,6,0,5,2,0.0,0,HB,USA,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,93.05,0,0,Check-Out,2019-11-03 -City Hotel,0,45,2017,January,4,20,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,154.05,0,0,Check-Out,2019-11-03 -City Hotel,1,33,2016,April,17,25,2,2,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,76.25,0,0,Canceled,2018-11-02 -City Hotel,1,16,2016,December,50,18,0,1,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,B,A,0,Non Refund,178.0,179.0,0,Transient,88.99,0,0,Canceled,2018-12-03 -City Hotel,1,384,2017,June,28,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,159.49,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,September,42,6,1,1,2,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,198.0,179.0,0,Transient,116.51,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2015,August,36,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,19.0,179.0,0,Transient,36.93,1,0,Check-Out,2018-06-02 -City Hotel,1,37,2016,May,15,24,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient-Party,64.92,0,0,Check-Out,2019-03-04 -City Hotel,1,402,2016,October,43,13,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.14,0,0,Canceled,2019-08-04 -City Hotel,0,36,2016,May,9,6,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,31.0,179.0,43,Transient,67.63,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,December,51,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,31.56,1,1,Check-Out,2019-12-04 -City Hotel,1,227,2015,September,36,10,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.67,0,0,Canceled,2018-08-03 -Resort Hotel,1,3,2015,July,32,27,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,126.82,0,0,Canceled,2018-07-03 -City Hotel,0,0,2016,October,43,28,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.83,0,2,Check-Out,2018-09-02 -City Hotel,0,16,2017,February,49,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient,70.67,0,0,Check-Out,2019-10-04 -City Hotel,1,0,2015,June,26,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,108.04,0,0,No-Show,2018-11-02 -City Hotel,0,1,2017,January,11,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,E,E,0,No Deposit,15.0,45.0,0,Group,73.46,0,3,Check-Out,2019-10-04 -City Hotel,0,359,2015,September,36,5,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,60.12,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2015,October,45,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,8.0,179.0,0,Transient-Party,90.72,0,0,Check-Out,2018-09-02 -City Hotel,1,32,2016,March,17,9,2,3,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.64,0,0,Canceled,2019-03-04 -City Hotel,1,248,2016,June,9,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,A,0,Non Refund,11.0,179.0,40,Transient,66.29,0,0,Canceled,2018-12-03 -City Hotel,0,41,2015,September,43,20,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.29,0,1,Check-Out,2019-05-04 -City Hotel,1,9,2016,March,16,18,2,0,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient,25.62,0,1,Canceled,2019-03-04 -City Hotel,0,3,2015,December,51,21,0,1,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,103.35,0,0,Check-Out,2018-08-03 -Resort Hotel,0,45,2016,March,18,31,1,3,2,0.0,0,BB,SWE,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,13.0,223.0,0,Transient,59.76,1,1,Check-Out,2019-05-04 -Resort Hotel,0,149,2016,July,26,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Contract,123.4,0,2,Check-Out,2019-06-03 -Resort Hotel,0,198,2016,April,17,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,73.0,179.0,0,Transient,128.09,0,0,Check-Out,2019-03-04 -Resort Hotel,0,256,2016,June,23,9,0,7,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,156.12,0,0,Check-Out,2019-01-03 -City Hotel,1,42,2017,April,17,9,1,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,85.25,0,0,Canceled,2019-03-04 -City Hotel,1,155,2016,August,39,20,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,152.15,0,0,Canceled,2019-05-04 -City Hotel,0,0,2016,March,15,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,103.94,0,1,Check-Out,2019-02-01 -City Hotel,1,42,2016,July,38,29,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,137.01,0,2,Canceled,2019-06-03 -City Hotel,0,25,2016,April,17,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,61.32,0,2,Canceled,2019-02-01 -City Hotel,0,65,2015,August,29,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.54,0,0,Check-Out,2018-05-03 -City Hotel,0,100,2017,March,23,28,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Contract,116.85,0,1,Check-Out,2020-04-02 -City Hotel,0,22,2016,October,45,12,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,79.04,0,1,Check-Out,2018-09-02 -City Hotel,1,10,2016,January,3,10,0,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.47,0,0,No-Show,2018-10-03 -Resort Hotel,0,146,2017,March,12,31,2,5,2,0.0,0,BB,SWE,Groups,Corporate,0,0,0,E,D,0,No Deposit,283.0,223.0,75,Transient,39.94,0,0,Check-Out,2020-04-02 -City Hotel,1,99,2015,December,51,14,0,2,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,59.54,0,0,Canceled,2019-10-04 -City Hotel,0,244,2017,June,27,27,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,163.0,179.0,0,Transient,106.15,0,0,Check-Out,2020-04-02 -City Hotel,1,225,2015,September,38,6,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,86.3,0,0,Canceled,2017-12-03 -Resort Hotel,0,217,2017,July,25,17,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,114.56,0,0,Check-Out,2020-05-03 -City Hotel,0,2,2016,October,45,29,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,126.56,0,0,Check-Out,2019-08-04 -City Hotel,1,335,2015,September,44,31,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,23,Transient,69.79,0,0,Canceled,2018-07-03 -Resort Hotel,0,256,2016,September,42,24,4,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,89.0,179.0,0,Group,66.44,0,1,Check-Out,2019-08-04 -Resort Hotel,1,267,2016,August,37,30,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,99.57,1,1,Canceled,2019-05-04 -City Hotel,1,98,2016,August,32,15,0,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.63,0,0,Canceled,2018-12-03 -City Hotel,0,10,2017,June,23,9,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,145.3,0,2,Check-Out,2020-05-03 -City Hotel,1,15,2016,November,51,10,0,2,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,Non Refund,177.0,179.0,0,Transient,79.17,0,0,Canceled,2019-11-03 -Resort Hotel,1,28,2015,August,38,7,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,159.16,0,1,No-Show,2020-04-02 -City Hotel,0,159,2015,September,33,24,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,59.87,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2016,June,37,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,120.17,0,0,Check-Out,2019-04-03 -Resort Hotel,0,63,2017,March,18,24,2,4,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,44.38,1,3,Check-Out,2019-12-04 -City Hotel,0,61,2017,August,38,12,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,197.16,0,2,Check-Out,2020-07-03 -Resort Hotel,0,93,2015,December,53,31,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,61.17,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,August,37,30,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,C,C,1,No Deposit,14.0,179.0,0,Transient,2.06,0,0,Check-Out,2019-05-04 -City Hotel,1,18,2016,January,3,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.92,0,0,Canceled,2018-11-02 -City Hotel,1,13,2016,May,21,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,93.67,0,0,Canceled,2019-02-01 -City Hotel,1,109,2016,March,18,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,71.33,0,0,Canceled,2019-01-03 -Resort Hotel,1,301,2017,March,15,31,1,3,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,35.0,223.0,75,Transient,83.5,0,0,Canceled,2020-01-04 -Resort Hotel,1,267,2016,August,35,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Refundable,128.0,179.0,0,Transient-Party,82.04,0,0,Canceled,2020-06-02 -City Hotel,0,11,2015,November,17,20,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,62.38,0,2,Check-Out,2018-11-02 -Resort Hotel,1,0,2016,January,2,6,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,77.0,0,Transient,39.95,0,0,Canceled,2018-12-03 -City Hotel,1,22,2015,November,45,21,0,3,3,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,130.11,0,2,Check-Out,2018-08-03 -Resort Hotel,0,51,2015,December,46,24,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,38.05,0,2,Check-Out,2018-12-03 -Resort Hotel,1,260,2016,March,18,30,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,222.0,0,Transient-Party,119.88,0,0,Canceled,2019-02-01 -City Hotel,0,80,2016,June,25,20,2,2,2,0.0,0,BB,,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,60.0,0,Transient,70.63,0,0,Check-Out,2019-07-04 -City Hotel,1,40,2017,August,35,17,2,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.06,0,3,Canceled,2020-07-03 -Resort Hotel,0,1,2016,July,37,18,2,1,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,200.0,179.0,0,Transient,163.17,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2017,February,17,28,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,70.11,0,1,Check-Out,2020-01-04 -City Hotel,0,7,2015,September,33,29,0,2,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,241.0,179.0,0,Transient-Party,194.67,0,0,Check-Out,2018-05-03 -Resort Hotel,1,151,2015,December,51,27,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,3,Non Refund,378.0,179.0,0,Transient-Party,49.3,0,0,Canceled,2019-10-04 -City Hotel,0,107,2016,August,27,17,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.09,0,2,Check-Out,2019-06-03 -City Hotel,0,1,2015,October,44,21,0,2,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,132.16,0,2,Check-Out,2018-09-02 -City Hotel,0,40,2017,February,12,28,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.97,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2016,March,15,14,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,11.0,179.0,0,Transient,78.87,0,0,Check-Out,2019-01-03 -Resort Hotel,0,28,2016,January,10,5,1,1,2,0.0,0,FB,,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,97.97,0,0,Check-Out,2018-11-02 -Resort Hotel,1,58,2015,December,51,30,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient-Party,60.91,0,0,Canceled,2018-06-02 -City Hotel,1,79,2016,March,17,9,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,71.0,179.0,0,Transient,72.85,0,0,No-Show,2019-03-04 -Resort Hotel,0,164,2016,August,38,31,1,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,3,Refundable,14.0,222.0,0,Transient-Party,150.97,1,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,March,10,12,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,68.31,0,0,Check-Out,2020-03-03 -City Hotel,1,33,2016,December,53,24,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,105.7,0,1,Canceled,2019-10-04 -Resort Hotel,1,216,2017,August,39,21,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,165.0,179.0,0,Transient,126.26,0,0,Canceled,2020-06-02 -Resort Hotel,0,92,2015,July,30,5,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,187.0,179.0,0,Transient,130.15,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,June,17,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,175.0,331.0,0,Transient,58.69,1,2,Check-Out,2020-04-02 -Resort Hotel,0,193,2017,March,18,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,343.0,179.0,0,Transient-Party,45.9,0,0,Check-Out,2020-05-03 -City Hotel,1,57,2016,August,37,26,2,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,171.53,0,1,Canceled,2019-08-04 -Resort Hotel,0,278,2017,June,27,2,2,10,2,0.0,0,HB,PRT,Direct,Corporate,0,0,0,E,E,2,No Deposit,40.0,179.0,0,Transient-Party,116.88,0,0,Check-Out,2020-03-03 -Resort Hotel,0,105,2017,February,9,20,0,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient-Party,89.87,0,0,Check-Out,2020-06-02 -City Hotel,0,93,2017,July,30,30,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.22,0,1,Check-Out,2020-06-02 -City Hotel,0,272,2015,July,35,8,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,128.39,0,0,Check-Out,2018-05-03 -City Hotel,1,0,2017,April,35,12,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,179.0,0,Transient,2.99,0,0,Canceled,2020-04-02 -Resort Hotel,0,1,2016,June,25,21,2,10,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,103.0,179.0,0,Transient,84.25,0,0,Check-Out,2019-03-04 -City Hotel,0,31,2015,September,44,28,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.99,0,2,Check-Out,2018-08-03 -City Hotel,0,0,2016,November,50,27,0,1,1,0.0,0,BB,NLD,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,234.0,0,Transient,88.51,0,0,Check-Out,2019-08-04 -City Hotel,0,216,2016,September,43,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,121.62,0,2,Check-Out,2019-08-04 -Resort Hotel,0,41,2016,March,15,31,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,B,E,0,No Deposit,76.0,179.0,75,Transient-Party,78.36,0,0,Check-Out,2019-11-03 -Resort Hotel,0,13,2017,April,20,15,0,2,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,E,1,No Deposit,378.0,179.0,0,Transient,118.81,0,0,Check-Out,2020-03-03 -City Hotel,0,44,2017,May,21,8,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.79,0,1,Check-Out,2019-06-03 -City Hotel,1,25,2016,June,26,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,179.0,0,Transient,61.81,0,0,Canceled,2017-12-03 -City Hotel,0,236,2015,July,34,4,2,2,2,0.0,0,BB,,Undefined,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2018-07-03 -City Hotel,0,128,2016,June,25,29,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,159.63,0,1,Check-Out,2019-06-03 -City Hotel,0,93,2016,June,22,7,0,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,124.51,0,1,Check-Out,2019-03-04 -Resort Hotel,0,2,2015,July,32,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,E,0,No Deposit,13.0,179.0,0,Transient,117.99,0,0,Check-Out,2018-06-02 -City Hotel,1,260,2016,March,16,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.18,0,0,Canceled,2019-03-04 -City Hotel,0,58,2015,November,49,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,61.32,0,0,Check-Out,2018-08-03 -Resort Hotel,0,19,2015,October,42,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,March,9,13,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,157.0,86.0,0,Transient,57.18,0,1,Check-Out,2020-03-03 -Resort Hotel,1,100,2016,September,33,21,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,E,E,0,No Deposit,312.0,179.0,0,Transient,77.08,0,0,Canceled,2018-05-03 -City Hotel,1,18,2017,January,9,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,88.38,0,0,Canceled,2020-01-04 -City Hotel,1,149,2016,May,20,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,35.0,179.0,0,Transient,66.34,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,January,2,5,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,81.0,0,Transient,49.36,1,0,Check-Out,2019-10-04 -City Hotel,1,259,2017,May,22,16,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.97,0,0,Canceled,2020-01-04 -Resort Hotel,0,80,2017,March,17,26,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,70.28,0,1,Check-Out,2019-01-03 -Resort Hotel,0,51,2017,August,34,20,2,4,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,191.0,179.0,0,Transient,225.66,0,0,Check-Out,2020-06-02 -City Hotel,1,186,2017,June,25,2,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,80.59,0,0,Canceled,2019-11-03 -City Hotel,0,98,2016,February,4,13,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,11.0,179.0,0,Transient,104.69,0,3,Check-Out,2019-02-01 -City Hotel,0,11,2016,June,45,20,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,E,E,1,No Deposit,15.0,66.0,0,Transient,126.71,0,0,Check-Out,2019-07-04 -City Hotel,1,142,2016,January,4,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,39.26,0,1,Canceled,2019-09-03 -City Hotel,1,145,2016,June,26,21,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,1,0,E,E,0,Non Refund,10.0,179.0,0,Transient,97.92,0,0,Canceled,2019-01-03 -Resort Hotel,0,42,2016,December,51,27,2,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,68.94,0,0,Check-Out,2019-10-04 -City Hotel,0,18,2016,June,23,18,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.35,0,2,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,January,3,27,0,1,1,0.0,0,BB,GBR,Direct,Corporate,0,0,0,A,D,0,No Deposit,15.0,82.0,0,Transient,30.69,0,0,Check-Out,2019-10-04 -City Hotel,1,253,2016,June,20,10,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,60.73,0,0,Canceled,2019-02-01 -City Hotel,1,41,2017,June,26,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.1,0,1,Canceled,2020-03-03 -City Hotel,1,190,2017,March,17,21,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,6.0,179.0,0,Transient,159.39,0,0,Canceled,2019-11-03 -Resort Hotel,1,49,2015,October,44,27,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,318.0,179.0,0,Transient,146.29,0,0,Canceled,2018-06-02 -City Hotel,0,94,2017,June,28,8,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,94.93,0,0,Check-Out,2019-02-01 -City Hotel,0,29,2016,December,53,18,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient-Party,89.28,0,1,Check-Out,2019-12-04 -Resort Hotel,0,11,2015,July,34,24,3,2,1,0.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,189.0,179.0,0,Transient,175.71,0,0,Check-Out,2018-05-03 -City Hotel,1,241,2017,August,37,28,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.65,0,1,Canceled,2019-10-04 -City Hotel,1,102,2016,July,25,15,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,116.63,0,1,Canceled,2019-02-01 -City Hotel,0,7,2017,August,37,5,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.53,0,1,Check-Out,2020-06-02 -City Hotel,0,94,2015,July,11,24,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Group,62.62,0,2,Check-Out,2017-11-02 -City Hotel,0,229,2015,July,31,10,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.67,0,0,Check-Out,2017-10-03 -City Hotel,1,100,2016,March,11,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,64,Transient,69.26,0,0,Canceled,2018-11-02 -City Hotel,1,99,2016,September,36,9,1,10,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,140.0,179.0,40,Transient,96.07,0,0,Canceled,2019-05-04 -City Hotel,0,60,2016,March,10,31,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,90.04,0,1,Check-Out,2019-01-03 -Resort Hotel,0,183,2016,October,42,24,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,68.46,0,1,Check-Out,2019-10-04 -City Hotel,0,1,2016,August,37,26,0,1,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,141.81,0,0,Check-Out,2019-09-03 -City Hotel,1,395,2017,May,16,26,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,60,Transient,85.54,0,0,Canceled,2020-01-04 -City Hotel,1,298,2015,October,42,27,0,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.96,0,0,Canceled,2018-08-03 -Resort Hotel,0,170,2016,March,13,31,0,3,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,179.0,0,Transient-Party,35.78,1,0,Check-Out,2019-03-04 -Resort Hotel,1,17,2017,March,8,12,0,1,1,2.0,0,BB,PRT,Online TA,TA/TO,1,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,122.13,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,June,27,5,0,2,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,170.34,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2016,December,49,24,0,1,2,0.0,0,BB,FRA,Complementary,Direct,0,0,0,A,A,1,No Deposit,40.0,179.0,0,Transient-Party,78.17,0,0,Check-Out,2019-08-04 -City Hotel,1,1,2015,August,36,5,0,1,1,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,105.37,0,1,Canceled,2018-06-02 -Resort Hotel,1,44,2016,October,50,20,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,115.86,1,0,Canceled,2019-05-04 -City Hotel,0,12,2015,December,51,5,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,243.0,0,Transient-Party,89.72,0,0,Check-Out,2019-11-03 -Resort Hotel,0,9,2015,September,48,28,1,3,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,125.89,0,0,Check-Out,2018-08-03 -City Hotel,1,14,2016,December,48,17,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Canceled,2019-04-03 -City Hotel,0,1,2016,October,44,30,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.4,0,0,Check-Out,2019-11-03 -City Hotel,1,55,2015,August,36,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.02,0,0,Canceled,2018-05-03 -City Hotel,0,141,2016,April,18,9,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.57,0,0,Check-Out,2019-11-03 -City Hotel,0,42,2016,March,15,17,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,136.67,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2017,May,22,31,1,0,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,E,0,No Deposit,199.0,179.0,0,Transient,1.44,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,December,50,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient-Party,45.24,0,1,Check-Out,2018-11-02 -City Hotel,1,262,2016,July,36,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,E,0,Non Refund,131.0,179.0,0,Transient,130.38,0,0,Canceled,2017-11-02 -City Hotel,1,57,2017,April,15,11,2,5,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,100.64,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2017,May,17,20,1,0,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,0,No Deposit,16.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-04-02 -Resort Hotel,0,148,2017,July,31,28,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,75.1,0,1,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,November,43,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,15.0,246.0,0,Transient,64.44,1,0,Check-Out,2018-09-02 -Resort Hotel,0,59,2016,June,27,18,0,10,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,A,1,No Deposit,14.0,62.0,0,Transient,62.19,1,0,Check-Out,2019-09-03 -Resort Hotel,0,14,2017,March,9,6,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,F,0,No Deposit,6.0,179.0,0,Transient,115.12,0,2,Check-Out,2020-04-02 -Resort Hotel,0,13,2017,July,23,2,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient-Party,238.35,1,2,Check-Out,2020-04-02 -City Hotel,0,99,2017,June,15,12,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,86.0,179.0,0,Transient,100.92,0,3,Check-Out,2020-04-02 -City Hotel,1,204,2016,August,45,16,2,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.22,0,0,Canceled,2019-08-04 -City Hotel,0,1,2016,June,45,30,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,194.37,0,0,Check-Out,2019-07-04 -City Hotel,0,74,2017,July,32,7,0,2,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,159.72,0,3,Check-Out,2019-09-03 -Resort Hotel,0,41,2015,October,44,10,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,68.16,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,August,37,5,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.28,0,1,Check-Out,2019-12-04 -City Hotel,0,16,2016,April,17,9,0,1,1,0.0,0,BB,FRA,Corporate,GDS,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,211.17,0,0,Check-Out,2019-06-03 -Resort Hotel,1,48,2015,December,53,28,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.29,0,0,Canceled,2018-08-03 -City Hotel,1,160,2017,June,37,15,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,39,Transient,128.05,0,0,Canceled,2020-06-02 -Resort Hotel,1,297,2017,April,16,26,2,7,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Contract,41.17,0,0,Canceled,2020-01-04 -Resort Hotel,0,116,2016,October,45,24,2,4,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,D,G,0,No Deposit,245.0,179.0,0,Transient,124.67,1,1,Check-Out,2020-03-03 -Resort Hotel,0,9,2016,April,18,16,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,71.03,0,1,Check-Out,2019-01-03 -Resort Hotel,1,153,2017,April,15,24,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,20.0,179.0,0,Transient-Party,94.55,0,0,Canceled,2020-03-03 -City Hotel,0,105,2016,October,44,27,1,1,1,0.0,0,BB,ISR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,187.0,0,Transient-Party,91.59,0,0,Check-Out,2019-09-03 -City Hotel,1,12,2016,June,25,20,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,128.22,0,0,Canceled,2019-01-03 -City Hotel,0,17,2017,May,27,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,Non Refund,31.0,179.0,0,Transient,98.6,0,0,Canceled,2020-02-01 -Resort Hotel,0,99,2015,November,50,20,0,4,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,261.0,179.0,75,Transient-Party,69.4,0,0,Check-Out,2018-08-03 -City Hotel,1,248,2016,June,25,4,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,62,Transient,112.14,0,0,Canceled,2019-02-01 -Resort Hotel,0,155,2015,December,49,31,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,62,Transient-Party,67.75,0,0,Check-Out,2019-01-03 -Resort Hotel,0,13,2015,September,36,17,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,30.25,0,0,Check-Out,2018-06-02 -City Hotel,1,157,2016,September,15,18,2,4,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,73.8,0,0,Canceled,2019-01-03 -City Hotel,1,194,2016,April,16,16,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,1,No Deposit,73.0,179.0,0,Transient,131.3,0,0,Canceled,2019-01-03 -Resort Hotel,0,2,2016,July,28,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,103.46,1,2,Check-Out,2018-06-02 -City Hotel,0,16,2017,March,23,21,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,156.64,0,1,Check-Out,2020-05-03 -Resort Hotel,0,184,2016,May,28,9,0,5,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,295.0,179.0,0,Transient-Party,76.63,0,0,Check-Out,2019-04-03 -Resort Hotel,1,246,2015,September,43,30,0,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,37.06,0,1,Canceled,2017-11-02 -City Hotel,0,291,2017,May,22,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,120.19,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,February,11,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,19.0,331.0,0,Transient,43.03,0,0,Check-Out,2019-08-04 -City Hotel,1,52,2016,July,28,28,1,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,115.18,0,0,Canceled,2019-06-03 -City Hotel,0,39,2017,March,17,10,0,1,2,0.0,0,HB,BEL,Online TA,Corporate,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient-Party,163.26,0,3,Check-Out,2020-03-03 -City Hotel,0,36,2015,October,44,5,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,C,0,No Deposit,12.0,221.0,0,Transient-Party,63.41,0,0,Check-Out,2018-09-02 -City Hotel,0,103,2016,May,22,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,10.0,179.0,0,Transient,80.97,0,0,Check-Out,2019-03-04 -Resort Hotel,0,253,2016,September,41,17,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,68.76,0,0,Check-Out,2020-06-02 -Resort Hotel,0,4,2016,September,38,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,19.0,179.0,0,Transient,121.72,1,0,Check-Out,2019-08-04 -City Hotel,1,367,2016,August,35,9,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,63,Transient,73.4,0,0,Canceled,2018-08-03 -Resort Hotel,1,147,2016,September,43,31,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.82,0,0,Canceled,2019-08-04 -City Hotel,0,18,2017,May,20,5,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,136.92,0,1,Check-Out,2020-04-02 -City Hotel,0,109,2017,June,27,27,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,138.29,0,1,Check-Out,2020-06-02 -Resort Hotel,0,103,2016,July,27,31,2,5,2,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,156.9,0,0,Check-Out,2019-07-04 -Resort Hotel,0,12,2016,December,50,15,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,73.92,0,0,Check-Out,2019-12-04 -City Hotel,0,225,2017,June,27,10,2,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,154.32,0,2,Check-Out,2020-06-02 -Resort Hotel,0,254,2017,May,22,20,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,2,No Deposit,15.0,179.0,0,Transient,215.18,0,0,Check-Out,2020-02-01 -Resort Hotel,0,39,2016,January,3,23,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,D,E,0,No Deposit,244.0,179.0,0,Group,63.48,0,0,Check-Out,2018-10-03 -City Hotel,0,0,2015,October,45,9,1,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,30.0,248.0,0,Transient-Party,79.46,0,0,Check-Out,2018-09-02 -Resort Hotel,1,258,2015,October,44,16,2,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,251.0,179.0,0,Transient,48.09,0,0,Canceled,2017-12-03 -Resort Hotel,0,184,2015,November,53,31,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Contract,92.51,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,May,21,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,94.2,0,0,Check-Out,2020-04-02 -City Hotel,0,33,2016,November,44,15,2,5,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,164.0,0,Transient,93.9,0,0,Check-Out,2019-12-04 -City Hotel,0,49,2017,February,10,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,153.38,0,0,Check-Out,2020-03-03 -City Hotel,0,13,2017,June,28,28,1,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,107.0,235.0,0,Transient-Party,86.47,0,0,Check-Out,2019-06-03 -City Hotel,0,53,2016,October,44,24,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.18,0,2,Check-Out,2019-07-04 -Resort Hotel,0,17,2016,August,42,15,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,151.54,0,0,Check-Out,2019-07-04 -Resort Hotel,0,93,2015,December,53,22,0,3,2,0.0,0,Undefined,ESP,Complementary,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,96.02,0,2,Check-Out,2018-12-03 -City Hotel,1,1,2017,May,22,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,102.2,0,0,Canceled,2020-02-01 -City Hotel,1,18,2015,September,42,27,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,72.21,0,0,Canceled,2018-08-03 -City Hotel,1,36,2015,December,50,7,2,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,60.76,0,0,Canceled,2018-11-02 -Resort Hotel,1,47,2015,August,34,27,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Contract,58.12,0,2,Canceled,2018-06-02 -Resort Hotel,1,24,2017,July,33,13,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,147.42,0,2,Canceled,2020-03-03 -City Hotel,0,11,2016,March,53,20,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,144.18,0,0,Check-Out,2019-11-03 -Resort Hotel,0,40,2016,October,43,24,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,C,0,No Deposit,363.0,179.0,0,Transient,93.45,0,0,Check-Out,2019-08-04 -City Hotel,1,275,2015,October,45,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.25,0,0,Canceled,2017-11-02 -City Hotel,0,300,2017,June,29,12,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,154.5,0,1,Check-Out,2020-04-02 -City Hotel,1,236,2016,July,29,3,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.76,0,1,Canceled,2019-04-03 -City Hotel,1,37,2016,December,49,7,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,F,0,No Deposit,15.0,331.0,0,Transient,102.48,0,0,Canceled,2019-11-03 -City Hotel,1,38,2016,July,32,6,2,5,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,167.23,0,1,Canceled,2019-06-03 -Resort Hotel,1,3,2016,September,45,3,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,99.86,0,0,Canceled,2019-10-04 -Resort Hotel,0,8,2016,December,52,28,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,296.0,179.0,20,Transient,31.06,0,3,Check-Out,2019-08-04 -Resort Hotel,1,107,2015,August,36,18,2,5,2,0.0,0,FB,,Groups,Corporate,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,187.07,0,0,Canceled,2020-07-03 -Resort Hotel,0,143,2016,June,26,31,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,81.57,1,1,Check-Out,2019-06-03 -City Hotel,1,17,2017,May,15,21,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,150.77,0,0,Canceled,2020-04-02 -Resort Hotel,0,39,2016,December,53,29,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,159.29,1,0,Check-Out,2019-12-04 -Resort Hotel,1,276,2016,August,39,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,60.46,0,0,Canceled,2018-01-03 -City Hotel,1,16,2015,December,51,22,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,A,A,0,Non Refund,10.0,45.0,0,Transient,80.02,0,0,Canceled,2018-07-03 -Resort Hotel,0,97,2017,April,15,13,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,24.0,179.0,0,Transient-Party,71.07,0,0,Check-Out,2020-03-03 -Resort Hotel,1,173,2016,July,32,4,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,114.66,0,2,Canceled,2019-03-04 -City Hotel,0,43,2017,June,17,21,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,101.53,0,2,Check-Out,2020-04-02 -Resort Hotel,1,52,2016,October,50,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,38,Transient,59.21,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2016,November,23,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,222.0,0,Transient,34.66,1,0,Check-Out,2019-02-01 -Resort Hotel,0,8,2016,July,33,20,2,5,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,212.92,1,0,Check-Out,2018-05-03 -Resort Hotel,0,9,2017,May,25,21,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,148.46,1,0,Check-Out,2020-02-01 -City Hotel,0,22,2016,December,53,18,2,2,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.68,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2017,May,20,15,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.32,0,1,Check-Out,2020-04-02 -City Hotel,1,15,2017,August,33,5,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,217.87,0,0,Canceled,2020-06-02 -City Hotel,0,2,2016,March,16,24,1,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,71.15,0,0,Check-Out,2019-02-01 -City Hotel,0,100,2015,June,27,20,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,60.05,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,February,9,29,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,G,1,No Deposit,297.0,179.0,75,Transient-Party,80.77,1,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,October,44,25,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.27,0,3,Check-Out,2018-12-03 -City Hotel,1,53,2015,September,39,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.11,0,0,Canceled,2018-08-03 -Resort Hotel,0,186,2016,June,22,18,0,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient,66.14,0,0,Check-Out,2019-03-04 -City Hotel,0,159,2017,June,32,2,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,206.01,0,2,Check-Out,2020-06-02 -Resort Hotel,0,147,2017,June,21,27,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,9.0,179.0,0,Transient,91.45,0,0,Check-Out,2019-12-04 -Resort Hotel,0,17,2017,February,10,6,0,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,40.29,0,0,Check-Out,2019-12-04 -Resort Hotel,0,108,2017,April,19,29,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,99.75,1,0,Check-Out,2019-12-04 -Resort Hotel,0,150,2016,December,38,30,3,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,328.0,179.0,0,Transient,109.71,0,1,Check-Out,2019-09-03 -Resort Hotel,0,32,2016,May,16,30,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,C,I,1,No Deposit,9.0,179.0,0,Transient-Party,0.29,0,1,Check-Out,2019-02-01 -City Hotel,0,67,2015,December,53,5,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.93,0,0,Check-Out,2019-08-04 -Resort Hotel,0,2,2017,February,9,28,0,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,85.87,1,0,Check-Out,2020-02-01 -Resort Hotel,0,88,2016,March,45,6,0,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,183.04,1,0,Check-Out,2019-02-01 -Resort Hotel,1,91,2016,August,37,15,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,158.49,0,2,No-Show,2019-05-04 -City Hotel,0,17,2016,July,33,30,2,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,74.0,179.0,0,Transient,81.29,0,0,Check-Out,2019-05-04 -City Hotel,1,35,2016,February,9,9,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,120.01,0,0,Canceled,2019-05-04 -Resort Hotel,0,257,2016,October,37,17,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,147.78,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,February,12,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,15.0,179.0,0,Transient,36.42,0,0,Check-Out,2018-11-02 -Resort Hotel,0,43,2016,March,12,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,Non Refund,99.0,179.0,0,Transient,62.34,0,0,Check-Out,2018-11-02 -Resort Hotel,0,49,2016,December,36,19,0,1,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,62.51,1,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,August,38,10,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,79.54,1,1,Check-Out,2020-07-03 -City Hotel,0,42,2015,September,44,30,1,3,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,160.41,0,0,Check-Out,2018-05-03 -Resort Hotel,0,50,2015,October,43,20,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,86.14,0,0,Check-Out,2018-08-03 -Resort Hotel,0,106,2015,December,50,10,2,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient-Party,39.09,1,0,Check-Out,2018-11-02 -Resort Hotel,0,51,2015,November,53,24,0,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,36.06,0,0,Check-Out,2018-11-02 -Resort Hotel,0,8,2017,June,27,21,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,331.0,0,Transient,96.77,0,0,Check-Out,2020-05-03 -Resort Hotel,0,35,2016,March,18,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient-Party,61.12,1,0,Check-Out,2019-07-04 -Resort Hotel,0,102,2015,November,42,8,2,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Contract,35.65,0,0,Check-Out,2018-05-03 -City Hotel,0,2,2017,June,11,17,0,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,10.0,179.0,0,Transient,216.85,0,2,Check-Out,2020-03-03 -Resort Hotel,1,60,2016,September,35,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,84.0,179.0,0,Transient,63.34,0,0,Canceled,2017-12-03 -City Hotel,1,86,2016,April,16,9,0,1,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,73.1,0,1,Check-Out,2019-02-01 -City Hotel,0,61,2017,April,17,9,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,74.81,0,1,Check-Out,2019-03-04 -City Hotel,0,85,2017,April,26,10,2,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,71.77,0,0,Check-Out,2020-02-01 -City Hotel,0,27,2016,March,17,3,0,3,1,0.0,0,BB,POL,Online TA,GDS,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,2.48,0,0,Check-Out,2019-03-04 -City Hotel,1,244,2016,June,28,1,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,Non Refund,72.0,179.0,0,Transient,129.96,0,0,Canceled,2019-03-04 -City Hotel,0,19,2016,May,19,21,2,0,2,0.0,0,HB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,80.43,0,0,Check-Out,2020-01-04 -City Hotel,1,275,2017,August,12,20,2,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,96.37,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2016,February,11,27,0,2,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,I,1,No Deposit,15.0,255.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2017,April,17,13,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,192.0,0,Transient,44.06,1,0,Check-Out,2020-04-02 -City Hotel,1,56,2017,August,36,15,0,3,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,96.86,0,1,Canceled,2020-07-03 -Resort Hotel,1,288,2017,May,22,29,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,156.19,0,0,Canceled,2020-05-03 -City Hotel,1,163,2016,October,43,5,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient,94.89,0,0,Canceled,2019-08-04 -City Hotel,1,0,2016,April,17,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,66.2,0,0,Canceled,2019-03-04 -Resort Hotel,0,156,2017,July,33,24,3,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Contract,80.26,0,2,Check-Out,2020-06-02 -City Hotel,1,87,2016,December,53,26,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient,88.62,0,1,Canceled,2019-11-03 -City Hotel,0,2,2017,May,21,20,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,B,F,0,No Deposit,15.0,250.0,0,Transient,0.0,0,1,Check-Out,2020-02-01 -City Hotel,1,1,2016,October,45,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,L,0,No Deposit,10.0,179.0,0,Transient,129.0,0,0,No-Show,2019-04-03 -City Hotel,1,39,2017,July,10,27,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,66.8,0,0,Canceled,2019-12-04 -City Hotel,1,37,2016,August,33,28,0,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,107.29,0,0,Canceled,2019-05-04 -Resort Hotel,0,37,2016,January,9,16,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,48.33,1,0,Check-Out,2018-11-02 -City Hotel,1,45,2017,August,7,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,120.98,0,0,Canceled,2019-08-04 -City Hotel,1,54,2017,September,45,5,0,1,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,149.8,0,0,Canceled,2019-12-04 -City Hotel,0,277,2015,October,43,4,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,102.0,0,0,Canceled,2017-10-03 -City Hotel,0,159,2015,September,16,28,0,3,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Contract,59.61,1,1,Check-Out,2018-09-02 -Resort Hotel,0,98,2015,December,53,7,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.12,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2017,May,21,29,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,120.22,0,2,Check-Out,2020-02-01 -Resort Hotel,1,44,2017,June,31,18,2,1,2,2.0,0,BB,PRT,Complementary,Direct,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,244.43,0,0,Canceled,2019-12-04 -City Hotel,0,244,2015,October,44,6,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,189.18,0,2,Check-Out,2018-05-03 -City Hotel,0,14,2016,February,9,14,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.83,0,1,Check-Out,2018-10-03 -City Hotel,1,14,2016,May,21,29,0,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,78.63,0,0,Canceled,2019-07-04 -Resort Hotel,1,147,2017,February,9,17,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Non Refund,15.0,331.0,75,Transient,35.01,0,0,Canceled,2019-12-04 -City Hotel,0,1,2016,May,22,17,2,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,157.85,0,2,Check-Out,2020-06-02 -Resort Hotel,0,20,2016,August,31,5,2,5,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-02-01 -Resort Hotel,1,38,2016,March,8,24,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,83.09,0,0,Canceled,2019-01-03 -City Hotel,0,0,2015,September,42,21,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,D,F,0,No Deposit,17.0,45.0,0,Transient,0.0,1,0,Check-Out,2018-08-03 -Resort Hotel,0,8,2017,June,27,28,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,241.0,179.0,0,Group,123.82,0,1,Check-Out,2020-04-02 -City Hotel,0,2,2016,October,44,23,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,K,1,No Deposit,10.0,179.0,0,Transient,142.14,0,0,Check-Out,2019-06-03 -Resort Hotel,1,148,2017,March,15,24,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Non Refund,11.0,179.0,0,Transient,123.62,0,0,Canceled,2018-11-02 -City Hotel,0,58,2016,September,37,24,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,134.94,0,1,Check-Out,2019-06-03 -Resort Hotel,1,191,2017,August,19,26,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,95.82,0,0,Canceled,2019-08-04 -Resort Hotel,0,200,2016,September,43,28,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,70.58,0,2,Check-Out,2019-08-04 -City Hotel,0,102,2017,May,14,7,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,102.62,1,2,Check-Out,2020-02-01 -Resort Hotel,1,258,2017,May,24,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,265.0,179.0,0,Transient,113.9,0,0,Canceled,2020-03-03 -City Hotel,0,148,2016,October,45,27,2,10,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,27.0,179.0,0,Transient,79.18,0,0,Check-Out,2019-05-04 -Resort Hotel,0,11,2017,July,38,25,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,2,No Deposit,250.0,179.0,0,Transient,165.52,1,2,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,March,12,25,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,H,I,0,No Deposit,14.0,179.0,0,Transient,0.07,0,0,Check-Out,2019-10-04 -City Hotel,0,13,2016,October,47,27,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,82.44,1,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,December,50,17,0,3,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,F,0,No Deposit,15.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-10-04 -City Hotel,0,47,2017,August,23,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,216.91,0,1,Check-Out,2019-03-04 -City Hotel,0,99,2017,April,15,31,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,119.98,0,0,Check-Out,2020-04-02 -City Hotel,0,10,2016,April,21,21,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,F,1,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,1,99,2016,February,8,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.77,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,October,42,14,4,1,1,0.0,0,BB,CHE,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,89.0,179.0,0,Transient,84.85,0,0,Check-Out,2019-09-03 -City Hotel,0,145,2016,April,48,24,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,81.0,179.0,0,Transient,74.5,0,2,Check-Out,2019-02-01 -City Hotel,1,88,2016,June,9,10,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.11,0,0,Canceled,2019-02-01 -City Hotel,0,153,2017,June,27,13,0,3,1,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,122.98,0,0,Check-Out,2020-03-03 -City Hotel,0,12,2016,May,18,20,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,74.09,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,March,9,21,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient,25.68,0,0,Check-Out,2018-12-03 -City Hotel,0,19,2016,December,50,24,1,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,83.62,0,0,Check-Out,2019-12-04 -Resort Hotel,1,17,2017,May,28,27,0,10,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,60.59,0,0,Canceled,2019-11-03 -City Hotel,0,45,2016,August,32,20,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,147.35,0,1,Check-Out,2019-04-03 -City Hotel,1,41,2016,November,53,23,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Contract,75.54,0,0,Canceled,2019-02-01 -City Hotel,1,3,2017,May,22,25,0,1,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-12-04 -City Hotel,0,19,2015,October,45,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,195.0,45.0,0,Transient-Party,62.43,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,August,37,29,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-03-04 -City Hotel,0,309,2017,June,20,6,0,7,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,167.41,0,1,Check-Out,2020-06-02 -City Hotel,1,19,2015,July,36,18,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,123.73,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,October,45,14,1,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,72.74,0,0,Check-Out,2019-09-03 -Resort Hotel,0,54,2015,October,49,5,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient-Party,43.09,0,0,Check-Out,2018-08-03 -Resort Hotel,0,13,2017,March,10,25,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,163.48,0,0,Check-Out,2019-11-03 -City Hotel,1,160,2016,June,27,21,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,111.23,0,0,Canceled,2019-01-03 -City Hotel,0,105,2016,March,33,24,0,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,5.0,179.0,0,Transient,89.17,0,2,Check-Out,2019-03-04 -Resort Hotel,1,30,2017,February,11,27,0,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,36.0,179.0,0,Transient,60.64,0,0,Canceled,2019-11-03 -City Hotel,0,104,2017,August,32,30,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-06-02 -Resort Hotel,0,111,2015,December,50,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,11.0,179.0,0,Transient-Party,92.11,0,0,Check-Out,2019-01-03 -Resort Hotel,0,254,2016,October,44,6,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,70.23,0,3,Check-Out,2019-09-03 -City Hotel,1,93,2016,November,49,10,2,0,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,71.12,1,0,Canceled,2018-08-03 -Resort Hotel,1,39,2016,March,17,21,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,72.86,0,0,Canceled,2019-01-03 -Resort Hotel,1,93,2016,May,14,4,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,9.0,179.0,0,Transient,46.53,0,0,Canceled,2019-03-04 -Resort Hotel,0,1,2016,January,3,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,D,1,No Deposit,43.0,179.0,0,Transient,76.74,1,3,Check-Out,2019-10-04 -City Hotel,0,47,2016,September,37,15,0,2,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.66,0,3,Check-Out,2019-06-03 -City Hotel,1,10,2016,January,9,8,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,75.1,0,0,No-Show,2018-12-03 -City Hotel,1,12,2016,October,38,28,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,173.83,0,2,Canceled,2019-05-04 -City Hotel,1,58,2016,March,16,11,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,91.86,0,1,Canceled,2019-02-01 -Resort Hotel,1,11,2016,January,21,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,242.0,179.0,0,Transient,39.07,0,0,Canceled,2018-11-02 -Resort Hotel,0,82,2017,February,18,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,D,0,No Deposit,16.0,179.0,0,Group,35.38,0,2,Check-Out,2019-12-04 -City Hotel,0,27,2016,June,25,11,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient-Party,148.84,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2016,February,8,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,7.0,179.0,0,Transient,62.69,0,0,Canceled,2019-02-01 -City Hotel,0,41,2016,April,43,9,1,0,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Group,60.36,0,1,Check-Out,2019-12-04 -City Hotel,0,32,2017,August,28,24,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,219.28,0,1,Check-Out,2020-05-03 -City Hotel,0,58,2017,March,11,15,2,0,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,161.0,179.0,0,Transient-Party,105.46,0,0,Check-Out,2020-01-04 -City Hotel,0,110,2016,July,21,6,2,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,110.86,0,1,Check-Out,2019-02-01 -City Hotel,1,15,2016,December,50,16,1,1,1,0.0,0,HB,PRT,Complementary,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,62.54,0,0,Canceled,2019-08-04 -City Hotel,0,6,2016,March,21,18,0,2,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,1,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2016,October,43,21,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,B,1,No Deposit,9.0,179.0,0,Transient,0.41,0,1,Check-Out,2019-09-03 -Resort Hotel,0,41,2017,July,27,5,1,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,241.0,179.0,0,Contract,123.25,0,3,Check-Out,2020-06-02 -City Hotel,0,168,2016,May,27,5,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,120.45,0,0,Check-Out,2019-03-04 -Resort Hotel,0,57,2015,February,10,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Contract,61.81,0,1,Check-Out,2018-11-02 -Resort Hotel,0,99,2017,August,36,18,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,198.86,1,2,Check-Out,2020-07-03 -City Hotel,1,144,2015,July,34,25,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,99.51,0,0,Canceled,2018-06-02 -City Hotel,1,58,2017,March,18,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.9,0,1,Canceled,2019-11-03 -Resort Hotel,0,146,2017,February,10,27,1,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,41.39,0,0,Check-Out,2020-03-03 -Resort Hotel,0,12,2015,September,43,6,2,1,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,75.89,0,0,Check-Out,2018-09-02 -City Hotel,0,22,2017,June,9,14,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,192.12,0,2,Check-Out,2020-04-02 -City Hotel,1,151,2017,June,29,10,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,124.09,0,0,Canceled,2020-01-04 -City Hotel,0,102,2016,August,37,27,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,101.55,0,3,Check-Out,2019-03-04 -City Hotel,0,25,2017,July,39,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,A,0,No Deposit,25.0,179.0,0,Transient,129.85,0,0,Check-Out,2020-06-02 -Resort Hotel,1,3,2015,July,33,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,60.02,0,0,Canceled,2018-08-03 -City Hotel,0,240,2016,October,42,17,2,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,75.19,0,0,Check-Out,2019-08-04 -Resort Hotel,0,45,2015,December,53,31,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,89.11,0,2,Check-Out,2018-11-02 -City Hotel,0,308,2017,March,17,5,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,158.21,0,0,Check-Out,2019-12-04 -City Hotel,0,95,2015,December,51,21,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient-Party,36.41,0,0,Check-Out,2018-07-03 -City Hotel,0,112,2017,May,21,28,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,120.2,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2016,December,53,27,0,1,3,0.0,0,BB,PRT,Complementary,Direct,1,0,1,F,K,2,No Deposit,16.0,179.0,0,Transient,0.0,1,2,Check-Out,2019-11-03 -City Hotel,0,199,2016,October,45,27,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.41,0,1,Check-Out,2019-11-03 -City Hotel,0,119,2016,October,44,26,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,77.27,0,0,Check-Out,2019-07-04 -City Hotel,0,97,2016,March,16,9,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,87.41,0,1,Check-Out,2019-11-03 -City Hotel,0,140,2016,July,27,18,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,216.06,0,1,Check-Out,2019-06-03 -Resort Hotel,0,22,2017,February,9,28,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient-Party,61.72,0,0,Check-Out,2020-03-03 -City Hotel,0,42,2017,April,8,5,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,123.44,0,3,Check-Out,2020-01-04 -Resort Hotel,1,27,2016,December,53,29,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,89.21,0,3,Check-Out,2019-09-03 -City Hotel,1,189,2015,August,38,4,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,133.0,179.0,0,Transient,41.36,0,0,Canceled,2018-09-02 -City Hotel,0,13,2015,September,53,16,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,F,2,No Deposit,15.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-08-04 -Resort Hotel,0,258,2017,July,10,10,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.14,0,1,Check-Out,2019-03-04 -City Hotel,1,15,2016,July,36,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,215.0,0,Transient,114.5,0,0,Canceled,2019-06-03 -Resort Hotel,0,13,2015,July,33,19,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,218.12,0,2,Check-Out,2018-05-03 -Resort Hotel,1,50,2015,September,38,30,2,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Transient,26.23,0,0,Canceled,2018-05-03 -City Hotel,0,49,2016,October,45,30,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.45,0,0,Canceled,2019-08-04 -City Hotel,1,58,2015,October,46,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.9,0,0,Canceled,2018-09-02 -City Hotel,0,1,2015,October,46,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,28.57,0,0,Check-Out,2018-06-02 -City Hotel,0,37,2015,October,44,18,2,1,2,0.0,0,BB,,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,38.59,0,0,Check-Out,2018-08-03 -City Hotel,0,35,2017,May,22,13,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,1,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient-Party,74.21,0,1,Check-Out,2019-11-03 -City Hotel,0,105,2015,March,53,6,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,63.04,0,0,Check-Out,2018-12-03 -City Hotel,1,270,2016,October,41,22,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.06,1,0,Canceled,2019-07-04 -City Hotel,1,32,2016,October,51,27,0,1,1,0.0,0,BB,CHN,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,123.04,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,August,31,14,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient,142.62,0,2,Canceled,2019-04-03 -City Hotel,0,0,2016,September,37,13,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,A,1,No Deposit,13.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-03-04 -City Hotel,1,5,2016,December,49,21,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,84.02,0,2,No-Show,2019-08-04 -City Hotel,0,39,2016,October,39,19,2,5,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,96.05,0,3,Check-Out,2019-08-04 -City Hotel,0,39,2015,September,32,27,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,99.51,0,0,Check-Out,2018-08-03 -City Hotel,0,45,2017,March,10,25,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,47.04,0,0,Check-Out,2020-01-04 -City Hotel,0,19,2016,March,17,6,0,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,246.0,179.0,0,Transient,69.51,0,0,Check-Out,2019-04-03 -City Hotel,1,103,2015,August,36,18,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.32,0,0,Canceled,2018-07-03 -City Hotel,0,365,2017,June,27,18,2,10,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient-Party,147.01,0,0,Check-Out,2020-06-02 -City Hotel,1,355,2017,June,23,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,Non Refund,187.0,179.0,0,Transient,139.73,0,0,Canceled,2020-06-02 -Resort Hotel,0,3,2017,March,12,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,79.0,331.0,0,Transient-Party,72.25,0,0,Check-Out,2020-03-03 -City Hotel,1,2,2017,May,21,28,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.35,0,0,Canceled,2019-11-03 -Resort Hotel,0,242,2017,June,28,2,4,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,194.0,179.0,0,Transient,202.82,0,0,Check-Out,2020-04-02 -City Hotel,1,0,2016,February,12,16,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,D,D,0,No Deposit,13.0,56.0,0,Transient,61.76,0,1,Canceled,2018-12-03 -City Hotel,1,43,2017,July,27,18,2,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,135.07,0,0,Canceled,2020-04-02 -Resort Hotel,0,52,2015,November,49,24,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,41.88,0,0,Check-Out,2019-02-01 -Resort Hotel,0,49,2017,May,20,15,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,238.47,1,3,Check-Out,2020-03-03 -City Hotel,0,196,2015,September,36,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,207.0,0,Transient-Party,199.1,0,0,Check-Out,2019-05-04 -City Hotel,0,152,2017,June,26,3,1,2,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,6.0,179.0,0,Transient,93.77,0,3,Check-Out,2020-06-02 -City Hotel,0,0,2017,August,36,21,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,2,2016,May,22,24,1,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient-Party,64.14,0,0,Check-Out,2019-08-04 -City Hotel,1,228,2015,August,35,15,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.03,0,0,Canceled,2018-06-02 -Resort Hotel,0,161,2016,October,51,31,3,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,86.92,0,2,Check-Out,2019-12-04 -City Hotel,0,0,2016,May,21,26,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.54,0,0,Check-Out,2019-01-03 -City Hotel,0,1,2016,February,9,29,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.03,0,0,Check-Out,2019-03-04 -City Hotel,0,95,2016,April,18,9,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.21,0,2,Check-Out,2019-02-01 -City Hotel,0,55,2017,April,16,29,2,5,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient-Party,65.12,1,0,Check-Out,2020-03-03 -Resort Hotel,0,330,2016,March,10,31,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,60.55,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,December,53,5,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,78.78,0,1,Check-Out,2019-01-03 -City Hotel,0,21,2015,October,31,9,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,100.67,0,0,Check-Out,2018-05-03 -Resort Hotel,1,297,2016,September,43,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,Non Refund,242.0,179.0,0,Transient,109.59,0,0,Canceled,2019-07-04 -Resort Hotel,0,108,2016,April,15,15,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,76.46,0,0,Check-Out,2019-03-04 -Resort Hotel,0,18,2015,December,51,10,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient,46.03,0,0,Check-Out,2018-11-02 -City Hotel,0,21,2016,February,42,10,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.81,0,0,Check-Out,2019-01-03 -Resort Hotel,1,0,2017,March,9,14,1,0,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,81.11,0,0,Canceled,2020-01-04 -Resort Hotel,0,10,2017,February,9,5,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient-Party,63.23,1,0,Check-Out,2020-03-03 -City Hotel,1,251,2016,October,42,6,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.49,0,0,Canceled,2019-05-04 -Resort Hotel,0,13,2017,May,18,24,2,1,2,0.0,0,HB,AUT,Groups,Direct,1,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,77.53,0,0,Check-Out,2020-04-02 -City Hotel,0,8,2017,May,18,25,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,25.0,179.0,0,Transient-Party,61.9,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,July,26,21,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.89,0,3,Check-Out,2020-05-03 -Resort Hotel,0,40,2016,August,37,15,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,101.52,0,1,Check-Out,2019-06-03 -City Hotel,1,21,2016,October,45,13,0,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,81.25,0,0,Canceled,2019-09-03 -Resort Hotel,1,106,2017,August,28,27,2,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,187.11,0,2,Canceled,2020-03-03 -City Hotel,0,168,2017,May,19,27,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,144.03,0,2,Check-Out,2020-05-03 -City Hotel,0,94,2016,December,50,28,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,318.0,179.0,0,Transient-Party,71.6,0,2,Check-Out,2019-05-04 -City Hotel,1,47,2016,October,53,20,1,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,120.23,0,0,Canceled,2018-08-03 -Resort Hotel,0,12,2015,December,53,25,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,61.22,0,1,Check-Out,2018-12-03 -City Hotel,1,399,2015,October,43,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,59.76,0,0,Canceled,2017-12-03 -Resort Hotel,1,0,2016,February,14,24,1,1,2,0.0,0,BB,PRT,Groups,Direct,1,1,0,A,I,0,No Deposit,8.0,179.0,0,Transient-Party,82.15,0,0,Canceled,2019-03-04 -City Hotel,0,85,2017,May,26,24,0,1,2,0.0,0,BB,CHE,Online TA,Corporate,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.5,0,0,Check-Out,2020-02-01 -City Hotel,1,22,2017,March,17,18,0,2,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,118.24,0,0,Canceled,2020-02-01 -City Hotel,0,14,2016,November,49,24,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,64.92,0,0,Check-Out,2019-09-03 -City Hotel,1,251,2017,June,33,28,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.87,0,2,Canceled,2020-06-02 -Resort Hotel,0,150,2017,June,36,3,1,1,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,72.78,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2017,February,10,15,0,4,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,203.9,0,1,Check-Out,2020-02-01 -City Hotel,0,157,2017,August,10,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.77,0,3,Check-Out,2019-12-04 -City Hotel,1,185,2016,December,34,24,0,1,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,13.0,179.0,20,Transient-Party,62.36,0,0,Canceled,2019-11-03 -Resort Hotel,0,11,2016,March,12,16,1,5,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,12.0,224.0,0,Transient,35.31,0,0,Check-Out,2019-03-04 -Resort Hotel,1,100,2015,July,31,10,2,5,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,H,A,1,No Deposit,296.0,179.0,0,Transient-Party,101.76,0,0,Canceled,2018-05-03 -City Hotel,0,40,2016,July,34,20,2,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,L,2,No Deposit,11.0,179.0,0,Transient,225.67,0,2,Check-Out,2019-07-04 -City Hotel,0,118,2016,November,35,10,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,95.68,0,0,Check-Out,2019-06-03 -City Hotel,1,14,2016,October,43,7,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,149.85,0,0,Canceled,2019-11-03 -City Hotel,0,14,2017,May,27,28,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,168.0,0,Transient,86.96,0,0,Check-Out,2019-11-03 -Resort Hotel,0,44,2016,May,21,22,2,5,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,121.96,0,2,Canceled,2019-02-01 -Resort Hotel,1,282,2017,August,35,23,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,169.62,0,2,Canceled,2020-06-02 -Resort Hotel,0,9,2016,August,38,29,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,62.48,0,1,Check-Out,2019-06-03 -Resort Hotel,0,46,2017,March,20,25,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,No Deposit,18.0,224.0,0,Transient,51.36,0,0,Check-Out,2019-03-04 -Resort Hotel,1,43,2016,April,18,30,2,2,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,140.38,0,3,Canceled,2019-03-04 -Resort Hotel,0,18,2015,November,45,25,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,77.39,0,3,Check-Out,2018-08-03 -Resort Hotel,1,54,2015,October,45,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,245.0,179.0,0,Transient,39.73,0,0,Canceled,2018-08-03 -City Hotel,1,30,2016,January,4,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,153.91,0,0,Canceled,2018-12-03 -City Hotel,1,169,2016,July,42,27,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,A,0,Non Refund,10.0,179.0,0,Transient,117.92,0,0,Canceled,2019-06-03 -City Hotel,0,8,2017,May,32,4,1,3,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-10-04 -Resort Hotel,0,22,2015,October,44,23,3,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,175.0,179.0,0,Transient,116.16,0,0,Check-Out,2018-08-03 -City Hotel,0,371,2016,September,41,20,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,79.62,0,0,Canceled,2019-09-03 -Resort Hotel,0,92,2017,February,8,20,0,2,2,0.0,0,BB,BRA,Groups,Direct,0,0,0,A,A,0,No Deposit,16.0,331.0,0,Transient,31.38,0,0,Check-Out,2019-12-04 -Resort Hotel,0,22,2017,June,21,15,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,330.0,179.0,0,Group,101.53,0,0,Check-Out,2020-03-03 -City Hotel,1,0,2017,April,35,6,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,1,1,A,A,0,No Deposit,14.0,179.0,0,Group,0.0,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,April,18,25,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,A,C,2,No Deposit,246.0,179.0,0,Transient,115.86,0,1,Check-Out,2019-08-04 -City Hotel,0,44,2016,May,21,6,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,95.83,0,0,Check-Out,2019-03-04 -City Hotel,1,35,2016,May,8,13,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,143.07,0,0,Canceled,2019-01-03 -City Hotel,1,429,2016,February,10,21,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.96,0,0,Canceled,2019-01-03 -City Hotel,0,8,2017,March,8,16,0,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,229.0,0,Group,111.13,0,1,Check-Out,2020-01-04 -City Hotel,1,73,2016,December,50,22,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.87,0,2,Canceled,2019-10-04 -City Hotel,1,53,2017,June,30,2,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.21,0,3,Canceled,2019-11-03 -City Hotel,0,20,2017,June,22,6,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,1,22,2017,February,8,31,0,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,63.89,0,0,Canceled,2020-02-01 -City Hotel,1,156,2016,December,52,28,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,41,Transient,80.96,0,0,Canceled,2019-09-03 -City Hotel,1,162,2016,February,10,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient-Party,63.43,0,0,Canceled,2018-09-02 -City Hotel,1,47,2015,August,31,18,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,E,G,0,No Deposit,238.0,179.0,0,Transient,97.49,0,0,Canceled,2018-05-03 -Resort Hotel,0,167,2016,August,27,6,4,10,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,164.25,1,0,Check-Out,2019-08-04 -Resort Hotel,0,170,2017,May,29,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Contract,74.82,0,0,Check-Out,2020-02-01 -City Hotel,0,35,2016,March,18,6,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.27,0,2,Check-Out,2019-06-03 -City Hotel,0,9,2017,January,3,24,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,142.54,0,0,Check-Out,2019-10-04 -Resort Hotel,0,92,2016,July,32,24,2,5,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,185.8,0,3,Check-Out,2018-06-02 -City Hotel,1,43,2016,May,22,18,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,96.91,0,0,No-Show,2018-12-03 -City Hotel,0,142,2016,June,28,21,1,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,85.0,179.0,0,Transient-Party,117.25,0,0,Check-Out,2019-09-03 -City Hotel,0,151,2017,July,30,31,2,3,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,219.63,0,2,Check-Out,2020-04-02 -City Hotel,0,1,2016,March,17,28,0,1,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,9.0,179.0,0,Transient,84.39,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2016,June,18,28,0,3,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,77.79,1,0,Check-Out,2019-02-01 -City Hotel,1,95,2016,March,16,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.01,0,0,Canceled,2019-04-03 -Resort Hotel,1,101,2017,February,17,25,2,4,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,2,Non Refund,330.0,179.0,0,Transient,86.59,0,0,Canceled,2020-03-03 -Resort Hotel,0,3,2016,March,15,8,1,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,41.49,0,1,Check-Out,2019-01-03 -City Hotel,0,96,2017,June,26,15,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.17,0,1,Check-Out,2020-07-03 -Resort Hotel,0,56,2017,August,40,29,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,188.32,0,0,Check-Out,2020-06-02 -Resort Hotel,0,32,2017,May,25,30,4,10,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,115.63,0,1,Check-Out,2020-04-02 -Resort Hotel,0,54,2016,December,49,30,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,36.71,0,1,Check-Out,2019-10-04 -Resort Hotel,1,93,2017,August,31,24,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,205.67,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2017,April,15,21,0,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,306.0,179.0,75,Transient-Party,162.83,0,0,Check-Out,2020-04-02 -Resort Hotel,0,46,2017,April,18,15,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient-Party,202.26,1,0,Check-Out,2020-01-04 -City Hotel,1,34,2016,June,28,31,0,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,71.65,0,0,Canceled,2020-04-02 -City Hotel,1,245,2015,July,37,21,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.99,0,0,Canceled,2017-11-02 -City Hotel,0,14,2016,December,52,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,104.0,45.0,0,Transient-Party,42.53,1,0,Check-Out,2019-07-04 -City Hotel,1,146,2017,May,23,6,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,238.0,179.0,0,Transient,121.66,0,1,Canceled,2020-03-03 -City Hotel,0,42,2016,August,39,31,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,212.14,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,February,8,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,32.5,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,October,43,9,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,108.78,0,0,Check-Out,2019-09-03 -City Hotel,0,105,2015,July,32,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,91.06,0,2,Check-Out,2018-10-03 -City Hotel,1,20,2017,February,8,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.49,0,0,Canceled,2020-02-01 -City Hotel,0,1,2016,July,33,29,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,109.29,0,0,Check-Out,2019-05-04 -City Hotel,1,105,2016,October,44,15,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,64,Transient,114.51,0,0,Canceled,2018-08-03 -Resort Hotel,0,10,2016,August,33,24,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,167.0,179.0,0,Transient-Party,187.97,0,0,Check-Out,2019-06-03 -City Hotel,1,143,2017,May,17,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,270.0,179.0,0,Contract,75.56,0,0,Canceled,2020-06-02 -Resort Hotel,0,3,2016,October,45,27,1,1,2,0.0,0,BB,GBR,Direct,Corporate,0,0,0,D,D,0,No Deposit,41.0,179.0,0,Transient,65.21,0,0,Check-Out,2019-09-03 -Resort Hotel,0,15,2016,January,10,24,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,75.91,1,0,Check-Out,2018-12-03 -City Hotel,1,2,2017,March,9,27,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,66.0,0,Transient,75.5,0,2,Canceled,2020-03-03 -City Hotel,0,163,2016,March,10,22,0,4,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,D,1,No Deposit,11.0,270.0,0,Transient-Party,42.75,1,0,Check-Out,2020-03-03 -Resort Hotel,0,212,2016,September,43,31,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Contract,62.71,0,0,Check-Out,2019-08-04 -City Hotel,1,93,2015,September,38,16,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,91.72,0,0,Check-Out,2018-09-02 -City Hotel,0,108,2016,October,44,24,2,1,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Contract,104.02,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2016,October,41,20,0,2,2,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,100.92,0,1,Check-Out,2019-08-04 -City Hotel,0,33,2016,May,19,13,2,1,2,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,175.0,179.0,0,Transient,68.8,0,1,Check-Out,2019-03-04 -Resort Hotel,0,80,2016,June,22,18,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,60.36,1,1,Check-Out,2019-03-04 -City Hotel,1,0,2017,August,50,5,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,14.0,331.0,0,Transient,3.3,0,0,Canceled,2019-10-04 -City Hotel,1,108,2015,September,31,17,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient-Party,63.04,0,0,Canceled,2018-08-03 -City Hotel,0,3,2016,March,4,31,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,78.59,0,1,Check-Out,2019-01-03 -City Hotel,1,32,2016,October,44,15,2,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,1.78,0,0,Canceled,2019-09-03 -City Hotel,1,279,2016,June,28,18,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,76.47,0,0,Canceled,2019-01-03 -City Hotel,1,403,2016,October,4,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,39,Transient,72.86,0,0,Canceled,2018-11-02 -City Hotel,0,113,2015,July,33,3,0,3,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.72,0,0,Check-Out,2018-05-03 -Resort Hotel,1,344,2017,February,8,15,0,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,29.0,0,0,Canceled,2019-12-04 -City Hotel,0,13,2016,May,25,21,0,1,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,179.67,0,0,Check-Out,2019-03-04 -Resort Hotel,0,10,2016,November,43,26,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,201.0,331.0,0,Transient-Party,39.9,0,0,Check-Out,2020-01-04 -City Hotel,1,347,2017,May,23,21,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,105.5,0,0,Canceled,2020-03-03 -Resort Hotel,0,30,2017,April,18,28,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,124.47,0,0,Check-Out,2020-02-01 -City Hotel,1,62,2017,February,10,22,2,1,2,1.0,0,BB,PRT,Corporate,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,95.16,0,0,Canceled,2020-02-01 -City Hotel,1,8,2017,February,10,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,61.79,1,0,Canceled,2019-02-01 -Resort Hotel,0,51,2015,August,31,15,4,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,307.0,179.0,0,Transient-Party,48.52,0,0,Check-Out,2018-06-02 -Resort Hotel,0,52,2015,November,45,21,2,1,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,24.63,0,2,Check-Out,2018-09-02 -Resort Hotel,0,18,2017,August,35,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,246.0,179.0,0,Group,102.22,1,1,Check-Out,2020-06-02 -Resort Hotel,0,1,2017,February,10,17,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,18.0,179.0,0,Transient,237.69,0,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2017,February,11,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,C,0,No Deposit,14.0,81.0,0,Transient,115.16,0,0,Check-Out,2020-01-04 -Resort Hotel,0,148,2017,June,23,28,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,318.0,179.0,0,Transient-Party,159.52,0,0,Check-Out,2020-06-02 -Resort Hotel,1,44,2016,December,53,7,2,0,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,376.0,179.0,0,Transient-Party,88.33,0,0,Canceled,2018-11-02 -City Hotel,1,2,2016,December,51,22,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,14.0,261.0,0,Transient,0.08,0,0,Canceled,2019-10-04 -Resort Hotel,1,0,2016,July,39,9,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,96.97,0,0,No-Show,2018-07-03 -City Hotel,0,9,2017,May,20,24,0,1,1,0.0,0,BB,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.09,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2017,January,4,29,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.26,0,1,Check-Out,2019-11-03 -City Hotel,0,43,2015,September,43,17,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,97.49,0,0,Check-Out,2018-08-03 -City Hotel,0,280,2015,October,43,21,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,89.44,0,2,Check-Out,2018-08-03 -City Hotel,0,2,2017,February,9,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,33.74,0,0,Check-Out,2020-02-01 -City Hotel,1,215,2016,October,43,17,2,3,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,102.15,0,0,Canceled,2019-08-04 -Resort Hotel,1,180,2015,October,35,31,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,175.0,179.0,0,Contract,75.17,0,0,Canceled,2018-08-03 -City Hotel,0,95,2016,October,45,21,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient-Party,89.03,0,1,Check-Out,2019-12-04 -City Hotel,1,32,2016,July,39,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,75.55,0,0,No-Show,2019-03-04 -Resort Hotel,1,12,2017,June,26,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,220.0,0,Transient,77.45,0,0,Canceled,2020-01-04 -City Hotel,0,4,2017,January,7,15,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,81.0,0,Transient,71.33,0,1,Check-Out,2019-10-04 -City Hotel,0,54,2016,November,44,27,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,200.0,179.0,0,Transient,89.72,0,0,Check-Out,2019-06-03 -City Hotel,0,191,2015,October,43,10,2,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,104.7,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2015,October,44,9,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,197.0,0,Transient,46.59,0,0,Check-Out,2018-10-03 -City Hotel,0,14,2015,September,41,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,60,Transient-Party,58.34,0,0,Check-Out,2018-08-03 -City Hotel,1,94,2017,August,36,31,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,2,No Deposit,16.0,179.0,0,Transient,229.57,0,3,Canceled,2019-07-04 -Resort Hotel,0,3,2016,March,10,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,E,1,No Deposit,10.0,179.0,0,Transient,96.11,1,0,Check-Out,2019-03-04 -Resort Hotel,0,105,2016,March,12,22,2,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,63.05,0,1,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,March,9,31,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,32.43,0,0,Check-Out,2020-03-03 -Resort Hotel,1,38,2016,December,16,27,2,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,205.56,0,0,Canceled,2019-07-04 -City Hotel,1,36,2015,July,31,27,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.17,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,April,14,10,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,1,No Deposit,13.0,179.0,0,Transient,0.68,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2017,May,28,28,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,204.0,0,Transient,109.9,0,0,Check-Out,2019-07-04 -City Hotel,0,209,2015,September,44,9,0,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,90.57,0,0,Check-Out,2018-08-03 -City Hotel,1,17,2015,September,37,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,58.56,0,0,Canceled,2018-06-02 -Resort Hotel,0,91,2015,September,43,16,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,42.26,0,0,Check-Out,2018-09-02 -City Hotel,0,146,2016,November,53,2,1,2,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,70.67,0,0,Check-Out,2019-11-03 -City Hotel,1,48,2016,July,36,15,2,3,3,2.0,0,HB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,182.05,0,0,Canceled,2019-08-04 -City Hotel,0,92,2015,July,34,9,1,2,2,0.0,0,HB,FRA,Groups,Direct,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,120.29,0,0,Check-Out,2018-06-02 -City Hotel,1,1,2017,May,10,31,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,128.76,0,1,Canceled,2020-03-03 -Resort Hotel,0,34,2016,March,9,18,0,3,1,0.0,0,BB,IRL,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,223.0,0,Transient,37.64,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2017,December,53,24,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.11,0,2,Check-Out,2019-12-04 -Resort Hotel,0,101,2017,April,21,13,0,3,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,C,0,No Deposit,247.0,179.0,0,Transient,191.69,0,3,Check-Out,2020-02-01 -City Hotel,0,12,2017,February,9,17,1,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,60.41,0,0,Check-Out,2019-11-03 -Resort Hotel,0,45,2015,November,34,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient-Party,84.2,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2017,August,32,20,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-07-03 -Resort Hotel,0,19,2017,January,2,15,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,80.0,0,Transient,31.64,0,1,Check-Out,2020-01-04 -Resort Hotel,1,204,2016,May,21,31,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient,62.1,0,0,Canceled,2019-08-04 -City Hotel,1,4,2016,January,11,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.58,0,0,No-Show,2018-11-02 -City Hotel,0,282,2015,September,32,24,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.92,0,0,Check-Out,2017-12-03 -City Hotel,1,401,2015,October,44,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.41,0,0,Canceled,2017-11-02 -Resort Hotel,0,391,2017,August,22,6,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,272.0,179.0,0,Transient-Party,120.36,0,1,Check-Out,2020-06-02 -Resort Hotel,0,44,2017,January,2,20,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,200.0,179.0,0,Transient,37.21,0,0,Check-Out,2019-11-03 -City Hotel,0,26,2017,February,10,9,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,109.76,0,1,Check-Out,2020-02-01 -Resort Hotel,0,44,2016,March,16,10,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,61.59,0,0,Check-Out,2018-12-03 -City Hotel,1,13,2015,September,37,20,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,114.27,0,0,Canceled,2018-06-02 -Resort Hotel,0,10,2016,November,50,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,241.0,179.0,0,Transient,64.03,1,0,Check-Out,2019-09-03 -Resort Hotel,0,111,2017,March,10,29,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,237.0,179.0,0,Transient,252.0,0,3,Canceled,2020-05-03 -City Hotel,0,45,2016,March,10,21,0,1,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,60.99,0,0,Check-Out,2019-01-03 -City Hotel,1,3,2017,July,9,13,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,60.88,0,0,Canceled,2020-04-02 -City Hotel,0,3,2016,January,9,21,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.63,0,0,Check-Out,2018-12-03 -City Hotel,1,155,2017,May,26,6,2,5,3,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,63.27,0,0,Canceled,2020-02-01 -City Hotel,0,103,2015,October,45,30,2,3,1,0.0,0,BB,ISR,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,11.0,248.0,0,Transient,113.74,0,1,Check-Out,2018-09-02 -Resort Hotel,0,186,2016,June,26,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.37,1,0,Check-Out,2019-05-04 -Resort Hotel,0,19,2017,July,34,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,193.01,1,1,Check-Out,2020-06-02 -City Hotel,0,0,2015,October,44,21,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,56.5,0,0,Canceled,2018-10-03 -Resort Hotel,0,155,2017,January,4,29,0,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,82.32,1,3,Check-Out,2019-12-04 -City Hotel,1,264,2017,May,23,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.96,0,0,Canceled,2020-05-03 -City Hotel,0,264,2017,September,41,28,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.49,0,1,Check-Out,2020-07-03 -City Hotel,0,2,2015,October,45,29,0,1,1,0.0,0,BB,ESP,Online TA,Corporate,0,0,0,A,A,1,No Deposit,13.0,241.0,0,Transient-Party,59.05,0,0,Check-Out,2018-09-02 -City Hotel,0,15,2015,August,37,10,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,237.0,179.0,0,Transient,98.98,1,2,Check-Out,2018-06-02 -Resort Hotel,0,57,2017,May,22,5,2,5,2,1.0,0,HB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,247.0,179.0,0,Transient,156.88,1,1,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,March,12,31,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,2,Non Refund,14.0,223.0,0,Transient,37.01,0,0,Check-Out,2019-03-04 -City Hotel,1,106,2016,April,17,28,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,98.45,0,2,Canceled,2019-02-01 -City Hotel,0,102,2017,April,17,13,2,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient,98.47,0,2,Check-Out,2020-02-01 -Resort Hotel,0,4,2016,August,36,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,189.0,179.0,0,Transient,101.43,0,0,Check-Out,2020-06-02 -Resort Hotel,1,214,2017,June,27,30,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,183.0,179.0,0,Transient,49.88,0,0,Canceled,2019-08-04 -Resort Hotel,0,241,2015,September,43,6,0,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,Non Refund,35.0,179.0,0,Contract,58.4,0,0,Check-Out,2017-12-03 -City Hotel,0,307,2016,October,44,21,0,4,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,75.06,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,January,3,29,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,77.0,0,Transient,68.87,1,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,June,26,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,74.48,0,0,Check-Out,2019-06-03 -Resort Hotel,1,33,2017,May,20,14,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,0,No Deposit,18.0,179.0,0,Transient,206.46,0,0,Canceled,2020-01-04 -Resort Hotel,0,2,2017,March,17,14,0,1,1,0.0,0,HB,PRT,Complementary,TA/TO,1,0,1,A,F,0,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-03-03 -Resort Hotel,0,99,2016,December,47,24,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,234.0,0,Transient,91.81,0,0,Check-Out,2019-12-04 -Resort Hotel,0,29,2016,December,53,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,116.5,0,1,Check-Out,2019-12-04 -City Hotel,0,48,2016,April,16,8,1,2,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,12.0,179.0,0,Transient,245.85,0,0,Check-Out,2019-03-04 -City Hotel,0,52,2016,October,42,22,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient,125.86,0,0,Canceled,2019-06-03 -City Hotel,1,31,2015,September,37,28,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.18,0,0,Canceled,2018-06-02 -Resort Hotel,0,278,2017,July,36,13,4,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,204.68,0,1,Check-Out,2020-06-02 -City Hotel,1,113,2016,September,33,15,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,E,0,Non Refund,1.0,179.0,0,Transient,128.53,0,0,Canceled,2018-07-03 -Resort Hotel,1,43,2015,July,40,21,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,G,G,0,No Deposit,240.0,179.0,0,Transient,55.7,0,0,Canceled,2018-11-02 -Resort Hotel,0,42,2016,August,38,29,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-04-03 -City Hotel,0,104,2017,April,16,10,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,30.0,179.0,0,Transient-Party,136.44,0,0,Check-Out,2020-02-01 -Resort Hotel,0,55,2016,May,23,25,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,2,No Deposit,314.0,179.0,0,Transient-Party,89.36,0,0,Check-Out,2019-08-04 -Resort Hotel,0,159,2016,July,8,27,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,163.11,0,0,Check-Out,2019-09-03 -City Hotel,1,273,2016,October,23,28,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,179.0,20,Transient-Party,64.29,0,0,Canceled,2019-03-04 -City Hotel,0,154,2017,June,33,2,0,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,124.57,0,1,Check-Out,2020-04-02 -Resort Hotel,0,91,2016,March,10,27,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,61.36,1,0,Check-Out,2018-12-03 -City Hotel,0,18,2017,May,23,23,0,1,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,84.49,0,0,Check-Out,2020-03-03 -City Hotel,0,31,2017,May,23,15,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,125.29,1,1,Check-Out,2020-04-02 -City Hotel,0,154,2016,July,31,21,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,113.41,0,1,Check-Out,2019-02-01 -Resort Hotel,0,92,2017,December,19,31,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,E,0,No Deposit,378.0,179.0,75,Transient-Party,98.11,0,0,Check-Out,2019-10-04 -City Hotel,0,109,2015,October,51,27,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient-Party,124.42,0,0,No-Show,2018-08-03 -City Hotel,1,318,2016,May,23,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,59.98,0,0,Canceled,2018-01-03 -City Hotel,0,92,2017,June,30,3,2,6,2,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.71,0,1,Check-Out,2020-06-02 -Resort Hotel,1,301,2015,September,37,22,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,172.0,179.0,0,Transient,75.59,0,0,Canceled,2018-08-03 -City Hotel,0,35,2016,August,36,10,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,108.88,0,1,Check-Out,2019-06-03 -City Hotel,1,32,2016,January,53,25,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.7,0,0,Canceled,2019-10-04 -Resort Hotel,0,212,2016,May,17,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,15.0,222.0,0,Transient,81.58,1,0,Check-Out,2019-02-01 -Resort Hotel,0,46,2016,August,37,21,1,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,239.02,0,1,Check-Out,2019-06-03 -City Hotel,0,3,2017,February,9,23,0,1,2,2.0,0,BB,POL,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,91.09,0,0,Check-Out,2020-01-04 -Resort Hotel,1,95,2017,May,17,20,2,7,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,167.03,1,2,Check-Out,2020-03-03 -City Hotel,0,251,2015,July,32,9,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,106.0,0,0,Check-Out,2018-06-02 -City Hotel,1,0,2016,May,17,7,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,79.51,0,0,Canceled,2019-03-04 -City Hotel,0,207,2017,July,26,18,1,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.97,0,1,Check-Out,2020-06-02 -Resort Hotel,0,227,2015,October,42,6,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,84.12,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2015,July,51,20,2,0,1,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,1.44,0,0,Canceled,2018-06-02 -City Hotel,1,66,2016,August,33,14,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,59.2,0,1,Canceled,2019-06-03 -Resort Hotel,1,51,2017,March,10,20,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,68.71,0,0,Canceled,2020-01-04 -Resort Hotel,0,66,2015,November,50,16,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,60.43,0,0,Check-Out,2018-05-03 -City Hotel,0,118,2017,April,21,5,0,3,3,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,165.58,0,0,Check-Out,2020-01-04 -City Hotel,1,317,2015,December,52,5,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.71,0,0,Canceled,2017-12-03 -City Hotel,0,2,2017,January,8,6,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.16,0,1,Check-Out,2020-04-02 -Resort Hotel,0,105,2016,September,42,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,299.0,179.0,0,Transient,144.82,0,0,Check-Out,2019-06-03 -City Hotel,0,100,2016,April,15,27,0,3,1,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,61.61,0,0,Check-Out,2019-05-04 -City Hotel,1,17,2015,July,30,4,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,75.46,0,1,Canceled,2018-05-03 -Resort Hotel,1,0,2016,June,27,5,3,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,64.43,0,0,No-Show,2019-04-03 -City Hotel,0,135,2016,June,29,5,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.78,0,2,Check-Out,2019-03-04 -Resort Hotel,0,117,2016,July,30,12,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,115.26,0,3,Check-Out,2020-05-03 -City Hotel,1,9,2016,February,4,22,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,39.86,0,0,Canceled,2019-10-04 -City Hotel,1,7,2017,March,10,31,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.93,0,1,Canceled,2019-10-04 -City Hotel,0,100,2017,May,22,15,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.02,1,0,Check-Out,2020-04-02 -Resort Hotel,1,384,2017,May,21,26,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,2,No Deposit,249.0,179.0,0,Transient,0.0,0,0,Canceled,2020-04-02 -City Hotel,1,102,2015,December,44,23,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,7.0,179.0,0,Contract,79.58,0,0,Canceled,2018-11-02 -City Hotel,0,2,2016,March,17,13,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,65.51,0,2,Check-Out,2019-03-04 -Resort Hotel,0,21,2017,February,11,29,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,111.18,0,1,Check-Out,2020-03-03 -City Hotel,1,136,2017,May,44,10,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.17,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,February,13,23,2,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,80.76,0,0,Canceled,2020-02-01 -Resort Hotel,0,150,2017,May,22,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,3,Refundable,12.0,223.0,0,Transient-Party,90.89,1,0,Check-Out,2020-03-03 -City Hotel,0,18,2015,September,35,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,81.78,0,0,Check-Out,2017-12-03 -Resort Hotel,0,19,2015,December,53,11,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,346.0,179.0,0,Transient,46.17,0,0,Check-Out,2018-10-03 -Resort Hotel,0,109,2017,February,8,14,0,3,1,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,63.1,0,0,Check-Out,2019-12-04 -Resort Hotel,1,301,2016,March,18,31,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,10.0,223.0,0,Transient,68.59,0,0,Canceled,2019-02-01 -Resort Hotel,0,172,2016,October,43,25,2,5,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Group,164.57,0,3,Check-Out,2019-05-04 -City Hotel,0,60,2016,November,51,21,0,1,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,211.0,179.0,0,Transient,68.28,0,0,Check-Out,2019-10-04 -City Hotel,1,2,2017,August,9,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,112.07,0,0,Canceled,2019-11-03 -City Hotel,0,0,2017,February,9,5,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,28.4,0,3,Check-Out,2020-01-04 -City Hotel,1,146,2016,April,17,25,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,65,Transient,97.61,0,0,Canceled,2018-12-03 -City Hotel,1,95,2016,June,40,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,42,Transient,102.91,0,0,Canceled,2019-02-01 -City Hotel,0,54,2016,October,26,28,0,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.76,0,0,Check-Out,2019-06-03 -Resort Hotel,0,65,2017,March,14,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,1,No Deposit,10.0,331.0,0,Group,79.14,1,0,Check-Out,2020-02-01 -Resort Hotel,1,383,2016,October,42,27,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,93.55,0,0,Canceled,2018-12-03 -City Hotel,1,43,2015,November,5,11,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,4.0,179.0,0,Transient,63.12,0,0,Canceled,2018-10-03 -Resort Hotel,0,0,2017,May,27,2,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,66.02,0,0,Check-Out,2018-12-03 -City Hotel,0,178,2016,July,15,14,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.51,0,2,Check-Out,2019-06-03 -City Hotel,1,307,2016,June,26,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,116.01,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,July,32,5,0,1,3,0.0,0,BB,,Direct,Direct,0,0,0,D,G,0,No Deposit,13.0,72.0,0,Transient,180.35,0,0,Check-Out,2020-05-03 -Resort Hotel,1,98,2017,July,31,12,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,193.79,0,1,Canceled,2020-02-01 -City Hotel,1,14,2016,June,28,23,0,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,120.6,0,0,Canceled,2019-03-04 -City Hotel,1,15,2017,January,4,13,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,60.94,0,0,Canceled,2019-10-04 -City Hotel,0,235,2015,October,43,31,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,93.76,0,1,Check-Out,2018-08-03 -City Hotel,1,2,2017,March,21,12,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.25,0,2,Canceled,2020-01-04 -Resort Hotel,0,54,2017,July,15,4,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,47.52,0,2,Check-Out,2020-03-03 -Resort Hotel,1,197,2017,March,28,10,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,168.0,179.0,0,Transient,100.22,0,0,Canceled,2020-04-02 -Resort Hotel,1,245,2015,October,43,21,0,1,2,0.0,0,BB,PRT,Undefined,TA/TO,1,0,0,C,D,0,No Deposit,13.0,179.0,0,Contract,35.69,0,0,Canceled,2018-09-02 -City Hotel,0,15,2016,September,26,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,31.94,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,August,34,30,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,145.49,1,0,Check-Out,2019-05-04 -City Hotel,1,208,2017,April,17,14,2,5,3,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,7.0,179.0,0,Transient,149.13,0,2,Canceled,2020-02-01 -Resort Hotel,1,57,2016,April,16,27,2,0,2,1.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,308.0,179.0,0,Transient,92.43,0,0,Canceled,2018-12-03 -City Hotel,1,397,2015,September,47,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Contract,97.21,0,0,Canceled,2018-09-02 -City Hotel,0,55,2016,September,50,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,15.0,218.0,0,Transient,60.76,0,0,Canceled,2018-06-02 -Resort Hotel,0,29,2016,February,10,28,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,67.81,0,0,Check-Out,2018-11-02 -City Hotel,0,86,2017,July,24,20,0,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.85,0,2,Check-Out,2020-03-03 -Resort Hotel,1,87,2016,December,18,31,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient-Party,80.39,0,0,Canceled,2018-12-03 -Resort Hotel,0,253,2016,August,33,2,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Contract,122.21,0,1,Check-Out,2019-08-04 -Resort Hotel,0,2,2016,May,36,28,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,186.97,0,0,Check-Out,2019-05-04 -City Hotel,1,37,2016,July,29,6,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.05,0,3,Canceled,2019-02-01 -City Hotel,1,62,2017,June,18,16,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,158.0,179.0,0,Transient,74.4,0,1,Canceled,2019-11-03 -City Hotel,1,229,2016,February,10,21,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.27,0,1,Canceled,2020-03-03 -City Hotel,0,40,2016,June,26,8,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,208.38,0,0,Check-Out,2019-05-04 -City Hotel,1,21,2015,September,32,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.05,0,0,Canceled,2018-09-02 -City Hotel,0,36,2015,December,53,31,2,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,61.29,0,0,Check-Out,2018-08-03 -Resort Hotel,0,44,2017,July,27,29,0,2,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,196.0,179.0,0,Transient,127.33,0,0,Check-Out,2020-05-03 -City Hotel,0,387,2017,June,22,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.25,0,0,Check-Out,2020-03-03 -City Hotel,0,98,2017,June,21,6,2,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,104.96,0,3,Check-Out,2020-04-02 -City Hotel,0,143,2016,February,33,28,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,58.57,0,1,Check-Out,2019-06-03 -Resort Hotel,0,3,2015,August,29,10,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,245.0,179.0,0,Transient,167.09,1,1,Check-Out,2018-06-02 -Resort Hotel,0,115,2015,December,51,24,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,321.0,179.0,0,Transient-Party,96.05,0,0,Check-Out,2018-12-03 -City Hotel,0,147,2017,June,23,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Transient-Party,87.47,0,0,Check-Out,2019-11-03 -City Hotel,1,12,2015,August,31,22,0,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,162.13,0,0,No-Show,2019-02-01 -Resort Hotel,1,162,2017,July,32,23,2,4,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,137.97,0,2,Canceled,2020-06-02 -Resort Hotel,0,210,2017,May,23,12,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,110.63,0,3,Check-Out,2020-06-02 -Resort Hotel,0,6,2016,November,50,31,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,59.68,0,0,Check-Out,2020-01-04 -Resort Hotel,1,188,2016,October,41,10,2,7,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,35.72,0,0,Canceled,2019-04-03 -Resort Hotel,0,29,2015,August,38,18,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,114.18,0,0,Check-Out,2018-05-03 -Resort Hotel,0,22,2017,August,33,20,1,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,206.0,179.0,0,Transient,200.13,0,0,Canceled,2020-06-02 -Resort Hotel,0,118,2016,August,37,9,2,6,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,114.63,0,1,Check-Out,2019-06-03 -City Hotel,1,128,2016,September,36,13,1,3,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,181.55,0,0,Canceled,2019-08-04 -City Hotel,1,43,2016,August,36,25,2,5,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,188.86,0,1,Canceled,2019-08-04 -City Hotel,0,249,2015,July,47,6,0,4,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,60.76,0,0,Check-Out,2018-06-02 -City Hotel,1,43,2016,February,11,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,61.24,0,0,Canceled,2018-12-03 -City Hotel,1,394,2016,October,43,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,68.72,0,0,Canceled,2017-12-03 -City Hotel,1,409,2017,October,44,29,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,97.91,0,0,Canceled,2019-10-04 -City Hotel,0,26,2017,March,11,12,1,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,108.36,0,1,Check-Out,2020-06-02 -Resort Hotel,0,190,2016,March,12,31,0,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,3,No Deposit,13.0,223.0,0,Transient-Party,41.83,0,0,Check-Out,2019-11-03 -City Hotel,0,16,2017,June,28,18,1,3,1,0.0,0,BB,ISR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,174.0,331.0,0,Transient-Party,89.99,0,0,Check-Out,2020-02-01 -Resort Hotel,0,18,2016,March,15,6,2,0,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,H,I,2,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,0,30,2016,October,52,8,0,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,75,Transient-Party,94.48,0,0,Check-Out,2020-02-01 -Resort Hotel,1,101,2016,July,27,30,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,71.83,0,0,Canceled,2018-07-03 -City Hotel,1,148,2016,August,29,9,0,5,3,0.0,0,BB,,Corporate,Corporate,0,0,1,D,E,1,No Deposit,15.0,331.0,0,Transient,140.96,0,0,Check-Out,2020-02-01 -City Hotel,0,267,2016,October,43,28,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,100.96,0,1,Check-Out,2019-08-04 -City Hotel,1,22,2017,May,21,22,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,9.0,179.0,0,Transient,99.33,0,3,Canceled,2020-02-01 -Resort Hotel,0,4,2017,March,12,15,0,1,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,13.0,179.0,75,Transient-Party,76.14,1,1,Check-Out,2020-02-01 -Resort Hotel,0,0,2017,January,2,18,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient,34.37,0,1,Check-Out,2020-04-02 -Resort Hotel,1,55,2017,August,34,27,3,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,223.53,1,1,Canceled,2020-03-03 -Resort Hotel,0,35,2016,March,11,24,0,5,1,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,D,E,0,No Deposit,200.0,179.0,0,Transient-Party,60.48,0,0,Check-Out,2019-03-04 -Resort Hotel,0,3,2016,February,4,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,112.0,179.0,0,Transient,38.54,0,0,Check-Out,2018-11-02 -City Hotel,1,285,2016,August,39,25,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.88,0,1,Canceled,2019-08-04 -City Hotel,0,9,2017,July,42,17,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,82.93,0,0,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,June,16,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,D,1,No Deposit,15.0,179.0,0,Group,1.8,1,0,Check-Out,2018-06-02 -Resort Hotel,0,3,2016,August,36,30,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,252.0,179.0,0,Transient,190.99,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2015,October,45,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,245.0,179.0,0,Transient,59.24,0,0,Check-Out,2018-06-02 -City Hotel,0,15,2016,February,9,9,0,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,18,Transient,91.47,0,0,Check-Out,2018-10-03 -City Hotel,0,46,2016,January,29,18,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient-Party,125.49,0,1,Check-Out,2019-03-04 -City Hotel,0,2,2015,October,45,14,1,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,266.0,0,Transient-Party,25.61,0,0,Check-Out,2018-09-02 -City Hotel,1,36,2017,December,4,25,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,77.52,0,0,Canceled,2019-10-04 -City Hotel,1,20,2016,May,21,16,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,144.24,0,0,Canceled,2019-01-03 -City Hotel,1,48,2015,September,42,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.82,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,June,17,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,83.77,0,1,Check-Out,2018-12-03 -City Hotel,0,38,2016,October,14,16,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,203.72,0,2,Check-Out,2019-12-04 -City Hotel,1,368,2016,January,4,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,16,Transient,84.38,0,0,Canceled,2018-10-03 -City Hotel,0,18,2015,September,37,21,2,3,2,0.0,0,BB,,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,166.62,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2015,August,35,9,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,219.94,0,2,Check-Out,2018-06-02 -City Hotel,0,0,2016,October,43,9,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,89.49,0,0,Check-Out,2019-03-04 -City Hotel,1,271,2017,May,21,25,2,0,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,130.33,0,0,Canceled,2019-11-03 -Resort Hotel,0,139,2015,August,36,21,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,136.0,179.0,0,Transient-Party,30.99,0,0,Check-Out,2018-06-02 -Resort Hotel,0,16,2015,November,43,6,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,233.0,0,Transient,65.3,0,0,Check-Out,2018-09-02 -City Hotel,1,88,2016,August,37,12,0,1,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,232.08,0,0,No-Show,2019-05-04 -Resort Hotel,1,148,2016,June,27,28,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,240.0,179.0,0,Transient,216.63,0,0,Canceled,2018-12-03 -City Hotel,0,12,2016,April,18,30,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,67.0,179.0,0,Transient,127.19,1,0,Check-Out,2019-02-01 -Resort Hotel,0,96,2016,January,50,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,77.0,0,Transient,77.83,0,0,Check-Out,2019-04-03 -Resort Hotel,0,250,2015,July,27,5,2,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,94.9,0,0,Check-Out,2018-06-02 -City Hotel,0,37,2015,July,33,21,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,67.0,179.0,0,Transient,128.04,1,1,Check-Out,2018-06-02 -City Hotel,0,16,2015,December,53,3,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,62.48,0,0,Check-Out,2018-10-03 -City Hotel,0,158,2017,June,22,24,0,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient,141.39,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,February,9,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,237.0,0,Transient,39.7,0,0,Check-Out,2019-11-03 -City Hotel,1,5,2017,June,22,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,129.43,0,0,Check-Out,2020-05-03 -City Hotel,0,51,2016,June,25,30,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.93,0,0,Check-Out,2019-05-04 -City Hotel,0,163,2017,July,31,9,1,2,2,1.0,0,HB,ESP,Complementary,TA/TO,0,0,0,E,G,0,No Deposit,12.0,179.0,0,Transient,97.85,0,0,Check-Out,2019-11-03 -City Hotel,1,30,2017,July,32,10,3,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,207.52,0,1,Canceled,2020-06-02 -Resort Hotel,0,178,2016,November,45,30,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,221.0,0,Transient-Party,37.52,0,0,Check-Out,2019-07-04 -City Hotel,0,260,2015,July,27,19,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,104.75,0,0,Check-Out,2018-06-02 -Resort Hotel,0,158,2017,June,27,23,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,239.0,179.0,0,Transient,153.2,0,2,Check-Out,2020-03-03 -City Hotel,1,190,2017,June,28,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.1,0,1,Canceled,2020-03-03 -City Hotel,1,274,2016,May,21,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,63.61,0,0,Canceled,2019-02-01 -City Hotel,0,276,2017,May,26,22,1,5,1,0.0,0,BB,FRA,Direct,Direct,1,0,0,A,A,0,No Deposit,218.0,179.0,0,Transient,140.71,0,3,Check-Out,2020-04-02 -City Hotel,1,243,2016,September,44,24,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,1,1,1,A,F,0,Non Refund,13.0,179.0,75,Transient,60.66,0,0,Canceled,2019-01-03 -City Hotel,1,49,2016,November,45,18,2,1,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,89.82,0,0,Canceled,2019-11-03 -City Hotel,1,236,2016,June,28,2,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,106.48,0,0,Canceled,2018-12-03 -City Hotel,1,3,2016,June,28,27,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,149.84,0,1,No-Show,2019-06-03 -City Hotel,0,12,2016,June,17,10,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,68.0,179.0,0,Transient,120.22,0,0,Check-Out,2018-12-03 -Resort Hotel,0,102,2017,August,29,4,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,250.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-05-03 -City Hotel,0,8,2017,April,16,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,229.0,0,Contract,92.0,0,1,Check-Out,2020-03-03 -Resort Hotel,0,98,2016,December,53,9,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,76.28,1,1,Check-Out,2019-07-04 -City Hotel,1,246,2015,December,51,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.0,0,0,Canceled,2018-08-03 -City Hotel,0,41,2017,March,8,21,1,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,206.67,0,1,Check-Out,2020-01-04 -City Hotel,0,54,2017,April,17,21,0,1,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,183.13,0,0,Check-Out,2019-12-04 -Resort Hotel,0,266,2015,October,43,2,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,378.0,179.0,0,Group,47.26,0,0,Check-Out,2018-09-02 -Resort Hotel,0,304,2016,September,42,12,3,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,61.84,0,0,Check-Out,2019-08-04 -Resort Hotel,0,39,2017,March,12,30,0,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,45.0,234.0,0,Transient-Party,49.63,0,0,Check-Out,2019-12-04 -City Hotel,0,112,2016,June,24,19,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,107.17,0,1,Check-Out,2019-01-03 -City Hotel,0,38,2017,July,31,5,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.18,0,3,Check-Out,2020-02-01 -City Hotel,1,245,2016,July,42,20,0,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,8.0,179.0,0,Transient,139.41,0,0,Canceled,2019-05-04 -City Hotel,0,113,2016,November,50,13,1,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.34,0,1,Check-Out,2019-11-03 -City Hotel,1,170,2017,August,37,12,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,135.41,0,0,Canceled,2020-07-03 -Resort Hotel,0,115,2016,May,22,23,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient-Party,158.84,0,0,Check-Out,2019-03-04 -City Hotel,0,16,2015,December,53,31,1,1,2,0.0,0,BB,BRA,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,61.13,0,0,Check-Out,2018-11-02 -City Hotel,1,9,2016,December,3,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,17.0,179.0,41,Transient,65.54,0,0,Canceled,2018-10-03 -Resort Hotel,0,48,2015,December,49,28,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient-Party,61.2,0,0,Check-Out,2018-07-03 -City Hotel,1,360,2016,October,44,13,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,43.4,0,0,Check-Out,2019-08-04 -Resort Hotel,0,128,2017,March,18,30,0,4,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,2,No Deposit,15.0,179.0,75,Transient-Party,71.67,1,3,Check-Out,2020-01-04 -City Hotel,0,196,2017,August,37,19,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.31,0,1,Check-Out,2020-07-03 -Resort Hotel,1,154,2016,December,53,27,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,319.0,179.0,0,Transient-Party,62.31,0,0,Canceled,2019-11-03 -City Hotel,1,52,2017,February,9,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,16.0,179.0,0,Transient,39.55,0,0,Canceled,2019-12-04 -City Hotel,0,42,2016,June,11,20,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,1,0,1,A,B,0,No Deposit,14.0,45.0,0,Transient-Party,86.84,0,0,Check-Out,2019-03-04 -City Hotel,0,7,2016,December,53,10,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,145.15,0,2,Check-Out,2018-12-03 -Resort Hotel,0,149,2016,September,35,2,1,2,2,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,242.1,1,0,Check-Out,2019-06-03 -City Hotel,0,2,2015,October,43,14,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,10.0,45.0,0,Transient,98.64,0,0,Check-Out,2018-08-03 -City Hotel,0,25,2015,August,35,20,2,1,3,0.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,127.65,0,0,Check-Out,2018-06-02 -City Hotel,1,0,2016,March,9,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.01,1,0,No-Show,2018-12-03 -City Hotel,0,3,2017,August,30,5,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,37,2017,June,23,15,1,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Contract,120.75,0,2,Check-Out,2020-03-03 -City Hotel,0,47,2017,April,18,15,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,3,No Deposit,8.0,179.0,0,Transient,91.95,0,0,Check-Out,2020-01-04 -City Hotel,0,44,2017,July,27,9,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,241.53,0,1,Check-Out,2020-07-03 -Resort Hotel,1,243,2016,September,39,15,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,107.76,0,0,Canceled,2019-07-04 -Resort Hotel,0,18,2016,June,26,2,1,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,177.3,0,1,Check-Out,2019-03-04 -City Hotel,1,141,2017,June,28,20,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,132.2,0,0,Canceled,2020-05-03 -City Hotel,0,16,2016,October,43,15,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,104.19,0,0,Check-Out,2018-08-03 -City Hotel,0,40,2016,September,42,28,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,38.47,0,1,Check-Out,2019-08-04 -Resort Hotel,0,17,2016,November,42,2,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,156.22,0,2,Check-Out,2019-06-03 -City Hotel,0,81,2016,December,11,15,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.19,0,2,Check-Out,2019-08-04 -Resort Hotel,0,144,2017,February,8,28,4,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,G,0,No Deposit,39.0,179.0,0,Transient-Party,23.54,0,0,Check-Out,2019-12-04 -Resort Hotel,0,3,2017,July,26,25,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,35.02,0,1,Check-Out,2020-05-03 -City Hotel,0,177,2017,June,27,8,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,138.7,0,1,Check-Out,2020-02-01 -City Hotel,1,96,2017,February,10,30,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,81.91,0,0,Canceled,2019-09-03 -City Hotel,1,9,2015,September,43,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.43,0,1,Canceled,2018-08-03 -Resort Hotel,0,48,2015,December,33,28,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,221.04,1,0,Check-Out,2018-06-02 -City Hotel,1,2,2016,July,30,16,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,113.55,0,1,Canceled,2019-03-04 -City Hotel,0,14,2016,September,44,11,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.4,0,0,Check-Out,2019-06-03 -City Hotel,1,155,2016,March,18,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,41,Transient,71.92,0,0,Canceled,2019-02-01 -Resort Hotel,1,222,2017,July,34,5,1,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Canceled,2020-03-03 -Resort Hotel,0,25,2015,December,53,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,71.59,0,1,Check-Out,2018-11-02 -City Hotel,1,98,2017,February,10,15,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.86,0,0,Canceled,2020-04-02 -City Hotel,1,243,2015,August,38,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,128.3,0,0,Canceled,2017-12-03 -Resort Hotel,0,51,2017,July,25,9,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,133.4,1,0,Check-Out,2020-03-03 -Resort Hotel,1,209,2017,May,30,24,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient,94.56,0,0,Canceled,2020-03-03 -City Hotel,0,104,2017,May,21,14,1,0,1,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,68.69,0,0,Check-Out,2020-04-02 -City Hotel,0,44,2017,May,10,6,1,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,F,2,No Deposit,8.0,179.0,0,Transient,129.23,0,0,Check-Out,2020-04-02 -City Hotel,0,136,2016,August,34,21,1,4,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,134.8,1,1,Check-Out,2019-12-04 -Resort Hotel,0,261,2017,May,22,8,2,5,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,1,No Deposit,23.0,179.0,0,Transient-Party,60.45,0,0,Check-Out,2020-03-03 -City Hotel,1,57,2016,December,52,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.36,0,0,Canceled,2018-11-02 -Resort Hotel,1,0,2016,February,11,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,131.0,179.0,0,Transient,58.37,0,0,No-Show,2018-11-02 -City Hotel,0,10,2017,August,33,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.84,0,1,Check-Out,2020-07-03 -Resort Hotel,0,13,2016,May,38,12,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,B,2,No Deposit,17.0,179.0,0,Transient,125.26,1,3,Check-Out,2019-07-04 -City Hotel,0,2,2017,February,10,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,80.0,0,Transient,63.08,0,0,Check-Out,2019-11-03 -City Hotel,0,15,2016,October,38,12,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,E,D,0,No Deposit,15.0,216.0,0,Transient,143.17,0,0,Check-Out,2019-06-03 -City Hotel,1,54,2017,March,16,30,2,7,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,166.75,0,2,Canceled,2020-03-03 -City Hotel,0,47,2016,August,38,28,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,121.24,0,2,Check-Out,2019-08-04 -Resort Hotel,0,272,2017,May,29,15,0,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,241.0,179.0,0,Transient,214.99,1,2,Check-Out,2020-04-02 -City Hotel,0,138,2016,October,32,21,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,96.07,0,0,Canceled,2019-09-03 -City Hotel,1,89,2015,September,33,26,1,2,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.35,0,0,No-Show,2019-08-04 -City Hotel,1,2,2016,December,4,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Canceled,2018-11-02 -Resort Hotel,1,59,2017,April,37,21,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,229.3,0,0,Canceled,2020-04-02 -Resort Hotel,1,246,2016,September,36,27,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,62.16,0,0,Canceled,2019-05-04 -City Hotel,1,309,2017,June,28,21,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,103.27,0,0,Canceled,2020-03-03 -City Hotel,0,15,2016,September,34,18,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,100.18,0,3,Check-Out,2018-06-02 -Resort Hotel,0,240,2016,September,33,5,2,10,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,61.62,0,0,Check-Out,2019-10-04 -City Hotel,1,252,2017,May,23,6,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,120.82,0,0,Canceled,2020-02-01 -Resort Hotel,0,354,2016,October,45,2,1,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient-Party,63.91,0,0,Check-Out,2019-12-04 -City Hotel,1,282,2016,January,5,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,2.0,179.0,37,Transient-Party,75.68,0,0,Canceled,2018-10-03 -Resort Hotel,1,251,2016,July,44,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,63.65,0,0,Canceled,2019-07-04 -City Hotel,0,1,2017,February,9,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,77.0,0,Group,40.6,1,0,Check-Out,2019-10-04 -Resort Hotel,0,97,2017,May,16,21,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,E,E,0,No Deposit,89.0,179.0,0,Transient,63.77,0,1,Check-Out,2019-03-04 -City Hotel,1,98,2017,June,20,11,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,131.71,0,3,Canceled,2020-02-01 -Resort Hotel,0,1,2016,August,34,25,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,80.01,0,0,Check-Out,2019-08-04 -City Hotel,1,81,2017,July,36,16,2,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,153.16,0,1,Canceled,2020-02-01 -Resort Hotel,0,49,2017,May,23,24,2,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,7.0,179.0,0,Transient,120.98,0,2,Check-Out,2020-04-02 -City Hotel,1,297,2016,August,28,2,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,122.21,0,0,Canceled,2019-02-01 -Resort Hotel,0,15,2016,May,18,24,1,1,1,1.0,0,BB,ESP,Direct,Direct,0,0,0,L,E,2,No Deposit,18.0,179.0,0,Transient,60.89,0,0,Check-Out,2019-08-04 -City Hotel,0,149,2016,May,28,28,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,4.0,179.0,18,Transient-Party,69.15,0,0,Check-Out,2019-12-04 -Resort Hotel,0,44,2015,March,11,31,2,0,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,288.0,179.0,0,Transient-Party,43.03,0,0,Check-Out,2018-12-03 -City Hotel,1,156,2017,June,27,2,0,4,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,96.84,0,3,Canceled,2019-12-04 -City Hotel,1,0,2016,February,4,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,D,0,No Deposit,11.0,179.0,0,Transient,73.26,0,0,No-Show,2018-12-03 -Resort Hotel,0,15,2017,May,27,31,0,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,62.88,0,0,Check-Out,2020-04-02 -Resort Hotel,0,60,2015,December,51,23,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,46.94,0,2,Check-Out,2018-08-03 -City Hotel,1,2,2016,April,16,9,0,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,71.9,0,0,Canceled,2019-02-01 -Resort Hotel,0,36,2015,August,33,18,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,192.04,0,1,Check-Out,2018-05-03 -Resort Hotel,0,38,2016,January,10,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,290.0,179.0,0,Transient,59.32,0,0,Check-Out,2018-11-02 -Resort Hotel,1,0,2017,January,34,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,A,0,Non Refund,14.0,179.0,0,Transient,156.97,0,0,Canceled,2018-08-03 -Resort Hotel,0,300,2017,February,9,9,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,2,No Deposit,378.0,179.0,0,Contract,41.63,0,0,Check-Out,2020-02-01 -Resort Hotel,0,38,2015,December,44,27,0,2,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,2,No Deposit,75.0,179.0,0,Transient-Party,72.79,0,0,Check-Out,2018-07-03 -City Hotel,1,37,2015,September,38,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,59.82,0,0,Canceled,2018-08-03 -City Hotel,1,241,2015,June,25,10,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,59.75,0,0,Canceled,2018-11-02 -City Hotel,0,103,2016,December,42,2,1,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,76.07,0,0,Check-Out,2019-12-04 -City Hotel,0,15,2017,February,7,9,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.04,0,0,Check-Out,2020-02-01 -City Hotel,0,266,2017,July,31,14,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.19,0,1,Check-Out,2020-06-02 -Resort Hotel,1,2,2017,February,8,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,241.0,179.0,0,Group,60.21,0,1,Canceled,2020-02-01 -Resort Hotel,1,39,2017,March,10,30,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,153.0,179.0,0,Transient,64.58,0,0,Canceled,2020-01-04 -Resort Hotel,0,16,2016,January,10,20,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-01-03 -City Hotel,1,43,2015,July,32,17,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.47,0,0,Canceled,2018-07-03 -City Hotel,1,31,2016,March,11,13,2,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,72.21,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2016,October,41,1,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,2,No Deposit,14.0,230.0,0,Transient,85.49,1,0,Check-Out,2019-09-03 -City Hotel,0,30,2015,December,52,20,0,2,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,C,3,No Deposit,44.0,179.0,0,Transient-Party,71.93,1,2,Check-Out,2018-11-02 -City Hotel,1,205,2015,July,34,21,1,5,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,65.23,0,2,Canceled,2018-07-03 -City Hotel,0,1,2017,May,23,12,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,166.57,0,0,Check-Out,2020-02-01 -City Hotel,1,2,2015,October,45,21,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,83.85,0,0,Check-Out,2018-09-02 -Resort Hotel,0,15,2015,August,37,16,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,41.03,0,2,Check-Out,2018-05-03 -City Hotel,0,9,2015,July,24,20,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.07,0,0,Canceled,2018-06-02 -City Hotel,1,314,2017,July,29,29,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,77.23,0,0,Check-Out,2020-07-03 -City Hotel,1,92,2016,November,45,6,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.08,0,0,Canceled,2019-09-03 -Resort Hotel,0,21,2017,January,11,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,70.91,0,0,Check-Out,2019-12-04 -City Hotel,0,2,2017,February,10,21,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.37,0,2,Check-Out,2020-02-01 -City Hotel,0,39,2017,August,35,21,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.76,0,0,Check-Out,2020-06-02 -City Hotel,1,11,2017,January,27,16,0,1,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,160.19,0,2,Canceled,2019-01-03 -City Hotel,0,97,2017,August,16,15,0,2,2,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,185.02,1,3,Check-Out,2020-07-03 -Resort Hotel,0,206,2016,October,39,5,2,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,88.88,0,2,Check-Out,2019-07-04 -Resort Hotel,0,0,2017,January,3,25,0,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,190.0,102.0,0,Transient,34.13,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2015,September,44,15,0,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,12,2017,February,8,15,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,331.0,0,Transient,57.75,0,0,Check-Out,2020-01-04 -City Hotel,1,33,2016,May,17,9,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient-Party,102.64,0,0,Canceled,2019-03-04 -City Hotel,0,6,2016,September,44,27,0,1,1,0.0,0,HB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,162.13,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2016,October,43,21,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.83,0,0,Check-Out,2019-09-03 -Resort Hotel,1,36,2016,February,11,6,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,296.0,179.0,0,Transient,43.82,0,0,Canceled,2018-10-03 -City Hotel,0,0,2017,May,20,8,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,B,0,No Deposit,17.0,179.0,0,Transient,4.58,0,0,Check-Out,2019-09-03 -City Hotel,0,13,2016,August,38,25,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,188.95,0,1,Check-Out,2019-06-03 -Resort Hotel,0,18,2017,March,9,25,1,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,237.0,179.0,0,Transient,74.92,1,3,Check-Out,2020-05-03 -City Hotel,1,40,2016,June,27,25,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,74.04,0,0,Canceled,2019-03-04 -Resort Hotel,0,74,2015,December,53,18,2,5,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,44.15,0,2,Check-Out,2019-01-03 -City Hotel,0,3,2016,October,42,9,1,1,2,0.0,0,BB,BEL,Online TA,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.58,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,September,44,27,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.51,0,2,Check-Out,2019-03-04 -City Hotel,1,144,2017,January,8,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.0,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2015,August,37,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,62.03,0,0,Check-Out,2018-08-03 -City Hotel,1,109,2017,April,16,15,2,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,164.13,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2016,October,43,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,15.0,240.0,0,Transient,37.73,0,0,Check-Out,2019-07-04 -Resort Hotel,0,3,2015,October,42,2,0,5,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,94.99,0,1,Check-Out,2018-08-03 -City Hotel,0,249,2015,November,41,21,2,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,61,Transient-Party,59.24,0,0,Check-Out,2018-08-03 -City Hotel,0,103,2015,July,33,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,62.59,0,0,Check-Out,2018-06-02 -City Hotel,1,155,2016,February,9,25,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,98.58,0,0,Canceled,2018-12-03 -City Hotel,1,47,2016,December,5,30,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,94.15,0,3,Canceled,2019-10-04 -Resort Hotel,0,2,2016,February,11,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,12.0,45.0,0,Transient-Party,48.53,0,1,Check-Out,2019-10-04 -City Hotel,0,1,2015,July,33,23,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,66.17,0,1,Check-Out,2018-06-02 -Resort Hotel,0,92,2016,August,35,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,124.18,0,1,Check-Out,2019-06-03 -City Hotel,0,12,2016,October,45,9,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,B,0,No Deposit,17.0,179.0,0,Transient,2.33,0,3,Check-Out,2019-11-03 -City Hotel,1,364,2015,August,32,14,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.7,0,2,Canceled,2019-04-03 -Resort Hotel,0,3,2015,November,53,30,1,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,242.0,179.0,0,Transient,37.89,0,0,Check-Out,2018-11-02 -City Hotel,0,10,2017,April,17,23,1,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.36,0,0,Check-Out,2020-03-03 -City Hotel,0,44,2016,November,45,17,0,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,119.55,0,0,Check-Out,2019-12-04 -City Hotel,1,1,2017,October,44,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,83.98,0,0,No-Show,2020-01-04 -City Hotel,0,100,2017,April,31,16,0,5,2,0.0,0,BB,FRA,Direct,Direct,1,0,0,E,D,0,No Deposit,12.0,179.0,0,Transient,148.26,0,0,Check-Out,2020-02-01 -City Hotel,0,273,2017,August,27,31,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,78.27,0,1,Check-Out,2020-04-02 -Resort Hotel,0,12,2016,February,9,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,D,0,No Deposit,179.0,65.0,0,Transient,49.64,1,0,Check-Out,2018-10-03 -City Hotel,0,1,2017,March,24,7,1,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,190.44,0,1,Check-Out,2019-12-04 -City Hotel,1,45,2016,June,21,20,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,86.86,0,0,Canceled,2019-02-01 -City Hotel,0,27,2016,December,52,27,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,13.0,179.0,0,Transient,63.72,0,3,Check-Out,2019-09-03 -City Hotel,0,13,2017,May,21,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,129.31,0,1,Check-Out,2020-03-03 -City Hotel,0,102,2017,June,20,24,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient-Party,84.75,0,0,Check-Out,2020-04-02 -Resort Hotel,1,36,2017,May,18,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,164.0,179.0,0,Transient,79.95,0,0,Canceled,2020-04-02 -City Hotel,0,235,2015,August,35,6,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,137.36,0,2,Check-Out,2018-06-02 -City Hotel,1,43,2017,March,18,15,2,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.87,0,1,Canceled,2020-01-04 -City Hotel,0,43,2016,May,43,27,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,118.27,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,February,11,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,248.0,179.0,0,Transient,48.81,0,1,Check-Out,2018-11-02 -City Hotel,0,9,2017,February,10,10,2,1,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Group,70.84,0,0,Check-Out,2020-02-01 -City Hotel,1,214,2017,April,15,5,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,226.0,179.0,0,Contract,114.64,0,0,Canceled,2020-01-04 -Resort Hotel,0,37,2017,January,2,5,3,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,G,2,No Deposit,346.0,179.0,0,Transient,28.4,0,0,Canceled,2019-11-03 -Resort Hotel,1,309,2017,May,22,12,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,F,0,No Deposit,174.0,179.0,0,Transient-Party,77.6,0,0,Canceled,2020-02-01 -Resort Hotel,1,393,2016,October,42,4,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,134.59,0,2,Canceled,2019-08-04 -City Hotel,1,16,2015,November,46,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,15.0,45.0,0,Transient,44.78,0,0,Canceled,2018-06-02 -City Hotel,0,45,2016,December,53,24,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.07,0,0,Check-Out,2019-12-04 -City Hotel,1,38,2015,June,44,28,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,6.0,179.0,0,Group,92.34,0,0,Canceled,2018-11-02 -City Hotel,0,105,2016,October,28,8,2,4,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,166.0,0,Transient,85.22,0,0,Check-Out,2019-09-03 -City Hotel,1,308,2015,September,43,27,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,122.01,0,0,Canceled,2018-08-03 -Resort Hotel,0,55,2016,March,15,25,2,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,186.62,1,2,Check-Out,2019-02-01 -City Hotel,1,0,2016,December,49,1,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,13.0,271.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -Resort Hotel,0,36,2015,July,35,16,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,43.64,0,2,Check-Out,2018-06-02 -City Hotel,1,160,2017,April,16,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,125.6,0,0,Canceled,2020-02-01 -City Hotel,0,29,2015,December,50,9,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,99.94,0,0,Check-Out,2018-12-03 -City Hotel,0,44,2017,April,21,9,0,2,1,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,88.0,0,Transient,130.77,0,0,Check-Out,2020-06-02 -Resort Hotel,0,58,2017,May,18,23,0,2,2,0.0,0,HB,AUT,Online TA,Corporate,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-03-03 -City Hotel,1,42,2017,July,35,21,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,80.21,0,0,Canceled,2019-10-04 -City Hotel,1,28,2016,December,53,25,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.41,0,0,Canceled,2019-12-04 -City Hotel,1,103,2016,May,21,26,2,3,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,200.75,0,0,Canceled,2019-01-03 -City Hotel,1,299,2016,October,26,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.85,0,0,Canceled,2019-10-04 -City Hotel,1,246,2016,February,41,28,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,66.47,0,2,Canceled,2018-12-03 -City Hotel,1,0,2016,July,29,1,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,177.03,0,2,No-Show,2019-05-04 -Resort Hotel,0,10,2017,August,33,31,1,5,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,219.89,0,2,Check-Out,2020-06-02 -City Hotel,0,1,2016,June,27,2,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,134.18,0,1,Check-Out,2019-03-04 -Resort Hotel,0,95,2016,April,17,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,62.31,1,1,Check-Out,2019-02-01 -City Hotel,1,304,2017,March,34,29,2,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Canceled,2020-05-03 -City Hotel,1,189,2015,September,45,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.16,0,0,Canceled,2018-08-03 -City Hotel,1,8,2015,August,35,28,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,170.31,0,0,No-Show,2019-04-03 -City Hotel,1,443,2016,September,37,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.39,0,0,Canceled,2018-08-03 -City Hotel,0,246,2015,September,32,20,1,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,91.0,179.0,0,Transient-Party,122.21,0,0,Check-Out,2018-07-03 -Resort Hotel,0,63,2017,August,38,12,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,193.19,1,1,Canceled,2020-06-02 -Resort Hotel,0,48,2015,December,46,28,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,54.26,0,1,Check-Out,2018-07-03 -Resort Hotel,0,0,2016,January,4,23,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient-Party,30.29,0,0,Check-Out,2018-11-02 -City Hotel,1,1,2016,November,35,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.58,0,0,No-Show,2019-06-03 -City Hotel,0,253,2017,June,27,10,0,2,2,0.0,0,BB,CHE,Groups,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,101.57,0,1,Check-Out,2020-06-02 -City Hotel,0,35,2017,April,8,18,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.64,0,1,Check-Out,2020-02-01 -Resort Hotel,0,1,2015,December,48,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,78.0,0,Transient,73.14,0,0,Check-Out,2019-05-04 -Resort Hotel,0,56,2016,April,26,22,2,4,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,93.29,0,0,Check-Out,2019-01-03 -Resort Hotel,0,39,2016,November,45,6,2,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,117.85,0,0,Check-Out,2019-11-03 -Resort Hotel,0,2,2015,February,9,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,18.0,179.0,0,Transient,45.67,1,0,Check-Out,2019-01-03 -City Hotel,0,23,2017,August,32,11,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,134.97,0,0,Check-Out,2020-06-02 -City Hotel,0,34,2017,February,4,28,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.63,0,0,Check-Out,2019-10-04 -City Hotel,1,15,2015,August,37,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.54,0,0,Canceled,2018-08-03 -Resort Hotel,0,80,2017,April,18,27,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient-Party,68.06,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,May,28,9,0,1,1,0.0,0,BB,NLD,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,189.0,331.0,0,Transient,123.8,0,0,Check-Out,2020-03-03 -Resort Hotel,0,13,2016,May,22,24,2,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,41.95,0,2,Check-Out,2019-02-01 -City Hotel,0,31,2017,February,10,26,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,239.0,179.0,0,Transient,76.77,1,0,Check-Out,2020-03-03 -Resort Hotel,1,0,2016,October,45,16,2,1,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,164.1,0,0,Canceled,2019-07-04 -City Hotel,0,15,2017,June,31,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,121.63,0,1,Check-Out,2020-07-03 -City Hotel,0,7,2016,August,39,5,0,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Canceled,2019-06-03 -Resort Hotel,1,249,2017,July,26,12,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,61.86,0,1,Canceled,2019-12-04 -Resort Hotel,0,237,2017,May,23,31,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,77.14,0,1,Check-Out,2020-05-03 -Resort Hotel,0,38,2015,August,35,10,1,1,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-01-03 -City Hotel,0,252,2016,October,41,27,0,1,2,0.0,0,BB,AUT,Offline TA/TO,Corporate,0,0,0,A,A,2,No Deposit,10.0,331.0,0,Transient,97.27,0,0,Check-Out,2019-08-04 -Resort Hotel,0,11,2016,February,11,21,1,0,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,113.0,179.0,0,Transient,75.1,0,0,Check-Out,2019-01-03 -City Hotel,0,80,2016,November,53,29,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.64,0,2,Check-Out,2019-11-03 -City Hotel,0,105,2017,May,33,31,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,65.28,0,0,Check-Out,2020-03-03 -City Hotel,0,33,2017,June,31,4,0,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,153.28,0,3,Check-Out,2019-06-03 -Resort Hotel,1,0,2016,October,41,16,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,140.71,0,0,Canceled,2019-07-04 -City Hotel,1,402,2016,May,27,8,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,107.49,0,0,Canceled,2019-05-04 -City Hotel,0,13,2015,October,45,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,60.49,0,0,Check-Out,2018-08-03 -Resort Hotel,0,239,2016,July,32,2,3,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,61.24,0,0,Check-Out,2018-01-03 -City Hotel,0,189,2015,October,43,10,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,66.25,0,0,Check-Out,2018-09-02 -City Hotel,0,43,2016,April,19,10,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,86.59,1,1,Check-Out,2019-02-01 -Resort Hotel,0,93,2017,February,14,27,2,1,2,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,95.0,179.0,0,Transient-Party,76.13,0,0,Check-Out,2019-10-04 -City Hotel,0,16,2017,July,33,20,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.52,0,2,Check-Out,2020-06-02 -Resort Hotel,0,263,2016,October,44,25,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,177.0,179.0,0,Transient,83.74,0,0,Check-Out,2019-05-04 -City Hotel,0,58,2016,March,9,12,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,41.0,179.0,0,Transient-Party,61.42,0,0,Check-Out,2018-11-02 -City Hotel,0,31,2017,April,15,14,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,90.92,0,0,Check-Out,2020-03-03 -City Hotel,0,91,2016,June,27,13,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,77.0,179.0,0,Transient,104.68,1,0,Check-Out,2019-06-03 -City Hotel,1,108,2016,February,8,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,0,Contract,60.69,0,0,Canceled,2018-12-03 -City Hotel,0,59,2016,April,17,24,2,1,3,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,184.0,0,Transient,85.86,0,0,Check-Out,2019-03-04 -Resort Hotel,0,242,2016,July,33,14,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,237.02,0,3,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,May,11,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,37.0,72.0,0,Transient,62.63,0,0,Check-Out,2019-03-04 -Resort Hotel,1,12,2016,March,9,16,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,175.89,0,1,No-Show,2019-02-01 -City Hotel,0,0,2017,June,21,28,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,172.99,0,1,Check-Out,2020-06-02 -City Hotel,0,20,2016,June,10,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,87.0,179.0,63,Transient,74.76,0,0,Check-Out,2019-03-04 -Resort Hotel,1,1,2015,August,37,2,0,1,2,1.0,0,BB,BRA,Online TA,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,151.38,0,2,Canceled,2018-06-02 -City Hotel,0,14,2015,October,47,18,1,1,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,33.42,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,March,15,7,1,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,G,F,1,No Deposit,17.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -Resort Hotel,0,4,2016,April,17,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,62.82,1,1,Check-Out,2018-12-03 -City Hotel,0,239,2015,July,33,21,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,125.09,0,0,Check-Out,2017-10-03 -Resort Hotel,1,172,2017,July,24,11,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,179.21,0,0,Canceled,2020-07-03 -Resort Hotel,1,114,2017,June,26,20,3,7,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient,115.52,0,1,Canceled,2020-02-01 -City Hotel,1,255,2016,August,34,30,2,4,3,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,195.4,0,3,Canceled,2019-11-03 -City Hotel,0,12,2017,May,23,27,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.74,0,1,Check-Out,2020-02-01 -City Hotel,1,48,2016,April,18,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,114.69,0,0,Canceled,2019-02-01 -Resort Hotel,0,48,2015,August,36,21,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,220.53,1,1,Check-Out,2018-06-02 -City Hotel,0,93,2016,July,21,28,2,3,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,8.0,179.0,0,Transient-Party,94.99,0,1,Canceled,2019-05-04 -City Hotel,0,193,2016,December,26,23,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,64.0,179.0,0,Transient,91.35,0,0,Check-Out,2019-11-03 -City Hotel,1,175,2015,September,44,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,65.89,0,0,Canceled,2018-08-03 -City Hotel,1,0,2017,February,8,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,0,Non Refund,10.0,179.0,0,Transient,60.84,0,0,Canceled,2020-02-01 -City Hotel,0,150,2017,July,34,21,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,164.0,179.0,0,Transient,130.67,0,0,Check-Out,2020-06-02 -Resort Hotel,0,18,2017,August,36,14,1,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,225.11,0,0,Canceled,2020-06-02 -City Hotel,0,33,2017,April,18,31,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,172.24,0,1,Check-Out,2020-03-03 -City Hotel,1,7,2015,August,38,6,0,2,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,100.75,0,1,Check-Out,2019-06-03 -City Hotel,0,151,2015,July,31,8,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,172.8,0,0,Check-Out,2020-04-02 -Resort Hotel,0,36,2017,April,18,29,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,70.47,0,1,Check-Out,2020-03-03 -Resort Hotel,1,143,2016,March,16,25,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Transient,92.49,0,0,Canceled,2019-02-01 -City Hotel,0,11,2016,March,17,10,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.17,0,1,Check-Out,2019-03-04 -City Hotel,1,14,2017,June,18,14,0,3,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.11,0,1,Canceled,2020-02-01 -City Hotel,0,19,2015,September,42,25,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,63.16,0,0,Check-Out,2018-08-03 -City Hotel,0,36,2015,October,53,6,2,5,2,2.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,145.21,0,2,Check-Out,2019-05-04 -City Hotel,1,255,2016,October,43,26,1,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,95.37,0,0,Canceled,2019-06-03 -City Hotel,1,11,2016,December,52,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,65.0,0,Transient,61.18,0,0,Canceled,2019-11-03 -City Hotel,1,321,2016,February,21,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.22,0,0,Canceled,2018-11-02 -Resort Hotel,1,271,2015,December,50,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.36,0,0,Canceled,2017-11-02 -Resort Hotel,1,1,2017,March,9,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,228.0,0,Transient,62.78,0,0,Check-Out,2020-04-02 -Resort Hotel,0,8,2016,August,4,21,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.07,0,0,Check-Out,2018-12-03 -City Hotel,0,42,2016,July,36,15,2,5,3,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,C,1,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,202,2016,August,42,28,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,252.0,0,0,Canceled,2019-02-01 -City Hotel,1,42,2016,October,41,13,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,101.9,0,2,Canceled,2018-11-02 -City Hotel,1,247,2015,September,45,28,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,95.06,0,0,Canceled,2018-06-02 -City Hotel,0,283,2017,August,32,2,0,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,237.66,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,June,36,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,0,No Deposit,250.0,179.0,0,Transient,78.51,1,0,Check-Out,2019-03-04 -City Hotel,1,292,2017,August,21,29,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.19,0,0,Canceled,2020-05-03 -City Hotel,0,57,2017,March,10,24,2,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.78,0,2,Check-Out,2020-02-01 -Resort Hotel,1,14,2016,December,16,3,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,2,No Deposit,13.0,207.0,0,Transient,40.83,0,0,Canceled,2018-12-03 -City Hotel,0,96,2015,July,37,24,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,28.0,179.0,0,Contract,62.36,0,2,Check-Out,2018-08-03 -City Hotel,0,106,2016,July,33,30,0,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,76.74,0,3,Check-Out,2019-07-04 -City Hotel,0,112,2016,October,43,14,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,77.77,0,0,Check-Out,2018-08-03 -City Hotel,0,45,2017,July,25,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,243.0,0,Transient,106.31,0,0,Check-Out,2020-06-02 -City Hotel,1,145,2015,December,53,30,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.96,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2015,November,50,9,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,1,A,A,0,No Deposit,241.0,179.0,0,Group,36.94,0,0,Check-Out,2018-09-02 -City Hotel,1,6,2017,March,17,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,G,0,No Deposit,12.0,241.0,0,Transient,96.24,0,0,Canceled,2020-01-04 -Resort Hotel,0,9,2016,July,33,17,2,2,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient-Party,138.06,0,1,Check-Out,2019-06-03 -City Hotel,0,2,2015,December,51,25,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,40.91,0,0,Check-Out,2018-11-02 -City Hotel,0,256,2016,June,41,23,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,60,Transient-Party,68.19,0,0,Check-Out,2019-04-03 -Resort Hotel,0,191,2016,September,35,25,3,3,2,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,68.03,0,0,Check-Out,2019-06-03 -Resort Hotel,0,15,2017,February,10,31,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,315.0,179.0,0,Transient,78.65,0,1,Check-Out,2019-10-04 -Resort Hotel,0,55,2016,December,50,29,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,88.91,0,1,Check-Out,2019-12-04 -City Hotel,1,320,2016,May,22,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.38,0,0,Canceled,2017-11-02 -City Hotel,0,7,2015,June,27,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,1,No Deposit,16.0,45.0,0,Transient-Party,62.01,0,0,Check-Out,2018-06-02 -City Hotel,0,6,2015,November,51,30,1,2,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient-Party,30.72,0,0,Check-Out,2018-08-03 -City Hotel,0,38,2016,March,12,9,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,65.72,0,2,Check-Out,2018-11-02 -Resort Hotel,0,113,2016,August,36,10,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,136.9,0,0,Check-Out,2019-04-03 -Resort Hotel,0,4,2015,July,37,6,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,252.0,1,2,Check-Out,2018-06-02 -Resort Hotel,1,239,2015,October,51,25,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,65.44,0,0,Canceled,2018-06-02 -City Hotel,0,21,2017,August,32,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-06-02 -City Hotel,1,25,2016,March,4,5,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.12,0,2,No-Show,2019-03-04 -City Hotel,1,198,2017,March,22,24,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,39,Transient,116.61,0,0,Canceled,2018-11-02 -City Hotel,0,30,2016,October,44,17,2,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,E,E,0,No Deposit,15.0,331.0,0,Transient,76.07,1,0,Check-Out,2019-09-03 -City Hotel,0,38,2016,October,45,13,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,6.0,179.0,0,Transient,95.92,0,1,Check-Out,2019-09-03 -City Hotel,0,241,2016,August,32,30,2,7,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,152.24,0,1,Check-Out,2019-06-03 -Resort Hotel,0,131,2016,March,11,31,0,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,69.55,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2017,February,9,15,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,34.0,179.0,0,Transient-Party,62.82,0,0,Check-Out,2020-03-03 -City Hotel,1,54,2016,April,22,12,0,6,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,150.0,179.0,0,Transient,89.4,0,0,Canceled,2019-01-03 -City Hotel,0,24,2016,September,26,22,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,92.05,0,1,Check-Out,2019-02-01 -Resort Hotel,0,142,2016,March,9,31,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient,63.75,0,0,Check-Out,2019-02-01 -City Hotel,0,86,2016,January,9,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,133.0,179.0,0,Transient,89.9,0,0,Check-Out,2019-02-01 -Resort Hotel,0,6,2016,October,51,28,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,2,No Deposit,14.0,94.0,0,Transient,35.93,0,1,Check-Out,2019-07-04 -Resort Hotel,0,51,2016,August,39,7,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,195.2,0,2,Check-Out,2019-08-04 -City Hotel,0,341,2016,May,20,9,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,129.3,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2015,September,39,12,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,3.0,179.0,0,Transient-Party,62.64,0,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2015,August,35,19,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.07,0,0,Check-Out,2018-06-02 -City Hotel,0,85,2016,April,16,24,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,154.19,0,0,Check-Out,2019-03-04 -City Hotel,0,3,2016,June,26,16,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,D,2,No Deposit,16.0,173.0,0,Transient,118.45,0,0,Check-Out,2019-04-03 -City Hotel,0,11,2017,May,21,15,0,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,134.92,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,March,31,18,2,3,1,0.0,0,HB,PRT,Complementary,Direct,1,0,0,G,F,1,No Deposit,18.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2015,October,46,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,259.0,0,Transient-Party,27.57,0,0,Check-Out,2018-08-03 -Resort Hotel,0,105,2017,August,31,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,174.0,179.0,0,Transient,209.87,0,0,Check-Out,2020-07-03 -City Hotel,0,33,2015,December,49,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,60.88,0,0,Canceled,2018-08-03 -Resort Hotel,0,40,2016,March,10,13,2,5,2,0.0,0,FB,GBR,Corporate,Direct,0,0,0,E,E,0,No Deposit,325.0,179.0,0,Transient,66.37,0,0,Check-Out,2019-04-03 -Resort Hotel,0,3,2016,January,10,6,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,37.03,0,1,Check-Out,2018-10-03 -Resort Hotel,0,235,2015,July,30,8,2,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,100.22,0,0,Check-Out,2018-05-03 -City Hotel,0,18,2017,April,18,13,1,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,42.0,179.0,0,Transient-Party,62.27,0,0,Check-Out,2019-11-03 -City Hotel,1,155,2016,April,15,21,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,100.75,0,0,Canceled,2019-01-03 -City Hotel,0,21,2017,March,11,30,0,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,126.25,0,3,Check-Out,2020-02-01 -City Hotel,1,0,2017,May,27,9,1,0,2,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,3.26,0,0,Canceled,2020-05-03 -City Hotel,1,305,2017,July,38,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,103.9,0,0,Canceled,2019-09-03 -Resort Hotel,1,122,2017,August,32,14,3,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,162.0,179.0,0,Transient,120.5,0,0,Canceled,2020-04-02 -Resort Hotel,1,48,2016,March,16,4,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,156.49,0,0,Canceled,2019-01-03 -Resort Hotel,0,145,2017,August,36,10,2,5,2,0.0,0,HB,AUT,Offline TA/TO,Corporate,1,0,1,E,I,1,No Deposit,183.0,179.0,75,Transient-Party,232.01,1,1,Check-Out,2020-06-02 -Resort Hotel,0,132,2017,December,4,21,2,5,2,1.0,0,HB,ESP,Groups,TA/TO,0,0,0,C,C,3,No Deposit,246.0,179.0,0,Transient,89.63,1,2,Check-Out,2019-12-04 -City Hotel,0,78,2017,July,25,14,1,5,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,91.56,0,0,Check-Out,2020-01-04 -City Hotel,0,33,2016,August,38,3,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,212.35,0,3,Check-Out,2019-09-03 -City Hotel,0,16,2017,July,25,25,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.46,0,0,Check-Out,2020-04-02 -City Hotel,0,101,2015,October,43,2,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,60,Transient-Party,66.32,0,0,Check-Out,2018-08-03 -Resort Hotel,1,22,2017,May,20,31,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,150.89,0,0,Canceled,2020-04-02 -Resort Hotel,0,315,2017,May,22,8,2,4,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient-Party,78.33,0,0,Check-Out,2020-04-02 -City Hotel,0,146,2016,October,43,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,D,0,Non Refund,27.0,179.0,0,Transient,60.82,0,0,Check-Out,2019-03-04 -City Hotel,0,21,2017,June,35,31,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.13,0,1,Check-Out,2020-04-02 -City Hotel,0,39,2016,August,34,16,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,185.29,0,2,Check-Out,2019-08-04 -City Hotel,1,154,2016,May,19,30,2,5,3,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,2,No Deposit,78.0,179.0,0,Transient-Party,202.22,0,0,Check-Out,2019-02-01 -Resort Hotel,0,147,2017,February,12,31,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,73.4,0,0,Check-Out,2020-04-02 -City Hotel,1,53,2017,August,36,18,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,154.86,0,0,Canceled,2020-06-02 -City Hotel,0,8,2017,June,31,20,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.98,0,1,Check-Out,2020-04-02 -City Hotel,0,9,2017,July,27,30,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,1.45,0,1,Check-Out,2020-06-02 -Resort Hotel,0,104,2016,April,22,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,83.02,1,1,Check-Out,2020-02-01 -City Hotel,0,144,2017,June,26,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,100.17,0,1,Check-Out,2020-04-02 -City Hotel,0,252,2015,November,19,25,2,5,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,103.15,0,1,Check-Out,2019-05-04 -City Hotel,0,67,2017,June,36,18,1,3,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,134.99,1,3,Check-Out,2020-06-02 -City Hotel,0,18,2016,September,44,20,0,2,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,45.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -City Hotel,1,32,2016,November,50,18,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,61.08,0,0,Canceled,2019-07-04 -City Hotel,0,1,2017,March,9,10,0,1,2,0.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,99.67,0,0,Check-Out,2020-04-02 -City Hotel,0,95,2016,April,15,9,0,1,3,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,B,0,No Deposit,11.0,179.0,0,Transient,107.62,1,0,Check-Out,2019-03-04 -Resort Hotel,0,104,2017,July,32,4,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,135.33,1,1,Check-Out,2020-07-03 -City Hotel,0,11,2016,June,21,20,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,71.0,179.0,0,Transient,188.4,0,1,Check-Out,2019-06-03 -City Hotel,1,204,2016,April,18,16,0,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.01,0,0,Canceled,2019-02-01 -City Hotel,0,83,2016,May,21,5,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,62.05,0,1,Check-Out,2020-03-03 -City Hotel,0,248,2016,June,27,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,62,Transient,59.88,0,0,Canceled,2018-09-02 -City Hotel,0,25,2015,August,31,20,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,175.19,0,0,Check-Out,2018-05-03 -City Hotel,1,41,2016,October,36,16,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,106.31,0,2,Canceled,2019-08-04 -Resort Hotel,0,113,2016,June,34,4,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,201.33,0,2,Check-Out,2019-05-04 -Resort Hotel,0,271,2017,May,25,6,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,243.0,179.0,0,Transient,169.98,0,1,Check-Out,2020-04-02 -City Hotel,0,101,2017,April,11,18,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,97.2,0,0,Check-Out,2020-04-02 -Resort Hotel,1,325,2015,August,38,2,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,D,D,0,Non Refund,240.0,179.0,0,Transient,61.95,0,0,Canceled,2018-01-31 -City Hotel,0,93,2016,October,45,27,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,122.1,0,0,Check-Out,2019-06-03 -Resort Hotel,0,17,2016,August,35,21,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,152.67,0,0,Check-Out,2019-07-04 -City Hotel,1,251,2016,August,35,6,2,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,119.68,0,0,Canceled,2019-07-04 -City Hotel,0,24,2016,December,3,27,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,85.05,0,0,Check-Out,2018-11-02 -City Hotel,1,256,2015,November,50,18,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,1,0,A,A,0,Non Refund,12.0,45.0,0,Transient,41.1,0,0,Canceled,2018-09-02 -City Hotel,1,1,2016,September,38,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.55,0,0,Canceled,2017-12-03 -City Hotel,0,157,2017,June,26,19,2,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,131.3,0,0,Check-Out,2020-05-03 -City Hotel,0,38,2015,October,45,16,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,163.01,0,1,Check-Out,2019-06-03 -City Hotel,0,41,2016,March,16,24,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,114.32,0,2,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,May,30,11,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,41.47,0,2,Check-Out,2020-04-02 -Resort Hotel,0,160,2016,August,30,9,1,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,158.0,179.0,0,Transient,137.73,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2017,May,22,24,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,128.7,0,0,Check-Out,2020-04-02 -City Hotel,1,140,2015,July,33,22,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,131.99,0,0,Canceled,2018-12-03 -City Hotel,1,95,2016,July,31,27,2,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,92.38,0,0,Canceled,2019-05-04 -City Hotel,1,209,2017,June,23,14,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.5,0,3,Canceled,2019-06-03 -City Hotel,1,263,2017,May,19,21,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,84.0,179.0,0,Transient-Party,123.67,0,0,Canceled,2020-01-04 -City Hotel,1,57,2017,February,9,15,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,75.2,0,1,Canceled,2019-11-03 -Resort Hotel,0,17,2015,January,5,28,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,L,D,0,No Deposit,1.0,179.0,0,Contract,39.53,0,0,Check-Out,2018-12-03 -City Hotel,0,51,2015,December,49,9,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient,96.45,0,0,Check-Out,2018-08-03 -City Hotel,0,3,2015,July,33,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.55,0,1,Check-Out,2018-06-02 -Resort Hotel,1,180,2017,March,11,16,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,C,G,0,No Deposit,241.0,179.0,0,Transient,221.8,0,0,Canceled,2020-01-04 -City Hotel,0,240,2017,June,26,30,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.53,0,1,Check-Out,2020-06-02 -City Hotel,1,104,2017,February,17,13,4,3,1,0.0,0,BB,PRT,Aviation,TA/TO,0,0,0,A,D,0,No Deposit,178.0,207.0,0,Transient,72.88,0,0,Canceled,2020-03-03 -Resort Hotel,0,9,2015,December,52,23,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,87.83,0,0,Check-Out,2019-10-04 -City Hotel,0,87,2016,June,26,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.5,0,0,Check-Out,2019-04-03 -City Hotel,0,34,2017,May,22,17,0,1,2,0.0,0,BB,DEU,Direct,Direct,1,0,0,G,F,1,No Deposit,13.0,179.0,0,Transient-Party,74.79,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2017,May,23,6,1,4,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,F,0,No Deposit,15.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-04-02 -Resort Hotel,0,98,2016,March,22,25,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,76.27,1,1,Check-Out,2019-02-01 -Resort Hotel,0,2,2017,March,9,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,63.84,1,1,Check-Out,2019-05-04 -Resort Hotel,0,143,2016,August,34,24,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,1,No Deposit,81.0,179.0,0,Transient-Party,95.09,0,0,Check-Out,2020-06-02 -City Hotel,1,293,2017,June,25,8,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.46,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,March,8,13,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,93.77,0,1,Check-Out,2019-01-03 -Resort Hotel,1,102,2017,February,7,21,0,2,3,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,Non Refund,14.0,331.0,0,Transient,40.97,0,0,Canceled,2019-11-03 -Resort Hotel,0,194,2017,March,23,29,2,2,2,1.0,0,BB,GBR,Direct,Direct,1,0,0,E,F,0,No Deposit,247.0,179.0,0,Transient,70.38,0,2,Check-Out,2020-01-04 -Resort Hotel,0,0,2015,December,49,21,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,3.98,0,0,Check-Out,2018-11-02 -Resort Hotel,0,60,2015,July,33,30,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,52.46,0,0,Check-Out,2018-11-02 -City Hotel,0,44,2016,April,16,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,95.21,0,1,Check-Out,2019-02-01 -Resort Hotel,1,14,2016,July,27,21,0,4,2,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,I,0,No Deposit,10.0,179.0,0,Transient,50.41,0,0,Canceled,2019-10-04 -Resort Hotel,1,42,2016,February,12,29,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,361.0,179.0,0,Transient,75.17,0,0,Canceled,2018-12-03 -City Hotel,0,12,2016,January,43,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,93.85,0,0,Check-Out,2019-10-04 -City Hotel,0,39,2015,July,32,17,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,103.08,0,1,Check-Out,2018-06-02 -City Hotel,0,11,2017,February,3,13,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,72.0,0,Transient,60.96,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2016,February,10,29,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,63.0,0,Transient,69.18,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2015,September,37,27,0,3,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,L,F,2,No Deposit,14.0,179.0,0,Transient,3.32,0,0,Check-Out,2018-09-02 -City Hotel,1,104,2016,December,18,5,1,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,89.63,0,1,Canceled,2018-11-02 -City Hotel,1,10,2017,January,9,28,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,72.52,0,0,Canceled,2019-11-03 -Resort Hotel,1,26,2015,July,38,21,0,2,3,1.0,0,BB,POL,Direct,Direct,0,0,0,H,H,0,No Deposit,17.0,179.0,0,Transient,159.81,0,0,Check-Out,2018-06-02 -City Hotel,0,23,2016,January,4,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.09,0,0,Canceled,2019-10-04 -City Hotel,1,31,2017,February,9,21,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,187.93,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2017,March,11,14,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,185.14,1,0,Check-Out,2020-01-04 -Resort Hotel,0,167,2016,July,29,15,4,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,194.0,179.0,0,Transient,194.53,0,2,Check-Out,2019-07-04 -City Hotel,0,3,2015,October,43,27,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.17,0,0,Check-Out,2018-05-03 -Resort Hotel,0,1,2016,September,44,25,1,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,111.1,0,1,Check-Out,2019-05-04 -Resort Hotel,0,16,2015,December,53,9,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,42.39,0,2,Check-Out,2018-11-02 -City Hotel,0,25,2015,July,32,5,2,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,155.77,0,0,Check-Out,2018-06-02 -City Hotel,1,309,2016,December,53,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,40.83,0,0,Canceled,2018-11-02 -City Hotel,0,34,2017,June,4,28,1,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.4,0,1,Check-Out,2019-12-04 -City Hotel,1,404,2017,March,16,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,62.68,0,0,Canceled,2019-11-03 -City Hotel,0,10,2016,April,15,20,2,0,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,71.66,0,0,Check-Out,2019-02-01 -City Hotel,1,89,2016,August,11,25,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,12.0,179.0,0,Transient,67.54,0,0,Canceled,2019-01-03 -Resort Hotel,0,3,2016,November,26,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,371.0,331.0,0,Transient-Party,82.17,0,0,Check-Out,2019-06-03 -City Hotel,1,152,2017,August,32,11,0,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,E,0,Non Refund,243.0,179.0,0,Transient,187.31,0,0,Canceled,2020-03-03 -City Hotel,1,1,2016,January,3,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.13,0,0,No-Show,2019-01-03 -City Hotel,0,169,2017,July,31,5,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.86,0,1,Check-Out,2020-06-02 -City Hotel,0,145,2017,June,16,21,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,115.39,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2015,October,43,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,44.47,0,0,Check-Out,2018-07-03 -City Hotel,0,285,2017,May,21,24,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient-Party,86.21,0,1,Check-Out,2020-04-02 -City Hotel,0,326,2017,May,22,15,0,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,119.61,0,0,Check-Out,2020-03-03 -City Hotel,0,58,2016,November,51,21,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,65.28,0,0,Check-Out,2019-09-03 -City Hotel,0,189,2017,May,22,16,2,3,2,1.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,138.95,0,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,October,36,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,179.0,0,Transient,105.19,0,0,Check-Out,2019-11-03 -Resort Hotel,1,251,2017,February,11,11,2,1,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,99.0,179.0,0,Transient,87.28,0,0,Canceled,2019-11-03 -City Hotel,1,110,2016,March,16,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.22,0,0,Canceled,2019-02-01 -City Hotel,1,152,2016,March,18,31,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,1.0,179.0,0,Transient-Party,63.19,0,0,Canceled,2019-08-04 -City Hotel,1,2,2016,December,50,29,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,Non Refund,198.0,179.0,0,Transient,72.26,0,0,Canceled,2019-10-04 -Resort Hotel,0,2,2017,April,12,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,32.2,0,1,Check-Out,2020-02-01 -City Hotel,0,33,2015,October,44,10,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.02,0,0,Check-Out,2018-08-03 -City Hotel,1,19,2017,August,33,5,0,3,3,0.0,0,BB,PRT,Undefined,Undefined,1,1,1,B,B,0,No Deposit,14.0,179.0,75,Transient-Party,43.53,0,2,Canceled,2020-04-02 -City Hotel,1,40,2016,March,10,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,39,Transient,26.55,0,1,Canceled,2018-11-02 -Resort Hotel,0,42,2015,December,53,25,2,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,36.32,0,0,Check-Out,2018-12-03 -Resort Hotel,0,144,2017,July,33,4,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,117.06,0,2,Check-Out,2020-02-01 -Resort Hotel,0,2,2015,August,39,30,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,60.17,1,0,Check-Out,2018-06-02 -City Hotel,0,107,2016,June,26,2,0,3,1,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,137.68,0,1,Check-Out,2019-03-04 -City Hotel,1,44,2016,August,21,10,2,4,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,114.37,0,1,Canceled,2019-02-01 -City Hotel,0,47,2017,August,38,28,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,186.27,0,2,Check-Out,2020-06-02 -City Hotel,0,45,2017,May,27,15,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,228.83,0,0,Check-Out,2020-03-03 -City Hotel,0,151,2016,April,29,21,0,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,103.39,0,1,Check-Out,2019-03-04 -City Hotel,1,51,2017,March,11,24,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.67,0,0,Check-Out,2020-02-01 -City Hotel,0,103,2017,February,11,10,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,98.16,0,0,Check-Out,2019-11-03 -City Hotel,0,146,2016,May,23,8,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,91.4,0,0,Check-Out,2020-03-03 -City Hotel,0,111,2016,June,33,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.83,0,0,Check-Out,2018-11-02 -City Hotel,0,257,2016,September,27,23,0,3,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,111.75,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,August,4,30,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,E,0,No Deposit,16.0,179.0,0,Transient,189.55,0,0,Check-Out,2019-10-04 -City Hotel,1,15,2016,August,36,31,0,3,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,189.26,0,0,Canceled,2019-08-04 -City Hotel,0,146,2017,August,35,5,1,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,172.7,0,1,Check-Out,2020-07-03 -Resort Hotel,0,92,2016,July,25,9,1,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,93.0,179.0,0,Transient,99.86,0,0,Check-Out,2019-05-04 -Resort Hotel,0,253,2016,August,41,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,81.86,0,0,Check-Out,2019-06-03 -Resort Hotel,0,4,2016,October,45,27,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,35.95,0,2,Check-Out,2019-11-03 -City Hotel,0,10,2016,April,37,25,1,1,2,0.0,0,BB,ESP,Groups,Corporate,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,207.19,1,0,Check-Out,2020-06-02 -Resort Hotel,0,89,2016,July,29,21,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,217.58,0,0,Check-Out,2019-01-03 -City Hotel,0,247,2017,August,38,27,1,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,119.29,0,0,Check-Out,2020-06-02 -Resort Hotel,0,113,2016,October,42,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,238.0,179.0,0,Transient,95.4,0,1,Check-Out,2019-05-04 -City Hotel,1,444,2015,September,38,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.45,0,0,Canceled,2017-10-03 -Resort Hotel,0,2,2015,November,48,8,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,35.67,0,0,Check-Out,2018-11-02 -City Hotel,1,36,2015,September,45,6,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,89.76,0,0,Canceled,2018-05-03 -Resort Hotel,0,16,2017,May,38,31,0,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,164.54,1,3,Check-Out,2020-07-03 -Resort Hotel,0,261,2016,June,25,15,3,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,37.98,0,0,Check-Out,2019-05-04 -City Hotel,0,96,2016,October,42,24,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.99,0,2,Check-Out,2019-07-04 -City Hotel,0,48,2017,January,3,15,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,69.0,0,Transient,141.64,0,2,Check-Out,2020-03-03 -City Hotel,0,29,2016,July,33,10,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,90.15,0,1,Check-Out,2019-07-04 -City Hotel,0,0,2017,March,11,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,1,No Deposit,212.0,231.0,0,Transient-Party,65.27,0,0,Check-Out,2020-03-03 -City Hotel,1,306,2016,October,45,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,62,Transient,72.2,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,February,11,7,0,2,1,0.0,0,BB,,Direct,Direct,1,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,59.47,0,0,Check-Out,2018-10-03 -Resort Hotel,0,10,2017,May,37,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,120.64,0,0,Check-Out,2019-12-04 -Resort Hotel,1,325,2017,July,33,4,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,0,Contract,34.65,0,0,Canceled,2017-10-03 -Resort Hotel,1,45,2017,February,12,31,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient-Party,73.67,0,0,Canceled,2019-11-03 -Resort Hotel,1,12,2016,May,16,28,0,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,131.73,0,0,Canceled,2019-01-03 -Resort Hotel,0,13,2016,December,3,6,1,0,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,4.78,1,2,Check-Out,2018-11-02 -Resort Hotel,0,203,2017,August,32,13,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,100.14,0,3,Check-Out,2020-06-02 -Resort Hotel,0,104,2017,August,36,28,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,158.39,0,0,Check-Out,2020-07-03 -Resort Hotel,0,20,2017,July,32,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,158.74,0,1,Check-Out,2020-06-02 -City Hotel,0,53,2017,July,32,17,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,143.11,0,0,Check-Out,2020-05-03 -Resort Hotel,0,29,2017,April,20,8,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,0.01,0,2,Canceled,2020-01-04 -City Hotel,0,57,2017,June,27,27,0,3,1,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Contract,128.1,0,2,Check-Out,2020-02-01 -Resort Hotel,0,148,2016,November,51,29,1,4,2,0.0,0,Undefined,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,75.51,0,0,Check-Out,2019-08-04 -Resort Hotel,0,230,2016,August,37,30,1,5,2,1.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,181.8,0,2,Check-Out,2019-04-03 -Resort Hotel,0,293,2017,June,25,20,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,164.0,179.0,0,Transient,136.16,0,0,Check-Out,2020-04-02 -City Hotel,0,13,2017,February,10,28,2,1,1,0.0,0,BB,IRL,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,84.0,223.0,0,Transient-Party,31.85,0,0,Check-Out,2020-01-04 -Resort Hotel,0,58,2017,July,36,29,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-07-03 -City Hotel,1,151,2016,October,27,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,40,Transient,99.62,0,0,Canceled,2018-11-02 -City Hotel,0,148,2017,May,24,21,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Group,131.23,0,2,Check-Out,2020-03-03 -City Hotel,1,408,2015,October,46,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.41,0,0,Canceled,2017-11-02 -City Hotel,0,35,2017,July,31,13,1,3,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,242.92,0,0,Check-Out,2020-06-02 -City Hotel,1,262,2016,October,45,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,70.56,0,0,Canceled,2019-11-03 -City Hotel,0,38,2015,September,41,19,0,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,112.85,0,0,Check-Out,2018-08-03 -City Hotel,1,99,2017,March,16,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,39.83,0,0,Canceled,2019-10-04 -Resort Hotel,0,2,2016,May,22,14,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,No Deposit,318.0,179.0,0,Transient-Party,124.03,0,0,Check-Out,2019-07-04 -City Hotel,1,5,2016,February,10,25,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,98.15,0,3,Canceled,2018-10-03 -City Hotel,0,46,2017,March,17,31,0,1,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,58.0,179.0,0,Transient,124.8,0,2,Check-Out,2020-01-04 -City Hotel,1,117,2017,March,9,9,2,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,76.03,0,0,Canceled,2020-02-01 -City Hotel,1,28,2015,August,37,5,0,3,3,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient-Party,114.72,0,0,No-Show,2018-06-02 -Resort Hotel,1,0,2015,October,43,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,128.71,0,2,No-Show,2018-09-02 -City Hotel,1,89,2016,March,17,21,2,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,155.4,0,1,Canceled,2019-03-04 -Resort Hotel,1,150,2017,March,17,31,2,3,2,0.0,0,HB,PRT,Groups,Corporate,0,0,1,A,D,0,No Deposit,330.0,224.0,0,Transient,48.05,1,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,June,23,3,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,35.55,0,0,Check-Out,2019-02-01 -City Hotel,1,263,2016,September,44,27,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,9.0,179.0,0,Transient,122.49,0,1,Canceled,2018-08-03 -City Hotel,1,18,2015,November,44,10,0,2,1,0.0,0,HB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,12.0,179.0,0,Transient,91.65,0,1,Canceled,2018-08-03 -Resort Hotel,1,251,2017,May,23,14,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,E,0,Refundable,378.0,179.0,0,Transient-Party,87.77,0,0,Canceled,2019-08-04 -City Hotel,1,87,2016,July,34,20,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.67,0,0,Canceled,2019-02-01 -Resort Hotel,0,61,2015,December,49,26,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,39.2,0,0,Check-Out,2018-08-03 -City Hotel,1,174,2017,July,26,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.13,0,0,Canceled,2020-05-03 -City Hotel,0,36,2016,August,36,28,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,238.0,179.0,0,Transient,136.96,0,2,Check-Out,2019-06-03 -City Hotel,0,32,2016,April,17,13,2,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,77.7,0,0,Check-Out,2019-03-04 -City Hotel,0,42,2016,October,45,2,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,75.42,0,1,Check-Out,2019-01-03 -Resort Hotel,0,200,2017,May,11,9,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,89.39,0,1,Check-Out,2020-05-03 -Resort Hotel,0,0,2016,November,44,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,D,D,0,No Deposit,16.0,61.0,0,Transient,115.36,0,1,Check-Out,2019-06-03 -City Hotel,1,211,2017,August,35,2,0,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,201.37,0,0,Canceled,2020-07-03 -City Hotel,1,105,2017,February,10,29,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,198.0,179.0,0,Transient,105.12,0,3,Canceled,2020-03-03 -City Hotel,0,2,2016,April,15,12,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,A,0,No Deposit,15.0,179.0,0,Transient,161.64,0,3,Check-Out,2019-03-04 -Resort Hotel,1,32,2015,November,49,6,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,224.0,179.0,0,Transient-Party,60.23,0,0,Canceled,2018-08-03 -City Hotel,0,2,2017,July,37,24,2,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,97.51,0,0,Check-Out,2020-06-02 -Resort Hotel,0,242,2016,May,23,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,84.29,1,2,Check-Out,2019-02-01 -Resort Hotel,0,3,2016,January,22,27,1,0,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,G,H,1,No Deposit,16.0,179.0,0,Transient,156.27,1,1,Check-Out,2019-11-03 -Resort Hotel,0,7,2016,March,10,31,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,113.46,0,1,Check-Out,2019-02-01 -City Hotel,0,14,2016,June,50,30,2,1,1,0.0,0,BB,BRA,Groups,Corporate,0,0,0,E,D,0,No Deposit,43.0,331.0,0,Transient,103.78,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2016,October,42,5,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,136.88,0,2,Check-Out,2019-08-04 -Resort Hotel,0,101,2016,August,37,13,2,5,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,211.59,0,2,Check-Out,2019-07-04 -City Hotel,1,54,2016,December,50,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.8,0,0,Canceled,2019-09-03 -City Hotel,1,36,2016,September,42,5,2,7,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,145.29,0,0,No-Show,2019-04-03 -City Hotel,0,32,2016,January,4,30,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,78.67,0,1,Check-Out,2018-10-03 -City Hotel,0,0,2016,February,11,20,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,124.68,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2015,December,53,7,1,3,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,61.38,1,2,Check-Out,2018-11-02 -Resort Hotel,0,30,2017,January,4,24,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient,58.27,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2017,March,10,16,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,182.95,0,1,Check-Out,2020-03-03 -City Hotel,0,38,2017,August,35,19,2,5,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,78.7,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,April,17,3,0,1,1,0.0,0,BB,DEU,Aviation,GDS,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient,236.61,0,0,Check-Out,2019-06-03 -City Hotel,0,243,2016,July,31,27,2,5,1,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,3,No Deposit,26.0,179.0,0,Transient,106.74,0,0,No-Show,2019-05-04 -Resort Hotel,0,51,2016,October,45,16,2,7,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,16.0,235.0,75,Transient,45.83,0,0,Canceled,2019-06-03 -Resort Hotel,0,8,2016,December,50,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,45.0,0,Transient,33.93,1,0,Check-Out,2019-10-04 -Resort Hotel,0,51,2016,October,16,20,0,1,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,H,D,0,No Deposit,15.0,179.0,0,Transient,74.7,0,0,No-Show,2019-04-03 -Resort Hotel,0,0,2016,February,8,10,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,65.0,0,Transient,38.69,1,0,Check-Out,2018-11-02 -City Hotel,1,53,2017,August,36,15,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,122.98,0,0,Canceled,2020-03-03 -City Hotel,1,420,2015,November,45,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.25,0,0,Canceled,2017-12-03 -City Hotel,1,1,2016,October,3,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,10.0,45.0,0,Group,0.0,0,1,Canceled,2019-10-04 -City Hotel,0,0,2016,October,43,13,0,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.07,0,1,Check-Out,2019-09-03 -Resort Hotel,0,102,2017,March,18,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,224.0,0,Transient-Party,79.78,0,0,Check-Out,2019-03-04 -City Hotel,0,230,2016,July,28,5,2,2,2,0.0,0,HB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,107.3,0,0,Check-Out,2019-03-04 -Resort Hotel,0,18,2016,August,5,29,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,61.11,0,0,Check-Out,2019-03-04 -City Hotel,0,51,2017,June,35,4,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,102.02,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2015,October,42,7,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,A,0,No Deposit,247.0,179.0,0,Transient,42.51,0,1,Check-Out,2018-08-03 -City Hotel,1,8,2016,December,53,24,0,1,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,B,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,1,95,2016,March,9,13,0,2,3,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,123.26,0,0,Canceled,2019-03-04 -City Hotel,1,17,2016,August,35,5,0,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.19,0,0,Canceled,2019-07-04 -City Hotel,0,13,2016,June,15,17,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,154.83,0,1,Check-Out,2020-03-03 -Resort Hotel,0,47,2017,July,32,21,0,2,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,118.74,0,1,Check-Out,2020-07-03 -Resort Hotel,0,18,2017,March,16,7,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient,41.98,0,1,Check-Out,2020-01-04 -Resort Hotel,0,16,2016,October,50,9,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,223.0,0,Transient,52.17,0,0,Check-Out,2019-11-03 -Resort Hotel,0,5,2015,December,49,10,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient-Party,62.49,0,0,Check-Out,2018-09-02 -City Hotel,0,110,2016,June,26,27,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,103.53,0,0,Check-Out,2019-02-01 -Resort Hotel,0,210,2017,August,36,17,2,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,285.0,179.0,0,Transient-Party,105.08,0,0,Check-Out,2020-06-02 -City Hotel,0,81,2016,December,53,13,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,133.66,0,1,Check-Out,2019-11-03 -Resort Hotel,0,16,2017,April,18,20,2,5,2,1.0,0,HB,ESP,Groups,TA/TO,0,0,0,E,E,1,No Deposit,177.0,179.0,0,Transient-Party,82.48,0,0,Check-Out,2020-02-01 -Resort Hotel,0,190,2016,March,18,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,378.0,179.0,0,Transient-Party,66.84,0,0,Check-Out,2019-03-04 -City Hotel,0,251,2017,May,22,21,2,1,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.41,0,1,Check-Out,2020-03-03 -City Hotel,0,42,2015,August,28,9,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,126.1,0,0,Check-Out,2019-06-03 -Resort Hotel,1,186,2017,March,10,6,2,5,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,E,F,0,No Deposit,29.0,179.0,0,Transient,61.88,0,1,No-Show,2020-02-01 -Resort Hotel,0,47,2016,October,45,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,181.0,179.0,0,Contract,104.48,0,0,Check-Out,2019-08-04 -City Hotel,0,247,2016,October,25,5,2,2,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,80.37,0,0,Check-Out,2019-05-04 -City Hotel,1,438,2015,August,39,30,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,69.44,0,0,Canceled,2018-08-03 -City Hotel,0,42,2016,March,16,16,0,3,1,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,68.0,179.0,0,Transient,74.41,0,0,Check-Out,2020-01-04 -Resort Hotel,1,61,2016,May,51,24,2,4,2,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,130.83,0,0,Canceled,2019-01-03 -City Hotel,0,0,2015,October,44,13,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,38.73,0,0,Check-Out,2019-06-03 -City Hotel,1,150,2016,September,43,27,2,5,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Transient,119.29,0,0,Canceled,2019-05-04 -City Hotel,1,94,2015,August,36,18,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,102.33,0,0,Canceled,2018-08-03 -City Hotel,0,163,2016,July,37,23,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,200.91,0,0,Check-Out,2019-04-03 -Resort Hotel,0,43,2015,October,43,8,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,123.12,0,0,Check-Out,2018-09-02 -Resort Hotel,0,242,2016,July,34,10,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-08-04 -City Hotel,0,11,2017,August,39,29,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,156.83,0,2,Check-Out,2020-01-04 -City Hotel,0,89,2017,April,15,7,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.07,0,2,Canceled,2020-02-01 -Resort Hotel,0,129,2016,August,37,19,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,60.93,0,2,Check-Out,2019-06-03 -City Hotel,1,26,2016,March,11,16,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,41,Transient,77.25,0,0,Canceled,2019-03-04 -Resort Hotel,0,48,2016,April,22,23,2,5,2,1.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,C,C,3,No Deposit,201.0,179.0,0,Transient,117.4,1,2,Check-Out,2020-03-03 -City Hotel,0,2,2015,October,32,20,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,1,No Deposit,11.0,63.0,0,Transient,62.04,0,0,Check-Out,2018-05-03 -Resort Hotel,0,57,2017,March,16,30,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,156.35,0,2,Check-Out,2019-12-04 -Resort Hotel,0,163,2017,July,35,14,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Contract,129.26,0,1,Check-Out,2020-06-02 -City Hotel,1,311,2016,July,31,6,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,62.85,0,0,Canceled,2019-06-03 -City Hotel,1,104,2016,July,32,9,0,5,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,142.52,0,1,Canceled,2019-06-03 -City Hotel,0,34,2016,October,44,17,2,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.53,0,0,Canceled,2019-10-04 -Resort Hotel,0,2,2017,March,11,26,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,42.71,0,1,Check-Out,2020-02-01 -City Hotel,1,296,2015,October,44,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,64.07,0,0,Canceled,2018-09-02 -Resort Hotel,0,233,2016,September,36,6,2,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,93.92,0,0,Check-Out,2018-09-02 -City Hotel,0,107,2015,December,50,27,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,50.0,179.0,0,Transient,60.64,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2017,February,10,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,96.22,0,0,Check-Out,2020-03-03 -City Hotel,0,146,2017,July,32,15,0,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,248.2,0,1,Check-Out,2020-06-02 -City Hotel,1,36,2016,December,51,28,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,172.97,0,2,Canceled,2018-12-03 -City Hotel,0,157,2015,July,36,30,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,95.43,0,0,Check-Out,2018-06-02 -City Hotel,1,54,2017,August,37,9,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,160.62,0,2,Canceled,2020-04-02 -City Hotel,0,139,2016,October,43,6,2,5,1,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.98,0,0,Check-Out,2019-11-03 -City Hotel,0,9,2015,June,28,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,105.8,0,1,Check-Out,2019-06-03 -Resort Hotel,1,285,2015,July,32,25,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,59.97,0,0,Canceled,2018-06-02 -City Hotel,0,17,2016,August,35,5,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.14,0,1,Check-Out,2019-05-04 -City Hotel,1,41,2017,July,31,21,2,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,61.75,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,December,50,24,0,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,103.21,1,2,Check-Out,2018-11-02 -City Hotel,1,51,2016,November,42,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,142.7,0,0,Canceled,2019-07-04 -Resort Hotel,0,11,2015,August,35,29,2,7,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,K,1,No Deposit,14.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-06-02 -City Hotel,0,90,2017,July,9,20,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,132.03,0,1,Check-Out,2020-06-02 -City Hotel,1,31,2016,November,44,17,0,2,1,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.26,0,0,Canceled,2019-10-04 -City Hotel,0,17,2016,August,36,31,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,131.6,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,December,50,3,0,1,1,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,132.59,1,0,Check-Out,2018-11-02 -City Hotel,0,48,2016,October,43,28,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,126.54,0,1,Check-Out,2018-09-02 -Resort Hotel,0,22,2015,November,50,21,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,76.44,0,0,Check-Out,2019-08-04 -City Hotel,0,15,2017,March,9,14,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.85,0,2,Check-Out,2020-03-03 -Resort Hotel,0,10,2017,February,8,21,2,0,1,0.0,0,BB,GBR,Direct,Corporate,0,0,0,A,A,1,No Deposit,15.0,331.0,0,Transient-Party,41.14,0,0,Check-Out,2019-11-03 -City Hotel,0,238,2016,March,11,30,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.63,0,1,Check-Out,2019-03-04 -Resort Hotel,0,190,2015,October,43,29,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,91.44,0,0,Check-Out,2018-09-02 -City Hotel,0,17,2017,March,11,28,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,74.29,0,0,Check-Out,2020-02-01 -Resort Hotel,0,313,2015,October,42,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,58.53,0,0,Canceled,2018-08-03 -Resort Hotel,0,236,2016,December,50,31,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,96.52,0,0,Check-Out,2019-11-03 -City Hotel,0,262,2017,March,15,9,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Contract,83.81,0,1,Check-Out,2020-04-02 -City Hotel,1,55,2017,March,16,13,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,115.39,0,0,Canceled,2020-03-03 -City Hotel,0,35,2016,September,27,3,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -City Hotel,0,15,2016,September,37,19,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Group,114.05,0,1,Check-Out,2018-08-03 -City Hotel,1,30,2017,July,27,15,0,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,103.11,0,0,Canceled,2018-12-03 -City Hotel,1,93,2016,June,26,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,73.29,0,0,Canceled,2018-12-03 -City Hotel,0,99,2016,September,34,24,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-08-04 -City Hotel,1,195,2016,October,44,16,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,D,0,Non Refund,10.0,179.0,0,Transient,36.28,0,0,Canceled,2019-06-03 -City Hotel,0,11,2016,December,53,25,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,10.0,179.0,0,Transient,151.76,1,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2017,February,10,8,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,331.0,0,Transient-Party,83.98,0,0,Canceled,2019-09-03 -City Hotel,0,2,2017,February,3,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient,82.8,0,1,Check-Out,2020-02-01 -City Hotel,1,48,2016,September,44,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,79.92,0,0,Canceled,2018-01-03 -City Hotel,1,426,2015,September,35,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.1,0,0,Canceled,2018-08-03 -Resort Hotel,0,186,2016,August,35,6,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,163.69,0,2,Check-Out,2019-07-04 -City Hotel,1,347,2016,February,11,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,39,Transient,98.2,0,0,Canceled,2019-10-04 -City Hotel,1,89,2015,November,53,21,2,5,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,26.0,179.0,62,Transient-Party,92.48,0,0,Canceled,2018-08-03 -City Hotel,0,2,2017,October,3,13,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.76,0,2,Check-Out,2019-11-03 -City Hotel,0,48,2017,August,36,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,1,A,A,0,No Deposit,184.0,179.0,0,Group,198.74,0,1,Check-Out,2020-06-02 -Resort Hotel,0,39,2016,March,49,31,0,3,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,179.0,0,Transient,76.78,1,0,Check-Out,2018-12-03 -Resort Hotel,1,198,2016,March,12,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,31.76,0,0,Canceled,2019-02-01 -Resort Hotel,0,251,2017,February,11,21,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,75.26,0,0,Check-Out,2020-03-03 -Resort Hotel,0,12,2016,January,5,28,2,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-01-03 -City Hotel,0,84,2017,May,21,14,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,156.94,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,September,40,5,0,5,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,I,1,No Deposit,245.0,179.0,0,Transient,0.0,0,2,Check-Out,2018-05-03 -Resort Hotel,0,34,2016,February,16,9,1,1,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,67.48,0,0,Check-Out,2019-04-03 -Resort Hotel,0,101,2015,December,50,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,71.7,1,0,Check-Out,2018-12-03 -Resort Hotel,0,239,2015,October,43,10,0,1,1,0.0,0,FB,BRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,74.86,0,0,Check-Out,2018-09-02 -City Hotel,0,139,2017,July,34,24,0,1,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,120.62,0,3,Check-Out,2019-07-04 -City Hotel,0,54,2017,April,15,29,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.48,1,2,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,December,42,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,38.91,0,0,Check-Out,2018-12-03 -Resort Hotel,0,82,2015,November,53,30,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,45.77,0,2,Check-Out,2018-11-02 -City Hotel,0,21,2017,June,28,27,0,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,172.97,0,1,Check-Out,2020-04-02 -Resort Hotel,0,4,2017,January,4,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,37.58,0,0,Check-Out,2018-10-03 -Resort Hotel,0,260,2016,June,27,24,1,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,124.88,1,1,Check-Out,2019-03-04 -City Hotel,0,143,2017,August,38,2,0,3,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,99.74,0,3,Check-Out,2020-07-03 -Resort Hotel,0,109,2016,December,43,4,1,3,2,0.0,0,HB,,Groups,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,62.17,0,0,Check-Out,2018-06-02 -City Hotel,1,0,2016,January,3,15,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,96.7,0,0,No-Show,2018-12-03 -City Hotel,0,53,2015,October,50,27,1,1,1,0.0,0,BB,CHE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,63.73,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,August,35,5,0,3,3,0.0,0,BB,CHE,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,149.97,0,1,Check-Out,2019-06-03 -City Hotel,1,96,2017,July,31,5,2,2,2,2.0,0,BB,,Direct,Undefined,0,0,0,C,F,2,No Deposit,14.0,179.0,0,Transient,181.44,0,0,Canceled,2020-05-03 -Resort Hotel,0,11,2017,June,21,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,0.33,1,0,Check-Out,2020-06-02 -Resort Hotel,0,87,2016,December,50,23,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,75,Contract,64.15,0,1,Check-Out,2019-11-03 -City Hotel,1,103,2017,May,26,20,0,5,3,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,9.0,179.0,0,Transient,180.89,0,1,Canceled,2020-02-01 -Resort Hotel,0,0,2017,January,4,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,63.06,0,1,No-Show,2019-10-04 -Resort Hotel,1,0,2017,December,49,27,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,0,E,D,0,No Deposit,11.0,215.0,0,Transient,59.39,0,0,Canceled,2019-11-03 -Resort Hotel,0,51,2015,October,42,13,2,1,1,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient-Party,79.09,0,0,Check-Out,2018-08-03 -Resort Hotel,0,17,2016,March,4,21,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,325.0,179.0,0,Transient,35.61,1,0,Check-Out,2019-04-03 -City Hotel,1,39,2016,November,50,6,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,118.71,0,1,Canceled,2019-09-03 -City Hotel,0,1,2016,January,8,31,0,3,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,D,D,0,No Deposit,89.0,74.0,0,Transient,52.67,0,0,Check-Out,2018-11-02 -Resort Hotel,0,29,2016,December,50,6,1,2,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,89.67,1,0,Check-Out,2019-12-04 -Resort Hotel,1,25,2016,March,9,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,26.0,179.0,0,Transient,68.45,0,0,Canceled,2019-03-04 -City Hotel,0,305,2015,July,36,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,94.6,0,0,Check-Out,2018-09-02 -Resort Hotel,0,174,2016,March,17,31,0,3,2,0.0,0,BB,AUT,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,179.0,0,Transient-Party,98.4,1,0,Check-Out,2020-02-01 -City Hotel,1,35,2016,December,53,6,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,88.19,0,2,Canceled,2019-12-04 -City Hotel,0,41,2016,May,22,27,1,2,3,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,161.74,0,0,Check-Out,2019-02-01 -City Hotel,1,286,2016,September,38,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,40.18,0,0,Canceled,2019-08-04 -City Hotel,0,36,2016,November,49,30,1,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,71.1,0,0,Check-Out,2019-11-03 -Resort Hotel,1,259,2015,September,41,24,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,285.0,179.0,0,Transient,60.3,0,0,Canceled,2018-06-02 -Resort Hotel,0,41,2015,December,53,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,D,3,No Deposit,15.0,179.0,0,Transient-Party,60.96,0,0,Check-Out,2018-11-02 -Resort Hotel,0,156,2017,April,22,30,0,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,215.37,0,1,Check-Out,2020-03-03 -City Hotel,0,3,2017,August,36,18,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,123.11,0,3,Check-Out,2020-06-02 -City Hotel,0,0,2017,April,16,13,2,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,124.91,0,0,Check-Out,2020-04-02 -City Hotel,1,48,2016,April,10,15,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,92.81,0,0,Canceled,2018-11-02 -City Hotel,0,0,2016,January,10,24,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.51,0,1,Check-Out,2018-11-02 -Resort Hotel,1,282,2016,December,53,27,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,136.24,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2016,October,41,16,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,C,1,No Deposit,16.0,45.0,0,Transient,0.0,1,1,Check-Out,2019-07-04 -City Hotel,0,1,2016,May,26,3,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,45.0,0,Transient,74.15,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,July,28,28,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,146.03,0,0,Check-Out,2019-06-03 -City Hotel,1,40,2016,September,38,6,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.04,0,0,Canceled,2019-08-04 -City Hotel,1,289,2015,October,41,16,2,10,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.37,0,0,Canceled,2017-09-02 -Resort Hotel,0,24,2017,March,17,10,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,111.01,1,1,Check-Out,2020-01-04 -City Hotel,0,113,2015,October,44,10,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,206.81,0,1,Check-Out,2018-09-02 -City Hotel,0,100,2017,July,26,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.85,0,2,Check-Out,2020-03-03 -Resort Hotel,1,94,2016,July,32,24,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,176.71,0,1,No-Show,2019-02-01 -City Hotel,0,98,2017,April,17,24,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,201.99,0,1,Check-Out,2020-02-01 -City Hotel,0,235,2016,October,39,22,1,10,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,154.0,179.0,0,Group,86.58,0,0,Check-Out,2019-08-04 -City Hotel,0,9,2017,August,37,10,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.94,0,3,Check-Out,2019-10-04 -Resort Hotel,0,2,2016,March,10,16,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,H,D,0,No Deposit,17.0,179.0,0,Transient,73.62,0,0,Check-Out,2018-11-02 -City Hotel,0,326,2016,July,36,20,2,5,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,129.65,0,1,Check-Out,2019-06-03 -Resort Hotel,0,18,2017,January,37,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient-Party,117.22,1,1,Check-Out,2020-07-03 -City Hotel,0,50,2016,October,42,4,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,100.88,0,0,Check-Out,2019-09-03 -City Hotel,1,258,2016,December,50,13,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,20,Transient,60.26,0,0,Canceled,2018-11-02 -Resort Hotel,1,235,2015,July,32,4,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,140.0,179.0,0,Transient,123.38,0,0,Canceled,2018-06-02 -Resort Hotel,0,139,2017,March,18,27,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,F,1,No Deposit,378.0,179.0,0,Transient-Party,74.52,0,0,Check-Out,2019-11-03 -City Hotel,1,105,2017,February,9,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,78.73,0,1,Canceled,2020-02-01 -City Hotel,1,0,2016,January,3,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,89.69,0,0,No-Show,2018-12-03 -City Hotel,1,348,2017,May,25,16,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.8,0,0,Canceled,2019-12-04 -City Hotel,0,243,2017,July,31,28,2,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.73,0,2,Check-Out,2020-06-02 -City Hotel,0,44,2015,December,50,4,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient-Party,89.29,0,0,Check-Out,2018-09-02 -City Hotel,1,239,2015,July,31,27,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,38.0,179.0,0,Contract,123.92,0,0,Canceled,2017-10-03 -City Hotel,1,36,2017,February,9,17,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,78.67,0,0,Canceled,2018-11-02 -City Hotel,0,2,2015,October,45,15,0,1,3,0.0,0,BB,FRA,Complementary,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,101.33,1,0,Check-Out,2018-09-02 -Resort Hotel,1,135,2015,August,30,19,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,E,E,0,No Deposit,247.0,179.0,0,Transient,59.88,0,0,Canceled,2018-08-03 -Resort Hotel,0,108,2017,April,17,4,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,79.0,179.0,0,Transient-Party,87.84,0,1,Check-Out,2020-03-03 -City Hotel,0,146,2016,October,22,17,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,98.04,1,1,Check-Out,2019-06-03 -City Hotel,1,132,2015,July,33,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,116.65,0,0,Canceled,2018-06-02 -City Hotel,0,100,2017,March,22,26,1,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,C,2,No Deposit,9.0,179.0,0,Transient-Party,127.74,0,0,Check-Out,2020-03-03 -City Hotel,0,25,2016,June,26,12,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,165.22,0,0,Check-Out,2019-04-03 -Resort Hotel,0,42,2016,December,50,29,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,74.35,1,0,Check-Out,2018-12-03 -Resort Hotel,0,159,2016,June,34,9,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,133.0,179.0,0,Transient,101.71,0,0,Check-Out,2019-06-03 -City Hotel,0,46,2015,March,10,17,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,66.91,0,0,Check-Out,2018-12-03 -Resort Hotel,0,20,2016,August,35,22,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,2018-06-02 -Resort Hotel,0,52,2016,February,9,14,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,150.0,331.0,0,Transient-Party,65.32,0,2,Check-Out,2020-01-04 -Resort Hotel,1,300,2015,September,37,23,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.1,0,0,Canceled,2018-08-03 -City Hotel,1,55,2016,April,22,16,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,9.0,179.0,0,Transient,161.19,0,2,Canceled,2019-02-01 -Resort Hotel,0,200,2016,March,18,25,1,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,Non Refund,33.0,222.0,75,Transient-Party,58.3,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,April,15,15,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,G,G,2,No Deposit,173.0,179.0,0,Transient,60.86,1,0,Check-Out,2019-02-01 -City Hotel,1,382,2016,October,35,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,19,Transient,78.94,0,0,Canceled,2018-11-02 -City Hotel,0,13,2016,August,43,14,0,1,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.69,0,0,Check-Out,2019-06-03 -City Hotel,0,45,2016,May,16,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,136.97,0,1,Check-Out,2019-12-04 -City Hotel,0,13,2015,October,41,13,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,74.09,0,0,Check-Out,2018-07-03 -City Hotel,0,1,2016,March,9,12,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,65.13,0,1,Check-Out,2018-10-03 -City Hotel,0,2,2015,January,12,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,76.4,0,0,Check-Out,2018-10-03 -Resort Hotel,1,90,2015,September,44,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,68.57,0,0,Canceled,2018-08-03 -Resort Hotel,1,1,2016,January,9,6,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,45.39,0,0,Canceled,2018-12-03 -City Hotel,0,53,2016,June,14,21,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.76,0,0,Check-Out,2019-04-03 -Resort Hotel,0,35,2017,February,10,12,1,2,2,0.0,0,Undefined,GBR,Groups,Corporate,0,0,0,E,E,0,No Deposit,378.0,331.0,0,Transient-Party,76.62,0,0,Check-Out,2019-10-04 -Resort Hotel,0,171,2016,May,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,223.0,0,Transient-Party,76.96,1,0,Check-Out,2019-02-01 -City Hotel,0,37,2016,June,26,16,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.07,0,1,Check-Out,2019-02-01 -Resort Hotel,0,11,2017,June,27,16,2,5,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,205.44,1,0,Check-Out,2020-04-02 -City Hotel,1,17,2017,August,31,18,1,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.7,0,0,Canceled,2020-03-03 -Resort Hotel,0,101,2015,December,53,6,2,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,108.88,1,2,Check-Out,2018-11-02 -City Hotel,1,194,2017,May,23,18,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,84.83,0,1,Canceled,2020-05-03 -City Hotel,0,0,2016,July,28,21,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,95.67,0,0,Check-Out,2019-03-04 -Resort Hotel,0,3,2017,January,2,10,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,273.0,331.0,0,Transient,34.83,0,0,Check-Out,2019-10-04 -Resort Hotel,0,46,2015,October,43,27,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,59.89,0,0,Check-Out,2018-09-02 -City Hotel,0,15,2017,May,22,9,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,3,No Deposit,10.0,179.0,0,Transient,129.02,1,3,Check-Out,2020-04-02 -City Hotel,0,151,2017,April,18,5,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,117.81,0,0,Canceled,2020-03-03 -Resort Hotel,0,2,2016,December,53,10,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,60.91,0,0,Check-Out,2019-09-03 -Resort Hotel,0,115,2016,August,37,10,0,3,1,1.0,0,BB,IRL,Direct,Direct,0,0,0,H,D,0,No Deposit,249.0,179.0,0,Transient,161.12,0,2,Check-Out,2019-09-03 -Resort Hotel,0,108,2015,October,43,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,279.0,179.0,62,Transient-Party,29.17,0,0,Check-Out,2018-09-02 -City Hotel,0,103,2017,July,9,25,0,3,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,103.03,0,0,Check-Out,2020-04-02 -City Hotel,0,12,2017,March,23,28,0,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,72.97,0,0,Check-Out,2020-02-01 -Resort Hotel,0,297,2016,October,47,29,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,239.0,179.0,0,Transient,63.49,1,1,Check-Out,2020-01-04 -City Hotel,1,45,2017,May,21,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,Non Refund,171.0,179.0,0,Transient,146.56,0,0,Canceled,2019-08-04 -Resort Hotel,0,89,2015,October,41,24,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,248.0,179.0,0,Transient,97.25,0,0,Check-Out,2018-08-03 -Resort Hotel,0,10,2016,June,23,17,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,225.0,0,Transient-Party,90.91,0,0,Check-Out,2019-07-04 -Resort Hotel,1,55,2015,December,49,6,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,11.0,179.0,0,Transient,79.37,0,0,Canceled,2019-01-03 -Resort Hotel,0,10,2015,October,43,20,1,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,C,E,1,No Deposit,29.0,179.0,0,Contract,72.74,0,0,Check-Out,2018-09-02 -Resort Hotel,0,116,2017,June,24,19,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,73.16,0,3,Check-Out,2020-04-02 -City Hotel,0,30,2016,September,18,26,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,70.92,0,1,Check-Out,2018-12-03 -Resort Hotel,0,20,2017,November,27,12,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,244.0,0,Transient,40.05,1,2,Check-Out,2020-01-04 -City Hotel,0,312,2015,October,44,24,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.18,0,2,Check-Out,2018-08-03 -Resort Hotel,0,79,2016,June,27,2,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,147.0,179.0,0,Contract,60.17,0,0,Check-Out,2019-04-03 -City Hotel,1,291,2015,October,45,28,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,122.87,0,0,Canceled,2018-08-03 -City Hotel,1,307,2017,May,26,30,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,E,1,No Deposit,8.0,179.0,0,Transient,148.01,0,1,Canceled,2020-02-01 -City Hotel,0,19,2016,October,45,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,199.0,0,Transient,93.94,0,0,Check-Out,2019-07-04 -City Hotel,0,1,2016,June,25,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,93.63,1,1,Check-Out,2019-06-03 -City Hotel,1,268,2017,May,21,7,1,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,75,Transient,61.69,0,0,Canceled,2019-10-04 -City Hotel,0,151,2017,July,32,12,0,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,142.79,0,1,Check-Out,2020-06-02 -City Hotel,1,191,2016,August,37,12,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.88,0,0,Canceled,2019-07-04 -Resort Hotel,0,9,2017,February,8,8,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,D,0,No Deposit,143.0,331.0,0,Transient-Party,35.06,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,October,43,17,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,0,No Deposit,15.0,190.0,0,Transient,103.53,0,0,Check-Out,2019-07-04 -City Hotel,0,145,2016,December,24,26,0,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,174.52,0,1,Check-Out,2019-03-04 -Resort Hotel,0,124,2016,June,15,24,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,77.05,0,0,Check-Out,2019-03-04 -City Hotel,1,2,2017,February,8,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,58.4,0,0,Canceled,2019-09-03 -City Hotel,0,26,2017,June,26,10,0,1,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,122.53,0,0,Check-Out,2019-03-04 -Resort Hotel,0,116,2017,June,28,18,4,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,79.01,1,2,Check-Out,2020-05-03 -City Hotel,1,94,2016,June,32,15,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.51,0,0,Canceled,2019-03-04 -City Hotel,0,11,2016,November,53,30,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,82.09,0,0,Check-Out,2019-09-03 -Resort Hotel,0,197,2017,August,36,9,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,93.97,1,1,Check-Out,2020-06-02 -City Hotel,0,27,2017,April,17,7,0,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.3,0,0,Check-Out,2020-02-01 -City Hotel,1,321,2017,May,26,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,93.35,0,0,Canceled,2019-12-04 -City Hotel,1,190,2016,March,10,21,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,128.0,179.0,43,Transient,101.5,0,0,Canceled,2019-02-01 -City Hotel,1,14,2017,May,21,28,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,221.44,0,0,Canceled,2019-10-04 -City Hotel,0,13,2015,October,43,10,0,2,1,0.0,0,BB,ISR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,83.0,224.0,56,Transient-Party,95.02,0,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2016,January,4,13,0,1,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,61.68,0,1,Check-Out,2018-12-03 -Resort Hotel,1,186,2016,March,17,15,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,63.78,0,0,Canceled,2019-01-03 -City Hotel,1,5,2016,June,27,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,42,Transient,67.28,0,0,Canceled,2018-11-02 -Resort Hotel,0,94,2016,March,16,25,2,1,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,88.0,179.0,0,Contract,71.79,0,0,Check-Out,2019-04-03 -City Hotel,1,105,2016,March,15,2,2,5,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.61,0,1,No-Show,2019-03-04 -City Hotel,0,260,2015,July,32,21,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,133.95,0,0,Check-Out,2018-05-03 -Resort Hotel,0,8,2015,April,41,21,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,32.26,0,0,Check-Out,2018-09-02 -City Hotel,0,77,2017,December,32,19,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,9.0,179.0,0,Transient,134.33,0,3,Check-Out,2019-12-04 -Resort Hotel,0,27,2016,October,39,2,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,66,Transient,68.85,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2017,February,9,25,2,4,2,0.0,0,SC,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,72.11,0,0,Check-Out,2019-02-01 -City Hotel,1,2,2017,February,9,13,0,1,2,0.0,0,BB,GBR,Corporate,TA/TO,1,1,1,E,D,0,No Deposit,85.0,179.0,0,Transient,79.37,0,0,Canceled,2020-03-03 -City Hotel,0,52,2015,September,40,9,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,29.0,179.0,0,Transient-Party,72.64,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2017,March,19,14,1,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.5,0,0,Check-Out,2020-02-01 -City Hotel,1,64,2017,March,19,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,230.46,0,2,Canceled,2019-02-01 -City Hotel,0,5,2017,June,27,21,0,1,3,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,75.09,0,0,Check-Out,2020-03-03 -City Hotel,1,15,2016,February,9,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,65.0,0,Transient,69.87,0,0,Canceled,2018-12-03 -City Hotel,1,1,2016,January,9,23,0,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,75.52,0,1,No-Show,2019-04-03 -Resort Hotel,0,303,2016,March,21,31,0,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,223.0,0,Transient-Party,36.79,0,0,Check-Out,2019-05-04 -City Hotel,1,53,2017,March,10,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,D,0,No Deposit,7.0,179.0,0,Transient,94.6,0,0,Canceled,2019-10-04 -City Hotel,0,303,2016,September,34,25,2,2,2,0.0,0,BB,,Complementary,TA/TO,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-05-04 -City Hotel,0,29,2017,February,32,24,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,135.62,0,0,Check-Out,2020-03-03 -City Hotel,1,199,2016,October,39,24,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,187.45,0,1,Canceled,2019-05-04 -City Hotel,1,55,2016,April,28,28,2,2,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,9.0,179.0,0,Transient,98.87,0,2,Canceled,2019-03-04 -City Hotel,1,164,2016,June,27,28,0,4,3,0.0,0,BB,IRL,Online TA,GDS,0,0,0,A,E,0,No Deposit,174.0,179.0,0,Transient,171.36,0,0,Canceled,2019-01-03 -Resort Hotel,0,12,2015,September,43,9,1,5,1,0.0,0,BB,GBR,Complementary,Direct,0,0,0,E,E,0,No Deposit,192.0,179.0,0,Transient,72.54,0,0,Check-Out,2019-06-03 -City Hotel,0,144,2016,June,27,2,2,5,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,127.61,0,0,Check-Out,2019-06-03 -Resort Hotel,0,44,2016,January,10,20,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,68.11,0,1,Check-Out,2019-01-03 -City Hotel,1,409,2017,May,37,12,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,77.28,0,0,Canceled,2018-01-03 -City Hotel,1,41,2016,August,25,23,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.91,0,0,Canceled,2019-02-01 -Resort Hotel,0,48,2016,March,21,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,60.11,0,1,Check-Out,2018-11-02 -City Hotel,0,14,2017,March,12,13,2,2,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,84.22,0,0,Check-Out,2020-03-03 -Resort Hotel,0,158,2016,October,43,16,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,222.0,0,Transient-Party,74.21,1,0,Canceled,2019-01-03 -Resort Hotel,0,191,2016,May,16,30,2,4,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,E,I,1,No Deposit,242.0,179.0,0,Transient,0.95,0,1,Check-Out,2018-12-03 -Resort Hotel,0,38,2015,September,43,30,2,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,179.61,0,0,Check-Out,2018-08-03 -City Hotel,1,145,2016,November,49,13,0,1,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.84,0,0,Canceled,2019-10-04 -City Hotel,0,15,2016,January,50,8,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,93.77,0,1,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,July,41,5,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,56.8,0,0,Check-Out,2019-08-04 -Resort Hotel,0,268,2015,July,32,19,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,171.0,179.0,0,Transient,201.95,0,2,Check-Out,2020-05-03 -Resort Hotel,1,226,2016,October,43,27,1,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,20,Transient,92.82,0,0,Canceled,2018-08-03 -Resort Hotel,0,237,2016,June,25,3,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,239.0,179.0,0,Transient,98.79,0,1,Canceled,2019-04-03 -City Hotel,0,0,2016,October,43,17,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,28.87,0,0,Check-Out,2019-08-04 -Resort Hotel,0,138,2015,July,35,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,93.54,0,0,Check-Out,2018-06-02 -Resort Hotel,0,96,2016,October,42,13,1,3,2,0.0,0,Undefined,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.23,0,2,Check-Out,2019-08-04 -Resort Hotel,1,13,2016,December,11,31,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Transient,32.12,0,2,Canceled,2019-08-04 -Resort Hotel,0,95,2017,April,15,10,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient-Party,80.91,0,0,Check-Out,2020-03-03 -Resort Hotel,1,39,2017,July,35,2,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,164.05,0,1,Canceled,2020-06-02 -City Hotel,0,24,2016,August,34,17,1,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,160.95,0,3,Check-Out,2020-02-01 -Resort Hotel,0,189,2017,May,21,10,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,C,C,1,No Deposit,374.0,179.0,0,Transient-Party,2.12,0,0,Check-Out,2020-06-02 -City Hotel,0,33,2017,March,22,18,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.55,0,1,Check-Out,2019-12-04 -Resort Hotel,0,146,2016,March,17,30,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,221.0,0,Transient-Party,63.91,0,0,Check-Out,2019-04-03 -Resort Hotel,0,46,2015,December,50,21,2,7,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,198.0,179.0,0,Transient,44.74,0,0,Check-Out,2018-12-03 -Resort Hotel,1,2,2016,February,11,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,250.0,179.0,0,Transient,33.81,0,0,Canceled,2018-11-02 -City Hotel,0,75,2016,January,7,6,0,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.11,0,0,Canceled,2018-12-03 -City Hotel,1,419,2016,October,46,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,43,Transient,153.81,0,0,Canceled,2018-09-02 -City Hotel,0,0,2017,January,3,21,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,116.6,0,2,Check-Out,2019-11-03 -City Hotel,0,251,2017,June,25,26,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.28,0,1,Check-Out,2020-04-02 -City Hotel,0,37,2017,March,11,11,0,1,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,50.65,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2015,November,50,5,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,93.13,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,March,16,10,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,69.46,1,0,Check-Out,2019-03-04 -City Hotel,0,9,2016,January,10,28,2,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,67.71,0,0,Check-Out,2018-11-02 -City Hotel,0,89,2017,April,21,28,2,5,3,0.0,0,BB,GBR,Direct,Corporate,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Contract,208.98,0,0,Check-Out,2020-05-03 -City Hotel,0,12,2017,August,5,28,0,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,13.0,179.0,0,Transient,161.93,1,3,Check-Out,2019-12-04 -City Hotel,1,323,2016,September,38,12,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,119.18,0,0,Canceled,2018-08-03 -City Hotel,0,256,2016,May,23,15,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,124.56,0,0,Check-Out,2020-04-02 -Resort Hotel,0,135,2015,December,51,5,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,32.0,179.0,0,Transient-Party,74.08,0,0,Check-Out,2018-06-02 -City Hotel,0,52,2015,June,8,18,1,5,1,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,65.93,0,0,Check-Out,2019-01-03 -Resort Hotel,1,8,2017,March,11,10,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,13.0,223.0,0,Transient,62.54,0,0,Canceled,2018-11-02 -City Hotel,1,90,2017,April,22,22,2,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,F,0,No Deposit,176.0,179.0,0,Transient,122.0,0,0,No-Show,2020-03-03 -City Hotel,0,150,2016,August,29,17,0,3,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,170.0,0,3,Check-Out,2019-05-04 -City Hotel,1,13,2017,February,8,24,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,74.98,0,0,Canceled,2020-01-04 -City Hotel,0,147,2016,December,53,25,0,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,H,1,No Deposit,13.0,179.0,0,Transient,196.13,0,1,Check-Out,2019-06-03 -Resort Hotel,0,50,2016,November,44,26,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,39.4,1,3,Check-Out,2019-10-04 -City Hotel,0,18,2016,September,21,2,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,241.95,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2016,May,9,13,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,65.74,0,0,Check-Out,2019-03-04 -City Hotel,0,15,2017,May,23,13,1,0,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.93,0,1,Check-Out,2020-04-02 -Resort Hotel,0,201,2017,May,35,24,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,318.0,179.0,0,Transient-Party,40.26,0,1,Check-Out,2019-06-03 -Resort Hotel,0,259,2017,June,28,25,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,141.32,0,2,Check-Out,2020-04-02 -Resort Hotel,1,38,2016,April,22,31,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,71.19,0,0,Canceled,2019-02-01 -City Hotel,0,139,2016,July,33,18,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,184.26,0,1,Check-Out,2019-06-03 -City Hotel,0,9,2016,October,50,13,2,0,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,79.04,0,1,Check-Out,2019-09-03 -City Hotel,0,90,2017,May,23,14,1,2,1,0.0,0,BB,CN,Online TA,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,108.5,0,0,Check-Out,2020-01-04 -Resort Hotel,0,11,2016,April,15,16,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,121.69,0,2,Check-Out,2019-02-01 -Resort Hotel,0,108,2015,December,53,28,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,102.62,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,January,2,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,71.0,0,Transient,58.32,0,0,Check-Out,2019-06-03 -City Hotel,1,110,2016,March,17,25,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,75,Transient-Party,100.38,0,1,Canceled,2019-01-03 -Resort Hotel,0,163,2017,July,26,9,0,3,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,75.78,1,0,Check-Out,2020-04-02 -City Hotel,0,1,2017,July,24,20,0,3,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.32,0,1,Check-Out,2020-06-02 -City Hotel,1,261,2016,June,27,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.95,0,0,Canceled,2019-02-01 -City Hotel,0,192,2017,July,33,25,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.84,0,1,Check-Out,2020-06-02 -Resort Hotel,0,246,2015,October,44,10,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient-Party,72.83,0,1,Check-Out,2018-06-02 -Resort Hotel,0,90,2016,December,53,9,0,4,2,0.0,0,Undefined,BEL,Groups,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,100.31,0,2,Check-Out,2018-12-03 -Resort Hotel,0,10,2017,June,22,28,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,E,0,No Deposit,324.0,179.0,0,Transient-Party,94.84,0,1,Check-Out,2020-07-03 -Resort Hotel,0,105,2016,December,44,22,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,66.17,0,0,Check-Out,2019-04-03 -City Hotel,0,38,2017,July,28,28,2,7,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.31,0,1,Check-Out,2020-07-03 -City Hotel,0,15,2015,October,44,16,1,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,F,1,No Deposit,14.0,45.0,0,Transient-Party,67.69,0,1,Check-Out,2018-09-02 -City Hotel,0,439,2016,July,36,16,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,245.16,0,0,Check-Out,2019-03-04 -Resort Hotel,0,55,2017,March,10,21,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,I,0,No Deposit,12.0,331.0,0,Transient,88.35,0,0,Check-Out,2020-04-02 -City Hotel,1,144,2017,June,38,28,1,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,6.0,179.0,0,Transient,114.4,0,1,Canceled,2019-11-03 -City Hotel,0,22,2017,May,21,20,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,132.29,0,0,Check-Out,2020-03-03 -City Hotel,0,10,2016,April,21,6,2,0,1,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,116.85,0,0,Check-Out,2019-02-01 -City Hotel,1,257,2016,May,25,4,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,76.63,0,0,Canceled,2019-02-01 -City Hotel,0,1,2016,March,9,24,1,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,79.19,1,0,Check-Out,2018-11-02 -City Hotel,1,418,2017,June,26,21,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,63.13,0,0,No-Show,2019-10-04 -Resort Hotel,0,157,2017,June,21,13,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.91,0,1,Check-Out,2020-04-02 -City Hotel,1,279,2016,October,44,19,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,123.55,0,0,Canceled,2019-02-01 -Resort Hotel,0,185,2016,August,32,31,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,39,2016,October,37,30,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,46.15,0,1,Check-Out,2019-05-04 -Resort Hotel,0,101,2015,August,33,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,244.0,179.0,0,Transient,124.4,1,0,Check-Out,2018-12-03 -City Hotel,0,16,2016,March,11,6,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,60.66,1,2,Check-Out,2019-03-04 -City Hotel,1,52,2015,July,36,15,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,74.76,0,0,Canceled,2017-12-03 -City Hotel,0,15,2016,March,15,28,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.38,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,August,32,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,250.0,179.0,0,Transient,102.74,1,2,Check-Out,2018-05-03 -Resort Hotel,0,9,2016,May,22,13,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,47.63,0,0,Check-Out,2019-09-03 -Resort Hotel,0,176,2017,June,28,30,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Contract,112.76,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,March,2,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,15.0,72.0,0,Transient,79.7,1,0,Check-Out,2019-02-01 -Resort Hotel,0,9,2016,November,44,27,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,148.87,0,0,Check-Out,2018-09-02 -Resort Hotel,1,192,2016,July,34,17,4,10,3,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,184.0,179.0,0,Transient,180.41,0,0,No-Show,2019-04-03 -Resort Hotel,1,161,2016,May,22,9,3,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,125.06,0,0,Canceled,2019-02-01 -Resort Hotel,0,148,2016,May,18,10,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,248.0,179.0,0,Transient,39.49,0,0,Check-Out,2019-02-01 -Resort Hotel,0,114,2017,April,17,15,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,223.0,0,Transient,36.72,0,1,Check-Out,2019-12-04 -City Hotel,1,89,2015,August,33,4,2,5,2,0.0,0,HB,PRT,Undefined,Undefined,0,1,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2018-06-02 -City Hotel,0,7,2017,March,22,28,1,0,2,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,0.86,0,0,Check-Out,2019-11-03 -Resort Hotel,1,2,2016,May,18,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,15.0,179.0,0,Transient,123.27,0,0,Canceled,2020-03-03 -City Hotel,1,107,2017,April,17,24,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient,128.0,0,0,Canceled,2020-06-02 -City Hotel,0,1,2017,February,10,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,75.01,0,0,Check-Out,2020-04-02 -City Hotel,1,10,2017,January,2,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,71.14,0,0,No-Show,2019-10-04 -Resort Hotel,0,37,2016,March,11,11,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,66.66,0,2,Check-Out,2019-03-04 -City Hotel,1,100,2015,July,33,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.57,0,0,Canceled,2018-06-02 -Resort Hotel,0,8,2016,April,22,9,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,121.02,1,0,Check-Out,2019-02-01 -City Hotel,0,0,2017,March,17,10,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,67.44,0,1,Check-Out,2020-04-02 -Resort Hotel,0,103,2015,October,45,31,0,2,1,0.0,0,BB,ISR,Online TA,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,101.03,1,0,Check-Out,2018-09-02 -City Hotel,0,40,2016,November,43,10,1,0,2,0.0,0,BB,,Online TA,Corporate,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,107.16,0,1,Check-Out,2019-10-04 -Resort Hotel,0,10,2016,February,11,9,0,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,38.25,0,0,Check-Out,2018-11-02 -City Hotel,0,236,2015,October,45,10,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,94.08,0,1,Check-Out,2018-08-03 -City Hotel,0,3,2016,June,21,30,0,1,3,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,167.93,0,0,Check-Out,2020-04-02 -Resort Hotel,0,152,2016,November,45,5,1,0,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,96.0,179.0,0,Transient,62.55,0,0,Check-Out,2018-09-02 -City Hotel,1,187,2016,October,45,13,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,78.63,0,0,Check-Out,2019-03-04 -City Hotel,0,20,2017,June,25,26,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient-Party,84.1,0,0,Check-Out,2020-03-03 -City Hotel,0,15,2015,October,37,31,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,32.94,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2017,May,21,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,E,E,0,No Deposit,15.0,331.0,0,Transient,152.34,0,0,Canceled,2020-03-03 -City Hotel,1,97,2017,August,38,5,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.22,0,0,Canceled,2019-08-04 -City Hotel,0,17,2015,December,52,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,58.26,0,0,Check-Out,2018-09-02 -Resort Hotel,0,52,2016,September,34,27,2,3,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,70.49,0,0,Check-Out,2019-07-04 -City Hotel,1,6,2015,June,30,27,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,112.85,0,0,No-Show,2018-07-03 -Resort Hotel,0,108,2016,March,22,16,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,98.03,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,July,33,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,18.0,45.0,0,Transient,107.46,1,0,Check-Out,2018-06-02 -City Hotel,0,166,2016,October,43,24,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,125.82,0,1,Check-Out,2019-06-03 -City Hotel,0,1,2017,February,11,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,70.0,0,Group,0.0,0,1,Check-Out,2020-01-04 -Resort Hotel,0,108,2017,May,21,10,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,184.0,179.0,0,Transient,128.88,0,0,Check-Out,2020-02-01 -City Hotel,0,24,2015,October,43,6,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient-Party,93.6,0,0,Check-Out,2018-08-03 -City Hotel,1,247,2015,July,33,8,0,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.25,0,0,Canceled,2018-01-03 -Resort Hotel,0,32,2016,October,52,28,1,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,225.44,0,3,Check-Out,2019-10-04 -City Hotel,0,139,2015,July,37,30,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,59.52,0,0,Check-Out,2017-12-03 -Resort Hotel,0,134,2015,December,53,30,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,40.12,0,0,Check-Out,2019-09-03 -City Hotel,0,26,2016,May,28,9,0,2,1,0.0,0,BB,AUT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,15.0,169.0,0,Transient,97.84,0,2,Check-Out,2019-04-03 -Resort Hotel,0,41,2017,April,16,10,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,F,1,No Deposit,158.0,179.0,0,Transient,65.95,0,0,Check-Out,2020-04-02 -City Hotel,0,55,2017,May,21,10,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,123.19,0,1,Check-Out,2020-03-03 -City Hotel,1,324,2015,September,43,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.76,0,0,Canceled,2017-11-02 -City Hotel,1,17,2016,March,4,27,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,11.0,179.0,0,Transient,92.97,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2016,March,10,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,197.0,68.0,0,Transient,34.99,1,0,Check-Out,2019-04-03 -City Hotel,1,399,2017,August,36,13,0,2,2,1.0,0,BB,PRT,Direct,Corporate,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,124.43,0,0,Canceled,2020-06-02 -Resort Hotel,0,16,2015,September,41,19,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,239.0,179.0,0,Transient,120.43,0,0,Check-Out,2018-08-03 -City Hotel,1,9,2016,October,45,20,0,2,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,121.31,0,0,Canceled,2019-08-04 -Resort Hotel,1,28,2016,March,18,27,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,64.37,0,0,Canceled,2019-01-03 -Resort Hotel,0,95,2016,March,13,25,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,81.0,75,Transient,61.35,0,0,Check-Out,2019-03-04 -City Hotel,0,226,2016,March,53,29,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,81.79,0,1,Check-Out,2019-03-04 -City Hotel,1,101,2016,June,26,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,123.76,0,0,Canceled,2018-11-02 -City Hotel,0,239,2015,October,44,14,1,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.04,0,0,Check-Out,2018-08-03 -Resort Hotel,0,160,2016,March,10,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient,61.18,0,0,Check-Out,2019-03-04 -Resort Hotel,0,4,2016,October,28,31,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,78.52,1,0,Check-Out,2019-07-04 -City Hotel,0,15,2017,February,10,24,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,33.6,0,0,Check-Out,2018-11-02 -Resort Hotel,0,7,2016,June,16,2,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,230.87,1,0,Check-Out,2019-02-01 -Resort Hotel,1,19,2015,November,43,25,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,305.0,179.0,0,Transient,119.64,0,0,Canceled,2018-08-03 -Resort Hotel,1,123,2017,February,8,5,2,5,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,356.0,179.0,0,Transient,46.73,0,0,Canceled,2019-10-04 -Resort Hotel,0,3,2017,February,11,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,37.05,0,0,Check-Out,2019-10-04 -City Hotel,1,194,2016,October,41,18,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.38,0,2,Canceled,2019-05-04 -City Hotel,0,20,2016,January,53,27,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,118.99,0,3,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,May,28,31,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.85,0,2,Check-Out,2019-07-04 -City Hotel,1,167,2016,July,27,21,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.11,0,0,Canceled,2018-01-03 -City Hotel,1,4,2017,February,6,5,0,2,2,0.0,0,SC,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,8.0,57.0,0,Transient,60.79,0,0,Canceled,2020-01-04 -City Hotel,0,179,2017,June,27,27,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,82.6,0,1,Check-Out,2020-06-02 -Resort Hotel,0,13,2015,July,32,2,2,5,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,47.05,0,1,Check-Out,2020-02-01 -Resort Hotel,0,77,2017,May,22,27,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,62.32,0,0,Check-Out,2019-12-04 -Resort Hotel,1,49,2016,July,34,31,0,4,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,141.16,1,2,Check-Out,2019-05-04 -City Hotel,0,1,2016,September,37,20,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,149.64,0,1,Check-Out,2019-05-04 -Resort Hotel,1,300,2016,August,27,20,4,10,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,123.74,0,0,Canceled,2020-06-02 -City Hotel,0,64,2016,June,37,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,14.0,219.0,0,Transient-Party,82.41,0,0,Check-Out,2019-07-04 -City Hotel,0,249,2015,July,37,29,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,103.62,0,1,Check-Out,2017-09-02 -Resort Hotel,1,279,2015,September,37,10,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,76.0,179.0,0,Contract,34.4,0,0,Canceled,2017-10-03 -Resort Hotel,0,42,2017,March,9,21,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,80.0,179.0,0,Transient-Party,72.19,0,0,Check-Out,2020-07-03 -City Hotel,1,1,2017,February,11,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,64.34,0,1,Canceled,2019-11-03 -City Hotel,0,228,2015,July,42,12,2,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,118.14,0,0,Check-Out,2018-05-03 -City Hotel,0,39,2016,November,45,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,120.15,0,3,Check-Out,2019-08-04 -Resort Hotel,1,38,2016,May,15,2,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,Non Refund,363.0,233.0,0,Transient,45.3,0,0,Canceled,2018-11-02 -Resort Hotel,1,147,2016,December,27,27,4,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,378.0,179.0,0,Transient-Party,62.22,0,0,Canceled,2019-12-04 -City Hotel,0,25,2015,September,25,12,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,16.0,45.0,0,Transient-Party,108.53,0,0,Check-Out,2018-06-02 -Resort Hotel,0,91,2016,July,26,13,0,3,3,1.0,0,BB,IRL,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,81.32,0,0,Check-Out,2019-05-04 -Resort Hotel,0,138,2016,November,53,26,0,2,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,82.15,0,3,Check-Out,2019-08-04 -City Hotel,1,269,2016,August,38,20,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,P,0,Non Refund,10.0,179.0,0,Transient,80.64,0,0,Canceled,2019-03-04 -Resort Hotel,0,44,2017,March,18,10,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,221.0,179.0,0,Transient,113.12,0,1,Check-Out,2020-03-03 -Resort Hotel,1,374,2017,July,20,27,1,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,39.3,0,0,Canceled,2019-06-03 -Resort Hotel,0,47,2017,May,16,30,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,316.0,179.0,0,Transient-Party,80.7,0,0,Check-Out,2020-03-03 -Resort Hotel,0,13,2015,August,31,21,2,5,2,0.0,0,HB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,104.72,1,0,Check-Out,2020-03-03 -City Hotel,1,19,2016,January,10,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,39.0,179.0,40,Transient,60.86,0,0,Canceled,2018-11-02 -City Hotel,1,287,2017,August,36,25,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,153.12,0,0,Canceled,2020-03-03 -Resort Hotel,1,0,2016,January,10,13,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,15.0,179.0,0,Transient,63.43,0,0,Canceled,2019-09-03 -City Hotel,1,18,2016,November,51,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,72.53,0,0,Canceled,2019-09-03 -City Hotel,1,90,2016,May,22,27,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,116.4,0,0,Canceled,2019-01-03 -Resort Hotel,0,137,2016,June,26,11,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,187.14,1,1,Check-Out,2019-06-03 -Resort Hotel,0,21,2016,November,51,26,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,192.0,179.0,0,Transient,66.77,1,2,Check-Out,2019-10-04 -City Hotel,0,51,2015,December,51,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,81.0,0,Transient,60.58,0,0,Check-Out,2018-06-02 -City Hotel,0,16,2017,June,29,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,16.0,45.0,0,Transient,87.93,0,0,Check-Out,2020-05-03 -City Hotel,0,2,2016,May,19,10,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.85,0,0,Check-Out,2019-02-01 -Resort Hotel,0,194,2017,May,28,16,0,7,3,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,297.0,179.0,75,Transient-Party,0.0,1,0,Check-Out,2020-05-03 -City Hotel,0,3,2016,October,45,2,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,105.51,0,0,Check-Out,2019-06-03 -City Hotel,0,51,2016,May,22,12,2,2,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,168.41,0,0,Check-Out,2019-06-03 -City Hotel,1,42,2016,April,15,7,1,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,B,0,No Deposit,8.0,179.0,0,Transient,112.3,0,1,Canceled,2018-10-03 -City Hotel,1,50,2017,March,16,12,2,2,1,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,62,Transient,74.96,0,1,Canceled,2019-10-04 -Resort Hotel,0,50,2016,May,21,27,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-03-04 -Resort Hotel,1,83,2015,December,53,8,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,85.44,0,1,Canceled,2018-12-03 -Resort Hotel,0,0,2016,August,25,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,40.96,0,1,Check-Out,2019-04-03 -City Hotel,0,13,2016,September,45,28,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,106.03,0,0,Check-Out,2019-09-03 -City Hotel,0,164,2015,July,33,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient-Party,89.23,0,0,Check-Out,2018-06-02 -Resort Hotel,1,138,2017,March,12,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,83.0,224.0,0,Transient,38.77,0,0,Check-Out,2020-05-03 -City Hotel,0,139,2016,December,53,15,1,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient-Party,87.69,0,1,Check-Out,2019-04-03 -City Hotel,1,11,2016,April,37,28,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,97.98,0,3,Canceled,2019-02-01 -Resort Hotel,0,0,2015,September,37,29,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,96.75,0,1,Check-Out,2018-08-03 -City Hotel,0,7,2016,October,46,3,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.6,0,2,Check-Out,2019-06-03 -City Hotel,0,17,2016,March,37,13,0,3,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,123.01,1,0,Check-Out,2019-06-03 -Resort Hotel,0,93,2017,June,29,29,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,137.66,1,3,Check-Out,2020-02-01 -Resort Hotel,0,38,2016,April,16,29,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,32.49,1,2,Check-Out,2019-04-03 -Resort Hotel,0,24,2017,April,16,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,55.0,0,Transient,67.1,1,1,Check-Out,2020-03-03 -City Hotel,1,0,2016,May,20,25,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.08,0,0,Canceled,2019-02-01 -City Hotel,0,32,2016,November,50,24,1,0,2,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,202.0,179.0,0,Transient-Party,81.91,0,0,Check-Out,2019-12-04 -City Hotel,1,253,2016,October,44,10,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,239.0,179.0,0,Transient,82.17,0,2,Canceled,2019-05-04 -City Hotel,1,213,2015,July,42,18,2,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,62.19,0,0,Canceled,2019-05-04 -City Hotel,0,19,2017,June,25,2,0,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Transient,102.43,0,1,Check-Out,2020-02-01 -Resort Hotel,0,20,2017,February,11,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,378.0,179.0,0,Transient,35.46,0,1,Check-Out,2019-11-03 -Resort Hotel,0,107,2016,March,9,21,2,2,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,166.7,0,1,Check-Out,2019-03-04 -Resort Hotel,0,132,2017,July,23,28,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,316.0,179.0,0,Contract,69.15,0,0,Check-Out,2020-04-02 -Resort Hotel,0,51,2017,May,23,10,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,1,No Deposit,182.0,179.0,0,Transient,97.45,0,0,Canceled,2020-03-03 -Resort Hotel,0,13,2017,March,10,28,1,0,2,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,195.0,331.0,0,Transient,77.77,0,0,Check-Out,2020-04-02 -Resort Hotel,0,12,2017,January,19,25,2,0,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,68.36,0,0,Check-Out,2019-11-03 -City Hotel,1,258,2017,June,27,6,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.35,0,3,Canceled,2020-03-03 -City Hotel,0,133,2017,July,32,27,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.44,0,1,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,March,42,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,248.0,179.0,0,Transient,176.29,1,0,Check-Out,2019-03-04 -City Hotel,1,3,2015,September,37,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Contract,60.32,0,0,Canceled,2017-11-02 -City Hotel,1,184,2016,May,36,19,2,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,151.37,0,1,Canceled,2019-05-04 -Resort Hotel,0,357,2016,February,9,10,1,0,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,84.84,0,0,Check-Out,2019-11-03 -Resort Hotel,0,25,2017,April,15,5,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,378.0,331.0,0,Transient-Party,50.85,1,2,Check-Out,2020-05-03 -Resort Hotel,0,0,2016,January,51,3,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,H,0,No Deposit,249.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-10-04 -City Hotel,1,281,2016,April,22,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,157.71,0,0,Canceled,2019-10-04 -City Hotel,0,3,2017,January,9,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,69.89,0,0,Check-Out,2020-03-03 -City Hotel,0,120,2017,April,18,25,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Transient,73.14,0,0,Check-Out,2020-02-01 -City Hotel,1,120,2016,December,12,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.03,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,May,22,15,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,149.32,0,3,Check-Out,2020-03-03 -City Hotel,0,32,2016,March,4,29,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,78.93,0,0,Check-Out,2018-12-03 -City Hotel,1,104,2016,March,50,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,79.48,0,0,Canceled,2018-12-03 -City Hotel,0,2,2016,December,4,2,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,92.44,0,0,Check-Out,2019-10-04 -Resort Hotel,0,97,2015,December,52,10,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient-Party,58.17,0,2,Check-Out,2018-08-03 -City Hotel,1,45,2016,June,26,4,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.42,0,0,Canceled,2019-03-04 -Resort Hotel,1,328,2017,June,27,27,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,177.81,0,0,Canceled,2020-03-03 -City Hotel,1,160,2016,August,26,15,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,212.1,0,0,Canceled,2019-04-03 -Resort Hotel,0,10,2016,February,9,31,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,35.44,0,1,Check-Out,2018-11-02 -City Hotel,0,24,2015,October,44,31,2,1,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,114.54,0,2,Check-Out,2018-08-03 -City Hotel,0,106,2017,August,39,15,0,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,207.8,1,1,Check-Out,2020-07-03 -City Hotel,0,28,2016,March,9,27,2,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,76.08,0,1,Check-Out,2019-03-04 -City Hotel,1,20,2016,May,22,28,0,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,214.81,0,0,Canceled,2019-02-01 -Resort Hotel,0,102,2016,October,3,1,2,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,0.15,0,0,Check-Out,2018-08-03 -Resort Hotel,0,248,2016,September,24,31,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,129.87,0,1,Check-Out,2019-07-04 -Resort Hotel,1,100,2015,August,37,13,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,110.84,0,1,No-Show,2018-05-03 -City Hotel,0,105,2017,May,20,10,0,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient-Party,90.52,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,April,21,3,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,2,No Deposit,15.0,45.0,0,Transient,0.0,1,1,Check-Out,2019-06-03 -Resort Hotel,1,38,2015,December,37,30,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,160.29,0,1,Canceled,2018-12-03 -City Hotel,0,96,2016,March,11,15,2,0,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,74.82,0,2,Check-Out,2019-01-03 -City Hotel,0,42,2015,November,48,7,2,1,2,0.0,0,BB,,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,0.0,0,2,Check-Out,2018-06-02 -City Hotel,0,0,2016,June,27,31,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,163.26,0,0,Check-Out,2019-04-03 -Resort Hotel,0,7,2016,November,51,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,2,No Deposit,14.0,236.0,0,Transient,34.84,0,0,Check-Out,2019-12-04 -City Hotel,0,44,2016,December,51,29,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,68.46,0,2,Check-Out,2019-10-04 -Resort Hotel,0,176,2017,July,31,14,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-06-02 -City Hotel,0,0,2017,January,4,16,1,2,2,0.0,0,SC,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,80.29,0,0,Check-Out,2019-09-03 -City Hotel,1,387,2016,May,22,1,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,73.94,0,0,Canceled,2019-02-01 -City Hotel,1,36,2016,March,11,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.07,0,3,Canceled,2019-03-04 -City Hotel,1,10,2017,May,16,14,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.9,0,1,Canceled,2020-04-02 -City Hotel,0,2,2015,October,44,23,0,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,93.61,1,0,Check-Out,2018-08-03 -City Hotel,1,46,2017,May,10,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,152.0,179.0,0,Transient,124.94,0,0,Canceled,2019-10-04 -Resort Hotel,0,8,2017,March,11,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,223.0,0,Transient,32.16,0,1,Check-Out,2020-04-02 -City Hotel,0,151,2017,June,26,16,0,1,3,0.0,0,BB,IRL,Direct,Corporate,0,0,0,A,D,1,No Deposit,15.0,179.0,0,Transient,123.75,0,2,Check-Out,2020-06-02 -City Hotel,1,235,2015,August,32,4,2,5,3,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,111.31,0,0,Canceled,2018-06-02 -Resort Hotel,0,11,2017,February,13,13,1,0,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,H,1,No Deposit,365.0,179.0,0,Transient,71.24,0,0,Check-Out,2020-02-01 -City Hotel,0,51,2017,March,16,28,2,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.91,0,0,Check-Out,2020-03-03 -City Hotel,1,195,2015,June,38,21,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,40,Transient,122.91,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2017,March,13,28,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,224.0,0,Transient-Party,43.23,0,0,Check-Out,2020-02-01 -City Hotel,1,82,2015,July,30,17,2,4,1,2.0,0,BB,ITA,Online TA,TA/TO,1,0,0,B,B,1,No Deposit,8.0,179.0,0,Contract,116.31,0,1,Canceled,2019-09-03 -Resort Hotel,0,1,2016,January,8,5,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,37.28,0,0,Check-Out,2018-11-02 -City Hotel,1,213,2016,March,15,9,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,64.62,0,0,Canceled,2019-01-03 -City Hotel,0,187,2016,October,43,18,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.76,0,3,Check-Out,2019-07-04 -City Hotel,0,153,2016,June,21,5,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient-Party,90.09,0,0,Check-Out,2019-05-04 -City Hotel,1,246,2016,October,40,13,0,2,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Contract,87.21,0,0,No-Show,2018-08-03 -Resort Hotel,0,48,2016,March,16,31,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,Refundable,15.0,222.0,0,Transient,66.72,0,3,Check-Out,2019-03-04 -City Hotel,1,184,2017,June,38,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.67,0,0,Canceled,2020-07-03 -Resort Hotel,0,20,2016,September,42,12,0,4,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,H,H,2,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-06-03 -City Hotel,1,20,2015,September,37,19,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,109.13,0,0,Canceled,2018-09-02 -City Hotel,1,157,2016,August,34,27,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.38,0,0,Canceled,2018-06-02 -City Hotel,1,0,2016,June,28,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,15.0,45.0,0,Transient,59.43,0,0,Canceled,2019-06-03 -City Hotel,1,68,2016,May,19,14,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,92.16,0,1,Canceled,2019-10-04 -City Hotel,0,39,2016,November,46,21,0,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.48,0,2,Check-Out,2019-11-03 -City Hotel,0,282,2017,June,27,9,2,5,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,124.85,0,1,Check-Out,2020-07-03 -City Hotel,0,294,2017,August,38,21,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,172.0,179.0,0,Transient,123.15,0,1,Check-Out,2020-07-03 -Resort Hotel,1,24,2016,April,22,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,212.0,0,Transient,74.25,0,0,Canceled,2019-02-01 -City Hotel,0,119,2017,March,13,28,1,1,1,0.0,0,BB,BRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,68.87,0,3,Check-Out,2020-04-02 -City Hotel,0,174,2017,July,26,15,2,3,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,9.0,179.0,0,Transient,157.76,0,3,Check-Out,2020-03-03 -City Hotel,1,46,2017,February,10,17,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.94,0,0,Canceled,2020-01-04 -Resort Hotel,0,156,2016,March,16,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,H,1,Refundable,12.0,223.0,0,Transient-Party,43.53,1,0,Check-Out,2019-01-03 -City Hotel,0,14,2016,May,23,15,1,2,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,166.28,0,1,Check-Out,2019-04-03 -City Hotel,1,208,2016,April,18,22,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,0,Transient,78.69,0,0,Canceled,2019-02-01 -Resort Hotel,1,305,2017,May,28,30,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,243.0,179.0,0,Transient,218.26,1,1,Canceled,2020-04-02 -City Hotel,1,13,2017,April,15,23,0,3,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.23,0,0,Canceled,2020-04-02 -City Hotel,1,233,2015,August,35,2,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,D,D,0,No Deposit,3.0,179.0,0,Contract,61.86,0,1,Canceled,2017-11-02 -Resort Hotel,0,384,2017,June,25,14,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,63.77,0,3,Check-Out,2020-04-02 -City Hotel,0,2,2015,November,49,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,70.5,0,0,Check-Out,2019-08-04 -Resort Hotel,0,38,2016,January,3,5,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,43.8,0,3,Check-Out,2018-11-02 -Resort Hotel,0,98,2016,December,51,28,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,243.0,179.0,0,Transient-Party,48.64,0,0,Check-Out,2018-11-02 -City Hotel,0,254,2017,May,21,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,101.79,0,1,Check-Out,2020-04-02 -City Hotel,0,57,2016,August,28,19,0,1,1,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,60.95,0,0,Check-Out,2019-04-03 -City Hotel,1,1,2017,March,10,28,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,64.96,0,1,Canceled,2020-01-04 -City Hotel,0,3,2017,September,53,13,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,81.4,0,0,Canceled,2019-10-04 -Resort Hotel,0,10,2017,February,11,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,224.0,0,Transient,25.58,1,0,Check-Out,2020-04-02 -City Hotel,0,15,2017,October,45,28,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,97.86,0,2,Check-Out,2019-12-04 -Resort Hotel,1,138,2016,June,24,2,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,84.42,0,0,Canceled,2018-11-02 -Resort Hotel,0,14,2016,December,44,28,2,3,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,23.05,0,0,Check-Out,2019-12-04 -Resort Hotel,0,53,2016,July,22,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,74.36,0,2,Check-Out,2019-02-01 -City Hotel,0,231,2017,May,44,28,0,1,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.9,0,1,Check-Out,2020-01-04 -City Hotel,1,241,2015,September,41,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,41,Transient-Party,94.79,0,0,Canceled,2018-08-03 -Resort Hotel,0,99,2016,February,10,9,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient,77.68,0,1,Check-Out,2018-11-02 -City Hotel,0,109,2017,May,20,27,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,90.87,0,2,Check-Out,2020-04-02 -City Hotel,1,36,2016,January,2,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,81.82,0,1,Canceled,2018-11-02 -City Hotel,0,92,2016,January,9,10,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.8,0,1,Check-Out,2019-03-04 -City Hotel,0,19,2017,January,2,16,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,118.82,0,0,Check-Out,2020-03-03 -Resort Hotel,0,101,2016,September,21,31,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -City Hotel,1,375,2015,November,51,20,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,66.07,0,0,Canceled,2018-09-02 -Resort Hotel,0,84,2016,May,22,30,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,C,1,No Deposit,248.0,179.0,0,Transient,68.73,1,2,Check-Out,2019-03-04 -City Hotel,1,109,2015,June,27,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.09,0,0,Canceled,2017-12-03 -City Hotel,1,1,2016,March,16,9,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,1,0,P,P,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Canceled,2019-04-03 -Resort Hotel,0,78,2015,October,47,24,2,1,1,0.0,0,BB,USA,Groups,Corporate,0,0,0,A,D,0,No Deposit,12.0,243.0,0,Transient-Party,74.31,0,0,Check-Out,2018-09-02 -City Hotel,1,14,2015,August,36,23,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient-Party,64.27,0,0,Canceled,2018-08-03 -Resort Hotel,0,11,2016,October,43,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,2,No Deposit,15.0,247.0,0,Transient-Party,39.07,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2017,June,27,26,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,331.0,0,Group,0.0,0,0,Check-Out,2020-06-02 -City Hotel,1,102,2016,December,53,30,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.58,0,0,Canceled,2019-11-03 -Resort Hotel,0,142,2016,May,23,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient,80.72,0,0,Check-Out,2019-04-03 -City Hotel,1,12,2016,August,39,6,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,104.72,0,1,Canceled,2019-06-03 -City Hotel,0,1,2017,February,8,18,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,36.0,244.0,0,Transient-Party,77.43,0,0,Check-Out,2020-02-01 -Resort Hotel,0,8,2016,October,42,13,2,0,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,207.0,0,Transient,24.68,0,0,Check-Out,2019-08-04 -Resort Hotel,1,106,2017,January,4,25,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,63.75,0,0,Canceled,2019-10-04 -Resort Hotel,0,101,2016,October,32,10,0,2,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,140.4,0,2,Canceled,2019-08-04 -City Hotel,1,195,2016,August,35,14,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,132.4,0,2,Canceled,2019-07-04 -City Hotel,1,270,2017,July,36,22,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.26,0,0,Canceled,2020-05-03 -Resort Hotel,0,148,2017,March,19,16,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,240.0,179.0,0,Transient,50.13,1,2,Check-Out,2019-10-04 -City Hotel,1,148,2017,March,11,24,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,75,Transient,81.56,0,0,Canceled,2020-03-03 -City Hotel,1,24,2016,June,36,17,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,79.0,0,Transient,61.73,0,0,Canceled,2018-11-02 -City Hotel,0,9,2016,December,22,30,0,2,2,1.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,84.35,0,0,Check-Out,2019-08-04 -City Hotel,1,13,2015,June,38,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.83,0,0,Canceled,2017-12-03 -Resort Hotel,1,139,2015,September,37,16,2,1,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-05-03 -City Hotel,0,110,2017,May,22,28,2,3,2,2.0,0,BB,DEU,Online TA,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,227.79,0,1,Check-Out,2020-04-02 -City Hotel,0,31,2016,June,15,31,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,96.05,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2016,December,50,23,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,256.0,0,Transient,39.31,0,0,Check-Out,2019-03-04 -Resort Hotel,0,303,2016,October,44,9,1,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,97.0,179.0,0,Transient,63.69,0,0,Check-Out,2019-08-04 -Resort Hotel,0,37,2016,January,5,28,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,249.0,179.0,0,Transient,62.18,0,0,Check-Out,2018-12-03 -City Hotel,0,52,2017,May,23,21,0,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,F,F,2,No Deposit,248.0,179.0,0,Transient,152.03,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,February,9,14,0,2,1,0.0,0,BB,POL,Corporate,Corporate,0,1,0,A,D,0,No Deposit,11.0,45.0,0,Transient,69.49,1,1,Check-Out,2018-10-03 -City Hotel,0,13,2017,March,10,21,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,121.17,1,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,January,3,15,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,1,0,A,A,0,No Deposit,11.0,78.0,0,Transient,71.18,1,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,February,10,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,E,0,No Deposit,13.0,74.0,0,Transient,45.76,0,1,Check-Out,2019-11-03 -City Hotel,1,346,2016,October,46,10,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.04,0,0,Canceled,2018-11-02 -City Hotel,0,12,2015,December,49,18,0,4,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,E,F,0,No Deposit,15.0,179.0,0,Transient,0.0,1,0,Check-Out,2018-06-02 -City Hotel,0,22,2017,May,24,24,0,3,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,137.52,0,1,Check-Out,2020-03-03 -Resort Hotel,1,52,2015,October,44,27,3,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,F,L,0,No Deposit,241.0,179.0,0,Transient,118.7,0,1,Canceled,2018-11-02 -Resort Hotel,0,243,2016,June,26,24,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,304.0,179.0,0,Contract,103.61,0,0,Check-Out,2019-07-04 -City Hotel,1,408,2015,September,35,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,62.93,0,0,Canceled,2018-08-03 -Resort Hotel,1,3,2015,December,51,27,0,3,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,66.09,0,0,Canceled,2018-08-03 -City Hotel,0,1,2015,November,50,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,78.28,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,June,17,13,2,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,76.94,0,0,Check-Out,2019-03-04 -Resort Hotel,0,269,2015,November,50,24,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,G,0,No Deposit,327.0,179.0,0,Transient-Party,78.57,0,0,Check-Out,2018-05-03 -City Hotel,0,215,2017,June,24,2,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.37,0,0,Check-Out,2020-04-02 -City Hotel,0,52,2016,September,45,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.19,0,0,Check-Out,2018-08-03 -City Hotel,1,414,2016,December,51,10,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,65,Transient,75.17,0,0,Canceled,2018-08-03 -Resort Hotel,0,48,2016,April,18,31,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,134.63,0,2,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,October,43,15,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient-Party,60.06,0,0,Check-Out,2018-08-03 -City Hotel,0,28,2016,August,36,24,0,1,2,1.0,0,BB,NLD,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,155.46,0,0,Check-Out,2019-06-03 -Resort Hotel,0,34,2015,December,53,17,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,71.8,0,2,Check-Out,2018-06-02 -Resort Hotel,0,34,2015,November,46,16,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,148.86,0,1,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,October,43,4,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,179.0,0,Transient,68.32,0,0,Check-Out,2019-07-04 -City Hotel,1,178,2016,October,44,14,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,112.57,0,0,No-Show,2019-07-04 -City Hotel,0,251,2015,July,32,14,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,C,0,No Deposit,2.0,179.0,0,Contract,70.78,0,1,Check-Out,2017-12-03 -City Hotel,0,2,2016,November,50,19,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,74.68,0,2,Canceled,2019-10-04 -City Hotel,1,142,2017,January,4,21,0,3,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,95.61,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,March,23,13,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.39,0,1,Check-Out,2019-03-04 -City Hotel,0,2,2015,December,46,13,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,35.79,0,0,Check-Out,2018-11-02 -Resort Hotel,1,0,2016,January,3,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,25.82,0,0,Canceled,2019-10-04 -City Hotel,0,193,2017,July,31,4,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,86.83,0,0,Check-Out,2020-06-02 -Resort Hotel,0,178,2016,March,16,31,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,2,Refundable,13.0,223.0,0,Transient-Party,33.77,1,0,Check-Out,2019-02-01 -City Hotel,1,303,2015,October,45,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,113.7,0,0,Canceled,2018-08-03 -City Hotel,0,24,2017,May,23,21,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,79.63,0,2,Check-Out,2020-02-01 -City Hotel,0,85,2016,September,44,9,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.75,0,0,Check-Out,2019-08-04 -City Hotel,1,33,2017,June,27,19,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.39,0,1,Canceled,2020-05-03 -City Hotel,1,159,2016,April,15,25,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,107.28,0,0,Canceled,2019-03-04 -Resort Hotel,1,226,2017,March,17,30,2,5,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,335.0,179.0,75,Transient,94.64,0,0,Canceled,2019-12-04 -City Hotel,1,444,2016,September,46,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.7,0,0,Canceled,2018-08-03 -City Hotel,0,265,2016,November,45,18,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.23,0,1,Check-Out,2019-11-03 -City Hotel,1,242,2017,August,38,6,2,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.31,0,0,Canceled,2020-03-03 -City Hotel,0,4,2016,January,8,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,59.46,0,1,Check-Out,2018-12-03 -City Hotel,0,12,2016,June,38,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,2,No Deposit,13.0,257.0,0,Transient,59.37,1,0,Check-Out,2019-06-03 -City Hotel,0,262,2016,June,21,23,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.63,0,0,Check-Out,2019-02-01 -City Hotel,0,9,2017,May,19,15,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,120.59,0,0,Check-Out,2020-04-02 -City Hotel,1,190,2016,August,39,31,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,185.45,0,1,Canceled,2019-11-03 -City Hotel,0,97,2016,December,46,29,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,144.51,0,3,Check-Out,2019-11-03 -City Hotel,0,35,2017,February,9,15,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,58.78,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,October,43,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,17.0,237.0,0,Transient,36.71,0,0,Check-Out,2018-09-02 -City Hotel,0,91,2016,May,22,16,0,3,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,139.0,179.0,0,Group,96.58,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2017,June,24,8,0,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,79.06,0,0,Check-Out,2020-04-02 -Resort Hotel,0,3,2015,August,32,1,0,2,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,2.26,0,0,Check-Out,2018-05-03 -Resort Hotel,0,183,2016,August,37,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,251.52,0,3,Check-Out,2019-06-03 -Resort Hotel,1,113,2017,February,10,22,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,85.48,0,0,Canceled,2019-12-04 -City Hotel,0,43,2017,April,23,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,73.43,0,1,Check-Out,2020-03-03 -City Hotel,0,104,2015,October,11,30,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,86.09,0,1,Check-Out,2018-12-03 -Resort Hotel,1,101,2016,July,35,31,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,190.05,0,1,Canceled,2019-03-04 -City Hotel,0,1,2016,June,28,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,87.71,1,0,Check-Out,2019-02-01 -Resort Hotel,0,39,2016,March,51,20,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,76.61,0,0,Check-Out,2019-12-04 -City Hotel,0,95,2017,May,23,17,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,155.38,0,0,Check-Out,2019-07-04 -City Hotel,1,40,2017,March,7,24,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,124.02,0,1,Canceled,2019-02-01 -City Hotel,0,203,2015,September,36,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,69.81,0,1,Check-Out,2019-06-03 -City Hotel,1,4,2016,May,22,24,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,10.0,179.0,0,Transient,134.87,0,0,Canceled,2019-03-04 -City Hotel,0,69,2015,October,41,19,2,5,2,0.0,0,HB,AUT,Direct,Direct,0,0,0,F,G,0,No Deposit,9.0,179.0,0,Transient-Party,106.98,0,3,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,February,11,13,0,1,1,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,95.37,0,1,Check-Out,2018-11-02 -City Hotel,1,444,2016,December,50,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,23,Transient,62.08,0,0,Canceled,2017-11-02 -Resort Hotel,0,36,2017,May,9,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,243.0,179.0,0,Transient,144.82,0,3,Check-Out,2019-12-04 -Resort Hotel,0,262,2016,March,10,31,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,223.0,0,Transient-Party,75.95,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2015,October,45,21,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,97.07,0,2,Check-Out,2018-08-03 -City Hotel,1,317,2017,May,20,25,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,62.0,0,0,Canceled,2020-02-01 -Resort Hotel,0,28,2016,September,37,14,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,213.45,1,0,Check-Out,2019-05-04 -City Hotel,0,4,2017,May,24,31,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.73,0,1,Check-Out,2019-02-01 -City Hotel,0,94,2016,June,38,26,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,78.69,0,0,Check-Out,2020-06-02 -City Hotel,1,27,2017,August,37,29,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,74.29,0,0,Canceled,2019-10-04 -City Hotel,0,28,2016,May,23,19,0,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,D,0,No Deposit,195.0,179.0,0,Transient,88.12,0,0,Check-Out,2020-01-04 -Resort Hotel,0,54,2017,July,33,6,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,103.62,1,0,Check-Out,2020-05-03 -City Hotel,1,40,2016,October,44,28,1,1,3,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.2,0,0,Canceled,2019-05-04 -City Hotel,1,48,2016,June,28,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,121.94,0,0,Canceled,2019-03-04 -City Hotel,0,16,2017,June,27,15,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.0,0,1,Check-Out,2020-01-04 -City Hotel,0,38,2017,August,27,1,0,1,3,0.0,0,HB,DEU,Aviation,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient-Party,230.34,0,0,Check-Out,2020-07-03 -City Hotel,0,36,2017,March,7,9,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.49,0,3,Check-Out,2020-02-01 -City Hotel,0,0,2016,December,12,9,0,1,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -City Hotel,1,38,2017,August,37,31,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,F,K,0,No Deposit,9.0,179.0,0,Transient,0.68,0,3,Check-Out,2019-09-03 -City Hotel,0,7,2016,June,27,13,1,1,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,A,2,No Deposit,13.0,187.0,0,Transient,105.8,0,1,Check-Out,2019-06-03 -City Hotel,1,50,2015,November,51,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.95,0,0,Canceled,2018-08-03 -Resort Hotel,0,48,2017,May,22,30,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.12,0,1,Check-Out,2020-07-03 -Resort Hotel,0,45,2016,November,51,24,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,145.3,1,0,Check-Out,2019-08-04 -Resort Hotel,1,47,2017,August,30,24,2,5,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,167.59,0,0,Canceled,2019-10-04 -City Hotel,0,7,2017,February,11,10,1,0,2,0.0,0,BB,CHE,Online TA,Corporate,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,64.27,0,0,Check-Out,2020-01-04 -Resort Hotel,0,190,2017,May,26,14,3,6,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,309.0,179.0,0,Transient-Party,97.77,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2016,April,17,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,71.0,179.0,0,Transient,77.01,0,0,Check-Out,2019-02-01 -City Hotel,0,46,2016,November,48,29,2,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,155.01,0,1,Check-Out,2019-08-04 -Resort Hotel,0,185,2016,August,34,24,4,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,41.11,0,1,Check-Out,2019-09-03 -City Hotel,1,36,2016,February,11,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,69.68,0,0,Canceled,2018-12-03 -City Hotel,1,341,2015,May,25,20,0,3,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.63,0,0,Canceled,2018-06-02 -City Hotel,0,2,2016,January,10,22,0,2,2,0.0,0,BB,DEU,Corporate,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,71.46,0,1,Check-Out,2018-10-03 -Resort Hotel,0,237,2016,June,26,15,2,3,2,1.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,168.28,1,2,Check-Out,2019-06-03 -City Hotel,1,43,2017,May,21,9,2,4,3,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,214.8,1,0,Canceled,2020-03-03 -City Hotel,0,10,2016,November,46,13,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,68.32,0,0,Check-Out,2018-09-02 -City Hotel,1,78,2015,February,8,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,2.0,179.0,0,Transient,60.66,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2016,March,9,10,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,15.0,223.0,0,Transient,38.9,0,0,Check-Out,2019-03-04 -Resort Hotel,1,265,2017,July,36,17,2,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,307.0,179.0,0,Transient,166.28,0,0,Canceled,2019-08-04 -City Hotel,1,107,2015,July,35,21,2,5,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,202.85,0,0,Canceled,2018-06-02 -Resort Hotel,0,105,2017,April,22,2,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,94.39,1,2,Check-Out,2019-12-04 -City Hotel,0,51,2017,April,16,9,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,98.62,0,2,Check-Out,2020-04-02 -City Hotel,0,249,2017,January,9,18,1,0,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,84.85,0,0,Check-Out,2020-06-02 -City Hotel,1,23,2016,March,16,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,39,Transient,85.8,0,0,Canceled,2019-02-01 -Resort Hotel,0,78,2017,July,33,28,2,4,3,1.0,0,HB,USA,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-07-04 -City Hotel,0,9,2015,August,32,6,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,L,D,0,No Deposit,14.0,179.0,0,Transient-Party,61.62,0,0,Check-Out,2018-06-02 -City Hotel,0,3,2017,May,27,27,1,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,99.86,1,0,Check-Out,2020-03-03 -City Hotel,1,3,2017,February,17,18,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,154.56,0,0,Canceled,2020-01-04 -Resort Hotel,0,15,2017,May,24,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,2,No Deposit,311.0,179.0,0,Transient,62.32,0,0,Check-Out,2020-01-04 -Resort Hotel,0,2,2017,June,31,20,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,14.0,179.0,0,Transient,117.87,1,3,Check-Out,2020-06-02 -City Hotel,1,12,2017,July,31,20,2,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.2,0,0,Canceled,2020-02-01 -Resort Hotel,0,162,2017,July,38,25,4,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient,180.64,1,2,Check-Out,2020-07-03 -Resort Hotel,0,28,2016,January,12,29,1,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,61.97,0,3,Check-Out,2019-02-01 -City Hotel,0,98,2016,May,22,18,1,1,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,1.3,0,0,Check-Out,2019-06-03 -Resort Hotel,0,54,2016,October,45,10,0,5,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,D,0,No Deposit,375.0,179.0,0,Transient,77.88,0,0,Check-Out,2019-07-04 -Resort Hotel,0,89,2015,December,50,24,2,5,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient,46.01,0,0,Check-Out,2018-07-03 -City Hotel,0,41,2015,December,50,17,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,59.82,0,0,Check-Out,2018-08-03 -Resort Hotel,1,29,2015,September,35,2,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,L,D,0,No Deposit,14.0,179.0,0,Transient,0.46,0,0,No-Show,2018-05-03 -City Hotel,0,38,2017,April,9,18,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,186.84,0,2,Check-Out,2020-03-03 -City Hotel,0,255,2015,July,30,5,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,97.19,0,2,Check-Out,2018-06-02 -Resort Hotel,0,17,2015,December,53,31,0,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,42.36,0,0,Check-Out,2018-12-03 -Resort Hotel,0,17,2016,May,35,21,3,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,85.0,179.0,0,Transient,71.29,0,0,Check-Out,2019-08-04 -City Hotel,1,35,2017,May,20,21,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,128.59,0,0,Canceled,2020-03-03 -Resort Hotel,0,53,2016,July,35,29,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,112.19,0,2,Check-Out,2019-08-04 -City Hotel,0,29,2016,July,27,21,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,76.44,0,0,Check-Out,2019-03-04 -City Hotel,0,150,2016,December,19,22,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,13.0,179.0,0,Transient,93.69,0,3,Check-Out,2019-10-04 -City Hotel,0,53,2015,November,51,17,2,5,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,99.68,0,2,Check-Out,2018-06-02 -City Hotel,1,8,2017,March,16,10,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.43,0,0,Canceled,2019-02-01 -City Hotel,0,41,2016,September,43,2,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.66,0,1,Check-Out,2019-08-04 -Resort Hotel,0,86,2016,December,49,25,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,61.88,1,0,Check-Out,2019-11-03 -City Hotel,1,403,2016,March,16,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,61.18,0,0,Canceled,2018-10-03 -City Hotel,0,232,2017,August,34,31,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,8.0,179.0,0,Transient,234.91,0,1,Check-Out,2020-07-03 -Resort Hotel,0,2,2017,January,2,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,84.0,0,Transient,69.36,0,0,Check-Out,2020-03-03 -City Hotel,1,36,2016,June,28,27,2,5,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.88,0,0,No-Show,2019-06-03 -City Hotel,1,157,2016,August,39,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,Non Refund,8.0,179.0,0,Transient,117.04,0,0,Canceled,2019-04-03 -City Hotel,1,100,2016,March,8,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,71.0,179.0,0,Transient,70.59,0,0,Canceled,2018-10-03 -Resort Hotel,0,3,2016,September,34,20,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,80.62,0,0,Check-Out,2019-05-04 -City Hotel,1,428,2016,September,30,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.42,0,0,Canceled,2017-12-03 -City Hotel,0,28,2016,July,28,16,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,10.0,179.0,0,Transient,92.11,0,0,Check-Out,2019-06-03 -City Hotel,1,39,2016,April,23,24,0,1,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,115.25,0,0,Canceled,2019-05-04 -City Hotel,1,48,2016,February,8,9,0,2,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,133.0,179.0,0,Transient,78.84,0,0,Canceled,2018-12-03 -City Hotel,1,62,2016,September,45,9,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.21,0,0,Canceled,2019-08-04 -Resort Hotel,0,2,2016,December,52,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,17.0,246.0,0,Transient,37.79,0,0,Check-Out,2018-11-02 -City Hotel,0,102,2017,March,17,6,1,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.55,0,1,Check-Out,2020-03-03 -Resort Hotel,0,245,2017,May,22,10,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,F,2,No Deposit,14.0,179.0,0,Transient,78.17,0,1,Check-Out,2020-04-02 -City Hotel,0,106,2015,November,42,30,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,128.44,0,0,Check-Out,2018-09-02 -City Hotel,0,19,2016,November,43,20,0,1,2,0.0,0,BB,GBR,Complementary,Direct,0,0,0,D,D,0,No Deposit,13.0,45.0,0,Transient,134.71,0,0,Check-Out,2018-08-03 -City Hotel,0,10,2016,January,11,6,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,94.64,0,1,Check-Out,2019-05-04 -City Hotel,1,45,2016,June,18,18,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,131.0,179.0,0,Transient,120.43,0,0,Canceled,2020-01-04 -City Hotel,0,8,2016,March,11,7,1,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,71.86,0,1,Check-Out,2018-11-02 -City Hotel,1,1,2015,July,35,12,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.99,0,0,Canceled,2018-06-02 -City Hotel,0,96,2017,May,22,21,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.44,0,3,Check-Out,2020-03-03 -City Hotel,0,243,2017,July,37,2,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.98,0,0,Check-Out,2020-06-02 -City Hotel,0,85,2016,May,20,25,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,86.75,1,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,January,9,27,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,77.47,1,1,Check-Out,2019-10-04 -Resort Hotel,0,274,2016,November,50,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,41.69,0,0,Check-Out,2019-01-03 -City Hotel,0,31,2016,October,42,13,0,3,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.69,0,0,Check-Out,2019-07-04 -Resort Hotel,0,21,2015,December,50,27,0,2,2,0.0,0,HB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient-Party,39.35,0,1,Check-Out,2019-11-03 -Resort Hotel,0,38,2015,October,42,21,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,80.77,0,0,Check-Out,2018-08-03 -City Hotel,1,6,2016,February,8,15,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,6.0,179.0,0,Transient,80.79,0,0,No-Show,2018-12-03 -City Hotel,0,152,2017,February,12,14,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Contract,121.64,0,3,Check-Out,2019-11-03 -City Hotel,0,77,2016,September,19,10,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,136.95,0,2,Check-Out,2019-06-03 -Resort Hotel,0,2,2017,May,23,9,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,C,I,2,No Deposit,10.0,179.0,0,Transient,1.29,0,1,Check-Out,2020-02-01 -City Hotel,0,3,2016,October,44,13,1,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.52,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,January,2,15,0,4,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,76.0,0,Transient,29.18,0,0,Check-Out,2020-04-02 -City Hotel,0,93,2017,April,15,28,2,5,3,0.0,0,HB,,Groups,TA/TO,0,0,0,E,F,0,No Deposit,378.0,179.0,75,Transient-Party,88.68,0,0,Check-Out,2020-03-03 -City Hotel,1,32,2016,July,27,31,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.13,0,0,Canceled,2019-03-04 -City Hotel,0,21,2016,October,43,14,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,71.11,0,0,Check-Out,2019-09-03 -City Hotel,1,202,2017,August,36,19,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,156.0,179.0,0,Transient,123.84,0,0,Canceled,2019-08-04 -Resort Hotel,1,86,2016,March,9,12,2,5,1,1.0,0,BB,,Direct,Direct,0,0,0,D,H,2,No Deposit,14.0,179.0,0,Transient,83.71,0,1,No-Show,2019-03-04 -City Hotel,0,0,2017,January,3,15,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,171.0,179.0,0,Transient,62.15,0,0,Check-Out,2019-10-04 -Resort Hotel,0,260,2017,February,10,8,2,10,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,372.0,179.0,0,Transient,105.21,0,0,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,February,10,13,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,45.16,0,0,Check-Out,2020-02-01 -City Hotel,0,45,2016,May,16,29,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,128.78,0,0,Check-Out,2018-12-03 -City Hotel,0,38,2015,September,36,23,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Contract,60.72,0,2,Check-Out,2018-07-03 -Resort Hotel,0,285,2016,August,39,25,2,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient-Party,45.04,0,0,Check-Out,2019-07-04 -City Hotel,0,13,2017,August,32,28,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,112.4,1,3,Check-Out,2020-07-03 -City Hotel,1,31,2016,December,53,25,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,63.02,0,2,Canceled,2019-09-03 -Resort Hotel,1,236,2017,July,39,26,2,5,3,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,E,0,No Deposit,191.0,179.0,0,Transient,211.19,1,0,Canceled,2019-12-04 -Resort Hotel,0,3,2017,February,9,7,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,D,1,No Deposit,15.0,331.0,0,Transient-Party,34.2,0,0,Check-Out,2020-01-04 -City Hotel,0,47,2017,June,26,31,0,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,156.54,0,1,Check-Out,2020-01-04 -City Hotel,1,269,2017,June,29,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,208.65,0,0,Canceled,2020-05-03 -Resort Hotel,1,0,2017,January,3,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,80.0,179.0,0,Transient,32.3,0,0,Canceled,2018-10-03 -City Hotel,0,0,2015,October,43,6,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,153.85,0,0,Check-Out,2018-08-03 -City Hotel,0,15,2017,May,24,10,0,2,1,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.82,0,2,Check-Out,2020-06-02 -Resort Hotel,0,41,2015,November,50,9,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,31.96,0,0,Check-Out,2018-06-02 -City Hotel,1,103,2015,September,38,26,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,119.48,0,0,Canceled,2017-12-03 -Resort Hotel,0,7,2016,March,18,28,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,131.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,July,31,5,2,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,165.93,0,2,Canceled,2018-11-02 -City Hotel,0,20,2017,April,10,8,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,131.7,0,1,Check-Out,2020-02-01 -Resort Hotel,0,1,2016,February,8,26,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,16.0,89.0,0,Transient,79.71,0,0,Check-Out,2019-02-01 -City Hotel,1,422,2015,October,45,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.37,0,0,Canceled,2018-08-03 -City Hotel,0,43,2016,January,4,7,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,59.75,0,0,Check-Out,2018-11-02 -Resort Hotel,0,40,2016,March,15,14,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,60.56,0,0,Check-Out,2019-03-04 -Resort Hotel,0,85,2015,December,53,30,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,52.66,0,1,Check-Out,2018-07-03 -City Hotel,1,164,2017,February,8,30,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.95,0,0,Canceled,2020-06-02 -City Hotel,1,149,2017,July,28,14,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.51,0,0,Canceled,2020-04-02 -City Hotel,0,107,2017,August,34,30,3,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,227.0,179.0,0,Transient,187.51,0,0,Check-Out,2020-07-03 -City Hotel,0,35,2016,July,31,15,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,208.18,0,2,Check-Out,2020-06-02 -Resort Hotel,0,155,2016,November,51,30,0,3,2,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,90.0,256.0,0,Transient,40.44,0,0,Check-Out,2019-10-04 -Resort Hotel,0,201,2017,July,37,5,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,0,No Deposit,17.0,179.0,0,Transient,220.51,0,0,Check-Out,2020-05-03 -City Hotel,1,81,2016,February,10,13,2,0,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,61.39,0,0,No-Show,2018-12-03 -Resort Hotel,1,46,2017,August,34,15,2,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -City Hotel,0,52,2017,April,18,19,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,110.05,0,2,Check-Out,2020-04-02 -Resort Hotel,0,35,2015,September,44,29,2,2,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,94.56,1,1,Check-Out,2019-09-03 -City Hotel,0,4,2017,April,22,12,1,0,2,0.0,0,SC,ESP,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,49.96,0,0,Check-Out,2020-03-03 -Resort Hotel,1,155,2016,April,16,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient,34.57,0,0,Canceled,2019-03-04 -City Hotel,0,102,2017,June,24,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.4,0,1,Check-Out,2020-06-02 -City Hotel,1,46,2016,July,37,8,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.32,0,1,No-Show,2018-10-03 -Resort Hotel,0,41,2016,June,26,8,4,4,2,0.0,0,HB,USA,Direct,Direct,0,0,0,F,C,1,No Deposit,14.0,179.0,0,Transient,189.63,0,0,Check-Out,2020-02-01 -City Hotel,1,141,2016,October,45,29,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,72.0,179.0,0,Transient,70.3,0,0,No-Show,2019-02-01 -City Hotel,1,132,2016,December,53,15,0,3,2,2.0,0,SC,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,204.72,0,1,Canceled,2019-07-04 -Resort Hotel,0,0,2015,December,52,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,18.0,255.0,0,Transient-Party,34.55,0,0,Check-Out,2018-09-02 -Resort Hotel,0,230,2017,August,35,20,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,323.0,179.0,0,Transient-Party,64.06,0,0,Check-Out,2019-12-04 -Resort Hotel,0,37,2016,April,18,24,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,14.0,179.0,0,Transient,95.49,0,0,Check-Out,2019-02-01 -Resort Hotel,1,164,2017,July,38,24,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,238.0,179.0,0,Transient,184.28,0,0,Canceled,2020-06-02 -City Hotel,0,283,2016,May,46,23,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,24,Transient-Party,115.54,0,0,Check-Out,2019-03-04 -Resort Hotel,0,38,2015,October,45,27,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,G,0,No Deposit,244.0,179.0,0,Transient,45.07,1,0,Check-Out,2018-09-02 -City Hotel,0,11,2017,June,25,10,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,95.12,0,1,Check-Out,2020-07-03 -City Hotel,0,2,2016,August,35,7,0,1,3,2.0,0,BB,USA,Direct,Direct,0,0,0,B,B,1,No Deposit,17.0,179.0,0,Transient,165.66,0,1,Check-Out,2019-06-03 -Resort Hotel,0,39,2016,March,11,24,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,321.0,179.0,0,Transient,59.96,0,0,Check-Out,2019-03-04 -City Hotel,1,47,2017,February,10,2,0,1,2,0.0,0,BB,RUS,Aviation,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,1,286,2016,September,24,28,3,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,96.73,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,May,22,5,1,1,2,0.0,0,BB,FRA,Direct,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Group,0.0,0,1,Check-Out,2020-02-01 -Resort Hotel,1,1,2016,September,44,24,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,90.9,0,3,Canceled,2018-08-03 -City Hotel,0,31,2017,February,11,25,0,1,2,2.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,74.3,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2015,December,36,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,117.61,0,1,Check-Out,2019-01-03 -City Hotel,1,54,2016,February,10,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,65.9,0,0,Canceled,2018-10-03 -City Hotel,0,109,2017,August,23,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,134.11,1,1,Check-Out,2020-07-03 -City Hotel,0,12,2016,November,45,21,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,214.69,0,0,Check-Out,2019-08-04 -Resort Hotel,1,163,2016,March,16,7,2,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,1,A,D,1,Refundable,11.0,222.0,0,Transient-Party,77.49,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2016,September,36,17,3,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,366.0,179.0,0,Transient,77.99,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,January,11,27,0,1,2,0.0,0,BB,,Corporate,Corporate,0,0,0,B,E,0,No Deposit,41.0,81.0,0,Transient,69.63,0,0,Check-Out,2018-11-02 -City Hotel,0,54,2016,July,21,17,2,0,3,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,135.72,0,2,Check-Out,2020-02-01 -City Hotel,0,12,2017,June,20,28,0,1,1,0.0,0,SC,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,125.52,0,2,Check-Out,2020-05-03 -City Hotel,1,258,2015,September,43,7,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.44,1,2,Canceled,2017-12-03 -Resort Hotel,0,11,2015,October,44,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,2,No Deposit,250.0,179.0,0,Transient,161.49,0,0,Check-Out,2018-08-03 -City Hotel,1,124,2017,August,32,6,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,7.0,179.0,0,Transient,201.77,0,3,Canceled,2020-06-02 -City Hotel,1,35,2017,March,15,6,2,3,2,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.97,0,0,Canceled,2019-03-04 -Resort Hotel,0,290,2016,August,36,13,2,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,125.03,0,0,Check-Out,2019-03-04 -City Hotel,0,34,2016,October,43,2,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,99.69,0,0,Check-Out,2019-11-03 -City Hotel,0,22,2016,December,50,28,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,85.0,0,Transient,72.26,0,0,Check-Out,2019-11-03 -City Hotel,0,14,2015,September,42,31,2,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Contract,77.22,0,0,No-Show,2018-08-03 -Resort Hotel,0,0,2016,March,11,30,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,122.16,0,0,Check-Out,2019-02-01 -Resort Hotel,0,56,2016,November,21,20,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,79.0,179.0,0,Transient-Party,94.71,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,January,9,28,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,75.16,0,0,Check-Out,2019-02-01 -Resort Hotel,1,246,2016,February,15,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient-Party,70.99,0,0,Canceled,2018-11-02 -Resort Hotel,0,20,2015,November,49,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,185.0,179.0,0,Transient,58.7,1,0,Check-Out,2019-10-04 -Resort Hotel,0,115,2015,December,50,30,2,1,2,0.0,0,HB,POL,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,193.84,1,2,Check-Out,2018-08-03 -City Hotel,0,10,2017,May,22,7,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Group,120.37,0,0,Check-Out,2020-05-03 -City Hotel,0,2,2016,October,28,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,65.0,0,Transient,41.38,1,0,Check-Out,2019-07-04 -City Hotel,1,113,2016,October,45,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,45,Transient,78.0,0,0,Canceled,2018-11-02 -City Hotel,1,264,2016,December,51,30,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,6.0,179.0,0,Transient,66.03,0,0,Canceled,2019-12-04 -Resort Hotel,0,103,2015,April,35,24,2,4,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,E,D,0,No Deposit,35.0,179.0,0,Transient-Party,62.82,0,0,Check-Out,2020-06-02 -City Hotel,0,16,2016,June,27,28,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,122.48,0,1,Check-Out,2019-03-04 -City Hotel,1,14,2015,December,51,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,76.61,0,1,Canceled,2018-05-03 -Resort Hotel,0,2,2017,January,53,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,82.05,0,1,Check-Out,2019-10-04 -City Hotel,0,36,2017,April,18,25,2,5,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.97,0,1,Check-Out,2020-03-03 -Resort Hotel,0,105,2017,July,27,30,0,4,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,E,1,No Deposit,15.0,179.0,0,Transient,155.52,0,0,Check-Out,2020-06-02 -Resort Hotel,0,53,2016,March,17,30,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,63.36,0,0,Canceled,2019-02-01 -City Hotel,0,38,2015,December,50,6,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,D,0,No Deposit,13.0,45.0,0,Transient,60.58,0,0,Check-Out,2019-01-03 -City Hotel,0,84,2015,July,29,5,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,82.62,0,0,Check-Out,2018-06-02 -City Hotel,1,60,2016,December,27,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,69.39,0,0,Canceled,2018-12-03 -Resort Hotel,0,141,2016,October,43,22,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,241.0,179.0,0,Transient,123.65,1,2,Check-Out,2019-08-04 -Resort Hotel,0,105,2017,July,35,31,2,5,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-05-03 -Resort Hotel,0,112,2016,May,28,6,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,316.0,179.0,0,Transient,62.16,1,0,Check-Out,2019-06-03 -City Hotel,0,14,2016,December,53,30,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,66.83,0,0,Check-Out,2019-12-04 -City Hotel,1,271,2017,May,28,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,158.43,0,3,Canceled,2020-03-03 -City Hotel,0,42,2016,March,16,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,74.44,0,1,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,July,31,30,0,2,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,126.2,0,0,Check-Out,2018-05-03 -City Hotel,0,12,2015,September,40,9,0,2,1,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-08-03 -City Hotel,1,18,2017,May,28,27,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,142.44,0,0,Canceled,2020-03-03 -City Hotel,0,109,2016,July,32,4,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,157.72,0,0,Check-Out,2020-05-03 -Resort Hotel,0,156,2015,July,38,31,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,198.9,0,0,Canceled,2018-08-03 -City Hotel,1,96,2016,April,16,31,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.33,0,0,Canceled,2019-02-01 -City Hotel,1,415,2015,July,39,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.12,0,0,Canceled,2018-06-02 -Resort Hotel,0,35,2016,June,27,16,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,117.88,0,1,Check-Out,2019-06-03 -City Hotel,1,298,2015,December,51,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.19,0,0,Canceled,2018-01-03 -City Hotel,1,164,2017,April,19,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,43,Transient,99.23,0,0,Canceled,2019-10-04 -City Hotel,1,15,2016,July,34,30,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,124.12,0,2,No-Show,2019-04-03 -City Hotel,1,97,2017,May,21,31,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,169.69,0,0,Canceled,2020-03-03 -City Hotel,1,321,2016,October,42,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,66,Transient,71.73,0,0,Canceled,2018-11-02 -Resort Hotel,1,0,2016,January,2,24,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,264.0,0,Transient,33.44,0,0,Canceled,2019-10-04 -Resort Hotel,0,11,2016,June,26,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,84.26,0,0,Check-Out,2019-06-03 -Resort Hotel,1,44,2017,July,31,21,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,164.48,0,0,Canceled,2020-03-03 -Resort Hotel,0,37,2016,March,15,31,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,243.0,179.0,0,Transient,42.35,0,0,Check-Out,2019-03-04 -Resort Hotel,1,0,2016,October,45,13,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,62.01,0,0,Canceled,2018-09-02 -Resort Hotel,0,296,2015,August,37,9,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Contract,119.16,0,0,Check-Out,2017-10-03 -Resort Hotel,0,3,2015,October,43,9,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,73.94,0,2,Check-Out,2018-08-03 -City Hotel,1,274,2016,October,43,9,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,161.69,0,0,Canceled,2019-08-04 -City Hotel,0,183,2016,October,43,12,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,109.84,0,2,Check-Out,2019-11-03 -Resort Hotel,1,74,2017,May,17,11,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,141.32,0,1,Canceled,2020-04-02 -Resort Hotel,0,9,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,223.0,0,Transient,45.79,0,0,Check-Out,2020-03-03 -Resort Hotel,0,244,2016,May,24,31,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,90.0,179.0,0,Transient,72.56,0,0,Check-Out,2019-02-01 -Resort Hotel,0,32,2016,March,10,16,1,7,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,312.0,179.0,0,Transient,78.75,0,0,Check-Out,2019-04-03 -City Hotel,0,1,2016,October,4,15,1,0,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,206.58,0,0,Check-Out,2019-05-04 -Resort Hotel,1,44,2015,December,44,6,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,36.8,0,0,Canceled,2018-05-03 -Resort Hotel,1,119,2017,March,8,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,236.0,179.0,0,Transient,71.29,0,0,Canceled,2019-10-04 -City Hotel,0,1,2015,October,45,25,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,K,0,No Deposit,10.0,179.0,0,Contract,91.64,0,0,Check-Out,2018-09-02 -City Hotel,1,414,2017,May,26,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,46.53,0,0,Canceled,2019-11-03 -City Hotel,0,238,2016,October,31,16,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,230.64,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,December,50,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,3,No Deposit,15.0,252.0,0,Transient,60.54,0,0,Check-Out,2019-11-03 -City Hotel,1,45,2016,September,34,12,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,11.0,179.0,0,Transient,197.38,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2016,February,9,24,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,63.07,1,0,Check-Out,2018-11-02 -City Hotel,0,82,2017,June,25,9,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,163.31,0,2,Check-Out,2020-02-01 -Resort Hotel,0,285,2016,July,34,25,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,188.74,1,1,Check-Out,2019-05-04 -Resort Hotel,0,15,2016,March,43,31,1,3,2,0.0,0,BB,CN,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,223.0,0,Transient-Party,69.99,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2017,February,10,17,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.31,0,1,Check-Out,2020-01-04 -Resort Hotel,0,8,2017,May,24,29,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,65.18,0,1,Check-Out,2020-01-04 -City Hotel,0,0,2016,October,43,1,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,81.78,0,0,Check-Out,2019-09-03 -Resort Hotel,0,101,2017,March,12,28,0,3,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,69.56,0,0,Check-Out,2019-11-03 -Resort Hotel,0,46,2016,June,27,26,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,H,2,No Deposit,18.0,179.0,0,Transient,137.95,1,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2016,October,43,13,4,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,20,Transient,116.24,0,0,Check-Out,2019-08-04 -City Hotel,0,100,2016,November,45,10,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,62.58,0,1,Check-Out,2018-12-03 -City Hotel,1,3,2017,February,8,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,59.48,0,1,Canceled,2019-09-03 -Resort Hotel,0,38,2016,December,51,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient-Party,76.53,0,0,Check-Out,2019-10-04 -City Hotel,1,251,2016,September,36,18,1,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,82.79,0,1,Canceled,2019-05-04 -City Hotel,1,3,2016,January,26,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,69.0,179.0,0,Transient,161.15,0,0,Canceled,2018-12-03 -Resort Hotel,1,110,2016,October,43,21,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,155.76,0,3,Check-Out,2019-04-03 -Resort Hotel,1,23,2016,September,37,25,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,62.27,0,0,Canceled,2018-06-02 -City Hotel,0,239,2015,July,32,31,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.84,0,2,Check-Out,2018-08-03 -Resort Hotel,0,2,2015,November,45,29,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,92.0,0,Transient,36.76,1,0,Check-Out,2019-01-03 -Resort Hotel,1,40,2016,August,11,7,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,62.09,0,0,Canceled,2019-08-04 -Resort Hotel,1,254,2016,June,27,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,105.0,179.0,0,Transient,117.16,0,0,Canceled,2018-12-03 -City Hotel,1,10,2016,December,20,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,60.99,0,0,Canceled,2018-12-03 -City Hotel,0,53,2016,December,50,9,2,0,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,101.97,0,0,Check-Out,2019-11-03 -City Hotel,0,39,2016,January,4,6,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,38.0,179.0,41,Transient,58.4,0,0,Check-Out,2018-11-02 -City Hotel,0,86,2016,June,27,17,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.66,0,2,Check-Out,2019-06-03 -Resort Hotel,0,6,2015,November,44,17,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,69.86,0,0,Check-Out,2018-08-03 -City Hotel,0,142,2017,June,28,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.68,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2016,December,52,27,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,G,F,1,No Deposit,18.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,1,330,2017,May,21,28,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.23,0,0,Canceled,2019-11-03 -City Hotel,0,46,2016,February,16,27,2,0,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,70.68,0,1,Check-Out,2019-02-01 -City Hotel,1,137,2017,June,25,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.84,0,0,Canceled,2020-04-02 -Resort Hotel,0,25,2017,August,37,15,2,5,3,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,84.0,179.0,0,Transient,123.56,0,1,Check-Out,2020-07-03 -Resort Hotel,0,160,2017,August,36,31,0,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,91.83,0,2,Check-Out,2020-07-03 -City Hotel,0,24,2016,December,47,29,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,172.22,0,1,Check-Out,2019-08-04 -City Hotel,0,35,2016,May,23,15,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,97.99,1,2,Check-Out,2019-06-03 -City Hotel,0,33,2016,March,15,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.09,0,3,Check-Out,2019-03-04 -City Hotel,1,197,2017,May,27,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,F,0,Non Refund,14.0,179.0,0,Transient,131.03,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,March,9,7,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,58.63,0,2,Check-Out,2019-02-01 -City Hotel,1,31,2016,August,36,6,2,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,173.09,0,1,Canceled,2019-08-04 -City Hotel,1,116,2016,January,11,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Transient,82.7,0,0,Canceled,2019-10-04 -Resort Hotel,0,5,2015,October,44,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,0,No Deposit,13.0,61.0,0,Group,0.0,0,0,Check-Out,2018-01-31 -Resort Hotel,0,8,2015,December,42,13,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,D,1,No Deposit,246.0,179.0,0,Transient,81.84,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2016,May,28,20,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,120.12,0,0,Check-Out,2019-11-03 -City Hotel,0,55,2017,June,28,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,K,0,No Deposit,13.0,45.0,0,Group,116.69,0,0,Check-Out,2020-03-03 -Resort Hotel,1,250,2016,December,22,30,2,5,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,F,E,0,No Deposit,179.0,179.0,0,Transient,156.09,0,0,Canceled,2019-09-03 -Resort Hotel,0,113,2017,August,39,22,2,7,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,194.86,1,1,Check-Out,2020-07-03 -City Hotel,1,148,2016,March,18,26,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,116.79,0,1,Canceled,2019-01-03 -City Hotel,0,90,2016,December,48,4,2,0,2,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,16.0,179.0,0,Transient,1.8,0,1,Check-Out,2019-11-03 -Resort Hotel,0,101,2015,September,42,15,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,1.0,179.0,0,Transient-Party,131.94,0,0,Check-Out,2018-09-02 -City Hotel,0,180,2017,May,22,15,0,4,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,121.67,0,3,Check-Out,2020-02-01 -Resort Hotel,1,294,2017,July,32,20,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,213.88,0,0,Canceled,2019-11-03 -Resort Hotel,1,45,2017,April,16,13,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,190.58,0,2,Canceled,2019-02-01 -City Hotel,1,32,2016,September,37,15,2,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,153.32,0,1,Canceled,2019-08-04 -Resort Hotel,0,8,2016,June,17,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,40.48,0,0,Check-Out,2019-02-01 -City Hotel,1,12,2016,January,4,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.77,0,1,No-Show,2018-12-03 -City Hotel,0,146,2017,March,17,28,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,141.47,0,1,Check-Out,2020-05-03 -City Hotel,1,98,2015,August,46,17,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,71.0,179.0,0,Transient,102.5,0,1,Canceled,2018-08-03 -Resort Hotel,0,102,2017,January,11,2,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,248.0,179.0,0,Transient,73.08,0,3,Check-Out,2020-03-03 -Resort Hotel,0,15,2016,October,42,28,0,3,3,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,E,2,No Deposit,244.0,179.0,0,Transient,38.1,0,2,Check-Out,2019-08-04 -Resort Hotel,0,11,2016,March,24,22,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,59.79,0,0,Check-Out,2019-06-03 -Resort Hotel,1,116,2015,August,32,13,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,172.0,179.0,0,Transient,84.0,0,0,Canceled,2018-09-02 -City Hotel,0,84,2016,October,45,5,2,3,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,131.64,0,1,Check-Out,2019-06-03 -Resort Hotel,0,110,2017,June,27,19,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,115.93,1,0,Check-Out,2020-05-03 -City Hotel,1,102,2016,September,22,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,125.43,0,0,Canceled,2018-07-03 -City Hotel,1,431,2016,May,24,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.62,0,0,Canceled,2018-01-03 -City Hotel,1,234,2016,December,53,6,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,74.82,0,1,Canceled,2018-11-02 -Resort Hotel,1,315,2016,April,17,22,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,308.0,179.0,0,Transient,76.51,0,0,Canceled,2019-02-01 -Resort Hotel,0,258,2017,August,34,16,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,36.63,1,2,Check-Out,2020-01-04 -City Hotel,0,37,2016,February,12,21,1,2,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,96.0,179.0,0,Transient,69.64,0,2,Check-Out,2019-03-04 -Resort Hotel,0,17,2017,July,37,20,2,1,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient-Party,216.48,1,1,Check-Out,2020-07-03 -City Hotel,0,5,2015,December,51,31,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,109.89,0,0,Canceled,2018-08-03 -City Hotel,0,104,2016,March,10,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,105.0,179.0,0,Transient,39.51,0,0,Check-Out,2019-02-01 -City Hotel,0,40,2016,December,49,5,0,1,2,0.0,0,HB,ESP,Online TA,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,119.36,1,1,Check-Out,2019-11-03 -Resort Hotel,1,41,2016,August,30,16,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,223.0,0,2,Canceled,2019-05-04 -Resort Hotel,0,301,2017,April,16,28,2,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,122.03,0,3,Check-Out,2020-02-01 -City Hotel,0,1,2016,December,53,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,72.83,0,0,Check-Out,2019-09-03 -Resort Hotel,0,10,2016,February,11,30,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient,35.16,0,0,Check-Out,2018-12-03 -City Hotel,0,44,2016,July,31,20,2,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,214.25,0,1,Canceled,2019-06-03 -City Hotel,1,111,2017,March,11,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.99,0,0,Canceled,2019-11-03 -City Hotel,1,95,2016,October,51,31,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,154.0,179.0,0,Transient,71.27,0,0,Canceled,2019-10-04 -City Hotel,0,173,2017,July,30,7,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,163.75,0,1,Check-Out,2020-02-01 -City Hotel,0,21,2016,December,52,8,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.77,0,0,Check-Out,2019-09-03 -City Hotel,0,113,2017,April,22,30,1,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,108.76,0,2,Check-Out,2020-03-03 -City Hotel,0,159,2016,December,52,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,85.32,0,0,Check-Out,2019-10-04 -City Hotel,0,7,2017,July,32,27,0,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,212.0,0,Transient-Party,118.95,0,1,Check-Out,2020-07-03 -Resort Hotel,0,17,2017,February,7,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,16.0,331.0,0,Transient-Party,71.07,0,0,Check-Out,2019-12-04 -City Hotel,0,15,2015,September,44,26,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,58.87,0,0,Check-Out,2018-07-03 -City Hotel,0,153,2016,July,32,27,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,167.71,0,1,Check-Out,2019-08-04 -City Hotel,1,49,2017,July,34,15,2,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,132.9,0,1,Canceled,2019-07-04 -Resort Hotel,0,18,2016,May,21,5,1,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,152.39,1,2,Check-Out,2020-03-03 -City Hotel,0,41,2016,June,23,31,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,130.85,0,1,Check-Out,2019-05-04 -City Hotel,1,32,2016,August,34,15,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,167.14,0,0,Canceled,2019-02-01 -City Hotel,1,100,2017,May,21,20,2,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.6,0,2,Canceled,2020-03-03 -City Hotel,1,93,2015,July,38,28,2,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,93.0,0,0,Canceled,2018-05-03 -City Hotel,1,0,2015,July,36,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,16.0,45.0,0,Transient,160.16,0,0,Canceled,2018-06-02 -Resort Hotel,0,39,2016,May,26,30,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,121.89,1,2,Check-Out,2019-06-03 -Resort Hotel,0,118,2017,June,27,16,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,115.9,0,1,Check-Out,2020-04-02 -City Hotel,0,285,2017,June,29,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,25.0,331.0,0,Transient,119.35,0,1,Check-Out,2020-03-03 -City Hotel,1,1,2017,October,38,10,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.34,0,0,Canceled,2019-11-03 -City Hotel,0,216,2016,April,21,5,1,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,90.59,0,1,Check-Out,2019-12-04 -City Hotel,1,56,2016,March,11,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,90.0,179.0,0,Transient,72.39,0,0,Canceled,2018-11-02 -City Hotel,0,76,2016,November,50,26,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,117.89,0,0,Check-Out,2019-10-04 -Resort Hotel,1,51,2015,December,36,30,2,2,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,59.01,0,0,No-Show,2018-05-03 -City Hotel,1,45,2016,September,42,20,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,149.31,0,0,Canceled,2019-08-04 -City Hotel,1,207,2017,March,26,13,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,152.17,0,0,Canceled,2020-01-04 -City Hotel,1,100,2017,February,9,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,66.0,0,Transient,63.62,0,0,Canceled,2018-10-03 -City Hotel,0,39,2017,March,17,15,2,3,3,0.0,0,BB,BRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,159.0,0,Transient,128.77,0,0,Check-Out,2020-04-02 -City Hotel,0,13,2017,June,27,23,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.53,0,0,Check-Out,2020-07-03 -City Hotel,1,54,2017,March,9,28,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.95,0,0,Canceled,2019-12-04 -Resort Hotel,0,39,2016,February,18,6,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,36.91,0,0,Check-Out,2019-03-04 -Resort Hotel,0,88,2017,May,21,7,1,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,239.0,179.0,0,Transient,188.97,0,3,Check-Out,2020-04-02 -City Hotel,0,41,2016,June,22,24,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.33,0,1,Check-Out,2019-03-04 -City Hotel,1,42,2016,December,12,25,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,13.0,45.0,41,Transient,78.13,0,0,Canceled,2018-11-02 -Resort Hotel,0,39,2015,July,31,23,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,64.59,0,0,Check-Out,2018-06-02 -Resort Hotel,0,98,2017,June,33,6,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient,111.86,0,2,Check-Out,2020-05-03 -City Hotel,0,0,2017,February,10,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,A,0,No Deposit,238.0,179.0,0,Transient,66.21,1,1,Check-Out,2018-10-03 -City Hotel,0,285,2017,June,24,1,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,101.69,0,0,Check-Out,2020-06-02 -Resort Hotel,0,2,2015,August,36,24,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,0.58,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,January,8,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,33.34,0,1,Check-Out,2018-11-02 -City Hotel,1,218,2016,September,37,28,0,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,193.21,0,1,Canceled,2019-07-04 -Resort Hotel,0,241,2015,August,37,28,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,92.0,179.0,0,Transient-Party,102.07,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,January,49,27,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,327.0,179.0,0,Transient,26.43,0,0,Check-Out,2018-11-02 -Resort Hotel,1,1,2016,February,12,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,H,F,0,No Deposit,17.0,227.0,0,Transient,34.35,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,June,37,19,1,2,1,0.0,0,BB,CHE,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,91.24,0,0,Check-Out,2019-02-01 -City Hotel,0,276,2015,July,49,29,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Contract,62.72,0,0,Check-Out,2018-08-03 -Resort Hotel,1,195,2017,August,37,28,0,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,139.58,0,0,Canceled,2020-06-02 -City Hotel,0,0,2016,June,27,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,B,0,No Deposit,13.0,45.0,0,Transient,61.26,0,1,Check-Out,2019-04-03 -City Hotel,1,144,2016,January,5,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,34.0,179.0,41,Transient,70.4,0,0,Canceled,2018-11-02 -Resort Hotel,1,22,2017,August,39,22,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,83.61,0,1,Canceled,2020-07-03 -Resort Hotel,0,281,2015,August,37,21,2,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,104.96,0,0,Check-Out,2018-05-03 -Resort Hotel,0,3,2015,August,35,12,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,199.55,0,3,Check-Out,2018-07-03 -Resort Hotel,1,40,2016,April,18,20,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,0,Non Refund,1.0,179.0,0,Transient,61.51,0,0,Canceled,2018-12-03 -Resort Hotel,0,57,2016,October,43,26,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,157.66,0,0,Check-Out,2019-05-04 -Resort Hotel,0,44,2015,August,37,5,2,5,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,106.0,179.0,0,Transient,42.53,1,3,Check-Out,2018-08-03 -City Hotel,1,146,2016,July,38,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,86.87,0,0,Canceled,2019-01-03 -City Hotel,1,20,2016,August,37,15,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,140.02,0,3,Canceled,2019-03-04 -Resort Hotel,1,21,2017,June,33,5,2,4,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.68,0,0,Canceled,2020-04-02 -Resort Hotel,0,40,2016,December,53,9,0,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,78.59,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,March,8,6,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,78.65,0,0,Check-Out,2019-06-03 -City Hotel,0,142,2016,December,52,15,0,3,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,104.33,0,0,Check-Out,2019-11-03 -City Hotel,0,18,2016,October,45,12,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient-Party,114.46,0,0,Check-Out,2019-08-04 -Resort Hotel,0,45,2016,December,50,27,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,45.36,0,1,Check-Out,2019-03-04 -Resort Hotel,0,49,2016,August,31,24,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,35.18,0,0,Check-Out,2019-04-03 -Resort Hotel,0,19,2016,October,46,21,3,2,2,0.0,0,FB,FRA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,283.0,179.0,0,Transient,73.11,0,0,Check-Out,2019-07-04 -Resort Hotel,0,13,2015,August,36,28,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,220.29,1,0,Check-Out,2018-06-02 -City Hotel,1,104,2016,August,30,4,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,56.5,0,1,No-Show,2018-06-02 -City Hotel,0,2,2015,October,41,17,0,1,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,113.22,0,0,Check-Out,2018-07-03 -City Hotel,1,8,2017,August,34,20,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,91.51,0,0,Canceled,2019-11-03 -Resort Hotel,1,98,2016,August,26,19,2,2,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,78.75,0,0,No-Show,2019-08-04 -City Hotel,0,2,2016,October,43,2,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,126.03,0,3,Check-Out,2019-08-04 -Resort Hotel,0,9,2017,February,9,28,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.08,0,1,Check-Out,2020-03-03 -City Hotel,0,21,2016,October,39,4,1,0,1,0.0,0,SC,GBR,Online TA,Corporate,0,0,0,P,P,1,No Deposit,14.0,179.0,0,Transient,0.47,0,3,Check-Out,2019-07-04 -City Hotel,0,148,2016,December,53,9,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,126.95,0,0,Check-Out,2019-06-03 -City Hotel,1,236,2015,July,36,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.62,0,0,Canceled,2018-06-02 -City Hotel,0,3,2016,August,35,24,0,1,1,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,2.76,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2015,October,44,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,38.0,179.0,0,Transient,65.97,0,0,Check-Out,2018-12-03 -Resort Hotel,1,117,2017,July,10,19,0,4,2,0.0,0,FB,PRT,Groups,Direct,1,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,65.21,0,0,Canceled,2020-03-03 -City Hotel,1,49,2016,September,36,15,0,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,150.89,0,3,Canceled,2019-09-03 -City Hotel,0,3,2016,August,35,30,1,1,2,0.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,249.78,0,3,Check-Out,2018-09-02 -City Hotel,1,8,2016,March,25,26,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,11.0,59.0,0,Transient,73.87,0,0,Canceled,2019-02-01 -City Hotel,0,35,2017,May,23,17,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,15.0,170.0,0,Transient,83.09,0,0,Check-Out,2020-03-03 -City Hotel,1,95,2016,July,27,11,1,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,77.0,179.0,0,Transient,96.94,0,3,Canceled,2019-05-04 -Resort Hotel,0,153,2016,November,53,31,1,3,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,G,A,2,No Deposit,16.0,179.0,0,Transient,91.57,0,1,Check-Out,2019-10-04 -City Hotel,0,31,2016,March,9,6,1,0,2,0.0,0,BB,FRA,Corporate,Corporate,1,0,1,A,A,2,No Deposit,12.0,45.0,0,Transient,73.18,0,0,Check-Out,2019-03-04 -City Hotel,0,10,2016,May,22,15,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,118.45,0,1,Check-Out,2019-04-03 -Resort Hotel,0,196,2015,November,42,18,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,36.0,179.0,0,Contract,31.45,0,0,Check-Out,2019-01-03 -City Hotel,0,51,2016,September,36,2,2,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.57,0,2,Check-Out,2019-05-04 -Resort Hotel,0,87,2016,April,23,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,311.0,179.0,0,Transient-Party,73.74,0,1,Canceled,2019-03-04 -City Hotel,0,22,2016,June,25,31,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,105.05,0,1,Check-Out,2019-07-04 -Resort Hotel,0,55,2016,November,53,9,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient,38.91,0,0,Check-Out,2019-07-04 -City Hotel,0,47,2017,March,10,20,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,152.63,0,2,Check-Out,2020-03-03 -City Hotel,0,38,2016,August,26,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,171.32,1,1,Check-Out,2020-07-03 -Resort Hotel,0,141,2016,May,22,23,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,82.25,0,1,Check-Out,2019-05-04 -City Hotel,1,30,2016,July,32,27,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,D,E,0,No Deposit,12.0,179.0,0,Transient,154.13,0,1,Canceled,2019-04-03 -City Hotel,0,45,2017,June,27,2,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.81,0,1,Check-Out,2020-04-02 -City Hotel,0,54,2016,August,36,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,128.09,0,1,Check-Out,2019-01-03 -City Hotel,0,1,2017,January,9,12,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.71,0,1,Check-Out,2019-10-04 -City Hotel,1,152,2015,October,44,31,0,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,61.65,0,0,Canceled,2018-12-03 -City Hotel,0,181,2016,September,44,11,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.45,0,2,Check-Out,2019-08-04 -Resort Hotel,0,5,2016,June,36,28,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,C,1,No Deposit,242.0,179.0,0,Transient,102.64,1,2,Check-Out,2019-07-04 -City Hotel,0,133,2016,June,27,25,0,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient-Party,73.88,0,1,Check-Out,2019-03-04 -Resort Hotel,0,117,2015,November,10,18,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient-Party,67.18,0,0,Check-Out,2018-12-03 -Resort Hotel,0,1,2016,April,16,10,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.36,0,0,Check-Out,2019-03-04 -Resort Hotel,0,49,2015,December,53,8,2,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,41.61,0,0,Check-Out,2018-09-02 -City Hotel,0,10,2017,May,20,13,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,180.32,0,0,Check-Out,2020-07-03 -Resort Hotel,0,3,2015,January,45,10,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,35.04,1,0,Check-Out,2018-12-03 -City Hotel,0,89,2017,August,32,15,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,126.46,0,1,Check-Out,2020-07-03 -City Hotel,1,6,2017,June,27,30,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,154.0,179.0,0,Transient,126.69,0,0,Canceled,2020-03-03 -City Hotel,0,107,2015,September,44,10,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.4,0,0,Check-Out,2018-07-03 -Resort Hotel,1,50,2016,May,24,18,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,317.0,179.0,0,Transient-Party,79.8,0,3,Canceled,2019-02-01 -Resort Hotel,0,151,2017,August,39,2,2,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,65.28,0,1,Check-Out,2019-08-04 -City Hotel,0,6,2017,May,20,27,2,1,1,0.0,0,SC,CHE,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.99,0,1,Check-Out,2020-02-01 -City Hotel,1,39,2016,February,11,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,80.94,0,0,Canceled,2019-03-04 -Resort Hotel,0,54,2016,February,10,16,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,46.0,179.0,0,Transient-Party,70.51,0,0,Check-Out,2018-11-02 -Resort Hotel,1,390,2016,March,19,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,Non Refund,318.0,179.0,0,Transient,62.36,0,0,Canceled,2019-10-04 -City Hotel,0,149,2017,May,21,15,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,160.7,0,1,Check-Out,2020-02-01 -City Hotel,1,2,2016,May,21,9,1,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,154.47,0,0,Canceled,2019-02-01 -Resort Hotel,0,81,2015,December,53,30,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,89.38,0,0,Check-Out,2018-11-02 -City Hotel,1,36,2016,October,38,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,62,Transient,113.37,0,0,Canceled,2018-09-02 -Resort Hotel,0,145,2015,November,50,6,2,4,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,103.75,0,3,Check-Out,2018-09-02 -Resort Hotel,0,48,2017,May,22,5,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient,82.46,0,0,Check-Out,2020-03-03 -Resort Hotel,0,153,2016,March,17,31,1,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,221.0,0,Transient-Party,67.19,1,0,Check-Out,2019-03-04 -City Hotel,1,175,2016,August,38,13,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.86,0,1,Canceled,2018-06-02 -City Hotel,0,1,2017,January,3,24,0,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,3,Check-Out,2020-07-03 -City Hotel,0,38,2015,October,48,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.18,0,0,Check-Out,2018-08-03 -Resort Hotel,1,152,2017,July,26,31,4,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,106.15,0,0,Check-Out,2020-06-02 -Resort Hotel,1,92,2017,July,4,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,254.0,179.0,0,Transient,205.4,0,0,Canceled,2019-10-04 -Resort Hotel,0,160,2015,November,34,9,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,36.18,0,0,Check-Out,2018-08-03 -City Hotel,0,106,2016,April,17,23,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Contract,96.4,0,1,Check-Out,2019-04-03 -City Hotel,1,152,2016,August,36,2,0,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,118.35,0,0,No-Show,2019-08-04 -City Hotel,0,32,2016,December,53,28,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,119.16,0,2,Check-Out,2019-11-03 -City Hotel,0,0,2017,January,9,26,0,1,2,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,70.29,0,1,Check-Out,2019-11-03 -City Hotel,0,36,2016,June,27,20,2,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,117.66,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2015,October,4,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,82.62,0,0,Check-Out,2018-12-03 -Resort Hotel,0,62,2017,May,23,11,2,5,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,F,0,No Deposit,239.0,179.0,0,Transient,130.74,0,1,Check-Out,2020-02-01 -Resort Hotel,1,188,2016,August,37,22,2,1,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,239.0,179.0,0,Transient,217.62,0,1,Canceled,2019-07-04 -City Hotel,0,0,2017,May,20,8,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,236.0,0,Group,3.58,0,0,Check-Out,2019-12-04 -City Hotel,0,45,2017,January,2,28,1,1,2,0.0,0,BB,CHN,Complementary,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,77.45,0,1,Check-Out,2019-10-04 -Resort Hotel,0,5,2017,April,14,20,2,5,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,27.0,179.0,0,Transient-Party,91.99,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,June,22,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,61.46,0,1,Check-Out,2019-03-04 -City Hotel,0,190,2017,June,34,21,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient-Party,94.21,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2017,January,2,15,1,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,2,No Deposit,344.0,86.0,0,Transient,43.46,1,0,Check-Out,2019-11-03 -City Hotel,1,366,2017,June,27,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,152.0,179.0,0,Transient,63.61,0,0,Canceled,2019-04-03 -City Hotel,0,74,2017,May,22,16,1,0,1,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Group,103.58,0,0,Check-Out,2020-03-03 -City Hotel,1,36,2016,April,15,11,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,Non Refund,70.0,179.0,42,Transient,121.46,0,0,Canceled,2019-01-03 -City Hotel,0,31,2017,February,11,13,2,1,2,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,129.69,1,0,Check-Out,2020-03-03 -Resort Hotel,0,95,2017,May,22,30,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,309.0,179.0,0,Transient-Party,79.04,0,1,Check-Out,2020-04-02 -Resort Hotel,0,291,2017,June,19,28,2,5,3,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,125.92,0,1,Check-Out,2020-03-03 -City Hotel,0,142,2016,December,53,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,108.72,1,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,August,33,17,0,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,C,0,No Deposit,239.0,179.0,0,Transient,115.27,1,2,Check-Out,2019-05-04 -City Hotel,0,7,2016,June,34,25,0,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,118.14,0,1,Check-Out,2019-08-04 -Resort Hotel,0,259,2017,June,21,25,2,0,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,150.0,179.0,0,Transient-Party,85.23,0,0,Check-Out,2020-04-02 -City Hotel,0,34,2015,October,41,9,1,0,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,56.8,0,0,Check-Out,2018-08-03 -City Hotel,1,40,2016,March,2,24,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,69.02,0,2,Canceled,2018-11-02 -City Hotel,0,4,2017,August,21,2,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,0.86,0,0,Check-Out,2020-07-03 -City Hotel,1,105,2015,December,45,31,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,62,Transient,60.12,0,2,Canceled,2018-10-03 -Resort Hotel,0,411,2016,May,23,31,0,2,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,223.0,0,Transient-Party,72.58,1,0,Check-Out,2019-06-03 -City Hotel,1,3,2015,October,44,29,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,80.59,0,0,Canceled,2018-08-03 -City Hotel,0,42,2015,November,44,13,0,2,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,60.05,0,2,Check-Out,2018-08-03 -Resort Hotel,1,9,2016,July,31,24,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,224.9,0,0,Canceled,2019-03-04 -City Hotel,0,62,2015,December,49,10,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,59.29,0,0,Check-Out,2018-11-02 -Resort Hotel,0,18,2016,June,26,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,128.0,179.0,0,Transient,90.53,0,0,Check-Out,2019-05-04 -City Hotel,0,145,2016,April,23,30,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,117.94,0,3,Check-Out,2019-11-03 -City Hotel,0,142,2016,May,22,5,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,8.0,179.0,0,Transient,118.33,0,2,Check-Out,2019-04-03 -City Hotel,1,13,2015,August,38,20,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,D,0,No Deposit,12.0,179.0,0,Transient,143.79,0,0,Canceled,2018-08-03 -Resort Hotel,0,54,2016,May,24,27,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,98.7,0,3,Check-Out,2020-03-03 -Resort Hotel,1,168,2017,April,27,31,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,251.0,179.0,0,Transient,62.61,0,0,Canceled,2019-12-04 -Resort Hotel,1,0,2016,February,10,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,223.0,0,Transient,41.95,0,0,Canceled,2019-01-03 -City Hotel,0,202,2016,October,46,25,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,79.56,1,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,May,16,9,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient,35.32,1,0,Check-Out,2019-04-03 -Resort Hotel,0,17,2016,May,21,14,0,1,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,81.13,0,0,Check-Out,2019-11-03 -Resort Hotel,1,105,2017,August,36,28,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,105.25,0,1,Canceled,2020-06-02 -City Hotel,0,62,2015,September,39,14,0,2,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,81.07,0,0,Check-Out,2018-08-03 -City Hotel,0,293,2015,October,36,24,0,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,41,Transient-Party,41.99,0,0,Check-Out,2019-01-03 -City Hotel,0,17,2016,December,51,28,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,32.0,179.0,0,Transient-Party,35.67,0,1,Check-Out,2018-12-03 -City Hotel,0,161,2016,July,37,30,0,4,2,0.0,0,HB,BRA,Direct,Direct,0,0,0,E,E,2,No Deposit,15.0,179.0,75,Transient,134.41,0,1,Check-Out,2020-06-02 -City Hotel,0,17,2016,August,33,30,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.25,0,1,Check-Out,2019-06-03 -City Hotel,1,94,2016,June,27,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.93,0,0,Canceled,2019-03-04 -Resort Hotel,0,21,2017,April,17,13,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,102.16,1,2,Check-Out,2019-12-04 -City Hotel,1,12,2016,July,38,30,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,170.27,0,0,Check-Out,2019-04-03 -City Hotel,0,21,2015,July,32,18,0,2,1,0.0,0,BB,RUS,Online TA,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2018-07-03 -City Hotel,1,49,2017,August,19,19,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,1.34,0,1,Canceled,2020-04-02 -City Hotel,0,84,2017,January,11,27,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,80.97,0,2,Check-Out,2019-08-04 -City Hotel,0,244,2015,October,43,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,91.1,0,0,Check-Out,2018-08-03 -Resort Hotel,0,258,2017,February,22,29,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,65.42,0,1,Check-Out,2019-11-03 -City Hotel,0,79,2016,July,16,25,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.94,0,2,Check-Out,2019-04-03 -City Hotel,1,286,2016,December,43,28,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,152.38,0,0,Canceled,2019-10-04 -City Hotel,0,305,2016,October,44,13,0,3,1,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,97.51,0,0,Check-Out,2019-06-03 -City Hotel,1,98,2015,September,34,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.54,0,0,Canceled,2017-12-03 -City Hotel,0,27,2016,June,27,25,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.55,0,1,Check-Out,2019-05-04 -Resort Hotel,0,30,2016,August,50,30,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,121.16,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,February,12,25,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,223.0,0,Transient,87.71,0,0,Check-Out,2020-02-01 -City Hotel,0,48,2016,August,33,30,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.36,0,1,Check-Out,2020-06-02 -City Hotel,1,9,2017,June,23,2,0,3,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,99.2,0,0,Canceled,2020-04-02 -Resort Hotel,0,10,2017,April,18,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Transient,110.62,1,0,Check-Out,2020-02-01 -City Hotel,0,2,2016,December,51,28,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,69.9,0,0,Check-Out,2019-10-04 -City Hotel,0,90,2017,July,35,4,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,94.2,0,1,Check-Out,2019-12-04 -City Hotel,1,8,2017,May,16,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,15.0,204.0,0,Transient,106.66,0,0,Canceled,2020-02-01 -Resort Hotel,0,19,2016,October,44,28,2,2,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,72.58,0,2,Check-Out,2019-08-04 -Resort Hotel,0,250,2017,June,24,17,2,2,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,67.6,0,0,Check-Out,2020-03-03 -City Hotel,0,250,2016,August,44,20,2,5,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,86.0,179.0,0,Transient,228.51,0,3,Check-Out,2019-08-04 -City Hotel,0,98,2017,March,17,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,23.0,179.0,62,Transient,61.71,0,0,Check-Out,2018-11-02 -Resort Hotel,1,160,2016,October,43,2,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,211.15,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,October,42,15,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,108.7,0,0,Check-Out,2019-09-03 -City Hotel,0,16,2015,October,46,25,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,222.0,0,Transient-Party,69.07,0,0,Check-Out,2018-09-02 -Resort Hotel,0,98,2017,July,29,28,1,5,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,70.76,1,2,Check-Out,2020-03-03 -Resort Hotel,0,55,2017,January,9,28,2,1,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,50.79,0,0,Check-Out,2020-01-04 -Resort Hotel,0,302,2017,May,23,7,2,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,190.0,179.0,0,Transient-Party,1.38,0,2,Check-Out,2020-05-03 -Resort Hotel,1,42,2017,April,18,7,1,2,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,61.04,0,0,Canceled,2020-02-01 -City Hotel,1,270,2015,July,37,20,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,138.88,0,1,Canceled,2018-07-03 -Resort Hotel,1,240,2016,May,22,15,2,3,1,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,270.0,179.0,0,Transient-Party,80.32,0,0,Canceled,2019-03-04 -City Hotel,0,48,2016,May,22,31,2,5,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,130.04,0,0,Check-Out,2019-03-04 -City Hotel,1,22,2016,December,50,10,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,2.25,0,0,Canceled,2019-09-03 -City Hotel,1,0,2016,June,37,2,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,192.0,0,Transient,45.75,0,0,Canceled,2019-06-03 -City Hotel,0,38,2016,August,33,21,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,175.1,0,1,Check-Out,2019-03-04 -Resort Hotel,0,35,2015,August,38,31,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,109.88,0,2,Check-Out,2018-07-03 -City Hotel,0,0,2017,May,19,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,F,2,No Deposit,16.0,216.0,0,Transient-Party,61.59,0,0,Check-Out,2020-02-01 -Resort Hotel,1,32,2016,March,3,27,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,154.35,0,1,Check-Out,2018-11-02 -City Hotel,1,12,2016,July,37,18,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,146.72,0,0,Canceled,2018-12-03 -City Hotel,0,37,2016,June,22,13,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.27,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2017,February,4,2,0,2,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.46,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,November,48,8,2,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,235.0,0,Transient,80.13,0,0,Check-Out,2018-12-03 -City Hotel,0,54,2016,September,46,28,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.44,0,2,Check-Out,2019-08-04 -Resort Hotel,0,155,2017,March,11,11,2,2,2,0.0,0,Undefined,FRA,Online TA,TA/TO,0,0,0,C,G,2,No Deposit,240.0,179.0,0,Transient-Party,86.61,1,0,Check-Out,2020-03-03 -Resort Hotel,0,172,2017,May,15,29,2,4,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,2,No Deposit,246.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-02-01 -City Hotel,0,0,2016,September,45,17,1,0,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,45.0,0,Transient,102.03,0,0,Check-Out,2019-08-04 -Resort Hotel,1,44,2015,December,50,5,2,1,2,0.0,0,FB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient-Party,38.9,0,2,No-Show,2019-11-03 -Resort Hotel,0,55,2017,March,16,27,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,88.0,179.0,0,Group,40.68,0,2,Check-Out,2020-02-01 -City Hotel,0,15,2015,October,43,9,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.01,0,0,Check-Out,2018-08-03 -City Hotel,0,30,2016,December,53,28,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.07,1,1,Check-Out,2019-10-04 -City Hotel,0,14,2016,June,26,27,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.31,0,1,Check-Out,2019-06-03 -City Hotel,0,1,2017,June,25,9,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.05,0,2,Check-Out,2020-02-01 -Resort Hotel,0,1,2015,July,34,8,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,0,No Deposit,247.0,179.0,0,Transient,130.15,0,1,Check-Out,2019-06-03 -Resort Hotel,0,40,2017,April,18,31,1,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,239.0,179.0,0,Transient,204.91,1,1,Check-Out,2020-04-02 -Resort Hotel,1,17,2016,August,36,28,2,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,E,E,0,No Deposit,14.0,331.0,0,Transient,64.92,1,0,Canceled,2019-08-04 -Resort Hotel,0,1,2016,March,21,10,1,0,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient,42.65,0,3,Check-Out,2019-03-04 -City Hotel,1,65,2016,December,51,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,40.0,179.0,60,Transient,66.52,0,0,Canceled,2018-10-03 -City Hotel,1,44,2017,April,16,10,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.85,0,0,Canceled,2019-02-01 -City Hotel,0,13,2016,October,45,24,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,74.57,0,2,Check-Out,2018-09-02 -City Hotel,0,49,2017,August,27,16,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.62,0,1,Check-Out,2020-03-03 -City Hotel,0,35,2016,November,47,15,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.28,0,0,Check-Out,2019-10-04 -Resort Hotel,1,152,2016,March,17,11,0,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,14.0,223.0,21,Transient-Party,60.5,1,0,Canceled,2019-02-01 -City Hotel,0,9,2016,July,26,6,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.43,0,2,Check-Out,2019-05-04 -Resort Hotel,0,4,2017,March,9,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,78.0,179.0,0,Transient-Party,44.9,0,0,Check-Out,2019-10-04 -Resort Hotel,1,16,2017,March,17,27,0,10,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,245.0,179.0,0,Transient,71.31,0,0,Canceled,2020-01-04 -City Hotel,1,46,2015,December,42,24,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,79.28,0,2,Canceled,2018-08-03 -City Hotel,0,1,2016,January,4,27,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,11.0,179.0,0,Transient,68.31,0,0,Check-Out,2019-09-03 -City Hotel,1,0,2016,November,45,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,84.88,0,0,Canceled,2019-08-04 -Resort Hotel,0,44,2016,October,44,22,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,321.0,179.0,0,Transient,127.78,0,1,Check-Out,2019-08-04 -Resort Hotel,0,49,2016,October,45,28,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,168.0,179.0,0,Transient,68.32,0,0,Check-Out,2019-09-03 -City Hotel,0,97,2016,March,10,28,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,8.0,179.0,0,Transient,66.53,0,2,Check-Out,2019-02-01 -City Hotel,0,2,2017,June,34,9,0,3,1,0.0,0,BB,,Direct,Direct,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Group,118.55,0,0,Check-Out,2020-05-03 -Resort Hotel,0,41,2016,July,31,24,1,2,1,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient-Party,73.48,0,0,Check-Out,2019-06-03 -City Hotel,1,172,2017,December,5,24,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,12.0,66.0,0,Transient,79.54,0,3,Canceled,2019-12-04 -City Hotel,1,2,2017,January,26,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient,147.74,0,0,Canceled,2020-02-01 -Resort Hotel,0,62,2015,December,49,23,0,1,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.93,0,0,Canceled,2018-11-02 -City Hotel,0,3,2016,June,28,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,C,1,No Deposit,15.0,45.0,0,Transient,117.71,0,0,Check-Out,2020-06-02 -City Hotel,0,40,2016,October,46,21,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.12,0,2,Check-Out,2019-12-04 -Resort Hotel,1,199,2016,August,33,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,0.0,0,1,Canceled,2019-05-04 -City Hotel,0,45,2017,January,11,21,0,1,1,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,222.0,0,Transient,77.73,0,1,Check-Out,2019-10-04 -Resort Hotel,1,155,2016,August,51,6,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,134.84,0,0,Canceled,2018-09-02 -City Hotel,0,91,2016,October,44,15,1,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,111.37,0,2,Check-Out,2020-06-02 -City Hotel,0,17,2016,December,51,29,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,92.79,1,1,Check-Out,2019-08-04 -Resort Hotel,1,13,2016,January,4,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,87.0,179.0,0,Transient,85.68,0,0,Canceled,2018-12-03 -Resort Hotel,0,21,2015,November,50,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,E,0,No Deposit,182.0,179.0,0,Transient-Party,61.03,0,0,Check-Out,2018-12-03 -Resort Hotel,0,1,2015,October,43,17,0,2,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,33.35,0,2,Check-Out,2018-08-03 -City Hotel,0,2,2015,July,24,22,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,10.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -Resort Hotel,1,32,2015,September,49,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,No Deposit,15.0,331.0,0,Transient,88.31,0,0,Canceled,2018-09-02 -Resort Hotel,1,0,2016,January,7,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,239.0,179.0,0,Transient,38.14,0,0,No-Show,2018-12-03 -City Hotel,1,0,2016,October,44,9,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,46.11,0,0,Canceled,2019-09-03 -City Hotel,0,46,2017,May,42,10,2,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.12,0,3,Check-Out,2019-11-03 -Resort Hotel,0,1,2015,July,34,27,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,81.7,0,0,Check-Out,2018-06-02 -City Hotel,0,198,2016,September,46,2,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,75.19,0,0,Check-Out,2019-04-03 -Resort Hotel,0,113,2017,June,32,27,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,241.0,179.0,0,Transient,226.59,1,3,Check-Out,2020-05-03 -City Hotel,1,102,2017,July,25,2,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient-Party,201.02,0,0,Canceled,2020-06-02 -City Hotel,0,0,2016,October,45,18,0,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,171.0,0,Transient,121.54,0,0,Check-Out,2019-06-03 -Resort Hotel,0,38,2015,November,42,12,4,0,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,39.25,0,0,Check-Out,2018-12-03 -City Hotel,1,166,2017,August,37,21,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,8.0,179.0,0,Transient,111.57,0,0,Canceled,2020-03-03 -City Hotel,0,200,2017,June,27,9,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,166.32,0,1,Check-Out,2020-06-02 -Resort Hotel,1,26,2016,August,37,24,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,306.0,179.0,0,Transient-Party,123.46,0,0,Canceled,2018-06-02 -Resort Hotel,0,230,2016,May,22,11,1,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient-Party,134.01,1,0,Check-Out,2019-01-03 -City Hotel,0,20,2016,October,42,5,2,2,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,109.55,0,1,Check-Out,2019-05-04 -Resort Hotel,0,67,2015,July,51,5,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,32.06,0,0,Check-Out,2018-06-02 -Resort Hotel,0,3,2016,March,12,5,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,18.0,179.0,0,Transient,61.68,1,0,Check-Out,2019-02-01 -City Hotel,0,33,2016,August,37,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,161.28,0,1,Check-Out,2019-06-03 -City Hotel,0,140,2016,December,53,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.77,0,2,Check-Out,2019-11-03 -City Hotel,1,91,2017,March,10,15,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.06,0,1,Canceled,2019-11-03 -City Hotel,0,3,2015,December,51,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,64.22,0,1,Check-Out,2018-10-03 -City Hotel,1,291,2017,May,31,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,123.56,0,0,Canceled,2019-11-03 -Resort Hotel,0,150,2016,September,36,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,121.0,0,1,Check-Out,2019-08-04 -City Hotel,0,1,2016,March,45,13,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,98.62,0,0,Check-Out,2019-04-03 -City Hotel,0,98,2017,December,23,3,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,169.0,179.0,0,Group,117.6,0,1,Check-Out,2019-11-03 -City Hotel,1,33,2016,February,53,9,2,3,2,2.0,0,BB,FRA,Direct,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,76.68,0,1,Canceled,2019-04-03 -Resort Hotel,0,301,2017,May,24,20,4,5,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,186.13,1,1,Check-Out,2020-03-03 -City Hotel,1,14,2017,June,29,15,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,139.55,0,0,Canceled,2020-06-02 -City Hotel,1,333,2015,August,37,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.07,0,0,Canceled,2017-12-03 -City Hotel,0,9,2016,March,11,6,1,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,66.35,0,0,Check-Out,2019-02-01 -City Hotel,1,46,2015,July,35,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.62,0,0,Canceled,2018-05-03 -Resort Hotel,1,2,2015,September,31,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,62.41,0,0,Canceled,2018-06-02 -Resort Hotel,0,148,2017,August,38,28,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,170.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,2020-08-03 -City Hotel,0,8,2017,January,10,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,17.0,71.0,0,Transient,53.95,0,0,Check-Out,2019-10-04 -Resort Hotel,1,1,2015,August,38,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,33.65,0,0,Canceled,2018-08-03 -City Hotel,0,246,2015,September,35,6,2,1,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,36.4,0,0,Check-Out,2017-09-02 -Resort Hotel,0,2,2016,April,42,11,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,47.41,0,0,Check-Out,2019-12-04 -City Hotel,0,3,2015,October,45,20,0,1,1,0.0,0,BB,DEU,Corporate,Direct,0,0,0,B,B,1,No Deposit,14.0,45.0,0,Transient-Party,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2015,November,37,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,A,0,No Deposit,10.0,45.0,0,Group,73.79,0,0,Check-Out,2018-09-02 -Resort Hotel,1,116,2015,December,49,9,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,34.0,179.0,0,Transient-Party,103.21,0,2,Canceled,2019-01-03 -Resort Hotel,0,179,2016,December,50,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,224.0,0,Transient-Party,67.89,0,0,Check-Out,2019-09-03 -City Hotel,1,389,2016,June,27,23,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,28.0,179.0,0,Transient-Party,99.73,0,0,Canceled,2019-06-03 -Resort Hotel,0,282,2016,May,23,29,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,135.0,179.0,0,Transient-Party,76.71,1,0,Check-Out,2019-03-04 -City Hotel,1,44,2016,April,36,17,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.74,0,0,Canceled,2018-11-02 -City Hotel,0,0,2015,August,35,18,0,3,1,0.0,0,BB,ITA,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,60.65,0,0,Check-Out,2018-09-02 -City Hotel,0,48,2016,March,9,15,2,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,118.68,0,0,Check-Out,2019-01-03 -Resort Hotel,1,2,2016,December,51,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,184.0,179.0,0,Transient,38.83,0,0,Canceled,2019-08-04 -Resort Hotel,0,87,2016,October,34,5,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,72.8,0,1,Check-Out,2019-06-03 -City Hotel,1,45,2016,October,42,19,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,231.3,0,1,Canceled,2019-05-04 -City Hotel,1,1,2016,October,44,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Canceled,2019-09-03 -City Hotel,1,0,2016,February,10,20,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,B,B,0,Non Refund,80.0,179.0,0,Transient,63.56,0,0,Canceled,2018-10-03 -City Hotel,1,304,2016,November,49,7,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,62,Transient-Party,70.65,0,0,Canceled,2019-07-04 -City Hotel,1,191,2016,September,28,9,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,103.12,0,0,Canceled,2019-05-04 -Resort Hotel,0,50,2017,March,12,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,77.34,0,2,Check-Out,2020-03-03 -City Hotel,0,97,2017,May,23,15,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,145.52,0,1,Check-Out,2020-03-03 -Resort Hotel,0,34,2015,July,32,27,2,1,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient-Party,175.43,1,1,Check-Out,2020-06-02 -City Hotel,0,15,2016,April,21,28,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,65.37,0,3,Check-Out,2019-03-04 -City Hotel,1,1,2017,May,24,2,1,0,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,H,E,0,No Deposit,14.0,152.0,0,Transient,109.67,0,0,Canceled,2020-02-01 -City Hotel,0,14,2015,December,52,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,61.33,0,0,Check-Out,2018-07-03 -City Hotel,0,26,2016,September,35,11,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,206.6,0,1,Check-Out,2019-06-03 -City Hotel,1,55,2016,April,16,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,40,Transient,84.82,0,0,Canceled,2018-11-02 -City Hotel,0,10,2016,December,51,31,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,244.0,23,Transient-Party,83.85,0,0,Check-Out,2019-11-03 -City Hotel,0,207,2017,July,22,24,0,2,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,91.89,0,1,Check-Out,2020-04-02 -City Hotel,0,138,2016,December,52,4,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,B,2,No Deposit,32.0,179.0,24,Transient-Party,117.46,0,0,Check-Out,2019-05-04 -City Hotel,0,54,2016,March,16,15,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,82.24,0,0,Check-Out,2019-04-03 -City Hotel,1,92,2016,August,36,25,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.25,0,0,Canceled,2019-06-03 -City Hotel,1,44,2017,April,15,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,80.31,0,0,Canceled,2020-02-01 -Resort Hotel,0,125,2017,July,28,17,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,359.0,179.0,0,Transient,107.17,1,0,Check-Out,2020-06-02 -City Hotel,1,44,2017,February,11,21,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,172.0,179.0,0,Transient,87.74,0,2,Canceled,2019-09-03 -City Hotel,1,9,2017,February,7,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,7.0,179.0,0,Transient,73.19,0,0,Canceled,2019-08-04 -Resort Hotel,0,10,2016,July,28,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,120.09,1,0,Check-Out,2019-07-04 -City Hotel,1,172,2017,March,17,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,94.31,0,0,Canceled,2019-10-04 -Resort Hotel,0,4,2015,November,50,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,42.0,179.0,0,Transient,66.12,0,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2016,October,28,5,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,249.0,179.0,0,Transient,211.96,0,0,Check-Out,2020-02-01 -Resort Hotel,0,175,2016,September,41,30,2,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,240.0,179.0,0,Transient,207.93,0,1,Check-Out,2019-08-04 -Resort Hotel,0,29,2016,June,29,9,0,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,162.12,1,2,Check-Out,2019-06-03 -Resort Hotel,0,110,2017,March,10,9,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,45.58,0,1,Check-Out,2019-10-04 -City Hotel,1,55,2017,March,10,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.4,0,0,Canceled,2019-10-04 -City Hotel,0,35,2017,May,21,21,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient-Party,124.41,0,0,Check-Out,2020-02-01 -Resort Hotel,1,95,2016,March,11,29,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,18,Transient,74.88,0,0,Canceled,2019-02-01 -City Hotel,1,61,2015,September,34,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,60,Transient-Party,61.04,0,0,Canceled,2018-07-03 -City Hotel,0,1,2016,May,22,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,Non Refund,12.0,179.0,0,Transient,99.4,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,July,33,31,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,2,No Deposit,16.0,179.0,0,Transient,121.76,0,1,Check-Out,2018-06-02 -City Hotel,0,0,2016,January,50,21,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.18,0,2,Check-Out,2018-11-02 -Resort Hotel,1,95,2016,October,44,13,2,5,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient-Party,72.05,0,0,Canceled,2019-07-04 -City Hotel,1,106,2017,July,30,28,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.52,0,2,Canceled,2020-04-02 -City Hotel,0,6,2016,November,50,14,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,154.96,0,1,Check-Out,2019-11-03 -Resort Hotel,0,116,2016,August,38,28,2,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,247.53,1,3,Check-Out,2019-05-04 -City Hotel,0,49,2016,November,22,9,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.65,0,1,Check-Out,2019-11-03 -City Hotel,0,38,2016,June,27,2,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,72.22,0,0,Check-Out,2019-04-03 -City Hotel,1,154,2017,June,26,2,0,1,2,0.0,0,BB,CHE,Complementary,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,201.57,0,0,Canceled,2020-06-02 -Resort Hotel,0,304,2016,November,42,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,82.08,0,0,Check-Out,2018-11-02 -City Hotel,1,326,2016,September,37,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,65.0,179.0,0,Transient,121.09,0,0,Canceled,2018-08-03 -Resort Hotel,1,0,2017,June,32,9,3,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,63.92,0,0,Check-Out,2020-03-03 -Resort Hotel,1,1,2015,August,36,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,14.0,179.0,0,Transient,62.06,0,0,Canceled,2018-05-03 -City Hotel,1,14,2016,December,53,2,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,C,I,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-09-03 -City Hotel,1,35,2017,May,37,27,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,165.28,0,0,Canceled,2020-02-01 -City Hotel,0,219,2017,August,39,30,0,1,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,214.75,0,2,Check-Out,2020-07-03 -City Hotel,1,22,2017,May,38,13,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.67,0,0,Canceled,2020-06-02 -City Hotel,1,239,2016,April,16,15,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,91.26,0,0,Canceled,2019-01-03 -City Hotel,1,2,2017,March,17,27,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,79.49,0,0,Canceled,2019-03-04 -Resort Hotel,0,2,2015,October,49,22,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,71.86,1,0,Check-Out,2018-09-02 -City Hotel,0,2,2017,July,32,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,164.71,0,3,Check-Out,2018-06-02 -City Hotel,0,35,2016,June,15,8,0,1,3,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.84,0,0,Check-Out,2019-07-04 -City Hotel,1,19,2015,July,33,13,2,4,3,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,43.74,0,1,Canceled,2018-07-03 -Resort Hotel,0,3,2015,October,45,12,0,6,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,62.94,0,0,Check-Out,2018-06-02 -Resort Hotel,0,156,2016,June,22,13,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,154.16,0,1,Check-Out,2019-04-03 -Resort Hotel,0,58,2017,August,32,6,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,17.0,179.0,0,Transient,168.76,0,0,Check-Out,2020-06-02 -Resort Hotel,1,59,2017,August,34,20,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,184.53,0,2,Canceled,2018-07-03 -City Hotel,1,320,2015,August,37,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,95.63,0,0,Canceled,2017-10-03 -City Hotel,0,275,2015,September,46,20,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,59.97,0,0,Check-Out,2018-08-03 -Resort Hotel,0,231,2016,July,26,2,2,3,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.02,0,2,Check-Out,2020-06-02 -Resort Hotel,0,55,2015,December,51,3,2,0,2,0.0,0,BB,,Complementary,Direct,0,0,0,G,D,0,No Deposit,249.0,179.0,0,Transient,45.14,0,0,Check-Out,2018-10-03 -Resort Hotel,1,91,2016,May,21,14,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,71.77,0,0,Canceled,2019-03-04 -City Hotel,0,90,2016,July,10,31,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,60.11,0,2,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,March,10,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,12.0,71.0,0,Transient,60.74,0,1,Check-Out,2019-11-03 -City Hotel,1,62,2016,October,46,13,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,10.0,179.0,0,Transient,124.81,0,0,Canceled,2018-08-03 -City Hotel,0,15,2016,October,45,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.42,0,1,Check-Out,2019-09-03 -City Hotel,0,37,2016,April,16,24,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,2,No Deposit,15.0,61.0,0,Transient-Party,82.31,0,0,Check-Out,2019-03-04 -City Hotel,0,48,2015,July,36,16,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient-Party,128.05,0,0,Canceled,2018-05-03 -City Hotel,0,149,2017,July,31,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,137.85,0,0,Check-Out,2020-06-02 -City Hotel,0,44,2017,March,11,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,10.0,194.0,0,Transient,70.0,0,0,Check-Out,2020-04-02 -City Hotel,0,163,2016,June,22,27,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,151.79,0,1,Check-Out,2019-05-04 -City Hotel,1,98,2017,May,10,9,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,67.62,0,0,Canceled,2018-11-02 -City Hotel,1,300,2016,June,27,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,10.0,179.0,0,Transient,116.35,0,2,Canceled,2019-01-03 -Resort Hotel,1,17,2016,July,35,15,2,5,3,0.0,0,HB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,334.0,179.0,0,Transient,223.22,0,0,Canceled,2019-04-03 -City Hotel,1,0,2016,December,50,5,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,15.0,265.0,0,Transient,1.32,0,0,Canceled,2019-12-04 -Resort Hotel,0,253,2016,September,36,21,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient,42.42,0,0,Check-Out,2019-06-03 -City Hotel,1,57,2016,April,23,21,2,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,116.87,0,3,Canceled,2020-02-01 -City Hotel,1,46,2016,October,42,18,2,2,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,44,Transient-Party,81.69,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,January,4,14,1,3,1,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,75.52,0,0,Canceled,2019-10-04 -Resort Hotel,0,16,2016,March,15,6,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,48.49,1,2,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,April,16,15,1,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,B,1,No Deposit,15.0,179.0,0,Transient,73.97,0,0,Check-Out,2019-02-01 -City Hotel,0,42,2016,September,40,18,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,98.66,0,1,Check-Out,2019-09-03 -City Hotel,1,1,2015,January,11,5,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,148.54,0,1,No-Show,2018-12-03 -Resort Hotel,1,103,2015,August,38,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,2.0,179.0,0,Contract,62.6,0,1,Canceled,2017-11-02 -Resort Hotel,0,260,2017,July,32,21,2,5,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,108.18,1,3,Check-Out,2020-06-02 -City Hotel,1,14,2016,August,47,13,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.85,0,2,No-Show,2019-09-03 -Resort Hotel,1,67,2016,February,12,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,46.01,0,0,Canceled,2019-02-01 -City Hotel,0,11,2017,August,32,21,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,107.56,0,1,Check-Out,2020-06-02 -City Hotel,0,2,2017,February,10,13,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,43.16,0,0,Check-Out,2020-02-01 -City Hotel,0,11,2017,April,21,31,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,123.25,0,3,Check-Out,2020-05-03 -Resort Hotel,0,247,2015,November,50,27,0,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,D,2,No Deposit,36.0,179.0,61,Transient-Party,65.98,0,0,Check-Out,2019-10-04 -City Hotel,0,24,2016,November,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,331.0,0,Transient,74.88,0,0,Check-Out,2019-08-04 -City Hotel,1,4,2017,July,22,21,1,1,1,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,148.33,0,0,Canceled,2019-11-03 -City Hotel,0,154,2017,July,31,20,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,142.39,0,0,Check-Out,2020-05-03 -City Hotel,1,85,2017,June,19,5,2,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,10.0,179.0,0,Transient,3.36,0,0,Canceled,2020-05-03 -Resort Hotel,0,1,2017,February,7,16,1,1,1,0.0,0,BB,,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,40.42,1,0,Check-Out,2018-12-03 -Resort Hotel,0,38,2016,September,44,29,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,122.56,0,1,Check-Out,2019-08-04 -Resort Hotel,1,22,2016,January,8,29,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,31.36,0,1,No-Show,2018-12-03 -City Hotel,0,95,2017,July,30,10,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.58,0,3,Check-Out,2020-05-03 -City Hotel,1,1,2016,October,42,31,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,147.09,0,0,No-Show,2019-08-04 -Resort Hotel,0,4,2015,August,39,13,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,108.33,0,0,Check-Out,2018-06-02 -Resort Hotel,1,27,2016,February,7,19,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,77.0,179.0,0,Transient,67.64,0,0,Canceled,2018-12-03 -Resort Hotel,0,154,2016,August,36,18,2,3,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,165.29,0,0,Check-Out,2019-04-03 -City Hotel,0,13,2016,July,4,27,0,3,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,G,F,0,No Deposit,16.0,179.0,0,Transient,95.54,1,1,Check-Out,2019-12-04 -City Hotel,0,44,2016,October,34,8,0,2,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,100.25,0,0,Check-Out,2019-07-04 -Resort Hotel,0,178,2016,October,16,21,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,217.52,1,1,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,February,10,16,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,88.0,0,Transient,26.68,0,0,Check-Out,2019-01-03 -City Hotel,1,181,2016,June,28,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,127.64,0,0,Canceled,2019-01-03 -City Hotel,0,1,2017,January,11,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,11.0,60.0,0,Transient,77.37,0,1,Check-Out,2019-11-03 -City Hotel,1,21,2016,January,9,24,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.16,0,1,Canceled,2019-11-03 -City Hotel,0,17,2016,October,43,27,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,75.34,0,0,Check-Out,2019-12-04 -City Hotel,0,44,2016,April,17,24,2,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,72.91,0,0,Check-Out,2019-10-04 -City Hotel,1,220,2015,July,30,15,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,No Deposit,4.0,179.0,0,Contract,81.69,0,0,Canceled,2018-05-03 -City Hotel,0,8,2017,May,23,24,0,1,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,118.76,0,1,Check-Out,2020-03-03 -Resort Hotel,1,56,2016,December,50,23,2,5,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,3.14,0,0,Canceled,2018-12-03 -Resort Hotel,1,42,2015,August,37,9,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,239.0,179.0,0,Transient,126.07,1,0,Canceled,2018-06-02 -Resort Hotel,0,35,2016,December,49,28,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,87.0,179.0,0,Transient,60.38,0,0,Check-Out,2018-11-02 -Resort Hotel,0,212,2017,March,11,27,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,68.43,0,1,Check-Out,2020-01-04 -Resort Hotel,0,1,2015,October,42,9,0,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,No Deposit,95.0,179.0,0,Contract,34.06,0,1,Check-Out,2018-08-03 -Resort Hotel,1,40,2016,August,34,8,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,Non Refund,240.0,179.0,0,Transient,80.36,0,0,Canceled,2019-06-03 -City Hotel,0,53,2017,April,14,2,0,2,2,0.0,0,HB,BRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient-Party,95.59,0,0,Check-Out,2020-03-03 -City Hotel,0,100,2016,August,12,27,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,108.38,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,July,26,24,0,1,1,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,167.82,0,0,Check-Out,2020-06-02 -City Hotel,1,131,2016,March,15,10,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,110.31,0,2,Canceled,2019-02-01 -City Hotel,1,59,2015,August,34,4,0,2,2,0.0,0,BB,,Undefined,Undefined,0,0,1,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-07-03 -City Hotel,1,37,2015,August,33,15,1,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,243.15,0,3,Canceled,2018-05-03 -City Hotel,1,135,2016,October,45,24,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,133.45,0,0,Canceled,2019-02-01 -City Hotel,1,54,2017,May,23,30,2,4,2,0.0,0,SC,AUT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,147.4,0,0,Canceled,2020-02-01 -City Hotel,1,236,2016,October,34,24,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.94,0,0,Canceled,2019-02-01 -City Hotel,0,8,2016,August,31,2,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,132.32,0,1,Check-Out,2019-05-04 -City Hotel,0,23,2016,July,31,14,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.67,1,2,Check-Out,2019-03-04 -Resort Hotel,0,246,2015,June,51,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,17.0,45.0,0,Transient,59.86,0,0,Check-Out,2019-07-04 -City Hotel,1,144,2016,June,26,21,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,77.27,0,0,Canceled,2019-02-01 -City Hotel,1,211,2017,August,33,10,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,157.76,0,0,Canceled,2020-04-02 -Resort Hotel,0,275,2016,May,24,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,73.06,0,0,Check-Out,2019-05-04 -City Hotel,1,287,2016,October,36,20,2,2,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,75,Transient-Party,89.54,0,0,Canceled,2019-06-03 -City Hotel,1,0,2016,January,4,3,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,6.0,179.0,0,Transient,72.29,0,0,No-Show,2018-11-02 -Resort Hotel,0,0,2015,October,50,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,14.0,259.0,0,Transient-Party,31.88,0,0,Check-Out,2018-08-03 -City Hotel,0,20,2016,January,4,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.33,0,1,Check-Out,2019-10-04 -City Hotel,0,242,2016,September,44,21,2,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Contract,130.53,0,0,Check-Out,2018-08-03 -Resort Hotel,0,44,2015,December,44,9,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,39.55,0,0,Check-Out,2018-11-02 -City Hotel,0,120,2017,May,21,3,2,4,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,2,No Deposit,14.0,179.0,0,Transient,240.95,0,0,Check-Out,2020-04-02 -Resort Hotel,0,97,2016,December,51,27,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient-Party,40.38,0,2,Check-Out,2018-11-02 -Resort Hotel,0,14,2015,October,43,16,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,46.94,0,1,Check-Out,2018-08-03 -City Hotel,1,37,2016,October,52,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,61,Transient,66.75,0,0,Canceled,2018-08-03 -City Hotel,0,159,2016,December,26,26,0,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,75,Transient,119.6,1,0,Check-Out,2019-02-01 -City Hotel,1,37,2016,May,3,12,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,111.23,0,1,Canceled,2019-01-03 -City Hotel,0,3,2015,June,30,9,0,1,1,0.0,0,BB,ESP,Direct,Direct,1,0,0,A,D,0,No Deposit,15.0,45.0,0,Transient,102.1,0,0,Check-Out,2020-06-02 -City Hotel,1,32,2016,January,3,6,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient,35.02,0,0,No-Show,2018-12-03 -Resort Hotel,0,144,2016,March,16,30,2,3,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,0,Refundable,10.0,223.0,0,Transient,68.61,0,0,Check-Out,2019-04-03 -Resort Hotel,1,91,2016,February,27,10,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,70.86,0,0,No-Show,2019-03-04 -Resort Hotel,0,45,2015,December,53,28,0,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient-Party,46.82,1,1,Check-Out,2018-06-02 -City Hotel,0,0,2015,September,42,31,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.5,0,0,Check-Out,2018-08-03 -City Hotel,1,15,2017,February,8,7,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.09,0,1,Canceled,2020-01-04 -City Hotel,0,380,2015,October,43,13,2,2,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient-Party,159.42,0,0,Check-Out,2018-06-02 -Resort Hotel,1,3,2015,December,39,2,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,128.1,0,0,Canceled,2018-06-02 -Resort Hotel,0,131,2017,May,21,24,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,L,C,3,No Deposit,17.0,179.0,0,Transient,214.95,1,0,Check-Out,2020-02-01 -City Hotel,0,297,2017,July,33,5,0,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,248.43,0,0,Check-Out,2020-05-03 -City Hotel,1,327,2017,July,32,31,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.44,0,0,Canceled,2020-07-03 -City Hotel,1,2,2016,April,43,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,73.26,0,2,Canceled,2019-06-03 -City Hotel,0,15,2017,May,20,12,0,3,1,0.0,0,HB,FRA,Groups,Corporate,0,0,0,A,A,1,No Deposit,9.0,45.0,0,Transient,132.22,0,1,Check-Out,2020-03-03 -City Hotel,0,3,2016,August,37,22,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,2.37,0,0,Check-Out,2019-06-03 -City Hotel,0,55,2016,October,34,18,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,62,Transient,84.61,0,0,Canceled,2019-04-03 -City Hotel,1,324,2016,September,44,16,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,74.14,0,0,Canceled,2018-08-03 -City Hotel,1,177,2017,April,27,14,1,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,196.41,0,1,Canceled,2019-11-03 -City Hotel,0,43,2016,August,37,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.41,0,0,Check-Out,2019-06-03 -Resort Hotel,0,100,2015,July,42,27,2,4,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient-Party,62.79,0,0,Check-Out,2018-09-02 -Resort Hotel,1,53,2016,February,9,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,11.0,331.0,0,Transient,58.87,0,0,Canceled,2020-04-02 -Resort Hotel,0,92,2016,March,16,18,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,75.03,0,0,Check-Out,2019-03-04 -Resort Hotel,0,166,2016,July,32,10,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,242.0,179.0,0,Transient,92.21,1,1,Check-Out,2019-02-01 -City Hotel,1,159,2016,June,25,23,3,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,208.0,179.0,0,Transient,83.23,0,0,Canceled,2019-04-03 -City Hotel,1,18,2017,August,36,15,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,123.83,0,1,Canceled,2019-12-04 -City Hotel,0,35,2016,August,34,7,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.39,0,1,Check-Out,2019-07-04 -City Hotel,1,71,2015,August,31,14,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,113.37,0,1,Canceled,2018-06-02 -City Hotel,0,176,2017,July,33,8,0,1,1,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,142.1,0,0,Check-Out,2020-05-03 -Resort Hotel,0,9,2016,March,12,28,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,H,F,0,No Deposit,249.0,179.0,0,Transient,92.39,0,1,Check-Out,2019-01-03 -Resort Hotel,0,0,2017,March,8,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,283.0,0,Transient,38.38,0,0,Check-Out,2020-04-02 -Resort Hotel,0,5,2015,September,25,18,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,128.39,0,1,Check-Out,2018-12-03 -City Hotel,0,146,2016,July,33,18,2,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,122.66,0,0,Check-Out,2019-05-04 -City Hotel,1,444,2015,October,37,28,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,60.69,0,0,No-Show,2017-11-02 -Resort Hotel,0,19,2015,December,36,26,1,3,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,116.8,0,0,Check-Out,2018-08-03 -City Hotel,1,18,2016,May,21,18,0,1,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,110.79,0,0,Canceled,2019-02-01 -Resort Hotel,0,23,2016,January,5,31,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,240.0,179.0,0,Transient,150.0,1,3,Check-Out,2019-09-03 -City Hotel,0,48,2017,February,9,17,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.89,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2017,May,22,5,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.67,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,December,16,29,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,B,F,1,No Deposit,11.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -City Hotel,1,105,2017,March,22,5,2,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.4,0,0,Canceled,2020-03-03 -City Hotel,0,47,2017,March,17,28,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,93.33,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,October,44,29,2,0,1,0.0,0,BB,GBR,Complementary,Direct,0,0,0,A,F,3,No Deposit,248.0,179.0,0,Transient,81.05,0,3,Check-Out,2019-11-03 -City Hotel,0,19,2016,April,16,10,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,88.03,0,0,Check-Out,2019-03-04 -City Hotel,1,186,2016,March,18,22,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,63,Transient-Party,62.55,0,0,Canceled,2019-01-03 -City Hotel,1,3,2015,July,31,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.63,0,0,Canceled,2018-10-03 -Resort Hotel,0,41,2016,September,42,18,1,3,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,90.07,0,0,Check-Out,2019-08-04 -City Hotel,0,16,2016,June,27,20,0,5,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,D,3,No Deposit,16.0,53.0,0,Transient,82.82,0,0,Check-Out,2019-07-04 -City Hotel,0,2,2017,February,8,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,8.0,240.0,0,Transient,112.03,0,0,Check-Out,2020-01-04 -Resort Hotel,1,4,2015,August,37,22,2,1,1,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,2018-06-02 -Resort Hotel,0,249,2015,October,44,24,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.53,0,0,Check-Out,2018-06-02 -Resort Hotel,0,149,2016,July,34,4,3,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,187.0,179.0,0,Transient,170.06,0,0,Check-Out,2019-07-04 -Resort Hotel,0,2,2016,February,4,24,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,46.0,331.0,0,Transient,58.84,0,0,Check-Out,2018-11-02 -City Hotel,0,17,2015,August,36,11,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,166.83,0,0,Check-Out,2018-07-03 -City Hotel,0,27,2016,May,21,6,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,180.36,0,2,Check-Out,2020-01-04 -City Hotel,1,249,2015,July,34,18,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,98.53,0,0,Canceled,2018-06-02 -Resort Hotel,0,239,2017,July,17,4,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,189.0,179.0,0,Transient-Party,96.98,0,0,Check-Out,2020-01-04 -Resort Hotel,0,17,2017,June,27,26,0,2,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient-Party,71.83,1,0,Check-Out,2020-07-03 -City Hotel,0,94,2015,September,43,20,2,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,101.24,0,0,Check-Out,2019-07-04 -Resort Hotel,0,96,2017,May,23,28,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,197.09,0,1,Check-Out,2020-05-03 -City Hotel,0,6,2016,May,22,25,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,76.74,0,0,Check-Out,2019-02-01 -City Hotel,1,14,2016,January,8,2,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,84.98,0,0,Canceled,2019-10-04 -City Hotel,1,146,2017,August,35,22,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,151.0,179.0,0,Transient,114.39,0,0,Canceled,2019-12-04 -Resort Hotel,0,251,2017,July,35,25,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,311.0,179.0,0,Transient-Party,128.75,0,0,Check-Out,2020-06-02 -Resort Hotel,0,22,2016,November,51,17,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,14.0,179.0,0,Transient-Party,60.84,1,0,Check-Out,2018-12-03 -City Hotel,1,12,2016,December,52,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,15.0,331.0,0,Transient,77.95,0,0,Canceled,2019-09-03 -City Hotel,0,34,2016,June,26,31,0,2,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.63,0,2,Check-Out,2019-03-04 -City Hotel,1,49,2016,September,44,19,2,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,30.0,179.0,0,Transient,78.49,0,0,Canceled,2018-12-03 -City Hotel,0,10,2017,March,8,13,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.32,0,1,Check-Out,2019-11-03 -Resort Hotel,0,265,2017,July,35,17,2,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,147.61,0,2,Check-Out,2020-07-03 -Resort Hotel,0,46,2015,December,53,9,2,2,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,301.0,179.0,0,Transient-Party,60.39,0,0,Check-Out,2018-10-03 -Resort Hotel,0,114,2015,September,36,27,1,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,92.69,0,0,Check-Out,2018-08-03 -Resort Hotel,1,260,2017,August,38,11,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,C,2,No Deposit,244.0,179.0,0,Transient,182.25,0,2,No-Show,2020-07-03 -City Hotel,0,1,2016,May,21,15,2,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,208.0,178.0,0,Transient,98.37,0,0,Check-Out,2019-06-03 -City Hotel,1,207,2015,August,34,24,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient,99.54,0,0,Canceled,2018-06-02 -City Hotel,1,274,2016,October,21,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.29,0,0,Canceled,2019-03-04 -City Hotel,1,289,2016,October,23,17,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.62,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2017,November,24,26,2,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,227.17,0,3,Check-Out,2019-12-04 -City Hotel,1,14,2016,June,27,19,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,123.52,0,0,Canceled,2019-06-03 -City Hotel,0,19,2016,June,27,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,80.08,0,0,Check-Out,2019-04-03 -Resort Hotel,0,211,2017,May,20,11,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,284.0,179.0,0,Contract,147.25,0,1,Check-Out,2020-04-02 -City Hotel,0,3,2017,July,26,8,2,2,3,0.0,0,BB,BRA,Corporate,Corporate,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,219.04,0,1,Canceled,2020-02-01 -City Hotel,0,193,2016,September,43,28,2,1,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,83.46,0,0,Check-Out,2018-08-03 -City Hotel,0,31,2016,December,37,27,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,210.67,0,3,Check-Out,2019-08-04 -City Hotel,1,6,2016,September,36,2,2,0,2,0.0,0,SC,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.8,0,0,Canceled,2019-08-04 -Resort Hotel,0,278,2016,June,24,30,3,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,Refundable,13.0,179.0,0,Transient-Party,68.23,1,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,July,31,4,2,3,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,5.05,1,0,Check-Out,2018-06-02 -City Hotel,1,34,2016,October,42,12,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,7.0,179.0,0,Transient,96.64,0,0,Canceled,2019-08-04 -City Hotel,1,10,2017,March,10,19,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,10.0,81.0,0,Transient-Party,36.15,0,0,Canceled,2019-12-04 -Resort Hotel,0,50,2016,May,22,30,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,147.19,0,2,Check-Out,2020-03-03 -City Hotel,1,33,2017,June,16,9,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.95,0,2,Canceled,2020-01-04 -City Hotel,0,0,2016,October,45,20,0,1,1,0.0,0,BB,CHE,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,175.0,0,Transient,155.3,0,0,Check-Out,2018-09-02 -Resort Hotel,0,104,2016,July,32,13,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,A,1,No Deposit,141.0,179.0,0,Transient-Party,84.44,1,0,Check-Out,2019-02-01 -City Hotel,1,2,2017,August,36,16,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,P,K,0,No Deposit,9.0,179.0,0,Transient,1.08,0,0,Canceled,2020-06-02 -City Hotel,0,103,2016,May,21,26,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,119.96,0,1,Check-Out,2019-03-04 -City Hotel,1,10,2016,October,20,21,0,1,1,0.0,0,BB,CHN,Online TA,TA/TO,1,1,1,D,D,0,No Deposit,9.0,179.0,0,Group,79.44,0,2,Canceled,2019-04-03 -Resort Hotel,0,158,2016,May,27,28,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Contract,112.87,0,1,Check-Out,2019-03-04 -Resort Hotel,0,1,2017,March,10,24,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,102.79,0,0,Check-Out,2019-11-03 -City Hotel,1,254,2017,August,35,13,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,159.9,0,0,Canceled,2020-06-02 -City Hotel,0,268,2016,July,37,23,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,216.7,0,2,Check-Out,2019-05-04 -City Hotel,0,11,2016,May,22,21,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,228.63,0,0,Check-Out,2019-05-04 -Resort Hotel,0,54,2015,December,53,25,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,313.0,179.0,0,Transient,44.04,0,0,Check-Out,2019-01-03 -City Hotel,1,162,2017,August,28,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,103.2,0,0,Canceled,2020-06-02 -City Hotel,0,149,2016,July,26,23,0,4,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,9.0,179.0,0,Transient,139.81,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2017,January,4,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,71.12,0,1,Check-Out,2019-10-04 -City Hotel,0,174,2016,October,45,23,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.57,0,1,Check-Out,2019-07-04 -City Hotel,0,161,2017,July,37,21,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.84,0,2,Check-Out,2020-07-03 -Resort Hotel,0,2,2015,July,37,10,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,166.98,0,0,Canceled,2018-06-02 -Resort Hotel,0,55,2017,August,35,30,1,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,249.0,179.0,0,Transient,208.59,1,0,Check-Out,2020-02-01 -City Hotel,0,74,2016,February,9,13,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,76.58,0,0,Check-Out,2019-02-01 -Resort Hotel,1,386,2017,February,9,21,2,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,133.97,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,January,4,13,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,136.86,0,3,Check-Out,2019-10-04 -City Hotel,0,18,2017,May,22,27,1,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,216.0,0,Transient,128.15,0,0,Check-Out,2020-03-03 -City Hotel,1,44,2016,October,45,29,0,1,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,208.47,0,0,Canceled,2019-07-04 -Resort Hotel,0,404,2016,June,27,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient,41.1,0,0,Canceled,2019-03-04 -Resort Hotel,0,11,2015,October,46,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,12.0,80.0,0,Transient,37.94,0,1,Check-Out,2018-09-02 -City Hotel,1,271,2016,September,45,6,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.07,0,1,Canceled,2019-07-04 -City Hotel,0,0,2015,October,42,25,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,113.37,0,0,Check-Out,2019-05-04 -Resort Hotel,0,304,2017,March,17,27,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,160.77,0,0,Check-Out,2020-05-03 -City Hotel,0,1,2015,September,40,6,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,K,0,No Deposit,12.0,46.0,0,Transient,0.0,0,1,Check-Out,2018-06-02 -Resort Hotel,0,39,2017,July,37,24,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,242.0,179.0,0,Transient,191.82,0,3,Check-Out,2020-06-02 -City Hotel,1,92,2016,April,33,25,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,104.77,0,0,Canceled,2018-12-03 -Resort Hotel,1,10,2017,April,22,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,114.98,0,0,Canceled,2020-03-03 -Resort Hotel,1,157,2017,April,22,28,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,111.07,0,0,Canceled,2020-01-04 -Resort Hotel,0,106,2017,August,31,5,2,4,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,167.08,0,3,Check-Out,2020-04-02 -Resort Hotel,1,91,2015,October,43,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,231.0,179.0,0,Transient-Party,60.71,0,0,Canceled,2018-06-02 -City Hotel,1,16,2015,November,50,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,207.0,0,Transient,54.63,0,0,Canceled,2019-09-03 -City Hotel,1,14,2016,June,27,27,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,117.98,0,0,Canceled,2019-03-04 -City Hotel,1,159,2017,April,18,28,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,187.42,0,0,Canceled,2019-12-04 -City Hotel,0,147,2016,August,36,18,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.87,0,1,Check-Out,2019-05-04 -City Hotel,1,155,2017,June,26,4,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.15,0,2,Canceled,2020-05-03 -Resort Hotel,0,154,2016,March,8,14,0,3,1,0.0,0,FB,PRT,Corporate,Direct,0,0,0,A,A,0,Refundable,45.0,223.0,0,Transient,69.72,0,0,Check-Out,2019-03-04 -City Hotel,1,103,2016,June,27,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,84.44,0,0,Canceled,2019-06-03 -City Hotel,1,61,2017,August,46,30,2,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,172.25,0,1,Canceled,2019-12-04 -City Hotel,1,3,2016,September,37,6,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,1.93,0,1,Canceled,2019-08-04 -City Hotel,1,120,2016,November,37,5,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,86.0,179.0,0,Transient-Party,60.14,0,0,Canceled,2019-08-04 -Resort Hotel,0,256,2016,November,50,9,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient,118.18,0,0,Check-Out,2018-06-02 -City Hotel,1,90,2016,June,27,28,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,98.73,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,December,48,26,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Canceled,2019-12-04 -City Hotel,0,0,2016,October,46,2,0,1,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,0,45,2016,February,11,24,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,67.41,0,2,Check-Out,2019-02-01 -Resort Hotel,0,34,2016,June,26,31,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,15.0,45.0,0,Transient,34.39,1,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,October,44,25,1,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,86.17,0,0,Check-Out,2019-08-04 -City Hotel,1,262,2017,June,20,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,94.98,0,0,Canceled,2020-03-03 -Resort Hotel,0,90,2015,September,45,15,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,119.2,0,1,Check-Out,2018-05-03 -City Hotel,0,3,2016,May,50,30,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,C,0,No Deposit,32.0,179.0,0,Transient-Party,66.49,0,0,Check-Out,2019-07-04 -City Hotel,0,16,2017,May,9,26,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,98.0,179.0,0,Transient-Party,77.16,0,1,Check-Out,2020-04-02 -City Hotel,1,288,2015,September,45,26,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,107.62,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,December,11,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,16.0,70.0,0,Transient,47.32,1,2,Check-Out,2018-12-03 -City Hotel,1,42,2015,October,44,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.24,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,March,11,25,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,71.18,0,0,Check-Out,2019-02-01 -City Hotel,0,39,2015,December,53,28,2,4,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,G,D,0,No Deposit,13.0,179.0,0,Transient,154.26,0,2,Check-Out,2018-06-02 -City Hotel,0,0,2015,October,45,14,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,149.38,0,0,Check-Out,2018-09-02 -City Hotel,1,296,2015,August,37,31,1,1,1,0.0,0,BB,ISR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,114.02,0,0,Canceled,2018-05-03 -Resort Hotel,0,40,2015,November,35,27,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,68.51,0,0,Check-Out,2018-07-03 -City Hotel,1,117,2016,October,43,30,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,40,Transient,110.93,0,0,Canceled,2018-11-02 -City Hotel,1,262,2017,July,33,5,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,2,Canceled,2019-11-03 -Resort Hotel,0,40,2016,June,30,6,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,104.54,0,0,Check-Out,2019-06-03 -City Hotel,0,20,2017,May,22,16,1,0,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,E,B,0,No Deposit,28.0,179.0,0,Transient,86.73,0,0,Check-Out,2019-03-04 -City Hotel,1,395,2016,March,15,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,176.0,179.0,0,Transient,66.98,0,0,Canceled,2018-12-03 -Resort Hotel,1,261,2016,August,37,24,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,150.01,0,3,Canceled,2019-07-04 -City Hotel,0,106,2016,September,46,22,1,1,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Contract,179.2,0,0,Check-Out,2019-09-03 -Resort Hotel,1,184,2017,July,33,28,2,5,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,208.09,1,0,Canceled,2020-07-03 -City Hotel,0,39,2016,June,24,5,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,120.03,0,2,Check-Out,2019-04-03 -Resort Hotel,1,178,2016,May,35,29,1,5,1,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,82.12,0,0,No-Show,2019-03-04 -City Hotel,0,60,2015,September,38,24,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,74.0,179.0,0,Transient,123.76,0,0,Check-Out,2018-09-02 -City Hotel,1,106,2016,February,10,17,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,B,A,0,No Deposit,10.0,179.0,0,Transient-Party,81.81,0,0,Canceled,2018-10-03 -Resort Hotel,1,168,2016,December,51,27,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,147.0,179.0,75,Transient,70.68,0,0,Canceled,2019-10-04 -Resort Hotel,0,47,2016,March,16,28,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Transient-Party,58.91,0,0,Check-Out,2019-01-03 -Resort Hotel,0,34,2017,March,16,15,2,0,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient-Party,68.19,1,0,Check-Out,2020-07-03 -Resort Hotel,1,109,2016,July,36,27,2,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,193.32,0,0,Canceled,2018-12-03 -City Hotel,0,23,2016,April,25,23,0,1,2,0.0,0,HB,ESP,Corporate,Corporate,0,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,125.29,0,0,Check-Out,2020-01-04 -City Hotel,0,16,2017,April,16,21,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Contract,95.68,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,January,3,2,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,80.0,0,Transient,42.53,1,0,Check-Out,2018-11-02 -Resort Hotel,0,64,2016,October,43,18,2,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient,40.92,0,0,Check-Out,2019-08-04 -City Hotel,0,10,2016,August,31,18,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.14,0,0,Check-Out,2019-06-03 -Resort Hotel,0,20,2016,July,33,10,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,179.39,0,1,Check-Out,2019-06-03 -City Hotel,0,187,2016,September,43,16,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.56,0,2,Canceled,2019-08-04 -Resort Hotel,1,184,2017,August,32,17,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,221.08,0,3,Canceled,2020-06-02 -Resort Hotel,0,31,2017,August,35,16,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,237.0,179.0,0,Group,0.55,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,December,53,25,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,36.52,0,0,Check-Out,2018-11-02 -City Hotel,0,22,2017,August,38,31,1,1,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,206.71,0,3,Check-Out,2020-04-02 -Resort Hotel,1,175,2017,July,31,16,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,87.0,179.0,0,Transient,187.15,0,0,Canceled,2020-06-02 -City Hotel,0,135,2016,July,33,5,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,109.42,0,1,Canceled,2019-06-03 -City Hotel,1,153,2017,May,21,21,2,5,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.76,0,0,Canceled,2020-04-02 -City Hotel,0,40,2017,July,10,29,1,1,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.54,0,0,Check-Out,2020-06-02 -City Hotel,1,197,2017,April,20,5,2,5,2,0.0,0,SC,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,122.47,0,2,Check-Out,2020-03-03 -City Hotel,0,36,2016,February,8,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,175.0,179.0,0,Transient,77.6,0,0,Check-Out,2018-11-02 -Resort Hotel,0,49,2017,March,17,28,2,5,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,50.92,0,0,Check-Out,2020-03-03 -Resort Hotel,1,162,2017,March,16,11,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,341.0,179.0,0,Transient,103.47,0,0,Canceled,2019-10-04 -City Hotel,0,93,2016,May,21,21,0,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.15,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2017,February,9,2,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,39.63,0,3,Check-Out,2019-09-03 -Resort Hotel,0,111,2015,October,49,8,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,324.0,179.0,0,Transient,38.65,0,0,Check-Out,2018-08-03 -City Hotel,1,395,2016,January,11,24,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,43,Transient,59.42,0,0,Canceled,2018-10-03 -City Hotel,0,100,2016,March,18,18,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,94.71,0,2,Check-Out,2019-04-03 -Resort Hotel,1,148,2017,March,16,31,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,Refundable,11.0,222.0,0,Transient-Party,68.57,0,0,Canceled,2020-02-01 -City Hotel,1,1,2016,October,36,27,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,38.94,0,0,Canceled,2019-08-04 -City Hotel,1,0,2017,June,25,20,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,2,No Deposit,13.0,238.0,0,Transient,5.31,0,0,Canceled,2020-03-03 -Resort Hotel,1,31,2016,October,46,28,0,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,84.84,0,3,No-Show,2019-09-03 -Resort Hotel,0,0,2016,June,26,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,78.3,0,1,Check-Out,2020-02-01 -City Hotel,0,10,2016,October,45,22,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.79,0,0,Check-Out,2019-11-03 -City Hotel,1,159,2017,July,33,24,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.97,0,0,Canceled,2020-06-02 -City Hotel,1,290,2015,September,37,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.19,0,0,Canceled,2018-08-03 -City Hotel,1,138,2017,March,26,8,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.45,0,0,Canceled,2020-02-01 -City Hotel,1,33,2016,February,10,22,2,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,66.42,0,0,Canceled,2019-02-01 -City Hotel,1,266,2017,June,27,14,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.89,0,0,Canceled,2019-06-03 -City Hotel,0,44,2016,December,51,5,0,2,2,0.0,0,SC,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.41,0,0,Check-Out,2019-11-03 -City Hotel,1,410,2016,May,21,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.89,0,0,Canceled,2019-05-04 -Resort Hotel,0,198,2017,August,25,9,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,113.97,0,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2016,February,9,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,18.0,80.0,0,Transient,39.54,0,0,Check-Out,2018-11-02 -Resort Hotel,1,0,2017,January,2,29,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,27.63,0,0,Canceled,2019-11-03 -City Hotel,0,18,2015,December,53,30,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,166.8,0,0,Check-Out,2018-08-03 -City Hotel,1,250,2016,July,26,31,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,92.14,0,2,Canceled,2019-05-04 -City Hotel,1,6,2016,November,44,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Group,121.67,0,2,Canceled,2019-05-04 -Resort Hotel,0,11,2016,December,51,28,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,64.51,0,1,Check-Out,2019-11-03 -Resort Hotel,0,62,2015,January,3,7,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.02,0,1,Check-Out,2018-11-02 -City Hotel,1,111,2017,April,15,30,2,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,90.45,0,1,Canceled,2019-03-04 -City Hotel,0,32,2016,June,15,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,71.71,0,0,Check-Out,2019-02-01 -City Hotel,0,38,2017,February,10,12,2,4,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,69.38,0,0,Check-Out,2020-04-02 -City Hotel,0,3,2017,February,11,9,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,74.61,0,1,Check-Out,2020-04-02 -Resort Hotel,0,265,2017,August,37,22,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,182.0,179.0,0,Contract,65.6,0,0,Check-Out,2019-12-04 -Resort Hotel,0,17,2016,March,11,29,1,5,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,1,No Deposit,329.0,222.0,0,Transient-Party,40.1,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,September,37,23,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.44,0,3,Check-Out,2019-06-03 -Resort Hotel,0,311,2015,August,36,10,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient,52.31,0,0,Check-Out,2018-06-02 -City Hotel,1,44,2016,January,3,26,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,63.0,0,0,Canceled,2018-11-02 -City Hotel,1,6,2016,July,33,3,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.65,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2016,April,18,31,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,16.0,250.0,0,Transient,39.48,0,0,Check-Out,2019-02-01 -City Hotel,0,160,2017,July,31,21,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,117.58,0,0,Check-Out,2020-05-03 -City Hotel,0,163,2016,June,27,5,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient-Party,74.91,0,0,Check-Out,2019-02-01 -City Hotel,1,243,2017,June,25,14,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.02,0,0,Canceled,2020-02-01 -City Hotel,1,269,2017,May,24,25,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,53.29,0,0,Canceled,2019-02-01 -City Hotel,1,266,2015,July,32,6,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.22,0,0,No-Show,2018-06-02 -Resort Hotel,1,16,2015,July,38,13,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient-Party,124.13,0,2,Canceled,2018-06-02 -Resort Hotel,0,101,2015,November,50,21,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,134.0,179.0,0,Transient,91.81,0,0,Check-Out,2018-08-03 -Resort Hotel,0,115,2016,April,15,25,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient-Party,118.14,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2017,June,25,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,78.74,1,2,Check-Out,2020-04-02 -Resort Hotel,0,26,2015,December,51,18,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,60.87,0,1,Check-Out,2018-10-03 -City Hotel,1,10,2015,December,51,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.97,0,0,Canceled,2019-01-03 -Resort Hotel,0,157,2016,March,17,31,1,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,C,2,Refundable,14.0,222.0,0,Transient-Party,77.77,0,0,Check-Out,2019-02-01 -City Hotel,1,1,2015,July,34,7,2,5,3,0.0,0,BB,PRT,Direct,Undefined,0,1,1,B,B,0,No Deposit,17.0,179.0,0,Transient,55.84,0,1,Canceled,2018-07-03 -Resort Hotel,0,28,2015,December,51,28,1,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,314.0,179.0,0,Transient-Party,84.86,0,0,Check-Out,2018-11-02 -City Hotel,1,158,2017,March,11,21,0,1,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,P,A,0,No Deposit,235.0,179.0,0,Transient,35.5,0,0,Canceled,2019-12-04 -Resort Hotel,1,1,2016,March,10,7,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,12.0,69.0,0,Transient,45.84,0,2,Canceled,2019-06-03 -City Hotel,1,55,2015,December,49,29,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,128.84,0,0,Canceled,2019-11-03 -City Hotel,0,91,2017,April,16,22,0,5,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,K,0,No Deposit,9.0,179.0,0,Transient,100.23,0,2,No-Show,2020-02-01 -Resort Hotel,1,88,2016,October,45,10,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,240.0,179.0,0,Transient-Party,41.12,0,0,Canceled,2019-03-04 -City Hotel,0,98,2016,February,11,24,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,87.58,0,1,Check-Out,2018-10-03 -Resort Hotel,0,54,2017,May,25,10,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,123.31,0,0,Check-Out,2020-07-03 -City Hotel,0,91,2016,December,46,28,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.13,0,2,Check-Out,2018-12-03 -Resort Hotel,0,151,2017,March,8,11,2,5,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient,41.44,0,0,Check-Out,2020-05-03 -City Hotel,1,14,2015,August,37,15,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,87.17,0,1,Canceled,2018-07-03 -City Hotel,0,34,2017,January,4,23,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,115.68,0,3,Check-Out,2019-12-04 -City Hotel,0,17,2017,August,39,31,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.04,0,0,Check-Out,2020-07-03 -Resort Hotel,0,284,2017,June,19,16,2,0,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,A,F,2,No Deposit,247.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-03-03 -City Hotel,0,429,2017,January,3,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient-Party,61.52,0,0,Check-Out,2019-09-03 -Resort Hotel,1,31,2017,May,23,31,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,75,Transient,89.76,0,0,Canceled,2019-10-04 -City Hotel,0,6,2017,August,22,28,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,95.8,0,1,Check-Out,2019-12-04 -City Hotel,0,108,2015,July,32,2,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,28.0,179.0,0,Contract,81.13,0,0,Canceled,2018-08-03 -City Hotel,0,10,2016,October,46,16,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,241.0,0,Transient-Party,61.1,0,0,Check-Out,2019-07-04 -Resort Hotel,1,66,2017,March,9,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,237.0,179.0,0,Transient,116.27,0,0,Canceled,2019-12-04 -City Hotel,1,6,2016,November,12,9,1,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.68,0,2,Canceled,2019-02-01 -City Hotel,1,23,2016,February,4,24,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,116.34,0,1,No-Show,2018-12-03 -Resort Hotel,0,26,2016,June,36,3,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,116.53,0,1,Check-Out,2019-03-04 -City Hotel,1,97,2016,April,21,6,1,2,3,2.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,98.53,0,2,Canceled,2019-03-04 -City Hotel,0,1,2016,December,50,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,85.0,0,Transient,100.04,1,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,December,50,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,143.36,1,1,Check-Out,2018-12-03 -City Hotel,0,13,2017,June,27,5,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,164.17,0,1,Check-Out,2020-06-02 -Resort Hotel,1,266,2015,October,50,28,2,5,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,3,No Deposit,15.0,179.0,0,Transient-Party,50.11,0,0,Canceled,2018-07-03 -Resort Hotel,1,98,2016,May,21,6,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.34,0,0,Canceled,2018-12-03 -Resort Hotel,0,31,2015,October,50,17,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,62.0,0,Transient-Party,71.55,1,0,Check-Out,2019-07-04 -City Hotel,0,0,2017,April,21,14,1,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,1,No Deposit,15.0,263.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -Resort Hotel,0,183,2016,May,22,6,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,242.0,179.0,0,Transient,95.24,0,3,Check-Out,2019-11-03 -City Hotel,0,2,2016,August,38,9,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient,102.66,0,0,Check-Out,2018-12-03 -Resort Hotel,0,3,2015,August,53,9,0,4,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,114.42,0,0,Check-Out,2018-11-02 -City Hotel,1,373,2016,March,14,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,41,Transient,82.08,0,0,Canceled,2018-08-03 -Resort Hotel,0,33,2016,May,22,30,0,2,2,0.0,0,BB,USA,Groups,Corporate,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient-Party,84.27,0,0,Canceled,2019-12-04 -City Hotel,0,238,2016,July,29,18,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,93.62,0,2,Check-Out,2019-06-03 -Resort Hotel,0,301,2016,October,44,24,2,6,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,27.0,179.0,42,Transient-Party,94.6,0,0,Check-Out,2019-08-04 -City Hotel,0,10,2017,June,38,24,1,2,2,0.0,0,BB,USA,Corporate,Corporate,0,0,0,E,D,0,No Deposit,13.0,74.0,0,Transient,220.44,0,0,Check-Out,2019-12-04 -Resort Hotel,1,86,2016,July,42,21,0,5,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,251.0,179.0,0,Transient,252.0,0,3,Canceled,2019-05-04 -Resort Hotel,0,16,2016,August,36,29,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,62.29,0,0,Check-Out,2019-05-04 -City Hotel,0,207,2016,July,37,28,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,123.99,0,0,Check-Out,2018-06-02 -Resort Hotel,0,55,2016,April,19,25,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,117.75,1,2,Check-Out,2019-05-04 -Resort Hotel,0,89,2016,December,50,20,2,5,1,0.0,0,BB,BRA,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,238.0,0,Transient-Party,80.17,0,0,Check-Out,2019-11-03 -Resort Hotel,0,35,2016,November,49,31,1,6,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,76.16,0,2,Check-Out,2019-10-04 -City Hotel,1,240,2015,September,44,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,62,Transient-Party,70.96,0,0,Canceled,2018-06-02 -City Hotel,0,296,2017,April,29,13,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,145.7,0,3,Check-Out,2020-04-02 -City Hotel,1,1,2015,October,50,12,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,101.48,0,3,Canceled,2018-11-02 -Resort Hotel,1,207,2016,March,19,29,2,5,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,31.17,0,0,Canceled,2019-04-03 -Resort Hotel,0,9,2016,February,10,13,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,65.1,0,0,Check-Out,2019-02-01 -Resort Hotel,0,8,2015,September,50,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,127.3,0,0,Check-Out,2018-09-02 -Resort Hotel,0,28,2016,July,28,27,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,25.0,179.0,0,Transient-Party,76.17,0,0,Check-Out,2019-09-03 -Resort Hotel,0,274,2016,November,47,21,1,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,G,E,1,No Deposit,310.0,179.0,0,Transient-Party,25.67,1,3,Check-Out,2019-12-04 -City Hotel,1,2,2017,February,11,20,0,1,1,0.0,0,BB,CHE,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.64,0,0,Canceled,2020-02-01 -City Hotel,1,384,2016,September,37,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,118.41,0,0,Canceled,2018-01-03 -Resort Hotel,0,33,2015,October,38,28,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,195.41,1,0,Check-Out,2018-08-03 -City Hotel,0,45,2015,December,34,27,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,140.41,0,1,Check-Out,2018-06-02 -City Hotel,1,24,2017,June,25,21,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,177.29,0,1,Canceled,2020-03-03 -City Hotel,0,95,2016,August,35,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.95,0,1,Check-Out,2019-01-03 -Resort Hotel,0,25,2015,November,50,31,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,62.15,0,0,Check-Out,2018-06-02 -Resort Hotel,1,20,2017,February,13,25,2,0,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient,62.03,0,0,Canceled,2020-01-04 -City Hotel,0,0,2017,May,21,5,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,14.0,272.0,0,Transient,3.19,0,2,Check-Out,2020-06-02 -City Hotel,0,0,2017,January,4,27,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,79.0,0,Transient-Party,61.61,0,1,Check-Out,2019-11-03 -Resort Hotel,0,109,2017,August,37,18,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.28,0,2,Check-Out,2020-07-03 -Resort Hotel,0,9,2016,October,38,19,0,1,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,123.78,1,1,Check-Out,2019-08-04 -Resort Hotel,0,26,2016,May,27,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,238.0,179.0,0,Transient,121.29,1,0,Check-Out,2019-03-04 -City Hotel,0,7,2017,January,5,28,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.51,0,1,Check-Out,2020-07-03 -Resort Hotel,0,0,2017,June,23,5,1,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,79.99,0,1,Check-Out,2020-04-02 -Resort Hotel,0,33,2017,June,22,31,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,75.86,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,August,33,6,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,195.0,179.0,0,Transient,64.84,1,0,Check-Out,2018-09-02 -City Hotel,1,313,2017,August,37,18,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,114.23,0,1,Canceled,2020-06-02 -City Hotel,1,379,2016,April,44,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,61.78,0,0,Canceled,2018-11-02 -City Hotel,1,91,2015,August,33,5,2,5,2,0.0,0,HB,PRT,Undefined,Undefined,0,1,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,83.6,0,1,Canceled,2018-06-02 -Resort Hotel,0,146,2017,April,27,2,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,242.0,179.0,0,Transient,211.92,1,2,Check-Out,2019-10-04 -City Hotel,0,24,2016,April,15,6,2,2,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,91.36,0,2,Check-Out,2019-03-04 -Resort Hotel,0,297,2017,June,28,13,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,100.41,0,0,Check-Out,2020-03-03 -City Hotel,0,267,2016,August,38,24,0,3,2,2.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,149.39,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,June,25,13,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,89.11,0,2,Check-Out,2020-02-01 -City Hotel,0,41,2016,January,4,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.36,0,1,Check-Out,2018-10-03 -Resort Hotel,0,78,2016,July,21,25,0,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,144.62,0,2,Check-Out,2019-06-03 -Resort Hotel,0,8,2015,September,44,10,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,100.0,179.0,0,Transient,86.46,0,0,Check-Out,2018-09-02 -City Hotel,1,143,2016,September,37,27,1,0,1,0.0,0,BB,POL,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,125.11,0,0,Canceled,2019-04-03 -Resort Hotel,0,16,2015,October,47,22,1,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,D,0,No Deposit,12.0,235.0,0,Transient-Party,32.8,0,0,Check-Out,2018-09-02 -City Hotel,1,374,2016,December,50,16,1,2,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,72.72,0,0,Canceled,2019-09-03 -City Hotel,0,109,2017,February,8,13,2,2,1,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,79.37,0,0,Check-Out,2020-01-04 -Resort Hotel,0,97,2017,February,11,16,1,2,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,62.28,1,1,Check-Out,2019-10-04 -Resort Hotel,1,94,2016,May,21,20,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,124.76,0,0,No-Show,2019-02-01 -City Hotel,0,107,2016,December,21,20,0,2,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,65.83,0,0,Check-Out,2019-12-04 -City Hotel,0,244,2017,August,35,13,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,226.41,0,0,Check-Out,2020-07-03 -City Hotel,0,144,2016,July,33,8,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.65,0,1,Check-Out,2019-07-04 -Resort Hotel,0,88,2017,July,33,22,2,5,2,2.0,0,HB,CHE,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-06-02 -Resort Hotel,0,306,2017,July,32,12,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,89.22,0,0,Check-Out,2020-06-02 -City Hotel,1,202,2016,November,47,26,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,A,0,Non Refund,13.0,179.0,0,Contract,60.52,0,0,Canceled,2017-10-03 -City Hotel,0,90,2017,May,22,28,2,5,2,0.0,0,BB,,Aviation,TA/TO,0,0,0,D,D,0,No Deposit,29.0,221.0,0,Transient,134.0,0,1,Check-Out,2020-04-02 -City Hotel,1,304,2017,May,21,15,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.07,0,0,Canceled,2019-11-03 -City Hotel,0,9,2017,June,23,25,0,3,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,141.1,0,0,Check-Out,2020-04-02 -Resort Hotel,0,95,2015,August,35,10,2,1,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,41.54,0,3,Check-Out,2018-06-02 -City Hotel,0,111,2016,August,36,18,0,1,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,208.11,0,3,Check-Out,2019-04-03 -Resort Hotel,0,106,2017,May,21,26,1,4,2,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-11-03 -City Hotel,0,4,2017,October,42,14,1,3,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,70.44,0,1,Check-Out,2019-11-03 -City Hotel,0,18,2017,June,27,2,2,2,3,1.0,0,HB,,Direct,Direct,0,0,0,G,G,2,No Deposit,14.0,179.0,0,Transient,122.99,0,3,Check-Out,2020-07-03 -City Hotel,0,30,2015,September,41,20,2,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,74.47,0,0,Check-Out,2018-09-02 -Resort Hotel,1,89,2016,March,10,31,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,307.0,179.0,0,Transient,187.41,0,0,Canceled,2019-02-01 -City Hotel,1,49,2016,February,30,9,0,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.91,0,0,Canceled,2018-11-02 -Resort Hotel,0,2,2016,June,28,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,344.0,331.0,0,Transient,39.19,1,0,Check-Out,2019-06-03 -City Hotel,1,3,2017,February,11,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,58.24,0,0,Canceled,2019-10-04 -City Hotel,0,1,2016,July,33,26,0,5,3,0.0,0,BB,SWE,Undefined,Undefined,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,124.51,0,1,Check-Out,2018-07-03 -City Hotel,0,0,2015,October,41,25,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.75,0,0,Check-Out,2018-08-03 -City Hotel,0,132,2016,March,9,28,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.82,1,1,Check-Out,2019-01-03 -Resort Hotel,0,3,2016,May,24,20,1,0,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,H,B,0,No Deposit,16.0,179.0,0,Transient,181.78,0,1,Check-Out,2019-03-04 -City Hotel,0,98,2017,May,22,28,2,0,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,1,164,2017,May,24,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,306.0,179.0,0,Transient,71.32,0,0,Canceled,2020-03-03 -Resort Hotel,0,215,2016,September,45,15,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,107.24,0,1,Check-Out,2019-07-04 -City Hotel,0,26,2016,May,22,30,2,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,301.0,179.0,0,Transient,74.88,0,0,Check-Out,2019-04-03 -City Hotel,0,99,2016,December,46,12,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,1,A,D,2,No Deposit,15.0,69.0,0,Transient,63.68,0,0,Check-Out,2019-09-03 -City Hotel,1,193,2016,September,45,15,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,87.87,0,0,Canceled,2019-06-03 -Resort Hotel,0,91,2016,April,17,28,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,75.67,0,0,Check-Out,2019-03-04 -Resort Hotel,0,90,2016,February,5,16,1,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,42.4,1,0,Check-Out,2019-03-04 -City Hotel,1,50,2017,October,9,9,1,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.56,0,0,Canceled,2019-09-03 -City Hotel,1,146,2017,June,24,15,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,68.03,0,0,Canceled,2018-09-02 -City Hotel,0,23,2015,October,46,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,217.0,0,Transient-Party,61.49,1,0,Check-Out,2018-09-02 -City Hotel,0,109,2016,October,45,20,1,3,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,222.88,0,0,Check-Out,2019-08-04 -Resort Hotel,0,42,2017,March,17,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,156.91,0,0,Check-Out,2020-01-04 -Resort Hotel,1,89,2016,October,28,16,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,C,0,No Deposit,277.0,179.0,0,Group,84.15,0,0,Canceled,2019-07-04 -City Hotel,1,276,2015,September,39,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.49,0,0,Canceled,2017-12-03 -City Hotel,1,37,2017,April,17,11,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.0,0,2,Canceled,2020-03-03 -City Hotel,1,34,2016,February,10,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.54,0,0,No-Show,2018-12-03 -City Hotel,0,93,2016,July,26,20,2,3,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,201.84,0,0,Check-Out,2019-07-04 -City Hotel,0,24,2015,September,43,6,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,91.63,0,0,Check-Out,2018-08-03 -City Hotel,1,24,2017,April,17,13,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.29,0,1,Canceled,2020-02-01 -Resort Hotel,0,49,2015,July,33,27,1,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,63,Transient-Party,70.74,0,0,Check-Out,2018-07-03 -City Hotel,1,39,2016,March,10,25,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,119.46,0,0,Canceled,2019-11-03 -Resort Hotel,0,78,2016,December,50,15,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,72.52,1,3,Check-Out,2019-11-03 -City Hotel,1,55,2016,April,44,27,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,90.19,0,2,Canceled,2019-01-03 -Resort Hotel,0,103,2015,October,44,25,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,121.1,0,3,Check-Out,2018-08-03 -Resort Hotel,0,151,2017,August,32,28,2,7,3,0.0,0,HB,ESP,Direct,Direct,0,0,0,D,E,2,No Deposit,246.0,179.0,0,Transient,247.26,1,1,Check-Out,2020-06-02 -Resort Hotel,0,90,2016,June,27,2,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,246.71,0,1,Check-Out,2019-01-03 -City Hotel,1,102,2017,May,21,12,0,1,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,E,E,0,No Deposit,86.0,179.0,0,Transient-Party,79.82,0,0,Canceled,2020-02-01 -City Hotel,1,153,2015,September,44,10,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,81.68,0,0,Canceled,2018-08-03 -City Hotel,0,22,2017,June,3,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,63,Transient-Party,85.06,0,0,Check-Out,2020-06-02 -City Hotel,0,160,2016,March,16,6,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient-Party,127.78,0,2,Check-Out,2019-03-04 -City Hotel,0,2,2016,February,11,10,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,71.09,0,0,Check-Out,2019-03-04 -Resort Hotel,0,11,2016,November,50,4,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,61.0,0,0,Check-Out,2019-07-04 -City Hotel,1,260,2015,July,43,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,58.7,0,0,Canceled,2018-05-03 -Resort Hotel,1,39,2016,January,4,24,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,165.4,0,0,Canceled,2018-12-03 -City Hotel,1,2,2016,September,45,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,D,D,0,No Deposit,12.0,45.0,0,Transient,62.58,0,0,Canceled,2019-03-04 -Resort Hotel,0,91,2016,December,53,27,2,5,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient-Party,74.73,0,0,Check-Out,2019-11-03 -City Hotel,0,113,2017,May,20,21,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient,128.5,0,1,Check-Out,2020-02-01 -City Hotel,0,40,2017,July,31,4,2,5,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,210.1,1,2,Check-Out,2020-07-03 -City Hotel,0,43,2016,January,12,3,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,78.75,0,1,Check-Out,2018-12-03 -City Hotel,1,86,2016,June,16,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient,62.01,0,0,No-Show,2019-03-04 -City Hotel,0,21,2017,March,11,16,0,2,1,0.0,0,SC,CHN,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,120.76,0,1,Check-Out,2020-02-01 -City Hotel,0,26,2016,April,15,27,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.55,0,0,Check-Out,2020-03-03 -City Hotel,0,106,2017,June,31,9,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.86,0,2,Check-Out,2020-07-03 -Resort Hotel,0,61,2017,July,37,28,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,202.26,1,0,Check-Out,2020-06-02 -City Hotel,0,94,2017,June,22,9,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,180.78,0,1,Check-Out,2020-04-02 -City Hotel,1,36,2015,August,39,30,0,1,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,88.55,0,0,Canceled,2018-08-03 -Resort Hotel,1,46,2015,October,44,26,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,105.35,0,0,Canceled,2017-11-02 -Resort Hotel,1,0,2017,March,11,16,0,3,2,0.0,0,HB,PRT,Direct,Direct,1,0,1,E,I,1,No Deposit,14.0,45.0,75,Transient-Party,46.57,1,0,Canceled,2020-05-03 -City Hotel,1,278,2015,July,37,5,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,E,0,Non Refund,1.0,179.0,0,Transient,61.3,0,0,Canceled,2018-06-02 -Resort Hotel,0,9,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient,29.73,0,0,Check-Out,2019-11-03 -City Hotel,0,135,2016,July,33,29,2,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,176.41,0,2,Check-Out,2019-04-03 -Resort Hotel,1,194,2016,January,10,27,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,67.45,0,0,Canceled,2019-10-04 -Resort Hotel,0,305,2016,August,37,31,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,199.87,0,0,Check-Out,2019-08-04 -Resort Hotel,0,94,2015,December,53,31,0,2,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,102.0,179.0,0,Transient-Party,92.28,0,2,Check-Out,2018-11-02 -City Hotel,0,413,2017,August,30,22,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.14,0,1,Check-Out,2020-07-03 -Resort Hotel,0,28,2016,October,40,10,2,7,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,102.25,1,1,Check-Out,2018-08-03 -Resort Hotel,0,202,2016,March,26,31,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,59.35,0,0,Check-Out,2019-03-04 -City Hotel,1,296,2015,September,43,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,121.34,0,0,Canceled,2018-08-03 -City Hotel,1,55,2016,November,45,25,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,89.52,0,0,Canceled,2018-08-03 -Resort Hotel,0,108,2017,March,19,27,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,79.25,1,2,Check-Out,2019-12-04 -City Hotel,0,289,2017,July,28,28,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.93,0,0,Check-Out,2020-07-03 -City Hotel,0,14,2017,June,27,20,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,134.0,179.0,0,Transient-Party,63.12,0,0,Check-Out,2020-03-03 -City Hotel,0,55,2015,September,50,7,0,1,2,2.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.55,0,0,Check-Out,2018-08-03 -City Hotel,1,98,2016,October,44,9,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.59,0,1,Canceled,2019-08-04 -Resort Hotel,0,17,2015,October,44,27,2,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Group,75.01,0,0,Check-Out,2018-09-02 -Resort Hotel,0,18,2015,December,53,29,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient-Party,122.34,0,2,Check-Out,2018-11-02 -City Hotel,1,50,2016,March,12,12,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,2.0,45.0,41,Transient,78.05,0,0,Canceled,2018-10-03 -City Hotel,0,106,2017,March,22,24,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,97.09,0,1,Check-Out,2020-02-01 -City Hotel,1,1,2017,January,3,30,0,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,D,A,0,No Deposit,13.0,179.0,0,Transient,126.05,0,0,Canceled,2020-01-04 -City Hotel,0,205,2016,August,36,25,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.97,0,0,Canceled,2018-08-03 -City Hotel,0,375,2016,March,24,12,0,2,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.25,0,1,Check-Out,2019-11-03 -Resort Hotel,1,156,2016,June,26,5,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,157.28,0,1,Canceled,2019-02-01 -City Hotel,1,297,2016,June,26,17,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,80.61,0,0,Canceled,2019-05-04 -City Hotel,1,93,2016,May,21,20,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,147.37,0,1,Canceled,2019-10-04 -Resort Hotel,0,160,2016,March,18,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,1,Refundable,12.0,223.0,0,Transient-Party,81.96,0,0,Check-Out,2020-02-01 -City Hotel,1,12,2017,February,17,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,E,F,0,No Deposit,239.0,179.0,0,Transient,78.08,0,1,Canceled,2020-03-03 -City Hotel,1,244,2016,April,28,10,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.11,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,February,11,20,2,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,63.24,1,0,Check-Out,2019-10-04 -City Hotel,0,13,2015,August,36,28,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.37,0,1,Check-Out,2019-01-03 -City Hotel,0,0,2016,October,44,26,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.44,0,2,Check-Out,2019-08-04 -City Hotel,0,248,2017,April,25,18,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.33,0,1,Check-Out,2020-05-03 -Resort Hotel,0,103,2017,May,17,23,0,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,109.29,0,1,Check-Out,2020-02-01 -City Hotel,1,146,2017,March,11,15,1,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.0,0,0,Canceled,2019-09-03 -City Hotel,0,39,2015,August,36,26,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient-Party,85.56,1,2,Check-Out,2018-06-02 -Resort Hotel,0,137,2017,July,29,31,2,7,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,101.89,1,2,Check-Out,2020-03-03 -City Hotel,1,45,2016,February,9,10,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,125.0,179.0,19,Transient,59.94,0,0,Canceled,2018-11-02 -City Hotel,0,17,2017,June,8,21,0,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.15,0,0,Check-Out,2020-06-02 -City Hotel,0,91,2016,March,18,15,0,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,81.47,0,1,Check-Out,2019-03-04 -City Hotel,0,128,2015,September,35,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,96.14,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2017,June,18,23,0,3,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,125.91,0,3,Check-Out,2020-06-02 -City Hotel,1,23,2016,November,43,15,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,Refundable,11.0,179.0,0,Transient,147.3,0,0,Canceled,2019-08-04 -City Hotel,1,327,2015,October,44,27,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.36,0,0,Canceled,2018-08-03 -Resort Hotel,0,11,2016,October,43,21,0,2,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,119.8,1,0,Check-Out,2019-05-04 -City Hotel,0,1,2016,October,45,14,1,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,175.47,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,August,11,15,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient,132.59,0,1,Check-Out,2019-02-01 -City Hotel,1,40,2016,February,11,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,F,0,Non Refund,12.0,179.0,0,Transient,61.27,0,0,Canceled,2018-11-02 -City Hotel,0,89,2015,October,33,10,0,5,2,0.0,0,HB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,117.62,0,0,Check-Out,2018-05-03 -City Hotel,0,17,2015,August,34,25,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,75.52,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,January,5,12,0,1,1,0.0,0,Undefined,USA,Direct,Direct,0,0,0,C,C,1,No Deposit,15.0,179.0,0,Transient,2.9,1,0,Check-Out,2019-10-04 -City Hotel,0,53,2016,August,32,27,2,5,2,1.0,0,HB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.8,0,2,Check-Out,2019-06-03 -City Hotel,0,1,2016,October,4,28,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,72.41,0,1,Check-Out,2019-11-03 -City Hotel,1,10,2016,January,17,27,2,3,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,97.3,0,0,Canceled,2019-02-01 -Resort Hotel,1,106,2017,May,26,16,2,2,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,243.0,179.0,0,Transient,117.12,0,3,Canceled,2020-04-02 -City Hotel,1,46,2016,April,17,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,163.0,179.0,0,Transient,116.66,0,0,Check-Out,2019-02-01 -City Hotel,0,148,2015,October,44,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,76.38,0,0,Check-Out,2018-09-02 -City Hotel,0,16,2015,August,36,22,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,75.16,0,0,Check-Out,2018-06-02 -Resort Hotel,1,56,2017,April,16,29,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,178.0,179.0,0,Transient,72.27,0,0,Canceled,2020-02-01 -Resort Hotel,0,240,2016,March,18,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,43.89,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,March,9,10,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,G,0,No Deposit,15.0,45.0,0,Transient,0.0,1,3,Check-Out,2018-11-02 -Resort Hotel,1,8,2016,June,28,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,119.08,0,0,No-Show,2019-03-04 -City Hotel,0,44,2017,March,22,22,1,0,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,95.07,0,0,Check-Out,2020-04-02 -Resort Hotel,1,17,2015,August,36,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,239.0,179.0,0,Transient,100.28,0,2,Canceled,2018-06-02 -City Hotel,0,0,2016,September,44,12,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,194.54,0,0,Check-Out,2019-06-03 -City Hotel,0,241,2017,August,35,28,2,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,69.82,0,0,Check-Out,2019-12-04 -City Hotel,1,143,2016,June,31,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,20.0,179.0,21,Transient,104.77,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2015,July,34,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,17.0,179.0,0,Transient,124.83,1,0,Check-Out,2018-06-02 -Resort Hotel,0,38,2016,May,22,20,2,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,I,2,No Deposit,239.0,179.0,0,Transient-Party,4.87,0,1,Check-Out,2019-03-04 -City Hotel,1,23,2016,August,36,24,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,84.12,0,0,Canceled,2020-06-02 -Resort Hotel,1,101,2017,March,10,6,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,138.0,179.0,0,Transient,81.94,0,0,Canceled,2019-11-03 -Resort Hotel,0,54,2017,February,8,28,1,2,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Transient,107.86,0,2,Check-Out,2020-04-02 -City Hotel,0,244,2015,October,46,26,0,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,64.14,0,0,Canceled,2018-08-03 -Resort Hotel,0,234,2016,May,23,14,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,75,Transient-Party,143.33,1,1,Check-Out,2020-02-01 -Resort Hotel,1,314,2017,June,15,15,2,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,73.0,0,0,Canceled,2020-04-02 -Resort Hotel,0,14,2017,February,10,24,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Non Refund,38.0,331.0,0,Transient-Party,71.53,0,0,No-Show,2020-01-04 -City Hotel,1,45,2017,March,17,21,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,75,Transient-Party,120.77,0,0,Canceled,2020-01-04 -City Hotel,1,49,2016,July,33,3,2,5,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.31,0,0,Canceled,2019-01-03 -City Hotel,0,0,2015,July,33,5,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,96.84,1,1,Check-Out,2018-06-02 -City Hotel,0,0,2016,August,37,10,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,83.5,0,1,Check-Out,2019-06-03 -Resort Hotel,0,18,2016,December,51,20,0,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,173.0,179.0,0,Transient,96.26,0,0,Check-Out,2019-10-04 -Resort Hotel,0,33,2016,January,53,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,77.92,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,June,21,13,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,L,0,No Deposit,16.0,179.0,0,Transient,97.79,0,0,Check-Out,2019-06-03 -City Hotel,0,135,2017,February,8,15,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,96.74,0,2,Check-Out,2020-03-03 -City Hotel,0,0,2017,January,2,16,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,91.06,0,0,Check-Out,2019-11-03 -Resort Hotel,0,147,2016,February,44,20,0,10,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,196.0,179.0,0,Transient,87.89,0,0,Check-Out,2019-03-04 -City Hotel,1,384,2015,December,50,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,73.4,0,0,Canceled,2017-12-03 -Resort Hotel,0,141,2016,July,26,20,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,95.47,0,0,Check-Out,2019-07-04 -Resort Hotel,0,109,2015,August,34,15,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,135.06,0,0,Check-Out,2018-08-03 -Resort Hotel,0,26,2015,November,35,9,2,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,G,0,No Deposit,14.0,179.0,0,Transient-Party,226.05,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2016,February,11,28,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,15.0,67.0,0,Transient,63.57,0,0,Check-Out,2018-11-02 -City Hotel,1,158,2016,March,16,30,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.61,0,0,Canceled,2018-12-03 -City Hotel,1,0,2016,April,49,17,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,12.0,275.0,0,Group,1.79,0,0,Canceled,2019-11-03 -City Hotel,1,316,2016,June,24,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.94,0,0,Canceled,2019-05-04 -City Hotel,0,21,2015,September,44,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.59,0,1,Check-Out,2018-08-03 -Resort Hotel,0,90,2017,May,24,29,1,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,No Deposit,189.0,179.0,0,Transient-Party,60.95,0,0,Check-Out,2019-11-03 -City Hotel,1,94,2016,January,4,28,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.32,0,1,Canceled,2018-11-02 -Resort Hotel,0,12,2016,July,27,10,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,170.7,1,0,Check-Out,2019-06-03 -City Hotel,1,444,2017,June,28,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,36.0,179.0,0,Transient,74.08,0,0,Canceled,2019-11-03 -City Hotel,1,374,2016,November,35,16,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,111.95,0,0,Canceled,2019-12-04 -Resort Hotel,1,19,2016,July,16,6,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,176.1,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2015,February,9,9,2,1,2,0.0,0,SC,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,77.23,0,2,Check-Out,2018-11-02 -Resort Hotel,1,62,2016,July,21,28,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,223.74,0,0,Canceled,2019-03-04 -City Hotel,0,1,2016,February,9,13,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,148.15,0,0,Check-Out,2018-10-03 -Resort Hotel,0,0,2016,March,11,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,69.0,0,Transient,39.14,1,0,Check-Out,2019-02-01 -Resort Hotel,0,41,2016,December,35,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,70.72,0,0,Check-Out,2019-08-04 -City Hotel,1,201,2016,May,26,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,86.0,179.0,0,Transient,60.43,0,0,Canceled,2019-03-04 -City Hotel,0,100,2016,September,49,13,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,94.68,0,0,Check-Out,2018-11-02 -Resort Hotel,1,142,2016,December,52,28,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,163.18,0,3,Canceled,2018-12-03 -City Hotel,0,26,2016,October,44,20,1,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,153.13,1,3,Check-Out,2019-09-03 -Resort Hotel,0,129,2016,July,21,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,126.15,1,2,Check-Out,2020-03-03 -City Hotel,0,0,2016,October,45,9,1,0,1,0.0,0,BB,GBR,Undefined,Corporate,0,0,0,A,B,0,No Deposit,13.0,206.0,0,Transient,88.27,0,0,Check-Out,2018-09-02 -City Hotel,0,271,2015,July,36,3,0,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,104.01,0,0,Check-Out,2018-05-03 -City Hotel,0,305,2016,July,32,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,134.58,0,2,Check-Out,2019-07-04 -Resort Hotel,0,258,2016,September,34,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,204.45,1,0,Check-Out,2019-07-04 -Resort Hotel,0,187,2016,October,41,24,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,242.0,179.0,0,Transient,61.46,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,September,35,9,1,1,2,1.0,0,BB,POL,Direct,Direct,0,0,0,F,E,0,No Deposit,15.0,179.0,0,Transient,165.06,0,0,Check-Out,2019-06-03 -City Hotel,1,201,2016,October,44,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,128.87,0,0,Canceled,2018-08-03 -Resort Hotel,0,22,2016,March,18,9,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,17.0,179.0,0,Transient,106.03,0,0,Check-Out,2019-02-01 -City Hotel,1,58,2016,August,38,8,2,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,192.56,0,0,Canceled,2019-04-03 -City Hotel,0,7,2017,June,26,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,36.0,179.0,0,Contract,117.74,0,0,Check-Out,2020-04-02 -Resort Hotel,1,251,2016,September,42,31,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,39.14,0,0,Canceled,2019-08-04 -City Hotel,1,242,2015,October,45,12,2,1,2,0.0,0,BB,DEU,Online TA,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,123.74,0,0,Canceled,2018-09-02 -City Hotel,0,161,2016,May,21,29,0,3,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,94.31,0,1,Check-Out,2019-01-03 -Resort Hotel,1,131,2017,June,21,29,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,207.62,0,2,Canceled,2020-03-03 -Resort Hotel,0,15,2016,December,53,12,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,86.0,179.0,0,Transient,80.17,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,December,53,3,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,101.43,0,0,Check-Out,2018-11-02 -City Hotel,1,102,2015,December,49,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,86.75,0,0,Canceled,2018-08-03 -City Hotel,1,26,2017,August,26,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,162.0,179.0,0,Transient-Party,118.91,0,0,Canceled,2019-10-04 -Resort Hotel,0,57,2016,November,44,6,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,216.71,1,2,Check-Out,2019-11-03 -Resort Hotel,0,11,2015,October,43,21,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,2,No Deposit,247.0,179.0,0,Transient,125.77,1,2,Check-Out,2018-09-02 -Resort Hotel,0,98,2016,December,15,27,0,3,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,151.0,179.0,0,Transient-Party,45.23,0,0,Check-Out,2019-10-04 -City Hotel,1,47,2015,December,45,29,2,1,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,62.2,0,2,Canceled,2018-07-03 -City Hotel,0,0,2016,April,15,10,1,0,1,0.0,0,BB,,Complementary,Direct,1,0,0,D,F,1,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-04-03 -City Hotel,0,1,2015,September,31,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,237.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2015,July,32,16,0,3,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,129.94,0,0,Check-Out,2018-05-03 -City Hotel,1,41,2016,July,27,6,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.89,0,2,Canceled,2018-06-02 -City Hotel,0,33,2016,October,50,11,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.97,0,1,Check-Out,2019-08-04 -Resort Hotel,1,49,2016,May,20,24,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,241.1,0,0,Canceled,2019-02-01 -City Hotel,0,305,2017,August,18,28,2,3,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,0.55,0,0,Check-Out,2020-07-03 -City Hotel,1,95,2015,October,45,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,126.42,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2017,July,25,10,2,4,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,179.0,75,Transient-Party,62.76,1,3,Check-Out,2019-12-04 -Resort Hotel,1,74,2015,August,37,24,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,39.51,0,0,No-Show,2018-09-02 -City Hotel,1,350,2015,September,46,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,70.5,0,0,Canceled,2017-11-02 -City Hotel,0,91,2017,May,21,28,1,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.03,0,2,Check-Out,2020-04-02 -Resort Hotel,0,32,2017,March,19,31,1,3,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,3,No Deposit,343.0,179.0,75,Transient-Party,0.11,1,0,Check-Out,2019-09-03 -City Hotel,0,50,2017,August,4,27,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.62,0,1,Check-Out,2020-06-02 -City Hotel,0,200,2017,March,12,5,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.2,0,2,Check-Out,2020-03-03 -City Hotel,1,87,2016,September,37,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,66.17,0,0,Canceled,2019-06-03 -City Hotel,1,426,2015,July,50,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.94,0,0,Canceled,2018-06-02 -Resort Hotel,0,40,2016,July,27,27,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,147.11,1,2,Check-Out,2019-06-03 -Resort Hotel,0,21,2015,December,51,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-11-02 -City Hotel,0,312,2017,July,36,7,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Contract,81.2,0,2,Check-Out,2020-07-03 -Resort Hotel,0,2,2016,October,44,28,0,1,2,0.0,0,HB,,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,97.99,0,1,Check-Out,2019-08-04 -City Hotel,1,40,2016,August,38,10,0,2,3,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,219.97,0,0,Canceled,2018-06-02 -City Hotel,0,109,2016,October,45,6,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,77.18,0,2,Check-Out,2019-12-04 -City Hotel,0,250,2016,August,38,12,0,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,117.28,0,0,Check-Out,2018-03-03 -City Hotel,0,1,2016,September,42,24,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.9,0,0,Check-Out,2019-08-04 -City Hotel,1,247,2015,September,39,20,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,122.1,0,0,Canceled,2018-06-02 -City Hotel,1,82,2016,April,53,5,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.62,0,0,Canceled,2019-02-01 -City Hotel,0,171,2016,August,34,18,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,200.35,0,0,Check-Out,2019-08-04 -City Hotel,1,53,2016,November,50,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,94.32,0,1,Canceled,2019-10-04 -City Hotel,0,48,2015,December,50,19,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.25,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,December,11,6,1,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,59.44,0,2,Check-Out,2020-03-03 -City Hotel,1,1,2015,October,44,10,1,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,34.26,0,0,Check-Out,2018-08-03 -City Hotel,1,105,2016,March,10,6,1,0,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,60.71,0,0,Canceled,2018-11-02 -Resort Hotel,0,2,2016,March,17,16,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient-Party,35.66,0,0,Check-Out,2019-03-04 -Resort Hotel,0,32,2015,September,53,31,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,39.21,0,2,Check-Out,2018-08-03 -Resort Hotel,1,199,2017,July,28,2,2,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,303.0,179.0,0,Transient,2.22,0,0,Canceled,2020-04-02 -City Hotel,0,51,2017,May,22,15,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,81.47,0,1,Check-Out,2020-03-03 -City Hotel,0,36,2016,August,38,10,0,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,90.0,179.0,0,Transient-Party,119.75,0,0,Check-Out,2019-06-03 -City Hotel,0,12,2017,June,21,31,0,1,2,0.0,0,HB,CN,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.99,1,0,Check-Out,2020-04-02 -City Hotel,0,2,2015,October,35,7,0,3,2,0.0,0,BB,CHE,Complementary,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,126.55,0,1,Check-Out,2019-09-03 -Resort Hotel,0,22,2015,December,51,30,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,53.49,0,2,Check-Out,2018-10-03 -City Hotel,1,169,2015,August,37,14,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,66.5,0,1,Canceled,2018-06-02 -City Hotel,1,37,2016,February,3,17,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,123.91,0,0,Canceled,2019-03-04 -City Hotel,0,269,2016,August,35,10,2,4,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.79,0,1,Check-Out,2019-11-03 -Resort Hotel,0,118,2016,October,37,13,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,97.46,0,1,Check-Out,2019-07-04 -City Hotel,1,57,2016,April,19,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,42,Transient,125.95,0,2,Canceled,2019-11-03 -City Hotel,1,16,2017,June,23,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.51,0,1,Canceled,2020-05-03 -City Hotel,0,40,2016,May,22,5,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.35,1,1,Check-Out,2019-04-03 -City Hotel,0,2,2016,December,53,7,0,5,2,0.0,0,SC,PRT,Complementary,TA/TO,1,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -Resort Hotel,0,36,2016,July,34,24,0,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,94.89,0,0,Check-Out,2019-06-03 -Resort Hotel,0,56,2015,November,49,8,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,102.45,0,0,Check-Out,2018-06-02 -Resort Hotel,0,52,2016,December,49,6,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,315.0,179.0,0,Transient-Party,59.59,0,0,Check-Out,2019-01-03 -Resort Hotel,1,171,2017,August,27,6,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,138.2,0,2,Canceled,2020-03-03 -City Hotel,0,148,2016,November,53,23,0,4,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,63,Transient,113.73,0,1,Check-Out,2019-02-01 -Resort Hotel,0,253,2017,March,17,15,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,11.0,221.0,0,Transient-Party,37.6,0,0,Check-Out,2020-02-01 -City Hotel,1,52,2017,November,24,29,2,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,151.62,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2017,March,19,20,0,1,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,16.0,223.0,75,Transient-Party,29.11,1,3,Check-Out,2020-02-01 -City Hotel,1,91,2015,August,34,21,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,88.41,0,0,Canceled,2018-06-02 -City Hotel,1,52,2016,September,17,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,42,Transient,107.76,0,0,Canceled,2018-11-02 -City Hotel,1,244,2016,May,21,5,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient,77.69,0,0,Check-Out,2019-02-01 -City Hotel,0,57,2017,June,26,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,129.3,0,0,Check-Out,2020-06-02 -City Hotel,1,18,2017,January,11,15,2,5,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,208.99,0,1,Canceled,2020-03-03 -Resort Hotel,1,49,2016,January,2,8,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,34.07,0,0,No-Show,2018-11-02 -City Hotel,1,362,2017,June,24,12,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,83.55,0,0,Check-Out,2020-06-02 -City Hotel,1,205,2016,May,20,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,41,Transient,97.13,0,0,Canceled,2019-03-04 -City Hotel,1,35,2016,April,22,13,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.63,0,0,Canceled,2019-03-04 -Resort Hotel,1,55,2017,February,10,18,1,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,238.0,179.0,0,Transient,103.66,0,1,Canceled,2019-11-03 -City Hotel,0,18,2016,July,32,4,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,171.56,0,2,Check-Out,2019-09-03 -Resort Hotel,0,58,2017,August,31,14,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,173.0,179.0,0,Transient,79.64,0,3,Check-Out,2020-06-02 -Resort Hotel,0,17,2017,May,22,6,1,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,123.49,0,1,Check-Out,2020-03-03 -City Hotel,0,46,2016,May,17,24,0,2,2,1.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,84.0,179.0,0,Transient-Party,124.1,0,0,Check-Out,2019-04-03 -City Hotel,1,201,2017,August,37,2,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.36,0,3,Canceled,2019-04-03 -City Hotel,0,41,2016,May,16,21,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,7.0,179.0,0,Transient,175.82,0,1,Check-Out,2019-02-01 -City Hotel,0,8,2017,May,23,7,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.31,0,1,Check-Out,2020-04-02 -Resort Hotel,1,29,2015,December,53,18,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient-Party,82.98,0,0,Canceled,2018-12-03 -City Hotel,0,16,2016,April,10,31,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,93.6,0,0,Check-Out,2019-05-04 -Resort Hotel,1,49,2016,July,30,24,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Canceled,2019-10-04 -City Hotel,0,111,2017,March,21,27,0,2,1,0.0,0,BB,ITA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.26,0,2,Check-Out,2020-03-03 -City Hotel,0,49,2016,September,38,28,1,4,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,167.29,1,2,Check-Out,2019-03-04 -City Hotel,0,86,2016,June,27,19,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,145.93,1,0,Check-Out,2019-01-03 -Resort Hotel,0,14,2016,March,16,31,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,85.0,179.0,0,Transient-Party,35.94,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2016,September,36,28,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,84.16,0,0,Check-Out,2019-06-03 -City Hotel,1,270,2016,November,46,20,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,69.98,0,0,Canceled,2018-07-03 -Resort Hotel,0,44,2015,July,37,17,2,3,2,1.0,0,BB,ITA,Groups,Direct,0,0,0,L,F,0,No Deposit,14.0,179.0,0,Contract,64.73,0,0,Check-Out,2018-06-02 -City Hotel,0,19,2016,October,23,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient,120.3,0,0,Check-Out,2019-11-03 -City Hotel,0,12,2016,October,45,28,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.85,0,1,Check-Out,2019-10-04 -Resort Hotel,0,148,2015,December,53,31,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,H,1,No Deposit,243.0,179.0,0,Transient,36.62,0,0,Check-Out,2018-12-03 -City Hotel,1,15,2016,February,4,24,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,44,Transient,77.1,0,0,Canceled,2018-10-03 -City Hotel,1,112,2016,October,41,10,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,6.0,179.0,0,Transient,73.79,0,2,Canceled,2019-07-04 -City Hotel,0,237,2017,May,27,24,2,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,69.66,0,0,Check-Out,2020-03-03 -City Hotel,1,37,2016,December,53,3,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,8.0,179.0,0,Transient,104.08,0,3,Canceled,2019-09-03 -City Hotel,1,279,2015,July,28,24,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.65,0,0,Canceled,2017-12-03 -Resort Hotel,0,2,2016,December,53,31,1,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,59.97,0,0,Check-Out,2019-10-04 -City Hotel,1,30,2016,August,36,9,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,B,A,0,Non Refund,28.0,179.0,0,Transient,150.14,0,0,Canceled,2017-11-02 -Resort Hotel,0,195,2017,July,24,9,1,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,253.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,November,49,6,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,60.46,0,0,Check-Out,2019-08-04 -Resort Hotel,1,253,2016,July,25,15,2,7,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,280.0,179.0,0,Contract,116.59,0,0,Canceled,2019-10-04 -City Hotel,0,14,2016,July,53,6,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,212.47,0,0,Check-Out,2019-01-03 -City Hotel,0,105,2017,March,11,30,0,1,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,79.2,0,2,Check-Out,2020-06-02 -City Hotel,1,98,2015,July,33,2,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,3.0,179.0,0,Transient-Party,54.95,0,1,Canceled,2018-07-03 -City Hotel,1,238,2017,June,28,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,119.04,0,0,Canceled,2019-04-03 -City Hotel,0,44,2016,June,26,9,0,3,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,122.98,0,1,Check-Out,2019-03-04 -City Hotel,0,20,2017,July,33,21,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,144.21,0,1,Check-Out,2020-06-02 -City Hotel,1,86,2016,April,9,21,2,5,1,0.0,0,HB,PRT,Aviation,Corporate,0,0,0,E,E,1,No Deposit,13.0,178.0,0,Transient-Party,80.31,0,0,Canceled,2019-03-04 -Resort Hotel,0,125,2015,September,36,14,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.28,0,0,Check-Out,2017-12-03 -City Hotel,1,11,2016,September,35,18,0,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,208.93,0,2,Canceled,2019-09-03 -Resort Hotel,0,62,2015,October,44,30,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.19,0,0,Check-Out,2018-06-02 -City Hotel,1,0,2015,August,31,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.12,0,2,Canceled,2017-10-03 -City Hotel,0,60,2016,March,16,31,0,1,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,20.0,179.0,0,Transient-Party,59.66,0,0,Canceled,2018-11-02 -Resort Hotel,0,11,2016,March,16,31,1,3,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,97.48,0,0,Check-Out,2019-01-03 -City Hotel,1,47,2015,December,50,28,1,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.82,0,0,Canceled,2018-07-03 -Resort Hotel,0,145,2016,August,36,22,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,169.85,0,1,Check-Out,2020-06-02 -City Hotel,1,258,2015,August,36,24,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,63.57,0,0,Canceled,2017-12-03 -City Hotel,0,0,2017,August,35,4,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,179.2,0,1,Check-Out,2020-07-03 -City Hotel,0,2,2017,February,10,14,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.88,0,1,Check-Out,2019-10-04 -City Hotel,1,104,2016,June,28,2,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,134.74,0,2,Canceled,2020-01-04 -City Hotel,1,43,2016,October,18,30,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,63.65,0,1,Canceled,2019-02-01 -City Hotel,1,50,2017,June,26,20,0,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,102.3,0,1,Canceled,2020-03-03 -City Hotel,0,14,2017,June,30,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,123.03,0,0,Check-Out,2020-07-03 -City Hotel,0,72,2015,September,46,6,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient-Party,130.75,0,0,Check-Out,2018-08-03 -City Hotel,1,19,2015,October,43,6,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,90.0,238.0,0,Transient-Party,69.32,0,0,Canceled,2018-09-02 -Resort Hotel,1,45,2015,July,34,18,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,94.56,0,0,Canceled,2018-07-03 -City Hotel,1,171,2015,October,46,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,109.29,0,0,Canceled,2018-08-03 -City Hotel,0,110,2016,April,17,9,1,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,132.87,0,0,Check-Out,2019-03-04 -Resort Hotel,1,156,2016,June,16,9,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,106.48,0,0,Canceled,2019-02-01 -Resort Hotel,0,151,2017,March,10,24,1,6,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,64.54,0,0,Check-Out,2020-02-01 -Resort Hotel,0,51,2017,February,9,24,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,Non Refund,14.0,331.0,0,Transient,36.59,0,2,Check-Out,2020-04-02 -City Hotel,1,0,2016,August,35,15,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,0,1,0,P,P,0,No Deposit,15.0,263.0,0,Transient,2.57,0,0,Canceled,2019-10-04 -City Hotel,0,10,2017,January,20,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,67.03,0,0,Check-Out,2019-11-03 -Resort Hotel,0,60,2015,October,45,30,0,3,1,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,319.0,242.0,0,Transient-Party,31.12,0,0,Check-Out,2018-09-02 -Resort Hotel,0,9,2017,December,23,23,2,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,44.0,179.0,0,Transient-Party,74.52,0,0,Check-Out,2019-12-04 -Resort Hotel,0,241,2016,August,35,16,2,7,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,142.14,0,2,Check-Out,2019-04-03 -City Hotel,0,44,2016,October,44,9,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-02-01 -City Hotel,1,417,2016,June,26,25,0,3,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,62.7,0,0,Canceled,2018-06-02 -City Hotel,1,15,2017,February,9,2,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,77.9,0,0,Canceled,2020-03-03 -City Hotel,0,43,2017,February,7,14,0,2,1,0.0,0,HB,GBR,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,91.0,0,Transient,26.48,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,January,5,2,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,73.6,0,1,Check-Out,2018-11-02 -City Hotel,1,155,2015,October,44,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.07,0,0,Canceled,2018-07-03 -City Hotel,0,91,2017,June,25,2,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,E,E,0,No Deposit,11.0,179.0,0,Group,80.53,0,2,Check-Out,2020-03-03 -Resort Hotel,0,29,2016,October,43,21,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,83.77,1,0,Check-Out,2019-07-04 -Resort Hotel,1,20,2016,August,37,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,243.0,179.0,0,Transient,42.71,0,0,Canceled,2019-06-03 -City Hotel,1,382,2015,September,44,6,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,10.0,45.0,0,Transient,59.57,0,0,Canceled,2017-12-03 -City Hotel,0,73,2015,July,33,10,0,1,1,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,106.02,0,2,Check-Out,2018-06-02 -City Hotel,0,40,2016,September,16,14,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,74.0,179.0,41,Transient,102.8,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2016,May,50,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,81.0,0,Transient,93.54,0,0,Check-Out,2019-04-03 -Resort Hotel,0,2,2015,July,34,17,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,16.0,179.0,0,Transient,124.86,0,0,Check-Out,2018-06-02 -City Hotel,0,213,2017,August,36,5,0,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-06-02 -City Hotel,1,51,2017,May,23,28,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,Refundable,11.0,179.0,0,Transient,128.36,0,0,Canceled,2019-02-01 -City Hotel,0,263,2016,July,26,15,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,91.18,0,1,Canceled,2020-04-02 -City Hotel,1,168,2016,September,33,14,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,93.12,0,0,Canceled,2019-02-01 -City Hotel,1,239,2016,October,43,31,2,4,3,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.87,0,0,Canceled,2019-07-04 -City Hotel,1,89,2017,August,39,6,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.67,0,0,Canceled,2019-06-03 -City Hotel,0,1,2017,March,22,31,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,65.46,1,0,Check-Out,2020-03-03 -City Hotel,1,8,2016,February,11,27,0,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,76.4,0,0,Canceled,2018-09-02 -City Hotel,1,444,2017,March,17,25,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,62.22,0,0,Canceled,2020-06-02 -Resort Hotel,1,13,2017,April,11,19,3,4,3,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,2019-01-03 -City Hotel,1,432,2016,September,37,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.61,0,0,Canceled,2018-12-03 -City Hotel,0,3,2015,October,46,31,0,1,2,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,249.0,0,Transient-Party,60.23,0,2,Check-Out,2018-09-02 -City Hotel,1,265,2017,June,27,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,6.0,179.0,0,Transient,113.91,0,0,Canceled,2020-02-01 -Resort Hotel,0,14,2016,June,26,26,0,3,3,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,175.45,0,0,Check-Out,2019-03-04 -Resort Hotel,0,50,2016,August,32,9,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,247.09,0,0,Check-Out,2019-04-03 -City Hotel,0,51,2016,November,51,7,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,63.11,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2015,July,32,20,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,1,A,A,0,No Deposit,8.0,179.0,0,Group,81.47,0,0,Check-Out,2018-06-02 -Resort Hotel,0,88,2017,July,30,12,0,2,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-07-03 -City Hotel,0,9,2015,August,41,13,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,36.0,331.0,0,Transient,107.09,0,0,Check-Out,2019-06-03 -City Hotel,0,90,2016,September,44,5,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.47,0,1,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,November,51,21,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,76.83,0,0,Check-Out,2018-10-03 -City Hotel,0,194,2016,May,23,27,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient-Party,45.82,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2016,February,9,2,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,73.22,0,1,Check-Out,2019-02-01 -Resort Hotel,1,104,2016,February,9,10,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,62.42,0,0,Canceled,2019-03-04 -City Hotel,1,0,2017,March,22,31,0,1,1,0.0,0,SC,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,114.65,0,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2016,June,9,5,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,200.19,0,0,Check-Out,2020-02-01 -City Hotel,1,267,2016,June,29,15,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,111.27,0,0,Canceled,2019-04-03 -City Hotel,0,206,2016,September,37,27,2,10,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,86.0,179.0,0,Transient,119.09,0,3,Check-Out,2019-05-04 -Resort Hotel,0,32,2015,August,38,25,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient-Party,151.75,0,2,Check-Out,2018-08-03 -City Hotel,0,160,2017,August,37,24,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,180.4,0,1,Check-Out,2020-04-02 -City Hotel,1,90,2017,June,26,16,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,163.89,0,0,Canceled,2020-01-04 -Resort Hotel,1,422,2017,December,11,27,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,41,Transient,62.3,0,0,Canceled,2019-11-03 -Resort Hotel,0,160,2016,June,25,18,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,172.0,179.0,0,Transient,64.46,0,0,Check-Out,2019-05-04 -Resort Hotel,0,11,2016,April,17,22,0,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient,97.11,0,0,Check-Out,2019-03-04 -City Hotel,1,99,2016,December,50,24,2,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,152.43,0,1,Canceled,2019-07-04 -Resort Hotel,0,13,2017,April,16,28,0,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,207.56,1,1,Check-Out,2020-04-02 -Resort Hotel,1,263,2017,July,25,30,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,2019-05-04 -City Hotel,0,20,2017,June,29,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,A,0,No Deposit,13.0,59.0,0,Transient,143.37,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2017,March,20,16,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -Resort Hotel,0,239,2015,December,43,29,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,31.15,0,0,Check-Out,2018-08-03 -Resort Hotel,0,61,2016,February,28,2,1,5,2,0.0,0,FB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,101.84,0,0,Check-Out,2018-11-02 -City Hotel,0,23,2016,December,50,6,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,42.69,0,0,Check-Out,2019-10-04 -Resort Hotel,0,53,2015,September,42,20,0,1,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,No Deposit,99.0,179.0,0,Transient-Party,34.8,0,0,Check-Out,2018-09-02 -City Hotel,1,20,2017,August,37,21,2,1,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Canceled,2019-06-03 -Resort Hotel,0,164,2015,July,32,28,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,63.18,0,0,Check-Out,2018-06-02 -City Hotel,0,152,2016,August,39,28,0,3,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,170.59,0,1,Check-Out,2019-06-03 -City Hotel,0,160,2016,September,42,13,2,5,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,E,1,No Deposit,75.0,179.0,75,Transient-Party,121.14,0,0,Check-Out,2019-08-04 -Resort Hotel,0,108,2016,June,26,10,4,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,121.16,0,0,Check-Out,2019-05-04 -City Hotel,0,16,2016,June,21,2,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.55,0,1,Check-Out,2019-06-03 -City Hotel,0,20,2017,May,22,24,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,205.4,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2016,August,33,15,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,66.0,0,0,Check-Out,2018-09-02 -Resort Hotel,1,271,2016,December,49,1,1,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,318.0,179.0,0,Transient,65.65,0,0,Canceled,2019-06-03 -City Hotel,0,13,2017,April,17,6,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,94.25,0,0,Check-Out,2020-06-02 -Resort Hotel,0,15,2017,August,37,28,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient-Party,252.0,1,1,Check-Out,2020-07-03 -City Hotel,0,92,2016,July,27,19,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,94.64,0,3,Check-Out,2019-04-03 -Resort Hotel,0,50,2015,December,51,9,0,4,2,0.0,0,FB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,62.25,0,0,Check-Out,2018-09-02 -City Hotel,1,12,2016,October,28,21,0,1,2,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,134.21,0,0,Canceled,2019-05-04 -Resort Hotel,0,5,2017,March,17,10,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,223.0,75,Transient-Party,123.89,1,0,Check-Out,2020-01-04 -Resort Hotel,1,85,2016,October,36,2,1,4,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,59.9,0,0,Canceled,2018-06-02 -Resort Hotel,0,15,2015,July,42,20,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,3,No Deposit,244.0,179.0,0,Transient,115.23,1,0,Check-Out,2018-05-03 -City Hotel,0,1,2016,October,40,20,0,1,1,0.0,0,SC,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,95.34,0,0,Check-Out,2019-09-03 -City Hotel,1,38,2016,December,35,14,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,117.73,0,1,Canceled,2019-07-04 -Resort Hotel,0,2,2016,May,29,31,0,1,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,303.0,179.0,0,Transient,61.12,0,0,Check-Out,2019-02-01 -City Hotel,0,33,2017,January,10,7,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,74.0,0,Transient,90.43,0,1,Check-Out,2019-10-04 -Resort Hotel,0,96,2015,July,35,8,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,45.0,179.0,0,Contract,163.94,0,0,Check-Out,2018-07-03 -City Hotel,1,271,2015,August,37,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.87,0,0,Canceled,2017-10-03 -City Hotel,0,101,2017,May,21,16,2,0,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,F,B,0,No Deposit,9.0,179.0,0,Transient,146.96,0,0,Check-Out,2020-04-02 -City Hotel,1,50,2017,March,22,18,2,1,1,0.0,0,HB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,135.81,0,3,Canceled,2020-04-02 -Resort Hotel,0,20,2017,April,17,10,1,0,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,212.94,0,0,Check-Out,2020-02-01 -City Hotel,1,57,2015,September,47,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,68.06,0,0,Canceled,2018-08-03 -Resort Hotel,0,3,2017,February,8,12,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,45.0,331.0,0,Transient-Party,53.11,0,0,Check-Out,2019-10-04 -City Hotel,0,13,2017,June,25,19,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,B,0,No Deposit,13.0,179.0,0,Transient,128.97,0,3,Check-Out,2020-02-01 -City Hotel,0,41,2017,March,9,27,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,K,0,No Deposit,10.0,179.0,0,Transient,61.59,0,1,Check-Out,2020-02-01 -City Hotel,0,106,2017,April,17,10,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,H,1,No Deposit,11.0,179.0,0,Transient,134.57,0,1,Check-Out,2020-03-03 -Resort Hotel,0,15,2016,April,23,28,1,3,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,99.55,0,0,Check-Out,2019-03-04 -City Hotel,0,9,2016,January,3,12,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,70.3,0,2,Check-Out,2018-12-03 -City Hotel,1,61,2016,June,27,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,125.91,0,0,Canceled,2019-03-04 -Resort Hotel,0,162,2017,March,8,31,0,2,2,2.0,0,FB,BEL,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,242.18,1,3,Check-Out,2020-02-01 -City Hotel,1,332,2015,October,44,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,10.0,179.0,0,Transient-Party,62.0,0,0,Canceled,2018-08-03 -City Hotel,0,193,2016,August,34,18,2,5,2,2.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,234.2,0,2,Check-Out,2019-06-03 -City Hotel,1,161,2017,June,20,17,1,2,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,184.0,179.0,0,Transient-Party,214.1,0,0,Canceled,2019-02-01 -Resort Hotel,0,5,2016,August,37,24,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,H,0,No Deposit,248.0,179.0,0,Transient,157.17,1,2,Check-Out,2019-05-04 -City Hotel,1,146,2016,June,27,20,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,80.22,0,0,Canceled,2019-02-01 -Resort Hotel,1,105,2016,July,52,4,2,7,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,98.02,0,0,Canceled,2019-05-04 -Resort Hotel,0,1,2015,November,53,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,2,No Deposit,240.0,179.0,0,Transient,38.14,0,0,Check-Out,2018-12-03 -Resort Hotel,0,51,2017,January,7,24,2,7,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,3,No Deposit,344.0,179.0,0,Transient,41.24,0,0,Check-Out,2019-10-04 -City Hotel,0,63,2016,June,25,5,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,75.79,0,1,Check-Out,2019-02-01 -City Hotel,0,53,2016,October,50,12,2,1,1,0.0,0,BB,CHN,Online TA,GDS,0,0,0,A,A,2,No Deposit,201.0,179.0,0,Transient,73.3,0,0,Check-Out,2019-08-04 -Resort Hotel,1,100,2016,June,27,29,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,246.0,179.0,0,Transient,127.5,0,0,Canceled,2019-03-04 -City Hotel,0,50,2016,October,46,9,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,176.39,0,2,Check-Out,2019-11-03 -Resort Hotel,0,152,2016,December,50,30,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,35.0,179.0,0,Transient-Party,83.4,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2015,July,35,12,0,2,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,128.4,0,1,Check-Out,2018-05-03 -Resort Hotel,0,109,2017,May,25,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,100.77,0,0,Check-Out,2020-02-01 -Resort Hotel,0,139,2015,August,35,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,3,No Deposit,241.0,179.0,0,Transient-Party,159.12,1,0,Check-Out,2018-05-03 -Resort Hotel,0,4,2015,December,49,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,124.18,0,0,Check-Out,2018-06-02 -City Hotel,1,15,2017,June,25,18,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.8,0,1,Canceled,2019-03-04 -City Hotel,0,2,2015,August,31,15,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,64.05,0,0,Check-Out,2018-06-02 -City Hotel,0,1,2016,February,11,21,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,E,0,No Deposit,186.0,179.0,0,Transient-Party,61.95,0,1,Check-Out,2018-11-02 -City Hotel,0,14,2016,November,50,2,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,78.62,0,0,Check-Out,2019-06-03 -City Hotel,0,5,2016,January,10,19,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,67.5,0,0,Check-Out,2019-02-01 -City Hotel,0,58,2016,January,4,28,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,68.08,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2017,April,17,26,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,I,1,No Deposit,15.0,45.0,0,Transient,0.0,1,0,Check-Out,2020-02-01 -Resort Hotel,1,259,2016,July,31,20,2,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.94,0,3,Canceled,2018-04-02 -City Hotel,1,12,2016,November,45,24,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,79.49,0,1,Canceled,2019-07-04 -Resort Hotel,0,34,2017,March,22,17,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,81.22,0,1,Check-Out,2020-03-03 -Resort Hotel,1,19,2016,March,9,31,0,2,3,1.0,0,FB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,55.41,0,0,Canceled,2019-03-04 -City Hotel,1,242,2015,September,42,16,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,9.0,179.0,0,Contract,124.27,0,1,Canceled,2017-11-02 -City Hotel,0,38,2017,June,21,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,81.35,0,1,Check-Out,2020-04-02 -Resort Hotel,0,1,2015,December,51,16,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,76.0,179.0,0,Transient-Party,63.38,0,0,Check-Out,2018-12-03 -Resort Hotel,1,0,2016,July,30,17,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,59.41,0,0,Check-Out,2019-04-03 -Resort Hotel,0,6,2016,December,50,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,243.0,0,Transient,60.3,1,0,Check-Out,2019-11-03 -City Hotel,0,159,2016,September,43,21,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,59.59,0,0,Check-Out,2019-07-04 -Resort Hotel,0,15,2015,December,50,24,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,46.55,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2016,February,27,10,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.31,0,1,Check-Out,2019-02-01 -Resort Hotel,0,92,2016,March,17,31,1,5,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Contract,62.17,0,0,Check-Out,2018-12-03 -City Hotel,0,93,2016,July,32,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.44,0,0,Check-Out,2018-05-03 -Resort Hotel,0,248,2017,June,19,5,2,10,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,92.97,0,2,Check-Out,2019-05-04 -Resort Hotel,0,37,2015,December,50,16,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,35.36,0,0,Check-Out,2018-06-02 -Resort Hotel,0,16,2015,October,42,20,2,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,127.44,0,0,Check-Out,2018-08-03 -Resort Hotel,0,52,2017,April,17,2,1,4,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,245.64,1,1,Check-Out,2020-02-01 -City Hotel,1,386,2017,July,27,15,2,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,92.71,0,0,Canceled,2020-03-03 -City Hotel,0,14,2016,April,25,26,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.03,0,0,Check-Out,2019-02-01 -City Hotel,0,33,2017,January,12,2,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,92.89,0,1,Check-Out,2019-10-04 -City Hotel,0,4,2016,November,18,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,57.0,0,Transient,77.86,0,0,Check-Out,2019-06-03 -City Hotel,1,155,2017,May,10,25,0,3,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,174.12,0,0,Canceled,2020-01-04 -City Hotel,0,2,2015,September,42,9,2,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,106.0,179.0,0,Transient-Party,78.05,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2015,October,44,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,84.22,0,2,Check-Out,2018-08-03 -Resort Hotel,0,142,2016,August,37,29,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,242.0,179.0,0,Transient,132.18,1,1,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,March,16,10,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,81.52,0,0,Check-Out,2020-02-01 -City Hotel,0,38,2016,April,16,30,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,132.35,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2015,July,27,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,104.82,0,0,Check-Out,2018-06-02 -Resort Hotel,0,193,2016,May,22,10,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,14.0,222.0,0,Transient-Party,39.83,0,0,Check-Out,2019-06-03 -City Hotel,0,18,2015,September,42,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,101.59,0,0,Check-Out,2018-08-03 -Resort Hotel,1,97,2016,March,17,14,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,75,Transient-Party,61.47,0,0,Canceled,2019-02-01 -City Hotel,0,201,2015,October,42,16,2,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,C,0,No Deposit,18.0,179.0,0,Group,60.79,0,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2016,March,17,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,72.36,0,1,Check-Out,2019-02-01 -City Hotel,0,178,2016,June,26,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,90.71,0,0,Check-Out,2019-01-03 -City Hotel,0,193,2016,September,43,5,0,1,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,115.91,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,December,10,5,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,32.25,0,0,Check-Out,2019-01-03 -Resort Hotel,1,9,2016,August,38,21,1,1,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,146.58,0,0,Canceled,2019-02-01 -City Hotel,0,251,2016,July,32,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,119.84,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,February,11,16,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,F,F,0,No Deposit,13.0,45.0,0,Transient,0.0,1,0,Check-Out,2018-11-02 -City Hotel,1,165,2017,March,17,21,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.66,0,0,Canceled,2019-12-04 -Resort Hotel,1,0,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,F,0,No Deposit,172.0,179.0,0,Transient,184.17,0,0,Canceled,2020-03-03 -City Hotel,1,98,2016,October,43,16,2,3,1,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,1,A,A,0,No Deposit,10.0,243.0,0,Transient-Party,67.3,0,2,Canceled,2019-09-03 -City Hotel,0,52,2016,October,43,10,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,101.5,0,0,Check-Out,2018-12-03 -City Hotel,0,365,2017,April,22,22,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,75.0,179.0,0,Transient-Party,0.11,0,2,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,August,35,27,1,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,195.58,0,0,Check-Out,2018-06-02 -City Hotel,0,98,2015,September,42,13,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,1,No Deposit,1.0,179.0,0,Transient-Party,74.02,0,0,Check-Out,2018-08-03 -City Hotel,0,47,2017,July,30,16,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.66,0,3,Check-Out,2020-06-02 -Resort Hotel,1,97,2016,April,15,29,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,92.13,0,0,Canceled,2019-04-03 -City Hotel,1,35,2017,March,10,12,2,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,2.05,0,0,Canceled,2020-01-04 -City Hotel,0,3,2016,September,36,28,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,190.0,71.0,0,Transient,139.34,0,0,Check-Out,2019-08-04 -City Hotel,1,327,2015,August,37,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.99,0,0,Canceled,2017-12-03 -City Hotel,1,127,2016,October,41,17,2,2,2,0.0,0,BB,PRT,Complementary,GDS,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,101.03,0,0,Canceled,2019-10-04 -Resort Hotel,0,106,2016,March,53,9,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,370.0,179.0,0,Transient,103.29,0,0,Check-Out,2018-12-03 -Resort Hotel,0,3,2015,September,36,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,36.33,0,0,Check-Out,2018-08-03 -City Hotel,0,208,2016,November,12,24,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,45.0,0,Contract,83.52,0,1,Check-Out,2019-03-04 -City Hotel,1,286,2016,June,28,20,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,143.07,0,1,Canceled,2020-02-01 -City Hotel,0,98,2017,August,34,11,2,5,2,0.0,0,SC,NLD,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,124.53,0,2,Check-Out,2020-07-03 -Resort Hotel,0,105,2017,March,15,31,0,3,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,231.0,0,Transient-Party,26.19,0,0,Check-Out,2020-04-02 -City Hotel,0,252,2016,May,23,27,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,112.57,0,0,Check-Out,2019-07-04 -City Hotel,0,77,2015,October,42,9,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,80.65,0,1,Check-Out,2018-09-02 -City Hotel,1,14,2016,August,39,19,2,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,201.17,0,2,No-Show,2019-06-03 -City Hotel,0,40,2017,April,16,5,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.51,0,2,Check-Out,2020-02-01 -Resort Hotel,1,23,2016,August,37,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,64.74,0,0,No-Show,2019-03-04 -City Hotel,0,279,2017,July,32,16,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.35,0,0,Check-Out,2020-07-03 -City Hotel,0,261,2015,August,34,24,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,74.89,0,0,Check-Out,2018-08-03 -Resort Hotel,0,10,2015,August,31,21,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,93.39,0,1,Check-Out,2018-08-03 -City Hotel,0,33,2016,July,36,2,2,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,103.73,0,0,Check-Out,2019-05-04 -City Hotel,1,20,2017,February,8,31,2,1,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,67.28,0,0,Canceled,2018-12-03 -City Hotel,0,86,2016,January,42,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.79,0,1,Check-Out,2018-12-03 -City Hotel,0,41,2016,December,53,13,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.05,0,1,Check-Out,2019-03-04 -City Hotel,0,15,2017,March,18,10,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,179.22,0,2,Check-Out,2020-03-03 -Resort Hotel,0,22,2016,October,44,21,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,A,2,No Deposit,15.0,223.0,0,Transient,42.89,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2017,June,26,10,0,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,148,2016,December,50,19,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,33.0,179.0,40,Transient-Party,121.97,0,0,Check-Out,2019-03-04 -Resort Hotel,0,91,2017,June,17,21,0,5,3,0.0,0,HB,GBR,Corporate,Corporate,0,0,0,E,E,2,No Deposit,335.0,331.0,75,Transient-Party,107.77,1,0,Check-Out,2020-05-03 -Resort Hotel,1,375,2016,October,43,18,0,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,73.16,0,0,Canceled,2019-09-03 -Resort Hotel,1,58,2017,March,11,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,42.0,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2017,May,23,28,2,0,2,0.0,0,HB,PRT,Complementary,Corporate,1,0,0,E,I,1,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -City Hotel,1,331,2017,June,26,27,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,0,Transient,123.49,0,0,Canceled,2019-05-04 -Resort Hotel,1,374,2016,May,22,27,4,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,77.63,0,0,Canceled,2019-04-03 -City Hotel,0,98,2017,June,25,13,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,8.0,179.0,0,Transient,108.57,0,0,Check-Out,2020-03-03 -City Hotel,0,44,2016,October,42,2,2,5,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,120.81,0,3,Check-Out,2019-11-03 -Resort Hotel,0,196,2017,April,17,30,2,5,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,177.0,179.0,0,Transient,116.22,1,1,Check-Out,2020-03-03 -City Hotel,1,235,2016,June,24,8,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.55,0,0,Canceled,2019-04-03 -City Hotel,1,197,2017,August,39,2,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,230.49,0,0,Check-Out,2020-03-03 -City Hotel,1,420,2017,June,27,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,160.54,0,0,Canceled,2019-10-04 -Resort Hotel,0,162,2015,November,44,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,74.29,0,0,Check-Out,2018-08-03 -City Hotel,0,143,2017,June,23,10,2,5,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,21.0,179.0,0,Transient,87.46,0,1,Check-Out,2020-04-02 -City Hotel,1,96,2016,October,50,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,62,Transient,108.29,0,0,Canceled,2019-01-03 -City Hotel,0,2,2016,October,42,5,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,65.87,0,2,Check-Out,2018-12-03 -Resort Hotel,0,255,2016,March,19,10,0,2,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,13.0,256.0,0,Transient-Party,27.75,0,0,Check-Out,2019-03-04 -Resort Hotel,0,175,2017,August,32,31,2,5,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,238.68,0,3,Check-Out,2020-07-03 -Resort Hotel,1,150,2017,March,16,20,2,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,E,E,1,No Deposit,352.0,179.0,0,Transient-Party,88.97,0,0,Canceled,2019-12-04 -Resort Hotel,0,239,2016,April,17,22,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,D,A,0,No Deposit,322.0,179.0,0,Transient-Party,87.35,0,0,No-Show,2019-02-01 -City Hotel,0,15,2016,July,27,18,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,116.8,0,2,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,July,42,5,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,62.71,0,0,Check-Out,2018-05-03 -Resort Hotel,0,95,2016,April,15,14,2,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.75,0,1,Check-Out,2019-02-01 -City Hotel,1,339,2017,July,27,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.02,0,0,Canceled,2017-11-02 -Resort Hotel,0,13,2016,October,45,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,3,No Deposit,14.0,331.0,0,Transient,185.96,1,0,Check-Out,2019-07-04 -Resort Hotel,0,110,2016,May,22,23,2,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,88.0,179.0,0,Transient,68.6,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,July,50,6,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,192.27,1,0,Check-Out,2019-08-04 -Resort Hotel,1,6,2017,June,27,4,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,2019-10-04 -City Hotel,0,30,2016,June,27,5,1,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,189.58,0,2,Check-Out,2019-05-04 -Resort Hotel,0,161,2017,May,15,31,4,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,2,Refundable,10.0,179.0,75,Transient,75.91,0,0,Check-Out,2019-02-01 -Resort Hotel,0,11,2016,April,20,29,1,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,F,0,No Deposit,247.0,179.0,0,Transient,187.24,1,0,Check-Out,2019-02-01 -City Hotel,0,97,2015,August,39,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,61.1,0,1,Check-Out,2018-07-03 -City Hotel,1,395,2016,October,45,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,62,Transient,64.89,0,0,Canceled,2018-09-02 -Resort Hotel,0,43,2015,July,33,27,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,104.21,0,2,Check-Out,2018-06-02 -Resort Hotel,0,88,2016,December,53,10,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,E,3,No Deposit,36.0,179.0,75,Transient-Party,67.8,0,0,Check-Out,2019-11-03 -City Hotel,1,109,2015,November,34,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,59.61,0,0,Canceled,2018-06-02 -City Hotel,0,1,2016,December,4,20,1,4,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,128.34,0,1,Check-Out,2019-11-03 -City Hotel,1,37,2016,June,38,21,2,5,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,155.32,0,0,Canceled,2019-04-03 -City Hotel,1,15,2017,May,21,22,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,7.0,179.0,0,Transient,160.52,0,0,Canceled,2020-02-01 -Resort Hotel,0,3,2015,November,41,8,1,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,94.89,0,0,Check-Out,2018-08-03 -Resort Hotel,1,106,2017,July,31,3,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Canceled,2020-06-02 -Resort Hotel,0,19,2015,September,37,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,60.13,0,1,Check-Out,2018-09-02 -City Hotel,0,20,2016,August,39,24,1,2,2,1.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,190.12,0,1,Check-Out,2019-07-04 -City Hotel,0,30,2015,September,36,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,109.36,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2015,December,51,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,E,0,No Deposit,15.0,238.0,0,Transient,64.62,0,0,Check-Out,2018-12-03 -City Hotel,1,166,2017,June,22,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,112.99,0,0,Canceled,2018-09-02 -City Hotel,0,15,2016,April,14,30,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,41.46,0,0,Check-Out,2019-02-01 -Resort Hotel,1,105,2016,May,26,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,61.53,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,February,10,24,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,70.32,1,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,June,34,9,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient,94.57,1,1,Check-Out,2019-09-03 -City Hotel,0,0,2017,June,24,6,0,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.06,0,1,Check-Out,2020-03-03 -City Hotel,1,254,2015,September,36,15,2,5,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Canceled,2017-10-03 -Resort Hotel,0,301,2015,October,15,27,2,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Contract,45.52,0,0,Check-Out,2018-12-03 -Resort Hotel,0,242,2016,May,27,31,4,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,0,Refundable,40.0,224.0,0,Transient-Party,68.91,1,0,Check-Out,2019-05-04 -City Hotel,0,88,2016,June,31,21,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,B,2,No Deposit,10.0,179.0,0,Transient,123.21,0,1,Check-Out,2019-03-04 -City Hotel,0,18,2016,November,50,2,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,60.6,0,0,Check-Out,2019-09-03 -City Hotel,1,82,2016,August,38,16,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,163.2,0,1,Canceled,2019-05-04 -Resort Hotel,0,39,2016,June,27,30,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,119.2,0,1,Check-Out,2020-03-03 -Resort Hotel,0,15,2017,February,8,30,1,0,3,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,43.97,0,3,Check-Out,2019-02-01 -City Hotel,0,63,2017,June,26,20,0,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,21.0,331.0,0,Transient-Party,142.03,0,1,Check-Out,2020-03-03 -City Hotel,0,83,2016,April,18,25,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.23,0,1,Check-Out,2019-03-04 -Resort Hotel,0,64,2017,May,22,23,0,5,2,0.0,0,HB,AUT,Groups,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,0.0,1,2,Check-Out,2020-01-04 -City Hotel,0,10,2016,October,42,10,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.18,0,1,Check-Out,2019-08-04 -City Hotel,1,17,2017,August,31,21,0,4,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,105.44,0,0,Canceled,2020-01-04 -City Hotel,1,41,2015,July,37,22,1,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,83.32,0,0,Check-Out,2018-06-02 -City Hotel,0,83,2017,May,10,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,69.27,0,1,Check-Out,2020-03-03 -City Hotel,1,49,2017,August,36,24,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,187.35,0,0,Canceled,2020-06-02 -City Hotel,1,2,2016,February,11,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,58.76,0,2,Canceled,2019-12-04 -City Hotel,1,40,2016,October,41,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.96,0,0,Canceled,2018-12-03 -City Hotel,0,9,2017,June,27,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,E,2,No Deposit,13.0,60.0,0,Transient,157.01,1,0,Check-Out,2020-04-02 -City Hotel,1,10,2016,June,27,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.66,0,0,Canceled,2019-02-01 -City Hotel,1,13,2017,August,35,20,2,4,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient-Party,153.19,0,0,Canceled,2020-06-02 -City Hotel,1,347,2015,October,44,14,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.77,0,0,Canceled,2018-08-03 -City Hotel,0,93,2017,May,20,12,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.13,0,1,Check-Out,2020-03-03 -Resort Hotel,0,22,2015,November,49,4,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,61.75,0,0,Check-Out,2018-06-02 -City Hotel,0,140,2016,December,51,21,0,1,1,0.0,0,BB,,Online TA,Direct,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient,102.72,0,0,Check-Out,2018-11-02 -City Hotel,1,51,2017,August,37,28,0,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,138.07,0,1,Canceled,2019-06-03 -Resort Hotel,1,152,2016,September,43,20,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,153.68,0,3,Canceled,2019-02-01 -City Hotel,0,94,2015,June,25,15,2,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,59,Transient-Party,76.51,0,0,Check-Out,2018-12-03 -City Hotel,0,137,2017,July,31,25,2,4,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,239.25,0,0,Check-Out,2020-06-02 -City Hotel,1,25,2017,May,20,10,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.78,0,0,Canceled,2020-03-03 -Resort Hotel,0,41,2016,January,3,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.23,0,0,Check-Out,2018-11-02 -Resort Hotel,0,43,2016,June,29,28,2,10,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,60.08,0,0,Check-Out,2019-02-01 -City Hotel,0,11,2017,February,10,28,0,2,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,78.63,0,2,Check-Out,2019-11-03 -City Hotel,1,0,2015,July,33,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,D,D,0,Non Refund,8.0,179.0,0,Group,60.88,0,0,Canceled,2018-06-02 -Resort Hotel,0,115,2017,March,21,23,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,59.07,1,0,Check-Out,2018-12-03 -Resort Hotel,1,64,2016,April,16,22,2,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,242.0,179.0,0,Transient,83.41,0,2,Canceled,2018-11-02 -City Hotel,1,4,2017,January,4,6,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient-Party,79.8,0,0,No-Show,2019-11-03 -City Hotel,0,38,2017,April,16,17,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,F,0,No Deposit,17.0,179.0,0,Transient,107.03,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,February,12,20,0,1,2,0.0,0,BB,SWE,Direct,Direct,1,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,188.43,0,0,Check-Out,2020-04-02 -City Hotel,1,39,2017,May,22,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.61,0,0,Canceled,2020-03-03 -City Hotel,0,159,2016,September,42,29,0,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,105.07,0,2,Check-Out,2019-12-04 -City Hotel,0,29,2017,April,19,9,0,4,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,A,0,No Deposit,16.0,179.0,0,Transient-Party,115.36,0,0,Check-Out,2020-03-03 -City Hotel,0,200,2017,July,31,30,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-05-03 -City Hotel,1,56,2016,January,28,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,75.0,179.0,62,Transient,77.29,0,0,Canceled,2018-11-02 -City Hotel,1,57,2016,October,43,19,2,4,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,106.4,0,0,Canceled,2019-08-04 -City Hotel,0,2,2017,January,3,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,2,No Deposit,14.0,73.0,0,Transient,110.1,0,0,Check-Out,2020-05-03 -Resort Hotel,1,162,2017,March,16,31,0,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,221.0,0,Transient-Party,88.48,0,0,Canceled,2020-03-03 -Resort Hotel,1,26,2017,June,25,24,2,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,99.05,0,0,Canceled,2020-03-03 -Resort Hotel,0,48,2017,May,19,4,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,284.0,179.0,0,Transient-Party,101.54,0,0,Check-Out,2020-04-02 -City Hotel,1,32,2017,January,3,25,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,64.68,0,0,Canceled,2019-11-03 -City Hotel,1,2,2017,February,10,28,2,0,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,64.81,0,0,Canceled,2018-11-02 -Resort Hotel,1,35,2015,December,53,2,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,156.64,0,0,Canceled,2018-09-02 -City Hotel,0,10,2017,June,22,25,0,1,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.48,0,3,Check-Out,2019-06-03 -City Hotel,1,30,2016,February,10,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,130.0,179.0,0,Transient,30.6,0,0,Canceled,2018-11-02 -Resort Hotel,1,217,2017,August,34,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,191.41,0,0,Canceled,2020-03-03 -City Hotel,1,7,2016,March,8,31,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.7,0,0,Canceled,2018-11-02 -Resort Hotel,0,143,2017,July,34,31,3,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,G,2,No Deposit,245.0,179.0,0,Transient,88.87,0,3,Check-Out,2020-06-02 -City Hotel,0,5,2017,May,22,9,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient,135.32,0,1,Check-Out,2020-04-02 -City Hotel,0,188,2015,August,32,21,2,1,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,71.62,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,March,12,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,12.0,70.0,0,Transient,27.83,1,0,Check-Out,2018-12-03 -City Hotel,1,39,2016,June,26,6,1,1,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,81.09,0,0,Canceled,2019-05-04 -Resort Hotel,0,141,2016,June,24,6,0,2,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,99.11,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,February,9,12,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,72.36,0,1,Check-Out,2019-03-04 -Resort Hotel,1,18,2015,November,46,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,60.64,0,0,No-Show,2018-09-02 -City Hotel,0,144,2016,November,53,21,1,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.7,0,1,Check-Out,2019-07-04 -Resort Hotel,0,35,2016,March,9,20,0,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,B,1,No Deposit,39.0,179.0,0,Transient-Party,70.88,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2016,August,44,27,1,1,3,1.0,0,BB,POL,Direct,Direct,0,0,0,H,H,1,No Deposit,250.0,179.0,0,Transient,172.22,0,0,Check-Out,2019-08-04 -City Hotel,0,162,2017,July,33,16,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,173.03,0,3,Check-Out,2019-08-04 -City Hotel,0,41,2016,June,22,8,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,115.75,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2016,September,35,15,2,0,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,1,0,0,D,E,0,No Deposit,12.0,179.0,0,Group,195.65,0,0,Check-Out,2019-08-04 -Resort Hotel,0,26,2017,May,22,13,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,325.0,179.0,0,Contract,117.21,0,0,Check-Out,2020-02-01 -City Hotel,1,148,2017,June,31,6,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,187.0,179.0,0,Transient,161.58,0,0,Canceled,2020-04-02 -City Hotel,0,112,2016,February,3,4,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.27,0,1,Check-Out,2019-11-03 -City Hotel,0,188,2017,August,38,29,2,5,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,218.67,1,1,Check-Out,2020-04-02 -Resort Hotel,1,236,2015,July,36,28,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.23,0,0,Canceled,2018-06-02 -City Hotel,0,10,2016,May,22,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.69,0,1,Check-Out,2019-04-03 -Resort Hotel,0,272,2017,July,38,18,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,235.12,1,1,Check-Out,2020-03-03 -City Hotel,0,2,2017,May,23,5,1,0,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,154.39,0,0,Check-Out,2020-05-03 -City Hotel,0,0,2016,December,52,7,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.87,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,July,26,5,4,5,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,322.0,179.0,0,Transient,121.66,0,0,Check-Out,2019-05-04 -Resort Hotel,0,88,2016,March,10,27,2,0,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,A,I,0,No Deposit,191.0,179.0,0,Transient,61.69,0,0,Check-Out,2019-02-01 -City Hotel,0,14,2016,March,18,17,0,2,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient,68.41,0,3,Check-Out,2018-11-02 -Resort Hotel,0,51,2015,October,43,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,127.75,0,2,Check-Out,2018-11-02 -City Hotel,1,145,2015,September,45,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.04,0,0,Canceled,2018-12-03 -Resort Hotel,1,264,2017,March,17,31,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,102.51,0,0,Canceled,2019-10-04 -City Hotel,0,41,2017,March,10,28,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,9.0,179.0,0,Transient,122.33,0,0,Check-Out,2019-10-04 -City Hotel,1,278,2015,July,34,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.23,0,0,Canceled,2018-06-02 -Resort Hotel,0,2,2016,January,5,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,16.0,45.0,0,Transient,63.86,1,0,Check-Out,2018-10-03 -Resort Hotel,0,0,2017,January,4,1,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,11.0,94.0,0,Transient,29.22,0,2,Canceled,2019-11-03 -City Hotel,0,44,2017,April,23,5,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,120.57,0,0,Check-Out,2020-03-03 -Resort Hotel,0,44,2015,December,53,27,0,4,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,3.81,0,0,Check-Out,2018-12-03 -City Hotel,0,229,2016,July,32,6,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.61,0,0,Check-Out,2019-05-04 -City Hotel,0,20,2016,October,45,28,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,62.45,0,0,Check-Out,2018-08-03 -City Hotel,1,28,2016,October,43,17,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,82.0,179.0,0,Transient,26.82,0,0,Canceled,2018-08-03 -City Hotel,0,19,2016,September,38,30,0,1,3,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,B,1,No Deposit,315.0,45.0,0,Transient-Party,76.06,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2016,October,33,13,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,125.57,0,2,Check-Out,2019-08-04 -City Hotel,0,78,2016,September,37,29,1,1,1,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.46,0,1,Check-Out,2018-08-03 -Resort Hotel,1,251,2015,September,37,6,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,237.0,179.0,0,Contract,140.17,0,1,No-Show,2018-12-03 -City Hotel,0,28,2017,August,10,6,2,4,2,0.0,0,BB,,Direct,Corporate,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,68.33,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2016,April,22,5,1,0,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,B,1,No Deposit,15.0,199.0,0,Transient,44.07,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2017,July,16,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,1,No Deposit,378.0,179.0,0,Transient,132.09,1,0,Check-Out,2020-03-03 -City Hotel,1,2,2016,March,10,25,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,B,0,No Deposit,10.0,179.0,19,Transient,65.63,0,0,Canceled,2019-01-03 -City Hotel,0,0,2017,February,12,20,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,L,0,No Deposit,167.0,179.0,0,Transient,82.42,0,1,Check-Out,2020-02-01 -Resort Hotel,0,35,2016,April,43,11,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,34.14,0,0,Check-Out,2019-08-04 -Resort Hotel,1,295,2016,May,41,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,7.0,179.0,0,Transient,113.09,0,0,Canceled,2019-06-03 -City Hotel,0,57,2017,June,19,8,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,132.42,0,1,Check-Out,2020-03-03 -City Hotel,1,98,2016,January,4,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.74,0,1,Canceled,2018-12-03 -City Hotel,0,1,2016,December,10,10,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,61.48,0,0,Check-Out,2018-12-03 -Resort Hotel,0,39,2016,March,17,24,0,1,1,0.0,0,BB,CN,Corporate,Corporate,1,0,0,A,A,0,No Deposit,11.0,84.0,0,Transient-Party,26.72,1,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,January,10,17,0,1,2,0.0,0,Undefined,PRT,Corporate,Corporate,1,0,0,A,L,0,No Deposit,12.0,179.0,0,Transient,64.86,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2017,March,18,27,0,3,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,F,F,1,No Deposit,18.0,179.0,0,Transient,105.86,0,3,Check-Out,2019-12-04 -Resort Hotel,0,46,2016,September,42,27,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,167.3,0,3,Check-Out,2019-08-04 -City Hotel,1,20,2017,May,16,31,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.84,0,0,Canceled,2020-04-02 -Resort Hotel,0,96,2016,August,27,27,0,5,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-06-03 -City Hotel,1,260,2015,July,33,10,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.08,0,0,Canceled,2018-01-03 -City Hotel,1,301,2015,July,32,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.52,0,0,Canceled,2018-05-03 -City Hotel,0,16,2016,May,15,4,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,95.16,0,1,Check-Out,2019-02-01 -Resort Hotel,1,8,2016,July,32,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,41.7,0,1,No-Show,2019-03-04 -City Hotel,1,269,2016,October,45,2,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,2,Non Refund,8.0,179.0,0,Transient,101.61,0,0,Canceled,2019-08-04 -City Hotel,1,46,2017,March,24,6,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Canceled,2020-02-01 -City Hotel,0,16,2017,June,26,2,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,98.11,0,0,Check-Out,2020-06-02 -City Hotel,0,197,2017,May,27,5,0,3,1,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,2,No Deposit,101.0,179.0,0,Transient,86.09,0,0,Check-Out,2019-11-03 -City Hotel,1,24,2016,February,18,18,0,2,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,B,0,No Deposit,7.0,179.0,0,Transient,147.44,0,2,Canceled,2019-10-04 -Resort Hotel,1,1,2016,March,10,16,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,244.0,77.0,0,Transient,149.89,0,0,Check-Out,2019-03-04 -Resort Hotel,0,34,2016,December,49,5,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,242.0,179.0,0,Transient,69.02,0,0,Check-Out,2019-11-03 -Resort Hotel,0,51,2016,June,28,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,62.78,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,January,4,13,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,9.0,179.0,0,Group,0.0,0,0,Check-Out,2019-11-03 -City Hotel,1,2,2016,August,38,18,0,1,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.07,0,0,Canceled,2019-09-03 -City Hotel,1,313,2015,October,37,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.63,0,0,Canceled,2018-01-03 -Resort Hotel,0,299,2017,August,35,21,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,79.26,0,1,Check-Out,2020-07-03 -City Hotel,1,302,2015,July,26,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,69.9,0,0,Canceled,2018-05-03 -City Hotel,1,11,2016,September,45,25,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.17,0,0,No-Show,2018-12-03 -City Hotel,1,162,2016,October,50,13,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,39.0,179.0,64,Transient,94.75,0,0,Canceled,2019-07-04 -City Hotel,0,100,2015,July,34,30,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,118.8,1,0,Check-Out,2018-05-03 -City Hotel,0,21,2017,February,11,27,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,66.11,0,0,Check-Out,2020-04-02 -City Hotel,1,47,2016,November,4,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,6.0,179.0,0,Transient,60.14,0,0,Canceled,2019-01-03 -City Hotel,1,86,2015,September,38,29,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.43,0,1,Canceled,2018-08-03 -City Hotel,1,254,2016,May,21,20,2,3,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,88.67,0,1,Canceled,2019-03-04 -Resort Hotel,0,28,2016,March,16,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,F,1,No Deposit,323.0,179.0,0,Transient,63.91,1,0,Check-Out,2019-02-01 -Resort Hotel,1,303,2016,August,31,18,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,2.0,179.0,0,Transient-Party,65.17,0,0,Canceled,2018-01-03 -City Hotel,0,56,2015,December,52,9,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,62.2,0,0,Check-Out,2018-08-03 -Resort Hotel,0,173,2016,July,26,2,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,75.01,0,1,Check-Out,2019-03-04 -Resort Hotel,0,139,2016,September,43,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient-Party,35.4,0,0,Check-Out,2019-06-03 -City Hotel,1,13,2016,September,29,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,34.72,0,0,Canceled,2018-07-03 -City Hotel,1,435,2015,October,46,30,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.46,0,0,Canceled,2018-08-03 -Resort Hotel,1,135,2016,March,13,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,70.78,0,0,Canceled,2019-04-03 -Resort Hotel,1,92,2016,July,33,26,0,1,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,333.0,179.0,0,Transient,62.96,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,July,38,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,31.78,0,0,Check-Out,2019-07-04 -City Hotel,1,176,2016,June,26,6,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,112.32,0,1,Check-Out,2019-05-04 -Resort Hotel,0,3,2016,December,49,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,173.0,179.0,0,Transient,88.54,0,1,Check-Out,2018-11-02 -City Hotel,0,39,2017,March,9,15,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,3,No Deposit,11.0,179.0,0,Transient-Party,86.46,0,0,Check-Out,2020-02-01 -City Hotel,1,3,2017,February,7,12,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,150.81,0,0,Canceled,2019-11-03 -City Hotel,1,8,2016,January,10,8,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.8,0,0,No-Show,2019-02-01 -Resort Hotel,0,3,2016,February,10,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,133.69,0,0,Check-Out,2018-12-03 -Resort Hotel,0,132,2015,November,50,30,1,3,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,85.93,0,2,Check-Out,2018-07-03 -City Hotel,1,142,2016,June,16,20,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,111.28,0,0,Canceled,2019-02-01 -Resort Hotel,0,3,2015,January,38,24,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,3,No Deposit,253.0,179.0,0,Transient,45.27,0,2,Check-Out,2020-05-03 -Resort Hotel,1,117,2016,March,16,7,1,3,2,0.0,0,BB,SWE,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,42.74,0,0,Canceled,2019-03-04 -Resort Hotel,0,17,2016,June,27,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,87.0,179.0,0,Transient-Party,69.84,0,0,Check-Out,2019-03-04 -Resort Hotel,0,285,2015,September,35,5,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,65.42,0,0,Check-Out,2018-06-02 -Resort Hotel,0,247,2016,July,32,16,0,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,194.7,0,0,Check-Out,2019-04-03 -Resort Hotel,0,211,2017,August,36,13,2,1,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Canceled,2020-05-03 -Resort Hotel,0,100,2016,October,46,23,1,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,C,C,3,No Deposit,317.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-06-03 -City Hotel,1,53,2017,April,15,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,161.58,0,1,Check-Out,2020-02-01 -Resort Hotel,1,2,2017,July,32,6,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,248.0,179.0,0,Transient,197.24,0,0,Canceled,2020-03-03 -City Hotel,0,108,2016,September,37,30,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient-Party,101.92,0,0,Check-Out,2019-05-04 -Resort Hotel,0,35,2016,October,43,11,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,71.53,1,1,Check-Out,2019-08-04 -Resort Hotel,0,44,2016,December,53,13,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,48.08,1,3,Check-Out,2019-12-04 -Resort Hotel,0,154,2016,July,25,30,3,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,H,F,0,No Deposit,247.0,179.0,0,Transient,131.24,0,2,Check-Out,2019-05-04 -City Hotel,0,37,2016,July,30,9,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.12,0,3,Check-Out,2019-02-01 -Resort Hotel,0,259,2016,December,53,31,0,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,E,D,0,No Deposit,240.0,179.0,0,Group,60.75,0,3,Check-Out,2019-11-03 -City Hotel,0,117,2016,October,45,28,2,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,218.0,0,3,Check-Out,2019-08-04 -Resort Hotel,0,27,2016,January,51,28,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,81.2,0,2,Check-Out,2019-09-03 -City Hotel,1,58,2016,October,42,25,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.99,0,2,Canceled,2019-07-04 -City Hotel,1,292,2016,August,43,16,0,4,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,117.3,0,0,Canceled,2019-08-04 -City Hotel,1,105,2015,November,31,5,0,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,81.64,0,0,Canceled,2019-01-03 -Resort Hotel,0,105,2016,December,53,21,2,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,61.63,0,1,Check-Out,2018-12-03 -Resort Hotel,0,111,2016,May,24,27,1,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,200.0,179.0,0,Transient,123.46,1,2,Check-Out,2019-04-03 -City Hotel,1,217,2017,June,27,17,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,94.59,0,0,Canceled,2020-06-02 -City Hotel,0,177,2016,August,32,2,0,3,2,1.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,160.15,0,2,Check-Out,2019-05-04 -Resort Hotel,0,152,2017,August,36,31,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,127.81,1,1,Check-Out,2020-07-03 -City Hotel,1,135,2016,December,52,2,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,101.81,0,0,Canceled,2019-09-03 -Resort Hotel,0,44,2017,July,26,17,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,129.61,1,2,Check-Out,2020-02-01 -City Hotel,1,41,2017,May,19,9,0,1,3,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,11.0,179.0,0,Transient,2.54,0,0,Canceled,2020-03-03 -Resort Hotel,0,58,2015,December,49,18,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,243.0,179.0,0,Transient,47.34,0,3,Check-Out,2018-05-03 -City Hotel,1,0,2017,November,21,8,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,1.96,0,0,Canceled,2020-01-04 -Resort Hotel,0,3,2015,December,51,30,0,4,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,42.14,0,1,Check-Out,2018-11-02 -City Hotel,0,24,2016,October,42,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,104.56,0,0,Check-Out,2018-08-03 -Resort Hotel,0,43,2017,March,11,18,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,D,3,No Deposit,15.0,222.0,0,Transient-Party,78.03,0,0,Check-Out,2020-04-02 -City Hotel,0,4,2017,July,32,2,0,2,2,0.0,0,BB,ISR,Direct,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,140.13,0,1,Check-Out,2020-06-02 -Resort Hotel,1,2,2015,July,28,3,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.16,0,0,No-Show,2018-05-03 -City Hotel,0,16,2017,August,37,16,1,2,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,232.75,0,0,Check-Out,2019-06-03 -City Hotel,0,18,2016,June,24,31,2,4,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.95,0,1,Check-Out,2019-06-03 -City Hotel,0,1,2016,November,45,25,1,1,1,0.0,0,SC,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,63.0,0,Transient,74.69,0,0,Check-Out,2019-06-03 -Resort Hotel,0,89,2016,August,36,30,2,4,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,201.35,0,2,Check-Out,2019-07-04 -City Hotel,1,21,2016,May,35,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,76.67,0,0,Canceled,2018-08-03 -Resort Hotel,0,38,2016,October,35,12,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.7,0,3,Check-Out,2019-06-03 -City Hotel,0,18,2017,May,22,27,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,82.11,0,0,Check-Out,2020-05-03 -City Hotel,1,400,2016,November,50,25,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,38.0,179.0,0,Transient,62.07,0,0,Canceled,2019-09-03 -City Hotel,1,3,2016,August,50,9,0,1,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,0.43,0,0,Canceled,2018-06-02 -Resort Hotel,0,241,2016,July,29,27,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-06-03 -City Hotel,0,41,2016,October,50,6,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient-Party,61.68,0,0,Check-Out,2018-08-03 -City Hotel,1,46,2017,June,16,29,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,210.0,211.0,0,Transient,170.46,0,0,Canceled,2020-05-03 -City Hotel,1,421,2016,November,50,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.71,0,0,Canceled,2017-09-02 -City Hotel,0,36,2016,August,16,20,0,1,1,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,119.31,0,0,Check-Out,2019-12-04 -City Hotel,1,103,2016,March,9,28,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.6,0,0,Check-Out,2019-03-04 -Resort Hotel,0,213,2017,August,36,30,0,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,106.0,179.0,0,Transient,126.0,0,0,Check-Out,2019-10-04 -City Hotel,1,3,2015,August,39,14,2,0,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,45.22,0,0,Canceled,2018-06-02 -City Hotel,1,14,2016,February,9,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,A,0,No Deposit,241.0,179.0,0,Transient,61.62,0,1,Canceled,2019-10-04 -City Hotel,0,0,2016,June,26,18,0,1,1,0.0,0,HB,PRT,Complementary,Corporate,1,1,1,A,A,1,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,1,62,2017,March,11,18,1,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,237.0,179.0,0,Transient,115.72,0,2,Canceled,2020-04-02 -City Hotel,0,94,2016,March,17,15,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,80.93,0,3,Check-Out,2019-02-01 -City Hotel,0,8,2016,October,45,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,69.02,0,0,Check-Out,2019-11-03 -City Hotel,0,294,2016,June,27,4,0,4,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,E,B,0,No Deposit,12.0,179.0,0,Transient-Party,109.93,0,0,Check-Out,2019-02-01 -Resort Hotel,0,139,2017,February,10,17,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,71.54,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,May,27,24,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,242.0,179.0,0,Transient,46.96,0,1,Check-Out,2019-10-04 -Resort Hotel,0,147,2015,August,33,21,3,5,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,238.16,0,0,Check-Out,2020-06-02 -City Hotel,1,30,2017,May,22,15,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,257.0,0,Group,0.0,0,0,Canceled,2020-05-03 -City Hotel,1,52,2017,June,31,16,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,75.55,0,0,Canceled,2020-03-03 -City Hotel,0,2,2017,June,22,12,0,1,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,165.97,0,0,Check-Out,2020-04-02 -City Hotel,0,301,2015,September,43,5,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,105.85,0,3,Check-Out,2018-08-03 -Resort Hotel,1,168,2017,February,11,4,2,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,88.98,0,0,Canceled,2019-10-04 -City Hotel,0,127,2017,November,35,21,0,2,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient-Party,141.81,0,2,Check-Out,2020-07-03 -City Hotel,0,0,2015,September,43,13,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,44.53,0,0,Check-Out,2018-08-03 -City Hotel,0,68,2017,June,23,24,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,223.66,0,0,Check-Out,2020-06-02 -Resort Hotel,0,14,2016,June,26,27,0,3,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,240.0,179.0,0,Transient,157.03,0,1,Check-Out,2020-06-02 -Resort Hotel,0,58,2017,June,16,2,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,237.0,179.0,0,Transient,115.73,0,2,Check-Out,2020-03-03 -City Hotel,0,3,2016,January,4,30,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,59.89,0,3,Check-Out,2018-11-02 -City Hotel,0,5,2016,July,26,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,82.2,0,0,Check-Out,2019-07-04 -City Hotel,0,16,2015,October,43,4,2,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Contract,74.87,0,0,Check-Out,2018-08-03 -City Hotel,1,1,2016,October,22,12,1,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,C,0,No Deposit,14.0,177.0,0,Transient,86.14,0,0,Canceled,2019-03-04 -City Hotel,1,98,2017,June,21,17,2,1,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.32,0,0,Canceled,2020-04-02 -City Hotel,1,386,2016,December,50,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,45,Transient,74.53,0,0,Canceled,2018-11-02 -Resort Hotel,0,6,2015,December,53,30,2,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,71.67,0,0,Check-Out,2018-08-03 -Resort Hotel,1,247,2016,August,35,13,0,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,58.18,0,0,Canceled,2019-07-04 -Resort Hotel,0,0,2015,October,42,12,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,102.0,179.0,0,Transient,69.15,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,January,2,21,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,73.0,0,Transient,35.64,0,0,Check-Out,2019-10-04 -City Hotel,0,240,2015,July,32,9,0,3,2,0.0,0,BB,AUT,Online TA,Undefined,0,0,0,B,B,3,No Deposit,11.0,179.0,0,Transient-Party,71.08,0,2,Check-Out,2018-06-02 -City Hotel,0,0,2016,March,15,10,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,71.72,0,0,Check-Out,2019-02-01 -Resort Hotel,1,266,2016,July,35,18,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,2019-04-03 -City Hotel,0,41,2015,December,53,20,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,122.61,0,2,Check-Out,2019-11-03 -Resort Hotel,0,51,2015,December,53,28,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient,83.83,0,0,Canceled,2019-01-03 -Resort Hotel,0,16,2015,August,38,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,0.64,0,2,Check-Out,2018-08-03 -City Hotel,0,322,2015,July,33,14,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.6,0,0,Check-Out,2018-05-03 -City Hotel,0,58,2016,September,34,4,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,74.0,179.0,0,Transient-Party,84.48,0,0,Check-Out,2019-09-03 -City Hotel,1,237,2016,June,27,20,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,143.55,0,0,Canceled,2019-03-04 -Resort Hotel,0,13,2016,July,51,27,0,2,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,111.38,1,0,Check-Out,2019-03-04 -City Hotel,0,43,2016,October,42,4,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,98.82,0,1,Check-Out,2019-09-03 -City Hotel,1,13,2017,January,11,28,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,1,107,2015,June,45,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,64,Transient,69.31,0,0,Canceled,2018-08-03 -City Hotel,0,1,2017,March,19,28,2,0,1,0.0,0,BB,GBR,Direct,Corporate,0,0,0,A,E,1,No Deposit,274.0,331.0,0,Transient,78.73,0,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2016,September,44,10,0,5,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,90.72,1,0,Check-Out,2019-11-03 -City Hotel,1,152,2017,July,25,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.54,0,1,Canceled,2020-06-02 -City Hotel,0,183,2016,August,43,10,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.4,0,0,Check-Out,2019-07-04 -Resort Hotel,0,30,2016,January,5,28,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,125.3,1,2,Check-Out,2018-10-03 -City Hotel,1,51,2016,October,51,29,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,72.84,0,0,Canceled,2019-09-03 -City Hotel,1,58,2016,May,18,13,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,107.43,0,2,Canceled,2019-01-03 -Resort Hotel,0,201,2016,March,18,31,2,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,15.0,223.0,0,Transient-Party,63.75,0,0,Check-Out,2019-03-04 -City Hotel,0,244,2016,February,10,20,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Contract,60.41,0,1,Check-Out,2019-02-01 -Resort Hotel,1,202,2017,August,37,24,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,2,No Deposit,14.0,179.0,0,Transient,213.85,0,1,Canceled,2020-07-03 -City Hotel,1,65,2016,August,38,5,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,208.22,0,0,Canceled,2019-09-03 -City Hotel,1,114,2017,May,22,13,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,133.91,0,0,Canceled,2020-04-02 -Resort Hotel,0,0,2017,June,24,24,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,93.36,0,1,Check-Out,2020-02-01 -City Hotel,0,136,2017,January,9,28,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.21,0,1,Check-Out,2019-12-04 -Resort Hotel,1,262,2015,October,44,18,2,7,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,61.58,0,2,Canceled,2018-05-03 -City Hotel,1,6,2016,May,22,29,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Group,106.73,0,0,Canceled,2019-03-04 -City Hotel,0,98,2017,August,30,4,0,1,2,0.0,0,BB,BRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,63.99,0,0,Check-Out,2020-06-02 -Resort Hotel,1,0,2015,August,38,21,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,216.76,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2015,July,33,31,0,1,2,0.0,0,FB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,96.49,0,0,Check-Out,2018-07-03 -Resort Hotel,0,37,2015,December,50,21,2,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,96.79,0,1,Check-Out,2018-08-03 -City Hotel,0,238,2016,March,9,20,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,145.96,0,1,Check-Out,2019-03-04 -City Hotel,0,58,2017,August,36,19,1,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,122.39,0,0,Check-Out,2018-06-02 -City Hotel,0,94,2016,July,30,4,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.44,0,3,Check-Out,2019-06-03 -City Hotel,1,0,2016,December,50,23,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,0.47,0,0,Canceled,2019-12-04 -City Hotel,0,103,2016,September,34,26,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,86.98,0,2,Check-Out,2019-05-04 -Resort Hotel,0,152,2016,December,51,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,190.0,179.0,0,Transient-Party,29.63,0,0,Check-Out,2019-12-04 -Resort Hotel,1,98,2016,October,23,21,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,37.22,0,0,Canceled,2019-04-03 -Resort Hotel,0,19,2017,October,43,31,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,122.77,1,2,Check-Out,2019-09-03 -City Hotel,0,49,2017,March,17,6,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,92.89,0,1,Check-Out,2020-04-02 -City Hotel,1,429,2016,March,10,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,58.81,0,0,Canceled,2018-11-02 -Resort Hotel,0,100,2016,June,24,10,4,7,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,103.09,0,1,Check-Out,2020-04-02 -Resort Hotel,0,106,2017,December,53,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,111.09,0,1,Check-Out,2019-10-04 -City Hotel,0,3,2016,May,21,30,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,F,3,No Deposit,16.0,179.0,0,Transient,97.79,0,0,Check-Out,2019-02-01 -City Hotel,0,38,2016,July,33,18,0,2,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,103.56,1,2,Check-Out,2019-06-03 -Resort Hotel,0,50,2015,October,50,26,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Group,34.2,0,0,Check-Out,2019-10-04 -Resort Hotel,1,233,2015,July,34,22,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,A,0,No Deposit,1.0,179.0,0,Transient,129.93,0,0,Canceled,2018-05-03 -City Hotel,1,196,2016,March,12,25,2,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,E,E,0,No Deposit,13.0,331.0,21,Transient-Party,62.82,0,0,Canceled,2019-02-01 -Resort Hotel,0,182,2017,May,16,30,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,3,No Deposit,16.0,179.0,0,Transient-Party,2.05,0,0,Check-Out,2020-04-02 -Resort Hotel,1,271,2016,June,15,15,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,132.0,179.0,0,Transient,73.21,0,2,Canceled,2019-02-01 -City Hotel,0,48,2016,January,4,12,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,76.33,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,May,28,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,79.0,0,Transient,60.48,0,2,Check-Out,2019-06-03 -Resort Hotel,1,37,2016,March,17,15,2,3,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,C,I,1,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Canceled,2019-01-03 -City Hotel,0,0,2017,May,20,16,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,89.34,0,1,Check-Out,2020-02-01 -Resort Hotel,0,66,2016,December,52,30,3,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,63.02,0,1,Check-Out,2019-05-04 -City Hotel,1,417,2016,October,45,23,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,84.13,0,0,Canceled,2019-09-03 -City Hotel,0,43,2017,June,26,7,0,3,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.47,0,0,Check-Out,2020-06-02 -Resort Hotel,0,18,2016,September,43,2,3,5,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,316.0,179.0,0,Transient,42.37,0,0,Check-Out,2019-05-04 -City Hotel,0,107,2016,October,45,28,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,172.86,0,2,Check-Out,2019-08-04 -City Hotel,0,157,2016,December,50,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.07,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,December,52,14,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,79.46,0,0,Check-Out,2019-11-03 -Resort Hotel,0,27,2017,March,18,24,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,331.0,75,Transient-Party,69.73,1,0,Check-Out,2019-12-04 -Resort Hotel,0,16,2015,August,44,15,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,63.32,1,1,Check-Out,2019-07-04 -City Hotel,0,16,2016,March,19,14,1,2,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,D,0,No Deposit,177.0,179.0,0,Transient,105.88,0,0,Check-Out,2019-04-03 -City Hotel,0,25,2016,October,42,16,1,1,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,208.22,0,3,Check-Out,2018-08-03 -Resort Hotel,0,190,2016,October,44,9,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,95.0,179.0,0,Transient-Party,71.95,0,0,Check-Out,2019-08-04 -City Hotel,0,36,2016,November,49,7,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,89.37,0,0,Check-Out,2019-10-04 -City Hotel,0,246,2016,July,31,2,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.85,0,1,Check-Out,2019-05-04 -Resort Hotel,0,56,2016,October,44,16,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,126.97,0,1,Check-Out,2019-07-04 -City Hotel,0,3,2016,April,18,30,1,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,133.79,0,2,Check-Out,2019-03-04 -City Hotel,0,249,2016,October,42,21,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.74,0,2,Check-Out,2019-06-03 -City Hotel,0,190,2017,May,20,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,96.0,0,1,Check-Out,2020-04-02 -Resort Hotel,0,39,2016,March,17,29,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,73.48,1,2,Check-Out,2019-04-03 -City Hotel,0,56,2016,April,22,24,2,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.29,0,3,Check-Out,2019-10-04 -Resort Hotel,0,354,2016,October,45,24,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,72.05,1,0,Check-Out,2019-12-04 -City Hotel,1,98,2016,March,10,19,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,77.04,0,0,Canceled,2018-11-02 -City Hotel,1,105,2016,August,32,2,0,5,3,0.0,0,BB,,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,154.79,0,0,Canceled,2019-09-03 -Resort Hotel,0,1,2016,April,41,20,0,1,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Transient-Party,91.0,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2016,February,22,30,1,0,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient-Party,69.61,0,0,Check-Out,2019-03-04 -City Hotel,1,32,2016,January,7,26,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,62.05,0,0,Canceled,2018-10-03 -City Hotel,0,110,2016,April,18,30,2,2,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,202.82,1,0,Check-Out,2019-01-03 -Resort Hotel,1,79,2016,July,36,3,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient,236.44,0,1,Canceled,2019-05-04 -City Hotel,0,384,2017,May,26,30,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,75.46,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,June,28,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,16.0,45.0,0,Transient,43.09,0,1,Check-Out,2018-06-02 -Resort Hotel,0,126,2016,October,44,20,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,130.41,0,3,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,August,33,15,2,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,127.94,0,1,Check-Out,2019-08-04 -Resort Hotel,0,150,2017,March,10,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,78.05,0,0,Check-Out,2020-03-03 -City Hotel,1,316,2017,May,22,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.08,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,January,9,1,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,0,No Deposit,12.0,331.0,0,Transient,58.34,1,0,Check-Out,2019-01-03 -City Hotel,1,275,2016,March,11,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,148.0,179.0,0,Transient,75.49,0,0,Canceled,2018-11-02 -Resort Hotel,0,95,2017,July,37,30,1,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,213.14,1,0,Check-Out,2020-04-02 -City Hotel,1,343,2016,June,36,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,76.2,0,0,Canceled,2019-08-04 -City Hotel,0,1,2017,May,22,30,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,F,0,No Deposit,12.0,74.0,0,Transient-Party,153.2,0,0,Check-Out,2019-11-03 -City Hotel,0,5,2017,April,22,16,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,59.72,0,1,Check-Out,2020-04-02 -Resort Hotel,0,40,2016,October,43,17,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,313.0,179.0,0,Transient,71.54,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2015,December,53,16,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,102.9,0,1,Check-Out,2018-11-02 -City Hotel,1,89,2017,May,22,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,168.98,0,0,Canceled,2019-02-01 -City Hotel,0,49,2016,December,53,25,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,12.0,179.0,0,Transient,91.86,0,0,Check-Out,2019-09-03 -Resort Hotel,1,3,2017,February,10,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,17.0,179.0,0,Transient,88.34,0,0,Canceled,2019-03-04 -City Hotel,1,41,2017,June,23,16,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,201.59,0,1,Canceled,2020-07-03 -City Hotel,0,0,2016,October,43,28,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,D,C,0,No Deposit,9.0,179.0,0,Group,105.74,1,1,Check-Out,2019-05-04 -City Hotel,0,0,2017,July,9,13,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,76.97,0,2,Check-Out,2020-07-03 -City Hotel,0,107,2015,October,44,15,2,2,2,2.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,64.67,0,0,Check-Out,2018-09-02 -City Hotel,0,102,2017,April,9,16,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,75.01,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,August,21,8,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,210.3,0,0,Check-Out,2019-12-04 -Resort Hotel,0,41,2016,April,15,27,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,126.36,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,July,34,27,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,2,No Deposit,15.0,179.0,0,Transient,127.96,0,3,Check-Out,2019-03-04 -Resort Hotel,0,253,2015,September,35,21,4,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Contract,63.22,0,0,Check-Out,2018-08-03 -Resort Hotel,0,164,2017,May,34,28,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,189.56,0,0,Check-Out,2020-06-02 -City Hotel,0,10,2016,June,25,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.11,0,1,Check-Out,2019-06-03 -Resort Hotel,1,20,2016,March,18,29,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,F,0,No Deposit,321.0,179.0,0,Transient,45.73,0,1,Canceled,2019-02-01 -Resort Hotel,1,169,2016,May,17,31,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,A,0,Refundable,9.0,179.0,75,Transient,61.19,0,0,Canceled,2019-07-04 -Resort Hotel,0,65,2016,July,30,27,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,15.0,179.0,0,Transient,216.0,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,June,7,21,0,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,83.0,0,Transient,70.53,0,1,Check-Out,2020-02-01 -City Hotel,0,13,2017,August,31,2,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,8.0,179.0,0,Transient-Party,147.84,1,2,Check-Out,2020-04-02 -Resort Hotel,0,141,2017,July,22,25,4,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,G,E,0,No Deposit,172.0,179.0,0,Transient,103.91,0,1,Check-Out,2019-12-04 -City Hotel,1,259,2017,March,42,13,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,121.36,0,0,Canceled,2019-09-03 -Resort Hotel,0,52,2015,November,37,12,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,100.07,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,December,50,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,37.39,0,0,Check-Out,2018-10-03 -Resort Hotel,1,147,2016,June,27,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,238.0,179.0,0,Transient,61.55,0,0,Canceled,2018-12-03 -City Hotel,0,18,2016,August,33,12,0,1,1,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,1.66,0,0,Check-Out,2019-05-04 -City Hotel,0,14,2017,April,16,5,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient-Party,144.71,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,March,3,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,34.24,0,1,Check-Out,2019-02-01 -Resort Hotel,0,45,2016,November,50,24,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,81.15,0,1,Check-Out,2019-05-04 -City Hotel,0,19,2017,February,8,20,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,74.0,0,Transient-Party,71.48,0,0,Check-Out,2020-01-04 -Resort Hotel,0,100,2016,July,24,21,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,98.89,0,0,Check-Out,2019-07-04 -City Hotel,1,375,2015,July,39,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.81,0,0,Canceled,2018-06-02 -City Hotel,0,90,2016,June,27,3,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.69,0,1,Check-Out,2019-06-03 -Resort Hotel,1,211,2016,October,44,15,2,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,Non Refund,321.0,179.0,0,Transient,119.99,0,0,Canceled,2019-07-04 -Resort Hotel,0,240,2017,June,21,16,2,5,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,105.26,0,0,Check-Out,2020-04-02 -City Hotel,1,93,2017,August,37,25,2,1,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,222.4,0,3,Check-Out,2020-07-03 -City Hotel,0,159,2017,June,27,18,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,102.9,0,1,Check-Out,2020-01-04 -City Hotel,0,32,2016,March,10,31,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,77.61,0,0,Check-Out,2018-12-03 -City Hotel,0,17,2017,May,23,25,2,1,1,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,G,I,1,No Deposit,12.0,179.0,0,Transient,74.93,1,1,Check-Out,2020-03-03 -City Hotel,0,1,2017,March,18,16,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.89,0,1,Check-Out,2020-04-02 -Resort Hotel,0,91,2015,November,43,20,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,42.12,0,0,Check-Out,2018-08-03 -Resort Hotel,0,181,2016,October,45,31,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Contract,36.72,0,0,Check-Out,2019-02-01 -Resort Hotel,1,256,2016,October,41,25,2,5,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,108.13,0,1,Canceled,2019-07-04 -City Hotel,0,82,2017,June,27,15,2,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,150.41,0,2,Check-Out,2020-04-02 -Resort Hotel,0,5,2016,June,23,28,0,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,L,C,0,No Deposit,246.0,179.0,0,Transient,152.13,1,2,Check-Out,2019-05-04 -City Hotel,0,98,2017,January,5,14,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,74.44,0,1,Check-Out,2019-10-04 -City Hotel,0,13,2016,October,45,27,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,91.06,0,2,Check-Out,2019-09-03 -City Hotel,0,45,2016,May,16,17,2,5,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,83.01,0,3,Check-Out,2019-03-04 -Resort Hotel,1,14,2017,June,27,28,2,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,188.14,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2015,December,53,31,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,16.0,179.0,0,Transient,62.82,0,0,Check-Out,2018-11-02 -City Hotel,0,99,2016,June,24,9,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,70.18,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,May,21,23,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,2.72,0,0,Check-Out,2019-06-03 -City Hotel,1,60,2016,July,26,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,Non Refund,8.0,179.0,0,Transient,95.8,0,0,Canceled,2019-01-03 -City Hotel,0,25,2016,November,11,30,0,2,2,2.0,0,BB,AUT,Direct,Direct,0,0,0,F,F,3,No Deposit,16.0,179.0,0,Transient-Party,193.96,0,0,Check-Out,2019-07-04 -City Hotel,0,44,2017,May,21,21,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.05,0,0,Check-Out,2020-04-02 -Resort Hotel,1,144,2016,March,7,24,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Refundable,336.0,179.0,0,Transient-Party,44.89,0,0,Canceled,2019-02-01 -City Hotel,1,62,2017,June,24,17,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,106.18,0,0,Canceled,2020-02-01 -City Hotel,0,0,2015,October,40,18,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Group,96.07,0,2,Check-Out,2019-05-04 -Resort Hotel,0,91,2016,September,31,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,16.0,179.0,0,Transient,127.87,1,1,Check-Out,2019-06-03 -City Hotel,1,260,2016,September,44,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,43,Transient,73.81,0,0,Canceled,2018-11-02 -City Hotel,0,74,2017,July,33,4,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,104.9,0,1,Check-Out,2020-06-02 -City Hotel,0,184,2017,July,37,20,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,61.63,0,0,Check-Out,2019-12-04 -City Hotel,0,113,2016,November,45,27,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,156.45,0,2,Check-Out,2019-11-03 -City Hotel,0,31,2016,November,50,28,1,2,1,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,71.8,0,0,Check-Out,2019-11-03 -Resort Hotel,0,21,2016,September,34,5,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,70.81,0,0,Check-Out,2019-08-04 -Resort Hotel,0,108,2017,May,21,30,0,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,142.81,1,0,Check-Out,2020-03-03 -Resort Hotel,0,271,2015,December,49,10,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,60.68,0,0,Check-Out,2018-07-03 -City Hotel,0,47,2016,December,52,9,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.95,0,2,Check-Out,2019-11-03 -City Hotel,1,105,2017,May,20,28,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,173.0,179.0,0,Transient,148.55,0,0,Canceled,2020-03-03 -City Hotel,0,171,2017,June,25,14,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,11.0,179.0,0,Group,64.73,0,1,Check-Out,2020-03-03 -Resort Hotel,1,30,2016,July,33,21,0,3,3,1.0,0,BB,POL,Online TA,Direct,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,178.7,0,0,Check-Out,2018-06-02 -City Hotel,1,41,2016,November,44,14,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,118.33,0,1,Check-Out,2019-09-03 -City Hotel,1,48,2017,March,8,27,1,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.88,0,0,Canceled,2019-10-04 -City Hotel,1,163,2017,March,8,9,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,152.31,0,0,Canceled,2020-03-03 -Resort Hotel,0,8,2016,May,21,19,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,309.0,179.0,0,Contract,68.17,0,0,Check-Out,2019-03-04 -City Hotel,0,131,2016,April,22,9,2,5,2,0.0,0,HB,DEU,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,60.26,0,1,Check-Out,2020-03-03 -City Hotel,0,50,2017,December,27,25,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,32.0,179.0,0,Transient,100.36,1,0,Check-Out,2019-11-03 -Resort Hotel,1,60,2016,October,49,2,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,46.52,0,3,Canceled,2019-10-04 -City Hotel,1,110,2015,October,41,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,91.0,179.0,65,Transient,98.26,0,0,Canceled,2018-08-03 -City Hotel,1,240,2017,October,44,21,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,97.95,0,2,Canceled,2019-10-04 -City Hotel,0,26,2015,September,36,13,1,5,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.9,0,2,Check-Out,2018-06-02 -City Hotel,1,105,2016,July,17,6,2,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,B,1,No Deposit,8.0,179.0,0,Transient,118.26,0,0,Canceled,2019-04-03 -City Hotel,1,286,2015,October,44,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,21,Contract,59.71,0,0,Canceled,2018-01-03 -City Hotel,1,273,2016,June,26,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,41,Transient,106.97,0,0,Canceled,2018-12-03 -City Hotel,0,0,2016,February,12,11,1,0,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,63.61,0,0,Check-Out,2019-03-04 -Resort Hotel,0,8,2017,April,18,25,2,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,G,E,0,No Deposit,246.0,179.0,0,Transient,0.0,0,2,Check-Out,2020-01-04 -Resort Hotel,1,2,2015,August,35,4,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,L,A,0,No Deposit,17.0,179.0,0,Transient,47.23,0,0,Canceled,2018-08-03 -Resort Hotel,0,46,2015,September,42,9,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,30.19,0,0,Check-Out,2018-08-03 -City Hotel,0,169,2016,June,26,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient-Party,112.93,0,0,Check-Out,2019-04-03 -City Hotel,1,2,2017,February,11,14,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,G,F,0,No Deposit,14.0,179.0,0,Transient,139.57,0,2,Canceled,2020-02-01 -Resort Hotel,1,11,2017,February,9,16,2,5,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,D,G,0,No Deposit,219.0,331.0,0,Transient,93.09,0,0,Canceled,2020-03-03 -City Hotel,1,3,2017,May,26,27,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,132.92,0,0,No-Show,2020-06-02 -Resort Hotel,1,1,2016,September,44,12,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,315.0,179.0,0,Transient,70.04,0,1,Canceled,2019-08-04 -City Hotel,0,352,2015,October,43,20,2,3,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,27.0,179.0,0,Transient-Party,58.92,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,April,17,27,1,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,75.73,0,3,Check-Out,2019-03-04 -City Hotel,0,0,2017,January,3,21,0,1,1,0.0,0,BB,GBR,Corporate,Direct,0,0,1,D,D,0,No Deposit,14.0,97.0,0,Transient,34.16,1,1,Check-Out,2019-09-03 -City Hotel,1,164,2016,November,50,10,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,75.02,0,0,Canceled,2018-09-02 -Resort Hotel,1,3,2016,September,36,5,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,300.0,179.0,0,Transient,74.68,0,0,Canceled,2019-07-04 -Resort Hotel,0,11,2016,February,8,8,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,249.0,179.0,0,Transient,76.86,1,0,Check-Out,2018-10-03 -City Hotel,0,19,2016,April,15,27,2,1,1,1.0,0,BB,CHE,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,185.94,0,1,Check-Out,2019-02-01 -City Hotel,0,2,2017,August,3,5,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,217.49,0,0,Check-Out,2020-06-02 -City Hotel,1,39,2017,June,15,21,0,2,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.17,0,0,Canceled,2020-07-03 -City Hotel,1,46,2016,November,51,21,2,3,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,68,Transient,61.53,0,0,Canceled,2018-08-03 -City Hotel,0,53,2016,August,36,12,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,23,2016,May,22,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,Refundable,14.0,223.0,0,Transient-Party,61.97,0,0,Check-Out,2019-03-04 -Resort Hotel,0,54,2015,August,51,10,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient-Party,61.69,0,1,Check-Out,2018-06-02 -City Hotel,1,189,2016,July,26,19,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,209.0,179.0,0,Transient,151.31,0,0,Canceled,2017-12-03 -City Hotel,1,145,2016,July,29,10,2,3,1,1.0,0,BB,DEU,Online TA,Direct,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,124.35,0,2,No-Show,2019-05-04 -Resort Hotel,0,1,2015,October,45,20,1,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,34.41,0,1,Check-Out,2018-06-02 -City Hotel,0,91,2016,December,38,24,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,126.73,0,3,Check-Out,2019-05-04 -Resort Hotel,0,88,2016,February,10,17,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,71.34,0,0,Check-Out,2018-12-03 -City Hotel,1,14,2015,September,38,2,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,190.09,0,1,Canceled,2018-05-03 -City Hotel,0,24,2016,August,30,20,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,140.49,0,0,Check-Out,2019-05-04 -City Hotel,0,11,2016,March,53,27,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,65.64,0,0,Check-Out,2018-11-02 -Resort Hotel,1,2,2017,March,9,2,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,A,0,No Deposit,199.0,179.0,0,Transient,68.94,0,0,Canceled,2020-01-04 -Resort Hotel,0,113,2017,July,32,29,4,5,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,A,A,2,No Deposit,242.0,179.0,0,Group,49.64,0,1,Check-Out,2020-03-03 -Resort Hotel,0,157,2016,June,29,20,0,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,147.61,0,2,Check-Out,2019-05-04 -City Hotel,0,2,2015,July,3,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,88.0,179.0,0,Contract,61.95,0,1,Check-Out,2018-11-02 -Resort Hotel,1,15,2015,August,37,27,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,283.0,179.0,0,Transient,190.18,0,1,Canceled,2019-06-03 -City Hotel,0,0,2017,February,9,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,10.0,45.0,0,Transient,76.03,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,March,12,27,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,1,1,C,I,1,No Deposit,14.0,218.0,75,Transient-Party,60.58,1,3,Check-Out,2018-10-03 -Resort Hotel,0,2,2015,September,34,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,41.87,0,2,Check-Out,2018-06-02 -City Hotel,1,298,2015,August,34,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,116.3,0,0,Canceled,2018-06-02 -City Hotel,1,167,2015,September,50,27,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,62.35,0,0,Canceled,2018-07-03 -City Hotel,0,2,2016,October,44,13,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,94.82,0,3,Check-Out,2019-11-03 -Resort Hotel,0,369,2016,March,11,13,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Transient-Party,60.66,0,0,Check-Out,2019-03-04 -Resort Hotel,1,53,2015,July,30,20,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,130.23,0,1,Canceled,2018-06-02 -Resort Hotel,0,0,2016,July,19,16,2,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,C,0,No Deposit,14.0,259.0,0,Transient,0.86,0,0,Check-Out,2019-06-03 -City Hotel,0,251,2017,March,43,7,1,7,2,0.0,0,SC,DEU,Groups,TA/TO,0,0,0,D,A,0,No Deposit,80.0,179.0,0,Transient-Party,160.22,0,0,Check-Out,2019-11-03 -City Hotel,1,387,2016,April,23,5,1,1,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,77.99,0,0,Canceled,2018-12-03 -City Hotel,0,2,2017,March,10,28,2,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,94.29,1,2,Check-Out,2020-02-01 -City Hotel,0,53,2016,April,16,28,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,76.67,0,0,Check-Out,2019-02-01 -City Hotel,1,212,2016,September,45,12,2,0,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,210.8,0,1,Canceled,2019-08-04 -Resort Hotel,0,382,2017,May,23,29,0,1,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,295.0,179.0,0,Transient-Party,61.75,0,0,Check-Out,2020-04-02 -City Hotel,1,57,2017,January,9,27,0,3,2,0.0,0,BB,FRA,Complementary,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,80.37,0,1,Canceled,2019-10-04 -City Hotel,1,100,2017,March,20,4,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,197.48,0,0,Canceled,2019-11-03 -Resort Hotel,1,45,2017,May,23,11,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,12.0,179.0,0,Transient,150.4,0,3,Canceled,2020-02-01 -Resort Hotel,0,44,2015,December,53,2,2,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,124.91,0,2,Check-Out,2018-12-03 -City Hotel,0,20,2016,July,33,27,0,4,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,175.33,0,0,Check-Out,2019-02-01 -Resort Hotel,0,13,2016,July,19,5,2,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,336.0,179.0,0,Transient,127.6,0,0,Check-Out,2019-12-04 -Resort Hotel,1,50,2017,March,13,5,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,61.0,179.0,0,Transient,113.27,0,2,Canceled,2020-02-01 -Resort Hotel,0,90,2016,March,12,18,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,73.68,0,0,Check-Out,2019-02-01 -City Hotel,0,86,2017,March,8,5,2,1,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,239.15,0,0,Check-Out,2020-04-02 -City Hotel,0,46,2016,February,16,12,1,1,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,81.18,0,2,Check-Out,2018-11-02 -City Hotel,0,44,2015,July,43,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient-Party,68.88,0,0,Check-Out,2018-08-03 -City Hotel,0,10,2017,June,36,12,0,2,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,D,1,No Deposit,13.0,331.0,0,Transient-Party,216.14,0,0,Check-Out,2020-06-02 -Resort Hotel,1,53,2017,March,8,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,72.45,0,0,No-Show,2019-12-04 -Resort Hotel,0,49,2016,February,10,22,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,37.93,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2016,January,4,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,80.83,0,1,No-Show,2018-12-03 -City Hotel,0,16,2016,August,36,16,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,119.89,0,0,Check-Out,2019-06-03 -City Hotel,1,379,2017,July,29,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,122.0,179.0,0,Transient,83.32,0,0,Canceled,2020-06-02 -Resort Hotel,0,8,2016,February,10,28,1,1,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,E,1,No Deposit,81.0,179.0,0,Transient-Party,68.4,0,0,Check-Out,2019-01-03 -City Hotel,1,24,2016,July,28,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,102.63,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,November,50,15,0,2,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,250.0,0,Transient,71.29,0,0,Check-Out,2019-09-03 -City Hotel,0,79,2016,March,11,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,E,1,No Deposit,12.0,84.0,75,Transient-Party,93.28,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2016,January,4,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,140.0,179.0,0,Transient-Party,67.1,0,1,Check-Out,2019-03-04 -City Hotel,1,112,2015,August,35,19,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,116.46,0,0,Canceled,2018-06-02 -City Hotel,0,94,2017,July,26,5,2,5,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.57,0,0,Check-Out,2020-02-01 -City Hotel,0,286,2015,October,42,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.72,0,0,Check-Out,2018-08-03 -City Hotel,1,364,2016,October,41,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.08,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2017,February,10,13,2,1,2,0.0,0,BB,GBR,Direct,Corporate,0,0,0,A,D,0,No Deposit,15.0,282.0,0,Transient,61.39,1,0,Check-Out,2019-12-04 -City Hotel,1,47,2015,December,51,22,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,42,Transient,124.57,0,0,Canceled,2018-11-02 -Resort Hotel,1,141,2016,July,34,31,2,5,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2015,December,51,21,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,D,0,No Deposit,42.0,45.0,0,Group,38.75,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2016,November,45,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,12.0,63.0,0,Transient,111.63,0,0,Check-Out,2019-06-03 -City Hotel,1,156,2016,September,28,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,98.53,0,0,Canceled,2019-08-04 -City Hotel,1,111,2016,June,44,28,0,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,136.29,0,0,Canceled,2019-04-03 -City Hotel,0,15,2017,June,28,28,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,122.68,0,1,Check-Out,2020-07-03 -Resort Hotel,0,263,2016,May,20,15,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,81.74,0,0,Check-Out,2019-04-03 -City Hotel,1,43,2015,December,50,21,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,28.0,179.0,0,Transient-Party,64.8,0,0,Canceled,2018-12-03 -City Hotel,0,3,2017,February,8,30,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,74.35,0,1,Check-Out,2020-02-01 -Resort Hotel,1,1,2016,January,4,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,D,0,No Deposit,136.0,179.0,0,Transient,75.71,0,0,No-Show,2018-12-03 -City Hotel,1,315,2015,July,38,21,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.32,0,0,Canceled,2018-06-02 -City Hotel,1,11,2016,August,5,28,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,E,E,0,No Deposit,17.0,179.0,0,Transient,128.86,0,0,Canceled,2019-11-03 -City Hotel,1,260,2016,April,18,24,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,170.63,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,45.0,0,Transient,74.68,0,0,Check-Out,2019-11-03 -City Hotel,1,10,2017,November,21,22,1,1,2,0.0,0,BB,BRA,Online TA,GDS,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,90.05,0,2,No-Show,2019-11-03 -City Hotel,0,43,2015,September,44,9,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.83,0,2,Check-Out,2018-10-03 -City Hotel,0,12,2017,May,21,17,0,1,1,0.0,0,BB,CHE,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,165.96,0,1,Check-Out,2020-05-03 -City Hotel,0,6,2016,December,53,28,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,88.31,0,0,Check-Out,2018-12-03 -City Hotel,1,14,2015,September,42,14,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,61.14,0,3,Canceled,2018-11-02 -City Hotel,0,2,2017,July,36,18,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,127.16,0,0,Check-Out,2020-06-02 -Resort Hotel,0,37,2017,February,9,5,2,5,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,D,I,0,No Deposit,316.0,331.0,0,Transient-Party,117.06,1,0,Check-Out,2020-03-03 -Resort Hotel,1,394,2017,June,27,17,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,191.0,179.0,0,Transient,45.44,0,0,Canceled,2020-03-03 -City Hotel,0,39,2015,November,38,18,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,30.63,0,0,Check-Out,2018-09-02 -City Hotel,0,49,2016,December,53,27,1,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,75.0,179.0,0,Transient-Party,67.88,0,1,Check-Out,2019-11-03 -City Hotel,0,301,2016,May,26,4,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,123.27,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,September,36,31,0,1,2,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,I,1,No Deposit,9.0,179.0,0,Transient-Party,1.08,0,0,Check-Out,2018-06-02 -City Hotel,0,15,2016,May,22,22,0,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,71.2,0,0,Check-Out,2019-03-04 -City Hotel,0,8,2016,June,28,17,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,14.0,194.0,0,Transient-Party,125.24,0,0,Check-Out,2019-06-03 -City Hotel,1,201,2017,August,32,9,2,5,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.55,0,1,Canceled,2020-03-03 -City Hotel,1,282,2015,September,36,21,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,198.0,0,Transient,42.73,0,0,Canceled,2018-06-02 -City Hotel,1,98,2016,July,16,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,28.0,179.0,40,Transient,63.85,0,0,Canceled,2019-01-03 -Resort Hotel,0,42,2016,December,51,25,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,246.0,179.0,0,Transient,160.73,0,1,Check-Out,2019-12-04 -City Hotel,1,273,2016,October,44,27,0,4,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,71.17,0,0,Canceled,2019-10-04 -City Hotel,1,115,2017,April,21,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,67.58,0,0,Canceled,2019-11-03 -City Hotel,1,290,2016,July,27,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,62.22,0,0,Canceled,2017-10-03 -City Hotel,1,408,2015,September,28,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,63.39,0,0,Canceled,2019-01-03 -City Hotel,0,3,2016,June,27,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,64.17,0,0,Check-Out,2019-11-03 -City Hotel,0,28,2015,November,45,14,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.01,0,2,Check-Out,2018-09-02 -Resort Hotel,1,0,2016,January,9,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,G,0,No Deposit,243.0,179.0,0,Transient,36.19,1,0,Canceled,2018-11-02 -City Hotel,0,297,2017,July,27,18,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,107.61,0,0,Check-Out,2020-06-02 -Resort Hotel,1,72,2016,August,19,24,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,172.63,0,2,Canceled,2020-03-03 -City Hotel,1,412,2016,December,44,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.04,0,0,Canceled,2017-10-03 -City Hotel,1,106,2017,July,33,24,2,5,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,C,G,2,No Deposit,14.0,179.0,0,Transient,106.82,0,0,Canceled,2019-10-04 -City Hotel,0,51,2015,November,45,10,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,60.23,0,0,Check-Out,2018-08-03 -Resort Hotel,0,105,2017,May,21,21,2,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,339.0,179.0,0,Transient,136.21,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2017,August,36,31,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,137.27,0,0,Check-Out,2020-07-03 -Resort Hotel,0,105,2017,February,10,19,4,0,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,179.0,179.0,0,Transient,81.83,0,0,Check-Out,2019-12-04 -Resort Hotel,0,91,2015,December,53,5,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.5,0,2,Check-Out,2018-06-02 -City Hotel,0,27,2016,June,31,27,0,2,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,72.04,0,1,Check-Out,2019-03-04 -Resort Hotel,0,94,2017,May,18,31,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.77,0,1,Check-Out,2020-04-02 -City Hotel,0,18,2016,December,42,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,92.16,0,0,Check-Out,2018-11-02 -Resort Hotel,0,100,2015,December,50,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,41.15,0,3,Check-Out,2018-11-02 -City Hotel,0,17,2016,December,53,7,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,161.59,0,2,Check-Out,2019-08-04 -City Hotel,0,15,2017,February,9,10,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.22,0,2,Check-Out,2020-02-01 -City Hotel,1,1,2016,January,27,13,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,72.9,0,2,Canceled,2018-12-03 -City Hotel,0,0,2015,September,45,20,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Transient,145.53,0,0,Check-Out,2018-08-03 -City Hotel,0,48,2015,October,43,6,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,185.05,0,2,Check-Out,2019-08-04 -City Hotel,0,33,2016,September,43,31,2,1,2,0.0,0,BB,,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,157.0,179.0,0,Group,123.68,0,2,Check-Out,2019-08-04 -City Hotel,1,203,2016,September,44,9,2,1,2,0.0,0,SC,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,79.61,0,0,Canceled,2019-08-04 -City Hotel,0,0,2017,June,25,5,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,146.94,0,3,Check-Out,2020-05-03 -City Hotel,1,53,2015,November,45,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,74.56,0,0,Canceled,2019-03-04 -City Hotel,0,1,2016,November,51,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,3,No Deposit,14.0,69.0,0,Transient,73.26,0,0,Check-Out,2019-12-04 -City Hotel,0,11,2016,December,51,25,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.87,0,0,Check-Out,2018-12-03 -Resort Hotel,0,184,2016,December,45,24,1,4,3,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,223.0,0,Transient,74.92,1,0,Check-Out,2019-12-04 -City Hotel,0,2,2015,October,45,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,189.0,270.0,0,Transient-Party,67.55,0,0,Check-Out,2018-08-03 -City Hotel,0,136,2017,July,31,31,2,1,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,G,A,0,No Deposit,14.0,179.0,0,Transient,211.42,0,3,Check-Out,2020-06-02 -Resort Hotel,0,12,2016,May,22,13,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,119.51,0,1,Check-Out,2020-03-03 -City Hotel,0,102,2016,November,49,8,2,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,H,2,No Deposit,15.0,179.0,0,Transient,102.99,0,0,Canceled,2019-10-04 -City Hotel,1,118,2017,August,37,28,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.39,0,0,Canceled,2020-02-01 -City Hotel,0,144,2016,September,23,2,2,3,1,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,172.92,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,August,33,21,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,188.88,1,0,Check-Out,2019-06-03 -City Hotel,0,101,2016,March,27,21,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,7.0,179.0,0,Transient,127.37,0,2,Check-Out,2019-02-01 -City Hotel,1,176,2017,April,23,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,94.53,0,0,Canceled,2019-11-03 -City Hotel,1,51,2017,August,37,9,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.78,0,1,Canceled,2020-03-03 -City Hotel,1,225,2015,December,53,26,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,8.0,179.0,0,Transient-Party,86.64,0,0,Canceled,2018-08-03 -City Hotel,0,230,2015,August,36,19,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,95.29,0,0,Check-Out,2018-05-03 -Resort Hotel,1,276,2016,October,46,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,35.6,0,0,Canceled,2019-07-04 -City Hotel,0,153,2017,July,32,25,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,216.89,0,2,Check-Out,2020-04-02 -City Hotel,1,96,2016,July,32,25,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,62.55,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,January,3,21,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,49.75,0,0,Check-Out,2018-11-02 -City Hotel,0,44,2017,August,37,31,0,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.99,0,0,Canceled,2019-07-04 -Resort Hotel,1,399,2017,August,33,28,2,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,241.0,179.0,0,Transient,191.04,0,1,Canceled,2019-05-04 -Resort Hotel,1,278,2017,May,18,29,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,93.62,0,0,Canceled,2020-04-02 -Resort Hotel,0,86,2017,March,9,31,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,239.0,179.0,0,Transient,120.69,0,3,Check-Out,2020-03-03 -City Hotel,1,153,2017,March,9,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,41,Transient,72.43,0,0,Canceled,2019-11-03 -City Hotel,0,22,2017,August,33,5,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.35,0,1,Check-Out,2019-12-04 -City Hotel,1,102,2016,July,28,19,0,10,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,26.0,179.0,0,Transient,118.01,0,0,Canceled,2019-04-03 -Resort Hotel,0,157,2016,August,36,8,2,6,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,119.98,0,0,Check-Out,2019-08-04 -City Hotel,0,50,2017,April,16,23,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.36,0,0,Check-Out,2020-03-03 -Resort Hotel,0,13,2015,October,39,24,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,105.25,1,0,Check-Out,2018-06-02 -Resort Hotel,0,12,2016,August,33,24,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,62.41,1,0,Check-Out,2019-09-03 -Resort Hotel,0,22,2017,July,32,21,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,F,1,No Deposit,189.0,179.0,0,Transient,125.05,0,1,No-Show,2020-06-02 -City Hotel,0,15,2017,August,39,6,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,201.0,1,0,Check-Out,2020-07-03 -Resort Hotel,0,141,2016,March,17,31,1,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient,59.65,0,0,Check-Out,2019-03-04 -City Hotel,0,12,2016,June,27,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,120.97,0,0,Check-Out,2018-11-02 -Resort Hotel,0,99,2017,February,9,6,2,5,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,E,E,0,No Deposit,196.0,179.0,0,Contract,81.63,1,1,Check-Out,2020-02-01 -City Hotel,0,92,2016,September,44,29,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,154.58,0,3,Check-Out,2019-06-03 -City Hotel,1,267,2015,November,47,7,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,57.43,0,0,Canceled,2018-08-03 -City Hotel,0,19,2015,September,38,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient-Party,64.5,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,August,35,12,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,123.39,0,0,Check-Out,2019-09-03 -City Hotel,0,19,2017,June,27,16,0,1,2,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,I,1,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-12-04 -Resort Hotel,1,41,2017,February,7,5,2,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,243.0,179.0,0,Transient,34.41,0,0,Canceled,2020-04-02 -City Hotel,1,241,2016,June,36,18,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.02,0,1,Canceled,2019-11-03 -Resort Hotel,0,64,2017,August,38,29,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,237.0,179.0,0,Transient,137.68,0,2,Check-Out,2020-02-01 -City Hotel,0,39,2017,February,11,7,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,70.77,0,3,Check-Out,2019-11-03 -Resort Hotel,0,86,2016,July,32,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,82.7,1,2,Check-Out,2019-05-04 -City Hotel,1,16,2016,October,37,16,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.97,0,2,Canceled,2019-08-04 -City Hotel,0,102,2015,October,33,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,152.37,0,0,Check-Out,2018-05-03 -Resort Hotel,0,88,2017,June,27,28,2,5,2,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient,179.79,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2015,October,41,25,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,28.88,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2015,August,36,12,2,2,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,211.64,0,0,Check-Out,2018-05-03 -City Hotel,1,30,2016,March,16,5,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.59,0,3,Canceled,2019-02-01 -Resort Hotel,0,105,2016,April,19,9,2,1,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-01-03 -Resort Hotel,0,15,2016,March,18,26,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient-Party,65.52,0,0,Check-Out,2019-11-03 -City Hotel,0,28,2016,September,44,23,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,82.0,179.0,0,Transient,68.18,0,0,Check-Out,2018-08-03 -City Hotel,1,330,2015,December,44,22,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.26,0,0,Canceled,2017-10-03 -City Hotel,0,14,2015,November,50,19,2,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,255.0,0,Transient,111.94,0,0,Check-Out,2019-09-03 -Resort Hotel,0,253,2016,September,43,29,2,4,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,237.0,179.0,0,Contract,90.63,0,2,Check-Out,2019-08-04 -Resort Hotel,0,0,2015,November,53,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,62.18,1,0,Check-Out,2018-05-03 -Resort Hotel,0,37,2015,December,53,31,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,45.94,0,0,Check-Out,2018-12-03 -City Hotel,1,95,2015,October,43,9,2,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,62,Transient,83.47,0,0,Canceled,2018-08-03 -City Hotel,0,86,2017,April,17,25,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,101.31,0,0,Check-Out,2020-02-01 -Resort Hotel,1,84,2017,March,9,31,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,72.06,0,0,Canceled,2019-10-04 -City Hotel,1,388,2016,April,43,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient,81.46,0,0,Canceled,2019-02-01 -Resort Hotel,0,159,2016,August,36,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,85.59,0,0,Check-Out,2018-08-03 -Resort Hotel,1,278,2017,May,23,25,2,2,1,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,180.0,179.0,0,Transient,184.46,0,3,Canceled,2020-03-03 -Resort Hotel,0,35,2017,March,23,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,240.0,179.0,0,Transient,170.52,0,3,Check-Out,2020-02-01 -Resort Hotel,1,51,2016,October,43,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,184.0,179.0,0,Transient,68.63,0,0,Canceled,2019-01-03 -City Hotel,1,35,2017,June,21,29,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,68.35,0,0,Canceled,2020-03-03 -Resort Hotel,0,293,2016,July,33,2,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,86.47,0,1,Check-Out,2019-06-03 -City Hotel,0,45,2016,February,45,27,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.2,0,0,Check-Out,2019-11-03 -City Hotel,1,269,2016,October,42,27,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,66,Transient,60.84,0,0,Canceled,2018-07-03 -City Hotel,0,48,2016,December,53,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,98.74,0,1,Check-Out,2019-06-03 -City Hotel,1,192,2016,July,32,22,2,2,2,2.0,0,HB,NOR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,222.42,0,0,Canceled,2019-05-04 -City Hotel,0,31,2017,May,20,5,2,4,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,157.17,0,2,Check-Out,2019-10-04 -City Hotel,1,39,2017,June,27,10,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,76.07,0,0,Canceled,2020-04-02 -City Hotel,1,50,2017,May,25,16,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,192.15,0,1,Canceled,2020-05-03 -City Hotel,1,45,2016,October,44,21,1,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,212.0,0,Transient,60.88,0,0,Canceled,2019-06-03 -City Hotel,0,260,2017,June,25,9,2,4,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,79.45,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2016,June,8,5,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,27.32,0,1,Check-Out,2019-04-03 -City Hotel,0,20,2016,August,44,9,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.2,0,0,Check-Out,2019-07-04 -City Hotel,1,57,2017,February,10,30,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,9.0,179.0,0,Transient,69.78,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2016,May,23,11,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,E,E,0,No Deposit,14.0,205.0,0,Transient,96.14,0,0,Check-Out,2019-05-04 -Resort Hotel,0,19,2015,July,39,14,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,63.58,0,0,Check-Out,2018-06-02 -Resort Hotel,0,43,2016,April,22,27,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,81.0,179.0,0,Group,31.87,0,1,Check-Out,2019-11-03 -City Hotel,1,1,2017,June,28,12,2,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,Non Refund,199.0,179.0,0,Transient,3.92,0,0,Canceled,2020-07-03 -Resort Hotel,0,31,2015,August,36,24,0,4,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,16.0,67.0,0,Transient,93.17,0,0,Check-Out,2019-07-04 -City Hotel,0,8,2016,June,28,19,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,238.0,0,Transient,89.95,0,1,Check-Out,2020-06-02 -City Hotel,1,107,2017,June,19,12,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,69.22,0,0,Canceled,2020-04-02 -City Hotel,1,15,2016,March,11,29,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,0,Transient,74.99,0,0,Canceled,2019-02-01 -Resort Hotel,0,91,2016,February,9,6,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,130.0,179.0,0,Transient-Party,60.15,0,0,Check-Out,2019-02-01 -City Hotel,0,278,2017,May,18,6,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,126.57,0,1,Check-Out,2020-02-01 -City Hotel,0,22,2015,November,50,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,236.0,0,Transient-Party,50.0,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2017,February,9,30,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,61.27,1,1,Check-Out,2020-03-03 -Resort Hotel,0,19,2015,September,35,3,0,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,91.14,0,0,Check-Out,2018-08-03 -Resort Hotel,0,104,2016,May,21,9,0,3,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,1,No Deposit,29.0,179.0,0,Transient-Party,59.48,0,0,Canceled,2019-01-03 -City Hotel,0,46,2016,January,53,28,2,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.5,0,1,Check-Out,2018-12-03 -City Hotel,1,92,2016,October,43,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,95.66,0,0,Canceled,2019-11-03 -Resort Hotel,1,148,2016,May,23,28,2,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,29.0,179.0,0,Transient,82.66,0,0,Canceled,2019-03-04 -City Hotel,1,50,2016,October,37,2,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.42,0,1,Canceled,2019-09-03 -City Hotel,1,94,2017,July,26,27,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Contract,174.07,0,1,Canceled,2020-02-01 -Resort Hotel,0,136,2015,July,32,24,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,E,0,No Deposit,31.0,179.0,0,Transient-Party,63.55,0,0,Check-Out,2018-07-03 -City Hotel,1,41,2016,March,17,18,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.99,0,0,Canceled,2019-10-04 -City Hotel,0,101,2017,April,22,10,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,84.89,0,1,Check-Out,2020-03-03 -City Hotel,0,1,2016,August,38,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,226.12,0,0,Check-Out,2018-06-02 -City Hotel,0,11,2016,March,10,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,62.47,0,0,Check-Out,2019-02-01 -Resort Hotel,0,22,2016,March,8,16,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient,88.22,0,1,Check-Out,2019-02-01 -Resort Hotel,0,269,2017,April,23,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,117.25,0,0,Check-Out,2020-03-03 -City Hotel,0,93,2016,June,16,25,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,100.52,0,0,Check-Out,2019-02-01 -City Hotel,1,428,2017,June,27,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,69.53,0,0,Canceled,2019-11-03 -City Hotel,0,12,2016,November,50,27,1,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,62.51,0,0,Check-Out,2019-10-04 -City Hotel,1,10,2016,March,16,25,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,147.4,0,2,Canceled,2018-11-02 -City Hotel,0,46,2015,December,51,27,0,2,2,1.0,0,BB,IRL,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,65.67,0,0,Check-Out,2018-06-02 -City Hotel,0,52,2017,August,7,15,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,140.43,0,2,Check-Out,2020-07-03 -Resort Hotel,1,69,2017,March,16,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,Non Refund,239.0,179.0,0,Transient,93.55,0,0,Canceled,2020-03-03 -Resort Hotel,1,50,2015,August,37,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,60.26,0,0,Canceled,2018-06-02 -City Hotel,0,63,2016,August,38,6,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,213.9,0,0,Canceled,2020-06-02 -Resort Hotel,1,117,2017,May,18,27,2,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,303.0,179.0,0,Transient,105.3,0,0,Canceled,2020-05-03 -Resort Hotel,0,19,2015,December,49,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,48.49,1,2,Check-Out,2018-11-02 -City Hotel,0,84,2016,December,44,7,2,3,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.01,0,1,Check-Out,2019-06-03 -City Hotel,0,87,2016,August,39,30,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.7,0,2,Check-Out,2019-07-04 -City Hotel,1,0,2015,September,45,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,60.99,0,0,Canceled,2018-09-02 -City Hotel,0,99,2016,September,32,19,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,D,1,No Deposit,12.0,179.0,0,Transient-Party,118.66,0,0,Check-Out,2019-06-03 -City Hotel,1,2,2016,February,9,12,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,75.68,0,0,Canceled,2018-11-02 -City Hotel,0,10,2016,June,28,2,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.73,0,3,Check-Out,2020-05-03 -Resort Hotel,0,2,2015,October,44,21,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,237.0,179.0,0,Group,31.71,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2016,September,44,16,2,4,2,0.0,0,BB,ITA,Online TA,Corporate,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,213.78,0,0,Check-Out,2019-09-03 -City Hotel,1,61,2017,June,25,26,0,2,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,10.0,179.0,0,Transient,206.94,0,0,Canceled,2019-04-03 -City Hotel,1,10,2016,June,28,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,16.0,45.0,0,Transient,62.36,0,0,Canceled,2019-03-04 -City Hotel,1,7,2015,April,18,31,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,119.17,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2015,August,30,4,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,E,0,No Deposit,251.0,179.0,0,Transient,198.76,1,2,Check-Out,2018-05-03 -City Hotel,1,35,2015,September,51,7,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,108.19,0,0,Canceled,2019-01-03 -City Hotel,0,1,2017,July,33,30,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,169.27,0,0,Check-Out,2020-05-03 -City Hotel,0,147,2016,September,43,10,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,124.11,0,1,Check-Out,2019-04-03 -City Hotel,0,1,2017,May,25,22,0,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,122.7,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,January,10,17,4,0,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,88.0,179.0,0,Transient,59.42,0,0,Check-Out,2020-03-03 -Resort Hotel,0,19,2016,January,4,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,62.37,0,0,Check-Out,2018-11-02 -City Hotel,1,46,2015,August,38,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.63,0,0,Canceled,2017-10-03 -City Hotel,1,297,2015,August,31,21,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,194.54,0,1,Canceled,2018-07-03 -Resort Hotel,0,157,2015,August,38,10,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Check-Out,2018-06-02 -City Hotel,0,11,2015,October,45,29,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,61.5,0,2,Check-Out,2017-11-02 -Resort Hotel,0,12,2016,December,50,19,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,238.0,0,Transient,35.78,0,0,Check-Out,2018-12-03 -City Hotel,1,110,2017,May,21,27,2,2,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,E,E,0,Non Refund,10.0,179.0,0,Transient,97.62,0,0,Canceled,2019-10-04 -City Hotel,0,1,2016,January,2,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,11.0,66.0,0,Transient,66.9,0,0,Check-Out,2018-11-02 -City Hotel,1,111,2017,March,11,28,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,6.0,179.0,41,Transient,66.38,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2015,September,36,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,84.73,0,1,Check-Out,2018-09-02 -City Hotel,0,57,2017,February,7,4,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,96.32,0,0,Check-Out,2020-01-04 -City Hotel,0,0,2016,February,9,29,0,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,1,105,2016,March,16,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.71,0,0,Canceled,2019-02-01 -Resort Hotel,0,137,2016,March,18,31,0,3,2,0.0,0,BB,PRT,Online TA,Direct,1,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,132.97,1,0,Check-Out,2018-12-03 -Resort Hotel,0,1,2017,July,32,6,0,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,139.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,16,2015,August,31,15,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,302.0,179.0,0,Transient-Party,97.53,0,0,Check-Out,2018-12-03 -City Hotel,0,11,2017,July,36,6,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.94,0,2,Check-Out,2020-01-04 -City Hotel,0,416,2016,June,44,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,77.36,0,0,Check-Out,2019-05-04 -Resort Hotel,0,16,2016,August,32,14,0,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,Refundable,14.0,179.0,0,Transient,41.26,0,0,Check-Out,2018-12-03 -Resort Hotel,0,7,2016,November,50,30,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,L,2,No Deposit,14.0,218.0,0,Transient,45.72,0,0,Check-Out,2019-11-03 -City Hotel,1,296,2017,August,37,16,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,8.0,179.0,0,Transient,70.48,0,0,Canceled,2020-07-03 -City Hotel,0,40,2016,July,30,30,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-06-03 -City Hotel,0,278,2016,October,42,8,0,5,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,76.78,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,February,10,2,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,74.19,0,1,Check-Out,2018-11-02 -Resort Hotel,0,3,2017,July,33,26,1,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,142.19,0,0,Check-Out,2019-05-04 -Resort Hotel,0,11,2016,October,43,28,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,130.51,1,0,Check-Out,2019-09-03 -City Hotel,0,16,2015,October,45,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,105.77,0,0,Check-Out,2018-08-03 -Resort Hotel,0,3,2016,August,33,16,0,1,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,132.67,1,2,Check-Out,2018-09-02 -City Hotel,1,57,2016,April,17,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,36.93,0,0,Canceled,2019-02-01 -Resort Hotel,0,242,2017,July,30,10,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,269.0,179.0,0,Contract,0.0,1,0,Check-Out,2020-04-02 -Resort Hotel,0,45,2015,September,43,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,17.35,0,0,Check-Out,2018-07-03 -Resort Hotel,1,65,2015,December,53,31,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,41.89,0,2,Canceled,2018-08-03 -Resort Hotel,0,2,2015,October,51,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,35.88,0,0,Check-Out,2018-10-03 -City Hotel,0,9,2015,October,46,10,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,60.31,1,1,Check-Out,2018-08-03 -Resort Hotel,0,146,2017,August,36,18,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,249.8,1,1,Check-Out,2020-07-03 -City Hotel,1,256,2016,March,16,26,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,121.12,0,0,Canceled,2018-11-02 -Resort Hotel,0,84,2016,June,27,28,0,2,2,0.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,1,C,A,1,No Deposit,244.0,179.0,0,Transient,75.78,0,0,Check-Out,2019-02-01 -City Hotel,1,56,2016,June,23,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,115.05,0,0,Canceled,2019-03-04 -Resort Hotel,0,14,2015,September,45,30,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,32.03,0,0,Check-Out,2018-08-03 -City Hotel,1,48,2017,June,28,30,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,64.14,0,0,Canceled,2020-04-02 -City Hotel,0,33,2015,July,32,28,2,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.25,0,1,Check-Out,2018-05-03 -City Hotel,0,30,2016,July,35,17,0,2,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,124.13,0,0,Check-Out,2019-07-04 -City Hotel,1,258,2016,June,29,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,40,Transient,107.92,0,0,Canceled,2018-12-03 -City Hotel,0,19,2015,August,43,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,130.1,0,0,Check-Out,2018-08-03 -Resort Hotel,0,269,2016,June,21,22,0,10,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,90.62,0,0,Check-Out,2019-06-03 -City Hotel,1,2,2015,October,45,20,0,1,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient,118.38,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2017,February,10,12,1,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,58.79,0,1,Check-Out,2020-02-01 -City Hotel,0,107,2017,March,28,2,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,121.63,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,October,43,10,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient-Party,61.36,0,0,Check-Out,2018-06-02 -City Hotel,1,41,2016,July,32,24,1,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,124.57,0,0,Canceled,2019-05-04 -City Hotel,0,119,2016,February,11,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,60,Transient,88.29,0,0,Check-Out,2019-01-03 -City Hotel,0,2,2016,June,27,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,16.0,45.0,0,Transient-Party,89.95,0,0,Check-Out,2019-06-03 -Resort Hotel,1,165,2015,October,52,9,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,253.0,179.0,0,Transient-Party,37.27,0,0,Canceled,2018-09-02 -City Hotel,1,258,2016,May,24,31,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.49,0,0,Canceled,2019-03-04 -Resort Hotel,0,1,2017,February,8,6,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,92.0,0,Transient,32.16,0,0,Check-Out,2019-11-03 -Resort Hotel,0,260,2017,July,32,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,236.0,179.0,0,Transient,128.92,0,1,Check-Out,2020-06-02 -Resort Hotel,1,326,2017,June,32,15,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,161.0,179.0,0,Transient,158.37,0,0,Canceled,2020-05-03 -Resort Hotel,0,49,2016,October,42,29,2,3,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,69.83,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2017,March,7,19,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.75,0,1,Check-Out,2020-03-03 -City Hotel,1,257,2017,May,22,21,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,156.47,0,0,Canceled,2020-02-01 -City Hotel,0,5,2017,January,5,25,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,66.47,0,1,Check-Out,2019-10-04 -Resort Hotel,0,28,2016,October,36,6,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,118.31,0,1,Check-Out,2019-09-03 -City Hotel,0,18,2017,May,21,5,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,110.41,0,1,Check-Out,2020-04-02 -City Hotel,1,15,2016,January,4,28,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,9.0,179.0,0,Transient,62.39,0,0,Canceled,2019-02-01 -City Hotel,1,150,2017,August,32,9,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.12,0,0,Canceled,2018-08-03 -City Hotel,1,25,2015,October,43,3,1,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,14.0,236.0,0,Transient,32.35,0,1,Canceled,2018-10-03 -City Hotel,0,44,2017,January,10,30,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.57,0,2,Check-Out,2019-10-04 -Resort Hotel,0,45,2016,July,18,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,F,2,No Deposit,240.0,179.0,0,Transient,132.6,1,1,Check-Out,2018-12-03 -City Hotel,1,193,2017,August,37,9,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.27,0,0,Canceled,2019-12-04 -City Hotel,0,0,2016,August,36,10,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.52,0,0,Check-Out,2019-06-03 -City Hotel,0,158,2017,August,36,12,1,2,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,123.65,0,1,Check-Out,2020-06-02 -Resort Hotel,1,26,2016,August,38,24,2,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,C,0,No Deposit,239.0,179.0,0,Transient,167.14,0,2,Canceled,2019-06-03 -Resort Hotel,0,10,2017,July,34,15,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient-Party,74.52,0,2,Check-Out,2020-06-02 -City Hotel,0,9,2017,May,22,20,1,0,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,I,0,No Deposit,186.0,179.0,0,Transient-Party,92.51,0,0,Check-Out,2020-04-02 -City Hotel,1,120,2017,August,22,24,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,227.42,0,0,Canceled,2020-03-03 -City Hotel,0,1,2017,June,20,13,0,1,2,0.0,0,BB,USA,Direct,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,141.06,0,3,Check-Out,2020-04-02 -City Hotel,0,4,2015,September,37,12,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient,61.62,0,0,Check-Out,2018-06-02 -City Hotel,0,267,2017,August,33,20,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.78,0,2,Canceled,2020-07-03 -City Hotel,0,269,2017,May,22,21,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,136.68,0,0,Check-Out,2020-03-03 -City Hotel,1,435,2016,October,46,18,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,62.93,0,0,Canceled,2018-08-03 -City Hotel,1,191,2016,March,10,19,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.57,0,0,Canceled,2019-01-03 -City Hotel,0,47,2017,April,17,13,0,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,86.7,0,1,Check-Out,2020-03-03 -City Hotel,0,160,2017,May,21,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,172.94,0,2,Check-Out,2020-04-02 -Resort Hotel,1,133,2016,February,10,11,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,283.0,179.0,0,Transient-Party,48.39,0,0,Canceled,2018-10-03 -City Hotel,0,93,2017,June,26,20,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,167.0,179.0,0,Transient-Party,188.45,0,0,Check-Out,2020-06-02 -City Hotel,1,391,2015,November,45,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,58.73,0,0,Canceled,2018-08-03 -Resort Hotel,0,197,2017,August,36,21,2,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-07-03 -Resort Hotel,1,3,2015,October,48,4,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,46.84,0,0,Canceled,2018-08-03 -City Hotel,0,13,2017,June,23,24,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.46,0,1,Check-Out,2020-04-02 -Resort Hotel,1,0,2016,May,28,28,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,Non Refund,14.0,179.0,40,Transient,90.04,0,0,Canceled,2019-03-04 -City Hotel,0,152,2016,May,33,29,1,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,129.79,1,1,Check-Out,2019-06-03 -City Hotel,0,306,2015,August,37,20,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,110.11,0,1,Check-Out,2018-08-03 -City Hotel,1,45,2017,January,10,20,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,73.82,0,0,Canceled,2019-11-03 -City Hotel,0,1,2015,September,36,6,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,98.77,0,0,Check-Out,2018-08-03 -City Hotel,0,98,2016,February,9,13,0,2,1,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,73.68,0,0,Check-Out,2018-10-03 -City Hotel,1,96,2016,June,33,23,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,40,Transient,127.95,0,0,Canceled,2020-03-03 -City Hotel,0,15,2017,March,3,9,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,16.0,79.0,0,Transient,62.13,0,0,Check-Out,2019-11-03 -City Hotel,0,154,2016,December,42,4,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.66,0,1,Check-Out,2019-11-03 -City Hotel,0,162,2016,October,43,23,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,34.55,0,2,Check-Out,2018-09-02 -City Hotel,0,149,2017,June,27,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.24,0,1,Check-Out,2020-06-02 -City Hotel,0,52,2016,May,23,10,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,81.7,0,0,Check-Out,2019-07-04 -Resort Hotel,0,19,2016,June,34,25,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,247.05,0,2,Check-Out,2019-06-03 -City Hotel,1,444,2016,May,24,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,59.89,0,0,Canceled,2019-08-04 -City Hotel,0,54,2017,June,36,26,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.01,0,2,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,October,41,9,1,1,1,0.0,0,BB,,Complementary,Direct,1,0,0,A,F,1,No Deposit,18.0,46.0,0,Transient,0.0,1,0,Check-Out,2019-09-03 -City Hotel,0,7,2017,March,17,27,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,198.39,0,3,Check-Out,2020-01-04 -City Hotel,0,21,2016,October,45,21,2,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,85.48,0,0,Check-Out,2019-08-04 -Resort Hotel,0,324,2017,June,23,9,3,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Contract,82.27,0,0,Check-Out,2020-07-03 -Resort Hotel,0,3,2016,October,44,20,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,37.4,0,3,Check-Out,2019-07-04 -City Hotel,1,318,2015,July,38,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,145.23,0,0,Canceled,2017-12-03 -Resort Hotel,0,3,2015,December,50,29,0,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,11.0,179.0,0,Transient,39.24,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,January,11,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,1,No Deposit,19.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2017,May,19,20,0,1,1,0.0,0,BB,FRA,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.69,0,1,Check-Out,2020-04-02 -Resort Hotel,0,57,2017,February,10,5,2,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,43.52,0,1,Check-Out,2018-10-03 -Resort Hotel,1,158,2016,June,45,9,2,3,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.77,0,0,Canceled,2019-06-03 -City Hotel,0,1,2017,February,11,4,0,1,1,2.0,0,BB,PRT,Direct,Corporate,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,112.1,1,0,Check-Out,2019-12-04 -City Hotel,0,2,2017,February,9,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,1,8,2016,March,9,21,0,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,120.73,0,2,No-Show,2018-12-03 -Resort Hotel,0,261,2016,September,36,16,0,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,107.46,1,3,Check-Out,2019-06-03 -City Hotel,0,151,2016,June,25,2,0,3,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,108.54,0,0,Check-Out,2019-01-03 -City Hotel,0,24,2016,September,35,2,0,1,1,0.0,0,BB,,Online TA,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,2.25,0,1,Check-Out,2019-08-04 -City Hotel,0,104,2015,November,44,22,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,233.0,0,Transient,95.7,0,0,Check-Out,2018-08-03 -City Hotel,0,16,2016,September,37,21,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.44,0,2,Check-Out,2019-09-03 -Resort Hotel,0,243,2016,March,10,9,2,3,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,1,No Deposit,11.0,222.0,0,Transient-Party,27.67,0,0,Check-Out,2019-03-04 -City Hotel,0,4,2016,November,43,9,0,1,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,130.36,0,0,Check-Out,2019-11-03 -City Hotel,1,205,2017,May,21,6,0,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,158.21,0,3,Canceled,2020-04-02 -City Hotel,1,109,2016,August,29,1,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.31,0,0,Canceled,2019-01-03 -Resort Hotel,0,46,2017,July,32,15,3,10,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,187.0,179.0,0,Transient,204.48,0,0,Check-Out,2020-05-03 -Resort Hotel,1,203,2016,July,32,31,0,4,3,1.0,0,BB,USA,Direct,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,158.74,0,2,Canceled,2019-10-04 -City Hotel,1,10,2017,January,53,23,1,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.23,0,2,No-Show,2019-11-03 -City Hotel,0,5,2016,July,31,16,1,2,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,62.27,0,1,Check-Out,2018-06-02 -Resort Hotel,0,47,2017,July,29,19,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,180.42,0,2,Check-Out,2020-03-03 -City Hotel,1,1,2017,March,15,6,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.89,0,0,Canceled,2019-04-03 -Resort Hotel,0,12,2015,September,42,9,2,1,1,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,74.61,0,0,Check-Out,2018-08-03 -Resort Hotel,0,47,2017,August,39,2,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,247.0,179.0,0,Transient,214.76,0,1,Check-Out,2020-07-03 -Resort Hotel,0,46,2016,December,51,29,1,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,D,D,1,No Deposit,190.0,179.0,0,Transient,85.52,0,0,Check-Out,2018-12-03 -City Hotel,0,189,2017,June,25,15,2,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,150.92,0,2,Check-Out,2019-03-04 -City Hotel,1,0,2016,August,37,1,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.82,0,0,No-Show,2019-07-04 -Resort Hotel,1,27,2016,April,26,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,118.17,0,1,No-Show,2019-03-04 -Resort Hotel,0,110,2016,June,45,12,4,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,182.44,0,3,Check-Out,2019-02-01 -Resort Hotel,1,40,2017,July,38,25,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,167.0,179.0,0,Transient,137.84,0,2,Canceled,2019-06-03 -City Hotel,0,33,2017,June,17,22,2,4,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,3,No Deposit,13.0,179.0,0,Transient,114.65,1,3,Check-Out,2020-05-03 -Resort Hotel,0,97,2016,May,31,5,2,4,2,2.0,0,BB,SWE,Direct,TA/TO,0,0,0,G,G,2,No Deposit,13.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-02-01 -Resort Hotel,0,160,2016,May,23,28,4,10,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,E,E,0,No Deposit,333.0,179.0,0,Transient,122.69,0,0,Check-Out,2019-12-04 -City Hotel,1,143,2017,June,26,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,213.0,179.0,0,Transient,100.46,0,0,Canceled,2019-03-04 -City Hotel,0,29,2016,October,44,16,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,68.96,0,3,Check-Out,2019-08-04 -City Hotel,0,139,2017,February,11,26,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,64.69,0,1,Check-Out,2020-04-02 -City Hotel,0,263,2016,May,29,28,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.23,0,1,Check-Out,2019-08-04 -City Hotel,0,51,2015,September,40,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,80.0,179.0,0,Transient-Party,60.83,0,0,Check-Out,2018-08-03 -City Hotel,0,32,2016,January,22,20,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,92.43,0,3,Check-Out,2019-11-03 -Resort Hotel,0,41,2015,December,53,26,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,125.78,0,2,Check-Out,2018-11-02 -Resort Hotel,0,44,2016,January,3,28,0,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,64.39,0,0,Check-Out,2019-11-03 -Resort Hotel,1,3,2017,February,8,5,2,1,2,0.0,0,HB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,47.49,0,0,Canceled,2020-03-03 -City Hotel,0,99,2017,August,25,5,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,34.0,179.0,0,Transient-Party,169.22,1,0,Check-Out,2020-06-02 -Resort Hotel,0,151,2016,March,23,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,66.98,0,0,Check-Out,2019-04-03 -Resort Hotel,0,28,2016,February,12,24,0,1,1,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,F,1,No Deposit,341.0,179.0,0,Transient-Party,34.48,0,0,Check-Out,2019-11-03 -Resort Hotel,0,39,2016,July,49,28,0,5,3,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,238.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-04-03 -Resort Hotel,1,95,2015,December,52,15,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,38.02,0,0,Canceled,2018-11-02 -Resort Hotel,0,132,2015,August,32,16,0,3,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,229.27,1,2,Check-Out,2018-06-02 -Resort Hotel,1,94,2016,March,11,6,1,3,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,D,0,Non Refund,11.0,229.0,75,Transient,69.03,0,0,Canceled,2019-11-03 -Resort Hotel,0,48,2015,December,53,30,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,244.0,179.0,0,Transient,39.7,0,2,Check-Out,2019-01-03 -City Hotel,0,51,2016,August,30,10,2,5,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,121.38,0,1,Check-Out,2019-07-04 -Resort Hotel,1,159,2015,September,44,17,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,48.64,0,0,Check-Out,2018-05-03 -Resort Hotel,1,87,2016,August,36,20,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,237.0,179.0,0,Transient,178.95,0,0,Canceled,2019-10-04 -City Hotel,0,1,2017,August,34,19,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.01,0,1,Check-Out,2020-06-02 -City Hotel,1,21,2017,May,22,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,222.46,0,2,Canceled,2020-03-03 -Resort Hotel,0,149,2017,June,26,2,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.02,0,1,Check-Out,2020-05-03 -City Hotel,0,15,2016,October,45,24,1,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,E,F,0,No Deposit,13.0,179.0,0,Transient,122.12,0,0,Check-Out,2019-03-04 -City Hotel,0,24,2016,April,18,28,0,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,117.57,0,2,Check-Out,2019-02-01 -City Hotel,1,269,2016,October,44,18,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,133.64,0,2,Canceled,2018-07-03 -Resort Hotel,0,38,2017,May,22,7,2,0,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-04-02 -City Hotel,0,88,2016,May,22,18,2,5,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient-Party,44.14,0,0,Check-Out,2019-03-04 -City Hotel,1,54,2016,March,10,27,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,59.97,0,3,Canceled,2018-12-03 -City Hotel,0,0,2016,June,35,13,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.08,0,2,Check-Out,2019-06-03 -Resort Hotel,0,23,2016,August,35,10,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient-Party,204.66,1,1,Check-Out,2019-06-03 -Resort Hotel,0,65,2016,June,21,30,0,2,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,83.91,0,0,Check-Out,2019-02-01 -Resort Hotel,0,10,2016,November,43,15,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,284.0,179.0,0,Transient,61.61,0,1,Check-Out,2019-08-04 -Resort Hotel,0,149,2015,October,41,8,1,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,252.0,179.0,0,Transient,100.42,0,0,Check-Out,2018-05-03 -Resort Hotel,0,274,2016,June,26,12,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,320.0,179.0,0,Transient,46.28,0,0,Check-Out,2019-05-04 -City Hotel,0,3,2016,June,25,14,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,103.69,0,0,Check-Out,2019-04-03 -Resort Hotel,0,2,2016,October,45,15,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,93.0,179.0,0,Contract,30.27,0,0,Check-Out,2019-02-01 -City Hotel,0,102,2016,April,16,6,2,5,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,9.0,179.0,0,Transient,91.09,0,2,Canceled,2019-08-04 -City Hotel,0,38,2016,December,52,28,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,115.06,0,0,Check-Out,2019-10-04 -City Hotel,0,84,2016,September,44,6,1,2,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,93.02,0,2,Check-Out,2019-09-03 -City Hotel,1,266,2016,May,34,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,128.27,0,0,Canceled,2019-02-01 -Resort Hotel,1,10,2017,February,9,6,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,F,0,No Deposit,17.0,64.0,0,Transient,66.01,0,0,Canceled,2020-03-03 -City Hotel,0,1,2017,February,7,25,0,1,1,0.0,0,SC,,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.78,0,0,Check-Out,2020-01-04 -Resort Hotel,1,23,2015,December,50,31,2,5,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,305.0,179.0,0,Transient,35.68,0,0,No-Show,2018-08-03 -City Hotel,0,237,2015,July,33,9,0,2,2,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient,59.74,0,0,Check-Out,2018-06-02 -Resort Hotel,0,96,2016,October,26,9,4,5,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,67.12,0,0,Check-Out,2019-08-04 -Resort Hotel,1,147,2015,October,45,23,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,237.0,179.0,0,Transient,33.5,0,0,Canceled,2018-08-03 -City Hotel,0,7,2017,May,22,21,2,6,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,D,2,No Deposit,13.0,179.0,0,Transient,169.18,0,0,Check-Out,2020-03-03 -City Hotel,1,91,2016,September,35,21,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,201.17,0,0,Canceled,2018-11-02 -City Hotel,0,12,2016,August,38,21,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,155.42,0,0,Check-Out,2020-07-03 -City Hotel,1,183,2017,June,21,23,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.42,0,1,Canceled,2019-11-03 -City Hotel,0,86,2016,August,31,10,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,110.51,0,0,Check-Out,2019-06-03 -City Hotel,1,40,2016,October,45,18,1,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.92,0,0,No-Show,2019-10-04 -City Hotel,1,38,2016,March,11,27,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.4,0,1,Canceled,2020-01-04 -City Hotel,0,147,2016,February,3,5,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,16,Transient-Party,105.58,0,0,Check-Out,2018-11-02 -Resort Hotel,1,14,2017,July,37,25,2,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,198.57,0,1,Canceled,2020-06-02 -City Hotel,0,30,2016,August,32,27,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,118.2,0,2,Check-Out,2019-02-01 -City Hotel,1,69,2017,May,20,6,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,29.0,179.0,0,Transient,61.11,0,0,Canceled,2020-02-01 -Resort Hotel,0,11,2016,April,17,18,2,5,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,1,D,D,0,No Deposit,246.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-02-01 -City Hotel,0,99,2015,July,33,23,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,158.04,0,0,Check-Out,2018-05-03 -Resort Hotel,0,1,2016,May,10,9,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,46.2,0,1,Check-Out,2019-02-01 -Resort Hotel,0,271,2016,October,43,2,1,5,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,251.0,179.0,0,Transient,234.42,0,0,Check-Out,2019-05-04 -City Hotel,0,23,2017,July,29,9,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,165.99,0,1,Check-Out,2020-06-02 -City Hotel,0,41,2016,October,46,28,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,12.0,179.0,0,Transient,158.08,0,0,Check-Out,2019-09-03 -City Hotel,1,218,2016,May,21,15,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,104.43,0,0,Canceled,2020-02-01 -City Hotel,1,113,2016,June,23,17,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,168.0,179.0,0,Transient,99.73,0,0,Canceled,2019-02-01 -City Hotel,1,11,2016,October,44,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,155.56,0,1,Canceled,2019-07-04 -City Hotel,1,112,2017,August,34,6,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,A,2,No Deposit,16.0,179.0,0,Transient,146.03,0,0,Canceled,2020-05-03 -City Hotel,0,153,2016,December,11,18,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient-Party,153.9,0,0,Check-Out,2019-02-01 -City Hotel,0,155,2016,June,25,22,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,162.36,1,2,Check-Out,2019-05-04 -Resort Hotel,1,259,2016,June,23,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,245.0,179.0,0,Transient,43.16,0,0,Canceled,2019-02-01 -City Hotel,1,377,2017,May,21,3,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,92.48,0,0,Canceled,2019-12-04 -City Hotel,0,45,2016,June,27,15,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,152.2,0,1,Check-Out,2019-04-03 -City Hotel,1,40,2016,January,4,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.08,0,1,Canceled,2018-10-03 -Resort Hotel,0,411,2017,June,32,15,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,119.68,0,1,Check-Out,2020-06-02 -City Hotel,0,42,2017,August,37,6,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,167.05,0,0,Check-Out,2020-07-03 -Resort Hotel,0,10,2016,October,43,30,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,181.0,179.0,0,Transient-Party,58.53,0,0,Check-Out,2019-05-04 -City Hotel,1,17,2016,October,45,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,61.15,0,0,Canceled,2019-06-03 -Resort Hotel,0,236,2016,March,11,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,75,Transient-Party,63.26,1,0,Check-Out,2019-10-04 -City Hotel,0,48,2016,April,18,12,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,238.0,0,Transient,33.6,1,0,Check-Out,2019-12-04 -Resort Hotel,0,393,2016,October,43,13,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,39.8,0,2,Check-Out,2019-08-04 -City Hotel,1,123,2016,June,32,30,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,69.86,0,0,Canceled,2019-02-01 -City Hotel,0,39,2016,March,10,22,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,74.0,179.0,40,Transient-Party,61.95,0,0,Check-Out,2019-02-01 -Resort Hotel,0,55,2015,September,43,28,2,5,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,E,E,3,No Deposit,359.0,179.0,0,Transient,79.66,0,1,Check-Out,2018-08-03 -City Hotel,1,34,2016,February,8,11,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,73.41,0,0,Canceled,2018-11-02 -City Hotel,1,14,2015,October,45,14,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,14.0,227.0,0,Transient,27.05,0,0,Canceled,2018-08-03 -City Hotel,1,167,2016,September,45,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.51,0,1,Canceled,2019-07-04 -Resort Hotel,0,35,2016,April,18,21,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,75.88,0,1,Check-Out,2019-02-01 -City Hotel,0,155,2016,April,26,2,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,78.8,0,0,Check-Out,2019-02-01 -Resort Hotel,1,4,2017,March,11,9,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,179.01,0,1,Canceled,2020-02-01 -Resort Hotel,0,0,2017,February,8,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,18.0,225.0,0,Transient,1.95,0,0,Check-Out,2020-01-04 -City Hotel,0,4,2016,August,36,14,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-06-03 -City Hotel,0,44,2016,August,36,23,1,4,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,174.0,179.0,0,Transient,124.69,0,0,Check-Out,2019-06-03 -City Hotel,1,38,2015,August,36,8,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,122.3,0,0,Canceled,2018-08-03 -Resort Hotel,0,17,2015,December,52,30,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,47.1,0,0,Check-Out,2018-11-02 -City Hotel,0,62,2015,December,53,26,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,37.0,179.0,0,Transient-Party,81.36,0,0,Check-Out,2018-09-02 -Resort Hotel,0,120,2017,April,19,11,2,5,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,378.0,179.0,0,Transient,155.86,1,2,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,March,16,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,331.0,0,Transient,62.57,0,0,Check-Out,2019-06-03 -City Hotel,0,50,2017,August,37,25,2,3,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,2,No Deposit,12.0,179.0,0,Transient,229.91,0,0,Canceled,2019-10-04 -City Hotel,1,14,2016,September,45,18,0,1,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,149.75,0,0,Canceled,2019-06-03 -City Hotel,0,1,2015,October,44,13,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,58.46,0,0,Check-Out,2018-08-03 -City Hotel,1,407,2016,June,27,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.75,0,0,Canceled,2018-06-02 -City Hotel,1,85,2015,September,37,13,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.78,0,0,Canceled,2019-08-04 -City Hotel,1,273,2017,November,52,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,E,A,0,Non Refund,11.0,179.0,0,Transient,82.44,0,0,Canceled,2019-09-03 -Resort Hotel,1,46,2017,February,10,27,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,113.33,0,1,Canceled,2020-01-04 -Resort Hotel,0,7,2016,January,4,23,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,253.0,179.0,0,Transient,0.49,0,0,Check-Out,2018-11-02 -City Hotel,1,54,2015,October,51,9,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,17,Transient,96.94,0,0,Canceled,2018-11-02 -City Hotel,1,89,2016,October,45,13,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,285.0,179.0,0,Transient,72.94,0,0,Canceled,2019-06-03 -Resort Hotel,0,0,2017,June,32,5,1,5,1,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,E,E,2,No Deposit,175.0,179.0,0,Transient,101.68,0,0,Check-Out,2020-06-02 -City Hotel,0,5,2016,November,50,5,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,82.31,0,0,Check-Out,2019-10-04 -City Hotel,1,14,2016,February,10,7,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.95,0,0,Canceled,2019-02-01 -Resort Hotel,0,2,2017,March,11,14,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,60.48,0,0,Check-Out,2020-02-01 -City Hotel,1,233,2016,May,38,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,99.52,0,1,Canceled,2019-02-01 -City Hotel,0,89,2016,March,11,2,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.17,0,2,Check-Out,2019-03-04 -City Hotel,0,18,2016,October,45,16,0,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.47,0,1,Check-Out,2018-12-03 -City Hotel,0,1,2016,October,44,20,1,1,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,C,0,No Deposit,16.0,222.0,0,Transient,38.03,0,0,Check-Out,2019-09-03 -City Hotel,0,35,2017,June,22,20,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,106.95,0,0,Check-Out,2020-03-03 -City Hotel,0,29,2017,August,37,18,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,227.55,0,1,Check-Out,2020-06-02 -City Hotel,1,102,2017,February,16,25,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,100.91,0,2,Canceled,2019-10-04 -City Hotel,1,16,2016,August,35,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,83.15,0,1,Canceled,2019-05-04 -Resort Hotel,0,43,2016,April,22,9,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,H,0,No Deposit,250.0,179.0,0,Transient,93.42,1,1,Check-Out,2019-02-01 -City Hotel,1,398,2016,October,28,6,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,1,Non Refund,11.0,179.0,0,Transient,87.27,0,0,Canceled,2017-12-03 -City Hotel,0,40,2015,November,51,5,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,115.89,0,1,Check-Out,2018-11-02 -City Hotel,1,63,2017,May,24,29,1,4,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,2,No Deposit,13.0,179.0,0,Transient,226.09,0,0,Canceled,2020-03-03 -City Hotel,0,1,2017,July,26,26,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,16.0,185.0,0,Transient,3.18,0,0,Check-Out,2020-06-02 -Resort Hotel,0,292,2017,July,28,2,4,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,318.0,179.0,0,Transient,194.83,0,1,Check-Out,2020-06-02 -Resort Hotel,0,8,2016,November,51,31,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,67.36,0,1,Check-Out,2019-11-03 -City Hotel,0,4,2015,January,6,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,61.46,0,0,Check-Out,2018-12-03 -City Hotel,1,87,2017,July,26,28,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,172.21,0,1,Canceled,2020-03-03 -City Hotel,0,21,2015,August,35,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,119.77,0,0,Check-Out,2018-08-03 -City Hotel,0,153,2015,August,32,21,0,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,97.24,0,0,Check-Out,2018-08-03 -Resort Hotel,0,50,2016,June,27,29,1,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,72.6,0,0,Check-Out,2019-04-03 -Resort Hotel,0,269,2017,June,26,28,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient,65.82,0,0,Check-Out,2020-04-02 -Resort Hotel,0,314,2016,October,44,30,2,4,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-07-04 -Resort Hotel,0,12,2015,August,36,30,2,1,1,0.0,0,HB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient-Party,153.39,0,0,Check-Out,2018-05-03 -City Hotel,1,260,2017,June,28,26,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.81,0,0,Canceled,2020-01-04 -City Hotel,0,4,2016,June,26,15,0,2,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,70.56,0,0,Check-Out,2019-01-03 -City Hotel,0,230,2016,September,42,4,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,113.36,0,0,Check-Out,2019-04-03 -Resort Hotel,0,195,2017,May,15,31,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,59.73,0,0,Check-Out,2020-04-02 -City Hotel,0,15,2016,August,33,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.99,0,1,Check-Out,2019-04-03 -City Hotel,0,40,2016,June,27,14,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,169.79,0,0,Check-Out,2019-03-04 -Resort Hotel,0,32,2016,July,32,18,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,239.0,179.0,0,Transient,152.19,1,1,Check-Out,2019-07-04 -City Hotel,0,126,2017,June,26,20,0,2,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,G,F,0,No Deposit,17.0,179.0,0,Transient,171.07,0,3,Check-Out,2020-06-02 -City Hotel,0,20,2017,June,22,28,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.31,0,1,Check-Out,2020-04-02 -City Hotel,1,321,2017,May,21,18,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,9.0,179.0,0,Transient,207.96,0,2,Canceled,2020-02-01 -Resort Hotel,0,97,2016,April,18,2,1,0,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,317.0,179.0,0,Transient-Party,58.53,0,0,Check-Out,2019-04-03 -City Hotel,0,18,2016,October,20,23,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,101.27,0,0,Check-Out,2019-09-03 -City Hotel,1,415,2017,August,35,20,3,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,263.0,179.0,0,Transient-Party,62.96,0,0,Canceled,2020-06-02 -City Hotel,0,137,2016,October,40,16,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,296.0,179.0,0,Transient-Party,108.59,0,1,Check-Out,2019-09-03 -Resort Hotel,0,335,2016,June,35,15,0,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,158.32,0,1,Check-Out,2019-06-03 -City Hotel,1,45,2017,June,32,24,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,223.08,0,0,Canceled,2020-03-03 -Resort Hotel,0,5,2017,January,4,1,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,L,G,3,No Deposit,246.0,179.0,0,Transient,47.01,0,0,Check-Out,2019-09-03 -City Hotel,1,11,2017,March,15,17,2,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.18,0,0,No-Show,2020-02-01 -City Hotel,0,38,2017,May,23,31,1,1,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,2,No Deposit,181.0,179.0,0,Transient,87.29,0,0,Check-Out,2020-04-02 -City Hotel,0,76,2016,April,49,16,2,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,62.52,0,2,Check-Out,2019-11-03 -City Hotel,0,114,2017,March,23,9,1,3,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,104.46,0,3,Check-Out,2019-11-03 -Resort Hotel,0,92,2017,February,11,10,0,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,64.18,0,0,Check-Out,2019-11-03 -City Hotel,0,132,2016,June,29,28,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,45.0,0,Transient,204.24,0,0,Check-Out,2019-07-04 -City Hotel,1,0,2017,March,9,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.07,0,0,Check-Out,2020-04-02 -City Hotel,0,3,2016,August,35,12,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,D,D,0,No Deposit,189.0,179.0,0,Transient,4.11,0,0,Check-Out,2019-11-03 -Resort Hotel,0,10,2017,March,17,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,222.0,0,Transient,43.13,0,0,Check-Out,2020-03-03 -City Hotel,1,100,2016,August,38,15,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,152.53,0,2,Canceled,2019-06-03 -City Hotel,0,94,2017,April,17,21,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient-Party,99.94,0,1,Check-Out,2020-03-03 -City Hotel,0,22,2017,April,20,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,69.62,0,2,Check-Out,2020-03-03 -City Hotel,0,20,2015,December,51,24,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,111.16,0,2,Check-Out,2019-08-04 -City Hotel,0,19,2016,August,34,20,0,1,1,0.0,0,BB,ISR,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,138.39,1,1,Check-Out,2020-07-03 -Resort Hotel,1,29,2016,March,14,30,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,126.97,0,0,Canceled,2019-02-01 -City Hotel,1,114,2015,October,44,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.99,0,0,Canceled,2018-09-02 -City Hotel,1,50,2015,April,15,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,40,Transient-Party,86.88,0,0,Canceled,2018-12-03 -City Hotel,1,134,2017,June,27,2,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.81,0,1,No-Show,2020-04-02 -City Hotel,1,213,2016,December,38,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,172.76,0,0,Canceled,2019-10-04 -City Hotel,1,138,2016,March,16,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient,36.95,0,0,Canceled,2019-02-01 -City Hotel,1,122,2016,May,26,19,2,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient,81.12,0,0,Canceled,2019-05-04 -City Hotel,0,1,2016,May,46,7,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,170.0,0,Transient,77.42,0,0,Check-Out,2018-12-03 -City Hotel,0,44,2015,August,32,4,1,1,3,2.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,118.69,0,2,Check-Out,2019-09-03 -City Hotel,1,62,2016,March,9,25,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.61,0,0,Canceled,2018-11-02 -Resort Hotel,1,20,2017,May,22,22,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient-Party,148.32,0,1,Canceled,2020-03-03 -Resort Hotel,0,44,2016,April,23,9,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,C,C,0,No Deposit,325.0,179.0,0,Transient-Party,0.0,1,1,Check-Out,2020-03-03 -City Hotel,0,34,2016,December,53,10,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,76.44,0,2,Check-Out,2019-06-03 -City Hotel,0,2,2016,June,22,5,0,1,1,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.49,0,1,Check-Out,2019-03-04 -City Hotel,0,8,2015,September,44,29,1,2,1,0.0,0,BB,USA,Online TA,Corporate,0,0,0,A,A,0,No Deposit,13.0,254.0,0,Transient-Party,60.67,0,0,Check-Out,2018-09-02 -Resort Hotel,1,11,2015,August,31,10,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,85.0,179.0,0,Transient,46.3,0,2,Canceled,2018-12-03 -City Hotel,0,27,2017,July,36,29,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,187.87,0,1,Check-Out,2020-06-02 -Resort Hotel,0,159,2016,December,53,3,4,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,118.12,0,0,Check-Out,2018-12-03 -City Hotel,0,12,2016,May,24,6,0,3,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,227.27,0,0,Check-Out,2019-06-03 -City Hotel,1,161,2017,May,26,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.12,0,1,Canceled,2020-03-03 -Resort Hotel,0,42,2015,November,50,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,70.48,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,March,9,5,2,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,270.0,0,Transient,0.84,0,0,Check-Out,2019-12-04 -City Hotel,0,13,2017,June,27,16,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,175.42,0,2,Check-Out,2020-04-02 -Resort Hotel,0,44,2015,November,50,24,2,6,2,0.0,0,HB,PRT,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,40.19,0,0,Check-Out,2018-08-03 -City Hotel,1,362,2017,May,21,9,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,176.0,179.0,0,Transient,118.0,0,0,Canceled,2020-02-01 -City Hotel,1,62,2015,July,32,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Transient,61.44,0,0,Canceled,2018-08-03 -City Hotel,0,243,2015,September,35,16,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Contract,119.71,0,1,Check-Out,2018-07-03 -City Hotel,1,300,2015,September,43,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,63,Contract,63.17,0,0,Canceled,2018-07-03 -City Hotel,1,290,2016,September,44,18,2,3,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,127.39,0,0,Canceled,2019-07-04 -City Hotel,1,93,2016,December,53,30,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,93.16,0,2,Canceled,2019-01-03 -Resort Hotel,0,0,2015,December,52,27,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,33.48,0,3,Check-Out,2019-10-04 -City Hotel,1,152,2016,December,43,21,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,19,Transient,97.23,0,0,Canceled,2018-11-02 -Resort Hotel,1,295,2017,July,31,31,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,108.86,0,1,Canceled,2020-04-02 -Resort Hotel,0,16,2015,December,45,28,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,38.62,0,0,Check-Out,2019-01-03 -Resort Hotel,0,18,2015,October,44,22,2,4,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.98,1,0,Check-Out,2018-06-02 -Resort Hotel,0,48,2017,July,31,28,2,5,2,1.0,0,BB,BEL,Direct,TA/TO,0,0,0,G,E,2,No Deposit,245.0,179.0,0,Transient,236.43,0,2,Check-Out,2020-06-02 -City Hotel,0,93,2016,March,11,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,61.47,0,0,Check-Out,2019-02-01 -City Hotel,0,33,2015,October,42,9,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,158.13,0,2,Check-Out,2018-08-03 -Resort Hotel,1,60,2016,February,13,9,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,D,D,2,No Deposit,305.0,179.0,0,Transient-Party,45.56,0,0,Canceled,2018-12-03 -City Hotel,1,151,2017,May,22,4,2,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Contract,82.23,0,0,Canceled,2020-02-01 -City Hotel,0,0,2017,March,10,30,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,61.69,0,0,Check-Out,2019-10-04 -Resort Hotel,0,36,2017,March,9,10,1,3,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,D,0,No Deposit,182.0,241.0,0,Transient,107.06,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,February,9,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,33.92,0,0,Check-Out,2019-10-04 -City Hotel,0,12,2016,August,39,29,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,197.89,1,0,Check-Out,2019-05-04 -Resort Hotel,0,237,2015,September,34,23,0,2,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,48.92,0,0,Check-Out,2018-07-03 -City Hotel,1,286,2016,May,37,9,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.6,0,0,Canceled,2018-03-03 -City Hotel,0,358,2017,April,18,29,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,126.69,0,1,Check-Out,2020-04-02 -Resort Hotel,0,16,2017,June,28,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,124.42,0,2,Check-Out,2020-06-02 -Resort Hotel,0,50,2016,January,4,26,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient,59.3,0,0,Check-Out,2019-10-04 -Resort Hotel,0,10,2015,August,36,29,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,192.29,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2015,October,44,9,0,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,33.41,0,0,Check-Out,2018-09-02 -City Hotel,0,31,2015,October,46,17,0,3,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,B,1,No Deposit,11.0,233.0,0,Transient-Party,73.08,0,0,Check-Out,2018-09-02 -City Hotel,1,173,2015,September,42,4,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Refundable,8.0,179.0,0,Transient,75.44,0,0,Canceled,2018-07-03 -City Hotel,0,38,2016,August,26,17,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,136.8,0,3,Check-Out,2019-03-04 -Resort Hotel,1,1,2017,February,9,20,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,D,0,No Deposit,14.0,85.0,0,Transient,41.65,0,0,Canceled,2019-11-03 -City Hotel,0,89,2016,July,30,26,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,126.71,0,0,Check-Out,2019-05-04 -City Hotel,1,96,2015,December,53,26,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,75.37,0,0,Canceled,2018-11-02 -City Hotel,1,0,2016,August,36,4,0,3,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,85.63,0,1,Canceled,2019-07-04 -City Hotel,0,40,2016,February,9,15,0,5,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,90.38,0,1,Check-Out,2019-02-01 -Resort Hotel,1,106,2017,July,31,15,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,63.45,0,2,Canceled,2019-11-03 -City Hotel,0,46,2017,March,17,6,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,211.38,1,1,Check-Out,2020-04-02 -Resort Hotel,0,261,2016,October,45,14,3,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,97.94,0,0,Check-Out,2019-08-04 -City Hotel,0,14,2016,June,28,6,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.99,0,1,Check-Out,2019-05-04 -City Hotel,0,156,2017,July,34,20,1,0,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,C,2,No Deposit,13.0,179.0,0,Transient,187.56,0,0,Check-Out,2020-06-02 -City Hotel,0,17,2016,June,27,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,52.0,0,Transient,96.6,0,0,Check-Out,2019-08-04 -City Hotel,1,23,2017,April,16,10,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.42,0,0,Canceled,2020-05-03 -City Hotel,1,198,2017,May,22,24,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,157.0,179.0,0,Transient,72.68,0,0,Canceled,2019-11-03 -City Hotel,1,110,2017,July,31,21,2,5,2,1.0,0,SC,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.03,0,2,Canceled,2020-05-03 -City Hotel,0,7,2017,June,34,13,1,1,3,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,87.26,0,0,Check-Out,2020-03-03 -City Hotel,0,3,2017,January,4,28,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.0,0,2,Check-Out,2019-10-04 -City Hotel,1,42,2016,February,10,9,0,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.03,0,0,Canceled,2018-10-03 -Resort Hotel,1,47,2016,October,41,15,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,1.0,179.0,0,Transient-Party,127.26,0,0,Canceled,2018-08-03 -Resort Hotel,0,293,2016,June,26,10,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,74.06,0,0,Check-Out,2019-02-01 -City Hotel,0,6,2017,June,26,20,0,1,2,0.0,0,BB,BEL,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,93.74,0,0,Check-Out,2020-03-03 -City Hotel,1,117,2016,July,35,21,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,99.42,0,0,Canceled,2019-07-04 -Resort Hotel,1,360,2016,September,35,14,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,39.53,0,1,Check-Out,2018-06-02 -City Hotel,0,2,2015,July,35,20,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,127.08,0,2,Check-Out,2018-06-02 -Resort Hotel,1,199,2017,July,25,31,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,207.85,0,1,Canceled,2019-03-04 -City Hotel,0,21,2017,August,32,24,0,1,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,62.29,0,2,Check-Out,2020-06-02 -City Hotel,1,62,2016,August,37,13,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.74,0,2,Canceled,2019-09-03 -City Hotel,1,38,2016,February,9,25,0,1,2,2.0,0,BB,USA,Complementary,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,184.75,0,0,Canceled,2018-12-03 -City Hotel,0,31,2015,July,11,15,2,3,2,0.0,0,BB,PRT,Undefined,Undefined,1,1,0,B,B,0,No Deposit,13.0,70.0,0,Transient-Party,55.69,0,1,Check-Out,2019-01-03 -City Hotel,1,11,2017,March,10,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -City Hotel,0,23,2016,October,43,7,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.21,1,2,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,October,36,6,0,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,120.24,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2015,October,44,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,H,I,1,No Deposit,244.0,179.0,0,Transient,0.09,1,2,Check-Out,2019-08-04 -City Hotel,1,1,2016,June,26,19,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,1,A,A,0,No Deposit,7.0,179.0,0,Transient,115.64,0,0,No-Show,2019-04-03 -City Hotel,0,17,2017,May,22,21,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.95,0,1,Check-Out,2020-04-02 -City Hotel,0,45,2016,January,51,2,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,70.06,0,0,Check-Out,2018-10-03 -City Hotel,1,13,2016,August,38,12,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,No Deposit,14.0,179.0,0,Transient,34.63,0,0,Canceled,2018-12-03 -City Hotel,0,11,2017,January,3,13,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,112.83,0,1,Check-Out,2019-11-03 -Resort Hotel,0,105,2015,December,53,28,1,1,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,243.0,179.0,0,Transient,100.93,0,3,Check-Out,2019-08-04 -Resort Hotel,0,37,2015,December,36,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Group,64.33,0,1,Check-Out,2018-11-02 -City Hotel,1,164,2017,April,16,30,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,101.9,0,0,Canceled,2019-11-03 -City Hotel,1,432,2017,July,11,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.04,0,0,Canceled,2018-06-02 -City Hotel,1,77,2016,June,27,16,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,136.0,179.0,0,Contract,121.39,0,0,No-Show,2019-06-03 -City Hotel,0,224,2015,July,32,19,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,127.65,0,1,Check-Out,2018-06-02 -Resort Hotel,0,305,2016,June,31,9,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,98.0,1,1,Check-Out,2019-03-04 -Resort Hotel,0,58,2017,April,24,21,2,5,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,251.0,179.0,0,Transient,106.76,0,3,Check-Out,2020-03-03 -City Hotel,0,100,2016,August,45,24,0,5,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.86,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,October,44,25,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,34.89,0,2,Check-Out,2019-07-04 -Resort Hotel,0,158,2017,April,22,28,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,109.94,0,1,Check-Out,2020-03-03 -Resort Hotel,0,14,2017,April,18,22,0,2,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,63.1,0,0,Check-Out,2020-02-01 -Resort Hotel,0,39,2017,June,22,14,4,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient,127.33,0,1,Check-Out,2020-03-03 -Resort Hotel,0,3,2016,December,49,27,0,1,2,0.0,0,FB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,69.92,0,1,Check-Out,2019-12-04 -City Hotel,0,0,2016,January,5,31,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.11,0,0,Check-Out,2019-09-03 -City Hotel,1,49,2017,June,32,5,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,76.51,0,2,Canceled,2020-04-02 -City Hotel,0,12,2017,June,38,15,1,3,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,133.94,0,0,Check-Out,2019-12-04 -City Hotel,0,19,2016,May,43,18,1,0,2,2.0,0,BB,BEL,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,106.81,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,September,35,10,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,11.0,179.0,0,Transient,166.99,0,0,Check-Out,2018-07-03 -City Hotel,1,16,2016,November,50,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,72.1,0,0,Canceled,2019-10-04 -City Hotel,1,277,2016,October,42,20,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,75.62,0,0,Canceled,2019-07-04 -City Hotel,1,280,2017,August,33,12,0,10,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.91,0,0,Canceled,2018-09-02 -City Hotel,1,316,2017,August,36,3,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,107.25,0,0,Canceled,2020-05-03 -City Hotel,0,231,2015,July,37,9,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,32.0,179.0,0,Contract,62.46,0,0,Check-Out,2017-12-03 -City Hotel,1,162,2016,April,18,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Transient,124.93,0,0,Canceled,2019-02-01 -City Hotel,0,17,2017,June,25,11,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.09,0,1,Check-Out,2020-06-02 -City Hotel,0,16,2015,September,43,25,0,1,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,63.23,0,0,Check-Out,2018-08-03 -City Hotel,0,4,2015,July,36,13,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,220.0,0,Transient,154.12,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,April,18,4,0,1,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,191.0,179.0,0,Transient-Party,61.16,0,0,Check-Out,2019-04-03 -City Hotel,1,253,2016,August,33,21,2,2,3,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,122.01,0,0,Canceled,2018-07-03 -Resort Hotel,0,53,2016,June,23,27,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,243.0,179.0,0,Transient,123.46,0,3,Check-Out,2019-06-03 -City Hotel,1,104,2016,March,11,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,43,Transient,59.54,0,0,Canceled,2018-12-03 -City Hotel,1,41,2017,April,16,5,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,84.45,0,0,Canceled,2020-02-01 -City Hotel,1,170,2016,August,31,10,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient,158.66,0,1,Canceled,2019-03-04 -City Hotel,0,17,2016,November,53,27,1,2,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,240.0,179.0,0,Transient-Party,83.83,0,1,Check-Out,2018-08-03 -City Hotel,1,96,2016,March,10,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,114.87,0,0,Canceled,2018-11-02 -City Hotel,0,21,2016,December,50,6,2,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.4,0,1,Check-Out,2019-11-03 -City Hotel,0,379,2017,February,25,27,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.34,0,2,Check-Out,2019-11-03 -City Hotel,0,51,2016,September,36,4,2,1,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,195.99,0,0,Check-Out,2019-06-03 -City Hotel,1,154,2016,July,38,30,0,2,3,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,6.0,179.0,0,Transient,213.95,0,3,Canceled,2020-06-02 -City Hotel,0,1,2016,March,21,20,0,1,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Group,100.3,0,1,Check-Out,2020-01-04 -City Hotel,0,43,2015,October,34,15,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Contract,118.98,0,1,Check-Out,2018-06-02 -City Hotel,0,0,2016,September,43,13,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,228.09,0,1,Check-Out,2018-08-03 -City Hotel,0,14,2015,September,43,23,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,48.96,0,0,Check-Out,2018-09-02 -City Hotel,0,149,2016,June,26,4,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient-Party,144.08,0,0,Check-Out,2019-09-03 -City Hotel,0,57,2015,October,29,5,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,63.57,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2017,February,13,30,1,1,2,0.0,0,Undefined,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,81.49,0,0,Check-Out,2019-10-04 -Resort Hotel,0,33,2017,February,9,23,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,70.07,0,0,Check-Out,2020-04-02 -City Hotel,1,14,2016,October,43,16,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,11.0,45.0,0,Transient,93.15,0,0,Canceled,2019-09-03 -Resort Hotel,0,13,2017,February,11,28,1,2,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,325.0,179.0,0,Transient-Party,77.43,0,0,Check-Out,2020-03-03 -Resort Hotel,1,384,2016,September,18,29,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,79.44,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2016,May,22,29,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,220.57,0,1,Check-Out,2019-06-03 -City Hotel,0,98,2017,May,24,27,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,74.24,0,0,Check-Out,2020-05-03 -City Hotel,0,22,2016,February,3,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,134.0,45.0,0,Transient,61.61,0,0,Check-Out,2019-02-01 -City Hotel,1,159,2016,March,17,20,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.95,0,0,Canceled,2019-03-04 -Resort Hotel,1,282,2015,July,40,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.21,0,0,Canceled,2017-12-03 -City Hotel,0,0,2016,January,4,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,45.0,0,Transient,45.02,1,0,Check-Out,2018-12-03 -City Hotel,0,2,2016,September,44,2,3,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,102.0,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2017,July,36,13,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,80.2,0,0,Check-Out,2020-06-02 -City Hotel,1,311,2015,October,46,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.41,0,0,Canceled,2018-07-03 -Resort Hotel,1,247,2015,August,45,30,3,1,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,180.7,0,0,Canceled,2017-11-02 -City Hotel,1,105,2016,May,26,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,59.87,0,0,Canceled,2019-01-03 -City Hotel,0,22,2016,September,43,12,0,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Contract,124.83,0,3,Check-Out,2018-09-02 -Resort Hotel,0,295,2016,August,35,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,175.0,179.0,0,Transient,158.2,1,1,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,March,12,6,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,222.0,0,Transient-Party,42.04,0,0,Check-Out,2019-03-04 -Resort Hotel,0,43,2016,October,51,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,300.0,179.0,0,Transient,29.02,0,0,Check-Out,2019-12-04 -Resort Hotel,0,155,2016,March,11,15,2,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,1,No Deposit,13.0,223.0,75,Transient-Party,48.98,0,0,Check-Out,2019-03-04 -City Hotel,1,194,2015,September,37,6,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,74.88,0,0,Canceled,2018-08-03 -Resort Hotel,1,0,2016,January,3,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,67.56,0,0,No-Show,2018-11-02 -City Hotel,0,224,2017,November,22,16,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,63.17,0,1,Check-Out,2020-04-02 -City Hotel,0,151,2017,February,4,28,1,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,68.56,0,1,Check-Out,2019-10-04 -City Hotel,1,1,2016,October,26,30,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,146.9,0,0,Canceled,2019-07-04 -Resort Hotel,1,12,2017,April,18,16,2,4,2,2.0,0,BB,BRA,Direct,Direct,0,0,0,C,F,0,No Deposit,249.0,179.0,0,Transient,95.42,0,0,Canceled,2019-12-04 -City Hotel,0,41,2017,June,30,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,149.4,1,1,Check-Out,2020-06-02 -City Hotel,1,308,2016,May,27,5,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,141.36,0,0,No-Show,2019-06-03 -City Hotel,1,3,2016,June,29,27,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,1.0,45.0,0,Transient,124.8,0,1,Canceled,2019-01-03 -City Hotel,0,104,2016,September,25,5,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.51,0,0,Check-Out,2019-05-04 -Resort Hotel,1,36,2017,May,28,30,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,95.9,0,0,Canceled,2019-06-03 -City Hotel,1,0,2016,December,42,23,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,2,No Deposit,13.0,237.0,0,Transient,0.21,0,0,Check-Out,2019-09-03 -City Hotel,0,12,2015,November,51,13,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,58.59,0,0,Check-Out,2019-01-03 -Resort Hotel,0,50,2015,December,53,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,16.0,179.0,0,Transient,123.5,0,2,Check-Out,2018-11-02 -City Hotel,1,125,2015,August,36,2,0,2,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,A,0,Non Refund,10.0,179.0,0,Transient,99.44,0,0,Canceled,2018-08-03 -City Hotel,1,38,2017,March,17,24,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.94,0,0,Canceled,2019-03-04 -City Hotel,0,270,2015,July,32,18,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,79.78,0,1,Check-Out,2018-06-02 -City Hotel,0,103,2017,August,35,8,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,165.39,0,1,Check-Out,2020-05-03 -City Hotel,1,32,2017,April,9,14,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.86,0,0,Canceled,2020-04-02 -Resort Hotel,0,16,2016,May,35,31,1,4,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,129.08,1,0,Check-Out,2019-05-04 -City Hotel,1,261,2015,August,33,17,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,Non Refund,1.0,179.0,0,Transient,104.52,0,0,Canceled,2018-06-02 -City Hotel,0,286,2015,July,32,12,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,87.22,0,0,Check-Out,2018-05-03 -City Hotel,1,0,2016,June,25,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,70.62,0,0,Canceled,2018-12-03 -Resort Hotel,0,55,2015,August,34,9,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,64.65,0,0,Check-Out,2020-06-02 -Resort Hotel,0,2,2015,August,36,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,93.81,0,0,Check-Out,2018-06-02 -City Hotel,1,149,2017,June,27,21,0,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,152.0,179.0,0,Transient,130.63,0,0,Canceled,2020-02-01 -City Hotel,0,60,2016,October,42,17,2,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,70.07,0,0,Check-Out,2018-09-02 -City Hotel,1,161,2017,April,21,13,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,72.16,0,1,Canceled,2020-03-03 -City Hotel,1,54,2016,April,16,28,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.22,0,0,Canceled,2019-06-03 -Resort Hotel,0,171,2017,July,32,6,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,2,2015,December,42,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,243.0,179.0,0,Transient,36.56,0,2,Check-Out,2018-08-03 -Resort Hotel,1,258,2017,March,10,13,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,74.93,0,0,Check-Out,2019-12-04 -Resort Hotel,1,3,2015,July,39,2,1,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient-Party,173.34,0,0,Canceled,2018-05-03 -City Hotel,1,97,2017,February,10,21,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,60.05,0,0,Canceled,2019-08-04 -Resort Hotel,0,322,2016,August,28,20,4,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,E,3,No Deposit,172.0,179.0,0,Transient,194.91,0,1,Check-Out,2019-05-04 -City Hotel,0,10,2017,May,22,21,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.72,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,April,16,5,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,B,1,No Deposit,101.0,179.0,0,Transient-Party,33.26,0,0,Check-Out,2019-03-04 -Resort Hotel,1,260,2017,June,27,27,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,D,F,0,Non Refund,167.0,179.0,0,Transient,112.94,0,0,Canceled,2020-04-02 -City Hotel,0,49,2015,July,33,10,1,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,153.31,0,0,Check-Out,2018-05-03 -City Hotel,0,60,2016,June,22,18,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient-Party,65.79,0,0,Check-Out,2019-03-04 -City Hotel,0,145,2016,October,44,27,1,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,102.53,0,0,Check-Out,2019-08-04 -City Hotel,0,10,2015,October,46,31,1,2,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,D,D,0,No Deposit,13.0,179.0,0,Group,61.83,1,1,Check-Out,2018-08-03 -City Hotel,1,17,2017,June,32,20,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,137.13,0,0,Canceled,2019-11-03 -City Hotel,0,104,2016,April,16,29,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.67,0,1,Check-Out,2019-03-04 -Resort Hotel,0,24,2016,April,17,16,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,109.77,0,0,Check-Out,2019-02-01 -Resort Hotel,0,66,2016,December,50,10,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,63.21,0,0,Check-Out,2019-11-03 -City Hotel,0,45,2016,March,10,5,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,120.38,0,2,Check-Out,2019-10-04 -City Hotel,0,103,2017,August,36,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,240.13,0,3,Check-Out,2020-07-03 -City Hotel,0,387,2016,September,44,24,1,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.41,0,0,Check-Out,2018-08-03 -Resort Hotel,0,13,2017,May,22,29,2,0,1,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,127.59,0,0,Check-Out,2020-03-03 -City Hotel,1,368,2016,May,22,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,62.02,0,0,Canceled,2019-02-01 -City Hotel,0,213,2015,July,36,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,78.01,0,1,Check-Out,2018-08-03 -Resort Hotel,0,252,2016,December,50,17,1,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,288.0,179.0,0,Transient-Party,89.47,0,0,Check-Out,2019-02-01 -City Hotel,1,234,2015,April,37,29,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,36.58,0,0,Canceled,2018-01-03 -City Hotel,1,47,2015,September,38,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,60.16,0,0,Canceled,2018-06-02 -City Hotel,0,45,2017,March,23,5,0,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,117.63,1,2,Check-Out,2020-04-02 -City Hotel,0,2,2017,May,8,15,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,10.0,179.0,0,Group,0.0,0,0,Check-Out,2020-03-03 -Resort Hotel,1,201,2016,July,23,21,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,70.71,0,0,Canceled,2019-05-04 -Resort Hotel,0,50,2016,November,37,10,2,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,162.12,1,0,Check-Out,2019-10-04 -City Hotel,0,37,2017,May,21,17,1,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,123.1,0,0,Check-Out,2020-03-03 -Resort Hotel,0,227,2016,December,50,2,2,2,2,0.0,0,BB,SWE,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,246.0,331.0,0,Transient,34.07,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,October,47,2,0,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,E,1,No Deposit,15.0,223.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,1,153,2017,February,3,30,2,3,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,220.79,0,2,Canceled,2019-02-01 -City Hotel,0,3,2016,October,44,13,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,D,0,No Deposit,13.0,45.0,0,Transient,0.0,0,3,Check-Out,2019-02-01 -City Hotel,0,43,2017,April,17,11,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.58,0,1,Check-Out,2020-01-04 -City Hotel,0,1,2017,January,8,10,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.9,0,0,Check-Out,2019-09-03 -Resort Hotel,0,49,2017,February,31,15,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,62.03,0,1,Check-Out,2020-03-03 -City Hotel,1,34,2016,October,43,16,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,160.36,0,2,Canceled,2019-08-04 -Resort Hotel,0,42,2016,November,43,23,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient-Party,86.75,0,1,Check-Out,2019-06-03 -Resort Hotel,0,146,2015,July,32,5,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,243.0,179.0,0,Transient,187.76,1,2,Check-Out,2018-06-02 -City Hotel,0,0,2016,October,44,24,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,15.0,230.0,0,Transient,3.1,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,February,11,31,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,1,No Deposit,89.0,179.0,0,Transient,35.58,0,0,Check-Out,2019-02-01 -Resort Hotel,0,97,2016,July,29,18,1,6,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,94.81,0,0,Check-Out,2019-05-04 -City Hotel,0,192,2016,October,43,13,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,84.46,0,2,Check-Out,2019-07-04 -Resort Hotel,0,103,2016,February,26,9,2,5,3,1.0,0,HB,POL,Direct,Direct,0,0,0,F,F,2,No Deposit,378.0,179.0,0,Transient,91.97,0,0,Check-Out,2018-10-03 -City Hotel,1,18,2016,July,33,25,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.48,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,October,43,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,10.0,222.0,0,Group,66.17,0,0,Check-Out,2019-02-01 -Resort Hotel,0,150,2016,December,37,25,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,69.91,0,0,Check-Out,2018-09-02 -City Hotel,1,255,2015,September,45,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,59.65,0,0,Canceled,2018-08-03 -Resort Hotel,0,270,2016,August,35,31,1,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,Refundable,100.0,222.0,0,Transient,69.2,0,0,Check-Out,2019-05-04 -Resort Hotel,1,301,2015,August,38,13,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,196.74,0,0,Canceled,2018-08-03 -City Hotel,1,275,2015,July,39,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.65,0,0,Canceled,2018-01-31 -Resort Hotel,0,19,2017,May,24,28,1,0,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,57.01,0,0,Check-Out,2019-12-04 -Resort Hotel,0,3,2016,July,34,9,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,251.0,179.0,0,Transient,228.87,0,0,Check-Out,2020-06-02 -City Hotel,0,64,2016,June,21,17,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,25.0,179.0,0,Transient,157.14,0,0,Check-Out,2019-03-04 -Resort Hotel,0,90,2017,July,33,9,0,2,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,120.93,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,May,42,11,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,30.16,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,February,3,13,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,D,D,0,No Deposit,135.0,179.0,0,Group,62.72,0,1,Check-Out,2018-09-02 -City Hotel,1,238,2015,August,43,15,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,144.87,0,0,Canceled,2018-05-03 -City Hotel,0,287,2017,October,22,15,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,137.57,0,1,Check-Out,2019-08-04 -City Hotel,0,97,2016,June,27,17,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,77.96,0,0,Check-Out,2019-05-04 -Resort Hotel,1,52,2017,August,21,27,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,116.62,0,2,Canceled,2020-03-03 -Resort Hotel,0,1,2017,March,13,16,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,29.58,0,1,Check-Out,2020-01-04 -City Hotel,0,2,2016,May,32,27,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.59,0,2,Check-Out,2019-06-03 -City Hotel,0,1,2015,September,43,13,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.65,0,0,Check-Out,2018-11-02 -City Hotel,0,66,2017,March,11,16,1,2,2,0.0,0,SC,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,76.27,0,0,No-Show,2019-11-03 -City Hotel,0,113,2017,April,16,28,2,5,3,0.0,0,HB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,131.12,0,2,Check-Out,2020-02-01 -City Hotel,1,0,2016,January,4,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,113.91,0,2,No-Show,2018-12-03 -City Hotel,0,11,2016,July,31,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,144.8,0,1,Check-Out,2020-05-03 -Resort Hotel,0,30,2017,March,10,30,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,61.02,0,1,Check-Out,2020-02-01 -City Hotel,1,156,2016,May,22,21,2,0,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,68.0,0,Transient-Party,75.98,0,0,Check-Out,2019-01-03 -Resort Hotel,0,107,2016,February,11,17,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,38.0,179.0,0,Transient-Party,59.97,0,0,Check-Out,2019-07-04 -City Hotel,1,40,2017,January,4,10,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.19,0,1,Canceled,2019-10-04 -Resort Hotel,0,208,2017,August,34,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,132.22,0,0,Check-Out,2020-06-02 -City Hotel,1,295,2015,August,32,12,2,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,120.97,0,0,Canceled,2018-05-03 -Resort Hotel,0,289,2017,July,29,20,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,93.27,0,0,Check-Out,2020-06-02 -Resort Hotel,0,9,2017,January,2,17,2,2,2,0.0,0,HB,PRT,Corporate,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient-Party,104.94,1,0,Check-Out,2020-02-01 -City Hotel,0,192,2017,May,22,17,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,143.16,0,1,Check-Out,2020-02-01 -City Hotel,1,12,2016,February,10,31,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,62.5,0,1,Canceled,2018-11-02 -Resort Hotel,0,18,2016,August,33,9,1,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,115.69,0,3,Check-Out,2020-06-02 -Resort Hotel,0,97,2016,May,22,9,2,5,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient-Party,74.45,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2016,July,31,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,129.5,0,0,Check-Out,2018-08-03 -City Hotel,1,420,2016,September,36,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,42,Transient,60.46,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,August,33,15,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,233.43,1,1,Check-Out,2020-06-02 -Resort Hotel,0,12,2016,December,51,30,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient-Party,61.72,1,0,Check-Out,2019-11-03 -Resort Hotel,0,17,2017,August,38,5,0,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,114.58,0,1,Canceled,2020-07-03 -Resort Hotel,0,248,2016,July,21,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,179.08,0,2,Check-Out,2019-03-04 -City Hotel,0,324,2017,April,23,28,0,1,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,74.67,0,1,Check-Out,2020-04-02 -Resort Hotel,0,20,2017,May,15,15,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,241.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -Resort Hotel,1,49,2017,December,16,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,77.66,0,1,Canceled,2019-11-03 -City Hotel,0,48,2017,January,3,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,80.25,0,1,Check-Out,2019-09-03 -City Hotel,0,0,2016,May,20,23,0,1,1,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,86.28,0,0,Check-Out,2019-05-04 -Resort Hotel,0,12,2016,December,50,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,78.0,0,Transient,31.22,0,0,Check-Out,2018-12-03 -City Hotel,0,87,2017,August,35,6,0,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.89,1,1,Check-Out,2020-01-04 -Resort Hotel,1,38,2017,March,8,2,2,1,3,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,H,0,No Deposit,245.0,179.0,0,Transient,0.0,0,2,No-Show,2020-03-03 -City Hotel,1,193,2017,August,38,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,199.22,0,0,Canceled,2019-10-04 -Resort Hotel,0,199,2016,October,44,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,61.26,0,0,Check-Out,2019-04-03 -City Hotel,1,161,2017,March,10,5,0,1,1,0.0,0,SC,POL,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,164.0,179.0,0,Transient,118.78,0,0,Canceled,2020-03-03 -City Hotel,0,9,2017,June,23,5,0,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,0.55,0,1,Check-Out,2020-04-02 -Resort Hotel,0,35,2016,March,18,28,2,4,2,1.0,0,BB,IRL,Online TA,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,101.53,1,3,Check-Out,2019-03-04 -City Hotel,0,38,2017,July,33,25,0,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.7,0,1,Check-Out,2020-06-02 -Resort Hotel,0,142,2016,July,26,5,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,102.35,0,2,Check-Out,2019-10-04 -City Hotel,0,155,2017,May,21,17,1,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,70.75,0,0,Check-Out,2019-12-04 -Resort Hotel,0,17,2015,July,34,25,0,1,2,1.0,0,BB,ESP,Direct,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,55.28,0,0,Check-Out,2018-06-02 -City Hotel,1,46,2015,August,36,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,120.49,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2016,October,43,5,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,151.18,0,0,Check-Out,2019-08-04 -City Hotel,0,15,2017,February,11,19,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,85.0,0,Transient,65.2,0,0,Check-Out,2020-03-03 -City Hotel,0,14,2017,March,10,24,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.87,0,1,Check-Out,2020-03-03 -City Hotel,1,444,2016,October,45,19,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,66.99,0,0,Canceled,2018-09-02 -Resort Hotel,0,108,2015,August,34,18,0,2,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,130.56,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2016,October,43,15,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,174.2,0,1,Check-Out,2019-08-04 -Resort Hotel,1,267,2017,April,17,10,1,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,D,D,0,Non Refund,322.0,179.0,0,Transient,84.51,0,0,Canceled,2020-03-03 -Resort Hotel,1,53,2016,September,35,21,1,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,74.18,0,0,Canceled,2019-07-04 -Resort Hotel,0,36,2015,December,53,21,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,249.0,179.0,0,Transient,143.14,1,0,Check-Out,2018-07-03 -City Hotel,1,3,2015,August,38,15,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,15.0,179.0,0,Transient,62.16,0,0,Canceled,2018-06-02 -City Hotel,0,155,2017,July,30,27,0,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,138.69,0,1,Check-Out,2020-05-03 -City Hotel,0,0,2017,January,3,25,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Contract,74.35,0,0,Check-Out,2018-12-03 -Resort Hotel,0,108,2017,March,10,28,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,44.53,0,1,Check-Out,2020-02-01 -City Hotel,0,40,2017,February,9,13,0,3,2,0.0,0,SC,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,73.67,0,0,Check-Out,2020-02-01 -City Hotel,0,99,2016,August,33,5,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient-Party,84.0,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,November,53,6,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,40.42,0,0,Check-Out,2018-11-02 -City Hotel,1,171,2016,September,44,29,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,117.35,0,0,Check-Out,2019-09-03 -City Hotel,1,21,2015,November,45,11,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.01,0,0,Canceled,2019-10-04 -Resort Hotel,0,14,2015,November,44,6,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient-Party,70.14,0,0,Check-Out,2018-08-03 -Resort Hotel,0,10,2016,December,50,31,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,73.59,0,2,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,April,16,2,1,5,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,250.0,179.0,0,Transient,155.88,0,0,Check-Out,2020-02-01 -Resort Hotel,1,144,2017,February,11,29,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,318.0,179.0,0,Transient,88.76,0,0,Canceled,2019-11-03 -City Hotel,0,1,2016,October,41,4,0,1,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,91.8,1,0,Check-Out,2019-09-03 -City Hotel,0,6,2016,October,42,13,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Group,168.43,0,0,Check-Out,2019-08-04 -City Hotel,0,30,2016,October,44,7,2,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,116.42,0,0,Check-Out,2019-11-03 -City Hotel,0,3,2017,July,27,15,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,155.72,0,2,Check-Out,2020-04-02 -Resort Hotel,1,339,2016,December,52,31,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,12.0,179.0,0,Transient,40.05,0,0,Canceled,2019-11-03 -Resort Hotel,1,49,2016,June,15,29,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,116.7,0,0,Canceled,2019-02-01 -City Hotel,1,327,2016,May,27,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,263.0,179.0,0,Transient-Party,61.93,0,0,Canceled,2019-02-01 -City Hotel,1,266,2017,August,36,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.26,0,0,Canceled,2020-06-02 -City Hotel,0,103,2015,August,36,14,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,104.17,0,1,Check-Out,2018-05-03 -City Hotel,1,92,2016,September,44,29,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,103.6,0,0,Canceled,2019-08-04 -City Hotel,1,48,2017,February,9,5,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.8,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,February,10,13,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,48.74,0,0,No-Show,2019-03-04 -Resort Hotel,1,154,2017,June,28,31,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,124.94,0,0,Canceled,2019-03-04 -City Hotel,0,0,2016,June,10,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,71.0,0,Transient,44.45,0,0,Check-Out,2019-02-01 -City Hotel,0,260,2015,July,26,3,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,224.0,0,Transient,100.8,0,0,Check-Out,2019-07-04 -Resort Hotel,0,147,2017,July,33,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,G,0,Refundable,378.0,179.0,0,Contract,252.0,0,3,Check-Out,2020-06-02 -City Hotel,0,26,2016,September,26,28,1,4,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.55,0,2,Check-Out,2019-06-03 -Resort Hotel,0,23,2015,October,53,30,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,120.16,0,2,Check-Out,2018-07-03 -City Hotel,1,6,2017,June,25,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,121.34,0,0,Canceled,2020-01-04 -City Hotel,0,27,2017,January,9,17,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,104.4,0,2,Check-Out,2019-11-03 -City Hotel,1,106,2017,March,18,31,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,101.48,0,0,Canceled,2019-10-04 -City Hotel,0,97,2017,May,20,26,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,33.0,331.0,0,Transient-Party,76.13,0,0,Check-Out,2019-12-04 -City Hotel,1,298,2016,October,45,22,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,154.29,0,0,Canceled,2019-04-03 -City Hotel,0,13,2016,October,43,13,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.22,0,1,Check-Out,2019-03-04 -Resort Hotel,0,10,2016,December,52,22,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,97.0,179.0,0,Transient,80.39,0,0,Check-Out,2019-12-04 -City Hotel,0,154,2017,July,25,6,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.54,0,3,Check-Out,2020-02-01 -City Hotel,1,42,2016,September,17,31,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,F,B,0,No Deposit,10.0,179.0,0,Transient,93.7,0,1,Canceled,2019-02-01 -City Hotel,1,105,2017,March,15,21,0,5,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,116.15,0,0,Canceled,2020-03-03 -Resort Hotel,0,203,2016,March,17,31,3,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,2,Refundable,14.0,179.0,0,Transient,71.22,1,0,Check-Out,2019-01-03 -City Hotel,1,6,2016,May,27,6,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,85.33,0,0,No-Show,2019-04-03 -Resort Hotel,1,41,2016,December,51,24,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient-Party,74.93,0,0,Canceled,2019-11-03 -Resort Hotel,0,264,2016,August,36,16,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,182.32,0,1,Check-Out,2019-05-04 -Resort Hotel,0,46,2016,November,51,15,2,4,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,2,No Deposit,243.0,179.0,0,Transient,67.85,1,3,Check-Out,2019-07-04 -City Hotel,1,42,2016,December,51,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.82,0,2,Canceled,2019-10-04 -City Hotel,0,28,2016,October,43,6,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,98.01,0,3,Check-Out,2019-08-04 -Resort Hotel,0,168,2016,March,19,30,1,3,1,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,C,1,Refundable,15.0,224.0,0,Transient-Party,62.32,0,0,Check-Out,2019-03-04 -Resort Hotel,0,2,2017,March,11,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,I,1,No Deposit,12.0,220.0,0,Transient,42.48,1,0,Check-Out,2020-04-02 -City Hotel,0,1,2016,February,17,29,0,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.12,0,0,Check-Out,2019-04-03 -City Hotel,0,2,2017,August,32,10,1,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,248.04,0,0,Check-Out,2020-06-02 -City Hotel,0,21,2017,June,25,28,0,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient,92.16,0,1,Check-Out,2020-03-03 -City Hotel,1,58,2015,September,45,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,91.18,0,0,Canceled,2018-08-03 -City Hotel,1,293,2017,May,23,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,86.5,0,0,Canceled,2019-02-01 -Resort Hotel,0,171,2017,May,25,30,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,285.0,179.0,75,Transient,121.25,0,1,Check-Out,2019-12-04 -City Hotel,0,355,2017,June,27,17,1,0,2,0.0,0,BB,DEU,Corporate,GDS,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,69.7,0,0,Check-Out,2020-07-03 -Resort Hotel,0,153,2016,March,22,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,222.0,0,Transient-Party,64.6,0,0,Check-Out,2019-03-04 -City Hotel,0,7,2017,June,28,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,204.0,0,Transient,76.65,0,0,Check-Out,2020-03-03 -Resort Hotel,0,104,2016,June,10,12,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,80.37,0,0,Check-Out,2019-02-01 -Resort Hotel,1,54,2016,September,36,16,1,5,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,95.87,0,0,Canceled,2019-08-04 -Resort Hotel,0,304,2017,July,19,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,E,I,1,No Deposit,297.0,179.0,0,Transient,5.77,1,1,Check-Out,2019-11-03 -City Hotel,0,12,2015,November,50,16,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,137.02,0,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2017,March,12,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,17.0,224.0,0,Transient-Party,41.04,0,0,Check-Out,2020-03-03 -City Hotel,0,42,2016,October,31,18,0,2,2,1.0,0,HB,SWE,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,9.0,179.0,0,Transient,224.53,0,2,Check-Out,2019-05-04 -City Hotel,1,275,2015,July,37,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.93,0,0,Canceled,2018-08-03 -City Hotel,0,13,2017,June,22,15,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,203.35,0,0,Check-Out,2020-06-02 -City Hotel,0,66,2016,October,42,14,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,226.0,0,Transient,132.2,0,0,Check-Out,2019-05-04 -Resort Hotel,1,156,2015,December,11,27,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.89,0,0,Canceled,2018-11-02 -City Hotel,0,89,2017,March,15,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.41,0,1,Check-Out,2019-11-03 -City Hotel,0,101,2016,July,26,16,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,190.85,0,1,Check-Out,2019-05-04 -City Hotel,0,254,2017,May,22,24,2,5,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,79.93,0,1,Check-Out,2020-03-03 -Resort Hotel,0,167,2016,May,23,26,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,208.56,0,0,Check-Out,2019-04-03 -City Hotel,0,3,2016,June,26,21,0,3,2,0.0,0,BB,PRT,Groups,Direct,1,0,0,A,E,0,No Deposit,48.0,179.0,0,Group,72.15,0,0,Check-Out,2018-10-03 -City Hotel,1,83,2016,August,41,30,0,1,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,96.73,0,2,Canceled,2019-09-03 -City Hotel,0,1,2015,December,51,9,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient-Party,66.82,1,0,Check-Out,2018-09-02 -City Hotel,0,41,2016,December,53,21,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,75.57,0,1,Check-Out,2019-10-04 -City Hotel,0,20,2016,August,36,27,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,117.33,0,2,Check-Out,2020-06-02 -City Hotel,0,50,2016,January,3,6,1,3,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,86.6,0,0,Check-Out,2019-04-03 -Resort Hotel,0,36,2015,September,44,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,D,1,No Deposit,13.0,179.0,0,Transient-Party,158.68,1,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2015,November,50,10,1,1,3,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,102.87,0,0,Check-Out,2018-08-03 -City Hotel,0,46,2016,October,43,17,1,4,1,0.0,0,BB,AUT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient-Party,95.56,0,0,Check-Out,2019-08-04 -City Hotel,1,323,2017,May,23,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,295.0,179.0,0,Transient,80.54,0,1,Canceled,2020-03-03 -Resort Hotel,0,10,2017,June,31,21,2,5,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,199.0,206.0,0,Transient,57.5,0,0,Check-Out,2020-07-03 -Resort Hotel,1,243,2015,July,34,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,237.0,179.0,0,Transient,160.58,0,0,Canceled,2018-06-02 -City Hotel,1,184,2017,June,29,15,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.02,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2016,June,22,2,0,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,41.09,0,0,Check-Out,2019-07-04 -City Hotel,0,32,2016,October,43,21,2,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,122.21,0,0,Check-Out,2019-09-03 -Resort Hotel,1,119,2017,April,13,2,2,5,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,2,No Deposit,87.0,179.0,75,Transient-Party,106.56,0,0,Canceled,2019-01-03 -Resort Hotel,0,17,2017,February,8,15,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,60.69,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,June,22,16,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,209.79,0,1,Check-Out,2020-03-03 -City Hotel,0,13,2017,February,18,16,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,80.44,0,0,Check-Out,2019-11-03 -City Hotel,0,52,2016,December,50,5,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,189.0,179.0,0,Transient-Party,43.22,0,0,Check-Out,2019-11-03 -Resort Hotel,0,48,2015,November,45,30,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,94.2,1,1,Check-Out,2019-08-04 -City Hotel,0,91,2017,August,38,18,0,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,170.79,0,1,Check-Out,2020-01-04 -City Hotel,1,49,2016,December,10,23,2,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,61.24,0,0,Canceled,2019-10-04 -City Hotel,0,66,2017,May,26,27,2,1,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,2,No Deposit,14.0,179.0,0,Transient,124.39,0,0,Check-Out,2020-02-01 -City Hotel,1,96,2017,March,17,28,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,60.76,0,0,Canceled,2020-02-01 -City Hotel,1,245,2017,August,37,15,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,96.33,0,0,Canceled,2019-05-04 -City Hotel,0,0,2016,August,37,29,0,1,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,179.33,0,1,Check-Out,2019-06-03 -Resort Hotel,0,274,2017,May,22,19,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,165.49,1,0,Check-Out,2020-03-03 -City Hotel,1,17,2016,December,51,28,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,135.55,0,1,Canceled,2018-12-03 -City Hotel,1,271,2015,July,34,13,2,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,1,0,A,C,0,Non Refund,26.0,179.0,0,Transient,41.1,0,0,Canceled,2018-06-02 -Resort Hotel,0,11,2017,May,23,30,0,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,C,2,No Deposit,242.0,179.0,0,Transient,117.72,1,3,Check-Out,2020-04-02 -City Hotel,0,0,2016,April,17,10,0,1,1,0.0,0,SC,ESP,Complementary,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,102.61,0,0,Check-Out,2019-02-01 -City Hotel,1,288,2015,October,42,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Contract,78.91,0,0,Canceled,2018-09-02 -Resort Hotel,1,300,2017,July,33,4,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,94.35,0,0,Canceled,2018-09-02 -City Hotel,0,35,2017,March,17,6,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.55,0,1,Check-Out,2020-02-01 -Resort Hotel,0,17,2017,July,17,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,62.72,1,1,Check-Out,2020-03-03 -City Hotel,1,22,2017,June,28,18,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.51,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2015,August,34,5,0,2,2,1.0,0,HB,USA,Direct,Direct,0,0,0,H,H,1,No Deposit,17.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-06-02 -Resort Hotel,0,18,2015,December,48,21,2,2,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,79.0,179.0,0,Transient-Party,63.41,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,September,43,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,70.0,0,Transient,62.24,0,0,Check-Out,2019-07-04 -City Hotel,0,197,2017,June,24,7,2,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.94,0,1,Check-Out,2020-07-03 -City Hotel,0,237,2016,October,46,24,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,0,Transient-Party,88.2,0,0,Check-Out,2019-08-04 -City Hotel,0,114,2016,December,53,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.9,1,2,Check-Out,2019-11-03 -City Hotel,0,250,2015,July,32,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,74.78,0,0,Check-Out,2018-05-03 -City Hotel,0,144,2015,August,37,24,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,209.28,0,1,Check-Out,2018-06-02 -City Hotel,0,352,2016,November,50,26,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient-Party,87.23,0,0,Check-Out,2019-11-03 -Resort Hotel,1,153,2015,December,51,20,2,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,Non Refund,165.0,179.0,0,Transient,61.67,0,0,Canceled,2018-11-02 -City Hotel,0,0,2015,July,36,17,2,1,2,0.0,0,BB,ITA,Aviation,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,2.22,0,0,Check-Out,2018-06-02 -City Hotel,1,1,2017,June,21,21,2,0,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,10.0,179.0,0,Transient,2.68,0,0,No-Show,2020-03-03 -Resort Hotel,0,1,2015,December,50,21,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,241.0,179.0,0,Transient-Party,41.16,0,0,Check-Out,2018-12-03 -Resort Hotel,1,191,2016,June,28,10,2,1,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,D,1,No Deposit,273.0,179.0,0,Transient,120.98,0,0,Canceled,2020-03-03 -City Hotel,0,0,2017,March,17,21,0,1,2,0.0,0,BB,PRT,Undefined,Direct,1,0,0,A,B,0,No Deposit,17.0,241.0,0,Transient,64.27,0,0,Check-Out,2020-04-02 -Resort Hotel,0,304,2016,July,25,16,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Contract,99.2,0,0,Check-Out,2019-05-04 -Resort Hotel,1,16,2017,August,33,10,2,7,1,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,163.78,0,0,No-Show,2020-07-03 -City Hotel,1,49,2017,August,22,30,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.79,0,0,Canceled,2020-05-03 -City Hotel,1,105,2016,March,9,7,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,27.26,0,0,Canceled,2018-11-02 -City Hotel,0,17,2016,March,10,15,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,75,Transient,63.57,0,0,Check-Out,2019-02-01 -Resort Hotel,0,57,2015,December,45,28,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,45.06,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,December,52,28,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient-Party,68.89,0,0,Check-Out,2019-01-03 -City Hotel,0,161,2017,July,31,15,1,5,3,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,88.06,0,2,Check-Out,2020-06-02 -Resort Hotel,1,0,2017,March,12,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,17.0,222.0,0,Transient,42.95,0,0,Canceled,2020-05-03 -Resort Hotel,0,29,2016,July,27,25,1,4,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-07-04 -Resort Hotel,1,50,2015,October,50,11,1,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,39.87,0,1,Canceled,2018-12-03 -City Hotel,1,261,2016,April,21,22,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,208.36,0,0,Canceled,2019-01-03 -City Hotel,0,10,2016,November,52,25,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.33,0,2,Check-Out,2019-10-04 -City Hotel,0,78,2016,June,31,2,0,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.54,0,2,Check-Out,2019-07-04 -Resort Hotel,0,135,2017,May,23,21,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,243.0,179.0,0,Transient,139.41,1,2,Check-Out,2020-03-03 -City Hotel,0,46,2016,March,17,10,0,2,2,0.0,0,SC,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,123.85,0,1,Check-Out,2019-11-03 -Resort Hotel,1,14,2015,November,35,28,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,74.25,0,1,No-Show,2018-12-03 -City Hotel,0,1,2016,February,9,27,0,3,2,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,0,Non Refund,29.0,45.0,0,Transient,69.61,0,0,Check-Out,2018-10-03 -City Hotel,0,60,2016,October,43,30,0,2,1,0.0,0,BB,CN,Online TA,GDS,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,83.02,0,0,Check-Out,2019-06-03 -Resort Hotel,0,5,2015,December,53,24,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,13.0,179.0,0,Transient,0.86,0,1,Check-Out,2018-06-02 -Resort Hotel,1,16,2016,February,18,13,0,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,285.0,179.0,0,Transient-Party,33.64,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2016,June,27,20,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,0.29,0,0,Check-Out,2019-02-01 -Resort Hotel,0,158,2016,May,10,15,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,3,Canceled,2019-04-03 -Resort Hotel,0,192,2017,May,17,5,2,5,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,114.21,0,0,Check-Out,2020-05-03 -City Hotel,1,40,2016,September,9,5,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,97.64,0,2,Canceled,2019-11-03 -City Hotel,1,128,2016,April,10,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.22,0,0,Canceled,2018-11-02 -Resort Hotel,1,160,2017,April,21,7,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,134.0,179.0,0,Transient,76.74,0,0,Canceled,2020-03-03 -City Hotel,0,244,2016,October,43,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient-Party,78.27,0,0,Check-Out,2018-08-03 -Resort Hotel,0,91,2016,December,42,6,1,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,69.48,0,0,Check-Out,2018-08-03 -Resort Hotel,0,41,2016,April,16,28,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,96.96,0,0,Check-Out,2019-02-01 -Resort Hotel,0,188,2017,February,11,14,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient-Party,34.66,0,0,Check-Out,2019-12-04 -City Hotel,1,1,2017,March,25,10,1,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,251.0,331.0,0,Transient,72.12,0,0,Canceled,2020-02-01 -City Hotel,0,0,2016,December,53,10,0,1,1,0.0,0,SC,ESP,Complementary,Direct,0,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -Resort Hotel,0,2,2015,October,47,29,2,5,2,0.0,0,BB,CN,Groups,Direct,0,0,0,A,C,1,No Deposit,248.0,179.0,0,Transient-Party,75.74,1,0,Check-Out,2018-09-02 -Resort Hotel,0,23,2015,December,53,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,62.08,0,1,Check-Out,2018-10-03 -Resort Hotel,1,202,2016,March,17,23,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,179.0,75,Transient-Party,77.47,0,0,Canceled,2019-01-03 -City Hotel,1,203,2017,June,29,14,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,123.78,0,0,Canceled,2020-02-01 -Resort Hotel,0,291,2015,August,37,31,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,239.0,179.0,0,Transient-Party,45.68,0,1,Check-Out,2018-06-02 -City Hotel,0,9,2016,May,22,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,13.0,234.0,0,Transient,36.78,1,1,Check-Out,2019-06-03 -City Hotel,1,436,2016,October,37,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,41,Transient,60.69,0,0,Canceled,2017-12-03 -Resort Hotel,0,3,2016,August,35,17,1,5,3,1.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,222.23,0,0,No-Show,2019-05-04 -City Hotel,0,1,2015,November,45,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,112.18,0,0,Check-Out,2018-09-02 -City Hotel,1,417,2016,October,24,16,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,2,Non Refund,10.0,179.0,0,Transient,80.72,0,0,Canceled,2019-07-04 -Resort Hotel,0,11,2016,May,52,27,1,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,88.64,0,1,Check-Out,2019-11-03 -City Hotel,1,123,2016,April,15,25,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,80.56,0,0,Canceled,2019-02-01 -Resort Hotel,0,44,2015,November,51,31,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,232.41,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,March,11,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,247.0,0,Transient-Party,30.1,1,0,Check-Out,2019-11-03 -Resort Hotel,0,43,2015,December,53,9,1,2,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,39.0,179.0,0,Transient-Party,27.57,0,0,Check-Out,2019-01-03 -City Hotel,1,0,2016,March,9,9,1,0,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,11.0,179.0,0,Transient,70.03,0,0,No-Show,2018-12-03 -Resort Hotel,0,55,2017,April,18,27,0,10,3,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,1,No Deposit,324.0,179.0,0,Transient,120.96,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,January,3,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,63.4,1,1,Check-Out,2018-10-03 -City Hotel,1,35,2016,May,20,14,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,160.29,0,0,Canceled,2019-03-04 -City Hotel,0,16,2016,September,39,26,0,3,3,0.0,0,BB,USA,Aviation,Corporate,1,0,0,D,D,0,No Deposit,14.0,182.0,0,Transient,166.07,0,0,Check-Out,2019-09-03 -City Hotel,0,40,2016,August,25,19,0,2,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,65.84,0,0,Check-Out,2019-05-04 -City Hotel,1,290,2017,May,18,11,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,161.0,179.0,0,Transient,75.68,0,0,Canceled,2020-04-02 -Resort Hotel,1,154,2017,March,16,25,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,77.24,0,0,Canceled,2020-02-01 -Resort Hotel,0,38,2017,June,27,30,0,4,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,121.49,0,0,Check-Out,2020-03-03 -City Hotel,0,27,2017,August,33,15,2,5,3,0.0,0,BB,DEU,Direct,Direct,0,0,0,G,G,2,No Deposit,15.0,179.0,0,Transient,225.76,1,3,Check-Out,2020-06-02 -Resort Hotel,1,88,2017,July,18,2,0,1,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,15.0,179.0,0,Transient,179.2,0,0,Canceled,2019-11-03 -City Hotel,0,79,2017,June,26,2,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,92.24,0,2,Check-Out,2020-04-02 -City Hotel,0,14,2017,June,32,15,2,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Contract,155.41,0,1,Check-Out,2020-06-02 -City Hotel,1,8,2016,August,32,5,1,1,3,1.0,0,HB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,158.81,0,0,Canceled,2019-06-03 -Resort Hotel,0,155,2016,June,23,5,0,10,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,101.42,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,August,38,11,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,69.58,0,1,Check-Out,2018-09-02 -Resort Hotel,0,28,2017,May,20,6,1,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,89.46,0,0,Check-Out,2020-05-03 -Resort Hotel,0,3,2016,April,19,5,2,1,2,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,354.0,179.0,0,Transient-Party,39.98,1,0,Check-Out,2019-03-04 -Resort Hotel,0,247,2015,July,30,9,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,128.0,179.0,0,Contract,189.61,0,0,Check-Out,2018-05-03 -Resort Hotel,0,160,2017,August,37,2,2,4,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,247.51,0,1,Check-Out,2019-05-04 -City Hotel,0,150,2017,June,27,18,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,227.39,0,3,Check-Out,2020-06-02 -City Hotel,0,1,2017,January,7,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,84.94,1,0,Check-Out,2020-02-01 -Resort Hotel,0,37,2017,January,2,16,1,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,2,No Deposit,15.0,179.0,0,Transient,33.76,0,0,Check-Out,2019-09-03 -City Hotel,0,23,2016,September,43,15,0,6,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,207.87,0,3,Check-Out,2019-09-03 -Resort Hotel,0,46,2016,September,53,11,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,112.31,0,0,Check-Out,2019-09-03 -Resort Hotel,1,34,2015,September,35,9,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,158.7,0,0,Canceled,2018-06-02 -Resort Hotel,0,1,2015,October,43,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,69.09,0,0,Check-Out,2018-09-02 -Resort Hotel,0,222,2016,August,37,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,51.55,0,3,Check-Out,2019-08-04 -Resort Hotel,0,61,2016,March,9,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,240.0,179.0,0,Transient,65.73,0,1,Check-Out,2019-02-01 -Resort Hotel,1,0,2016,January,8,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,63.2,0,0,No-Show,2018-11-02 -City Hotel,0,14,2016,October,11,28,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,285.0,179.0,0,Transient,197.44,0,0,Check-Out,2019-07-04 -City Hotel,0,10,2016,May,21,29,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.57,0,0,Check-Out,2019-02-01 -City Hotel,0,28,2016,April,16,6,0,2,1,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,95.03,0,0,Check-Out,2019-03-04 -City Hotel,0,14,2016,September,27,30,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.58,0,2,Check-Out,2019-06-03 -City Hotel,1,149,2016,June,26,20,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,39,Transient,91.42,0,0,Canceled,2019-02-01 -Resort Hotel,0,38,2016,August,36,27,1,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,75.6,0,1,Check-Out,2020-06-02 -City Hotel,1,17,2017,June,29,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,45.0,0,Transient,75.0,0,0,Canceled,2017-12-03 -City Hotel,1,11,2015,July,30,13,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.62,0,1,Canceled,2018-05-03 -City Hotel,0,0,2016,October,43,24,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Group,2.4,0,1,Check-Out,2019-09-03 -City Hotel,1,88,2017,June,22,22,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,100.6,0,0,Canceled,2020-02-01 -City Hotel,0,22,2016,June,23,20,0,1,1,0.0,0,BB,AUT,Offline TA/TO,Corporate,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,11,2015,December,53,21,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.24,0,3,Check-Out,2018-11-02 -Resort Hotel,0,22,2016,July,37,6,2,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2017,April,23,13,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,110.23,1,0,Check-Out,2020-02-01 -City Hotel,0,160,2015,October,46,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.48,0,0,Canceled,2018-08-03 -City Hotel,1,41,2015,September,39,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,109.65,0,0,Canceled,2018-09-02 -City Hotel,0,6,2016,June,18,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,14.0,45.0,0,Transient,33.61,0,0,Check-Out,2019-03-04 -City Hotel,1,152,2017,June,26,5,2,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.74,0,1,Canceled,2019-12-04 -City Hotel,0,254,2015,October,49,18,0,2,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.1,0,0,Check-Out,2018-08-03 -Resort Hotel,0,52,2017,August,37,13,2,5,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-06-03 -City Hotel,1,13,2016,April,17,25,2,5,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,10.0,179.0,0,Transient,80.88,0,2,Canceled,2019-02-01 -City Hotel,1,378,2016,August,35,5,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,84.34,0,0,Canceled,2017-12-03 -City Hotel,0,241,2016,August,23,28,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,233.99,0,1,Check-Out,2019-07-04 -City Hotel,1,353,2015,July,44,29,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.18,0,0,Canceled,2017-11-02 -Resort Hotel,1,60,2016,April,18,26,2,3,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,320.0,179.0,0,Transient-Party,62.21,0,0,Canceled,2019-03-04 -City Hotel,0,113,2016,March,4,31,1,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,64,Transient,103.35,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,July,22,25,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,62.74,0,2,Check-Out,2019-02-01 -City Hotel,0,47,2016,May,21,20,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,121.56,0,0,Check-Out,2019-02-01 -Resort Hotel,0,2,2015,December,53,31,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,37.78,0,2,Check-Out,2019-09-03 -City Hotel,1,96,2015,August,43,21,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.86,0,3,Canceled,2018-08-03 -City Hotel,1,10,2015,August,37,6,2,1,2,0.0,0,BB,,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,41.87,0,2,Canceled,2018-07-03 -City Hotel,0,263,2017,June,25,1,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.2,0,1,Check-Out,2020-01-04 -City Hotel,1,152,2016,September,37,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,78.58,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,March,9,31,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,69.84,0,1,Check-Out,2020-04-02 -Resort Hotel,0,261,2017,March,11,6,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,265.0,179.0,0,Transient,77.75,0,0,Check-Out,2020-03-03 -Resort Hotel,0,151,2017,March,19,30,0,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,242.0,179.0,0,Transient-Party,219.25,1,0,Check-Out,2020-04-02 -Resort Hotel,0,52,2015,December,16,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,128.0,179.0,0,Transient,37.01,0,0,Check-Out,2018-12-03 -City Hotel,0,4,2017,April,16,13,0,2,2,2.0,0,BB,AUT,Direct,Direct,1,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,88.0,0,0,Check-Out,2019-02-01 -City Hotel,1,87,2016,November,51,17,0,2,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,74.61,0,1,Canceled,2018-12-03 -Resort Hotel,1,39,2015,December,53,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,62.64,0,0,Canceled,2018-12-03 -Resort Hotel,1,170,2017,March,11,20,2,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,35.51,0,0,Canceled,2020-04-02 -City Hotel,0,35,2016,June,26,27,0,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,F,0,No Deposit,14.0,179.0,0,Transient,165.27,0,0,Check-Out,2019-02-01 -City Hotel,1,90,2016,November,49,27,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,67.54,0,0,Canceled,2019-10-04 -Resort Hotel,0,36,2017,June,18,18,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,109.12,0,3,Check-Out,2020-03-03 -City Hotel,1,43,2015,July,27,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.02,0,0,Canceled,2018-05-03 -City Hotel,1,190,2016,October,45,24,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,13.0,179.0,0,Transient,88.63,0,0,Canceled,2018-09-02 -City Hotel,1,52,2016,September,45,21,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,19,Transient,76.73,0,0,Canceled,2018-08-03 -City Hotel,0,54,2016,December,50,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient-Party,68.34,0,0,Check-Out,2019-06-03 -City Hotel,1,9,2016,January,4,13,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.4,0,0,Canceled,2019-09-03 -Resort Hotel,0,372,2016,September,29,8,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Transient,77.7,0,0,Check-Out,2019-06-03 -City Hotel,0,4,2015,October,46,6,0,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,121.6,0,0,Check-Out,2018-05-03 -City Hotel,0,53,2015,October,43,5,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,89.36,0,0,Check-Out,2018-07-03 -Resort Hotel,0,36,2016,August,34,24,2,1,3,2.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient-Party,206.01,0,0,Check-Out,2019-05-04 -Resort Hotel,1,0,2016,February,12,21,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,23.73,0,0,No-Show,2018-11-02 -Resort Hotel,1,0,2016,August,39,1,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,1,0,A,A,0,No Deposit,15.0,179.0,0,Transient,59.41,0,0,No-Show,2018-07-03 -City Hotel,1,50,2016,October,45,3,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,59,Transient,103.93,0,3,Canceled,2018-08-03 -Resort Hotel,0,258,2016,July,31,30,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,75.94,0,3,Check-Out,2020-06-02 -Resort Hotel,0,210,2016,September,36,15,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,42.02,0,2,Check-Out,2019-04-03 -City Hotel,1,38,2017,July,33,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.62,0,1,Canceled,2019-10-04 -Resort Hotel,1,335,2017,August,33,16,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,241.35,0,0,Canceled,2019-09-03 -City Hotel,1,302,2016,June,31,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.72,0,0,Canceled,2018-12-03 -City Hotel,0,19,2017,February,10,24,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.03,0,0,Canceled,2019-09-03 -City Hotel,1,49,2015,November,44,6,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,93.32,0,1,Canceled,2018-08-03 -City Hotel,0,32,2016,October,42,13,0,1,2,0.0,0,BB,USA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.07,0,0,Check-Out,2019-06-03 -City Hotel,1,20,2016,August,40,17,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,155.97,0,1,Canceled,2020-06-02 -Resort Hotel,0,103,2016,July,34,16,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,178.25,0,2,Check-Out,2018-05-03 -City Hotel,0,237,2017,June,22,6,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,77.66,0,0,Check-Out,2020-07-03 -Resort Hotel,0,244,2016,March,17,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,3,Refundable,13.0,223.0,0,Transient-Party,59.02,0,0,Check-Out,2019-07-04 -Resort Hotel,0,146,2016,November,36,31,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,2,Refundable,353.0,223.0,0,Transient-Party,40.45,0,0,Check-Out,2019-04-03 -City Hotel,0,166,2016,August,36,4,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,128.03,0,0,Check-Out,2019-05-04 -Resort Hotel,1,39,2016,February,10,18,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,38.45,0,1,No-Show,2018-12-03 -City Hotel,1,1,2016,October,42,6,2,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,81.71,0,0,Canceled,2019-05-04 -City Hotel,0,16,2017,February,8,9,0,1,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,73.72,0,0,Check-Out,2020-03-03 -City Hotel,1,14,2016,January,11,22,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,1,1,A,E,0,No Deposit,10.0,45.0,0,Transient,62.19,0,1,Canceled,2018-12-03 -Resort Hotel,0,9,2015,December,52,28,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,116.25,0,0,Check-Out,2018-12-03 -Resort Hotel,0,100,2016,December,51,30,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,75,Transient-Party,81.01,0,0,Check-Out,2019-11-03 -City Hotel,1,408,2016,March,15,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,0,Transient,62.58,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,March,9,6,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,67.14,0,0,Check-Out,2019-01-03 -City Hotel,0,8,2017,October,42,9,2,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,80.06,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,June,16,15,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,110.55,0,3,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,August,37,30,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,247.94,0,2,Check-Out,2018-06-02 -City Hotel,0,93,2015,August,38,26,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,103.14,0,2,Check-Out,2018-06-02 -Resort Hotel,0,308,2015,October,42,21,2,6,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,61.12,0,0,Check-Out,2017-12-03 -City Hotel,0,146,2016,August,26,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,28.0,179.0,0,Transient-Party,95.91,0,0,Check-Out,2019-05-04 -City Hotel,1,342,2015,September,39,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.84,0,0,Canceled,2017-12-03 -City Hotel,0,10,2017,July,33,31,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.52,0,0,Check-Out,2020-06-02 -Resort Hotel,0,144,2015,December,51,2,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,261.0,179.0,0,Transient,44.95,0,1,Check-Out,2019-11-03 -Resort Hotel,0,3,2015,December,53,9,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Group,62.26,0,1,Check-Out,2018-12-03 -Resort Hotel,0,26,2016,December,52,12,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,13.0,239.0,0,Transient,36.8,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2017,May,23,12,0,1,1,0.0,0,BB,,Aviation,Corporate,1,0,0,D,D,1,No Deposit,15.0,171.0,0,Transient,111.66,0,0,Check-Out,2020-04-02 -City Hotel,0,209,2016,October,43,10,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,78.52,0,1,Check-Out,2019-08-04 -City Hotel,1,0,2017,April,16,28,2,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,1,A,F,0,Non Refund,30.0,179.0,0,Transient,97.9,0,0,Canceled,2020-02-01 -City Hotel,0,1,2016,May,23,4,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Group,100.02,0,0,Check-Out,2019-04-03 -City Hotel,1,201,2015,August,37,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.03,0,0,Canceled,2018-08-03 -City Hotel,0,8,2016,December,53,24,2,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,1,A,D,0,No Deposit,12.0,73.0,0,Transient,60.16,1,1,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,February,11,21,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,16.0,76.0,0,Transient,67.34,0,0,Check-Out,2018-11-02 -Resort Hotel,1,20,2017,July,33,18,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,198.93,0,1,Check-Out,2020-06-02 -City Hotel,0,193,2017,June,22,27,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.55,0,0,Check-Out,2019-12-04 -Resort Hotel,0,252,2017,June,28,13,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Contract,164.35,0,0,Check-Out,2020-02-01 -City Hotel,0,6,2016,October,44,12,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,148.37,0,0,Check-Out,2019-07-04 -City Hotel,1,343,2017,May,21,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,77.3,0,0,Canceled,2020-02-01 -City Hotel,1,30,2017,February,11,23,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,72.12,0,0,Canceled,2019-11-03 -City Hotel,0,242,2017,June,31,20,0,1,2,0.0,0,HB,PRT,Complementary,TA/TO,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2020-07-03 -City Hotel,1,16,2015,August,41,5,2,5,3,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-06-02 -City Hotel,1,48,2015,October,46,10,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,70.32,0,0,Canceled,2018-09-02 -City Hotel,1,2,2017,February,10,5,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.0,0,1,Canceled,2019-12-04 -City Hotel,1,90,2017,May,10,22,2,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,78.27,0,0,Canceled,2020-03-03 -City Hotel,0,11,2016,May,15,28,0,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,68.72,0,0,Check-Out,2019-02-01 -City Hotel,0,14,2016,October,43,21,2,2,1,0.0,0,SC,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,199.0,179.0,0,Transient,80.83,0,0,Canceled,2019-08-04 -City Hotel,0,150,2016,May,21,24,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient-Party,128.48,0,0,Check-Out,2019-04-03 -Resort Hotel,0,132,2016,May,15,10,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,93.36,1,3,Check-Out,2019-03-04 -Resort Hotel,0,6,2017,February,11,15,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,79.69,0,0,Check-Out,2019-09-03 -City Hotel,0,42,2016,June,21,20,1,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,74.95,0,1,Check-Out,2019-06-03 -Resort Hotel,0,152,2017,July,33,30,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,227.24,1,2,Check-Out,2020-07-03 -City Hotel,0,255,2017,July,37,21,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,214.61,0,0,Check-Out,2020-06-02 -Resort Hotel,1,19,2016,December,45,20,4,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,88.82,0,2,Canceled,2018-11-02 -City Hotel,1,282,2015,October,46,30,2,2,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,214.0,0,Transient,62.58,0,0,Canceled,2018-09-02 -City Hotel,0,9,2015,December,53,28,0,3,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,3,No Deposit,37.0,179.0,0,Transient-Party,108.86,0,0,Check-Out,2018-06-02 -City Hotel,0,240,2017,May,20,5,1,0,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,96.78,1,1,Check-Out,2020-02-01 -Resort Hotel,0,2,2017,February,10,15,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,92.0,0,Transient,35.18,0,0,Check-Out,2019-11-03 -City Hotel,1,16,2016,January,8,5,2,5,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,76.97,0,1,No-Show,2019-02-01 -City Hotel,0,99,2016,July,27,17,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,98.43,1,0,Check-Out,2019-03-04 -City Hotel,1,4,2016,January,9,10,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,77.83,0,0,No-Show,2018-12-03 -Resort Hotel,1,36,2017,March,8,16,2,0,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,87.03,0,2,Canceled,2020-02-01 -Resort Hotel,0,49,2017,April,22,31,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,173.7,1,2,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,May,20,20,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,C,I,1,No Deposit,13.0,179.0,0,Transient,0.35,0,0,Check-Out,2020-06-02 -Resort Hotel,0,83,2016,November,50,1,0,4,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,2,No Deposit,34.0,179.0,0,Transient,37.03,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2015,November,51,31,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,C,0,No Deposit,14.0,179.0,0,Transient-Party,116.37,0,0,Check-Out,2018-08-03 -Resort Hotel,0,44,2015,December,52,10,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,59.21,0,2,Check-Out,2018-08-03 -Resort Hotel,0,156,2015,August,37,2,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,123.5,0,0,Check-Out,2018-07-03 -Resort Hotel,0,112,2015,November,44,8,2,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,50.29,0,0,Check-Out,2018-08-03 -City Hotel,0,14,2016,October,43,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,232.0,0,Transient,45.91,0,0,Check-Out,2019-06-03 -City Hotel,1,174,2016,March,18,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,75,Transient,62.0,0,0,Canceled,2018-11-02 -City Hotel,0,29,2017,April,18,10,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,71.0,179.0,0,Transient,118.02,0,0,Check-Out,2020-04-02 -City Hotel,1,83,2015,August,38,28,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,175.57,0,0,Canceled,2018-06-02 -City Hotel,0,23,2016,July,36,28,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,October,10,13,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,124.05,0,0,Check-Out,2019-08-04 -City Hotel,0,240,2016,September,53,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,61.78,0,0,Check-Out,2019-06-03 -City Hotel,1,97,2016,December,53,24,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.16,0,2,Canceled,2019-11-03 -City Hotel,0,50,2016,June,8,17,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.64,1,1,Check-Out,2020-06-02 -City Hotel,1,94,2017,June,27,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,184.47,0,0,Canceled,2020-04-02 -City Hotel,1,137,2016,November,51,24,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,88.5,0,2,Canceled,2019-09-03 -City Hotel,0,38,2015,October,43,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,89.86,0,2,Check-Out,2018-09-02 -Resort Hotel,0,15,2015,December,53,31,2,5,2,1.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,58.0,0,1,Check-Out,2018-11-02 -City Hotel,0,1,2015,September,45,21,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Contract,82.9,0,2,Check-Out,2018-08-03 -Resort Hotel,0,19,2015,September,34,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,16.0,179.0,0,Group,34.49,0,2,Check-Out,2018-07-03 -City Hotel,1,13,2016,August,32,25,0,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,189.14,0,1,Canceled,2019-05-04 -Resort Hotel,0,53,2015,December,51,28,0,4,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,370.0,179.0,0,Transient-Party,60.71,0,2,Check-Out,2019-10-04 -City Hotel,0,33,2016,December,51,6,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.73,0,1,Check-Out,2019-11-03 -City Hotel,0,48,2017,April,8,9,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,25.0,179.0,0,Transient,82.79,0,2,Check-Out,2020-02-01 -City Hotel,1,261,2016,October,43,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,71.48,0,0,Canceled,2018-08-03 -Resort Hotel,0,156,2017,July,24,12,2,5,2,1.0,0,HB,GBR,Online TA,Direct,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,166.7,1,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,May,17,12,2,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,73.94,0,0,Check-Out,2019-02-01 -City Hotel,1,46,2016,May,22,24,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,64.16,0,0,Canceled,2019-01-03 -Resort Hotel,0,51,2015,September,43,21,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,41,Contract,61.25,0,0,Check-Out,2018-09-02 -City Hotel,1,115,2017,May,25,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,87.86,0,0,Canceled,2019-02-01 -City Hotel,0,139,2016,February,8,25,2,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,331.0,0,Transient-Party,74.17,0,0,Check-Out,2019-03-04 -City Hotel,0,28,2015,October,44,25,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,160.37,0,0,Check-Out,2018-09-02 -Resort Hotel,0,152,2015,September,44,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,43.65,0,0,Check-Out,2018-05-03 -City Hotel,0,1,2017,May,21,13,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,45.0,0,Group,0.0,0,0,Check-Out,2020-03-03 -Resort Hotel,0,113,2017,May,16,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Contract,107.52,1,0,Check-Out,2020-03-03 -Resort Hotel,0,262,2016,March,23,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,224.0,0,Transient-Party,77.77,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2015,October,45,21,2,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,184.98,0,0,Check-Out,2018-05-03 -City Hotel,0,43,2016,October,18,10,1,0,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,155.08,0,0,Check-Out,2019-04-03 -City Hotel,1,88,2017,June,27,20,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,A,0,Non Refund,14.0,232.0,0,Transient,99.32,0,0,Canceled,2020-02-01 -Resort Hotel,0,17,2017,April,31,26,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,C,F,0,No Deposit,19.0,179.0,0,Transient-Party,138.44,0,0,Check-Out,2020-02-01 -Resort Hotel,0,64,2016,April,18,28,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,182.64,0,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,December,51,27,4,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,3,No Deposit,248.0,179.0,0,Transient,80.61,1,3,Check-Out,2019-10-04 -City Hotel,1,205,2017,January,3,30,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,100.56,0,0,Canceled,2018-11-02 -Resort Hotel,0,51,2017,April,17,30,2,5,1,0.0,0,HB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,106.29,0,0,Check-Out,2020-03-03 -City Hotel,1,35,2016,March,7,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,65.55,0,0,Canceled,2018-11-02 -City Hotel,1,0,2015,August,45,6,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,11.0,179.0,0,Group,93.16,1,1,No-Show,2018-08-03 -City Hotel,1,0,2015,July,27,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,90.6,0,0,Canceled,2018-07-03 -Resort Hotel,0,0,2016,January,10,18,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,38.38,0,3,Check-Out,2018-11-02 -City Hotel,1,56,2017,March,15,28,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,122.46,0,0,Canceled,2019-02-01 -City Hotel,1,126,2016,May,38,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.57,0,0,Canceled,2017-12-03 -City Hotel,1,196,2016,May,34,13,2,5,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,294.0,179.0,0,Transient,79.01,0,0,Canceled,2019-08-04 -City Hotel,1,158,2015,December,49,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.54,0,0,Canceled,2018-12-03 -City Hotel,1,53,2016,July,28,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,90.51,0,0,Canceled,2018-11-02 -City Hotel,0,243,2016,July,31,10,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,171.91,0,0,Check-Out,2019-04-03 -Resort Hotel,0,42,2016,May,23,23,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,C,1,No Deposit,16.0,331.0,0,Transient,66.0,0,0,Check-Out,2019-06-03 -Resort Hotel,1,122,2017,August,28,31,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,199.04,0,1,Canceled,2020-04-02 -Resort Hotel,1,37,2017,August,35,21,3,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,370.0,179.0,0,Transient,194.91,0,0,Canceled,2020-04-02 -Resort Hotel,0,154,2016,February,10,31,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,39.0,179.0,0,Transient,74.29,0,0,Canceled,2018-12-03 -City Hotel,1,176,2016,June,36,14,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,Non Refund,69.0,179.0,0,Transient,126.94,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,June,25,27,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,55.15,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,February,11,21,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,203.0,179.0,0,Transient,73.88,1,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2017,August,33,2,0,2,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-07-03 -City Hotel,0,34,2016,May,23,5,0,4,1,0.0,0,BB,BEL,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,150.49,0,1,Check-Out,2019-02-01 -City Hotel,1,109,2017,June,36,4,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,193.7,0,2,Canceled,2020-07-03 -City Hotel,1,260,2017,August,35,5,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.58,0,0,Canceled,2019-10-04 -City Hotel,0,3,2017,March,11,13,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,116.26,0,0,Check-Out,2020-02-01 -Resort Hotel,1,0,2017,January,2,16,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,11.0,61.0,0,Transient,66.82,0,0,Canceled,2019-11-03 -City Hotel,0,12,2016,May,17,21,1,3,1,0.0,0,BB,SWE,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,101.62,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2016,June,27,31,0,2,1,2.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,13.0,179.0,0,Transient,75.76,1,0,Check-Out,2019-05-04 -City Hotel,0,0,2017,May,21,9,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2020-03-03 -City Hotel,1,96,2017,March,16,21,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,64.01,0,0,Canceled,2018-12-03 -City Hotel,0,50,2017,March,10,16,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,8.0,179.0,0,Transient,73.15,0,1,Check-Out,2020-02-01 -Resort Hotel,0,11,2017,January,3,3,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,84.0,0,Transient,32.66,1,0,Check-Out,2019-09-03 -Resort Hotel,1,143,2016,October,42,24,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,87.35,0,0,Canceled,2019-04-03 -Resort Hotel,0,312,2016,October,43,28,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,119.79,0,2,Check-Out,2019-08-04 -City Hotel,0,21,2015,August,37,21,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,45.0,0,Transient-Party,0.0,0,0,Check-Out,2018-08-03 -Resort Hotel,0,38,2015,December,43,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,37.31,0,0,Check-Out,2018-11-02 -City Hotel,0,13,2016,May,10,14,0,4,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,116.79,0,0,Check-Out,2019-03-04 -City Hotel,0,42,2017,April,21,6,2,1,3,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,73.0,179.0,0,Transient,95.74,0,0,Check-Out,2020-01-04 -City Hotel,0,296,2016,July,29,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,124.39,0,1,Canceled,2019-08-04 -City Hotel,0,2,2017,July,34,28,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,177.23,0,0,Check-Out,2020-06-02 -City Hotel,0,43,2016,September,46,10,0,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,170.0,0,Transient,112.66,0,2,Check-Out,2019-09-03 -Resort Hotel,0,8,2016,November,52,24,0,1,1,0.0,0,BB,CN,Corporate,Corporate,0,0,0,A,E,1,No Deposit,16.0,331.0,0,Transient,58.6,0,0,Check-Out,2019-07-04 -City Hotel,0,313,2015,July,35,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,110.07,0,0,Check-Out,2018-04-02 -Resort Hotel,1,247,2016,October,43,16,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,165.07,0,0,Canceled,2019-08-04 -City Hotel,0,43,2015,October,41,5,0,2,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,D,1,No Deposit,15.0,179.0,0,Transient,47.95,0,0,Check-Out,2018-08-03 -City Hotel,0,110,2017,March,18,27,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,23.0,179.0,0,Transient,116.92,0,1,Check-Out,2019-10-04 -City Hotel,1,247,2015,August,36,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,121.59,0,0,Canceled,2018-06-02 -Resort Hotel,1,32,2016,May,18,13,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,237.0,179.0,0,Transient,122.39,1,0,Check-Out,2019-04-03 -Resort Hotel,1,0,2017,January,2,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,73.0,0,Transient,35.29,0,0,Canceled,2019-10-04 -Resort Hotel,1,270,2017,July,33,25,0,2,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-05-03 -Resort Hotel,1,226,2015,September,32,9,2,5,2,0.0,0,FB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,97.94,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,October,34,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,12.0,179.0,0,Transient,45.5,0,0,Check-Out,2018-05-03 -City Hotel,0,100,2016,June,21,10,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,92.43,0,0,Check-Out,2019-03-04 -City Hotel,1,0,2016,February,9,16,0,2,2,0.0,0,BB,PRT,Direct,Corporate,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,64.63,0,0,Canceled,2018-11-02 -Resort Hotel,0,44,2017,May,26,20,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Contract,135.15,1,1,Check-Out,2020-05-03 -City Hotel,0,5,2016,March,10,19,0,3,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.96,0,0,Check-Out,2019-02-01 -Resort Hotel,0,201,2016,March,18,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,15.0,223.0,0,Transient-Party,71.25,0,0,Check-Out,2019-03-04 -Resort Hotel,0,46,2016,May,23,13,0,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,2,No Deposit,315.0,179.0,0,Transient-Party,71.83,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,June,21,21,1,0,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,122.0,0,1,Check-Out,2019-04-03 -City Hotel,0,2,2016,February,8,25,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,D,0,No Deposit,12.0,179.0,0,Group,67.07,0,0,Check-Out,2018-10-03 -City Hotel,1,271,2016,September,43,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.54,0,0,Canceled,2017-09-02 -City Hotel,0,35,2016,June,50,9,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient-Party,60.78,0,1,Check-Out,2019-01-03 -Resort Hotel,0,7,2017,June,21,24,2,2,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient,104.61,0,0,Check-Out,2020-02-01 -Resort Hotel,1,412,2017,May,23,29,2,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,95.68,0,0,Canceled,2020-04-02 -City Hotel,1,91,2017,July,27,17,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.13,0,0,Canceled,2020-04-02 -City Hotel,1,45,2016,November,49,17,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,11.0,179.0,0,Transient,70.43,0,2,Canceled,2019-09-03 -City Hotel,1,42,2016,September,36,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,31.66,0,0,Canceled,2018-01-31 -City Hotel,1,12,2016,March,10,13,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,66.07,0,1,Canceled,2019-10-04 -Resort Hotel,1,257,2015,November,51,27,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,244.0,179.0,0,Transient,53.19,0,0,Canceled,2018-11-02 -Resort Hotel,0,14,2015,December,53,6,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,C,0,No Deposit,188.0,179.0,0,Transient,47.25,1,0,Check-Out,2018-12-03 -Resort Hotel,0,198,2016,September,35,21,2,4,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,242.0,179.0,0,Transient,220.06,1,0,Canceled,2019-08-04 -City Hotel,0,265,2017,June,29,15,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,149.0,179.0,0,Transient,179.66,0,0,Check-Out,2020-03-03 -Resort Hotel,0,41,2017,January,4,6,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,68.09,0,0,Check-Out,2019-10-04 -City Hotel,0,44,2017,January,21,28,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,224.74,0,1,Check-Out,2020-05-03 -Resort Hotel,0,316,2017,July,33,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,239.0,179.0,0,Transient,104.63,1,2,Check-Out,2020-07-03 -Resort Hotel,1,49,2017,May,22,25,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,295.0,179.0,0,Transient,76.36,0,2,Canceled,2019-03-04 -Resort Hotel,0,182,2016,June,33,30,2,7,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,42.25,0,3,Check-Out,2019-06-03 -City Hotel,0,1,2017,March,9,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,63.0,179.0,0,Transient,76.17,0,0,Check-Out,2020-02-01 -Resort Hotel,0,158,2016,August,22,20,3,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,78.51,0,0,Check-Out,2019-09-03 -Resort Hotel,1,152,2017,May,20,23,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,114.5,0,0,Canceled,2020-02-01 -City Hotel,0,262,2017,May,22,18,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,2,No Deposit,13.0,223.0,0,Transient,74.35,0,0,Check-Out,2020-03-03 -Resort Hotel,0,43,2016,October,45,30,0,3,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,75,Transient,73.35,0,1,Check-Out,2019-10-04 -Resort Hotel,0,19,2017,March,9,8,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,283.0,179.0,0,Transient-Party,31.41,0,1,Check-Out,2019-11-03 -City Hotel,0,111,2017,June,26,12,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.74,0,2,Check-Out,2020-03-03 -Resort Hotel,0,56,2015,November,37,4,2,3,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,62.12,0,2,Check-Out,2018-06-02 -City Hotel,0,0,2017,February,16,6,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Contract,99.38,0,0,Check-Out,2020-03-03 -Resort Hotel,1,19,2016,December,51,17,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,48.26,0,1,Canceled,2018-12-03 -City Hotel,0,16,2016,June,21,22,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.83,1,2,Check-Out,2019-02-01 -Resort Hotel,1,38,2016,December,49,22,2,5,2,1.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,77.98,0,0,Canceled,2019-08-04 -Resort Hotel,0,254,2015,July,31,5,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,106.1,0,0,Check-Out,2018-05-03 -City Hotel,1,362,2015,September,27,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.48,0,0,Canceled,2018-01-03 -Resort Hotel,0,293,2017,June,24,16,4,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,90.24,1,1,Check-Out,2020-03-03 -Resort Hotel,0,12,2016,April,16,24,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient,32.88,0,0,Check-Out,2019-03-04 -City Hotel,1,146,2017,February,8,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient,76.4,0,0,Canceled,2020-04-02 -Resort Hotel,0,53,2017,August,36,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,13.0,331.0,0,Transient,124.7,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,May,22,9,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,206.0,179.0,0,Transient,60.68,1,0,Check-Out,2019-10-04 -City Hotel,1,94,2016,July,26,2,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,Non Refund,13.0,179.0,38,Transient,119.33,0,0,Canceled,2019-02-01 -City Hotel,0,43,2015,August,32,12,2,4,2,0.0,0,BB,FRA,Online TA,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,0.0,0,1,Check-Out,2020-07-03 -Resort Hotel,0,243,2017,March,22,17,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,69.08,1,0,Check-Out,2020-07-03 -City Hotel,0,105,2017,April,24,26,0,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,C,A,1,No Deposit,37.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-12-04 -City Hotel,1,15,2016,December,23,24,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,L,0,No Deposit,9.0,179.0,0,Transient,70.4,0,0,Canceled,2018-10-03 -Resort Hotel,1,173,2017,August,35,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,76.0,179.0,0,Transient,170.68,0,3,Canceled,2020-04-02 -City Hotel,0,48,2015,August,38,6,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,190.67,0,2,Check-Out,2018-06-02 -City Hotel,0,133,2016,September,44,13,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,141.55,0,0,Check-Out,2019-11-03 -City Hotel,0,153,2016,September,42,18,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,89.06,0,0,Check-Out,2019-06-03 -City Hotel,1,240,2016,May,21,21,2,2,2,0.0,0,BB,GBR,Undefined,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,75.35,0,0,Canceled,2019-03-04 -City Hotel,1,43,2017,July,16,18,0,5,2,0.0,0,HB,CN,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,125.29,0,0,Canceled,2020-03-03 -Resort Hotel,0,49,2016,October,43,11,2,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,78.19,0,0,Check-Out,2019-06-03 -City Hotel,0,37,2017,May,21,13,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,130.1,0,3,Check-Out,2020-04-02 -Resort Hotel,0,60,2015,August,32,4,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,203.87,0,0,Check-Out,2018-06-02 -City Hotel,0,18,2017,May,23,15,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,97.51,0,0,Check-Out,2020-04-02 -Resort Hotel,0,192,2017,June,26,26,4,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,242.0,179.0,0,Transient,120.87,1,2,Check-Out,2020-07-03 -Resort Hotel,0,14,2015,October,35,30,1,5,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,103.0,179.0,0,Transient,189.44,1,0,Check-Out,2018-06-02 -City Hotel,1,13,2017,February,9,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,69.06,0,0,Canceled,2019-11-03 -City Hotel,0,1,2017,March,14,28,1,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.02,0,1,Check-Out,2019-10-04 -Resort Hotel,1,47,2016,February,11,28,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,96.33,0,0,Canceled,2018-11-02 -City Hotel,0,157,2017,June,28,17,0,3,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,177.0,45.0,0,Transient,113.23,0,2,Check-Out,2020-06-02 -Resort Hotel,0,3,2017,February,3,7,0,2,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,2,No Deposit,15.0,179.0,0,Transient,157.59,0,1,Check-Out,2020-04-02 -City Hotel,0,17,2016,January,50,21,0,2,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,75.29,0,0,Check-Out,2019-08-04 -Resort Hotel,0,105,2017,June,20,25,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,F,2,No Deposit,243.0,179.0,0,Transient,169.09,1,1,Check-Out,2020-04-02 -Resort Hotel,0,41,2016,January,4,9,1,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,63.99,0,0,Check-Out,2018-11-02 -City Hotel,0,40,2017,June,18,31,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.55,0,1,Check-Out,2020-05-03 -Resort Hotel,0,112,2015,July,37,16,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,243.0,179.0,0,Transient,193.67,0,0,Check-Out,2018-07-03 -City Hotel,0,34,2017,April,17,24,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,99.05,0,0,Check-Out,2020-04-02 -City Hotel,1,41,2016,May,21,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.15,0,0,Canceled,2019-07-04 -City Hotel,0,12,2017,May,21,14,1,4,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-03-03 -City Hotel,0,24,2016,September,34,24,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,113.33,0,0,Check-Out,2019-06-03 -Resort Hotel,0,14,2016,February,12,14,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient-Party,64.38,0,0,Check-Out,2018-12-03 -City Hotel,0,19,2015,December,50,21,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,3,No Deposit,241.0,179.0,0,Transient,88.79,0,2,Check-Out,2018-08-03 -City Hotel,1,21,2017,January,3,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.16,0,1,Canceled,2019-08-04 -Resort Hotel,0,158,2017,August,37,28,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-07-03 -Resort Hotel,0,19,2017,June,28,28,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,299.0,179.0,0,Transient,62.7,0,0,Check-Out,2020-07-03 -City Hotel,1,301,2015,August,38,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.51,0,0,Canceled,2018-06-02 -Resort Hotel,0,2,2016,October,43,10,1,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,K,0,No Deposit,15.0,179.0,0,Transient,83.65,0,0,Check-Out,2019-09-03 -Resort Hotel,0,244,2016,May,17,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,2,Refundable,14.0,179.0,0,Transient,93.15,0,0,Check-Out,2019-04-03 -City Hotel,0,8,2016,October,44,12,0,2,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,86.82,0,2,Check-Out,2019-08-04 -Resort Hotel,1,360,2017,March,16,31,0,3,2,0.0,0,HB,PRT,Groups,Corporate,1,0,0,A,A,0,Non Refund,11.0,223.0,75,Transient,94.47,0,0,Canceled,2020-04-02 -City Hotel,0,155,2016,May,23,13,1,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,80.3,0,0,Check-Out,2019-05-04 -City Hotel,1,39,2016,February,10,6,0,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,71.45,0,0,Canceled,2018-11-02 -City Hotel,1,255,2016,March,14,5,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,96.15,0,0,Canceled,2019-02-01 -Resort Hotel,0,92,2017,April,12,16,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,67.91,0,3,Check-Out,2019-11-03 -City Hotel,0,92,2016,March,15,7,0,2,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,76.69,0,0,Check-Out,2019-03-04 -City Hotel,0,49,2017,March,18,25,0,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,74.31,0,0,Check-Out,2020-04-02 -Resort Hotel,0,197,2017,August,33,22,4,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,94.75,0,1,Check-Out,2019-06-03 -Resort Hotel,0,283,2015,June,31,8,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,276.0,179.0,0,Contract,78.12,0,0,Check-Out,2018-07-03 -City Hotel,0,11,2016,June,10,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,12.0,45.0,0,Transient,62.42,0,0,Check-Out,2019-02-01 -Resort Hotel,0,112,2016,August,39,25,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,101.01,0,0,Check-Out,2018-06-02 -City Hotel,1,252,2017,May,23,29,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,157.2,0,1,Canceled,2020-07-03 -Resort Hotel,0,254,2016,October,42,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Group,63.09,0,0,Check-Out,2019-09-03 -Resort Hotel,0,38,2016,March,18,31,2,5,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,125.66,0,2,Check-Out,2019-02-01 -Resort Hotel,0,48,2015,December,51,27,2,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,69.52,0,0,Check-Out,2018-08-03 -Resort Hotel,0,6,2017,February,9,8,0,5,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,245.0,331.0,0,Transient-Party,39.41,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2017,March,16,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,116.32,0,2,Check-Out,2020-03-03 -Resort Hotel,0,78,2017,June,24,28,4,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,89.0,179.0,0,Contract,142.95,0,0,Check-Out,2019-04-03 -City Hotel,1,94,2017,June,10,25,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,90.84,0,2,No-Show,2020-04-02 -City Hotel,0,26,2015,December,50,5,0,2,1,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,31.86,0,1,Check-Out,2018-08-03 -City Hotel,1,11,2016,September,45,24,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.05,0,3,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,October,45,27,1,10,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,244.08,0,0,Check-Out,2019-06-03 -City Hotel,0,7,2016,September,40,3,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,98.03,0,0,Check-Out,2019-04-03 -City Hotel,0,20,2017,May,22,25,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,98.44,0,0,Check-Out,2020-03-03 -Resort Hotel,0,18,2016,September,37,2,0,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.75,0,1,Check-Out,2019-06-03 -City Hotel,0,150,2016,June,32,5,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.81,0,1,Check-Out,2019-03-04 -Resort Hotel,1,43,2015,December,50,7,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,78.28,0,0,Canceled,2019-01-03 -City Hotel,1,92,2015,September,38,30,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,109.58,0,0,Canceled,2018-06-02 -City Hotel,1,413,2017,April,21,16,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,120.18,0,0,Canceled,2020-02-01 -City Hotel,0,1,2017,February,9,9,1,1,1,0.0,0,SC,PRT,Complementary,Direct,0,0,0,L,K,0,No Deposit,12.0,179.0,0,Transient,0.29,1,0,Check-Out,2019-11-03 -City Hotel,0,89,2016,March,17,14,0,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,85.52,0,3,Check-Out,2019-02-01 -City Hotel,0,304,2016,October,44,21,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,73.93,0,0,Check-Out,2019-09-03 -Resort Hotel,0,200,2016,October,44,20,2,10,2,0.0,0,FB,NLD,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,113.82,1,0,Check-Out,2019-06-03 -Resort Hotel,0,137,2016,December,50,31,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,Refundable,15.0,179.0,0,Transient-Party,64.11,0,0,Check-Out,2019-10-04 -City Hotel,0,101,2017,April,22,30,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,84.88,0,2,Check-Out,2020-05-03 -City Hotel,0,46,2017,March,12,21,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,61.0,179.0,0,Transient,58.96,0,1,Check-Out,2020-01-04 -Resort Hotel,1,0,2015,August,51,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,17.0,179.0,0,Transient-Party,43.23,0,0,Canceled,2018-06-02 -Resort Hotel,0,19,2015,November,43,26,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,32.98,0,0,Check-Out,2018-08-03 -Resort Hotel,0,41,2017,March,10,16,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,0,No Deposit,13.0,78.0,0,Transient,158.89,0,0,Check-Out,2020-03-03 -City Hotel,0,46,2017,May,22,16,0,1,1,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,122.66,0,0,Check-Out,2019-12-04 -City Hotel,0,11,2016,December,53,3,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,161.88,1,2,Check-Out,2019-10-04 -City Hotel,1,101,2017,March,9,29,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.4,0,0,Canceled,2019-11-03 -Resort Hotel,0,15,2016,March,19,21,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,317.0,179.0,0,Transient,60.29,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2017,January,20,15,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,71.23,0,1,Check-Out,2020-02-01 -Resort Hotel,0,99,2015,July,43,28,4,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,147.0,179.0,0,Contract,62.63,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2015,October,32,26,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,36.52,0,1,Check-Out,2018-05-03 -Resort Hotel,1,52,2016,February,53,9,0,7,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,248.0,179.0,0,Transient,44.48,0,0,Canceled,2019-03-04 -City Hotel,1,206,2017,July,30,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,13.0,179.0,0,Transient,137.03,0,3,Canceled,2020-06-02 -City Hotel,1,242,2015,September,36,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.08,0,0,Canceled,2017-10-03 -City Hotel,0,12,2016,December,51,4,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,85.51,0,0,Check-Out,2019-11-03 -City Hotel,1,41,2016,August,38,18,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,1.95,0,0,Canceled,2018-01-03 -Resort Hotel,0,142,2015,September,43,27,0,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Contract,113.99,0,2,Check-Out,2018-08-03 -City Hotel,0,267,2017,July,32,28,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.93,0,2,Check-Out,2020-06-02 -City Hotel,1,57,2016,September,22,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,19,Transient,58.81,0,0,Canceled,2018-08-03 -City Hotel,0,44,2017,May,21,18,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,182.32,0,1,Check-Out,2020-04-02 -City Hotel,0,44,2016,December,50,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,83.51,0,0,Check-Out,2019-12-04 -City Hotel,1,37,2017,February,11,28,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,7.0,179.0,0,Transient,95.0,0,0,Canceled,2019-10-04 -City Hotel,0,20,2015,October,45,10,1,1,1,0.0,0,BB,CN,Groups,Corporate,0,0,0,A,C,0,No Deposit,12.0,271.0,0,Transient-Party,32.48,0,0,Check-Out,2018-09-02 -City Hotel,0,144,2017,January,4,31,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,96.67,0,1,Check-Out,2020-04-02 -City Hotel,1,33,2015,September,44,30,0,2,2,0.0,0,HB,,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,75.01,0,0,Canceled,2018-08-03 -City Hotel,1,41,2015,July,27,21,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,75.71,0,0,Canceled,2018-05-03 -City Hotel,1,263,2015,July,32,27,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,72.26,0,0,Canceled,2018-06-02 -City Hotel,1,136,2016,December,50,10,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,9.0,179.0,0,Transient-Party,91.93,0,0,Canceled,2018-11-02 -City Hotel,1,266,2016,July,25,20,2,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.45,0,1,Canceled,2019-05-04 -City Hotel,1,41,2016,June,18,13,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,41,Transient,68.59,0,0,No-Show,2019-01-03 -City Hotel,0,16,2016,March,17,10,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.3,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2015,December,43,27,1,1,1,2.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,17.0,179.0,0,Transient,218.05,0,0,Check-Out,2018-06-02 -Resort Hotel,1,179,2017,May,19,25,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,221.2,0,3,Canceled,2019-12-04 -City Hotel,1,21,2016,January,4,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,79.18,0,0,Canceled,2018-10-03 -City Hotel,1,374,2015,August,37,16,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.71,0,0,Canceled,2018-09-02 -Resort Hotel,1,41,2017,July,30,17,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,93.82,0,2,No-Show,2020-03-03 -City Hotel,0,50,2017,November,21,16,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,113.17,0,1,Check-Out,2020-01-04 -Resort Hotel,1,26,2016,January,43,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,244.0,179.0,0,Transient,38.44,0,0,Canceled,2019-11-03 -City Hotel,1,56,2016,May,20,27,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.39,0,0,Canceled,2019-01-03 -City Hotel,1,326,2017,June,26,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.32,0,0,Canceled,2020-02-01 -City Hotel,1,147,2015,September,44,21,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,123.01,0,0,Canceled,2018-12-03 -City Hotel,1,124,2016,July,36,4,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,9.0,179.0,0,Transient,123.98,0,2,Check-Out,2019-06-03 -City Hotel,0,4,2016,May,22,28,0,1,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,1.66,0,0,Check-Out,2019-03-04 -City Hotel,1,1,2016,February,8,12,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,65.18,0,0,No-Show,2018-11-02 -City Hotel,0,14,2015,November,17,10,0,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Contract,143.41,0,0,Check-Out,2018-01-31 -City Hotel,1,139,2017,June,27,18,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,84.45,0,0,Canceled,2020-03-03 -City Hotel,0,53,2016,July,32,6,2,2,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,129.36,0,0,Check-Out,2019-06-03 -Resort Hotel,0,247,2016,April,21,12,2,4,3,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,114.22,0,0,Check-Out,2019-02-01 -City Hotel,0,41,2016,February,10,12,0,1,2,0.0,0,BB,FRA,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,71.25,0,1,Check-Out,2018-11-02 -Resort Hotel,0,31,2015,September,36,9,2,5,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,120.16,0,2,Check-Out,2018-11-02 -City Hotel,1,44,2016,August,39,24,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,165.42,0,3,Canceled,2019-07-04 -City Hotel,1,370,2017,August,36,30,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,108.63,0,2,Canceled,2020-06-02 -City Hotel,1,298,2016,September,35,20,2,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,107.0,0,0,Canceled,2017-10-03 -Resort Hotel,0,148,2015,August,34,6,2,5,2,1.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,241.0,179.0,0,Contract,123.59,1,1,Check-Out,2018-06-02 -City Hotel,1,261,2016,June,27,17,0,2,3,0.0,0,BB,SWE,Groups,TA/TO,1,1,0,A,A,0,Non Refund,9.0,179.0,39,Transient,106.23,0,0,Canceled,2019-08-04 -City Hotel,0,50,2017,January,3,5,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,129.9,0,2,Check-Out,2019-11-03 -City Hotel,1,370,2016,October,42,15,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,67.9,0,0,Canceled,2019-07-04 -City Hotel,0,0,2017,January,3,28,1,1,1,0.0,0,BB,CHE,Corporate,Direct,0,0,0,A,G,2,No Deposit,17.0,65.0,0,Transient,92.31,0,0,Check-Out,2019-09-03 -City Hotel,0,82,2016,October,43,30,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient,114.77,0,0,Check-Out,2019-09-03 -City Hotel,0,19,2017,February,8,15,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,92.39,0,0,Check-Out,2020-01-04 -City Hotel,1,2,2015,October,51,5,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,1.0,179.0,0,Transient-Party,81.21,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,August,34,25,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,127.96,1,0,Check-Out,2018-12-03 -Resort Hotel,1,1,2016,January,8,2,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,75.32,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,May,23,18,1,0,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,D,0,No Deposit,183.0,179.0,0,Transient,126.43,0,0,Check-Out,2020-05-03 -City Hotel,1,236,2016,March,8,13,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.42,0,0,Canceled,2018-12-03 -City Hotel,1,46,2016,February,37,13,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.09,0,0,Canceled,2019-02-01 -City Hotel,0,12,2017,March,10,13,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,99.92,0,1,Check-Out,2020-04-02 -Resort Hotel,0,202,2016,October,43,28,1,10,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,E,E,0,No Deposit,13.0,167.0,0,Transient-Party,85.31,0,0,Check-Out,2019-09-03 -City Hotel,1,100,2016,June,26,26,2,3,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,128.57,0,0,No-Show,2019-06-03 -City Hotel,0,57,2016,October,44,30,0,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,32.74,0,0,Check-Out,2019-08-04 -City Hotel,1,270,2017,May,22,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -Resort Hotel,0,38,2016,November,46,17,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,60.49,0,0,Check-Out,2019-11-03 -City Hotel,0,147,2017,May,22,21,0,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,122.34,0,0,Check-Out,2020-02-01 -Resort Hotel,0,32,2016,November,10,31,1,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,84.0,179.0,0,Transient,99.43,1,0,Check-Out,2019-01-03 -City Hotel,1,59,2015,May,23,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.7,0,0,Canceled,2018-01-03 -City Hotel,0,8,2016,September,12,18,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,176.26,0,3,Check-Out,2019-06-03 -City Hotel,0,0,2017,June,23,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,1,A,K,0,No Deposit,83.0,179.0,0,Group,69.93,1,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,June,28,5,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,164.0,179.0,0,Group,71.87,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2017,June,27,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,E,0,No Deposit,14.0,45.0,0,Transient,78.14,0,0,Check-Out,2020-02-01 -City Hotel,1,0,2016,June,23,24,0,1,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,88.18,0,0,Check-Out,2019-06-03 -City Hotel,1,151,2016,June,25,18,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,67.0,179.0,0,Transient,78.42,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2015,December,51,29,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,365.0,179.0,0,Transient,44.49,0,0,Check-Out,2018-10-03 -City Hotel,0,60,2015,November,50,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,1,A,A,0,No Deposit,93.0,179.0,0,Group,32.11,0,0,Check-Out,2018-08-03 -Resort Hotel,1,122,2015,July,52,16,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,1,0,A,F,0,No Deposit,241.0,179.0,0,Transient,56.92,0,0,Canceled,2018-06-02 -City Hotel,1,323,2017,June,26,20,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient,88.61,0,0,Canceled,2020-03-03 -Resort Hotel,0,60,2016,May,22,19,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,236.15,0,1,Check-Out,2019-04-03 -City Hotel,0,0,2017,March,9,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,58.27,0,0,Check-Out,2019-11-03 -City Hotel,1,96,2016,June,26,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.2,0,0,Canceled,2019-02-01 -City Hotel,1,18,2017,August,14,14,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,10.0,179.0,0,Group,1.77,0,1,Canceled,2020-01-04 -Resort Hotel,0,206,2016,August,34,2,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,129.7,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,March,12,29,0,2,1,0.0,0,BB,CN,Groups,Corporate,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,59.59,0,0,Check-Out,2019-03-04 -Resort Hotel,0,28,2015,December,50,24,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,43.83,0,2,Check-Out,2018-08-03 -City Hotel,1,46,2015,December,53,29,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,76.22,0,0,Canceled,2018-07-03 -City Hotel,1,14,2017,February,12,29,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,84.06,0,1,Canceled,2019-11-03 -Resort Hotel,1,146,2016,March,17,26,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,36.0,0,2,Canceled,2019-04-03 -City Hotel,0,3,2016,October,36,9,0,1,3,0.0,0,BB,,Complementary,TA/TO,0,0,0,P,K,0,No Deposit,14.0,179.0,0,Transient,0.41,0,0,Check-Out,2019-08-04 -Resort Hotel,0,16,2017,August,33,28,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,E,0,No Deposit,248.0,179.0,0,Transient,207.12,0,0,Check-Out,2020-07-03 -City Hotel,0,11,2016,September,32,20,2,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,D,A,0,No Deposit,185.0,179.0,0,Transient,175.06,0,0,Check-Out,2019-08-04 -City Hotel,0,14,2016,May,25,28,1,0,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,215,2016,July,34,31,1,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,156.87,1,2,Check-Out,2019-04-03 -Resort Hotel,1,88,2017,July,33,17,2,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,212.47,0,3,Canceled,2020-02-01 -City Hotel,0,1,2016,April,15,10,0,1,3,0.0,0,BB,PRT,Complementary,Direct,1,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-03-04 -City Hotel,0,48,2015,October,50,28,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,76.67,0,0,Check-Out,2018-08-03 -City Hotel,0,93,2015,December,50,30,1,5,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,F,1,No Deposit,14.0,241.0,40,Transient-Party,74.74,0,1,Check-Out,2019-11-03 -Resort Hotel,1,53,2016,March,16,30,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,120.24,0,0,Canceled,2019-01-03 -City Hotel,0,28,2016,September,44,6,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,101.89,0,1,Check-Out,2019-06-03 -City Hotel,0,35,2017,December,49,5,0,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,70.5,0,0,Check-Out,2019-12-04 -Resort Hotel,0,61,2015,January,9,13,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,50.95,1,0,Check-Out,2018-12-03 -Resort Hotel,0,14,2016,January,53,11,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,234.0,179.0,0,Transient,38.16,0,1,Check-Out,2018-12-03 -Resort Hotel,0,47,2016,January,3,16,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,71.79,0,2,Check-Out,2019-01-03 -City Hotel,0,12,2015,December,53,30,1,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,73.96,0,0,Check-Out,2018-08-03 -City Hotel,1,312,2016,October,43,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,100.18,0,0,Canceled,2018-08-03 -City Hotel,0,10,2017,June,22,21,0,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-06-02 -City Hotel,1,237,2016,July,43,9,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,81.87,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2016,August,35,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,200.35,1,0,Check-Out,2019-06-03 -City Hotel,0,89,2016,March,10,11,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,60.16,0,0,Check-Out,2019-02-01 -City Hotel,0,55,2016,October,45,11,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,126.87,0,2,Check-Out,2019-11-03 -City Hotel,0,15,2016,July,27,7,0,1,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.97,0,1,Check-Out,2019-06-03 -City Hotel,0,105,2016,October,43,19,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,86.55,0,2,Check-Out,2019-09-03 -Resort Hotel,0,88,2016,July,28,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,2,No Deposit,15.0,179.0,0,Transient,166.66,1,0,Check-Out,2018-06-02 -City Hotel,1,239,2015,October,41,5,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,1.0,179.0,0,Contract,65.09,0,0,Canceled,2017-11-02 -City Hotel,1,149,2017,July,33,19,2,2,3,0.0,0,BB,BEL,Direct,Direct,0,1,0,E,F,0,No Deposit,13.0,179.0,0,Transient,171.89,0,0,Canceled,2019-05-04 -City Hotel,1,120,2017,February,10,26,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,168.0,179.0,0,Transient,93.2,0,0,Canceled,2018-12-03 -Resort Hotel,0,19,2017,April,17,27,0,3,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,1,Non Refund,306.0,179.0,0,Transient-Party,122.78,0,0,Check-Out,2019-03-04 -Resort Hotel,0,140,2016,March,10,31,0,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,75.44,0,0,Check-Out,2019-04-03 -City Hotel,1,15,2017,June,22,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,150.29,0,1,Canceled,2020-03-03 -City Hotel,1,16,2016,January,3,6,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,F,0,Non Refund,13.0,179.0,0,Transient,60.56,0,0,Canceled,2018-09-02 -City Hotel,0,137,2017,March,11,16,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.87,0,2,Check-Out,2019-11-03 -Resort Hotel,0,295,2016,August,38,30,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,83.35,0,0,Check-Out,2019-05-04 -City Hotel,0,14,2015,September,40,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,72.17,0,0,Check-Out,2018-08-03 -Resort Hotel,0,32,2017,March,11,26,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,66.2,1,1,Check-Out,2019-03-04 -City Hotel,0,29,2016,September,49,11,0,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.7,0,0,Check-Out,2019-06-03 -Resort Hotel,1,2,2017,June,28,21,0,1,2,0.0,0,BB,PRT,Aviation,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,252.0,0,1,Canceled,2020-06-02 -City Hotel,0,3,2015,July,31,9,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Contract,77.41,0,0,Check-Out,2018-08-03 -City Hotel,1,40,2017,March,16,9,1,0,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,91.08,0,0,Canceled,2019-11-03 -City Hotel,0,79,2016,July,53,29,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.1,0,0,Check-Out,2019-06-03 -City Hotel,1,21,2017,January,8,21,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,87.06,0,0,Canceled,2019-11-03 -City Hotel,0,1,2017,May,21,28,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Group,0.0,0,1,Check-Out,2020-02-01 -City Hotel,0,272,2017,May,33,5,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,129.97,0,2,Check-Out,2020-07-03 -City Hotel,0,109,2015,October,48,27,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient-Party,78.42,0,0,Check-Out,2018-08-03 -City Hotel,0,202,2017,August,32,19,2,5,2,0.0,0,HB,,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,167.54,0,0,Check-Out,2020-06-02 -City Hotel,0,3,2017,March,22,16,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,65.53,0,1,Check-Out,2020-03-03 -Resort Hotel,0,40,2017,April,19,31,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,190.53,1,0,Check-Out,2020-05-03 -Resort Hotel,1,0,2016,December,52,25,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,F,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,2018-12-03 -City Hotel,0,18,2017,February,8,2,0,1,1,0.0,0,BB,CHE,Aviation,GDS,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,51.09,0,0,Check-Out,2020-02-01 -Resort Hotel,0,11,2017,March,11,26,0,1,1,0.0,0,BB,IRL,Corporate,Corporate,1,0,1,A,D,0,No Deposit,12.0,250.0,75,Transient-Party,36.86,0,0,Check-Out,2020-03-03 -City Hotel,1,9,2017,February,10,16,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.42,0,1,Canceled,2019-11-03 -Resort Hotel,0,1,2016,March,9,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,69.66,0,1,Check-Out,2019-02-01 -City Hotel,1,45,2017,March,23,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,94.18,0,0,Canceled,2020-04-02 -Resort Hotel,1,151,2016,March,18,31,1,3,1,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient,60.9,0,0,Canceled,2019-09-03 -City Hotel,0,33,2016,October,15,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,72.0,179.0,0,Transient,79.15,0,0,No-Show,2019-09-03 -Resort Hotel,0,282,2016,May,26,20,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,120.73,0,0,Check-Out,2019-05-04 -City Hotel,1,17,2016,June,28,26,1,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,61.44,0,0,Canceled,2019-05-04 -Resort Hotel,0,15,2016,February,43,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient-Party,78.79,0,1,Check-Out,2019-02-01 -City Hotel,0,17,2017,June,17,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,96.65,0,0,Check-Out,2019-12-04 -City Hotel,1,2,2017,August,37,28,2,0,2,0.0,0,BB,CHE,Online TA,Undefined,0,0,0,B,B,2,No Deposit,14.0,179.0,0,Transient-Party,45.86,0,1,Canceled,2020-06-02 -City Hotel,0,19,2016,March,15,5,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.61,0,0,Check-Out,2019-03-04 -City Hotel,1,13,2017,June,36,25,2,0,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,232.59,0,0,Canceled,2020-01-04 -City Hotel,0,0,2016,December,41,10,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -City Hotel,0,17,2017,February,9,24,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,73.3,0,1,Check-Out,2019-12-04 -Resort Hotel,0,261,2015,September,35,6,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,79.94,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2015,December,51,13,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,88.91,0,3,Check-Out,2018-12-03 -City Hotel,0,252,2016,June,31,2,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,178.6,0,1,Check-Out,2019-05-04 -City Hotel,1,90,2017,March,9,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,39.22,0,1,Canceled,2018-11-02 -City Hotel,0,55,2016,April,17,25,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.69,0,0,Check-Out,2019-02-01 -City Hotel,1,363,2016,August,39,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,159.45,0,0,Canceled,2019-08-04 -Resort Hotel,0,34,2016,December,45,21,2,5,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,248.0,179.0,0,Transient,58.07,1,3,Check-Out,2019-05-04 -City Hotel,1,147,2016,August,37,20,2,4,3,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,Refundable,256.0,179.0,0,Transient,194.11,0,1,Canceled,2019-06-03 -Resort Hotel,0,100,2016,July,33,11,2,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,82.97,1,0,Check-Out,2019-06-03 -City Hotel,1,32,2017,August,31,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,1,No Deposit,9.0,179.0,0,Transient,100.68,0,0,Canceled,2019-01-03 -City Hotel,1,303,2015,August,36,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.58,0,0,Canceled,2018-06-02 -City Hotel,1,33,2016,February,8,17,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,132.0,179.0,21,Transient,67.2,0,0,Canceled,2018-09-02 -City Hotel,0,19,2017,April,22,29,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.54,0,1,Check-Out,2020-04-02 -Resort Hotel,0,43,2015,November,42,7,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,64,Transient-Party,60.33,0,0,Check-Out,2018-09-02 -City Hotel,1,404,2015,July,33,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.87,0,0,Canceled,2018-09-02 -City Hotel,0,2,2016,October,43,4,1,2,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,142.98,0,1,Check-Out,2019-06-03 -City Hotel,0,151,2016,June,26,2,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,86.19,0,1,Check-Out,2019-06-03 -Resort Hotel,0,20,2016,July,32,24,3,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Contract,194.08,0,1,Check-Out,2019-03-04 -Resort Hotel,0,24,2017,July,38,28,4,10,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,183.96,0,2,Check-Out,2019-08-04 -Resort Hotel,0,214,2017,June,25,5,1,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,182.89,1,1,Check-Out,2020-06-02 -Resort Hotel,0,83,2015,December,53,29,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,87.0,179.0,0,Transient-Party,63.95,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,July,33,9,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,102.74,0,0,Check-Out,2018-06-02 -City Hotel,1,16,2016,December,53,2,0,1,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.21,0,0,Canceled,2019-11-03 -City Hotel,0,257,2016,July,30,24,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.27,0,0,Check-Out,2020-05-03 -City Hotel,0,11,2015,December,53,31,0,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,60.33,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,August,31,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,184.24,0,0,Check-Out,2020-06-02 -City Hotel,1,25,2017,February,11,10,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,61.24,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2016,October,17,31,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,C,1,No Deposit,16.0,331.0,0,Transient,79.08,0,1,Check-Out,2019-09-03 -City Hotel,1,19,2016,March,10,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.35,0,0,Canceled,2019-03-04 -Resort Hotel,0,57,2016,May,34,24,1,4,2,1.0,0,HB,CHE,Groups,TA/TO,0,0,0,C,C,2,No Deposit,14.0,179.0,0,Transient-Party,187.83,0,0,Check-Out,2019-06-03 -City Hotel,1,268,2015,July,30,9,2,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,86.08,0,2,Canceled,2019-05-04 -City Hotel,1,109,2017,March,17,14,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient,45.06,0,0,Canceled,2020-03-03 -City Hotel,1,32,2017,January,11,2,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,26.02,0,0,Canceled,2018-11-02 -Resort Hotel,0,51,2016,June,28,27,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,242.0,179.0,0,Contract,110.2,0,0,Check-Out,2019-05-04 -Resort Hotel,0,10,2016,October,45,2,1,0,1,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,37.3,0,0,Check-Out,2019-09-03 -City Hotel,0,186,2016,May,22,12,2,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.09,0,1,Check-Out,2019-06-03 -Resort Hotel,0,10,2016,February,11,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,16.0,78.0,0,Transient,34.9,0,0,Check-Out,2019-03-04 -City Hotel,0,166,2016,June,28,26,0,2,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,187.67,0,1,Check-Out,2019-06-03 -Resort Hotel,1,31,2017,March,10,29,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,17.0,267.0,0,Transient,51.06,0,0,Canceled,2020-02-01 -Resort Hotel,0,163,2016,December,50,23,2,7,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,181.47,0,0,Check-Out,2019-10-04 -City Hotel,0,137,2015,December,50,28,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,2,No Deposit,38.0,179.0,0,Transient-Party,60.01,0,0,Check-Out,2019-12-04 -Resort Hotel,0,13,2017,May,22,27,2,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,37.24,0,0,Check-Out,2020-03-03 -Resort Hotel,0,102,2017,March,20,25,2,7,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,247.0,179.0,0,Transient,166.06,1,3,Check-Out,2020-02-01 -City Hotel,0,74,2017,June,22,28,0,1,1,0.0,0,BB,PRT,Online TA,GDS,1,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,102.25,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2017,March,18,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,13.0,208.0,0,Transient-Party,62.62,0,0,Check-Out,2020-02-01 -City Hotel,0,46,2016,October,45,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,118.11,0,1,Check-Out,2018-12-03 -Resort Hotel,0,47,2016,April,23,25,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,80.61,0,3,Check-Out,2020-04-02 -City Hotel,1,399,2016,October,44,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,42,Transient,150.83,0,0,Canceled,2018-08-03 -Resort Hotel,1,87,2016,September,41,14,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,72.73,1,0,No-Show,2019-11-03 -Resort Hotel,0,36,2016,December,44,8,2,5,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,80.56,0,0,Check-Out,2018-11-02 -City Hotel,0,40,2016,March,16,13,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,168.0,179.0,0,Transient-Party,71.04,0,0,Check-Out,2019-02-01 -City Hotel,0,204,2017,July,27,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,87.15,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,February,9,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,223.0,0,Transient,36.63,0,0,Check-Out,2020-04-02 -Resort Hotel,1,242,2016,August,3,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,114.9,0,1,Canceled,2019-09-03 -City Hotel,0,2,2016,May,4,5,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,184.0,77.0,0,Transient,76.67,0,0,Check-Out,2018-11-02 -City Hotel,1,319,2017,April,16,9,2,1,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,95.53,0,0,Canceled,2020-03-03 -Resort Hotel,0,32,2015,December,53,31,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,46.24,0,1,Check-Out,2018-12-03 -City Hotel,1,11,2017,February,9,28,2,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,13.0,75.0,0,Transient,151.46,0,0,No-Show,2019-12-04 -City Hotel,0,200,2016,October,44,10,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.34,0,2,Check-Out,2019-09-03 -City Hotel,1,87,2017,May,26,21,1,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,92.76,0,0,Canceled,2019-03-04 -City Hotel,1,39,2015,November,51,15,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,2,No Deposit,15.0,179.0,0,Transient,72.45,0,0,Canceled,2018-06-02 -City Hotel,0,30,2017,January,5,18,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.33,0,1,Check-Out,2019-11-03 -City Hotel,1,6,2016,December,49,20,2,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,1.89,0,0,Canceled,2019-11-03 -City Hotel,1,246,2015,December,51,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.52,0,0,Canceled,2018-08-03 -City Hotel,0,28,2015,October,50,22,2,3,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient-Party,126.09,0,0,Check-Out,2018-08-03 -City Hotel,1,62,2016,January,10,10,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,39,Transient,59.65,0,0,Canceled,2018-11-02 -City Hotel,1,1,2017,March,11,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient,102.88,0,0,Canceled,2020-01-04 -Resort Hotel,0,270,2016,July,42,16,2,7,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,166.44,0,2,Check-Out,2019-05-04 -Resort Hotel,0,11,2017,January,23,31,1,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,96.03,1,3,Check-Out,2019-11-03 -City Hotel,1,391,2016,October,37,27,0,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,125.16,0,2,Canceled,2019-07-04 -City Hotel,0,0,2016,November,44,1,1,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.87,0,2,Check-Out,2019-10-04 -Resort Hotel,0,48,2015,December,50,5,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,11.0,179.0,0,Transient-Party,60.85,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,February,10,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,72.85,0,0,Check-Out,2018-12-03 -City Hotel,1,58,2017,December,4,28,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,29.08,0,0,Canceled,2019-11-03 -City Hotel,0,36,2016,October,41,12,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,88.3,0,2,Check-Out,2019-08-04 -City Hotel,1,107,2016,December,50,17,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.94,0,0,Canceled,2019-10-04 -City Hotel,0,12,2016,April,26,28,0,2,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,103.64,0,0,Check-Out,2019-05-04 -Resort Hotel,0,52,2016,October,34,2,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,148.85,0,0,Check-Out,2019-07-04 -City Hotel,1,155,2017,July,27,8,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,178.55,0,1,Canceled,2020-04-02 -Resort Hotel,0,0,2016,April,16,16,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,15.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-02-01 -City Hotel,1,56,2016,December,53,24,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,68.74,0,1,Canceled,2019-06-03 -City Hotel,0,1,2016,March,10,22,1,0,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,69.28,0,0,Check-Out,2019-02-01 -City Hotel,1,201,2016,September,37,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.63,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,June,25,9,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,100.0,64.0,0,Transient,72.02,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,March,9,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,70.33,1,0,Check-Out,2020-03-03 -City Hotel,0,135,2017,June,26,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,10.0,45.0,0,Transient,106.2,0,1,Check-Out,2020-01-04 -City Hotel,1,59,2016,August,35,30,2,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,E,0,Non Refund,168.0,179.0,0,Transient,102.77,0,0,Canceled,2019-01-03 -City Hotel,0,1,2017,February,10,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,194.0,74.0,0,Transient,61.96,0,0,Check-Out,2018-10-03 -City Hotel,0,90,2015,December,53,21,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,107.91,0,0,Check-Out,2018-08-03 -City Hotel,0,106,2017,April,17,5,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,10.0,179.0,0,Transient,76.08,0,2,Check-Out,2020-03-03 -City Hotel,0,21,2016,December,12,3,0,2,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,G,B,1,No Deposit,10.0,179.0,0,Group,77.82,0,2,Check-Out,2019-09-03 -City Hotel,0,18,2017,July,33,4,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.64,0,1,Check-Out,2020-05-03 -City Hotel,0,7,2016,February,17,8,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,E,D,0,No Deposit,23.0,179.0,0,Transient,117.01,0,1,Check-Out,2019-02-01 -Resort Hotel,0,39,2015,October,42,20,2,3,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,151.58,0,3,Check-Out,2018-05-03 -Resort Hotel,0,197,2017,June,25,14,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,144.01,0,1,Check-Out,2020-05-03 -City Hotel,1,4,2016,February,9,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,57.15,0,0,Canceled,2019-02-01 -City Hotel,1,20,2017,February,10,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient-Party,47.77,0,1,Canceled,2019-11-03 -City Hotel,0,148,2017,May,23,29,2,1,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,31.0,179.0,0,Transient,88.18,0,0,Canceled,2020-03-03 -City Hotel,0,6,2016,March,8,16,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.16,0,2,Check-Out,2019-03-04 -City Hotel,0,53,2016,May,22,30,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,61.35,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,March,12,15,1,4,2,0.0,0,BB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,12.0,179.0,0,Transient-Party,28.5,1,1,Check-Out,2019-02-01 -City Hotel,1,284,2015,July,34,5,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.82,0,0,Canceled,2018-09-02 -City Hotel,0,3,2016,September,44,12,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,80.92,0,0,Check-Out,2019-09-03 -City Hotel,1,64,2015,October,44,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,78.1,0,2,Canceled,2018-08-03 -Resort Hotel,0,192,2017,May,23,21,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,154.68,0,0,Check-Out,2020-06-02 -Resort Hotel,0,9,2016,March,3,9,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,37.49,1,0,Check-Out,2019-03-04 -Resort Hotel,0,104,2017,August,38,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,175.97,0,0,Check-Out,2020-06-02 -City Hotel,0,11,2016,June,17,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,71.88,0,0,Check-Out,2019-03-04 -Resort Hotel,0,155,2017,May,26,16,2,7,1,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,E,A,2,No Deposit,378.0,179.0,0,Transient-Party,103.05,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,March,17,21,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,105.28,0,2,Check-Out,2018-12-03 -Resort Hotel,1,191,2017,May,24,31,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,268.0,179.0,0,Transient,35.69,0,0,Canceled,2020-04-02 -Resort Hotel,0,247,2017,July,34,26,2,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient-Party,89.95,0,0,Check-Out,2020-05-03 -City Hotel,1,371,2016,April,17,25,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.22,0,0,Canceled,2017-12-03 -City Hotel,0,349,2016,June,37,10,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.39,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2017,March,10,13,1,0,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,14.0,46.0,0,Transient,105.94,0,0,Check-Out,2020-03-03 -City Hotel,0,105,2016,September,43,13,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.4,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,March,13,25,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,310.0,179.0,0,Transient-Party,66.02,0,0,Check-Out,2019-12-04 -Resort Hotel,0,16,2015,November,49,21,0,4,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-08-03 -Resort Hotel,0,252,2016,May,8,13,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,91.67,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,September,27,21,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.05,0,0,Check-Out,2019-06-03 -City Hotel,1,0,2016,August,33,2,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,98.39,0,0,Canceled,2018-09-02 -City Hotel,0,1,2016,September,39,11,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.03,0,2,Check-Out,2019-06-03 -City Hotel,0,38,2015,December,49,5,2,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,79.35,0,0,Check-Out,2019-05-04 -Resort Hotel,0,20,2016,August,37,14,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,212.09,1,0,Check-Out,2019-05-04 -Resort Hotel,0,16,2015,December,51,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient-Party,33.41,0,2,Check-Out,2018-09-02 -Resort Hotel,0,156,2017,August,37,21,2,10,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,166.0,179.0,0,Transient,147.71,0,1,Check-Out,2019-07-04 -City Hotel,1,73,2017,May,23,27,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,151.46,0,2,Canceled,2019-06-03 -City Hotel,1,50,2016,February,10,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,33.89,0,0,Canceled,2018-11-02 -City Hotel,0,170,2017,March,27,5,1,0,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,75.17,0,0,Check-Out,2020-03-03 -City Hotel,1,13,2016,March,28,28,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.67,0,0,Canceled,2019-02-01 -City Hotel,0,1,2016,December,51,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,3,No Deposit,15.0,45.0,0,Transient,75.7,0,0,Check-Out,2018-11-02 -City Hotel,1,148,2016,March,9,12,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,67.55,0,0,Canceled,2018-09-02 -City Hotel,1,95,2017,June,26,9,1,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,G,2,No Deposit,15.0,179.0,0,Transient,134.61,0,0,Check-Out,2020-06-02 -City Hotel,0,46,2017,May,17,16,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-03-03 -City Hotel,1,276,2016,June,27,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,50.74,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2015,September,34,12,2,1,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient-Party,120.08,1,0,Check-Out,2018-09-02 -Resort Hotel,1,200,2017,August,38,7,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,287.0,179.0,0,Transient,184.93,1,3,Canceled,2020-07-03 -City Hotel,1,36,2015,December,37,21,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,189.86,0,2,No-Show,2018-12-03 -City Hotel,0,261,2015,July,32,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,87.57,0,0,Canceled,2018-06-02 -City Hotel,0,21,2017,June,26,13,0,1,1,0.0,0,BB,,Corporate,GDS,0,0,0,A,A,0,No Deposit,187.0,212.0,0,Transient,143.55,0,0,Check-Out,2020-04-02 -Resort Hotel,0,14,2017,July,33,9,0,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,122.86,1,1,Check-Out,2020-06-02 -Resort Hotel,1,181,2016,August,41,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,237.0,179.0,0,Transient,95.28,0,1,Canceled,2018-06-02 -Resort Hotel,1,31,2016,December,53,15,2,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,F,F,0,Non Refund,249.0,179.0,0,Transient,52.74,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2015,September,31,20,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,184.55,0,1,Check-Out,2018-06-02 -City Hotel,1,17,2017,February,15,6,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.84,0,0,Canceled,2020-03-03 -City Hotel,0,45,2016,March,19,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,97.9,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2016,November,46,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,D,1,No Deposit,16.0,45.0,0,Transient,87.13,0,0,Check-Out,2019-07-04 -Resort Hotel,1,0,2016,March,11,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,12.0,70.0,0,Transient,34.37,0,0,Canceled,2018-12-03 -Resort Hotel,0,314,2015,October,45,2,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient-Party,77.82,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,January,4,28,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,47.51,0,0,Check-Out,2018-12-03 -City Hotel,1,22,2016,December,46,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,10.0,45.0,0,Transient,77.65,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,February,7,13,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,31.82,0,2,Check-Out,2018-11-02 -Resort Hotel,0,7,2017,May,20,12,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,94.04,1,0,Check-Out,2020-05-03 -City Hotel,1,151,2017,May,22,24,0,3,1,0.0,0,BB,PRT,Aviation,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,62.69,0,0,Canceled,2020-03-03 -City Hotel,0,2,2016,February,11,21,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,81.19,0,1,Check-Out,2018-11-02 -City Hotel,0,103,2017,May,19,6,2,7,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,108.71,1,1,Check-Out,2020-03-03 -City Hotel,1,0,2016,July,36,2,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,8.0,179.0,0,Transient,118.98,0,1,Canceled,2019-06-03 -City Hotel,0,193,2016,September,44,2,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,183.3,0,1,Check-Out,2019-11-03 -Resort Hotel,1,170,2016,March,17,31,2,5,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,1,Refundable,316.0,179.0,0,Transient-Party,85.66,0,0,Canceled,2019-01-03 -Resort Hotel,0,291,2016,April,24,27,2,5,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,260.0,179.0,0,Transient-Party,81.47,0,0,Check-Out,2019-02-01 -City Hotel,0,4,2016,June,30,21,0,3,1,1.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.24,0,1,Check-Out,2020-05-03 -City Hotel,0,6,2017,July,29,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,13.0,179.0,0,Transient-Party,2.1,0,0,Check-Out,2020-06-02 -Resort Hotel,0,2,2016,October,44,6,1,1,2,0.0,0,BB,USA,Complementary,Direct,0,0,0,H,D,3,No Deposit,247.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-06-03 -Resort Hotel,1,46,2016,March,17,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,123.28,0,1,Canceled,2019-03-04 -Resort Hotel,0,21,2017,May,22,28,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,178.0,179.0,0,Transient-Party,92.7,0,1,Check-Out,2020-02-01 -City Hotel,1,202,2016,October,44,6,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,92.32,0,0,Canceled,2018-08-03 -Resort Hotel,0,17,2017,July,33,6,2,5,3,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,179.0,75,Transient-Party,252.0,1,3,Check-Out,2020-05-03 -City Hotel,0,269,2016,June,26,10,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.05,0,2,Check-Out,2019-01-03 -City Hotel,0,247,2017,June,26,20,0,3,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,160.18,0,2,Check-Out,2020-03-03 -City Hotel,1,37,2016,April,16,6,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,93.57,0,1,Canceled,2018-11-02 -Resort Hotel,0,56,2015,September,42,22,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,118.58,0,2,Check-Out,2019-08-04 -Resort Hotel,0,16,2015,December,31,16,1,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient-Party,120.78,0,0,Check-Out,2018-06-02 -Resort Hotel,0,50,2015,December,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,13.0,82.0,0,Transient,62.26,1,1,Check-Out,2018-08-03 -City Hotel,1,19,2016,November,49,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,60.71,0,0,Canceled,2019-09-03 -Resort Hotel,0,159,2016,March,16,31,0,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,0,Refundable,14.0,222.0,0,Transient-Party,49.44,0,0,Check-Out,2019-01-03 -City Hotel,1,188,2016,May,22,2,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.35,0,0,Canceled,2019-06-03 -City Hotel,0,12,2016,September,38,30,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.84,0,1,Check-Out,2019-09-03 -City Hotel,1,12,2017,December,53,9,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.6,0,0,Canceled,2019-11-03 -City Hotel,1,298,2017,May,28,9,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,E,E,0,No Deposit,292.0,179.0,0,Transient-Party,129.11,0,0,No-Show,2020-04-02 -City Hotel,0,161,2016,March,15,18,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,122.43,0,0,Check-Out,2019-02-01 -City Hotel,1,155,2017,March,16,27,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,61.58,0,0,Canceled,2020-01-04 -City Hotel,0,2,2015,October,42,6,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,60.08,0,0,Check-Out,2018-08-03 -Resort Hotel,0,110,2017,May,20,30,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient-Party,79.31,0,0,Check-Out,2020-01-04 -City Hotel,1,40,2017,February,9,18,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,22.0,179.0,0,Transient,78.83,0,0,Canceled,2019-10-04 -Resort Hotel,0,38,2017,May,21,8,2,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient-Party,149.55,1,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,January,8,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,28.0,179.0,0,Group,73.86,0,0,Check-Out,2018-10-03 -City Hotel,0,46,2016,October,51,28,1,0,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,18,Transient-Party,61.33,0,0,Check-Out,2019-03-04 -City Hotel,0,33,2016,May,23,17,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.35,0,0,Check-Out,2019-03-04 -Resort Hotel,1,59,2015,December,53,24,2,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,60.81,0,0,Canceled,2019-09-03 -Resort Hotel,0,149,2017,June,30,24,1,4,2,2.0,0,HB,,Direct,TA/TO,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,145.22,0,0,Check-Out,2020-06-02 -City Hotel,1,324,2017,May,20,23,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,215.48,0,0,Canceled,2020-03-03 -Resort Hotel,0,18,2016,December,5,29,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,90.0,179.0,0,Transient,62.51,0,1,Check-Out,2018-11-02 -Resort Hotel,0,29,2016,May,10,24,2,6,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,171.0,179.0,0,Transient,78.3,1,1,Check-Out,2019-03-04 -City Hotel,0,13,2016,May,19,14,0,1,2,0.0,0,SC,DEU,Corporate,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,123.77,0,3,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,August,38,21,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,63.04,0,1,Check-Out,2018-05-03 -City Hotel,0,15,2017,February,11,20,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,23,Transient-Party,72.48,0,0,Check-Out,2019-10-04 -City Hotel,1,408,2016,August,37,15,0,3,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,224.8,0,0,Canceled,2019-08-04 -City Hotel,1,386,2017,March,18,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,81.99,0,0,Canceled,2020-01-04 -City Hotel,0,253,2015,July,32,22,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,129.63,0,0,Check-Out,2018-04-02 -City Hotel,1,0,2016,November,49,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,51.95,0,0,Canceled,2019-08-04 -Resort Hotel,1,44,2016,April,15,30,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,83.0,179.0,0,Transient,100.6,0,0,Canceled,2019-03-04 -Resort Hotel,0,21,2017,February,6,11,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient-Party,32.0,0,0,Check-Out,2019-02-01 -City Hotel,0,18,2016,October,34,27,1,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,81.37,0,0,Check-Out,2019-11-03 -City Hotel,1,113,2017,May,26,27,2,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,113.64,0,0,Canceled,2020-04-02 -Resort Hotel,1,261,2017,July,30,6,2,6,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,125.3,0,3,Canceled,2019-11-03 -City Hotel,0,14,2016,September,43,21,0,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.48,0,0,Check-Out,2019-09-03 -Resort Hotel,1,159,2016,October,33,26,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,125.42,1,0,Canceled,2019-03-04 -City Hotel,1,367,2017,August,30,6,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,153.55,0,0,Canceled,2020-04-02 -Resort Hotel,0,296,2016,May,43,30,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient-Party,83.27,0,0,Check-Out,2019-08-04 -City Hotel,1,31,2016,January,10,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,42,Transient,89.68,0,2,Canceled,2018-11-02 -City Hotel,0,0,2015,October,44,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,26.95,0,2,Check-Out,2018-09-02 -City Hotel,1,387,2017,August,27,21,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,124.82,0,0,Canceled,2020-03-03 -City Hotel,0,18,2016,July,35,17,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,210.15,0,0,Check-Out,2019-06-03 -Resort Hotel,0,148,2016,July,36,15,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,103.29,1,2,Check-Out,2019-05-04 -Resort Hotel,1,262,2016,July,36,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,73.51,0,0,No-Show,2019-06-03 -City Hotel,1,55,2016,July,32,20,2,5,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Canceled,2019-09-03 -City Hotel,1,100,2015,September,35,14,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,167.66,0,0,Canceled,2019-08-04 -Resort Hotel,0,14,2017,February,12,12,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,29.77,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2017,February,9,9,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,64.56,0,1,Check-Out,2020-01-04 -City Hotel,0,96,2017,May,22,23,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,126.03,0,1,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,May,21,28,2,3,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,116.83,0,0,Check-Out,2020-06-02 -City Hotel,1,59,2015,September,37,30,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,80.75,0,0,Canceled,2018-08-03 -City Hotel,0,103,2016,May,21,5,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,95.33,0,0,Check-Out,2019-07-04 -City Hotel,0,196,2016,October,44,27,1,3,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,108.73,0,2,Check-Out,2019-09-03 -City Hotel,1,106,2016,April,10,24,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.99,0,0,Canceled,2019-02-01 -City Hotel,1,11,2016,April,48,18,1,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,D,0,No Deposit,15.0,45.0,0,Transient,91.86,0,0,Canceled,2019-02-01 -Resort Hotel,0,243,2017,July,36,9,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,122.58,0,0,Check-Out,2020-06-02 -City Hotel,1,97,2016,May,22,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,120.65,0,0,Canceled,2019-02-01 -City Hotel,1,140,2015,December,53,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,45.24,0,0,Canceled,2019-01-03 -City Hotel,0,53,2016,October,44,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.93,0,0,Check-Out,2019-08-04 -City Hotel,0,47,2017,April,14,15,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient-Party,89.22,0,0,Check-Out,2020-04-02 -Resort Hotel,0,132,2015,July,36,31,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,79.74,0,1,Canceled,2018-05-03 -City Hotel,1,438,2016,September,24,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,63.16,0,0,Canceled,2018-08-03 -City Hotel,1,145,2016,December,49,6,2,5,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,87.18,0,2,Canceled,2019-10-04 -City Hotel,0,34,2017,May,35,22,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.63,0,2,Check-Out,2020-05-03 -City Hotel,1,191,2016,December,49,8,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,66.0,179.0,44,Transient,88.2,0,0,Canceled,2018-10-03 -City Hotel,0,2,2017,May,21,22,2,3,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,119.53,0,2,Check-Out,2020-04-02 -City Hotel,0,2,2016,October,44,20,2,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,K,0,No Deposit,10.0,179.0,0,Transient,0.57,0,0,Check-Out,2019-11-03 -City Hotel,0,15,2016,December,15,3,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.29,0,1,Check-Out,2019-03-04 -City Hotel,1,91,2017,May,15,30,1,1,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.97,0,0,Check-Out,2020-03-03 -City Hotel,0,34,2016,May,43,30,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,69.08,0,2,Check-Out,2019-06-03 -City Hotel,0,157,2016,August,38,24,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,168.83,0,1,Check-Out,2019-08-04 -City Hotel,1,252,2016,July,32,20,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient,73.31,0,0,Canceled,2018-12-03 -City Hotel,0,30,2015,December,50,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,145.04,0,0,Check-Out,2019-11-03 -Resort Hotel,1,258,2015,December,33,10,2,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,76.77,0,0,Canceled,2018-07-03 -City Hotel,0,16,2017,May,27,9,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,170.2,0,1,Check-Out,2020-04-02 -City Hotel,0,20,2015,July,31,6,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,143.46,0,0,Check-Out,2018-05-03 -City Hotel,0,38,2017,June,23,15,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.87,0,0,Check-Out,2020-04-02 -City Hotel,0,149,2016,July,32,5,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.99,0,1,Check-Out,2019-06-03 -Resort Hotel,1,18,2016,May,24,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,75.11,0,0,Canceled,2019-03-04 -City Hotel,1,243,2015,July,38,5,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,101.11,0,0,Canceled,2018-01-03 -City Hotel,0,2,2017,May,10,16,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient,78.74,0,0,Check-Out,2019-12-04 -Resort Hotel,0,26,2016,August,36,31,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,71.74,1,0,Check-Out,2019-07-04 -City Hotel,1,0,2016,January,13,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,89.58,0,1,Check-Out,2019-04-03 -City Hotel,0,13,2017,May,21,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient,76.66,0,0,Check-Out,2020-01-04 -City Hotel,0,260,2016,June,36,13,1,1,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,70.44,0,1,Check-Out,2019-06-03 -City Hotel,0,82,2016,May,24,3,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,80.29,0,1,Check-Out,2019-03-04 -City Hotel,1,364,2017,May,16,10,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,81.76,0,0,Canceled,2019-09-03 -City Hotel,1,14,2015,August,42,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,1.0,179.0,0,Contract,79.45,0,0,Canceled,2017-11-02 -City Hotel,0,0,2016,March,10,10,0,4,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.52,0,3,Check-Out,2019-02-01 -City Hotel,0,30,2015,July,34,30,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,3,No Deposit,14.0,179.0,0,Transient,202.25,0,0,Check-Out,2018-06-02 -City Hotel,1,157,2017,March,44,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient,65.32,0,0,Canceled,2019-03-04 -City Hotel,1,2,2016,March,16,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,42,Transient,78.31,0,0,Canceled,2018-11-02 -City Hotel,1,11,2016,May,22,9,0,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,81.57,0,0,Canceled,2019-01-03 -Resort Hotel,0,215,2016,October,43,15,2,5,1,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,257.0,179.0,0,Transient-Party,76.63,0,0,Check-Out,2019-08-04 -Resort Hotel,1,61,2016,March,53,30,0,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,73.0,179.0,0,Transient,110.85,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,March,12,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,59.37,0,0,Check-Out,2019-03-04 -City Hotel,0,54,2016,October,24,25,1,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,97.86,0,0,Check-Out,2019-05-04 -City Hotel,1,58,2016,September,39,24,2,2,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,124.51,0,1,Canceled,2019-09-03 -Resort Hotel,1,32,2015,July,38,2,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,F,F,0,No Deposit,14.0,179.0,0,Transient,187.84,0,0,Canceled,2018-06-02 -Resort Hotel,0,158,2016,April,18,28,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,241.0,179.0,0,Transient-Party,127.74,0,1,Check-Out,2019-02-01 -City Hotel,0,2,2017,June,26,20,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,1,0,1,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,122.68,0,1,Check-Out,2020-04-02 -City Hotel,0,14,2017,March,10,29,0,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,175.11,0,1,Check-Out,2019-11-03 -Resort Hotel,0,347,2017,June,26,5,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Group,75.85,0,0,Check-Out,2020-05-03 -City Hotel,1,72,2015,July,32,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,101.65,0,0,Canceled,2018-06-02 -City Hotel,1,444,2016,September,44,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.95,0,0,Canceled,2017-11-02 -City Hotel,0,4,2017,August,36,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,161.79,0,1,Check-Out,2020-07-03 -Resort Hotel,1,208,2017,April,23,29,0,3,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,176.7,0,1,Canceled,2020-04-02 -City Hotel,1,8,2017,June,28,22,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,159.79,0,0,Canceled,2020-06-02 -Resort Hotel,0,40,2016,October,44,26,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,136.51,0,0,Check-Out,2019-11-03 -City Hotel,0,229,2016,October,39,5,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,79.98,0,2,Check-Out,2019-08-04 -City Hotel,1,80,2017,June,26,27,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,9.0,179.0,0,Transient,163.28,0,1,Canceled,2020-01-04 -City Hotel,0,46,2015,July,31,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.16,0,0,Check-Out,2018-06-02 -City Hotel,0,35,2016,March,10,28,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.77,0,2,Check-Out,2019-04-03 -Resort Hotel,0,19,2016,October,45,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,2.0,212.0,0,Transient-Party,61.23,0,0,Check-Out,2018-09-02 -City Hotel,0,355,2015,July,42,24,2,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient-Party,88.67,0,1,Check-Out,2018-09-02 -Resort Hotel,1,0,2017,July,11,25,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,60.3,0,0,Canceled,2020-02-01 -City Hotel,0,50,2015,August,38,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,121.59,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,February,11,5,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,57.76,0,2,Check-Out,2018-11-02 -Resort Hotel,0,1,2016,March,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,0,No Deposit,13.0,212.0,0,Transient,38.18,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,August,34,9,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.08,0,1,Check-Out,2020-05-03 -City Hotel,0,36,2015,December,50,25,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,57.37,0,0,Check-Out,2018-08-03 -City Hotel,0,91,2017,June,27,28,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,101.63,0,1,Check-Out,2020-04-02 -City Hotel,0,15,2016,September,44,16,1,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,206.0,0,Transient,113.64,0,0,Check-Out,2018-09-02 -City Hotel,0,3,2015,June,22,5,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,59.75,0,2,Check-Out,2019-03-04 -Resort Hotel,1,38,2015,November,53,29,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,40.92,0,0,Canceled,2018-06-02 -City Hotel,0,3,2016,June,12,19,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,63.51,0,0,Check-Out,2019-12-04 -Resort Hotel,0,264,2016,May,21,10,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,33.0,179.0,0,Transient-Party,74.47,1,0,Check-Out,2019-03-04 -City Hotel,0,136,2017,May,22,31,1,0,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,112.83,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2015,December,45,28,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.2,0,0,Check-Out,2018-08-03 -City Hotel,0,36,2016,October,41,19,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.57,0,2,Check-Out,2019-06-03 -City Hotel,0,264,2015,July,33,4,2,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,97.59,0,1,Check-Out,2019-06-03 -Resort Hotel,0,14,2017,May,24,23,0,1,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,C,0,No Deposit,322.0,179.0,0,Transient,65.0,0,0,Check-Out,2020-02-01 -City Hotel,1,1,2015,October,43,9,3,0,1,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,44.01,0,0,Canceled,2018-10-03 -City Hotel,0,17,2017,February,8,24,1,3,1,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,44.37,0,0,Check-Out,2019-10-04 -City Hotel,1,1,2017,March,10,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,Non Refund,8.0,228.0,0,Transient,103.04,0,0,Canceled,2020-02-01 -Resort Hotel,1,18,2015,August,37,24,0,2,1,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,96.26,0,0,No-Show,2018-06-02 -City Hotel,1,94,2016,June,28,16,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,150.0,179.0,0,Transient,96.85,0,0,Canceled,2019-02-01 -City Hotel,0,36,2016,October,18,20,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.19,0,1,Check-Out,2019-12-04 -City Hotel,1,113,2016,June,22,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,130.0,179.0,0,Transient,98.97,0,0,Canceled,2019-02-01 -City Hotel,0,97,2016,May,28,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,41.86,0,2,Check-Out,2019-02-01 -City Hotel,1,269,2016,September,31,24,2,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Canceled,2019-08-04 -City Hotel,0,13,2016,June,27,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,69.99,0,0,Check-Out,2019-07-04 -City Hotel,0,56,2016,June,35,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,75.19,0,0,Check-Out,2019-08-04 -Resort Hotel,1,24,2015,August,44,25,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,82.33,0,0,Canceled,2018-06-02 -City Hotel,0,85,2015,August,38,23,2,2,2,0.0,0,BB,,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2018-07-03 -Resort Hotel,0,3,2016,February,8,19,1,0,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,77.99,0,0,Check-Out,2018-10-03 -City Hotel,1,37,2016,September,43,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,110.63,0,1,Canceled,2019-07-04 -City Hotel,1,290,2015,July,31,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,79.51,0,1,Canceled,2018-12-03 -Resort Hotel,0,11,2016,March,16,13,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,31.76,0,0,Check-Out,2019-02-01 -City Hotel,0,47,2016,December,36,30,0,3,2,1.0,0,HB,,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,191.9,0,3,Canceled,2019-12-04 -City Hotel,0,30,2017,February,12,20,2,3,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,143.64,0,3,Check-Out,2019-10-04 -Resort Hotel,1,62,2017,June,32,29,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,124.83,0,0,Canceled,2020-02-01 -Resort Hotel,0,42,2017,January,3,2,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient,31.63,0,0,Check-Out,2019-10-04 -City Hotel,0,53,2016,June,42,12,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,164.38,0,0,Check-Out,2019-06-03 -City Hotel,0,102,2016,October,43,11,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,111.04,0,1,Check-Out,2019-06-03 -Resort Hotel,1,294,2016,March,15,26,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,1,Refundable,13.0,222.0,0,Transient-Party,71.24,0,0,Canceled,2019-01-03 -City Hotel,0,101,2016,May,23,21,1,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,196.13,0,0,Check-Out,2019-05-04 -City Hotel,0,141,2016,December,53,27,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.46,0,0,Check-Out,2019-12-04 -Resort Hotel,1,21,2017,March,10,16,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,232.83,1,1,Canceled,2020-02-01 -City Hotel,1,80,2015,October,43,5,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,91.87,0,0,Canceled,2018-08-03 -Resort Hotel,0,55,2016,June,27,23,2,2,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,171.0,179.0,0,Transient-Party,96.57,0,0,Check-Out,2019-04-03 -Resort Hotel,1,14,2017,February,8,4,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,173.0,179.0,0,Transient,24.3,0,0,Canceled,2019-09-03 -City Hotel,1,22,2015,July,32,9,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,G,G,0,No Deposit,7.0,179.0,0,Transient,157.15,1,0,Canceled,2018-05-03 -City Hotel,0,1,2015,December,11,10,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,70.27,0,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2015,January,5,29,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,32.19,1,0,Check-Out,2018-10-03 -Resort Hotel,0,13,2016,October,40,7,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.4,1,1,Check-Out,2019-12-04 -City Hotel,0,62,2016,April,15,28,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.65,0,0,Check-Out,2019-01-03 -City Hotel,1,33,2016,May,23,9,0,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.57,0,0,Canceled,2019-02-01 -Resort Hotel,0,45,2016,August,37,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,178.66,0,0,Check-Out,2019-05-04 -City Hotel,0,60,2015,November,49,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,81.25,0,0,Check-Out,2019-10-04 -Resort Hotel,1,114,2016,October,44,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,41.24,0,0,Canceled,2019-09-03 -City Hotel,1,158,2016,June,24,28,0,3,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,226.05,0,0,Canceled,2019-04-03 -Resort Hotel,0,5,2015,October,48,20,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient-Party,39.68,0,0,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,March,16,31,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,36.18,1,1,Check-Out,2018-11-02 -Resort Hotel,0,287,2015,September,37,3,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,44.31,1,2,Check-Out,2018-06-02 -Resort Hotel,0,2,2015,October,42,24,0,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,H,0,No Deposit,17.0,179.0,0,Transient,110.25,0,0,Check-Out,2018-09-02 -City Hotel,1,167,2016,August,35,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,189.11,0,0,Canceled,2018-05-03 -City Hotel,1,111,2016,May,10,27,0,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,85.0,179.0,0,Transient,63.49,0,0,Canceled,2019-07-04 -Resort Hotel,0,0,2016,August,36,3,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,95.25,0,1,Check-Out,2019-05-04 -City Hotel,0,0,2016,June,27,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,14.0,195.0,0,Transient,80.2,0,0,Check-Out,2019-03-04 -City Hotel,1,11,2017,February,11,25,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,74.46,0,0,Canceled,2019-10-04 -City Hotel,1,255,2016,October,21,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,1.0,179.0,0,Transient,71.4,0,0,Canceled,2018-08-03 -City Hotel,1,106,2017,January,7,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,96.46,0,0,Canceled,2019-10-04 -City Hotel,1,12,2015,November,43,16,0,2,2,2.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,53.42,0,0,Canceled,2018-09-02 -Resort Hotel,0,0,2017,March,11,6,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,223.0,0,Transient,44.94,0,0,Check-Out,2020-02-01 -City Hotel,1,16,2016,January,2,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,67.22,0,1,No-Show,2018-11-02 -Resort Hotel,0,302,2016,June,32,15,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,185.0,179.0,0,Contract,98.36,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2015,September,44,9,1,1,1,0.0,0,BB,SWE,Online TA,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,25.92,0,0,Check-Out,2018-09-02 -Resort Hotel,1,284,2017,August,40,13,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,204.25,0,0,Canceled,2020-03-03 -City Hotel,0,43,2016,February,12,23,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,0,No Deposit,13.0,179.0,0,Transient,73.39,0,0,Check-Out,2018-11-02 -City Hotel,1,219,2016,October,10,14,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.61,0,1,Canceled,2019-02-01 -City Hotel,0,72,2016,December,51,23,2,1,1,0.0,0,BB,NOR,Direct,TA/TO,0,0,0,A,L,3,No Deposit,15.0,179.0,0,Transient,231.63,0,0,Check-Out,2020-01-04 -Resort Hotel,0,2,2017,August,37,31,0,10,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,213.8,1,0,Check-Out,2020-07-03 -Resort Hotel,1,43,2017,March,22,9,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,155.9,0,1,Canceled,2020-03-03 -City Hotel,0,3,2017,June,27,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,12.0,193.0,0,Transient,89.64,0,0,Check-Out,2020-06-02 -City Hotel,0,3,2016,February,10,13,2,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,150.0,331.0,0,Transient-Party,35.58,0,0,Check-Out,2018-11-02 -City Hotel,0,107,2017,July,38,24,0,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.54,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,July,36,12,0,3,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,L,G,3,No Deposit,249.0,179.0,0,Transient,100.25,0,2,Check-Out,2019-05-04 -Resort Hotel,0,68,2016,August,34,27,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,44.28,0,0,Check-Out,2018-12-03 -Resort Hotel,0,24,2016,October,43,5,0,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,246.78,0,2,Check-Out,2019-06-03 -Resort Hotel,0,55,2016,September,52,2,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,239.0,179.0,0,Transient,34.11,0,1,Check-Out,2018-12-03 -City Hotel,1,31,2017,October,45,22,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.99,0,2,Canceled,2019-12-04 -City Hotel,0,3,2016,January,3,12,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,34.35,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2015,December,50,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,13.0,45.0,0,Transient,42.52,0,0,Check-Out,2019-01-03 -City Hotel,1,206,2016,June,28,15,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,75.74,0,0,Canceled,2019-02-01 -Resort Hotel,1,210,2017,July,28,13,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,125.67,0,0,Canceled,2020-01-04 -City Hotel,1,32,2015,October,38,13,0,2,2,0.0,0,BB,PRT,Aviation,Corporate,1,1,0,D,A,0,Non Refund,14.0,179.0,0,Transient,80.33,0,0,Canceled,2017-11-02 -City Hotel,0,149,2017,June,22,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,121.54,0,0,Check-Out,2020-03-03 -Resort Hotel,1,161,2016,August,38,26,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,176.4,0,1,Canceled,2019-08-04 -City Hotel,0,0,2016,June,27,14,0,3,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,B,2,No Deposit,16.0,58.0,0,Transient,4.51,0,0,Check-Out,2019-05-04 -City Hotel,1,18,2017,December,9,15,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.18,0,0,Canceled,2019-10-04 -Resort Hotel,0,3,2015,January,50,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,62,Transient,60.4,0,0,Check-Out,2018-11-02 -Resort Hotel,1,56,2017,February,9,13,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,83.63,0,0,Canceled,2019-12-04 -City Hotel,0,16,2016,August,45,5,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,100.49,0,0,Check-Out,2019-06-03 -City Hotel,1,395,2017,June,27,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,112.49,0,0,Canceled,2020-06-02 -City Hotel,0,44,2015,November,50,11,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,60.0,0,1,Check-Out,2018-07-03 -City Hotel,0,61,2016,January,50,28,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,75.84,0,0,Check-Out,2018-12-03 -Resort Hotel,0,148,2017,June,27,21,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,160.0,179.0,0,Transient,137.55,0,1,Check-Out,2020-02-01 -City Hotel,1,12,2015,April,23,29,2,3,3,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,47.13,0,0,Canceled,2019-03-04 -Resort Hotel,0,1,2015,October,44,6,1,0,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,39.55,1,0,Check-Out,2018-08-03 -Resort Hotel,1,34,2016,August,37,24,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,114.52,0,1,Canceled,2019-07-04 -City Hotel,1,128,2016,June,27,25,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,119.23,0,0,Canceled,2019-03-04 -City Hotel,1,1,2016,August,37,23,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,96.61,0,1,Canceled,2018-11-02 -City Hotel,1,96,2016,March,50,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.95,0,0,Canceled,2018-12-03 -City Hotel,0,2,2016,March,18,27,0,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,112.21,0,0,Check-Out,2019-02-01 -City Hotel,0,32,2016,April,15,20,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.76,0,2,Canceled,2019-01-03 -City Hotel,0,2,2016,December,50,6,1,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient,69.3,0,1,Check-Out,2019-09-03 -Resort Hotel,0,366,2017,July,25,2,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,243.0,179.0,0,Transient-Party,212.9,1,0,Check-Out,2020-06-02 -Resort Hotel,0,14,2016,December,10,31,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,330.0,179.0,0,Transient-Party,46.21,0,0,Check-Out,2018-11-02 -City Hotel,1,100,2016,May,22,18,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.99,0,2,Canceled,2019-06-03 -Resort Hotel,0,147,2016,November,37,25,2,6,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient-Party,63.49,0,1,Check-Out,2019-11-03 -City Hotel,1,17,2016,November,21,12,2,2,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,122.12,0,1,Canceled,2019-02-01 -City Hotel,1,387,2016,August,36,14,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,218.0,179.0,0,Transient,100.25,0,0,Canceled,2017-10-03 -City Hotel,1,201,2017,May,27,22,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,83.58,0,1,Canceled,2020-01-04 -City Hotel,0,83,2016,June,32,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.18,0,1,Check-Out,2019-06-03 -Resort Hotel,1,154,2016,August,33,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,137.41,0,0,Canceled,2019-08-04 -City Hotel,1,31,2016,May,22,2,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Group,89.32,0,0,No-Show,2019-03-04 -City Hotel,0,0,2016,February,26,16,0,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,89.98,0,0,Check-Out,2019-05-04 -City Hotel,0,26,2015,September,34,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.31,0,0,Check-Out,2018-05-03 -Resort Hotel,0,253,2016,October,50,2,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,B,0,No Deposit,35.0,179.0,0,Transient-Party,68.79,0,1,Check-Out,2019-12-04 -City Hotel,1,158,2016,April,16,2,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,62,Transient,62.49,0,0,Canceled,2018-10-03 -City Hotel,1,1,2015,August,33,20,1,0,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,3,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-06-02 -City Hotel,0,15,2015,October,47,28,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,268.0,0,Transient-Party,60.87,0,0,Check-Out,2018-09-02 -City Hotel,0,20,2016,August,35,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,135.79,0,0,Check-Out,2019-06-03 -City Hotel,1,101,2017,June,32,26,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,155.02,0,0,No-Show,2020-03-03 -City Hotel,0,27,2015,December,49,5,2,1,2,0.0,0,BB,ISR,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,60.29,0,0,Check-Out,2018-08-03 -City Hotel,0,7,2016,October,44,18,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,146.99,0,0,Check-Out,2019-08-04 -Resort Hotel,0,2,2015,June,28,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,240.0,179.0,0,Group,62.29,0,1,Check-Out,2018-08-03 -City Hotel,1,105,2015,December,53,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,16.0,179.0,0,Transient,39.5,0,0,Canceled,2018-12-03 -City Hotel,1,409,2016,October,22,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.59,0,0,Canceled,2018-11-02 -Resort Hotel,0,55,2015,October,44,15,1,0,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,95.6,0,0,Check-Out,2018-08-03 -City Hotel,1,42,2016,February,10,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient-Party,62.95,0,0,Canceled,2019-02-01 -City Hotel,0,93,2016,July,29,17,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,94.37,0,1,Check-Out,2019-06-03 -Resort Hotel,1,61,2016,February,17,15,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,157.79,0,1,Canceled,2019-02-01 -City Hotel,1,392,2016,May,52,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,24.0,179.0,58,Transient-Party,68.88,0,0,Check-Out,2019-02-01 -City Hotel,0,150,2016,July,44,6,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.86,0,2,Check-Out,2019-07-04 -Resort Hotel,1,151,2017,May,22,3,1,5,2,1.0,0,BB,BRA,Direct,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,237.2,0,0,Canceled,2020-02-01 -Resort Hotel,0,7,2016,August,43,17,1,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,124.62,1,2,Check-Out,2019-05-04 -City Hotel,0,13,2016,November,49,5,0,2,1,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.34,0,1,Check-Out,2019-10-04 -City Hotel,1,272,2016,August,37,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.21,0,0,Canceled,2017-11-02 -Resort Hotel,0,0,2016,December,53,29,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,45.87,0,1,Check-Out,2018-12-03 -City Hotel,0,261,2015,July,35,20,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,59.94,0,0,Check-Out,2017-11-02 -Resort Hotel,1,146,2017,January,7,4,0,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,243.0,179.0,0,Transient,72.62,0,1,No-Show,2020-06-02 -City Hotel,0,14,2016,September,42,15,1,2,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,106.29,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2015,December,51,29,1,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,H,3,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,February,10,13,0,2,1,0.0,0,Undefined,PRT,Corporate,TA/TO,0,0,0,A,B,1,No Deposit,137.0,179.0,0,Transient,62.97,0,0,Check-Out,2019-03-04 -City Hotel,1,158,2017,August,37,14,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,109.65,0,3,Canceled,2018-09-02 -City Hotel,0,65,2016,July,27,26,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.09,0,0,Check-Out,2020-05-03 -Resort Hotel,0,48,2017,March,17,13,0,2,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,51.91,1,0,Check-Out,2019-11-03 -Resort Hotel,1,297,2015,July,32,31,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,E,0,No Deposit,3.0,179.0,0,Contract,63.65,0,0,Canceled,2017-12-03 -City Hotel,0,152,2016,June,28,15,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,154.15,0,1,Check-Out,2019-06-03 -Resort Hotel,0,55,2015,October,35,9,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,43.33,0,1,Check-Out,2018-09-02 -City Hotel,0,14,2016,May,21,5,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,63.34,0,0,Check-Out,2019-02-01 -Resort Hotel,0,57,2016,March,49,25,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,97.0,179.0,0,Transient-Party,82.13,0,0,Canceled,2018-12-03 -Resort Hotel,0,48,2017,August,36,5,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,241.0,179.0,0,Transient,165.08,0,1,Check-Out,2020-06-02 -City Hotel,1,39,2016,May,27,22,0,1,1,0.0,0,BB,IRL,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,176.0,0,Transient,75.91,0,0,Canceled,2019-02-01 -Resort Hotel,0,7,2015,October,43,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,89.4,0,3,Check-Out,2018-09-02 -Resort Hotel,0,203,2017,August,34,2,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,80.71,0,1,Check-Out,2020-06-02 -Resort Hotel,0,42,2017,February,12,16,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,73.08,0,0,Check-Out,2020-01-04 -City Hotel,0,4,2016,October,46,6,1,3,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,8.0,179.0,0,Transient,123.56,0,0,Check-Out,2019-09-03 -City Hotel,1,15,2016,February,10,22,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient,61.21,0,0,No-Show,2018-12-03 -Resort Hotel,0,43,2015,December,50,5,0,1,1,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,221.0,179.0,0,Transient-Party,64.15,0,0,Check-Out,2018-12-03 -City Hotel,1,40,2016,November,23,27,2,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.67,0,0,Canceled,2018-01-03 -Resort Hotel,0,1,2016,August,36,25,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,62.96,0,0,Check-Out,2018-06-02 -City Hotel,0,88,2016,June,26,4,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,124.51,0,2,Check-Out,2019-06-03 -City Hotel,0,14,2017,June,34,11,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,175.67,0,2,Check-Out,2020-06-02 -City Hotel,1,239,2016,June,28,21,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,11.0,45.0,0,Transient,60.8,0,0,Canceled,2019-12-04 -City Hotel,0,3,2016,November,49,8,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,60.55,0,0,Check-Out,2019-09-03 -Resort Hotel,0,272,2017,July,32,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,230.64,0,0,Check-Out,2020-06-02 -Resort Hotel,1,135,2017,June,22,21,2,5,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,121.92,0,2,Canceled,2020-01-04 -City Hotel,1,154,2017,August,31,18,2,5,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,203.1,0,0,Canceled,2020-02-01 -City Hotel,1,274,2016,October,42,16,2,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.34,0,0,Canceled,2019-07-04 -Resort Hotel,0,163,2017,July,34,17,0,2,3,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-07-03 -City Hotel,0,0,2015,September,37,10,2,5,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,F,0,No Deposit,14.0,76.0,0,Transient,58.07,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,January,8,10,1,3,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,43.13,0,0,Check-Out,2018-12-03 -City Hotel,0,36,2017,March,19,25,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,95.72,0,1,Check-Out,2019-11-03 -City Hotel,1,18,2015,January,49,29,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,61.04,0,0,Canceled,2018-10-03 -Resort Hotel,0,294,2016,August,34,7,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,207.42,1,3,Check-Out,2019-06-03 -Resort Hotel,0,89,2015,October,41,28,1,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,74.78,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,August,17,12,1,4,3,0.0,0,BB,CHE,Direct,Direct,0,0,0,L,D,1,No Deposit,251.0,179.0,0,Transient,194.19,0,2,Check-Out,2019-01-03 -City Hotel,0,1,2017,April,22,22,2,2,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,1,No Deposit,14.0,199.0,0,Transient-Party,89.34,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2017,July,27,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,99.29,0,0,Check-Out,2018-06-02 -Resort Hotel,0,16,2016,January,4,27,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,37.15,0,2,Check-Out,2019-10-04 -City Hotel,0,45,2016,May,20,13,1,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,100.51,0,1,Check-Out,2019-11-03 -City Hotel,1,0,2015,February,9,21,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,34.67,0,0,Canceled,2018-11-02 -Resort Hotel,1,185,2016,March,18,21,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,0,Refundable,12.0,223.0,0,Transient,32.18,0,0,Canceled,2019-03-04 -Resort Hotel,0,20,2015,October,43,26,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,125.02,0,0,Check-Out,2018-08-03 -Resort Hotel,1,1,2016,June,28,27,0,1,3,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,221.0,179.0,0,Transient,163.96,0,0,Canceled,2019-02-01 -Resort Hotel,0,108,2016,July,7,20,2,4,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,378.0,179.0,0,Transient,82.54,0,2,Check-Out,2019-06-03 -Resort Hotel,0,17,2017,February,9,21,2,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,76.89,0,0,Check-Out,2019-10-04 -City Hotel,1,11,2015,October,45,30,0,2,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,91.39,0,0,Canceled,2018-08-03 -City Hotel,1,165,2016,August,33,15,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Transient,141.65,0,0,Canceled,2019-03-04 -Resort Hotel,0,310,2017,August,37,28,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,130.31,0,2,Check-Out,2020-07-03 -Resort Hotel,0,102,2016,April,17,26,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,84.48,1,0,Check-Out,2019-01-03 -City Hotel,0,111,2016,May,23,20,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,180.0,0,Transient,102.22,0,0,Check-Out,2019-04-03 -City Hotel,0,14,2016,January,2,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,87.0,179.0,0,Transient,60.59,0,0,Check-Out,2018-10-03 -Resort Hotel,0,64,2017,May,20,10,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,113.41,0,2,Check-Out,2020-04-02 -Resort Hotel,0,17,2015,October,44,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,92.0,179.0,0,Transient,36.3,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2016,February,10,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,32.21,0,0,Canceled,2019-03-04 -City Hotel,0,292,2016,July,32,5,1,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,146.27,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2017,March,9,31,1,0,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,104.12,1,0,Check-Out,2020-01-04 -Resort Hotel,1,19,2017,February,10,24,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,45.01,0,0,Check-Out,2019-10-04 -City Hotel,1,404,2017,June,22,27,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,73.24,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2017,May,18,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,331.0,0,Transient,59.93,1,1,Check-Out,2020-02-01 -City Hotel,0,14,2016,September,32,20,1,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient-Party,120.55,0,0,Check-Out,2019-06-03 -Resort Hotel,0,4,2017,June,29,28,0,2,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,128.16,0,3,Check-Out,2020-06-02 -City Hotel,0,10,2017,June,20,16,0,1,2,1.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.56,0,1,Check-Out,2020-05-03 -City Hotel,0,103,2017,May,9,28,1,3,2,0.0,0,BB,POL,Complementary,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,77.58,0,3,Check-Out,2019-10-04 -Resort Hotel,0,22,2017,July,34,13,4,10,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,194.16,0,0,Check-Out,2019-07-04 -City Hotel,1,13,2016,April,21,17,1,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,106.39,0,2,Check-Out,2019-02-01 -City Hotel,1,23,2017,May,20,28,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,157.69,0,0,Canceled,2019-11-03 -City Hotel,1,358,2015,September,43,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,67.41,0,0,Canceled,2017-10-03 -Resort Hotel,0,245,2017,July,31,17,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,127.9,1,1,Canceled,2020-06-02 -City Hotel,0,148,2017,July,27,2,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,130.53,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2015,December,53,6,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,41.84,0,3,Check-Out,2018-08-03 -City Hotel,1,253,2017,July,33,18,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,196.2,0,0,Canceled,2020-06-02 -Resort Hotel,1,148,2017,August,38,11,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,234.0,179.0,0,Transient,186.81,0,3,No-Show,2020-06-02 -City Hotel,0,57,2015,September,42,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.54,0,0,Check-Out,2018-06-02 -Resort Hotel,0,35,2016,August,39,27,0,4,2,2.0,0,BB,ESP,Complementary,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,200.56,0,0,Check-Out,2019-07-04 -City Hotel,1,57,2017,March,10,31,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient,72.41,0,0,Canceled,2020-03-03 -Resort Hotel,0,88,2016,March,18,30,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,155.58,1,0,Check-Out,2020-02-01 -City Hotel,0,87,2017,June,20,5,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,185.5,1,1,Check-Out,2020-01-04 -City Hotel,1,5,2017,October,37,25,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -Resort Hotel,0,42,2017,January,26,12,0,4,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,62.72,0,0,Check-Out,2020-03-03 -City Hotel,0,3,2017,March,12,14,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,55.76,0,0,Check-Out,2019-03-04 -City Hotel,0,28,2017,April,19,6,0,1,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,100.78,0,0,Check-Out,2020-04-02 -Resort Hotel,0,3,2016,January,2,9,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient,48.99,0,0,Check-Out,2018-12-03 -Resort Hotel,0,54,2015,October,46,24,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,169.0,179.0,0,Transient-Party,42.65,0,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2015,November,36,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,19.0,179.0,0,Transient,94.25,1,0,Check-Out,2018-06-02 -City Hotel,0,164,2017,June,26,13,2,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,96.13,1,2,Check-Out,2020-03-03 -City Hotel,0,283,2015,September,35,25,2,3,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,96.62,0,0,Check-Out,2017-11-02 -Resort Hotel,1,53,2015,August,29,10,2,5,2,0.0,0,FB,ESP,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,378.0,179.0,0,Transient,99.77,0,0,Canceled,2018-06-02 -City Hotel,0,41,2016,January,24,13,0,3,3,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,D,D,1,No Deposit,14.0,228.0,0,Transient-Party,98.39,0,0,Check-Out,2019-11-03 -City Hotel,1,9,2017,January,26,6,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,95.47,0,0,Canceled,2020-01-04 -City Hotel,1,0,2017,May,25,24,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,1,0,0,P,P,0,No Deposit,14.0,241.0,0,Transient,6.59,0,0,Canceled,2020-05-03 -City Hotel,0,9,2015,September,33,10,0,2,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,60.21,0,0,Check-Out,2018-05-03 -City Hotel,1,40,2017,May,22,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,216.11,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,May,20,10,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Group,61.67,0,0,Check-Out,2019-02-01 -City Hotel,0,9,2016,May,17,30,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,111.37,0,1,Check-Out,2019-04-03 -Resort Hotel,1,103,2016,October,42,5,1,5,2,1.0,0,HB,GBR,Online TA,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,48.4,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2016,October,44,27,0,3,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,E,E,0,No Deposit,14.0,242.0,0,Transient,75.94,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2017,February,11,19,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,16.0,179.0,0,Transient,161.3,0,0,Check-Out,2020-02-01 -City Hotel,0,18,2015,July,35,24,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,80.0,179.0,0,Group,83.81,0,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2016,April,18,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,2,No Deposit,14.0,179.0,0,Transient,59.64,0,0,Check-Out,2019-02-01 -City Hotel,0,159,2016,August,35,22,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,215.41,1,2,Check-Out,2019-04-03 -City Hotel,1,42,2016,December,50,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.84,0,0,Canceled,2018-11-02 -Resort Hotel,0,150,2016,August,23,22,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,102.17,0,1,Check-Out,2019-05-04 -City Hotel,0,245,2016,April,18,25,1,2,1,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,112.4,0,1,Check-Out,2019-03-04 -City Hotel,0,14,2016,October,45,21,1,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,82.81,0,0,Check-Out,2019-07-04 -City Hotel,1,246,2017,July,25,20,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.35,0,0,Canceled,2020-05-03 -City Hotel,1,269,2016,July,39,21,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,76.91,0,1,Canceled,2019-02-01 -Resort Hotel,1,158,2016,May,25,28,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,153.88,0,1,Canceled,2019-01-03 -City Hotel,1,43,2017,March,8,12,2,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.98,0,0,Canceled,2020-02-01 -City Hotel,1,314,2017,August,36,15,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,135.69,0,2,Canceled,2018-05-03 -Resort Hotel,1,108,2016,June,28,5,0,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient,80.8,0,0,Canceled,2019-02-01 -Resort Hotel,0,276,2017,August,35,6,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,242.12,1,3,Check-Out,2020-06-02 -Resort Hotel,0,94,2017,May,23,22,1,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,156.26,0,0,Check-Out,2019-10-04 -Resort Hotel,0,162,2016,May,22,30,1,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,122.3,1,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2017,July,31,30,1,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,123.0,1,1,Check-Out,2020-06-02 -City Hotel,1,86,2017,June,27,15,1,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,98.92,0,0,Canceled,2020-02-01 -City Hotel,0,35,2015,September,49,24,2,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,60.82,0,0,Check-Out,2018-12-03 -City Hotel,0,89,2016,February,10,18,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,120.12,0,2,Check-Out,2019-03-04 -City Hotel,0,64,2016,January,5,27,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,82.18,1,1,Check-Out,2019-01-03 -Resort Hotel,0,231,2016,October,45,18,2,5,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,98.58,0,3,Check-Out,2019-06-03 -Resort Hotel,1,265,2016,June,26,11,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,116.86,0,0,Canceled,2019-05-04 -Resort Hotel,0,2,2016,October,42,20,2,4,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,216.0,0,Transient,41.11,0,0,Check-Out,2019-08-04 -City Hotel,1,41,2016,April,17,10,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,71.09,0,0,Canceled,2019-03-04 -City Hotel,0,0,2015,September,41,26,2,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,1,0,0,A,A,0,No Deposit,275.0,179.0,0,Group,93.84,0,1,Check-Out,2018-07-03 -City Hotel,0,9,2017,February,10,13,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,109.42,0,1,Check-Out,2020-03-03 -City Hotel,0,41,2017,June,29,28,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,137.97,0,1,Check-Out,2020-07-03 -City Hotel,0,254,2016,December,49,15,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.84,0,2,Check-Out,2019-12-04 -City Hotel,0,8,2016,March,17,14,1,4,2,2.0,0,BB,FRA,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,200.35,0,1,Check-Out,2020-01-04 -City Hotel,1,153,2017,June,25,15,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,118.06,0,0,Canceled,2019-12-04 -Resort Hotel,0,183,2016,June,30,20,2,1,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,111.09,0,2,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,October,42,21,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,35.29,0,0,Check-Out,2018-09-02 -Resort Hotel,0,49,2016,December,50,28,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,80.05,0,0,Check-Out,2019-05-04 -Resort Hotel,0,151,2016,August,38,20,3,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,178.36,0,0,Check-Out,2019-05-04 -Resort Hotel,0,38,2015,October,44,19,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,3,No Deposit,14.0,179.0,0,Transient,29.68,0,0,Check-Out,2018-09-02 -Resort Hotel,1,47,2016,March,21,28,2,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,138.0,179.0,0,Transient-Party,79.9,0,0,Canceled,2019-02-01 -City Hotel,0,93,2017,July,14,21,2,5,3,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,F,0,No Deposit,13.0,179.0,0,Group,122.1,0,1,Check-Out,2020-05-03 -City Hotel,0,34,2016,March,10,17,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,71.91,0,0,Check-Out,2019-02-01 -City Hotel,0,11,2016,August,33,24,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,201.52,0,2,Check-Out,2019-06-03 -City Hotel,1,250,2016,May,16,10,0,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,80.16,0,0,Canceled,2019-02-01 -Resort Hotel,0,249,2016,March,11,30,2,3,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,D,1,No Deposit,13.0,222.0,0,Transient-Party,37.77,0,0,Check-Out,2019-08-04 -Resort Hotel,0,39,2016,November,49,9,3,7,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Contract,38.97,0,0,Check-Out,2019-09-03 -City Hotel,0,211,2016,August,34,9,1,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,166.21,0,0,Check-Out,2020-06-02 -Resort Hotel,0,17,2016,January,52,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,60.11,0,1,Check-Out,2018-10-03 -City Hotel,0,17,2017,May,12,16,2,0,1,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,10.0,179.0,0,Group,114.12,1,1,Check-Out,2020-03-03 -Resort Hotel,0,9,2017,March,15,15,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,3,No Deposit,17.0,179.0,75,Transient-Party,168.78,1,0,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,January,3,6,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,32.39,1,0,Check-Out,2019-11-03 -City Hotel,1,118,2017,July,33,10,0,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,130.12,0,2,Check-Out,2020-05-03 -City Hotel,0,2,2016,October,42,2,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,120.85,0,0,Check-Out,2019-05-04 -City Hotel,1,0,2016,March,10,13,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,98.05,0,0,Canceled,2019-01-03 -Resort Hotel,1,111,2016,March,16,20,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,Non Refund,316.0,179.0,0,Transient,48.98,0,0,Canceled,2019-02-01 -Resort Hotel,0,180,2016,September,45,22,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.61,0,1,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,February,11,15,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,241.0,179.0,0,Group,38.4,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,May,21,5,2,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,157.27,0,0,Check-Out,2020-02-01 -City Hotel,1,0,2016,January,4,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,57.83,0,0,No-Show,2018-11-02 -City Hotel,1,47,2016,May,44,27,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,145.03,0,0,Canceled,2019-10-04 -City Hotel,0,194,2017,May,21,13,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.37,0,1,Check-Out,2019-08-04 -Resort Hotel,1,214,2016,October,46,25,1,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,122.42,0,0,Canceled,2019-01-03 -City Hotel,1,40,2016,May,20,27,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,38,Transient,65.0,0,0,Canceled,2018-12-03 -City Hotel,1,33,2017,June,24,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,137.98,0,3,Canceled,2020-02-01 -City Hotel,0,0,2016,August,38,30,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,H,L,1,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-08-04 -City Hotel,0,3,2016,October,45,12,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,69.65,0,1,Check-Out,2018-08-03 -City Hotel,1,9,2017,February,10,11,1,1,2,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient-Party,80.74,1,0,Canceled,2019-12-04 -City Hotel,0,93,2017,March,16,21,2,4,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,22.0,179.0,0,Transient,70.09,0,2,Check-Out,2019-12-04 -Resort Hotel,0,9,2017,February,10,27,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,29.8,0,0,Check-Out,2019-11-03 -City Hotel,1,420,2017,August,40,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,172.56,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2016,August,35,30,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,20.0,179.0,0,Transient,131.53,1,0,Check-Out,2019-07-04 -City Hotel,0,42,2015,July,31,17,0,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,127.92,0,2,Check-Out,2018-06-02 -City Hotel,1,48,2015,December,53,24,1,2,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.85,0,0,Canceled,2018-12-03 -City Hotel,0,15,2017,August,25,14,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,1,No Deposit,15.0,179.0,0,Transient,159.85,1,3,Check-Out,2020-06-02 -Resort Hotel,0,212,2016,October,45,21,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,119.39,0,1,Check-Out,2018-08-03 -Resort Hotel,0,0,2017,March,11,20,0,1,1,0.0,0,BB,GBR,Complementary,TA/TO,1,0,0,A,I,0,No Deposit,11.0,179.0,0,Contract,68.62,0,0,Check-Out,2019-12-04 -City Hotel,1,307,2016,June,26,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,130.71,0,0,Canceled,2019-02-01 -City Hotel,0,235,2016,June,21,30,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,78.0,179.0,0,Transient-Party,88.86,0,0,Check-Out,2020-02-01 -Resort Hotel,0,46,2016,September,17,13,2,0,2,0.0,0,BB,GBR,Direct,TA/TO,1,0,1,E,D,1,No Deposit,340.0,179.0,0,Group,79.96,0,1,Check-Out,2019-11-03 -City Hotel,1,138,2015,February,8,28,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.42,0,0,Canceled,2018-10-03 -Resort Hotel,0,92,2016,July,35,28,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,228.59,1,3,Check-Out,2019-03-04 -Resort Hotel,0,99,2017,June,23,2,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,93.7,1,1,Check-Out,2020-05-03 -Resort Hotel,0,54,2016,March,16,18,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,34.15,0,2,Check-Out,2019-04-03 -City Hotel,0,93,2016,June,25,20,3,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,98.1,0,0,Check-Out,2019-04-03 -City Hotel,0,29,2016,December,53,6,0,2,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,69.2,0,1,Check-Out,2019-11-03 -City Hotel,1,10,2016,February,36,10,0,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.66,0,0,Canceled,2019-01-03 -City Hotel,0,11,2016,December,52,28,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,13.0,68.0,0,Transient,60.11,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,October,44,12,0,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,F,A,0,No Deposit,16.0,179.0,0,Transient,167.54,1,0,Check-Out,2018-06-02 -City Hotel,0,290,2016,August,38,16,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.98,0,1,Check-Out,2019-06-03 -City Hotel,1,9,2017,June,21,14,0,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,151.11,0,3,Canceled,2020-07-03 -Resort Hotel,0,1,2015,December,51,5,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,61.03,0,0,Check-Out,2019-02-01 -City Hotel,0,49,2016,October,45,26,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,76.52,0,1,Check-Out,2019-12-04 -City Hotel,1,49,2015,July,32,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.01,0,0,Canceled,2018-01-03 -City Hotel,0,17,2016,July,34,14,0,3,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient-Party,127.89,0,0,Check-Out,2019-06-03 -City Hotel,1,44,2016,May,23,24,0,1,3,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,239.7,0,0,Canceled,2019-02-01 -Resort Hotel,1,140,2017,March,21,22,1,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,22,Transient,92.15,0,0,Canceled,2020-01-04 -City Hotel,0,38,2015,December,53,5,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,63.39,0,0,Canceled,2019-01-03 -City Hotel,0,2,2017,March,9,9,1,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,84.45,0,2,Check-Out,2020-02-01 -Resort Hotel,0,103,2016,October,43,30,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,280.0,179.0,66,Transient,31.27,0,0,Check-Out,2019-09-03 -Resort Hotel,0,39,2016,December,51,28,1,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,62.41,0,2,Check-Out,2019-08-04 -City Hotel,0,93,2016,May,26,10,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,109.32,0,0,Check-Out,2019-03-04 -Resort Hotel,1,262,2016,April,27,10,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,63.61,0,0,Canceled,2019-05-04 -City Hotel,1,35,2015,September,44,5,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,E,0,No Deposit,10.0,179.0,0,Transient,148.04,0,0,Canceled,2018-07-03 -City Hotel,1,0,2016,February,11,23,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,1,1,0,A,K,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Canceled,2018-12-03 -City Hotel,1,3,2016,June,29,23,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,77.96,0,0,Canceled,2019-05-04 -City Hotel,0,0,2017,March,10,24,0,1,1,0.0,0,SC,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,10.0,331.0,0,Group,0.0,0,2,Check-Out,2020-02-01 -Resort Hotel,0,42,2016,October,42,12,0,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,279.0,179.0,0,Transient,32.78,0,0,Check-Out,2019-09-03 -Resort Hotel,1,168,2017,August,38,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,120.76,0,3,Canceled,2020-05-03 -City Hotel,0,25,2017,May,26,31,1,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.49,0,1,Check-Out,2020-03-03 -City Hotel,0,17,2015,December,50,9,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,60.16,0,0,Check-Out,2018-11-02 -Resort Hotel,0,55,2016,October,43,17,3,6,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,320.0,179.0,0,Transient,175.02,0,0,Check-Out,2019-05-04 -Resort Hotel,0,170,2017,July,16,31,2,5,2,0.0,0,HB,USA,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,212.27,0,1,Canceled,2020-03-03 -City Hotel,1,22,2015,October,47,14,2,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.59,0,0,No-Show,2018-01-31 -Resort Hotel,0,272,2017,July,43,28,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,79.39,0,0,Check-Out,2019-10-04 -City Hotel,0,3,2016,July,33,27,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,4.01,0,0,Check-Out,2018-06-02 -Resort Hotel,1,0,2016,February,10,15,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,223.0,0,Transient,39.32,0,0,Check-Out,2020-04-02 -City Hotel,0,99,2017,June,11,16,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,31.0,179.0,0,Transient,87.9,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,October,43,21,1,10,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,265.0,179.0,0,Group,66.9,0,0,Check-Out,2019-08-04 -Resort Hotel,0,17,2016,January,4,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,122.84,0,1,Check-Out,2019-11-03 -Resort Hotel,0,98,2017,April,22,30,2,5,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,72.33,0,0,Check-Out,2020-04-02 -City Hotel,0,6,2017,April,17,21,2,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.17,0,0,Check-Out,2020-02-01 -Resort Hotel,1,2,2016,August,37,3,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,1.02,0,0,Canceled,2018-06-02 -City Hotel,0,32,2017,April,12,7,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,156.59,0,0,Check-Out,2020-02-01 -City Hotel,1,153,2015,September,34,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,83.0,179.0,0,Contract,61.77,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,March,17,18,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-02-01 -City Hotel,0,6,2015,October,45,21,1,2,2,2.0,0,BB,CHE,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,100.43,1,0,Check-Out,2018-09-02 -City Hotel,1,45,2017,January,3,30,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.81,0,2,Canceled,2019-11-03 -Resort Hotel,1,103,2016,August,36,9,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,124.81,0,0,Canceled,2019-02-01 -Resort Hotel,0,29,2016,July,37,3,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,149.67,0,2,Check-Out,2019-05-04 -Resort Hotel,0,246,2016,October,44,10,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,95.0,179.0,0,Transient-Party,29.14,0,0,Check-Out,2019-09-03 -City Hotel,1,15,2017,January,3,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,59.02,0,2,No-Show,2019-12-04 -City Hotel,0,59,2016,August,36,10,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,174.2,1,2,Check-Out,2019-09-03 -Resort Hotel,0,1,2017,March,10,28,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,C,F,0,No Deposit,17.0,179.0,0,Transient,102.79,1,1,Check-Out,2020-03-03 -City Hotel,1,0,2015,August,36,9,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,1.68,0,0,Canceled,2019-06-03 -City Hotel,0,8,2016,June,28,21,0,3,1,0.0,0,BB,NLD,Aviation,Corporate,1,0,1,A,A,0,No Deposit,12.0,47.0,0,Transient,120.67,0,2,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,October,43,27,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,221.0,0,Transient,81.89,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2016,February,10,21,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,62.24,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2016,January,8,13,0,1,1,0.0,0,BB,POL,Online TA,GDS,0,0,0,A,A,2,No Deposit,198.0,331.0,0,Transient,96.64,0,0,Check-Out,2019-10-04 -Resort Hotel,1,272,2015,August,53,4,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,49.08,0,1,Canceled,2017-11-02 -City Hotel,1,86,2016,January,4,30,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,151.93,0,0,No-Show,2019-11-03 -City Hotel,0,301,2017,May,21,25,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,240.63,0,3,Check-Out,2020-04-02 -Resort Hotel,0,98,2015,July,33,27,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,1,A,A,0,No Deposit,241.0,179.0,0,Transient,101.77,0,1,Check-Out,2018-06-02 -City Hotel,0,242,2016,July,31,9,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.25,0,2,Check-Out,2019-04-03 -City Hotel,0,46,2016,October,45,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,I,0,No Deposit,10.0,179.0,0,Transient,103.78,0,3,Check-Out,2019-08-04 -City Hotel,0,14,2017,March,14,13,2,5,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.81,1,2,Check-Out,2020-03-03 -Resort Hotel,0,44,2015,December,51,30,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,42.13,1,1,Check-Out,2018-11-02 -City Hotel,1,159,2017,April,22,22,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,124.44,0,1,Canceled,2020-03-03 -City Hotel,1,102,2016,March,10,24,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,7.0,179.0,0,Transient,119.84,0,0,Canceled,2019-02-01 -Resort Hotel,0,146,2015,August,33,21,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient-Party,122.24,0,2,Check-Out,2018-08-03 -City Hotel,1,49,2017,March,11,31,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,106.15,0,1,Canceled,2019-02-01 -City Hotel,0,287,2017,July,32,2,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,138.3,0,2,Check-Out,2019-04-03 -Resort Hotel,1,299,2017,August,37,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,233.0,179.0,0,Transient,150.96,0,2,Canceled,2019-09-03 -City Hotel,1,392,2016,June,28,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,112.11,0,0,Canceled,2019-05-04 -Resort Hotel,1,40,2016,August,35,15,2,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,211.74,0,0,Canceled,2019-08-04 -Resort Hotel,1,45,2015,September,38,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,E,0,Non Refund,12.0,179.0,0,Transient,133.56,0,0,Canceled,2018-05-03 -City Hotel,0,15,2015,October,45,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.1,0,0,Check-Out,2018-09-02 -City Hotel,1,56,2016,December,53,9,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,74.87,0,2,Canceled,2019-10-04 -City Hotel,1,331,2015,October,45,7,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.74,0,0,Canceled,2018-07-03 -City Hotel,1,189,2016,June,33,20,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,217.05,0,0,Canceled,2019-06-03 -Resort Hotel,0,43,2017,April,10,15,0,3,1,0.0,0,Undefined,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,179.0,75,Transient-Party,137.21,0,0,Check-Out,2020-04-02 -Resort Hotel,0,107,2017,April,18,3,2,5,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,113.45,0,1,Check-Out,2020-02-01 -City Hotel,0,7,2017,June,26,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,12.0,241.0,0,Transient-Party,104.3,0,0,Check-Out,2020-05-03 -City Hotel,0,96,2017,July,26,25,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.93,0,1,Check-Out,2020-06-02 -Resort Hotel,0,10,2015,December,51,31,2,3,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient-Party,115.03,0,2,Check-Out,2018-12-03 -City Hotel,1,198,2016,August,36,31,0,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,150.54,0,3,Canceled,2019-08-04 -Resort Hotel,1,225,2015,December,51,29,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,3,No Deposit,2.0,179.0,41,Transient-Party,87.55,0,0,Canceled,2018-09-02 -Resort Hotel,1,14,2016,August,36,6,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,64.27,0,0,Canceled,2018-09-02 -Resort Hotel,0,142,2016,August,34,25,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,303.0,179.0,0,Transient-Party,83.81,0,0,Check-Out,2019-06-03 -City Hotel,0,28,2017,May,22,9,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,77.36,0,0,Check-Out,2020-02-01 -City Hotel,1,42,2016,October,43,19,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,63.83,0,0,Canceled,2019-07-04 -City Hotel,0,2,2015,October,43,13,0,1,2,0.0,0,BB,RUS,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,174.8,0,0,Check-Out,2018-09-02 -City Hotel,0,41,2016,July,31,27,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,106.59,0,1,Check-Out,2019-04-03 -Resort Hotel,1,13,2016,December,43,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,213.0,0,Transient,70.3,0,0,Canceled,2019-08-04 -City Hotel,0,103,2017,June,31,11,0,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.4,1,1,Check-Out,2020-06-02 -City Hotel,0,61,2016,October,40,20,1,1,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,9.0,179.0,0,Transient-Party,99.09,0,0,Check-Out,2019-08-04 -City Hotel,1,22,2017,March,10,10,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,93.12,0,0,Canceled,2020-02-01 -Resort Hotel,0,103,2016,February,9,5,0,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,88.05,0,0,Check-Out,2018-12-03 -Resort Hotel,0,1,2015,October,42,6,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,151.48,0,0,Check-Out,2018-08-03 -City Hotel,0,5,2017,May,20,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,72.97,0,0,Check-Out,2020-02-01 -City Hotel,1,106,2017,March,8,21,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,177.0,179.0,0,Transient,102.63,0,0,Canceled,2020-02-01 -Resort Hotel,0,34,2016,March,9,31,1,5,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,145.0,179.0,0,Transient,40.26,0,0,Check-Out,2019-03-04 -City Hotel,1,11,2016,February,8,21,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.84,0,0,No-Show,2020-03-03 -Resort Hotel,0,1,2016,March,8,8,0,3,2,1.0,0,BB,,Direct,Direct,0,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,229.76,0,0,Check-Out,2019-02-01 -Resort Hotel,1,114,2016,July,33,2,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,190.2,0,0,Canceled,2020-06-02 -City Hotel,1,48,2016,February,9,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,0,Transient,72.5,0,0,Canceled,2018-12-03 -City Hotel,0,88,2016,August,32,31,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.12,0,1,Check-Out,2019-06-03 -Resort Hotel,1,280,2015,August,34,23,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,62.05,0,0,Canceled,2018-06-02 -City Hotel,0,1,2016,January,8,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,75.0,0,Transient,72.86,0,0,Canceled,2019-08-04 -City Hotel,1,5,2017,February,8,4,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,127.89,0,0,Canceled,2019-09-03 -City Hotel,0,1,2017,May,21,30,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,122.37,0,1,Check-Out,2020-03-03 -City Hotel,0,187,2016,October,49,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,16.0,45.0,0,Transient,84.54,0,0,Check-Out,2018-08-03 -Resort Hotel,0,129,2017,July,26,29,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,245.0,179.0,0,Transient,192.16,1,0,Check-Out,2020-03-03 -City Hotel,0,46,2015,October,43,9,2,0,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,114.23,0,0,Check-Out,2018-08-03 -City Hotel,0,291,2015,August,36,10,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,74.04,0,0,Check-Out,2018-06-02 -City Hotel,0,121,2017,April,21,5,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,118.6,0,2,Check-Out,2019-12-04 -City Hotel,1,94,2015,August,43,23,2,5,1,0.0,0,HB,GBR,Undefined,TA/TO,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient-Party,107.11,0,0,Check-Out,2018-06-02 -City Hotel,1,374,2017,October,41,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.85,0,0,Canceled,2018-09-02 -Resort Hotel,0,28,2016,March,50,15,0,4,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,104.68,0,2,Check-Out,2019-12-04 -Resort Hotel,1,53,2015,December,52,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,42.28,0,0,No-Show,2018-11-02 -City Hotel,1,104,2016,January,8,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,Non Refund,7.0,179.0,0,Transient,63.02,0,0,Canceled,2018-12-03 -City Hotel,0,13,2016,December,53,3,0,1,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,127.46,0,0,Check-Out,2019-03-04 -Resort Hotel,1,3,2017,August,32,2,1,7,2,2.0,0,HB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,204.45,0,0,Canceled,2020-06-02 -City Hotel,0,52,2015,February,10,22,2,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,117.66,0,1,Check-Out,2018-11-02 -Resort Hotel,0,106,2017,May,22,25,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,63.54,1,2,Check-Out,2020-02-01 -City Hotel,0,100,2016,May,22,4,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient,128.59,0,0,Check-Out,2019-02-01 -Resort Hotel,0,25,2017,January,53,31,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,85.09,1,3,Check-Out,2019-11-03 -Resort Hotel,0,143,2015,December,35,12,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,110.06,0,3,Check-Out,2019-08-04 -City Hotel,0,0,2017,April,17,31,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient-Party,117.36,0,0,Check-Out,2020-02-01 -Resort Hotel,0,23,2016,April,17,25,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,62.06,0,0,Check-Out,2018-10-03 -Resort Hotel,0,2,2016,October,43,23,0,1,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,126.5,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2016,September,38,30,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,91.69,0,1,Check-Out,2019-09-03 -Resort Hotel,0,11,2016,January,4,17,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,41.6,0,2,Check-Out,2018-12-03 -Resort Hotel,0,19,2015,August,49,9,2,5,2,0.0,0,Undefined,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,51.74,0,0,Check-Out,2019-10-04 -City Hotel,0,4,2016,September,20,5,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,82.96,0,1,Check-Out,2019-05-04 -City Hotel,1,0,2017,May,20,9,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.72,0,2,Canceled,2020-03-03 -Resort Hotel,0,17,2016,May,23,2,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,121.42,0,0,Check-Out,2019-02-01 -City Hotel,0,52,2017,June,28,23,0,2,1,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,171.0,179.0,0,Transient,126.77,0,0,Check-Out,2020-03-03 -City Hotel,0,99,2017,July,4,23,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,126.83,0,2,Check-Out,2020-04-02 -City Hotel,0,151,2017,May,20,28,0,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.56,0,2,Check-Out,2019-11-03 -Resort Hotel,0,20,2017,May,23,13,0,1,2,2.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,298.0,179.0,0,Transient,159.87,1,0,Check-Out,2020-04-02 -Resort Hotel,1,261,2016,May,21,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,38.28,0,0,Canceled,2019-09-03 -Resort Hotel,1,260,2016,April,17,24,2,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,240.0,179.0,0,Transient,60.46,0,0,Canceled,2019-02-01 -City Hotel,0,41,2016,May,23,6,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.55,0,1,Check-Out,2019-03-04 -Resort Hotel,0,14,2017,May,26,15,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,A,1,No Deposit,85.0,179.0,0,Transient,119.73,0,1,Check-Out,2020-03-03 -Resort Hotel,0,335,2016,August,37,16,2,7,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,104.24,0,1,Check-Out,2019-08-04 -City Hotel,1,303,2016,June,38,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,75.64,0,0,No-Show,2019-06-03 -City Hotel,1,259,2017,July,27,5,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,90.53,0,0,Canceled,2019-05-04 -City Hotel,0,50,2016,April,28,16,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,127.0,179.0,0,Transient-Party,129.85,0,1,Check-Out,2019-01-03 -Resort Hotel,0,168,2016,September,43,29,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,85.82,0,0,Check-Out,2019-08-04 -City Hotel,1,389,2016,April,43,21,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,42,Transient,84.53,0,0,Canceled,2018-12-03 -City Hotel,1,268,2015,December,49,6,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.44,0,0,Canceled,2018-01-31 -Resort Hotel,0,152,2016,March,16,31,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,179.0,0,Transient,46.32,0,0,Check-Out,2019-04-03 -Resort Hotel,1,116,2015,December,50,9,2,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,234.0,179.0,0,Transient,40.81,0,3,Canceled,2019-11-03 -City Hotel,0,0,2016,September,49,29,0,1,1,0.0,0,BB,,Complementary,Direct,1,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-06-03 -City Hotel,1,51,2015,February,10,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,66.07,0,0,Canceled,2019-01-03 -Resort Hotel,0,42,2016,October,38,24,2,4,3,0.0,0,BB,BEL,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,40.95,0,0,Check-Out,2019-06-03 -Resort Hotel,0,275,2017,August,34,24,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,E,0,No Deposit,15.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-04-02 -City Hotel,0,20,2016,May,24,27,0,3,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,109.72,0,0,Check-Out,2019-03-04 -City Hotel,0,83,2016,July,26,15,2,5,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,94.86,0,0,Check-Out,2019-06-03 -Resort Hotel,1,40,2016,December,50,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,40.64,0,0,Canceled,2017-12-03 -City Hotel,1,42,2017,March,4,18,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,87.66,0,0,Canceled,2019-09-03 -City Hotel,1,148,2016,July,28,28,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,128.39,0,2,Check-Out,2019-05-04 -City Hotel,0,94,2016,April,16,19,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.18,0,1,Check-Out,2019-03-04 -City Hotel,1,254,2015,November,43,27,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,143.0,179.0,0,Transient,77.24,0,0,Canceled,2018-10-03 -Resort Hotel,0,22,2016,October,44,27,0,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,93.82,0,0,Check-Out,2019-08-04 -Resort Hotel,0,14,2017,August,37,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,225.39,1,1,Check-Out,2020-07-03 -City Hotel,0,7,2017,May,23,19,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,135.43,0,1,Check-Out,2020-05-03 -City Hotel,1,155,2017,May,22,7,1,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,148.69,0,0,Canceled,2020-05-03 -City Hotel,0,15,2017,February,11,31,1,2,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,92.87,0,2,Check-Out,2019-10-04 -City Hotel,0,44,2017,July,32,27,0,3,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,125.31,0,0,Check-Out,2020-06-02 -City Hotel,0,21,2015,January,11,7,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,62.64,0,0,Canceled,2018-06-02 -City Hotel,1,238,2017,July,31,10,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,190.83,0,1,Canceled,2020-06-02 -City Hotel,0,101,2015,November,36,5,2,1,1,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,102.19,0,0,Check-Out,2018-05-03 -City Hotel,1,4,2016,September,44,26,0,1,2,0.0,0,BB,ITA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,83.44,0,0,Canceled,2019-08-04 -Resort Hotel,0,141,2016,March,17,17,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,224.0,0,Transient-Party,38.32,0,0,Check-Out,2019-06-03 -City Hotel,1,390,2017,May,21,14,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,188.0,179.0,0,Transient,78.78,0,0,Canceled,2020-04-02 -City Hotel,1,57,2015,October,44,10,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,65.02,0,0,Canceled,2018-08-03 -Resort Hotel,1,11,2015,August,39,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,241.0,179.0,0,Transient,188.91,0,0,Canceled,2018-06-02 -City Hotel,0,138,2015,July,28,30,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,226.0,0,Transient,98.33,0,0,Check-Out,2018-05-03 -Resort Hotel,0,188,2016,May,17,31,0,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,222.0,0,Transient-Party,74.94,0,0,Check-Out,2019-06-03 -City Hotel,0,52,2015,December,43,9,2,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,95.38,0,2,Check-Out,2018-10-03 -City Hotel,0,43,2016,June,23,21,0,2,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.83,0,1,Check-Out,2019-01-03 -City Hotel,0,38,2015,October,43,16,0,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,89.69,0,0,Check-Out,2018-08-03 -City Hotel,1,101,2016,July,29,24,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,39,Transient,208.98,0,0,Canceled,2018-10-03 -City Hotel,0,0,2017,August,32,20,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,131.35,0,0,Check-Out,2020-06-02 -City Hotel,0,247,2016,June,26,25,0,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.97,0,0,Check-Out,2019-05-04 -Resort Hotel,0,155,2016,March,17,27,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,F,G,1,No Deposit,241.0,179.0,0,Transient,34.67,0,2,Check-Out,2019-03-04 -City Hotel,0,194,2017,August,35,15,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,87.17,0,0,Check-Out,2020-06-02 -City Hotel,0,87,2016,October,33,6,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,101.62,0,2,Check-Out,2019-11-03 -City Hotel,1,33,2016,May,21,10,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,141.89,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,December,18,21,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-11-02 -Resort Hotel,1,42,2016,August,19,24,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,158.66,0,0,Canceled,2019-03-04 -City Hotel,1,241,2015,August,34,5,0,1,1,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,65.2,0,1,Canceled,2018-06-02 -City Hotel,1,28,2015,January,4,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,34.63,0,0,No-Show,2018-11-02 -Resort Hotel,0,191,2017,August,37,29,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,187.09,0,0,Check-Out,2020-07-03 -City Hotel,0,7,2016,July,30,5,0,1,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,153.64,1,0,Check-Out,2019-04-03 -Resort Hotel,0,35,2017,March,17,29,2,4,2,0.0,0,HB,FRA,Complementary,Direct,0,0,0,A,A,2,No Deposit,248.0,179.0,0,Transient,45.2,1,2,Check-Out,2020-04-02 -City Hotel,0,101,2016,March,15,10,2,5,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,88.79,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2016,August,38,9,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.77,0,0,Check-Out,2018-06-02 -Resort Hotel,1,332,2015,July,37,27,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Transient,119.04,0,0,Canceled,2018-06-02 -Resort Hotel,0,158,2017,April,21,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,73.22,0,2,Check-Out,2020-04-02 -Resort Hotel,0,84,2016,July,34,10,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,108.32,0,0,Check-Out,2019-05-04 -Resort Hotel,1,287,2017,May,22,19,4,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,89.55,0,0,Canceled,2020-03-03 -City Hotel,1,143,2016,December,18,15,0,1,1,1.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.58,0,0,Canceled,2019-09-03 -Resort Hotel,0,313,2017,July,32,29,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Contract,197.15,0,1,Check-Out,2020-05-03 -Resort Hotel,1,1,2015,September,37,18,0,1,2,0.0,0,FB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,77.98,0,0,Canceled,2018-07-03 -Resort Hotel,0,1,2016,December,12,10,0,2,1,0.0,0,BB,CN,Direct,Direct,0,0,0,A,D,2,No Deposit,15.0,179.0,0,Transient,34.92,0,0,Check-Out,2019-11-03 -City Hotel,0,90,2016,August,32,27,0,2,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,237.18,0,0,Check-Out,2019-04-03 -City Hotel,0,236,2017,June,24,5,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.15,0,2,Check-Out,2020-04-02 -Resort Hotel,1,99,2016,June,32,19,0,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,239.0,179.0,0,Transient,115.77,0,1,No-Show,2019-06-03 -Resort Hotel,0,402,2017,June,30,2,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,166.0,179.0,0,Transient,134.48,1,1,Check-Out,2020-07-03 -City Hotel,1,19,2016,October,44,28,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,43,Transient,88.31,0,0,Canceled,2019-09-03 -City Hotel,0,38,2017,May,22,14,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,141.4,0,1,Check-Out,2020-04-02 -City Hotel,0,29,2017,August,27,8,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,131.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,259,2015,July,32,6,0,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.06,0,0,Canceled,2018-06-02 -City Hotel,1,6,2016,December,52,2,0,1,2,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.81,0,0,Canceled,2019-10-04 -Resort Hotel,0,11,2017,February,9,24,2,5,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,301.0,284.0,0,Transient-Party,37.24,0,0,Check-Out,2019-12-04 -City Hotel,0,42,2016,April,14,25,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,Non Refund,77.0,179.0,0,Transient,90.88,0,2,Check-Out,2019-01-03 -City Hotel,1,152,2016,October,42,14,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,D,A,0,Non Refund,7.0,179.0,0,Transient,90.83,0,0,Canceled,2019-05-04 -Resort Hotel,0,206,2016,May,21,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,67.39,1,0,Check-Out,2019-06-03 -Resort Hotel,0,15,2015,December,53,13,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,47.09,0,0,Check-Out,2018-11-02 -Resort Hotel,0,263,2016,October,41,12,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,116.54,0,1,Check-Out,2019-07-04 -Resort Hotel,0,164,2016,October,43,24,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,D,2,No Deposit,318.0,179.0,0,Transient-Party,106.51,0,0,Check-Out,2019-03-04 -Resort Hotel,0,285,2016,November,50,30,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,72.75,0,0,Check-Out,2019-08-04 -Resort Hotel,0,18,2017,January,7,12,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,63.25,0,1,Check-Out,2020-03-03 -City Hotel,1,121,2015,October,51,31,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,59.55,0,0,Canceled,2018-05-03 -City Hotel,1,35,2015,September,44,5,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.81,0,0,Canceled,2018-11-02 -City Hotel,1,55,2016,December,53,28,1,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,195.82,0,0,Canceled,2019-09-03 -City Hotel,0,33,2016,December,50,12,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,34.0,179.0,0,Transient-Party,71.68,0,0,Check-Out,2019-11-03 -City Hotel,1,65,2017,March,32,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,8.0,179.0,0,Transient,98.17,0,0,Canceled,2019-11-03 -City Hotel,0,93,2017,April,22,20,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,128.15,0,0,Check-Out,2020-03-03 -Resort Hotel,0,23,2016,January,3,20,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,82.51,0,0,Check-Out,2018-11-02 -Resort Hotel,0,49,2017,May,20,24,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,335.0,179.0,0,Transient,125.84,0,2,Check-Out,2020-02-01 -City Hotel,0,36,2016,May,23,28,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,99.51,0,2,Check-Out,2019-12-04 -City Hotel,0,44,2015,November,45,25,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,118.7,0,0,Check-Out,2018-08-03 -Resort Hotel,0,170,2017,May,23,19,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,313.0,179.0,0,Transient-Party,94.53,0,0,Check-Out,2020-04-02 -City Hotel,1,0,2015,August,34,5,0,4,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,51.55,0,1,Canceled,2018-07-03 -Resort Hotel,0,28,2016,February,9,17,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,167.15,0,0,Check-Out,2019-03-04 -Resort Hotel,0,146,2016,March,12,31,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,No Deposit,14.0,223.0,0,Transient,40.17,0,0,Check-Out,2019-02-01 -Resort Hotel,0,7,2017,January,12,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,65.61,0,1,Check-Out,2019-11-03 -Resort Hotel,0,9,2016,October,43,20,4,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,65.5,0,0,Check-Out,2019-04-03 -City Hotel,0,54,2017,January,9,27,2,1,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,105.74,0,1,Check-Out,2019-10-04 -Resort Hotel,0,1,2017,June,26,20,1,3,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,F,0,No Deposit,252.0,179.0,0,Transient,119.84,0,2,Check-Out,2020-06-02 -City Hotel,0,48,2016,June,25,24,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,130.22,0,1,Check-Out,2019-06-03 -City Hotel,0,92,2016,June,23,28,1,3,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient,179.14,0,0,Check-Out,2019-06-03 -City Hotel,0,17,2016,June,27,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,12.0,45.0,0,Transient,62.25,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,June,25,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,125.16,0,3,Check-Out,2019-03-04 -City Hotel,0,12,2017,June,22,18,2,4,2,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,E,E,0,No Deposit,14.0,183.0,0,Group,108.52,0,0,Check-Out,2020-05-03 -Resort Hotel,0,46,2016,March,28,9,1,1,2,1.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,91.0,179.0,75,Transient-Party,76.94,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,1,No Deposit,12.0,179.0,0,Transient,28.91,0,0,Check-Out,2019-11-03 -City Hotel,0,56,2016,October,22,7,1,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-07-04 -City Hotel,0,1,2016,August,38,24,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.81,1,0,Check-Out,2019-07-04 -City Hotel,0,39,2015,December,53,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Contract,61.19,0,0,Check-Out,2018-06-02 -City Hotel,0,257,2016,February,9,2,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,331.0,38,Transient,66.13,0,0,Check-Out,2019-02-01 -Resort Hotel,0,177,2016,May,21,31,2,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,Refundable,12.0,222.0,0,Transient-Party,70.66,0,0,Check-Out,2019-02-01 -Resort Hotel,0,204,2017,March,38,23,1,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,119.63,0,2,Check-Out,2020-01-04 -City Hotel,0,193,2016,May,44,28,1,4,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,111.06,0,1,Check-Out,2019-07-04 -Resort Hotel,0,89,2015,July,32,10,2,6,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,74.05,0,0,Check-Out,2019-05-04 -City Hotel,0,48,2016,December,53,5,2,2,1,0.0,0,SC,BRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,77.48,0,0,Check-Out,2019-10-04 -City Hotel,0,3,2016,April,19,26,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.37,0,0,Check-Out,2019-02-01 -City Hotel,0,251,2015,July,33,4,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,122.04,0,1,Check-Out,2018-06-02 -City Hotel,0,50,2017,February,11,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,59.94,0,1,Check-Out,2020-02-01 -City Hotel,0,46,2017,April,8,13,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,F,1,No Deposit,12.0,179.0,0,Transient-Party,82.17,0,0,Check-Out,2019-11-03 -Resort Hotel,0,91,2016,August,35,9,2,5,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,C,C,1,No Deposit,12.0,179.0,0,Transient,138.06,0,0,Check-Out,2019-04-03 -Resort Hotel,0,143,2016,March,37,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,223.0,0,Transient-Party,79.8,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2016,August,28,16,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,90.8,1,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,June,26,21,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,E,I,0,No Deposit,29.0,179.0,0,Transient,2.63,0,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2015,November,31,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,107.0,179.0,0,Transient-Party,38.22,0,0,Check-Out,2018-06-02 -City Hotel,0,288,2017,July,29,30,2,4,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,189.17,0,1,Check-Out,2020-07-03 -City Hotel,0,56,2017,May,20,15,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,167.79,0,2,Check-Out,2020-02-01 -Resort Hotel,0,250,2015,October,45,18,1,4,1,0.0,0,HB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,240.0,0,Transient-Party,42.57,0,0,Check-Out,2018-09-02 -City Hotel,0,14,2016,June,23,20,0,3,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,2.0,70.0,40,Transient,96.85,0,0,Check-Out,2019-07-04 -City Hotel,0,12,2017,June,24,30,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,72.0,0,Transient,154.94,1,0,Check-Out,2020-07-03 -City Hotel,0,12,2017,May,27,17,0,1,1,0.0,0,BB,SWE,Aviation,Corporate,1,0,0,E,E,1,No Deposit,15.0,177.0,0,Transient,114.77,1,0,Check-Out,2020-02-01 -City Hotel,1,48,2017,April,9,28,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,78.73,0,0,Canceled,2019-10-04 -City Hotel,1,273,2015,October,45,29,2,3,2,0.0,0,BB,ISR,Groups,Corporate,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,60.91,0,0,Canceled,2018-08-03 -City Hotel,1,400,2015,October,46,31,1,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,95.96,0,0,Canceled,2019-06-03 -Resort Hotel,0,254,2017,July,27,29,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,69.4,0,0,Canceled,2020-06-02 -City Hotel,0,254,2016,May,22,28,0,3,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.46,1,0,Check-Out,2019-03-04 -City Hotel,0,39,2016,October,45,28,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,179.32,0,0,Check-Out,2019-06-03 -Resort Hotel,0,203,2016,May,43,25,4,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,75,Transient-Party,69.03,0,0,Check-Out,2019-05-04 -City Hotel,0,84,2016,June,25,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,131.17,0,1,Check-Out,2019-04-03 -City Hotel,0,0,2017,July,36,18,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,168.33,1,2,Check-Out,2020-06-02 -City Hotel,1,34,2016,August,37,6,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,181.87,0,0,Canceled,2019-06-03 -City Hotel,0,141,2016,April,20,31,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.73,0,0,Check-Out,2019-02-01 -City Hotel,0,88,2015,September,44,10,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,75.94,0,2,Check-Out,2017-11-02 -Resort Hotel,0,110,2016,June,27,12,2,5,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,99.57,0,0,Check-Out,2019-06-03 -City Hotel,0,31,2017,May,22,2,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,186.5,0,1,Check-Out,2019-12-04 -Resort Hotel,0,2,2016,October,45,21,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,18.0,183.0,0,Transient,179.85,0,0,Check-Out,2019-12-04 -City Hotel,1,281,2017,May,23,25,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.53,0,2,Canceled,2020-03-03 -City Hotel,1,109,2017,June,19,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.51,0,2,Canceled,2020-04-02 -Resort Hotel,0,4,2015,November,50,2,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,38.93,0,0,Check-Out,2018-06-02 -Resort Hotel,1,0,2015,December,53,21,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,64.16,1,2,Canceled,2018-11-02 -City Hotel,0,11,2017,June,29,28,2,1,3,0.0,0,BB,USA,Offline TA/TO,Corporate,0,0,0,E,E,1,No Deposit,34.0,179.0,0,Transient,201.26,0,0,Check-Out,2020-07-03 -City Hotel,0,1,2016,September,21,8,0,1,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,159.12,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2017,May,20,13,0,4,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,G,G,1,No Deposit,302.0,179.0,0,Transient-Party,98.4,1,0,Check-Out,2020-04-02 -City Hotel,1,8,2017,March,9,4,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,75,Transient,86.06,0,2,Canceled,2020-03-03 -Resort Hotel,1,60,2017,February,7,5,2,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,172.45,0,0,Canceled,2019-09-03 -City Hotel,1,253,2015,August,36,21,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,115.64,0,0,Canceled,2018-07-03 -City Hotel,0,97,2016,November,52,5,1,2,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,144.22,0,2,Check-Out,2018-12-03 -City Hotel,0,94,2015,December,53,31,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,97.45,1,2,Check-Out,2019-11-03 -City Hotel,1,1,2017,June,25,13,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,14.0,226.0,0,Transient-Party,63.63,0,0,Canceled,2020-06-02 -City Hotel,0,101,2016,October,41,19,0,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.51,0,0,Check-Out,2019-09-03 -City Hotel,0,14,2017,May,22,21,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,1.85,0,0,Check-Out,2020-04-02 -City Hotel,0,56,2016,January,8,9,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,66.4,0,2,Check-Out,2018-12-03 -City Hotel,1,252,2016,September,35,2,2,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.36,0,0,Canceled,2019-09-03 -City Hotel,1,9,2017,May,17,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,116.59,0,0,Canceled,2020-03-03 -Resort Hotel,0,16,2015,September,41,13,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,35.05,0,2,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,March,11,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,62.81,0,0,Check-Out,2019-01-03 -City Hotel,1,29,2015,September,44,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,168.26,0,0,Canceled,2018-08-03 -Resort Hotel,1,154,2016,March,22,31,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,62.39,0,0,Canceled,2019-04-03 -City Hotel,0,84,2017,May,22,6,1,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.9,0,1,Check-Out,2020-04-02 -City Hotel,0,7,2017,January,2,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,61.15,0,1,Check-Out,2019-09-03 -City Hotel,0,259,2016,October,46,18,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.66,0,2,Check-Out,2019-09-03 -City Hotel,1,2,2016,October,43,14,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.41,0,0,Canceled,2019-07-04 -City Hotel,0,157,2017,July,28,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,192.73,0,1,Check-Out,2020-07-03 -City Hotel,0,196,2016,October,41,24,0,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient-Party,203.47,0,0,Check-Out,2019-08-04 -Resort Hotel,0,113,2015,December,51,30,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,63.16,0,1,Check-Out,2018-11-02 -Resort Hotel,0,2,2016,August,38,21,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,162.0,0,Transient,137.89,0,0,Check-Out,2019-08-04 -Resort Hotel,1,2,2016,March,9,23,0,1,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,D,1,Non Refund,157.0,179.0,0,Transient,63.68,0,0,Canceled,2018-11-02 -City Hotel,0,215,2016,October,41,25,2,5,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,101.68,0,3,Check-Out,2019-08-04 -City Hotel,0,103,2016,June,27,30,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,122.79,0,1,Check-Out,2019-02-01 -City Hotel,0,309,2016,July,50,31,2,5,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,246.88,1,1,Check-Out,2019-10-04 -Resort Hotel,0,106,2016,November,53,25,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,43.42,0,0,Check-Out,2019-08-04 -Resort Hotel,0,46,2017,May,20,25,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,C,3,No Deposit,14.0,179.0,0,Transient,139.16,0,1,Check-Out,2020-06-02 -Resort Hotel,0,41,2016,August,37,7,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,195.57,1,2,Check-Out,2019-09-03 -City Hotel,0,97,2016,September,45,16,1,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,74.59,0,0,Check-Out,2019-07-04 -Resort Hotel,0,102,2016,July,33,29,2,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,105.95,1,3,Check-Out,2019-06-03 -City Hotel,0,98,2016,May,22,30,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,E,H,1,No Deposit,10.0,179.0,0,Transient-Party,63.49,0,0,Check-Out,2019-01-03 -City Hotel,1,157,2017,August,34,24,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.71,0,2,Canceled,2020-06-02 -City Hotel,1,273,2017,July,39,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.87,0,0,Canceled,2019-11-03 -Resort Hotel,0,4,2017,April,10,29,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,211.0,179.0,0,Transient,43.09,0,0,Check-Out,2020-06-02 -Resort Hotel,0,4,2015,July,31,6,0,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,41.66,0,0,Check-Out,2018-06-02 -City Hotel,0,49,2016,June,21,18,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,216.79,0,2,Check-Out,2019-06-03 -City Hotel,0,161,2017,June,27,20,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,126.09,0,0,Check-Out,2020-05-03 -City Hotel,0,27,2015,September,41,24,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,82.0,179.0,0,Transient-Party,78.44,0,0,Check-Out,2018-08-03 -City Hotel,1,50,2016,August,38,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,8.0,179.0,0,Transient,112.59,0,0,Canceled,2019-08-04 -Resort Hotel,0,0,2016,June,25,21,0,2,2,2.0,0,BB,PRT,Direct,Direct,1,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,93.77,1,0,Check-Out,2019-04-03 -City Hotel,1,2,2016,February,10,23,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,42.23,0,0,Canceled,2019-03-04 -City Hotel,0,53,2017,March,17,17,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,93.82,0,0,Check-Out,2020-02-01 -Resort Hotel,0,95,2016,November,8,20,0,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,305.0,179.0,75,Transient-Party,78.94,0,0,Check-Out,2019-12-04 -Resort Hotel,0,31,2016,August,33,15,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,124.54,1,0,Check-Out,2019-06-03 -Resort Hotel,0,110,2017,April,18,10,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,265.0,179.0,0,Transient,68.93,0,3,Check-Out,2020-03-03 -Resort Hotel,0,154,2017,April,17,25,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,325.0,179.0,0,Transient,188.28,0,1,Check-Out,2019-08-04 -City Hotel,0,32,2016,October,42,9,2,4,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.06,0,3,Check-Out,2019-04-03 -City Hotel,1,0,2016,September,25,5,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,200.32,0,0,Canceled,2019-04-03 -City Hotel,0,9,2016,January,12,18,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.59,0,3,Check-Out,2018-12-03 -City Hotel,0,49,2016,June,17,17,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.12,0,0,Check-Out,2018-09-02 -Resort Hotel,0,54,2015,August,44,16,1,6,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,184.46,1,0,Check-Out,2019-06-03 -City Hotel,0,15,2016,September,49,9,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.5,0,1,Check-Out,2019-06-03 -City Hotel,1,91,2016,November,37,17,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.38,0,0,No-Show,2019-05-04 -City Hotel,1,91,2015,July,31,20,0,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,H,0,No Deposit,11.0,179.0,0,Transient-Party,111.48,0,2,Canceled,2018-05-03 -City Hotel,0,28,2017,May,9,14,1,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,84.33,0,1,Check-Out,2020-03-03 -Resort Hotel,0,38,2015,August,35,16,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,79.87,0,0,Check-Out,2018-05-03 -City Hotel,0,289,2015,September,42,12,1,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,79.34,0,0,Check-Out,2018-08-03 -City Hotel,0,256,2017,May,29,26,0,1,1,0.0,0,BB,AUT,Aviation,Corporate,0,0,0,C,A,1,No Deposit,30.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,155,2016,December,50,24,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient,60.73,0,0,Check-Out,2019-10-04 -Resort Hotel,0,106,2016,May,31,9,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,91.9,0,3,Check-Out,2019-02-01 -City Hotel,0,16,2017,January,9,2,0,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,75.35,0,0,Check-Out,2019-11-03 -City Hotel,1,15,2017,May,22,24,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,118.67,0,0,Canceled,2020-04-02 -City Hotel,1,80,2016,August,34,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,204.21,0,2,Canceled,2018-03-03 -Resort Hotel,0,11,2017,February,10,18,0,1,2,0.0,0,BB,CHN,Direct,TA/TO,0,0,0,E,G,0,No Deposit,246.0,179.0,0,Transient,62.58,0,3,Check-Out,2019-10-04 -City Hotel,1,44,2016,March,17,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,102.92,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,April,19,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,1,No Deposit,319.0,179.0,0,Transient-Party,62.59,0,0,Check-Out,2019-02-01 -City Hotel,0,40,2016,June,28,12,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,148.16,0,0,Check-Out,2019-03-04 -Resort Hotel,1,185,2015,December,53,25,2,1,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,42.35,0,0,Canceled,2018-11-02 -Resort Hotel,0,31,2017,May,20,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,126.55,0,2,Check-Out,2020-03-03 -Resort Hotel,0,315,2016,September,44,28,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,89.0,0,1,Check-Out,2019-09-03 -City Hotel,0,62,2016,May,37,12,1,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,223.11,1,0,Check-Out,2019-02-01 -Resort Hotel,1,41,2016,November,49,9,1,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,E,0,Non Refund,253.0,179.0,0,Transient,63.67,0,0,Canceled,2019-02-01 -Resort Hotel,1,53,2017,April,18,31,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,159.15,0,0,Check-Out,2020-03-03 -City Hotel,0,41,2016,July,29,18,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.53,0,1,Check-Out,2019-06-03 -City Hotel,0,2,2016,March,15,8,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.16,0,1,Check-Out,2019-02-01 -Resort Hotel,0,32,2015,September,37,9,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient-Party,167.25,0,0,Check-Out,2018-07-03 -City Hotel,0,259,2015,October,44,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,62.05,0,0,Check-Out,2018-08-03 -Resort Hotel,0,146,2016,December,50,15,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,73.22,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,December,46,27,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,223.0,0,Transient,97.61,0,0,Check-Out,2019-09-03 -Resort Hotel,0,154,2016,July,22,24,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,47.81,1,3,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,March,11,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,42.0,227.0,0,Transient-Party,32.99,0,0,Check-Out,2019-02-01 -Resort Hotel,1,156,2017,August,38,28,1,6,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,313.0,179.0,0,Transient,100.26,0,0,Canceled,2019-12-04 -City Hotel,1,12,2017,February,9,9,1,1,2,0.0,0,BB,NOR,Direct,TA/TO,0,0,0,C,A,0,No Deposit,13.0,179.0,0,Transient,39.93,0,0,Canceled,2019-09-03 -Resort Hotel,1,73,2017,June,16,13,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,219.63,0,1,Canceled,2019-08-04 -Resort Hotel,0,19,2016,January,5,24,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,17.0,179.0,0,Transient,84.34,0,0,Check-Out,2019-11-03 -City Hotel,0,303,2015,October,44,12,2,3,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,64,Transient-Party,73.77,0,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2015,February,10,14,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,43.87,0,0,Check-Out,2018-11-02 -City Hotel,0,144,2017,August,32,5,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,115.17,0,2,Check-Out,2020-04-02 -City Hotel,1,59,2016,November,44,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,18,Transient,61.13,0,0,Canceled,2017-11-02 -City Hotel,0,16,2015,September,39,24,0,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,88.83,0,0,Check-Out,2018-08-03 -City Hotel,1,375,2017,May,21,14,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,A,0,No Deposit,14.0,179.0,0,Transient,126.94,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,September,44,12,1,1,3,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,130.82,0,0,Check-Out,2019-08-04 -City Hotel,1,277,2016,August,34,27,1,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,129.38,0,1,Canceled,2019-03-04 -City Hotel,1,195,2015,August,42,31,2,5,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,F,A,0,No Deposit,13.0,179.0,0,Transient,87.73,0,0,Canceled,2018-05-03 -Resort Hotel,1,314,2015,August,36,29,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,229.2,0,3,Canceled,2020-06-02 -City Hotel,0,50,2016,November,46,5,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,76.42,0,0,Check-Out,2019-09-03 -Resort Hotel,0,203,2017,July,33,15,3,7,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,91.41,0,0,Check-Out,2020-06-02 -Resort Hotel,1,102,2017,March,17,6,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,Non Refund,27.0,179.0,75,Transient-Party,86.75,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,E,2,No Deposit,35.0,331.0,0,Transient,42.28,0,0,Check-Out,2020-03-03 -Resort Hotel,0,96,2017,August,38,28,2,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,116.26,0,0,Check-Out,2020-04-02 -City Hotel,0,200,2016,September,41,20,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,C,1,No Deposit,25.0,179.0,0,Transient-Party,70.22,0,0,Check-Out,2019-08-04 -City Hotel,1,328,2016,October,49,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,1,A,A,0,Non Refund,33.0,179.0,63,Transient,84.36,0,0,Canceled,2018-08-03 -City Hotel,0,172,2015,August,37,8,2,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.11,0,3,Check-Out,2019-06-03 -Resort Hotel,0,4,2017,March,12,31,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,236.0,179.0,0,Transient,162.82,1,1,Check-Out,2020-04-02 -City Hotel,0,2,2017,July,32,30,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,173.91,0,2,Check-Out,2020-06-02 -City Hotel,0,0,2016,December,51,18,2,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,F,F,3,No Deposit,12.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -City Hotel,1,0,2016,December,45,12,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,0.0,0,2,Canceled,2020-01-04 -City Hotel,0,238,2016,October,42,9,0,1,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,133.89,0,0,Check-Out,2018-09-02 -Resort Hotel,0,249,2017,May,27,15,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,132.73,0,3,Check-Out,2020-03-03 -City Hotel,0,4,2017,May,25,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,121.52,0,0,Check-Out,2020-06-02 -City Hotel,1,309,2015,September,38,10,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.87,0,0,Canceled,2017-11-02 -City Hotel,0,1,2016,August,35,13,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,160.0,179.0,0,Transient-Party,80.58,0,1,Check-Out,2019-08-04 -City Hotel,0,15,2017,May,35,6,0,1,3,0.0,0,BB,CHE,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,218.49,0,0,Check-Out,2019-11-03 -City Hotel,1,92,2016,December,43,9,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,73.92,0,0,Canceled,2019-11-03 -Resort Hotel,0,85,2015,July,43,23,1,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,124.75,1,0,Check-Out,2019-05-04 -City Hotel,1,52,2016,December,53,28,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.87,0,1,Check-Out,2019-08-04 -City Hotel,1,296,2017,January,24,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,87.06,0,3,Check-Out,2020-06-02 -City Hotel,1,267,2016,September,43,26,2,5,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,0,Transient-Party,123.38,0,0,Canceled,2019-10-04 -City Hotel,1,335,2015,September,37,8,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.98,0,0,Canceled,2018-05-03 -Resort Hotel,0,118,2017,March,23,10,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,98.0,179.0,0,Contract,154.03,0,0,Check-Out,2020-07-03 -City Hotel,0,39,2017,May,23,6,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.69,0,1,Check-Out,2020-03-03 -Resort Hotel,0,89,2016,June,33,27,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,110.02,0,2,No-Show,2019-09-03 -Resort Hotel,0,293,2016,September,42,12,2,5,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,164.43,1,0,Check-Out,2019-09-03 -City Hotel,0,95,2016,October,43,19,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,102.81,0,2,Check-Out,2019-12-04 -Resort Hotel,0,22,2016,October,45,14,1,0,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient-Party,63.39,0,0,Check-Out,2019-09-03 -City Hotel,0,3,2016,February,9,29,1,2,2,0.0,0,BB,BRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,81.0,0,Transient,61.66,0,0,Check-Out,2018-11-02 -Resort Hotel,1,32,2015,September,44,24,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.91,0,0,Canceled,2018-08-03 -City Hotel,0,26,2016,March,18,28,2,2,2,0.0,0,HB,POL,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,120.12,1,0,Check-Out,2019-02-01 -City Hotel,1,53,2017,May,49,27,0,4,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,F,A,1,Non Refund,13.0,179.0,0,Transient,129.47,0,0,Canceled,2019-10-04 -City Hotel,1,99,2017,June,27,28,0,3,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,171.61,0,0,Canceled,2020-05-03 -Resort Hotel,0,1,2017,February,10,10,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,76.72,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2017,August,37,12,2,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,17.0,179.0,0,Transient,126.01,1,3,Check-Out,2020-07-03 -City Hotel,1,317,2017,June,28,13,2,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.4,0,0,Canceled,2020-06-02 -Resort Hotel,0,94,2016,October,43,13,0,2,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,240.0,179.0,0,Transient,89.14,0,1,Check-Out,2019-07-04 -Resort Hotel,0,101,2016,February,10,27,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,323.0,179.0,0,Transient-Party,98.42,0,0,Check-Out,2019-12-04 -City Hotel,1,34,2015,December,53,22,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient-Party,73.31,1,0,Canceled,2018-09-02 -City Hotel,0,8,2016,May,24,25,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,147.48,0,0,Check-Out,2019-02-01 -City Hotel,0,247,2016,December,43,16,2,1,2,2.0,0,HB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Group,102.67,1,1,Check-Out,2019-10-04 -City Hotel,1,193,2016,July,36,20,2,5,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,79.71,0,0,Canceled,2019-07-04 -City Hotel,0,2,2016,January,4,19,0,1,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,117.94,0,0,Check-Out,2019-11-03 -City Hotel,0,18,2016,September,32,14,1,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.07,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,June,27,24,0,1,2,0.0,0,HB,PRT,Direct,Corporate,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,60.89,0,0,Check-Out,2019-06-03 -Resort Hotel,0,11,2017,February,12,9,2,2,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,71.61,1,0,Check-Out,2020-01-04 -Resort Hotel,0,2,2016,August,27,25,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,245.43,1,1,Check-Out,2019-05-04 -Resort Hotel,0,90,2016,January,13,28,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,148.36,0,2,Check-Out,2018-11-02 -Resort Hotel,1,9,2017,February,9,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,30.91,0,0,No-Show,2020-03-03 -City Hotel,1,31,2017,June,29,20,0,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.08,0,3,Canceled,2020-02-01 -Resort Hotel,0,11,2017,August,39,31,0,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,181.51,1,2,Check-Out,2020-06-02 -City Hotel,1,32,2017,May,22,9,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,68.6,0,3,No-Show,2019-03-04 -City Hotel,1,48,2016,April,17,6,0,1,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.67,0,1,Canceled,2019-10-04 -City Hotel,0,36,2016,July,32,2,1,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.48,0,1,Check-Out,2019-07-04 -City Hotel,0,76,2017,February,10,13,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,70.66,0,0,Check-Out,2019-09-03 -Resort Hotel,1,270,2016,August,35,26,2,3,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,169.53,0,3,Canceled,2019-05-04 -City Hotel,1,39,2016,December,52,16,2,5,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,71.47,0,3,Canceled,2019-09-03 -Resort Hotel,1,16,2015,August,33,30,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,66.56,0,0,Canceled,2018-06-02 -Resort Hotel,0,267,2016,October,43,19,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,108.73,1,2,Check-Out,2019-06-03 -Resort Hotel,1,254,2016,September,34,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,37.54,1,3,Canceled,2019-09-03 -City Hotel,1,385,2015,October,45,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.99,0,0,Canceled,2018-09-02 -City Hotel,1,41,2016,May,30,30,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,200.44,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2015,November,46,18,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -Resort Hotel,0,147,2017,April,13,13,1,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,E,H,1,No Deposit,378.0,179.0,0,Transient-Party,72.54,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2015,October,41,29,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,146.34,0,0,Check-Out,2018-08-03 -City Hotel,1,52,2016,February,10,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,41,Transient,67.12,0,0,Canceled,2019-09-03 -Resort Hotel,1,83,2016,August,26,15,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,243.0,179.0,0,Transient,141.56,0,1,No-Show,2019-05-04 -City Hotel,0,186,2016,September,36,7,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.71,0,1,Check-Out,2019-06-03 -Resort Hotel,0,129,2017,August,26,17,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,75,Transient-Party,171.72,1,3,Check-Out,2020-05-03 -City Hotel,1,152,2017,March,19,30,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,70.73,0,0,Canceled,2020-02-01 -City Hotel,1,100,2016,September,46,11,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,127.76,0,0,No-Show,2019-08-04 -City Hotel,1,39,2015,October,45,10,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,13.0,229.0,0,Transient-Party,61.49,0,0,Canceled,2018-09-02 -City Hotel,0,212,2016,September,37,30,2,5,2,1.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,172.02,0,2,Check-Out,2019-08-04 -City Hotel,1,103,2017,February,10,27,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,102.48,0,0,Canceled,2019-08-04 -City Hotel,0,16,2015,September,42,21,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,61.14,0,0,Check-Out,2018-09-02 -City Hotel,0,79,2017,February,9,6,2,5,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,71.53,0,0,Check-Out,2020-04-02 -City Hotel,0,15,2015,November,51,6,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,244.0,0,Transient,73.14,0,0,Check-Out,2019-10-04 -Resort Hotel,0,41,2015,October,41,21,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,156.77,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,January,8,28,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,62.22,0,0,Check-Out,2018-10-03 -City Hotel,1,15,2017,May,15,24,2,3,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,F,0,No Deposit,13.0,240.0,0,Transient,0.79,0,0,Canceled,2020-03-03 -Resort Hotel,0,38,2017,March,11,31,0,3,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,D,0,No Deposit,240.0,224.0,0,Transient,36.29,1,0,Check-Out,2019-11-03 -Resort Hotel,0,48,2016,September,50,10,2,4,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-07-04 -City Hotel,0,48,2017,June,25,27,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.92,0,1,Check-Out,2020-05-03 -City Hotel,0,350,2015,June,22,9,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.66,0,0,Check-Out,2019-08-04 -Resort Hotel,0,101,2016,January,24,29,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,313.0,179.0,0,Transient-Party,73.57,0,0,Check-Out,2019-06-03 -Resort Hotel,0,135,2016,August,37,10,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,280.0,179.0,0,Transient,119.39,0,0,Check-Out,2019-06-03 -City Hotel,0,149,2017,June,21,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.86,0,1,Check-Out,2020-02-01 -City Hotel,0,13,2015,October,42,21,1,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,114.1,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2016,June,23,1,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.3,0,0,Check-Out,2019-06-03 -City Hotel,0,152,2016,June,26,13,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,128.55,0,0,Check-Out,2020-06-02 -City Hotel,0,93,2017,April,19,16,2,3,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,77.99,0,0,Check-Out,2020-02-01 -City Hotel,1,272,2015,October,42,25,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,45.01,0,1,Canceled,2017-12-03 -Resort Hotel,0,92,2017,June,25,9,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,75.91,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,February,9,28,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,31.3,0,0,Check-Out,2018-10-03 -City Hotel,0,44,2017,May,28,25,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,27.0,179.0,0,Transient,96.96,0,0,Check-Out,2019-12-04 -Resort Hotel,1,7,2016,November,51,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.04,0,0,Canceled,2019-07-04 -City Hotel,1,50,2016,September,23,26,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,139.8,0,0,Canceled,2019-01-03 -City Hotel,1,160,2016,July,37,19,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,21.0,179.0,66,Transient,66.72,0,0,Canceled,2018-07-03 -Resort Hotel,0,17,2017,August,36,16,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,E,I,0,No Deposit,240.0,179.0,0,Group,128.24,0,1,Check-Out,2020-06-02 -City Hotel,0,3,2015,August,34,30,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,17.0,179.0,0,Transient,86.92,0,0,Check-Out,2018-07-03 -City Hotel,1,103,2016,April,17,17,2,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.02,0,0,Canceled,2019-10-04 -Resort Hotel,0,45,2016,April,18,31,0,2,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient-Party,123.3,1,1,Check-Out,2019-02-01 -City Hotel,0,362,2017,June,26,25,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,80.06,0,0,Check-Out,2020-02-01 -City Hotel,0,44,2017,April,22,6,2,0,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,99.11,0,0,Check-Out,2020-01-04 -City Hotel,0,13,2017,August,26,23,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,96.07,0,2,Check-Out,2019-03-04 -City Hotel,1,215,2016,September,39,17,2,1,3,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,252.0,0,0,Canceled,2019-08-04 -City Hotel,1,249,2016,July,30,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,93.67,0,0,Canceled,2019-05-04 -Resort Hotel,0,12,2016,March,11,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,40.0,63.0,0,Transient,41.43,0,0,Check-Out,2018-12-03 -City Hotel,0,143,2016,November,45,28,0,1,3,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,116.83,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2016,March,37,14,2,0,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,79.14,0,1,Check-Out,2019-11-03 -City Hotel,0,83,2016,May,21,10,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,61.47,0,1,Check-Out,2019-12-04 -City Hotel,1,350,2016,September,38,20,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.61,0,0,Canceled,2018-07-03 -City Hotel,0,138,2016,December,53,20,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.63,0,0,Check-Out,2018-12-03 -City Hotel,0,189,2017,March,16,5,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,90.67,0,1,Check-Out,2020-02-01 -City Hotel,0,4,2016,November,43,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,2,No Deposit,16.0,247.0,0,Transient,33.0,0,0,Check-Out,2019-09-03 -City Hotel,1,93,2016,October,44,5,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.24,0,0,Canceled,2019-11-03 -Resort Hotel,0,97,2016,November,43,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,100.48,0,0,Check-Out,2019-10-04 -City Hotel,1,117,2017,November,37,28,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,150.47,0,1,Canceled,2019-11-03 -City Hotel,0,0,2017,August,34,6,2,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,1,A,A,1,No Deposit,12.0,179.0,0,Group,0.0,0,1,Check-Out,2020-06-02 -City Hotel,1,39,2015,December,53,23,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,9.0,179.0,0,Transient,58.37,0,0,Canceled,2018-11-02 -Resort Hotel,1,303,2015,August,37,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,242.0,179.0,0,Transient,39.34,0,0,Canceled,2018-01-31 -Resort Hotel,1,20,2017,February,11,8,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,K,0,No Deposit,239.0,179.0,0,Transient,34.15,0,3,Canceled,2019-10-04 -City Hotel,0,57,2015,October,43,9,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.51,0,0,Check-Out,2018-09-02 -City Hotel,1,288,2017,May,21,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.69,0,0,Canceled,2020-04-02 -Resort Hotel,0,1,2016,March,16,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,319.0,223.0,0,Transient-Party,70.56,0,0,Check-Out,2019-02-01 -City Hotel,1,351,2016,May,25,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,82.16,0,0,Canceled,2019-01-03 -Resort Hotel,0,146,2017,August,39,16,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,0,No Deposit,247.0,179.0,0,Transient,216.5,1,2,Check-Out,2020-06-02 -City Hotel,1,0,2017,February,7,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,91.0,0,Transient,37.76,0,0,Canceled,2020-04-02 -City Hotel,1,150,2015,November,42,18,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,64,Transient,74.29,0,0,Canceled,2018-08-03 -Resort Hotel,0,101,2017,July,29,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,173.93,0,2,Check-Out,2020-03-03 -City Hotel,1,81,2016,August,36,5,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,154.84,0,1,Canceled,2019-07-04 -Resort Hotel,0,3,2016,October,46,27,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,H,0,No Deposit,312.0,179.0,0,Transient,35.85,1,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,December,50,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,303.0,179.0,0,Transient,47.84,0,0,Check-Out,2018-12-03 -City Hotel,0,106,2017,June,34,28,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,89.0,179.0,0,Transient-Party,164.75,0,0,Check-Out,2020-06-02 -Resort Hotel,0,60,2017,March,36,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,42.39,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2016,March,9,28,0,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,34.16,0,0,Canceled,2018-11-02 -Resort Hotel,0,2,2017,March,13,31,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,G,0,No Deposit,4.0,222.0,0,Transient-Party,63.13,0,0,Check-Out,2020-02-01 -Resort Hotel,0,266,2015,November,45,27,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,40.84,0,0,Check-Out,2019-08-04 -Resort Hotel,0,24,2017,December,49,30,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,107.11,1,3,Check-Out,2019-12-04 -City Hotel,1,55,2017,April,14,6,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.7,0,0,Canceled,2020-02-01 -City Hotel,0,149,2016,July,33,12,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.69,0,1,Check-Out,2019-06-03 -Resort Hotel,1,0,2015,October,45,20,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,126.46,0,0,Canceled,2018-08-03 -City Hotel,0,77,2016,March,12,25,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,204.7,0,1,Check-Out,2019-01-03 -Resort Hotel,0,17,2017,July,38,8,2,5,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,213.68,0,2,Canceled,2020-06-02 -City Hotel,1,0,2016,December,50,13,0,1,3,0.0,0,SC,,Online TA,GDS,0,0,0,P,P,0,No Deposit,16.0,235.0,0,Transient,1.71,0,0,Canceled,2019-12-04 -Resort Hotel,0,59,2016,November,44,22,1,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient-Party,68.04,1,0,Check-Out,2019-09-03 -Resort Hotel,0,153,2017,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,10.0,222.0,0,Transient-Party,35.82,0,0,Check-Out,2020-03-03 -City Hotel,1,215,2017,August,37,6,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.8,0,1,Canceled,2020-04-02 -Resort Hotel,0,0,2016,March,5,5,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,L,D,0,No Deposit,250.0,179.0,0,Transient,60.66,0,0,Check-Out,2018-11-02 -City Hotel,1,142,2017,June,27,2,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,152.0,179.0,0,Transient,79.6,0,0,Canceled,2020-03-03 -Resort Hotel,0,90,2015,July,31,10,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,141.0,179.0,0,Transient-Party,71.55,0,0,Check-Out,2018-12-03 -Resort Hotel,0,12,2017,June,28,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,2,No Deposit,106.0,219.0,0,Transient,113.67,0,0,Check-Out,2020-04-02 -Resort Hotel,0,61,2017,June,27,16,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,F,3,No Deposit,11.0,179.0,0,Transient,239.81,0,1,Check-Out,2020-02-01 -City Hotel,0,38,2017,April,21,17,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.63,0,2,Check-Out,2020-05-03 -Resort Hotel,0,181,2016,July,33,25,4,10,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,194.7,1,0,Check-Out,2019-05-04 -City Hotel,1,159,2016,May,22,9,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,1.0,179.0,0,Transient,109.07,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,February,9,13,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,87.0,0,Transient-Party,63.98,0,0,Check-Out,2019-10-04 -Resort Hotel,0,152,2015,July,32,9,2,3,2,2.0,0,FB,PRT,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,244.0,179.0,0,Transient,197.42,0,2,Check-Out,2018-06-02 -City Hotel,1,42,2016,September,38,31,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,130.53,0,1,Canceled,2018-09-02 -Resort Hotel,0,1,2015,February,9,17,2,5,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,D,2,No Deposit,14.0,179.0,0,Transient,38.73,1,0,Check-Out,2019-03-04 -Resort Hotel,0,13,2017,February,9,13,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,F,0,No Deposit,17.0,179.0,0,Transient,75.17,1,0,Check-Out,2020-02-01 -City Hotel,1,46,2015,September,37,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.88,0,0,Canceled,2018-05-03 -Resort Hotel,0,12,2015,September,38,21,2,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-06-02 -City Hotel,1,54,2016,April,17,3,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,62.73,0,0,Canceled,2018-12-03 -City Hotel,1,163,2017,April,21,25,2,1,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,82.0,179.0,0,Transient,93.73,0,0,Canceled,2020-03-03 -City Hotel,1,15,2016,February,12,29,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,22,Transient,97.98,0,0,No-Show,2019-03-04 -City Hotel,1,189,2016,August,39,31,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,165.7,0,0,Canceled,2019-05-04 -City Hotel,1,90,2016,March,16,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,170.49,0,1,Canceled,2019-08-04 -City Hotel,0,35,2017,August,32,24,1,3,2,1.0,0,SC,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,187.97,0,1,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,May,22,31,1,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,H,0,No Deposit,247.0,179.0,0,Transient,74.61,1,0,Check-Out,2019-03-04 -City Hotel,1,35,2016,June,32,3,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.58,0,0,No-Show,2019-09-03 -City Hotel,0,57,2015,October,45,21,0,2,2,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,3,No Deposit,89.0,179.0,0,Transient-Party,110.55,0,0,Check-Out,2018-09-02 -Resort Hotel,0,240,2016,July,35,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,167.22,0,2,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,March,13,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,223.0,0,Transient,42.84,0,0,Check-Out,2019-04-03 -City Hotel,1,162,2017,November,49,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,65.29,0,0,Canceled,2019-08-04 -City Hotel,0,0,2016,June,44,20,0,1,1,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Group,67.77,0,0,Check-Out,2019-06-03 -City Hotel,1,0,2016,January,3,18,0,3,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.65,0,0,No-Show,2019-11-03 -City Hotel,0,17,2016,October,45,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient,59.58,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2016,August,37,18,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,63.68,0,0,Canceled,2019-08-04 -City Hotel,1,116,2016,April,23,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,86.46,0,0,Canceled,2019-03-04 -City Hotel,1,241,2017,June,33,25,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.97,0,1,Check-Out,2020-05-03 -City Hotel,1,17,2016,December,28,28,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,2,No Deposit,16.0,45.0,0,Transient,64.55,0,0,Canceled,2018-12-03 -City Hotel,1,93,2017,June,26,2,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.64,0,1,Canceled,2019-05-04 -City Hotel,0,2,2017,March,18,10,0,1,2,0.0,0,BB,PRT,Direct,Corporate,1,0,1,D,D,0,No Deposit,13.0,179.0,0,Transient,44.59,0,3,Check-Out,2020-01-04 -Resort Hotel,1,159,2017,May,21,26,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,153.06,0,0,Canceled,2020-02-01 -City Hotel,0,311,2015,September,35,20,2,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,91.04,0,0,Check-Out,2018-08-03 -Resort Hotel,0,17,2016,May,20,2,1,0,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,L,H,1,No Deposit,15.0,179.0,0,Transient,85.95,1,0,Check-Out,2019-05-04 -Resort Hotel,1,230,2017,May,21,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,42.08,0,0,Canceled,2020-04-02 -City Hotel,1,14,2016,November,35,26,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,Refundable,9.0,179.0,0,Transient,72.54,0,0,Canceled,2019-06-03 -City Hotel,1,39,2017,May,16,16,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,99.93,0,1,Canceled,2020-03-03 -Resort Hotel,1,27,2016,May,21,31,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,111.23,0,0,Canceled,2019-02-01 -Resort Hotel,0,4,2017,May,23,5,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,2,No Deposit,202.0,226.0,0,Transient,114.44,0,0,Check-Out,2020-04-02 -City Hotel,0,95,2017,April,16,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,95.18,0,1,Check-Out,2020-02-01 -City Hotel,1,28,2016,January,3,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,66.51,0,0,No-Show,2018-10-03 -City Hotel,1,219,2015,October,45,9,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,68.0,0,2,No-Show,2018-09-02 -City Hotel,0,103,2016,July,31,18,2,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.61,0,2,Check-Out,2019-05-04 -Resort Hotel,0,145,2017,July,32,31,0,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,114.43,0,1,Check-Out,2020-06-02 -City Hotel,0,87,2016,August,31,27,0,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,211.24,0,1,Check-Out,2019-06-03 -City Hotel,0,44,2016,December,53,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,177.0,179.0,0,Transient,74.59,1,0,Check-Out,2018-11-02 -City Hotel,0,71,2017,April,17,14,2,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,90.01,0,2,Check-Out,2020-02-01 -Resort Hotel,1,114,2016,December,51,21,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient,208.76,0,0,Canceled,2018-06-02 -City Hotel,1,335,2016,December,11,16,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,11.0,59.0,0,Transient,63.34,0,0,Canceled,2018-11-02 -City Hotel,0,16,2017,February,9,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,14.0,72.0,0,Transient,63.05,0,0,Check-Out,2020-02-01 -City Hotel,0,91,2016,December,49,15,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,42.84,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2015,December,32,31,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,61.06,0,0,Canceled,2018-06-02 -Resort Hotel,0,151,2017,April,18,7,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,162.0,179.0,0,Contract,72.16,0,2,Check-Out,2020-04-02 -City Hotel,1,3,2017,February,9,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,74.0,0,Transient,32.9,0,0,Canceled,2019-10-04 -City Hotel,1,105,2017,May,22,8,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,74.11,0,0,Canceled,2020-02-01 -Resort Hotel,0,232,2015,September,43,30,2,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Contract,48.31,0,2,Check-Out,2017-10-03 -City Hotel,0,3,2016,August,38,24,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.97,0,2,Check-Out,2019-08-04 -Resort Hotel,1,158,2016,April,16,28,2,5,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient-Party,82.01,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2015,December,50,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,100.26,1,0,Check-Out,2018-12-03 -Resort Hotel,0,13,2016,June,24,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,16.0,75.0,0,Transient,61.2,0,0,Check-Out,2019-03-04 -City Hotel,1,100,2016,March,10,5,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,238.0,179.0,0,Transient,68.54,0,0,Canceled,2020-02-01 -Resort Hotel,1,0,2016,January,10,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,D,0,Non Refund,170.0,179.0,0,Group,74.11,0,0,Canceled,2018-10-03 -City Hotel,1,13,2015,August,39,17,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,145.3,0,0,No-Show,2018-07-03 -City Hotel,0,1,2017,April,16,13,2,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.57,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2015,September,37,16,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Group,78.45,0,0,Check-Out,2018-08-03 -City Hotel,0,40,2016,March,17,23,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,85.71,0,2,Check-Out,2019-02-01 -City Hotel,1,391,2017,May,17,10,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.76,0,0,Canceled,2019-11-03 -Resort Hotel,1,150,2017,September,36,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,239.0,179.0,0,Transient,155.71,0,2,Canceled,2019-07-04 -Resort Hotel,0,1,2016,December,5,31,0,4,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,70.61,0,1,Check-Out,2019-08-04 -City Hotel,1,14,2015,July,48,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,14.0,208.0,0,Transient,121.22,0,0,Canceled,2018-01-03 -City Hotel,1,41,2017,April,17,22,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.4,0,1,Canceled,2020-02-01 -Resort Hotel,1,289,2016,March,16,31,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,43.98,0,0,Canceled,2019-08-04 -City Hotel,1,3,2015,September,10,9,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,D,0,Non Refund,3.0,179.0,0,Transient-Party,74.9,0,0,Canceled,2018-12-03 -City Hotel,0,87,2016,March,16,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient-Party,62.26,0,0,Check-Out,2018-12-03 -City Hotel,0,58,2017,March,12,15,0,2,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Transient-Party,124.92,0,0,Check-Out,2020-04-02 -City Hotel,1,0,2017,February,9,3,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,52.1,0,1,Canceled,2018-11-02 -City Hotel,0,6,2016,February,11,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,72.65,1,0,Check-Out,2019-12-04 -Resort Hotel,0,54,2016,June,28,9,0,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,140.0,179.0,0,Transient-Party,74.71,0,1,Check-Out,2019-06-03 -City Hotel,0,24,2017,May,22,28,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -City Hotel,0,392,2015,September,42,12,0,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.14,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,October,49,8,0,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Transient-Party,69.37,0,0,Check-Out,2019-08-04 -City Hotel,0,15,2016,February,9,13,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,62.27,0,0,Check-Out,2018-12-03 -City Hotel,0,12,2015,October,49,21,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,37.0,179.0,0,Transient-Party,149.15,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,March,19,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,84.0,0,Transient,35.07,0,0,Check-Out,2019-02-01 -Resort Hotel,0,219,2017,August,37,7,2,10,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,198.72,1,1,Check-Out,2020-06-02 -City Hotel,0,46,2016,May,20,15,2,0,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,111.94,0,0,Check-Out,2019-03-04 -Resort Hotel,0,99,2016,April,22,5,1,1,2,0.0,0,FB,ESP,Groups,Corporate,0,0,0,A,C,1,No Deposit,145.0,179.0,0,Transient,61.36,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2016,October,36,31,0,1,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.68,0,1,Check-Out,2019-09-03 -Resort Hotel,0,15,2017,February,12,16,0,3,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient-Party,75.53,0,0,Check-Out,2020-02-01 -City Hotel,1,174,2016,October,43,13,2,5,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.46,0,1,No-Show,2019-09-03 -City Hotel,1,153,2016,April,19,27,2,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,100.37,0,0,Canceled,2019-10-04 -Resort Hotel,1,20,2016,September,43,12,2,6,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,61.81,0,0,Canceled,2019-07-04 -City Hotel,0,38,2017,June,27,30,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.2,0,0,Check-Out,2020-07-03 -City Hotel,0,52,2017,April,17,4,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,118.72,0,0,Check-Out,2020-02-01 -Resort Hotel,1,153,2016,August,39,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,73.06,0,1,Canceled,2018-06-02 -Resort Hotel,0,10,2016,March,9,7,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,42.51,0,1,Check-Out,2019-02-01 -City Hotel,1,17,2017,February,3,20,0,1,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.06,0,0,Canceled,2020-07-03 -City Hotel,0,42,2016,October,42,16,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,202.08,0,1,Check-Out,2019-09-03 -Resort Hotel,0,16,2017,February,11,16,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,61.85,0,0,Check-Out,2020-03-03 -Resort Hotel,0,160,2016,August,45,10,0,3,1,0.0,0,HB,AUT,Online TA,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,88.37,0,0,Check-Out,2019-07-04 -City Hotel,0,369,2017,June,22,3,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,150.12,0,1,Check-Out,2020-07-03 -City Hotel,0,0,2016,March,21,13,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.13,0,0,Check-Out,2019-01-03 -City Hotel,0,84,2015,August,38,17,0,2,2,0.0,0,BB,SWE,Undefined,Undefined,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-07-03 -Resort Hotel,0,25,2016,October,43,25,2,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient-Party,91.47,1,2,Check-Out,2019-08-04 -City Hotel,0,43,2016,July,20,13,2,3,1,0.0,0,BB,AUT,Direct,Direct,0,0,0,G,F,0,No Deposit,13.0,179.0,0,Transient,75.12,0,0,Check-Out,2019-05-04 -City Hotel,1,9,2016,October,44,7,1,1,1,0.0,0,SC,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,94.08,0,0,Canceled,2019-04-03 -Resort Hotel,0,94,2015,November,43,6,2,5,2,0.0,0,BB,SWE,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,89.83,0,0,Check-Out,2018-08-03 -Resort Hotel,1,35,2016,January,8,13,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,244.0,179.0,0,Transient,36.39,0,1,No-Show,2018-10-03 -City Hotel,0,143,2016,September,37,5,0,2,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient-Party,111.18,0,0,Check-Out,2019-04-03 -City Hotel,0,51,2017,January,26,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient-Party,79.0,0,1,Check-Out,2019-11-03 -City Hotel,1,53,2017,August,32,28,2,5,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,239.95,0,1,Canceled,2020-04-02 -Resort Hotel,1,297,2016,July,25,19,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,159.45,0,0,Canceled,2018-12-03 -Resort Hotel,1,2,2016,March,3,9,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,E,0,Non Refund,95.0,179.0,0,Transient,76.43,0,0,Canceled,2018-11-02 -City Hotel,1,249,2015,August,33,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,194.4,0,3,Canceled,2018-06-02 -Resort Hotel,0,2,2016,February,10,18,3,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,29.98,1,2,Check-Out,2019-03-04 -Resort Hotel,1,4,2016,February,10,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,242.0,179.0,0,Transient,43.1,0,0,Canceled,2018-12-03 -City Hotel,1,244,2015,August,35,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.24,0,0,Canceled,2017-11-02 -Resort Hotel,0,18,2017,March,21,30,2,6,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,154.74,1,3,Check-Out,2019-11-03 -City Hotel,1,90,2015,July,36,27,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,77.92,0,0,Canceled,2019-04-03 -Resort Hotel,1,113,2017,April,22,6,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,41.86,0,0,Canceled,2019-02-01 -Resort Hotel,0,316,2016,July,32,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Contract,99.41,0,1,Check-Out,2019-03-04 -City Hotel,0,3,2017,June,4,27,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,101.81,0,1,Check-Out,2020-06-02 -City Hotel,0,42,2017,May,26,27,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,193.73,0,1,Check-Out,2020-07-03 -Resort Hotel,0,49,2015,December,53,24,2,7,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,85.33,0,0,Check-Out,2018-06-02 -Resort Hotel,0,23,2017,July,33,4,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,F,3,No Deposit,16.0,179.0,0,Transient,116.8,0,0,Check-Out,2020-06-02 -City Hotel,0,3,2017,August,36,15,0,1,3,0.0,0,BB,USA,Direct,Corporate,0,0,0,D,D,1,No Deposit,13.0,331.0,0,Transient,94.84,1,0,Check-Out,2020-05-03 -City Hotel,1,51,2016,February,10,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,69.12,0,0,Canceled,2018-10-03 -City Hotel,0,2,2016,January,5,13,0,2,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,45.0,0,Transient,92.25,0,0,Check-Out,2019-01-03 -Resort Hotel,0,46,2015,October,44,9,0,5,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,131.03,0,2,Check-Out,2018-11-02 -City Hotel,0,35,2017,February,3,27,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.52,0,0,Check-Out,2019-11-03 -Resort Hotel,0,54,2016,July,33,27,0,1,2,0.0,0,BB,CN,Online TA,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,201.06,0,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2016,June,27,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,1,No Deposit,98.0,179.0,0,Transient-Party,37.14,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2015,August,33,5,0,1,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,95.84,0,1,Check-Out,2018-06-02 -City Hotel,0,12,2016,January,4,10,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,Non Refund,12.0,331.0,0,Transient,78.5,0,0,Canceled,2018-10-03 -Resort Hotel,0,34,2016,October,43,12,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,322.0,179.0,0,Transient,76.33,0,0,Check-Out,2019-06-03 -Resort Hotel,0,67,2016,October,46,9,0,3,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,331.0,179.0,0,Transient,59.63,0,0,Check-Out,2019-08-04 -Resort Hotel,0,153,2016,August,11,21,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,240.0,179.0,0,Transient,61.69,1,2,Check-Out,2018-12-03 -City Hotel,0,0,2016,November,49,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,75.37,0,1,Check-Out,2019-02-01 -City Hotel,0,47,2015,October,43,5,2,4,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,105.94,0,1,Check-Out,2018-08-03 -City Hotel,1,19,2017,March,9,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.23,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2017,June,19,6,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,A,0,No Deposit,17.0,245.0,0,Transient,108.61,0,0,Check-Out,2019-10-04 -Resort Hotel,1,250,2016,December,50,6,0,5,1,0.0,0,BB,AUT,Corporate,Corporate,1,1,1,E,F,0,No Deposit,14.0,237.0,0,Transient,79.79,1,0,Canceled,2019-09-03 -Resort Hotel,0,10,2016,December,53,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,87.82,1,2,Check-Out,2019-11-03 -Resort Hotel,1,246,2015,December,50,24,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,143.0,179.0,0,Transient-Party,64.56,0,0,Canceled,2018-06-02 -Resort Hotel,1,304,2015,July,33,6,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,E,A,0,No Deposit,237.0,179.0,0,Transient,63.46,0,0,Canceled,2018-06-02 -City Hotel,1,428,2017,June,32,6,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,151.56,0,2,Canceled,2019-11-03 -City Hotel,0,40,2016,May,21,13,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.91,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2016,May,22,30,1,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,160.63,0,0,Canceled,2018-12-03 -City Hotel,1,47,2017,April,27,25,2,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.84,0,0,Canceled,2020-03-03 -City Hotel,1,311,2016,September,45,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,2.0,179.0,0,Transient,117.56,0,0,Canceled,2018-08-03 -Resort Hotel,0,21,2017,April,17,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,117.16,1,1,Check-Out,2020-03-03 -City Hotel,0,80,2015,July,34,6,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,70.0,179.0,61,Transient-Party,112.63,0,0,Check-Out,2018-05-03 -City Hotel,1,1,2017,February,3,13,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Refundable,12.0,179.0,0,Transient,230.93,0,0,Canceled,2019-10-04 -City Hotel,0,28,2016,October,45,21,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,126.78,1,0,Check-Out,2019-10-04 -City Hotel,0,236,2017,June,28,28,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,76.88,0,0,Check-Out,2020-06-02 -City Hotel,1,103,2016,March,14,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.28,0,0,Canceled,2018-11-02 -Resort Hotel,0,287,2017,June,27,14,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,196.8,0,1,Check-Out,2020-07-03 -City Hotel,1,87,2015,October,45,22,2,2,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,122.21,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,January,50,2,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,9.0,179.0,0,Group,61.04,0,1,Check-Out,2018-10-03 -Resort Hotel,0,220,2015,September,43,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.32,0,0,Check-Out,2017-10-03 -City Hotel,0,1,2016,April,20,13,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-05-04 -Resort Hotel,0,242,2017,March,8,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,173.0,179.0,0,Transient,85.82,0,3,Check-Out,2020-03-03 -Resort Hotel,0,178,2015,September,33,20,2,4,2,0.0,0,HB,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.16,0,0,Check-Out,2018-06-02 -Resort Hotel,0,21,2017,January,3,22,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,80.0,0,Transient,32.9,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2017,June,27,19,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,E,E,2,No Deposit,15.0,208.0,0,Transient,104.49,0,0,Check-Out,2020-04-02 -City Hotel,0,15,2017,February,10,18,1,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,78.0,179.0,0,Transient-Party,69.92,0,0,Check-Out,2020-01-04 -Resort Hotel,0,330,2016,May,42,29,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,A,0,No Deposit,248.0,179.0,0,Contract,80.38,0,0,Check-Out,2020-01-04 -City Hotel,0,17,2015,August,38,15,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,A,0,No Deposit,14.0,179.0,0,Transient,211.16,0,0,Check-Out,2018-07-03 -Resort Hotel,0,0,2015,October,41,6,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,I,0,No Deposit,12.0,179.0,0,Transient,0.0,1,0,Check-Out,2018-05-03 -City Hotel,0,22,2016,September,45,21,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,120.84,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2016,October,45,17,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,1,No Deposit,13.0,169.0,0,Transient,93.99,0,0,Check-Out,2019-07-04 -City Hotel,0,89,2015,December,51,2,0,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,60,Transient,136.14,0,1,Check-Out,2018-07-03 -City Hotel,0,0,2016,February,9,5,2,0,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,92.3,0,0,Canceled,2019-02-01 -City Hotel,0,110,2017,July,31,5,1,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.1,0,1,Check-Out,2020-03-03 -Resort Hotel,1,37,2016,March,11,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,240.0,179.0,0,Transient,35.99,0,1,Canceled,2019-01-03 -City Hotel,1,157,2015,August,35,24,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,118.26,0,0,Canceled,2018-06-02 -Resort Hotel,0,5,2017,March,11,27,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,111.31,0,2,Check-Out,2020-02-01 -Resort Hotel,0,270,2017,August,37,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,184.0,179.0,0,Transient,191.33,0,1,Check-Out,2020-06-02 -City Hotel,0,84,2016,February,9,5,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,79.78,0,0,Check-Out,2019-03-04 -City Hotel,1,262,2016,October,42,2,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,129.52,0,0,No-Show,2019-08-04 -City Hotel,0,2,2017,May,42,12,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,331.0,0,Group,63.3,0,0,Check-Out,2019-11-03 -City Hotel,1,327,2016,June,27,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,103.32,0,0,Canceled,2018-07-03 -City Hotel,0,29,2016,October,43,9,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,69.58,0,3,Check-Out,2019-12-04 -Resort Hotel,0,47,2016,March,51,2,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient,45.65,1,2,Check-Out,2019-03-04 -Resort Hotel,0,68,2017,February,19,2,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,315.0,179.0,0,Transient,74.6,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2015,September,36,20,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,117.27,0,0,Check-Out,2018-08-03 -City Hotel,0,157,2017,May,25,17,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,154.69,1,1,Check-Out,2020-03-03 -City Hotel,1,50,2015,December,53,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.52,0,0,Canceled,2018-11-02 -Resort Hotel,0,31,2016,May,24,16,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,66.34,0,0,Check-Out,2019-06-03 -City Hotel,1,84,2016,March,16,29,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,120.74,0,0,Canceled,2018-11-02 -City Hotel,1,280,2016,April,25,20,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,104.67,0,1,Canceled,2019-01-03 -Resort Hotel,0,38,2017,March,12,30,0,3,1,0.0,0,BB,GBR,Groups,Corporate,1,0,0,A,D,0,No Deposit,378.0,223.0,0,Transient-Party,44.73,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2015,October,35,21,0,2,2,0.0,0,BB,,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,78.9,0,1,Check-Out,2018-08-03 -City Hotel,1,7,2016,September,34,18,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.53,0,0,Canceled,2019-09-03 -City Hotel,1,34,2016,March,10,12,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Refundable,8.0,179.0,0,Transient,59.57,0,0,Canceled,2019-01-03 -City Hotel,0,207,2017,October,44,14,2,1,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,75,Transient-Party,86.38,0,0,No-Show,2019-11-03 -City Hotel,0,111,2016,March,16,5,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,90.75,0,2,Check-Out,2019-03-04 -City Hotel,0,39,2016,April,21,8,2,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,81.62,0,0,Check-Out,2019-01-03 -City Hotel,0,68,2017,March,8,9,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.07,0,1,Check-Out,2020-02-01 -Resort Hotel,1,243,2016,October,43,18,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient-Party,74.27,0,0,Canceled,2019-07-04 -City Hotel,1,49,2017,May,20,13,1,1,2,0.0,0,BB,CHN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.78,0,0,Canceled,2019-10-04 -Resort Hotel,0,165,2017,March,16,21,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient-Party,198.09,1,1,Check-Out,2020-02-01 -Resort Hotel,0,51,2015,November,50,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,240.0,179.0,0,Group,41.44,0,1,Check-Out,2018-08-03 -City Hotel,1,51,2017,June,18,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,60.22,0,0,Canceled,2019-11-03 -City Hotel,0,279,2015,September,41,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient-Party,111.18,0,0,Check-Out,2018-07-03 -City Hotel,1,92,2016,October,45,10,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,86.26,0,0,No-Show,2019-09-03 -City Hotel,0,256,2017,April,21,18,1,1,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,271.0,179.0,0,Transient,211.35,0,0,Check-Out,2020-03-03 -City Hotel,1,370,2016,October,46,15,1,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,126.7,0,0,Canceled,2019-03-04 -City Hotel,0,100,2017,July,26,15,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,10.0,179.0,0,Transient-Party,129.4,0,3,Check-Out,2020-06-02 -City Hotel,0,98,2015,August,32,13,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.76,0,2,Check-Out,2020-06-02 -City Hotel,1,365,2016,May,26,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,60,Transient,61.54,0,0,Canceled,2018-09-02 -City Hotel,1,40,2017,July,23,5,0,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,126.36,0,0,Canceled,2020-06-02 -Resort Hotel,1,12,2015,August,38,17,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,162.0,179.0,0,Transient,33.22,0,0,Canceled,2018-06-02 -City Hotel,1,106,2017,June,36,27,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.22,0,0,Canceled,2020-06-02 -City Hotel,0,4,2017,June,21,9,0,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,143.19,0,0,Check-Out,2019-12-04 -City Hotel,0,6,2016,October,42,30,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,118.3,0,0,Check-Out,2019-05-04 -Resort Hotel,1,12,2017,March,18,24,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,121.9,0,0,Canceled,2020-03-03 -Resort Hotel,0,40,2016,December,52,23,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,122.64,0,2,Check-Out,2019-10-04 -City Hotel,0,9,2016,December,53,29,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,121.07,1,0,Check-Out,2019-12-04 -City Hotel,0,16,2015,September,43,12,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,83.0,179.0,0,Contract,33.82,0,0,No-Show,2018-08-03 -Resort Hotel,0,2,2015,July,25,19,1,0,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,306.0,179.0,0,Transient-Party,107.7,0,0,Check-Out,2019-03-04 -City Hotel,0,8,2016,October,21,3,2,3,1,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,2,No Deposit,13.0,179.0,0,Transient,94.42,0,2,Check-Out,2019-02-01 -City Hotel,1,42,2016,January,4,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,42,Transient,67.79,0,0,Canceled,2018-09-02 -Resort Hotel,0,263,2017,June,34,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,212.0,179.0,0,Transient,76.48,0,1,Check-Out,2020-07-03 -Resort Hotel,0,94,2017,July,28,23,0,4,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,328.0,179.0,0,Transient,96.47,1,0,Check-Out,2020-07-03 -Resort Hotel,1,29,2015,July,32,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,G,G,0,No Deposit,238.0,179.0,0,Transient,156.46,0,0,Canceled,2018-06-02 -City Hotel,1,35,2016,May,42,2,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,148.08,0,1,Canceled,2019-01-03 -City Hotel,1,245,2016,October,44,26,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,74.23,0,0,No-Show,2019-09-03 -City Hotel,1,61,2017,May,22,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,172.76,0,0,Canceled,2020-03-03 -Resort Hotel,0,251,2015,October,42,27,1,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Contract,42.64,0,0,Check-Out,2018-08-03 -Resort Hotel,0,40,2017,March,20,9,0,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,180.0,179.0,0,Transient-Party,89.33,0,0,Check-Out,2020-01-04 -City Hotel,0,94,2017,March,12,24,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,167.23,0,3,Check-Out,2019-12-04 -City Hotel,0,95,2016,June,31,12,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,134.74,0,2,Check-Out,2019-04-03 -City Hotel,0,0,2016,April,16,26,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,39.01,0,1,Check-Out,2019-01-03 -Resort Hotel,1,52,2016,February,7,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,61.23,0,0,Canceled,2018-09-02 -City Hotel,0,5,2017,May,20,6,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,331.0,0,Transient,62.18,0,1,Check-Out,2020-03-03 -Resort Hotel,0,269,2016,June,42,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,44.72,0,0,Check-Out,2019-04-03 -Resort Hotel,0,245,2017,February,9,14,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,73.54,0,3,Check-Out,2020-03-03 -Resort Hotel,0,36,2016,October,45,29,1,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.81,0,0,Check-Out,2019-09-03 -City Hotel,0,21,2017,June,31,25,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.43,0,2,Check-Out,2020-07-03 -Resort Hotel,0,148,2016,December,51,28,1,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient,98.05,0,0,Check-Out,2019-10-04 -City Hotel,0,47,2015,October,42,21,0,3,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,91.99,0,3,Check-Out,2018-08-03 -City Hotel,1,1,2017,May,25,24,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,76.42,0,0,Canceled,2019-12-04 -City Hotel,1,89,2016,July,34,17,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,88.42,0,0,Canceled,2018-08-03 -Resort Hotel,1,50,2016,March,10,13,0,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,83.16,0,0,Canceled,2018-11-02 -City Hotel,0,306,2016,October,45,27,1,4,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,67.69,0,0,Check-Out,2019-08-04 -Resort Hotel,0,19,2017,November,3,29,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,88.0,0,2,Check-Out,2019-12-04 -Resort Hotel,0,28,2016,August,31,6,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-05-04 -Resort Hotel,1,17,2016,February,8,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,38.67,0,0,No-Show,2019-01-03 -Resort Hotel,1,43,2016,February,53,28,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,181.0,179.0,0,Transient,84.53,0,0,Canceled,2018-12-03 -City Hotel,1,9,2015,July,34,9,0,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,G,0,Non Refund,13.0,179.0,0,Transient,91.22,0,0,Canceled,2018-05-03 -Resort Hotel,0,92,2015,October,43,4,1,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,38.0,179.0,0,Transient,68.41,0,0,Check-Out,2018-09-02 -Resort Hotel,0,18,2016,October,42,9,2,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,106.79,0,0,Check-Out,2019-08-04 -Resort Hotel,0,52,2017,March,9,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,156.82,1,3,Check-Out,2020-02-01 -City Hotel,0,240,2017,May,27,30,2,0,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,87.0,179.0,0,Group,0.0,0,0,Check-Out,2020-04-02 -City Hotel,0,160,2017,August,9,10,0,3,2,0.0,0,SC,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,81.68,0,0,Canceled,2020-06-02 -City Hotel,1,60,2017,April,18,31,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,7.0,179.0,0,Transient,143.07,0,1,Canceled,2020-02-01 -City Hotel,0,247,2016,June,25,27,0,1,1,0.0,0,BB,BRA,Online TA,GDS,0,0,0,A,A,2,No Deposit,167.0,179.0,0,Transient,131.2,0,0,Check-Out,2019-06-03 -City Hotel,1,34,2017,May,21,28,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.24,0,0,Canceled,2019-11-03 -City Hotel,0,16,2017,July,34,9,2,2,2,1.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,119.82,0,0,Check-Out,2020-04-02 -City Hotel,0,98,2015,September,40,15,4,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,76.26,0,0,Check-Out,2018-08-03 -Resort Hotel,0,219,2016,January,27,2,0,1,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,41.3,0,0,Check-Out,2018-11-02 -City Hotel,1,0,2016,December,50,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,0.53,0,0,Canceled,2019-10-04 -City Hotel,0,12,2017,June,27,30,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,121.72,0,1,Check-Out,2020-04-02 -Resort Hotel,0,20,2017,June,26,19,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,89.25,0,0,Check-Out,2020-02-01 -Resort Hotel,0,144,2017,February,10,6,2,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,78.37,0,1,Check-Out,2020-03-03 -City Hotel,0,1,2015,November,42,8,0,1,1,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,132.12,0,2,Check-Out,2018-09-02 -City Hotel,0,0,2017,February,44,12,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,16.0,289.0,0,Transient,2.72,0,0,Check-Out,2019-12-04 -Resort Hotel,0,43,2015,November,50,22,0,7,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,71.86,1,0,Check-Out,2018-09-02 -City Hotel,0,82,2016,June,21,16,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,112.78,1,1,Check-Out,2019-04-03 -City Hotel,0,14,2016,November,42,30,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,105.75,0,0,Check-Out,2019-05-04 -Resort Hotel,0,15,2017,July,32,24,1,2,1,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,178.0,179.0,0,Transient-Party,152.83,0,0,Check-Out,2020-06-02 -Resort Hotel,0,193,2017,October,22,9,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,193.11,0,0,Check-Out,2019-11-03 -City Hotel,0,53,2016,March,9,8,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.91,0,2,Check-Out,2019-12-04 -City Hotel,1,282,2016,May,21,26,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,162.41,0,0,Canceled,2019-02-01 -City Hotel,0,205,2016,June,43,13,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.05,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2016,June,20,13,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,0,No Deposit,13.0,45.0,0,Transient,0.0,0,3,Check-Out,2019-04-03 -City Hotel,0,41,2017,May,22,9,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.69,0,1,Check-Out,2020-05-03 -City Hotel,0,86,2016,April,15,21,2,3,3,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,93.86,0,2,Check-Out,2019-02-01 -City Hotel,1,415,2015,September,34,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.51,0,0,Canceled,2018-08-03 -Resort Hotel,0,22,2016,August,44,31,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Contract,197.61,0,1,Check-Out,2019-06-03 -Resort Hotel,0,254,2015,October,41,12,3,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Contract,102.58,0,0,Check-Out,2018-07-03 -City Hotel,0,33,2015,October,43,6,1,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,66.06,0,1,Check-Out,2018-09-02 -City Hotel,0,333,2017,June,28,15,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,81.37,0,1,Check-Out,2020-06-02 -City Hotel,0,10,2017,December,16,9,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.33,0,1,Check-Out,2019-11-03 -City Hotel,0,260,2017,August,33,30,2,3,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,135.02,0,2,Check-Out,2020-06-02 -City Hotel,1,41,2017,May,22,16,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,106.02,0,0,Canceled,2020-03-03 -Resort Hotel,1,124,2015,November,51,9,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,60.6,0,0,Canceled,2018-08-03 -City Hotel,0,19,2016,October,44,30,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,78.79,0,1,Check-Out,2019-07-04 -City Hotel,0,197,2017,June,28,28,0,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,165.0,179.0,0,Transient,212.1,0,0,Check-Out,2020-06-02 -City Hotel,1,14,2016,August,28,2,0,1,1,0.0,0,BB,PRT,Undefined,TA/TO,1,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,60.28,0,1,Canceled,2018-12-03 -Resort Hotel,0,0,2017,February,11,31,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,377.0,179.0,0,Transient,61.79,0,0,Check-Out,2019-09-03 -City Hotel,1,28,2016,March,19,9,2,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,70.74,0,2,Canceled,2019-02-01 -City Hotel,0,0,2015,February,8,11,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,39.0,179.0,0,Group,75.45,0,0,Check-Out,2018-10-03 -City Hotel,0,51,2016,April,17,27,2,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,116.63,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,December,4,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,G,D,0,No Deposit,14.0,79.0,0,Transient,63.57,0,0,Check-Out,2019-10-04 -City Hotel,0,45,2016,October,53,13,2,5,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,79.44,0,0,Check-Out,2019-08-04 -City Hotel,1,13,2017,August,32,21,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,63.22,0,0,Canceled,2020-04-02 -Resort Hotel,1,15,2017,February,9,20,2,7,2,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,63.58,0,0,Canceled,2020-04-02 -Resort Hotel,0,11,2017,November,3,27,1,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-11-03 -City Hotel,0,98,2016,June,44,15,2,4,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,97.12,0,0,Check-Out,2019-05-04 -Resort Hotel,0,48,2015,August,43,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,47.47,0,2,Check-Out,2018-08-03 -City Hotel,1,63,2016,October,44,28,1,3,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.79,0,0,Canceled,2019-09-03 -City Hotel,1,44,2016,May,27,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.11,0,0,Canceled,2019-02-01 -City Hotel,1,73,2016,June,16,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,102.13,0,0,Canceled,2018-10-03 -City Hotel,0,4,2017,August,35,21,3,0,2,0.0,0,BB,GBR,Direct,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,90.83,0,0,Check-Out,2020-06-02 -City Hotel,1,53,2017,May,22,31,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,155.41,0,0,Canceled,2020-03-03 -City Hotel,0,16,2017,March,17,27,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,70.43,0,0,Check-Out,2019-10-04 -Resort Hotel,0,47,2017,March,10,13,1,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,199.75,1,0,Check-Out,2020-03-03 -City Hotel,1,35,2017,April,22,27,1,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,88.65,0,0,Canceled,2020-03-03 -City Hotel,1,0,2016,November,34,18,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,238.0,0,Transient,146.49,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,November,17,9,1,0,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,I,0,No Deposit,242.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-12-03 -City Hotel,1,51,2017,March,8,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,75.65,0,0,Canceled,2019-10-04 -City Hotel,0,181,2017,June,36,27,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,124.22,0,1,Check-Out,2020-06-02 -City Hotel,1,86,2015,July,35,26,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,124.29,0,1,Canceled,2018-11-02 -Resort Hotel,0,2,2016,January,42,27,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,73.29,0,0,Check-Out,2019-08-04 -City Hotel,0,343,2016,November,53,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient,104.78,0,0,Canceled,2019-10-04 -City Hotel,1,338,2015,October,30,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.69,0,0,Canceled,2017-10-03 -City Hotel,1,16,2016,June,28,20,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient,122.64,0,2,Canceled,2019-04-03 -City Hotel,0,13,2016,November,51,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,59.6,0,0,Check-Out,2019-11-03 -City Hotel,0,50,2016,December,37,5,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient,68.32,0,1,Check-Out,2019-12-04 -Resort Hotel,1,9,2016,January,3,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient,34.41,0,0,Canceled,2019-03-04 -Resort Hotel,0,312,2017,September,35,16,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Contract,36.22,0,1,Canceled,2017-12-03 -Resort Hotel,0,262,2016,March,10,13,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,No Deposit,201.0,179.0,0,Transient,75.78,0,0,Check-Out,2019-03-04 -City Hotel,0,66,2015,September,45,30,0,1,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,82.11,0,0,Check-Out,2018-08-03 -Resort Hotel,1,277,2016,November,18,29,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,42,Transient,62.55,0,0,Canceled,2019-03-04 -City Hotel,1,27,2016,October,45,10,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,124.13,0,1,Canceled,2019-05-04 -City Hotel,0,308,2016,July,30,30,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,116.9,0,2,Check-Out,2018-06-02 -City Hotel,1,342,2017,June,22,27,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,85.09,0,0,Canceled,2020-04-02 -Resort Hotel,1,192,2016,October,43,24,1,4,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,150.4,0,3,Check-Out,2019-08-04 -Resort Hotel,0,211,2017,June,26,24,1,3,2,2.0,0,BB,IRL,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,141.97,0,0,Check-Out,2019-10-04 -City Hotel,0,15,2016,January,3,30,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,97.95,0,0,Check-Out,2018-10-03 -City Hotel,0,3,2017,January,2,29,1,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,109.65,1,0,Check-Out,2019-10-04 -City Hotel,1,149,2017,February,18,24,0,1,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.95,0,1,Canceled,2019-11-03 -City Hotel,1,6,2017,January,28,28,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,146.91,0,0,No-Show,2018-09-02 -Resort Hotel,0,40,2016,October,43,13,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient,42.03,1,0,Check-Out,2019-09-03 -City Hotel,0,26,2016,May,21,27,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,91.37,0,0,Check-Out,2019-02-01 -Resort Hotel,1,101,2016,June,26,15,1,0,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,83.35,0,1,Canceled,2019-02-01 -Resort Hotel,1,70,2017,March,20,27,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,65.78,1,0,Canceled,2019-10-04 -Resort Hotel,0,256,2017,July,26,27,2,0,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,234.0,0,Transient-Party,74.55,0,0,Check-Out,2020-06-02 -City Hotel,0,81,2016,August,33,13,2,4,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,191.96,0,2,Check-Out,2019-06-03 -Resort Hotel,1,33,2015,October,43,8,2,0,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,85.68,0,0,Canceled,2018-05-03 -City Hotel,0,41,2016,September,36,13,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,122.55,0,1,Check-Out,2019-05-04 -Resort Hotel,1,237,2016,August,36,17,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient,52.7,0,0,Canceled,2018-12-03 -City Hotel,1,12,2016,February,8,20,2,2,3,0.0,0,Undefined,BRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.67,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,June,27,21,0,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,H,H,0,No Deposit,17.0,179.0,0,Transient,167.78,0,0,Check-Out,2020-04-02 -City Hotel,0,8,2017,June,21,20,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.37,0,2,Check-Out,2020-05-03 -Resort Hotel,0,74,2015,October,43,9,0,7,2,0.0,0,HB,DEU,Online TA,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,83.25,0,0,Check-Out,2019-08-04 -Resort Hotel,0,2,2016,April,16,4,4,6,3,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,331.0,0,Transient,106.72,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,February,10,15,1,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,33.11,0,0,Check-Out,2020-02-01 -City Hotel,0,37,2016,December,53,6,0,1,2,0.0,0,HB,BRA,Groups,TA/TO,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient-Party,59.01,1,0,Check-Out,2019-09-03 -City Hotel,1,53,2017,February,10,28,0,2,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.84,0,0,Canceled,2019-11-03 -City Hotel,0,232,2017,August,35,21,1,4,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient-Party,97.8,0,0,Check-Out,2019-12-04 -Resort Hotel,1,45,2017,July,32,21,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,114.72,0,0,Canceled,2020-03-03 -Resort Hotel,1,57,2017,November,52,6,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,156.3,0,2,Canceled,2019-10-04 -Resort Hotel,1,258,2017,August,34,17,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,198.2,0,1,Canceled,2019-09-03 -City Hotel,1,8,2016,October,46,21,1,0,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,165.0,0,Transient,108.28,0,0,Canceled,2019-12-04 -City Hotel,0,16,2017,March,17,21,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,9.0,179.0,0,Transient,131.23,0,1,Check-Out,2020-04-02 -City Hotel,0,41,2017,June,31,26,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,167.15,0,2,Check-Out,2019-03-04 -City Hotel,1,32,2017,May,30,6,2,5,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient,103.98,0,0,Canceled,2020-03-03 -City Hotel,0,157,2017,June,27,30,1,5,2,0.0,0,BB,ISR,Online TA,Direct,0,0,0,A,C,3,No Deposit,11.0,179.0,0,Transient,152.73,0,3,Check-Out,2020-06-02 -City Hotel,0,34,2016,November,13,24,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,63.25,0,1,Check-Out,2018-12-03 -City Hotel,0,1,2016,June,27,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,222.0,0,Transient,63.19,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2016,December,53,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,60.66,0,0,Check-Out,2018-11-02 -Resort Hotel,0,175,2017,August,35,6,3,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,244.0,179.0,0,Transient,201.34,0,2,Check-Out,2020-06-02 -City Hotel,1,328,2015,October,45,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.61,0,0,Canceled,2018-08-03 -City Hotel,1,60,2015,October,46,31,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,27.98,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2015,September,41,5,1,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,D,D,0,No Deposit,16.0,235.0,0,Transient,93.63,0,1,Check-Out,2018-05-03 -City Hotel,0,63,2017,April,22,4,0,5,1,1.0,0,BB,IRL,Direct,Direct,0,0,0,F,E,1,No Deposit,14.0,179.0,0,Transient,124.66,1,0,Check-Out,2020-03-03 -City Hotel,1,30,2016,July,33,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,191.1,0,0,Canceled,2019-05-04 -Resort Hotel,1,265,2017,June,25,18,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,A,0,Non Refund,182.0,179.0,0,Transient,95.26,0,0,Canceled,2020-03-03 -City Hotel,1,75,2016,October,46,24,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,69.48,0,1,No-Show,2019-09-03 -City Hotel,0,30,2016,January,3,29,0,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.39,0,0,Check-Out,2019-09-03 -Resort Hotel,1,15,2016,February,11,9,1,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,85.16,0,0,Canceled,2019-05-04 -City Hotel,0,11,2016,September,44,25,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,114.23,0,2,Check-Out,2019-06-03 -City Hotel,0,4,2017,June,14,14,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,125.17,0,1,Check-Out,2020-03-03 -City Hotel,1,54,2016,October,36,23,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.84,0,2,Canceled,2019-08-04 -City Hotel,0,48,2017,April,22,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,24.0,179.0,75,Transient,119.27,0,0,Check-Out,2019-01-03 -City Hotel,0,94,2016,June,20,12,1,10,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient-Party,76.24,0,0,Check-Out,2019-03-04 -Resort Hotel,1,21,2015,August,35,10,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,G,G,0,No Deposit,10.0,179.0,0,Transient,65.9,0,0,Canceled,2018-05-03 -City Hotel,1,18,2017,July,29,17,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.35,0,2,Canceled,2020-03-03 -Resort Hotel,0,1,2017,June,26,21,1,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,100.68,0,0,Check-Out,2020-03-03 -Resort Hotel,0,44,2016,October,34,6,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,336.0,179.0,0,Transient-Party,47.12,0,0,Check-Out,2019-09-03 -City Hotel,0,144,2017,July,43,12,0,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,76.13,0,0,Check-Out,2019-12-04 -City Hotel,1,5,2016,December,11,27,2,1,2,0.0,0,BB,,Online TA,TA/TO,1,1,0,A,F,0,No Deposit,7.0,179.0,0,Group,79.07,0,0,Canceled,2019-09-03 -Resort Hotel,1,64,2015,December,51,30,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,40.05,0,0,Canceled,2018-11-02 -Resort Hotel,1,0,2016,July,33,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,14.0,179.0,0,Transient,84.78,0,0,No-Show,2018-11-02 -City Hotel,0,41,2017,May,22,28,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.19,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,March,9,27,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,69.53,0,0,Check-Out,2020-01-04 -Resort Hotel,0,3,2015,December,50,5,1,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,34.17,0,0,Check-Out,2018-11-02 -Resort Hotel,0,40,2015,September,38,28,0,3,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,197.21,0,2,Check-Out,2018-11-02 -City Hotel,0,6,2015,October,44,27,0,3,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,74.32,0,0,Check-Out,2018-08-03 -Resort Hotel,0,22,2015,October,46,30,1,1,1,0.0,0,BB,CN,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,223.0,0,Transient,36.58,1,0,Check-Out,2018-09-02 -Resort Hotel,0,162,2017,January,2,15,0,7,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,65.0,0,Transient,66.2,0,0,Check-Out,2020-02-01 -City Hotel,1,97,2015,July,32,10,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.05,0,0,Canceled,2018-05-03 -City Hotel,0,6,2016,December,49,12,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,15.0,255.0,0,Transient,2.49,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2015,July,31,2,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,46.11,0,2,Check-Out,2018-05-03 -City Hotel,0,96,2015,July,37,14,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,157.18,0,0,Canceled,2018-05-03 -City Hotel,1,63,2016,April,16,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,61.52,0,0,Canceled,2018-01-03 -City Hotel,0,40,2016,June,27,16,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,128.72,0,3,Check-Out,2019-03-04 -City Hotel,1,317,2015,October,43,15,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,85.15,0,0,Canceled,2018-06-02 -City Hotel,1,11,2016,February,12,15,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,11.0,179.0,75,Transient,61.26,0,0,Canceled,2018-12-03 -Resort Hotel,0,22,2015,October,42,5,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,126.57,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,June,22,28,0,2,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,G,1,No Deposit,12.0,179.0,0,Transient,127.45,0,0,Check-Out,2019-02-01 -Resort Hotel,0,20,2016,April,22,3,3,6,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,12.0,179.0,75,Transient-Party,64.42,1,1,Check-Out,2019-08-04 -City Hotel,0,100,2016,October,44,15,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,82.16,0,1,Check-Out,2019-07-04 -City Hotel,0,238,2015,July,33,10,0,2,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.69,0,0,Canceled,2018-05-03 -City Hotel,1,97,2016,May,33,6,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,B,0,No Deposit,10.0,179.0,0,Transient,152.29,0,0,Canceled,2019-02-01 -City Hotel,1,95,2016,November,45,24,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.3,0,0,Canceled,2019-07-04 -City Hotel,1,162,2016,April,16,31,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,61,Transient,131.8,0,0,Canceled,2019-02-01 -Resort Hotel,0,104,2017,March,19,11,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,65.88,1,1,Check-Out,2020-04-02 -City Hotel,1,0,2016,October,44,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.03,0,1,No-Show,2019-10-04 -Resort Hotel,0,286,2016,October,43,29,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,4.0,179.0,0,Contract,63.78,0,1,Check-Out,2018-08-03 -City Hotel,1,179,2016,October,37,12,1,2,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.5,0,2,Canceled,2018-08-03 -Resort Hotel,0,0,2017,February,10,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,87.0,0,Transient-Party,72.13,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2017,July,37,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,222.93,1,1,Check-Out,2020-07-03 -City Hotel,0,10,2016,December,52,15,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,61.87,0,1,Check-Out,2019-09-03 -City Hotel,0,12,2016,April,20,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.54,0,0,Check-Out,2019-05-04 -City Hotel,0,8,2016,February,11,28,1,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.09,0,2,Check-Out,2019-10-04 -City Hotel,0,147,2016,March,4,18,0,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,73.2,0,3,Check-Out,2019-11-03 -City Hotel,0,10,2016,September,38,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,86.63,0,2,Check-Out,2019-09-03 -City Hotel,1,46,2016,March,16,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,96.44,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2016,March,50,14,0,1,3,0.0,0,HB,PRT,Direct,Direct,1,0,0,F,I,1,No Deposit,249.0,179.0,0,Transient,1.48,1,2,Check-Out,2019-05-04 -Resort Hotel,0,154,2017,May,22,5,0,1,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,2,No Deposit,39.0,179.0,0,Transient-Party,42.18,0,0,Check-Out,2020-03-03 -Resort Hotel,0,87,2017,May,22,22,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,62.55,0,0,Check-Out,2020-04-02 -Resort Hotel,0,53,2015,November,49,31,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient-Party,64.95,1,2,Check-Out,2018-06-02 -City Hotel,0,150,2016,July,31,2,2,6,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,157.1,0,2,Check-Out,2019-03-04 -City Hotel,1,313,2016,October,44,30,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,100.4,0,0,Canceled,2019-05-04 -City Hotel,0,3,2017,May,22,15,0,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,128.68,0,1,Check-Out,2020-03-03 -City Hotel,0,53,2016,March,14,10,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,116.33,0,1,Check-Out,2020-02-01 -City Hotel,1,11,2017,February,9,17,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,170.0,76.0,0,Transient,41.73,0,0,Canceled,2019-09-03 -City Hotel,0,99,2015,September,33,8,0,2,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,176.0,179.0,0,Transient-Party,141.3,0,0,Check-Out,2018-08-03 -City Hotel,1,45,2017,February,7,22,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,8.0,179.0,0,Transient,88.32,0,0,Canceled,2020-01-04 -Resort Hotel,0,144,2016,July,34,30,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,136.0,179.0,0,Transient-Party,115.81,0,0,Check-Out,2018-11-02 -City Hotel,1,246,2016,July,26,27,2,5,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.4,0,0,Canceled,2019-05-04 -Resort Hotel,0,31,2016,July,35,16,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,137.92,1,2,Check-Out,2019-05-04 -City Hotel,0,44,2016,March,17,9,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.1,0,0,Check-Out,2019-02-01 -City Hotel,1,17,2016,December,53,29,0,1,3,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,131.25,0,0,Canceled,2019-12-04 -City Hotel,0,113,2015,December,49,8,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,82.95,0,0,Check-Out,2018-11-02 -Resort Hotel,0,44,2016,September,43,24,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,94.63,0,2,Check-Out,2019-04-03 -Resort Hotel,0,15,2017,June,20,25,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,105.21,1,0,Check-Out,2019-12-04 -City Hotel,0,111,2017,July,34,10,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,208.38,0,1,Canceled,2019-06-03 -City Hotel,0,0,2016,March,25,13,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,75.05,0,0,Check-Out,2019-02-01 -City Hotel,1,47,2016,October,45,20,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.03,0,1,Canceled,2019-12-04 -City Hotel,1,49,2017,May,22,16,1,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.44,0,1,Canceled,2020-01-04 -City Hotel,0,160,2015,December,49,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,184.0,179.0,40,Transient,91.52,0,0,Check-Out,2018-12-03 -City Hotel,0,139,2017,June,26,15,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,69.65,0,0,Check-Out,2020-06-02 -Resort Hotel,0,17,2016,August,17,30,0,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,244.9,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2015,August,45,28,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.46,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2016,May,41,14,1,10,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,2.8,1,0,Check-Out,2019-08-04 -City Hotel,0,4,2017,March,5,11,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,89.13,0,1,Check-Out,2019-12-04 -City Hotel,0,2,2016,November,53,21,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,17.0,195.0,0,Transient,62.3,0,0,Check-Out,2019-09-03 -Resort Hotel,0,3,2016,February,16,24,1,0,1,0.0,0,BB,IRL,Online TA,TA/TO,1,0,0,A,I,2,No Deposit,243.0,179.0,0,Transient,40.03,0,0,Check-Out,2019-10-04 -Resort Hotel,0,19,2016,April,18,27,1,4,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,252.0,1,3,Check-Out,2020-03-03 -Resort Hotel,0,91,2015,August,35,10,2,3,2,1.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,92.1,0,0,Check-Out,2018-07-03 -Resort Hotel,0,40,2015,October,44,31,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,24.18,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2017,August,35,6,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,225.1,0,3,Check-Out,2020-07-03 -Resort Hotel,1,38,2017,January,2,28,2,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,214.22,0,0,Canceled,2019-08-04 -City Hotel,0,296,2016,September,27,21,1,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.48,0,1,Check-Out,2019-05-04 -City Hotel,0,33,2016,December,50,16,1,4,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.18,0,3,Check-Out,2019-11-03 -City Hotel,0,39,2016,August,38,17,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,126.02,0,1,Check-Out,2019-06-03 -City Hotel,1,39,2016,June,31,5,2,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.91,0,0,Canceled,2018-12-03 -Resort Hotel,0,298,2016,August,35,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,122.62,0,1,Check-Out,2019-07-04 -Resort Hotel,0,24,2017,February,11,31,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,76.5,0,0,Check-Out,2019-10-04 -City Hotel,0,36,2016,March,12,2,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,39.05,0,2,Check-Out,2019-03-04 -City Hotel,0,53,2015,November,43,9,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,68.0,179.0,0,Group,123.89,0,1,Check-Out,2018-08-03 -City Hotel,1,15,2016,July,38,23,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,102.09,0,0,No-Show,2019-03-04 -Resort Hotel,0,48,2016,March,17,28,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,128.27,0,0,Check-Out,2019-03-04 -Resort Hotel,0,247,2017,July,18,7,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,337.0,179.0,0,Transient-Party,107.19,0,0,Check-Out,2020-06-02 -City Hotel,0,11,2016,November,53,4,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,10.0,179.0,0,Transient,120.39,0,3,Check-Out,2019-08-04 -Resort Hotel,0,31,2016,May,22,23,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,1,0,0,A,I,0,No Deposit,240.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -City Hotel,1,0,2016,December,47,5,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,14.0,274.0,0,Transient,2.02,0,0,Canceled,2020-01-04 -City Hotel,1,305,2016,July,26,16,2,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,168.0,179.0,0,Transient-Party,124.48,0,0,Canceled,2019-05-04 -City Hotel,1,164,2017,May,21,15,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,231.45,0,1,Canceled,2020-01-04 -Resort Hotel,0,0,2016,June,10,31,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,90.0,179.0,0,Group,177.18,0,1,Check-Out,2020-02-01 -City Hotel,1,125,2015,September,44,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,72.93,0,0,Canceled,2018-08-03 -Resort Hotel,1,208,2016,August,35,31,1,2,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,95.03,0,0,Canceled,2019-06-03 -Resort Hotel,1,51,2015,December,38,21,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,47.47,0,0,Canceled,2018-08-03 -Resort Hotel,0,178,2016,May,17,16,0,1,1,0.0,0,HB,ITA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,62.0,0,Transient-Party,51.02,0,0,Check-Out,2019-04-03 -Resort Hotel,0,45,2017,March,11,13,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,84.42,0,0,Check-Out,2020-02-01 -Resort Hotel,1,376,2017,May,21,21,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Non Refund,242.0,179.0,0,Transient,69.28,0,0,Canceled,2019-09-03 -Resort Hotel,0,1,2016,August,17,31,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,224.0,0,Transient-Party,63.04,0,0,Check-Out,2019-07-04 -Resort Hotel,0,91,2015,July,32,16,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,62.83,0,0,Check-Out,2018-07-03 -City Hotel,1,406,2016,March,17,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.41,0,0,Canceled,2018-12-03 -City Hotel,0,41,2016,September,17,23,2,4,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,90.0,179.0,0,Transient-Party,60.41,0,0,Check-Out,2019-06-03 -City Hotel,1,32,2016,January,3,13,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,97.6,0,3,Canceled,2019-10-04 -City Hotel,0,21,2015,December,51,3,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,59.6,0,0,Check-Out,2018-08-03 -City Hotel,1,14,2015,September,35,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient-Party,80.49,0,0,Canceled,2018-07-03 -Resort Hotel,0,53,2016,September,43,30,1,0,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,217.15,1,1,Check-Out,2019-08-04 -Resort Hotel,0,1,2015,September,41,21,1,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,125.6,0,0,No-Show,2018-06-02 -City Hotel,1,103,2017,April,28,9,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,F,2,Non Refund,14.0,179.0,0,Transient,63.54,0,0,Canceled,2019-02-01 -City Hotel,0,24,2015,October,45,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,3.0,65.0,0,Transient-Party,62.82,0,0,Check-Out,2018-09-02 -Resort Hotel,0,285,2016,July,36,7,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,61.44,0,0,Check-Out,2019-06-03 -Resort Hotel,1,107,2016,December,21,30,0,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,217.61,0,0,Canceled,2019-02-01 -City Hotel,0,29,2017,May,20,6,1,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.03,0,1,Check-Out,2019-11-03 -City Hotel,1,253,2016,October,51,21,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,78.76,0,0,Canceled,2019-09-03 -Resort Hotel,1,56,2016,October,35,6,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.15,0,2,Canceled,2019-07-04 -Resort Hotel,0,2,2015,October,50,8,1,1,1,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient-Party,47.09,0,0,Check-Out,2018-08-03 -City Hotel,1,106,2016,February,21,2,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.14,0,0,No-Show,2018-01-31 -Resort Hotel,0,11,2016,August,39,11,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,153.91,0,2,Check-Out,2018-04-02 -Resort Hotel,0,213,2016,October,42,10,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-07-04 -City Hotel,0,95,2016,October,46,2,0,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,136.15,0,0,Check-Out,2019-12-04 -Resort Hotel,0,93,2016,April,21,25,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,130.0,179.0,0,Transient,40.32,0,1,Check-Out,2019-02-01 -Resort Hotel,0,36,2016,August,38,3,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,197.98,0,2,Check-Out,2019-05-04 -Resort Hotel,0,156,2016,June,25,31,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,75.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,14,2016,January,11,29,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,E,E,0,No Deposit,42.0,179.0,0,Transient,82.13,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2017,May,19,6,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.64,0,1,Check-Out,2020-02-01 -City Hotel,0,256,2017,July,31,30,0,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.48,0,1,Check-Out,2020-05-03 -City Hotel,1,272,2017,July,27,28,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,94.71,0,2,Canceled,2020-04-02 -Resort Hotel,0,201,2016,October,42,27,0,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,281.0,179.0,0,Transient-Party,97.89,0,0,Check-Out,2018-08-03 -Resort Hotel,0,156,2016,August,27,30,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient-Party,120.61,0,1,Check-Out,2019-06-03 -Resort Hotel,1,44,2016,April,52,8,2,5,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,E,F,0,Non Refund,6.0,179.0,75,Transient,127.53,0,0,Canceled,2019-09-03 -City Hotel,1,39,2017,August,37,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Refundable,9.0,179.0,0,Group,68.07,0,2,Canceled,2019-11-03 -Resort Hotel,0,38,2016,February,8,14,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,174.0,179.0,0,Transient-Party,41.14,0,0,Check-Out,2019-04-03 -City Hotel,0,61,2016,May,24,27,4,1,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient,190.12,0,0,Check-Out,2019-05-04 -City Hotel,0,10,2016,October,46,16,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.6,0,1,Check-Out,2019-08-04 -City Hotel,0,57,2016,August,36,30,3,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,319.0,179.0,0,Transient,119.93,0,0,Check-Out,2019-06-03 -City Hotel,1,9,2016,January,4,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,5.0,179.0,0,Transient,73.08,0,0,Canceled,2018-12-03 -City Hotel,0,249,2016,July,25,24,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.22,0,1,Check-Out,2018-12-03 -Resort Hotel,0,1,2016,September,42,30,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,142.87,0,2,Check-Out,2019-09-03 -Resort Hotel,0,26,2017,February,10,5,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,57.82,0,0,Check-Out,2019-12-04 -City Hotel,1,54,2016,December,3,9,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,43,Transient,84.06,0,0,Canceled,2018-10-03 -City Hotel,1,0,2016,February,10,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,18.0,75.0,0,Transient,80.72,0,0,Canceled,2019-12-04 -Resort Hotel,0,327,2016,October,45,24,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,223.0,0,Transient-Party,63.04,0,0,Check-Out,2019-05-04 -Resort Hotel,1,201,2016,April,9,25,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient-Party,92.96,0,0,Canceled,2019-01-03 -City Hotel,0,5,2015,November,51,26,0,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,56.98,0,0,Check-Out,2018-07-03 -Resort Hotel,1,33,2017,May,17,18,2,1,1,0.0,0,BB,GBR,Groups,Corporate,1,0,0,E,E,0,No Deposit,13.0,331.0,0,Transient,44.8,0,0,Canceled,2019-02-01 -Resort Hotel,0,40,2015,December,46,21,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,30.0,179.0,0,Group,50.22,0,1,Check-Out,2018-01-03 -City Hotel,1,339,2017,May,18,28,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,40,Transient,67.84,0,0,Canceled,2019-02-01 -City Hotel,0,165,2016,August,35,15,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,75.92,0,1,Check-Out,2019-05-04 -Resort Hotel,1,252,2017,July,25,13,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,197.82,0,3,Canceled,2020-05-03 -City Hotel,0,105,2017,May,22,23,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.55,0,2,Check-Out,2019-12-04 -City Hotel,0,13,2015,August,44,4,0,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-07-03 -Resort Hotel,0,80,2017,June,26,18,0,2,2,0.0,0,BB,USA,Direct,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,213.84,0,3,Check-Out,2020-03-03 -City Hotel,1,260,2015,October,41,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,1.0,179.0,0,Contract,58.52,0,0,Canceled,2017-11-02 -City Hotel,0,48,2016,September,28,10,2,10,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,129.7,0,0,Check-Out,2019-06-03 -City Hotel,1,161,2015,November,45,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.93,0,0,Canceled,2018-08-03 -Resort Hotel,0,11,2017,February,12,5,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,32.93,0,0,Check-Out,2019-11-03 -City Hotel,1,103,2016,April,18,21,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,1,Non Refund,13.0,179.0,0,Transient,66.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,10,2017,February,12,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,17.0,264.0,0,Transient-Party,35.82,0,0,Check-Out,2019-12-04 -City Hotel,0,261,2016,September,43,15,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,84.34,0,2,Check-Out,2019-05-04 -Resort Hotel,0,91,2015,August,37,21,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,201.58,0,0,Check-Out,2018-06-02 -City Hotel,1,109,2016,July,33,25,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,146.45,0,0,Canceled,2019-05-04 -City Hotel,1,49,2015,October,45,9,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,10.0,242.0,0,Transient-Party,85.99,0,0,Canceled,2018-09-02 -City Hotel,0,6,2015,July,50,28,2,5,2,0.0,0,SC,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,61.2,0,0,Check-Out,2018-05-03 -City Hotel,0,46,2016,April,16,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.11,0,1,Canceled,2019-11-03 -City Hotel,1,317,2016,June,28,14,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.19,0,0,Canceled,2018-07-03 -City Hotel,1,6,2016,March,10,31,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient,81.39,0,0,Canceled,2019-03-04 -City Hotel,0,171,2016,October,41,13,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,79.53,0,0,Check-Out,2019-06-03 -Resort Hotel,0,135,2017,August,26,17,1,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,193.0,179.0,0,Transient,170.44,1,1,Check-Out,2020-06-02 -Resort Hotel,0,164,2017,June,21,27,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,99.94,0,1,Check-Out,2020-06-02 -Resort Hotel,0,7,2016,February,10,12,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,70.72,0,0,Check-Out,2019-02-01 -City Hotel,1,262,2017,June,28,18,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,6.0,179.0,0,Transient,95.63,0,0,Canceled,2019-10-04 -City Hotel,1,153,2016,June,27,13,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.26,0,2,Check-Out,2019-01-03 -Resort Hotel,1,257,2017,June,26,21,2,4,2,0.0,0,HB,PRT,Online TA,Corporate,0,0,0,A,C,1,No Deposit,244.0,179.0,0,Transient,158.04,0,0,Canceled,2020-05-03 -City Hotel,0,2,2016,March,9,10,2,0,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,121.65,0,0,Check-Out,2019-01-03 -City Hotel,1,0,2016,May,20,20,0,1,2,0.0,0,BB,,Aviation,TA/TO,0,0,0,A,B,0,No Deposit,25.0,179.0,0,Group,72.1,0,0,Canceled,2019-03-04 -City Hotel,1,191,2016,October,45,8,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,134.42,0,0,Canceled,2018-08-03 -City Hotel,1,224,2015,July,32,3,2,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,91.57,0,0,Canceled,2019-05-04 -Resort Hotel,0,13,2016,October,43,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient-Party,76.58,0,0,Check-Out,2019-09-03 -City Hotel,1,37,2016,March,16,24,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,71.33,0,0,Canceled,2018-10-03 -City Hotel,1,27,2017,February,10,29,2,5,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,89.82,0,0,Canceled,2019-11-03 -City Hotel,1,305,2016,November,45,10,2,2,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,128.31,0,0,Canceled,2019-12-04 -City Hotel,1,145,2016,August,40,30,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,187.99,0,0,Canceled,2019-06-03 -Resort Hotel,0,129,2016,December,52,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,249.0,179.0,0,Transient-Party,58.78,1,0,Check-Out,2019-10-04 -City Hotel,0,95,2015,September,44,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.24,0,0,Check-Out,2018-08-03 -City Hotel,1,86,2017,June,21,21,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,E,E,0,No Deposit,12.0,55.0,0,Transient,98.09,0,0,Canceled,2020-04-02 -Resort Hotel,0,2,2017,May,22,5,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,248.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-06-02 -City Hotel,1,20,2017,May,28,22,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Transient,108.63,0,2,Canceled,2020-02-01 -Resort Hotel,0,249,2017,July,33,21,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,239.0,179.0,0,Transient,188.29,0,3,Check-Out,2020-04-02 -Resort Hotel,0,14,2017,June,20,20,0,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,180.0,179.0,0,Transient-Party,108.35,0,1,Check-Out,2020-04-02 -City Hotel,1,298,2015,October,45,10,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Contract,101.09,0,2,Canceled,2018-06-02 -City Hotel,1,264,2017,July,22,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,98.86,0,0,Canceled,2018-06-02 -City Hotel,1,7,2017,June,25,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,82.34,0,1,Canceled,2020-06-02 -City Hotel,0,28,2017,June,28,30,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,H,0,No Deposit,35.0,179.0,0,Transient,161.06,0,0,Check-Out,2020-05-03 -City Hotel,0,256,2017,July,37,31,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,95.81,0,1,Check-Out,2020-01-04 -City Hotel,0,1,2016,October,44,18,0,1,1,0.0,0,BB,CHN,Complementary,Corporate,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,2.67,0,0,Check-Out,2019-11-03 -City Hotel,0,40,2015,October,42,18,0,2,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,61,Transient-Party,92.72,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,August,35,29,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.38,0,1,Check-Out,2019-06-03 -Resort Hotel,1,10,2016,September,39,25,0,4,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,216.72,0,0,Canceled,2019-05-04 -City Hotel,1,199,2017,October,43,13,1,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,2.0,222.0,0,Transient-Party,78.79,0,0,Canceled,2019-11-03 -Resort Hotel,1,16,2016,January,4,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,57.76,0,0,No-Show,2019-01-03 -Resort Hotel,1,196,2015,August,37,23,2,5,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,128.0,179.0,0,Transient,112.83,0,0,Canceled,2018-05-03 -City Hotel,0,2,2016,October,46,14,1,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,86.16,0,0,Check-Out,2019-09-03 -Resort Hotel,1,212,2016,March,17,30,0,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,325.0,179.0,0,Transient-Party,92.01,0,0,Canceled,2019-01-03 -City Hotel,1,50,2015,December,26,23,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,61.44,0,0,Canceled,2018-05-03 -Resort Hotel,0,41,2016,March,11,6,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,1,No Deposit,13.0,223.0,0,Transient,40.28,1,0,Check-Out,2019-02-01 -City Hotel,0,265,2016,March,37,25,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,83.76,0,0,Check-Out,2019-04-03 -City Hotel,0,12,2017,June,25,3,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.82,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2016,January,3,18,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.17,0,2,Canceled,2018-11-02 -Resort Hotel,1,26,2016,April,17,15,0,4,1,0.0,0,Undefined,GBR,Corporate,Corporate,0,0,0,E,A,0,No Deposit,15.0,221.0,75,Transient-Party,73.83,0,0,Canceled,2019-02-01 -City Hotel,0,1,2016,November,45,10,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,100.55,0,1,Check-Out,2019-11-03 -Resort Hotel,0,2,2017,August,36,15,3,3,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,201.12,1,1,Check-Out,2020-06-02 -City Hotel,0,1,2016,October,46,12,0,1,1,0.0,0,BB,SWE,Aviation,Corporate,0,0,0,D,D,1,No Deposit,15.0,183.0,0,Transient,88.6,0,0,Check-Out,2019-09-03 -City Hotel,0,231,2016,July,29,14,0,4,1,0.0,0,HB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.55,0,1,Check-Out,2019-02-01 -City Hotel,0,110,2017,June,28,28,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,163.76,0,1,Check-Out,2019-03-04 -City Hotel,0,201,2017,July,31,10,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.18,0,1,Check-Out,2019-12-04 -City Hotel,0,37,2016,December,44,6,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,96.02,0,1,Check-Out,2019-11-03 -Resort Hotel,0,190,2016,September,27,24,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,72.96,0,0,Check-Out,2019-05-04 -City Hotel,0,278,2015,September,40,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,83.8,0,0,Check-Out,2018-07-03 -City Hotel,0,1,2015,June,28,17,0,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,81.56,0,0,Check-Out,2019-06-03 -Resort Hotel,0,94,2016,April,22,27,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,319.0,179.0,0,Transient-Party,70.56,0,0,Check-Out,2019-04-03 -Resort Hotel,0,254,2017,February,30,13,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,132.98,1,1,Check-Out,2020-02-01 -Resort Hotel,0,49,2017,July,27,20,0,1,3,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,0,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-05-03 -Resort Hotel,0,2,2016,October,43,22,1,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,44.81,0,0,Check-Out,2019-06-03 -City Hotel,1,311,2015,September,44,13,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.13,0,0,Canceled,2018-07-03 -City Hotel,0,20,2016,July,38,3,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,227.15,0,1,Canceled,2019-08-04 -Resort Hotel,0,20,2016,May,43,27,1,4,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.12,1,2,Check-Out,2019-05-04 -City Hotel,0,9,2016,August,35,11,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.69,0,1,Check-Out,2019-05-04 -City Hotel,1,2,2016,May,27,27,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,188.88,0,0,Canceled,2019-05-04 -Resort Hotel,1,32,2016,March,16,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,238.0,179.0,0,Transient,34.73,0,0,Canceled,2019-02-01 -City Hotel,1,39,2016,March,16,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,63,Transient,90.97,0,0,Canceled,2018-11-02 -Resort Hotel,0,13,2017,August,29,17,2,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient-Party,108.86,0,0,Check-Out,2020-06-02 -Resort Hotel,0,25,2017,August,32,6,1,0,2,2.0,0,BB,,Direct,TA/TO,0,0,0,G,A,0,No Deposit,244.0,179.0,0,Transient,200.46,1,0,Check-Out,2020-07-03 -City Hotel,0,93,2016,September,43,21,2,2,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,71.35,0,0,Check-Out,2019-07-04 -Resort Hotel,0,57,2016,July,32,8,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,73.82,0,2,Check-Out,2019-06-03 -City Hotel,1,45,2016,December,53,18,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,77.23,0,0,Canceled,2018-11-02 -City Hotel,1,250,2016,October,43,6,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,136.13,0,1,Canceled,2019-07-04 -Resort Hotel,0,1,2016,August,43,13,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,50.92,1,1,Check-Out,2019-09-03 -City Hotel,0,0,2016,September,31,20,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.79,0,2,Check-Out,2019-06-03 -City Hotel,1,204,2016,October,43,9,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.98,0,0,Canceled,2019-08-04 -City Hotel,1,417,2016,June,28,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.72,0,0,Canceled,2017-11-02 -City Hotel,1,16,2016,August,37,5,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,160.0,179.0,0,Transient,62.27,0,0,Canceled,2017-12-03 -Resort Hotel,0,0,2016,March,11,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,K,0,No Deposit,15.0,179.0,0,Transient,61.83,0,0,Check-Out,2019-02-01 -City Hotel,0,19,2016,June,26,1,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,1,No Deposit,8.0,45.0,0,Transient,121.11,0,1,Check-Out,2019-06-03 -Resort Hotel,0,155,2017,March,18,27,2,5,2,0.0,0,HB,CHE,Direct,Corporate,1,0,1,E,E,1,No Deposit,323.0,179.0,75,Transient,152.89,1,0,Check-Out,2020-01-04 -City Hotel,0,3,2016,October,45,2,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,172.38,0,2,Check-Out,2019-08-04 -City Hotel,1,1,2016,March,16,29,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,11.0,45.0,0,Transient,32.8,0,0,Canceled,2018-12-03 -City Hotel,0,41,2017,May,27,25,0,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,208.43,0,1,Check-Out,2020-04-02 -City Hotel,1,42,2015,November,30,24,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,6.0,179.0,0,Group,104.12,0,0,Canceled,2017-11-02 -City Hotel,1,25,2016,March,15,19,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,1,No Deposit,134.0,179.0,0,Transient-Party,62.57,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2016,May,21,10,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,273.0,179.0,0,Transient,61.44,0,0,Check-Out,2019-04-03 -Resort Hotel,0,14,2016,July,26,5,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,71.19,0,0,Check-Out,2020-06-02 -City Hotel,0,10,2016,August,36,24,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,131.3,0,1,Check-Out,2019-05-04 -City Hotel,1,201,2017,August,36,13,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,114.12,0,1,Canceled,2020-06-02 -City Hotel,0,0,2016,February,50,30,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,70.59,0,0,Check-Out,2018-12-03 -Resort Hotel,0,29,2016,February,49,31,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,105.29,0,0,Check-Out,2019-03-04 -Resort Hotel,0,224,2017,June,15,14,2,7,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,203.32,1,3,Check-Out,2020-04-02 -City Hotel,0,102,2017,August,27,28,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,151.65,0,1,Check-Out,2020-07-03 -City Hotel,1,49,2016,March,15,10,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,117.67,0,0,Canceled,2018-11-02 -City Hotel,0,299,2017,July,32,14,0,1,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,97.93,0,1,Check-Out,2020-05-03 -Resort Hotel,0,161,2016,December,53,27,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,67.87,1,1,Check-Out,2019-12-04 -City Hotel,1,51,2017,August,36,28,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.38,0,0,Canceled,2019-11-03 -City Hotel,0,310,2016,March,15,2,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,75.31,0,0,Canceled,2019-03-04 -Resort Hotel,0,323,2015,August,38,21,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,165.5,1,0,Check-Out,2018-06-02 -Resort Hotel,0,159,2015,December,51,5,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,F,1,No Deposit,92.0,179.0,0,Transient-Party,100.57,0,0,Check-Out,2018-09-02 -Resort Hotel,0,168,2016,March,16,21,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,14.0,222.0,0,Transient-Party,78.63,0,0,Check-Out,2019-01-03 -City Hotel,0,116,2017,April,9,24,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.11,0,2,Check-Out,2020-04-02 -City Hotel,0,145,2016,December,50,21,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,61,Group,73.29,0,0,Canceled,2018-11-02 -City Hotel,1,100,2016,January,3,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,66.0,179.0,0,Transient,81.25,0,0,Canceled,2018-12-03 -City Hotel,1,430,2016,April,18,24,1,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,84.58,0,0,Canceled,2019-02-01 -City Hotel,0,30,2017,May,20,18,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,154.78,0,0,Check-Out,2020-06-02 -Resort Hotel,0,17,2017,April,18,27,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,378.0,179.0,0,Transient,210.52,1,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,March,3,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,64,Transient,79.69,0,0,Check-Out,2018-12-03 -City Hotel,1,50,2015,August,37,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,61.3,0,0,Canceled,2018-05-03 -City Hotel,1,238,2016,June,27,31,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,76.75,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2016,February,10,14,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,33.47,0,0,Check-Out,2019-02-01 -City Hotel,1,50,2016,October,45,10,1,1,3,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,70.18,0,0,Canceled,2019-10-04 -City Hotel,0,87,2015,July,43,16,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,95.33,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,June,25,13,1,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,149.32,0,0,Check-Out,2019-05-04 -Resort Hotel,0,31,2017,July,31,31,2,5,2,0.0,0,HB,USA,Direct,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-03-03 -City Hotel,0,3,2016,July,30,22,0,1,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,125.0,1,0,Check-Out,2019-09-03 -City Hotel,1,212,2017,May,21,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,77.97,0,0,Canceled,2019-02-01 -City Hotel,0,53,2016,April,16,30,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,133.0,179.0,0,Transient-Party,40.13,0,0,Check-Out,2019-02-01 -Resort Hotel,0,48,2016,April,15,6,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,75.39,0,2,Check-Out,2019-03-04 -Resort Hotel,0,16,2016,July,26,30,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,155.0,179.0,0,Transient,84.14,0,0,Check-Out,2019-05-04 -City Hotel,0,20,2015,October,43,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient-Party,77.08,0,0,Check-Out,2018-09-02 -City Hotel,1,47,2015,December,4,7,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,72.7,0,1,Canceled,2018-10-03 -City Hotel,1,272,2017,August,37,25,2,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,Refundable,185.0,179.0,0,Transient,185.9,0,0,Canceled,2020-04-02 -Resort Hotel,0,0,2016,March,9,10,0,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,63.53,0,1,Check-Out,2019-03-04 -Resort Hotel,1,164,2016,March,16,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,62.81,0,0,Canceled,2018-12-03 -City Hotel,0,3,2016,March,16,16,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,81.89,0,2,Check-Out,2019-03-04 -Resort Hotel,0,10,2016,October,44,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,15.0,209.0,0,Transient,65.15,0,0,Check-Out,2019-09-03 -City Hotel,1,268,2017,September,22,22,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,7.0,179.0,0,Transient,94.12,0,3,Canceled,2019-10-04 -City Hotel,0,22,2015,September,40,28,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,77.24,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2016,August,32,2,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,168.93,0,3,Check-Out,2019-07-04 -Resort Hotel,0,55,2015,December,51,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,59.43,0,1,Check-Out,2018-11-02 -Resort Hotel,1,6,2016,January,9,18,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,0.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,January,51,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,61.79,1,1,Check-Out,2019-06-03 -City Hotel,0,105,2015,October,30,6,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,59.57,0,2,Check-Out,2018-12-03 -City Hotel,0,104,2016,March,49,27,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.23,0,2,Check-Out,2018-12-03 -City Hotel,0,4,2017,April,15,24,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,85.91,0,0,Check-Out,2020-04-02 -Resort Hotel,0,39,2016,August,39,30,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,251.85,1,1,Check-Out,2019-04-03 -Resort Hotel,0,2,2016,October,50,24,2,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,331.0,0,Transient-Party,35.59,0,0,Check-Out,2019-08-04 -City Hotel,0,10,2016,June,16,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,66.44,0,0,Check-Out,2019-02-01 -City Hotel,1,149,2016,October,44,10,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.98,0,0,Canceled,2019-08-04 -City Hotel,0,55,2016,February,10,6,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,76.28,0,0,Check-Out,2019-01-03 -Resort Hotel,0,16,2016,September,44,13,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,86.0,179.0,0,Transient-Party,70.09,0,0,Check-Out,2019-08-04 -City Hotel,0,29,2017,May,21,6,1,1,2,0.0,0,BB,GBR,Aviation,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,76.43,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,January,2,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,32.11,1,0,Check-Out,2019-10-04 -City Hotel,0,253,2016,October,37,8,1,2,3,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,204.54,0,3,Check-Out,2019-09-03 -City Hotel,1,148,2017,May,23,31,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Transient,113.93,0,0,Canceled,2020-04-02 -Resort Hotel,0,45,2016,March,18,24,2,5,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,289.0,179.0,0,Transient-Party,42.41,0,0,Check-Out,2019-02-01 -City Hotel,1,40,2016,October,52,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,238.0,179.0,0,Transient,137.96,0,0,Canceled,2018-12-03 -City Hotel,1,270,2016,October,43,28,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Contract,99.2,0,3,Canceled,2019-06-03 -Resort Hotel,0,87,2015,December,52,11,0,1,2,0.0,0,FB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,58.89,0,0,Check-Out,2018-08-03 -City Hotel,1,272,2016,June,24,26,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,13.0,331.0,0,Transient,80.13,0,0,Canceled,2019-05-04 -City Hotel,0,38,2017,January,10,16,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.43,0,0,Check-Out,2019-11-03 -City Hotel,0,11,2016,October,44,9,2,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.71,0,2,Check-Out,2018-08-03 -City Hotel,0,35,2016,August,36,19,2,3,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,202.48,0,2,Check-Out,2019-07-04 -Resort Hotel,0,16,2016,August,33,14,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,166.17,1,2,Check-Out,2019-05-04 -City Hotel,0,2,2017,March,9,9,0,1,1,0.0,0,SC,PRT,Complementary,GDS,0,0,0,A,A,0,No Deposit,10.0,66.0,0,Transient,113.29,1,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2015,September,45,14,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,C,0,No Deposit,15.0,45.0,0,Transient,37.14,1,0,Check-Out,2019-06-03 -City Hotel,0,148,2017,July,31,15,2,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.15,0,3,Check-Out,2019-06-03 -Resort Hotel,0,44,2015,August,34,6,2,5,2,2.0,0,HB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,222.56,0,0,Check-Out,2018-05-03 -City Hotel,0,16,2015,September,43,16,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Contract,59.45,0,3,Check-Out,2018-08-03 -City Hotel,0,1,2016,September,44,21,2,1,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,D,D,0,No Deposit,194.0,179.0,0,Transient,3.62,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,December,49,12,0,1,2,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,19.0,268.0,0,Transient,0.47,0,0,Check-Out,2019-12-04 -City Hotel,0,3,2016,June,27,11,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,294.0,0,Transient,2.53,0,0,Check-Out,2019-06-03 -City Hotel,1,166,2015,July,27,28,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,31.0,179.0,0,Contract,78.94,0,0,Check-Out,2017-11-02 -City Hotel,1,141,2016,June,34,30,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,120.64,0,2,Canceled,2020-01-04 -Resort Hotel,0,325,2016,June,22,24,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,84.73,0,0,Check-Out,2019-03-04 -Resort Hotel,0,261,2016,July,38,21,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,199.72,0,1,Check-Out,2019-03-04 -City Hotel,0,53,2016,March,17,3,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,99.9,0,1,Check-Out,2019-03-04 -Resort Hotel,0,19,2016,August,53,28,0,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,220.58,1,1,Check-Out,2020-06-02 -Resort Hotel,0,94,2017,August,34,5,0,6,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,20,2015,September,43,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,124.83,0,0,Check-Out,2018-07-03 -Resort Hotel,0,9,2016,March,13,10,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,79.0,0,Transient-Party,37.47,0,0,Check-Out,2019-03-04 -Resort Hotel,1,158,2017,July,34,24,2,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,167.76,0,2,Canceled,2020-03-03 -City Hotel,0,8,2017,May,26,12,0,3,1,0.0,0,BB,CN,Corporate,Corporate,0,0,0,A,E,0,No Deposit,13.0,239.0,0,Transient,82.18,0,0,Check-Out,2020-07-03 -City Hotel,0,26,2016,October,44,15,4,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.51,0,0,Check-Out,2019-08-04 -City Hotel,0,47,2016,June,26,20,1,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,75.66,0,3,Check-Out,2020-03-03 -City Hotel,0,83,2016,April,16,2,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,125.34,0,0,Check-Out,2019-02-01 -City Hotel,0,35,2016,March,11,29,0,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,178.8,0,1,Check-Out,2019-02-01 -City Hotel,1,415,2015,July,32,8,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,60.39,0,0,Canceled,2018-06-02 -Resort Hotel,0,22,2015,December,53,10,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,127.41,1,0,Check-Out,2018-12-03 -Resort Hotel,1,136,2016,March,15,31,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient-Party,82.2,0,0,Canceled,2018-11-02 -Resort Hotel,0,113,2015,December,50,25,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,61.18,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2015,October,43,13,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,59.43,0,0,Check-Out,2018-09-02 -Resort Hotel,0,11,2017,February,10,27,1,0,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,74.31,0,0,Check-Out,2019-11-03 -City Hotel,1,306,2016,September,46,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,128.07,0,0,Canceled,2019-08-04 -Resort Hotel,0,38,2016,April,21,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,70.68,0,0,Check-Out,2019-04-03 -City Hotel,1,0,2017,May,21,16,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,4.56,0,1,Canceled,2020-04-02 -City Hotel,0,226,2015,September,37,21,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,127.63,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2017,July,26,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.0,0,1,Check-Out,2020-06-02 -City Hotel,0,87,2015,November,53,21,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,67,Contract,76.62,0,1,Check-Out,2018-08-03 -Resort Hotel,0,104,2017,July,32,23,1,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,172.93,0,0,Check-Out,2020-04-02 -Resort Hotel,0,93,2017,June,27,28,2,5,2,1.0,0,HB,CHE,Direct,Direct,0,0,0,F,A,2,No Deposit,249.0,179.0,0,Transient,145.62,0,1,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,March,9,25,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,87.67,1,0,Check-Out,2018-11-02 -City Hotel,0,12,2017,May,21,31,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.2,0,1,Check-Out,2020-03-03 -City Hotel,0,10,2017,March,19,28,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,69.33,0,1,Check-Out,2020-03-03 -City Hotel,1,36,2016,May,22,27,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,148.6,0,0,Canceled,2019-03-04 -City Hotel,1,44,2015,September,32,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.65,0,0,Canceled,2018-05-03 -Resort Hotel,0,2,2015,November,44,10,0,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,77.5,1,0,Check-Out,2019-01-03 -City Hotel,1,214,2015,July,32,12,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.72,0,0,Canceled,2018-05-03 -City Hotel,0,316,2016,November,49,16,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,82.22,0,0,Check-Out,2019-10-04 -Resort Hotel,1,7,2015,October,44,7,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,150.78,0,0,Canceled,2018-08-03 -City Hotel,1,51,2016,October,42,25,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,Non Refund,10.0,179.0,0,Transient,54.18,0,0,Canceled,2018-08-03 -City Hotel,0,50,2017,February,10,25,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,102.75,0,2,Check-Out,2019-11-03 -City Hotel,0,1,2017,March,11,29,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,25.0,269.0,0,Transient,84.87,0,0,Check-Out,2020-02-01 -City Hotel,1,234,2017,August,35,21,2,5,1,0.0,0,BB,IRL,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,104.46,0,0,Canceled,2019-06-03 -Resort Hotel,0,1,2017,February,17,13,1,0,2,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,A,0,No Deposit,17.0,77.0,0,Group,60.39,0,0,Check-Out,2019-11-03 -City Hotel,0,41,2017,May,17,21,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,67.89,0,2,Check-Out,2019-02-01 -Resort Hotel,0,233,2015,September,23,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,149.0,179.0,0,Contract,61.93,0,0,Check-Out,2018-01-03 -Resort Hotel,0,14,2016,February,10,28,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,75.37,0,1,Check-Out,2019-03-04 -City Hotel,0,32,2016,April,21,20,1,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,71.13,0,0,Check-Out,2019-02-01 -City Hotel,1,270,2017,June,31,27,0,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Contract,211.63,0,1,Check-Out,2020-06-02 -City Hotel,1,157,2015,July,34,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.54,0,0,Canceled,2018-04-02 -Resort Hotel,0,12,2017,June,26,15,1,0,1,0.0,0,BB,GBR,Direct,TA/TO,1,0,1,A,E,0,No Deposit,180.0,179.0,0,Group,0.0,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2016,August,36,31,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,152.4,0,0,Check-Out,2019-06-03 -Resort Hotel,0,215,2016,August,37,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,61.48,0,0,Check-Out,2019-05-04 -City Hotel,1,153,2016,June,28,8,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,134.23,0,0,Canceled,2018-11-02 -Resort Hotel,0,98,2015,July,34,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,63.49,1,2,Check-Out,2018-06-02 -Resort Hotel,1,243,2016,July,25,22,2,5,2,0.0,0,FB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,87.62,0,0,Canceled,2019-03-04 -City Hotel,0,37,2016,October,43,13,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,155.49,0,2,Check-Out,2019-08-04 -City Hotel,0,140,2017,May,20,6,1,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,196.0,179.0,0,Transient-Party,68.14,0,0,Check-Out,2020-04-02 -Resort Hotel,0,135,2017,December,53,20,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,327.0,179.0,0,Transient-Party,87.14,1,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,June,28,9,0,1,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,116.54,0,0,Check-Out,2020-06-02 -City Hotel,1,8,2016,March,23,27,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,271.0,179.0,21,Transient,102.41,0,0,Canceled,2018-11-02 -City Hotel,1,1,2015,February,10,27,2,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.94,0,0,Canceled,2018-05-03 -City Hotel,1,0,2016,August,30,17,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,27.0,179.0,0,Transient,122.93,0,0,Check-Out,2019-04-03 -Resort Hotel,0,1,2015,July,32,10,2,0,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,247.0,179.0,0,Group,44.58,0,2,Check-Out,2018-08-03 -City Hotel,0,27,2016,March,10,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient-Party,96.92,0,0,Check-Out,2018-12-03 -Resort Hotel,0,1,2017,January,4,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,38.79,0,0,Check-Out,2019-10-04 -Resort Hotel,0,114,2016,June,23,21,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,300.0,179.0,0,Transient,112.53,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2016,September,41,2,2,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,10.0,179.0,0,Transient,1.06,0,0,Canceled,2019-08-04 -City Hotel,1,51,2017,February,10,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,55.6,0,1,Canceled,2019-03-04 -City Hotel,1,2,2017,April,16,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2020-05-03 -City Hotel,1,15,2015,December,51,11,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,14.0,191.0,0,Transient,60.62,0,0,Canceled,2018-01-03 -Resort Hotel,0,10,2015,September,45,31,2,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,237.0,179.0,0,Transient,44.94,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,October,41,8,2,1,2,0.0,0,HB,SWE,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,121.64,1,0,Check-Out,2019-07-04 -City Hotel,0,10,2017,March,12,9,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,88.51,0,0,Check-Out,2020-03-03 -City Hotel,0,18,2016,October,51,9,2,1,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,135.62,0,2,Check-Out,2019-08-04 -City Hotel,0,128,2016,January,9,26,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,70.18,0,1,Check-Out,2020-02-01 -City Hotel,0,41,2016,May,37,31,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,78.65,0,0,Check-Out,2019-02-01 -City Hotel,0,15,2017,May,27,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,15.0,52.0,0,Transient,124.02,1,0,Check-Out,2020-01-04 -Resort Hotel,0,1,2016,February,33,6,1,0,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,Non Refund,252.0,179.0,0,Transient,121.27,1,2,Check-Out,2018-06-02 -Resort Hotel,0,101,2015,July,30,5,2,5,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,103.04,0,3,Check-Out,2018-05-03 -City Hotel,1,8,2016,March,19,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,45.0,0,Transient,58.95,0,0,Canceled,2018-12-03 -Resort Hotel,1,146,2017,July,31,29,1,1,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,2019-03-04 -Resort Hotel,0,36,2016,August,37,31,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,159.1,1,1,Check-Out,2019-04-03 -City Hotel,1,103,2017,June,37,20,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.92,0,0,Canceled,2020-07-03 -City Hotel,1,154,2015,September,43,22,2,3,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,66.22,0,0,Canceled,2018-07-03 -City Hotel,0,242,2016,December,53,5,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,108.77,0,1,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,June,22,9,4,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,142.31,0,0,Check-Out,2019-06-03 -City Hotel,1,0,2016,March,9,15,0,1,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,83.59,0,0,Canceled,2019-02-01 -City Hotel,1,60,2015,October,44,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,115.87,0,0,Canceled,2018-08-03 -City Hotel,0,311,2015,September,43,24,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,74.85,0,1,Check-Out,2018-08-03 -Resort Hotel,0,18,2016,November,49,9,2,1,2,0.0,0,BB,GBR,Offline TA/TO,Direct,1,0,0,D,D,0,No Deposit,42.0,179.0,0,Group,69.96,0,2,Check-Out,2019-11-03 -City Hotel,1,27,2015,September,38,13,2,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,149.78,0,0,No-Show,2018-06-02 -Resort Hotel,1,195,2017,July,34,29,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,106.77,0,2,Canceled,2020-01-04 -Resort Hotel,0,1,2017,July,28,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,19.0,179.0,0,Transient,121.89,1,0,Check-Out,2019-04-03 -City Hotel,0,29,2016,February,8,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.19,0,0,Check-Out,2018-11-02 -Resort Hotel,0,3,2015,November,49,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,38.67,1,2,Check-Out,2018-10-03 -City Hotel,0,102,2017,July,33,27,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.5,0,2,Check-Out,2020-07-03 -Resort Hotel,0,59,2017,February,10,9,1,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,192.0,179.0,0,Transient,75.24,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,April,17,31,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,122.24,0,3,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,March,27,20,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,75.83,0,1,Check-Out,2019-03-04 -Resort Hotel,1,0,2016,January,2,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,61.79,0,0,No-Show,2018-10-03 -Resort Hotel,0,8,2016,October,45,5,0,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,F,L,0,No Deposit,236.0,179.0,0,Transient,118.16,0,0,Check-Out,2019-12-04 -City Hotel,1,249,2016,May,22,31,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,77.46,0,0,Canceled,2019-03-04 -Resort Hotel,0,109,2015,July,17,6,2,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,38.11,0,0,Check-Out,2018-12-03 -City Hotel,0,220,2017,August,25,12,1,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-07-03 -Resort Hotel,1,25,2016,December,35,21,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.58,0,0,Canceled,2017-12-03 -City Hotel,0,77,2016,June,26,9,2,2,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,78.11,0,0,Check-Out,2019-03-04 -Resort Hotel,0,94,2015,October,35,30,3,3,3,0.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,1,No Deposit,247.0,179.0,0,Transient,108.38,0,0,Check-Out,2018-08-03 -City Hotel,1,414,2017,April,16,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,21,Transient,82.56,0,0,Canceled,2018-12-03 -Resort Hotel,0,261,2015,September,32,10,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,44.0,0,1,Check-Out,2018-06-02 -Resort Hotel,0,100,2015,December,53,26,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,74.35,0,0,Check-Out,2019-10-04 -City Hotel,1,158,2016,February,8,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient,61.92,0,0,Canceled,2018-11-02 -City Hotel,0,3,2016,March,21,5,1,0,3,0.0,0,BB,,Online TA,Corporate,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.06,0,0,Check-Out,2019-01-03 -Resort Hotel,0,170,2016,March,10,31,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,41.5,0,0,Check-Out,2019-02-01 -City Hotel,0,6,2015,July,31,30,0,2,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.59,0,0,Check-Out,2018-05-03 -City Hotel,1,212,2015,October,53,30,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.37,0,0,Canceled,2018-12-03 -City Hotel,1,50,2016,March,16,31,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,66.0,179.0,42,Transient,98.46,0,0,Canceled,2018-11-02 -Resort Hotel,1,93,2015,December,53,10,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,C,0,No Deposit,242.0,179.0,0,Transient,38.72,0,0,Canceled,2018-06-02 -Resort Hotel,1,56,2017,March,11,14,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,105.55,0,0,Canceled,2019-09-03 -City Hotel,0,1,2017,March,11,29,1,2,1,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,61.56,1,0,Check-Out,2020-03-03 -City Hotel,0,6,2017,June,23,19,0,1,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,331.0,0,Transient,159.29,0,0,Check-Out,2020-03-03 -Resort Hotel,0,251,2016,November,50,27,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,70.38,0,0,Check-Out,2019-11-03 -City Hotel,1,245,2016,June,27,5,0,1,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.22,0,0,Canceled,2019-04-03 -Resort Hotel,1,1,2017,February,4,19,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,174.0,179.0,0,Transient,62.13,0,0,Canceled,2018-10-03 -Resort Hotel,1,155,2017,April,22,30,2,5,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,169.0,179.0,75,Transient,201.27,0,0,Canceled,2020-02-01 -City Hotel,0,43,2016,December,50,30,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,64.33,0,3,Check-Out,2019-10-04 -City Hotel,1,199,2016,September,43,20,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.31,0,1,Canceled,2019-08-04 -City Hotel,1,9,2016,May,21,5,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Canceled,2019-03-04 -City Hotel,0,1,2016,October,43,25,1,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,3,No Deposit,11.0,179.0,0,Transient,164.24,0,1,Check-Out,2019-07-04 -Resort Hotel,0,6,2016,June,17,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,240.0,179.0,0,Transient,151.31,1,0,Check-Out,2019-03-04 -City Hotel,1,19,2016,June,39,12,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,2,No Deposit,178.0,179.0,0,Transient,127.84,0,0,Canceled,2019-06-03 -Resort Hotel,0,136,2016,July,26,22,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,D,E,0,No Deposit,12.0,179.0,0,Group,95.28,0,1,Check-Out,2019-05-04 -City Hotel,0,23,2016,October,45,24,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,77.83,0,2,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,March,10,30,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,42.61,0,0,Check-Out,2018-11-02 -Resort Hotel,0,235,2017,June,22,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,C,0,No Deposit,14.0,179.0,0,Group,144.28,0,1,Check-Out,2019-12-04 -City Hotel,0,12,2017,October,21,19,2,0,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,6.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-04-02 -Resort Hotel,1,21,2016,October,43,14,1,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,70.88,0,0,Check-Out,2019-07-04 -City Hotel,1,238,2015,December,51,5,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,268.0,179.0,0,Transient-Party,61.37,0,0,Canceled,2018-06-02 -City Hotel,1,8,2016,July,32,6,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,65,Transient,115.27,0,0,Canceled,2018-10-03 -City Hotel,0,31,2016,December,48,2,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,83.73,0,1,Check-Out,2019-08-04 -Resort Hotel,1,251,2017,December,44,2,0,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,62.41,0,3,Canceled,2019-11-03 -City Hotel,1,117,2017,May,24,27,0,1,1,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,113.62,0,0,Canceled,2020-02-01 -Resort Hotel,0,294,2015,December,53,27,2,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,143.46,0,0,Check-Out,2018-06-02 -Resort Hotel,0,134,2016,September,34,28,1,4,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,107.55,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,October,42,30,1,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,175.19,0,1,Check-Out,2019-06-03 -City Hotel,1,116,2016,June,25,27,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,63,Transient,71.6,0,0,Canceled,2018-11-02 -Resort Hotel,0,150,2015,August,33,13,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,132.24,0,0,Check-Out,2020-07-03 -Resort Hotel,0,153,2017,June,11,30,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,204.0,179.0,0,Transient,62.59,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,July,20,5,2,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,82.28,0,2,Check-Out,2019-06-03 -City Hotel,0,1,2015,October,43,26,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,C,0,No Deposit,13.0,331.0,0,Transient-Party,60.61,0,0,Check-Out,2018-08-03 -City Hotel,1,249,2016,July,32,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.47,0,0,Canceled,2017-12-03 -City Hotel,0,89,2016,April,15,5,2,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,139.0,179.0,0,Transient-Party,32.0,0,0,Check-Out,2019-03-04 -Resort Hotel,1,235,2016,September,41,17,2,6,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,121.85,0,0,Canceled,2019-08-04 -City Hotel,0,17,2017,May,35,24,1,1,2,0.0,0,BB,FRA,Groups,GDS,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,144.39,0,0,Check-Out,2020-07-03 -City Hotel,1,421,2015,July,34,4,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.36,0,0,Canceled,2018-06-02 -City Hotel,1,316,2017,March,34,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,130.79,0,0,Canceled,2020-02-01 -City Hotel,0,200,2016,September,45,23,1,5,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,161.22,1,3,Check-Out,2019-06-03 -Resort Hotel,0,49,2016,August,35,2,0,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,74.75,0,0,Check-Out,2019-07-04 -City Hotel,0,43,2016,June,22,20,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,190.25,0,2,Check-Out,2019-06-03 -City Hotel,1,145,2017,March,18,10,1,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,71.78,0,0,Canceled,2020-01-04 -City Hotel,1,251,2016,June,27,2,0,4,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.18,0,0,Canceled,2019-05-04 -Resort Hotel,0,1,2016,October,43,9,1,1,1,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,36.3,0,0,Check-Out,2019-09-03 -City Hotel,0,11,2016,January,3,10,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,62.25,0,0,Check-Out,2018-11-02 -Resort Hotel,0,12,2015,July,37,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,249.0,179.0,0,Transient,41.48,0,2,Check-Out,2019-06-03 -City Hotel,1,158,2016,July,26,28,2,5,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,150.1,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,March,4,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,D,D,0,No Deposit,13.0,45.0,0,Transient,72.44,0,0,Check-Out,2019-02-01 -Resort Hotel,0,9,2015,August,31,17,2,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,165.09,0,0,Check-Out,2018-06-02 -Resort Hotel,0,4,2015,September,43,30,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,248.0,179.0,0,Transient,62.17,0,2,Check-Out,2018-08-03 -City Hotel,0,15,2016,December,23,29,1,1,1,0.0,0,SC,ESP,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,107.34,0,0,Check-Out,2019-12-04 -City Hotel,1,199,2017,May,16,28,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,152.87,0,0,Canceled,2019-11-03 -Resort Hotel,1,1,2015,November,37,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,241.0,179.0,0,Transient-Party,60.54,0,0,Canceled,2018-05-03 -Resort Hotel,0,39,2017,June,22,28,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,378.0,179.0,0,Transient,185.54,1,0,Check-Out,2020-07-03 -City Hotel,1,26,2015,November,51,27,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,36.8,0,0,Canceled,2019-11-03 -City Hotel,1,316,2016,November,51,20,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,59.44,0,0,Canceled,2019-08-04 -City Hotel,0,4,2016,October,46,26,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,161.18,0,1,Check-Out,2019-07-04 -Resort Hotel,1,156,2017,August,34,10,2,6,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,171.7,0,3,Canceled,2020-06-02 -Resort Hotel,1,230,2017,August,33,16,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,Refundable,241.0,179.0,0,Transient,209.61,0,0,Canceled,2020-06-02 -City Hotel,1,2,2017,February,11,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,71.66,0,0,Canceled,2018-11-02 -Resort Hotel,0,141,2015,August,36,6,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,261.0,179.0,0,Transient-Party,181.53,1,1,Check-Out,2018-06-02 -City Hotel,0,230,2016,November,44,6,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,56,Transient-Party,94.0,0,2,Check-Out,2019-11-03 -City Hotel,0,7,2015,October,44,21,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.43,0,0,Check-Out,2018-08-03 -Resort Hotel,0,32,2016,March,23,30,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,68.96,0,3,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,January,2,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,0,No Deposit,12.0,77.0,0,Transient,34.29,0,1,Check-Out,2019-10-04 -Resort Hotel,0,289,2017,June,25,28,2,7,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,96.11,0,0,Check-Out,2020-06-02 -City Hotel,0,15,2016,September,31,27,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.92,0,1,Check-Out,2019-04-03 -City Hotel,1,42,2017,January,4,30,0,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.83,0,1,Canceled,2019-11-03 -Resort Hotel,0,13,2016,May,21,10,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,80.64,0,0,Check-Out,2019-06-03 -Resort Hotel,0,147,2016,August,33,28,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,3,No Deposit,248.0,179.0,0,Transient,3.43,0,0,Check-Out,2019-06-03 -Resort Hotel,0,154,2017,May,21,7,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,94.42,0,2,Check-Out,2020-04-02 -City Hotel,0,95,2016,October,44,5,1,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,95.18,0,0,Check-Out,2019-06-03 -City Hotel,0,37,2017,January,9,5,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,9.0,179.0,0,Transient,127.68,0,3,Check-Out,2020-03-03 -City Hotel,0,235,2015,October,42,5,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,82.47,0,0,Check-Out,2018-08-03 -Resort Hotel,1,186,2017,May,17,17,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,308.0,179.0,0,Transient,146.57,0,0,Canceled,2020-04-02 -Resort Hotel,1,180,2017,August,35,29,2,5,2,1.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,113.39,0,0,Check-Out,2020-05-03 -Resort Hotel,0,93,2016,March,16,6,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,70.14,0,0,Check-Out,2019-03-04 -Resort Hotel,0,15,2017,August,38,6,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,218.64,0,2,Check-Out,2020-06-02 -Resort Hotel,1,99,2016,December,53,24,2,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,164.62,0,0,Canceled,2019-02-01 -City Hotel,1,317,2015,July,33,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.11,0,0,Canceled,2017-11-02 -Resort Hotel,0,201,2016,July,30,5,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,95.91,0,2,Check-Out,2019-06-03 -Resort Hotel,1,5,2016,April,6,14,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,71.74,0,0,Canceled,2018-12-03 -City Hotel,0,44,2016,March,17,2,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,16,Transient,94.71,0,0,Canceled,2019-03-04 -City Hotel,1,50,2016,April,17,9,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,9.0,179.0,0,Transient,66.33,0,0,Canceled,2019-02-01 -City Hotel,0,153,2017,May,20,20,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,163.9,0,0,Check-Out,2020-02-01 -City Hotel,0,40,2016,April,16,23,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,136.49,0,1,Check-Out,2019-02-01 -City Hotel,0,44,2016,October,33,12,2,5,2,0.0,0,BB,GBR,Online TA,GDS,0,0,0,E,E,0,No Deposit,187.0,179.0,0,Transient,89.35,0,0,Check-Out,2019-07-04 -City Hotel,0,35,2015,July,30,6,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Contract,97.35,0,2,Check-Out,2019-03-04 -Resort Hotel,1,49,2015,December,50,10,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,87.93,0,0,Canceled,2018-12-03 -City Hotel,1,59,2016,March,9,21,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.33,0,1,Canceled,2018-11-02 -Resort Hotel,0,34,2016,August,37,31,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Contract,169.89,0,1,Check-Out,2020-03-03 -City Hotel,0,183,2016,May,27,14,1,0,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,93.71,0,3,Check-Out,2019-09-03 -City Hotel,0,2,2015,June,36,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,87.73,0,0,Check-Out,2019-04-03 -City Hotel,0,15,2016,October,21,27,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.53,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2017,April,21,28,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,104.49,0,1,Check-Out,2019-12-04 -Resort Hotel,0,155,2016,August,38,28,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,110.44,0,1,Check-Out,2019-06-03 -City Hotel,0,200,2016,August,36,29,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,177.0,179.0,0,Transient,113.19,0,0,Check-Out,2019-08-04 -Resort Hotel,0,106,2016,July,32,9,2,7,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,178.0,179.0,0,Transient,212.19,0,0,Check-Out,2019-06-03 -City Hotel,1,12,2016,April,17,18,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,14.0,209.0,0,Transient,59.94,0,0,Canceled,2019-03-04 -Resort Hotel,0,19,2017,February,9,8,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,82.88,0,0,Check-Out,2019-12-04 -Resort Hotel,0,244,2017,May,22,17,4,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,3,No Deposit,378.0,179.0,75,Transient-Party,127.38,0,0,Check-Out,2020-02-01 -City Hotel,1,310,2015,October,44,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,61.73,0,0,Canceled,2018-01-03 -Resort Hotel,0,0,2015,September,38,5,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,43.36,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,June,43,27,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,I,1,No Deposit,249.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-05-04 -City Hotel,0,251,2017,August,18,28,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.96,0,1,Check-Out,2020-01-04 -City Hotel,1,131,2016,July,31,21,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient,88.98,0,1,Canceled,2019-04-03 -City Hotel,1,48,2015,September,45,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.76,0,0,Canceled,2018-06-02 -City Hotel,1,13,2016,April,28,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,225.0,0,Transient,90.88,0,0,Canceled,2019-06-03 -Resort Hotel,0,30,2017,February,9,19,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,83.85,1,1,Check-Out,2019-10-04 -Resort Hotel,0,29,2017,July,31,17,0,3,3,1.0,0,BB,CN,Direct,Direct,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,217.06,0,3,Check-Out,2020-06-02 -City Hotel,0,93,2016,May,21,28,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,108.87,0,1,Check-Out,2019-03-04 -Resort Hotel,1,270,2016,June,26,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient-Party,96.56,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,February,9,24,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,204.31,0,0,Check-Out,2019-02-01 -City Hotel,0,46,2016,February,10,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,43.87,0,0,Check-Out,2019-02-01 -City Hotel,0,46,2016,June,26,20,1,0,1,0.0,0,BB,SWE,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,120.58,0,0,Check-Out,2020-02-01 -City Hotel,1,105,2015,August,38,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.33,0,0,Canceled,2018-08-03 -City Hotel,0,152,2016,June,28,2,0,6,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,117.72,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2017,March,19,11,0,1,1,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,224.0,75,Group,58.56,1,1,Check-Out,2019-12-04 -Resort Hotel,1,197,2016,February,40,14,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,16.79,0,0,Canceled,2019-10-04 -City Hotel,1,0,2016,October,44,2,0,1,1,0.0,0,BB,PRT,Aviation,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,132.55,0,0,Canceled,2019-06-03 -City Hotel,0,46,2017,January,10,12,2,4,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,109.8,0,3,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,October,44,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,16.0,331.0,0,Transient,31.47,0,0,Check-Out,2019-09-03 -City Hotel,1,325,2015,October,44,6,2,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,80.0,0,0,Canceled,2018-07-03 -Resort Hotel,0,186,2016,April,18,24,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,241.0,179.0,0,Transient,122.86,1,2,Check-Out,2019-03-04 -City Hotel,0,193,2017,June,26,7,0,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient,147.9,0,1,Check-Out,2020-06-02 -City Hotel,0,142,2017,May,21,6,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.66,0,1,Canceled,2020-03-03 -Resort Hotel,0,42,2016,February,12,9,1,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,227.0,179.0,0,Transient,65.23,0,0,Check-Out,2019-10-04 -City Hotel,1,2,2017,January,4,24,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.93,0,0,Canceled,2019-10-04 -Resort Hotel,1,274,2017,September,37,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,136.14,0,0,Canceled,2019-09-03 -City Hotel,0,102,2017,March,10,12,1,0,2,0.0,0,SC,AUT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.03,0,2,Check-Out,2019-12-04 -City Hotel,0,158,2016,December,53,29,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.76,0,1,Check-Out,2019-11-03 -City Hotel,0,91,2016,June,27,27,2,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,175.9,0,1,Check-Out,2019-11-03 -City Hotel,0,2,2016,March,9,8,2,0,3,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,119.56,0,1,Check-Out,2019-01-03 -City Hotel,1,1,2016,August,38,8,0,3,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.75,0,0,Canceled,2018-05-03 -City Hotel,0,34,2017,May,21,22,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.29,0,1,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,November,44,12,0,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,1,A,A,0,No Deposit,247.0,179.0,0,Transient,39.67,0,1,Check-Out,2018-12-03 -City Hotel,0,244,2016,October,43,10,0,1,1,0.0,0,SC,BRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,61.8,0,0,Check-Out,2018-08-03 -Resort Hotel,1,155,2016,December,52,25,1,5,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,324.0,179.0,0,Transient-Party,62.1,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2015,July,32,22,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,141.57,1,2,Check-Out,2018-06-02 -City Hotel,0,0,2016,March,16,25,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,60.27,0,0,Check-Out,2019-02-01 -City Hotel,0,15,2016,October,47,27,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,74.75,0,2,Check-Out,2019-08-04 -Resort Hotel,0,208,2016,October,43,21,2,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,3,No Deposit,16.0,179.0,0,Transient,98.29,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,February,10,6,0,3,1,0.0,0,HB,PRT,Direct,Direct,0,0,1,A,I,0,No Deposit,251.0,179.0,0,Transient,0.92,0,1,Check-Out,2018-05-03 -City Hotel,1,97,2015,September,44,22,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,73.13,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,March,43,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,60.0,0,Transient,30.5,0,0,Check-Out,2019-07-04 -Resort Hotel,0,162,2017,May,26,5,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,105.74,1,1,Check-Out,2020-02-01 -Resort Hotel,0,126,2016,December,49,2,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,97.0,179.0,0,Transient-Party,69.19,0,0,Check-Out,2019-11-03 -Resort Hotel,0,2,2015,October,43,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,D,0,No Deposit,12.0,179.0,0,Group,97.84,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,December,53,6,1,0,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,87.26,0,0,Check-Out,2019-11-03 -City Hotel,0,26,2015,October,44,10,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,66.0,179.0,0,Contract,75.23,0,0,Check-Out,2018-08-03 -City Hotel,0,11,2016,August,32,2,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,222.71,0,1,Check-Out,2019-05-04 -Resort Hotel,0,18,2016,October,42,27,4,10,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,344.0,179.0,75,Transient,95.73,0,0,Check-Out,2019-07-04 -City Hotel,1,102,2017,June,11,2,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,124.89,0,0,Canceled,2019-11-03 -City Hotel,0,50,2016,August,34,24,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,223.06,0,1,Check-Out,2020-06-02 -City Hotel,0,15,2016,May,22,23,0,2,2,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,137.13,0,0,Check-Out,2019-05-04 -Resort Hotel,0,100,2016,April,43,24,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,175.0,179.0,0,Transient-Party,69.78,0,1,Check-Out,2019-04-03 -City Hotel,1,37,2016,March,27,28,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.28,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,July,36,11,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.22,0,0,Check-Out,2018-06-02 -City Hotel,1,57,2017,February,10,13,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,110.66,0,0,Canceled,2020-02-01 -City Hotel,1,86,2016,September,43,24,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,163.37,0,0,No-Show,2019-06-03 -Resort Hotel,0,14,2017,February,9,7,2,5,2,2.0,0,BB,AUT,Groups,TA/TO,0,0,0,F,F,0,No Deposit,247.0,179.0,0,Transient,4.27,0,0,Check-Out,2019-09-03 -Resort Hotel,1,303,2016,March,16,9,0,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,41,Transient-Party,80.85,0,0,Canceled,2018-12-03 -City Hotel,0,0,2017,February,22,23,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,70.54,0,1,Check-Out,2020-04-02 -Resort Hotel,1,48,2017,June,22,28,2,7,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,C,G,0,No Deposit,248.0,179.0,0,Transient,217.0,0,2,Canceled,2020-01-04 -City Hotel,0,27,2016,July,16,27,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,H,0,No Deposit,12.0,179.0,0,Transient,74.92,0,0,Check-Out,2019-07-04 -City Hotel,0,38,2017,August,35,5,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,185.35,0,1,Check-Out,2020-07-03 -City Hotel,0,73,2016,December,23,29,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,79.19,0,0,Check-Out,2018-11-02 -City Hotel,0,99,2016,October,45,15,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,73.21,0,0,Check-Out,2019-09-03 -Resort Hotel,0,24,2016,June,28,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,306.0,179.0,0,Transient,93.93,0,0,Check-Out,2019-01-03 -Resort Hotel,1,50,2017,March,19,21,2,3,2,0.0,0,HB,ISR,Groups,TA/TO,1,0,0,D,A,2,No Deposit,9.0,179.0,0,Transient,40.19,0,0,Canceled,2020-04-02 -City Hotel,0,2,2016,April,43,16,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,D,D,0,No Deposit,12.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-06-03 -Resort Hotel,0,145,2016,August,28,9,0,1,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,188.98,0,0,Check-Out,2019-06-03 -City Hotel,1,105,2017,July,27,4,2,5,2,1.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,166.95,0,0,Canceled,2020-05-03 -City Hotel,0,110,2016,October,45,2,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.03,0,0,Check-Out,2019-08-04 -Resort Hotel,0,37,2015,October,44,31,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,191.0,179.0,0,Transient,87.81,0,0,Check-Out,2018-09-02 -City Hotel,0,143,2017,June,26,18,1,2,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.2,0,1,Check-Out,2020-02-01 -City Hotel,0,114,2016,November,36,6,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,132.24,0,1,Check-Out,2019-05-04 -City Hotel,1,0,2017,March,46,4,2,0,2,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,257.0,0,Transient,2.86,0,0,Canceled,2020-02-01 -Resort Hotel,1,31,2016,August,36,13,0,1,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,164.31,1,0,Canceled,2019-06-03 -Resort Hotel,0,16,2017,May,26,5,1,3,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,15.0,179.0,0,Transient,196.05,1,3,Check-Out,2020-06-02 -City Hotel,0,259,2017,May,22,13,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,68.72,0,1,Check-Out,2020-03-03 -City Hotel,0,1,2017,May,21,2,0,2,1,0.0,0,BB,GBR,Aviation,Corporate,1,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,124.26,0,1,Check-Out,2020-02-01 -City Hotel,0,55,2017,August,34,12,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,208.0,179.0,0,Transient,145.66,0,0,Check-Out,2020-06-02 -Resort Hotel,0,43,2017,January,3,28,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,0.68,0,0,Check-Out,2019-11-03 -City Hotel,1,249,2017,September,35,14,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,41.19,0,0,Canceled,2020-07-03 -City Hotel,0,5,2016,June,26,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,3,No Deposit,330.0,219.0,0,Transient,38.49,0,0,Check-Out,2019-08-04 -Resort Hotel,0,3,2016,June,26,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,60.96,0,0,Check-Out,2019-07-04 -City Hotel,1,62,2017,June,22,21,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.92,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2016,November,49,1,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,E,2,No Deposit,212.0,179.0,0,Transient,85.71,1,0,Check-Out,2019-10-04 -City Hotel,0,95,2017,May,16,13,1,3,2,0.0,0,SC,GBR,Direct,Direct,0,0,0,E,A,1,No Deposit,12.0,179.0,0,Transient-Party,78.0,1,2,Check-Out,2020-02-01 -City Hotel,0,1,2017,March,10,15,0,1,1,0.0,0,SC,BEL,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,80.63,0,1,Check-Out,2020-03-03 -City Hotel,0,179,2017,June,30,19,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Transient,123.73,0,0,Check-Out,2020-04-02 -City Hotel,0,81,2016,July,30,21,0,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,90.68,0,1,Check-Out,2019-10-04 -City Hotel,1,324,2016,May,46,28,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,90.51,0,0,Canceled,2018-08-03 -City Hotel,0,92,2016,May,22,31,2,4,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,145.76,0,2,Check-Out,2019-01-03 -City Hotel,0,43,2015,July,32,5,1,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,113.92,0,0,Check-Out,2018-05-03 -Resort Hotel,1,153,2017,June,27,19,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,22.0,179.0,0,Transient,156.6,0,0,Canceled,2020-02-01 -Resort Hotel,0,21,2016,May,43,15,1,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,67.41,0,0,Check-Out,2019-04-03 -City Hotel,0,2,2017,July,35,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,122.31,0,0,Check-Out,2020-06-02 -City Hotel,0,254,2017,July,31,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,106.41,0,0,Check-Out,2020-04-02 -Resort Hotel,1,185,2016,October,43,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,66.32,0,0,Canceled,2019-09-03 -Resort Hotel,0,2,2015,October,46,10,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,238.0,0,Transient-Party,57.96,0,0,Check-Out,2018-08-03 -City Hotel,0,38,2016,June,26,23,2,3,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,105.26,0,1,Check-Out,2019-05-04 -City Hotel,0,106,2015,July,27,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,45.0,0,Transient-Party,89.43,0,1,Canceled,2018-11-02 -City Hotel,0,82,2017,May,11,29,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,14.0,179.0,0,Transient,76.92,0,0,No-Show,2020-02-01 -Resort Hotel,0,19,2015,December,53,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,241.0,179.0,0,Transient,60.77,1,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2016,December,12,14,1,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,314.0,331.0,0,Transient-Party,37.24,0,0,Check-Out,2019-12-04 -Resort Hotel,1,41,2016,July,26,13,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,120.65,0,0,Canceled,2019-06-03 -City Hotel,1,406,2017,July,26,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.46,0,0,Canceled,2020-06-02 -Resort Hotel,0,252,2017,July,29,17,2,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,167.68,1,3,Check-Out,2020-07-03 -Resort Hotel,1,223,2017,May,18,28,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,159.0,179.0,0,Transient,119.44,0,2,Canceled,2020-01-04 -Resort Hotel,0,3,2017,August,37,28,0,1,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,81.11,1,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,December,50,31,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,1,0,1,D,D,1,No Deposit,14.0,224.0,0,Transient,59.59,1,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,January,12,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,I,2,No Deposit,10.0,179.0,0,Transient,0.22,1,2,Check-Out,2019-10-04 -Resort Hotel,0,1,2017,January,2,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,231.0,0,Transient,35.99,0,0,Check-Out,2019-11-03 -City Hotel,0,103,2016,December,51,2,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Transient,88.98,0,0,Check-Out,2019-10-04 -City Hotel,0,160,2017,April,16,24,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,83.88,0,0,Check-Out,2020-02-01 -City Hotel,1,146,2016,September,44,20,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,128.11,0,0,No-Show,2018-05-03 -City Hotel,1,320,2015,October,43,19,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,101.48,0,0,Check-Out,2018-07-03 -Resort Hotel,0,0,2015,August,39,15,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,61.58,0,0,Check-Out,2018-06-02 -City Hotel,1,156,2017,May,23,28,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,95.24,0,0,Canceled,2020-02-01 -City Hotel,1,12,2017,May,10,9,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.72,0,2,Canceled,2020-03-03 -Resort Hotel,0,3,2015,December,38,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,40.68,0,1,Check-Out,2018-12-03 -City Hotel,0,0,2016,March,16,10,2,4,2,0.0,0,BB,GBR,Complementary,Direct,1,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-02-01 -City Hotel,0,11,2017,May,16,20,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,153.0,179.0,0,Transient,164.76,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2015,July,34,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,178.01,0,0,Check-Out,2018-06-02 -Resort Hotel,0,212,2016,May,21,17,1,3,1,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,B,1,Refundable,14.0,179.0,0,Transient-Party,64.46,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,May,22,14,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,152.18,0,0,Check-Out,2019-02-01 -Resort Hotel,0,47,2016,July,29,8,0,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,142.29,0,2,Check-Out,2019-06-03 -City Hotel,1,20,2017,February,11,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,Non Refund,7.0,179.0,0,Transient,75.45,0,0,Canceled,2019-11-03 -City Hotel,1,21,2016,June,4,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,15,Transient,61.41,0,0,Canceled,2018-10-03 -Resort Hotel,0,208,2017,March,17,7,2,5,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,38.95,0,2,Check-Out,2020-04-02 -City Hotel,0,1,2017,February,11,2,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,131.8,0,0,Check-Out,2020-02-01 -City Hotel,1,170,2016,July,21,10,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,177.52,0,2,Canceled,2019-03-04 -City Hotel,0,40,2017,May,23,9,2,0,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Contract,68.07,1,0,Check-Out,2020-02-01 -City Hotel,1,0,2016,October,36,10,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,111.02,0,0,Canceled,2019-05-04 -Resort Hotel,0,37,2017,March,10,28,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,247.0,179.0,0,Transient,75.7,1,1,Check-Out,2020-03-03 -City Hotel,0,226,2016,August,37,14,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Canceled,2019-07-04 -Resort Hotel,0,0,2015,October,39,16,2,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,0,No Deposit,13.0,179.0,0,Group,31.36,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2017,June,26,9,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,A,0,No Deposit,188.0,58.0,0,Transient,88.67,0,0,Check-Out,2019-10-04 -City Hotel,1,47,2015,October,51,31,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,265.0,179.0,0,Transient-Party,68.5,0,0,Canceled,2019-10-04 -Resort Hotel,1,245,2016,February,25,12,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,73.28,0,0,Canceled,2019-02-01 -City Hotel,0,22,2016,March,43,10,0,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.01,0,1,Check-Out,2019-11-03 -City Hotel,0,108,2016,March,17,30,1,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,203.16,1,1,Check-Out,2019-03-04 -Resort Hotel,0,15,2016,March,10,17,2,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.47,0,1,Check-Out,2018-12-03 -Resort Hotel,0,101,2016,June,27,14,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient,62.72,0,0,Check-Out,2019-06-03 -City Hotel,1,199,2017,June,35,18,3,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,119.39,0,0,Canceled,2020-07-03 -City Hotel,0,142,2017,June,21,8,0,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,28.0,179.0,0,Transient-Party,126.96,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,January,4,30,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,62.35,0,1,Check-Out,2019-07-04 -City Hotel,0,151,2016,June,27,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,128.39,0,0,Check-Out,2020-03-03 -Resort Hotel,0,55,2016,July,36,2,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,122.94,0,0,Check-Out,2019-05-04 -City Hotel,1,50,2016,November,51,27,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.43,0,0,Canceled,2019-10-04 -City Hotel,0,10,2016,June,26,2,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,164.84,0,1,Check-Out,2019-07-04 -Resort Hotel,0,2,2017,May,23,10,2,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,156.62,0,0,Check-Out,2020-05-03 -City Hotel,1,44,2017,May,22,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.35,0,1,Canceled,2020-04-02 -City Hotel,1,10,2015,October,44,31,1,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,217.0,0,Transient-Party,75.23,0,0,Canceled,2019-08-04 -City Hotel,1,8,2017,July,33,10,0,3,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,174.59,0,1,Canceled,2020-06-02 -Resort Hotel,1,296,2016,October,46,19,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,59.68,0,0,Canceled,2019-11-03 -City Hotel,0,250,2016,July,36,28,0,5,1,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,11.0,179.0,0,Transient,90.81,0,2,Check-Out,2019-05-04 -Resort Hotel,0,118,2017,March,18,29,0,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,241.0,179.0,0,Transient,95.15,0,2,Check-Out,2020-03-03 -City Hotel,0,255,2016,August,36,24,0,3,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,111.64,0,1,Check-Out,2019-05-04 -Resort Hotel,1,16,2016,February,10,12,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,78.94,0,0,Canceled,2019-08-04 -City Hotel,0,39,2017,March,15,5,0,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,68.0,179.0,0,Transient,67.19,0,1,Check-Out,2020-02-01 -Resort Hotel,0,1,2017,May,23,4,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,146.66,0,0,Check-Out,2020-04-02 -City Hotel,1,107,2016,March,17,6,2,3,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,109.58,0,0,Canceled,2019-01-03 -Resort Hotel,0,4,2016,December,51,31,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient-Party,61.01,0,0,Check-Out,2019-11-03 -City Hotel,0,49,2016,October,44,5,1,3,2,1.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,126.22,0,3,Check-Out,2019-07-04 -City Hotel,1,164,2016,September,38,18,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.07,0,0,Canceled,2018-08-03 -City Hotel,1,94,2017,June,28,16,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,148.0,179.0,75,Transient,121.2,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2015,August,28,16,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,249.0,179.0,0,Transient,252.0,1,2,Check-Out,2018-06-02 -Resort Hotel,0,37,2016,September,41,18,1,5,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,177.28,0,0,Check-Out,2019-08-04 -Resort Hotel,0,26,2016,August,36,19,1,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,192.32,1,0,Check-Out,2018-08-03 -Resort Hotel,0,45,2016,March,8,10,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,51.23,0,0,Check-Out,2019-02-01 -City Hotel,1,15,2016,March,8,21,2,5,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,100.82,0,0,Canceled,2019-03-04 -Resort Hotel,1,239,2015,July,35,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,237.0,179.0,0,Transient,58.99,0,0,Canceled,2018-07-03 -City Hotel,1,37,2017,September,38,10,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.5,0,0,Canceled,2019-11-03 -City Hotel,1,0,2016,January,3,7,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,64.51,0,1,No-Show,2018-11-02 -City Hotel,1,163,2016,October,36,14,2,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,63.52,0,0,Canceled,2019-10-04 -City Hotel,0,31,2016,April,17,31,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.98,0,1,Check-Out,2019-03-04 -City Hotel,0,90,2017,May,22,24,1,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,87.0,179.0,0,Transient-Party,94.19,0,0,Check-Out,2020-03-03 -City Hotel,1,163,2016,February,16,5,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,41,Transient,60.08,0,0,Canceled,2018-10-03 -City Hotel,0,100,2017,May,23,29,1,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,100.84,0,0,Check-Out,2020-04-02 -City Hotel,0,36,2017,March,12,27,2,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,73.0,179.0,0,Transient-Party,60.98,0,0,Check-Out,2019-12-04 -Resort Hotel,0,22,2017,February,10,9,2,1,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient-Party,37.88,0,0,Check-Out,2020-03-03 -City Hotel,1,9,2016,July,29,10,0,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,81.48,0,2,Canceled,2019-06-03 -City Hotel,0,1,2017,June,27,28,0,1,1,0.0,0,BB,,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,86.55,0,0,Check-Out,2020-03-03 -City Hotel,1,397,2016,September,27,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,73.78,0,0,Canceled,2019-06-03 -City Hotel,1,152,2016,April,14,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.91,0,0,Canceled,2019-02-01 -City Hotel,0,9,2016,May,21,20,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,85.26,0,1,Check-Out,2019-02-01 -City Hotel,0,13,2017,July,25,14,1,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Contract,171.57,0,2,Canceled,2019-05-04 -Resort Hotel,0,224,2015,October,43,31,1,2,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,31.04,0,0,Check-Out,2018-10-03 -City Hotel,1,253,2016,June,26,28,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,97.21,0,0,Canceled,2019-02-01 -City Hotel,0,9,2015,December,53,30,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,61.33,0,2,Check-Out,2018-12-03 -City Hotel,0,2,2017,April,18,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,0,No Deposit,33.0,75.0,0,Transient,63.9,0,0,Check-Out,2020-02-01 -City Hotel,1,47,2017,August,31,24,2,2,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient,161.2,0,1,Canceled,2020-04-02 -City Hotel,1,188,2016,May,23,23,2,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,71.59,0,0,Canceled,2019-05-04 -City Hotel,0,2,2015,July,31,10,0,1,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,61.89,0,0,Check-Out,2018-05-03 -Resort Hotel,0,102,2016,October,16,30,4,1,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,39.44,0,0,Check-Out,2019-03-04 -Resort Hotel,1,88,2016,February,11,15,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,17,Transient-Party,87.55,0,0,Canceled,2018-11-02 -City Hotel,1,42,2015,September,38,21,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,146.38,0,0,Canceled,2018-08-03 -Resort Hotel,0,243,2016,September,35,13,1,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,78.34,0,0,Check-Out,2019-08-04 -Resort Hotel,0,85,2016,August,32,16,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,167.62,0,0,Check-Out,2018-06-02 -City Hotel,1,246,2016,May,22,29,2,1,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,62.17,0,0,Canceled,2019-02-01 -City Hotel,0,11,2017,January,3,20,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,64.55,0,1,Check-Out,2019-10-04 -Resort Hotel,0,84,2016,May,25,27,0,3,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,185.26,1,2,Check-Out,2019-06-03 -City Hotel,0,73,2017,July,28,21,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,10.0,179.0,0,Transient,123.01,0,2,Check-Out,2020-06-02 -City Hotel,0,24,2015,July,36,9,0,3,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,77.07,0,0,Check-Out,2018-08-03 -City Hotel,1,277,2016,August,36,24,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.29,0,0,Canceled,2018-08-03 -City Hotel,0,43,2016,July,29,25,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,100.67,0,0,Check-Out,2019-05-04 -Resort Hotel,1,101,2017,July,36,13,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,124.05,0,0,Canceled,2020-06-02 -Resort Hotel,0,45,2015,September,43,8,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,L,A,0,No Deposit,14.0,179.0,0,Transient,108.73,0,0,Check-Out,2018-08-03 -Resort Hotel,0,51,2015,December,53,30,0,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,130.25,0,1,Check-Out,2018-11-02 -Resort Hotel,1,115,2016,February,17,30,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,318.0,179.0,0,Transient,95.48,0,0,Canceled,2019-05-04 -City Hotel,0,28,2017,April,17,15,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,7.0,179.0,0,Transient,151.5,0,2,Check-Out,2020-04-02 -Resort Hotel,1,269,2016,October,45,29,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Contract,77.76,0,0,Canceled,2019-12-04 -Resort Hotel,1,40,2017,January,2,1,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,60.98,0,0,Canceled,2019-08-04 -City Hotel,0,155,2017,July,33,9,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,149.21,0,0,Check-Out,2020-06-02 -City Hotel,0,43,2017,June,27,5,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.96,0,2,Check-Out,2020-03-03 -Resort Hotel,0,106,2016,July,37,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,81.93,0,0,Check-Out,2019-05-04 -City Hotel,0,6,2015,July,33,5,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,111.59,0,2,Check-Out,2018-06-02 -City Hotel,0,11,2016,October,22,16,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,88.91,0,1,Check-Out,2019-12-04 -Resort Hotel,1,109,2017,May,21,21,2,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,89.29,0,1,Check-Out,2020-03-03 -City Hotel,0,22,2016,April,17,9,0,3,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,222.0,0,Transient-Party,91.34,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,January,4,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,174.0,179.0,0,Group,33.29,0,1,Check-Out,2019-09-03 -Resort Hotel,0,295,2016,September,36,10,2,5,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,215.37,1,0,Check-Out,2019-07-04 -City Hotel,0,41,2016,April,18,28,2,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,198.96,1,2,Check-Out,2019-03-04 -Resort Hotel,1,105,2015,September,46,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.31,0,0,Canceled,2018-06-02 -City Hotel,0,154,2017,May,24,27,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,179.0,179.0,0,Transient-Party,118.55,0,0,Check-Out,2019-07-04 -City Hotel,1,48,2016,January,4,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,60.66,0,1,Canceled,2018-12-03 -City Hotel,1,112,2016,June,49,15,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,7.0,179.0,0,Transient,113.4,0,0,Canceled,2019-07-04 -Resort Hotel,0,21,2015,December,51,27,2,2,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,32.59,0,2,Check-Out,2018-11-02 -City Hotel,1,83,2016,September,18,23,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,226.69,0,0,Canceled,2019-02-01 -Resort Hotel,0,243,2017,May,21,2,4,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,H,2,No Deposit,378.0,179.0,0,Transient,81.76,0,0,Canceled,2019-02-01 -Resort Hotel,1,141,2015,March,11,31,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,61.42,0,0,Canceled,2018-11-02 -City Hotel,1,153,2016,July,36,9,2,2,2,2.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.29,0,3,Canceled,2019-04-03 -City Hotel,0,31,2016,April,18,17,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,75.47,0,3,Check-Out,2019-02-01 -City Hotel,0,54,2016,December,49,5,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.1,1,0,Check-Out,2018-09-02 -Resort Hotel,0,192,2016,October,43,13,3,4,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,G,D,0,No Deposit,74.0,179.0,0,Transient-Party,101.42,1,0,Check-Out,2019-09-03 -City Hotel,0,378,2015,September,42,5,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient-Party,108.16,0,0,Check-Out,2018-08-03 -Resort Hotel,0,42,2016,October,43,27,1,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,I,2,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-05-03 -City Hotel,1,74,2016,May,22,27,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.34,0,2,Canceled,2019-02-01 -City Hotel,1,39,2017,July,27,18,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,149.86,0,2,Canceled,2020-02-01 -Resort Hotel,0,5,2016,July,42,30,1,1,3,1.0,0,BB,,Direct,Direct,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-08-04 -City Hotel,0,17,2015,September,36,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,125.05,0,0,Check-Out,2017-10-03 -Resort Hotel,0,161,2016,February,10,31,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,Refundable,4.0,223.0,0,Transient-Party,80.05,0,0,Check-Out,2018-11-02 -City Hotel,1,0,2017,February,9,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,0.0,0,0,Canceled,2020-06-02 -City Hotel,0,40,2015,August,36,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,187.76,0,0,Canceled,2019-12-04 -City Hotel,0,8,2015,December,49,19,1,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,97.36,0,3,Check-Out,2018-09-02 -City Hotel,1,18,2016,December,50,18,0,1,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,201.0,179.0,0,Transient,74.09,0,0,Canceled,2019-10-04 -City Hotel,1,106,2017,December,53,27,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,30.0,179.0,20,Transient,104.43,0,0,Canceled,2019-10-04 -City Hotel,0,296,2017,July,32,5,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.56,0,1,Check-Out,2020-06-02 -Resort Hotel,0,5,2017,January,3,16,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient-Party,39.94,1,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,May,22,29,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,77.5,1,2,Check-Out,2019-02-01 -City Hotel,0,147,2017,March,17,30,2,3,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,75.0,179.0,0,Transient,96.51,0,1,Check-Out,2020-04-02 -City Hotel,0,2,2017,February,11,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,10.0,217.0,0,Transient,100.66,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,October,44,13,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,224.0,0,Transient,58.71,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,August,35,6,0,2,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,B,B,2,No Deposit,16.0,179.0,0,Transient-Party,88.65,0,1,Check-Out,2018-08-03 -City Hotel,1,45,2015,October,45,28,1,1,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,224.0,0,Transient-Party,89.4,0,0,Canceled,2018-08-03 -City Hotel,0,2,2016,August,53,5,1,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,70.28,0,1,Check-Out,2019-09-03 -City Hotel,0,26,2017,June,22,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,16.0,222.0,0,Transient,120.95,0,0,Check-Out,2020-06-02 -City Hotel,1,307,2016,August,44,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,118.38,0,0,Canceled,2019-08-04 -City Hotel,0,49,2016,May,23,27,1,4,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,220.37,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,July,31,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,128.83,1,2,Check-Out,2018-05-03 -City Hotel,1,238,2016,July,34,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.2,0,1,Canceled,2019-02-01 -Resort Hotel,1,49,2015,July,33,4,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,170.85,0,0,Canceled,2018-06-02 -City Hotel,1,334,2015,December,46,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,62,Transient-Party,60.87,0,0,Canceled,2018-08-03 -City Hotel,0,1,2015,December,51,10,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,7.0,179.0,0,Transient,80.83,0,2,Check-Out,2018-08-03 -Resort Hotel,0,32,2016,November,50,23,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,105.88,0,1,Check-Out,2019-04-03 -Resort Hotel,0,25,2017,March,19,19,0,1,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,E,E,0,No Deposit,31.0,179.0,75,Transient-Party,82.2,0,0,Check-Out,2020-02-01 -City Hotel,1,5,2017,May,21,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,179.0,0,Transient,3.14,0,0,Canceled,2019-12-04 -Resort Hotel,0,33,2015,September,44,5,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,1,No Deposit,14.0,179.0,0,Transient,102.71,0,0,Check-Out,2018-08-03 -Resort Hotel,1,200,2017,July,29,3,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,154.88,0,0,Canceled,2020-02-01 -City Hotel,0,12,2017,January,3,28,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,115.12,1,1,Check-Out,2019-12-04 -City Hotel,0,135,2016,March,10,12,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,0,Transient,65.81,1,1,Check-Out,2018-12-03 -Resort Hotel,1,85,2017,June,21,20,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,152.0,179.0,0,Transient,162.88,0,0,Canceled,2020-03-03 -Resort Hotel,0,11,2015,October,42,4,1,0,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,32.16,0,0,Check-Out,2018-08-03 -Resort Hotel,0,184,2016,February,4,15,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,D,0,No Deposit,13.0,331.0,0,Transient,49.9,0,0,Check-Out,2018-12-03 -City Hotel,0,89,2016,August,25,20,2,2,1,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,116.54,0,2,Check-Out,2020-02-01 -City Hotel,0,9,2016,February,8,9,0,1,2,0.0,0,SC,PRT,Complementary,Corporate,1,0,0,P,K,0,No Deposit,10.0,179.0,0,Transient,0.44,0,0,No-Show,2019-03-04 -City Hotel,1,105,2017,February,8,2,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.54,0,0,Canceled,2019-10-04 -Resort Hotel,0,49,2016,March,11,24,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,222.0,0,Transient,40.64,0,0,Check-Out,2019-12-04 -City Hotel,0,49,2016,October,44,28,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,177.88,0,0,Check-Out,2019-12-04 -Resort Hotel,0,110,2016,March,16,10,0,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,300.0,179.0,0,Transient,76.88,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2017,May,21,21,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,85.95,0,0,Check-Out,2020-04-02 -City Hotel,1,420,2015,October,45,29,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,64.21,0,0,Canceled,2018-08-03 -Resort Hotel,1,65,2016,March,10,9,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,43,Transient,94.07,0,0,Canceled,2018-12-03 -City Hotel,1,1,2015,August,40,11,0,1,1,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-06-02 -Resort Hotel,1,373,2016,October,36,5,1,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,305.0,179.0,0,Transient,61.57,0,0,Canceled,2019-06-03 -City Hotel,0,5,2017,May,23,6,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,123.0,179.0,0,Transient-Party,120.28,0,0,Check-Out,2020-03-03 -Resort Hotel,0,32,2017,July,28,30,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,2,No Deposit,251.0,179.0,0,Transient,160.02,0,0,Check-Out,2020-02-01 -City Hotel,1,261,2016,October,46,27,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,42,Transient,67.78,0,0,Canceled,2018-09-02 -City Hotel,0,86,2017,April,23,16,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.31,0,2,Check-Out,2019-11-03 -Resort Hotel,1,0,2017,March,17,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,16.0,67.0,0,Transient,35.38,0,0,Canceled,2019-12-04 -City Hotel,1,247,2015,October,36,29,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,67.83,0,0,Canceled,2018-08-03 -Resort Hotel,1,13,2017,May,23,9,2,5,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,232.91,0,0,Canceled,2020-03-03 -City Hotel,1,102,2016,November,42,25,2,4,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,156.3,0,0,Canceled,2019-07-04 -Resort Hotel,0,239,2016,March,18,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,34.4,0,0,Check-Out,2019-04-03 -Resort Hotel,1,3,2016,January,4,16,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,76.15,0,2,Canceled,2019-10-04 -City Hotel,1,151,2016,August,26,30,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,42,Transient-Party,62.48,0,0,Canceled,2018-12-03 -Resort Hotel,1,63,2016,August,34,13,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,95.0,179.0,0,Transient,252.0,0,0,Canceled,2019-07-04 -City Hotel,1,393,2016,September,43,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.95,0,0,Canceled,2018-08-03 -City Hotel,1,144,2016,June,26,30,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,131.0,179.0,0,Transient,130.55,0,0,Canceled,2019-06-03 -Resort Hotel,0,0,2017,January,3,13,0,1,2,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,A,0,No Deposit,16.0,75.0,0,Transient,33.41,0,0,Check-Out,2019-11-03 -City Hotel,1,439,2016,October,44,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.88,0,0,Canceled,2018-08-03 -City Hotel,1,80,2016,July,36,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,97.0,0,0,No-Show,2018-09-02 -City Hotel,1,104,2016,June,26,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Transient,119.33,0,0,Canceled,2017-12-03 -City Hotel,0,37,2016,December,51,28,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.17,0,1,Check-Out,2019-10-04 -City Hotel,0,88,2016,June,28,31,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.66,0,1,Check-Out,2019-03-04 -City Hotel,1,32,2017,May,21,17,2,1,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.92,0,2,Canceled,2019-11-03 -City Hotel,1,46,2016,April,17,21,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,70.29,0,0,Canceled,2019-01-03 -City Hotel,0,107,2017,July,33,27,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Contract,94.4,0,2,Check-Out,2020-04-02 -Resort Hotel,0,25,2016,September,45,14,2,3,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,2.12,0,0,Check-Out,2018-09-02 -City Hotel,0,134,2016,December,52,7,2,3,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,29.0,179.0,0,Transient-Party,76.61,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,March,10,21,2,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,243.0,0,Transient,0.0,0,0,Check-Out,2020-04-02 -City Hotel,0,30,2017,August,33,13,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,157.46,1,1,Check-Out,2020-06-02 -City Hotel,0,53,2017,March,11,20,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,72.05,0,0,Check-Out,2020-03-03 -Resort Hotel,0,86,2017,February,13,20,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,71.7,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,October,46,25,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,114.18,0,2,Check-Out,2019-08-04 -Resort Hotel,0,299,2016,October,42,5,1,10,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,62.18,0,0,Check-Out,2019-05-04 -Resort Hotel,0,2,2015,October,36,20,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,95.0,179.0,0,Contract,43.59,0,0,Check-Out,2018-09-02 -Resort Hotel,0,11,2017,February,35,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,12.0,243.0,0,Transient,81.8,1,0,Check-Out,2020-06-02 -City Hotel,0,42,2017,April,17,24,0,2,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.0,0,1,Check-Out,2019-12-04 -City Hotel,0,17,2016,June,27,29,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,1,0,0,A,E,0,No Deposit,74.0,179.0,38,Transient,129.6,0,0,Canceled,2019-08-04 -City Hotel,0,79,2016,October,42,12,2,5,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,149.42,0,0,Check-Out,2019-08-04 -City Hotel,0,55,2016,October,45,5,1,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,145.88,0,0,Check-Out,2019-09-03 -City Hotel,1,0,2015,October,44,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,45.0,0,Transient,34.22,0,0,Canceled,2018-06-02 -Resort Hotel,0,20,2017,July,34,16,0,7,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,174.0,179.0,0,Transient,75.94,0,0,Check-Out,2019-09-03 -Resort Hotel,0,15,2015,October,43,27,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient-Party,73.8,0,0,Check-Out,2019-08-04 -City Hotel,0,51,2015,September,48,31,0,2,1,0.0,0,BB,CHN,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.04,0,0,Check-Out,2018-08-03 -City Hotel,0,209,2017,August,37,9,2,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,133.92,0,0,Check-Out,2020-02-01 -Resort Hotel,0,259,2016,June,26,16,0,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,124.42,1,1,Check-Out,2019-03-04 -City Hotel,1,0,2016,January,3,28,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,92.72,0,1,No-Show,2019-02-01 -Resort Hotel,0,0,2017,May,16,11,3,0,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,C,C,0,No Deposit,241.0,179.0,0,Group,61.5,0,1,Check-Out,2020-02-01 -City Hotel,1,148,2016,September,45,6,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.64,0,0,Canceled,2019-09-03 -City Hotel,1,99,2017,May,20,14,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,104.96,0,0,Canceled,2020-03-03 -City Hotel,1,11,2015,August,37,21,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.29,0,0,Canceled,2018-06-02 -City Hotel,0,34,2016,December,53,23,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.52,0,3,Check-Out,2019-12-04 -City Hotel,1,0,2016,January,3,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.09,0,1,No-Show,2018-12-03 -City Hotel,1,0,2015,October,4,10,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,140.94,0,0,Canceled,2018-12-03 -City Hotel,1,432,2016,September,44,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,39,Transient,77.31,0,0,Canceled,2018-11-02 -City Hotel,0,2,2017,March,17,9,0,2,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,113.37,0,3,Check-Out,2020-03-03 -City Hotel,0,20,2015,September,44,10,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,61,Transient-Party,75.52,0,0,Check-Out,2018-08-03 -City Hotel,1,11,2015,August,30,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,123.15,0,0,Canceled,2018-08-03 -Resort Hotel,0,136,2016,August,35,28,0,7,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,E,0,No Deposit,75.0,179.0,0,Transient-Party,128.9,0,0,Check-Out,2019-05-04 -City Hotel,1,364,2017,May,22,10,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,213.89,0,0,Canceled,2019-11-03 -City Hotel,1,294,2016,July,31,13,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,184.8,0,0,Canceled,2018-07-03 -Resort Hotel,0,303,2017,July,26,15,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,157.13,1,1,Canceled,2020-06-02 -City Hotel,1,255,2015,October,42,5,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,73.09,0,0,Canceled,2018-09-02 -City Hotel,0,85,2017,April,22,11,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.48,0,0,Check-Out,2020-03-03 -Resort Hotel,1,278,2017,August,21,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,Non Refund,239.0,179.0,0,Transient,147.62,0,0,Canceled,2019-12-04 -Resort Hotel,0,40,2015,October,43,9,1,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,240.0,179.0,0,Transient,155.37,0,0,Canceled,2018-05-03 -Resort Hotel,1,393,2016,May,21,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,80.19,0,0,Canceled,2019-02-01 -City Hotel,0,101,2017,May,28,14,0,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.38,0,0,Check-Out,2020-06-02 -Resort Hotel,0,26,2016,October,43,8,2,3,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,236.0,0,Transient,68.98,0,0,Check-Out,2019-09-03 -Resort Hotel,0,117,2015,October,49,15,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,243.0,179.0,0,Transient-Party,114.32,0,0,Check-Out,2018-09-02 -City Hotel,1,88,2016,April,21,22,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,80.27,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2017,January,3,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,338.0,331.0,0,Transient,32.42,1,0,Check-Out,2019-12-04 -Resort Hotel,0,82,2016,December,51,30,0,1,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,C,1,No Deposit,378.0,179.0,0,Transient-Party,63.07,0,0,Check-Out,2019-11-03 -Resort Hotel,0,22,2016,September,37,6,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,231.21,0,3,Check-Out,2019-08-04 -City Hotel,1,33,2016,July,28,21,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.3,0,0,No-Show,2019-03-04 -Resort Hotel,1,133,2017,July,32,31,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,63.28,0,0,Canceled,2020-04-02 -City Hotel,1,404,2016,July,37,28,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,62.14,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,August,45,30,0,3,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,154.77,1,1,Check-Out,2019-06-03 -Resort Hotel,0,98,2017,July,28,29,1,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient-Party,151.1,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2015,November,44,12,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,60.89,0,0,Check-Out,2019-11-03 -Resort Hotel,0,37,2015,December,49,24,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,60.39,0,0,Check-Out,2018-12-03 -City Hotel,0,24,2015,August,36,21,0,4,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,G,A,0,No Deposit,11.0,179.0,0,Transient,132.45,1,3,Check-Out,2018-06-02 -Resort Hotel,0,4,2017,January,2,9,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,318.0,331.0,0,Transient-Party,31.62,0,0,No-Show,2020-01-04 -Resort Hotel,0,44,2016,June,17,21,0,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,35.0,0,0,Check-Out,2019-02-01 -City Hotel,1,363,2017,February,11,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.23,0,0,Canceled,2019-10-04 -Resort Hotel,0,152,2017,April,22,28,2,1,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,163.0,179.0,0,Transient,103.67,0,0,Check-Out,2020-02-01 -Resort Hotel,0,242,2016,June,29,24,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,1,No Deposit,178.0,179.0,0,Transient,74.11,0,3,Check-Out,2020-01-04 -City Hotel,0,109,2016,March,17,12,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,90.75,0,2,Check-Out,2019-04-03 -Resort Hotel,0,15,2015,September,39,11,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,204.19,1,2,Check-Out,2018-08-03 -City Hotel,0,2,2017,August,34,13,0,1,2,0.0,0,SC,,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,95,2017,August,29,4,2,7,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,100.61,0,0,Check-Out,2020-07-03 -City Hotel,0,141,2015,November,48,12,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,91.88,0,0,Check-Out,2019-10-04 -City Hotel,0,254,2015,September,41,21,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Contract,63.54,0,0,Check-Out,2017-12-03 -Resort Hotel,0,19,2016,June,34,2,3,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,148.0,179.0,0,Transient,63.47,0,0,Check-Out,2019-06-03 -Resort Hotel,0,235,2016,August,34,27,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,169.0,179.0,0,Transient,155.5,0,0,Check-Out,2020-07-03 -Resort Hotel,0,28,2016,December,53,24,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,212.77,1,0,Check-Out,2019-11-03 -City Hotel,1,11,2016,March,16,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,76.89,0,0,Check-Out,2019-02-01 -City Hotel,1,414,2017,March,10,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,172.0,179.0,0,Transient,72.7,0,0,Canceled,2019-10-04 -City Hotel,1,51,2016,August,36,31,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,69.8,0,2,Canceled,2019-05-04 -Resort Hotel,0,173,2017,July,16,23,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,118.89,0,2,Check-Out,2020-04-02 -City Hotel,0,3,2015,October,45,13,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.02,0,0,Check-Out,2018-07-03 -Resort Hotel,1,51,2016,July,20,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,244.0,179.0,0,Transient,165.88,0,1,Canceled,2019-08-04 -City Hotel,1,275,2017,June,28,16,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient,119.68,0,1,Canceled,2020-01-04 -Resort Hotel,1,196,2017,May,21,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient,113.28,0,0,Canceled,2019-10-04 -City Hotel,1,150,2016,June,25,22,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,Non Refund,1.0,179.0,0,Transient,164.55,0,0,Canceled,2019-01-03 -City Hotel,0,97,2016,May,18,24,1,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,261.0,179.0,0,Transient-Party,105.0,0,1,Check-Out,2019-02-01 -Resort Hotel,0,11,2016,August,3,30,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-06-03 -Resort Hotel,0,102,2017,February,8,15,0,5,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,82.79,1,1,Check-Out,2019-10-04 -City Hotel,1,111,2015,August,34,16,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,95.22,0,1,Canceled,2019-06-03 -City Hotel,0,98,2016,June,25,9,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,101.5,0,0,Check-Out,2019-02-01 -City Hotel,0,138,2016,March,24,28,2,5,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,102.04,0,1,Check-Out,2019-05-04 -City Hotel,0,35,2016,October,42,5,1,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,3,No Deposit,11.0,179.0,0,Transient-Party,37.58,0,0,Check-Out,2019-09-03 -City Hotel,1,326,2015,September,40,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.18,0,0,Canceled,2018-08-03 -City Hotel,0,59,2016,January,12,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,39.0,179.0,0,Transient-Party,70.46,0,0,Check-Out,2018-12-03 -City Hotel,0,3,2017,August,37,9,1,1,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,D,0,No Deposit,38.0,179.0,0,Transient,125.21,0,0,Check-Out,2020-06-02 -Resort Hotel,0,45,2016,May,21,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,128.19,1,0,Check-Out,2019-03-04 -City Hotel,1,0,2017,May,17,9,0,1,2,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,263.0,0,Transient,2.65,0,0,Canceled,2020-01-04 -City Hotel,0,37,2016,December,22,9,2,1,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,97.17,0,0,Check-Out,2018-12-03 -Resort Hotel,0,146,2016,March,24,16,0,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,14.0,224.0,0,Transient-Party,60.27,0,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2015,September,44,20,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,15.0,179.0,0,Transient-Party,50.46,0,0,Check-Out,2019-10-04 -City Hotel,0,16,2017,August,37,13,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,173.0,179.0,0,Transient-Party,109.13,0,0,Check-Out,2020-07-03 -Resort Hotel,1,15,2017,July,37,19,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Contract,119.55,1,2,Canceled,2020-03-03 -City Hotel,1,1,2016,September,43,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,60.1,0,0,Canceled,2019-06-03 -Resort Hotel,0,312,2017,May,28,2,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,198.13,0,2,Check-Out,2020-07-03 -City Hotel,0,1,2017,July,36,29,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.24,0,0,Check-Out,2020-06-02 -City Hotel,0,86,2017,June,27,27,1,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,2,No Deposit,11.0,179.0,0,Transient,116.95,1,0,Check-Out,2020-03-03 -City Hotel,1,49,2016,September,46,13,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,120.86,0,0,Check-Out,2019-08-04 -Resort Hotel,0,226,2016,September,44,15,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,150.0,179.0,0,Transient,75.9,0,0,Check-Out,2019-08-04 -City Hotel,1,212,2016,September,31,14,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,81.54,0,0,Canceled,2018-08-03 -City Hotel,0,49,2016,December,50,7,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.93,0,1,Check-Out,2019-11-03 -City Hotel,1,50,2015,December,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,12.0,331.0,0,Transient,30.46,0,0,Canceled,2019-11-03 -City Hotel,1,15,2016,May,23,24,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,138.49,0,0,Canceled,2019-09-03 -City Hotel,0,89,2016,July,28,14,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.21,0,2,Check-Out,2019-03-04 -Resort Hotel,0,3,2017,August,37,16,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,154.09,0,0,Check-Out,2020-07-03 -Resort Hotel,1,15,2016,April,16,10,1,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,73.91,0,0,Canceled,2018-12-03 -Resort Hotel,1,59,2017,April,20,29,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,75.78,0,0,Canceled,2019-12-04 -City Hotel,1,114,2017,February,9,9,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,196.3,0,0,Canceled,2020-03-03 -City Hotel,0,311,2015,October,44,9,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,B,1,No Deposit,12.0,219.0,0,Transient-Party,87.31,0,0,Check-Out,2018-09-02 -City Hotel,0,207,2016,November,28,20,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,1,0,0,A,A,1,No Deposit,11.0,179.0,41,Transient-Party,99.99,0,0,Check-Out,2019-08-04 -City Hotel,0,135,2016,January,17,16,0,1,1,1.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,60.64,0,0,Check-Out,2019-10-04 -City Hotel,0,83,2016,September,43,18,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.75,0,2,Check-Out,2019-06-03 -City Hotel,0,0,2017,February,9,12,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,E,1,No Deposit,14.0,197.0,0,Transient,74.55,0,0,Check-Out,2019-11-03 -City Hotel,1,39,2016,March,10,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.42,0,0,Canceled,2018-11-02 -City Hotel,1,98,2017,July,15,18,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,92.58,0,1,Check-Out,2020-05-03 -Resort Hotel,0,26,2017,March,11,6,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,75,Contract,75.5,0,2,Check-Out,2020-04-02 -Resort Hotel,0,236,2016,July,27,10,2,5,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,237.0,179.0,0,Transient,92.26,0,2,Check-Out,2019-05-04 -City Hotel,1,49,2015,July,36,5,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.37,0,0,Canceled,2018-08-03 -City Hotel,1,322,2015,October,44,10,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,93.15,0,0,Canceled,2018-07-03 -Resort Hotel,0,1,2017,August,35,18,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,66.07,0,0,Check-Out,2020-01-04 -City Hotel,0,41,2017,April,16,6,2,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,242.47,0,1,Check-Out,2020-02-01 -Resort Hotel,0,4,2015,October,45,10,0,2,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,42.6,1,0,Check-Out,2018-08-03 -City Hotel,1,32,2017,March,9,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,78.35,0,0,Canceled,2020-03-03 -City Hotel,0,15,2016,April,19,31,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.18,0,2,Check-Out,2019-03-04 -City Hotel,1,173,2016,March,9,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,20,Transient,62.16,0,0,Canceled,2018-09-02 -Resort Hotel,1,325,2017,May,34,27,0,1,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,239.0,179.0,0,Transient,226.36,1,0,No-Show,2020-03-03 -City Hotel,0,0,2017,May,21,17,1,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.61,0,1,Check-Out,2020-04-02 -City Hotel,0,12,2016,May,42,11,1,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,92.17,0,1,Check-Out,2019-05-04 -City Hotel,1,6,2017,March,11,29,2,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.1,0,2,Canceled,2019-10-04 -Resort Hotel,1,157,2015,February,49,20,2,4,1,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,D,D,0,Non Refund,34.0,179.0,0,Contract,51.83,0,0,Canceled,2018-11-02 -City Hotel,0,31,2016,December,53,6,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,96.32,0,1,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,February,11,13,1,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,80.0,0,Transient,26.43,0,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2017,February,10,18,1,0,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,3.33,1,0,Check-Out,2019-11-03 -Resort Hotel,0,269,2017,May,25,20,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,68.18,0,1,Check-Out,2019-03-04 -Resort Hotel,0,299,2016,May,21,28,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,60.07,0,0,Canceled,2019-02-01 -City Hotel,1,49,2017,March,19,22,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,129.23,1,0,Canceled,2020-02-01 -City Hotel,1,252,2015,July,35,24,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.19,0,0,Canceled,2018-06-02 -Resort Hotel,0,2,2017,May,13,15,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,334.0,179.0,0,Transient-Party,36.6,0,0,Check-Out,2019-11-03 -City Hotel,1,39,2017,February,9,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,76.0,179.0,0,Transient,72.98,0,0,Canceled,2020-03-03 -City Hotel,1,0,2017,March,21,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,10.0,179.0,0,Transient,70.48,0,0,Canceled,2019-12-04 -Resort Hotel,0,101,2016,May,22,25,2,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,70.02,1,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,March,11,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,2,No Deposit,18.0,224.0,0,Transient,40.81,0,0,Check-Out,2020-03-03 -City Hotel,0,38,2016,July,27,28,0,3,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.45,0,0,Check-Out,2019-03-04 -City Hotel,0,111,2015,November,49,19,0,3,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient-Party,69.86,0,0,Check-Out,2018-12-03 -Resort Hotel,0,85,2016,February,10,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,94.0,179.0,41,Transient,32.24,0,1,Check-Out,2018-10-03 -City Hotel,0,3,2016,July,15,7,2,0,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,126.69,0,2,Check-Out,2019-03-04 -Resort Hotel,0,312,2017,June,33,29,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,114.09,0,1,Check-Out,2020-06-02 -City Hotel,0,48,2015,November,51,25,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,83.34,0,0,Check-Out,2018-12-03 -City Hotel,0,7,2016,October,50,10,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,60.01,0,3,Check-Out,2019-11-03 -City Hotel,0,139,2016,February,10,21,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,42,Transient,73.02,0,0,Check-Out,2018-11-02 -City Hotel,0,3,2016,June,25,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,124.87,0,0,Check-Out,2019-02-01 -Resort Hotel,1,7,2016,August,35,21,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,1,0,G,G,0,No Deposit,238.0,179.0,0,Transient,204.81,0,0,Canceled,2018-12-03 -City Hotel,0,238,2016,October,42,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.08,0,2,Check-Out,2018-08-03 -City Hotel,0,15,2016,April,11,28,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,123.47,0,0,Check-Out,2019-01-03 -Resort Hotel,0,46,2016,December,52,8,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,37.0,179.0,0,Transient,69.91,1,0,Check-Out,2020-01-04 -Resort Hotel,0,38,2017,March,20,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,116.53,0,2,Check-Out,2019-12-04 -City Hotel,0,199,2016,August,35,12,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,173.0,179.0,0,Transient,119.46,0,0,Check-Out,2019-06-03 -City Hotel,0,204,2016,July,36,10,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,146.33,0,2,Check-Out,2019-06-03 -City Hotel,1,57,2015,July,26,19,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.85,0,0,Canceled,2018-06-02 -City Hotel,0,357,2017,June,23,28,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.33,0,1,Check-Out,2020-03-03 -Resort Hotel,0,30,2016,October,43,20,2,1,2,0.0,0,HB,AUT,Groups,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient-Party,78.85,0,0,Check-Out,2019-10-04 -Resort Hotel,0,262,2015,August,36,2,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.96,0,0,Check-Out,2017-11-02 -Resort Hotel,0,3,2017,May,22,29,2,3,3,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-12-04 -City Hotel,0,200,2016,October,45,28,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.85,0,0,Check-Out,2019-09-03 -City Hotel,0,20,2016,May,20,9,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,93.84,0,0,Check-Out,2019-02-01 -City Hotel,0,124,2017,August,33,21,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,127.31,0,1,Check-Out,2020-06-02 -City Hotel,0,48,2016,December,50,24,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,96.63,0,0,Check-Out,2018-12-03 -City Hotel,0,221,2015,October,45,30,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.66,0,0,Check-Out,2018-01-31 -Resort Hotel,0,141,2016,August,38,22,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,238.0,179.0,0,Transient,170.45,1,2,Check-Out,2019-06-03 -Resort Hotel,1,218,2015,December,44,6,2,5,2,0.0,0,HB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,49.56,0,0,No-Show,2018-05-03 -City Hotel,1,34,2017,February,11,17,0,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,67.5,0,0,Check-Out,2018-11-02 -City Hotel,1,156,2016,August,21,24,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.85,0,1,Canceled,2019-10-04 -Resort Hotel,0,0,2016,January,2,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,G,D,0,No Deposit,241.0,179.0,0,Transient,59.78,1,1,Check-Out,2018-10-03 -City Hotel,0,163,2017,March,8,9,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.24,0,1,Check-Out,2020-03-03 -Resort Hotel,0,17,2017,February,10,27,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,78.42,0,1,Check-Out,2018-10-03 -Resort Hotel,0,0,2016,March,17,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,35.08,0,0,Check-Out,2018-12-03 -Resort Hotel,0,183,2016,March,18,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,59.78,0,0,Check-Out,2019-03-04 -City Hotel,1,235,2017,May,22,13,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,75.95,0,0,Canceled,2020-05-03 -City Hotel,1,90,2016,June,27,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,139.33,0,0,No-Show,2019-06-03 -Resort Hotel,1,40,2017,February,7,27,1,0,2,0.0,0,BB,GBR,Corporate,Direct,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,77.05,0,0,Canceled,2019-12-04 -City Hotel,0,15,2016,January,8,5,0,3,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.04,0,0,Check-Out,2019-04-03 -Resort Hotel,0,108,2016,April,23,30,0,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,75.8,1,2,Check-Out,2019-06-03 -City Hotel,0,0,2015,October,45,7,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,79.77,0,0,Check-Out,2018-09-02 -Resort Hotel,0,19,2016,May,50,9,0,4,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,85.0,179.0,0,Transient-Party,68.82,0,0,Check-Out,2019-04-03 -City Hotel,1,97,2016,March,15,13,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.62,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2015,October,45,9,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,124.42,1,0,Check-Out,2018-09-02 -Resort Hotel,0,11,2016,March,22,25,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,30.58,0,0,Check-Out,2019-02-01 -City Hotel,0,12,2015,November,46,24,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,74.0,179.0,0,Transient-Party,117.34,0,0,Check-Out,2019-07-04 -City Hotel,0,109,2016,July,41,11,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Contract,86.46,0,2,Check-Out,2019-07-04 -City Hotel,1,38,2016,April,8,14,0,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,135.5,0,0,Canceled,2019-03-04 -City Hotel,1,19,2016,January,26,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.5,0,0,Canceled,2018-11-02 -City Hotel,1,162,2017,May,21,2,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,75,Transient,62.33,0,1,Canceled,2019-12-04 -City Hotel,1,110,2016,September,40,19,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,157.86,0,0,Canceled,2019-07-04 -Resort Hotel,0,1,2017,June,21,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,109.07,1,2,Check-Out,2020-03-03 -City Hotel,1,37,2015,October,45,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,179.0,0,Transient,34.93,0,0,Canceled,2018-01-31 -City Hotel,0,16,2016,October,43,25,1,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.31,1,0,Check-Out,2019-10-04 -Resort Hotel,0,32,2016,November,44,23,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,97.8,1,0,Check-Out,2018-11-02 -City Hotel,0,0,2016,September,43,17,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,165.55,0,0,Check-Out,2019-05-04 -City Hotel,0,56,2015,October,50,27,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.83,0,2,Check-Out,2019-01-03 -City Hotel,0,43,2016,May,50,24,1,0,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient,74.77,0,0,Check-Out,2019-11-03 -City Hotel,1,0,2017,January,33,9,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,112.06,0,0,Canceled,2019-02-01 -Resort Hotel,0,96,2017,March,16,10,2,3,2,0.0,0,HB,DEU,Corporate,Corporate,1,0,0,A,I,3,No Deposit,14.0,222.0,75,Transient,52.61,0,0,Check-Out,2020-05-03 -City Hotel,1,14,2016,March,17,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,Non Refund,7.0,179.0,0,Transient,64.29,0,0,Canceled,2018-11-02 -City Hotel,1,248,2016,June,26,27,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,7.0,179.0,0,Transient,140.76,0,0,Canceled,2019-01-03 -City Hotel,0,353,2016,December,45,29,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.79,0,2,Canceled,2019-12-04 -Resort Hotel,0,7,2016,January,42,9,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,D,0,No Deposit,12.0,75.0,0,Transient,0.0,1,1,Check-Out,2019-06-03 -City Hotel,1,81,2016,February,9,24,2,0,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,63.94,0,0,Canceled,2019-03-04 -City Hotel,0,262,2017,July,33,15,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,163.59,0,1,Check-Out,2020-06-02 -Resort Hotel,0,20,2017,April,23,10,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,310.0,179.0,0,Transient,83.45,0,0,Check-Out,2020-02-01 -City Hotel,0,90,2016,May,20,9,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,G,F,1,No Deposit,16.0,179.0,0,Transient,148.38,1,2,Check-Out,2019-03-04 -City Hotel,0,96,2015,July,30,5,1,5,1,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,C,2,No Deposit,29.0,179.0,0,Transient-Party,121.91,0,1,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,March,11,30,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,37.83,0,0,Check-Out,2019-05-04 -Resort Hotel,0,152,2017,May,21,31,0,3,2,0.0,0,BB,IRL,Direct,Corporate,0,0,0,D,E,0,Refundable,13.0,179.0,0,Transient-Party,148.58,1,0,Check-Out,2020-02-01 -City Hotel,1,1,2017,November,32,29,0,1,3,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,H,E,0,No Deposit,11.0,179.0,0,Transient,110.4,0,0,Canceled,2019-08-04 -City Hotel,1,214,2017,August,35,22,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,8.0,179.0,0,Transient,172.81,0,0,Canceled,2019-11-03 -City Hotel,0,1,2016,January,8,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,11.0,45.0,0,Transient,61.5,0,1,Check-Out,2018-10-03 -Resort Hotel,0,150,2016,January,50,18,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,313.0,179.0,0,Transient,40.59,0,2,Check-Out,2019-09-03 -Resort Hotel,0,95,2016,October,51,6,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient-Party,177.79,0,1,Check-Out,2019-08-04 -City Hotel,0,12,2015,September,32,6,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,81.79,0,2,Check-Out,2019-06-03 -City Hotel,0,112,2016,May,44,27,0,2,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.83,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2017,March,10,13,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,D,0,No Deposit,346.0,179.0,0,Transient,35.03,0,0,Check-Out,2020-04-02 -City Hotel,1,299,2016,August,37,15,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,133.34,0,0,Canceled,2019-06-03 -City Hotel,0,3,2017,May,23,6,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,149.44,0,2,Check-Out,2020-07-03 -City Hotel,1,72,2016,September,44,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,213.0,179.0,0,Transient,129.22,0,0,Canceled,2019-08-04 -City Hotel,1,33,2017,June,11,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,96.61,0,0,Canceled,2019-02-01 -City Hotel,0,56,2015,October,42,5,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.13,0,0,Check-Out,2018-09-02 -Resort Hotel,0,158,2015,August,31,11,2,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,111.94,0,2,Check-Out,2018-12-03 -City Hotel,1,105,2015,October,44,16,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,136.75,0,2,Canceled,2018-08-03 -City Hotel,0,35,2017,April,17,24,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.94,0,2,Check-Out,2020-03-03 -Resort Hotel,0,137,2017,May,24,26,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,321.0,179.0,0,Contract,74.75,0,0,Check-Out,2020-04-02 -City Hotel,0,259,2016,May,21,21,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.58,0,0,Check-Out,2018-12-03 -City Hotel,1,258,2016,December,53,23,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,41,Transient,102.43,0,0,Canceled,2018-10-03 -Resort Hotel,1,313,2016,June,38,24,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,174.0,179.0,0,Transient,60.72,0,0,Canceled,2019-03-04 -City Hotel,1,37,2016,April,21,21,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,74.32,0,1,Canceled,2019-03-04 -Resort Hotel,0,14,2016,December,50,30,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient-Party,82.44,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2015,November,50,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,113.0,225.0,0,Transient,43.78,0,0,Check-Out,2018-09-02 -Resort Hotel,1,13,2015,September,46,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient-Party,58.52,1,0,Canceled,2018-08-03 -Resort Hotel,0,161,2015,July,30,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Contract,92.5,0,0,Check-Out,2018-06-02 -Resort Hotel,1,3,2015,November,36,8,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,60.0,0,0,Canceled,2017-12-03 -Resort Hotel,0,20,2015,October,45,21,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.48,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,April,16,21,2,0,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,186.49,0,0,Check-Out,2019-02-01 -City Hotel,1,325,2015,September,38,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,96.48,0,0,Canceled,2017-11-02 -City Hotel,0,196,2017,July,23,9,2,1,2,0.0,0,BB,ITA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,78.38,0,0,Check-Out,2020-06-02 -Resort Hotel,0,47,2017,March,19,29,1,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient,62.61,0,0,Check-Out,2020-03-03 -City Hotel,0,33,2016,June,27,25,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.27,0,0,Check-Out,2019-06-03 -City Hotel,0,9,2017,May,21,17,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,132.7,0,2,Check-Out,2020-03-03 -Resort Hotel,1,46,2017,August,36,18,2,5,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,127.9,0,1,Canceled,2020-06-02 -City Hotel,1,0,2016,January,3,16,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,60.75,0,1,Canceled,2018-11-02 -City Hotel,1,284,2016,March,11,9,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.5,0,0,No-Show,2019-03-04 -Resort Hotel,0,150,2016,August,38,26,2,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,206.56,1,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,January,3,13,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,1,0,0,A,A,3,No Deposit,32.0,179.0,0,Group,58.64,0,1,Check-Out,2019-09-03 -City Hotel,0,191,2017,August,37,30,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient-Party,33.66,0,0,Check-Out,2020-07-03 -City Hotel,1,289,2017,July,32,10,0,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,168.0,179.0,0,Transient,78.28,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2016,April,10,27,1,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,34.68,0,0,Check-Out,2019-09-03 -Resort Hotel,0,132,2016,May,20,21,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,0,No Deposit,14.0,331.0,0,Transient,32.96,0,0,Check-Out,2019-06-03 -Resort Hotel,1,201,2017,April,16,31,1,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,79.6,0,0,Canceled,2020-03-03 -City Hotel,0,3,2016,January,4,12,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,125.48,0,1,Check-Out,2018-10-03 -City Hotel,0,94,2016,December,43,24,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.39,0,1,Check-Out,2019-05-04 -Resort Hotel,1,2,2015,July,36,15,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,No Deposit,247.0,179.0,0,Transient,92.52,0,0,Canceled,2018-06-02 -Resort Hotel,0,41,2017,February,8,5,2,4,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,224.0,0,Transient,30.74,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,November,51,2,0,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,225.0,0,Transient,120.62,0,0,Check-Out,2019-09-03 -Resort Hotel,1,52,2016,March,43,15,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,323.0,179.0,0,Transient,113.98,0,0,Canceled,2019-11-03 -City Hotel,1,101,2017,August,36,2,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,76.01,0,3,Canceled,2019-09-03 -Resort Hotel,0,32,2017,February,10,26,1,2,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-10-04 -City Hotel,1,195,2017,May,36,12,2,5,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.7,0,0,Canceled,2020-02-01 -City Hotel,0,1,2016,October,44,17,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,111.46,0,1,Check-Out,2019-11-03 -Resort Hotel,0,336,2017,September,42,3,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,120.97,1,1,Check-Out,2019-12-04 -Resort Hotel,0,5,2016,April,16,21,0,1,2,0.0,0,HB,GBR,Complementary,Direct,1,0,1,H,I,1,No Deposit,13.0,179.0,75,Transient,0.0,1,0,Check-Out,2019-05-04 -City Hotel,1,297,2015,July,39,15,2,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,8.0,179.0,0,Transient,112.24,0,3,Canceled,2018-05-03 -City Hotel,0,241,2015,July,28,11,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,69.05,0,0,Check-Out,2018-01-03 -City Hotel,0,13,2016,March,11,24,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,84.57,0,0,Check-Out,2019-01-03 -City Hotel,1,82,2015,July,34,7,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,63.44,0,0,Canceled,2018-11-02 -City Hotel,1,318,2016,October,26,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,B,A,0,Non Refund,10.0,179.0,0,Transient,91.64,0,0,Canceled,2018-12-03 -City Hotel,0,1,2017,May,23,9,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,10.0,179.0,0,Group,77.63,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,June,22,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,21.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,159,2017,July,31,2,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,174.76,1,1,Check-Out,2020-06-02 -City Hotel,0,144,2016,July,24,17,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,90.99,1,0,Check-Out,2019-05-04 -City Hotel,0,258,2017,May,33,6,1,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,122.26,0,2,Check-Out,2020-07-03 -City Hotel,1,101,2016,February,10,12,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.51,0,0,Canceled,2019-08-04 -City Hotel,1,1,2015,November,52,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,16.0,179.0,0,Transient,38.84,0,0,Canceled,2018-07-03 -City Hotel,1,99,2016,December,17,30,1,3,3,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.63,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,November,51,6,2,0,1,0.0,0,BB,BRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,1.31,0,0,Check-Out,2019-10-04 -City Hotel,0,100,2017,February,9,14,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,26.0,179.0,0,Transient-Party,121.39,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,June,26,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,120.98,0,0,Check-Out,2019-03-04 -City Hotel,1,298,2015,October,39,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,65.62,0,0,Canceled,2017-12-03 -Resort Hotel,0,28,2016,December,51,27,0,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,180.0,179.0,0,Transient-Party,69.98,0,0,Check-Out,2019-11-03 -City Hotel,0,56,2017,August,38,31,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,163.54,0,3,Check-Out,2020-06-02 -City Hotel,0,33,2016,November,19,7,0,2,2,2.0,0,BB,,Direct,Direct,0,0,0,A,F,2,No Deposit,16.0,179.0,0,Transient,142.93,0,1,Check-Out,2019-06-03 -City Hotel,1,39,2015,October,43,10,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.59,0,0,Canceled,2018-08-03 -City Hotel,0,38,2016,March,18,22,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.67,0,1,Check-Out,2019-02-01 -Resort Hotel,1,317,2016,October,41,28,2,3,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient-Party,83.33,0,3,Canceled,2019-09-03 -City Hotel,1,100,2016,September,36,24,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.25,0,0,Canceled,2019-05-04 -Resort Hotel,1,47,2016,October,42,23,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient-Party,120.58,0,0,Canceled,2018-12-03 -Resort Hotel,0,35,2015,August,35,18,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,108.07,0,1,Check-Out,2018-06-02 -City Hotel,1,0,2015,August,34,4,2,5,1,0.0,0,BB,PRT,Complementary,Undefined,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,39.52,0,1,Canceled,2018-06-02 -City Hotel,1,146,2017,April,14,5,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,0.42,0,0,Canceled,2020-02-01 -City Hotel,0,46,2017,January,9,24,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,60.96,0,2,Check-Out,2019-12-04 -City Hotel,0,103,2016,October,44,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,94.12,0,2,Check-Out,2019-03-04 -Resort Hotel,0,263,2016,June,21,31,1,5,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,79.47,0,0,Check-Out,2019-05-04 -City Hotel,0,5,2015,August,34,6,0,2,2,0.0,0,BB,CHE,Undefined,Undefined,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2018-07-03 -City Hotel,1,44,2016,March,3,13,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,56.73,0,0,Canceled,2018-11-02 -City Hotel,1,258,2017,May,22,21,2,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,Non Refund,10.0,179.0,0,Transient,147.46,0,0,Canceled,2020-02-01 -City Hotel,0,59,2016,January,4,6,0,2,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,63.13,0,0,Check-Out,2019-08-04 -City Hotel,0,27,2015,December,51,31,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,60.21,0,2,Check-Out,2018-08-03 -Resort Hotel,0,160,2016,July,22,15,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,85.0,179.0,0,Contract,119.37,0,0,Check-Out,2019-01-03 -City Hotel,1,130,2015,April,50,24,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,60.67,0,0,Canceled,2017-11-02 -City Hotel,1,104,2017,March,11,25,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,18,Transient,69.32,0,0,Canceled,2019-10-04 -City Hotel,0,364,2015,October,44,21,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,145.3,0,0,Check-Out,2018-09-02 -Resort Hotel,0,32,2016,March,10,6,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,92.0,179.0,0,Transient,36.9,0,0,Check-Out,2018-12-03 -City Hotel,1,405,2016,September,14,24,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,108.64,0,0,Canceled,2018-07-03 -City Hotel,1,15,2016,November,49,23,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,78.48,0,0,Canceled,2019-10-04 -City Hotel,0,8,2017,August,38,31,0,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.71,1,1,Check-Out,2020-07-03 -City Hotel,0,9,2016,May,11,7,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,46.19,0,0,Check-Out,2019-05-04 -Resort Hotel,1,88,2016,May,24,20,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Contract,75.41,0,0,Canceled,2019-03-04 -City Hotel,1,90,2015,October,41,16,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,78.78,0,0,Check-Out,2018-08-03 -Resort Hotel,0,8,2016,January,11,15,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,38.0,179.0,0,Transient-Party,97.74,0,0,Check-Out,2019-12-04 -City Hotel,0,2,2016,January,3,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,1,No Deposit,11.0,179.0,0,Transient,38.85,0,0,Check-Out,2018-12-03 -City Hotel,0,10,2016,December,53,27,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,91.76,1,1,Check-Out,2019-11-03 -Resort Hotel,1,56,2016,August,36,9,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,187.75,0,2,Canceled,2019-05-04 -City Hotel,0,157,2017,May,25,3,0,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient-Party,144.02,0,2,Check-Out,2020-01-04 -City Hotel,1,0,2017,May,15,14,2,0,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,10.0,179.0,0,Transient,1.81,0,0,Canceled,2020-05-03 -City Hotel,1,113,2016,August,27,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,182.99,0,0,Canceled,2019-02-01 -City Hotel,0,11,2016,October,34,13,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.37,0,2,Check-Out,2019-09-03 -City Hotel,1,2,2017,August,36,9,1,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Refundable,8.0,179.0,0,Transient,109.82,0,2,Check-Out,2020-07-03 -City Hotel,1,7,2016,February,9,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.71,0,1,Canceled,2018-11-02 -City Hotel,0,115,2017,June,30,9,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,28.0,179.0,0,Transient-Party,83.47,0,0,Check-Out,2020-03-03 -Resort Hotel,0,142,2016,July,42,9,0,3,3,0.0,0,BB,CHE,Online TA,Direct,0,0,0,D,E,1,No Deposit,12.0,179.0,0,Transient,72.41,0,2,Check-Out,2019-06-03 -City Hotel,0,108,2015,September,37,9,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,88.83,0,0,Check-Out,2018-08-03 -City Hotel,1,359,2016,September,46,18,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,60.55,0,0,Canceled,2018-09-02 -City Hotel,1,419,2017,May,17,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,119.2,0,0,Canceled,2020-02-01 -City Hotel,0,248,2015,July,31,1,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,100.26,0,0,Check-Out,2018-06-02 -Resort Hotel,0,132,2016,April,17,10,1,3,2,0.0,0,FB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,105.1,1,0,Check-Out,2019-04-03 -Resort Hotel,0,159,2017,May,23,15,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,74.49,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,March,16,16,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,76.0,179.0,0,Transient,69.32,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,September,43,9,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,183.0,179.0,0,Transient-Party,42.65,0,0,Check-Out,2019-05-04 -Resort Hotel,0,11,2016,August,34,6,2,1,2,0.0,0,FB,FRA,Direct,Direct,0,0,0,D,A,0,No Deposit,330.0,179.0,0,Transient,42.83,1,1,Check-Out,2018-12-03 -City Hotel,1,46,2017,June,16,16,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,116.05,0,0,Canceled,2019-12-04 -City Hotel,0,19,2017,May,24,26,1,0,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,F,0,No Deposit,332.0,179.0,0,Transient-Party,62.12,0,0,Check-Out,2020-03-03 -City Hotel,0,189,2016,July,35,21,2,2,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,104.62,0,0,Check-Out,2019-06-03 -City Hotel,0,144,2016,June,19,15,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,1,0,A,A,2,No Deposit,28.0,179.0,0,Transient-Party,73.94,0,1,Canceled,2019-02-01 -City Hotel,0,57,2016,March,10,13,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,82.0,179.0,0,Transient,67.91,0,0,Check-Out,2018-10-03 -Resort Hotel,1,13,2015,September,37,8,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,124.81,0,0,Canceled,2018-05-03 -City Hotel,0,9,2016,October,44,10,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,146.77,0,0,Check-Out,2019-08-04 -City Hotel,0,12,2016,October,44,29,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,101.63,0,1,Check-Out,2019-09-03 -Resort Hotel,1,2,2017,February,9,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,33.02,0,0,Canceled,2019-11-03 -Resort Hotel,0,108,2015,August,33,29,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,78.73,0,1,Check-Out,2018-06-02 -Resort Hotel,0,104,2015,August,36,9,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,155.88,0,1,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,July,32,10,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,12.0,179.0,75,Transient-Party,47.11,1,3,Check-Out,2018-05-03 -City Hotel,0,113,2016,June,45,17,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,125.09,0,0,Check-Out,2019-07-04 -City Hotel,0,2,2017,February,10,28,0,3,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,15.0,45.0,0,Transient,80.36,0,0,Check-Out,2019-09-03 -Resort Hotel,0,238,2015,July,40,9,2,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,81.79,1,0,Check-Out,2018-06-02 -Resort Hotel,1,92,2016,March,11,9,1,5,2,0.0,0,BB,BRA,Groups,TA/TO,0,0,0,E,E,0,No Deposit,30.0,179.0,0,Transient,69.83,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2016,October,17,23,0,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,100.89,1,2,Check-Out,2019-01-03 -City Hotel,1,99,2015,December,33,17,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.75,0,0,Canceled,2019-01-03 -City Hotel,0,86,2016,August,38,30,0,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,92.48,0,0,Check-Out,2019-06-03 -City Hotel,1,243,2016,September,36,18,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.1,0,0,Canceled,2019-06-03 -Resort Hotel,1,295,2015,September,34,28,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,183.0,179.0,0,Contract,37.4,0,0,Canceled,2017-10-03 -City Hotel,0,103,2017,June,10,5,0,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient-Party,74.31,0,1,Check-Out,2019-12-04 -City Hotel,0,60,2016,August,35,9,0,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,165.48,0,3,Check-Out,2019-06-03 -City Hotel,0,127,2017,June,26,6,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,A,3,No Deposit,12.0,179.0,0,Transient,126.19,0,3,Check-Out,2020-07-03 -City Hotel,1,106,2017,July,35,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.73,0,2,Canceled,2020-07-03 -Resort Hotel,0,17,2015,November,45,29,2,5,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient-Party,84.96,0,2,Check-Out,2018-09-02 -Resort Hotel,1,307,2016,August,32,21,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,196.58,0,0,Canceled,2020-05-03 -City Hotel,0,113,2016,March,18,11,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,86.42,0,0,Check-Out,2019-02-01 -Resort Hotel,0,11,2016,February,11,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,76.0,0,Transient-Party,37.19,0,0,Check-Out,2019-03-04 -City Hotel,0,43,2016,October,51,2,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,10.0,179.0,0,Transient,117.05,0,1,Check-Out,2019-11-03 -City Hotel,1,58,2016,December,51,23,0,2,3,0.0,0,BB,CHN,Groups,TA/TO,0,1,0,A,F,0,Non Refund,10.0,179.0,0,Transient,94.09,0,0,Canceled,2019-09-03 -City Hotel,0,35,2016,July,51,2,0,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,77.48,0,2,Check-Out,2019-11-03 -City Hotel,0,2,2017,January,4,15,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,40,Transient-Party,134.31,0,1,Canceled,2019-10-04 -City Hotel,1,268,2016,March,8,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,58.89,0,0,Canceled,2018-12-03 -City Hotel,1,402,2015,October,43,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.18,0,0,Canceled,2018-08-03 -City Hotel,1,244,2017,May,27,25,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,164.21,0,0,Canceled,2019-09-03 -City Hotel,1,67,2016,July,31,16,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,85.21,0,3,Canceled,2018-12-03 -Resort Hotel,0,19,2017,July,33,6,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,245.0,179.0,0,Transient,219.7,1,0,Check-Out,2020-03-03 -City Hotel,0,144,2016,July,32,9,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,E,D,0,Non Refund,2.0,179.0,0,Transient-Party,77.34,0,0,Check-Out,2019-05-04 -City Hotel,1,259,2016,October,27,5,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,216.29,0,1,Canceled,2019-01-03 -City Hotel,0,202,2015,October,45,17,2,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,30.0,179.0,0,Group,92.85,0,1,Check-Out,2018-09-02 -City Hotel,1,32,2016,October,45,28,2,1,2,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,126.61,0,0,Canceled,2019-07-04 -City Hotel,1,1,2016,August,34,24,2,2,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,113.71,0,0,Canceled,2018-10-03 -City Hotel,1,394,2015,July,38,6,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,61.72,0,0,Canceled,2018-07-03 -City Hotel,1,32,2015,August,32,6,2,5,2,0.0,0,BB,FRA,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2018-06-02 -City Hotel,0,77,2017,April,18,29,0,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,118.41,1,2,Check-Out,2020-01-04 -Resort Hotel,1,197,2016,March,11,31,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,61.05,0,0,Canceled,2019-02-01 -Resort Hotel,0,146,2017,June,30,29,2,3,2,1.0,0,BB,POL,Direct,Direct,0,0,0,C,C,2,No Deposit,15.0,179.0,0,Transient,163.66,0,0,Check-Out,2020-03-03 -City Hotel,0,105,2016,April,33,31,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,225.09,1,2,Check-Out,2019-03-04 -Resort Hotel,1,50,2017,February,9,30,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,102.93,0,0,Canceled,2020-06-02 -Resort Hotel,0,206,2016,March,12,29,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,37.0,179.0,0,Transient-Party,86.92,0,0,Check-Out,2019-01-03 -City Hotel,0,54,2017,March,17,28,0,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,236.79,0,0,Check-Out,2020-03-03 -City Hotel,0,12,2017,January,10,30,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.8,0,1,Check-Out,2019-11-03 -City Hotel,0,165,2016,July,32,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,72.0,179.0,0,Transient,136.82,0,0,Check-Out,2019-03-04 -Resort Hotel,0,202,2016,April,26,5,3,7,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,38.36,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2017,March,10,15,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,F,1,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -Resort Hotel,0,65,2017,May,25,22,3,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,324.0,179.0,0,Transient,134.56,1,1,Check-Out,2020-06-02 -City Hotel,0,0,2017,May,16,6,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,134.93,1,3,Check-Out,2020-02-01 -City Hotel,0,74,2015,September,32,20,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Contract,62.36,0,0,Check-Out,2018-08-03 -City Hotel,0,26,2016,May,22,19,0,1,1,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient-Party,120.82,0,0,Check-Out,2020-03-03 -City Hotel,0,86,2016,July,32,30,1,6,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,122.36,0,0,Check-Out,2019-05-04 -City Hotel,0,107,2015,July,32,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,71.92,0,0,Check-Out,2018-06-02 -Resort Hotel,0,4,2016,December,49,30,0,1,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,3,No Deposit,247.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-12-04 -Resort Hotel,1,11,2017,April,10,16,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,217.0,0,Transient,78.98,0,0,Canceled,2020-04-02 -City Hotel,1,21,2017,February,8,23,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,75.07,0,0,Canceled,2019-09-03 -City Hotel,0,2,2017,February,9,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,81.17,0,1,Check-Out,2020-02-01 -Resort Hotel,0,45,2017,May,19,25,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,C,0,No Deposit,245.0,179.0,0,Transient,81.86,0,3,Check-Out,2020-04-02 -Resort Hotel,0,99,2016,July,33,18,0,5,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,251.0,179.0,0,Transient,153.7,0,2,Check-Out,2019-05-04 -City Hotel,1,108,2015,September,37,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,127.18,0,0,Canceled,2018-06-02 -Resort Hotel,1,30,2016,January,4,6,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,G,0,No Deposit,250.0,179.0,0,Transient,36.21,0,0,Canceled,2019-09-03 -Resort Hotel,1,27,2015,July,52,15,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,L,A,0,No Deposit,244.0,179.0,0,Transient,47.29,0,0,Canceled,2018-06-02 -Resort Hotel,0,31,2017,March,18,24,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,76.0,0,Transient,81.25,1,0,Check-Out,2019-07-04 -Resort Hotel,1,49,2016,December,49,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,61.88,0,0,Canceled,2019-09-03 -Resort Hotel,0,1,2016,August,37,9,0,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient-Party,123.66,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2016,February,8,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.46,0,1,Check-Out,2020-03-03 -City Hotel,1,22,2016,May,23,21,0,1,3,0.0,0,BB,ESP,Online TA,Corporate,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,107.96,0,0,No-Show,2019-02-01 -City Hotel,0,0,2016,January,4,17,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,B,0,No Deposit,14.0,179.0,0,Group,70.16,0,0,Check-Out,2019-10-04 -Resort Hotel,1,235,2017,February,11,21,0,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,1,Non Refund,378.0,179.0,0,Transient-Party,36.78,0,0,Canceled,2019-11-03 -Resort Hotel,0,3,2016,September,37,5,1,1,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,180.0,179.0,0,Transient,191.2,0,0,Check-Out,2019-07-04 -City Hotel,1,155,2016,March,53,28,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,18,Transient,62.14,0,0,Canceled,2018-11-02 -City Hotel,0,194,2016,August,26,10,1,1,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,74.96,0,0,Check-Out,2019-06-03 -Resort Hotel,0,107,2017,March,12,31,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,263.0,0,Transient,40.79,0,0,Check-Out,2019-03-04 -Resort Hotel,0,37,2016,February,8,5,2,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,72.71,0,0,Check-Out,2018-11-02 -City Hotel,1,119,2017,June,27,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,127.46,0,0,Canceled,2020-02-01 -City Hotel,0,2,2016,June,44,27,2,1,1,0.0,0,BB,USA,Direct,GDS,0,0,0,A,A,0,No Deposit,226.0,179.0,0,Transient,231.81,0,0,Check-Out,2019-11-03 -Resort Hotel,0,47,2016,May,19,28,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,60.54,1,1,Check-Out,2019-11-03 -Resort Hotel,0,33,2015,December,53,19,2,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,240.0,179.0,0,Transient,249.38,0,3,Check-Out,2019-10-04 -City Hotel,1,354,2017,December,51,10,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,22,Transient,61.68,0,0,Canceled,2019-09-03 -City Hotel,0,84,2016,August,31,22,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.23,0,2,Check-Out,2019-06-03 -Resort Hotel,1,158,2016,April,51,14,2,1,2,0.0,0,FB,POL,Groups,TA/TO,0,0,0,A,H,1,No Deposit,12.0,179.0,0,Transient-Party,76.3,0,0,Canceled,2019-10-04 -Resort Hotel,1,80,2017,May,33,24,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,245.0,179.0,0,Transient,107.65,0,0,Canceled,2019-10-04 -Resort Hotel,0,19,2016,November,48,24,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,39.0,179.0,0,Transient,66.45,0,0,Check-Out,2019-12-04 -City Hotel,1,75,2016,March,17,28,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,1,0,A,F,0,No Deposit,12.0,179.0,61,Transient,74.45,0,0,Check-Out,2018-11-02 -City Hotel,0,97,2016,October,45,31,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,69.82,0,1,Check-Out,2019-12-04 -Resort Hotel,0,167,2017,July,37,21,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,244.0,179.0,0,Transient,164.87,1,1,Check-Out,2020-06-02 -City Hotel,0,1,2016,August,36,12,0,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,79.95,0,0,Check-Out,2020-01-04 -City Hotel,1,159,2016,June,17,28,0,3,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,69.2,0,1,Canceled,2019-11-03 -Resort Hotel,1,321,2017,May,22,25,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,144.14,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2017,February,9,15,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,254.0,179.0,0,Transient,90.72,1,0,Check-Out,2018-06-02 -City Hotel,1,91,2017,March,16,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,157.29,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2017,July,32,24,2,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.85,0,0,Check-Out,2020-06-02 -Resort Hotel,1,12,2017,January,2,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,10.0,331.0,0,Transient,33.93,0,0,Canceled,2019-11-03 -Resort Hotel,0,3,2016,March,18,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,179.0,0,Transient,72.78,0,0,Check-Out,2019-02-01 -City Hotel,0,4,2017,March,9,7,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,103.01,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2017,April,18,14,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,115.75,0,0,Check-Out,2020-04-02 -City Hotel,0,101,2017,August,16,5,1,3,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.74,0,2,Check-Out,2020-04-02 -Resort Hotel,0,122,2016,October,44,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,110.25,1,2,Check-Out,2019-03-04 -City Hotel,1,24,2016,September,45,21,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.26,0,0,Canceled,2019-11-03 -Resort Hotel,0,17,2016,January,4,26,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,208.71,0,1,Check-Out,2018-11-02 -City Hotel,0,32,2015,December,53,19,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,19,Transient-Party,61.9,0,1,Check-Out,2018-08-03 -Resort Hotel,0,57,2016,December,51,30,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,61.14,0,0,Check-Out,2019-09-03 -City Hotel,1,1,2016,August,32,8,0,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,P,0,No Deposit,14.0,68.0,0,Transient,212.04,0,0,No-Show,2018-11-02 -Resort Hotel,0,13,2017,May,23,20,0,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,C,C,0,No Deposit,88.0,179.0,0,Transient-Party,119.7,1,0,Check-Out,2020-03-03 -City Hotel,0,97,2016,October,44,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,62.97,0,1,Check-Out,2019-10-04 -Resort Hotel,1,1,2016,February,10,21,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,329.0,331.0,0,Transient,41.25,0,0,Canceled,2018-12-03 -Resort Hotel,0,253,2015,September,44,13,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,65.27,0,0,Check-Out,2018-07-03 -Resort Hotel,0,16,2017,January,4,28,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,60.54,0,3,Check-Out,2019-11-03 -City Hotel,1,8,2015,October,43,21,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,208.0,0,Transient-Party,33.17,0,0,Canceled,2018-09-02 -Resort Hotel,0,35,2016,May,25,14,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,91.89,0,1,Check-Out,2019-03-04 -Resort Hotel,0,26,2015,July,30,6,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,78.57,0,0,Check-Out,2018-06-02 -Resort Hotel,0,66,2015,November,32,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,35.96,0,0,Check-Out,2018-06-02 -Resort Hotel,0,101,2016,October,44,27,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,C,1,No Deposit,323.0,179.0,75,Transient-Party,92.39,0,2,Check-Out,2019-05-04 -City Hotel,0,187,2017,July,25,20,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,154.42,0,0,Check-Out,2020-06-02 -City Hotel,1,51,2017,July,33,21,2,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,164.37,0,2,Canceled,2020-05-03 -Resort Hotel,0,45,2017,April,18,28,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.72,0,2,Check-Out,2020-04-02 -Resort Hotel,1,4,2016,August,38,9,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,72.01,0,0,No-Show,2018-05-03 -City Hotel,0,54,2017,May,22,24,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-05-04 -Resort Hotel,0,61,2016,August,37,24,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,236.02,1,2,Check-Out,2019-08-04 -City Hotel,0,256,2016,October,45,27,2,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.85,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,January,10,31,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,27.65,0,1,Check-Out,2019-02-01 -Resort Hotel,0,52,2016,March,8,30,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,93.0,179.0,0,Transient-Party,34.45,0,0,Check-Out,2019-02-01 -Resort Hotel,1,257,2017,June,22,30,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,110.23,0,0,Canceled,2020-03-03 -City Hotel,0,18,2016,April,17,22,0,3,3,1.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,37.0,179.0,0,Transient,78.15,0,0,Check-Out,2019-02-01 -Resort Hotel,0,281,2015,August,32,31,2,1,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,C,2,No Deposit,248.0,179.0,0,Transient-Party,104.12,0,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2015,July,31,25,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,C,I,1,No Deposit,11.0,179.0,0,Transient,154.87,1,2,Check-Out,2018-05-03 -City Hotel,0,136,2016,September,36,2,2,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.12,0,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2015,October,41,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,45.0,0,Transient-Party,31.13,0,0,Check-Out,2018-09-02 -City Hotel,1,14,2016,October,43,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,150.06,0,0,Canceled,2019-07-04 -City Hotel,0,100,2015,September,38,18,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient-Party,114.75,0,2,Check-Out,2018-09-02 -City Hotel,0,261,2015,September,40,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.05,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,September,32,20,0,1,1,0.0,0,HB,PRT,Complementary,Corporate,0,0,1,C,I,1,No Deposit,244.0,179.0,0,Transient,1.53,0,2,Check-Out,2019-05-04 -Resort Hotel,0,4,2016,July,42,20,2,3,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,243.52,1,0,Check-Out,2019-06-03 -City Hotel,1,109,2016,February,43,15,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,B,A,0,Non Refund,9.0,179.0,0,Transient,78.06,0,0,Canceled,2018-10-03 -City Hotel,0,47,2015,August,39,31,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,161.42,0,0,Check-Out,2019-07-04 -Resort Hotel,0,94,2016,November,43,5,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,68.1,0,1,Check-Out,2019-11-03 -Resort Hotel,0,102,2017,July,33,27,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,240.0,179.0,0,Transient,164.42,0,2,Check-Out,2019-03-04 -City Hotel,0,33,2016,September,45,9,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,95.16,0,2,Check-Out,2019-12-04 -City Hotel,0,49,2016,October,36,2,2,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,150.72,0,1,Check-Out,2019-07-04 -City Hotel,0,14,2016,August,37,6,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,99.25,0,2,Check-Out,2019-06-03 -City Hotel,0,51,2015,August,41,31,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,179.01,0,0,Check-Out,2018-07-03 -City Hotel,0,62,2017,August,51,28,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,98.85,0,1,Check-Out,2019-12-04 -Resort Hotel,1,259,2016,March,17,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Refundable,13.0,179.0,0,Transient-Party,61.94,0,0,Canceled,2019-03-04 -City Hotel,0,12,2016,September,44,25,1,0,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,61.85,1,0,Check-Out,2019-06-03 -Resort Hotel,1,19,2016,December,51,28,2,1,3,0.0,0,BB,PRT,Groups,Corporate,0,1,0,D,D,0,No Deposit,13.0,331.0,0,Transient,60.78,1,2,Canceled,2018-09-02 -City Hotel,0,29,2016,April,23,25,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.7,0,1,Check-Out,2019-03-04 -City Hotel,0,419,2017,August,32,9,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,76.19,0,1,Check-Out,2019-12-04 -Resort Hotel,0,80,2017,February,9,21,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,59.62,0,2,Check-Out,2020-01-04 -Resort Hotel,0,44,2017,May,21,16,1,1,2,0.0,0,FB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,76.28,0,0,Check-Out,2020-03-03 -City Hotel,1,151,2017,June,27,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.89,0,1,Canceled,2020-06-02 -City Hotel,1,56,2015,December,53,5,2,2,2,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,23,Transient-Party,81.2,0,1,Canceled,2018-01-03 -City Hotel,1,192,2017,September,35,27,3,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,164.0,179.0,0,Transient,65.71,0,0,Canceled,2019-07-04 -Resort Hotel,1,91,2015,August,50,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,0.0,0,0,Canceled,2018-08-03 -City Hotel,0,24,2015,December,50,2,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,115.01,0,0,Check-Out,2018-08-03 -City Hotel,1,412,2016,October,46,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,2.0,179.0,0,Transient,63.52,0,0,Canceled,2018-08-03 -City Hotel,1,157,2016,July,35,4,1,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,E,0,No Deposit,164.0,179.0,0,Transient,116.66,0,0,Canceled,2019-09-03 -Resort Hotel,0,1,2016,December,51,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,242.0,179.0,0,Transient,132.47,1,2,Check-Out,2018-12-03 -Resort Hotel,0,4,2015,December,34,28,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.43,0,0,Check-Out,2018-09-02 -City Hotel,0,306,2016,June,26,20,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,75.35,0,0,Check-Out,2020-06-02 -City Hotel,1,111,2016,April,17,27,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,10.0,179.0,0,Transient,122.88,0,0,Canceled,2019-02-01 -Resort Hotel,1,59,2015,August,36,27,2,5,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,76.2,0,0,Canceled,2018-12-03 -City Hotel,1,103,2017,August,53,6,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.74,0,0,Canceled,2019-10-04 -City Hotel,0,1,2017,June,24,3,0,1,1,0.0,0,BB,PRT,Online TA,GDS,1,0,1,A,A,0,No Deposit,160.0,179.0,0,Transient,123.07,0,1,Check-Out,2020-04-02 -City Hotel,0,42,2016,October,42,20,0,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,197.42,0,0,Check-Out,2019-06-03 -City Hotel,0,255,2016,October,44,1,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,129.58,0,1,Check-Out,2019-09-03 -City Hotel,0,93,2016,August,34,16,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,A,1,No Deposit,6.0,179.0,0,Transient,105.73,0,3,Check-Out,2019-07-04 -Resort Hotel,0,0,2017,February,12,18,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,112.0,179.0,0,Transient,60.61,0,0,Check-Out,2019-09-03 -Resort Hotel,1,12,2017,March,19,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,74.87,0,1,Canceled,2020-03-03 -City Hotel,0,45,2017,June,30,24,0,1,1,0.0,0,BB,DEU,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.7,0,0,Check-Out,2020-06-02 -City Hotel,0,37,2016,July,33,24,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,82.35,0,0,Check-Out,2018-06-02 -Resort Hotel,0,5,2016,March,17,23,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,113.23,1,1,Check-Out,2019-01-03 -City Hotel,0,96,2016,July,27,7,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,86.0,179.0,0,Transient-Party,191.76,0,0,Check-Out,2020-05-03 -City Hotel,0,202,2017,June,26,5,1,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,224.02,0,1,Check-Out,2020-06-02 -City Hotel,0,101,2017,June,20,6,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,90.0,179.0,0,Transient-Party,116.26,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,March,21,30,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,97.68,1,0,Check-Out,2019-02-01 -City Hotel,0,148,2017,June,22,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,136.93,0,0,Check-Out,2020-06-02 -City Hotel,0,16,2016,December,43,23,1,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,103.76,0,0,Check-Out,2019-09-03 -City Hotel,0,145,2017,March,16,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient-Party,77.61,0,0,Check-Out,2019-11-03 -City Hotel,0,106,2016,August,28,26,2,5,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,B,1,No Deposit,9.0,179.0,0,Contract,184.98,0,1,Check-Out,2019-05-04 -Resort Hotel,1,117,2015,December,50,25,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,39.0,179.0,0,Transient,64.84,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,January,16,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,72.0,0,Transient,70.27,0,0,Check-Out,2019-04-03 -City Hotel,1,45,2015,October,44,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.22,0,0,Canceled,2018-09-02 -City Hotel,0,11,2016,June,24,17,0,1,1,0.0,0,BB,,Groups,TA/TO,1,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,123.56,0,0,Check-Out,2019-03-04 -City Hotel,0,81,2017,January,10,27,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,8.0,179.0,0,Group,123.91,1,3,Check-Out,2019-11-03 -Resort Hotel,0,11,2017,March,11,30,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,11.0,222.0,75,Transient-Party,59.41,1,1,Check-Out,2020-02-01 -Resort Hotel,1,211,2016,March,9,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,62.51,0,0,Canceled,2019-03-04 -City Hotel,0,48,2016,June,41,13,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.28,0,2,Check-Out,2019-07-04 -City Hotel,1,269,2017,June,28,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,96.94,0,0,Canceled,2020-06-02 -Resort Hotel,0,37,2015,December,51,21,0,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,41.75,0,0,Check-Out,2018-12-03 -Resort Hotel,0,42,2016,February,11,10,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,60.99,0,0,Check-Out,2019-11-03 -Resort Hotel,1,186,2017,July,32,21,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Canceled,2020-02-01 -City Hotel,0,32,2015,September,42,28,2,1,1,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,B,1,No Deposit,13.0,331.0,0,Transient-Party,120.61,0,0,Check-Out,2018-06-02 -City Hotel,1,9,2017,May,20,21,2,5,1,0.0,0,BB,,Aviation,Corporate,0,0,0,E,E,0,No Deposit,12.0,155.0,0,Transient,109.84,0,0,Canceled,2020-02-01 -City Hotel,1,8,2016,January,3,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,81.0,179.0,0,Transient,61.84,0,0,Canceled,2018-12-03 -Resort Hotel,0,128,2017,August,29,27,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,D,2,No Deposit,245.0,179.0,0,Transient,246.14,1,1,Check-Out,2020-04-02 -City Hotel,1,29,2017,March,17,30,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,E,1,No Deposit,67.0,179.0,0,Transient-Party,120.9,0,0,Canceled,2020-03-03 -City Hotel,0,35,2015,September,38,9,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,132.99,0,1,Check-Out,2019-08-04 -Resort Hotel,0,14,2016,August,33,7,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,131.55,1,0,Check-Out,2019-09-03 -Resort Hotel,0,258,2015,December,43,8,2,7,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,299.0,179.0,0,Transient,43.19,0,0,Check-Out,2018-09-02 -Resort Hotel,1,87,2015,December,53,10,2,5,2,0.0,0,FB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,75.33,0,0,Canceled,2018-07-03 -Resort Hotel,1,200,2017,May,18,16,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,E,A,0,No Deposit,237.0,179.0,0,Group,62.18,0,0,Canceled,2020-01-04 -City Hotel,0,270,2017,August,37,27,2,7,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,183.0,179.0,0,Contract,224.38,0,0,Check-Out,2020-07-03 -City Hotel,1,0,2016,December,49,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,269.0,0,Transient,4.66,0,0,Canceled,2020-01-04 -City Hotel,0,0,2016,October,50,27,1,3,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,185.0,0,Transient,84.6,0,0,Check-Out,2019-07-04 -City Hotel,0,1,2015,July,4,12,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,75.63,0,0,Check-Out,2018-06-02 -Resort Hotel,0,14,2016,July,25,20,0,2,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,81.3,0,1,Check-Out,2019-05-04 -City Hotel,0,22,2016,August,38,28,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,147.0,179.0,0,Transient-Party,132.96,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,November,42,5,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,239.0,179.0,0,Transient,33.47,0,2,Check-Out,2018-08-03 -City Hotel,1,22,2017,March,18,15,2,4,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.24,0,1,Canceled,2019-10-04 -Resort Hotel,1,47,2017,May,22,2,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,238.0,179.0,0,Transient,67.65,0,1,Canceled,2020-02-01 -Resort Hotel,0,0,2016,June,15,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,1,No Deposit,11.0,221.0,0,Transient,39.02,0,0,Check-Out,2019-05-04 -City Hotel,0,110,2017,March,15,10,0,1,1,0.0,0,BB,CN,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.15,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2015,October,44,15,1,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,107.16,0,0,Check-Out,2019-06-03 -Resort Hotel,0,14,2017,July,12,10,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,159.42,1,0,Check-Out,2020-03-03 -City Hotel,0,31,2016,May,22,4,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,94.94,0,2,Check-Out,2019-03-04 -City Hotel,0,145,2015,December,49,28,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,35.0,179.0,0,Transient-Party,90.23,0,0,Check-Out,2018-09-02 -Resort Hotel,1,11,2017,August,23,31,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,3,No Deposit,247.0,179.0,0,Transient,152.64,0,0,Check-Out,2020-06-02 -City Hotel,1,1,2015,August,32,21,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,220.44,0,0,Canceled,2018-05-03 -City Hotel,1,165,2016,February,10,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,61,Transient,122.57,0,0,Canceled,2018-11-02 -Resort Hotel,1,10,2016,December,50,6,2,2,2,0.0,0,BB,CHE,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,227.0,0,Transient,48.42,0,0,Canceled,2019-10-04 -Resort Hotel,0,20,2016,November,50,31,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,65.43,0,0,Check-Out,2019-11-03 -Resort Hotel,0,48,2015,September,46,31,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,107.39,0,0,Check-Out,2018-09-02 -Resort Hotel,0,33,2017,May,23,27,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Contract,71.04,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2016,June,28,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,2,No Deposit,18.0,226.0,0,Transient,141.96,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,October,45,20,0,3,1,0.0,0,HB,FRA,Groups,Corporate,0,0,0,D,D,0,No Deposit,308.0,331.0,0,Transient-Party,60.5,0,0,Check-Out,2018-09-02 -City Hotel,0,16,2017,July,26,17,2,3,1,1.0,0,BB,CN,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,103.92,1,3,Check-Out,2020-06-02 -City Hotel,0,159,2017,July,31,28,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.52,0,1,Check-Out,2019-10-04 -Resort Hotel,0,110,2017,February,7,5,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,245.0,179.0,0,Group,91.6,0,2,Check-Out,2020-02-01 -City Hotel,1,381,2016,April,16,16,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,92.22,0,0,Canceled,2019-10-04 -City Hotel,0,282,2016,October,43,11,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.65,0,2,Check-Out,2019-09-03 -City Hotel,1,0,2015,July,43,15,0,1,1,0.0,0,BB,CHN,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,137.63,0,0,Canceled,2018-06-02 -City Hotel,1,101,2017,August,37,13,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,10.0,179.0,0,Transient,179.19,0,0,Canceled,2020-04-02 -City Hotel,0,241,2017,July,33,6,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,27,2016,January,3,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,60.22,0,0,Check-Out,2018-10-03 -City Hotel,0,13,2016,March,10,31,1,1,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,80.42,0,0,Check-Out,2019-02-01 -City Hotel,1,16,2017,May,27,11,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,164.2,0,0,Canceled,2020-03-03 -Resort Hotel,0,36,2016,October,42,23,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,149.26,0,0,Check-Out,2018-08-03 -City Hotel,0,24,2015,September,31,28,2,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient-Party,88.13,0,0,Check-Out,2018-08-03 -Resort Hotel,0,45,2015,April,32,15,3,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,H,1,No Deposit,93.0,179.0,0,Transient-Party,59.99,0,0,Check-Out,2019-12-04 -Resort Hotel,0,52,2015,January,10,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,30.07,0,0,Check-Out,2018-11-02 -City Hotel,1,10,2016,December,12,22,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,A,F,0,Non Refund,12.0,179.0,0,Transient,60.25,0,0,Canceled,2019-01-03 -Resort Hotel,0,148,2015,December,53,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,243.0,179.0,0,Transient,44.92,1,0,Check-Out,2018-12-03 -Resort Hotel,1,257,2016,December,49,19,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient-Party,89.59,0,0,Canceled,2019-09-03 -Resort Hotel,0,101,2016,May,20,22,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,220.91,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2017,January,7,18,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,85.19,0,1,Check-Out,2019-11-03 -City Hotel,0,285,2015,October,44,21,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,1,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.32,0,1,Check-Out,2018-01-03 -City Hotel,1,10,2016,October,46,2,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,93.95,0,0,Check-Out,2019-09-03 -Resort Hotel,0,37,2016,October,43,21,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,75.0,179.0,0,Contract,74.74,0,0,Check-Out,2019-08-04 -Resort Hotel,0,83,2015,December,51,30,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,43.12,0,2,Check-Out,2018-11-02 -City Hotel,1,2,2016,February,15,5,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,96.48,0,0,Canceled,2020-02-01 -Resort Hotel,0,3,2016,April,22,18,1,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,88.0,179.0,0,Transient-Party,62.66,0,0,Check-Out,2019-01-03 -City Hotel,0,248,2016,September,43,10,1,3,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,151.27,0,0,Check-Out,2019-06-03 -City Hotel,1,78,2016,March,9,5,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,89.58,0,1,No-Show,2019-02-01 -City Hotel,1,386,2015,September,44,9,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.46,0,0,Canceled,2018-08-03 -City Hotel,1,31,2016,October,43,20,1,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,73.86,0,0,Canceled,2019-03-04 -City Hotel,0,42,2017,July,32,16,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.83,0,0,Check-Out,2020-06-02 -City Hotel,0,252,2015,August,30,28,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,136.0,179.0,0,Transient-Party,61.38,0,0,Check-Out,2018-06-02 -Resort Hotel,0,67,2015,October,42,24,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,122.35,0,1,Check-Out,2018-08-03 -City Hotel,0,13,2016,June,28,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,14.0,61.0,0,Transient,90.26,0,0,Check-Out,2019-02-01 -City Hotel,0,297,2015,July,31,10,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,80.49,0,0,Check-Out,2018-07-03 -City Hotel,0,41,2016,October,45,12,1,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.6,0,1,Check-Out,2019-07-04 -City Hotel,0,99,2017,May,28,27,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,114.67,0,0,Check-Out,2020-07-03 -City Hotel,0,15,2017,March,11,6,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,59.47,0,3,Check-Out,2020-03-03 -City Hotel,0,10,2017,May,20,5,0,1,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,C,1,No Deposit,85.0,331.0,0,Transient,0.0,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2016,June,24,27,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,78.86,0,0,Check-Out,2019-05-04 -City Hotel,0,96,2015,January,12,29,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.53,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2017,January,8,14,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.61,0,1,Check-Out,2020-03-03 -Resort Hotel,0,97,2016,June,16,24,2,4,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,C,D,1,No Deposit,244.0,179.0,0,Transient-Party,107.17,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2017,May,13,9,0,1,1,0.0,0,SC,PRT,Complementary,Direct,1,0,1,A,K,0,No Deposit,13.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-02-01 -City Hotel,0,2,2015,December,53,31,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,16.0,179.0,0,Transient,64.02,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2017,March,11,15,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,161.27,1,1,Check-Out,2020-01-04 -Resort Hotel,1,121,2017,May,22,3,2,7,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,158.57,0,1,Canceled,2020-02-01 -Resort Hotel,0,3,2016,March,11,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,200.0,248.0,0,Transient,41.66,0,0,Check-Out,2018-11-02 -City Hotel,0,45,2017,March,8,9,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.62,0,1,Check-Out,2020-03-03 -City Hotel,1,10,2015,July,34,31,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,118.71,0,2,Canceled,2018-06-02 -City Hotel,1,103,2016,July,37,28,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.67,0,0,Canceled,2019-03-04 -City Hotel,0,0,2017,May,18,28,0,1,1,0.0,0,SC,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,17.0,175.0,0,Transient,45.77,0,0,Check-Out,2020-05-03 -City Hotel,0,4,2016,February,12,20,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Transient,58.8,0,3,Check-Out,2019-05-04 -City Hotel,0,363,2016,June,42,30,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,204.0,179.0,0,Transient,130.95,1,0,Check-Out,2019-06-03 -Resort Hotel,1,316,2016,September,44,17,3,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,154.63,0,2,Canceled,2019-09-03 -City Hotel,1,114,2016,August,26,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,92.88,0,0,Canceled,2018-09-02 -City Hotel,1,50,2017,April,24,28,2,2,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,125.96,0,3,Canceled,2019-11-03 -City Hotel,1,2,2016,August,36,5,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,1,0,A,K,0,No Deposit,10.0,179.0,0,Transient,1.94,0,0,Canceled,2018-01-03 -City Hotel,0,0,2016,September,21,22,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,177.49,0,0,Check-Out,2019-03-04 -City Hotel,1,289,2017,May,29,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,126.52,0,0,Canceled,2020-04-02 -City Hotel,1,54,2017,March,8,21,1,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.06,1,0,Check-Out,2020-01-04 -Resort Hotel,0,119,2017,March,8,27,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,73.8,0,1,Check-Out,2020-03-03 -Resort Hotel,0,11,2017,May,23,24,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,1,No Deposit,248.0,179.0,0,Transient,215.09,1,1,Check-Out,2020-02-01 -Resort Hotel,0,97,2016,February,8,12,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient,40.56,0,0,Canceled,2019-01-03 -Resort Hotel,1,168,2016,April,27,26,1,0,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,263.0,179.0,0,Transient,93.71,0,0,Canceled,2019-02-01 -Resort Hotel,1,44,2017,August,34,15,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,135.89,0,0,Canceled,2019-08-04 -City Hotel,0,92,2015,December,37,9,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,150.27,0,1,Check-Out,2019-10-04 -Resort Hotel,1,253,2015,September,36,16,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,201.0,179.0,0,Transient,60.13,0,0,Canceled,2018-05-03 -City Hotel,0,44,2016,September,45,21,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-08-04 -City Hotel,1,1,2017,March,17,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,14.0,181.0,0,Transient,61.04,0,0,Canceled,2019-03-04 -City Hotel,0,51,2016,September,42,28,0,3,2,0.0,0,HB,PRT,Direct,GDS,0,0,0,D,D,1,No Deposit,313.0,179.0,0,Transient,79.62,0,0,Check-Out,2018-11-02 -City Hotel,1,159,2017,June,27,17,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,80.97,0,0,Canceled,2020-04-02 -City Hotel,0,0,2017,May,22,14,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,98.03,0,1,Check-Out,2020-04-02 -City Hotel,0,76,2016,October,53,27,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,7.0,179.0,0,Transient-Party,89.76,0,1,Check-Out,2019-12-04 -City Hotel,0,36,2016,October,42,12,1,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,97.36,0,3,Check-Out,2019-08-04 -City Hotel,0,14,2015,October,35,29,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,61.0,179.0,0,Transient,62.37,0,2,Canceled,2018-09-02 -Resort Hotel,0,57,2016,November,50,9,1,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,191.33,0,0,Check-Out,2019-07-04 -City Hotel,0,214,2016,April,19,13,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,95.0,195.0,0,Transient,82.79,0,0,Check-Out,2019-03-04 -City Hotel,1,101,2016,July,30,9,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,11.0,179.0,0,Transient,128.65,0,0,Canceled,2019-06-03 -City Hotel,1,94,2017,June,10,5,1,2,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,1,No Deposit,12.0,179.0,0,Transient,102.72,0,0,Canceled,2020-03-03 -City Hotel,1,279,2017,July,26,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,128.51,0,2,Canceled,2020-07-03 -Resort Hotel,0,31,2016,October,43,28,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Transient,72.75,0,2,Check-Out,2019-07-04 -City Hotel,0,8,2015,July,43,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Group,131.46,0,1,Check-Out,2018-05-03 -City Hotel,1,111,2017,April,14,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,116.77,0,0,Canceled,2020-02-01 -Resort Hotel,0,4,2016,February,10,10,0,1,2,0.0,0,FB,GBR,Corporate,TA/TO,0,0,0,E,E,0,No Deposit,96.0,179.0,0,Transient,67.52,0,0,Check-Out,2019-04-03 -City Hotel,0,12,2017,June,22,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,214.0,0,Transient,80.14,0,0,Canceled,2019-11-03 -Resort Hotel,0,12,2017,March,16,15,1,0,2,0.0,0,HB,AUT,Groups,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,42.07,1,3,Check-Out,2020-02-01 -Resort Hotel,0,164,2016,July,34,17,0,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,75.59,0,0,Check-Out,2019-05-04 -City Hotel,0,82,2017,August,31,21,2,4,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,168.0,179.0,0,Transient-Party,119.53,0,1,Check-Out,2020-06-02 -City Hotel,1,418,2016,November,45,25,1,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,80.7,0,1,Canceled,2019-10-04 -Resort Hotel,0,90,2016,July,26,16,2,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,239.0,179.0,0,Transient,171.06,1,1,Check-Out,2019-05-04 -City Hotel,0,157,2017,June,26,10,1,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,128.22,0,0,Check-Out,2020-07-03 -City Hotel,0,294,2017,June,27,2,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,78.97,0,0,Check-Out,2020-06-02 -Resort Hotel,0,38,2016,March,17,24,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,237.0,179.0,0,Transient,121.81,0,1,Check-Out,2019-02-01 -City Hotel,0,334,2015,September,34,26,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,88.04,0,0,Check-Out,2018-07-03 -City Hotel,0,49,2017,May,17,28,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,75.24,0,0,Check-Out,2020-03-03 -City Hotel,1,150,2016,June,27,10,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,107.84,0,1,Canceled,2019-01-03 -Resort Hotel,0,11,2017,May,23,18,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,246.0,179.0,0,Transient,125.54,0,0,Check-Out,2019-02-01 -Resort Hotel,0,152,2016,March,18,10,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,370.0,222.0,0,Transient-Party,42.5,0,0,Check-Out,2019-03-04 -Resort Hotel,1,35,2016,February,15,5,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,39.63,1,0,Canceled,2019-02-01 -Resort Hotel,1,241,2016,July,33,17,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,159.0,179.0,0,Transient,122.14,0,0,Canceled,2019-05-04 -Resort Hotel,0,150,2017,July,34,28,0,5,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-05-03 -City Hotel,0,12,2016,June,32,3,0,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,141.27,0,1,Check-Out,2020-06-02 -Resort Hotel,0,13,2016,March,12,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,3.0,223.0,0,Transient-Party,83.02,0,0,Check-Out,2018-11-02 -City Hotel,0,142,2017,June,28,30,4,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,103.34,0,1,Check-Out,2019-04-03 -City Hotel,0,26,2016,August,34,28,2,3,2,2.0,0,BB,CHN,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,65.92,0,1,Check-Out,2020-03-03 -Resort Hotel,0,12,2016,January,4,24,2,7,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,321.0,179.0,0,Transient,42.91,1,0,Check-Out,2019-10-04 -City Hotel,1,49,2017,June,29,26,3,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,106.08,0,1,Canceled,2020-02-01 -Resort Hotel,0,94,2017,February,10,13,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,73.27,0,0,Check-Out,2019-10-04 -City Hotel,1,17,2016,September,37,2,1,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,168.3,0,2,Canceled,2019-09-03 -Resort Hotel,0,12,2015,December,51,21,0,1,2,1.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,304.0,179.0,0,Transient,63.35,0,0,Canceled,2018-10-03 -Resort Hotel,0,35,2016,March,10,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,147.0,231.0,0,Transient-Party,40.16,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2015,October,45,20,0,3,2,0.0,0,BB,,Online TA,Direct,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,111.41,0,1,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,March,11,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,Non Refund,343.0,60.0,0,Transient,38.11,0,0,Check-Out,2018-11-02 -City Hotel,0,12,2017,May,21,30,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.79,0,1,Check-Out,2020-05-03 -City Hotel,0,22,2015,August,43,10,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,234.0,179.0,0,Transient,114.26,0,2,Check-Out,2018-06-02 -Resort Hotel,0,5,2016,March,17,31,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,76.28,0,1,Check-Out,2019-02-01 -City Hotel,0,46,2016,March,23,10,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.77,0,1,Check-Out,2019-03-04 -City Hotel,1,291,2015,October,31,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,117.44,0,0,Canceled,2017-11-02 -City Hotel,1,402,2016,December,50,24,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,24,Transient,77.58,0,0,Canceled,2019-10-04 -City Hotel,0,0,2015,July,32,19,0,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,160.82,0,1,Check-Out,2018-06-02 -Resort Hotel,0,15,2016,March,53,19,1,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,82.86,1,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,September,43,15,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,K,3,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-06-03 -City Hotel,1,40,2016,June,26,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,183.25,0,0,Canceled,2019-02-01 -City Hotel,0,12,2015,August,36,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient,94.05,0,2,Check-Out,2019-08-04 -City Hotel,1,367,2015,October,35,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,98.2,0,0,Canceled,2018-08-03 -Resort Hotel,0,63,2016,December,51,5,0,10,2,0.0,0,BB,GBR,Complementary,Direct,0,0,0,E,E,2,No Deposit,215.0,179.0,0,Transient,60.41,0,0,Check-Out,2019-11-03 -City Hotel,1,9,2017,February,9,9,0,2,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,B,E,1,No Deposit,12.0,45.0,0,Transient-Party,211.96,0,0,No-Show,2019-11-03 -Resort Hotel,0,0,2017,February,22,9,2,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,1,E,F,0,No Deposit,12.0,179.0,0,Group,32.4,1,1,Check-Out,2020-01-04 -Resort Hotel,0,9,2017,August,36,31,2,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient-Party,196.94,1,2,Check-Out,2019-09-03 -Resort Hotel,0,115,2017,April,23,10,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,91.27,0,2,Check-Out,2020-04-02 -City Hotel,1,109,2016,December,45,2,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.6,0,0,Canceled,2019-08-04 -City Hotel,0,43,2015,October,46,3,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,120.16,1,1,Check-Out,2019-01-03 -City Hotel,0,312,2015,September,39,2,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,119.61,0,0,Check-Out,2018-07-03 -City Hotel,0,21,2017,June,20,24,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,183.34,0,0,Check-Out,2020-02-01 -Resort Hotel,0,267,2016,June,22,23,4,10,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,80.19,0,3,Check-Out,2019-05-04 -City Hotel,1,158,2017,August,38,30,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,151.27,0,2,Canceled,2020-07-03 -City Hotel,1,39,2015,October,36,9,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,84.84,0,0,Canceled,2018-06-02 -City Hotel,0,4,2015,October,47,27,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,3.0,331.0,0,Transient-Party,63.01,0,0,Check-Out,2018-08-03 -City Hotel,1,70,2016,June,32,16,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,141.21,0,0,Canceled,2019-05-04 -Resort Hotel,1,44,2017,May,21,30,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient-Party,64.22,0,0,Canceled,2019-10-04 -Resort Hotel,0,258,2015,July,30,15,1,4,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,3,No Deposit,325.0,179.0,0,Transient-Party,62.88,0,0,Check-Out,2018-06-02 -Resort Hotel,0,255,2017,August,33,24,0,5,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,205.5,1,0,Check-Out,2020-06-02 -Resort Hotel,0,10,2016,December,52,27,1,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,D,D,1,No Deposit,16.0,247.0,0,Transient,44.17,1,0,Check-Out,2019-11-03 -Resort Hotel,0,406,2016,October,35,29,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,98.29,1,2,Check-Out,2019-06-03 -Resort Hotel,0,4,2017,May,23,6,0,1,1,0.0,0,HB,PRT,Direct,Corporate,0,0,0,E,E,3,No Deposit,12.0,179.0,0,Transient,93.42,1,1,Check-Out,2020-03-03 -Resort Hotel,0,51,2016,December,50,13,3,5,2,0.0,0,HB,USA,Direct,Direct,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient,62.95,0,0,Check-Out,2019-05-04 -Resort Hotel,1,230,2016,February,8,29,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,235.0,179.0,0,Transient,76.98,0,0,Canceled,2018-12-03 -City Hotel,0,161,2017,April,18,15,0,3,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,209.59,0,1,Check-Out,2020-04-02 -City Hotel,0,9,2015,July,33,12,0,3,2,0.0,0,BB,ITA,Online TA,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,123.07,0,1,Check-Out,2018-07-03 -City Hotel,1,44,2017,August,16,16,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,196.67,0,0,Canceled,2020-04-02 -Resort Hotel,0,81,2017,May,25,2,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,168.0,179.0,0,Transient-Party,71.86,0,0,Check-Out,2020-04-02 -Resort Hotel,0,35,2017,March,11,15,0,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,88.7,0,0,Check-Out,2020-03-03 -City Hotel,0,99,2016,November,52,9,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,59.9,0,0,Check-Out,2019-09-03 -City Hotel,0,30,2016,September,42,22,1,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,209.89,0,2,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,February,9,20,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,74.43,1,0,Check-Out,2018-11-02 -City Hotel,0,24,2016,November,45,24,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,32.0,179.0,0,Transient-Party,76.71,0,0,Check-Out,2019-10-04 -City Hotel,0,49,2015,October,42,21,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,60.44,0,0,Check-Out,2018-08-03 -City Hotel,0,42,2017,February,17,27,2,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.59,0,0,Check-Out,2020-03-03 -Resort Hotel,0,88,2015,December,53,8,0,2,1,0.0,0,BB,ESP,Complementary,Corporate,0,0,0,A,C,1,No Deposit,314.0,179.0,0,Transient-Party,84.45,0,0,Check-Out,2019-01-03 -City Hotel,0,35,2016,August,38,28,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,149.12,1,3,Check-Out,2019-09-03 -City Hotel,1,98,2017,August,33,16,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,127.63,0,1,Canceled,2020-04-02 -City Hotel,0,34,2017,January,50,29,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,63.27,0,0,Check-Out,2019-10-04 -Resort Hotel,0,53,2016,May,17,30,0,2,3,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,246.0,179.0,0,Transient,80.29,0,0,Check-Out,2019-01-03 -City Hotel,0,141,2017,June,27,26,1,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,33.0,179.0,0,Transient-Party,106.95,1,0,Check-Out,2020-06-02 -City Hotel,0,111,2017,May,18,20,2,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,121.48,0,1,Check-Out,2019-03-04 -City Hotel,0,20,2016,October,43,28,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,156.1,0,2,Check-Out,2019-09-03 -City Hotel,0,39,2017,March,14,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,13.0,76.0,0,Transient,117.36,1,0,Check-Out,2020-04-02 -City Hotel,1,58,2017,August,10,15,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,6.0,179.0,0,Transient,96.95,0,0,Canceled,2020-01-04 -City Hotel,0,1,2016,December,51,10,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,67.23,0,0,Check-Out,2019-10-04 -Resort Hotel,1,1,2017,February,10,25,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,251.0,179.0,0,Transient,65.23,0,0,Canceled,2020-01-04 -City Hotel,0,0,2016,May,21,29,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.04,0,0,Check-Out,2019-11-03 -City Hotel,1,112,2016,June,21,24,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.65,0,0,Canceled,2019-03-04 -Resort Hotel,1,196,2017,April,16,27,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,102.45,0,0,Check-Out,2020-03-03 -Resort Hotel,0,46,2015,November,50,8,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient-Party,39.64,0,0,Check-Out,2018-08-03 -Resort Hotel,1,92,2016,December,45,17,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,2,Refundable,71.0,179.0,0,Transient-Party,80.19,0,0,Canceled,2019-08-04 -City Hotel,1,60,2015,July,37,15,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient-Party,135.14,0,0,Canceled,2018-05-03 -City Hotel,0,187,2016,April,23,25,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,162.66,0,0,Check-Out,2019-09-03 -City Hotel,0,10,2017,May,8,21,0,1,1,0.0,0,BB,DEU,Aviation,Corporate,1,0,0,A,A,0,No Deposit,12.0,189.0,0,Transient,3.03,0,0,Check-Out,2020-03-03 -City Hotel,0,51,2015,January,4,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,32.4,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2015,July,33,2,0,1,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,113.2,0,0,Check-Out,2018-06-02 -Resort Hotel,0,97,2016,May,22,28,0,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,140.43,1,2,Check-Out,2019-04-03 -City Hotel,1,277,2016,June,22,9,4,10,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,117.65,0,0,Canceled,2019-06-03 -Resort Hotel,0,246,2017,June,21,30,4,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,116.64,1,0,Check-Out,2019-12-04 -Resort Hotel,0,144,2017,April,12,23,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient-Party,69.33,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,March,16,5,1,2,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,87.1,0,0,Check-Out,2019-03-04 -City Hotel,1,145,2017,July,32,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.36,0,0,Canceled,2020-06-02 -City Hotel,1,211,2017,August,37,12,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,125.61,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,December,17,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,2,No Deposit,12.0,77.0,0,Transient,38.42,1,0,Check-Out,2019-07-04 -City Hotel,0,83,2016,May,21,18,0,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,110.12,0,1,Check-Out,2019-03-04 -City Hotel,0,23,2016,October,45,2,2,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,168.2,0,0,Check-Out,2019-08-04 -City Hotel,0,6,2016,October,45,29,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.01,0,1,Check-Out,2019-07-04 -City Hotel,0,34,2016,October,45,23,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.05,0,0,Check-Out,2019-06-03 -City Hotel,0,12,2015,November,44,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,229.0,0,Transient,32.82,0,0,Check-Out,2018-08-03 -City Hotel,1,33,2015,August,32,7,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,102.66,0,2,Canceled,2018-06-02 -Resort Hotel,0,281,2017,August,39,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,195.09,0,1,Check-Out,2020-07-03 -Resort Hotel,0,0,2015,November,44,10,2,3,2,0.0,0,HB,,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,98.19,0,0,Check-Out,2018-05-03 -City Hotel,1,402,2016,September,37,14,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,79.71,0,0,Canceled,2019-05-04 -City Hotel,1,2,2016,June,23,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,120.86,0,0,Canceled,2019-06-03 -Resort Hotel,0,251,2016,November,22,20,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,288.0,179.0,0,Transient,124.12,0,1,Check-Out,2019-09-03 -City Hotel,0,236,2015,September,44,29,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,63.8,0,0,Check-Out,2018-08-03 -City Hotel,1,423,2017,March,20,17,1,4,3,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,89.24,0,0,Canceled,2020-01-04 -City Hotel,0,50,2016,July,28,25,2,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,147.86,0,0,Check-Out,2019-06-03 -City Hotel,1,3,2016,April,23,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,128.85,0,1,Canceled,2019-01-03 -City Hotel,1,99,2017,May,23,21,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,80.1,0,0,Check-Out,2020-03-03 -City Hotel,1,196,2017,June,28,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,156.58,0,0,Canceled,2020-06-02 -Resort Hotel,0,57,2017,May,26,26,1,4,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,C,C,0,No Deposit,279.0,179.0,0,Transient-Party,132.14,1,0,Check-Out,2020-06-02 -City Hotel,0,96,2017,April,16,19,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.43,0,2,Check-Out,2020-02-01 -Resort Hotel,0,17,2017,July,27,24,0,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,E,3,No Deposit,246.0,179.0,0,Transient-Party,160.7,0,2,Check-Out,2020-04-02 -Resort Hotel,1,4,2016,January,4,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,Non Refund,15.0,179.0,0,Transient,83.32,0,0,Canceled,2018-11-02 -Resort Hotel,1,185,2016,November,45,16,0,2,1,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,41.86,0,0,Canceled,2019-07-04 -City Hotel,1,240,2015,September,36,24,2,5,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.93,0,0,Canceled,2018-08-03 -City Hotel,1,21,2015,September,45,23,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,104.96,0,0,Canceled,2018-08-03 -Resort Hotel,1,154,2015,August,33,28,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,25.0,179.0,0,Transient,175.14,0,0,Canceled,2018-06-02 -City Hotel,1,96,2017,April,18,10,2,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient-Party,68.88,0,0,No-Show,2019-03-04 -City Hotel,0,47,2017,June,26,20,2,3,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,F,G,2,No Deposit,17.0,179.0,0,Transient,144.57,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2016,January,11,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,12.0,77.0,0,Transient,61.46,0,0,Check-Out,2018-11-02 -City Hotel,0,107,2016,April,15,27,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.54,0,0,Check-Out,2019-02-01 -City Hotel,1,14,2017,June,26,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,171.14,0,1,Canceled,2020-05-03 -Resort Hotel,0,120,2015,December,51,31,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,68.17,1,2,Check-Out,2020-01-04 -Resort Hotel,0,163,2017,July,33,25,2,5,3,1.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,2,No Deposit,249.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-05-03 -Resort Hotel,0,152,2016,March,10,31,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Refundable,12.0,179.0,0,Transient-Party,81.36,1,0,Check-Out,2019-03-04 -City Hotel,1,104,2016,August,36,28,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,126.69,0,2,Canceled,2019-08-04 -City Hotel,0,5,2016,September,41,17,2,3,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.68,0,0,Check-Out,2019-08-04 -Resort Hotel,0,212,2017,June,32,22,1,5,2,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,F,2,No Deposit,175.0,179.0,0,Transient,206.87,1,1,Check-Out,2020-07-03 -Resort Hotel,0,296,2015,October,35,16,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,D,D,0,No Deposit,11.0,179.0,0,Contract,65.25,0,1,Check-Out,2018-07-03 -Resort Hotel,0,153,2016,May,33,12,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,326.0,179.0,0,Transient,73.53,0,0,Check-Out,2019-06-03 -Resort Hotel,0,18,2015,October,53,17,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,39.24,0,0,Check-Out,2018-08-03 -City Hotel,0,15,2017,January,9,6,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.89,0,3,Check-Out,2020-02-01 -Resort Hotel,0,32,2017,March,11,10,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,189.24,0,0,Check-Out,2020-03-03 -Resort Hotel,0,284,2016,July,36,29,1,4,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.88,0,0,Check-Out,2019-05-04 -City Hotel,0,152,2017,August,38,21,0,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,123.26,0,0,Check-Out,2020-06-02 -City Hotel,0,33,2017,April,22,15,2,4,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,B,D,0,No Deposit,11.0,179.0,0,Transient-Party,90.18,1,0,Check-Out,2019-12-04 -City Hotel,1,4,2017,January,4,21,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,82.78,0,0,Canceled,2019-11-03 -City Hotel,0,41,2017,May,18,24,2,1,1,0.0,0,BB,USA,Online TA,Corporate,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,88.91,0,1,Check-Out,2020-02-01 -City Hotel,1,27,2017,June,27,15,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,135.85,0,0,Canceled,2020-02-01 -Resort Hotel,0,3,2016,February,10,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,2.76,0,0,Check-Out,2020-02-01 -City Hotel,0,203,2016,October,41,7,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,61.64,0,2,Check-Out,2019-08-04 -City Hotel,1,42,2016,March,9,4,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,79.01,0,0,Canceled,2019-01-03 -City Hotel,1,255,2016,October,44,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,65,Transient,76.09,0,0,Canceled,2018-09-02 -City Hotel,1,260,2015,May,38,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,1.0,179.0,0,Transient-Party,62.04,0,0,Canceled,2017-11-02 -City Hotel,1,247,2017,August,37,6,1,4,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.42,0,0,Canceled,2020-05-03 -City Hotel,1,15,2015,August,35,15,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,102.16,0,0,Canceled,2019-08-04 -Resort Hotel,0,0,2015,September,42,14,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,1,1,1,A,A,0,No Deposit,9.0,179.0,0,Group,95.66,0,0,Check-Out,2018-06-02 -Resort Hotel,0,156,2016,March,11,31,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Transient-Party,40.98,1,0,Check-Out,2019-01-03 -Resort Hotel,0,108,2016,June,28,24,4,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,177.0,179.0,0,Transient,116.98,0,0,Check-Out,2019-06-03 -City Hotel,0,13,2015,August,35,19,0,2,2,0.0,0,BB,ESP,Online TA,Undefined,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,67.38,0,1,Check-Out,2018-06-02 -City Hotel,0,57,2017,April,18,28,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,123.45,0,0,Check-Out,2020-04-02 -Resort Hotel,1,237,2015,September,36,25,2,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Contract,36.56,0,0,Canceled,2018-01-03 -City Hotel,0,2,2016,December,51,29,2,0,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,121.78,0,0,Check-Out,2018-08-03 -Resort Hotel,0,11,2016,December,49,5,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,124.0,179.0,0,Transient-Party,105.44,1,0,Check-Out,2018-12-03 -City Hotel,0,44,2017,March,18,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,93.33,0,2,Check-Out,2019-09-03 -Resort Hotel,0,1,2015,November,44,27,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,28.87,0,0,Check-Out,2018-11-02 -Resort Hotel,1,142,2017,April,16,21,2,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient-Party,111.5,0,0,No-Show,2020-04-02 -City Hotel,0,115,2017,June,25,17,0,4,1,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.2,1,3,Check-Out,2020-07-03 -Resort Hotel,0,10,2016,October,42,11,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,129.41,0,1,Check-Out,2018-08-03 -City Hotel,1,311,2015,September,35,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.73,0,0,Canceled,2017-10-03 -City Hotel,1,46,2016,June,26,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,42,Transient,98.0,0,0,Canceled,2019-03-04 -Resort Hotel,0,93,2016,March,19,6,2,1,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient-Party,73.19,0,0,Check-Out,2019-02-01 -City Hotel,1,194,2016,July,31,4,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Contract,74.83,0,1,Canceled,2019-05-04 -City Hotel,0,2,2017,May,20,15,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.67,0,2,Check-Out,2020-02-01 -City Hotel,0,2,2015,September,44,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Group,0.0,0,0,Check-Out,2018-08-03 -City Hotel,1,317,2017,May,27,29,2,10,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,176.0,179.0,0,Transient,102.14,0,0,Canceled,2020-04-02 -City Hotel,1,19,2017,August,39,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,127.48,0,0,Canceled,2020-06-02 -City Hotel,0,0,2016,August,38,24,0,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.82,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,January,9,21,0,2,1,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.39,0,0,Check-Out,2018-10-03 -City Hotel,0,241,2017,March,21,15,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,60.41,0,0,Check-Out,2020-03-03 -City Hotel,1,96,2017,May,32,21,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,159.49,0,0,Canceled,2020-03-03 -City Hotel,0,1,2016,August,34,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Contract,122.5,0,2,Check-Out,2019-08-04 -City Hotel,0,5,2017,February,9,10,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,89.0,91.0,0,Transient,44.47,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,January,8,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,35.58,0,1,Check-Out,2018-11-02 -City Hotel,1,10,2016,December,53,11,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,226.0,0,Transient,58.65,0,0,Canceled,2019-10-04 -Resort Hotel,0,135,2017,July,21,10,0,2,1,0.0,0,HB,ESP,Direct,Corporate,0,0,0,A,F,2,No Deposit,14.0,179.0,0,Transient-Party,100.79,1,2,Check-Out,2020-03-03 -Resort Hotel,0,152,2016,March,11,31,1,3,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,72.43,0,0,Check-Out,2019-03-04 -Resort Hotel,1,165,2017,April,17,29,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,302.0,179.0,0,Transient,93.22,0,0,Canceled,2019-11-03 -City Hotel,1,4,2017,July,30,19,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,38.0,179.0,0,Transient,108.7,0,0,Canceled,2020-06-02 -City Hotel,1,117,2015,December,53,31,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,72.0,179.0,0,Transient,96.38,0,0,Canceled,2018-11-02 -City Hotel,1,263,2015,September,36,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,80.69,0,0,Canceled,2018-08-03 -Resort Hotel,1,33,2015,September,35,24,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,80.93,0,0,Canceled,2018-06-02 -City Hotel,0,39,2016,July,35,5,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,79.16,0,0,Check-Out,2019-06-03 -Resort Hotel,0,46,2017,March,10,27,2,5,2,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,244.0,179.0,0,Transient-Party,105.15,0,1,Check-Out,2019-10-04 -City Hotel,1,157,2016,September,37,28,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.69,0,0,Canceled,2019-06-03 -City Hotel,1,97,2016,January,3,15,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,104.87,0,0,No-Show,2018-12-03 -City Hotel,0,139,2017,June,29,6,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,9.0,179.0,0,Transient,206.6,0,1,Check-Out,2020-06-02 -Resort Hotel,0,158,2016,October,41,31,1,3,2,0.0,0,BB,SWE,Groups,Corporate,0,0,0,A,B,0,Refundable,14.0,224.0,0,Transient-Party,57.2,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2015,December,42,5,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,257.0,179.0,0,Transient,77.88,1,0,Check-Out,2018-07-03 -City Hotel,1,2,2016,November,49,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,63.96,0,0,Canceled,2019-09-03 -City Hotel,1,40,2016,April,8,15,1,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,17,Transient,64.95,0,0,Canceled,2019-02-01 -Resort Hotel,1,46,2016,June,35,2,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,61.48,0,0,Canceled,2019-02-01 -City Hotel,0,32,2017,February,9,10,2,1,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,E,1,No Deposit,36.0,179.0,0,Transient-Party,77.1,0,0,Check-Out,2019-11-03 -City Hotel,0,260,2016,June,38,20,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,131.14,0,3,Check-Out,2019-08-04 -Resort Hotel,1,121,2017,July,34,30,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,131.98,0,2,Canceled,2020-06-02 -City Hotel,1,18,2017,April,22,16,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,122.33,0,1,Canceled,2020-03-03 -City Hotel,0,15,2017,April,16,5,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.08,0,1,Check-Out,2020-04-02 -Resort Hotel,0,48,2016,April,17,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,62.3,0,0,Check-Out,2019-03-04 -Resort Hotel,0,21,2017,May,19,5,0,1,2,2.0,0,HB,PRT,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,225.98,0,0,Check-Out,2019-06-03 -City Hotel,1,252,2016,December,47,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Transient,59.82,0,0,Canceled,2019-01-03 -Resort Hotel,0,87,2017,April,18,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Contract,63.58,0,1,Check-Out,2020-04-02 -Resort Hotel,0,6,2017,May,20,21,1,1,1,0.0,0,BB,GBR,Complementary,Direct,1,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,0.42,1,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,August,37,11,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,103.98,1,0,Check-Out,2019-07-04 -City Hotel,1,157,2016,April,18,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,38,Transient,101.65,0,0,Canceled,2018-12-03 -City Hotel,1,97,2016,June,28,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.21,0,1,Canceled,2019-05-04 -Resort Hotel,0,31,2017,May,22,9,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,165.52,0,2,Check-Out,2020-03-03 -City Hotel,1,11,2017,June,28,7,0,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,140.49,0,0,Canceled,2020-05-03 -City Hotel,0,230,2017,August,35,25,2,3,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,74.29,0,1,Check-Out,2020-07-03 -City Hotel,0,46,2017,May,20,5,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,102.85,0,0,Check-Out,2020-03-03 -Resort Hotel,0,41,2017,January,10,13,0,1,2,0.0,0,BB,,Complementary,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,76.95,0,0,Check-Out,2019-09-03 -Resort Hotel,0,171,2017,February,11,20,1,7,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,H,0,No Deposit,253.0,179.0,0,Transient,82.49,0,0,Check-Out,2020-06-02 -City Hotel,0,54,2016,January,4,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,59,Transient,75.41,0,0,Check-Out,2018-12-03 -Resort Hotel,1,140,2016,March,11,28,1,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient,60.02,0,0,Canceled,2019-03-04 -City Hotel,0,52,2016,March,15,8,2,0,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient-Party,101.4,0,0,Check-Out,2019-01-03 -Resort Hotel,0,192,2016,July,19,2,2,10,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,249.0,179.0,0,Transient,242.09,1,1,Check-Out,2019-05-04 -City Hotel,0,46,2016,March,16,10,2,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,116.79,0,0,Check-Out,2019-02-01 -Resort Hotel,0,20,2017,April,23,29,2,1,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,49.28,1,0,Check-Out,2020-02-01 -City Hotel,1,21,2017,February,9,25,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,42.47,0,0,Canceled,2019-09-03 -City Hotel,0,0,2017,March,10,17,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.68,0,1,Check-Out,2020-02-01 -City Hotel,0,223,2016,April,17,16,1,0,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.5,0,0,Check-Out,2019-09-03 -Resort Hotel,0,14,2015,August,32,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,238.0,179.0,0,Transient,60.8,0,0,Check-Out,2018-11-02 -Resort Hotel,0,54,2015,July,32,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,63.99,0,0,Check-Out,2018-06-02 -City Hotel,1,24,2016,September,45,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,10.0,45.0,0,Transient,123.6,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2016,March,11,10,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,39.25,0,0,Check-Out,2018-11-02 -City Hotel,1,16,2015,September,38,21,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.5,0,0,Canceled,2018-08-03 -Resort Hotel,0,30,2016,December,50,15,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,14.0,226.0,0,Transient,29.69,1,0,Check-Out,2019-11-03 -City Hotel,1,144,2015,October,42,21,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,20.0,179.0,0,Transient-Party,91.33,0,0,Canceled,2018-08-03 -City Hotel,1,409,2015,October,33,9,0,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,158.18,0,0,Canceled,2018-01-31 -City Hotel,0,148,2016,October,44,4,2,1,1,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,27.0,179.0,0,Transient-Party,33.9,0,0,Check-Out,2019-09-03 -City Hotel,1,0,2016,March,8,14,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,50.22,0,0,Canceled,2019-01-03 -Resort Hotel,0,5,2016,March,34,30,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,59.93,1,0,Check-Out,2019-04-03 -Resort Hotel,0,40,2016,March,14,9,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,73.62,0,0,Check-Out,2018-12-03 -City Hotel,1,276,2017,July,33,9,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,166.37,0,0,Canceled,2020-06-02 -City Hotel,1,46,2016,September,31,24,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,84.14,0,2,Canceled,2019-02-01 -Resort Hotel,0,148,2016,October,43,9,2,10,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,175.0,179.0,0,Transient,119.18,0,0,Check-Out,2019-08-04 -City Hotel,1,46,2017,April,38,28,2,5,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,125.54,0,3,Canceled,2020-03-03 -City Hotel,0,86,2017,January,4,27,2,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,G,0,No Deposit,6.0,179.0,0,Transient,135.21,0,2,Check-Out,2019-09-03 -Resort Hotel,0,120,2017,April,18,31,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,197.0,179.0,0,Transient,200.13,0,2,Check-Out,2020-02-01 -City Hotel,1,97,2016,October,38,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,142.98,0,0,Canceled,2019-02-01 -Resort Hotel,0,152,2016,July,27,2,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,119.02,0,0,Check-Out,2019-05-04 -City Hotel,0,141,2016,July,30,2,2,2,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,133.03,0,1,Check-Out,2019-04-03 -City Hotel,0,71,2016,February,26,27,2,5,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,191.4,0,2,Check-Out,2019-02-01 -Resort Hotel,0,13,2016,November,44,31,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,87.37,1,1,Check-Out,2019-05-04 -Resort Hotel,0,39,2015,October,42,18,2,1,1,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,250.0,179.0,0,Transient-Party,65.7,0,0,Check-Out,2018-06-02 -City Hotel,1,228,2017,July,26,12,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,150.39,0,1,Canceled,2020-06-02 -City Hotel,1,154,2017,August,33,19,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,220.07,0,0,Canceled,2019-11-03 -City Hotel,1,45,2016,March,28,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,41,Transient,110.18,0,0,Canceled,2018-11-02 -City Hotel,0,56,2017,April,16,28,0,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,101.1,0,0,Check-Out,2019-03-04 -City Hotel,1,48,2016,May,21,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,15,Transient,78.19,0,0,Canceled,2018-12-03 -Resort Hotel,1,209,2016,August,41,9,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,162.45,0,0,Canceled,2019-08-04 -Resort Hotel,1,41,2017,July,33,15,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,224.78,0,0,Canceled,2019-07-04 -City Hotel,1,20,2015,November,44,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,259.0,0,Transient-Party,70.56,0,0,No-Show,2018-09-02 -Resort Hotel,0,0,2015,September,36,30,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,60.17,0,0,Check-Out,2018-08-03 -Resort Hotel,1,48,2016,December,53,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,311.0,179.0,39,Transient-Party,98.64,0,0,Canceled,2019-03-04 -City Hotel,0,137,2017,June,26,30,0,3,1,0.0,0,HB,ESP,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,66.61,1,1,Check-Out,2020-07-03 -Resort Hotel,1,264,2015,July,32,24,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,83.73,0,0,Canceled,2017-12-03 -City Hotel,1,312,2015,October,36,21,0,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,229.26,0,1,Canceled,2018-11-02 -Resort Hotel,1,58,2016,December,48,21,1,3,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,307.0,179.0,0,Transient,102.92,0,0,Canceled,2019-12-04 -City Hotel,0,94,2017,March,18,24,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,9.0,179.0,0,Transient,117.21,0,3,Check-Out,2019-11-03 -City Hotel,1,294,2016,March,16,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,119.34,0,0,Canceled,2019-02-01 -Resort Hotel,1,46,2017,April,22,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient-Party,112.87,0,0,Canceled,2020-02-01 -Resort Hotel,0,53,2015,August,17,10,1,0,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,64.44,0,0,Check-Out,2018-12-03 -City Hotel,0,99,2017,February,9,15,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,317.0,331.0,0,Transient,71.23,0,0,Check-Out,2019-10-04 -City Hotel,0,15,2017,August,34,15,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,101.56,0,0,Check-Out,2020-06-02 -City Hotel,1,309,2015,September,38,24,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.69,0,0,Canceled,2017-11-02 -City Hotel,0,19,2016,February,9,25,1,0,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,58.98,0,0,Check-Out,2019-03-04 -City Hotel,0,106,2016,February,10,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,59,Group,63.14,0,0,Check-Out,2018-12-03 -City Hotel,0,19,2016,May,21,10,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.83,0,1,Check-Out,2019-04-03 -Resort Hotel,0,213,2016,March,17,7,0,3,2,0.0,0,HB,CHE,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,65.42,0,0,Check-Out,2019-03-04 -City Hotel,0,56,2017,March,16,10,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,2.2,0,0,Check-Out,2019-11-03 -City Hotel,1,14,2015,November,52,22,0,1,2,0.0,0,BB,CHE,Online TA,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,79.71,0,0,Canceled,2018-07-03 -City Hotel,0,13,2015,December,10,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,89.53,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2017,June,32,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,314.0,179.0,0,Transient,62.39,0,0,Check-Out,2020-07-03 -Resort Hotel,1,113,2016,August,43,10,0,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,79.7,0,2,Canceled,2019-08-04 -City Hotel,1,39,2016,June,22,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,71.0,179.0,0,Transient,144.95,0,0,Canceled,2019-02-01 -City Hotel,1,3,2016,December,52,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,13.0,237.0,0,Transient,61.82,0,0,Canceled,2019-10-04 -City Hotel,1,51,2016,November,45,14,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,90.65,0,0,Canceled,2018-01-03 -City Hotel,0,16,2017,January,3,16,1,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,37.49,0,0,Check-Out,2020-04-02 -Resort Hotel,0,58,2015,November,43,23,2,3,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,95.1,0,0,Check-Out,2018-08-03 -City Hotel,1,106,2016,May,22,5,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,149.78,0,0,Canceled,2019-03-04 -Resort Hotel,1,15,2017,February,10,13,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,325.0,179.0,0,Transient,60.43,0,0,Canceled,2019-12-04 -Resort Hotel,0,335,2017,August,35,17,2,7,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,174.32,1,0,Check-Out,2020-06-02 -Resort Hotel,0,89,2015,October,42,29,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,96.13,0,0,Check-Out,2018-06-02 -City Hotel,1,401,2016,April,36,2,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,42,Transient,124.14,0,0,Canceled,2018-10-03 -City Hotel,0,83,2017,June,27,25,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,130.7,0,1,Check-Out,2020-03-03 -Resort Hotel,0,20,2015,July,39,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,118.98,0,0,Check-Out,2019-06-03 -Resort Hotel,0,295,2017,May,17,24,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,159.0,179.0,0,Transient,98.73,0,1,Canceled,2020-04-02 -Resort Hotel,0,166,2017,July,35,15,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,120.66,0,2,Check-Out,2020-06-02 -Resort Hotel,1,150,2015,March,49,29,1,0,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,33.9,0,0,Canceled,2018-12-03 -City Hotel,0,0,2016,September,42,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,76.44,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,January,3,28,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,78.78,1,0,Check-Out,2019-02-01 -City Hotel,0,37,2017,April,17,24,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,10.0,179.0,0,Transient-Party,130.47,0,2,Check-Out,2019-03-04 -City Hotel,0,3,2016,August,36,4,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,138.8,0,1,Check-Out,2019-06-03 -Resort Hotel,0,25,2016,August,36,20,0,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,243.0,179.0,0,Transient,171.66,1,1,Check-Out,2019-06-03 -City Hotel,0,112,2017,April,21,13,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,93.17,0,0,Check-Out,2020-02-01 -Resort Hotel,0,42,2017,March,10,6,2,0,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,153.0,179.0,0,Transient,65.35,0,1,Check-Out,2019-10-04 -City Hotel,0,1,2017,April,16,18,0,3,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,136.8,0,0,Check-Out,2020-02-01 -City Hotel,0,16,2015,December,44,10,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Contract,62.97,0,1,Check-Out,2018-11-02 -Resort Hotel,0,29,2016,December,50,31,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,106.9,0,1,Check-Out,2019-08-04 -Resort Hotel,1,0,2016,February,8,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,29.67,0,1,No-Show,2019-01-03 -City Hotel,1,318,2015,October,38,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Contract,61.64,0,0,Canceled,2017-11-02 -City Hotel,0,98,2016,October,4,19,2,1,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,109.53,0,2,Check-Out,2019-09-03 -City Hotel,0,0,2016,December,51,2,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,108.73,0,0,Check-Out,2019-08-04 -City Hotel,1,3,2015,October,51,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,16.0,45.0,0,Transient,39.11,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,June,25,28,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,60.49,0,2,Check-Out,2019-02-01 -Resort Hotel,0,18,2015,December,51,5,2,6,2,0.0,0,HB,SWE,Complementary,Direct,0,0,0,L,G,0,No Deposit,14.0,179.0,0,Transient,83.87,0,0,Check-Out,2019-10-04 -Resort Hotel,1,260,2017,August,40,30,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,238.0,179.0,0,Transient,94.26,0,2,Canceled,2020-08-03 -Resort Hotel,1,42,2016,October,43,28,0,5,2,0.0,0,BB,USA,Direct,TA/TO,0,0,0,E,E,0,No Deposit,287.0,179.0,0,Transient,190.55,0,1,Canceled,2019-10-04 -City Hotel,1,93,2016,March,20,8,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,91.87,0,1,Canceled,2019-02-01 -City Hotel,0,104,2016,March,15,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,101.16,0,0,Check-Out,2019-03-04 -City Hotel,1,103,2016,November,49,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,28.0,179.0,22,Transient,96.89,0,0,Canceled,2018-12-03 -City Hotel,0,15,2017,February,9,4,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.62,0,1,Check-Out,2020-03-03 -City Hotel,0,89,2015,August,36,30,0,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.01,0,0,Check-Out,2018-05-03 -City Hotel,1,101,2016,July,36,24,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,61.91,0,0,No-Show,2017-12-03 -Resort Hotel,0,18,2017,April,17,7,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,76.53,0,2,Check-Out,2020-04-02 -Resort Hotel,0,18,2017,May,22,9,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,263.0,179.0,0,Transient,80.82,0,0,Check-Out,2019-12-04 -Resort Hotel,0,104,2016,December,53,23,2,1,2,0.0,0,HB,,Groups,Direct,0,0,0,E,E,0,No Deposit,44.0,179.0,0,Transient-Party,79.17,1,0,Check-Out,2019-11-03 -City Hotel,0,240,2016,June,45,20,0,2,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,163.21,0,0,Check-Out,2019-06-03 -City Hotel,1,66,2017,May,20,16,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,101.17,0,0,Canceled,2020-02-01 -Resort Hotel,0,12,2017,March,17,11,1,0,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Transient-Party,62.19,0,0,Check-Out,2020-04-02 -Resort Hotel,0,6,2017,August,35,5,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,189.98,0,1,Check-Out,2020-06-02 -City Hotel,1,197,2016,December,50,20,2,1,2,2.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,188.0,179.0,0,Transient,77.79,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2015,June,38,9,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,58.0,0,Transient,72.42,1,1,Check-Out,2020-07-03 -City Hotel,1,15,2016,June,22,27,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.12,0,1,Canceled,2019-01-03 -City Hotel,0,0,2017,June,22,17,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,K,0,No Deposit,17.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-12-04 -City Hotel,0,29,2016,September,45,30,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.42,0,1,Check-Out,2018-08-03 -Resort Hotel,0,144,2017,June,26,6,3,10,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,109.42,0,1,Check-Out,2020-06-02 -City Hotel,0,15,2016,February,3,18,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.32,0,1,Check-Out,2019-02-01 -City Hotel,0,17,2016,May,18,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,32.0,45.0,0,Transient-Party,97.96,0,0,Check-Out,2019-02-01 -City Hotel,1,151,2017,July,30,23,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Contract,153.89,0,0,Canceled,2019-04-03 -City Hotel,1,53,2016,October,45,16,2,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,79.22,0,0,Canceled,2019-08-04 -Resort Hotel,1,47,2017,February,11,12,2,0,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,82.85,0,0,Canceled,2019-09-03 -City Hotel,1,29,2016,July,28,17,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.68,0,0,Canceled,2019-04-03 -City Hotel,0,43,2016,October,46,15,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,104.51,0,1,Check-Out,2019-08-04 -City Hotel,1,19,2015,October,44,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,245.0,0,Transient,43.27,0,0,Canceled,2018-08-03 -City Hotel,0,38,2017,May,23,13,1,3,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,102.53,0,0,Check-Out,2020-07-03 -City Hotel,1,1,2017,May,22,8,0,1,3,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,2.95,0,0,Canceled,2019-12-04 -Resort Hotel,0,11,2015,July,31,10,0,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,62.58,0,0,Check-Out,2018-09-02 -Resort Hotel,0,146,2016,March,16,2,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,224.0,0,Transient-Party,59.58,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,December,49,8,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,15.0,266.0,0,Transient,1.68,0,0,Check-Out,2020-01-04 -Resort Hotel,0,5,2016,June,23,21,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,218.07,1,2,Check-Out,2020-04-02 -City Hotel,1,109,2016,August,36,22,0,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,81.0,179.0,0,Transient,116.3,0,0,Canceled,2019-05-04 -City Hotel,1,197,2016,September,43,30,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,71.67,0,0,Canceled,2019-09-03 -City Hotel,0,103,2017,March,37,28,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,67.64,0,3,Check-Out,2020-07-03 -City Hotel,1,286,2016,June,21,22,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,65.0,179.0,0,Transient,128.64,0,0,Canceled,2019-05-04 -City Hotel,0,12,2016,May,27,2,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,0.14,0,1,Check-Out,2019-06-03 -Resort Hotel,0,25,2016,July,33,10,2,2,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,G,G,2,No Deposit,247.0,179.0,0,Transient,218.42,1,1,Check-Out,2019-06-03 -City Hotel,0,23,2017,March,11,17,1,1,2,0.0,0,HB,POL,Complementary,Direct,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,0,164,2017,June,26,12,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,F,1,No Deposit,12.0,179.0,0,Transient,148.37,0,1,Check-Out,2020-06-02 -City Hotel,0,18,2017,June,24,13,0,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,120.12,0,0,Check-Out,2020-04-02 -City Hotel,0,106,2016,May,22,27,1,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient-Party,187.86,0,0,Check-Out,2019-02-01 -City Hotel,0,48,2017,May,17,28,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,127.64,1,1,Check-Out,2020-03-03 -City Hotel,1,0,2016,May,24,9,1,0,3,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Group,1.21,0,0,Canceled,2019-03-04 -Resort Hotel,0,22,2016,February,11,24,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,77.74,1,0,Check-Out,2019-02-01 -City Hotel,0,148,2015,July,32,9,2,1,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,1,1,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,82.29,0,0,Check-Out,2018-05-03 -City Hotel,0,31,2016,December,50,30,1,3,1,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,86.85,0,0,Check-Out,2019-11-03 -City Hotel,1,0,2017,January,8,21,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,102.15,0,0,Canceled,2019-10-04 -City Hotel,0,245,2015,October,43,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,82.99,1,0,Check-Out,2018-08-03 -City Hotel,1,93,2015,August,38,14,0,1,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,107.57,0,0,Canceled,2018-06-02 -City Hotel,1,135,2016,March,10,24,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,65.21,0,0,Canceled,2019-01-03 -City Hotel,1,235,2015,September,41,16,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,39.41,0,0,Canceled,2017-11-02 -Resort Hotel,0,13,2016,October,44,29,2,4,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,128.62,0,3,Check-Out,2019-08-04 -Resort Hotel,0,299,2017,May,20,31,2,7,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,162.11,0,0,No-Show,2020-03-03 -City Hotel,0,0,2017,January,4,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,D,0,No Deposit,15.0,71.0,0,Transient,61.67,1,0,Check-Out,2019-10-04 -City Hotel,0,102,2017,March,12,28,2,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.16,0,3,Check-Out,2020-02-01 -Resort Hotel,0,45,2017,March,9,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient-Party,77.68,0,0,Check-Out,2020-02-01 -City Hotel,1,277,2016,September,23,27,1,6,2,0.0,0,BB,,Groups,TA/TO,0,0,0,D,A,2,No Deposit,33.0,179.0,0,Transient-Party,80.34,0,0,Canceled,2019-01-03 -City Hotel,1,52,2017,August,32,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,113.57,0,0,Canceled,2020-06-02 -City Hotel,0,376,2015,September,44,8,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,69.58,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2015,August,36,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,59.27,0,0,Canceled,2018-06-02 -City Hotel,0,16,2015,October,47,28,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,60.05,0,2,Check-Out,2018-08-03 -City Hotel,1,34,2015,September,49,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,72.49,0,0,Canceled,2018-12-03 -Resort Hotel,0,3,2017,July,26,13,1,3,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,252.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,1,8,2016,September,45,14,0,1,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.03,0,0,Canceled,2019-02-01 -Resort Hotel,0,49,2016,November,51,9,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,98.14,0,0,Check-Out,2019-09-03 -City Hotel,1,162,2016,September,44,5,0,2,2,0.0,0,HB,PRT,Groups,Corporate,1,0,0,E,E,0,Non Refund,216.0,179.0,0,Transient-Party,74.66,0,0,Canceled,2019-07-04 -City Hotel,0,0,2016,October,44,25,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.66,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,December,53,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient-Party,103.83,1,1,Check-Out,2019-09-03 -City Hotel,1,4,2016,December,53,3,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,1,Canceled,2019-11-03 -City Hotel,1,18,2016,August,36,21,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,188.87,0,0,Canceled,2019-09-03 -Resort Hotel,0,102,2017,March,8,14,2,3,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,81.44,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,July,36,18,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,2.36,0,1,Check-Out,2020-07-03 -City Hotel,1,42,2016,November,53,29,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.1,0,0,Canceled,2018-11-02 -Resort Hotel,1,60,2015,November,51,6,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,36.58,0,0,Canceled,2018-08-03 -Resort Hotel,0,32,2015,October,43,25,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Contract,78.98,0,0,Check-Out,2018-01-31 -Resort Hotel,0,1,2017,August,36,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,135.57,1,0,Check-Out,2020-08-03 -City Hotel,1,98,2016,June,25,18,1,4,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,B,F,0,No Deposit,13.0,179.0,0,Transient,118.72,0,2,Canceled,2019-02-01 -City Hotel,1,278,2016,June,26,12,0,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,93.87,0,0,Canceled,2019-04-03 -Resort Hotel,0,102,2016,May,25,20,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,84.43,1,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2015,August,34,6,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,97.76,1,1,Check-Out,2018-05-03 -Resort Hotel,0,11,2015,July,33,24,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,1,No Deposit,251.0,179.0,0,Transient,212.12,0,0,Check-Out,2018-06-02 -City Hotel,0,194,2017,July,32,29,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.86,0,1,Check-Out,2020-06-02 -City Hotel,1,152,2016,March,14,16,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.27,0,0,Canceled,2018-11-02 -City Hotel,1,270,2015,July,38,8,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,94.3,0,0,Canceled,2018-05-03 -Resort Hotel,0,288,2016,October,41,5,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,255.0,179.0,0,Transient,28.9,0,0,Check-Out,2019-08-04 -City Hotel,1,20,2016,October,44,21,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,11.0,45.0,0,Transient,42.66,0,0,Canceled,2019-09-03 -Resort Hotel,0,38,2016,August,36,21,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,181.0,0,0,Check-Out,2019-06-03 -City Hotel,1,229,2015,October,43,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,77.11,0,0,Canceled,2018-08-03 -Resort Hotel,0,38,2015,September,43,16,0,1,2,0.0,0,HB,,Groups,Direct,0,0,0,C,C,1,No Deposit,337.0,179.0,0,Transient-Party,59.73,0,0,Check-Out,2018-09-02 -Resort Hotel,0,40,2017,May,9,9,1,1,2,1.0,0,BB,GBR,Groups,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient-Party,1.19,1,0,Check-Out,2020-03-03 -City Hotel,1,23,2016,October,44,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient-Party,110.95,0,0,No-Show,2018-12-03 -Resort Hotel,0,208,2016,October,27,23,2,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,H,E,2,No Deposit,338.0,179.0,0,Transient,102.79,0,0,Check-Out,2019-12-04 -City Hotel,0,13,2015,September,42,21,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,75.34,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,March,17,20,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Group,0.0,0,1,Check-Out,2020-01-04 -City Hotel,0,34,2017,June,26,15,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.0,0,1,Check-Out,2020-07-03 -City Hotel,0,44,2016,December,45,30,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,39.74,0,0,Check-Out,2019-10-04 -City Hotel,0,14,2016,October,43,10,0,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,126.45,0,1,Check-Out,2019-07-04 -Resort Hotel,1,173,2016,March,16,2,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,162.0,179.0,17,Transient,77.74,0,0,Canceled,2018-12-03 -Resort Hotel,0,16,2016,February,11,23,0,1,2,0.0,0,FB,GBR,Groups,Direct,0,0,0,E,E,0,No Deposit,353.0,179.0,0,Transient-Party,64.17,0,0,Check-Out,2019-09-03 -City Hotel,0,62,2015,September,37,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,58.88,0,0,Check-Out,2018-09-02 -City Hotel,1,23,2017,August,25,18,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.53,0,1,Canceled,2020-04-02 -City Hotel,0,151,2016,September,43,15,0,3,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,B,A,1,No Deposit,7.0,179.0,0,Transient,131.14,0,2,Check-Out,2019-06-03 -City Hotel,1,61,2015,January,4,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,60.89,0,0,Canceled,2018-10-03 -City Hotel,1,12,2017,February,10,16,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,79.61,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2016,May,23,30,1,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,18.0,179.0,0,Transient,204.54,1,0,Check-Out,2019-03-04 -City Hotel,0,87,2017,August,9,15,0,2,2,0.0,0,HB,,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,80.43,0,0,Check-Out,2020-06-02 -City Hotel,0,166,2015,September,34,18,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,114.21,0,0,Check-Out,2018-05-03 -Resort Hotel,0,0,2017,February,28,28,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,18.0,179.0,0,Transient,63.41,1,0,Check-Out,2020-02-01 -Resort Hotel,0,49,2015,December,51,10,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,123.99,0,0,Check-Out,2018-10-03 -City Hotel,1,0,2017,March,9,8,0,1,2,0.0,0,SC,,Online TA,Direct,0,0,0,P,P,0,No Deposit,13.0,331.0,0,Transient,1.27,0,0,Canceled,2020-04-02 -Resort Hotel,0,8,2016,January,11,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,86.19,1,1,Check-Out,2018-12-03 -Resort Hotel,0,13,2015,November,51,25,0,3,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,L,D,0,No Deposit,242.0,179.0,0,Transient,47.14,0,3,Check-Out,2018-09-02 -City Hotel,0,191,2016,October,45,17,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,7.0,179.0,0,Transient,98.26,0,2,Check-Out,2019-09-03 -City Hotel,0,268,2015,July,32,31,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,122.44,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,August,36,10,0,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.61,0,0,Check-Out,2020-06-02 -City Hotel,1,89,2015,December,53,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.92,0,0,Canceled,2018-10-03 -Resort Hotel,0,48,2016,July,24,22,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,96.16,0,1,Check-Out,2019-01-03 -Resort Hotel,0,358,2016,December,53,9,1,1,1,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,184.0,179.0,0,Transient-Party,76.98,0,0,Check-Out,2019-11-03 -City Hotel,1,1,2016,December,48,9,0,1,1,0.0,0,SC,,Direct,Direct,0,0,0,P,P,1,No Deposit,18.0,266.0,0,Transient,3.24,0,0,Canceled,2019-12-04 -Resort Hotel,0,42,2015,December,52,29,2,3,2,2.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,62.75,0,0,Check-Out,2019-02-01 -Resort Hotel,1,61,2017,March,10,5,2,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,49.63,0,0,Canceled,2019-11-03 -Resort Hotel,0,198,2017,February,10,15,1,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,No Deposit,334.0,221.0,0,Transient,44.45,0,0,Check-Out,2019-11-03 -City Hotel,0,161,2017,February,10,27,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,32.0,179.0,0,Transient-Party,75.99,0,0,Check-Out,2019-10-04 -City Hotel,0,11,2016,December,53,8,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,G,E,0,No Deposit,15.0,70.0,0,Transient,119.82,0,0,Check-Out,2019-12-04 -City Hotel,0,239,2016,September,35,15,3,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,77.21,0,0,Check-Out,2018-05-03 -Resort Hotel,0,39,2017,July,36,30,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,208.83,0,3,Check-Out,2019-10-04 -City Hotel,1,407,2017,October,36,12,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,158.0,179.0,0,Transient,106.46,0,1,Canceled,2019-08-04 -City Hotel,1,59,2017,March,25,8,2,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient-Party,74.61,0,1,Canceled,2020-04-02 -Resort Hotel,1,316,2016,August,34,29,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,171.2,0,1,Canceled,2019-07-04 -City Hotel,1,189,2016,August,37,20,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.05,0,0,Canceled,2019-05-04 -City Hotel,0,94,2017,March,9,15,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,A,2,No Deposit,8.0,179.0,0,Transient-Party,67.88,0,2,Check-Out,2020-02-01 -City Hotel,0,2,2017,August,30,6,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.5,0,1,Check-Out,2020-06-02 -Resort Hotel,0,18,2017,July,23,18,0,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,114.93,0,0,Check-Out,2020-02-01 -City Hotel,0,38,2017,February,10,13,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.58,0,0,Check-Out,2020-02-01 -Resort Hotel,0,290,2016,September,35,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,95.26,0,0,Check-Out,2019-08-04 -Resort Hotel,1,50,2016,March,8,28,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,51.6,0,0,Canceled,2018-12-03 -City Hotel,1,93,2016,July,32,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,17,Transient,95.63,0,1,Canceled,2019-04-03 -City Hotel,0,50,2016,July,22,24,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,205.84,0,3,Check-Out,2019-03-04 -City Hotel,1,48,2017,February,8,17,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.25,0,0,Canceled,2020-03-03 -City Hotel,1,21,2016,January,17,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,61,Transient,73.64,0,0,Canceled,2018-12-03 -City Hotel,1,414,2016,September,22,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,68.64,0,0,Canceled,2018-09-02 -City Hotel,1,420,2017,April,23,22,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,104.18,0,0,Canceled,2019-11-03 -City Hotel,0,0,2017,March,15,21,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.58,0,0,Check-Out,2019-02-01 -City Hotel,1,305,2015,July,34,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,58.8,0,0,Canceled,2018-06-02 -City Hotel,0,14,2016,October,43,13,1,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient,74.31,0,2,Check-Out,2019-01-03 -City Hotel,1,29,2017,January,13,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.47,0,1,Canceled,2019-09-03 -Resort Hotel,0,22,2016,August,22,5,2,4,2,0.0,0,HB,USA,Direct,Direct,0,0,0,G,G,1,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,April,15,13,2,1,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,117.21,0,0,Check-Out,2020-03-03 -City Hotel,0,94,2017,March,11,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,114.93,0,0,Check-Out,2020-04-02 -City Hotel,0,257,2017,July,30,6,1,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.18,0,2,Check-Out,2020-05-03 -City Hotel,0,99,2016,June,26,14,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,140.85,0,2,Check-Out,2019-06-03 -City Hotel,0,0,2017,March,16,23,1,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,35,2016,December,53,6,1,4,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,59.94,0,1,Canceled,2019-10-04 -City Hotel,1,45,2016,December,53,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,41,Transient,99.79,0,0,Canceled,2018-12-03 -City Hotel,1,45,2017,March,10,10,0,2,2,0.0,0,BB,ITA,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,105.12,0,0,Canceled,2020-03-03 -City Hotel,0,202,2016,August,32,30,1,5,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,204.34,0,2,Check-Out,2019-05-04 -City Hotel,0,4,2016,October,44,12,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,102.48,0,0,Check-Out,2019-09-03 -City Hotel,0,35,2017,June,25,22,2,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,137.97,0,2,Check-Out,2020-07-03 -City Hotel,0,104,2015,July,31,4,2,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,96.3,0,1,Check-Out,2019-06-03 -City Hotel,0,233,2015,August,36,20,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.04,0,1,Check-Out,2018-08-03 -Resort Hotel,0,26,2015,November,51,22,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,78.24,1,0,Check-Out,2018-08-03 -City Hotel,0,13,2016,June,29,13,0,3,1,0.0,0,BB,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,127.92,0,0,Check-Out,2019-07-04 -City Hotel,0,20,2016,September,50,30,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,153.59,0,2,Check-Out,2019-08-04 -City Hotel,0,142,2016,August,37,14,1,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,113.42,0,2,Check-Out,2019-12-04 -City Hotel,0,9,2016,June,28,23,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.97,0,0,Canceled,2019-05-04 -Resort Hotel,0,204,2015,October,45,29,2,1,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,61.84,0,0,Check-Out,2018-09-02 -City Hotel,0,124,2017,July,25,21,2,7,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,221.5,0,1,Check-Out,2020-02-01 -City Hotel,0,17,2015,September,36,20,0,3,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.94,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,February,10,23,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,59.56,0,1,Check-Out,2018-12-03 -City Hotel,1,16,2016,February,8,28,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,96.0,179.0,0,Transient,66.35,0,0,Canceled,2018-10-03 -Resort Hotel,0,0,2017,May,27,29,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,358.0,179.0,0,Transient,135.5,0,0,Check-Out,2020-06-02 -City Hotel,0,109,2017,July,30,9,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.29,1,3,Check-Out,2020-06-02 -City Hotel,0,151,2017,April,17,27,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,107.32,0,0,Check-Out,2020-03-03 -City Hotel,1,384,2016,June,33,21,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,124.05,0,0,Canceled,2019-03-04 -City Hotel,1,100,2016,June,27,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,98.27,0,0,Canceled,2019-03-04 -City Hotel,1,398,2016,October,44,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,66,Transient,97.23,0,0,Canceled,2018-11-02 -City Hotel,0,154,2017,August,27,31,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,11.0,179.0,0,Transient,241.45,0,1,Check-Out,2020-07-03 -City Hotel,0,2,2015,November,46,31,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Group,64.77,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,April,15,31,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.73,0,2,Check-Out,2019-03-04 -City Hotel,1,239,2015,August,38,17,0,1,2,0.0,0,HB,PRT,Groups,Undefined,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,92.9,0,0,Canceled,2018-05-03 -Resort Hotel,0,157,2016,May,16,31,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,223.0,0,Transient-Party,73.42,0,0,Check-Out,2019-03-04 -City Hotel,1,61,2015,August,37,8,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,127.12,0,0,Canceled,2017-11-02 -Resort Hotel,0,101,2016,June,15,25,1,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,95.75,1,2,Check-Out,2019-03-04 -City Hotel,0,133,2017,June,26,9,2,10,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,171.0,179.0,0,Transient,126.44,0,0,Check-Out,2020-04-02 -Resort Hotel,0,178,2016,August,35,27,3,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,46.57,1,0,Check-Out,2019-05-04 -City Hotel,0,44,2016,March,17,26,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,85.92,0,2,Check-Out,2019-02-01 -City Hotel,1,29,2017,April,28,21,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,141.95,0,2,No-Show,2019-12-04 -Resort Hotel,0,2,2017,January,3,2,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,0,No Deposit,16.0,105.0,0,Transient,49.54,0,0,Check-Out,2019-09-03 -City Hotel,1,296,2017,July,32,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,44,Transient,99.08,0,0,Canceled,2017-12-03 -Resort Hotel,0,18,2017,May,23,28,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,79.43,1,0,Check-Out,2020-03-03 -City Hotel,1,40,2015,July,38,2,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,110.44,0,0,Canceled,2018-06-02 -Resort Hotel,0,2,2017,March,16,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,C,2,No Deposit,197.0,179.0,0,Transient,44.61,0,0,Check-Out,2020-03-03 -City Hotel,0,147,2017,July,38,28,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient,219.07,0,3,Check-Out,2019-12-04 -Resort Hotel,1,162,2016,April,15,6,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,280.0,179.0,0,Transient,121.3,0,0,Canceled,2018-12-03 -City Hotel,0,97,2016,March,11,21,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,62.99,0,0,Check-Out,2018-12-03 -City Hotel,1,250,2016,October,42,20,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,160.68,0,0,Canceled,2019-06-03 -Resort Hotel,0,383,2017,August,34,5,1,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,72.35,0,2,Check-Out,2020-07-03 -Resort Hotel,1,2,2016,August,35,5,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,99.33,0,0,Check-Out,2019-08-04 -City Hotel,1,15,2017,February,9,6,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,79.92,0,1,Canceled,2020-01-04 -City Hotel,0,187,2017,May,27,24,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,121.91,0,1,Check-Out,2020-03-03 -City Hotel,0,103,2017,May,21,9,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,125.22,0,3,Check-Out,2019-11-03 -City Hotel,1,331,2015,September,38,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.53,0,0,Canceled,2018-06-02 -Resort Hotel,1,1,2016,January,4,16,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,126.0,179.0,0,Transient,35.82,0,1,No-Show,2019-01-03 -City Hotel,1,6,2016,September,45,29,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,186.92,0,0,No-Show,2019-06-03 -City Hotel,1,48,2017,March,8,20,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.8,0,0,Canceled,2020-01-04 -City Hotel,1,0,2016,February,8,6,1,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,59.95,0,0,Canceled,2018-11-02 -City Hotel,1,139,2017,December,4,22,2,5,2,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,E,G,0,No Deposit,97.0,179.0,0,Transient,63.77,0,0,Canceled,2019-08-04 -City Hotel,0,58,2017,March,19,24,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient-Party,72.11,0,0,Check-Out,2020-03-03 -Resort Hotel,0,20,2016,October,44,27,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,F,I,1,No Deposit,241.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,December,49,6,0,2,1,0.0,0,BB,NLD,Corporate,Corporate,1,0,1,A,D,1,No Deposit,13.0,75.0,0,Transient,61.96,1,1,Check-Out,2019-05-04 -City Hotel,0,98,2016,November,21,6,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.97,1,1,Check-Out,2019-03-04 -Resort Hotel,1,103,2016,July,35,15,0,1,3,1.0,0,HB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,237.0,179.0,0,Transient,170.05,0,0,Canceled,2019-03-04 -City Hotel,0,1,2015,December,48,18,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.47,0,0,Check-Out,2019-09-03 -City Hotel,0,46,2016,August,31,5,2,5,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,207.63,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,February,11,27,1,0,2,0.0,0,HB,NLD,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,63.22,1,0,Check-Out,2019-12-04 -City Hotel,1,67,2017,August,35,12,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Canceled,2019-05-04 -Resort Hotel,0,153,2016,March,15,31,1,2,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,61.2,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2017,July,32,20,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,F,2,No Deposit,17.0,179.0,0,Transient,0.0,0,0,Canceled,2020-05-03 -Resort Hotel,1,64,2016,February,10,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,316.0,179.0,0,Transient,37.41,0,0,Canceled,2018-10-03 -Resort Hotel,0,106,2017,May,20,24,2,10,2,0.0,0,HB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,206.0,179.0,0,Transient,212.44,1,3,Check-Out,2020-01-04 -City Hotel,0,56,2015,September,41,8,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,64.0,179.0,0,Transient-Party,80.23,0,1,Check-Out,2018-09-02 -City Hotel,0,150,2016,August,31,10,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,214.1,0,1,Check-Out,2019-04-03 -City Hotel,0,23,2017,February,11,13,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.47,0,0,Check-Out,2020-02-01 -Resort Hotel,0,216,2017,July,31,30,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,143.11,0,1,Check-Out,2019-11-03 -City Hotel,1,45,2016,January,10,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,60.96,0,0,Canceled,2018-10-03 -Resort Hotel,0,13,2017,February,12,5,1,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,318.0,331.0,75,Transient-Party,59.94,0,0,Check-Out,2019-12-04 -City Hotel,1,88,2016,June,22,5,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,153.74,0,3,Canceled,2019-02-01 -Resort Hotel,0,10,2016,August,36,27,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,128.24,0,1,Check-Out,2019-03-04 -Resort Hotel,0,12,2016,February,18,27,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,73.75,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,October,43,16,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,2.27,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,March,10,5,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,G,D,0,No Deposit,246.0,179.0,0,Transient,42.42,1,0,Check-Out,2018-12-03 -City Hotel,0,35,2017,June,27,22,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.17,0,1,Check-Out,2020-05-03 -City Hotel,0,149,2017,July,32,30,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,139.39,0,2,Check-Out,2020-06-02 -City Hotel,0,14,2016,September,42,16,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.76,0,0,Check-Out,2018-08-03 -City Hotel,0,32,2016,February,9,5,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,63.81,0,1,Check-Out,2019-02-01 -City Hotel,0,15,2017,May,22,9,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.8,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,December,10,2,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,D,0,No Deposit,16.0,179.0,0,Transient,111.34,0,0,Check-Out,2019-11-03 -Resort Hotel,0,236,2017,May,27,15,2,2,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,198.96,1,2,Check-Out,2020-04-02 -City Hotel,1,34,2015,August,38,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,59.82,0,1,Canceled,2018-06-02 -City Hotel,1,10,2017,April,22,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,60.97,0,0,Canceled,2020-03-03 -City Hotel,1,47,2017,May,3,20,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,D,0,No Deposit,12.0,179.0,0,Transient,106.54,0,0,Canceled,2020-04-02 -City Hotel,0,1,2017,February,10,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,59.14,0,2,Check-Out,2019-07-04 -Resort Hotel,0,140,2016,January,51,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,77.0,179.0,0,Transient,66.69,0,0,Check-Out,2019-11-03 -Resort Hotel,1,213,2016,February,10,27,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,66.05,0,0,Canceled,2019-09-03 -City Hotel,0,7,2016,December,50,10,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,235.0,0,Transient,86.05,1,1,Check-Out,2019-11-03 -City Hotel,1,0,2016,February,4,10,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.46,0,0,Canceled,2019-02-01 -Resort Hotel,0,174,2016,March,19,25,1,3,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,1,No Deposit,329.0,259.0,0,Transient-Party,57.43,0,0,Check-Out,2019-03-04 -Resort Hotel,0,143,2016,June,26,13,0,1,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,C,1,No Deposit,242.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2015,June,27,26,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,17.0,179.0,0,Transient,0.12,0,0,Check-Out,2018-12-03 -City Hotel,0,79,2016,July,43,6,1,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,92.54,0,3,Check-Out,2019-06-03 -City Hotel,0,1,2016,June,28,18,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,1,0,1,A,A,2,No Deposit,15.0,64.0,0,Transient,58.1,1,0,Check-Out,2019-06-03 -Resort Hotel,0,95,2017,February,13,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,252.0,179.0,0,Transient,72.73,0,0,Check-Out,2019-12-04 -Resort Hotel,0,185,2016,March,17,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient-Party,66.53,0,0,Check-Out,2019-03-04 -Resort Hotel,1,149,2017,August,36,22,1,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,161.0,179.0,0,Transient,153.29,0,0,Canceled,2020-07-03 -City Hotel,1,85,2016,September,32,2,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,122.94,1,2,Canceled,2019-01-03 -City Hotel,0,18,2017,June,27,10,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,77.0,179.0,0,Transient,70.23,0,1,Check-Out,2019-12-04 -City Hotel,0,0,2015,September,44,27,0,1,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Group,197.99,0,3,Check-Out,2018-08-03 -Resort Hotel,0,101,2016,July,32,10,1,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,58.41,1,2,Check-Out,2018-06-02 -City Hotel,0,95,2017,April,19,12,2,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,I,0,No Deposit,8.0,179.0,0,Transient-Party,72.75,0,0,Check-Out,2020-03-03 -City Hotel,0,10,2017,February,10,13,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.7,0,0,Check-Out,2020-03-03 -Resort Hotel,0,3,2015,November,34,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,146.0,179.0,0,Transient,39.94,0,0,Check-Out,2018-08-03 -City Hotel,0,264,2016,May,25,2,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,72.82,0,0,Check-Out,2019-02-01 -Resort Hotel,1,18,2015,July,36,6,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,62.5,0,0,Canceled,2018-05-03 -Resort Hotel,1,253,2016,August,32,9,2,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,176.12,0,2,Canceled,2019-03-04 -Resort Hotel,0,2,2017,January,4,13,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,E,2,No Deposit,378.0,179.0,0,Transient,40.08,0,0,Check-Out,2019-11-03 -City Hotel,0,99,2015,August,38,2,0,3,3,0.0,0,BB,ESP,Online TA,Undefined,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,67.93,0,2,Check-Out,2018-06-02 -Resort Hotel,0,166,2017,May,22,6,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,243.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-05-03 -City Hotel,0,0,2017,March,11,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,235.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -City Hotel,1,260,2015,August,35,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,72.27,0,1,Canceled,2018-06-02 -City Hotel,1,107,2017,July,27,5,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.18,0,2,Canceled,2020-03-03 -City Hotel,1,199,2017,July,31,20,0,3,1,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,7.0,179.0,0,Transient,101.57,0,0,Canceled,2019-11-03 -City Hotel,1,211,2017,February,4,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.73,0,0,Canceled,2018-11-02 -City Hotel,1,386,2017,June,21,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,120.69,0,0,Canceled,2019-12-04 -City Hotel,1,110,2017,April,18,24,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.04,0,0,Canceled,2020-03-03 -City Hotel,0,93,2016,June,34,21,2,5,2,0.0,0,HB,,Complementary,TA/TO,1,0,1,A,I,1,No Deposit,12.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-06-03 -Resort Hotel,1,41,2017,July,18,6,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,160.54,1,2,Canceled,2020-04-02 -City Hotel,1,48,2017,June,26,28,2,2,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,F,A,0,No Deposit,13.0,179.0,0,Transient,97.95,0,0,Canceled,2020-03-03 -Resort Hotel,1,136,2016,October,45,9,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,192.09,1,0,Check-Out,2019-10-04 -Resort Hotel,0,101,2017,July,26,6,2,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,79.39,0,3,Check-Out,2020-07-03 -Resort Hotel,1,196,2016,May,20,15,2,5,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,109.93,0,0,Canceled,2019-05-04 -Resort Hotel,0,196,2016,May,21,12,0,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,14.0,224.0,0,Transient-Party,59.88,0,0,Check-Out,2019-04-03 -Resort Hotel,1,107,2017,June,14,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,157.29,0,0,Canceled,2020-02-01 -Resort Hotel,1,163,2016,July,33,28,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,240.0,179.0,0,Transient,140.95,0,0,Canceled,2019-04-03 -Resort Hotel,0,83,2017,February,7,9,0,1,2,0.0,0,SC,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,38.51,0,0,Check-Out,2020-02-01 -City Hotel,1,115,2015,October,43,25,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.58,0,0,Canceled,2018-09-02 -City Hotel,1,22,2015,August,35,20,2,5,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.33,0,0,Canceled,2018-06-02 -Resort Hotel,0,98,2017,March,17,25,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,81.73,0,0,Check-Out,2019-11-03 -City Hotel,0,43,2015,September,43,17,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,62.74,0,0,Check-Out,2018-06-02 -City Hotel,1,245,2015,July,31,24,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,153.39,0,2,Canceled,2018-08-03 -Resort Hotel,1,148,2017,August,33,5,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,153.5,0,2,Canceled,2020-07-03 -City Hotel,1,1,2016,February,3,6,1,1,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,64.07,0,0,Canceled,2019-01-03 -City Hotel,0,227,2015,September,30,29,2,1,2,0.0,0,HB,AUT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,75.69,0,0,Check-Out,2018-07-03 -City Hotel,1,310,2016,July,37,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,62.02,0,0,Canceled,2017-12-03 -City Hotel,0,14,2017,June,27,21,0,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,86.6,0,0,Check-Out,2020-06-02 -City Hotel,0,81,2015,October,43,5,2,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,100.85,0,0,Check-Out,2018-09-02 -City Hotel,1,15,2016,August,36,7,1,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,117.43,0,2,Canceled,2019-04-03 -City Hotel,1,313,2016,October,45,14,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,0,Transient-Party,37.73,0,0,Canceled,2018-08-03 -City Hotel,0,100,2016,May,37,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,62.28,0,0,Check-Out,2019-03-04 -City Hotel,0,93,2016,October,43,27,2,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,109.21,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,February,9,31,0,1,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,74.34,0,1,Check-Out,2018-11-02 -Resort Hotel,0,255,2017,February,36,21,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,299.0,179.0,0,Contract,65.97,0,0,Check-Out,2019-11-03 -City Hotel,0,39,2017,April,15,5,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,116.11,0,1,Check-Out,2019-04-03 -Resort Hotel,0,18,2016,December,51,29,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient-Party,37.13,0,1,Check-Out,2019-11-03 -City Hotel,0,43,2016,December,51,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,13.0,179.0,0,Transient,36.98,1,1,Check-Out,2019-10-04 -City Hotel,0,86,2017,August,25,6,0,1,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,8.0,179.0,0,Transient,153.77,0,1,Canceled,2020-04-02 -Resort Hotel,0,14,2016,December,53,16,1,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,G,1,No Deposit,181.0,179.0,0,Transient,61.86,0,0,Check-Out,2018-11-02 -City Hotel,1,223,2016,October,44,13,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.52,0,2,Canceled,2019-08-04 -Resort Hotel,0,92,2016,October,46,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,108.78,0,3,Check-Out,2019-11-03 -Resort Hotel,0,83,2017,August,37,12,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,185.0,179.0,0,Transient,221.94,0,0,Check-Out,2020-06-02 -City Hotel,1,95,2016,May,23,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.99,0,0,Canceled,2019-03-04 -Resort Hotel,0,17,2016,March,11,30,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,44.29,0,3,Check-Out,2018-11-02 -City Hotel,1,63,2016,August,38,24,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,11.0,179.0,0,Transient,129.8,0,0,Canceled,2019-08-04 -Resort Hotel,0,147,2016,April,17,31,1,3,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,H,2,Refundable,11.0,223.0,0,Transient-Party,51.99,1,0,Check-Out,2019-04-03 -City Hotel,0,43,2016,May,20,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,83.13,0,2,Check-Out,2019-03-04 -City Hotel,0,36,2017,March,12,6,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,194.63,1,3,Check-Out,2020-03-03 -Resort Hotel,0,33,2016,March,17,24,1,0,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,75.1,1,0,Check-Out,2019-03-04 -City Hotel,1,26,2015,July,38,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.46,0,0,Canceled,2018-05-03 -City Hotel,1,52,2016,December,51,2,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.49,0,1,Canceled,2019-09-03 -Resort Hotel,1,2,2017,May,24,9,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,157.0,179.0,0,Transient-Party,71.61,0,0,Check-Out,2020-05-03 -City Hotel,1,118,2015,December,51,28,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.65,0,0,Canceled,2019-06-03 -City Hotel,0,101,2016,October,41,21,2,7,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,134.71,0,2,Check-Out,2019-08-04 -City Hotel,0,0,2016,June,22,7,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,61.57,0,0,Check-Out,2019-10-04 -City Hotel,1,71,2016,October,53,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.91,0,1,No-Show,2019-01-03 -City Hotel,0,155,2017,June,36,19,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,103.75,0,0,Check-Out,2020-07-03 -City Hotel,0,3,2017,February,7,12,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,2.65,0,0,Check-Out,2020-02-01 -City Hotel,1,17,2016,August,37,9,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.0,0,0,Canceled,2019-05-04 -City Hotel,0,72,2017,June,29,16,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,120.12,0,0,Check-Out,2020-06-02 -City Hotel,0,11,2016,October,43,19,0,2,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,117.58,0,3,Check-Out,2019-10-04 -Resort Hotel,0,2,2016,June,45,20,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,115.41,1,0,Check-Out,2019-09-03 -City Hotel,1,248,2016,October,42,27,1,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.21,0,0,Canceled,2019-08-04 -City Hotel,0,70,2015,July,31,6,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,102.03,1,2,Check-Out,2019-05-04 -City Hotel,0,0,2016,May,37,9,0,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,241.1,0,1,Check-Out,2019-05-04 -Resort Hotel,1,309,2016,July,37,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,174.7,0,2,Canceled,2019-06-03 -City Hotel,0,46,2015,September,42,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,64.76,0,0,Check-Out,2018-08-03 -Resort Hotel,0,110,2017,May,22,18,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,88.08,0,1,Check-Out,2020-03-03 -City Hotel,1,33,2017,May,21,15,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,129.35,0,0,Canceled,2020-02-01 -City Hotel,1,107,2015,December,5,3,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,111.2,0,2,Canceled,2018-11-02 -City Hotel,0,36,2017,March,17,12,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,69.0,179.0,0,Contract,75.74,0,1,Check-Out,2020-04-02 -Resort Hotel,0,48,2015,October,35,30,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,149.14,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,March,15,19,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.58,0,0,Check-Out,2019-03-04 -City Hotel,1,2,2016,February,10,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,93.22,1,0,Canceled,2019-09-03 -Resort Hotel,0,76,2016,March,19,30,1,3,2,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,D,D,2,No Deposit,12.0,86.0,0,Transient,68.74,1,0,Check-Out,2019-04-03 -City Hotel,0,155,2016,July,32,23,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,130.0,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2015,August,44,13,2,0,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,4,2015,July,44,16,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,B,0,No Deposit,3.0,179.0,0,Contract,63.78,0,0,Check-Out,2018-01-03 -Resort Hotel,0,7,2017,March,9,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,236.0,179.0,0,Transient,77.55,1,0,Check-Out,2020-02-01 -City Hotel,1,156,2016,February,10,28,0,1,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient-Party,66.58,0,0,Canceled,2019-01-03 -City Hotel,1,3,2016,August,39,14,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.26,0,1,Canceled,2018-09-02 -City Hotel,0,14,2017,May,22,28,0,1,2,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,87.48,0,0,Check-Out,2020-01-04 -City Hotel,1,15,2017,February,10,22,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient,37.83,0,0,Canceled,2019-10-04 -City Hotel,0,77,2015,October,35,21,2,5,2,0.0,0,HB,DEU,Online TA,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,218.27,0,2,Check-Out,2018-08-03 -Resort Hotel,1,32,2016,April,17,30,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,144.26,1,0,Check-Out,2019-09-03 -Resort Hotel,0,35,2017,February,9,21,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,167.19,0,0,Check-Out,2020-02-01 -City Hotel,0,163,2017,May,22,21,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,222.56,0,0,Check-Out,2020-05-03 -Resort Hotel,0,15,2016,July,33,2,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,62.27,0,0,Check-Out,2019-06-03 -Resort Hotel,0,117,2015,December,53,15,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,50.09,1,2,Check-Out,2018-06-02 -City Hotel,1,263,2017,June,28,23,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,154.0,179.0,0,Transient,131.49,0,0,Canceled,2019-03-04 -City Hotel,1,234,2015,October,40,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,C,0,Non Refund,2.0,179.0,0,Contract,74.22,0,0,Canceled,2017-11-02 -City Hotel,1,102,2017,May,20,27,0,1,3,0.0,0,BB,DEU,Aviation,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,126.41,0,2,Check-Out,2020-03-03 -City Hotel,0,41,2016,April,22,13,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,123.84,0,1,Check-Out,2019-03-04 -Resort Hotel,0,19,2016,May,33,3,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,227.37,0,1,Check-Out,2019-06-03 -City Hotel,1,89,2016,June,28,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,65.0,0,Transient,62.38,0,2,Check-Out,2019-01-03 -City Hotel,0,136,2016,June,28,17,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.07,0,3,Check-Out,2019-06-03 -City Hotel,0,51,2016,July,37,10,2,3,2,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,E,D,0,No Deposit,14.0,184.0,0,Transient,119.46,0,0,Check-Out,2019-05-04 -Resort Hotel,0,65,2016,May,16,15,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,42.59,0,1,Check-Out,2019-02-01 -City Hotel,1,248,2017,March,3,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,63.25,0,1,Canceled,2019-11-03 -City Hotel,0,2,2016,November,50,6,2,5,1,0.0,0,BB,BRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,84.96,0,0,Check-Out,2019-10-04 -Resort Hotel,0,33,2016,July,31,28,0,6,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,E,F,0,No Deposit,247.0,179.0,0,Transient,120.39,0,0,Check-Out,2020-06-02 -Resort Hotel,0,123,2017,July,31,20,2,7,1,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,I,0,No Deposit,10.0,179.0,75,Transient,187.24,1,1,Check-Out,2020-05-03 -City Hotel,1,96,2016,September,37,23,0,2,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,100.22,0,0,Canceled,2019-08-04 -City Hotel,1,24,2016,November,51,28,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,59.32,0,0,Canceled,2019-09-03 -City Hotel,0,251,2017,July,26,15,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,106.93,0,1,Check-Out,2019-08-04 -City Hotel,1,155,2016,March,16,10,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,72.5,0,0,Check-Out,2019-01-03 -City Hotel,1,37,2017,May,22,11,0,4,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,145.0,179.0,0,Transient,91.95,0,0,Canceled,2020-02-01 -City Hotel,1,402,2015,August,37,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.5,0,0,Canceled,2018-09-02 -City Hotel,0,98,2016,May,20,25,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,117.56,0,0,Check-Out,2019-01-03 -City Hotel,1,41,2016,August,37,17,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,187.99,0,0,Canceled,2019-06-03 -City Hotel,1,197,2016,August,37,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,157.0,179.0,0,Transient,92.31,0,0,Canceled,2019-04-03 -City Hotel,0,13,2015,August,47,24,1,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.44,0,0,Canceled,2019-06-03 -City Hotel,0,220,2017,May,22,18,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,84.99,0,1,Check-Out,2019-11-03 -Resort Hotel,0,256,2016,October,42,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,153.05,1,2,Check-Out,2019-06-03 -Resort Hotel,0,26,2016,August,22,24,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,50.22,1,1,Check-Out,2019-07-04 -City Hotel,1,96,2016,March,17,24,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.17,0,2,Canceled,2019-01-03 -Resort Hotel,0,47,2016,August,38,30,2,3,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,72.87,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,June,28,17,0,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,108.11,0,0,Check-Out,2019-06-03 -City Hotel,1,151,2016,June,27,27,2,1,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,86.73,0,0,Canceled,2019-05-04 -City Hotel,1,301,2016,October,44,22,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,72.95,0,0,Canceled,2018-08-03 -Resort Hotel,1,147,2015,August,30,14,0,5,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,I,2,No Deposit,245.0,179.0,0,Transient,129.81,0,0,Canceled,2018-07-03 -City Hotel,0,52,2017,April,15,5,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,83.11,0,0,Check-Out,2020-02-01 -Resort Hotel,0,56,2016,September,37,23,1,0,3,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-07-04 -City Hotel,0,45,2017,May,21,15,2,0,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient-Party,82.83,0,2,Check-Out,2020-02-01 -Resort Hotel,1,254,2017,March,18,6,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient-Party,68.94,0,0,Canceled,2020-03-03 -Resort Hotel,0,2,2015,August,36,20,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,2,No Deposit,378.0,179.0,0,Transient-Party,167.4,0,0,Check-Out,2018-07-03 -City Hotel,1,274,2016,October,44,20,1,1,2,0.0,0,HB,AUT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,22.0,179.0,0,Transient-Party,60.5,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2016,February,10,7,1,0,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,169.64,0,1,Check-Out,2019-01-03 -City Hotel,0,0,2015,November,44,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,2,No Deposit,13.0,45.0,75,Transient,62.36,0,0,Check-Out,2018-08-03 -Resort Hotel,0,234,2016,September,43,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,96.85,1,2,Check-Out,2019-08-04 -City Hotel,0,98,2017,May,22,24,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,96.72,0,0,Check-Out,2020-04-02 -City Hotel,0,88,2016,April,17,27,2,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,95.87,0,0,Check-Out,2020-02-01 -City Hotel,1,380,2016,October,51,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,62,Transient,83.01,0,0,Canceled,2018-09-02 -City Hotel,0,10,2016,September,42,13,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.19,0,2,Check-Out,2019-09-03 -City Hotel,1,15,2017,May,22,5,1,0,1,0.0,0,BB,ESP,Groups,GDS,0,0,0,A,A,0,No Deposit,12.0,239.0,0,Transient,103.88,0,0,Canceled,2020-02-01 -City Hotel,0,0,2017,March,10,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,82.0,0,Transient,84.89,0,0,Check-Out,2020-01-04 -City Hotel,0,1,2016,May,27,7,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,B,0,No Deposit,16.0,45.0,0,Transient,75.66,0,0,Check-Out,2018-12-03 -City Hotel,0,203,2017,June,28,21,4,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,127.13,0,0,Check-Out,2020-02-01 -City Hotel,0,98,2015,September,37,27,0,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,112.39,0,0,Check-Out,2018-06-02 -City Hotel,1,19,2015,August,37,6,0,3,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,2018-06-02 -City Hotel,0,24,2015,December,50,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,250.0,0,Transient,56.86,0,0,Check-Out,2018-08-03 -City Hotel,1,61,2016,April,17,10,2,2,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,73.02,0,3,Canceled,2019-02-01 -City Hotel,1,105,2017,February,11,8,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,83.44,0,0,Canceled,2019-01-03 -City Hotel,0,149,2017,July,26,10,0,5,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.0,0,2,Check-Out,2020-06-02 -City Hotel,1,108,2015,September,50,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,44,Transient,62.54,0,0,Canceled,2017-12-03 -City Hotel,0,1,2016,May,28,10,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,128.11,0,0,Check-Out,2019-02-01 -Resort Hotel,0,292,2017,March,15,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,165.0,179.0,0,Transient-Party,85.87,0,0,Check-Out,2020-03-03 -City Hotel,1,403,2017,September,38,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.0,0,0,Canceled,2018-08-03 -City Hotel,1,150,2016,August,38,10,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.66,0,0,Canceled,2019-05-04 -Resort Hotel,0,89,2017,May,22,21,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,320.0,179.0,0,Group,157.01,0,0,No-Show,2019-01-03 -City Hotel,0,2,2016,November,50,5,0,2,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,149.14,0,0,Check-Out,2019-08-04 -City Hotel,0,52,2017,July,34,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,144.77,0,1,Check-Out,2020-07-03 -Resort Hotel,0,139,2017,March,17,5,1,0,2,0.0,0,Undefined,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,326.0,179.0,0,Transient-Party,71.77,0,0,Check-Out,2019-11-03 -Resort Hotel,1,278,2017,August,38,25,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,242.0,179.0,0,Transient,195.9,0,2,Canceled,2019-08-04 -City Hotel,1,32,2017,May,20,24,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,86.27,0,1,Canceled,2020-03-03 -Resort Hotel,0,15,2017,July,37,28,2,5,3,0.0,0,HB,ITA,Direct,Direct,0,0,0,D,C,2,No Deposit,246.0,179.0,0,Transient,203.37,0,2,Check-Out,2020-03-03 -City Hotel,1,342,2017,April,21,28,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,46.07,0,1,Canceled,2020-02-01 -City Hotel,1,60,2017,June,26,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,75.56,0,0,Canceled,2020-07-03 -City Hotel,0,2,2017,May,22,16,0,2,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,177.0,0,Transient,173.31,0,0,Check-Out,2020-02-01 -City Hotel,1,114,2017,May,22,21,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,63.67,0,0,Canceled,2020-02-01 -City Hotel,1,36,2016,April,16,28,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,111.56,0,0,Canceled,2019-01-03 -City Hotel,0,152,2016,May,21,5,1,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,241.0,179.0,0,Transient,173.03,0,0,Check-Out,2019-02-01 -Resort Hotel,0,249,2016,May,24,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,125.55,0,3,Check-Out,2019-05-04 -Resort Hotel,0,10,2016,February,11,11,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.75,0,0,Check-Out,2018-12-03 -City Hotel,0,19,2016,September,43,6,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,96.17,0,0,Check-Out,2019-08-04 -Resort Hotel,0,255,2017,June,27,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,146.81,0,0,Check-Out,2019-03-04 -City Hotel,0,82,2017,August,36,16,2,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.89,0,0,Check-Out,2019-06-03 -City Hotel,1,94,2016,June,23,24,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,1.0,179.0,0,Transient-Party,62.98,0,0,Canceled,2018-12-03 -City Hotel,0,394,2017,July,22,31,2,5,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient-Party,84.91,0,0,Check-Out,2020-07-03 -Resort Hotel,0,159,2017,July,27,2,0,2,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,155.37,0,0,Check-Out,2020-05-03 -Resort Hotel,1,93,2017,February,9,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,94.81,0,0,Canceled,2019-12-04 -City Hotel,0,0,2016,May,20,27,0,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,73.01,0,1,Check-Out,2019-03-04 -City Hotel,1,314,2016,January,15,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,43,Transient,61.4,0,0,Canceled,2018-12-03 -Resort Hotel,0,54,2017,July,33,10,2,4,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,97.06,0,0,Check-Out,2019-10-04 -City Hotel,1,192,2015,August,36,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,75.52,0,0,Canceled,2018-09-02 -Resort Hotel,0,2,2016,March,21,30,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,72.39,1,2,Check-Out,2019-04-03 -Resort Hotel,0,89,2017,February,12,4,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,61.64,0,0,Check-Out,2019-11-03 -City Hotel,0,55,2017,April,17,30,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.1,0,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2015,January,3,16,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,46.07,0,1,Check-Out,2018-08-03 -City Hotel,0,2,2016,November,49,14,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,B,1,No Deposit,16.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-06-03 -Resort Hotel,0,103,2015,December,44,5,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,41.79,1,2,Check-Out,2018-12-03 -Resort Hotel,0,38,2016,April,22,15,1,4,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,36.12,0,0,Check-Out,2019-04-03 -City Hotel,1,25,2015,December,51,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,42,Transient,68.34,0,0,Canceled,2018-12-03 -City Hotel,1,171,2017,June,26,9,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,7.0,179.0,0,Transient,102.03,0,0,Canceled,2020-03-03 -City Hotel,0,142,2017,June,21,24,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,63.64,0,1,Check-Out,2019-12-04 -City Hotel,1,37,2016,August,34,4,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.65,0,1,Canceled,2019-07-04 -Resort Hotel,0,0,2016,March,12,15,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,D,D,0,No Deposit,15.0,82.0,0,Transient,62.8,0,1,Check-Out,2018-12-03 -Resort Hotel,0,9,2016,March,21,21,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,69.2,0,0,Check-Out,2019-02-01 -City Hotel,0,163,2017,June,31,24,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,125.59,0,2,Check-Out,2020-04-02 -City Hotel,0,13,2015,August,34,24,1,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,73.0,179.0,0,Transient-Party,105.77,0,0,Check-Out,2018-06-02 -City Hotel,0,8,2016,December,50,6,2,5,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,73.68,0,0,Check-Out,2019-12-04 -City Hotel,0,96,2017,March,5,31,0,4,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.46,0,3,Check-Out,2020-05-03 -City Hotel,0,2,2015,October,45,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,92.0,45.0,0,Transient-Party,65.33,0,0,Check-Out,2018-09-02 -City Hotel,1,160,2017,June,30,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,124.02,0,0,Canceled,2019-06-03 -Resort Hotel,0,0,2016,March,17,31,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,53.55,0,0,Check-Out,2019-03-04 -City Hotel,1,36,2016,October,47,29,1,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.52,0,1,No-Show,2019-09-03 -Resort Hotel,0,0,2016,April,17,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,26,2017,June,15,3,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,193.0,241.0,0,Transient,29.94,1,2,Check-Out,2020-03-03 -City Hotel,0,264,2016,June,25,8,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,178.44,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,October,42,20,2,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,89.0,179.0,0,Transient-Party,74.62,0,0,Check-Out,2018-05-03 -Resort Hotel,1,0,2016,July,28,30,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,181.0,179.0,0,Transient,182.49,0,0,Canceled,2019-05-04 -Resort Hotel,0,13,2017,January,4,26,1,4,2,1.0,0,HB,NOR,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,247.0,179.0,0,Transient,82.58,0,0,Check-Out,2019-10-04 -Resort Hotel,0,147,2017,July,33,21,2,5,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,147.61,0,0,Check-Out,2020-06-02 -City Hotel,1,38,2016,April,17,25,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,66.03,0,0,Canceled,2019-04-03 -City Hotel,0,102,2016,September,44,10,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.74,0,1,Check-Out,2019-09-03 -Resort Hotel,0,11,2015,March,30,7,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,66.73,0,0,Check-Out,2018-07-03 -City Hotel,0,138,2015,August,32,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,76.2,0,0,Check-Out,2017-11-02 -City Hotel,0,29,2017,May,21,24,2,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,2,No Deposit,17.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-09-03 -Resort Hotel,0,98,2015,August,31,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,203.27,0,0,Check-Out,2018-05-03 -City Hotel,0,109,2017,May,23,28,2,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,126.55,1,0,Check-Out,2020-06-02 -City Hotel,0,2,2015,August,37,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,1,No Deposit,15.0,179.0,0,Transient,92.46,0,3,Canceled,2018-06-02 -City Hotel,1,70,2016,July,32,22,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,64.81,0,0,No-Show,2019-01-03 -City Hotel,0,34,2017,March,17,9,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,117.65,0,1,Check-Out,2020-02-01 -City Hotel,0,46,2016,January,4,21,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Non Refund,30.0,331.0,0,Transient-Party,60.07,0,0,Check-Out,2018-10-03 -City Hotel,1,400,2016,August,38,9,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,116.81,0,0,Canceled,2018-09-02 -City Hotel,0,0,2017,May,15,22,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,G,F,1,No Deposit,15.0,45.0,0,Transient,0.0,0,1,Check-Out,2020-06-02 -Resort Hotel,0,115,2016,July,30,24,3,5,2,1.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,11.0,179.0,75,Transient,107.34,0,0,Check-Out,2018-05-03 -City Hotel,0,160,2017,July,26,30,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient,204.65,1,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2015,August,43,6,1,1,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,82.0,0,0,Check-Out,2018-06-02 -City Hotel,1,48,2015,December,53,16,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.89,0,0,Canceled,2017-10-03 -Resort Hotel,1,255,2016,July,30,20,2,5,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,109.46,0,0,Canceled,2018-05-03 -Resort Hotel,0,2,2017,January,2,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,79.0,0,Transient,47.42,0,0,Check-Out,2020-03-03 -City Hotel,1,104,2016,September,43,31,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,141.45,0,2,Canceled,2019-06-03 -Resort Hotel,0,2,2015,July,33,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,74.0,0,Transient,61.0,1,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,September,46,30,0,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,313.0,179.0,0,Transient,113.48,1,0,Check-Out,2019-08-04 -Resort Hotel,0,152,2016,July,25,5,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Contract,97.2,0,0,Check-Out,2019-06-03 -Resort Hotel,0,158,2017,June,27,29,3,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,122.06,0,1,Check-Out,2020-02-01 -Resort Hotel,0,11,2016,September,37,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,2,No Deposit,209.0,63.0,0,Transient,40.53,1,0,Check-Out,2019-06-03 -City Hotel,1,148,2016,June,25,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,25.0,179.0,0,Transient,82.35,0,0,Canceled,2019-03-04 -Resort Hotel,0,86,2015,December,53,6,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,96.0,179.0,0,Transient-Party,60.4,0,0,Check-Out,2018-12-03 -Resort Hotel,0,7,2017,January,10,15,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,76.14,0,0,Check-Out,2019-12-04 -Resort Hotel,1,15,2017,May,9,14,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,239.0,179.0,0,Transient,0.0,0,1,Canceled,2020-02-01 -Resort Hotel,0,0,2015,November,50,9,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,I,0,No Deposit,15.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-11-03 -Resort Hotel,0,3,2016,November,49,16,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,79.0,0,Transient,32.73,1,1,Check-Out,2019-07-04 -Resort Hotel,0,20,2015,December,53,21,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,47.92,0,0,Check-Out,2018-10-03 -City Hotel,1,324,2016,June,25,20,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.78,0,0,Canceled,2019-03-04 -City Hotel,0,50,2016,May,21,8,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,82.9,0,0,Check-Out,2019-02-01 -Resort Hotel,0,135,2016,March,17,11,0,3,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,78.42,0,0,Check-Out,2019-06-03 -City Hotel,1,63,2016,October,44,9,0,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,42,Transient,126.97,0,0,Canceled,2019-07-04 -City Hotel,0,285,2015,September,35,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.8,0,0,Check-Out,2018-07-03 -Resort Hotel,0,52,2017,May,23,5,2,5,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient,35.59,0,1,Check-Out,2020-02-01 -Resort Hotel,0,46,2017,March,17,21,0,4,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,I,0,No Deposit,11.0,179.0,0,Transient-Party,94.07,0,0,No-Show,2020-04-02 -City Hotel,0,26,2016,February,3,24,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,11.0,179.0,0,Transient,69.5,0,0,Check-Out,2019-09-03 -City Hotel,1,47,2017,June,22,15,2,2,2,0.0,0,BB,NOR,Direct,Direct,0,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient,220.64,0,0,Canceled,2020-06-02 -City Hotel,0,53,2017,July,36,24,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,184.22,1,2,Check-Out,2019-11-03 -City Hotel,1,27,2016,September,41,2,2,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.8,0,2,No-Show,2019-07-04 -City Hotel,0,9,2016,May,25,9,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,67.4,0,1,Check-Out,2019-02-01 -City Hotel,0,42,2015,September,36,4,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,117.7,0,0,Check-Out,2018-06-02 -City Hotel,1,1,2016,March,17,2,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,106.23,0,0,Canceled,2018-11-02 -Resort Hotel,0,165,2017,August,37,7,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,216.13,0,1,Check-Out,2020-06-02 -City Hotel,0,255,2017,August,25,9,2,7,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,24.0,179.0,0,Transient,123.36,0,0,Check-Out,2020-07-03 -Resort Hotel,0,95,2016,December,53,23,2,5,2,1.0,0,HB,,Direct,Direct,0,0,0,A,A,3,No Deposit,16.0,179.0,0,Transient-Party,100.77,0,2,Check-Out,2018-10-03 -City Hotel,0,90,2016,October,42,12,1,3,1,0.0,0,SC,USA,Undefined,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,93.04,0,1,Check-Out,2019-06-03 -Resort Hotel,0,12,2017,May,25,13,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,1,A,A,0,Non Refund,157.0,179.0,0,Transient,68.49,0,0,Check-Out,2020-06-02 -City Hotel,1,30,2016,April,7,5,1,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,83.27,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,March,9,15,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,100.0,179.0,61,Transient,67.11,0,0,Check-Out,2019-02-01 -Resort Hotel,0,19,2015,October,45,10,1,5,2,0.0,0,HB,GBR,Corporate,Corporate,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient-Party,76.89,0,0,Check-Out,2018-10-03 -City Hotel,0,25,2016,December,53,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,58.28,0,2,Check-Out,2019-09-03 -Resort Hotel,0,44,2016,September,44,24,0,1,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,244.0,179.0,0,Transient,76.79,0,2,Check-Out,2019-06-03 -City Hotel,1,137,2015,August,36,15,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.69,0,0,Canceled,2018-07-03 -City Hotel,0,3,2016,August,44,12,2,0,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,160.59,0,3,Check-Out,2019-05-04 -City Hotel,0,3,2016,October,41,13,0,1,1,0.0,0,SC,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,88.12,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2016,June,21,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,121.58,0,0,Check-Out,2018-08-03 -City Hotel,0,95,2016,September,45,25,2,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,249.95,0,0,Check-Out,2019-04-03 -Resort Hotel,0,43,2016,February,8,10,0,2,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,40,Transient-Party,65.0,0,0,Check-Out,2019-03-04 -City Hotel,0,39,2015,October,45,10,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Contract,101.58,0,1,Check-Out,2019-06-03 -Resort Hotel,0,100,2017,August,36,28,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,94.75,1,2,Check-Out,2020-05-03 -Resort Hotel,0,186,2017,July,25,12,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,E,0,No Deposit,315.0,179.0,0,Transient-Party,94.87,1,0,Check-Out,2020-06-02 -Resort Hotel,1,164,2017,March,9,31,2,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,241.0,179.0,0,Transient,76.53,0,0,Canceled,2019-11-03 -City Hotel,0,47,2015,August,35,9,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,57.0,179.0,0,Transient-Party,118.06,0,0,Check-Out,2018-06-02 -City Hotel,1,52,2015,August,27,17,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.33,0,0,Canceled,2018-01-31 -City Hotel,0,7,2017,May,21,31,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,119.78,0,0,Check-Out,2020-02-01 -City Hotel,1,245,2016,September,36,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,19,Transient,91.21,0,0,Canceled,2018-11-02 -City Hotel,0,1,2015,November,50,15,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.78,0,0,Check-Out,2018-12-03 -Resort Hotel,1,12,2016,October,32,29,2,5,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,40.72,0,1,No-Show,2018-12-03 -Resort Hotel,1,159,2016,October,45,11,4,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient,131.51,0,0,Canceled,2019-04-03 -City Hotel,1,80,2016,February,7,5,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,56.0,0,0,Canceled,2019-02-01 -City Hotel,0,2,2015,July,31,20,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,107.52,1,0,Check-Out,2018-05-03 -City Hotel,0,147,2016,August,38,27,2,3,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-05-04 -Resort Hotel,1,147,2016,July,32,22,2,5,3,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,161.0,179.0,0,Transient,99.86,0,0,Canceled,2020-01-04 -City Hotel,1,11,2016,February,53,31,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.31,1,0,Canceled,2018-12-03 -City Hotel,0,15,2017,May,21,27,0,1,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,133.06,0,0,Check-Out,2020-03-03 -City Hotel,0,18,2017,November,3,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,45.23,0,0,Check-Out,2018-11-02 -City Hotel,0,109,2016,September,25,14,1,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.32,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,February,17,12,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,42.18,0,0,Check-Out,2018-11-02 -Resort Hotel,0,35,2015,August,45,30,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,90.93,0,0,Check-Out,2018-08-03 -Resort Hotel,0,142,2017,June,31,22,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-06-02 -City Hotel,1,419,2016,December,51,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,15,Transient,72.29,0,0,Canceled,2017-10-03 -Resort Hotel,1,110,2016,October,45,28,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,124.22,0,3,Canceled,2019-07-04 -City Hotel,0,43,2017,April,16,26,2,0,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,112.59,0,0,Check-Out,2020-04-02 -City Hotel,1,259,2017,July,34,9,2,3,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,162.45,0,0,Canceled,2020-05-03 -City Hotel,0,49,2017,January,9,5,2,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,67.59,0,0,Check-Out,2019-12-04 -City Hotel,1,124,2017,May,9,27,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.56,0,0,Canceled,2019-10-04 -City Hotel,0,46,2017,July,31,9,0,3,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,B,F,0,No Deposit,15.0,179.0,0,Transient,130.38,0,3,Check-Out,2020-06-02 -Resort Hotel,0,32,2016,July,26,20,2,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-02-01 -Resort Hotel,0,10,2016,August,37,20,0,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,148.32,0,3,Check-Out,2019-04-03 -City Hotel,0,144,2016,October,44,9,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,154.28,0,1,Check-Out,2019-07-04 -Resort Hotel,1,14,2016,February,2,23,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,37.82,0,2,No-Show,2019-02-01 -City Hotel,1,287,2015,July,33,27,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,0.85,0,0,Canceled,2018-05-03 -City Hotel,1,1,2016,August,31,25,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,197.65,0,0,Canceled,2019-04-03 -City Hotel,1,273,2016,September,36,29,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.62,0,0,Canceled,2018-07-03 -City Hotel,1,0,2016,January,46,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,75.84,0,0,No-Show,2019-03-04 -City Hotel,1,362,2017,May,23,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,86.16,0,0,Canceled,2019-03-04 -City Hotel,0,55,2016,May,22,28,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.62,0,0,Check-Out,2019-03-04 -City Hotel,1,14,2017,February,6,12,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -City Hotel,1,105,2016,October,38,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,133.28,0,0,Canceled,2018-07-03 -Resort Hotel,0,17,2016,February,11,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,97.62,0,0,Check-Out,2018-12-03 -Resort Hotel,1,108,2017,July,22,11,1,0,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,62.02,0,2,Canceled,2020-02-01 -Resort Hotel,0,1,2016,September,45,28,2,3,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,246.0,179.0,0,Transient,42.27,0,1,Check-Out,2019-08-04 -City Hotel,0,15,2017,August,32,27,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,D,2,No Deposit,12.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-07-03 -Resort Hotel,0,15,2016,March,12,12,0,2,1,0.0,0,BB,SWE,Corporate,Corporate,1,0,1,A,D,1,No Deposit,16.0,222.0,0,Transient-Party,40.16,0,0,Check-Out,2019-03-04 -City Hotel,0,14,2016,October,44,20,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.8,0,0,Check-Out,2019-09-03 -Resort Hotel,1,193,2016,September,36,13,2,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,78.5,0,0,Canceled,2019-03-04 -City Hotel,1,406,2015,August,39,26,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.43,0,0,Canceled,2017-12-03 -Resort Hotel,0,2,2015,October,41,4,1,0,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,36.49,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,May,28,2,2,0,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,77.49,0,0,Check-Out,2019-06-03 -Resort Hotel,0,12,2016,January,4,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,B,0,No Deposit,146.0,70.0,0,Transient-Party,61.44,0,0,Check-Out,2018-12-03 -City Hotel,0,191,2016,September,44,14,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,19.0,179.0,0,Transient-Party,95.21,0,0,Check-Out,2019-04-03 -Resort Hotel,0,47,2017,February,8,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,E,0,No Deposit,244.0,179.0,0,Transient,43.04,0,0,Check-Out,2020-02-01 -Resort Hotel,0,16,2016,August,35,25,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,128.46,0,0,Check-Out,2019-06-03 -City Hotel,1,268,2017,May,22,14,0,1,1,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,0.91,0,0,Canceled,2020-03-03 -City Hotel,0,48,2016,October,44,16,1,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,192.0,0,Transient,68.51,0,0,Check-Out,2019-09-03 -City Hotel,1,103,2016,December,51,20,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.5,0,0,Canceled,2019-10-04 -City Hotel,1,282,2016,October,46,28,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,9.0,179.0,0,Transient,89.05,0,0,No-Show,2019-05-04 -Resort Hotel,0,13,2016,November,51,15,0,3,1,0.0,0,BB,AUT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,17.0,237.0,0,Transient,113.46,1,0,Check-Out,2019-06-03 -Resort Hotel,0,7,2017,July,40,24,0,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,193.25,1,0,Check-Out,2020-06-02 -Resort Hotel,0,163,2016,May,22,27,0,3,2,0.0,0,FB,PRT,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,35.0,179.0,0,Transient,117.58,0,0,Check-Out,2019-01-03 -City Hotel,0,2,2017,July,32,9,2,3,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,127.69,0,1,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,January,50,5,0,2,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,90.13,0,0,Check-Out,2018-12-03 -City Hotel,0,6,2017,June,21,19,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.4,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2015,October,45,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,45.0,0,Transient,26.74,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2016,November,45,20,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,17.0,179.0,0,Transient,187.24,1,1,Check-Out,2018-11-02 -Resort Hotel,0,253,2016,November,44,15,4,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient-Party,31.73,0,0,Check-Out,2019-01-03 -City Hotel,1,46,2017,May,23,30,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,169.25,0,2,Canceled,2020-01-04 -City Hotel,1,36,2016,May,21,25,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.83,0,1,Canceled,2019-03-04 -City Hotel,0,99,2016,July,32,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,88.3,0,0,Check-Out,2019-06-03 -City Hotel,1,251,2016,June,21,21,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,C,1,Non Refund,34.0,179.0,0,Transient-Party,193.45,0,0,Canceled,2020-03-03 -Resort Hotel,0,85,2016,April,22,28,0,2,2,0.0,0,HB,POL,Direct,Direct,0,0,0,A,F,2,No Deposit,246.0,179.0,0,Transient-Party,106.67,0,0,Check-Out,2019-03-04 -City Hotel,1,354,2016,October,44,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,91.44,0,0,Canceled,2018-09-02 -Resort Hotel,1,159,2016,July,31,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,88.55,0,0,Canceled,2018-11-02 -City Hotel,1,84,2015,July,36,24,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Contract,96.02,0,0,Canceled,2017-09-02 -City Hotel,1,165,2016,December,53,24,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,96.47,0,0,Canceled,2019-10-04 -City Hotel,1,14,2017,June,23,7,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.48,0,1,No-Show,2020-03-03 -City Hotel,0,0,2017,May,22,22,0,3,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,0.18,0,0,Check-Out,2020-02-01 -City Hotel,0,141,2017,July,27,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,156.0,179.0,0,Transient-Party,111.03,0,0,Check-Out,2020-06-02 -Resort Hotel,0,200,2016,August,34,28,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,127.02,0,2,Check-Out,2019-06-03 -City Hotel,0,142,2017,August,37,31,0,3,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,119.37,0,2,Check-Out,2019-08-04 -City Hotel,1,157,2017,July,28,2,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,63.2,0,0,Canceled,2020-06-02 -City Hotel,1,3,2017,June,22,6,1,4,1,0.0,0,SC,IRL,Aviation,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,122.12,0,0,Canceled,2020-05-03 -Resort Hotel,0,103,2017,May,24,27,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,248.0,179.0,0,Transient,165.5,0,0,Check-Out,2020-03-03 -City Hotel,0,200,2017,May,20,10,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,213.82,0,0,Check-Out,2020-06-02 -City Hotel,1,256,2016,August,37,4,2,2,3,2.0,0,BB,CHN,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,8.0,179.0,0,Transient,198.02,0,1,Canceled,2019-03-04 -City Hotel,0,14,2015,October,47,28,0,1,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,251.0,0,Transient-Party,64.16,0,0,Check-Out,2018-09-02 -City Hotel,1,2,2016,August,36,15,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,9.0,179.0,0,Transient,1.99,0,0,Canceled,2019-10-04 -Resort Hotel,1,114,2015,December,51,29,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,77.5,0,0,Canceled,2018-12-03 -City Hotel,1,208,2017,July,33,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,117.09,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,October,43,25,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,10.0,179.0,0,Transient,86.44,0,1,Check-Out,2019-11-03 -City Hotel,0,40,2016,August,36,13,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,96.63,0,1,Check-Out,2019-06-03 -City Hotel,0,38,2016,August,38,7,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,202.7,1,1,Check-Out,2019-06-03 -City Hotel,1,47,2015,November,18,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.79,0,0,Canceled,2018-12-03 -City Hotel,0,38,2017,April,17,6,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,74.89,0,0,Check-Out,2020-03-03 -Resort Hotel,1,305,2017,August,35,6,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Canceled,2020-06-02 -City Hotel,0,43,2017,March,17,28,0,3,2,0.0,0,HB,AUT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,257.0,0,Transient-Party,62.19,1,0,Check-Out,2020-03-03 -Resort Hotel,0,143,2017,June,27,18,4,10,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,2,No Deposit,183.0,179.0,0,Transient,118.36,0,2,Check-Out,2020-04-02 -City Hotel,0,43,2016,March,11,22,1,0,2,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,152.01,0,0,Check-Out,2019-01-03 -City Hotel,1,262,2017,July,31,12,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.06,0,0,Canceled,2020-04-02 -City Hotel,0,8,2015,October,48,30,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.94,0,1,Canceled,2019-09-03 -Resort Hotel,1,0,2016,September,37,31,2,0,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,L,I,0,No Deposit,14.0,179.0,0,Transient,0.45,0,0,Check-Out,2019-06-03 -City Hotel,0,43,2015,September,34,24,2,4,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,82.79,0,0,Check-Out,2018-08-03 -City Hotel,0,197,2016,August,36,15,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,160.33,0,1,Check-Out,2019-08-04 -City Hotel,0,97,2016,October,44,28,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,72.08,0,1,Check-Out,2019-11-03 -City Hotel,0,37,2017,May,24,17,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.46,0,1,Check-Out,2019-11-03 -City Hotel,0,77,2015,July,36,27,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.3,0,2,Check-Out,2019-08-04 -City Hotel,0,1,2017,February,10,27,2,0,2,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,74.73,0,0,Check-Out,2019-12-04 -City Hotel,1,55,2017,May,21,9,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,131.29,0,0,Canceled,2020-02-01 -Resort Hotel,0,161,2016,May,15,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,14.0,222.0,0,Transient-Party,121.83,0,0,Check-Out,2019-03-04 -City Hotel,0,15,2017,July,35,13,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,252.0,0,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2015,September,37,6,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,12.0,45.0,0,Transient,60.45,0,0,Check-Out,2018-06-02 -City Hotel,1,97,2016,May,15,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,79.21,0,0,Canceled,2018-12-03 -Resort Hotel,1,0,2017,January,2,24,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,378.0,81.0,0,Transient,32.47,0,0,Canceled,2019-10-04 -Resort Hotel,0,16,2016,February,12,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,40.7,0,0,Check-Out,2018-11-02 -Resort Hotel,0,2,2015,August,36,30,0,1,1,0.0,0,HB,ESP,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,45.07,0,0,Check-Out,2018-06-02 -City Hotel,0,32,2016,August,35,14,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,99.9,1,2,Check-Out,2019-03-04 -City Hotel,0,44,2016,December,53,9,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.44,0,3,Check-Out,2018-12-03 -Resort Hotel,0,143,2016,May,24,30,2,3,1,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,73.05,0,1,Check-Out,2019-03-04 -Resort Hotel,0,4,2016,February,3,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,340.0,179.0,0,Transient,44.55,0,0,Check-Out,2018-12-03 -City Hotel,1,105,2016,December,53,16,0,4,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,95.75,0,0,Canceled,2019-11-03 -Resort Hotel,1,160,2017,May,21,29,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,197.59,0,0,Canceled,2019-01-03 -City Hotel,0,290,2015,December,53,27,2,1,2,1.0,0,HB,FRA,Groups,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient-Party,117.75,0,2,Check-Out,2018-07-03 -City Hotel,0,147,2016,June,25,24,0,2,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,103.15,0,1,Check-Out,2019-05-04 -City Hotel,1,40,2016,July,31,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,92.78,0,1,Canceled,2019-04-03 -City Hotel,1,2,2016,January,4,22,0,3,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,Non Refund,191.0,179.0,0,Transient,62.15,0,0,Canceled,2018-10-03 -Resort Hotel,1,416,2016,March,19,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,41.83,0,0,Canceled,2018-12-03 -City Hotel,0,3,2016,March,16,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,121.85,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2016,September,45,21,2,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,2,No Deposit,32.0,179.0,0,Transient-Party,120.66,0,0,Check-Out,2019-09-03 -City Hotel,0,387,2016,October,27,27,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,226.82,0,3,Check-Out,2019-05-04 -Resort Hotel,1,130,2017,March,19,16,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,80.48,0,0,Canceled,2019-09-03 -Resort Hotel,0,98,2015,December,50,20,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,94.53,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2016,January,12,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,12.0,45.0,0,Transient,59.6,0,0,Check-Out,2018-10-03 -City Hotel,1,275,2016,April,22,24,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,75,Transient-Party,78.33,0,0,Canceled,2019-11-03 -City Hotel,1,20,2017,May,23,6,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,162.25,0,0,Canceled,2020-03-03 -City Hotel,0,235,2017,May,25,11,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,91.93,0,1,Check-Out,2020-04-02 -City Hotel,0,93,2017,March,22,13,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.08,0,2,Check-Out,2020-04-02 -Resort Hotel,0,250,2016,July,36,28,1,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,249.39,1,3,Check-Out,2019-07-04 -City Hotel,0,9,2016,December,24,24,0,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -City Hotel,1,158,2016,October,36,28,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,105.15,0,0,Canceled,2018-08-03 -Resort Hotel,0,304,2017,July,32,18,1,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,323.0,179.0,0,Contract,95.47,0,1,Check-Out,2020-07-03 -Resort Hotel,1,1,2016,February,7,10,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,142.0,179.0,0,Transient,69.3,0,0,No-Show,2018-11-02 -City Hotel,1,17,2016,February,10,25,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,77.85,0,0,Canceled,2018-10-03 -City Hotel,1,49,2017,August,30,13,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,143.65,0,0,Canceled,2020-04-02 -City Hotel,0,391,2016,August,33,24,2,4,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,3,No Deposit,27.0,179.0,0,Transient-Party,121.58,0,1,Check-Out,2020-06-02 -Resort Hotel,0,11,2017,June,22,16,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,124.54,0,1,Check-Out,2019-02-01 -Resort Hotel,0,270,2016,October,43,24,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,91.0,179.0,0,Contract,79.2,0,0,Check-Out,2019-05-04 -City Hotel,1,10,2016,January,3,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,72.18,0,0,Canceled,2018-11-02 -Resort Hotel,0,97,2017,July,25,14,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,139.58,0,3,Check-Out,2020-04-02 -City Hotel,0,57,2015,September,41,20,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,63.0,0,0,Check-Out,2017-12-03 -Resort Hotel,0,165,2017,July,33,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,91.12,0,2,Check-Out,2020-07-03 -City Hotel,0,46,2016,July,36,27,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,120.05,0,2,Check-Out,2019-06-03 -City Hotel,0,10,2017,February,11,21,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,7.0,179.0,0,Transient,57.79,0,2,Check-Out,2020-03-03 -Resort Hotel,1,88,2016,February,7,21,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,325.0,179.0,0,Transient,92.07,0,0,Canceled,2019-02-01 -City Hotel,1,0,2016,January,9,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient,104.78,0,1,No-Show,2018-12-03 -City Hotel,0,53,2016,May,43,28,1,4,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,119.3,0,0,Check-Out,2019-07-04 -City Hotel,1,191,2015,December,32,20,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,102.72,0,0,Canceled,2018-06-02 -Resort Hotel,0,5,2015,December,52,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient-Party,60.24,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2015,August,38,27,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,136.49,0,0,Check-Out,2018-06-02 -City Hotel,0,17,2016,October,43,29,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,213.22,0,1,Check-Out,2019-08-04 -City Hotel,0,2,2017,July,32,28,0,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.27,0,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2017,May,27,28,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,72.36,1,1,Check-Out,2020-05-03 -Resort Hotel,1,33,2016,August,39,9,2,0,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,128.89,0,1,No-Show,2019-09-03 -Resort Hotel,0,12,2017,May,21,30,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,167.76,0,3,Check-Out,2020-05-03 -Resort Hotel,0,0,2016,February,10,4,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.66,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,October,48,15,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,F,1,No Deposit,15.0,45.0,0,Transient,0.0,0,2,Check-Out,2018-09-02 -City Hotel,0,33,2017,July,32,20,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Contract,62.04,0,1,Check-Out,2020-06-02 -City Hotel,0,106,2017,June,26,30,0,2,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.68,0,1,Check-Out,2020-02-01 -City Hotel,0,87,2016,August,32,25,2,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,126.17,0,2,Check-Out,2019-05-04 -Resort Hotel,0,28,2017,March,12,16,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,0,E,I,1,No Deposit,314.0,179.0,75,Transient-Party,44.34,1,1,Check-Out,2020-01-04 -City Hotel,0,13,2016,October,43,15,1,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,E,G,2,No Deposit,8.0,179.0,0,Transient,105.08,0,2,Check-Out,2019-08-04 -Resort Hotel,0,19,2015,March,51,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,80.0,179.0,0,Transient,33.91,0,1,Check-Out,2018-12-03 -Resort Hotel,0,39,2017,March,20,31,0,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,247.85,0,2,Check-Out,2020-04-02 -City Hotel,1,333,2017,July,23,15,1,2,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,131.64,0,0,Canceled,2020-04-02 -City Hotel,0,37,2017,April,10,24,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,61.21,0,0,Check-Out,2020-04-02 -City Hotel,1,192,2016,October,43,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,22,Transient,61.18,0,0,Canceled,2018-11-02 -City Hotel,0,192,2016,April,21,21,2,2,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,61.98,0,0,Check-Out,2019-05-04 -Resort Hotel,1,96,2017,May,18,7,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,75.21,0,2,Canceled,2020-01-04 -Resort Hotel,1,23,2017,July,18,3,0,1,2,0.0,0,SC,,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,81.2,0,2,Canceled,2020-03-03 -City Hotel,0,3,2016,December,53,4,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,82.01,0,1,Check-Out,2019-07-04 -City Hotel,0,1,2015,December,45,11,1,1,2,0.0,0,BB,CHN,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.09,0,2,Check-Out,2018-05-03 -City Hotel,1,6,2017,March,11,19,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.26,0,1,Canceled,2019-10-04 -Resort Hotel,0,1,2016,March,17,14,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,11.0,69.0,0,Transient-Party,61.87,0,0,Canceled,2019-02-01 -Resort Hotel,0,11,2017,May,22,24,1,0,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,82.11,0,0,Check-Out,2020-04-02 -City Hotel,0,52,2017,April,18,13,2,2,3,1.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,191.03,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2015,August,32,5,2,2,2,0.0,0,BB,ITA,Undefined,Undefined,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Contract,88.1,0,1,Check-Out,2018-06-02 -Resort Hotel,0,15,2017,June,27,15,0,10,2,0.0,0,FB,GBR,Direct,Corporate,0,0,1,E,E,0,No Deposit,12.0,179.0,75,Transient,152.83,0,1,Check-Out,2020-03-03 -Resort Hotel,0,45,2017,March,19,28,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,240.0,179.0,0,Transient,124.97,1,2,Check-Out,2020-03-03 -Resort Hotel,0,115,2017,August,38,31,1,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,240.0,179.0,0,Transient,194.12,1,0,Check-Out,2020-06-02 -City Hotel,1,229,2016,June,41,3,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,130.76,0,2,No-Show,2019-05-04 -Resort Hotel,1,102,2016,April,17,30,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,75,Transient,103.95,0,0,Canceled,2019-02-01 -City Hotel,1,23,2016,November,44,23,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,76.51,0,0,Canceled,2019-09-03 -Resort Hotel,1,43,2017,April,22,31,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,263.0,179.0,0,Transient,119.59,0,0,Canceled,2020-01-04 -Resort Hotel,0,0,2015,August,37,6,1,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,1,No Deposit,252.0,179.0,0,Transient,186.72,1,2,Check-Out,2018-06-02 -Resort Hotel,0,85,2015,December,53,28,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,40.37,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2017,January,43,9,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient-Party,78.6,0,0,Check-Out,2019-11-03 -City Hotel,1,283,2016,December,23,30,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,101.3,0,0,Canceled,2018-11-02 -Resort Hotel,0,54,2017,August,21,28,0,1,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,104.07,1,1,Check-Out,2020-07-03 -City Hotel,0,93,2015,August,35,17,2,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,103.54,0,1,Check-Out,2018-06-02 -Resort Hotel,1,201,2016,July,25,25,0,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,240.0,179.0,0,Contract,103.61,0,1,Canceled,2019-05-04 -City Hotel,1,16,2016,April,17,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.82,0,0,Canceled,2019-01-03 -City Hotel,1,109,2017,May,21,24,1,0,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,98.86,0,1,Canceled,2020-06-02 -Resort Hotel,0,33,2017,May,19,24,1,6,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,124.35,0,2,Check-Out,2020-04-02 -City Hotel,1,295,2015,September,37,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,91.13,0,0,Canceled,2017-11-02 -Resort Hotel,0,11,2016,August,17,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,164.0,179.0,0,Transient,66.8,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,December,17,30,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,E,I,1,No Deposit,321.0,179.0,0,Transient,1.73,0,0,Check-Out,2019-02-01 -City Hotel,1,21,2016,June,15,20,0,1,1,0.0,0,BB,CHN,Groups,TA/TO,0,1,0,A,B,0,Non Refund,1.0,179.0,20,Transient,102.27,0,0,Canceled,2019-02-01 -City Hotel,0,15,2016,August,37,19,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,156.46,0,1,Check-Out,2019-02-01 -City Hotel,0,245,2015,August,37,20,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient-Party,135.46,0,3,Check-Out,2018-06-02 -City Hotel,0,0,2016,October,43,29,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,100.86,0,2,Check-Out,2019-12-04 -Resort Hotel,0,2,2016,June,10,18,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,72.37,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2015,November,49,10,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,4.1,1,2,Check-Out,2018-09-02 -Resort Hotel,1,108,2016,July,38,16,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,125.88,0,1,No-Show,2019-03-04 -Resort Hotel,1,25,2017,April,27,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,E,F,0,No Deposit,188.0,179.0,0,Transient,61.8,0,1,Canceled,2020-03-03 -City Hotel,0,0,2016,January,3,31,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,78.38,0,0,Check-Out,2018-11-02 -Resort Hotel,0,8,2017,June,27,5,2,4,1,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,99.18,0,0,Check-Out,2020-01-04 -City Hotel,1,27,2016,March,25,30,0,3,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,62.7,0,0,Canceled,2019-02-01 -City Hotel,1,42,2016,February,9,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,58.46,0,0,Canceled,2018-10-03 -City Hotel,0,244,2017,July,32,2,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,110.75,0,0,Check-Out,2020-06-02 -City Hotel,1,13,2016,June,26,19,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,73.7,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,June,15,17,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,H,I,1,No Deposit,137.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2015,February,11,7,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,52.15,1,0,Check-Out,2018-05-03 -City Hotel,1,276,2017,November,50,20,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,78.95,0,0,Canceled,2019-09-03 -City Hotel,0,17,2016,June,23,25,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient,130.4,0,0,Check-Out,2019-05-04 -Resort Hotel,0,159,2016,June,32,31,0,3,2,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,A,2,Refundable,12.0,179.0,0,Transient-Party,111.41,0,0,Check-Out,2019-05-04 -City Hotel,0,81,2016,December,53,21,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.69,0,1,Check-Out,2019-11-03 -Resort Hotel,0,147,2016,March,9,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,38.16,0,0,Check-Out,2019-03-04 -City Hotel,1,43,2016,March,15,27,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,70.21,0,1,Canceled,2018-11-02 -City Hotel,0,8,2017,February,10,23,0,2,1,0.0,0,SC,GBR,Groups,TA/TO,1,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,72.81,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2017,February,25,22,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,194.0,96.0,0,Transient,36.9,0,0,Check-Out,2019-06-03 -Resort Hotel,0,50,2015,December,51,10,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,0,Transient,41.79,0,0,Check-Out,2018-08-03 -Resort Hotel,1,90,2015,July,35,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,151.66,0,1,Canceled,2018-06-02 -Resort Hotel,0,92,2016,June,21,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,224.0,0,Transient,59.59,0,0,Check-Out,2019-03-04 -Resort Hotel,0,13,2016,November,18,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,237.0,179.0,0,Transient,78.35,1,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,March,22,16,1,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,98.49,0,0,Check-Out,2019-03-04 -Resort Hotel,0,16,2016,October,42,17,1,7,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-08-04 -Resort Hotel,0,90,2017,June,28,6,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,115.51,0,1,Check-Out,2020-06-02 -Resort Hotel,0,3,2017,June,26,17,1,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,159.12,1,0,Check-Out,2020-02-01 -Resort Hotel,1,37,2017,February,6,24,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,186.0,331.0,0,Transient,67.18,0,0,Canceled,2020-01-04 -City Hotel,0,173,2015,September,36,9,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,59.64,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2015,August,35,29,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,145.73,0,0,Check-Out,2018-09-02 -City Hotel,1,22,2016,August,38,28,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,147.62,0,0,Canceled,2019-02-01 -City Hotel,1,20,2017,February,10,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.52,0,0,Canceled,2019-11-03 -Resort Hotel,0,37,2016,January,3,20,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,188.0,179.0,0,Transient-Party,29.85,1,0,Check-Out,2019-11-03 -City Hotel,1,40,2016,April,15,16,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,61.22,0,0,Canceled,2019-02-01 -Resort Hotel,0,136,2017,July,30,3,2,5,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,243.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-05-03 -City Hotel,1,406,2017,August,38,13,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,76.82,0,0,Canceled,2020-06-02 -City Hotel,1,227,2015,June,27,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,110.82,0,0,Canceled,2018-11-02 -Resort Hotel,0,4,2017,August,37,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,125.72,0,1,Check-Out,2020-06-02 -City Hotel,0,244,2015,September,42,6,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.9,0,0,Check-Out,2018-08-03 -Resort Hotel,1,260,2017,July,26,10,2,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,252.0,0,0,Canceled,2019-01-03 -City Hotel,0,11,2015,October,43,22,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Contract,62.71,0,0,Check-Out,2018-12-03 -City Hotel,0,17,2016,August,27,20,0,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.07,1,3,Check-Out,2019-05-04 -City Hotel,1,283,2016,May,37,15,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.88,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2016,May,16,19,2,1,1,1.0,0,FB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,199.0,179.0,0,Transient,78.67,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,October,44,21,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,E,F,1,No Deposit,17.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-08-03 -Resort Hotel,0,255,2017,June,24,20,4,1,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,110.58,0,0,Check-Out,2020-01-04 -Resort Hotel,0,14,2017,April,18,3,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,91.74,0,0,Check-Out,2020-02-01 -Resort Hotel,0,250,2017,March,18,21,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,200.0,179.0,0,Transient,124.21,0,2,Check-Out,2020-02-01 -Resort Hotel,0,108,2017,February,11,6,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,213.47,1,0,Check-Out,2020-03-03 -City Hotel,1,42,2016,June,27,27,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,151.0,179.0,40,Transient,71.7,0,0,Canceled,2019-10-04 -City Hotel,0,268,2015,September,33,7,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.06,0,0,Check-Out,2017-09-02 -City Hotel,1,45,2017,February,10,27,0,2,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.07,0,0,Canceled,2019-12-04 -City Hotel,1,26,2016,August,37,30,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,60.24,0,2,Canceled,2017-12-03 -Resort Hotel,0,108,2017,July,15,24,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,113.53,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2015,December,53,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,59.77,0,0,Check-Out,2018-11-02 -Resort Hotel,1,139,2017,February,12,28,2,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,80.49,0,0,Canceled,2019-09-03 -Resort Hotel,1,63,2017,February,8,9,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,172.0,179.0,0,Transient,53.98,0,0,Canceled,2020-04-02 -Resort Hotel,0,139,2015,July,31,28,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,62.73,1,0,Check-Out,2018-05-03 -City Hotel,0,0,2016,October,39,27,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,0.0,1,0,Check-Out,2019-07-04 -Resort Hotel,0,110,2017,April,19,24,2,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,219.78,0,2,Check-Out,2020-02-01 -Resort Hotel,0,11,2017,August,33,24,0,5,1,0.0,0,HB,ESP,Direct,Direct,0,0,0,E,E,2,No Deposit,196.0,179.0,0,Transient-Party,160.51,1,1,Check-Out,2020-02-01 -City Hotel,0,27,2016,October,35,15,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,97.17,0,0,Check-Out,2019-07-04 -City Hotel,0,253,2015,October,44,28,1,1,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,84.64,0,0,Check-Out,2018-08-03 -Resort Hotel,0,8,2016,December,50,28,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,K,0,No Deposit,14.0,71.0,0,Transient,61.27,0,0,Check-Out,2020-01-04 -Resort Hotel,0,9,2015,August,36,27,0,2,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,F,0,No Deposit,246.0,179.0,0,Transient,187.08,1,0,Check-Out,2020-07-03 -Resort Hotel,0,171,2017,July,21,10,1,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,203.81,0,1,Check-Out,2020-03-03 -City Hotel,1,264,2017,June,30,19,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,215.59,0,0,Canceled,2019-08-04 -Resort Hotel,0,2,2015,September,34,23,4,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,196.0,179.0,0,Transient,144.54,0,0,Check-Out,2018-08-03 -City Hotel,0,144,2016,June,25,2,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,60.81,0,1,Check-Out,2019-02-01 -City Hotel,0,4,2017,August,34,21,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,11.0,179.0,0,Transient,0.69,0,1,Check-Out,2019-12-04 -Resort Hotel,0,3,2016,February,10,5,1,1,2,0.0,0,Undefined,,Corporate,Direct,0,0,0,A,L,0,Non Refund,15.0,179.0,0,Transient,47.64,0,0,Check-Out,2019-03-04 -City Hotel,0,63,2016,March,38,13,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,225.22,0,2,Check-Out,2020-03-03 -City Hotel,1,153,2016,March,16,28,0,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,29.0,179.0,0,Transient-Party,80.23,0,0,Canceled,2018-12-03 -City Hotel,0,158,2017,June,28,24,1,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.79,0,2,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,March,4,14,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2017,December,51,16,0,1,1,0.0,0,BB,GBR,Undefined,Corporate,0,0,0,A,B,0,No Deposit,15.0,87.0,0,Transient-Party,64.85,0,1,Check-Out,2019-12-04 -City Hotel,0,1,2016,March,3,5,2,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,G,F,0,No Deposit,16.0,179.0,0,Transient,76.6,0,3,Check-Out,2019-02-01 -City Hotel,1,53,2016,July,25,23,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,117.24,0,0,Canceled,2019-01-03 -Resort Hotel,0,15,2017,February,8,24,0,4,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,296.0,82.0,0,Transient-Party,40.27,0,0,Check-Out,2020-02-01 -City Hotel,0,97,2017,May,16,17,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,7.0,179.0,0,Transient,63.02,0,3,Check-Out,2020-03-03 -City Hotel,0,28,2016,October,43,9,2,4,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,105.0,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,January,3,27,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,152.26,0,1,Check-Out,2018-11-02 -Resort Hotel,0,84,2016,July,17,25,2,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,238.0,179.0,0,Transient,171.93,0,1,Canceled,2020-03-03 -City Hotel,0,11,2016,June,27,22,0,1,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.78,0,1,Check-Out,2019-05-04 -City Hotel,0,322,2015,October,43,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,95.46,0,0,Check-Out,2018-09-02 -City Hotel,1,8,2016,December,53,24,0,7,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,103.41,0,2,Canceled,2019-11-03 -Resort Hotel,0,0,2017,June,27,23,3,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient,184.21,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,September,36,24,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.13,0,0,Check-Out,2019-08-04 -Resort Hotel,0,42,2017,March,13,16,1,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,79.0,0,Transient-Party,85.13,0,0,Check-Out,2020-02-01 -Resort Hotel,1,53,2015,December,51,10,2,4,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,60.66,0,0,Canceled,2018-08-03 -City Hotel,1,209,2017,August,35,26,0,3,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,183.48,0,1,Canceled,2020-07-03 -City Hotel,0,10,2016,May,17,20,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,C,0,No Deposit,191.0,179.0,0,Transient,138.78,0,0,Check-Out,2019-03-04 -Resort Hotel,0,237,2017,July,24,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-06-02 -City Hotel,1,269,2016,July,31,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,91.37,0,0,Canceled,2018-04-02 -Resort Hotel,0,1,2015,October,45,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,41.13,0,0,Check-Out,2018-09-02 -City Hotel,1,109,2017,June,36,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,Non Refund,10.0,179.0,0,Transient,120.5,0,0,Canceled,2019-11-03 -Resort Hotel,1,0,2017,July,26,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,F,A,0,No Deposit,18.0,179.0,0,Transient,105.9,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2015,October,42,21,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,242.0,179.0,0,Transient-Party,52.22,1,0,Check-Out,2018-06-02 -Resort Hotel,0,3,2017,February,9,16,0,2,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,99.52,0,0,Check-Out,2019-11-03 -City Hotel,0,53,2017,June,19,18,0,2,2,0.0,0,SC,DEU,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,107.8,1,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,July,33,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,249.0,179.0,0,Transient,63.17,1,0,Check-Out,2018-06-02 -City Hotel,1,49,2017,August,36,28,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,147.01,0,0,Canceled,2019-11-03 -City Hotel,0,59,2015,October,51,26,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,30.0,179.0,0,Transient-Party,58.51,0,0,Check-Out,2019-01-03 -City Hotel,0,20,2015,December,50,1,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,3,No Deposit,15.0,225.0,0,Transient,104.35,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,March,17,21,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,E,0,No Deposit,193.0,178.0,0,Transient,76.98,0,0,Check-Out,2020-03-03 -Resort Hotel,0,13,2016,May,21,13,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,34.45,0,0,Check-Out,2019-03-04 -Resort Hotel,0,44,2017,July,22,6,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,247.0,179.0,0,Transient,204.28,1,1,Check-Out,2020-06-02 -City Hotel,0,151,2016,June,27,30,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,123.27,0,2,Check-Out,2019-05-04 -Resort Hotel,0,50,2016,March,17,18,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,88.75,1,2,Check-Out,2019-03-04 -City Hotel,1,404,2017,May,20,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,70.06,0,0,Canceled,2019-10-04 -City Hotel,0,0,2017,May,22,12,0,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,B,0,No Deposit,12.0,240.0,0,Transient,87.22,0,0,Check-Out,2019-11-03 -Resort Hotel,0,163,2017,April,18,28,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,311.0,179.0,0,Transient,80.25,0,0,Check-Out,2019-11-03 -Resort Hotel,1,12,2017,January,9,24,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,239.0,179.0,0,Transient,69.58,0,3,Canceled,2019-11-03 -Resort Hotel,0,84,2016,June,25,5,0,2,3,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,82.0,179.0,0,Transient-Party,75.23,0,0,Check-Out,2019-02-01 -Resort Hotel,0,27,2015,July,33,2,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,91.24,0,2,Check-Out,2018-05-03 -City Hotel,1,47,2017,April,14,13,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.24,0,0,Canceled,2020-02-01 -Resort Hotel,0,3,2016,July,38,27,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Transient-Party,62.56,0,0,Check-Out,2018-08-03 -City Hotel,1,262,2016,December,53,29,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,61.77,0,0,Canceled,2018-11-02 -City Hotel,0,27,2017,February,11,26,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.98,0,0,Check-Out,2019-10-04 -City Hotel,1,105,2017,June,34,28,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,145.22,0,0,Canceled,2020-06-02 -City Hotel,0,0,2016,September,45,14,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,202.0,331.0,0,Transient,132.47,0,0,Check-Out,2019-06-03 -City Hotel,1,111,2016,June,25,9,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,B,1,Non Refund,139.0,179.0,0,Transient-Party,63.19,0,0,Canceled,2019-01-03 -Resort Hotel,0,50,2017,April,17,31,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient,203.32,1,3,Check-Out,2019-11-03 -City Hotel,1,252,2015,September,44,15,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.14,0,0,Canceled,2018-07-03 -Resort Hotel,0,165,2016,March,16,30,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,0,Refundable,13.0,223.0,0,Transient-Party,78.53,0,0,Check-Out,2019-04-03 -Resort Hotel,0,45,2017,May,26,18,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,124.14,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,October,45,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,15.0,228.0,0,Transient,71.16,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,June,27,20,0,1,1,0.0,0,HB,PRT,Complementary,Direct,1,0,1,A,F,1,No Deposit,18.0,45.0,0,Transient,0.0,1,0,Check-Out,2020-02-01 -City Hotel,1,9,2017,February,8,20,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,252.0,0,0,Canceled,2019-01-03 -City Hotel,0,36,2016,October,42,27,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,115.0,0,2,Check-Out,2019-09-03 -City Hotel,0,43,2017,June,20,18,2,5,3,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,I,1,No Deposit,11.0,179.0,0,Transient,155.99,0,1,Check-Out,2020-04-02 -City Hotel,1,46,2016,July,27,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,7.0,179.0,0,Transient-Party,104.34,0,1,Canceled,2019-06-03 -City Hotel,0,0,2016,September,16,16,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,1,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,25,2015,July,37,31,0,2,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,247.0,179.0,0,Transient,128.83,1,0,Check-Out,2018-06-02 -City Hotel,1,66,2017,March,11,14,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,9.0,179.0,0,Transient,152.97,0,0,Canceled,2020-05-03 -City Hotel,0,0,2017,February,9,28,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.45,1,0,Canceled,2020-02-01 -Resort Hotel,1,3,2017,August,36,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,252.0,1,0,Canceled,2020-07-03 -City Hotel,1,16,2017,May,10,13,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.71,0,1,Canceled,2019-11-03 -City Hotel,0,45,2015,December,51,26,0,2,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,58.18,0,1,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,February,41,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,33.18,0,0,Check-Out,2018-08-03 -City Hotel,1,46,2016,February,10,4,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,98.9,0,0,Canceled,2019-11-03 -City Hotel,0,6,2017,January,4,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,87.3,0,1,Check-Out,2019-12-04 -Resort Hotel,0,239,2017,October,44,11,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,March,11,13,2,1,2,0.0,0,BB,GBR,Direct,Corporate,1,0,1,A,C,0,No Deposit,373.0,331.0,0,Group,77.93,0,2,Check-Out,2020-02-01 -Resort Hotel,1,249,2015,August,36,27,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,244.0,179.0,0,Transient,62.65,0,0,Canceled,2018-06-02 -City Hotel,0,2,2017,June,27,28,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,41.0,179.0,0,Group,79.4,0,0,Check-Out,2020-06-02 -City Hotel,1,154,2016,October,43,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,32.0,179.0,20,Transient,68.9,0,0,Canceled,2019-01-03 -City Hotel,0,0,2015,September,41,2,0,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,0.61,0,0,Check-Out,2018-09-02 -Resort Hotel,0,13,2016,March,9,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,237.0,179.0,0,Transient,38.15,1,0,Check-Out,2019-03-04 -Resort Hotel,0,2,2016,March,4,31,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,3,No Deposit,16.0,179.0,0,Transient,123.48,1,1,Check-Out,2019-02-01 -Resort Hotel,0,190,2017,August,35,25,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,121.27,1,1,Check-Out,2020-07-03 -City Hotel,0,5,2016,January,51,21,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,98.31,0,0,Check-Out,2018-08-03 -City Hotel,0,8,2017,May,27,16,0,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,119.45,0,0,Check-Out,2020-02-01 -Resort Hotel,0,27,2017,October,36,21,2,0,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,E,E,0,No Deposit,15.0,331.0,0,Transient,231.52,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,September,34,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Contract,204.4,0,2,Check-Out,2019-07-04 -Resort Hotel,1,50,2016,June,30,17,2,5,3,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,143.86,0,0,Canceled,2019-02-01 -City Hotel,1,211,2016,December,30,15,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,1,A,A,0,Non Refund,8.0,179.0,75,Transient,102.97,0,0,Canceled,2019-11-03 -City Hotel,1,11,2016,October,45,21,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,12.0,331.0,0,Transient,161.51,0,1,Canceled,2019-08-04 -Resort Hotel,0,53,2017,January,11,28,1,0,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,338.0,179.0,0,Transient,71.48,0,0,Check-Out,2019-10-04 -Resort Hotel,0,52,2016,October,45,10,1,1,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,244.0,179.0,0,Transient,181.68,1,3,Check-Out,2019-09-03 -City Hotel,1,149,2016,April,17,30,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.22,0,0,Canceled,2018-11-02 -City Hotel,0,1,2015,January,31,25,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,178.0,179.0,0,Transient-Party,59.62,0,0,Check-Out,2018-10-03 -City Hotel,1,17,2016,December,8,8,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,76.29,0,0,Canceled,2018-11-02 -Resort Hotel,1,156,2016,March,16,31,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,44.81,0,0,Canceled,2019-02-01 -City Hotel,0,59,2017,August,35,30,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,128.67,0,1,Check-Out,2020-06-02 -City Hotel,0,0,2017,May,22,24,1,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,117.66,0,1,Check-Out,2020-03-03 -Resort Hotel,0,34,2015,December,53,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,73.3,0,1,Check-Out,2019-01-03 -City Hotel,0,15,2015,December,50,29,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,118.27,0,1,Check-Out,2018-06-02 -City Hotel,1,17,2016,June,28,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,83.49,0,0,Canceled,2018-12-03 -Resort Hotel,0,40,2016,July,29,12,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,0,Transient-Party,69.99,0,0,Check-Out,2019-02-01 -Resort Hotel,0,211,2017,August,39,29,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,221.03,0,3,Check-Out,2020-07-03 -City Hotel,0,142,2016,June,33,27,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,3,No Deposit,191.0,179.0,42,Transient-Party,92.02,0,0,Check-Out,2019-11-03 -City Hotel,0,34,2016,March,11,13,1,0,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,74.25,0,0,Check-Out,2019-02-01 -Resort Hotel,0,97,2017,December,53,5,1,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient,110.65,0,3,Check-Out,2019-11-03 -City Hotel,0,30,2016,December,53,10,1,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,160.29,0,3,Check-Out,2019-12-04 -Resort Hotel,0,92,2016,May,22,9,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,61.62,0,3,Check-Out,2019-03-04 -City Hotel,0,10,2016,December,50,9,1,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,90.37,0,1,Check-Out,2018-11-02 -City Hotel,0,30,2016,May,3,9,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,125.01,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,March,18,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,183.36,1,2,Check-Out,2019-03-04 -City Hotel,1,62,2017,February,36,15,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,100.2,0,0,Canceled,2018-08-03 -City Hotel,1,36,2016,March,8,4,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,7.0,179.0,0,Transient,64.68,0,1,Canceled,2018-12-03 -City Hotel,1,428,2016,May,21,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,63.54,0,0,Canceled,2017-12-03 -City Hotel,0,1,2017,June,27,2,0,1,1,0.0,0,BB,,Corporate,GDS,1,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,132.9,0,0,Check-Out,2020-01-04 -City Hotel,0,247,2015,July,35,16,2,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Contract,62.54,0,1,Check-Out,2017-11-02 -City Hotel,0,1,2016,February,11,19,0,2,1,0.0,0,BB,USA,Direct,Direct,1,0,0,A,A,0,No Deposit,18.0,45.0,0,Transient,78.42,0,0,Check-Out,2020-06-02 -Resort Hotel,0,240,2015,October,41,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,96.56,0,1,Check-Out,2018-06-02 -City Hotel,0,2,2017,May,22,2,0,1,1,0.0,0,SC,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,108.45,0,0,Check-Out,2020-02-01 -Resort Hotel,0,95,2016,July,25,4,0,7,2,0.0,0,HB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,100.0,179.0,0,Transient,97.56,0,0,Check-Out,2019-07-04 -City Hotel,0,43,2016,December,53,16,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,104.25,0,1,Check-Out,2019-11-03 -City Hotel,1,11,2016,August,35,25,0,3,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,162.06,0,3,Canceled,2019-05-04 -Resort Hotel,0,45,2017,May,21,2,0,2,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,161.66,0,0,Check-Out,2020-06-02 -City Hotel,0,32,2017,March,11,29,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,62.34,0,3,Check-Out,2020-03-03 -City Hotel,1,11,2015,July,33,16,2,5,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,L,D,0,No Deposit,12.0,179.0,0,Transient-Party,202.73,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,March,11,27,1,1,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,97.28,0,3,Check-Out,2019-11-03 -City Hotel,0,10,2016,October,43,24,1,10,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,70.54,0,0,Check-Out,2019-06-03 -City Hotel,0,8,2016,January,49,21,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,June,31,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,45.0,0,Transient-Party,65.11,0,0,Check-Out,2019-11-03 -City Hotel,1,262,2016,October,45,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,98.66,0,0,Canceled,2018-08-03 -City Hotel,0,1,2015,November,36,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,16.0,45.0,0,Transient,82.85,0,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2017,March,11,27,0,5,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,47.46,0,0,Check-Out,2019-12-04 -Resort Hotel,0,12,2015,December,53,6,2,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,99.15,0,2,Check-Out,2018-10-03 -City Hotel,0,85,2017,May,22,29,0,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.93,0,2,Check-Out,2020-05-03 -City Hotel,0,2,2016,December,53,12,1,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.46,0,0,Check-Out,2019-10-04 -City Hotel,0,141,2017,February,9,29,2,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,230.81,0,0,Check-Out,2020-01-04 -Resort Hotel,1,7,2016,June,25,29,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,81.16,1,2,Check-Out,2019-04-03 -City Hotel,0,19,2016,October,43,5,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.99,0,1,Check-Out,2019-06-03 -Resort Hotel,0,250,2017,July,28,16,2,10,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,123.5,0,0,Check-Out,2020-06-02 -Resort Hotel,0,137,2016,June,26,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,246.0,179.0,0,Transient,69.32,0,0,Canceled,2019-03-04 -Resort Hotel,0,2,2015,December,51,8,0,1,2,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,22.07,0,0,Check-Out,2019-01-03 -City Hotel,1,419,2016,December,49,25,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.3,0,0,Canceled,2017-11-02 -City Hotel,0,98,2017,March,15,12,0,4,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.71,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,271.0,88.0,0,Transient-Party,39.02,0,0,Check-Out,2019-12-04 -City Hotel,1,250,2015,October,46,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.9,0,0,Canceled,2018-08-03 -City Hotel,1,13,2017,March,2,20,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,93.01,0,0,Canceled,2019-10-04 -Resort Hotel,0,86,2016,April,53,1,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,66.73,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2015,January,3,16,0,1,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient-Party,30.48,1,2,Check-Out,2018-12-03 -City Hotel,0,246,2016,December,50,19,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,10.0,179.0,0,Transient,105.97,0,0,Check-Out,2019-11-03 -Resort Hotel,0,44,2016,May,22,20,1,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,90.98,0,2,Check-Out,2019-04-03 -City Hotel,0,13,2015,November,37,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,123.62,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2015,October,44,5,2,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,33.94,0,0,Check-Out,2018-08-03 -City Hotel,1,98,2017,March,10,13,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,126.2,0,3,Canceled,2020-01-04 -Resort Hotel,0,14,2016,February,11,5,2,0,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,45.46,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2015,November,37,21,0,1,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,64.51,0,1,Check-Out,2018-05-03 -City Hotel,1,184,2017,June,37,27,1,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,203.41,0,0,Canceled,2020-02-01 -City Hotel,1,149,2016,June,21,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.78,0,0,Canceled,2017-12-03 -Resort Hotel,1,168,2016,July,35,20,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,71.94,0,2,Canceled,2019-07-04 -City Hotel,0,9,2017,March,17,15,2,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,79.73,0,0,Check-Out,2020-04-02 -Resort Hotel,1,112,2016,March,17,23,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,Non Refund,9.0,179.0,0,Transient,41.73,0,0,Canceled,2019-01-03 -Resort Hotel,0,250,2017,April,14,9,4,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,75,Transient,252.0,1,0,Check-Out,2019-09-03 -City Hotel,1,1,2017,August,36,9,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,3.99,0,0,Canceled,2020-02-01 -Resort Hotel,0,39,2016,March,18,29,1,3,1,0.0,0,HB,ESP,Groups,Corporate,0,0,0,A,A,1,No Deposit,16.0,82.0,0,Transient,34.27,0,0,Check-Out,2019-02-01 -City Hotel,0,263,2016,July,33,5,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,200.34,0,2,Canceled,2019-01-03 -City Hotel,0,22,2016,August,37,5,2,5,1,0.0,0,BB,CN,Online TA,Direct,0,0,0,B,E,0,No Deposit,10.0,179.0,0,Transient,226.58,0,0,Check-Out,2019-05-04 -City Hotel,0,273,2016,June,43,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,137.55,0,0,Check-Out,2019-04-03 -City Hotel,1,377,2017,June,25,6,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.09,0,0,Canceled,2020-02-01 -City Hotel,0,1,2016,November,50,8,1,1,2,0.0,0,HB,PRT,Complementary,Direct,0,0,0,F,K,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,93,2016,November,50,6,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,104.15,0,3,Check-Out,2018-10-03 -City Hotel,0,157,2017,April,19,22,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,140.26,0,0,Check-Out,2020-02-01 -Resort Hotel,1,168,2017,August,33,16,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,274.0,179.0,0,Transient,199.11,0,0,Canceled,2020-06-02 -Resort Hotel,0,192,2015,October,44,25,4,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,64.1,0,0,Check-Out,2018-06-02 -City Hotel,1,360,2016,August,37,9,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,100.75,0,0,Canceled,2018-08-03 -Resort Hotel,0,45,2015,October,43,6,1,3,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Contract,76.73,0,0,Check-Out,2018-09-02 -City Hotel,1,206,2017,July,31,15,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,7.0,179.0,0,Transient,186.12,0,1,Canceled,2020-05-03 -Resort Hotel,1,256,2016,August,38,29,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,165.18,0,0,Canceled,2019-07-04 -Resort Hotel,0,34,2016,September,46,31,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,63.98,1,2,Check-Out,2019-06-03 -Resort Hotel,1,44,2016,March,10,18,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,259.0,179.0,0,Transient,68.72,0,0,Canceled,2019-02-01 -City Hotel,0,43,2016,May,21,27,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,66.05,0,1,Check-Out,2019-03-04 -Resort Hotel,0,151,2017,May,28,2,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,37.0,179.0,0,Transient,126.1,0,2,Check-Out,2020-06-02 -City Hotel,0,13,2016,October,44,25,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.36,0,2,Check-Out,2019-08-04 -City Hotel,0,3,2016,July,28,30,2,0,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,129.05,0,0,Check-Out,2019-05-04 -City Hotel,0,121,2016,January,9,5,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.38,0,1,Check-Out,2019-02-01 -City Hotel,1,61,2017,April,21,30,1,4,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,98.47,0,0,Canceled,2020-02-01 -City Hotel,1,408,2015,August,40,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.89,0,0,Canceled,2018-06-02 -City Hotel,1,234,2015,September,42,20,0,2,1,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient-Party,110.83,0,0,Canceled,2018-08-03 -Resort Hotel,1,26,2015,June,37,27,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,L,G,0,No Deposit,248.0,179.0,0,Transient,45.81,0,0,No-Show,2018-11-02 -City Hotel,1,255,2017,June,29,20,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.3,0,1,Canceled,2020-03-03 -Resort Hotel,1,326,2017,May,33,16,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,Refundable,240.0,179.0,0,Transient,200.13,0,2,Canceled,2019-11-03 -City Hotel,0,18,2017,June,19,27,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,95.45,0,2,Check-Out,2020-04-02 -City Hotel,0,6,2017,June,27,21,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,2,No Deposit,13.0,213.0,0,Transient,159.71,0,0,Check-Out,2019-06-03 -City Hotel,1,299,2017,March,21,31,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,62.12,0,0,Canceled,2019-10-04 -City Hotel,1,24,2016,March,11,9,2,0,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,9.0,179.0,0,Transient,71.84,0,0,Check-Out,2018-11-02 -City Hotel,1,1,2017,February,9,16,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,10.0,179.0,0,Transient,104.49,0,0,Canceled,2020-01-04 -City Hotel,0,34,2016,June,50,8,0,1,3,0.0,0,BB,FRA,Online TA,GDS,0,0,0,D,D,0,No Deposit,186.0,179.0,0,Transient,86.15,0,0,Check-Out,2019-03-04 -City Hotel,0,255,2015,September,40,31,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Group,88.48,0,0,Check-Out,2018-07-03 -City Hotel,1,258,2015,November,45,13,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,60.95,0,0,Canceled,2018-08-03 -City Hotel,0,15,2017,June,3,16,0,2,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.91,0,1,Check-Out,2020-04-02 -City Hotel,0,2,2017,January,3,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,81.87,0,1,Check-Out,2020-03-03 -City Hotel,0,42,2015,September,43,28,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.86,0,0,Check-Out,2018-08-03 -Resort Hotel,0,175,2016,August,37,28,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,174.74,1,0,Check-Out,2019-09-03 -City Hotel,1,104,2016,July,33,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,61.65,0,0,Canceled,2019-06-03 -City Hotel,1,113,2016,July,16,27,2,5,3,1.0,0,BB,ISR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,109.29,0,0,Canceled,2019-01-03 -City Hotel,0,30,2016,September,42,6,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.67,0,1,Check-Out,2019-09-03 -City Hotel,0,386,2017,August,37,1,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,103.8,0,1,Check-Out,2019-06-03 -Resort Hotel,0,159,2017,July,27,16,2,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,241.0,179.0,0,Transient,157.33,0,3,Check-Out,2020-06-02 -City Hotel,1,3,2016,January,13,14,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,16.0,45.0,0,Transient,82.12,0,0,Canceled,2018-12-03 -City Hotel,1,157,2016,June,27,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,93.99,0,0,Canceled,2019-02-01 -City Hotel,0,1,2015,July,34,6,0,3,1,2.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,180.08,0,0,Check-Out,2018-06-02 -City Hotel,0,23,2017,April,19,31,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,69.07,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2017,December,42,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,16.0,179.0,0,Group,0.0,0,0,Check-Out,2019-09-03 -Resort Hotel,0,7,2016,October,44,17,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,240.0,0,Transient,89.84,0,0,Check-Out,2019-07-04 -City Hotel,1,326,2017,February,8,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.81,0,0,Canceled,2019-11-03 -Resort Hotel,1,248,2016,December,52,24,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,40.2,0,1,Canceled,2019-12-04 -City Hotel,0,110,2016,December,53,14,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,85.34,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,February,4,9,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,0,No Deposit,15.0,247.0,0,Transient,72.85,0,0,Check-Out,2019-02-01 -Resort Hotel,0,14,2017,August,35,2,0,3,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,205.05,0,0,Check-Out,2020-06-02 -City Hotel,1,85,2017,June,26,3,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,11.0,179.0,0,Transient,90.52,0,0,Canceled,2020-01-04 -Resort Hotel,0,0,2017,January,2,28,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,245.0,80.0,0,Transient,31.82,0,0,Check-Out,2019-10-04 -Resort Hotel,0,239,2016,April,22,14,2,5,2,0.0,0,HB,GBR,Groups,Direct,1,0,0,E,I,1,No Deposit,323.0,179.0,75,Transient-Party,80.01,0,0,Check-Out,2020-03-03 -City Hotel,1,1,2015,August,37,5,0,3,3,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,45.14,0,0,Canceled,2018-07-03 -Resort Hotel,0,11,2016,March,11,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,223.0,0,Transient,60.41,0,0,Check-Out,2019-03-04 -City Hotel,1,222,2017,June,28,15,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,157.29,0,0,Canceled,2019-09-03 -Resort Hotel,1,148,2016,October,42,14,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,1,E,D,2,No Deposit,241.0,179.0,0,Transient,143.82,0,2,No-Show,2019-07-04 -Resort Hotel,0,27,2016,September,37,31,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,C,I,3,No Deposit,10.0,179.0,0,Transient,2.93,0,0,Check-Out,2019-07-04 -Resort Hotel,0,36,2016,August,35,30,1,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,158.89,1,0,Check-Out,2019-05-04 -City Hotel,1,97,2017,March,10,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,22,Transient,34.63,0,0,Canceled,2018-10-03 -Resort Hotel,1,198,2016,August,32,28,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,237.79,0,0,Canceled,2019-06-03 -Resort Hotel,0,37,2016,October,42,9,0,2,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,246.0,179.0,0,Transient,34.76,0,0,Check-Out,2019-08-04 -City Hotel,0,13,2017,March,17,28,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,72.25,0,1,Check-Out,2020-01-04 -City Hotel,0,43,2017,June,26,13,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.15,0,0,Check-Out,2020-06-02 -City Hotel,0,4,2017,January,10,13,0,3,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,80.92,0,1,Check-Out,2020-03-03 -Resort Hotel,1,54,2016,September,36,28,4,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,106.13,0,0,Canceled,2019-05-04 -City Hotel,0,154,2016,August,37,25,2,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,151.93,0,0,Check-Out,2018-08-03 -City Hotel,1,52,2016,July,18,31,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,119.84,0,0,Canceled,2018-12-03 -Resort Hotel,0,84,2017,June,28,18,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,155.46,0,1,Canceled,2020-01-04 -City Hotel,1,298,2017,April,21,30,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,78.15,0,2,Canceled,2019-12-04 -Resort Hotel,0,356,2016,March,12,31,1,1,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,1,No Deposit,10.0,222.0,0,Transient,32.27,0,0,Check-Out,2019-12-04 -City Hotel,1,368,2017,August,22,28,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,122.01,0,0,Canceled,2020-06-02 -Resort Hotel,0,8,2016,December,10,10,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,3,No Deposit,14.0,83.0,0,Transient,48.27,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2017,February,10,25,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,E,1,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-11-03 -City Hotel,1,13,2016,October,43,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,119.06,0,2,No-Show,2019-09-03 -City Hotel,0,0,2015,September,45,31,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,143.67,0,0,Check-Out,2018-08-03 -Resort Hotel,0,265,2017,February,8,18,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient-Party,91.61,0,1,Check-Out,2019-12-04 -City Hotel,1,93,2016,July,3,18,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,8.0,179.0,0,Transient,115.51,0,3,Canceled,2019-06-03 -City Hotel,0,10,2016,October,20,17,2,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,94.83,1,0,Check-Out,2019-02-01 -City Hotel,0,55,2016,June,19,20,0,3,3,0.0,0,BB,POL,Complementary,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,119.02,0,1,Check-Out,2019-03-04 -City Hotel,1,368,2017,August,37,21,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,71.39,0,0,Canceled,2020-07-03 -City Hotel,1,439,2017,May,22,31,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.35,0,0,Canceled,2019-10-04 -City Hotel,0,2,2016,April,17,27,0,1,2,0.0,0,BB,,Complementary,Direct,1,0,0,C,H,2,No Deposit,16.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-06-03 -Resort Hotel,1,165,2015,July,33,16,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,145.0,179.0,0,Transient,86.63,0,0,Canceled,2018-06-02 -City Hotel,0,0,2015,December,46,26,1,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,7.0,179.0,0,Transient,106.73,0,1,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,March,11,13,0,2,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,74.0,0,Transient-Party,28.56,0,0,Check-Out,2019-03-04 -Resort Hotel,0,86,2016,March,17,10,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,61.48,0,0,Check-Out,2019-03-04 -City Hotel,1,4,2017,February,9,23,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,172.0,179.0,0,Transient,86.75,0,0,Canceled,2019-11-03 -City Hotel,0,150,2017,August,32,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,217.48,0,1,Check-Out,2020-06-02 -City Hotel,0,423,2017,May,27,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,166.45,0,0,Check-Out,2020-06-02 -City Hotel,1,390,2017,May,22,26,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,63.0,179.0,0,Transient,217.2,0,0,Canceled,2020-04-02 -Resort Hotel,0,194,2017,August,36,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,122.04,0,0,Check-Out,2020-03-03 -City Hotel,1,19,2016,July,35,11,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,2,Canceled,2019-05-04 -Resort Hotel,0,2,2016,March,11,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,122.01,1,2,Check-Out,2019-02-01 -Resort Hotel,0,405,2016,October,44,9,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,289.0,179.0,0,Transient-Party,60.77,0,0,Check-Out,2019-08-04 -Resort Hotel,0,154,2016,October,50,14,0,1,1,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,195.0,179.0,0,Transient-Party,48.2,0,0,Check-Out,2019-09-03 -Resort Hotel,0,43,2015,September,42,6,1,4,2,1.0,0,HB,POL,Direct,Direct,0,0,0,H,H,2,No Deposit,17.0,179.0,0,Transient,236.96,1,0,Check-Out,2018-06-02 -City Hotel,0,14,2015,July,35,14,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,97.98,1,0,Check-Out,2018-06-02 -City Hotel,0,108,2016,December,53,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,89.7,0,2,Check-Out,2018-12-03 -Resort Hotel,0,149,2016,July,33,11,0,7,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,72.0,179.0,0,Transient,72.1,0,0,Check-Out,2019-06-03 -City Hotel,1,53,2016,November,53,13,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,177.05,0,2,Canceled,2019-11-03 -City Hotel,1,161,2017,August,37,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.77,0,0,Canceled,2020-04-02 -City Hotel,1,106,2016,January,4,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,B,A,0,Non Refund,10.0,179.0,0,Transient,76.46,0,0,Canceled,2018-10-03 -Resort Hotel,0,57,2016,October,43,9,2,10,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,208.36,0,0,Check-Out,2019-06-03 -City Hotel,0,38,2016,April,21,3,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient-Party,99.06,0,0,Check-Out,2019-06-03 -City Hotel,0,117,2016,August,44,5,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.9,0,2,Check-Out,2019-06-03 -City Hotel,1,261,2016,February,8,16,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.74,0,0,Canceled,2019-03-04 -Resort Hotel,1,240,2015,August,36,9,2,4,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,151.09,0,0,Canceled,2018-06-02 -City Hotel,0,237,2017,August,32,18,2,1,1,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient,83.48,0,1,Check-Out,2020-06-02 -Resort Hotel,0,78,2016,June,31,21,0,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,241.0,179.0,0,Transient,197.1,0,0,Check-Out,2018-12-03 -City Hotel,0,48,2017,April,21,24,1,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,212.86,0,1,Check-Out,2020-02-01 -City Hotel,0,2,2017,March,19,30,2,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,B,B,0,No Deposit,26.0,179.0,0,Transient-Party,117.07,0,1,Check-Out,2020-02-01 -City Hotel,0,2,2017,April,22,29,2,4,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,132.86,0,2,Check-Out,2020-02-01 -City Hotel,0,45,2015,July,30,6,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,97.8,0,0,Check-Out,2018-05-03 -City Hotel,1,156,2016,October,31,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,0,Transient,99.62,0,0,Canceled,2019-06-03 -City Hotel,1,24,2016,December,51,27,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,D,D,0,No Deposit,183.0,179.0,0,Transient,109.49,0,0,Canceled,2018-12-03 -Resort Hotel,0,12,2017,May,22,18,2,0,1,0.0,0,BB,GBR,Complementary,TA/TO,1,0,1,A,A,0,No Deposit,245.0,179.0,0,Group,65.81,0,1,Check-Out,2020-04-02 -City Hotel,1,408,2015,September,33,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.53,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,January,3,23,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,0,No Deposit,311.0,179.0,0,Transient,31.04,0,0,Check-Out,2019-11-03 -City Hotel,0,8,2015,September,45,30,2,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.17,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2015,August,36,2,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,0,1,0,A,B,0,No Deposit,3.0,45.0,0,Transient-Party,0.0,0,0,Check-Out,2018-06-02 -City Hotel,0,161,2017,June,34,17,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,158.16,0,1,Check-Out,2020-06-02 -Resort Hotel,1,0,2016,June,22,24,2,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,286.0,179.0,0,Transient,148.69,0,0,Canceled,2018-12-03 -Resort Hotel,0,9,2016,November,51,20,0,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,125.86,0,3,Check-Out,2019-05-04 -City Hotel,0,83,2016,January,32,16,2,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.82,0,3,Check-Out,2018-12-03 -City Hotel,1,104,2016,April,22,8,0,1,3,0.0,0,BB,USA,Groups,TA/TO,0,0,0,D,E,0,Non Refund,86.0,179.0,0,Transient,77.56,0,0,Canceled,2019-01-03 -City Hotel,0,1,2015,July,26,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,45.0,0,Group,63.15,0,0,Check-Out,2018-05-03 -City Hotel,1,15,2016,November,50,17,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,15.0,227.0,0,Transient,78.76,0,0,Canceled,2019-09-03 -Resort Hotel,0,240,2015,July,31,10,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,168.0,179.0,0,Transient,97.4,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2017,February,22,10,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,1,D,D,0,No Deposit,15.0,179.0,0,Transient,158.73,0,3,Check-Out,2020-03-03 -City Hotel,1,1,2016,January,10,24,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Canceled,2019-03-04 -City Hotel,1,105,2016,July,32,3,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,236.11,0,0,Canceled,2019-05-04 -Resort Hotel,1,64,2017,February,10,27,1,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,41.19,0,0,Canceled,2019-01-03 -Resort Hotel,0,20,2015,December,53,21,2,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,327.0,179.0,0,Transient-Party,62.08,0,0,Check-Out,2019-01-03 -City Hotel,1,20,2016,December,42,13,0,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,89.68,0,0,Canceled,2019-03-04 -City Hotel,0,0,2016,September,35,5,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,15.0,179.0,0,Transient,182.38,1,0,Check-Out,2019-08-04 -City Hotel,1,165,2016,December,44,25,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,E,F,0,Non Refund,12.0,179.0,0,Transient,72.61,0,0,Canceled,2018-11-02 -Resort Hotel,0,37,2017,August,32,27,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-06-02 -City Hotel,0,100,2017,June,22,24,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,137.04,0,1,Check-Out,2020-03-03 -City Hotel,0,4,2016,December,48,4,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-09-03 -City Hotel,0,18,2017,June,31,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,63.59,0,0,Check-Out,2020-06-02 -City Hotel,0,54,2016,June,27,4,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.27,0,1,Check-Out,2020-06-02 -Resort Hotel,0,230,2015,July,35,25,2,3,2,1.0,0,HB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient-Party,129.06,1,2,Check-Out,2018-05-03 -Resort Hotel,0,244,2015,August,40,7,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,153.11,0,2,Check-Out,2018-05-03 -Resort Hotel,0,76,2016,July,26,18,0,1,2,0.0,0,BB,USA,Direct,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,79.71,1,0,Check-Out,2019-05-04 -City Hotel,0,147,2017,July,34,25,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.01,0,2,Check-Out,2020-06-02 -City Hotel,0,18,2015,September,45,6,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,61.15,0,2,Check-Out,2018-06-02 -City Hotel,0,13,2017,May,21,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,0.81,0,1,Check-Out,2020-03-03 -Resort Hotel,0,37,2015,September,39,12,3,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,35.92,0,0,Check-Out,2018-08-03 -Resort Hotel,0,131,2017,August,38,23,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,113.54,1,2,Check-Out,2020-01-04 -Resort Hotel,0,99,2017,April,18,29,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,241.0,179.0,0,Transient,47.73,1,1,Check-Out,2020-02-01 -Resort Hotel,1,49,2016,March,12,9,2,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,136.23,0,2,No-Show,2019-01-03 -City Hotel,0,5,2017,June,23,17,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,11.0,202.0,0,Transient,85.12,1,1,Check-Out,2020-05-03 -Resort Hotel,0,198,2016,March,17,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,76.48,0,0,Check-Out,2019-02-01 -City Hotel,1,1,2016,August,43,12,2,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,E,K,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Canceled,2019-05-04 -City Hotel,0,14,2017,May,22,20,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.37,0,1,Check-Out,2020-06-02 -City Hotel,0,258,2016,November,49,5,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.9,0,1,Check-Out,2019-04-03 -City Hotel,0,15,2016,December,53,4,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,93.98,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,January,10,13,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,139.0,179.0,0,Transient-Party,69.44,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2017,June,26,5,0,3,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,126.32,0,0,Check-Out,2020-06-02 -Resort Hotel,0,215,2017,July,27,4,0,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,184.0,179.0,0,Transient,171.38,0,0,Check-Out,2020-06-02 -City Hotel,0,105,2017,June,27,23,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,131.15,0,1,Check-Out,2020-02-01 -Resort Hotel,0,151,2015,July,33,8,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Contract,119.93,0,0,Check-Out,2018-07-03 -City Hotel,0,258,2015,July,34,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,61.51,0,0,Check-Out,2018-01-03 -City Hotel,0,4,2016,May,22,30,1,1,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,163.64,0,0,Check-Out,2019-03-04 -Resort Hotel,1,261,2017,May,21,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,2,No Deposit,241.0,179.0,0,Transient,143.87,1,0,Canceled,2020-03-03 -City Hotel,0,14,2016,August,38,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,181.35,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2016,October,44,21,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,74.15,0,0,Check-Out,2019-07-04 -Resort Hotel,0,13,2017,March,9,19,0,1,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,1,No Deposit,17.0,179.0,75,Transient,0.0,1,0,Check-Out,2019-12-04 -City Hotel,0,94,2015,July,29,6,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,118.6,0,0,Check-Out,2019-06-03 -City Hotel,0,15,2015,October,43,30,0,1,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,89.57,0,0,Check-Out,2018-09-02 -Resort Hotel,0,145,2016,March,12,3,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,32.0,179.0,75,Transient-Party,69.35,0,0,Check-Out,2019-11-03 -City Hotel,0,32,2016,March,5,22,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,197.37,0,3,Check-Out,2020-01-04 -Resort Hotel,0,149,2016,February,12,24,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,78.94,0,1,Check-Out,2019-03-04 -City Hotel,1,321,2017,July,30,15,2,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,202.89,0,1,Canceled,2020-06-02 -City Hotel,1,153,2015,September,32,10,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,111.44,0,0,Canceled,2018-06-02 -City Hotel,0,205,2017,June,26,19,0,1,1,0.0,0,BB,ITA,Direct,Direct,0,0,1,A,A,1,No Deposit,15.0,179.0,0,Transient,108.84,0,3,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,January,2,28,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,81.0,0,Transient-Party,37.54,0,0,Check-Out,2019-12-04 -City Hotel,1,29,2017,February,9,16,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,Non Refund,9.0,179.0,0,Group,67.43,0,2,Canceled,2020-03-03 -City Hotel,0,116,2017,June,27,23,0,5,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,217.4,1,0,Check-Out,2020-04-02 -Resort Hotel,0,241,2017,August,30,11,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,78.48,0,3,Check-Out,2020-07-03 -City Hotel,1,53,2017,June,30,16,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,100.74,0,2,Canceled,2019-11-03 -City Hotel,1,36,2016,March,8,26,1,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,68.99,0,0,Canceled,2019-02-01 -City Hotel,1,149,2016,November,43,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,62,Transient,66.0,0,0,Canceled,2018-11-02 -City Hotel,0,96,2016,December,53,5,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,12.0,179.0,0,Transient,67.51,0,3,Check-Out,2019-11-03 -City Hotel,1,31,2016,March,10,14,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,71.61,0,0,Canceled,2018-10-03 -City Hotel,1,48,2016,February,11,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,62.09,0,1,Canceled,2019-01-03 -Resort Hotel,0,264,2016,July,35,6,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,3,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,March,22,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,82.59,1,1,Check-Out,2019-03-04 -City Hotel,0,25,2017,July,30,5,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.65,0,2,Check-Out,2020-05-03 -City Hotel,0,0,2017,May,44,28,2,0,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,85.1,0,0,Check-Out,2019-12-04 -City Hotel,1,280,2015,July,29,18,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,105.55,0,0,Canceled,2018-06-02 -City Hotel,1,0,2016,April,18,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,99.78,0,0,No-Show,2019-02-01 -City Hotel,0,40,2017,March,17,24,0,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,127.12,0,3,Check-Out,2019-12-04 -City Hotel,1,263,2017,June,26,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.29,0,0,Canceled,2019-11-03 -Resort Hotel,1,61,2016,November,51,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,184.0,179.0,0,Transient,57.96,0,0,Canceled,2018-08-03 -Resort Hotel,0,45,2015,July,34,22,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,86.4,0,1,Check-Out,2018-08-03 -City Hotel,0,55,2016,March,37,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,178.95,0,1,Check-Out,2019-03-04 -City Hotel,1,138,2017,July,23,22,1,0,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,110.7,0,0,No-Show,2020-01-04 -City Hotel,1,11,2015,December,50,25,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,13.0,179.0,0,Transient,59.51,0,0,Canceled,2018-01-03 -City Hotel,1,273,2016,October,45,15,1,1,2,0.0,0,BB,PRT,Direct,Direct,1,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,92.21,0,0,Canceled,2019-11-03 -City Hotel,1,270,2015,July,33,24,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,123.87,0,0,Canceled,2018-06-02 -Resort Hotel,0,54,2016,October,44,7,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,121.72,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,February,10,22,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,66.88,0,0,Check-Out,2018-10-03 -City Hotel,0,19,2016,October,44,5,1,0,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,123.24,0,0,Check-Out,2019-08-04 -City Hotel,1,157,2017,May,9,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.06,0,0,Canceled,2020-01-04 -Resort Hotel,0,48,2016,October,43,9,1,2,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,122.57,0,2,Check-Out,2019-09-03 -Resort Hotel,1,257,2015,July,37,19,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,144.0,179.0,0,Transient,85.76,0,0,Canceled,2018-06-02 -City Hotel,0,1,2015,August,38,10,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,K,1,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Check-Out,2018-09-02 -City Hotel,1,24,2015,January,38,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,92.0,179.0,0,Transient,97.13,0,0,Canceled,2018-08-03 -City Hotel,0,13,2016,May,22,4,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,151.72,0,0,Check-Out,2019-02-01 -City Hotel,0,102,2016,May,21,26,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.62,0,0,Check-Out,2019-02-01 -City Hotel,0,60,2015,October,46,4,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,109.1,0,0,Check-Out,2018-09-02 -Resort Hotel,1,164,2016,December,42,29,2,5,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,169.0,179.0,67,Transient,73.87,0,0,Canceled,2019-08-04 -City Hotel,1,47,2016,December,51,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,11.0,179.0,0,Transient,115.06,0,0,Canceled,2019-09-03 -City Hotel,0,39,2017,July,33,27,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,86.53,0,1,Check-Out,2020-04-02 -City Hotel,1,94,2016,June,26,24,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,98.51,0,0,Canceled,2018-12-03 -Resort Hotel,0,193,2016,June,20,9,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,117.62,0,2,Check-Out,2019-02-01 -City Hotel,0,1,2017,February,4,27,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,12.0,74.0,0,Group,61.73,0,1,Check-Out,2019-10-04 -City Hotel,0,245,2015,July,33,20,0,1,1,2.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,73.07,0,0,Check-Out,2018-06-02 -City Hotel,1,59,2017,June,25,15,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,228.69,0,0,Canceled,2020-03-03 -City Hotel,1,143,2017,June,34,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,152.0,179.0,40,Transient,101.87,0,0,Canceled,2019-10-04 -Resort Hotel,0,62,2016,December,50,5,1,3,2,0.0,0,Undefined,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,143.0,331.0,0,Transient-Party,63.22,0,0,Check-Out,2018-11-02 -Resort Hotel,0,96,2016,December,51,30,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,243.0,179.0,0,Transient,120.82,1,0,Check-Out,2019-05-04 -City Hotel,1,80,2016,September,37,5,2,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.79,0,0,No-Show,2018-08-03 -Resort Hotel,0,22,2017,March,13,15,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,297.0,179.0,75,Transient-Party,63.46,1,3,Check-Out,2019-12-04 -City Hotel,1,0,2016,February,9,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.13,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2016,March,12,6,1,3,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,G,A,0,No Deposit,11.0,179.0,0,Transient,64.76,0,3,Check-Out,2019-02-01 -City Hotel,1,114,2015,December,50,30,0,4,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,103.73,0,0,Canceled,2018-10-03 -Resort Hotel,0,7,2015,July,31,7,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,1,1,E,I,0,No Deposit,11.0,179.0,0,Transient-Party,139.48,1,0,Check-Out,2018-05-03 -City Hotel,0,229,2015,July,33,10,4,10,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,116.13,0,0,Check-Out,2018-09-02 -City Hotel,1,158,2016,October,37,15,1,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.7,0,0,Canceled,2019-05-04 -City Hotel,0,44,2017,May,23,2,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.56,0,1,Check-Out,2020-03-03 -Resort Hotel,1,99,2015,December,53,9,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,63.22,0,0,Canceled,2018-05-03 -Resort Hotel,0,152,2016,August,25,5,2,4,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.64,0,0,Check-Out,2019-03-04 -City Hotel,0,93,2016,July,29,10,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,170.67,0,1,Check-Out,2019-03-04 -City Hotel,1,46,2015,September,37,15,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,58.49,0,0,Canceled,2018-09-02 -Resort Hotel,0,204,2016,June,22,5,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,245.0,179.0,0,Transient,95.02,0,1,Check-Out,2020-04-02 -City Hotel,0,2,2016,October,51,28,2,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,10.0,179.0,0,Transient-Party,92.19,0,2,Check-Out,2019-11-03 -City Hotel,1,55,2016,August,43,9,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.87,0,0,Canceled,2019-02-01 -Resort Hotel,0,24,2016,May,18,15,0,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,329.0,179.0,75,Transient,69.51,0,0,Check-Out,2019-01-03 -City Hotel,1,153,2016,March,15,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,17,Transient,65.11,0,0,Canceled,2018-11-02 -City Hotel,1,39,2016,January,3,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.39,0,2,Check-Out,2019-01-03 -Resort Hotel,0,12,2017,August,37,27,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,248.0,179.0,0,Transient,197.46,0,0,Check-Out,2019-09-03 -City Hotel,1,9,2016,December,19,9,0,3,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,169.0,0,Transient,91.35,0,0,Canceled,2019-07-04 -City Hotel,0,274,2015,August,34,5,0,5,2,0.0,0,BB,,Online TA,Undefined,0,0,0,B,B,2,No Deposit,13.0,179.0,0,Transient-Party,56.0,0,1,Check-Out,2018-07-03 -City Hotel,0,1,2017,August,32,15,0,1,2,0.0,0,BB,GBR,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2020-07-03 -City Hotel,1,333,2015,September,39,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.24,0,0,Canceled,2017-11-02 -City Hotel,0,144,2015,July,32,24,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,128.48,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,April,17,23,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,119.44,0,0,Check-Out,2020-02-01 -Resort Hotel,1,44,2017,August,35,31,0,4,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,224.87,0,0,Canceled,2020-06-02 -Resort Hotel,0,2,2016,September,37,21,4,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,149.35,0,1,Check-Out,2019-08-04 -City Hotel,0,68,2017,June,20,5,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.54,0,0,Check-Out,2020-03-03 -Resort Hotel,1,0,2016,December,50,25,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,330.0,179.0,0,Transient,37.75,0,0,Canceled,2018-11-02 -City Hotel,0,235,2015,September,43,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,63,Contract,73.44,0,0,Check-Out,2018-10-03 -Resort Hotel,1,39,2015,July,33,21,1,5,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,248.0,179.0,0,Transient,251.25,0,0,Canceled,2018-06-02 -City Hotel,0,11,2017,June,27,18,2,1,1,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,241.0,179.0,0,Transient-Party,174.79,0,0,Check-Out,2020-04-02 -Resort Hotel,0,142,2016,July,35,5,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient-Party,106.39,0,0,Check-Out,2020-05-03 -City Hotel,0,16,2017,May,16,13,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.7,0,1,Check-Out,2020-03-03 -Resort Hotel,1,156,2017,August,35,28,3,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,117.54,0,2,Canceled,2020-01-04 -Resort Hotel,0,294,2017,May,26,12,1,1,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,91.0,179.0,0,Transient,122.84,0,0,Canceled,2020-02-01 -Resort Hotel,1,392,2017,March,10,10,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,10.0,223.0,0,Transient-Party,85.42,0,0,Canceled,2020-02-01 -City Hotel,0,48,2017,August,34,18,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,90.0,179.0,0,Transient,197.13,0,0,Check-Out,2020-06-02 -Resort Hotel,1,68,2017,March,9,28,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,Refundable,131.0,179.0,0,Transient,79.87,0,0,Canceled,2020-03-03 -City Hotel,1,19,2017,August,9,30,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient-Party,102.32,0,0,Canceled,2020-06-02 -Resort Hotel,0,18,2017,March,17,30,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,105.79,0,2,Check-Out,2020-03-03 -City Hotel,1,25,2016,August,36,3,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.34,0,1,No-Show,2019-09-03 -Resort Hotel,1,146,2016,December,51,27,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,79.59,0,0,Canceled,2018-11-02 -City Hotel,0,13,2016,October,40,15,0,1,1,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,91.52,0,0,Check-Out,2019-09-03 -City Hotel,1,309,2015,September,38,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.43,0,0,Canceled,2017-12-03 -City Hotel,1,0,2015,September,43,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,14.0,45.0,0,Transient,92.79,0,0,Canceled,2018-06-02 -City Hotel,0,17,2016,July,26,10,0,1,2,2.0,0,BB,ESP,Online TA,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,137.5,1,0,Check-Out,2019-06-03 -Resort Hotel,0,6,2015,October,46,31,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,52.74,0,0,Check-Out,2018-09-02 -Resort Hotel,0,274,2015,July,34,30,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,133.23,0,0,Check-Out,2018-06-02 -Resort Hotel,0,39,2017,February,7,19,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,48.0,331.0,0,Transient-Party,82.72,0,0,Check-Out,2020-04-02 -Resort Hotel,0,31,2015,December,53,30,0,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient-Party,41.4,0,3,Check-Out,2018-11-02 -City Hotel,1,10,2016,February,8,10,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,32.02,0,0,Canceled,2018-11-02 -Resort Hotel,0,8,2016,April,18,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,3,No Deposit,328.0,223.0,0,Transient-Party,60.59,1,0,Check-Out,2019-03-04 -Resort Hotel,0,11,2016,January,3,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,45.0,0,Transient,38.58,0,0,Check-Out,2019-02-01 -City Hotel,1,157,2016,April,14,24,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,85.63,0,0,Canceled,2018-11-02 -Resort Hotel,1,244,2015,July,36,15,2,5,1,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,241.0,179.0,0,Contract,42.65,0,1,No-Show,2018-06-02 -City Hotel,1,15,2016,March,9,2,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,29.0,179.0,0,Transient,71.02,0,0,Canceled,2018-12-03 -Resort Hotel,0,17,2016,September,42,6,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,60.77,0,2,Check-Out,2019-09-03 -City Hotel,1,100,2016,December,44,5,1,3,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,42,Transient,88.42,0,0,Canceled,2019-10-04 -City Hotel,1,187,2016,August,37,13,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,149.96,0,1,Canceled,2019-08-04 -City Hotel,1,103,2016,May,21,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,71.0,179.0,0,Transient,62.53,0,0,Canceled,2017-11-02 -City Hotel,0,93,2016,August,34,30,0,3,2,0.0,0,SC,NLD,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,154.35,0,0,Check-Out,2019-06-03 -City Hotel,0,10,2015,January,11,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,E,0,Non Refund,139.0,179.0,0,Contract,60.4,0,1,Check-Out,2018-12-03 -Resort Hotel,0,9,2015,December,53,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,107.0,179.0,0,Transient,63.27,0,0,Check-Out,2018-11-02 -City Hotel,1,203,2017,May,22,7,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,F,0,No Deposit,13.0,179.0,0,Transient,193.77,0,0,Canceled,2020-04-02 -Resort Hotel,0,242,2017,July,31,21,0,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,131.26,0,1,Check-Out,2020-06-02 -Resort Hotel,0,35,2015,July,38,28,0,2,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,46.43,0,1,Check-Out,2018-06-02 -Resort Hotel,0,52,2015,November,53,20,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,135.29,0,1,Check-Out,2018-06-02 -City Hotel,0,0,2016,May,22,14,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,1,A,A,1,No Deposit,80.0,179.0,0,Transient,70.08,0,0,Check-Out,2019-02-01 -City Hotel,1,38,2017,August,36,12,2,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,203.5,0,0,Canceled,2020-06-02 -Resort Hotel,0,141,2016,February,15,25,1,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,101.48,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,December,52,2,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,1,No Deposit,378.0,331.0,0,Transient,60.85,0,0,Check-Out,2019-11-03 -City Hotel,0,318,2015,September,37,24,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.09,1,0,Check-Out,2018-06-02 -City Hotel,1,155,2015,July,31,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.67,0,0,Canceled,2018-06-02 -Resort Hotel,0,109,2015,December,50,9,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,244.0,179.0,0,Transient,44.81,0,2,Check-Out,2018-10-03 -City Hotel,0,210,2016,July,26,16,0,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,G,1,No Deposit,14.0,179.0,0,Transient,76.36,0,0,Check-Out,2019-05-04 -City Hotel,1,13,2017,February,8,21,2,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,264.0,0,Transient,40.33,0,2,Canceled,2020-03-03 -Resort Hotel,0,2,2016,June,26,8,0,5,3,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,249.0,179.0,0,Transient,143.52,1,1,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,October,35,28,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,38.89,0,0,Check-Out,2018-09-02 -City Hotel,0,22,2015,March,17,5,0,1,1,0.0,0,SC,ESP,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,73.0,0,Transient,127.7,0,2,Check-Out,2018-10-03 -City Hotel,0,0,2017,June,26,12,0,3,1,0.0,0,BB,CHE,Complementary,Direct,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,113.46,0,0,Check-Out,2020-07-03 -City Hotel,0,116,2017,July,26,21,1,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,125.39,1,0,Check-Out,2020-03-03 -City Hotel,0,97,2015,January,4,15,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient,61.85,0,0,Check-Out,2018-11-02 -City Hotel,1,230,2016,August,36,9,2,3,3,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,165.42,0,2,Canceled,2019-04-03 -City Hotel,1,0,2015,August,37,4,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2018-07-03 -City Hotel,1,264,2015,September,42,21,2,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,72.83,0,0,Canceled,2017-09-02 -City Hotel,0,3,2017,January,26,15,2,1,1,0.0,0,BB,CHE,Online TA,TA/TO,1,0,0,A,A,3,No Deposit,11.0,179.0,0,Transient,76.87,0,1,Check-Out,2020-03-03 -City Hotel,0,16,2016,June,27,2,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.76,0,1,Canceled,2019-04-03 -Resort Hotel,0,83,2016,December,53,25,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,239.0,179.0,0,Transient,94.44,1,2,Check-Out,2019-06-03 -Resort Hotel,0,12,2017,February,11,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,62.44,1,0,Check-Out,2019-12-04 -Resort Hotel,0,169,2017,August,36,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,241.0,179.0,0,Transient,115.66,0,2,Check-Out,2020-04-02 -Resort Hotel,1,159,2016,May,17,25,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,10.0,222.0,0,Transient-Party,40.6,0,0,Canceled,2018-11-02 -City Hotel,0,20,2015,December,50,10,0,1,2,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,E,0,No Deposit,36.0,179.0,0,Transient-Party,101.17,0,0,Check-Out,2018-05-03 -Resort Hotel,0,119,2015,November,37,31,1,2,2,0.0,0,BB,CHE,Groups,TA/TO,0,0,0,A,A,0,Refundable,10.0,179.0,0,Transient-Party,59.06,0,0,Check-Out,2018-08-03 -Resort Hotel,0,158,2017,June,23,10,0,3,2,0.0,0,BB,CHE,Groups,TA/TO,0,0,0,A,C,2,Refundable,11.0,179.0,0,Transient-Party,94.9,1,0,Check-Out,2020-02-01 -City Hotel,0,24,2016,April,38,17,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.35,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,June,17,31,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-03-04 -City Hotel,1,300,2016,April,23,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,43,Transient,88.47,0,0,Canceled,2019-02-01 -City Hotel,0,17,2016,April,18,6,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,118.4,0,1,Check-Out,2019-02-01 -City Hotel,1,301,2015,September,36,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,75.89,0,0,Canceled,2018-09-02 -City Hotel,1,41,2015,December,53,18,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,64.74,0,0,Canceled,2019-10-04 -City Hotel,1,38,2016,March,16,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,63,Transient,83.6,0,0,Canceled,2018-11-02 -Resort Hotel,0,53,2017,May,11,3,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient-Party,64.58,0,0,Check-Out,2020-02-01 -Resort Hotel,0,186,2017,May,32,21,2,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,248.0,179.0,0,Transient,169.29,1,1,Check-Out,2020-03-03 -City Hotel,1,29,2016,January,4,9,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,69.09,0,0,No-Show,2018-11-02 -City Hotel,0,14,2015,November,50,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,2,No Deposit,14.0,45.0,0,Transient-Party,35.41,1,0,Check-Out,2018-12-03 -City Hotel,0,57,2017,April,18,9,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,159.21,0,2,Check-Out,2020-01-04 -Resort Hotel,1,272,2017,April,21,30,1,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,253.0,179.0,0,Transient,45.61,0,0,Canceled,2019-11-03 -City Hotel,1,114,2017,March,16,23,2,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,119.41,0,0,Canceled,2020-03-03 -City Hotel,1,107,2015,December,45,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.92,0,0,Canceled,2018-09-02 -City Hotel,0,15,2017,April,21,19,2,1,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,126.22,0,0,Check-Out,2020-04-02 -City Hotel,1,49,2015,June,32,16,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,Non Refund,141.0,179.0,0,Transient,45.54,0,0,Canceled,2018-01-03 -City Hotel,0,40,2016,March,20,18,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-01-03 -Resort Hotel,0,19,2016,April,18,28,2,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,F,1,No Deposit,241.0,179.0,0,Transient-Party,103.82,1,0,Check-Out,2019-10-04 -City Hotel,1,17,2015,September,45,10,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient-Party,108.93,0,0,Canceled,2018-08-03 -City Hotel,0,282,2015,August,37,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,109.86,0,1,Check-Out,2018-09-02 -City Hotel,1,306,2015,September,32,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.34,0,0,Canceled,2017-11-02 -City Hotel,0,2,2017,March,17,23,2,1,2,0.0,0,BB,,Aviation,TA/TO,0,0,0,D,D,0,No Deposit,96.0,179.0,0,Group,38.29,0,3,Check-Out,2020-03-03 -City Hotel,1,303,2017,May,23,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,12.0,179.0,0,Transient,116.29,0,3,Canceled,2020-05-03 -City Hotel,0,105,2017,March,11,24,1,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,131.48,0,1,Check-Out,2020-04-02 -City Hotel,1,31,2016,March,3,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,42,Transient,71.71,0,0,Canceled,2018-10-03 -Resort Hotel,0,38,2015,December,51,30,2,2,1,0.0,0,BB,CHN,Complementary,Direct,0,0,0,E,E,0,No Deposit,189.0,179.0,0,Transient,172.99,0,0,Check-Out,2019-10-04 -Resort Hotel,0,6,2017,March,10,16,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,78.79,0,0,Check-Out,2020-03-03 -City Hotel,0,33,2017,May,21,20,2,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,152.94,1,1,Check-Out,2019-12-04 -City Hotel,0,41,2017,July,32,21,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,140.14,0,3,Check-Out,2020-03-03 -City Hotel,0,38,2016,December,49,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.08,0,0,Check-Out,2019-02-01 -Resort Hotel,1,56,2017,April,18,29,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,32.21,0,1,Check-Out,2020-04-02 -City Hotel,0,109,2017,April,16,21,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,131.17,0,1,Check-Out,2020-02-01 -City Hotel,1,105,2016,April,23,24,2,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,121.38,0,1,Canceled,2019-10-04 -City Hotel,0,4,2016,January,4,17,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,D,0,No Deposit,15.0,45.0,0,Transient,79.02,0,0,Check-Out,2019-11-03 -Resort Hotel,1,13,2015,July,28,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,207.0,0,Transient-Party,42.93,0,0,Canceled,2018-06-02 -City Hotel,0,43,2017,April,17,26,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,102.95,0,0,Check-Out,2020-03-03 -City Hotel,1,14,2017,June,26,24,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.53,0,0,Canceled,2019-11-03 -City Hotel,1,444,2016,September,45,26,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,62.08,0,0,Canceled,2018-08-03 -Resort Hotel,0,151,2016,May,22,2,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,129.0,179.0,0,Transient-Party,70.65,1,0,Check-Out,2019-04-03 -Resort Hotel,0,267,2017,March,18,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,126.14,0,2,Check-Out,2020-02-01 -City Hotel,1,60,2017,May,15,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,61.31,0,0,Canceled,2019-02-01 -Resort Hotel,0,46,2016,January,53,2,2,1,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,44.41,0,1,Check-Out,2019-01-03 -City Hotel,0,12,2017,June,22,22,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.01,0,1,Check-Out,2020-04-02 -City Hotel,0,39,2017,June,25,5,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.28,0,1,Check-Out,2020-04-02 -City Hotel,0,195,2017,August,34,21,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,105.18,0,1,Check-Out,2020-06-02 -Resort Hotel,0,320,2017,July,35,21,4,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,107.63,0,1,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,March,10,10,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,59.67,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2015,November,43,27,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,15.0,179.0,0,Group,116.99,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2015,October,45,31,1,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,74.69,1,0,Check-Out,2019-01-03 -Resort Hotel,0,262,2016,July,29,9,1,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,84.54,0,0,Check-Out,2018-12-03 -City Hotel,1,226,2016,May,50,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,13.0,179.0,0,Transient,136.73,0,0,No-Show,2019-01-03 -Resort Hotel,0,61,2015,December,53,31,0,3,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,40.0,179.0,0,Transient-Party,45.87,0,0,Check-Out,2018-12-03 -City Hotel,1,14,2016,August,34,24,1,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.54,0,0,Canceled,2019-06-03 -City Hotel,1,104,2015,December,50,6,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,62.18,0,1,Canceled,2018-10-03 -City Hotel,0,158,2015,October,41,24,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient-Party,121.6,0,1,Check-Out,2019-07-04 -City Hotel,1,0,2016,February,10,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,24.0,0,0,Canceled,2019-01-03 -City Hotel,0,1,2016,December,4,27,0,1,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,87.03,0,1,Check-Out,2018-11-02 -Resort Hotel,0,205,2016,March,9,25,1,7,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,37.29,0,0,Check-Out,2019-02-01 -Resort Hotel,0,152,2016,December,50,30,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,32.0,179.0,14,Transient,34.92,0,0,Canceled,2019-10-04 -Resort Hotel,1,199,2016,October,43,2,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,312.0,179.0,0,Transient,75.35,0,0,Canceled,2019-06-03 -Resort Hotel,0,28,2015,October,38,25,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,97.72,0,0,Check-Out,2018-05-03 -City Hotel,0,3,2015,November,44,13,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,1,D,D,0,No Deposit,12.0,179.0,0,Group,40.82,0,0,Check-Out,2018-08-03 -City Hotel,0,16,2017,May,9,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,73.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -Resort Hotel,1,200,2016,May,22,31,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,268.0,179.0,0,Transient-Party,60.71,0,0,Canceled,2019-04-03 -Resort Hotel,1,271,2017,March,18,29,2,5,2,0.0,0,FB,,Groups,Direct,0,0,0,A,A,0,No Deposit,340.0,179.0,0,Transient,53.95,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,May,15,20,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,112.46,0,1,Check-Out,2019-03-04 -Resort Hotel,0,304,2016,October,43,18,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,134.0,179.0,0,Group,39.39,0,2,Check-Out,2018-08-03 -Resort Hotel,0,45,2017,July,31,6,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.01,0,1,Check-Out,2020-05-03 -City Hotel,0,17,2017,June,21,6,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,78.19,0,1,Check-Out,2020-02-01 -City Hotel,1,107,2017,June,21,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.05,0,1,Canceled,2020-03-03 -City Hotel,1,43,2017,January,11,28,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,70.74,0,3,Canceled,2019-10-04 -City Hotel,0,162,2017,March,15,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,236.0,0,Transient-Party,31.08,0,0,Check-Out,2020-03-03 -City Hotel,0,11,2016,March,53,4,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.74,0,1,Check-Out,2019-11-03 -City Hotel,0,41,2016,September,36,31,2,1,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,0,Transient,122.58,0,0,Check-Out,2019-07-04 -Resort Hotel,0,42,2017,January,3,26,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,72.91,0,0,Check-Out,2019-10-04 -Resort Hotel,0,41,2016,August,53,21,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-06-03 -City Hotel,1,2,2016,September,26,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,60.24,0,0,Canceled,2018-08-03 -Resort Hotel,1,227,2016,July,34,30,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,155.77,0,1,Canceled,2019-05-04 -Resort Hotel,0,1,2016,July,26,31,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,251.0,179.0,0,Transient,186.04,1,0,Check-Out,2019-03-04 -City Hotel,1,31,2015,September,44,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,120.82,0,0,Canceled,2017-10-03 -City Hotel,1,0,2016,January,4,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,77.06,0,0,Canceled,2018-11-02 -Resort Hotel,0,15,2017,March,18,19,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,237.0,179.0,0,Transient,0.0,0,3,Check-Out,2020-02-01 -City Hotel,1,2,2015,December,51,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,8.0,179.0,0,Group,76.23,0,3,Canceled,2018-10-03 -City Hotel,0,0,2016,August,38,31,0,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,160.67,0,0,Check-Out,2019-07-04 -City Hotel,1,59,2016,March,7,23,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,75.15,0,1,Canceled,2019-03-04 -Resort Hotel,1,266,2017,April,37,15,2,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,131.27,0,0,Canceled,2020-03-03 -Resort Hotel,0,16,2016,November,44,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,32.63,0,0,Check-Out,2019-06-03 -City Hotel,1,146,2016,December,51,18,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,75,Transient,62.49,0,0,Canceled,2018-11-02 -City Hotel,1,52,2016,April,15,16,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,65,Transient,97.47,0,0,Canceled,2019-01-03 -City Hotel,1,243,2015,October,43,22,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Group,169.78,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,April,19,30,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,F,2,No Deposit,15.0,70.0,0,Transient,18.9,1,0,Check-Out,2020-01-04 -Resort Hotel,1,316,2016,August,33,20,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,239.0,179.0,0,Transient,63.68,0,0,Canceled,2019-04-03 -City Hotel,1,2,2016,August,47,29,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,119.08,0,2,Canceled,2019-09-03 -City Hotel,0,50,2016,December,48,20,2,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,61,Transient-Party,79.88,0,0,Check-Out,2019-12-04 -City Hotel,1,113,2016,May,22,26,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.31,0,0,Canceled,2018-08-03 -City Hotel,0,100,2015,August,31,24,2,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,82.9,1,2,Check-Out,2020-06-02 -City Hotel,0,15,2016,September,44,6,0,3,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.82,0,2,Check-Out,2019-06-03 -City Hotel,0,17,2016,March,18,20,2,1,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,0,Transient-Party,83.34,0,1,Check-Out,2019-02-01 -Resort Hotel,0,22,2015,September,42,28,0,4,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,117.56,1,1,Check-Out,2019-06-03 -Resort Hotel,0,7,2016,March,9,16,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,75,Transient,40.52,1,1,Check-Out,2018-10-03 -Resort Hotel,0,28,2017,February,12,20,0,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,C,0,No Deposit,36.0,179.0,0,Transient-Party,74.63,0,0,Check-Out,2019-10-04 -Resort Hotel,0,194,2016,October,43,2,0,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,83.0,179.0,0,Transient,194.58,0,0,Check-Out,2019-04-03 -City Hotel,1,174,2015,August,37,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.57,0,0,Canceled,2018-05-03 -Resort Hotel,1,34,2017,March,18,20,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,60.73,0,0,Canceled,2020-03-03 -City Hotel,0,104,2017,May,15,16,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.37,0,1,Check-Out,2020-02-01 -Resort Hotel,1,211,2017,June,22,15,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,80.34,0,0,Canceled,2020-01-04 -Resort Hotel,1,84,2017,January,8,4,2,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,37.87,0,0,No-Show,2019-03-04 -City Hotel,0,0,2015,September,42,15,0,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,65.08,0,2,Check-Out,2018-08-03 -City Hotel,0,13,2015,November,51,10,2,3,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,101.29,0,2,Check-Out,2018-08-03 -City Hotel,1,202,2016,July,35,17,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,11.0,179.0,41,Transient,175.64,0,0,Canceled,2018-07-03 -City Hotel,0,117,2016,April,15,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,84.65,0,0,Check-Out,2019-02-01 -City Hotel,0,12,2017,July,30,22,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,63.5,0,0,Check-Out,2020-06-02 -City Hotel,0,5,2016,June,26,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,13.0,331.0,0,Transient,76.95,0,0,Check-Out,2019-04-03 -City Hotel,1,327,2016,September,28,27,2,3,1,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,63.96,0,0,No-Show,2019-08-04 -City Hotel,0,82,2017,May,22,9,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,83.0,331.0,0,Transient-Party,112.46,0,0,Check-Out,2019-04-03 -City Hotel,0,149,2016,August,33,30,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.86,0,2,Check-Out,2019-09-03 -City Hotel,1,91,2016,June,32,30,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.95,0,2,Canceled,2018-10-03 -City Hotel,0,247,2016,October,44,21,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,107.81,0,0,Check-Out,2019-11-03 -Resort Hotel,1,34,2017,July,33,15,2,5,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,242.0,179.0,0,Transient,224.28,0,0,Canceled,2020-06-02 -Resort Hotel,1,312,2016,June,27,6,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,165.99,0,3,Canceled,2019-01-03 -Resort Hotel,0,24,2015,December,53,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,36.21,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,June,22,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,114.61,0,0,Canceled,2019-03-04 -City Hotel,0,0,2016,June,28,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,1,No Deposit,13.0,45.0,42,Transient-Party,96.28,0,0,Check-Out,2019-04-03 -City Hotel,1,45,2016,October,16,18,0,3,1,0.0,0,SC,,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,112.75,0,0,Canceled,2019-01-03 -Resort Hotel,0,2,2015,August,35,30,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,249.0,179.0,0,Transient-Party,99.42,0,0,Check-Out,2018-06-02 -Resort Hotel,0,99,2016,December,50,15,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,325.0,179.0,0,Transient-Party,63.41,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,June,24,4,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,124.36,0,0,Check-Out,2019-06-03 -City Hotel,1,1,2017,June,27,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,121.34,0,0,No-Show,2020-06-02 -City Hotel,1,7,2016,January,4,17,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,H,D,1,No Deposit,13.0,179.0,0,Transient-Party,60.56,0,0,No-Show,2018-12-03 -Resort Hotel,1,273,2017,July,9,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,243.0,179.0,0,Transient,62.27,0,0,Canceled,2020-03-03 -City Hotel,0,190,2016,August,39,29,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.15,1,2,Check-Out,2019-09-03 -City Hotel,0,98,2017,May,25,16,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,125.97,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2017,February,8,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,90.98,0,0,Check-Out,2020-01-04 -City Hotel,0,277,2016,June,27,2,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,76.83,0,1,Check-Out,2019-05-04 -City Hotel,1,98,2017,July,27,15,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,80.24,0,0,Canceled,2019-10-04 -Resort Hotel,1,273,2016,September,46,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,128.98,0,0,Canceled,2019-07-04 -City Hotel,1,187,2017,March,23,28,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.6,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2015,September,44,24,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,303.0,179.0,0,Transient,63.91,0,1,Check-Out,2018-08-03 -City Hotel,0,46,2015,November,50,29,2,0,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,210.97,0,2,Check-Out,2018-08-03 -Resort Hotel,1,110,2017,May,17,9,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,C,2,No Deposit,8.0,179.0,0,Transient,174.45,0,1,Canceled,2020-04-02 -Resort Hotel,0,19,2017,May,11,30,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,208.96,0,2,Check-Out,2020-02-01 -City Hotel,1,53,2017,August,33,24,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.31,0,1,Canceled,2020-04-02 -Resort Hotel,1,9,2015,October,43,22,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,75.6,0,2,Canceled,2017-12-03 -City Hotel,0,97,2016,March,15,20,0,2,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,84.51,0,0,Check-Out,2020-02-01 -City Hotel,1,30,2015,July,32,20,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,8.0,179.0,0,Transient,95.06,0,2,Canceled,2018-06-02 -City Hotel,0,1,2016,January,49,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,70.0,0,Transient-Party,62.54,1,0,Check-Out,2019-10-04 -Resort Hotel,0,206,2016,March,20,31,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient,35.94,0,0,Check-Out,2019-06-03 -City Hotel,0,10,2016,October,45,29,0,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.39,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2016,August,36,2,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,105.98,0,1,Check-Out,2018-11-02 -Resort Hotel,0,2,2015,October,43,10,1,0,1,0.0,0,HB,PRT,Complementary,TA/TO,1,0,0,A,I,1,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -Resort Hotel,1,54,2015,December,50,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,117.62,0,3,Check-Out,2018-08-03 -City Hotel,1,120,2017,June,25,21,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,29.0,179.0,0,Transient,103.07,0,0,Canceled,2019-01-03 -Resort Hotel,0,11,2016,March,8,13,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,172.0,179.0,0,Transient,37.91,0,0,Check-Out,2019-02-01 -City Hotel,1,2,2015,August,39,4,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-06-02 -City Hotel,0,11,2017,March,8,15,2,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,67.3,0,1,Check-Out,2019-02-01 -Resort Hotel,1,152,2017,August,37,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,E,0,No Deposit,249.0,179.0,0,Transient,157.72,1,3,Canceled,2020-06-02 -Resort Hotel,1,233,2015,July,34,14,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,101.94,0,0,Canceled,2018-06-02 -City Hotel,1,44,2016,February,17,30,0,2,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,E,A,0,Non Refund,179.0,179.0,0,Transient,75.8,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2015,September,37,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,125.99,0,1,Check-Out,2018-08-03 -Resort Hotel,0,53,2017,May,22,24,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,69.89,1,1,Canceled,2020-02-01 -Resort Hotel,0,295,2016,March,22,29,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,224.0,0,Transient-Party,74.9,1,0,Check-Out,2019-03-04 -Resort Hotel,0,2,2017,January,4,23,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,3,No Deposit,11.0,179.0,0,Transient,72.31,0,3,Check-Out,2019-12-04 -City Hotel,0,34,2015,October,44,31,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,87.94,0,1,Check-Out,2018-08-03 -Resort Hotel,1,227,2016,July,32,21,2,5,2,1.0,0,HB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,110.46,0,2,Canceled,2019-04-03 -City Hotel,1,2,2016,February,10,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,16.0,179.0,0,Transient,67.02,0,0,Canceled,2018-11-02 -Resort Hotel,0,148,2017,August,37,28,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,C,0,No Deposit,243.0,179.0,0,Transient,72.84,0,0,Canceled,2020-07-03 -City Hotel,1,16,2017,June,28,21,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,64.0,0,Transient,85.25,0,0,Canceled,2019-12-04 -City Hotel,1,257,2016,July,27,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,74.85,0,0,Canceled,2018-09-02 -Resort Hotel,0,263,2016,March,15,9,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,84.0,179.0,0,Transient-Party,74.89,0,0,Check-Out,2019-03-04 -City Hotel,0,9,2017,March,53,15,0,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,93.36,0,3,Check-Out,2019-11-03 -City Hotel,1,311,2016,October,45,27,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,108.91,0,0,Canceled,2019-08-04 -City Hotel,0,6,2016,December,53,28,2,4,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,139.01,0,1,Check-Out,2019-09-03 -Resort Hotel,0,151,2017,July,26,17,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,153.76,0,1,Canceled,2020-05-03 -City Hotel,0,1,2016,June,26,20,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,1,100,2015,August,36,15,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,123.66,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2017,February,12,13,1,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,18.0,179.0,0,Transient,3.37,0,0,Check-Out,2019-09-03 -Resort Hotel,0,53,2017,April,17,15,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,238.0,179.0,0,Transient,75.62,0,2,Check-Out,2020-03-03 -Resort Hotel,0,277,2016,October,36,16,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,95.7,0,1,Check-Out,2019-08-04 -Resort Hotel,1,157,2017,March,12,25,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,241.0,179.0,0,Transient,38.31,0,1,Canceled,2019-11-03 -Resort Hotel,0,189,2017,February,9,5,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,193.0,331.0,0,Transient,27.93,0,0,Check-Out,2020-02-01 -City Hotel,0,249,2017,May,21,20,0,2,1,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.04,0,1,Check-Out,2019-11-03 -City Hotel,1,193,2016,September,35,13,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.04,0,1,Canceled,2019-08-04 -City Hotel,0,81,2015,December,49,5,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,89.28,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,February,9,12,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,1.23,0,0,Check-Out,2020-06-02 -City Hotel,1,161,2017,March,9,30,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,19,Transient-Party,81.13,0,0,Check-Out,2019-12-04 -Resort Hotel,0,27,2015,August,39,16,2,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,134.89,0,0,Check-Out,2018-06-02 -Resort Hotel,0,152,2015,August,35,31,0,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,215.15,0,3,Check-Out,2018-06-02 -City Hotel,0,0,2015,October,45,16,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.64,0,2,Check-Out,2018-06-02 -City Hotel,0,53,2016,April,17,21,1,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,104.99,1,0,Check-Out,2019-03-04 -Resort Hotel,1,58,2016,June,28,18,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,F,0,No Deposit,241.0,179.0,0,Transient,124.04,0,0,Canceled,2019-02-01 -City Hotel,1,9,2016,December,53,27,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,7.0,179.0,0,Transient,60.25,0,1,Canceled,2019-10-04 -Resort Hotel,0,95,2016,April,17,14,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,107.29,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2017,February,12,28,1,2,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,E,E,0,Non Refund,34.0,179.0,0,Transient,69.76,0,0,Canceled,2019-10-04 -Resort Hotel,0,43,2016,October,42,15,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Group,124.92,1,1,Check-Out,2019-10-04 -City Hotel,0,59,2016,May,22,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,127.82,0,2,Check-Out,2019-03-04 -City Hotel,1,157,2015,September,43,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.2,0,0,Canceled,2018-07-03 -Resort Hotel,0,159,2015,August,37,31,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-06-02 -City Hotel,1,145,2016,April,16,28,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.42,1,0,Canceled,2019-03-04 -City Hotel,1,6,2016,March,16,3,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,18,Transient,79.33,0,0,Canceled,2018-12-03 -City Hotel,1,139,2017,June,23,20,0,5,1,0.0,0,HB,IRL,Corporate,Corporate,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,80.32,0,0,Canceled,2020-06-02 -Resort Hotel,0,34,2015,December,51,30,1,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,2,No Deposit,38.0,179.0,0,Contract,60.58,0,1,Check-Out,2019-01-03 -Resort Hotel,1,44,2016,July,25,10,2,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,81.5,0,2,No-Show,2019-11-03 -City Hotel,1,77,2016,October,45,30,1,0,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.93,0,1,No-Show,2019-08-04 -City Hotel,0,108,2017,August,34,15,2,3,2,0.0,0,BB,BRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,128.51,0,1,Check-Out,2020-06-02 -City Hotel,0,32,2015,August,35,28,2,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,101.16,0,0,Check-Out,2018-05-03 -Resort Hotel,0,154,2016,March,9,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,Refundable,13.0,222.0,75,Transient-Party,70.62,0,0,Check-Out,2019-03-04 -City Hotel,0,3,2016,March,11,19,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,79.38,0,1,Check-Out,2019-02-01 -Resort Hotel,0,154,2016,December,53,30,0,3,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,242.0,179.0,0,Transient-Party,86.09,1,1,Check-Out,2019-11-03 -Resort Hotel,0,262,2017,June,16,2,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,131.01,0,2,Check-Out,2020-04-02 -City Hotel,0,110,2017,July,26,6,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,169.41,0,1,Check-Out,2020-05-03 -Resort Hotel,1,364,2017,February,9,28,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,38.52,0,0,Canceled,2019-10-04 -City Hotel,0,1,2017,July,28,4,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.68,0,1,Check-Out,2020-05-03 -City Hotel,1,268,2015,October,44,20,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,64,Transient-Party,61.54,0,0,Canceled,2018-08-03 -Resort Hotel,0,268,2016,December,50,25,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,F,2,No Deposit,250.0,179.0,0,Transient-Party,26.8,0,0,Check-Out,2019-09-03 -Resort Hotel,0,44,2017,March,26,12,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,47.0,219.0,0,Transient-Party,66.98,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,June,21,28,0,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,93.36,1,2,Check-Out,2019-06-03 -City Hotel,0,22,2016,April,21,24,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,90.0,0,2,Check-Out,2019-03-04 -City Hotel,1,94,2016,May,22,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,91.67,0,0,Canceled,2019-02-01 -City Hotel,1,2,2016,January,4,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,110.38,0,0,Canceled,2019-08-04 -Resort Hotel,1,19,2017,June,37,16,2,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,2,No Deposit,247.0,179.0,0,Transient,230.18,0,0,Canceled,2019-10-04 -Resort Hotel,0,129,2017,May,22,21,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,145.0,179.0,0,Transient,121.19,0,1,Check-Out,2020-04-02 -Resort Hotel,0,46,2017,May,19,6,2,3,1,0.0,0,HB,CN,Direct,Corporate,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,127.4,0,2,Check-Out,2020-06-02 -City Hotel,0,2,2017,April,17,15,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,93.58,0,2,Check-Out,2020-04-02 -City Hotel,0,3,2015,October,43,21,2,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient-Party,122.91,0,0,Check-Out,2018-06-02 -City Hotel,1,26,2016,May,22,21,1,1,1,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.67,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2017,January,4,28,0,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,62.59,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,December,50,2,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-11-03 -Resort Hotel,1,285,2017,June,31,30,2,5,2,0.0,0,HB,PRT,Direct,TA/TO,1,0,1,L,A,0,No Deposit,247.0,179.0,0,Transient,65.44,0,2,Canceled,2020-01-04 -Resort Hotel,0,48,2016,June,36,31,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,161.43,1,1,Check-Out,2019-08-04 -City Hotel,0,4,2015,October,45,28,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,61.9,0,0,Check-Out,2018-09-02 -City Hotel,1,322,2017,July,37,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,165.78,0,0,Canceled,2020-04-02 -City Hotel,0,8,2016,June,50,6,2,2,2,0.0,0,BB,BEL,Aviation,Corporate,0,0,0,E,E,1,No Deposit,15.0,174.0,0,Transient,96.69,0,1,Check-Out,2019-09-03 -City Hotel,0,153,2016,October,42,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Contract,71.44,0,0,Check-Out,2019-06-03 -Resort Hotel,0,52,2015,August,39,6,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,127.99,1,0,Canceled,2018-06-02 -City Hotel,0,15,2016,April,23,30,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,134.65,0,2,Check-Out,2019-12-04 -City Hotel,1,34,2017,June,36,24,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.74,0,0,Canceled,2019-05-04 -City Hotel,1,25,2016,September,43,7,2,3,3,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,165.63,0,0,Canceled,2019-07-04 -City Hotel,0,256,2015,July,37,19,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,60.05,0,1,Check-Out,2018-08-03 -City Hotel,0,304,2015,July,32,9,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,118.55,0,1,Check-Out,2018-06-02 -City Hotel,0,103,2017,May,28,10,1,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,1,No Deposit,15.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-02-01 -City Hotel,0,0,2017,May,18,9,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,17.0,76.0,0,Transient,110.01,0,0,Check-Out,2019-11-03 -Resort Hotel,1,108,2015,July,32,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,No Deposit,249.0,179.0,0,Transient,86.91,0,0,Canceled,2018-01-03 -City Hotel,0,3,2015,September,45,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,1,No Deposit,12.0,179.0,0,Contract,111.98,0,0,Check-Out,2018-05-03 -Resort Hotel,1,18,2016,May,26,15,1,0,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,196.16,0,1,Canceled,2019-06-03 -City Hotel,0,44,2016,April,20,5,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,137.42,0,0,Check-Out,2019-02-01 -Resort Hotel,0,148,2017,August,36,30,2,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,144.78,1,1,Check-Out,2020-07-03 -Resort Hotel,0,105,2016,April,18,23,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,74.35,0,0,Check-Out,2019-02-01 -City Hotel,0,36,2016,December,50,24,1,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,73.68,0,0,Check-Out,2019-12-04 -City Hotel,0,31,2016,March,15,2,2,3,3,1.0,0,BB,IRL,Online TA,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,100.3,0,0,Check-Out,2019-03-04 -Resort Hotel,0,273,2017,July,31,22,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,167.29,0,2,Check-Out,2020-05-03 -Resort Hotel,0,199,2017,August,35,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,82.24,0,2,Check-Out,2020-07-03 -City Hotel,0,112,2016,October,44,17,1,3,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,142.87,0,0,Check-Out,2019-09-03 -City Hotel,0,86,2017,December,27,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,60.9,0,0,Check-Out,2019-12-04 -Resort Hotel,0,120,2016,May,23,5,2,4,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,343.0,179.0,0,Transient-Party,103.75,0,0,Check-Out,2019-03-04 -Resort Hotel,1,236,2016,July,31,18,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,212.22,0,2,Canceled,2019-04-03 -Resort Hotel,0,24,2016,June,26,17,1,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,120.01,0,0,Check-Out,2019-02-01 -Resort Hotel,0,20,2016,February,12,9,1,2,1,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient-Party,45.32,0,0,Check-Out,2018-11-02 -City Hotel,1,2,2017,February,9,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,183.0,179.0,0,Transient,74.75,0,0,Canceled,2019-12-04 -Resort Hotel,0,16,2015,August,32,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,222.21,0,1,Check-Out,2020-06-02 -City Hotel,1,269,2016,June,27,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.17,0,0,Canceled,2019-05-04 -City Hotel,1,259,2016,May,23,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient-Party,78.93,0,0,Canceled,2019-02-01 -Resort Hotel,0,231,2017,June,27,13,0,1,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,184.0,179.0,0,Transient-Party,115.42,0,0,Check-Out,2020-06-02 -City Hotel,0,47,2016,June,3,13,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.45,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2015,October,45,19,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.74,1,0,Check-Out,2018-08-03 -City Hotel,0,3,2015,September,43,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,1.04,0,0,Check-Out,2018-06-02 -City Hotel,0,27,2015,September,41,20,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,136.79,0,0,Check-Out,2018-05-03 -City Hotel,1,12,2017,March,16,16,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,70.35,0,0,Canceled,2020-03-03 -City Hotel,0,88,2016,September,41,21,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,98.75,0,0,Check-Out,2018-08-03 -City Hotel,1,333,2017,May,28,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.72,0,0,Canceled,2020-03-03 -Resort Hotel,1,54,2015,December,51,9,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,61.17,0,2,Canceled,2018-11-02 -City Hotel,0,160,2017,July,25,26,2,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.84,0,1,Check-Out,2020-05-03 -City Hotel,1,375,2016,September,43,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,110.93,0,0,Canceled,2019-08-04 -City Hotel,0,27,2016,August,8,29,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,149.15,0,2,Check-Out,2019-01-03 -City Hotel,1,155,2016,November,49,24,1,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient,76.36,0,0,Canceled,2019-09-03 -Resort Hotel,0,28,2016,March,18,21,1,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient-Party,81.44,1,0,Check-Out,2019-05-04 -Resort Hotel,0,38,2016,August,36,2,0,4,2,0.0,0,BB,DEU,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,79.48,0,0,Check-Out,2019-11-03 -Resort Hotel,0,14,2017,August,27,13,2,5,3,0.0,0,BB,USA,Direct,Direct,0,0,0,H,H,2,No Deposit,250.0,179.0,0,Transient,249.76,1,2,Check-Out,2020-03-03 -Resort Hotel,0,52,2016,September,38,16,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient,111.22,0,0,Check-Out,2019-09-03 -Resort Hotel,0,2,2017,January,2,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,13.0,282.0,0,Transient,47.39,0,0,Check-Out,2019-11-03 -Resort Hotel,0,29,2015,August,36,16,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,212.73,0,0,Check-Out,2019-06-03 -City Hotel,0,16,2016,January,18,21,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.33,0,2,Check-Out,2019-11-03 -City Hotel,0,38,2016,March,4,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,6.0,179.0,0,Transient,111.05,0,1,Canceled,2018-11-02 -City Hotel,1,8,2017,May,17,6,2,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,86.62,0,1,Canceled,2020-03-03 -Resort Hotel,1,24,2015,July,32,24,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient-Party,58.84,0,0,No-Show,2018-07-03 -City Hotel,1,276,2015,September,36,8,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,119.63,0,0,Canceled,2018-07-03 -Resort Hotel,0,156,2017,February,8,9,2,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,46.0,224.0,0,Transient,27.55,0,0,Check-Out,2020-01-04 -City Hotel,0,91,2016,May,22,15,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,95.44,0,2,Check-Out,2019-06-03 -Resort Hotel,0,12,2017,June,25,27,0,3,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,141.52,1,1,Check-Out,2020-03-03 -City Hotel,1,111,2017,March,10,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,2,No Deposit,8.0,179.0,0,Transient,117.94,0,2,Canceled,2020-02-01 -City Hotel,0,10,2016,August,38,12,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,182.19,0,3,Check-Out,2019-06-03 -City Hotel,1,22,2016,July,34,5,0,4,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,166.08,0,0,Canceled,2019-05-04 -City Hotel,1,2,2017,January,27,20,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,120.51,0,1,Canceled,2020-06-02 -City Hotel,1,45,2016,December,50,6,1,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.8,0,0,Canceled,2019-09-03 -Resort Hotel,0,104,2016,October,41,13,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,276.0,179.0,0,Transient,77.61,1,0,Check-Out,2019-06-03 -Resort Hotel,0,203,2016,October,43,2,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,134.0,179.0,0,Transient,121.16,0,0,Check-Out,2019-07-04 -City Hotel,1,399,2016,February,11,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,38.62,0,0,Canceled,2018-11-02 -City Hotel,0,93,2016,December,53,15,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,148.57,0,0,Check-Out,2019-12-04 -City Hotel,0,15,2017,February,10,6,2,2,3,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,74.52,0,2,Check-Out,2020-02-01 -City Hotel,1,1,2017,August,36,18,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,202.91,0,1,Canceled,2020-06-02 -City Hotel,1,271,2015,September,38,15,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,57.91,0,0,Canceled,2017-11-02 -Resort Hotel,0,146,2016,March,9,28,0,3,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,378.0,179.0,0,Transient,37.63,0,0,Check-Out,2019-02-01 -City Hotel,0,92,2016,August,35,27,0,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,249.85,1,0,Check-Out,2019-04-03 -City Hotel,0,12,2016,September,44,5,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.6,0,1,Check-Out,2019-06-03 -City Hotel,1,128,2015,July,32,5,1,3,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.85,0,0,Canceled,2018-06-02 -Resort Hotel,0,97,2017,July,32,6,4,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,18.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-06-02 -City Hotel,0,19,2017,February,10,16,0,2,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,171.0,179.0,0,Transient-Party,59.41,0,0,Check-Out,2020-02-01 -Resort Hotel,0,160,2016,April,15,21,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,290.0,179.0,0,Transient-Party,36.65,1,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,March,10,17,0,1,2,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,33.27,0,0,Check-Out,2019-01-03 -City Hotel,0,3,2016,June,30,17,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,92.7,0,2,Check-Out,2019-01-03 -City Hotel,0,208,2016,December,53,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,122.93,0,0,Check-Out,2019-12-04 -City Hotel,1,106,2017,May,22,18,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,26.0,179.0,0,Transient-Party,126.31,0,0,Canceled,2020-03-03 -City Hotel,0,3,2015,December,51,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,E,D,0,No Deposit,10.0,179.0,0,Group,77.84,0,2,Check-Out,2019-10-04 -City Hotel,0,0,2015,October,45,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,61.78,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2016,December,49,30,0,1,3,0.0,0,BB,,Online TA,Direct,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Group,0.44,0,0,Check-Out,2019-10-04 -Resort Hotel,0,10,2016,May,24,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,342.0,220.0,0,Transient-Party,64.06,0,0,Check-Out,2019-08-04 -City Hotel,0,3,2016,January,12,16,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.51,0,1,Check-Out,2018-11-02 -City Hotel,1,103,2017,September,35,15,0,3,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,195.17,0,0,Canceled,2020-06-02 -Resort Hotel,0,91,2015,December,53,17,1,4,2,0.0,0,FB,AUT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient-Party,91.16,0,0,Check-Out,2018-09-02 -Resort Hotel,0,82,2017,June,25,30,4,3,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-02-01 -Resort Hotel,1,258,2015,December,53,31,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient,120.02,0,0,Canceled,2018-10-03 -City Hotel,0,17,2017,June,10,27,0,1,1,0.0,0,SC,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,214.0,0,Transient,70.6,0,0,Check-Out,2020-04-02 -City Hotel,0,214,2017,April,22,26,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.38,0,2,Check-Out,2020-05-03 -City Hotel,1,47,2015,October,52,10,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient-Party,62.13,0,0,Canceled,2018-08-03 -City Hotel,0,280,2015,October,45,9,0,3,3,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,120.31,0,2,Check-Out,2019-01-03 -City Hotel,1,148,2016,January,5,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,20,Transient,95.4,0,0,Canceled,2018-10-03 -Resort Hotel,0,3,2015,January,4,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,0,No Deposit,16.0,179.0,0,Group,38.54,1,0,Check-Out,2018-07-03 -City Hotel,1,263,2016,August,36,25,2,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,100.31,0,0,Canceled,2017-12-03 -City Hotel,1,88,2015,July,34,30,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,131.6,0,0,Canceled,2018-06-02 -Resort Hotel,0,163,2016,October,47,18,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,232.0,179.0,0,Transient,84.92,0,0,Check-Out,2019-08-04 -City Hotel,0,10,2017,May,16,21,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,121.52,0,1,Check-Out,2020-04-02 -Resort Hotel,0,68,2015,December,53,29,2,5,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,55.99,0,0,Check-Out,2019-08-04 -City Hotel,1,214,2016,October,38,5,0,2,3,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,42,Transient,85.87,0,0,Canceled,2018-08-03 -City Hotel,0,7,2016,April,9,4,0,1,3,0.0,0,BB,,Direct,Direct,0,0,0,B,D,0,No Deposit,14.0,179.0,0,Transient,127.76,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2017,August,9,9,2,0,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,87.83,0,3,Check-Out,2019-11-03 -Resort Hotel,1,149,2016,March,18,31,1,2,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,D,F,1,Refundable,13.0,179.0,0,Transient-Party,74.19,0,0,Canceled,2019-01-03 -City Hotel,1,286,2015,August,38,24,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,71.1,0,0,Canceled,2018-06-02 -City Hotel,0,93,2017,March,13,29,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,73.1,0,3,Check-Out,2020-03-03 -City Hotel,1,14,2016,February,9,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,79.16,0,0,Canceled,2018-11-02 -City Hotel,1,113,2016,November,51,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.1,0,0,Canceled,2018-11-02 -City Hotel,0,27,2016,December,53,28,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,69.58,0,1,Check-Out,2019-11-03 -City Hotel,0,103,2016,April,15,24,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,149.37,0,0,Check-Out,2019-02-01 -Resort Hotel,0,55,2016,August,22,31,2,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,228.31,1,1,Check-Out,2020-04-02 -Resort Hotel,0,309,2015,July,32,13,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,59.09,0,0,Check-Out,2017-12-03 -Resort Hotel,1,2,2015,August,29,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.61,0,0,No-Show,2018-09-02 -Resort Hotel,0,156,2016,September,44,26,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,65.25,0,0,Check-Out,2019-07-04 -City Hotel,1,26,2017,December,9,2,2,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.34,0,1,Canceled,2019-11-03 -City Hotel,0,26,2016,January,10,10,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,96.09,0,3,Check-Out,2018-11-02 -Resort Hotel,1,43,2015,December,51,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,42.62,0,0,Canceled,2018-10-03 -City Hotel,1,372,2016,September,28,23,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,68.07,0,0,Canceled,2017-11-02 -City Hotel,0,48,2016,May,22,13,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.01,0,1,Check-Out,2019-02-01 -City Hotel,0,147,2017,June,26,8,0,3,2,0.0,0,HB,GBR,Corporate,TA/TO,1,0,0,B,B,1,No Deposit,12.0,179.0,0,Contract,132.78,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,November,53,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,27.25,0,0,Check-Out,2018-08-03 -Resort Hotel,0,155,2016,April,15,21,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,76.11,0,0,Check-Out,2019-03-04 -City Hotel,1,43,2017,May,16,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,Non Refund,65.0,179.0,0,Transient,98.65,0,1,Canceled,2020-03-03 -Resort Hotel,0,11,2017,May,23,9,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,57.98,1,0,Check-Out,2020-04-02 -City Hotel,0,21,2016,October,45,30,2,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,161.03,0,0,Check-Out,2019-02-01 -City Hotel,0,27,2016,April,17,30,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,96.79,0,0,Check-Out,2019-03-04 -City Hotel,1,140,2016,June,27,19,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,97.28,0,0,Canceled,2019-06-03 -Resort Hotel,0,0,2017,January,16,13,0,1,2,0.0,0,BB,PRT,Direct,Corporate,1,0,1,L,D,0,No Deposit,14.0,179.0,0,Group,46.33,0,3,Check-Out,2019-09-03 -City Hotel,1,202,2016,April,23,27,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,97.14,0,0,Canceled,2019-02-01 -City Hotel,1,46,2017,July,31,15,2,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.77,0,0,Canceled,2020-06-02 -City Hotel,0,397,2017,June,27,27,2,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,147.09,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,April,16,14,2,0,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,C,F,1,No Deposit,15.0,179.0,0,Transient,37.6,1,0,Check-Out,2020-02-01 -Resort Hotel,0,52,2017,February,10,14,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,34.48,0,0,Check-Out,2019-10-04 -Resort Hotel,0,12,2016,October,42,12,0,5,1,0.0,0,BB,DEU,Groups,Corporate,1,0,0,A,E,0,No Deposit,11.0,226.0,0,Transient,121.99,0,0,Check-Out,2019-08-04 -City Hotel,1,104,2017,August,33,2,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.89,0,0,Canceled,2020-06-02 -Resort Hotel,1,215,2016,October,43,22,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Refundable,2.0,179.0,75,Transient,74.15,0,0,Canceled,2019-05-04 -City Hotel,1,172,2016,June,27,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,68.0,179.0,16,Transient,101.85,0,0,Canceled,2019-03-04 -City Hotel,0,84,2015,September,36,10,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.67,0,2,Check-Out,2018-09-02 -City Hotel,0,46,2016,October,45,28,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,152.14,0,1,Check-Out,2019-09-03 -Resort Hotel,1,0,2016,January,10,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,1,No Deposit,241.0,179.0,0,Transient,37.89,0,0,Canceled,2018-11-02 -City Hotel,0,27,2016,October,50,28,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,95.25,0,1,Check-Out,2019-06-03 -Resort Hotel,0,48,2016,October,49,18,2,7,1,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,245.0,179.0,0,Transient,99.8,1,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2017,March,10,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,17.0,223.0,0,Transient,44.21,0,0,Check-Out,2020-04-02 -City Hotel,0,13,2016,September,28,9,0,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.01,0,0,Check-Out,2019-03-04 -Resort Hotel,0,142,2016,March,12,31,0,3,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,62.48,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2015,August,38,24,2,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,119.45,0,0,Check-Out,2018-06-02 -Resort Hotel,0,104,2017,July,27,9,1,4,1,0.0,0,BB,SWE,Direct,Direct,0,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient,215.09,0,3,Check-Out,2020-07-03 -Resort Hotel,0,161,2017,April,18,7,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,126.57,1,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,June,27,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,41.12,1,0,Check-Out,2019-07-04 -City Hotel,0,93,2016,September,37,3,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,147.78,1,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,June,44,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,1,No Deposit,15.0,244.0,0,Transient,70.25,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,October,44,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,3,No Deposit,16.0,235.0,0,Transient,147.8,0,0,Canceled,2019-12-04 -City Hotel,1,34,2017,August,22,21,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.33,0,0,Canceled,2020-04-02 -City Hotel,0,19,2015,October,45,17,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,105.69,0,0,Check-Out,2018-08-03 -Resort Hotel,0,6,2017,March,10,7,1,7,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,78.13,1,1,Check-Out,2020-04-02 -Resort Hotel,0,12,2016,April,10,22,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,49.44,0,0,Check-Out,2019-01-03 -Resort Hotel,0,15,2017,April,17,9,2,7,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,315.0,179.0,0,Transient,151.92,0,0,Check-Out,2019-11-03 -Resort Hotel,0,123,2017,April,17,29,2,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,101.41,1,1,Check-Out,2020-04-02 -City Hotel,1,58,2017,July,27,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,128.28,0,0,Canceled,2020-06-02 -City Hotel,0,110,2016,April,16,28,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,73.25,0,1,Check-Out,2019-02-01 -Resort Hotel,0,21,2016,March,20,31,0,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,16.0,222.0,0,Transient-Party,36.45,0,0,Check-Out,2019-03-04 -Resort Hotel,1,201,2017,August,35,6,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,109.61,0,1,Canceled,2019-11-03 -Resort Hotel,0,180,2016,October,42,20,2,2,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,264.0,179.0,0,Transient-Party,103.64,0,3,Check-Out,2019-11-03 -Resort Hotel,0,77,2015,September,44,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,40.0,179.0,0,Contract,61.27,0,0,Check-Out,2019-02-01 -City Hotel,1,37,2016,March,16,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,32.0,179.0,0,Transient,61.49,0,0,Canceled,2019-03-04 -Resort Hotel,0,55,2016,July,37,9,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,137.0,179.0,0,Transient,71.88,0,0,Check-Out,2019-04-03 -Resort Hotel,0,59,2016,August,36,6,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient-Party,63.03,0,1,Check-Out,2019-05-04 -City Hotel,0,1,2015,July,33,28,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,103.76,0,0,Check-Out,2018-06-02 -City Hotel,0,254,2016,October,41,20,2,3,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,64,Transient-Party,114.05,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,May,19,15,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,0,No Deposit,14.0,45.0,0,Transient,0.0,0,1,Check-Out,2020-02-01 -Resort Hotel,1,114,2016,November,53,28,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.82,0,2,Canceled,2019-11-03 -City Hotel,0,195,2017,June,25,13,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,E,E,0,No Deposit,13.0,71.0,0,Transient-Party,63.49,0,0,Check-Out,2020-04-02 -City Hotel,1,49,2017,March,17,31,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,103.49,0,1,Canceled,2019-01-03 -City Hotel,0,111,2017,May,21,28,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,100.21,0,1,Check-Out,2020-02-01 -Resort Hotel,0,3,2016,October,45,12,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,C,3,No Deposit,14.0,223.0,0,Transient-Party,69.06,0,0,Check-Out,2019-10-04 -City Hotel,1,9,2015,October,36,18,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,91.47,0,0,Canceled,2018-12-03 -City Hotel,0,47,2017,June,18,28,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,8.0,179.0,0,Transient-Party,132.0,0,0,Check-Out,2020-03-03 -City Hotel,0,51,2015,September,34,28,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,88.52,0,2,Check-Out,2018-07-03 -Resort Hotel,0,14,2015,December,48,24,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,42.0,179.0,0,Transient-Party,82.84,0,0,Check-Out,2018-11-02 -Resort Hotel,0,99,2016,February,11,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,61.27,1,2,Check-Out,2019-03-04 -Resort Hotel,1,1,2015,February,4,14,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,71.0,0,Transient,41.98,0,0,Canceled,2018-12-03 -City Hotel,0,155,2016,October,42,28,2,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,32.0,179.0,0,Transient,99.13,0,0,Check-Out,2019-09-03 -City Hotel,0,390,2017,May,22,27,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,80.49,0,0,Check-Out,2020-04-02 -Resort Hotel,0,29,2016,January,9,25,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,70.76,0,0,Check-Out,2018-12-03 -City Hotel,1,154,2016,June,26,30,0,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,125.43,0,1,Canceled,2019-02-01 -Resort Hotel,1,255,2016,October,46,7,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,154.72,0,0,Canceled,2019-07-04 -Resort Hotel,0,2,2016,August,36,23,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,18.0,179.0,0,Transient,136.2,1,0,Check-Out,2019-02-01 -City Hotel,0,185,2017,May,21,21,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.48,0,0,Check-Out,2019-06-03 -Resort Hotel,0,28,2016,June,25,31,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,76.3,0,0,Check-Out,2019-02-01 -City Hotel,1,49,2015,July,38,5,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,114.73,0,0,Canceled,2018-06-02 -Resort Hotel,0,89,2015,July,30,21,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,120.0,0,0,Check-Out,2018-06-02 -City Hotel,0,50,2016,July,37,23,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,85.06,0,2,Check-Out,2019-03-04 -City Hotel,0,16,2016,February,48,15,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,79.0,179.0,0,Transient,92.28,0,0,Check-Out,2019-03-04 -Resort Hotel,0,142,2016,October,45,2,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,74.16,0,3,Check-Out,2019-06-03 -Resort Hotel,1,17,2016,August,36,28,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,188.01,0,2,Canceled,2019-05-04 -City Hotel,1,0,2015,November,53,24,1,1,1,0.0,0,BB,,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,89.1,0,0,Canceled,2018-08-03 -City Hotel,1,29,2016,September,26,18,2,2,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,P,2,No Deposit,14.0,204.0,0,Transient,115.38,0,0,Canceled,2019-03-04 -City Hotel,1,186,2017,June,10,21,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,60.05,0,0,Canceled,2019-03-04 -City Hotel,0,88,2015,October,49,6,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.3,0,1,Check-Out,2019-01-03 -City Hotel,0,253,2017,June,27,19,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,1,0,0,A,E,1,No Deposit,24.0,179.0,0,Transient-Party,81.22,0,0,Check-Out,2020-03-03 -Resort Hotel,0,56,2016,October,45,21,0,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,F,A,0,No Deposit,16.0,179.0,0,Transient,47.4,0,0,Check-Out,2018-09-02 -City Hotel,0,102,2016,July,27,31,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,133.04,0,2,Canceled,2019-06-03 -Resort Hotel,1,0,2017,February,10,24,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,D,0,No Deposit,13.0,179.0,0,Transient,35.89,0,0,Canceled,2019-09-03 -City Hotel,1,235,2016,October,45,20,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.01,0,0,Canceled,2019-08-04 -City Hotel,1,1,2017,March,10,20,0,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,61.81,0,0,Canceled,2020-02-01 -Resort Hotel,0,10,2017,January,18,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,63.42,0,0,Canceled,2019-12-04 -Resort Hotel,0,40,2016,August,36,13,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,March,16,13,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,120.39,0,2,Check-Out,2020-03-03 -City Hotel,1,16,2015,October,43,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,68.45,0,0,Canceled,2018-09-02 -City Hotel,1,46,2015,July,31,5,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,74.03,0,0,Canceled,2018-06-02 -City Hotel,1,326,2015,August,37,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.43,0,0,Canceled,2017-12-03 -City Hotel,0,130,2017,June,37,18,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient-Party,116.39,1,1,Canceled,2020-01-04 -City Hotel,1,239,2016,July,36,16,2,4,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient-Party,96.58,0,1,Canceled,2018-09-02 -City Hotel,0,106,2016,July,28,20,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,219.4,0,2,Check-Out,2018-12-03 -City Hotel,0,16,2016,November,51,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,14.0,244.0,0,Transient-Party,71.37,0,0,Check-Out,2019-09-03 -City Hotel,0,88,2017,June,29,25,0,1,2,0.0,0,BB,SWE,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,111.69,0,0,Check-Out,2020-06-02 -City Hotel,1,50,2015,December,49,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,64.16,0,0,Canceled,2018-11-02 -City Hotel,1,69,2017,August,36,30,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,144.32,0,0,Canceled,2020-05-03 -Resort Hotel,0,181,2015,August,35,18,0,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,111.25,0,2,Check-Out,2018-06-02 -Resort Hotel,0,41,2015,September,34,30,0,3,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,97.48,1,0,Check-Out,2018-06-02 -Resort Hotel,1,107,2016,June,18,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.8,0,2,Canceled,2019-01-03 -City Hotel,1,164,2016,May,23,2,0,1,2,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient,62.74,0,0,Canceled,2019-01-03 -Resort Hotel,0,153,2016,March,17,31,1,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient-Party,82.57,0,0,Check-Out,2019-04-03 -City Hotel,1,219,2015,August,37,28,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.78,0,0,Canceled,2018-05-03 -City Hotel,0,3,2017,February,8,15,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,79.0,0,Transient,83.08,0,0,Check-Out,2020-01-04 -Resort Hotel,0,24,2016,December,4,28,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,3,No Deposit,35.0,179.0,0,Transient-Party,74.79,0,0,Check-Out,2019-11-03 -Resort Hotel,0,147,2017,August,36,19,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,126.06,0,0,Check-Out,2020-07-03 -Resort Hotel,0,1,2015,November,51,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,331.0,0,Transient-Party,39.07,0,0,Check-Out,2018-09-02 -City Hotel,1,25,2016,January,3,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,36.2,0,1,No-Show,2018-11-02 -City Hotel,0,312,2017,May,21,3,1,1,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,92.27,0,0,Check-Out,2019-03-04 -Resort Hotel,0,277,2015,September,37,10,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,89.24,0,0,Check-Out,2017-11-02 -Resort Hotel,0,19,2017,March,9,6,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,73.42,0,1,Check-Out,2020-01-04 -City Hotel,1,48,2016,June,27,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,115.51,0,0,Canceled,2019-05-04 -Resort Hotel,0,2,2016,October,42,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,201.0,179.0,0,Transient,80.07,0,0,Check-Out,2018-08-03 -City Hotel,0,378,2017,July,37,27,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,125.71,1,1,Canceled,2020-06-02 -Resort Hotel,0,15,2017,January,9,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient,77.99,0,0,Check-Out,2019-12-04 -Resort Hotel,0,15,2015,December,50,28,0,1,1,0.0,0,BB,,Complementary,Direct,0,0,0,A,A,2,No Deposit,249.0,179.0,0,Transient-Party,38.67,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,March,8,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,77.16,1,0,Check-Out,2019-03-04 -Resort Hotel,0,2,2015,October,43,9,2,3,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,64.6,0,0,Check-Out,2019-08-04 -Resort Hotel,1,270,2016,December,41,30,2,2,2,0.0,0,FB,,Groups,TA/TO,0,1,0,A,A,0,Non Refund,278.0,179.0,0,Transient,64.28,0,0,Canceled,2019-10-04 -Resort Hotel,0,16,2017,July,38,29,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,155.8,0,1,Check-Out,2020-06-02 -City Hotel,0,91,2016,October,44,28,0,1,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,66.68,0,0,Check-Out,2019-06-03 -City Hotel,0,90,2017,June,21,13,2,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.29,0,1,Check-Out,2020-04-02 -Resort Hotel,0,11,2015,October,46,11,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,42.64,0,1,Check-Out,2018-09-02 -Resort Hotel,0,266,2017,July,34,7,2,4,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,101.34,0,3,Check-Out,2020-07-03 -City Hotel,0,20,2017,July,31,21,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,223.38,0,3,Check-Out,2020-06-02 -City Hotel,0,36,2016,June,27,16,2,1,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,128.14,0,1,Check-Out,2019-05-04 -City Hotel,0,323,2017,June,31,21,2,0,2,2.0,0,BB,NOR,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,162.06,0,0,Check-Out,2020-05-03 -City Hotel,1,50,2017,April,20,6,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.86,0,0,Canceled,2019-12-04 -City Hotel,0,55,2016,February,8,5,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,61.18,0,1,Check-Out,2018-11-02 -Resort Hotel,0,49,2016,May,21,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,325.0,179.0,0,Transient-Party,68.33,0,0,Check-Out,2019-04-03 -Resort Hotel,0,91,2015,September,38,27,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,39.83,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,December,50,2,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,92.53,0,2,Check-Out,2019-01-03 -City Hotel,1,32,2016,August,31,9,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,127.86,0,3,Canceled,2019-08-04 -City Hotel,0,10,2016,January,5,19,0,1,1,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient,66.53,1,0,Check-Out,2019-09-03 -City Hotel,0,162,2017,April,17,15,2,3,1,0.0,0,BB,DEU,Corporate,TA/TO,0,0,0,D,F,0,No Deposit,37.0,222.0,0,Transient,153.43,0,0,Check-Out,2020-02-01 -Resort Hotel,0,1,2016,March,16,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,246.0,179.0,0,Transient,61.36,1,0,Check-Out,2018-12-03 -Resort Hotel,0,276,2015,August,34,30,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,185.0,179.0,0,Contract,59.71,0,0,Check-Out,2018-07-03 -City Hotel,1,45,2016,December,53,5,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient,116.32,0,0,Canceled,2018-12-03 -City Hotel,0,88,2017,April,33,10,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,99.49,1,2,Check-Out,2020-05-03 -City Hotel,1,69,2016,September,39,29,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,112.34,0,0,No-Show,2019-01-03 -Resort Hotel,0,83,2016,July,25,18,2,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,232.31,0,2,Check-Out,2019-05-04 -City Hotel,0,4,2016,October,41,27,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.13,0,1,Check-Out,2019-12-04 -City Hotel,0,12,2017,June,26,9,0,1,1,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,166.0,179.0,0,Transient,126.79,0,0,Check-Out,2020-03-03 -Resort Hotel,0,46,2016,June,27,12,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,L,F,0,No Deposit,378.0,179.0,0,Transient,1.16,0,0,Check-Out,2020-02-01 -City Hotel,0,4,2016,March,10,3,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,12.0,71.0,0,Transient,68.9,1,0,Check-Out,2019-03-04 -City Hotel,1,152,2016,March,4,28,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.87,0,0,Canceled,2018-10-03 -City Hotel,0,2,2017,August,32,16,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Group,2.07,0,0,Check-Out,2020-06-02 -City Hotel,0,5,2016,July,29,21,2,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,8.0,179.0,0,Transient,155.37,0,0,Check-Out,2019-01-03 -City Hotel,1,411,2016,June,15,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,100.75,0,0,Canceled,2019-11-03 -City Hotel,1,263,2017,April,23,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.0,0,0,Canceled,2018-12-03 -Resort Hotel,0,47,2015,December,53,2,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,242.0,179.0,0,Transient,71.95,0,1,Check-Out,2019-01-03 -City Hotel,1,17,2017,March,9,28,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,43.46,0,0,Canceled,2019-10-04 -Resort Hotel,1,27,2015,October,43,10,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,84.52,0,0,Canceled,2018-06-02 -City Hotel,0,13,2016,August,36,10,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient-Party,2.21,0,0,Check-Out,2019-06-03 -City Hotel,1,102,2016,April,16,30,0,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,62,Transient,126.67,0,0,Canceled,2018-12-03 -Resort Hotel,1,198,2016,July,37,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,123.21,0,1,Canceled,2019-06-03 -City Hotel,1,105,2016,June,26,9,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.78,0,0,Canceled,2019-01-03 -City Hotel,0,0,2015,October,44,12,0,1,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,138.32,0,0,Check-Out,2018-08-03 -City Hotel,0,27,2017,May,21,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Group,69.47,0,1,Check-Out,2020-02-01 -Resort Hotel,0,46,2015,December,53,13,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,38.94,0,0,Check-Out,2018-11-02 -Resort Hotel,0,18,2015,December,50,6,0,1,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,72.61,0,0,Check-Out,2018-06-02 -Resort Hotel,0,7,2015,December,44,29,2,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,120.72,0,0,Check-Out,2018-09-02 -City Hotel,1,112,2016,May,18,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,95.23,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2015,August,30,21,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,91.58,0,2,Check-Out,2019-05-04 -Resort Hotel,0,113,2017,January,3,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,44.51,1,1,Check-Out,2018-12-03 -City Hotel,0,18,2016,August,37,9,1,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.36,0,1,Check-Out,2018-08-03 -City Hotel,0,57,2017,May,15,18,2,1,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,P,K,1,No Deposit,9.0,179.0,0,Contract,3.36,0,1,Canceled,2020-03-03 -Resort Hotel,0,0,2016,January,12,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,77.81,1,0,Check-Out,2018-11-02 -City Hotel,0,0,2017,May,23,21,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.65,0,2,Check-Out,2020-04-02 -Resort Hotel,0,3,2017,August,32,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,251.0,179.0,0,Transient,126.55,1,1,Check-Out,2020-06-02 -Resort Hotel,0,11,2016,January,53,29,2,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,73.05,0,3,Check-Out,2018-10-03 -City Hotel,1,35,2016,October,43,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,21.0,179.0,64,Transient-Party,70.19,0,0,No-Show,2019-08-04 -Resort Hotel,0,33,2017,March,18,25,1,5,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,F,2,No Deposit,290.0,179.0,0,Transient,134.18,1,0,Check-Out,2020-03-03 -Resort Hotel,1,100,2015,July,35,15,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,84.6,0,0,Canceled,2018-06-02 -Resort Hotel,1,20,2016,December,53,27,2,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,171.0,179.0,0,Transient,252.0,0,0,Canceled,2018-12-03 -Resort Hotel,0,49,2016,August,32,12,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,320.0,179.0,0,Transient,119.04,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2017,February,11,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,A,0,No Deposit,18.0,63.0,0,Transient,62.9,1,2,Check-Out,2019-11-03 -City Hotel,1,193,2016,December,45,12,2,3,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,213.45,0,0,Canceled,2019-10-04 -City Hotel,0,93,2017,April,19,15,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,9.0,179.0,0,Transient-Party,66.75,0,0,Check-Out,2020-02-01 -Resort Hotel,0,6,2017,April,16,7,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,250.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-02-01 -City Hotel,0,2,2017,January,3,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,12.0,82.0,0,Transient,74.55,0,1,Check-Out,2019-09-03 -City Hotel,0,0,2017,January,11,6,0,4,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,120.93,0,1,Check-Out,2019-11-03 -City Hotel,1,4,2016,October,4,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,74.71,0,0,No-Show,2018-12-03 -City Hotel,0,44,2016,October,43,23,2,4,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,124.64,0,0,Canceled,2019-03-04 -City Hotel,0,150,2015,August,37,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,146.19,0,2,Check-Out,2018-06-02 -City Hotel,0,148,2017,August,22,25,2,5,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,103.99,0,0,Check-Out,2020-05-03 -Resort Hotel,0,10,2017,May,22,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,61.59,1,1,Check-Out,2020-03-03 -City Hotel,0,248,2017,May,21,23,2,5,3,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient-Party,85.44,1,0,Check-Out,2020-04-02 -City Hotel,1,42,2016,March,18,1,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,D,D,0,Non Refund,14.0,179.0,0,Transient,63.87,0,0,Canceled,2018-11-02 -Resort Hotel,0,197,2016,July,32,21,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,85.19,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2017,June,27,22,1,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,116.36,0,3,Check-Out,2019-05-04 -City Hotel,1,190,2017,June,22,21,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,154.0,179.0,0,Transient,99.03,0,0,Canceled,2020-02-01 -City Hotel,1,101,2017,June,27,25,0,3,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,Non Refund,33.0,45.0,0,Transient,101.79,0,0,Canceled,2019-10-04 -City Hotel,0,104,2016,April,14,17,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient-Party,59.41,0,0,Check-Out,2019-03-04 -Resort Hotel,0,166,2017,August,35,21,1,3,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,194.0,179.0,0,Transient,190.99,0,0,Check-Out,2020-06-02 -City Hotel,0,242,2016,June,26,20,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.2,0,2,Check-Out,2019-08-04 -City Hotel,1,163,2016,December,10,28,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,140.49,0,0,Canceled,2018-10-03 -Resort Hotel,0,33,2015,December,53,24,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.77,0,0,Check-Out,2018-12-03 -City Hotel,1,149,2016,May,16,10,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,62,Transient,99.88,0,0,Canceled,2019-02-01 -City Hotel,0,0,2015,August,37,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,27.94,0,0,Check-Out,2018-06-02 -City Hotel,0,10,2017,March,16,20,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,102.15,0,3,Check-Out,2019-11-03 -City Hotel,0,9,2016,December,45,19,1,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,87.01,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,March,16,20,0,5,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,95.0,75,Transient,148.5,1,0,Check-Out,2019-12-04 -Resort Hotel,0,16,2015,October,44,25,2,1,2,0.0,0,HB,AUT,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,153.86,0,0,Check-Out,2018-08-03 -Resort Hotel,1,198,2016,October,35,11,2,5,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Contract,119.42,0,2,Canceled,2019-08-04 -City Hotel,1,229,2016,November,44,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,63.12,0,0,Canceled,2018-01-31 -City Hotel,1,9,2016,February,17,6,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,F,F,0,No Deposit,9.0,179.0,0,Transient,132.96,0,0,Canceled,2018-11-02 -City Hotel,0,54,2015,December,50,27,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.53,0,2,Check-Out,2019-10-04 -Resort Hotel,1,398,2017,August,39,15,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,170.0,179.0,0,Transient,61.23,0,0,Canceled,2018-01-31 -Resort Hotel,0,146,2016,December,49,22,1,1,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Transient,227.56,0,0,Check-Out,2019-11-03 -City Hotel,1,14,2015,October,9,4,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,12.0,179.0,0,Transient,114.04,0,0,Canceled,2018-10-03 -Resort Hotel,0,320,2016,October,43,27,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,78.75,0,0,Check-Out,2019-05-04 -City Hotel,1,105,2016,February,10,16,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,74.02,0,1,Canceled,2018-11-02 -City Hotel,0,48,2016,March,18,15,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,130.1,0,1,Check-Out,2020-04-02 -City Hotel,1,280,2017,July,34,23,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -Resort Hotel,0,112,2017,June,11,11,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,171.96,1,0,Check-Out,2020-03-03 -Resort Hotel,0,17,2015,December,50,25,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,13.0,331.0,0,Transient,45.37,1,0,Check-Out,2019-09-03 -Resort Hotel,0,13,2015,October,44,9,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,36.74,0,0,Check-Out,2018-07-03 -City Hotel,1,192,2017,May,22,21,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.77,0,0,Canceled,2020-04-02 -Resort Hotel,0,1,2016,May,24,9,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,A,D,0,No Deposit,16.0,191.0,0,Transient,45.57,0,0,Check-Out,2019-07-04 -Resort Hotel,0,51,2016,October,42,12,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,91.52,0,1,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,March,11,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,19.0,90.0,0,Transient,47.43,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2015,October,45,20,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,0,No Deposit,13.0,215.0,0,Transient-Party,57.53,0,0,Check-Out,2018-09-02 -Resort Hotel,0,11,2015,July,44,27,3,4,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,L,A,0,No Deposit,16.0,179.0,0,Transient,140.69,1,1,Check-Out,2018-05-03 -City Hotel,1,15,2016,April,18,21,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,8.0,179.0,0,Transient,121.45,0,0,Canceled,2019-01-03 -City Hotel,1,376,2015,September,41,9,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,84.68,0,0,Canceled,2018-09-02 -City Hotel,0,7,2016,April,15,11,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.28,0,3,Check-Out,2019-02-01 -Resort Hotel,0,370,2015,September,43,30,2,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.86,0,0,Check-Out,2018-08-03 -City Hotel,1,2,2017,May,22,16,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.41,0,2,Canceled,2020-03-03 -Resort Hotel,0,56,2017,March,11,18,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,82.87,1,2,Check-Out,2020-03-03 -City Hotel,1,168,2017,August,39,26,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,121.7,0,0,Canceled,2020-06-02 -City Hotel,0,10,2016,June,27,17,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,71.0,0,Transient,94.83,1,0,Check-Out,2019-05-04 -Resort Hotel,0,32,2017,May,22,16,2,6,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,239.0,179.0,0,Group,125.14,0,3,Check-Out,2019-11-03 -City Hotel,0,19,2016,October,44,20,1,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,91.16,0,0,Canceled,2019-07-04 -Resort Hotel,0,0,2016,February,10,27,0,1,1,0.0,0,BB,ESP,Corporate,TA/TO,1,0,1,A,I,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -Resort Hotel,1,11,2016,December,23,12,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,73.63,1,0,Canceled,2019-04-03 -City Hotel,0,1,2015,September,49,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,L,D,0,No Deposit,17.0,179.0,0,Group,73.0,1,0,Check-Out,2018-08-03 -Resort Hotel,0,349,2016,June,27,24,4,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,75,Transient-Party,79.28,0,0,Check-Out,2019-06-03 -City Hotel,1,307,2016,July,33,21,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,71.81,0,1,Canceled,2017-10-03 -Resort Hotel,0,37,2017,May,22,20,0,2,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,C,A,1,No Deposit,40.0,179.0,0,Transient-Party,81.63,0,0,Check-Out,2020-03-03 -City Hotel,1,82,2016,July,26,10,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,74.0,0,0,Canceled,2019-03-04 -City Hotel,1,36,2015,October,45,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.09,0,0,Canceled,2018-07-03 -Resort Hotel,0,0,2015,January,10,29,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,93.69,1,0,Check-Out,2018-12-03 -City Hotel,0,0,2016,June,34,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Group,38.57,1,3,Check-Out,2019-05-04 -City Hotel,0,45,2017,July,30,31,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.52,0,1,Check-Out,2020-06-02 -City Hotel,1,145,2017,June,29,24,0,2,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,125.73,0,0,Canceled,2020-02-01 -Resort Hotel,0,42,2017,March,12,29,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,175.59,1,2,Check-Out,2020-03-03 -City Hotel,1,0,2016,June,28,21,3,9,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,115.84,0,0,Canceled,2020-05-03 -City Hotel,0,50,2015,December,51,31,2,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,36.62,0,0,Check-Out,2018-08-03 -City Hotel,0,190,2017,April,17,28,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,129.56,0,1,Check-Out,2020-04-02 -Resort Hotel,0,41,2016,December,53,7,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,244.0,179.0,0,Transient,231.19,0,0,Check-Out,2019-09-03 -Resort Hotel,0,36,2016,June,27,15,3,7,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,250.0,179.0,0,Transient,180.56,0,0,Check-Out,2018-12-03 -City Hotel,0,156,2017,June,23,10,0,3,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Transient,116.02,0,0,Check-Out,2020-02-01 -City Hotel,1,48,2015,August,37,16,2,4,1,0.0,0,BB,PRT,Online TA,Corporate,1,1,0,L,D,0,No Deposit,12.0,179.0,0,Transient,65.08,0,2,Canceled,2018-06-02 -City Hotel,1,22,2017,May,20,30,2,5,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,174.63,0,1,No-Show,2020-03-03 -Resort Hotel,0,82,2017,June,11,6,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,0,Contract,73.68,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,September,35,12,0,5,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,248.0,179.0,0,Group,44.7,0,0,Check-Out,2018-05-03 -Resort Hotel,0,1,2015,November,45,27,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,G,D,0,No Deposit,253.0,179.0,0,Transient,48.82,0,0,Check-Out,2018-07-03 -City Hotel,0,389,2016,September,44,18,0,3,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,32.84,0,1,Canceled,2019-05-04 -Resort Hotel,0,0,2016,February,10,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,0,No Deposit,13.0,75.0,0,Transient,75.13,1,0,Check-Out,2019-10-04 -City Hotel,1,238,2016,May,20,10,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,75.6,0,0,Canceled,2019-03-04 -Resort Hotel,0,31,2016,May,22,15,1,1,1,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient-Party,163.94,1,0,Check-Out,2019-02-01 -City Hotel,0,0,2015,February,3,6,0,1,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,59.91,0,1,Check-Out,2018-11-02 -City Hotel,0,0,2016,May,26,16,0,3,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,11.0,265.0,0,Transient-Party,1.45,0,0,Check-Out,2019-02-01 -Resort Hotel,0,19,2017,January,4,29,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,37.6,0,0,Check-Out,2019-10-04 -City Hotel,1,87,2015,December,49,29,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,22,Transient-Party,87.1,0,0,Canceled,2017-11-02 -Resort Hotel,0,106,2016,April,10,18,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,317.0,179.0,0,Transient,44.6,0,1,Check-Out,2020-03-03 -City Hotel,0,147,2017,May,23,27,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,126.81,0,0,Check-Out,2020-02-01 -Resort Hotel,0,197,2017,May,23,7,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.1,0,0,Check-Out,2020-04-02 -City Hotel,0,18,2016,April,21,24,0,3,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,147.42,1,0,Check-Out,2019-04-03 -City Hotel,0,50,2017,July,38,27,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,137.6,0,2,Check-Out,2020-04-02 -City Hotel,0,102,2016,January,51,28,2,3,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,121.57,0,2,Check-Out,2019-11-03 -Resort Hotel,0,258,2017,June,15,5,2,5,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,76.43,0,0,Check-Out,2020-03-03 -Resort Hotel,0,152,2016,June,29,27,4,3,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,C,0,No Deposit,36.0,179.0,0,Transient,145.18,0,0,Check-Out,2019-06-03 -Resort Hotel,1,431,2017,March,9,25,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,G,0,Non Refund,240.0,179.0,0,Transient,1.44,0,0,Canceled,2020-03-03 -City Hotel,0,107,2016,September,37,15,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,83.14,0,1,Check-Out,2019-05-04 -City Hotel,0,382,2017,May,23,27,2,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,86.87,0,0,Check-Out,2020-04-02 -Resort Hotel,0,149,2016,July,22,20,2,5,2,2.0,0,BB,GBR,Direct,TA/TO,0,0,0,G,G,0,No Deposit,298.0,179.0,0,Transient,200.69,1,0,Check-Out,2019-12-04 -Resort Hotel,0,2,2016,March,22,17,0,1,2,0.0,0,BB,,Complementary,Direct,1,0,0,L,C,0,No Deposit,248.0,179.0,0,Transient,0.0,1,2,Check-Out,2020-02-01 -Resort Hotel,0,29,2015,August,36,6,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,106.16,0,2,Check-Out,2018-08-03 -Resort Hotel,0,32,2015,July,35,24,2,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,96.27,0,0,Check-Out,2018-06-02 -City Hotel,1,15,2016,December,51,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,81.07,0,0,Canceled,2018-08-03 -City Hotel,0,241,2016,March,9,17,2,3,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.98,0,0,Check-Out,2019-03-04 -Resort Hotel,0,153,2016,March,18,31,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,1,Refundable,11.0,222.0,0,Transient-Party,61.1,1,0,Check-Out,2019-03-04 -City Hotel,0,144,2017,December,4,10,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Group,68.95,0,2,Check-Out,2019-12-04 -Resort Hotel,0,90,2017,March,10,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,214.83,0,3,Check-Out,2020-03-03 -City Hotel,0,254,2016,July,32,10,2,3,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,141.77,0,0,Check-Out,2019-05-04 -Resort Hotel,1,104,2015,November,51,21,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,42.12,0,2,Canceled,2018-08-03 -City Hotel,1,155,2016,August,34,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,101.16,0,0,Canceled,2019-07-04 -Resort Hotel,0,15,2017,July,31,28,1,0,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,2.72,0,0,Check-Out,2020-03-03 -City Hotel,0,44,2017,March,12,14,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,116.61,0,0,Check-Out,2019-11-03 -City Hotel,0,97,2016,July,30,16,0,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.9,0,2,Check-Out,2019-04-03 -City Hotel,0,10,2017,May,18,29,1,0,1,0.0,0,SC,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,91.31,0,0,Check-Out,2019-11-03 -Resort Hotel,0,135,2017,January,36,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,41.09,0,0,Check-Out,2019-12-04 -City Hotel,0,135,2017,June,28,21,0,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.62,0,1,Check-Out,2020-06-02 -City Hotel,1,399,2016,June,18,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,118.62,0,0,Canceled,2018-11-02 -Resort Hotel,0,16,2015,August,38,25,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,271.0,179.0,0,Transient,202.43,0,0,Check-Out,2018-07-03 -Resort Hotel,1,2,2015,September,53,2,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,88.97,0,0,Canceled,2018-07-03 -City Hotel,1,190,2017,May,22,27,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,5.0,179.0,0,Transient,92.81,0,0,Canceled,2019-11-03 -City Hotel,0,96,2017,January,3,28,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.78,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,March,11,13,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,B,B,0,No Deposit,13.0,74.0,0,Transient,67.83,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,March,4,27,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,F,0,No Deposit,19.0,179.0,0,Transient,48.42,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2017,February,9,8,1,0,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,263.0,0,Transient,64.19,0,0,Check-Out,2020-03-03 -Resort Hotel,1,274,2016,July,31,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Contract,204.28,0,0,Canceled,2018-11-02 -City Hotel,0,34,2016,October,49,20,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,66.49,0,0,Check-Out,2018-12-03 -City Hotel,0,111,2016,February,9,24,2,3,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,63,Transient,196.97,0,2,Check-Out,2019-10-04 -Resort Hotel,0,196,2016,October,47,31,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,16.0,224.0,0,Transient-Party,62.21,0,0,Check-Out,2019-10-04 -Resort Hotel,0,15,2017,March,27,21,1,5,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,83.3,0,1,Check-Out,2020-03-03 -Resort Hotel,0,32,2015,October,43,18,2,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,278.0,179.0,0,Group,37.87,0,0,Check-Out,2018-09-02 -Resort Hotel,0,16,2016,October,44,24,0,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,3,No Deposit,243.0,179.0,0,Transient,53.41,0,2,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,January,5,28,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,125.93,1,3,Check-Out,2019-12-04 -Resort Hotel,1,118,2017,July,29,9,0,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,227.2,1,0,Canceled,2020-04-02 -Resort Hotel,0,86,2015,August,33,26,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,60.55,1,2,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,April,42,16,0,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,90.76,0,2,Check-Out,2019-03-04 -Resort Hotel,1,283,2015,August,36,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.33,0,0,Canceled,2017-11-02 -Resort Hotel,0,0,2016,February,13,21,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,33.3,1,0,Check-Out,2019-02-01 -City Hotel,1,6,2016,February,8,3,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.47,0,1,Check-Out,2019-02-01 -City Hotel,1,48,2016,December,53,29,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,73.72,0,0,Canceled,2018-11-02 -City Hotel,0,49,2016,October,44,27,0,4,2,1.0,0,BB,USA,Direct,Direct,0,0,0,A,G,3,No Deposit,17.0,179.0,0,Transient,106.5,0,0,Check-Out,2019-06-03 -City Hotel,0,71,2015,September,38,27,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,59.11,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,May,22,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,16.0,179.0,0,Transient,109.82,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2015,December,53,29,0,3,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient,63.17,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2017,January,3,2,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,331.0,0,Transient,33.99,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,June,42,16,1,0,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,C,0,No Deposit,15.0,238.0,0,Transient,83.24,0,0,Check-Out,2019-06-03 -City Hotel,1,12,2015,September,38,27,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,98.67,0,0,Canceled,2018-09-02 -City Hotel,1,11,2016,February,10,24,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,178.0,179.0,0,Transient,82.02,0,0,Canceled,2018-11-02 -Resort Hotel,0,21,2016,June,27,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,90.0,179.0,0,Transient-Party,95.86,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2016,March,10,29,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,60.17,0,2,Check-Out,2019-02-01 -Resort Hotel,0,109,2017,April,17,7,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,378.0,179.0,0,Transient-Party,96.89,0,2,Check-Out,2020-03-03 -Resort Hotel,1,162,2017,July,26,10,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,237.0,179.0,0,Transient,139.26,0,2,Canceled,2020-02-01 -City Hotel,1,380,2016,April,33,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,78.61,0,0,Canceled,2018-12-03 -City Hotel,0,41,2017,May,21,13,1,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,126.42,0,0,Check-Out,2020-05-03 -City Hotel,0,159,2017,March,19,5,2,5,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,24.0,179.0,0,Transient,44.94,0,0,Check-Out,2020-04-02 -Resort Hotel,0,44,2017,July,32,25,3,3,3,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,193.83,1,0,Check-Out,2020-06-02 -City Hotel,0,243,2016,August,38,13,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.43,0,1,Check-Out,2019-05-04 -Resort Hotel,0,137,2015,September,37,12,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,60.54,0,0,Check-Out,2018-08-03 -City Hotel,1,12,2016,June,39,26,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,94.14,0,0,Canceled,2019-05-04 -City Hotel,0,148,2017,June,25,10,0,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,116.84,0,1,Check-Out,2020-07-03 -City Hotel,0,106,2017,June,26,27,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,110.25,0,2,Check-Out,2020-03-03 -City Hotel,1,90,2015,July,34,30,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Contract,100.96,0,0,Canceled,2018-05-03 -City Hotel,1,29,2017,May,21,29,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.87,0,2,Canceled,2020-05-03 -City Hotel,1,78,2016,December,3,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,19,Transient,59.05,0,0,Canceled,2018-11-02 -City Hotel,1,160,2016,September,35,13,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,94.79,0,0,Canceled,2018-08-03 -City Hotel,0,21,2016,February,12,6,0,2,1,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,75.93,0,1,Check-Out,2018-11-02 -Resort Hotel,0,88,2016,July,15,6,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,26.0,179.0,0,Transient,67.17,0,2,Check-Out,2019-04-03 -City Hotel,0,0,2016,October,43,22,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Group,0.0,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2017,February,9,20,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.39,0,1,Check-Out,2018-12-03 -Resort Hotel,0,18,2015,October,42,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,92.0,179.0,0,Transient,60.85,0,1,Check-Out,2018-09-02 -City Hotel,0,10,2017,April,17,16,1,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,89.02,0,0,Check-Out,2020-04-02 -City Hotel,1,12,2017,June,27,20,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,100.69,0,1,Canceled,2020-03-03 -City Hotel,0,44,2016,March,11,28,1,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,70.41,0,0,Check-Out,2019-02-01 -City Hotel,1,156,2016,May,17,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,40,Transient,65.85,0,0,Canceled,2018-11-02 -City Hotel,1,51,2017,March,10,9,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.34,0,0,Canceled,2019-11-03 -City Hotel,0,16,2016,August,36,7,0,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,107.99,0,1,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,March,12,13,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,76.12,1,0,Check-Out,2019-03-04 -City Hotel,0,54,2017,March,17,11,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,94.0,179.0,0,Transient-Party,96.82,0,1,Check-Out,2020-04-02 -City Hotel,1,208,2016,September,42,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,157.03,0,0,Canceled,2019-08-04 -City Hotel,0,102,2016,September,32,15,2,5,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.04,0,2,Check-Out,2019-05-04 -Resort Hotel,0,0,2017,March,11,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,222.0,0,Transient,48.67,0,0,Check-Out,2019-10-04 -City Hotel,0,70,2016,March,26,21,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,45.0,0,Transient,93.51,0,1,Check-Out,2019-02-01 -City Hotel,0,86,2016,December,51,28,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.08,0,2,Check-Out,2019-04-03 -City Hotel,0,2,2017,June,27,12,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,0.01,0,0,Check-Out,2020-06-02 -Resort Hotel,0,296,2017,July,32,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,215.39,1,0,Check-Out,2020-06-02 -City Hotel,0,1,2017,August,37,21,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,251.91,0,0,Check-Out,2020-08-03 -City Hotel,1,89,2016,December,52,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,Non Refund,14.0,331.0,0,Transient,34.35,0,0,Canceled,2019-09-03 -City Hotel,0,96,2015,October,37,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,89.71,0,0,Check-Out,2018-05-03 -City Hotel,0,95,2016,June,45,3,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.89,0,1,Check-Out,2019-07-04 -Resort Hotel,0,14,2016,March,9,6,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,13.0,222.0,0,Transient,34.95,0,0,Check-Out,2019-03-04 -City Hotel,1,12,2017,March,10,26,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,104.34,0,0,Canceled,2020-02-01 -City Hotel,1,46,2015,September,35,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,148.0,179.0,0,Transient,90.28,0,0,Canceled,2018-08-03 -City Hotel,1,295,2016,May,22,31,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,201.83,0,0,Canceled,2019-03-04 -City Hotel,0,48,2016,October,44,8,1,2,2,0.0,0,BB,SWE,Online TA,Direct,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,103.24,1,0,Check-Out,2019-09-03 -City Hotel,1,20,2016,June,26,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient-Party,59.85,0,0,Canceled,2019-05-04 -Resort Hotel,1,154,2017,July,35,31,2,10,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,1,No Deposit,11.0,179.0,0,Transient,191.93,0,0,Canceled,2019-11-03 -City Hotel,0,102,2016,June,25,20,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,2,No Deposit,31.0,179.0,0,Transient-Party,108.64,0,0,Check-Out,2019-01-03 -City Hotel,1,10,2017,June,33,11,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.7,0,1,Canceled,2020-06-02 -City Hotel,0,45,2016,May,22,18,2,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Contract,74.44,0,0,Check-Out,2020-07-03 -City Hotel,0,1,2016,July,37,9,0,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,143.03,0,3,Check-Out,2019-07-04 -City Hotel,0,8,2016,September,39,12,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,215.73,0,0,Check-Out,2019-05-04 -City Hotel,0,3,2016,August,34,17,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.29,0,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2015,October,42,5,0,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,D,0,No Deposit,100.0,179.0,0,Contract,35.0,0,2,Check-Out,2018-08-03 -Resort Hotel,0,89,2016,May,23,20,1,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,G,0,No Deposit,305.0,179.0,0,Transient-Party,81.32,0,0,Check-Out,2019-02-01 -Resort Hotel,0,18,2017,August,38,30,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,210.41,0,0,Check-Out,2020-07-03 -City Hotel,1,0,2016,December,48,20,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,261.0,0,Transient,0.31,0,0,Canceled,2019-12-04 -City Hotel,1,307,2016,November,16,8,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,99.15,0,0,Canceled,2019-02-01 -Resort Hotel,0,2,2016,December,51,17,1,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,D,0,No Deposit,104.0,249.0,0,Transient,34.62,1,0,Check-Out,2019-12-04 -City Hotel,1,2,2017,March,11,26,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,166.0,0,Transient,108.88,0,0,Canceled,2020-03-03 -City Hotel,1,33,2017,May,21,9,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,112.0,0,0,Check-Out,2019-01-03 -City Hotel,1,32,2016,March,11,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,81.77,0,0,Canceled,2019-01-03 -City Hotel,1,400,2016,November,45,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,85.29,0,0,Canceled,2018-08-03 -City Hotel,1,107,2017,January,8,23,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.72,0,2,Canceled,2019-10-04 -City Hotel,1,20,2016,January,44,28,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,86.07,0,0,Canceled,2019-08-04 -City Hotel,1,291,2016,May,23,22,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,24,Transient,94.6,0,0,Canceled,2019-02-01 -Resort Hotel,1,177,2016,December,51,31,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient-Party,77.79,0,0,Canceled,2019-08-04 -City Hotel,0,13,2015,October,45,28,2,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,1,No Deposit,10.0,222.0,0,Transient-Party,31.82,0,0,Check-Out,2018-09-02 -Resort Hotel,1,234,2016,December,49,23,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,240.0,179.0,0,Transient,186.04,0,1,Canceled,2019-08-04 -Resort Hotel,0,173,2016,March,45,31,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,68.92,0,0,Check-Out,2019-02-01 -City Hotel,1,47,2017,April,19,21,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,115.37,0,1,Canceled,2019-12-04 -City Hotel,0,2,2016,February,9,25,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,18.0,179.0,0,Transient-Party,109.83,0,0,Canceled,2018-10-03 -City Hotel,0,66,2016,October,46,27,1,1,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,H,B,1,No Deposit,10.0,179.0,0,Transient,0.64,0,0,Check-Out,2019-07-04 -Resort Hotel,0,192,2017,August,35,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,197.49,1,0,Check-Out,2020-08-03 -Resort Hotel,0,132,2016,May,26,14,2,6,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,32.0,179.0,0,Transient-Party,73.84,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,April,18,7,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.78,0,0,Check-Out,2019-03-04 -Resort Hotel,0,13,2015,October,41,12,0,3,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,86.0,179.0,0,Transient-Party,61.41,0,0,Check-Out,2018-08-03 -City Hotel,1,1,2017,August,35,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Contract,61.09,0,0,Check-Out,2020-05-03 -Resort Hotel,0,88,2017,March,10,27,2,1,2,0.0,0,HB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,75.7,0,1,Check-Out,2019-11-03 -City Hotel,1,168,2017,December,9,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.62,0,0,Canceled,2018-11-02 -City Hotel,1,10,2017,December,11,21,0,1,3,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Transient,82.95,0,0,Canceled,2018-12-03 -City Hotel,0,1,2015,August,35,6,0,3,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,154.17,0,1,Check-Out,2018-06-02 -City Hotel,1,95,2016,December,51,6,2,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,112.37,0,2,Canceled,2019-06-03 -City Hotel,0,57,2017,June,35,21,2,5,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,1,0,0,E,E,0,No Deposit,160.0,179.0,0,Transient,140.56,0,0,Check-Out,2020-07-03 -City Hotel,1,148,2016,June,21,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,40,Transient,84.95,0,0,Canceled,2019-02-01 -City Hotel,0,9,2017,April,13,16,0,2,1,0.0,0,BB,,Aviation,Corporate,1,0,0,E,E,0,No Deposit,15.0,172.0,0,Transient,87.84,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2015,August,48,9,2,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,276.0,0,Transient,5.86,0,0,Check-Out,2018-09-02 -Resort Hotel,0,213,2016,October,34,28,2,5,2,1.0,0,HB,AUT,Direct,Direct,0,0,0,G,G,1,No Deposit,353.0,179.0,0,Transient,236.94,1,1,Check-Out,2019-08-04 -City Hotel,1,48,2015,November,50,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,75,Transient,68.61,0,0,Canceled,2018-11-02 -City Hotel,1,47,2016,August,33,9,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,209.93,0,0,No-Show,2019-06-03 -Resort Hotel,0,6,2017,December,50,8,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,195.0,251.0,0,Transient-Party,62.55,0,0,Check-Out,2019-12-04 -Resort Hotel,0,2,2015,October,44,21,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,222.0,0,Transient-Party,41.12,0,0,Check-Out,2018-06-02 -City Hotel,0,3,2016,September,42,9,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,111.24,0,0,Check-Out,2019-06-03 -City Hotel,1,98,2016,August,31,30,2,5,3,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,7.0,179.0,0,Transient,101.39,0,3,Canceled,2019-09-03 -City Hotel,1,374,2016,October,44,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,71.49,0,0,Canceled,2019-09-03 -Resort Hotel,1,236,2016,June,26,18,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,37.31,0,0,No-Show,2019-03-04 -City Hotel,0,8,2016,May,23,9,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,119.45,0,0,Check-Out,2019-03-04 -City Hotel,0,4,2017,February,10,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,74.0,0,Transient,71.14,0,0,Check-Out,2020-03-03 -Resort Hotel,0,227,2015,October,36,5,2,5,2,1.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,245.0,179.0,0,Transient,111.32,1,0,Check-Out,2018-05-03 -City Hotel,0,1,2017,March,16,18,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.16,0,0,Check-Out,2020-02-01 -Resort Hotel,0,3,2015,November,50,8,1,1,1,0.0,0,BB,ESP,Corporate,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,32.23,1,0,Check-Out,2018-12-03 -City Hotel,1,41,2016,October,44,29,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.48,0,2,No-Show,2019-08-04 -Resort Hotel,0,15,2016,March,20,18,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,1,No Deposit,15.0,224.0,0,Transient,68.04,0,0,Check-Out,2019-06-03 -City Hotel,0,37,2015,December,51,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,72.91,0,0,Check-Out,2018-08-03 -City Hotel,0,87,2015,December,50,21,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,87.98,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,October,43,19,0,3,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.35,0,1,Check-Out,2019-12-04 -City Hotel,0,28,2017,April,18,24,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.0,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,May,22,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,H,1,No Deposit,143.0,179.0,0,Transient-Party,24.69,0,0,Check-Out,2019-04-03 -Resort Hotel,0,156,2017,June,22,20,4,10,2,0.0,0,BB,GBR,Direct,Corporate,0,0,0,E,E,0,No Deposit,360.0,179.0,0,Transient,68.78,0,0,Check-Out,2020-04-02 -City Hotel,0,23,2017,February,7,23,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.25,0,1,Check-Out,2020-03-03 -City Hotel,1,340,2015,September,35,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,57.54,0,0,Canceled,2018-08-03 -City Hotel,1,416,2016,February,11,29,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,80.0,179.0,0,Transient,61.2,0,0,Canceled,2018-12-03 -City Hotel,0,48,2017,May,26,24,0,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,127.22,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2016,August,37,21,0,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,140.87,0,1,Check-Out,2019-05-04 -City Hotel,1,247,2017,May,21,18,2,5,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,127.98,0,0,Canceled,2019-12-04 -Resort Hotel,0,97,2016,August,37,13,2,7,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,198.06,1,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2015,November,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,77.0,0,Transient,70.2,0,0,Check-Out,2019-01-03 -City Hotel,0,3,2015,June,27,20,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient-Party,117.44,0,0,Check-Out,2019-05-04 -Resort Hotel,0,16,2016,March,16,31,2,5,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,20,Transient-Party,28.93,1,0,Check-Out,2019-03-04 -City Hotel,0,203,2017,August,38,16,2,1,2,1.0,0,BB,CN,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,209.64,1,0,Check-Out,2020-07-03 -City Hotel,1,0,2015,August,33,21,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.06,0,0,Canceled,2018-12-03 -City Hotel,0,18,2015,February,49,10,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,82.04,0,1,Check-Out,2019-06-03 -City Hotel,0,10,2017,January,4,28,2,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.33,0,1,Check-Out,2019-11-03 -City Hotel,1,380,2016,August,22,11,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,69.05,0,0,Canceled,2019-05-04 -Resort Hotel,0,17,2016,February,10,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,321.0,179.0,0,Transient,44.38,0,0,Check-Out,2018-11-02 -City Hotel,1,436,2016,July,23,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,127.03,0,0,Canceled,2018-08-03 -City Hotel,1,321,2016,September,36,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.9,0,0,Canceled,2018-01-03 -City Hotel,0,34,2015,October,45,8,1,4,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,180.0,0,Transient,91.37,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2017,March,18,28,0,1,1,0.0,0,HB,GBR,Corporate,Corporate,1,0,0,A,F,1,No Deposit,39.0,69.0,0,Transient,116.52,0,0,Check-Out,2020-02-01 -City Hotel,1,46,2017,April,23,21,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.01,0,0,Canceled,2020-02-01 -City Hotel,0,239,2015,October,43,18,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Group,95.86,0,0,Check-Out,2018-08-03 -City Hotel,0,144,2017,April,28,21,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,6.0,179.0,0,Transient,146.67,0,2,Check-Out,2020-04-02 -City Hotel,0,37,2017,July,31,5,2,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,123.59,0,0,Check-Out,2020-06-02 -City Hotel,1,46,2016,June,22,24,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.42,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,June,28,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,107.56,0,0,Check-Out,2020-06-02 -City Hotel,0,14,2016,September,37,28,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,281.0,179.0,0,Transient,64.11,0,0,Check-Out,2019-06-03 -City Hotel,0,19,2017,February,12,14,0,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,1,0,1,A,A,2,No Deposit,182.0,179.0,0,Group,67.55,0,1,Check-Out,2019-10-04 -City Hotel,1,43,2016,August,38,6,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,155.56,0,1,Check-Out,2019-07-04 -City Hotel,1,35,2016,October,44,24,1,2,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.0,0,0,No-Show,2019-07-04 -City Hotel,0,0,2016,March,9,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,66.0,0,Transient,97.34,0,1,Check-Out,2020-02-01 -City Hotel,0,61,2017,July,27,16,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,149.77,1,1,Check-Out,2020-07-03 -City Hotel,0,87,2016,April,23,8,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,27.0,179.0,0,Transient-Party,103.53,0,0,Check-Out,2019-02-01 -City Hotel,1,50,2016,September,44,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,44,Transient,105.87,0,0,Canceled,2018-09-02 -City Hotel,0,2,2016,May,22,10,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.0,0,2,Check-Out,2019-04-03 -City Hotel,1,51,2016,November,49,7,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,99.58,0,1,Canceled,2018-11-02 -Resort Hotel,0,147,2016,May,26,28,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,75,Transient-Party,73.84,0,0,Check-Out,2019-02-01 -City Hotel,1,363,2016,May,45,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.36,0,0,Canceled,2019-01-03 -Resort Hotel,0,39,2015,December,53,25,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,42.4,0,0,Check-Out,2018-12-03 -City Hotel,0,16,2016,August,36,15,0,2,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient-Party,222.64,0,0,Check-Out,2019-08-04 -Resort Hotel,0,157,2016,April,17,25,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,128.26,0,2,Check-Out,2020-03-03 -City Hotel,0,38,2016,November,51,20,1,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,144.34,0,3,Check-Out,2019-12-04 -Resort Hotel,0,53,2015,December,53,20,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,55.12,0,0,Check-Out,2018-10-03 -City Hotel,0,9,2017,June,35,14,0,2,2,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,129.37,0,0,Check-Out,2020-06-02 -Resort Hotel,1,117,2017,March,9,30,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,177.0,179.0,0,Transient,99.69,0,0,Canceled,2019-11-03 -City Hotel,1,98,2016,July,27,20,2,1,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,156.91,0,0,Canceled,2019-01-03 -City Hotel,1,54,2017,March,11,21,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,126.4,0,2,Canceled,2019-12-04 -Resort Hotel,0,260,2015,September,37,29,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,243.0,179.0,0,Contract,61.43,0,1,Check-Out,2018-08-03 -City Hotel,0,34,2015,July,48,9,0,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Contract,77.69,0,0,Check-Out,2018-11-02 -Resort Hotel,0,17,2017,February,9,30,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,1,No Deposit,254.0,179.0,0,Transient,117.84,0,3,Check-Out,2019-08-04 -City Hotel,0,8,2017,March,17,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,92.79,0,3,Check-Out,2020-03-03 -City Hotel,1,128,2016,June,22,26,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,79.76,0,0,Canceled,2018-08-03 -Resort Hotel,1,107,2017,May,26,2,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,113.88,0,3,Canceled,2020-04-02 -City Hotel,0,368,2016,October,43,14,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.9,0,0,Check-Out,2019-08-04 -City Hotel,1,8,2016,June,22,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,71.65,0,0,Canceled,2019-06-03 -Resort Hotel,0,241,2017,June,26,6,2,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,84.66,1,1,Check-Out,2020-04-02 -Resort Hotel,0,3,2015,August,33,12,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Group,119.0,0,2,Check-Out,2018-06-02 -Resort Hotel,1,289,2017,July,35,28,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,190.77,0,0,Canceled,2019-06-03 -Resort Hotel,0,159,2015,November,34,24,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,46.06,0,0,Check-Out,2018-06-02 -City Hotel,1,38,2016,February,3,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,59.95,0,1,Canceled,2018-10-03 -Resort Hotel,0,175,2016,June,43,2,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,38.31,0,0,Check-Out,2019-06-03 -Resort Hotel,0,75,2016,February,7,11,1,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,64.83,0,0,Check-Out,2018-11-02 -Resort Hotel,0,98,2016,May,11,13,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,64,Transient,60.38,0,0,Check-Out,2019-03-04 -City Hotel,1,40,2017,April,21,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,152.2,0,3,Canceled,2020-03-03 -City Hotel,0,49,2016,September,26,9,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,90.0,179.0,0,Transient,102.12,0,0,Check-Out,2018-08-03 -Resort Hotel,0,182,2017,May,27,29,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,243.0,179.0,0,Transient,198.74,1,1,Check-Out,2020-07-03 -Resort Hotel,0,187,2016,May,26,8,2,5,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,63.02,0,2,Check-Out,2019-07-04 -City Hotel,1,316,2016,October,44,2,2,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.46,0,0,Canceled,2019-10-04 -Resort Hotel,0,98,2016,July,32,2,1,5,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,2,No Deposit,246.0,179.0,0,Transient,128.37,0,2,Check-Out,2020-02-01 -Resort Hotel,0,55,2017,June,22,25,1,1,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,253.0,179.0,0,Transient,159.66,1,0,Check-Out,2020-02-01 -City Hotel,0,16,2017,March,24,18,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,89.02,0,0,Check-Out,2020-03-03 -City Hotel,0,141,2017,November,15,9,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,92.6,0,2,Check-Out,2020-01-04 -Resort Hotel,0,32,2016,July,38,2,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,150.47,0,2,Check-Out,2019-06-03 -Resort Hotel,1,10,2015,December,53,3,1,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,59.79,0,0,Canceled,2018-06-02 -Resort Hotel,1,15,2017,March,12,18,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,117.64,0,1,Canceled,2020-02-01 -City Hotel,1,20,2015,December,53,24,2,4,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,64.04,0,1,Canceled,2018-06-02 -Resort Hotel,0,11,2017,February,8,2,1,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient,32.11,0,0,Check-Out,2020-01-04 -Resort Hotel,1,0,2017,January,2,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,73.0,0,Transient,40.43,0,0,Canceled,2019-11-03 -City Hotel,0,20,2016,February,10,24,1,0,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient-Party,76.78,0,0,Check-Out,2019-01-03 -City Hotel,1,7,2017,June,34,12,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.21,0,0,Canceled,2019-10-04 -Resort Hotel,1,210,2017,June,21,6,1,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,70.43,0,1,Canceled,2020-04-02 -City Hotel,1,3,2016,September,44,9,0,1,3,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,106.95,0,0,Canceled,2019-08-04 -City Hotel,0,158,2017,April,22,19,2,1,3,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,8.0,179.0,0,Transient,111.19,0,1,Check-Out,2020-04-02 -City Hotel,1,158,2017,March,10,10,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.37,0,0,Canceled,2019-11-03 -City Hotel,0,100,2015,September,44,28,1,1,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,87.81,0,0,Check-Out,2018-09-02 -City Hotel,1,112,2017,August,37,6,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,113.08,0,3,Canceled,2019-08-04 -Resort Hotel,1,92,2016,June,26,4,4,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,70.45,0,2,Canceled,2019-04-03 -City Hotel,0,0,2016,June,27,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,13.0,62.0,0,Transient,136.46,0,0,Check-Out,2019-07-04 -Resort Hotel,0,320,2015,October,44,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,57.71,0,0,Check-Out,2018-09-02 -Resort Hotel,0,224,2017,May,26,2,2,5,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,184.0,179.0,0,Contract,91.27,0,0,Check-Out,2020-04-02 -Resort Hotel,0,231,2017,July,38,28,0,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,207.81,0,0,Check-Out,2020-07-03 -Resort Hotel,0,131,2016,July,26,31,1,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,129.52,0,1,Check-Out,2019-04-03 -City Hotel,0,244,2016,December,53,24,2,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.51,0,3,Canceled,2019-11-03 -City Hotel,0,1,2016,May,24,25,0,1,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,170.0,179.0,0,Transient,85.11,0,0,Check-Out,2019-06-03 -Resort Hotel,1,14,2016,February,49,13,1,1,2,0.0,0,FB,FRA,Groups,Direct,0,0,0,A,A,0,No Deposit,339.0,179.0,0,Transient,50.64,0,0,Canceled,2019-03-04 -City Hotel,0,34,2017,April,23,18,0,1,1,0.0,0,SC,PRT,Aviation,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,132.82,0,0,Check-Out,2020-01-04 -Resort Hotel,0,260,2016,December,41,9,3,7,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,272.0,179.0,0,Transient,44.96,0,2,Check-Out,2019-07-04 -Resort Hotel,0,44,2017,May,17,31,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,141.79,0,0,Check-Out,2020-03-03 -City Hotel,0,98,2016,October,50,2,1,2,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,94.65,0,1,Check-Out,2019-12-04 -Resort Hotel,1,39,2016,July,10,28,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,239.0,179.0,0,Transient,63.05,0,0,Canceled,2018-12-03 -Resort Hotel,0,29,2016,May,11,6,1,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,129.84,1,0,Check-Out,2019-02-01 -City Hotel,1,142,2016,July,36,2,2,5,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,43,Transient,62.74,0,0,Canceled,2018-06-02 -City Hotel,0,3,2017,June,8,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,16.0,63.0,0,Transient,63.46,0,0,Check-Out,2020-03-03 -City Hotel,1,122,2016,November,48,8,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,68.06,0,0,Canceled,2019-10-04 -City Hotel,0,122,2016,October,42,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,58.74,0,0,Check-Out,2019-01-03 -City Hotel,0,14,2017,January,32,18,0,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,34.0,179.0,0,Transient-Party,63.33,0,0,Check-Out,2020-06-02 -Resort Hotel,1,93,2016,January,8,2,0,1,2,1.0,0,BB,NOR,Direct,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,167.66,0,0,Canceled,2018-11-02 -City Hotel,0,267,2015,November,41,9,1,4,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,93.0,179.0,0,Transient-Party,71.52,0,3,Check-Out,2018-09-02 -Resort Hotel,0,368,2017,March,16,12,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,272.0,179.0,0,Transient,45.23,0,0,Check-Out,2019-12-04 -Resort Hotel,1,2,2016,February,9,20,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.47,0,0,Canceled,2019-03-04 -Resort Hotel,0,205,2017,March,12,15,2,4,1,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,296.0,179.0,0,Transient-Party,76.72,0,0,Check-Out,2019-12-04 -City Hotel,1,15,2017,May,24,17,0,1,1,0.0,0,BB,PRT,Groups,GDS,0,0,0,A,A,0,Non Refund,197.0,179.0,0,Transient,133.89,0,0,Canceled,2020-04-02 -City Hotel,0,88,2015,December,53,31,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,78.03,0,0,Check-Out,2018-11-02 -City Hotel,0,103,2016,May,37,15,2,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,151.66,0,1,Check-Out,2019-07-04 -City Hotel,0,16,2015,July,31,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,2.0,179.0,0,Contract,60.22,0,1,Check-Out,2017-12-03 -City Hotel,0,157,2017,July,36,24,2,6,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,58,2017,July,26,6,2,5,1,1.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,H,H,2,No Deposit,11.0,179.0,0,Transient,137.0,0,0,Check-Out,2020-07-03 -Resort Hotel,0,13,2017,June,26,24,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,201.0,179.0,0,Group,0.72,1,0,Check-Out,2020-07-03 -Resort Hotel,1,221,2016,May,10,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,68.31,0,0,Canceled,2018-11-02 -Resort Hotel,1,160,2017,February,7,12,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,338.0,179.0,0,Transient,36.33,0,0,Canceled,2019-12-04 -City Hotel,0,111,2016,September,38,30,0,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,145.85,0,2,Check-Out,2019-09-03 -City Hotel,0,1,2016,February,4,21,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,86.17,0,2,Check-Out,2018-12-03 -Resort Hotel,0,15,2016,December,49,17,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,1,A,A,0,No Deposit,89.0,179.0,0,Group,93.44,0,0,Check-Out,2019-11-03 -City Hotel,1,73,2015,August,37,2,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,120.88,0,1,No-Show,2018-06-02 -City Hotel,0,93,2017,January,4,29,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.55,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,January,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,45.0,0,Transient,30.3,0,0,Check-Out,2019-12-04 -City Hotel,0,60,2017,June,25,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,29.0,179.0,0,Group,100.79,0,1,Check-Out,2019-12-04 -Resort Hotel,1,37,2016,August,36,21,0,2,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,149.07,1,1,Canceled,2018-12-03 -City Hotel,0,42,2016,August,23,21,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,213.83,0,1,Check-Out,2019-06-03 -Resort Hotel,0,28,2017,May,22,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,208.32,1,1,Check-Out,2020-03-03 -City Hotel,1,193,2017,March,8,20,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,72.0,179.0,0,Transient-Party,45.0,0,0,Canceled,2020-03-03 -Resort Hotel,0,9,2017,March,8,21,2,0,3,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-03-03 -Resort Hotel,0,270,2017,August,38,10,1,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,245.0,179.0,0,Transient,196.65,0,2,Check-Out,2020-06-02 -Resort Hotel,0,102,2016,July,32,28,0,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,107.13,0,1,Check-Out,2019-03-04 -Resort Hotel,0,3,2016,November,44,20,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,75.0,179.0,0,Group,112.4,0,1,Check-Out,2018-07-03 -City Hotel,0,191,2017,June,28,2,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,79.23,0,1,Check-Out,2020-04-02 -City Hotel,1,8,2015,July,31,6,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,13.0,179.0,0,Contract,141.93,0,1,Canceled,2017-09-02 -City Hotel,0,159,2016,March,14,13,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,174.0,179.0,0,Transient,79.56,0,0,Canceled,2019-01-03 -City Hotel,0,47,2017,March,9,25,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient-Party,64.64,1,0,Check-Out,2020-03-03 -City Hotel,0,236,2015,October,40,28,2,1,1,0.0,0,HB,DEU,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,91.31,0,0,Check-Out,2019-08-04 -City Hotel,0,19,2017,May,21,21,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Contract,109.96,0,0,Check-Out,2020-06-02 -City Hotel,0,19,2016,August,38,18,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,84.86,0,2,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,December,49,16,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,E,0,No Deposit,245.0,179.0,0,Transient,45.19,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,September,37,11,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,51.22,0,1,Check-Out,2018-11-02 -Resort Hotel,0,20,2017,June,25,23,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,142.99,1,3,Check-Out,2020-04-02 -Resort Hotel,1,156,2017,June,21,24,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,215.95,0,0,Canceled,2020-02-01 -City Hotel,1,60,2017,March,12,29,2,5,3,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.8,0,1,Canceled,2020-02-01 -Resort Hotel,0,42,2016,July,31,4,2,10,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient-Party,37.14,0,0,Check-Out,2019-06-03 -City Hotel,0,89,2015,July,33,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,128.78,0,0,Check-Out,2018-06-02 -City Hotel,0,289,2017,May,23,31,0,1,2,0.0,0,BB,NOR,Online TA,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,135.61,0,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2015,July,29,6,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,37.48,0,2,Check-Out,2018-06-02 -City Hotel,1,161,2017,October,38,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,89.65,0,0,Canceled,2019-09-03 -Resort Hotel,0,11,2016,May,29,30,1,1,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,177.0,179.0,0,Transient-Party,112.02,0,0,Check-Out,2019-07-04 -City Hotel,0,15,2016,August,37,2,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,162.0,179.0,0,Transient,197.73,0,0,Check-Out,2019-10-04 -City Hotel,1,56,2016,March,15,9,2,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,Non Refund,13.0,179.0,0,Transient,60.94,0,0,Canceled,2018-11-02 -Resort Hotel,0,148,2016,December,53,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,71.18,0,1,Check-Out,2019-11-03 -City Hotel,0,47,2016,June,26,21,0,2,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-06-03 -City Hotel,0,2,2017,April,22,8,0,2,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,115.08,0,0,Check-Out,2020-02-01 -City Hotel,0,137,2016,July,31,9,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,85.0,179.0,0,Transient,158.52,0,2,Check-Out,2019-03-04 -City Hotel,1,19,2016,May,10,18,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.61,0,0,Canceled,2018-10-03 -City Hotel,0,17,2016,June,27,29,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.2,0,0,Check-Out,2020-06-02 -Resort Hotel,1,276,2017,May,34,8,1,0,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,186.0,179.0,0,Transient,70.53,0,0,Canceled,2019-09-03 -City Hotel,1,168,2017,June,25,31,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,115.42,0,0,Canceled,2020-06-02 -City Hotel,0,19,2016,March,18,21,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,11.0,179.0,0,Transient,104.86,0,0,Check-Out,2020-03-03 -Resort Hotel,0,82,2016,September,45,2,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,110.96,0,0,Check-Out,2019-07-04 -Resort Hotel,0,161,2017,February,11,24,2,5,2,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient-Party,140.1,1,0,Check-Out,2020-03-03 -Resort Hotel,0,14,2015,December,50,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,248.0,179.0,0,Transient-Party,127.71,0,3,Check-Out,2018-12-03 -City Hotel,0,32,2016,April,17,16,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,118.01,0,2,Check-Out,2019-02-01 -City Hotel,1,93,2016,March,16,9,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.82,0,0,No-Show,2018-12-03 -City Hotel,1,11,2016,November,50,9,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,162.8,0,3,Canceled,2019-08-04 -City Hotel,1,421,2016,June,38,2,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.63,0,0,Canceled,2017-12-03 -City Hotel,0,2,2017,May,9,13,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,77.4,0,0,Check-Out,2020-02-01 -Resort Hotel,0,1,2015,September,41,20,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,B,1,No Deposit,14.0,179.0,0,Transient,109.89,1,0,Check-Out,2019-08-04 -City Hotel,1,217,2017,May,22,6,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,154.69,0,2,Canceled,2020-02-01 -City Hotel,1,400,2016,August,31,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,83.83,0,0,Canceled,2018-12-03 -City Hotel,1,162,2016,June,17,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,42,Transient,61.97,0,0,Canceled,2018-12-03 -City Hotel,1,46,2016,June,26,16,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.73,0,0,Canceled,2019-02-01 -Resort Hotel,1,144,2015,December,50,20,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,12,Transient,73.76,0,0,Canceled,2018-09-02 -City Hotel,1,41,2016,August,39,21,0,1,3,2.0,0,BB,CHE,Direct,Direct,0,0,0,B,B,0,No Deposit,17.0,179.0,0,Transient,171.31,0,0,Canceled,2019-07-04 -City Hotel,0,1,2016,October,45,26,1,0,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,212.0,227.0,0,Transient-Party,67.23,0,0,Check-Out,2019-05-04 -City Hotel,0,203,2016,October,45,15,1,2,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient-Party,137.9,0,2,Check-Out,2019-12-04 -Resort Hotel,0,117,2016,May,22,8,2,5,1,0.0,0,HB,CHE,Direct,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,39.6,0,1,Check-Out,2020-02-01 -City Hotel,0,118,2016,July,31,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,91.63,0,0,Check-Out,2018-05-03 -Resort Hotel,0,2,2016,September,35,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,40.32,0,0,Check-Out,2019-03-04 -City Hotel,0,55,2016,January,11,16,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,74.48,0,2,Check-Out,2018-12-03 -City Hotel,0,1,2016,April,41,13,0,3,1,0.0,0,BB,DEU,Complementary,Corporate,1,0,0,A,D,0,No Deposit,12.0,45.0,0,Transient,0.0,0,3,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,June,44,4,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,119.42,0,0,Check-Out,2019-06-03 -City Hotel,1,242,2017,August,34,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.77,0,2,Canceled,2020-07-03 -City Hotel,1,184,2017,February,14,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,1,0,E,F,0,No Deposit,9.0,179.0,0,Contract,75.88,0,0,Canceled,2020-03-03 -Resort Hotel,1,390,2017,February,10,3,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,2.0,331.0,0,Transient,39.53,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2015,December,49,19,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,42.24,0,2,Check-Out,2018-11-02 -City Hotel,0,47,2016,October,45,29,1,1,2,1.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,89.0,179.0,0,Transient,116.85,0,0,Check-Out,2019-12-04 -City Hotel,1,0,2017,August,35,31,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.49,0,1,Canceled,2020-07-03 -Resort Hotel,0,1,2016,August,36,28,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,247.0,179.0,0,Transient,82.47,0,0,Check-Out,2018-06-02 -City Hotel,0,19,2017,May,20,15,0,3,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,80.46,0,1,Check-Out,2020-04-02 -City Hotel,0,142,2016,July,31,24,0,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.75,0,1,Check-Out,2019-06-03 -Resort Hotel,0,38,2016,May,22,31,1,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,75.1,0,0,Check-Out,2019-02-01 -City Hotel,1,284,2015,September,37,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,151.67,0,0,Canceled,2018-08-03 -City Hotel,1,4,2017,January,5,28,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,56.65,0,1,Canceled,2019-10-04 -City Hotel,1,18,2015,February,9,4,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.35,0,0,Canceled,2018-11-02 -City Hotel,0,161,2017,June,26,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -City Hotel,0,18,2015,December,49,9,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,231.0,179.0,0,Transient,71.98,0,2,Check-Out,2018-08-03 -City Hotel,1,88,2016,February,9,29,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,69.28,0,0,Canceled,2018-11-02 -Resort Hotel,0,146,2017,June,25,2,0,1,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,115.16,1,0,Check-Out,2020-03-03 -City Hotel,1,441,2016,March,17,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,19,Transient,74.0,0,0,Canceled,2018-11-02 -City Hotel,0,28,2016,December,53,24,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,11.0,179.0,0,Transient,110.61,0,3,Check-Out,2019-10-04 -City Hotel,0,248,2015,September,38,18,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,61.38,0,0,Check-Out,2018-08-03 -Resort Hotel,1,225,2017,February,9,25,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,178.0,179.0,0,Transient,75.94,0,0,Canceled,2020-03-03 -City Hotel,0,55,2017,April,17,30,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.9,0,0,Check-Out,2020-03-03 -City Hotel,0,39,2017,April,15,10,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient-Party,86.75,0,1,Check-Out,2020-01-04 -City Hotel,1,94,2015,July,33,10,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,92.14,0,0,Canceled,2018-06-02 -City Hotel,0,0,2017,June,28,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,45.0,0,Group,74.29,0,2,Check-Out,2020-01-04 -City Hotel,1,250,2016,May,16,5,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,119.18,0,0,Canceled,2019-02-01 -City Hotel,0,95,2017,June,20,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,F,0,No Deposit,17.0,179.0,0,Transient,112.3,0,0,Canceled,2020-06-02 -City Hotel,1,0,2017,January,10,16,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.53,0,0,No-Show,2020-02-01 -City Hotel,0,55,2016,August,35,10,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.79,0,1,Check-Out,2019-06-03 -Resort Hotel,0,112,2016,December,51,10,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,39.39,0,0,Check-Out,2019-11-03 -City Hotel,0,24,2015,September,35,5,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,68.37,0,0,Check-Out,2018-06-02 -City Hotel,1,54,2016,December,53,5,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,72.35,0,0,Canceled,2018-12-03 -Resort Hotel,1,94,2016,June,26,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,196.74,0,0,Canceled,2019-03-04 -Resort Hotel,0,47,2016,March,11,3,1,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,39.68,0,0,Check-Out,2019-02-01 -Resort Hotel,0,166,2015,July,32,23,0,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,162.56,0,0,Check-Out,2018-06-02 -City Hotel,0,137,2016,July,43,9,0,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.21,0,1,Check-Out,2019-04-03 -Resort Hotel,0,49,2016,January,16,6,0,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,43.0,0,2,Check-Out,2019-03-04 -City Hotel,1,92,2017,May,21,9,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,96.24,0,0,Canceled,2020-03-03 -City Hotel,1,143,2016,July,31,23,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,107.39,0,1,Canceled,2019-06-03 -City Hotel,0,202,2015,September,43,31,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,123.83,0,0,Check-Out,2018-08-03 -City Hotel,0,32,2016,August,34,18,2,3,1,0.0,0,BB,,Online TA,Corporate,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,157.95,0,0,Check-Out,2019-05-04 -Resort Hotel,0,93,2016,December,51,31,2,1,1,1.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,K,0,No Deposit,163.0,179.0,0,Group,46.1,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2016,January,8,23,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,75.0,0,Transient,64.4,0,0,Check-Out,2019-02-01 -City Hotel,1,162,2015,December,51,18,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,39,Transient,44.14,0,0,Canceled,2018-10-03 -Resort Hotel,0,148,2017,July,32,6,2,3,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,197.51,1,0,Check-Out,2020-06-02 -City Hotel,1,399,2017,April,23,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,90.97,0,0,Canceled,2020-03-03 -Resort Hotel,0,35,2015,October,42,8,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,168.0,179.0,0,Transient-Party,98.44,0,0,Check-Out,2018-12-03 -City Hotel,0,14,2016,February,9,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.11,0,0,Check-Out,2018-11-02 -City Hotel,0,3,2015,October,45,17,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,61.25,0,0,Check-Out,2018-08-03 -City Hotel,1,14,2016,September,46,28,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.04,0,2,Canceled,2018-08-03 -Resort Hotel,0,97,2016,March,18,14,0,3,1,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,D,2,Refundable,14.0,222.0,0,Transient-Party,32.31,0,0,Check-Out,2019-04-03 -City Hotel,1,20,2016,December,53,5,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Transient,89.17,0,1,Canceled,2019-10-04 -City Hotel,1,40,2016,February,10,19,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,51.84,0,0,Canceled,2018-12-03 -City Hotel,1,22,2016,October,44,13,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Transient,191.48,0,0,Canceled,2019-08-04 -City Hotel,1,88,2016,June,25,24,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.35,0,1,Canceled,2019-02-01 -City Hotel,0,1,2017,May,19,12,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,131.76,0,0,Check-Out,2020-02-01 -City Hotel,0,15,2016,June,27,25,0,1,1,0.0,0,BB,GBR,Corporate,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,68.64,0,0,Check-Out,2019-02-01 -Resort Hotel,1,265,2017,July,25,25,1,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,159.21,0,0,Canceled,2020-02-01 -Resort Hotel,0,11,2017,March,19,2,0,3,1,0.0,0,BB,NOR,Corporate,Corporate,1,0,1,D,D,0,No Deposit,14.0,222.0,0,Transient-Party,43.85,0,0,Check-Out,2020-04-02 -City Hotel,0,15,2016,September,34,16,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,92.67,0,1,Check-Out,2019-05-04 -City Hotel,1,249,2017,July,37,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,92.75,0,0,Canceled,2020-06-02 -City Hotel,1,161,2016,October,43,29,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,9.0,179.0,0,Transient,66.06,0,2,Canceled,2019-07-04 -Resort Hotel,0,1,2015,October,42,24,1,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Contract,40.62,0,0,Check-Out,2018-08-03 -Resort Hotel,0,185,2017,August,40,19,0,5,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,162.7,0,1,Check-Out,2020-07-03 -City Hotel,1,53,2016,December,53,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,60.37,0,1,Canceled,2019-08-04 -City Hotel,1,170,2016,August,38,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,110.55,0,0,No-Show,2019-09-03 -City Hotel,1,0,2017,January,9,12,0,1,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,65.82,0,0,Canceled,2019-11-03 -City Hotel,0,260,2016,August,38,25,1,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,86.44,1,0,Check-Out,2020-07-03 -Resort Hotel,0,93,2016,May,23,24,4,6,2,0.0,0,FB,GBR,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,285.0,179.0,0,Transient,116.35,0,0,Check-Out,2019-06-03 -City Hotel,0,212,2016,December,51,30,0,4,2,2.0,0,BB,POL,Online TA,Direct,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient,152.52,0,1,Check-Out,2019-06-03 -City Hotel,0,2,2016,December,52,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,78.0,0,Transient,125.57,0,0,Check-Out,2019-05-04 -City Hotel,0,234,2016,April,21,27,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,110.99,0,1,Check-Out,2019-03-04 -City Hotel,0,5,2015,December,53,10,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient-Party,80.07,1,0,Check-Out,2018-11-02 -City Hotel,1,103,2015,August,40,20,0,1,2,0.0,0,BB,PRT,Undefined,TA/TO,0,1,0,E,E,0,No Deposit,11.0,179.0,0,Transient,58.14,0,0,Canceled,2018-09-02 -Resort Hotel,1,91,2016,December,16,14,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,324.0,179.0,0,Transient,83.86,0,0,Canceled,2019-01-03 -Resort Hotel,0,13,2016,February,10,28,1,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,75.31,0,0,Check-Out,2018-11-02 -Resort Hotel,0,178,2017,August,38,6,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,219.75,1,1,Check-Out,2020-06-02 -Resort Hotel,0,124,2016,March,11,26,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,30.61,0,2,Check-Out,2018-12-03 -City Hotel,0,42,2015,September,43,21,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,60,Group,102.81,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2015,November,43,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,39.59,0,2,Check-Out,2018-10-03 -Resort Hotel,0,254,2015,July,33,21,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,118.79,0,0,Check-Out,2018-06-02 -Resort Hotel,0,184,2017,July,33,28,0,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,247.0,179.0,0,Transient,129.82,1,1,Check-Out,2020-06-02 -Resort Hotel,0,9,2016,November,44,20,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,17.0,245.0,0,Transient,41.22,0,0,Check-Out,2019-06-03 -City Hotel,1,308,2016,October,46,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,45.0,0,Transient,58.88,0,0,Canceled,2017-12-03 -Resort Hotel,0,0,2016,March,6,2,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,71.0,179.0,0,Transient,72.76,0,0,Check-Out,2019-02-01 -City Hotel,0,8,2016,June,27,15,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.78,0,0,Check-Out,2019-04-03 -City Hotel,0,206,2017,July,32,28,0,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.03,0,1,Check-Out,2020-07-03 -City Hotel,1,99,2017,May,29,13,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,164.81,0,0,Canceled,2019-11-03 -City Hotel,1,4,2016,January,4,3,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,69.0,179.0,0,Transient,60.99,0,0,No-Show,2018-12-03 -City Hotel,1,100,2015,August,40,12,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,148.42,0,0,Canceled,2018-07-03 -City Hotel,0,0,2017,May,24,19,0,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,166.0,0,Transient,123.69,0,0,Check-Out,2020-04-02 -Resort Hotel,0,50,2016,May,23,29,1,10,2,0.0,0,HB,,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,79.66,0,0,Check-Out,2020-04-02 -City Hotel,1,30,2016,December,51,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.94,0,0,No-Show,2020-01-04 -City Hotel,1,148,2017,June,27,9,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,64.0,179.0,0,Transient,149.02,0,0,Canceled,2019-05-04 -City Hotel,0,55,2016,June,43,23,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.51,0,1,Check-Out,2019-09-03 -Resort Hotel,0,10,2017,March,11,21,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,222.0,0,Transient,41.76,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,October,43,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,0,No Deposit,15.0,179.0,0,Group,69.5,0,0,Check-Out,2019-06-03 -City Hotel,0,377,2017,May,23,28,0,3,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,61.24,1,0,Check-Out,2020-03-03 -City Hotel,0,145,2017,June,29,18,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,E,0,No Deposit,175.0,179.0,0,Transient-Party,125.5,0,0,Check-Out,2020-06-02 -Resort Hotel,0,161,2017,August,38,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,155.68,0,0,Check-Out,2020-06-02 -Resort Hotel,0,44,2016,May,26,18,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,17.0,179.0,0,Transient,150.0,0,0,Check-Out,2018-12-03 -Resort Hotel,0,40,2017,September,32,3,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,244.0,179.0,0,Transient,125.3,0,3,Check-Out,2020-06-02 -City Hotel,1,84,2017,April,18,21,1,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,152.37,0,3,Canceled,2020-02-01 -City Hotel,0,163,2016,July,25,26,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.68,0,2,Check-Out,2019-06-03 -City Hotel,0,11,2017,July,32,10,1,1,3,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient-Party,101.27,0,0,Check-Out,2020-06-02 -City Hotel,0,146,2016,May,27,31,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,137.67,0,1,Check-Out,2019-05-04 -City Hotel,1,262,2017,June,31,21,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Contract,103.19,0,0,Canceled,2020-06-02 -Resort Hotel,0,21,2015,December,50,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,44.8,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2015,July,33,24,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.54,0,2,Check-Out,2019-01-03 -City Hotel,0,242,2016,September,43,20,2,4,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,88.36,0,0,Check-Out,2019-07-04 -City Hotel,1,194,2016,August,37,4,0,3,1,0.0,0,SC,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,118.76,0,0,Canceled,2018-08-03 -City Hotel,0,0,2017,March,10,14,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.02,0,1,Check-Out,2020-02-01 -City Hotel,0,1,2017,March,9,23,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.2,0,3,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,August,31,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,C,I,2,No Deposit,241.0,179.0,0,Transient,0.21,0,2,Check-Out,2019-04-03 -City Hotel,0,32,2017,May,20,17,0,1,2,0.0,0,SC,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,82.01,1,0,Check-Out,2020-07-03 -City Hotel,0,109,2015,September,31,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,62.65,0,0,Check-Out,2018-08-03 -Resort Hotel,0,103,2017,March,4,22,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,71.97,0,2,Check-Out,2019-11-03 -Resort Hotel,0,11,2016,December,53,14,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,82.55,0,0,Check-Out,2019-09-03 -City Hotel,0,257,2015,July,44,23,3,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,1.0,179.0,0,Transient-Party,60.3,0,0,Check-Out,2018-08-03 -Resort Hotel,0,230,2017,June,27,28,2,7,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,129.0,179.0,0,Transient,66.62,0,0,Check-Out,2020-07-03 -Resort Hotel,0,167,2016,August,37,31,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,245.0,179.0,0,Transient,209.97,0,3,Check-Out,2020-06-02 -City Hotel,0,139,2015,August,34,21,0,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,203.7,0,3,Check-Out,2019-01-03 -Resort Hotel,0,301,2016,August,37,20,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,78.0,179.0,0,Transient-Party,100.79,0,1,Check-Out,2019-08-04 -City Hotel,0,89,2017,June,20,21,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,97.99,0,0,Check-Out,2020-03-03 -Resort Hotel,1,267,2015,October,42,21,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,1,0,A,D,0,No Deposit,297.0,179.0,0,Transient,125.64,0,0,Canceled,2018-07-03 -City Hotel,0,14,2017,February,11,15,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,153.0,179.0,0,Transient,78.16,0,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2016,July,23,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,17.0,179.0,0,Transient,62.93,1,0,Check-Out,2020-05-03 -Resort Hotel,0,1,2015,October,42,26,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,A,2,No Deposit,14.0,250.0,0,Transient,94.77,0,0,Check-Out,2018-08-03 -Resort Hotel,0,6,2017,August,36,7,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,D,I,0,No Deposit,244.0,179.0,0,Group,125.22,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2016,October,45,3,1,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,125.91,0,0,Canceled,2019-01-03 -Resort Hotel,1,106,2017,April,17,27,2,2,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,234.0,179.0,75,Transient,124.09,1,1,Canceled,2020-03-03 -City Hotel,1,280,2017,May,22,16,0,1,1,0.0,0,BB,PRT,Aviation,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.56,0,0,Canceled,2020-02-01 -City Hotel,0,9,2016,September,27,5,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,117.15,0,2,Check-Out,2019-06-03 -City Hotel,0,0,2016,October,44,13,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.06,0,1,Check-Out,2019-03-04 -Resort Hotel,0,53,2016,December,23,30,2,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,268.0,179.0,0,Transient-Party,71.58,0,0,Check-Out,2019-06-03 -City Hotel,0,208,2017,May,20,8,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,72.46,0,0,Check-Out,2019-12-04 -City Hotel,1,44,2016,March,14,21,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,55.55,0,0,Canceled,2019-02-01 -Resort Hotel,0,7,2015,September,31,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Group,31.22,0,0,Check-Out,2018-06-02 -City Hotel,1,233,2016,July,20,7,2,5,3,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,216.94,0,1,Canceled,2019-10-04 -Resort Hotel,0,38,2016,October,46,29,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,170.93,0,0,Check-Out,2018-08-03 -City Hotel,0,48,2017,August,17,16,2,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,215.79,0,1,Check-Out,2020-04-02 -City Hotel,1,105,2015,October,45,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,95.43,0,0,Canceled,2018-08-03 -City Hotel,0,39,2015,October,45,10,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,167.96,0,1,Check-Out,2018-09-02 -Resort Hotel,0,13,2017,May,34,9,1,0,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,121.18,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,January,5,6,0,3,2,1.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,129.2,0,3,Check-Out,2019-10-04 -City Hotel,1,98,2016,May,22,24,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,A,0,Non Refund,1.0,179.0,0,Transient-Party,119.45,0,0,Canceled,2019-11-03 -City Hotel,0,2,2015,August,35,20,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,115.87,0,1,Check-Out,2018-06-02 -Resort Hotel,1,99,2017,March,12,16,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,74.05,0,0,Canceled,2019-11-03 -Resort Hotel,1,56,2017,March,11,15,0,4,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,74.0,0,0,Canceled,2020-03-03 -Resort Hotel,0,137,2016,March,18,31,0,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,D,D,2,Refundable,12.0,223.0,0,Transient-Party,75.84,1,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,June,27,17,4,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,99.15,0,0,Check-Out,2020-05-03 -City Hotel,1,33,2016,March,16,16,0,3,2,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,A,A,0,Non Refund,22.0,179.0,0,Group,60.06,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,December,50,11,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,L,0,No Deposit,15.0,252.0,0,Transient-Party,59.8,0,0,Check-Out,2019-11-03 -City Hotel,0,16,2017,June,32,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,124.21,0,1,Check-Out,2020-07-03 -City Hotel,0,154,2017,April,18,14,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.52,0,2,Check-Out,2020-05-03 -City Hotel,1,17,2015,December,50,29,2,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient-Party,71.54,0,0,Canceled,2019-09-03 -City Hotel,1,34,2016,May,21,8,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,96.88,0,1,Canceled,2019-03-04 -Resort Hotel,0,18,2015,December,52,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,63.32,0,1,Check-Out,2018-11-02 -Resort Hotel,1,0,2016,February,11,24,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,Non Refund,241.0,179.0,0,Transient,61.72,1,0,Canceled,2018-12-03 -Resort Hotel,1,47,2015,July,35,4,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,F,0,No Deposit,239.0,179.0,0,Transient,128.5,0,0,Canceled,2017-11-02 -City Hotel,0,130,2017,July,30,20,0,3,2,0.0,0,BB,BEL,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.09,0,1,Check-Out,2020-07-03 -City Hotel,0,47,2016,April,21,6,2,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,95.81,0,3,Check-Out,2020-01-04 -City Hotel,0,57,2016,July,27,30,2,5,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,111.53,0,2,Check-Out,2019-06-03 -City Hotel,0,148,2017,June,28,6,1,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,7.0,179.0,0,Transient,226.73,0,1,Check-Out,2020-05-03 -City Hotel,0,37,2015,October,44,9,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,186.29,0,2,Check-Out,2018-07-03 -City Hotel,1,15,2015,July,37,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.04,0,0,Canceled,2018-05-03 -City Hotel,0,238,2016,June,26,10,0,3,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,19,Transient,87.23,0,0,Check-Out,2019-02-01 -City Hotel,1,52,2015,September,49,9,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,122.35,0,0,Canceled,2018-11-02 -City Hotel,0,14,2017,February,9,3,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,69.03,0,0,Check-Out,2020-03-03 -City Hotel,0,46,2016,October,43,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.84,0,0,Canceled,2019-12-04 -Resort Hotel,0,2,2017,August,35,30,0,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,250.0,179.0,0,Transient,224.0,0,0,Check-Out,2020-07-03 -City Hotel,0,14,2016,April,17,5,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,98.11,0,0,Check-Out,2019-03-04 -City Hotel,0,66,2017,February,8,15,2,0,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.54,0,1,Check-Out,2019-01-03 -City Hotel,1,83,2016,June,30,5,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,141.04,0,2,Canceled,2020-02-01 -City Hotel,0,5,2015,October,41,5,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,105.88,0,1,Check-Out,2018-08-03 -Resort Hotel,1,192,2015,August,15,4,2,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,E,A,1,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-06-02 -City Hotel,0,94,2017,June,31,20,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,102.89,0,0,Check-Out,2020-06-02 -Resort Hotel,0,173,2017,May,19,12,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,215.7,1,1,Check-Out,2019-11-03 -Resort Hotel,1,49,2016,March,9,25,2,5,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,95.65,0,0,Canceled,2019-03-04 -City Hotel,1,151,2016,May,10,20,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,108.26,0,0,Canceled,2019-11-03 -Resort Hotel,0,56,2016,October,42,24,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.3,0,3,Check-Out,2019-08-04 -Resort Hotel,0,105,2017,May,20,21,2,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,81.77,0,0,Check-Out,2020-04-02 -Resort Hotel,1,70,2015,December,53,30,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,76.98,0,2,Canceled,2018-10-03 -City Hotel,0,49,2017,August,38,7,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,236.03,1,2,Check-Out,2020-07-03 -City Hotel,0,0,2017,February,10,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,68.0,0,Transient-Party,63.8,0,0,Check-Out,2019-11-03 -City Hotel,1,46,2016,August,38,31,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.65,0,0,Canceled,2018-11-02 -Resort Hotel,0,3,2017,October,43,24,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,79.68,0,0,Check-Out,2019-06-03 -Resort Hotel,0,91,2016,November,45,30,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,59.88,0,2,Check-Out,2018-12-03 -City Hotel,1,277,2016,June,38,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,9.0,179.0,0,Transient,101.52,0,2,Canceled,2019-01-03 -Resort Hotel,0,33,2015,December,53,18,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,62.3,0,0,Check-Out,2019-11-03 -City Hotel,0,107,2015,September,37,13,1,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,114.17,0,0,Check-Out,2018-08-03 -City Hotel,0,145,2016,July,31,20,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,150.0,179.0,0,Transient,137.19,0,0,Check-Out,2019-06-03 -Resort Hotel,0,11,2015,August,36,13,0,5,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,2,2015,December,5,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,235.0,179.0,0,Transient-Party,59.51,0,3,Check-Out,2018-12-03 -City Hotel,0,151,2016,June,26,30,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,72.39,0,0,Check-Out,2019-06-03 -City Hotel,1,191,2017,April,16,26,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient,99.84,0,0,Canceled,2020-02-01 -City Hotel,0,246,2017,July,30,20,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,135.85,0,2,Check-Out,2020-06-02 -City Hotel,0,0,2017,July,26,5,0,1,3,0.0,0,BB,BRA,Direct,Direct,0,0,0,D,G,2,No Deposit,17.0,179.0,0,Transient,87.78,0,3,Check-Out,2019-11-03 -City Hotel,0,1,2015,August,37,10,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Contract,75.27,0,1,Check-Out,2018-08-03 -City Hotel,1,7,2015,July,28,29,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,58,Transient,93.25,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,March,11,27,1,1,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,I,0,No Deposit,241.0,179.0,0,Transient,0.14,0,1,Check-Out,2019-02-01 -City Hotel,0,227,2017,May,21,27,2,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,122.93,0,0,Check-Out,2019-12-04 -City Hotel,1,103,2017,February,8,13,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,32.99,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,June,25,30,0,1,1,0.0,0,BB,SWE,Direct,Corporate,0,0,0,A,C,1,No Deposit,19.0,331.0,0,Transient,48.86,0,0,Check-Out,2019-09-03 -Resort Hotel,0,107,2015,October,42,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,72.0,179.0,0,Group,58.14,0,0,Check-Out,2018-06-02 -Resort Hotel,0,23,2016,April,18,29,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,38.84,1,0,Check-Out,2019-04-03 -City Hotel,1,56,2016,October,43,14,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.15,0,3,Canceled,2019-07-04 -City Hotel,0,32,2017,January,49,15,1,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.47,0,1,Check-Out,2019-10-04 -City Hotel,0,85,2017,March,11,28,1,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.05,0,2,Check-Out,2019-11-03 -City Hotel,0,0,2017,March,17,16,0,2,1,0.0,0,SC,PRT,Aviation,Corporate,1,0,1,A,A,0,No Deposit,92.0,169.0,0,Transient,67.79,1,1,Check-Out,2020-04-02 -Resort Hotel,1,22,2017,May,24,10,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,195.0,179.0,0,Transient,96.35,0,0,Canceled,2020-04-02 -City Hotel,0,8,2015,October,46,25,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,81.91,0,0,Check-Out,2019-09-03 -Resort Hotel,0,12,2015,October,33,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,247.0,179.0,0,Transient,0.9,1,1,Check-Out,2018-06-02 -City Hotel,0,49,2015,September,34,16,0,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,D,C,1,No Deposit,14.0,179.0,0,Transient-Party,1.07,0,0,Check-Out,2018-08-03 -Resort Hotel,1,317,2017,April,17,26,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,173.0,179.0,0,Transient,128.56,0,0,Canceled,2020-01-04 -City Hotel,0,47,2016,October,22,24,1,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,12.0,179.0,0,Transient,60.17,0,3,Check-Out,2020-01-04 -City Hotel,1,99,2016,June,26,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,62.46,0,0,Canceled,2017-11-02 -City Hotel,0,11,2017,May,21,10,0,3,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,129.21,0,0,Check-Out,2020-05-03 -City Hotel,0,246,2016,October,46,25,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-02-01 -City Hotel,0,15,2017,May,20,6,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,89.0,179.0,0,Transient,75.92,0,1,Check-Out,2020-03-03 -City Hotel,0,3,2016,November,10,28,0,1,1,0.0,0,BB,USA,Aviation,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,94.32,0,0,Check-Out,2019-10-04 -City Hotel,0,15,2015,July,26,8,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.71,0,1,Check-Out,2019-04-03 -City Hotel,1,2,2017,August,38,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,142.11,0,0,Canceled,2020-06-02 -City Hotel,1,15,2015,September,36,5,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,81.47,0,0,Canceled,2018-07-03 -City Hotel,0,2,2017,October,42,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.0,0,1,Check-Out,2019-12-04 -Resort Hotel,1,160,2015,August,36,13,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,310.0,179.0,0,Transient,124.79,0,0,Canceled,2018-05-03 -Resort Hotel,1,0,2016,October,41,27,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,I,0,No Deposit,239.0,179.0,0,Transient,0.0,0,0,Canceled,2019-01-03 -Resort Hotel,1,51,2016,January,7,2,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,35.31,0,1,No-Show,2019-01-03 -City Hotel,1,202,2015,August,37,18,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,170.0,179.0,0,Transient,99.57,0,0,Canceled,2017-11-02 -City Hotel,0,11,2016,January,10,2,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.24,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2016,October,44,7,2,0,1,1.0,0,SC,USA,Online TA,TA/TO,0,0,0,E,K,2,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Canceled,2019-08-04 -Resort Hotel,0,242,2017,May,21,21,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient-Party,77.98,1,1,Check-Out,2020-04-02 -Resort Hotel,0,264,2016,October,37,29,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,191.82,0,0,Check-Out,2019-07-04 -Resort Hotel,1,217,2016,December,10,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,178.0,179.0,0,Transient,70.08,0,0,Canceled,2018-11-02 -City Hotel,1,257,2016,July,28,25,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.25,0,0,Canceled,2019-03-04 -Resort Hotel,0,40,2017,March,11,28,0,1,2,0.0,0,BB,NLD,Online TA,Direct,0,0,0,A,G,0,No Deposit,244.0,179.0,0,Transient,226.83,1,2,Check-Out,2019-11-03 -Resort Hotel,0,18,2017,August,34,6,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,256.0,179.0,0,Transient,245.62,1,0,Check-Out,2020-07-03 -Resort Hotel,0,110,2016,August,37,26,2,10,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,151.14,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,January,4,24,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,15.0,179.0,0,Transient,82.65,0,3,Check-Out,2019-10-04 -Resort Hotel,0,99,2016,December,53,5,0,2,3,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,159.08,0,3,Check-Out,2019-11-03 -City Hotel,1,1,2016,November,3,27,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,63.0,0,Transient,62.19,0,0,Canceled,2018-11-02 -City Hotel,0,12,2016,November,50,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,108.76,0,0,Check-Out,2019-07-04 -City Hotel,0,238,2016,June,26,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,120.58,0,3,No-Show,2019-05-04 -City Hotel,0,49,2016,September,47,30,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.98,0,1,Check-Out,2019-12-04 -City Hotel,0,242,2016,May,22,10,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient-Party,61.98,0,0,Check-Out,2019-06-03 -City Hotel,1,154,2016,February,11,31,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,76.0,179.0,0,Transient,72.39,0,0,Canceled,2018-11-02 -Resort Hotel,0,146,2016,August,34,28,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,195.0,179.0,0,Transient,204.56,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2017,January,5,28,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.38,0,2,Check-Out,2019-12-04 -Resort Hotel,0,100,2017,May,23,16,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,126.99,0,1,Check-Out,2020-04-02 -City Hotel,1,166,2016,March,17,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,102.04,0,0,Canceled,2018-11-02 -City Hotel,1,1,2017,February,8,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,43.01,0,0,Check-Out,2019-11-03 -City Hotel,0,150,2016,September,45,2,1,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,154.84,0,1,Check-Out,2019-11-03 -City Hotel,0,287,2016,August,36,29,0,4,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient-Party,87.24,0,0,Check-Out,2020-06-02 -City Hotel,1,2,2015,October,44,6,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,35.27,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,November,45,27,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,236.0,0,Transient,50.71,0,0,Check-Out,2019-07-04 -City Hotel,0,106,2016,May,21,29,2,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,171.13,0,2,Check-Out,2019-02-01 -City Hotel,1,101,2016,May,17,8,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,42,Transient,99.64,0,0,Canceled,2018-12-03 -City Hotel,0,41,2016,October,43,16,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,102.62,0,2,Check-Out,2019-09-03 -City Hotel,0,44,2016,September,45,22,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,173.71,0,0,Canceled,2019-08-04 -Resort Hotel,0,53,2016,July,38,13,1,0,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,162.64,0,0,Check-Out,2019-02-01 -City Hotel,1,0,2016,October,45,28,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,65.56,0,0,No-Show,2019-08-04 -City Hotel,1,151,2017,December,53,2,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.67,0,0,Canceled,2019-11-03 -Resort Hotel,0,220,2016,September,25,12,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,156.0,179.0,0,Transient-Party,94.04,0,0,Check-Out,2019-05-04 -City Hotel,0,12,2017,May,22,10,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,76.2,0,0,Check-Out,2020-03-03 -Resort Hotel,0,86,2017,July,32,15,3,10,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,2,No Deposit,247.0,179.0,0,Transient,124.18,1,2,Check-Out,2020-03-03 -City Hotel,1,321,2015,September,39,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,40,Transient,68.85,0,0,Canceled,2018-09-02 -City Hotel,1,23,2016,September,28,16,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,30.0,45.0,0,Transient,64.98,0,0,Canceled,2018-09-02 -City Hotel,0,147,2017,June,26,23,1,1,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,102.7,0,0,Check-Out,2020-06-02 -Resort Hotel,0,274,2016,August,34,21,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,131.56,0,1,Check-Out,2019-09-03 -City Hotel,1,38,2016,October,26,15,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.49,0,1,No-Show,2019-04-03 -City Hotel,1,35,2017,August,37,27,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient,164.03,0,0,Canceled,2019-08-04 -City Hotel,0,48,2015,September,33,20,2,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,77.8,0,0,Check-Out,2018-07-03 -City Hotel,0,190,2016,October,43,27,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,8.0,179.0,0,Transient,153.8,0,1,Check-Out,2019-08-04 -City Hotel,0,123,2017,July,18,6,1,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-03-03 -Resort Hotel,0,10,2017,January,12,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,165.0,179.0,0,Transient-Party,62.49,0,0,Check-Out,2020-02-01 -City Hotel,1,248,2016,June,25,8,2,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.7,0,0,Canceled,2018-12-03 -City Hotel,0,101,2017,June,26,8,2,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.25,0,2,Check-Out,2020-07-03 -City Hotel,0,0,2016,September,43,15,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,15.0,179.0,0,Transient-Party,71.75,0,0,Check-Out,2019-07-04 -Resort Hotel,0,41,2016,December,53,27,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,75,Transient-Party,68.53,0,0,Check-Out,2019-11-03 -Resort Hotel,0,53,2015,September,34,28,1,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient,0.56,0,0,Check-Out,2018-06-02 -City Hotel,1,11,2016,October,51,28,1,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,F,2,No Deposit,14.0,179.0,0,Transient,61.49,0,0,Canceled,2019-08-04 -Resort Hotel,1,18,2016,December,49,27,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,73.23,0,0,Canceled,2019-01-03 -City Hotel,0,306,2016,December,50,17,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,94.0,179.0,39,Transient-Party,61.14,0,1,Check-Out,2019-10-04 -City Hotel,1,4,2017,June,33,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,120.45,0,1,Canceled,2020-04-02 -City Hotel,1,103,2015,September,44,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,92.48,0,0,Canceled,2018-08-03 -City Hotel,0,285,2016,July,27,10,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,119.35,0,3,Check-Out,2020-04-02 -City Hotel,1,34,2017,February,11,14,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,153.46,0,0,Canceled,2019-12-04 -City Hotel,0,3,2016,July,17,6,0,2,2,0.0,0,BB,CHE,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,123.36,0,1,Check-Out,2019-03-04 -Resort Hotel,0,150,2017,June,24,16,4,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Contract,161.95,0,0,Check-Out,2020-04-02 -Resort Hotel,0,90,2017,May,23,25,2,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,230.0,179.0,0,Contract,71.22,0,0,Check-Out,2020-02-01 -City Hotel,1,46,2016,December,50,25,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,1,387,2017,July,38,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,1.0,179.0,0,Transient,127.98,0,0,Canceled,2020-06-02 -City Hotel,0,0,2015,August,33,13,0,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient-Party,204.89,0,0,Check-Out,2018-05-03 -City Hotel,1,42,2017,April,16,10,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,112.36,0,2,Canceled,2019-02-01 -Resort Hotel,0,10,2016,March,19,5,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,C,I,1,No Deposit,12.0,179.0,75,Transient-Party,35.68,1,0,Check-Out,2020-01-04 -Resort Hotel,1,52,2016,December,43,21,2,4,3,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,175.54,0,2,Canceled,2019-09-03 -City Hotel,0,38,2016,December,52,29,2,5,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,67.7,0,3,Check-Out,2019-11-03 -City Hotel,0,1,2016,June,44,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,82.0,179.0,0,Group,69.43,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,May,21,9,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,128.63,0,2,Check-Out,2020-02-01 -Resort Hotel,1,258,2016,May,23,27,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,C,2,Non Refund,287.0,179.0,0,Transient,45.01,0,0,Canceled,2019-05-04 -City Hotel,1,46,2016,November,36,5,0,1,1,0.0,0,BB,ITA,Online TA,Corporate,0,0,0,A,A,0,Non Refund,11.0,45.0,0,Transient,93.6,0,0,Canceled,2019-09-03 -Resort Hotel,0,144,2017,July,28,24,0,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,81.75,0,1,Check-Out,2020-02-01 -Resort Hotel,0,263,2017,May,26,21,2,5,3,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,180.0,179.0,0,Transient,164.55,0,2,Check-Out,2020-02-01 -Resort Hotel,0,32,2016,October,46,31,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,111.59,1,0,Check-Out,2019-09-03 -Resort Hotel,1,22,2015,October,46,21,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,C,0,No Deposit,244.0,179.0,0,Transient-Party,41.48,0,0,No-Show,2018-09-02 -Resort Hotel,0,15,2015,October,44,8,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,38.84,0,0,Check-Out,2018-08-03 -City Hotel,0,11,2016,June,25,16,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,131.37,0,1,Check-Out,2019-03-04 -City Hotel,0,11,2016,August,37,24,2,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,231.29,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,November,51,30,0,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,G,D,0,No Deposit,14.0,179.0,0,Transient,122.27,1,2,Check-Out,2018-09-02 -City Hotel,0,167,2016,August,28,24,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,135.79,0,0,Check-Out,2019-04-03 -City Hotel,0,15,2016,December,53,5,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.46,0,1,Check-Out,2019-11-03 -City Hotel,0,164,2016,August,31,15,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.78,0,3,Check-Out,2019-07-04 -City Hotel,0,45,2016,December,44,2,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,61,Transient,66.85,0,0,Check-Out,2018-12-03 -City Hotel,0,96,2016,January,9,24,2,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient,77.61,0,2,Check-Out,2019-01-03 -City Hotel,1,21,2016,July,31,5,0,2,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,138.14,0,0,Canceled,2018-06-02 -Resort Hotel,0,89,2017,April,17,22,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,293.0,179.0,67,Transient-Party,28.03,0,0,Check-Out,2019-12-04 -Resort Hotel,0,40,2015,November,45,31,1,4,3,1.0,0,HB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,250.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-09-03 -Resort Hotel,0,189,2016,May,27,23,0,3,3,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient-Party,78.34,0,0,Check-Out,2019-12-04 -City Hotel,0,51,2017,April,19,16,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,104.45,1,2,Check-Out,2020-06-02 -Resort Hotel,1,255,2017,February,11,16,0,1,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,E,2,No Deposit,35.0,179.0,0,Transient-Party,77.0,0,0,Canceled,2019-10-04 -City Hotel,1,1,2015,June,39,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,16.0,45.0,0,Transient,60.0,0,0,Canceled,2018-12-03 -City Hotel,0,5,2016,October,45,2,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,77.0,179.0,0,Transient,100.72,0,0,Check-Out,2019-08-04 -Resort Hotel,1,152,2016,May,18,26,2,1,2,0.0,0,FB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,78.71,0,0,Canceled,2020-04-02 -Resort Hotel,0,0,2016,March,11,21,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,H,0,No Deposit,16.0,179.0,0,Transient,59.99,0,0,Check-Out,2019-02-01 -Resort Hotel,0,189,2016,December,43,24,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,97.98,1,0,Check-Out,2019-08-04 -City Hotel,1,159,2016,June,21,8,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,41,Transient,85.62,0,0,Canceled,2019-01-03 -Resort Hotel,0,17,2016,December,49,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,65.0,0,Transient-Party,63.89,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,December,45,28,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,86.23,0,1,Check-Out,2019-09-03 -City Hotel,1,322,2015,September,50,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.8,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,September,45,21,1,3,2,1.0,0,BB,USA,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,194.81,0,2,Check-Out,2019-07-04 -Resort Hotel,0,146,2016,February,4,27,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,61.81,0,0,Check-Out,2019-10-04 -City Hotel,0,37,2017,March,10,25,0,2,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient-Party,70.95,0,1,Check-Out,2020-02-01 -City Hotel,0,72,2015,October,43,15,0,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,103.06,0,0,Check-Out,2018-08-03 -City Hotel,1,103,2017,April,15,6,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.34,0,2,Canceled,2020-02-01 -Resort Hotel,1,120,2017,May,12,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,139.83,0,2,Canceled,2020-02-01 -Resort Hotel,0,164,2017,August,34,29,1,5,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,137.71,1,1,Check-Out,2020-07-03 -City Hotel,1,165,2016,July,33,15,2,5,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,245.51,0,0,Canceled,2019-10-04 -Resort Hotel,1,47,2016,February,19,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,2,No Deposit,16.0,179.0,0,Transient,58.74,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2015,September,42,9,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,33.2,0,0,Check-Out,2018-06-02 -Resort Hotel,0,202,2016,October,42,30,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,76.49,0,0,Check-Out,2019-07-04 -City Hotel,0,37,2016,September,36,18,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,92.58,0,0,Check-Out,2018-06-02 -Resort Hotel,0,270,2017,February,18,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,48.6,1,0,Check-Out,2020-04-02 -Resort Hotel,0,92,2016,February,10,5,2,4,2,0.0,0,Undefined,GBR,Groups,Corporate,0,0,0,A,A,2,No Deposit,35.0,179.0,0,Transient-Party,64.17,0,0,Check-Out,2018-10-03 -City Hotel,1,236,2017,July,35,28,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,127.43,0,0,Canceled,2018-06-02 -Resort Hotel,0,100,2016,October,42,25,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,57.84,0,0,Check-Out,2019-09-03 -City Hotel,0,386,2017,July,28,20,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Contract,61.33,0,0,Check-Out,2018-09-02 -Resort Hotel,0,57,2017,February,9,27,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,187.0,331.0,0,Transient,38.96,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,December,52,10,0,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,61.93,1,0,Check-Out,2018-12-03 -Resort Hotel,0,395,2016,March,51,31,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,61.05,0,0,Check-Out,2019-06-03 -Resort Hotel,1,100,2016,January,50,16,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,73.14,0,0,Canceled,2018-10-03 -Resort Hotel,0,48,2016,June,21,17,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,70.41,0,0,Check-Out,2019-05-04 -City Hotel,0,4,2016,June,27,5,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,E,E,2,No Deposit,13.0,226.0,0,Transient,94.27,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2015,January,4,2,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,37.59,0,0,Check-Out,2018-11-02 -Resort Hotel,0,287,2016,October,42,20,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,75.78,0,0,Check-Out,2019-07-04 -City Hotel,0,231,2015,July,34,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,120.2,0,0,Canceled,2018-05-03 -Resort Hotel,0,3,2015,October,45,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,16.0,250.0,0,Transient-Party,77.85,0,0,Check-Out,2018-09-02 -Resort Hotel,0,17,2016,March,12,29,0,4,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,100.0,243.0,0,Transient-Party,41.41,0,0,Check-Out,2019-02-01 -City Hotel,1,349,2016,October,43,28,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,19,Transient-Party,70.8,0,0,Canceled,2018-08-03 -Resort Hotel,0,48,2017,February,10,27,2,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,14.0,331.0,0,Transient-Party,37.45,0,0,Check-Out,2020-03-03 -City Hotel,0,46,2016,June,21,13,1,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.44,0,2,Check-Out,2019-11-03 -City Hotel,1,305,2016,October,43,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient-Party,61.32,0,0,Canceled,2019-02-01 -City Hotel,0,139,2017,May,27,20,1,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,145.36,1,1,Check-Out,2020-04-02 -Resort Hotel,0,48,2015,August,35,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,118.76,0,2,Check-Out,2018-07-03 -Resort Hotel,0,58,2016,October,43,5,2,5,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,140.35,0,3,Check-Out,2019-06-03 -Resort Hotel,0,155,2016,January,10,10,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,75.86,0,2,Check-Out,2019-02-01 -Resort Hotel,0,41,2016,February,9,18,1,0,2,0.0,0,BB,BEL,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,75.65,0,0,Check-Out,2019-03-04 -City Hotel,1,0,2015,October,48,18,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,57.39,0,0,Canceled,2018-08-03 -Resort Hotel,1,138,2016,July,36,13,1,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,171.46,0,2,Canceled,2019-02-01 -City Hotel,1,250,2016,October,37,5,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.25,0,0,Canceled,2017-11-02 -Resort Hotel,0,160,2017,August,38,14,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,246.0,179.0,0,Transient,192.36,0,1,Check-Out,2020-07-03 -City Hotel,0,129,2017,June,28,17,2,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,E,E,0,No Deposit,21.0,179.0,0,Contract,162.68,0,0,Check-Out,2020-05-03 -Resort Hotel,1,10,2016,May,34,10,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,192.97,0,0,Canceled,2020-01-04 -City Hotel,1,64,2015,October,44,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,155.22,0,0,Canceled,2017-11-02 -Resort Hotel,0,18,2015,December,51,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,37.15,1,0,Check-Out,2018-11-02 -City Hotel,0,278,2016,October,43,19,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.98,0,0,Check-Out,2019-08-04 -Resort Hotel,0,90,2015,July,30,5,2,5,2,0.0,0,HB,AUT,Direct,Direct,0,0,0,E,F,0,No Deposit,248.0,179.0,0,Transient,159.83,1,2,Check-Out,2018-06-02 -City Hotel,1,95,2017,June,22,20,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,9.0,179.0,0,Transient-Party,178.97,0,0,Canceled,2020-03-03 -City Hotel,1,29,2016,April,14,6,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,73.84,0,0,Canceled,2019-02-01 -City Hotel,1,233,2017,March,4,15,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.06,0,0,Canceled,2020-03-03 -City Hotel,0,0,2017,May,26,20,0,3,1,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,216.64,0,0,Check-Out,2019-03-04 -City Hotel,1,103,2017,February,7,24,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient-Party,76.38,0,0,Canceled,2020-02-01 -City Hotel,0,33,2016,December,53,31,2,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,151.72,0,2,Check-Out,2019-01-03 -Resort Hotel,0,106,2015,July,29,3,0,4,2,1.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient-Party,89.76,0,1,Check-Out,2018-06-02 -City Hotel,1,162,2016,March,18,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,75,Transient,96.81,0,0,Canceled,2018-10-03 -City Hotel,0,0,2015,September,44,23,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,112.3,0,0,Check-Out,2018-07-03 -Resort Hotel,0,1,2016,October,42,5,2,1,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,72.38,0,0,Check-Out,2019-09-03 -City Hotel,0,14,2016,October,44,16,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,110.71,0,2,Check-Out,2019-05-04 -Resort Hotel,0,3,2015,November,50,10,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,60.12,0,0,Check-Out,2018-08-03 -City Hotel,1,365,2016,May,28,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,88.93,0,0,Canceled,2017-12-03 -Resort Hotel,0,0,2016,December,52,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,226.0,0,Transient,24.26,0,0,Check-Out,2019-01-03 -City Hotel,0,49,2016,October,45,26,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,120.2,0,1,Check-Out,2019-10-04 -Resort Hotel,1,261,2017,July,32,21,2,5,2,0.0,0,HB,BRA,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,9.0,179.0,0,Transient,125.93,0,0,Canceled,2020-03-03 -Resort Hotel,1,35,2015,July,44,22,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,44.55,0,0,Canceled,2018-09-02 -City Hotel,0,10,2016,August,37,18,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,131.35,0,1,Check-Out,2019-09-03 -Resort Hotel,0,158,2016,February,11,24,1,4,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient,102.92,0,0,Check-Out,2018-12-03 -City Hotel,1,79,2016,June,24,19,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.23,0,1,Canceled,2019-04-03 -City Hotel,1,234,2016,October,10,7,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,71.03,0,0,Canceled,2018-12-03 -City Hotel,0,15,2017,March,11,6,1,0,1,0.0,0,BB,CN,Aviation,Corporate,1,0,0,D,I,1,No Deposit,9.0,179.0,0,Transient,102.73,0,0,Check-Out,2020-03-03 -Resort Hotel,0,80,2016,July,22,24,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-04-03 -Resort Hotel,0,240,2017,August,34,6,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,243.27,1,1,Check-Out,2020-07-03 -City Hotel,0,1,2017,March,10,7,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,96.5,0,0,Check-Out,2020-02-01 -Resort Hotel,1,52,2017,January,8,20,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,68.29,0,1,Canceled,2019-11-03 -City Hotel,1,166,2016,June,28,22,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,98.81,0,0,Canceled,2019-09-03 -Resort Hotel,0,8,2016,March,9,31,1,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,70.38,1,0,Check-Out,2018-12-03 -City Hotel,1,38,2016,November,49,28,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.42,0,0,Canceled,2019-08-04 -City Hotel,0,33,2017,July,30,2,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,88.64,0,2,Check-Out,2020-03-03 -City Hotel,1,172,2016,March,53,24,2,1,2,2.0,0,BB,PRT,Groups,TA/TO,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient,63.17,0,0,Canceled,2018-12-03 -City Hotel,0,23,2017,January,10,20,0,2,3,2.0,0,BB,,Direct,Direct,0,0,0,D,F,1,No Deposit,16.0,179.0,0,Transient,216.14,0,0,Check-Out,2020-06-02 -City Hotel,0,43,2016,July,31,13,2,5,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-04-03 -Resort Hotel,0,9,2016,June,26,28,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,67.0,0,Transient,98.62,0,0,Check-Out,2019-02-01 -City Hotel,1,41,2016,November,50,19,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,68.23,0,2,Canceled,2019-09-03 -Resort Hotel,0,19,2016,October,45,16,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,243.81,0,1,Check-Out,2018-07-03 -City Hotel,0,0,2015,August,37,13,2,1,3,0.0,0,BB,FRA,Online TA,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,113.71,0,1,Check-Out,2018-10-03 -City Hotel,1,17,2016,January,5,10,1,1,3,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,127.5,0,0,Check-Out,2019-09-03 -City Hotel,0,12,2016,August,21,7,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,166.85,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,January,3,15,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,Non Refund,183.0,179.0,0,Transient,36.68,0,0,Check-Out,2018-10-03 -City Hotel,1,103,2016,June,22,6,2,1,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,160.25,0,1,Canceled,2019-02-01 -City Hotel,0,193,2015,October,42,20,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,130.45,0,0,Check-Out,2019-05-04 -Resort Hotel,0,308,2017,May,22,9,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,78.42,1,2,Check-Out,2020-06-02 -Resort Hotel,0,98,2016,May,21,5,2,0,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,378.0,179.0,0,Transient,97.21,0,2,Check-Out,2019-10-04 -City Hotel,0,99,2016,June,26,20,1,0,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.42,0,0,Check-Out,2019-01-03 -City Hotel,1,52,2016,April,26,16,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,15,Transient,95.88,0,0,Canceled,2018-11-02 -City Hotel,0,16,2017,June,25,13,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,120.83,0,3,Check-Out,2020-04-02 -City Hotel,1,126,2016,August,34,21,0,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,80.21,0,0,Canceled,2019-07-04 -City Hotel,1,261,2015,September,44,4,2,3,3,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,11.0,179.0,0,Transient,71.65,0,0,Canceled,2018-06-02 -City Hotel,1,30,2016,November,40,14,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,197.5,0,0,Canceled,2019-07-04 -Resort Hotel,0,24,2017,February,11,16,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,77.0,179.0,0,Transient-Party,84.64,0,0,Check-Out,2020-03-03 -City Hotel,0,110,2016,June,16,6,0,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,126.15,0,2,Check-Out,2019-07-04 -City Hotel,0,0,2017,May,21,28,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,1.06,0,1,Check-Out,2020-03-03 -City Hotel,1,403,2015,August,45,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,85.76,0,0,Canceled,2018-08-03 -City Hotel,0,155,2016,May,22,25,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,69.55,0,0,Check-Out,2019-03-04 -Resort Hotel,1,209,2017,August,36,28,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,73.88,0,0,Canceled,2020-04-02 -City Hotel,0,101,2017,May,20,5,0,1,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,C,1,No Deposit,31.0,179.0,0,Transient,1.6,1,0,Check-Out,2020-06-02 -City Hotel,0,14,2016,August,38,22,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-07-04 -City Hotel,1,161,2015,September,33,24,0,3,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,103.53,0,0,Canceled,2018-07-03 -City Hotel,1,26,2016,August,43,17,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,203.39,0,0,No-Show,2019-06-03 -City Hotel,0,185,2016,September,35,30,3,7,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,86.0,0,0,Check-Out,2019-04-03 -Resort Hotel,1,88,2015,December,53,31,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,117.74,0,0,Canceled,2019-01-03 -City Hotel,1,284,2016,July,37,22,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,82.45,0,0,Canceled,2019-03-04 -Resort Hotel,0,88,2017,February,7,15,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,189.0,179.0,0,Transient,62.03,0,0,Canceled,2020-01-04 -City Hotel,0,154,2015,September,35,24,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,105.9,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2015,September,45,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,40.26,0,0,Canceled,2018-06-02 -City Hotel,1,106,2016,June,27,23,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,100.56,0,0,Canceled,2019-01-03 -City Hotel,1,22,2016,October,13,31,2,0,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,79.83,0,1,Canceled,2019-12-04 -City Hotel,0,11,2017,February,10,6,1,0,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,204.98,0,0,Check-Out,2020-01-04 -City Hotel,0,18,2016,October,45,9,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.23,0,2,Check-Out,2019-09-03 -City Hotel,1,101,2016,October,44,15,2,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,69.87,0,0,Canceled,2019-10-04 -Resort Hotel,0,58,2016,October,43,24,2,4,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,October,44,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,32.26,1,0,Check-Out,2018-12-03 -City Hotel,0,263,2017,May,34,18,2,5,3,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,D,3,No Deposit,378.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,March,9,10,0,1,1,0.0,0,BB,,Aviation,Corporate,1,0,1,A,A,0,No Deposit,248.0,52.0,0,Transient,33.26,1,0,Check-Out,2019-03-04 -City Hotel,1,214,2015,September,40,15,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,92.88,0,0,Canceled,2018-08-03 -Resort Hotel,0,81,2016,September,41,7,2,7,2,1.0,0,HB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,175.86,0,1,Check-Out,2019-09-03 -Resort Hotel,1,0,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,1,No Deposit,15.0,87.0,0,Transient,86.33,0,0,Canceled,2019-12-04 -City Hotel,0,2,2016,August,38,22,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,12.0,179.0,0,Transient,227.86,0,2,Check-Out,2019-07-04 -City Hotel,0,0,2016,November,49,4,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,81.25,0,0,Check-Out,2019-10-04 -Resort Hotel,0,269,2016,December,13,26,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,99.82,0,0,Check-Out,2019-09-03 -Resort Hotel,0,17,2016,May,20,20,0,1,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient-Party,72.79,1,0,Check-Out,2019-04-03 -City Hotel,0,32,2016,December,53,10,2,4,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,122.27,0,0,Check-Out,2019-06-03 -City Hotel,1,35,2017,April,15,15,1,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.78,0,0,Canceled,2019-11-03 -City Hotel,1,49,2017,March,10,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,124.19,0,0,Canceled,2020-03-03 -City Hotel,0,149,2016,June,33,31,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,149.99,1,2,Check-Out,2019-05-04 -City Hotel,1,17,2017,August,35,5,2,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,207.8,0,1,Canceled,2020-06-02 -City Hotel,1,257,2015,July,35,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,94.01,0,0,Canceled,2018-05-03 -City Hotel,0,21,2016,October,46,27,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,234.61,0,1,Check-Out,2019-08-04 -City Hotel,0,0,2017,March,8,15,0,2,2,0.0,0,SC,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,73.0,0,Transient,0.0,0,1,Check-Out,2020-03-03 -City Hotel,1,162,2016,June,14,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,134.0,179.0,63,Transient,125.5,0,0,Canceled,2019-02-01 -City Hotel,1,16,2016,September,38,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,78.16,0,0,Canceled,2017-11-02 -City Hotel,0,213,2017,May,21,27,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.84,0,0,Canceled,2020-02-01 -Resort Hotel,1,38,2016,July,31,6,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.74,0,1,No-Show,2019-09-03 -Resort Hotel,0,148,2016,February,10,14,1,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,44.82,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2015,September,36,30,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,64.01,0,0,Check-Out,2018-06-02 -City Hotel,0,10,2016,October,43,20,0,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,163.9,0,1,Check-Out,2019-09-03 -City Hotel,1,44,2015,September,32,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,29.07,0,0,Canceled,2017-11-02 -Resort Hotel,0,1,2016,October,53,18,1,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,0.28,0,0,Check-Out,2018-12-03 -Resort Hotel,0,190,2016,May,15,6,4,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,79.02,0,1,Check-Out,2019-06-03 -City Hotel,1,0,2016,December,48,15,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,13.0,273.0,0,Transient,3.13,0,0,Canceled,2019-08-04 -Resort Hotel,0,94,2017,May,29,27,1,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,247.0,179.0,0,Transient,92.59,1,2,Check-Out,2020-04-02 -City Hotel,1,259,2016,May,27,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,28.0,179.0,41,Transient,75.67,0,0,Canceled,2019-02-01 -City Hotel,1,85,2016,June,36,7,0,1,3,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,H,0,No Deposit,10.0,179.0,0,Transient,115.43,0,0,No-Show,2019-06-03 -City Hotel,0,11,2016,April,21,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient,109.07,0,0,Check-Out,2019-01-03 -City Hotel,1,2,2016,July,39,29,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,Non Refund,191.0,179.0,0,Transient,120.32,0,0,Canceled,2019-08-04 -City Hotel,1,42,2015,September,38,19,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,58.85,0,0,Canceled,2018-06-02 -City Hotel,0,197,2016,October,44,28,1,1,2,0.0,0,FB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,95.24,1,1,Check-Out,2019-09-03 -City Hotel,0,47,2017,April,10,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,34.0,179.0,0,Transient,93.62,0,0,Check-Out,2020-03-03 -City Hotel,1,27,2016,March,16,18,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,44,Transient,76.72,0,0,Canceled,2018-11-02 -City Hotel,0,255,2016,July,37,9,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,72.07,0,0,Check-Out,2019-06-03 -City Hotel,1,32,2016,February,10,5,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,64.93,0,0,Canceled,2019-02-01 -City Hotel,1,267,2017,August,35,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient,233.94,0,0,Canceled,2020-06-02 -City Hotel,0,165,2017,June,25,23,0,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,102.45,0,3,Check-Out,2020-06-02 -City Hotel,0,0,2016,January,50,2,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,F,F,0,No Deposit,15.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-01-03 -City Hotel,0,2,2017,February,8,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,91.0,0,Transient,42.76,0,0,Check-Out,2019-08-04 -City Hotel,1,9,2017,March,10,12,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,B,E,2,No Deposit,13.0,179.0,0,Transient-Party,70.98,0,0,No-Show,2020-03-03 -Resort Hotel,0,36,2016,April,18,2,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient,76.29,1,1,Check-Out,2019-03-04 -Resort Hotel,0,41,2017,February,11,1,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,170.0,179.0,0,Transient,63.61,0,1,Check-Out,2020-04-02 -City Hotel,0,90,2016,May,21,24,0,3,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,78.31,0,0,Check-Out,2019-03-04 -City Hotel,0,27,2017,April,18,16,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.98,0,0,Check-Out,2020-03-03 -Resort Hotel,0,152,2017,May,21,22,2,6,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Transient,217.49,1,3,Check-Out,2020-01-04 -City Hotel,1,0,2016,April,17,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.41,0,1,Canceled,2019-02-01 -Resort Hotel,0,1,2015,August,31,4,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,1,No Deposit,249.0,179.0,0,Transient-Party,236.68,1,0,Check-Out,2018-06-02 -City Hotel,0,155,2017,March,10,22,1,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,99.11,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2017,February,10,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,78.0,0,Transient,39.13,0,0,Check-Out,2018-09-02 -City Hotel,1,55,2016,July,36,19,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,116.67,0,0,Canceled,2019-06-03 -Resort Hotel,1,35,2017,February,9,6,2,0,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,199.18,0,3,Canceled,2020-02-01 -City Hotel,0,1,2016,August,37,14,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.54,0,1,Check-Out,2019-07-04 -Resort Hotel,1,205,2016,October,43,16,3,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient,138.33,0,0,Canceled,2019-07-04 -City Hotel,0,55,2017,June,23,6,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.53,0,1,Check-Out,2020-04-02 -Resort Hotel,0,231,2015,July,30,20,2,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,25.0,179.0,0,Transient-Party,41.22,0,0,Check-Out,2018-05-03 -City Hotel,1,15,2016,October,40,17,1,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,168.1,0,1,Canceled,2019-10-04 -City Hotel,0,43,2017,August,38,6,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,65.64,0,1,Check-Out,2020-07-03 -City Hotel,0,115,2016,July,35,17,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-06-02 -Resort Hotel,0,13,2015,December,51,31,2,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,80.52,0,0,Check-Out,2018-11-02 -City Hotel,0,238,2015,July,31,9,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,116.79,0,2,Check-Out,2019-02-01 -City Hotel,0,2,2016,October,44,5,1,0,1,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,A,D,0,No Deposit,17.0,184.0,0,Transient,49.0,0,0,Check-Out,2019-09-03 -City Hotel,1,306,2017,June,28,12,1,0,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.97,0,0,Canceled,2020-06-02 -City Hotel,1,11,2016,December,50,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,36.0,214.0,0,Transient,32.27,0,0,Check-Out,2019-06-03 -Resort Hotel,0,37,2016,June,27,9,0,3,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,158.21,0,0,Check-Out,2019-07-04 -City Hotel,1,56,2016,June,32,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,61.85,0,0,Canceled,2017-11-02 -Resort Hotel,1,20,2016,February,10,8,1,0,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,248.0,179.0,0,Transient,165.83,0,0,Canceled,2018-11-02 -City Hotel,1,28,2017,August,38,17,0,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,119.34,0,0,Canceled,2020-04-02 -City Hotel,0,99,2016,August,44,17,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,136.58,0,0,Check-Out,2019-10-04 -City Hotel,1,184,2017,May,22,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,128.24,0,0,Canceled,2019-10-04 -Resort Hotel,1,163,2017,July,27,13,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,156.83,0,1,Canceled,2020-06-02 -Resort Hotel,0,47,2017,April,16,31,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,35.57,0,2,Check-Out,2020-02-01 -City Hotel,1,105,2016,April,17,31,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,116.67,0,0,Canceled,2018-11-02 -Resort Hotel,0,251,2015,July,42,12,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,140.0,179.0,0,Contract,74.07,0,0,Check-Out,2018-08-03 -City Hotel,0,243,2016,July,32,16,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,82.09,0,2,Check-Out,2019-03-04 -Resort Hotel,0,202,2017,April,24,12,0,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,66.39,0,1,Check-Out,2020-01-04 -City Hotel,0,204,2016,October,45,2,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,12.0,179.0,0,Transient,113.9,1,3,Check-Out,2019-09-03 -Resort Hotel,0,97,2017,July,29,18,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,185.61,0,1,Check-Out,2020-06-02 -City Hotel,1,130,2017,January,9,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.82,0,2,Canceled,2019-11-03 -Resort Hotel,0,200,2016,March,16,22,2,3,2,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,3,Refundable,12.0,223.0,0,Transient-Party,76.51,0,0,Canceled,2019-02-01 -City Hotel,0,95,2016,August,37,4,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,112.85,1,3,Check-Out,2019-05-04 -City Hotel,0,1,2016,August,20,22,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,118.86,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2016,October,42,5,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Group,78.19,1,1,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,March,23,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,1,No Deposit,248.0,179.0,0,Transient,76.26,0,0,Check-Out,2020-02-01 -Resort Hotel,1,323,2016,June,27,21,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,C,0,No Deposit,184.0,235.0,0,Transient,127.14,0,2,Canceled,2019-12-04 -Resort Hotel,0,119,2015,December,53,10,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,63.04,0,0,Check-Out,2018-07-03 -Resort Hotel,0,0,2017,March,7,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,19.0,179.0,0,Transient,133.43,0,0,Check-Out,2020-03-03 -City Hotel,0,102,2017,April,15,29,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,21.0,179.0,0,Transient-Party,76.71,0,0,Check-Out,2020-03-03 -City Hotel,1,224,2017,July,27,21,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,144.76,0,0,Canceled,2020-07-03 -City Hotel,0,132,2016,October,45,29,0,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.68,0,1,Check-Out,2019-09-03 -City Hotel,0,2,2016,January,5,29,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,71.19,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,January,3,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,3,No Deposit,12.0,88.0,0,Transient,27.95,1,0,Check-Out,2019-10-04 -Resort Hotel,0,2,2015,November,44,4,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,91.0,179.0,0,Transient,43.13,0,2,Check-Out,2018-09-02 -City Hotel,0,22,2016,July,31,11,2,2,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient,117.48,0,1,Check-Out,2018-06-02 -City Hotel,1,315,2017,June,28,26,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,22,Transient,119.64,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2015,March,17,29,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,33.47,0,0,Check-Out,2019-01-03 -City Hotel,0,2,2015,August,38,28,0,2,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,124.88,0,0,Check-Out,2018-08-03 -City Hotel,1,25,2016,October,46,15,0,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,134.78,0,0,Canceled,2019-08-04 -Resort Hotel,0,199,2016,March,22,31,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,4.0,223.0,0,Transient-Party,38.36,0,0,Check-Out,2019-03-04 -Resort Hotel,0,131,2017,August,34,28,2,5,2,1.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,132.25,0,0,Check-Out,2020-07-03 -Resort Hotel,0,16,2016,February,10,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.07,0,0,Check-Out,2019-02-01 -Resort Hotel,0,111,2016,March,17,9,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,40.3,0,2,Check-Out,2019-02-01 -City Hotel,1,232,2017,August,35,18,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,200.8,0,0,Canceled,2019-06-03 -Resort Hotel,1,15,2015,July,33,21,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,A,0,No Deposit,17.0,179.0,0,Transient,82.11,0,0,Canceled,2018-06-02 -City Hotel,0,0,2017,January,10,25,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.26,0,1,Check-Out,2020-05-03 -City Hotel,0,1,2016,June,23,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,93.88,0,0,Check-Out,2019-04-03 -City Hotel,0,75,2015,December,50,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,81.49,0,0,Check-Out,2018-11-02 -Resort Hotel,0,20,2016,October,44,22,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,60.74,0,1,Check-Out,2019-03-04 -Resort Hotel,0,158,2017,January,4,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,61.33,0,0,Check-Out,2019-10-04 -Resort Hotel,1,38,2016,March,9,13,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,47.62,0,0,Canceled,2019-02-01 -City Hotel,0,165,2017,July,32,26,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.03,0,3,Check-Out,2020-06-02 -Resort Hotel,0,63,2017,February,9,31,2,5,1,0.0,0,HB,GBR,Corporate,Corporate,1,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,54.92,0,0,Check-Out,2020-03-03 -City Hotel,1,24,2016,September,44,8,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,118.1,0,0,Canceled,2019-08-04 -City Hotel,1,330,2016,May,23,9,0,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,74.64,0,0,Canceled,2018-12-03 -Resort Hotel,1,57,2015,July,34,5,1,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient-Party,63.61,0,0,Canceled,2018-07-03 -Resort Hotel,0,264,2016,July,31,8,3,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,162.56,1,3,Check-Out,2019-05-04 -City Hotel,0,264,2015,July,34,24,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.36,0,2,Check-Out,2018-05-03 -Resort Hotel,0,4,2015,October,43,2,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,82.0,216.0,0,Transient-Party,64.34,0,0,Check-Out,2018-08-03 -City Hotel,1,301,2016,October,44,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,77.67,0,0,Canceled,2018-08-03 -City Hotel,1,156,2016,September,39,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,97.79,0,0,Canceled,2019-09-03 -City Hotel,1,74,2016,June,27,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.46,0,1,No-Show,2019-06-03 -Resort Hotel,0,4,2017,August,35,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,50.51,1,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,January,11,17,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,0,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,2018-10-03 -City Hotel,0,24,2015,September,43,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,74.19,0,0,Canceled,2018-01-03 -Resort Hotel,0,157,2017,August,37,11,0,5,1,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,227.53,0,1,Check-Out,2020-04-02 -City Hotel,0,4,2015,June,41,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.91,0,0,Check-Out,2018-10-03 -Resort Hotel,0,0,2015,July,51,5,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,45.77,0,2,Check-Out,2018-12-03 -City Hotel,1,18,2017,February,10,12,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.92,0,0,Canceled,2019-10-04 -City Hotel,0,33,2016,April,16,10,0,2,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,148.0,179.0,75,Transient-Party,101.8,0,0,Check-Out,2020-04-02 -Resort Hotel,0,99,2016,March,17,24,0,2,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,77.13,1,0,Check-Out,2019-03-04 -Resort Hotel,0,8,2017,February,8,30,0,2,2,0.0,0,HB,FRA,Online TA,Corporate,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient-Party,85.37,1,0,Check-Out,2020-03-03 -City Hotel,1,90,2016,June,28,6,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.32,0,0,Canceled,2019-04-03 -Resort Hotel,0,94,2016,April,9,28,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,73.6,1,0,Check-Out,2019-02-01 -City Hotel,0,16,2016,April,20,14,1,0,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,165.0,0,Transient,110.57,0,0,Check-Out,2019-03-04 -City Hotel,0,14,2017,August,37,10,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,141.76,0,1,Check-Out,2020-07-03 -Resort Hotel,0,36,2017,January,3,14,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,3,No Deposit,186.0,179.0,0,Transient,23.84,0,2,Check-Out,2019-11-03 -Resort Hotel,0,249,2016,May,27,17,1,4,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,142.0,179.0,0,Transient-Party,69.78,0,0,Check-Out,2019-01-03 -City Hotel,0,94,2016,June,27,23,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.52,0,3,Check-Out,2019-05-04 -City Hotel,0,140,2016,November,48,9,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,60.36,0,0,Check-Out,2019-09-03 -Resort Hotel,0,136,2016,September,36,22,0,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,118.28,1,1,Check-Out,2019-08-04 -Resort Hotel,1,248,2016,July,26,16,2,5,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,299.0,179.0,75,Transient-Party,89.31,0,0,Canceled,2019-06-03 -City Hotel,0,35,2016,March,10,18,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.84,0,2,Check-Out,2019-03-04 -City Hotel,0,92,2016,December,53,29,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,105.95,0,1,Check-Out,2019-08-04 -City Hotel,0,17,2017,May,21,25,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,74.38,0,1,Check-Out,2019-12-04 -City Hotel,1,20,2017,August,31,20,2,4,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Contract,178.56,0,1,Canceled,2020-03-03 -Resort Hotel,0,29,2016,July,33,22,2,5,3,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,172.34,0,2,Check-Out,2019-05-04 -City Hotel,0,54,2016,October,50,2,0,1,1,0.0,0,HB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,106.74,0,0,Check-Out,2019-09-03 -City Hotel,1,14,2016,August,34,6,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Canceled,2019-06-03 -Resort Hotel,0,42,2016,March,49,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,106.0,179.0,0,Transient-Party,38.33,0,0,Check-Out,2019-01-03 -Resort Hotel,0,16,2017,May,10,24,2,1,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,315.0,179.0,0,Transient-Party,99.49,1,0,Check-Out,2020-03-03 -Resort Hotel,0,38,2016,November,49,27,0,5,2,0.0,0,Undefined,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,68.29,0,0,Check-Out,2019-08-04 -City Hotel,0,26,2016,October,43,3,0,1,2,0.0,0,SC,POL,Online TA,GDS,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,115.91,0,2,Check-Out,2019-08-04 -Resort Hotel,1,50,2015,October,40,21,1,2,1,0.0,0,FB,ESP,Groups,Direct,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,35.08,0,0,Canceled,2018-07-03 -Resort Hotel,1,304,2017,May,20,9,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,F,0,No Deposit,178.0,179.0,0,Transient-Party,106.36,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2016,April,17,14,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,58.7,0,0,Check-Out,2019-02-01 -Resort Hotel,0,135,2016,September,38,7,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,156.88,1,0,Check-Out,2019-08-04 -City Hotel,0,3,2015,November,44,13,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,40.74,0,0,Check-Out,2018-08-03 -City Hotel,0,91,2016,October,43,19,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,1,No Deposit,41.0,179.0,0,Transient,149.83,0,0,Check-Out,2019-08-04 -City Hotel,0,264,2016,October,43,31,2,4,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,223.0,179.0,0,Transient-Party,97.79,0,1,Check-Out,2019-12-04 -City Hotel,0,263,2017,June,29,5,0,1,2,0.0,0,FB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,116.06,0,1,Check-Out,2020-06-02 -City Hotel,1,106,2015,July,38,12,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,80.57,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,October,42,24,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,17.0,86.0,0,Transient,42.29,0,0,Check-Out,2018-09-02 -City Hotel,0,15,2015,October,49,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,C,0,No Deposit,239.0,179.0,0,Group,96.06,0,0,Check-Out,2018-08-03 -City Hotel,1,1,2017,January,4,15,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,69.57,0,0,Canceled,2019-11-03 -City Hotel,0,3,2017,February,9,27,2,0,2,0.0,0,BB,,Direct,Direct,0,0,0,E,F,0,No Deposit,12.0,179.0,0,Transient,101.55,0,0,Canceled,2019-12-04 -City Hotel,1,0,2016,April,17,9,1,0,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,147.38,0,0,Check-Out,2019-02-01 -City Hotel,0,57,2016,March,9,17,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,73.0,0,Transient,92.5,0,0,Check-Out,2018-10-03 -City Hotel,1,8,2016,May,22,27,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,120.78,0,2,No-Show,2019-04-03 -City Hotel,0,5,2016,July,43,13,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,2,No Deposit,17.0,179.0,0,Transient,122.05,0,0,Check-Out,2019-02-01 -Resort Hotel,0,13,2015,July,30,10,1,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,111.69,0,2,Check-Out,2020-06-02 -City Hotel,0,0,2016,February,11,20,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,85.09,0,1,Check-Out,2019-02-01 -City Hotel,0,16,2017,May,23,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.97,0,2,Check-Out,2020-01-04 -City Hotel,0,41,2017,May,22,17,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,117.7,0,0,Check-Out,2020-01-04 -Resort Hotel,1,223,2016,October,24,30,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,104.62,0,0,No-Show,2019-08-04 -City Hotel,0,4,2015,August,38,18,0,3,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,100.15,0,1,Check-Out,2018-06-02 -City Hotel,0,105,2017,June,27,2,0,3,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,224.15,0,1,Check-Out,2020-06-02 -City Hotel,1,148,2017,June,25,2,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,161.08,0,0,Canceled,2020-03-03 -City Hotel,0,38,2017,March,9,16,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,115.85,1,3,Check-Out,2020-02-01 -City Hotel,1,55,2016,February,10,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,D,0,Non Refund,12.0,179.0,0,Transient,59.65,0,0,Canceled,2018-12-03 -Resort Hotel,0,98,2015,July,51,30,0,2,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,43.0,179.0,0,Transient,134.35,0,0,Check-Out,2018-06-02 -City Hotel,0,1,2017,August,37,21,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,126.11,0,0,Check-Out,2020-06-02 -City Hotel,1,45,2015,December,50,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,75.66,0,0,Canceled,2018-10-03 -City Hotel,0,46,2015,November,37,24,1,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.17,0,3,Check-Out,2018-06-02 -City Hotel,1,168,2017,June,27,21,1,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,F,A,0,Non Refund,24.0,179.0,0,Transient,140.57,0,0,Canceled,2020-05-03 -City Hotel,0,93,2017,July,15,22,2,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,129.31,0,0,Check-Out,2020-03-03 -City Hotel,1,49,2017,August,34,26,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.04,0,2,Canceled,2020-07-03 -Resort Hotel,0,206,2017,August,37,14,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,208.66,0,1,Check-Out,2020-07-03 -City Hotel,0,146,2017,July,24,2,1,3,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.71,0,0,Check-Out,2020-06-02 -City Hotel,1,316,2016,July,31,27,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,73.0,179.0,0,Transient,96.98,0,0,Canceled,2018-08-03 -Resort Hotel,0,30,2017,August,9,14,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,76.68,0,2,Check-Out,2020-07-03 -Resort Hotel,0,63,2016,May,36,9,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,H,1,No Deposit,241.0,179.0,0,Transient,205.6,1,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,March,22,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,H,I,1,No Deposit,168.0,179.0,0,Transient,0.79,0,0,Check-Out,2020-01-04 -City Hotel,0,100,2017,June,27,2,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,2,No Deposit,24.0,179.0,75,Transient,97.39,0,0,Check-Out,2020-06-02 -Resort Hotel,1,42,2017,June,27,27,0,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,152.97,0,2,Canceled,2020-04-02 -City Hotel,1,259,2016,March,17,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.88,0,0,Canceled,2019-03-04 -City Hotel,0,11,2017,May,23,14,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,119.83,0,1,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,March,8,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,47.82,0,0,Check-Out,2020-03-03 -City Hotel,1,265,2016,July,29,23,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,B,0,No Deposit,10.0,179.0,0,Contract,113.01,0,0,Canceled,2019-04-03 -City Hotel,0,34,2016,July,43,21,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,85.37,0,1,Check-Out,2019-01-03 -Resort Hotel,0,0,2015,November,44,27,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,72.04,0,0,Check-Out,2018-12-03 -City Hotel,1,25,2016,October,44,28,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.55,0,0,Canceled,2019-08-04 -Resort Hotel,0,2,2017,March,11,22,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,224.0,0,Transient-Party,40.99,0,0,Check-Out,2020-04-02 -City Hotel,1,13,2016,January,3,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,70.22,0,0,No-Show,2018-11-02 -Resort Hotel,1,16,2016,September,42,28,2,7,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,67.49,0,0,No-Show,2019-08-04 -City Hotel,1,370,2015,August,36,6,2,1,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,79.39,0,0,Canceled,2018-08-03 -Resort Hotel,0,40,2015,September,43,8,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Group,97.73,0,0,Check-Out,2018-08-03 -City Hotel,1,17,2017,August,9,10,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,87.71,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2015,August,36,24,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,1,No Deposit,250.0,179.0,0,Group,64.4,1,1,Check-Out,2019-06-03 -Resort Hotel,0,100,2015,September,42,5,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,3,No Deposit,12.0,179.0,0,Transient,88.23,0,0,Check-Out,2019-08-04 -City Hotel,1,153,2017,June,28,23,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,0,Transient,121.05,0,0,Canceled,2020-06-02 -City Hotel,1,158,2015,July,31,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,81.29,0,0,Canceled,2019-02-01 -City Hotel,0,7,2017,July,21,19,0,2,2,0.0,0,HB,ESP,Online TA,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,94.0,1,0,Check-Out,2020-04-02 -City Hotel,1,15,2017,April,14,28,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,1.02,0,0,Canceled,2020-02-01 -City Hotel,0,45,2017,February,10,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,42.05,0,1,Check-Out,2018-11-02 -City Hotel,0,55,2016,October,46,24,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,148.15,0,2,Check-Out,2019-08-04 -City Hotel,1,90,2016,March,9,16,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.76,0,0,Canceled,2019-02-01 -City Hotel,0,69,2015,October,42,21,2,10,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,62.97,0,2,Check-Out,2018-09-02 -City Hotel,0,40,2017,March,16,27,2,3,3,1.0,0,BB,ESP,Online TA,TA/TO,1,0,0,E,G,1,No Deposit,11.0,179.0,0,Transient,106.57,0,3,Check-Out,2020-02-01 -City Hotel,0,230,2015,July,30,20,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.31,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2016,January,3,5,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,71.0,0,Transient,35.13,0,0,Check-Out,2018-11-02 -City Hotel,0,74,2016,July,26,22,1,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,L,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-06-03 -City Hotel,0,108,2016,December,50,23,0,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient-Party,100.71,0,0,Check-Out,2019-11-03 -Resort Hotel,0,16,2015,December,52,10,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,44.0,179.0,0,Transient,34.58,0,0,Check-Out,2018-12-03 -City Hotel,1,0,2016,December,49,15,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,264.0,0,Transient,2.24,0,0,Canceled,2019-12-04 -City Hotel,0,14,2017,July,27,2,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,128.51,0,2,Check-Out,2020-05-03 -Resort Hotel,0,24,2015,December,53,30,0,1,2,0.0,0,Undefined,POL,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,78.31,0,0,Check-Out,2018-10-03 -City Hotel,0,67,2016,October,42,10,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,115.31,0,2,Check-Out,2019-08-04 -City Hotel,0,36,2015,November,52,11,0,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,62.67,0,0,Check-Out,2018-08-03 -City Hotel,0,217,2017,August,32,8,1,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.21,0,1,Check-Out,2020-04-02 -City Hotel,1,430,2017,June,37,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,101.06,0,0,Canceled,2018-08-03 -City Hotel,0,11,2017,May,15,5,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient-Party,76.15,1,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,October,42,12,2,3,1,0.0,0,BB,,Direct,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,114.44,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,February,11,27,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,D,1,No Deposit,46.0,179.0,0,Transient,67.13,0,0,Check-Out,2019-03-04 -City Hotel,1,98,2017,February,4,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,65.43,0,1,Canceled,2018-11-02 -City Hotel,0,158,2016,October,41,18,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.69,0,1,Check-Out,2019-08-04 -City Hotel,1,90,2017,May,20,28,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,285.0,179.0,0,Transient-Party,72.57,0,0,Canceled,2019-12-04 -City Hotel,0,14,2017,June,28,5,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,128.12,0,0,Check-Out,2020-02-01 -City Hotel,1,249,2016,August,36,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,7.0,179.0,0,Group,106.42,0,1,Canceled,2018-06-02 -Resort Hotel,0,116,2016,July,31,31,2,7,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,134.23,0,0,Check-Out,2019-04-03 -City Hotel,1,1,2016,September,51,27,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,158.4,0,0,No-Show,2019-06-03 -City Hotel,0,273,2017,July,33,31,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,143.09,0,2,Check-Out,2020-06-02 -City Hotel,1,10,2016,November,49,29,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,115.35,0,0,Canceled,2019-08-04 -City Hotel,1,393,2016,May,37,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,71.0,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,November,50,1,2,5,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,93.0,179.0,66,Transient,56.54,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2017,March,11,22,0,1,1,0.0,0,BB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,13.0,179.0,75,Transient-Party,83.77,1,0,Check-Out,2020-01-04 -City Hotel,1,173,2015,October,46,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,38,Transient,59.43,0,0,Canceled,2018-08-03 -Resort Hotel,1,177,2017,August,37,22,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,241.0,179.0,0,Transient,252.0,0,3,Canceled,2020-03-03 -Resort Hotel,0,158,2017,August,35,2,3,5,3,0.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,158.99,0,0,Check-Out,2020-07-03 -City Hotel,0,16,2017,August,37,28,2,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,160.43,1,2,Check-Out,2020-07-03 -Resort Hotel,0,140,2016,April,18,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,244.0,179.0,0,Transient,37.84,0,0,Check-Out,2019-03-04 -City Hotel,0,21,2016,October,41,15,0,3,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.71,0,2,Check-Out,2019-09-03 -Resort Hotel,1,0,2016,May,15,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,15.0,72.0,0,Transient,34.81,0,0,Canceled,2019-02-01 -City Hotel,1,165,2016,June,22,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,99.26,0,0,Canceled,2018-11-02 -Resort Hotel,0,141,2016,March,10,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,46.9,0,0,Check-Out,2019-04-03 -City Hotel,1,0,2016,January,4,11,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,62.62,0,1,No-Show,2018-11-02 -Resort Hotel,1,209,2016,March,14,25,0,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,179.0,0,Transient-Party,62.13,0,0,Canceled,2019-02-01 -Resort Hotel,0,16,2017,April,23,7,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,239.0,179.0,0,Transient,114.16,1,1,Check-Out,2020-04-02 -City Hotel,1,332,2016,October,44,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,69.01,0,0,Canceled,2019-11-03 -City Hotel,0,203,2017,May,26,8,2,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,136.16,0,0,Check-Out,2020-02-01 -City Hotel,0,10,2017,March,11,12,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.03,0,1,Check-Out,2020-03-03 -Resort Hotel,1,10,2017,February,10,15,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,17.0,331.0,0,Transient,32.18,0,0,Canceled,2020-04-02 -City Hotel,0,11,2017,May,16,21,0,1,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,90.18,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,March,10,4,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,225.0,0,Transient-Party,61.85,0,0,Check-Out,2020-03-03 -Resort Hotel,0,61,2017,January,4,28,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,59.71,0,2,Check-Out,2019-12-04 -City Hotel,0,29,2016,October,42,5,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,165.47,0,1,Check-Out,2019-06-03 -Resort Hotel,1,158,2016,August,32,17,2,5,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,49.67,0,0,Canceled,2018-06-02 -Resort Hotel,0,158,2016,March,11,13,2,6,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,212.0,179.0,0,Transient,71.61,0,0,Check-Out,2019-03-04 -Resort Hotel,0,13,2016,June,26,19,0,4,2,1.0,0,FB,CHE,Direct,Direct,0,0,0,L,F,1,No Deposit,15.0,179.0,0,Transient,100.81,1,2,Check-Out,2019-02-01 -Resort Hotel,0,89,2017,March,9,21,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,18.0,179.0,0,Transient,204.31,0,0,Check-Out,2019-12-04 -City Hotel,1,52,2015,November,51,15,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,60.67,0,0,Canceled,2018-08-03 -City Hotel,0,2,2016,November,51,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,74.67,0,0,Check-Out,2019-11-03 -Resort Hotel,0,35,2015,July,30,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,249.5,0,2,Check-Out,2018-06-02 -City Hotel,0,13,2017,July,34,13,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,94.0,179.0,0,Contract,70.62,0,1,Check-Out,2020-06-02 -City Hotel,1,1,2016,August,35,30,0,1,1,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -City Hotel,1,27,2015,September,46,21,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,82.74,0,0,Canceled,2018-08-03 -City Hotel,0,90,2016,August,33,6,2,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,113.39,0,1,Check-Out,2019-06-03 -City Hotel,0,3,2016,May,20,10,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,90.45,0,0,Check-Out,2019-01-03 -City Hotel,1,36,2016,October,44,18,1,2,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,173.46,0,1,Check-Out,2019-07-04 -City Hotel,0,14,2015,October,46,13,2,1,1,0.0,0,BB,IRL,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,83.31,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,October,42,5,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,239.0,179.0,0,Transient,90.26,0,3,Check-Out,2018-08-03 -City Hotel,1,395,2017,July,38,13,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,121.44,0,0,Canceled,2020-06-02 -Resort Hotel,0,39,2017,May,25,24,0,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,281.0,179.0,0,Transient-Party,72.36,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,May,26,2,0,1,1,0.0,0,BB,IRL,Online TA,Corporate,0,0,0,A,A,0,No Deposit,12.0,247.0,0,Transient,83.27,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,February,12,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,76.0,0,Transient,34.16,0,0,Check-Out,2018-12-03 -Resort Hotel,0,10,2015,December,45,28,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Contract,63.59,0,2,Check-Out,2018-08-03 -City Hotel,0,106,2016,April,18,20,2,5,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,122.27,0,1,Canceled,2019-03-04 -Resort Hotel,1,116,2016,June,40,8,2,5,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,264.0,179.0,0,Transient,109.22,0,0,Canceled,2019-04-03 -City Hotel,0,4,2016,February,9,5,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,63,Transient,63.63,0,0,Check-Out,2018-12-03 -City Hotel,0,199,2017,April,22,25,1,2,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient,74.7,0,0,Check-Out,2020-05-03 -Resort Hotel,0,2,2016,October,43,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,35.5,1,0,Check-Out,2019-09-03 -City Hotel,1,402,2015,July,36,10,2,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,104.14,0,0,Canceled,2018-06-02 -City Hotel,1,89,2017,March,20,31,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,65.26,0,0,Canceled,2020-03-03 -Resort Hotel,1,321,2017,June,27,11,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,A,E,0,No Deposit,183.0,179.0,0,Transient,99.08,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2017,May,22,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,137.99,1,0,Check-Out,2020-03-03 -City Hotel,1,17,2017,February,7,12,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,95.87,0,0,Canceled,2020-02-01 -City Hotel,0,1,2016,November,51,3,0,1,2,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient,77.27,0,0,Check-Out,2019-09-03 -Resort Hotel,1,290,2015,September,45,28,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,65.1,0,2,Canceled,2017-12-03 -Resort Hotel,0,14,2016,October,45,10,0,1,1,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,224.0,0,Transient-Party,32.33,0,0,Check-Out,2019-07-04 -City Hotel,1,259,2017,May,23,26,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.59,0,3,Canceled,2019-11-03 -Resort Hotel,0,113,2016,April,18,25,2,3,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,81.08,1,2,Check-Out,2019-03-04 -City Hotel,0,5,2015,October,43,22,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.62,0,2,Check-Out,2018-08-03 -City Hotel,0,49,2017,March,11,18,0,3,2,1.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,5.0,179.0,0,Transient,152.85,0,1,Check-Out,2019-11-03 -City Hotel,0,143,2017,June,20,22,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,171.16,1,1,Check-Out,2020-04-02 -Resort Hotel,0,106,2017,June,29,27,1,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,92.0,179.0,0,Transient,110.13,0,0,Check-Out,2020-07-03 -City Hotel,0,38,2016,March,18,16,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.57,0,0,Check-Out,2019-03-04 -City Hotel,0,250,2017,June,34,6,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,252.0,1,1,Check-Out,2020-07-03 -Resort Hotel,0,40,2016,December,17,29,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,50.99,0,2,Check-Out,2019-10-04 -City Hotel,0,237,2016,October,45,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.78,1,0,Check-Out,2019-03-04 -Resort Hotel,0,15,2016,October,43,5,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,136.4,1,0,Check-Out,2019-09-03 -City Hotel,0,272,2016,September,26,4,2,7,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,78.84,0,0,Check-Out,2019-06-03 -Resort Hotel,1,297,2015,August,34,27,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,186.72,0,0,Canceled,2018-07-03 -Resort Hotel,0,57,2016,February,12,30,1,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,35.0,179.0,0,Transient-Party,71.47,0,0,Check-Out,2018-11-02 -City Hotel,1,22,2016,February,9,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,331.0,0,Transient,70.74,0,0,Canceled,2018-10-03 -Resort Hotel,1,16,2017,May,26,16,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,G,E,2,No Deposit,292.0,179.0,0,Transient,115.65,0,0,Canceled,2020-02-01 -Resort Hotel,1,107,2015,November,53,20,2,1,2,0.0,0,BB,POL,Groups,TA/TO,0,1,0,A,D,0,Non Refund,11.0,179.0,0,Transient,61.49,0,0,Canceled,2018-11-02 -Resort Hotel,0,191,2017,March,9,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,81.0,179.0,0,Transient,74.58,0,1,Check-Out,2020-03-03 -City Hotel,0,11,2016,October,22,6,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.67,0,1,Check-Out,2019-05-04 -City Hotel,0,100,2017,May,21,17,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,95.56,0,0,Canceled,2020-02-01 -City Hotel,0,19,2017,October,17,27,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.02,0,1,Check-Out,2019-11-03 -City Hotel,0,49,2016,April,25,11,2,1,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient,105.27,0,0,Check-Out,2019-04-03 -Resort Hotel,0,2,2017,February,21,27,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,0,G,F,0,No Deposit,13.0,179.0,0,Transient,0.0,0,3,Check-Out,2020-03-03 -Resort Hotel,0,26,2016,December,50,22,2,5,2,0.0,0,Undefined,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,30.0,179.0,42,Transient-Party,78.25,0,0,Check-Out,2019-01-03 -Resort Hotel,0,163,2016,October,43,13,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,124.88,1,1,Check-Out,2019-09-03 -Resort Hotel,0,10,2016,August,53,2,1,3,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,10.0,179.0,0,Transient,193.17,1,1,Check-Out,2019-12-04 -City Hotel,1,115,2016,January,4,5,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,45.0,179.0,0,Transient,95.22,0,0,Canceled,2018-11-02 -City Hotel,0,195,2017,July,26,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,122.47,0,0,Check-Out,2020-07-03 -City Hotel,0,7,2016,January,4,7,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,76.25,0,1,Check-Out,2019-10-04 -City Hotel,1,16,2016,August,37,12,2,5,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,184.36,0,0,No-Show,2018-06-02 -Resort Hotel,1,258,2016,September,42,24,1,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,122.11,0,0,Canceled,2019-06-03 -City Hotel,1,296,2017,May,32,30,1,4,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,73.19,0,0,Canceled,2020-03-03 -City Hotel,0,36,2017,December,4,9,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.1,0,1,Check-Out,2019-11-03 -Resort Hotel,0,95,2017,April,17,16,2,5,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,E,A,0,No Deposit,378.0,179.0,0,Contract,100.78,0,0,Check-Out,2020-04-02 -Resort Hotel,1,55,2017,July,31,17,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Refundable,241.0,179.0,0,Transient,157.2,0,1,Canceled,2020-06-02 -City Hotel,0,89,2016,October,45,25,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,86.56,0,0,Check-Out,2019-07-04 -City Hotel,1,87,2016,January,4,15,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.86,0,0,Canceled,2018-09-02 -City Hotel,0,51,2016,July,43,5,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,34.0,179.0,0,Transient,88.07,0,0,Check-Out,2019-06-03 -City Hotel,0,194,2016,August,35,15,2,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,E,D,1,No Deposit,14.0,179.0,0,Transient,217.29,1,1,Check-Out,2018-08-03 -City Hotel,1,150,2016,January,2,20,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Non Refund,238.0,179.0,0,Transient,78.34,0,0,Canceled,2018-10-03 -City Hotel,1,259,2015,July,32,4,0,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.38,0,0,Canceled,2018-05-03 -Resort Hotel,1,97,2016,April,14,27,0,2,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,108.01,0,0,Canceled,2018-10-03 -City Hotel,0,251,2016,October,39,2,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,142.42,0,3,Check-Out,2019-08-04 -City Hotel,1,27,2016,March,16,20,2,1,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,100.47,0,0,Canceled,2019-01-03 -City Hotel,0,11,2016,January,3,24,0,1,1,0.0,0,Undefined,PRT,Online TA,Corporate,1,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,79.91,0,0,Check-Out,2019-11-03 -Resort Hotel,1,159,2015,August,31,20,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,81.0,179.0,0,Transient,187.72,0,0,Canceled,2019-01-03 -City Hotel,1,20,2016,December,50,30,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,40.0,179.0,0,Transient,62.98,0,0,Canceled,2018-11-02 -City Hotel,0,153,2015,September,37,28,1,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,62.55,0,0,Check-Out,2018-06-02 -City Hotel,0,43,2016,June,22,15,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.67,0,0,Check-Out,2019-06-03 -City Hotel,1,15,2016,August,34,29,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,2018-08-03 -City Hotel,0,15,2016,December,50,28,1,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,250.0,0,Transient-Party,90.11,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2017,May,19,4,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,140.02,1,3,Check-Out,2020-01-04 -Resort Hotel,1,3,2016,August,27,17,0,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Canceled,2019-07-04 -Resort Hotel,0,201,2017,July,23,28,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,105.71,0,2,Check-Out,2019-11-03 -Resort Hotel,0,172,2016,July,31,20,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,85.59,0,0,Check-Out,2019-05-04 -City Hotel,0,14,2016,August,36,28,0,1,1,0.0,0,HB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient,85.61,0,0,Check-Out,2019-07-04 -City Hotel,1,101,2015,September,35,15,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,137.0,179.0,0,Contract,81.84,0,2,Canceled,2019-05-04 -City Hotel,1,303,2017,June,29,15,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,174.84,0,0,Canceled,2019-12-04 -Resort Hotel,0,150,2017,July,22,10,0,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,135.34,0,3,Check-Out,2020-06-02 -Resort Hotel,0,30,2017,June,33,21,4,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,154.04,0,1,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,May,11,13,2,1,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,31.54,0,0,Check-Out,2020-04-02 -City Hotel,0,203,2016,May,28,25,0,1,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.25,0,0,Check-Out,2019-06-03 -Resort Hotel,0,24,2017,March,10,30,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,249.0,179.0,0,Transient,112.23,0,1,Check-Out,2019-10-04 -Resort Hotel,1,213,2017,July,39,29,2,5,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,245.0,179.0,0,Transient,197.62,0,2,Canceled,2020-05-03 -Resort Hotel,0,89,2017,December,10,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,170.0,179.0,0,Transient,92.34,1,0,Check-Out,2019-11-03 -City Hotel,0,47,2015,August,33,12,0,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,117.22,0,0,Check-Out,2018-05-03 -Resort Hotel,0,33,2017,July,34,7,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,244.9,0,2,Check-Out,2018-06-02 -Resort Hotel,0,341,2017,August,33,10,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,122.36,0,2,Check-Out,2020-07-03 -Resort Hotel,0,21,2015,October,43,21,1,4,3,1.0,0,BB,ESP,Online TA,Direct,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,237.76,1,2,Check-Out,2019-01-03 -Resort Hotel,0,227,2016,October,45,31,4,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,187.34,0,1,Check-Out,2019-08-04 -City Hotel,0,1,2017,April,18,2,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,D,F,0,No Deposit,10.0,57.0,0,Transient-Party,125.19,0,0,Check-Out,2020-02-01 -City Hotel,0,29,2015,August,36,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,123.99,0,1,Check-Out,2018-06-02 -City Hotel,1,158,2016,April,17,23,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,76.16,0,0,Canceled,2018-08-03 -Resort Hotel,0,40,2017,April,23,28,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,131.14,0,2,Check-Out,2020-02-01 -City Hotel,1,155,2017,November,31,15,2,2,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Canceled,2019-08-04 -City Hotel,0,307,2015,September,38,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,A,0,No Deposit,1.0,179.0,0,Contract,62.79,0,0,Canceled,2018-07-03 -Resort Hotel,1,28,2015,December,53,13,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,318.0,179.0,0,Transient,46.87,0,3,Canceled,2018-11-02 -City Hotel,0,7,2016,November,44,2,2,3,3,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.11,0,1,Check-Out,2019-12-04 -City Hotel,1,252,2015,September,35,17,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,88.85,0,0,Canceled,2018-05-03 -Resort Hotel,0,34,2016,January,11,6,2,0,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,222.0,0,Transient,37.88,0,0,Check-Out,2019-10-04 -Resort Hotel,0,19,2016,July,33,21,0,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,233.63,1,0,Check-Out,2020-05-03 -City Hotel,0,6,2015,December,50,31,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient,0.0,1,2,Check-Out,2018-09-02 -Resort Hotel,0,1,2016,August,37,28,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,64.01,1,1,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,June,25,6,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,17.0,202.0,0,Transient,61.34,0,0,Check-Out,2020-03-03 -City Hotel,0,25,2017,May,53,30,2,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,19.0,179.0,0,Transient,86.06,1,0,Check-Out,2020-01-04 -City Hotel,1,62,2017,May,23,10,0,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.99,0,0,Canceled,2020-02-01 -Resort Hotel,1,105,2017,May,23,29,2,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,76.0,179.0,0,Transient,107.38,0,0,Canceled,2020-04-02 -City Hotel,0,0,2016,October,4,11,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.03,0,1,Check-Out,2019-05-04 -Resort Hotel,1,102,2016,January,9,24,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Non Refund,243.0,179.0,0,Transient,132.14,0,0,Canceled,2018-10-03 -Resort Hotel,0,160,2016,August,38,6,2,3,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,186.33,0,1,Check-Out,2019-08-04 -City Hotel,0,46,2017,January,3,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,109.97,0,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2016,January,4,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,33.41,0,0,Check-Out,2019-01-03 -Resort Hotel,0,261,2017,August,24,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,207.88,0,1,Check-Out,2020-03-03 -Resort Hotel,0,191,2017,June,26,13,2,5,2,0.0,0,HB,BEL,Online TA,Direct,0,0,0,G,G,1,No Deposit,192.0,179.0,0,Transient,156.52,1,2,Check-Out,2020-07-03 -City Hotel,0,37,2015,October,43,18,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,63,Contract,54.39,0,0,Check-Out,2018-08-03 -City Hotel,1,379,2016,October,43,16,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,107.51,0,0,Canceled,2018-08-03 -City Hotel,1,411,2016,September,43,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.01,0,0,Canceled,2018-08-03 -Resort Hotel,0,153,2017,February,9,15,2,3,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,73.46,0,0,Check-Out,2020-02-01 -City Hotel,1,8,2017,January,4,28,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,34.86,0,0,Canceled,2019-10-04 -Resort Hotel,0,43,2017,June,27,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,183.42,1,0,Check-Out,2020-04-02 -City Hotel,0,2,2016,May,16,24,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,71.98,0,1,Check-Out,2019-02-01 -Resort Hotel,1,15,2016,December,19,31,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,1,No Deposit,318.0,179.0,0,Transient,180.32,0,0,Canceled,2019-06-03 -City Hotel,1,24,2016,August,39,20,2,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,186.91,0,1,Canceled,2019-06-03 -Resort Hotel,0,166,2017,August,38,24,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,187.1,1,3,Check-Out,2020-06-02 -Resort Hotel,0,105,2015,December,49,30,2,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,18,Transient-Party,73.64,0,0,Check-Out,2018-12-03 -Resort Hotel,0,11,2016,April,10,28,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,66.8,1,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2015,September,43,31,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,126.04,1,1,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,October,35,2,1,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,38.05,0,0,Check-Out,2019-07-04 -City Hotel,0,47,2016,May,21,21,1,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.65,0,1,Check-Out,2019-03-04 -Resort Hotel,0,243,2017,March,16,29,0,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,77.57,0,1,Check-Out,2020-04-02 -City Hotel,0,42,2016,October,44,17,1,4,2,0.0,0,BB,AUT,Online TA,TA/TO,1,0,1,A,D,2,No Deposit,11.0,179.0,0,Group,100.64,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,February,10,26,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,34.86,1,0,Check-Out,2019-01-03 -City Hotel,0,12,2016,February,9,6,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient,75.37,0,1,Check-Out,2019-04-03 -City Hotel,1,194,2016,May,21,22,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient,104.72,0,0,Canceled,2019-02-01 -City Hotel,1,299,2017,July,32,6,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,116.39,0,1,Canceled,2020-04-02 -City Hotel,1,114,2017,December,50,10,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,A,0,Non Refund,10.0,179.0,0,Transient,60.17,0,0,Canceled,2019-11-03 -Resort Hotel,0,42,2015,December,50,10,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,305.0,179.0,0,Transient-Party,42.56,0,0,Check-Out,2018-08-03 -City Hotel,1,232,2015,September,43,31,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.59,0,0,Canceled,2017-12-03 -Resort Hotel,1,53,2016,March,15,29,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,130.87,0,0,Canceled,2019-03-04 -City Hotel,0,51,2016,July,32,23,0,2,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,134.62,0,2,Check-Out,2019-05-04 -City Hotel,0,0,2016,March,18,14,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,115.08,0,1,Check-Out,2020-02-01 -Resort Hotel,0,151,2017,January,10,8,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,275.0,179.0,0,Transient,64.67,0,0,Canceled,2019-11-03 -City Hotel,0,107,2017,May,21,24,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient-Party,66.24,0,0,Check-Out,2020-05-03 -City Hotel,0,191,2016,July,35,5,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.69,0,1,Check-Out,2019-05-04 -City Hotel,0,10,2017,April,17,21,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.34,0,2,Check-Out,2020-03-03 -City Hotel,1,108,2017,May,28,28,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,169.64,0,0,Canceled,2019-03-04 -Resort Hotel,0,51,2017,February,8,20,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,94.5,0,0,Check-Out,2019-08-04 -City Hotel,0,201,2017,January,4,25,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,97.11,0,0,Check-Out,2019-11-03 -City Hotel,0,244,2017,May,17,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,278.0,179.0,0,Transient-Party,76.95,0,0,Check-Out,2020-01-04 -Resort Hotel,0,1,2015,December,52,2,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,D,D,0,No Deposit,16.0,250.0,0,Transient,38.52,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2015,December,49,4,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,195.0,179.0,0,Transient-Party,107.0,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2017,July,21,11,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.88,0,1,Check-Out,2020-05-03 -City Hotel,0,143,2016,August,27,2,2,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,A,3,No Deposit,75.0,179.0,0,Transient,125.16,0,0,Check-Out,2019-03-04 -City Hotel,1,278,2016,March,17,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,19,Transient,120.23,0,0,Canceled,2019-02-01 -Resort Hotel,0,94,2015,December,45,12,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,155.71,0,0,Check-Out,2018-12-03 -Resort Hotel,0,50,2016,February,11,28,1,2,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,153.0,179.0,0,Transient,76.14,0,0,Check-Out,2018-11-02 -City Hotel,1,44,2017,June,20,3,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,105.88,0,0,Check-Out,2020-04-02 -Resort Hotel,0,359,2015,August,36,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,3.0,179.0,0,Contract,60.45,0,0,Check-Out,2018-08-03 -City Hotel,0,152,2016,October,44,18,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,71.35,0,1,Check-Out,2019-06-03 -Resort Hotel,1,327,2015,August,37,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.71,0,0,Canceled,2018-08-03 -City Hotel,0,18,2017,May,21,23,2,2,3,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,191.12,0,0,Check-Out,2020-03-03 -City Hotel,0,45,2017,August,33,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,105.05,1,3,Check-Out,2020-06-02 -City Hotel,1,309,2016,March,7,9,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.52,0,0,Canceled,2018-11-02 -City Hotel,0,106,2017,March,11,27,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,203.65,0,1,Check-Out,2020-02-01 -Resort Hotel,0,0,2017,January,3,12,2,5,1,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,253.0,0,Transient-Party,38.45,0,0,Check-Out,2019-12-04 -Resort Hotel,0,47,2017,January,12,29,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,73.95,0,1,Check-Out,2019-10-04 -City Hotel,1,40,2017,February,10,17,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,54.29,0,2,Canceled,2020-03-03 -Resort Hotel,1,287,2017,April,16,24,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,62.01,0,0,Canceled,2019-02-01 -Resort Hotel,0,59,2016,April,36,22,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,211.76,0,0,Check-Out,2019-03-04 -Resort Hotel,1,157,2016,May,23,16,1,2,2,0.0,0,FB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,78.74,0,0,Canceled,2019-05-04 -Resort Hotel,0,3,2017,April,10,15,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,160.66,0,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2017,April,10,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,116.85,0,1,Check-Out,2020-02-01 -City Hotel,0,83,2015,September,45,30,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.33,0,0,Check-Out,2018-08-03 -City Hotel,0,41,2017,February,11,29,2,3,2,2.0,0,BB,ITA,Online TA,Direct,0,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,130.36,0,3,Check-Out,2019-10-04 -City Hotel,0,245,2015,July,34,19,1,3,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Contract,140.31,0,1,Check-Out,2018-05-03 -City Hotel,0,49,2016,October,45,27,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,B,1,No Deposit,12.0,179.0,0,Transient,91.17,0,2,Check-Out,2019-09-03 -Resort Hotel,0,89,2017,May,24,22,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Contract,91.07,0,0,Check-Out,2020-04-02 -Resort Hotel,0,366,2016,October,44,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,66.67,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,November,50,15,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,86.0,179.0,0,Group,84.26,0,0,Check-Out,2018-11-02 -City Hotel,1,165,2016,August,33,28,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,193.02,0,0,Canceled,2019-04-03 -City Hotel,0,35,2017,March,10,28,2,2,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,144.59,0,2,Check-Out,2020-03-03 -City Hotel,0,246,2016,July,33,5,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,11.0,179.0,0,Transient,162.78,0,3,Check-Out,2019-05-04 -Resort Hotel,0,97,2016,June,27,21,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,160.46,0,1,Check-Out,2019-06-03 -City Hotel,0,18,2017,June,31,20,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,175.67,0,1,Check-Out,2020-06-02 -City Hotel,0,291,2015,July,33,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,104.58,0,0,Check-Out,2018-05-03 -Resort Hotel,0,158,2016,June,26,10,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,179.0,0,Transient-Party,50.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,2,2016,June,44,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,A,C,1,No Deposit,241.0,179.0,0,Group,0.0,0,0,Check-Out,2019-08-04 -Resort Hotel,1,47,2017,July,26,8,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,127.14,0,0,Canceled,2020-02-01 -City Hotel,0,92,2015,September,42,6,2,4,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient-Party,114.32,0,0,Check-Out,2018-08-03 -Resort Hotel,0,39,2016,December,18,24,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,110.0,179.0,0,Transient-Party,30.3,0,0,Check-Out,2019-04-03 -City Hotel,0,28,2017,May,22,29,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.22,0,1,Check-Out,2020-04-02 -Resort Hotel,1,310,2017,August,9,29,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,Non Refund,84.0,179.0,0,Transient,75.25,0,2,Canceled,2019-11-03 -Resort Hotel,0,16,2016,March,11,24,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,185.0,179.0,0,Transient,45.22,0,0,Check-Out,2019-03-04 -City Hotel,0,186,2015,October,53,31,2,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,86.1,0,2,Check-Out,2018-08-03 -City Hotel,1,103,2017,May,22,20,1,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,158.61,0,0,Canceled,2019-09-03 -City Hotel,1,282,2017,August,31,4,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,F,0,Non Refund,10.0,179.0,0,Contract,112.29,0,0,Canceled,2019-02-01 -City Hotel,0,278,2017,June,22,17,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,107.13,0,2,Check-Out,2019-02-01 -Resort Hotel,1,252,2016,July,27,29,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient,81.02,0,0,Canceled,2019-05-04 -City Hotel,0,33,2016,March,17,14,0,3,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.45,0,0,Check-Out,2019-01-03 -City Hotel,1,155,2016,August,43,6,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.77,0,0,Canceled,2019-11-03 -City Hotel,0,19,2015,October,44,24,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,74.49,0,0,Canceled,2018-08-03 -City Hotel,0,145,2016,September,51,27,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,99.85,0,3,Check-Out,2018-12-03 -City Hotel,0,34,2016,January,53,13,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient,91.83,0,1,Check-Out,2019-02-01 -City Hotel,0,19,2017,March,16,7,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,75.1,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,January,4,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,77.0,0,Transient,35.63,1,0,Check-Out,2018-11-02 -City Hotel,0,18,2016,January,2,2,1,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.39,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2017,February,3,29,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,76.76,0,2,Check-Out,2020-06-02 -City Hotel,1,244,2016,February,4,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,21,Transient,59.28,0,0,Canceled,2018-12-03 -Resort Hotel,0,300,2016,July,25,14,0,5,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,98.8,0,0,Check-Out,2019-04-03 -City Hotel,0,240,2015,October,43,18,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,79.83,0,0,Check-Out,2018-08-03 -City Hotel,1,148,2016,May,22,24,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,84.41,0,0,Canceled,2019-01-03 -Resort Hotel,0,37,2016,December,44,22,2,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,88.06,1,2,Check-Out,2019-06-03 -Resort Hotel,1,154,2016,June,23,10,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,Non Refund,177.0,179.0,0,Transient,61.38,0,0,Canceled,2019-04-03 -Resort Hotel,0,1,2016,January,38,30,2,4,2,2.0,0,BB,POL,Direct,Direct,0,0,0,F,F,2,No Deposit,248.0,179.0,0,Transient,42.23,0,1,Check-Out,2018-11-02 -City Hotel,1,51,2016,May,21,27,2,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,153.49,0,0,Canceled,2019-02-01 -City Hotel,0,14,2017,June,24,20,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,79.31,0,0,Check-Out,2020-06-02 -City Hotel,1,41,2016,December,50,27,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,230.0,0,Transient,89.45,0,0,Canceled,2018-12-03 -Resort Hotel,1,3,2017,January,4,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,15.0,179.0,0,Transient,34.29,0,0,Canceled,2019-10-04 -City Hotel,1,104,2015,September,42,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.44,0,0,Canceled,2018-08-03 -Resort Hotel,0,109,2017,March,13,31,1,5,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,G,0,No Deposit,12.0,179.0,0,Transient-Party,92.58,0,0,Check-Out,2019-11-03 -City Hotel,0,3,2017,July,31,7,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,80.09,0,1,Check-Out,2020-06-02 -Resort Hotel,1,104,2016,March,53,20,2,5,2,0.0,0,Undefined,ITA,Offline TA/TO,TA/TO,0,0,0,E,A,2,No Deposit,298.0,179.0,0,Transient-Party,70.45,0,0,Canceled,2019-02-01 -City Hotel,0,44,2016,April,44,31,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient-Party,134.31,0,1,Check-Out,2019-08-04 -City Hotel,1,1,2015,November,45,28,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,96.26,0,0,Canceled,2019-12-04 -City Hotel,1,148,2017,April,22,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,147.55,0,0,Canceled,2018-10-03 -City Hotel,0,65,2017,March,26,28,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,149.72,0,1,Check-Out,2020-02-01 -Resort Hotel,0,96,2015,December,43,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,149.95,1,0,Check-Out,2018-06-02 -City Hotel,0,1,2016,April,11,27,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.26,0,1,Check-Out,2019-03-04 -City Hotel,1,323,2015,September,44,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient-Party,59.88,0,0,Canceled,2017-11-02 -City Hotel,0,0,2015,August,36,26,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,153.88,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2015,September,50,27,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,1,No Deposit,14.0,179.0,0,Transient,121.53,0,2,Check-Out,2019-07-04 -City Hotel,0,31,2016,August,20,16,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,127.05,0,2,Check-Out,2019-04-03 -City Hotel,0,44,2016,November,24,20,2,0,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,93.0,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,March,10,13,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,66.0,0,Transient,30.2,0,0,Check-Out,2018-11-02 -Resort Hotel,0,89,2015,December,50,27,2,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,34.68,0,0,Check-Out,2018-08-03 -City Hotel,0,34,2017,July,29,10,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.78,0,1,Check-Out,2020-07-03 -City Hotel,1,316,2015,September,38,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,67.67,0,0,Canceled,2017-10-03 -Resort Hotel,1,251,2016,October,41,13,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,Non Refund,13.0,185.0,0,Transient,32.47,0,0,Canceled,2019-09-03 -City Hotel,0,5,2017,June,21,7,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.4,1,1,Check-Out,2020-05-03 -City Hotel,1,26,2016,January,5,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.08,0,0,Canceled,2018-07-03 -Resort Hotel,0,162,2017,August,37,27,0,2,2,1.0,0,BB,USA,Direct,Direct,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient,96.31,0,3,Check-Out,2020-01-04 -Resort Hotel,0,156,2017,July,29,2,3,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Refundable,168.0,179.0,0,Transient,107.95,0,0,Check-Out,2020-06-02 -Resort Hotel,0,6,2017,May,27,21,0,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,224.0,0,Transient-Party,94.83,0,1,Check-Out,2020-05-03 -Resort Hotel,0,16,2016,January,5,31,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,1,0,0,E,D,0,No Deposit,142.0,179.0,0,Transient,60.84,0,0,Check-Out,2019-06-03 -Resort Hotel,0,45,2016,September,34,23,2,5,2,1.0,0,FB,BEL,Direct,Direct,0,0,0,C,C,3,No Deposit,246.0,179.0,0,Transient,238.8,0,2,Check-Out,2018-06-02 -City Hotel,1,263,2016,September,43,20,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,78.0,179.0,0,Contract,81.15,0,0,Canceled,2019-06-03 -Resort Hotel,0,192,2017,May,22,27,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,59.27,1,2,Check-Out,2019-12-04 -City Hotel,1,110,2017,May,19,16,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,129.57,0,0,Canceled,2019-10-04 -City Hotel,0,143,2015,August,36,30,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,117.14,0,2,Check-Out,2020-06-02 -City Hotel,0,15,2016,October,44,13,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Transient,74.17,0,0,Check-Out,2019-06-03 -City Hotel,1,171,2015,August,34,28,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.46,0,0,Canceled,2018-08-03 -City Hotel,0,21,2016,August,36,12,0,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.22,0,2,Check-Out,2019-07-04 -City Hotel,1,87,2016,July,23,27,2,3,1,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,44,Transient,84.88,0,1,No-Show,2019-03-04 -City Hotel,1,102,2016,May,20,5,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,11.0,179.0,0,Transient,120.13,0,0,Canceled,2019-01-03 -City Hotel,0,262,2017,July,33,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.5,0,2,Check-Out,2020-06-02 -Resort Hotel,0,59,2016,October,43,3,1,4,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,248.06,0,0,Check-Out,2019-08-04 -City Hotel,1,269,2016,October,44,17,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,43,Transient,141.44,0,0,Canceled,2018-08-03 -City Hotel,0,2,2017,May,20,18,0,1,2,0.0,0,SC,GBR,Complementary,Direct,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,4.02,0,0,Check-Out,2020-03-03 -City Hotel,0,320,2015,October,43,12,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,A,C,0,No Deposit,73.0,179.0,0,Group,98.77,0,1,Check-Out,2018-08-03 -City Hotel,1,103,2016,May,26,31,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,D,0,Non Refund,2.0,179.0,0,Transient-Party,61.74,0,0,Canceled,2019-03-04 -Resort Hotel,0,253,2015,September,44,5,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,101.0,179.0,0,Contract,61.05,0,0,Check-Out,2017-11-02 -Resort Hotel,0,2,2017,July,28,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,121.65,1,0,Check-Out,2020-06-02 -Resort Hotel,0,12,2015,October,43,30,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,68.59,0,0,Check-Out,2018-08-03 -Resort Hotel,0,98,2016,June,24,23,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,132.19,0,2,Check-Out,2019-05-04 -Resort Hotel,1,72,2016,March,26,16,2,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,288.0,179.0,0,Transient,62.82,0,0,Canceled,2019-03-04 -Resort Hotel,1,0,2016,February,10,9,0,2,1,0.0,0,FB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,142.0,179.0,0,Transient,59.99,0,0,Canceled,2018-11-02 -City Hotel,0,17,2017,February,18,4,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,78.58,0,1,Check-Out,2020-02-01 -Resort Hotel,0,50,2017,April,16,15,0,4,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,161.44,1,0,Check-Out,2020-02-01 -City Hotel,1,203,2016,October,26,23,1,6,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,10.0,179.0,0,Transient,77.11,0,0,Canceled,2019-08-04 -City Hotel,1,23,2017,May,19,5,0,1,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,124.64,0,0,Canceled,2019-02-01 -City Hotel,1,47,2017,March,10,31,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,F,0,Non Refund,12.0,193.0,0,Transient,76.04,0,0,Canceled,2019-12-04 -City Hotel,1,227,2015,October,46,22,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.67,0,0,Canceled,2017-11-02 -Resort Hotel,0,15,2016,January,5,22,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,245.0,331.0,0,Transient,76.47,0,0,Check-Out,2018-12-03 -City Hotel,0,96,2016,September,46,18,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,196.32,0,3,Check-Out,2019-08-04 -City Hotel,0,89,2017,March,16,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,142.74,1,2,Check-Out,2020-04-02 -Resort Hotel,1,51,2016,July,44,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,315.0,179.0,0,Transient,91.87,0,0,Canceled,2019-06-03 -City Hotel,0,31,2017,April,21,27,0,2,1,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient-Party,147.31,0,0,Check-Out,2020-01-04 -City Hotel,0,2,2016,September,45,9,1,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.86,0,0,Check-Out,2018-11-02 -City Hotel,0,199,2017,May,23,31,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-04-02 -City Hotel,1,252,2016,July,26,9,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.59,0,0,Canceled,2019-05-04 -Resort Hotel,0,8,2015,December,51,31,2,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,77.95,1,0,Check-Out,2018-08-03 -City Hotel,0,375,2015,September,43,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.66,0,0,Check-Out,2018-08-03 -City Hotel,0,190,2016,July,35,11,2,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,145.54,0,0,Check-Out,2019-04-03 -City Hotel,0,11,2017,February,8,6,0,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.57,0,1,Check-Out,2020-02-01 -City Hotel,0,2,2015,December,36,31,2,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,118.48,1,2,Check-Out,2018-06-02 -City Hotel,0,98,2017,May,24,19,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,92.3,0,1,Check-Out,2020-03-03 -City Hotel,0,2,2016,January,10,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,184.0,45.0,0,Transient-Party,64.07,0,0,Check-Out,2020-05-03 -City Hotel,0,149,2015,December,50,15,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.72,0,0,Check-Out,2019-10-04 -Resort Hotel,0,178,2017,January,3,22,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,34.84,0,0,Check-Out,2019-10-04 -City Hotel,1,99,2016,August,36,16,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,209.05,0,0,Canceled,2019-02-01 -City Hotel,0,10,2017,June,25,11,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.11,0,0,Check-Out,2020-03-03 -City Hotel,1,303,2017,June,36,17,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.28,0,0,Canceled,2020-06-02 -Resort Hotel,1,2,2016,February,51,29,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,46.87,0,0,Canceled,2019-01-03 -Resort Hotel,0,2,2016,February,10,9,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,1,0,0,A,I,1,No Deposit,243.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-01-03 -City Hotel,1,40,2016,May,22,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,278.0,179.0,0,Transient,84.5,0,0,Canceled,2019-06-03 -City Hotel,0,8,2016,January,11,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,91.86,0,2,Check-Out,2019-03-04 -City Hotel,1,16,2016,January,4,25,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,62,Transient,111.48,0,0,Canceled,2018-10-03 -City Hotel,1,23,2015,February,9,10,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.72,0,0,Canceled,2018-10-03 -City Hotel,0,52,2015,March,17,24,0,3,2,0.0,0,BB,,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,69.58,0,0,Check-Out,2019-02-01 -Resort Hotel,0,12,2016,August,38,25,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,155.14,1,2,Check-Out,2019-06-03 -City Hotel,1,46,2016,December,46,24,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.45,0,1,Canceled,2019-08-04 -Resort Hotel,1,48,2017,March,28,21,0,3,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,209.19,0,3,No-Show,2020-04-02 -City Hotel,0,278,2017,July,32,28,2,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.84,0,0,Check-Out,2020-05-03 -City Hotel,1,149,2017,March,17,11,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,91.39,0,0,Canceled,2020-02-01 -City Hotel,0,2,2016,June,31,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient,67.19,0,0,Check-Out,2019-01-03 -City Hotel,0,12,2017,March,26,6,2,1,2,0.0,0,BB,PRT,Direct,Corporate,1,0,1,D,D,0,No Deposit,15.0,179.0,0,Group,110.65,0,1,Check-Out,2020-02-01 -City Hotel,0,278,2015,September,36,11,1,2,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,144.48,1,0,Check-Out,2019-06-03 -City Hotel,1,116,2015,December,53,15,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,106.08,0,0,Canceled,2018-08-03 -Resort Hotel,1,296,2016,June,33,2,2,4,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,228.45,0,0,Canceled,2019-06-03 -City Hotel,0,12,2017,August,32,28,0,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,123.13,1,1,Check-Out,2020-07-03 -City Hotel,0,91,2016,November,53,20,2,2,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,81.19,0,1,Check-Out,2019-02-01 -City Hotel,1,152,2016,October,37,27,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.79,0,0,Canceled,2019-08-04 -Resort Hotel,0,85,2016,June,22,17,0,2,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,79.0,179.0,0,Transient,120.35,0,0,Check-Out,2019-02-01 -Resort Hotel,0,103,2016,May,35,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient-Party,106.89,0,1,Check-Out,2019-07-04 -City Hotel,0,235,2016,June,36,18,0,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,L,1,No Deposit,10.0,179.0,0,Transient,219.91,0,1,Check-Out,2019-06-03 -City Hotel,1,234,2015,September,43,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,62.39,0,2,Canceled,2017-12-03 -Resort Hotel,0,4,2016,December,52,30,1,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient,29.59,0,1,Check-Out,2018-11-02 -City Hotel,1,20,2015,August,38,4,2,2,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,88.44,0,1,Canceled,2018-12-03 -City Hotel,0,79,2016,March,16,5,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.04,0,2,Check-Out,2019-04-03 -Resort Hotel,1,161,2017,August,27,13,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,203.0,195.0,0,Transient,42.85,0,2,Canceled,2019-12-04 -Resort Hotel,0,137,2017,February,7,2,0,3,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,1,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,23.12,0,1,Check-Out,2020-05-03 -Resort Hotel,1,334,2016,July,35,21,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,135.28,0,0,Canceled,2019-04-03 -City Hotel,1,22,2016,February,10,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.88,0,0,Canceled,2018-11-02 -Resort Hotel,0,53,2017,February,12,9,0,2,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient-Party,75.34,1,0,Check-Out,2020-02-01 -City Hotel,1,47,2015,July,39,30,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient,115.93,0,3,Canceled,2018-06-02 -Resort Hotel,0,15,2016,August,35,20,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,L,F,0,No Deposit,14.0,179.0,0,Transient,205.52,1,0,Check-Out,2019-05-04 -City Hotel,0,33,2015,December,53,7,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,236.0,179.0,0,Transient,71.47,1,0,Check-Out,2018-12-03 -City Hotel,0,2,2017,August,38,6,1,1,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,177.48,0,2,Canceled,2020-03-03 -Resort Hotel,0,0,2016,April,17,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,131.93,0,0,Check-Out,2019-03-04 -City Hotel,1,95,2016,December,53,2,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,93.0,0,0,Canceled,2019-09-03 -City Hotel,0,2,2016,November,42,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,74.18,1,0,Check-Out,2018-12-03 -City Hotel,1,5,2016,February,11,25,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,62.68,0,0,Canceled,2019-01-03 -Resort Hotel,0,143,2016,April,22,2,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,122.85,0,0,Check-Out,2019-02-01 -Resort Hotel,1,94,2016,June,29,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.08,0,1,Canceled,2019-05-04 -Resort Hotel,1,16,2015,August,35,27,2,5,1,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,169.0,179.0,0,Transient-Party,42.53,0,0,Canceled,2018-06-02 -City Hotel,1,95,2017,July,31,9,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.5,0,2,No-Show,2020-03-03 -City Hotel,0,1,2017,August,30,6,2,1,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,163.07,0,3,Check-Out,2020-07-03 -Resort Hotel,0,2,2016,June,28,12,0,1,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,193.0,179.0,0,Transient,195.83,0,0,Check-Out,2019-05-04 -City Hotel,0,48,2016,May,22,17,0,2,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,86.0,179.0,0,Transient,123.29,0,1,Check-Out,2019-02-01 -Resort Hotel,0,5,2016,July,31,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,153.0,179.0,0,Transient-Party,106.27,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2016,February,15,6,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,B,1,No Deposit,12.0,251.0,0,Transient,0.0,1,1,Check-Out,2018-11-02 -Resort Hotel,0,36,2015,December,53,7,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,44.43,0,0,Check-Out,2018-12-03 -City Hotel,0,27,2017,August,20,18,0,1,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,198.31,0,3,Check-Out,2020-05-03 -City Hotel,0,62,2015,October,45,23,2,1,1,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,C,0,No Deposit,14.0,264.0,0,Transient-Party,60.52,0,0,Check-Out,2018-09-02 -City Hotel,1,267,2016,October,15,24,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,75.0,179.0,21,Transient,99.22,0,0,Canceled,2018-11-02 -City Hotel,0,46,2017,November,49,17,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,201.0,213.0,0,Transient-Party,93.41,0,0,Check-Out,2019-12-04 -Resort Hotel,0,149,2016,March,18,31,1,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,223.0,0,Transient-Party,55.6,0,0,Check-Out,2019-02-01 -City Hotel,0,12,2017,May,21,21,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.8,0,3,Check-Out,2019-03-04 -City Hotel,1,35,2017,July,27,10,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,172.0,179.0,0,Transient,125.92,0,1,Canceled,2020-06-02 -Resort Hotel,0,167,2017,July,33,8,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,248.0,179.0,0,Transient,193.21,0,1,Check-Out,2020-06-02 -City Hotel,0,30,2016,October,45,28,1,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,80.46,0,0,Check-Out,2019-09-03 -City Hotel,1,14,2016,December,49,8,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,13.0,279.0,0,Transient,3.02,0,0,Canceled,2020-01-04 -City Hotel,1,143,2016,June,27,9,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,130.44,0,0,Canceled,2019-03-04 -City Hotel,0,0,2016,August,36,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,92.29,0,0,Check-Out,2019-07-04 -Resort Hotel,0,8,2016,December,51,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,206.0,179.0,0,Transient,77.0,1,1,Check-Out,2018-12-03 -City Hotel,0,108,2016,May,20,9,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,60.88,0,1,Check-Out,2019-01-03 -City Hotel,1,406,2015,October,43,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.42,0,0,Canceled,2018-01-03 -City Hotel,0,81,2017,August,27,5,2,5,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,139.72,0,1,Check-Out,2020-06-02 -City Hotel,0,17,2016,May,21,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,85.66,0,1,Check-Out,2020-02-01 -Resort Hotel,0,16,2016,October,44,5,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,114.52,0,2,Check-Out,2019-08-04 -City Hotel,0,270,2016,May,17,8,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,61.35,0,0,Check-Out,2019-03-04 -Resort Hotel,0,40,2017,March,18,10,0,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,82.46,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,January,4,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,100.0,0,Transient,38.45,0,0,Check-Out,2019-09-03 -City Hotel,0,25,2017,June,9,24,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.75,0,2,Check-Out,2020-03-03 -City Hotel,0,165,2016,March,20,18,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,76.51,0,1,Check-Out,2019-02-01 -City Hotel,1,314,2016,May,21,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,13,2016,December,52,6,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,3,No Deposit,14.0,331.0,0,Transient-Party,42.52,0,0,Check-Out,2019-12-04 -City Hotel,1,17,2017,February,9,3,2,5,2,0.0,0,BB,PRT,Direct,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,95.23,0,0,No-Show,2019-11-03 -Resort Hotel,1,4,2016,May,35,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,69.98,0,0,Canceled,2019-06-03 -City Hotel,1,96,2016,September,16,2,2,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.62,0,0,Canceled,2019-01-03 -City Hotel,0,44,2016,March,10,28,1,4,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,159.13,0,1,Check-Out,2019-01-03 -City Hotel,0,207,2017,March,10,21,0,1,2,0.0,0,HB,PRT,Direct,Corporate,0,0,0,F,F,0,No Deposit,12.0,179.0,75,Transient,80.98,0,0,Check-Out,2019-10-04 -City Hotel,0,40,2016,August,15,8,0,4,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,67.48,0,1,Check-Out,2019-04-03 -Resort Hotel,0,15,2016,August,28,19,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,243.0,179.0,0,Transient,211.4,1,1,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,January,9,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,79.35,0,2,Check-Out,2018-10-03 -City Hotel,0,308,2017,August,34,12,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.3,0,0,Check-Out,2020-06-02 -City Hotel,0,39,2015,March,36,9,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.97,0,2,Check-Out,2019-01-03 -Resort Hotel,0,154,2016,August,16,31,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,14.0,223.0,0,Transient-Party,74.38,1,0,Check-Out,2019-08-04 -Resort Hotel,0,54,2017,June,29,2,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,190.85,0,0,Check-Out,2020-07-03 -City Hotel,0,46,2017,June,15,15,0,2,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Group,74.07,0,1,Check-Out,2020-03-03 -City Hotel,1,97,2017,May,21,15,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.03,0,1,Canceled,2020-03-03 -City Hotel,0,17,2016,August,30,2,0,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.65,0,1,Check-Out,2019-06-03 -City Hotel,0,5,2017,February,8,29,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,104.63,0,2,Check-Out,2020-02-01 -Resort Hotel,1,155,2017,February,11,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,F,0,Non Refund,87.0,179.0,0,Transient,66.32,0,0,Canceled,2019-09-03 -Resort Hotel,1,7,2016,October,43,23,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,43.01,0,3,Check-Out,2019-08-04 -City Hotel,0,405,2016,October,45,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,90.0,179.0,0,Transient,77.69,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,June,26,12,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,70.66,0,1,Check-Out,2019-03-04 -City Hotel,0,262,2017,September,45,28,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,66.04,0,0,Check-Out,2019-11-03 -City Hotel,1,312,2015,September,43,21,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,65.87,0,0,Canceled,2018-07-03 -City Hotel,1,160,2017,May,21,28,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.97,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,May,22,5,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,266.0,0,Transient,2.11,0,0,Check-Out,2019-12-04 -Resort Hotel,0,8,2016,November,37,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,125.77,1,0,Check-Out,2019-05-04 -City Hotel,1,36,2016,September,45,15,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.69,0,0,Canceled,2018-08-03 -Resort Hotel,0,14,2016,March,14,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient,30.93,0,0,Check-Out,2019-01-03 -City Hotel,0,107,2015,December,49,5,0,3,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,72.21,0,1,Check-Out,2019-11-03 -Resort Hotel,1,108,2016,March,17,28,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,18,Transient-Party,63.92,0,0,Canceled,2019-02-01 -Resort Hotel,1,149,2016,March,16,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient,76.85,0,0,Canceled,2019-02-01 -Resort Hotel,0,2,2015,September,37,20,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,121.97,0,0,Check-Out,2018-06-02 -City Hotel,1,11,2017,February,15,25,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,20,Transient,73.7,0,0,Canceled,2018-10-03 -City Hotel,0,1,2017,January,3,14,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.51,0,2,Check-Out,2019-09-03 -Resort Hotel,0,28,2017,May,24,30,2,1,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,C,2,No Deposit,186.0,179.0,0,Transient-Party,148.51,0,0,Check-Out,2020-03-03 -Resort Hotel,0,160,2017,March,22,18,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,40.4,0,0,Check-Out,2020-03-03 -Resort Hotel,0,109,2017,August,35,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,193.36,0,3,Check-Out,2020-06-02 -City Hotel,0,3,2015,October,41,9,1,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient-Party,66.2,0,0,Check-Out,2018-08-03 -City Hotel,0,108,2017,March,9,10,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,69.59,0,2,Check-Out,2020-06-02 -City Hotel,1,156,2016,October,44,17,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Refundable,1.0,179.0,0,Transient-Party,72.73,0,0,Canceled,2019-09-03 -Resort Hotel,1,67,2015,December,51,10,1,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.27,0,0,Canceled,2018-09-02 -Resort Hotel,1,22,2015,August,49,10,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,1,1,E,I,1,No Deposit,12.0,179.0,0,Transient-Party,33.81,1,3,No-Show,2017-09-02 -Resort Hotel,0,191,2016,March,25,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,75.03,0,0,Check-Out,2019-06-03 -City Hotel,1,42,2016,April,22,21,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,72.84,0,0,Canceled,2019-02-01 -Resort Hotel,1,260,2017,May,16,27,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,163.84,0,2,Canceled,2019-12-04 -Resort Hotel,1,2,2017,February,9,31,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient,82.79,0,0,Canceled,2020-02-01 -City Hotel,1,257,2017,April,22,29,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,64.79,0,0,Canceled,2020-03-03 -City Hotel,0,44,2015,August,37,9,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,123.29,1,0,Check-Out,2018-06-02 -Resort Hotel,0,43,2017,March,11,15,2,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient-Party,119.49,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,August,32,3,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,63.96,1,0,Check-Out,2019-06-03 -City Hotel,0,255,2016,May,24,20,0,2,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,94.71,0,1,Check-Out,2020-03-03 -Resort Hotel,0,255,2017,March,19,5,2,5,3,0.0,0,HB,RUS,Offline TA/TO,TA/TO,0,0,0,E,I,0,No Deposit,243.0,179.0,0,Transient,92.01,0,2,Check-Out,2020-01-04 -City Hotel,0,15,2016,February,10,25,0,1,2,0.0,0,Undefined,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,70.87,0,0,Check-Out,2019-03-04 -City Hotel,0,115,2016,May,11,15,0,4,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,99.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,104,2016,July,32,6,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,130.43,0,2,Check-Out,2019-03-04 -City Hotel,1,40,2015,December,51,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,69.45,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2017,April,21,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,F,F,2,No Deposit,247.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-12-04 -Resort Hotel,0,261,2016,May,17,31,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient-Party,38.07,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2017,January,9,13,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,61.14,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2017,February,10,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,201.0,179.0,0,Transient,62.75,0,0,Check-Out,2019-10-04 -Resort Hotel,1,241,2015,August,33,20,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,13.0,179.0,0,Transient,129.03,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,January,4,28,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.89,0,0,Check-Out,2019-10-04 -Resort Hotel,0,57,2017,May,22,24,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,F,0,No Deposit,248.0,179.0,0,Transient,3.21,1,2,Check-Out,2020-03-03 -City Hotel,0,1,2015,December,49,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,74.88,0,0,Check-Out,2018-11-02 -Resort Hotel,1,150,2016,March,11,10,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient-Party,83.99,0,0,Canceled,2019-10-04 -Resort Hotel,0,9,2016,November,10,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,71.0,0,Transient,34.15,0,0,Check-Out,2019-09-03 -City Hotel,1,14,2016,November,42,3,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.54,0,0,Canceled,2019-07-04 -City Hotel,1,402,2016,September,44,8,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,100.66,0,0,Canceled,2018-08-03 -Resort Hotel,0,20,2015,July,37,28,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,10.0,179.0,0,Transient,192.94,0,2,Check-Out,2018-05-03 -Resort Hotel,0,1,2016,January,49,6,0,4,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,B,1,No Deposit,330.0,234.0,0,Transient-Party,38.18,0,0,Check-Out,2019-05-04 -City Hotel,0,193,2017,June,16,2,1,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,97.41,0,0,Check-Out,2020-06-02 -Resort Hotel,0,8,2017,May,22,30,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,60.7,0,3,Check-Out,2020-03-03 -City Hotel,0,58,2017,June,26,21,0,4,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,170.94,0,1,Check-Out,2020-03-03 -City Hotel,0,50,2016,May,23,5,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,128.71,0,1,Check-Out,2019-04-03 -Resort Hotel,0,41,2017,July,37,19,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,115.83,0,2,Check-Out,2020-06-02 -City Hotel,0,110,2016,December,50,17,4,4,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,195.0,179.0,0,Transient,91.17,0,0,Check-Out,2019-10-04 -Resort Hotel,1,259,2017,August,37,21,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,230.23,0,0,Canceled,2019-06-03 -Resort Hotel,0,43,2016,December,53,11,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,2,No Deposit,378.0,179.0,0,Transient-Party,66.66,0,0,Check-Out,2019-11-03 -City Hotel,1,373,2017,February,10,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,76.85,0,0,Canceled,2019-11-03 -Resort Hotel,0,31,2015,December,53,2,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,75.39,0,0,Check-Out,2018-12-03 -Resort Hotel,0,85,2016,March,9,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,138.0,179.0,0,Group,77.25,0,1,Check-Out,2019-02-01 -City Hotel,1,202,2017,August,38,13,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,207.34,0,1,Canceled,2019-09-03 -City Hotel,0,0,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,84.0,0,Transient,35.58,1,0,Check-Out,2019-12-04 -City Hotel,1,42,2015,September,41,9,2,1,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.02,0,0,Canceled,2018-08-03 -Resort Hotel,0,378,2017,June,25,16,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,105.96,0,0,Check-Out,2020-06-02 -City Hotel,0,258,2017,August,36,28,1,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.97,1,1,Check-Out,2020-03-03 -City Hotel,0,249,2017,July,38,25,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,163.11,1,1,Check-Out,2020-04-02 -City Hotel,0,45,2016,September,35,9,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,151.65,0,2,Check-Out,2019-04-03 -City Hotel,0,214,2015,August,34,12,2,0,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,90.57,0,0,Check-Out,2018-06-02 -City Hotel,0,19,2016,June,34,9,2,2,3,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,15.0,179.0,0,Transient,117.89,0,0,Check-Out,2019-08-04 -City Hotel,0,155,2017,March,16,13,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient,91.28,0,0,Check-Out,2018-11-02 -City Hotel,1,97,2017,May,14,15,2,4,2,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.06,0,0,Canceled,2020-02-01 -Resort Hotel,0,250,2016,September,35,13,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,347.0,179.0,0,Contract,32.27,0,1,Check-Out,2019-09-03 -City Hotel,0,259,2016,July,35,9,1,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.1,0,0,Check-Out,2019-07-04 -City Hotel,1,3,2015,August,39,7,0,1,1,0.0,0,BB,PRT,Undefined,Corporate,0,1,0,B,B,0,No Deposit,15.0,179.0,0,Contract,117.55,0,0,Canceled,2018-06-02 -City Hotel,0,27,2016,August,35,28,1,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,60.79,0,1,Check-Out,2019-07-04 -Resort Hotel,0,5,2015,December,50,5,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,A,D,0,No Deposit,84.0,45.0,0,Group,42.39,0,0,Check-Out,2018-07-03 -City Hotel,1,41,2016,March,18,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.99,0,1,Canceled,2019-02-01 -City Hotel,1,0,2017,June,28,6,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.03,0,0,Canceled,2020-03-03 -Resort Hotel,1,43,2016,July,32,21,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,217.48,0,2,Canceled,2018-12-03 -City Hotel,1,180,2016,February,8,15,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,58.68,0,0,Canceled,2019-02-01 -City Hotel,1,253,2015,July,32,5,2,2,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,66.26,0,1,Canceled,2018-06-02 -Resort Hotel,0,106,2015,December,12,10,0,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,Non Refund,29.0,179.0,0,Transient-Party,37.56,0,0,Check-Out,2019-01-03 -Resort Hotel,1,102,2016,March,16,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,136.0,179.0,0,Transient,62.47,0,0,Canceled,2019-04-03 -Resort Hotel,0,265,2016,October,43,9,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,299.0,179.0,0,Transient,178.48,0,1,Check-Out,2019-08-04 -Resort Hotel,1,1,2017,January,8,27,0,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,62.42,0,0,Canceled,2020-01-04 -City Hotel,1,269,2017,May,24,9,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.25,0,0,Canceled,2020-06-02 -City Hotel,0,15,2016,June,17,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.32,0,2,Check-Out,2019-02-01 -City Hotel,1,89,2017,May,28,28,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.24,0,3,Canceled,2019-03-04 -City Hotel,0,17,2016,March,16,9,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,313.0,179.0,0,Transient-Party,90.3,0,0,Check-Out,2019-03-04 -Resort Hotel,0,56,2015,July,32,30,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,240.0,179.0,0,Transient,89.58,0,3,Check-Out,2019-05-04 -Resort Hotel,0,13,2016,October,43,13,4,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,189.29,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,March,19,21,0,1,1,0.0,0,BB,GBR,Aviation,Corporate,1,0,0,D,D,1,No Deposit,14.0,55.0,0,Transient,89.02,0,0,Check-Out,2019-02-01 -City Hotel,0,346,2015,October,41,21,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.33,0,0,Check-Out,2018-08-03 -City Hotel,0,138,2016,December,51,9,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.24,0,3,Check-Out,2019-11-03 -Resort Hotel,0,41,2015,August,38,6,0,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,102.89,1,2,Check-Out,2018-06-02 -City Hotel,1,19,2017,May,25,28,2,0,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Contract,63.16,0,0,No-Show,2020-03-03 -Resort Hotel,1,144,2016,July,27,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,90.25,0,2,Canceled,2019-05-04 -City Hotel,0,0,2016,March,9,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,77.19,0,2,Check-Out,2019-03-04 -Resort Hotel,0,13,2015,October,44,15,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,292.0,179.0,0,Contract,38.89,0,0,Check-Out,2018-12-03 -City Hotel,0,87,2016,October,42,10,2,3,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,245.62,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2015,January,4,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,40.0,179.0,0,Transient,62.16,0,0,Check-Out,2018-11-02 -City Hotel,1,41,2016,March,16,6,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.88,0,2,Canceled,2019-03-04 -Resort Hotel,0,169,2017,July,34,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Contract,98.48,1,1,Check-Out,2020-03-03 -City Hotel,0,9,2016,June,24,25,0,3,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.6,0,1,Check-Out,2019-04-03 -City Hotel,1,0,2017,June,24,22,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,2,No Deposit,10.0,45.0,0,Transient,0.0,0,0,Canceled,2020-01-04 -Resort Hotel,1,15,2016,August,35,15,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,158.98,0,0,Canceled,2019-08-04 -City Hotel,0,16,2015,October,45,13,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,13.0,200.0,0,Transient-Party,40.57,0,0,Check-Out,2018-09-02 -City Hotel,0,46,2016,April,17,5,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,160.9,0,2,Check-Out,2019-02-01 -City Hotel,0,38,2016,March,15,16,2,0,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,73.03,0,0,Check-Out,2019-02-01 -Resort Hotel,0,3,2015,July,36,20,0,3,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,252.0,179.0,0,Transient,206.11,1,0,Check-Out,2018-08-03 -City Hotel,1,112,2016,October,43,29,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,93.02,0,0,Canceled,2019-10-04 -City Hotel,0,55,2016,December,53,9,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.1,0,1,Check-Out,2019-11-03 -City Hotel,1,30,2016,February,8,10,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,76.2,0,2,Canceled,2018-11-02 -City Hotel,1,414,2015,August,38,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,46.64,0,0,Canceled,2018-01-03 -City Hotel,1,17,2017,August,38,25,0,3,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,H,D,1,No Deposit,8.0,179.0,0,Transient,181.71,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,April,19,16,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,B,2,No Deposit,14.0,46.0,0,Transient,1.01,1,1,Check-Out,2019-04-03 -Resort Hotel,0,45,2017,April,9,26,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,244.0,179.0,0,Transient-Party,65.19,1,0,Check-Out,2020-03-03 -City Hotel,1,49,2016,September,36,17,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,194.39,0,1,Canceled,2019-11-03 -Resort Hotel,1,146,2016,July,26,28,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,11.0,179.0,0,Transient,100.17,0,0,Canceled,2019-04-03 -Resort Hotel,0,249,2016,September,42,17,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,93.75,0,0,Check-Out,2019-07-04 -City Hotel,0,158,2017,June,24,29,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.78,0,1,Check-Out,2020-03-03 -Resort Hotel,0,30,2016,April,21,22,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,113.31,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2017,May,22,21,0,1,1,0.0,0,SC,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,129.24,0,0,Check-Out,2019-11-03 -City Hotel,0,156,2017,March,17,11,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.42,0,1,Check-Out,2020-03-03 -City Hotel,1,282,2015,September,38,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.48,0,0,Canceled,2018-08-03 -Resort Hotel,0,164,2016,September,42,5,4,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,305.0,179.0,75,Transient,93.59,0,0,Check-Out,2019-08-04 -Resort Hotel,0,114,2016,October,44,27,2,3,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Contract,89.88,0,2,Check-Out,2019-11-03 -City Hotel,1,290,2017,June,25,13,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,103.92,0,0,Canceled,2020-04-02 -Resort Hotel,0,59,2017,July,30,2,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,34.33,0,0,Check-Out,2020-03-03 -City Hotel,0,25,2016,October,43,24,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,80.49,0,3,Check-Out,2019-01-03 -City Hotel,0,8,2017,June,27,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,3,No Deposit,194.0,65.0,0,Transient-Party,85.83,1,0,Check-Out,2020-05-03 -Resort Hotel,0,206,2016,September,37,15,0,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,30.52,0,2,Check-Out,2019-09-03 -City Hotel,0,52,2016,October,44,4,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,127.79,0,1,Check-Out,2019-11-03 -Resort Hotel,0,1,2017,February,10,6,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,35.62,0,0,Check-Out,2020-01-04 -City Hotel,0,93,2017,July,10,14,0,1,1,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,98.1,0,2,Check-Out,2020-07-03 -Resort Hotel,0,20,2015,July,31,17,3,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,122.47,1,0,Check-Out,2018-06-02 -Resort Hotel,0,235,2017,April,27,24,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,94.81,0,0,Check-Out,2020-05-03 -City Hotel,0,12,2017,June,29,16,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.36,0,1,Check-Out,2020-06-02 -Resort Hotel,0,21,2016,October,43,31,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,177.9,0,1,Check-Out,2019-09-03 -City Hotel,0,10,2016,November,46,27,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,177.0,179.0,0,Transient,117.71,0,0,Check-Out,2019-09-03 -City Hotel,1,243,2016,July,30,15,2,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,207.68,0,3,Canceled,2018-11-02 -City Hotel,1,86,2016,August,37,24,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,143.25,0,0,Canceled,2019-05-04 -City Hotel,1,153,2016,October,44,13,3,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,190.07,0,0,Canceled,2019-08-04 -Resort Hotel,0,280,2017,July,23,16,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,175.33,0,0,Check-Out,2020-03-03 -City Hotel,0,258,2017,July,27,15,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,7.0,179.0,0,Transient,154.47,0,1,Check-Out,2020-06-02 -Resort Hotel,0,52,2016,April,21,2,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,78.1,0,3,Check-Out,2019-03-04 -City Hotel,0,21,2015,August,32,16,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,65.0,179.0,0,Transient-Party,2.14,0,0,Check-Out,2018-09-02 -Resort Hotel,0,22,2016,December,53,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,90.5,0,3,Check-Out,2018-10-03 -City Hotel,0,45,2016,March,16,20,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,123.27,0,2,Check-Out,2018-11-02 -City Hotel,0,251,2015,October,45,28,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,64.74,0,0,Check-Out,2018-08-03 -City Hotel,1,84,2016,July,36,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,109.47,0,0,Canceled,2018-12-03 -City Hotel,1,9,2016,October,46,29,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.22,0,2,No-Show,2019-09-03 -Resort Hotel,0,106,2017,March,12,26,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,237.0,179.0,0,Transient,120.65,1,2,Check-Out,2020-02-01 -City Hotel,0,305,2017,July,33,28,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,94.21,0,2,Check-Out,2020-06-02 -City Hotel,1,65,2016,May,15,18,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,P,D,0,No Deposit,10.0,179.0,0,Transient,86.25,0,0,Canceled,2019-02-01 -City Hotel,1,12,2017,February,11,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,61.58,0,0,Canceled,2020-02-01 -City Hotel,0,11,2017,May,21,18,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,91.0,0,Transient-Party,86.03,0,0,Check-Out,2019-11-03 -City Hotel,0,5,2015,October,44,25,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Group,67.95,0,0,Check-Out,2018-07-03 -Resort Hotel,1,22,2017,July,35,25,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,117.85,0,0,Check-Out,2020-06-02 -City Hotel,0,32,2017,February,10,10,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.3,0,3,Check-Out,2019-11-03 -City Hotel,0,57,2017,December,37,20,1,3,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,11.0,179.0,0,Transient,109.31,0,0,Check-Out,2019-11-03 -City Hotel,1,95,2017,January,20,13,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.32,0,1,Canceled,2019-12-04 -City Hotel,1,8,2016,March,26,18,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,145.25,0,1,Canceled,2019-03-04 -Resort Hotel,1,107,2017,May,20,15,2,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient,103.9,1,0,Canceled,2019-12-04 -Resort Hotel,1,1,2017,February,9,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,196.57,0,0,Canceled,2019-10-04 -City Hotel,1,202,2016,November,38,15,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,76.8,0,0,Canceled,2018-09-02 -Resort Hotel,0,140,2016,August,37,16,3,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,C,C,2,No Deposit,241.0,179.0,0,Transient,75.12,0,0,Check-Out,2019-06-03 -City Hotel,0,62,2015,December,50,5,2,3,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,92.19,0,0,Check-Out,2018-07-03 -City Hotel,0,59,2016,December,50,30,2,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,82.09,0,0,Check-Out,2019-12-04 -Resort Hotel,0,200,2015,August,38,7,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,252.0,0,2,Check-Out,2018-05-03 -City Hotel,0,11,2016,May,23,4,1,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient-Party,94.42,0,0,Check-Out,2019-03-04 -City Hotel,0,47,2015,August,35,18,0,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,1,0,0,D,D,1,No Deposit,8.0,179.0,0,Group,134.93,0,1,Check-Out,2018-08-03 -City Hotel,0,268,2017,May,22,21,0,3,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,98.9,0,1,Check-Out,2020-03-03 -City Hotel,0,36,2016,October,43,29,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,238.65,0,0,Check-Out,2019-08-04 -City Hotel,1,1,2017,August,4,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,87.45,0,0,No-Show,2019-12-04 -City Hotel,0,15,2017,May,21,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.0,0,0,Check-Out,2019-03-04 -City Hotel,1,16,2017,May,21,14,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,227.0,0,Transient,60.61,0,0,Canceled,2020-05-03 -City Hotel,1,24,2016,January,5,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,1,0,E,A,1,No Deposit,10.0,179.0,0,Group,60.46,0,0,Canceled,2019-09-03 -City Hotel,0,211,2016,August,36,12,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,218.78,0,0,Check-Out,2020-05-03 -City Hotel,1,73,2016,June,26,18,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,83.78,0,0,Canceled,2019-02-01 -City Hotel,0,116,2016,September,36,5,1,4,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,184.72,0,0,Check-Out,2019-09-03 -City Hotel,0,3,2017,May,22,30,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,252.0,0,Transient,100.3,0,0,Check-Out,2020-03-03 -City Hotel,0,3,2016,January,2,5,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.45,0,0,Check-Out,2019-10-04 -City Hotel,0,25,2017,June,25,15,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,122.1,0,1,Check-Out,2020-04-02 -City Hotel,1,86,2017,April,23,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,86.93,0,0,Canceled,2020-05-03 -Resort Hotel,1,3,2015,December,53,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.71,0,0,Canceled,2018-06-02 -City Hotel,1,287,2015,October,44,22,2,0,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,75.23,0,0,Canceled,2017-11-02 -City Hotel,1,55,2016,June,21,15,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.97,0,0,Canceled,2019-02-01 -City Hotel,1,79,2017,May,22,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,88.5,0,0,No-Show,2020-04-02 -City Hotel,1,68,2017,August,12,15,0,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,1,1,Canceled,2020-03-03 -Resort Hotel,1,215,2017,April,30,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,157.0,179.0,0,Transient,237.03,0,0,Canceled,2020-02-01 -City Hotel,1,170,2016,May,23,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,233.0,179.0,0,Transient,76.94,0,0,Canceled,2019-05-04 -City Hotel,1,260,2016,June,36,20,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.77,0,0,Canceled,2019-05-04 -City Hotel,1,259,2015,October,43,3,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.43,0,0,Canceled,2018-08-03 -City Hotel,0,0,2017,January,4,28,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,100.72,0,0,Check-Out,2019-08-04 -Resort Hotel,0,135,2017,May,22,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,67.2,0,0,Check-Out,2020-03-03 -City Hotel,1,6,2016,February,10,21,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.14,0,0,No-Show,2018-11-02 -City Hotel,1,31,2015,July,35,13,0,2,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,68.45,0,0,Canceled,2018-05-03 -City Hotel,0,7,2016,April,15,18,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.78,0,2,Check-Out,2019-02-01 -City Hotel,0,20,2016,June,43,20,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.41,0,0,Check-Out,2019-06-03 -Resort Hotel,0,11,2015,July,49,18,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,64.86,0,2,Check-Out,2018-07-03 -City Hotel,0,37,2016,March,16,10,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,97.57,0,1,Check-Out,2019-12-04 -City Hotel,1,45,2016,October,27,28,1,3,2,2.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,67.89,0,3,No-Show,2019-07-04 -Resort Hotel,0,152,2016,March,16,29,1,3,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,C,1,Refundable,13.0,223.0,0,Transient-Party,72.05,0,0,Check-Out,2019-03-04 -City Hotel,0,166,2017,August,31,27,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,111.25,1,1,Check-Out,2020-07-03 -Resort Hotel,1,4,2017,January,2,3,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,29.06,0,0,Canceled,2019-10-04 -Resort Hotel,0,3,2016,October,22,21,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,239.0,179.0,0,Transient,108.04,0,1,Check-Out,2019-06-03 -City Hotel,0,41,2016,October,44,23,1,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,113.7,0,0,Check-Out,2019-07-04 -City Hotel,0,340,2016,October,45,28,1,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,68.31,0,0,Check-Out,2019-08-04 -Resort Hotel,0,268,2015,October,35,22,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,74.26,0,0,Check-Out,2018-01-03 -City Hotel,1,104,2017,March,10,29,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,6.0,179.0,0,Transient,81.44,0,2,Canceled,2019-03-04 -City Hotel,0,1,2015,July,33,22,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.69,0,0,Check-Out,2017-12-03 -City Hotel,1,18,2015,August,32,20,2,2,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Transient,54.22,0,0,Canceled,2018-12-03 -Resort Hotel,0,14,2017,June,27,13,2,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,E,E,0,No Deposit,17.0,218.0,0,Transient,125.91,1,0,Check-Out,2020-07-03 -Resort Hotel,0,9,2017,May,22,29,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,68.58,0,2,Check-Out,2020-03-03 -City Hotel,0,39,2015,July,32,6,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,4.0,179.0,0,Contract,103.51,0,2,Check-Out,2018-05-03 -City Hotel,0,0,2017,July,27,7,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient,128.01,0,1,Check-Out,2020-04-02 -City Hotel,1,312,2016,August,35,15,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,98.17,0,0,Canceled,2018-08-03 -City Hotel,0,4,2016,December,50,9,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,66.0,0,Transient,70.08,0,0,Check-Out,2018-11-02 -City Hotel,1,0,2016,February,11,13,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,F,0,No Deposit,15.0,97.0,0,Transient,58.86,0,0,No-Show,2018-11-02 -Resort Hotel,0,95,2016,June,22,2,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,173.0,179.0,0,Contract,103.93,0,0,Check-Out,2019-01-03 -City Hotel,1,0,2016,October,45,20,2,0,3,0.0,0,BB,CHE,Undefined,GDS,0,0,0,D,B,0,No Deposit,13.0,248.0,0,Transient-Party,0.0,0,1,Canceled,2019-09-03 -Resort Hotel,0,1,2016,December,52,24,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,73.36,1,0,Check-Out,2019-11-03 -Resort Hotel,0,140,2016,March,16,31,1,2,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,221.0,0,Transient-Party,39.11,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,May,19,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,F,2,No Deposit,74.0,179.0,0,Transient,75.7,0,0,Check-Out,2019-02-01 -Resort Hotel,0,18,2016,January,4,28,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,80.98,0,3,Check-Out,2019-09-03 -City Hotel,0,14,2015,July,32,5,0,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,90.75,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,April,17,13,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,90.76,0,0,Check-Out,2019-03-04 -Resort Hotel,0,11,2016,October,46,11,0,1,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,E,0,No Deposit,14.0,188.0,0,Transient,86.56,0,0,Check-Out,2019-03-04 -Resort Hotel,0,155,2016,March,16,31,1,3,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,D,D,1,Refundable,13.0,179.0,0,Transient-Party,88.48,0,1,Check-Out,2019-01-03 -City Hotel,1,101,2017,August,22,6,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Canceled,2020-02-01 -City Hotel,1,269,2016,December,53,28,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,0,Transient,74.58,0,0,Canceled,2019-09-03 -City Hotel,1,17,2016,February,35,18,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,130.88,0,1,Canceled,2018-12-03 -City Hotel,0,10,2016,October,45,21,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,10.0,179.0,0,Group,72.56,0,1,Check-Out,2019-09-03 -Resort Hotel,0,34,2017,July,32,21,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,157.88,1,1,Check-Out,2018-06-02 -City Hotel,1,264,2015,October,44,5,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,73.87,0,0,Canceled,2018-07-03 -Resort Hotel,0,12,2016,March,14,15,0,7,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,12.0,179.0,75,Transient-Party,90.67,1,2,Check-Out,2019-04-03 -City Hotel,0,0,2016,February,10,15,2,1,2,0.0,0,FB,,Direct,Direct,0,0,0,F,D,2,No Deposit,17.0,179.0,0,Transient,185.95,0,0,Check-Out,2019-01-03 -City Hotel,0,106,2016,July,34,26,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,149.96,0,2,Check-Out,2019-04-03 -City Hotel,0,14,2016,May,31,16,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,116.23,0,1,Check-Out,2019-02-01 -City Hotel,0,4,2017,June,8,13,0,1,2,0.0,0,BB,CHE,Offline TA/TO,GDS,0,0,0,A,H,0,No Deposit,12.0,179.0,0,Contract,104.86,0,0,Check-Out,2020-07-03 -City Hotel,1,1,2015,November,10,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,Non Refund,16.0,179.0,0,Transient-Party,71.76,0,0,Canceled,2019-01-03 -City Hotel,1,1,2015,July,30,12,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.34,0,0,Canceled,2017-11-02 -City Hotel,0,1,2017,May,27,13,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-07-04 -Resort Hotel,0,20,2017,May,17,28,1,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,331.0,0,Transient-Party,76.4,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2017,May,22,12,2,1,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,190.0,331.0,0,Group,137.01,0,0,Check-Out,2020-04-02 -City Hotel,0,28,2017,June,27,10,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,76.0,179.0,0,Group,119.81,0,1,Check-Out,2020-01-04 -Resort Hotel,0,51,2016,November,33,21,2,2,2,0.0,0,FB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,83.86,0,0,Check-Out,2019-04-03 -City Hotel,0,4,2016,March,50,23,0,1,3,0.0,0,BB,FRA,Complementary,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,104.64,0,0,Check-Out,2019-10-04 -City Hotel,1,155,2017,June,27,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.77,0,0,Canceled,2020-01-04 -City Hotel,0,53,2016,November,50,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,60.41,0,0,Check-Out,2019-09-03 -City Hotel,0,54,2017,March,32,15,2,5,1,1.0,0,BB,PRT,Online TA,Corporate,0,0,0,E,F,1,No Deposit,99.0,179.0,0,Transient,82.07,0,3,Check-Out,2020-03-03 -Resort Hotel,0,50,2016,June,27,12,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,87.63,0,2,Check-Out,2019-02-01 -City Hotel,0,14,2015,August,36,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,190.63,0,3,Check-Out,2018-06-02 -City Hotel,0,11,2016,December,50,14,1,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,73.3,0,0,Check-Out,2019-10-04 -City Hotel,1,203,2016,May,22,5,0,1,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,84.08,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2015,September,37,27,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,86.99,1,0,Check-Out,2018-09-02 -City Hotel,1,168,2017,June,37,20,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,8.0,179.0,0,Transient,197.55,0,0,Canceled,2019-10-04 -City Hotel,1,48,2017,February,9,25,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,82.63,0,0,Canceled,2020-03-03 -City Hotel,0,1,2016,October,45,22,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,110.23,0,1,Check-Out,2018-09-02 -Resort Hotel,0,97,2016,June,22,17,0,3,2,0.0,0,HB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,78.74,0,2,Check-Out,2019-04-03 -City Hotel,1,6,2016,January,3,14,0,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.84,0,0,Canceled,2018-11-02 -City Hotel,0,126,2017,July,24,16,0,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,96.88,0,0,Check-Out,2020-06-02 -Resort Hotel,0,11,2017,August,37,13,1,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,243.0,179.0,0,Transient,119.68,0,0,Check-Out,2019-07-04 -City Hotel,1,14,2016,February,12,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,12.0,65.0,0,Transient,33.56,0,0,Canceled,2018-12-03 -City Hotel,0,35,2016,October,43,21,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,91.1,0,1,Check-Out,2019-12-04 -City Hotel,1,20,2017,February,9,26,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.66,0,2,Canceled,2019-12-04 -City Hotel,0,1,2016,April,17,31,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,127.0,179.0,0,Transient,76.37,0,0,Check-Out,2019-02-01 -City Hotel,0,49,2015,August,33,9,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient,171.15,0,1,Check-Out,2018-05-03 -Resort Hotel,1,149,2016,August,36,28,2,7,3,1.0,0,HB,RUS,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,235.0,179.0,0,Transient,236.56,0,2,Canceled,2019-04-03 -Resort Hotel,0,30,2015,January,4,7,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,G,D,2,No Deposit,250.0,179.0,0,Transient,47.45,0,3,Check-Out,2018-12-03 -Resort Hotel,0,87,2016,July,30,23,4,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,L,F,0,No Deposit,378.0,179.0,0,Transient,158.65,0,0,Check-Out,2019-08-04 -City Hotel,1,3,2017,July,33,7,0,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,158.53,0,2,Canceled,2019-12-04 -Resort Hotel,1,58,2017,July,33,6,4,7,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,239.81,0,0,Canceled,2020-06-02 -Resort Hotel,0,39,2016,December,50,27,1,5,1,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,100.57,1,0,Check-Out,2019-11-03 -City Hotel,0,58,2017,May,23,18,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.01,0,2,Check-Out,2020-05-03 -City Hotel,0,33,2017,March,7,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,77.0,179.0,0,Transient-Party,35.24,0,0,Check-Out,2020-04-02 -City Hotel,1,34,2016,May,25,24,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,117.43,0,1,Canceled,2019-02-01 -Resort Hotel,0,11,2016,March,16,16,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,93.64,0,0,Check-Out,2019-03-04 -City Hotel,0,105,2016,June,21,18,2,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.22,0,0,Check-Out,2019-02-01 -City Hotel,1,7,2017,March,15,5,2,0,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,13.0,270.0,0,Transient,5.91,0,0,Canceled,2020-04-02 -City Hotel,0,304,2017,May,21,16,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,9.0,179.0,0,Transient,92.89,0,2,Check-Out,2020-01-04 -City Hotel,1,203,2017,June,27,9,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,68.48,0,2,Canceled,2019-10-04 -City Hotel,1,104,2017,April,15,5,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,75,Transient-Party,99.33,0,0,Canceled,2019-11-03 -City Hotel,0,23,2016,January,37,7,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.48,1,1,Check-Out,2019-10-04 -Resort Hotel,0,102,2017,March,18,28,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,65.73,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2016,July,34,15,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.35,0,1,Check-Out,2020-04-02 -Resort Hotel,0,1,2015,August,32,18,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,A,0,No Deposit,5.0,179.0,0,Contract,48.38,0,0,Check-Out,2018-08-03 -Resort Hotel,0,24,2017,March,11,29,2,5,2,0.0,0,HB,DEU,Direct,Corporate,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,115.24,0,1,Check-Out,2020-03-03 -Resort Hotel,1,11,2017,February,10,30,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,240.0,179.0,0,Transient,73.39,0,0,Canceled,2020-04-02 -Resort Hotel,0,21,2015,December,50,26,1,0,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,37.34,0,0,Check-Out,2018-08-03 -City Hotel,0,246,2016,August,43,18,2,5,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,118.4,0,1,Check-Out,2019-05-04 -City Hotel,1,192,2016,October,41,6,2,4,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,208.39,0,2,Canceled,2019-08-04 -City Hotel,1,45,2017,May,22,17,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2020-03-03 -City Hotel,1,9,2017,May,36,17,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,151.08,0,0,Canceled,2019-02-01 -City Hotel,0,27,2015,October,45,21,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,78.14,0,0,Check-Out,2018-08-03 -City Hotel,1,91,2017,March,9,20,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,10.0,179.0,0,Transient,124.56,0,1,Canceled,2020-02-01 -Resort Hotel,0,39,2016,January,13,25,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,136.0,179.0,0,Transient-Party,39.28,0,0,Check-Out,2019-01-03 -City Hotel,1,153,2016,June,26,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.89,0,0,Canceled,2019-04-03 -City Hotel,1,101,2017,August,36,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,109.61,0,0,Canceled,2019-12-04 -City Hotel,0,2,2016,November,52,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,73.84,0,0,Check-Out,2018-12-03 -City Hotel,1,101,2016,June,25,23,1,1,2,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,A,C,1,Non Refund,27.0,179.0,18,Transient,77.54,0,0,Canceled,2019-03-04 -City Hotel,1,31,2017,March,10,15,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,63.92,0,0,Canceled,2019-11-03 -City Hotel,0,2,2016,October,44,9,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,15.0,45.0,0,Transient,0.0,1,0,Check-Out,2018-08-03 -City Hotel,1,1,2016,February,10,17,2,0,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient,0.0,0,0,Canceled,2018-12-03 -City Hotel,1,106,2017,April,16,16,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.48,0,2,Canceled,2020-03-03 -Resort Hotel,0,0,2017,March,12,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,70.54,0,0,Check-Out,2020-01-04 -City Hotel,0,3,2015,December,46,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,153.7,0,1,Check-Out,2018-09-02 -Resort Hotel,0,0,2017,February,10,10,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,13.0,179.0,0,Transient,37.0,1,1,Check-Out,2020-02-01 -City Hotel,0,24,2015,September,38,13,0,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,129.02,0,2,Check-Out,2018-07-03 -Resort Hotel,0,2,2017,February,11,26,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,41.68,0,0,Check-Out,2020-03-03 -City Hotel,0,11,2015,July,32,10,2,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,87.22,0,0,Check-Out,2018-06-02 -City Hotel,0,248,2016,July,32,2,1,1,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,92.73,0,0,Check-Out,2019-04-03 -City Hotel,0,45,2015,September,44,6,1,0,2,0.0,0,BB,GBR,Complementary,TA/TO,0,0,0,D,D,0,Non Refund,13.0,179.0,0,Transient,46.7,0,2,Check-Out,2018-07-03 -Resort Hotel,0,3,2016,December,52,24,1,1,2,0.0,0,FB,ESP,Direct,Direct,0,0,0,A,E,0,No Deposit,18.0,179.0,0,Transient-Party,97.61,0,0,Check-Out,2018-11-02 -Resort Hotel,0,18,2015,July,49,10,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,62.86,0,0,Check-Out,2018-06-02 -City Hotel,0,13,2016,December,53,26,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.47,0,1,Check-Out,2019-12-04 -Resort Hotel,1,140,2017,June,26,2,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,6.0,179.0,0,Transient,112.16,0,2,Canceled,2019-01-03 -Resort Hotel,0,1,2016,April,16,20,2,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,336.0,179.0,0,Transient,77.61,0,0,Check-Out,2019-03-04 -City Hotel,0,99,2017,August,37,7,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.89,0,1,Check-Out,2020-07-03 -Resort Hotel,0,135,2016,May,16,13,1,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,35.9,0,0,Check-Out,2019-04-03 -City Hotel,0,2,2015,November,51,22,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,10.0,45.0,0,Group,37.74,0,0,Check-Out,2018-08-03 -Resort Hotel,1,233,2017,March,21,15,2,4,2,0.0,0,HB,AUT,Online TA,Corporate,1,0,1,E,I,1,No Deposit,10.0,179.0,75,Transient-Party,77.82,1,1,Canceled,2020-02-01 -City Hotel,0,17,2016,October,44,26,1,1,1,0.0,0,BB,GBR,Groups,GDS,0,0,0,D,D,0,No Deposit,99.0,179.0,0,Transient-Party,125.01,0,0,Check-Out,2019-08-04 -City Hotel,1,214,2016,October,44,13,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.43,0,0,Canceled,2019-08-04 -Resort Hotel,0,0,2016,March,17,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,32.19,1,0,Check-Out,2019-03-04 -Resort Hotel,0,271,2016,October,23,7,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient-Party,38.66,0,0,Check-Out,2019-08-04 -City Hotel,0,8,2017,January,3,6,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.51,0,1,Check-Out,2019-10-04 -City Hotel,0,0,2017,May,21,27,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,70.58,0,1,Check-Out,2020-02-01 -Resort Hotel,0,10,2017,May,22,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,13.0,222.0,0,Transient,85.9,0,0,Canceled,2020-04-02 -Resort Hotel,1,32,2016,April,43,10,1,2,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,134.76,0,0,Canceled,2019-02-01 -City Hotel,1,32,2016,February,10,27,1,4,2,1.0,0,BB,NLD,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,71.45,0,0,Canceled,2018-11-02 -Resort Hotel,0,190,2015,September,43,24,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Contract,63.41,0,0,Check-Out,2018-07-03 -City Hotel,1,160,2016,December,53,15,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,39,Transient-Party,62.73,0,0,Canceled,2018-07-03 -Resort Hotel,0,41,2017,February,9,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,D,0,No Deposit,14.0,331.0,0,Transient,45.88,0,0,Canceled,2019-11-03 -City Hotel,0,21,2016,January,5,17,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,38,Transient,118.01,0,1,Check-Out,2019-09-03 -Resort Hotel,1,265,2015,October,43,28,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,47.07,0,0,Canceled,2017-10-03 -Resort Hotel,0,50,2017,August,38,19,0,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,216.9,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2016,March,8,4,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,Non Refund,13.0,235.0,0,Transient,0.0,0,0,Canceled,2018-10-03 -City Hotel,1,93,2016,December,3,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Transient,127.48,0,0,Canceled,2018-11-02 -Resort Hotel,1,19,2015,August,36,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,160.92,0,0,Canceled,2018-07-03 -Resort Hotel,0,356,2016,October,35,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient-Party,112.58,0,3,Check-Out,2019-06-03 -City Hotel,0,3,2016,August,35,14,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient,194.48,0,1,Check-Out,2019-07-04 -City Hotel,0,38,2016,June,25,30,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,84.0,179.0,0,Transient-Party,115.29,0,0,Check-Out,2019-04-03 -Resort Hotel,0,32,2016,June,27,17,1,1,1,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,14.0,179.0,0,Transient,92.73,0,0,Check-Out,2019-03-04 -City Hotel,0,94,2017,July,26,28,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,96.04,0,0,Check-Out,2020-06-02 -Resort Hotel,0,4,2015,December,51,30,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,31.03,0,0,Check-Out,2018-10-03 -City Hotel,1,2,2017,August,36,6,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Canceled,2020-01-04 -City Hotel,0,17,2016,December,53,28,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,95.46,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2016,October,42,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,151.23,0,0,Check-Out,2019-09-03 -Resort Hotel,0,151,2017,May,23,30,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,378.0,179.0,0,Transient-Party,78.23,1,2,Check-Out,2020-02-01 -City Hotel,0,0,2017,August,38,13,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,144.07,0,3,Check-Out,2020-05-03 -Resort Hotel,0,97,2016,May,23,16,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,80.87,0,1,Check-Out,2019-01-03 -City Hotel,1,0,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,0,No Deposit,11.0,71.0,0,Transient,29.09,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2015,December,53,13,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,42.31,0,0,Check-Out,2019-01-03 -City Hotel,1,113,2016,July,32,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,99.92,0,1,Canceled,2019-06-03 -Resort Hotel,0,241,2017,February,13,21,0,2,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,E,E,2,No Deposit,15.0,179.0,0,Transient,66.41,1,0,Check-Out,2019-10-04 -Resort Hotel,1,43,2015,December,50,5,1,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,61.52,0,0,Canceled,2018-07-03 -Resort Hotel,0,0,2015,October,43,16,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,0,No Deposit,17.0,179.0,0,Transient,33.32,1,0,Check-Out,2018-08-03 -City Hotel,0,87,2016,March,18,29,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,70.39,0,2,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,June,22,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,86.97,1,0,Check-Out,2019-05-04 -Resort Hotel,0,78,2015,November,50,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,53.88,0,1,Check-Out,2019-01-03 -City Hotel,1,152,2016,October,36,18,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,68.0,179.0,0,Transient,98.14,0,0,Canceled,2019-03-04 -City Hotel,0,139,2017,March,9,26,1,3,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,113.36,0,0,Check-Out,2019-10-04 -Resort Hotel,0,57,2015,October,41,15,2,3,1,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,53.24,0,3,Check-Out,2018-06-02 -City Hotel,1,34,2016,September,37,14,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,113.78,0,2,Canceled,2019-06-03 -Resort Hotel,0,31,2016,July,40,2,2,5,2,2.0,0,HB,NOR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,243.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-06-03 -Resort Hotel,0,11,2016,December,52,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,10.0,179.0,0,Group,73.7,0,1,Check-Out,2019-09-03 -City Hotel,1,256,2015,July,37,29,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,60.25,0,0,Canceled,2018-08-03 -City Hotel,1,138,2016,April,22,27,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,65.18,0,0,Canceled,2018-11-02 -Resort Hotel,0,112,2016,July,39,30,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,C,0,No Deposit,248.0,179.0,0,Transient,196.03,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,September,42,6,0,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,249.0,179.0,0,Transient,161.34,0,2,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,May,46,14,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,249.0,179.0,0,Transient,117.13,0,0,Check-Out,2019-06-03 -City Hotel,1,389,2017,February,8,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,63.46,0,0,Canceled,2020-06-02 -City Hotel,0,2,2015,August,37,8,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,164.3,0,0,Check-Out,2018-05-03 -Resort Hotel,0,18,2017,June,35,5,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,186.01,0,1,Check-Out,2020-07-03 -Resort Hotel,0,13,2017,February,9,8,0,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,15.0,331.0,0,Transient-Party,35.45,0,0,Check-Out,2019-12-04 -Resort Hotel,0,14,2016,May,22,15,2,7,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,331.0,0,Transient-Party,60.96,0,0,Check-Out,2019-06-03 -City Hotel,0,22,2017,June,33,9,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.79,0,0,Check-Out,2020-06-02 -Resort Hotel,0,106,2015,December,51,24,2,5,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,G,3,No Deposit,285.0,179.0,0,Transient,79.28,0,1,Check-Out,2018-12-03 -Resort Hotel,0,14,2016,December,5,31,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,79.27,0,1,Canceled,2018-12-03 -City Hotel,1,442,2015,September,44,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,65,Transient-Party,60.53,0,0,Canceled,2017-11-02 -City Hotel,0,143,2015,July,32,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,80.8,0,1,Check-Out,2018-06-02 -City Hotel,1,15,2017,April,22,31,0,5,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,98.61,0,2,Canceled,2020-03-03 -City Hotel,0,145,2016,June,28,30,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.51,0,0,Check-Out,2019-06-03 -City Hotel,1,39,2017,August,37,10,2,5,3,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,178.74,0,0,Canceled,2020-06-02 -Resort Hotel,0,2,2015,September,43,2,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient,51.31,0,1,Check-Out,2018-06-02 -City Hotel,1,423,2016,September,37,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,0,Transient,103.71,0,0,Canceled,2018-08-03 -City Hotel,1,153,2015,October,45,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.76,0,0,Canceled,2018-08-03 -City Hotel,1,151,2016,November,50,4,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,224.0,0,Transient,149.49,0,0,Canceled,2019-10-04 -City Hotel,0,13,2016,May,44,18,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,100.7,0,1,Check-Out,2019-08-04 -Resort Hotel,0,13,2017,July,36,31,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,99.23,0,1,Check-Out,2019-11-03 -Resort Hotel,0,157,2016,March,17,31,0,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,1,Refundable,13.0,223.0,0,Transient-Party,61.58,0,0,Check-Out,2019-03-04 -City Hotel,0,222,2016,August,32,22,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient-Party,214.89,0,1,Canceled,2018-11-02 -City Hotel,1,134,2017,March,11,31,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,159.98,0,3,Check-Out,2019-12-04 -Resort Hotel,0,0,2017,March,9,31,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,Non Refund,15.0,224.0,0,Transient-Party,42.91,0,0,Check-Out,2020-02-01 -City Hotel,1,23,2016,October,41,10,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,0,1,D,D,0,No Deposit,10.0,179.0,0,Group,156.18,0,0,Check-Out,2018-08-03 -City Hotel,1,32,2016,June,9,20,1,0,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,138.0,179.0,0,Transient,77.07,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,March,10,24,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,B,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-01-03 -Resort Hotel,0,44,2017,April,18,19,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,77.2,0,0,Check-Out,2020-02-01 -City Hotel,0,43,2016,December,53,15,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.54,0,2,Check-Out,2019-10-04 -City Hotel,0,18,2015,July,31,10,0,1,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,3.0,179.0,0,Transient-Party,149.19,0,0,Check-Out,2020-06-02 -City Hotel,0,16,2016,May,23,18,0,1,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,19,Transient-Party,60.96,0,0,Check-Out,2019-03-04 -City Hotel,1,39,2017,February,11,16,1,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,190.44,0,0,Canceled,2019-09-03 -City Hotel,0,11,2016,October,44,12,1,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,125.85,0,0,Check-Out,2019-07-04 -Resort Hotel,0,49,2016,April,17,13,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,96.92,0,2,Check-Out,2019-03-04 -City Hotel,0,44,2017,May,23,25,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,102.23,0,2,Check-Out,2020-04-02 -Resort Hotel,0,265,2015,August,35,22,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,L,H,1,No Deposit,243.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-05-04 -City Hotel,0,248,2016,October,45,22,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,206.09,0,3,Check-Out,2019-08-04 -City Hotel,0,17,2017,March,18,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,F,2,No Deposit,15.0,54.0,0,Transient,65.03,1,0,Check-Out,2020-03-03 -Resort Hotel,0,50,2016,August,51,9,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,3,No Deposit,246.0,179.0,0,Transient,129.33,0,0,Check-Out,2018-08-03 -City Hotel,0,106,2016,March,21,18,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,88.45,0,0,Check-Out,2019-03-04 -Resort Hotel,0,246,2017,August,39,7,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,157.54,0,1,Check-Out,2020-07-03 -City Hotel,0,11,2017,March,9,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.72,0,0,Check-Out,2019-11-03 -Resort Hotel,0,140,2016,July,31,3,1,5,2,1.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient,85.19,0,0,Check-Out,2018-06-02 -City Hotel,0,93,2016,September,42,21,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,126.81,0,2,Check-Out,2019-09-03 -Resort Hotel,0,54,2015,October,44,2,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,241.0,179.0,0,Transient,43.91,0,2,Check-Out,2018-08-03 -City Hotel,1,33,2016,September,42,28,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,125.06,0,0,Canceled,2019-08-04 -City Hotel,1,20,2016,June,27,12,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.04,0,0,Canceled,2019-10-04 -City Hotel,0,44,2016,May,26,22,0,4,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,86.75,0,0,Check-Out,2019-03-04 -City Hotel,0,164,2017,July,27,15,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,134.24,0,2,Check-Out,2020-03-03 -City Hotel,0,15,2016,June,26,9,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,113.68,0,1,Check-Out,2019-01-03 -City Hotel,0,27,2017,April,18,4,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,82.35,0,1,Check-Out,2020-02-01 -City Hotel,1,346,2017,April,16,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,203.26,0,0,Canceled,2019-11-03 -City Hotel,0,236,2016,July,33,2,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,150.01,0,0,Check-Out,2019-05-04 -Resort Hotel,0,18,2015,December,50,5,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,A,1,No Deposit,15.0,247.0,0,Transient,37.86,0,0,Check-Out,2018-08-03 -Resort Hotel,0,97,2017,April,17,4,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,126.79,0,0,Check-Out,2020-02-01 -City Hotel,0,254,2015,August,37,29,2,4,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,61.29,0,0,Check-Out,2019-05-04 -Resort Hotel,1,3,2016,January,7,31,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,124.06,1,0,Canceled,2019-10-04 -Resort Hotel,0,57,2015,November,51,20,2,4,1,0.0,0,BB,CHE,Online TA,Direct,0,0,0,D,F,0,No Deposit,244.0,179.0,0,Transient,34.48,0,0,Check-Out,2018-08-03 -City Hotel,0,229,2015,July,31,18,2,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.79,0,0,Check-Out,2018-06-02 -City Hotel,1,39,2016,April,27,22,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,79.48,0,0,Canceled,2019-02-01 -Resort Hotel,1,67,2017,August,33,6,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,119.94,0,1,Canceled,2020-04-02 -Resort Hotel,0,296,2015,July,26,21,2,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,64.29,0,0,Check-Out,2018-01-03 -City Hotel,0,100,2016,January,4,24,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,109.88,0,3,Check-Out,2019-02-01 -City Hotel,0,31,2017,June,26,28,2,2,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,86.79,0,1,Check-Out,2020-07-03 -City Hotel,1,15,2017,January,2,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.14,0,0,Canceled,2020-01-04 -City Hotel,0,2,2016,April,20,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient,100.4,0,0,Check-Out,2018-12-03 -City Hotel,1,22,2017,June,25,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.23,0,0,Canceled,2020-06-02 -City Hotel,1,15,2015,July,32,22,0,2,2,0.0,0,HB,PRT,Groups,Undefined,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.62,0,0,Canceled,2018-06-02 -City Hotel,1,70,2016,July,35,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,91.4,0,0,No-Show,2018-12-03 -City Hotel,0,43,2016,September,28,26,0,4,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,71.35,0,0,Check-Out,2019-06-03 -Resort Hotel,0,151,2015,June,9,3,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,37.58,0,0,Check-Out,2019-01-03 -Resort Hotel,0,8,2016,February,9,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,144.0,179.0,0,Transient,63.54,0,0,Check-Out,2019-02-01 -Resort Hotel,1,296,2016,November,44,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,237.0,179.0,0,Transient,68.52,0,0,Canceled,2018-10-03 -City Hotel,0,132,2016,August,34,10,1,3,2,1.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,81.86,0,1,Check-Out,2019-06-03 -City Hotel,1,4,2016,August,22,28,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,127.12,0,0,Canceled,2018-11-02 -City Hotel,1,181,2017,July,10,21,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,81.41,0,1,Canceled,2019-02-01 -City Hotel,0,18,2016,November,23,27,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,109.9,0,0,Check-Out,2019-11-03 -City Hotel,0,3,2015,November,31,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.54,0,0,Check-Out,2018-06-02 -City Hotel,1,0,2016,August,36,10,2,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,2.19,0,0,Canceled,2018-06-02 -Resort Hotel,0,1,2016,October,44,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,111.51,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,January,51,15,0,2,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,228.0,0,Transient,72.87,0,0,Check-Out,2019-10-04 -City Hotel,0,268,2015,October,43,18,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,75.13,0,0,Check-Out,2018-08-03 -City Hotel,0,92,2017,June,27,30,0,4,3,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,75,Transient,195.43,0,0,Check-Out,2020-06-02 -City Hotel,1,84,2016,August,37,25,2,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,190.09,0,0,Canceled,2019-06-03 -Resort Hotel,0,172,2016,October,45,29,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,82.68,1,2,Check-Out,2019-09-03 -City Hotel,1,223,2016,September,38,30,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,118.66,0,0,Canceled,2019-07-04 -City Hotel,0,27,2016,July,44,5,2,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,118.07,0,2,Check-Out,2019-06-03 -Resort Hotel,0,6,2017,March,10,16,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,69.44,0,2,Check-Out,2020-01-04 -Resort Hotel,0,52,2016,October,9,13,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,372.0,179.0,0,Transient,45.81,0,0,Check-Out,2019-11-03 -City Hotel,1,3,2015,July,35,5,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient,99.07,0,0,Canceled,2018-12-03 -City Hotel,0,22,2016,January,4,13,0,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,38,Transient-Party,74.6,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2015,September,43,24,0,3,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,41.42,0,1,Check-Out,2018-08-03 -City Hotel,0,98,2017,July,22,24,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,202.86,1,3,Check-Out,2019-03-04 -Resort Hotel,0,28,2016,April,8,13,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.66,0,0,Check-Out,2019-02-01 -City Hotel,1,35,2017,July,26,21,2,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,155.98,0,2,Canceled,2020-03-03 -Resort Hotel,0,148,2016,August,37,24,0,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,75.5,0,0,Check-Out,2019-08-04 -City Hotel,1,171,2016,August,28,27,2,5,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient-Party,122.13,0,0,Canceled,2018-12-03 -Resort Hotel,0,1,2016,July,29,18,0,1,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,252.0,179.0,0,Transient,223.43,0,0,Check-Out,2019-05-04 -City Hotel,1,316,2016,June,28,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,60.98,0,0,Canceled,2017-11-02 -City Hotel,0,44,2016,December,50,5,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,97.65,0,2,Check-Out,2019-10-04 -Resort Hotel,0,142,2016,November,42,27,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,310.0,179.0,0,Transient,140.91,0,1,Check-Out,2019-12-04 -Resort Hotel,0,39,2017,April,19,24,2,2,2,1.0,0,BB,PRT,Complementary,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,152.52,1,0,Check-Out,2019-03-04 -Resort Hotel,0,29,2015,July,36,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,81.64,1,0,Check-Out,2018-06-02 -City Hotel,0,1,2017,February,17,4,0,1,1,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,31.0,331.0,0,Transient-Party,90.36,1,0,Check-Out,2020-03-03 -City Hotel,1,2,2017,February,7,18,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,70.05,0,0,Canceled,2020-02-01 -Resort Hotel,0,43,2016,October,44,6,1,0,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,46.04,0,1,Check-Out,2018-08-03 -Resort Hotel,1,0,2016,May,21,15,1,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient-Party,43.52,0,0,Canceled,2019-03-04 -City Hotel,0,157,2016,November,4,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient,101.74,0,1,Check-Out,2019-06-03 -City Hotel,0,21,2016,March,29,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,86.0,179.0,0,Transient-Party,117.74,0,0,Check-Out,2019-03-04 -Resort Hotel,0,9,2017,July,27,30,1,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,F,2,No Deposit,250.0,179.0,0,Transient,143.37,1,2,Check-Out,2020-06-02 -City Hotel,1,40,2017,May,22,29,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,8.0,179.0,0,Transient,119.32,0,1,Canceled,2020-02-01 -Resort Hotel,0,77,2017,March,27,6,2,5,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-04-02 -City Hotel,1,63,2016,October,50,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,76.89,0,0,Canceled,2018-11-02 -City Hotel,0,12,2016,August,37,2,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.56,0,1,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,March,12,31,1,2,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient-Party,31.71,0,0,Check-Out,2020-04-02 -City Hotel,1,150,2016,May,13,10,0,3,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,10.0,179.0,0,Transient,115.45,0,0,Canceled,2019-01-03 -City Hotel,0,15,2015,July,33,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,110.8,0,0,Check-Out,2018-06-02 -City Hotel,0,15,2015,October,45,15,0,1,1,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,D,0,No Deposit,12.0,45.0,0,Transient-Party,93.75,0,2,Check-Out,2018-09-02 -City Hotel,0,42,2017,March,16,31,2,5,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,7.0,179.0,0,Transient,84.81,0,2,Check-Out,2020-02-01 -City Hotel,0,41,2017,April,16,25,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,114.87,0,2,Check-Out,2020-02-01 -City Hotel,1,11,2017,June,23,22,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.8,0,0,Canceled,2020-03-03 -City Hotel,1,45,2017,June,23,18,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,228.73,0,3,Canceled,2020-04-02 -Resort Hotel,0,1,2015,January,44,19,2,5,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,94.11,0,0,Check-Out,2018-12-03 -Resort Hotel,0,421,2015,October,45,21,2,5,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,286.0,179.0,0,Contract,37.86,0,0,Check-Out,2018-08-03 -Resort Hotel,0,277,2017,March,15,17,0,3,2,0.0,0,BB,SWE,Corporate,Corporate,0,0,1,A,A,2,No Deposit,11.0,224.0,0,Transient,30.25,0,0,Check-Out,2020-04-02 -City Hotel,0,14,2016,May,23,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,75.0,0,Transient,62.06,0,0,Check-Out,2019-07-04 -Resort Hotel,0,50,2016,November,50,31,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,64.06,0,1,Check-Out,2019-09-03 -City Hotel,1,0,2017,January,2,10,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Non Refund,11.0,179.0,0,Transient,37.11,0,0,Canceled,2019-09-03 -City Hotel,1,0,2015,July,32,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,2,No Deposit,8.0,179.0,0,Transient,113.08,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2017,January,4,18,0,7,2,0.0,0,BB,PRT,Corporate,Direct,1,0,1,E,D,0,No Deposit,40.0,179.0,0,Group,30.68,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2017,May,21,2,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,109.12,0,1,Check-Out,2020-06-02 -Resort Hotel,0,82,2016,July,33,21,2,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,81.0,179.0,0,Transient,2.65,1,0,Check-Out,2019-05-04 -Resort Hotel,0,9,2017,April,22,25,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,312.0,179.0,0,Transient-Party,188.97,0,0,Check-Out,2020-04-02 -City Hotel,1,16,2017,June,26,27,2,3,1,0.0,0,HB,BRA,Offline TA/TO,Direct,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,125.62,0,0,No-Show,2020-03-03 -City Hotel,1,7,2017,February,9,28,0,3,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,9.0,179.0,0,Transient-Party,64.54,0,1,Canceled,2020-02-01 -City Hotel,0,2,2016,October,45,10,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.32,0,1,Check-Out,2019-08-04 -City Hotel,0,2,2016,December,51,11,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -Resort Hotel,0,15,2016,December,52,25,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,37.34,0,0,Check-Out,2019-10-04 -Resort Hotel,1,154,2016,June,29,12,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,180.75,0,0,Canceled,2020-04-02 -Resort Hotel,0,88,2017,April,35,30,2,1,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-12-04 -City Hotel,1,10,2017,March,10,23,0,1,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,70.95,0,0,Canceled,2020-01-04 -Resort Hotel,0,106,2016,December,50,9,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,184.0,179.0,0,Transient-Party,83.94,0,0,Check-Out,2019-09-03 -Resort Hotel,0,11,2016,February,11,25,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,41.51,0,0,Check-Out,2018-12-03 -City Hotel,0,102,2016,October,44,21,1,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,62,Transient-Party,72.04,0,0,Check-Out,2019-07-04 -City Hotel,1,432,2016,May,22,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.32,0,0,Canceled,2019-02-01 -Resort Hotel,0,196,2017,February,18,10,0,1,1,0.0,0,Undefined,POL,Groups,Corporate,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient-Party,64.9,0,0,Check-Out,2019-11-03 -City Hotel,0,97,2017,August,39,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,240.0,179.0,0,Transient,82.93,0,1,Check-Out,2020-07-03 -Resort Hotel,0,10,2016,March,44,23,0,1,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,A,I,2,No Deposit,18.0,224.0,75,Transient,105.34,1,0,Check-Out,2019-04-03 -Resort Hotel,0,143,2016,September,44,28,3,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,309.0,179.0,0,Transient,187.34,0,0,Check-Out,2019-12-04 -City Hotel,0,25,2016,October,43,13,2,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.48,0,0,No-Show,2019-08-04 -City Hotel,1,32,2016,September,53,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,20.0,179.0,41,Transient,62.04,0,0,Canceled,2018-12-03 -City Hotel,1,1,2016,December,50,23,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,1.78,0,0,Canceled,2019-09-03 -City Hotel,0,139,2016,October,44,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,54.17,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2016,September,51,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,81.0,0,Transient,40.44,0,0,Check-Out,2019-11-03 -City Hotel,0,136,2017,April,9,6,1,2,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.36,0,2,Check-Out,2020-07-03 -City Hotel,1,49,2016,October,44,9,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.63,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,April,16,30,0,1,1,0.0,0,SC,BRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,68.76,0,0,Check-Out,2019-03-04 -Resort Hotel,0,151,2016,August,33,9,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,131.4,0,2,Check-Out,2019-05-04 -City Hotel,1,157,2016,September,33,26,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.74,0,0,Canceled,2019-06-03 -City Hotel,1,47,2015,October,51,29,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.61,0,0,Canceled,2018-08-03 -City Hotel,1,0,2016,June,4,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,64.0,0,Transient,28.65,0,0,Canceled,2019-11-03 -City Hotel,0,151,2016,August,36,16,0,5,2,1.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,204.63,0,1,Check-Out,2020-06-02 -City Hotel,1,260,2016,July,25,17,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,165.77,0,0,Check-Out,2019-05-04 -City Hotel,0,12,2017,April,9,5,0,3,2,0.0,0,BB,,Corporate,Corporate,1,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,97.11,0,0,Check-Out,2020-03-03 -City Hotel,1,14,2015,December,49,28,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,331.0,0,Transient,34.16,0,0,Canceled,2019-12-04 -Resort Hotel,0,10,2016,March,16,16,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,74.09,0,1,Check-Out,2019-02-01 -City Hotel,0,285,2016,October,41,18,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.65,0,1,Check-Out,2019-05-04 -City Hotel,0,11,2016,November,50,8,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,71.59,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,June,22,17,0,1,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,86.81,0,0,Check-Out,2019-07-04 -City Hotel,0,10,2017,May,19,6,0,2,1,0.0,0,SC,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.73,0,2,Check-Out,2020-05-03 -City Hotel,0,155,2017,July,31,19,0,3,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,12.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-07-03 -Resort Hotel,0,23,2016,May,26,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,95.52,0,1,Check-Out,2020-03-03 -Resort Hotel,1,132,2017,May,20,20,4,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,309.0,179.0,0,Transient,79.25,0,0,Canceled,2019-06-03 -City Hotel,1,160,2016,October,42,20,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,92.39,0,0,Canceled,2019-06-03 -Resort Hotel,0,37,2016,March,12,31,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,179.0,179.0,0,Transient-Party,61.44,1,0,Check-Out,2019-03-04 -City Hotel,0,3,2016,April,17,14,0,3,1,0.0,0,SC,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,108.19,0,0,Check-Out,2019-08-04 -City Hotel,0,247,2015,July,31,18,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,106.36,0,1,Check-Out,2018-07-03 -Resort Hotel,0,1,2016,May,19,4,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,I,0,No Deposit,82.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -Resort Hotel,1,240,2016,June,27,18,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,118.72,0,0,Canceled,2019-02-01 -Resort Hotel,0,258,2015,September,42,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,75.93,0,0,Check-Out,2018-07-03 -City Hotel,0,99,2016,October,44,21,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,113.61,0,0,Check-Out,2019-11-03 -City Hotel,0,37,2015,August,32,27,2,2,2,0.0,0,BB,,Online TA,Undefined,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,70.76,0,1,Check-Out,2019-01-03 -Resort Hotel,0,2,2017,January,19,20,1,3,3,0.0,0,BB,BRA,Online TA,Corporate,0,0,0,G,G,2,No Deposit,12.0,179.0,0,Transient-Party,83.23,1,0,Check-Out,2020-06-02 -City Hotel,0,13,2017,September,42,21,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Contract,88.47,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2015,July,30,15,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,97.25,0,1,Check-Out,2018-06-02 -Resort Hotel,1,44,2015,October,43,6,3,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,65.18,0,0,Canceled,2018-08-03 -City Hotel,1,196,2016,May,15,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,227.0,179.0,0,Transient,70.8,0,0,Canceled,2019-01-03 -City Hotel,0,17,2017,June,23,27,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,123.72,0,0,Check-Out,2019-11-03 -Resort Hotel,0,19,2017,May,23,19,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,71.76,0,1,Check-Out,2020-04-02 -City Hotel,1,11,2016,October,45,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,208.0,0,Transient-Party,101.0,0,0,Canceled,2019-08-04 -City Hotel,0,0,2015,September,37,15,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,A,1,No Deposit,14.0,179.0,0,Transient-Party,100.27,0,0,Check-Out,2018-06-02 -Resort Hotel,0,36,2015,February,3,6,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,E,0,No Deposit,244.0,179.0,0,Transient,36.87,0,0,Check-Out,2018-11-02 -Resort Hotel,1,267,2016,May,18,14,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,343.0,179.0,0,Contract,70.45,0,0,Canceled,2019-04-03 -Resort Hotel,0,38,2016,March,15,10,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,88.44,0,1,Check-Out,2019-02-01 -City Hotel,1,164,2016,July,38,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,131.52,0,0,No-Show,2020-06-02 -Resort Hotel,1,299,2016,September,42,27,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,173.0,179.0,0,Transient,193.57,0,2,Canceled,2019-10-04 -City Hotel,0,19,2016,September,42,9,0,1,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.85,0,2,Check-Out,2019-06-03 -City Hotel,0,55,2017,May,22,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,122.46,0,1,Check-Out,2020-03-03 -City Hotel,1,389,2017,May,22,5,2,3,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.3,0,0,Canceled,2020-02-01 -City Hotel,0,19,2016,April,17,27,0,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,9.0,179.0,0,Transient,117.87,0,0,Check-Out,2019-03-04 -Resort Hotel,0,106,2017,March,11,20,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,181.0,179.0,0,Transient,67.19,0,0,Check-Out,2020-01-04 -Resort Hotel,0,42,2017,March,17,2,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,31.0,179.0,0,Group,76.79,0,2,Check-Out,2019-10-04 -City Hotel,0,15,2016,December,53,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,34.17,0,0,Check-Out,2018-11-02 -City Hotel,0,30,2016,December,51,21,0,1,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,71.1,0,0,Check-Out,2019-11-03 -City Hotel,1,38,2016,December,50,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,87.47,0,0,Canceled,2018-12-03 -City Hotel,0,2,2016,May,37,25,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,167.49,0,1,Check-Out,2019-07-04 -City Hotel,1,33,2016,January,21,1,0,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,116.03,0,0,Canceled,2019-02-01 -City Hotel,1,245,2015,November,35,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,99.92,0,0,Canceled,2018-12-03 -Resort Hotel,1,13,2015,January,5,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,115.98,0,0,Canceled,2018-10-03 -Resort Hotel,0,24,2015,October,43,9,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,46.17,0,1,Check-Out,2018-05-03 -City Hotel,1,139,2017,May,21,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,2,No Deposit,312.0,179.0,0,Transient-Party,152.67,0,0,Canceled,2020-01-04 -City Hotel,1,162,2017,July,31,6,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.87,0,0,Canceled,2020-02-01 -City Hotel,0,181,2016,August,36,6,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,116.52,1,0,Check-Out,2019-03-04 -Resort Hotel,0,108,2016,October,44,30,0,4,2,1.0,0,HB,ESP,Direct,TA/TO,0,0,0,H,H,3,No Deposit,246.0,179.0,0,Transient,169.16,0,0,Check-Out,2019-01-03 -City Hotel,1,0,2016,August,18,13,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.34,0,1,Canceled,2019-04-03 -Resort Hotel,1,107,2015,August,31,6,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,36.71,0,0,Canceled,2018-06-02 -City Hotel,0,12,2015,September,53,30,2,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.67,0,2,Check-Out,2018-11-02 -Resort Hotel,0,190,2017,May,16,31,2,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,G,1,No Deposit,14.0,179.0,0,Transient,96.34,0,3,Check-Out,2020-04-02 -City Hotel,0,35,2016,August,42,21,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,85.0,179.0,0,Transient,114.51,0,0,Check-Out,2019-04-03 -Resort Hotel,0,267,2016,September,46,1,0,4,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,67.75,0,0,Check-Out,2019-09-03 -Resort Hotel,0,43,2016,February,10,2,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,78.16,0,1,Check-Out,2018-11-02 -City Hotel,1,150,2017,June,29,25,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.03,0,0,Canceled,2020-04-02 -City Hotel,0,18,2016,March,37,14,0,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,76.92,0,2,Check-Out,2019-12-04 -Resort Hotel,0,43,2016,January,11,10,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,L,0,No Deposit,243.0,179.0,0,Transient-Party,93.78,0,0,Check-Out,2018-12-03 -Resort Hotel,0,268,2017,August,30,15,2,7,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,178.0,179.0,0,Transient,162.28,0,0,Check-Out,2020-07-03 -City Hotel,0,32,2016,September,41,1,0,2,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,116.78,0,0,Check-Out,2018-06-02 -Resort Hotel,0,96,2016,July,35,18,2,5,2,2.0,0,HB,ITA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,239.0,179.0,0,Transient,136.59,1,0,Check-Out,2019-07-04 -Resort Hotel,0,155,2016,March,18,31,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,223.0,0,Transient-Party,81.29,0,0,Check-Out,2019-03-04 -City Hotel,0,31,2017,April,21,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,125.9,0,1,Check-Out,2020-04-02 -City Hotel,0,45,2015,September,44,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,116.76,0,0,Check-Out,2018-09-02 -Resort Hotel,0,105,2016,June,27,24,4,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,91.58,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,March,16,16,2,6,3,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,58.84,1,0,Check-Out,2019-11-03 -Resort Hotel,1,2,2016,December,49,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,18.0,225.0,0,Transient,36.3,0,0,Canceled,2019-11-03 -City Hotel,0,83,2016,January,14,6,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.03,0,2,Check-Out,2019-01-03 -Resort Hotel,1,270,2015,October,42,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.28,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2017,February,8,12,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,215.0,103.0,0,Transient,34.6,0,0,Check-Out,2020-04-02 -City Hotel,0,8,2016,May,24,26,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.13,0,0,Check-Out,2019-02-01 -Resort Hotel,0,51,2015,July,34,27,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,180.54,0,0,Check-Out,2019-05-04 -City Hotel,1,60,2016,December,53,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,95.11,0,0,Canceled,2018-10-03 -City Hotel,1,69,2017,August,38,28,2,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,74.28,0,0,Canceled,2019-08-04 -Resort Hotel,0,92,2016,December,18,3,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,245.0,41,Transient,38.4,0,0,Check-Out,2019-04-03 -City Hotel,1,4,2016,January,4,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,57.85,0,1,No-Show,2019-11-03 -City Hotel,1,298,2015,July,35,24,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,12,Transient-Party,59.51,0,0,Canceled,2017-11-02 -Resort Hotel,0,2,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,3,No Deposit,13.0,75.0,0,Transient,43.39,0,1,Check-Out,2019-12-04 -Resort Hotel,0,1,2015,July,34,18,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,62.36,1,0,Check-Out,2018-06-02 -City Hotel,0,307,2016,September,35,26,2,3,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,216.75,0,1,Check-Out,2019-06-03 -Resort Hotel,0,3,2016,October,44,5,1,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,122.73,0,0,Check-Out,2019-07-04 -Resort Hotel,0,44,2016,October,22,21,1,2,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,G,G,3,No Deposit,243.0,179.0,0,Transient,76.09,1,2,Check-Out,2019-03-04 -City Hotel,0,3,2017,July,33,23,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,137.56,0,0,Check-Out,2020-06-02 -City Hotel,1,367,2017,August,36,29,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.28,0,0,Canceled,2020-06-02 -City Hotel,1,158,2016,July,35,23,2,2,3,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,184.73,0,0,Canceled,2019-02-01 -Resort Hotel,0,51,2015,December,53,29,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,63.74,0,0,Check-Out,2019-09-03 -Resort Hotel,0,184,2016,July,37,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,136.25,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,October,43,27,1,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,100.35,0,0,Check-Out,2019-08-04 -Resort Hotel,1,154,2016,March,16,28,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,72.81,0,0,Canceled,2019-08-04 -City Hotel,1,11,2017,May,15,15,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,124.91,0,0,Canceled,2020-01-04 -City Hotel,0,46,2016,August,20,24,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,125.29,0,0,Check-Out,2019-06-03 -Resort Hotel,0,15,2016,April,22,15,0,1,1,0.0,0,BB,SWE,Corporate,Corporate,1,0,1,A,B,1,No Deposit,17.0,242.0,0,Transient,60.33,1,0,Check-Out,2019-07-04 -Resort Hotel,1,89,2016,July,30,23,0,2,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,120.27,0,0,Canceled,2019-01-03 -Resort Hotel,0,168,2016,August,26,30,2,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,150.97,1,2,Check-Out,2019-07-04 -City Hotel,0,42,2016,October,45,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,14.0,227.0,0,Transient-Party,40.84,0,0,Check-Out,2019-09-03 -City Hotel,1,37,2016,May,22,24,2,0,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,70.99,0,0,Canceled,2019-03-04 -City Hotel,0,34,2016,June,25,21,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.66,0,1,Check-Out,2019-03-04 -City Hotel,0,36,2016,July,31,17,3,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,96.8,0,0,Check-Out,2018-05-03 -Resort Hotel,0,187,2016,August,35,6,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,86.6,0,0,Check-Out,2019-09-03 -City Hotel,1,9,2016,October,43,25,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,72.1,0,2,Canceled,2019-08-04 -City Hotel,1,74,2015,August,33,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.7,0,0,No-Show,2018-06-02 -City Hotel,0,50,2016,August,33,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,3,No Deposit,9.0,179.0,0,Contract,95.4,0,1,Check-Out,2019-03-04 -City Hotel,0,154,2017,June,28,23,0,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Contract,125.69,0,0,Check-Out,2019-10-04 -City Hotel,1,92,2017,June,15,16,2,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Canceled,2020-03-03 -Resort Hotel,0,160,2016,August,31,2,4,10,2,0.0,0,HB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,192.91,0,0,Check-Out,2019-04-03 -City Hotel,1,82,2016,March,16,3,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,0,Transient,71.97,0,0,Canceled,2018-12-03 -Resort Hotel,1,15,2015,July,36,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,238.0,179.0,0,Transient,35.26,0,0,Canceled,2018-12-03 -Resort Hotel,0,85,2016,June,24,21,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,40.96,0,0,Check-Out,2019-05-04 -City Hotel,1,54,2015,September,41,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,61,Transient-Party,62.01,0,0,Canceled,2018-07-03 -City Hotel,1,265,2015,August,34,20,2,5,2,0.0,0,BB,ESP,Online TA,Undefined,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Contract,54.54,0,2,Canceled,2018-06-02 -City Hotel,0,0,2016,March,8,20,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,B,0,No Deposit,15.0,45.0,0,Transient,0.0,0,1,Check-Out,2020-02-01 -City Hotel,1,57,2015,December,50,17,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,92.02,0,2,Canceled,2018-08-03 -Resort Hotel,0,34,2016,August,38,24,3,10,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,133.44,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,June,15,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,20.21,0,0,Check-Out,2019-04-03 -Resort Hotel,1,141,2016,April,26,6,2,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,71.81,0,0,Canceled,2019-02-01 -Resort Hotel,1,94,2017,January,32,14,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,69.55,0,0,Canceled,2020-06-02 -City Hotel,0,157,2016,May,17,6,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,124.28,0,0,Check-Out,2019-02-01 -City Hotel,0,34,2017,May,19,6,1,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.98,0,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,October,40,23,0,2,2,0.0,0,BB,AUT,Corporate,Direct,0,0,0,A,C,0,No Deposit,96.0,179.0,0,Transient,34.35,0,0,Check-Out,2018-09-02 -City Hotel,1,9,2015,September,44,15,1,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,E,D,0,No Deposit,79.0,179.0,0,Group,68.92,0,0,Canceled,2017-11-02 -City Hotel,0,330,2016,May,23,14,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,82.93,0,1,Check-Out,2019-06-03 -City Hotel,1,43,2017,January,3,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,58.06,0,0,Canceled,2018-12-03 -Resort Hotel,0,26,2016,October,38,14,0,1,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,218.38,1,2,Check-Out,2019-03-04 -City Hotel,0,43,2015,November,51,10,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,127.57,0,2,Check-Out,2018-08-03 -Resort Hotel,0,286,2017,May,18,25,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,297.0,179.0,0,Transient,89.12,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,December,51,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,98.92,1,0,Check-Out,2019-01-03 -City Hotel,0,112,2016,June,32,8,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,70.77,0,1,Check-Out,2019-03-04 -Resort Hotel,1,99,2017,August,21,20,2,5,2,2.0,0,SC,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,64.46,0,3,Canceled,2020-04-02 -Resort Hotel,1,48,2017,May,24,27,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,186.19,0,1,Canceled,2019-06-03 -Resort Hotel,0,242,2017,May,30,12,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,F,0,No Deposit,245.0,179.0,0,Transient,121.78,1,3,Check-Out,2020-06-02 -Resort Hotel,0,11,2016,January,3,30,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,1,No Deposit,29.0,179.0,0,Transient,75.42,0,1,Check-Out,2018-11-02 -City Hotel,0,7,2017,June,27,15,1,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.18,0,1,Check-Out,2020-07-03 -Resort Hotel,1,60,2016,December,14,29,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,74.33,0,0,Canceled,2018-12-03 -City Hotel,0,7,2016,March,14,6,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,125.0,179.0,0,Transient,68.47,1,1,Check-Out,2019-03-04 -City Hotel,0,377,2017,July,26,21,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,94.65,0,1,Check-Out,2020-06-02 -City Hotel,0,4,2016,October,44,13,0,1,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,0.36,0,0,Check-Out,2019-08-04 -Resort Hotel,0,219,2017,August,32,28,2,7,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,D,C,0,No Deposit,250.0,179.0,0,Transient,126.79,1,0,Check-Out,2020-06-02 -Resort Hotel,0,9,2015,November,45,19,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,91.73,0,0,Check-Out,2018-06-02 -Resort Hotel,0,46,2016,March,18,16,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,59.86,0,0,Check-Out,2019-04-03 -City Hotel,1,143,2016,January,51,22,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.41,0,0,Canceled,2019-11-03 -City Hotel,1,44,2016,January,10,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,62.96,0,1,No-Show,2019-01-03 -City Hotel,0,0,2016,December,49,21,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-11-02 -Resort Hotel,0,248,2015,August,36,17,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Contract,63.57,0,0,Check-Out,2018-06-02 -City Hotel,0,18,2016,April,11,29,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,97.79,0,1,Canceled,2019-01-03 -City Hotel,1,420,2015,July,47,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Refundable,1.0,179.0,0,Transient-Party,62.0,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,December,44,6,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,71.84,0,0,Check-Out,2019-05-04 -Resort Hotel,0,108,2016,December,51,2,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,59.92,0,2,Check-Out,2018-11-02 -Resort Hotel,1,49,2015,December,43,7,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,E,0,Non Refund,11.0,179.0,0,Transient,95.07,0,0,Canceled,2018-08-03 -City Hotel,1,108,2017,June,26,22,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,230.51,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2017,July,31,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,77.98,0,1,Check-Out,2020-04-02 -Resort Hotel,1,151,2016,March,17,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,D,D,0,Refundable,12.0,179.0,0,Transient-Party,121.9,1,0,Canceled,2019-02-01 -Resort Hotel,0,1,2015,December,51,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,17.0,246.0,0,Transient,28.61,0,0,Check-Out,2019-12-04 -City Hotel,1,42,2017,May,21,28,2,1,2,2.0,0,BB,CHE,Direct,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,226.68,0,0,Canceled,2020-04-02 -City Hotel,1,115,2017,August,37,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Contract,168.18,0,0,Canceled,2020-07-03 -Resort Hotel,0,9,2015,December,51,28,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,37.15,0,2,Check-Out,2018-08-03 -City Hotel,0,256,2017,May,22,13,0,1,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,216.91,0,0,Check-Out,2020-06-02 -Resort Hotel,1,274,2015,February,9,12,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,311.0,179.0,0,Transient,45.62,0,0,Canceled,2019-01-03 -Resort Hotel,0,77,2017,March,23,15,1,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,43.93,0,0,Check-Out,2019-11-03 -Resort Hotel,0,10,2016,June,21,6,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,114.17,0,1,Check-Out,2019-06-03 -Resort Hotel,1,103,2017,January,28,23,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Refundable,244.0,179.0,0,Transient,191.3,0,0,Canceled,2020-02-01 -Resort Hotel,1,305,2016,October,36,13,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,60.59,0,0,Canceled,2019-05-04 -City Hotel,0,32,2017,March,12,20,0,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,192.65,0,0,Check-Out,2019-02-01 -City Hotel,1,2,2017,May,23,25,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.45,0,0,Canceled,2020-04-02 -Resort Hotel,1,35,2016,July,36,27,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,210.44,0,0,Canceled,2019-04-03 -City Hotel,0,11,2017,July,27,27,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,100.41,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2016,May,10,15,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,75.75,0,0,Canceled,2019-01-03 -City Hotel,1,315,2016,June,34,26,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,132.53,0,0,Canceled,2018-11-02 -City Hotel,1,30,2016,March,8,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,61.34,0,0,No-Show,2019-03-04 -City Hotel,1,103,2017,May,22,2,1,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,123.49,0,0,Canceled,2019-11-03 -City Hotel,1,71,2016,April,15,24,0,2,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,130.0,179.0,0,Transient,68.5,0,0,Canceled,2019-03-04 -Resort Hotel,0,4,2017,February,10,9,2,0,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient-Party,37.35,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,July,34,5,2,1,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,2,No Deposit,248.0,179.0,0,Transient,131.13,1,0,Check-Out,2019-02-01 -City Hotel,0,41,2017,May,21,4,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.47,0,0,Check-Out,2020-03-03 -City Hotel,1,19,2015,October,46,10,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,57.73,0,0,Canceled,2018-09-02 -City Hotel,1,47,2017,May,21,15,0,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.47,0,1,Canceled,2020-06-02 -City Hotel,0,17,2016,July,32,17,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,113.28,0,0,Check-Out,2020-06-02 -Resort Hotel,0,100,2017,August,37,21,2,4,2,1.0,0,HB,,Online TA,Direct,0,0,0,E,G,2,No Deposit,244.0,179.0,0,Transient,151.16,1,0,Check-Out,2020-07-03 -City Hotel,0,16,2016,November,53,29,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,70.18,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,June,25,12,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,101.88,0,0,Check-Out,2019-03-04 -Resort Hotel,0,249,2016,June,41,11,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,103.47,1,1,Check-Out,2019-07-04 -City Hotel,0,98,2015,July,31,15,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Group,63.36,0,0,Check-Out,2018-05-03 -City Hotel,1,247,2015,November,39,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.0,0,1,Canceled,2018-01-03 -City Hotel,0,48,2015,December,53,25,2,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,155.58,0,0,Canceled,2018-08-03 -City Hotel,1,423,2015,September,34,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,0,Transient,114.45,0,0,Canceled,2018-06-02 -City Hotel,1,106,2016,December,28,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.09,0,0,Canceled,2018-12-03 -City Hotel,0,78,2016,December,51,10,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,37.0,179.0,0,Transient,67.9,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,April,18,12,2,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,12.0,331.0,0,Transient-Party,98.97,0,1,Check-Out,2019-12-04 -City Hotel,0,107,2016,December,36,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,97.48,0,1,Check-Out,2019-06-03 -City Hotel,0,1,2016,October,42,2,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,F,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -Resort Hotel,1,18,2017,July,34,24,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,D,1,No Deposit,10.0,179.0,0,Transient,187.83,0,1,Canceled,2020-06-02 -City Hotel,0,0,2016,October,43,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,265.0,0,Transient,3.68,0,0,Check-Out,2019-09-03 -Resort Hotel,1,37,2015,September,38,15,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,134.27,0,0,Canceled,2018-08-03 -Resort Hotel,0,145,2016,June,26,30,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,128.56,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,June,22,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,C,2,No Deposit,17.0,179.0,0,Transient,0.0,0,3,Check-Out,2020-06-02 -Resort Hotel,0,27,2015,October,43,15,0,1,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,83.0,179.0,0,Transient,69.86,0,0,Check-Out,2019-09-03 -City Hotel,0,155,2016,September,41,19,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,26.0,179.0,0,Transient,96.85,0,0,Check-Out,2019-08-04 -Resort Hotel,0,45,2017,May,27,28,2,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,81.87,0,2,Check-Out,2019-09-03 -City Hotel,1,105,2017,February,2,3,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,82.71,0,0,Canceled,2018-11-02 -City Hotel,1,376,2016,May,22,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,39,Transient,86.1,0,0,Canceled,2019-05-04 -City Hotel,1,37,2016,December,50,2,0,3,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,120.33,0,1,Check-Out,2019-10-04 -City Hotel,1,62,2016,May,22,24,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,72.48,0,0,Canceled,2019-01-03 -Resort Hotel,1,255,2015,July,34,6,2,5,2,2.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,127.41,0,3,Canceled,2018-05-03 -Resort Hotel,0,94,2017,April,9,15,2,5,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,151.5,0,2,Check-Out,2020-02-01 -City Hotel,1,151,2017,March,10,22,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,78.97,0,0,Canceled,2019-11-03 -Resort Hotel,0,28,2016,March,10,21,0,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,174.0,179.0,0,Transient,75.49,0,2,Check-Out,2018-12-03 -City Hotel,0,98,2017,April,15,30,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,2,No Deposit,17.0,45.0,0,Transient,80.8,0,0,Check-Out,2020-02-01 -City Hotel,0,16,2015,October,45,7,0,2,1,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,76.0,0,Transient-Party,61.55,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,January,4,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,62.9,0,0,Check-Out,2018-11-02 -City Hotel,0,55,2015,December,52,20,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,93.0,179.0,0,Transient-Party,122.32,0,0,Check-Out,2018-08-03 -Resort Hotel,1,30,2016,May,16,22,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,123.13,0,0,Canceled,2019-02-01 -Resort Hotel,1,96,2016,March,17,31,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,E,0,Refundable,14.0,222.0,75,Transient-Party,68.69,0,0,Canceled,2019-02-01 -City Hotel,0,2,2017,February,10,24,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,66.97,0,3,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,January,2,29,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,62.21,0,0,Check-Out,2019-02-01 -City Hotel,1,35,2016,March,7,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,65.01,0,0,Canceled,2018-10-03 -City Hotel,1,189,2016,June,9,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,73.81,0,0,Canceled,2019-03-04 -Resort Hotel,0,89,2016,March,18,16,2,1,2,0.0,0,BB,GBR,Complementary,TA/TO,1,0,1,A,D,0,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,1,57,2016,March,16,6,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,77.18,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2016,September,44,2,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,48.22,0,0,Check-Out,2018-12-03 -Resort Hotel,1,134,2015,August,50,27,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient,85.12,0,3,No-Show,2019-11-03 -City Hotel,0,17,2016,May,21,3,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,173.36,0,0,Check-Out,2020-01-04 -City Hotel,1,54,2016,December,4,15,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,116.43,0,0,Canceled,2019-02-01 -City Hotel,0,45,2017,March,18,24,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.37,0,1,Check-Out,2020-01-04 -Resort Hotel,1,147,2017,July,27,24,2,4,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,2,No Deposit,12.0,179.0,0,Transient,171.25,0,0,Canceled,2020-06-02 -City Hotel,0,204,2015,August,36,5,2,5,2,0.0,0,BB,,Complementary,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,92.99,0,2,Check-Out,2018-07-03 -Resort Hotel,0,25,2016,March,9,17,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,69.31,0,0,Check-Out,2019-06-03 -City Hotel,0,34,2016,September,16,17,2,5,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,184.5,0,2,Check-Out,2019-02-01 -City Hotel,0,2,2017,April,17,9,0,2,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,13.0,179.0,0,Transient,123.43,1,1,Check-Out,2020-02-01 -City Hotel,1,24,2017,August,35,13,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,103.69,0,2,Canceled,2020-06-02 -City Hotel,0,0,2016,October,42,5,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.88,0,1,Check-Out,2018-12-03 -City Hotel,0,43,2017,May,21,8,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,88.5,0,0,Check-Out,2020-05-03 -City Hotel,0,211,2017,June,35,29,2,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,220.39,0,1,Check-Out,2020-06-02 -City Hotel,0,1,2015,July,32,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,31.75,0,0,Check-Out,2018-08-03 -Resort Hotel,0,44,2015,August,38,27,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient-Party,118.23,0,0,Check-Out,2018-06-02 -Resort Hotel,0,360,2015,July,33,31,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,70.47,0,1,Check-Out,2018-06-02 -Resort Hotel,0,17,2015,July,34,9,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,61.41,0,2,Check-Out,2018-06-02 -City Hotel,0,107,2017,April,21,13,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,113.65,0,0,Check-Out,2019-11-03 -Resort Hotel,0,154,2017,June,30,5,4,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,82.12,0,1,Check-Out,2020-04-02 -City Hotel,0,90,2016,November,49,8,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,63.09,0,2,Check-Out,2019-12-04 -City Hotel,0,154,2016,July,29,27,1,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,76.32,0,0,Check-Out,2019-06-03 -City Hotel,0,20,2016,June,27,29,0,1,1,0.0,0,BB,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,201.0,179.0,0,Transient-Party,130.96,0,0,Check-Out,2019-06-03 -City Hotel,0,13,2016,September,43,21,2,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,168.61,0,0,Check-Out,2019-07-04 -City Hotel,0,16,2016,March,10,28,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,16.0,179.0,0,Transient,40.86,0,0,Check-Out,2019-03-04 -City Hotel,0,18,2017,August,37,13,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.68,0,3,Check-Out,2020-06-02 -City Hotel,1,255,2016,June,27,30,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,43.45,0,0,Canceled,2019-05-04 -City Hotel,0,40,2016,December,44,7,1,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.66,0,0,Check-Out,2018-12-03 -City Hotel,0,9,2016,June,27,2,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,A,C,0,No Deposit,13.0,331.0,0,Transient-Party,92.02,0,0,Check-Out,2019-07-04 -City Hotel,1,334,2016,October,47,2,1,1,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,300.0,179.0,0,Transient,79.94,0,0,Canceled,2019-08-04 -Resort Hotel,1,111,2017,April,21,24,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,0,Non Refund,245.0,179.0,0,Transient,77.59,0,0,Canceled,2019-10-04 -City Hotel,1,418,2015,October,45,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,93.13,0,0,Canceled,2017-12-03 -City Hotel,0,8,2016,April,16,15,0,2,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,75,Transient,203.08,1,0,Check-Out,2019-02-01 -City Hotel,0,4,2016,March,8,9,1,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,B,D,0,Non Refund,32.0,179.0,0,Transient,42.34,0,0,Canceled,2018-10-03 -Resort Hotel,0,11,2016,October,35,28,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,96.44,0,1,Check-Out,2019-08-04 -City Hotel,1,107,2016,October,44,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,60.75,0,0,Canceled,2018-09-02 -City Hotel,0,0,2016,March,11,19,0,2,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,81.69,0,2,Check-Out,2019-02-01 -City Hotel,1,150,2016,June,27,19,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,115.89,0,0,Canceled,2019-03-04 -Resort Hotel,1,44,2016,June,33,30,3,10,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,E,3,No Deposit,14.0,179.0,0,Transient,36.43,0,0,Canceled,2019-06-03 -City Hotel,1,43,2017,July,30,6,2,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,149.27,0,3,Canceled,2020-01-04 -City Hotel,1,27,2016,March,9,13,2,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient,94.53,0,0,Canceled,2019-10-04 -City Hotel,0,109,2017,March,21,7,2,5,2,0.0,0,HB,,Online TA,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,103.63,0,1,Check-Out,2020-03-03 -City Hotel,0,254,2015,November,50,10,2,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,63,Contract,79.34,0,1,Check-Out,2018-08-03 -Resort Hotel,1,134,2016,July,31,17,2,2,3,1.0,0,BB,,Direct,Direct,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,222.84,1,0,Canceled,2018-06-02 -City Hotel,0,309,2017,March,18,12,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,98.38,1,3,Check-Out,2020-03-03 -City Hotel,1,41,2016,November,49,4,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.99,0,0,No-Show,2018-12-03 -City Hotel,0,31,2016,July,21,30,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,129.43,0,1,Check-Out,2020-06-02 -City Hotel,0,4,2016,June,27,6,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.44,0,2,Check-Out,2019-06-03 -City Hotel,1,225,2017,July,32,21,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,159.43,0,0,Canceled,2020-06-02 -City Hotel,1,70,2017,February,10,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.24,0,0,Canceled,2019-10-04 -City Hotel,0,0,2017,February,8,18,1,0,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,80.9,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,March,17,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient-Party,63.89,0,0,Check-Out,2018-11-02 -City Hotel,1,56,2015,September,38,8,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.5,0,0,Canceled,2017-11-02 -Resort Hotel,0,3,2017,May,4,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,132.59,1,0,Check-Out,2020-04-02 -City Hotel,0,87,2016,April,16,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.59,0,1,Check-Out,2019-04-03 -City Hotel,1,11,2016,January,4,6,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.81,0,0,Canceled,2019-11-03 -City Hotel,0,39,2016,March,14,15,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,66.73,0,2,Check-Out,2020-04-02 -Resort Hotel,0,57,2016,October,44,17,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,37.36,0,0,Check-Out,2018-09-02 -City Hotel,1,133,2016,September,35,16,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,95.83,0,0,Canceled,2019-08-04 -Resort Hotel,0,18,2016,April,27,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,164.0,179.0,0,Transient-Party,123.99,0,2,Check-Out,2019-05-04 -City Hotel,0,14,2015,July,34,19,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,A,F,0,No Deposit,12.0,179.0,0,Transient,114.47,0,2,Check-Out,2018-08-03 -Resort Hotel,1,97,2017,May,22,25,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,160.0,179.0,0,Transient,129.26,0,0,Canceled,2020-03-03 -City Hotel,0,137,2017,July,27,28,1,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.24,0,1,Check-Out,2020-07-03 -City Hotel,0,2,2016,March,11,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,71.0,0,Transient,72.48,0,0,Check-Out,2019-07-04 -Resort Hotel,0,41,2016,July,36,10,0,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,187.69,0,0,Check-Out,2019-07-04 -Resort Hotel,1,158,2016,March,16,11,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,Refundable,15.0,179.0,0,Transient,49.57,0,0,Canceled,2019-02-01 -City Hotel,1,28,2016,December,49,6,0,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,26.0,179.0,0,Transient,69.03,0,0,Canceled,2019-11-03 -City Hotel,1,90,2017,May,21,28,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,227.9,0,0,Canceled,2020-02-01 -City Hotel,1,154,2016,April,16,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,93.41,0,0,Canceled,2018-11-02 -Resort Hotel,0,2,2016,April,18,2,2,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,1,No Deposit,250.0,179.0,0,Transient,49.79,1,0,Check-Out,2019-03-04 -Resort Hotel,0,32,2016,March,8,30,0,4,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,64.1,0,0,Check-Out,2019-02-01 -Resort Hotel,0,15,2015,November,52,31,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient-Party,30.07,0,0,Check-Out,2019-01-03 -City Hotel,1,17,2015,September,49,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,15.0,45.0,0,Transient,159.98,0,0,Canceled,2018-05-03 -City Hotel,1,13,2017,June,28,20,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,163.64,0,0,Canceled,2020-05-03 -City Hotel,0,380,2016,October,44,28,0,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,125.66,0,1,Check-Out,2019-06-03 -City Hotel,0,40,2017,May,26,10,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.97,0,1,Check-Out,2019-12-04 -Resort Hotel,0,51,2016,October,45,5,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient,176.43,1,1,Check-Out,2019-08-04 -City Hotel,0,16,2017,March,10,24,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.22,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,April,21,6,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,1,0,0,D,D,0,No Deposit,12.0,154.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,1,39,2016,March,21,6,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,114.08,0,1,Canceled,2019-02-01 -Resort Hotel,0,85,2017,May,23,27,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,77.73,0,1,Check-Out,2019-06-03 -City Hotel,1,44,2016,March,9,15,2,0,1,0.0,0,BB,,Aviation,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,71.48,0,0,Canceled,2019-02-01 -Resort Hotel,0,17,2015,September,38,5,1,4,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,242.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -City Hotel,1,32,2017,May,20,10,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,115.05,0,0,Canceled,2020-01-04 -City Hotel,1,11,2016,October,44,14,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,102.85,0,1,Canceled,2019-12-04 -Resort Hotel,1,155,2016,April,11,28,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,77.62,0,0,Canceled,2019-03-04 -City Hotel,1,260,2017,April,15,4,2,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.51,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2016,January,4,28,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,3,No Deposit,14.0,82.0,0,Transient,60.16,1,0,Check-Out,2019-09-03 -City Hotel,0,32,2017,April,15,24,2,3,3,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,100.81,0,1,Check-Out,2020-04-02 -City Hotel,0,43,2017,June,31,5,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,102.78,0,0,Check-Out,2020-03-03 -Resort Hotel,0,38,2017,February,10,7,0,3,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,77.44,0,0,Check-Out,2019-10-04 -City Hotel,0,109,2017,August,20,25,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,25.0,179.0,0,Transient-Party,121.82,0,0,Check-Out,2020-07-03 -City Hotel,0,191,2017,May,17,31,2,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.83,0,1,Check-Out,2020-04-02 -City Hotel,0,7,2017,June,31,6,1,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,74.16,0,1,Check-Out,2020-03-03 -City Hotel,0,13,2015,November,44,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,15.0,236.0,0,Transient,118.18,0,0,Check-Out,2018-09-02 -City Hotel,0,145,2017,May,19,13,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient,82.84,0,0,Check-Out,2020-03-03 -City Hotel,0,39,2016,March,27,12,2,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,165.14,0,1,Check-Out,2019-03-04 -Resort Hotel,1,240,2015,July,33,20,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,L,F,0,No Deposit,14.0,179.0,0,Transient,195.64,0,0,Canceled,2018-05-03 -City Hotel,1,65,2017,April,22,28,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.14,0,0,Canceled,2020-04-02 -Resort Hotel,1,184,2016,February,16,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,65,Transient,46.07,0,0,Canceled,2018-12-03 -Resort Hotel,0,153,2016,March,10,31,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,222.0,0,Transient-Party,74.7,0,0,Check-Out,2019-02-01 -City Hotel,1,12,2016,October,42,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.11,0,0,Canceled,2019-08-04 -Resort Hotel,0,42,2016,August,38,28,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,226.7,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2016,January,4,24,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,104.13,0,1,Check-Out,2019-02-01 -Resort Hotel,1,211,2017,August,34,20,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,98.66,0,0,Canceled,2019-08-04 -City Hotel,0,99,2017,July,33,6,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-06-02 -City Hotel,1,300,2015,September,45,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.73,0,0,Canceled,2017-11-02 -City Hotel,1,14,2015,December,38,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,59.11,0,0,Canceled,2019-01-03 -City Hotel,0,25,2016,December,53,5,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.4,0,1,Check-Out,2019-10-04 -City Hotel,0,243,2016,April,16,31,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.42,0,1,Check-Out,2019-02-01 -City Hotel,0,21,2017,May,22,16,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,223.01,0,3,Check-Out,2020-05-03 -Resort Hotel,0,48,2016,June,27,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,131.0,179.0,0,Transient,92.07,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2015,August,35,9,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,252.0,179.0,0,Transient,183.31,0,2,Check-Out,2018-06-02 -City Hotel,0,145,2016,March,44,31,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,Refundable,16.0,223.0,75,Transient-Party,74.46,0,0,Check-Out,2019-06-03 -City Hotel,0,18,2016,October,45,15,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,235.0,0,Transient-Party,75.13,0,2,Check-Out,2018-09-02 -City Hotel,0,18,2015,November,43,10,2,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,72.92,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2017,March,17,28,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.26,0,0,Check-Out,2020-02-01 -Resort Hotel,0,3,2016,October,45,30,0,10,2,0.0,0,BB,,Direct,Direct,0,0,0,A,E,3,No Deposit,249.0,179.0,0,Transient,84.65,0,3,Check-Out,2019-09-03 -City Hotel,1,254,2017,June,28,1,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,116.9,0,0,Canceled,2020-03-03 -City Hotel,0,101,2016,June,15,8,1,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,79.0,179.0,0,Transient,76.88,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2016,October,44,11,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,K,1,No Deposit,10.0,179.0,0,Group,0.0,1,0,Check-Out,2019-09-03 -City Hotel,0,238,2016,November,51,2,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.47,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,October,45,27,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,155.83,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,March,12,28,2,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,G,E,1,No Deposit,12.0,179.0,0,Contract,119.8,1,0,Check-Out,2020-02-01 -Resort Hotel,0,1,2015,December,50,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,0,No Deposit,15.0,254.0,0,Transient,29.47,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2017,March,11,10,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient-Party,59.54,0,2,Check-Out,2019-10-04 -City Hotel,0,93,2017,May,21,10,2,3,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,F,G,1,No Deposit,9.0,179.0,0,Transient-Party,125.53,1,3,Check-Out,2020-03-03 -City Hotel,1,47,2017,August,36,14,0,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,189.56,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,April,15,9,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,I,0,No Deposit,239.0,179.0,0,Transient,0.0,1,3,Check-Out,2019-02-01 -City Hotel,0,77,2016,July,32,10,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.04,0,2,Check-Out,2019-04-03 -City Hotel,1,276,2017,February,27,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,D,D,0,Non Refund,8.0,179.0,0,Transient,63.59,0,0,Canceled,2019-11-03 -City Hotel,0,193,2016,October,46,26,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,81.52,0,0,Check-Out,2019-06-03 -City Hotel,0,93,2016,December,9,28,2,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Contract,153.42,0,1,Check-Out,2019-01-03 -City Hotel,0,46,2016,December,50,24,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,E,E,0,No Deposit,29.0,179.0,0,Group,91.74,0,1,Check-Out,2019-10-04 -City Hotel,0,44,2016,October,44,15,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.1,0,2,Check-Out,2019-08-04 -Resort Hotel,1,165,2016,June,21,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,93.1,0,0,Canceled,2019-03-04 -City Hotel,0,3,2017,June,35,23,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,120.9,0,1,Check-Out,2020-06-02 -City Hotel,1,49,2016,July,34,4,2,3,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,F,0,No Deposit,11.0,179.0,0,Transient,209.35,0,0,No-Show,2019-01-03 -City Hotel,0,36,2016,December,53,24,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,17,Transient,84.02,0,2,Check-Out,2019-12-04 -City Hotel,0,11,2017,May,22,27,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,125.56,0,2,Check-Out,2020-04-02 -City Hotel,1,102,2017,March,9,12,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.56,0,0,Canceled,2020-01-04 -Resort Hotel,0,30,2016,August,35,6,2,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,239.0,179.0,0,Transient,60.65,1,1,Check-Out,2018-09-02 -Resort Hotel,0,0,2017,August,16,21,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,35.77,0,3,Check-Out,2020-03-03 -City Hotel,1,86,2017,June,24,2,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,121.93,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,January,2,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,110.12,0,1,Check-Out,2018-11-02 -City Hotel,1,83,2016,December,12,11,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.02,0,0,Canceled,2018-01-03 -City Hotel,0,184,2016,February,26,24,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,73.13,0,0,Check-Out,2019-11-03 -City Hotel,1,78,2015,September,36,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.45,0,0,No-Show,2019-04-03 -Resort Hotel,0,14,2017,March,12,5,0,1,2,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,319.0,223.0,0,Transient-Party,60.22,0,0,Check-Out,2020-01-04 -Resort Hotel,0,264,2017,June,28,17,3,1,1,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,2,Non Refund,35.0,179.0,0,Transient,224.54,0,0,Check-Out,2020-06-02 -City Hotel,0,195,2017,September,34,26,2,5,2,0.0,0,HB,,Offline TA/TO,Corporate,0,0,0,A,I,1,No Deposit,85.0,179.0,0,Transient-Party,76.66,0,0,Check-Out,2020-03-03 -City Hotel,1,43,2015,September,33,31,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,96.49,0,0,Canceled,2018-06-02 -Resort Hotel,0,3,2016,February,24,30,1,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,C,2,No Deposit,320.0,179.0,0,Transient-Party,61.93,0,0,Check-Out,2019-12-04 -Resort Hotel,0,4,2016,November,44,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,P,0,No Deposit,15.0,243.0,0,Transient,83.02,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,December,52,29,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,92.52,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2017,April,12,28,1,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,31.52,0,2,Check-Out,2020-03-03 -City Hotel,1,7,2017,March,8,19,1,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,1,B,B,0,No Deposit,15.0,179.0,0,Transient,61.33,0,0,Canceled,2020-03-03 -City Hotel,0,135,2016,December,53,25,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,30.0,179.0,0,Transient,77.08,0,0,Check-Out,2019-09-03 -Resort Hotel,1,156,2015,December,50,5,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,59.81,0,0,Canceled,2018-09-02 -City Hotel,1,13,2017,May,17,9,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,116.23,0,0,Canceled,2020-02-01 -Resort Hotel,0,151,2016,March,11,6,2,5,2,0.0,0,FB,POL,Groups,Direct,0,0,0,E,F,1,No Deposit,324.0,179.0,0,Transient,54.76,0,0,Check-Out,2018-11-02 -City Hotel,0,1,2016,October,44,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,72.78,0,0,Check-Out,2019-09-03 -City Hotel,0,17,2015,August,36,28,0,3,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,132.22,0,0,Check-Out,2018-06-02 -City Hotel,0,32,2015,February,43,6,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,66.27,0,3,Check-Out,2019-06-03 -Resort Hotel,0,12,2017,March,18,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,62.52,0,0,Check-Out,2020-04-02 -Resort Hotel,1,95,2016,March,9,20,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,241.0,179.0,0,Transient,95.92,0,1,No-Show,2019-03-04 -City Hotel,0,98,2016,April,20,5,0,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,95.23,0,0,Check-Out,2018-12-03 -Resort Hotel,0,1,2016,May,23,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,252.0,0,Transient,36.9,1,0,Check-Out,2019-04-03 -Resort Hotel,0,75,2016,July,35,2,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,137.76,0,0,Check-Out,2018-06-02 -City Hotel,0,245,2015,October,44,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,64.0,179.0,0,Contract,100.99,0,1,Check-Out,2018-08-03 -City Hotel,0,137,2016,April,18,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,169.78,0,2,Check-Out,2019-02-01 -City Hotel,0,40,2016,October,41,26,0,2,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.82,0,0,Check-Out,2018-08-03 -City Hotel,1,39,2017,April,16,7,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.99,0,2,Canceled,2020-02-01 -City Hotel,0,34,2017,March,9,30,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,161.89,0,1,Check-Out,2020-03-03 -City Hotel,0,42,2017,June,25,27,2,2,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Contract,106.22,0,0,Check-Out,2020-03-03 -Resort Hotel,0,215,2016,August,35,14,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,197.13,0,3,Check-Out,2020-06-02 -Resort Hotel,0,158,2015,December,50,31,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,38.12,1,2,Check-Out,2018-11-02 -City Hotel,0,159,2017,February,17,8,0,2,1,0.0,0,BB,AUT,Corporate,Direct,0,0,0,G,F,0,No Deposit,14.0,179.0,0,Transient,104.78,0,0,Check-Out,2020-03-03 -City Hotel,1,47,2016,December,50,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,70.1,0,0,Canceled,2018-08-03 -Resort Hotel,0,42,2016,February,10,30,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,147.0,179.0,0,Transient,62.31,0,0,Check-Out,2019-01-03 -Resort Hotel,0,155,2015,November,44,30,1,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient-Party,184.05,1,0,Check-Out,2017-12-03 -City Hotel,1,16,2017,May,23,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient-Party,63.41,0,0,Canceled,2019-01-03 -City Hotel,0,38,2015,October,43,6,2,1,2,1.0,0,BB,NOR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,103.8,0,1,Check-Out,2019-06-03 -City Hotel,0,39,2015,October,43,15,0,1,1,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,62,Transient-Party,86.6,0,0,Check-Out,2019-09-03 -Resort Hotel,0,45,2017,February,16,7,2,5,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,353.0,179.0,0,Transient,97.97,0,0,Check-Out,2020-03-03 -Resort Hotel,1,49,2016,May,22,23,2,3,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,D,E,0,No Deposit,248.0,179.0,0,Transient,206.86,0,2,Canceled,2019-03-04 -City Hotel,0,0,2016,December,51,28,0,1,1,0.0,0,SC,POL,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,74.0,0,0,Check-Out,2019-10-04 -City Hotel,0,3,2016,December,50,27,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,74.9,0,0,Check-Out,2019-12-04 -City Hotel,1,47,2016,March,4,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,118.21,0,0,Canceled,2018-11-02 -City Hotel,1,194,2016,August,37,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,61,Transient,219.75,0,0,Canceled,2019-05-04 -Resort Hotel,0,61,2015,November,48,7,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,127.45,0,2,Check-Out,2018-11-02 -Resort Hotel,0,16,2016,February,8,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,45.11,0,0,Check-Out,2018-11-02 -Resort Hotel,0,179,2016,September,41,13,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,237.0,179.0,0,Group,98.55,1,1,Check-Out,2019-09-03 -City Hotel,0,19,2015,October,43,10,0,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.99,0,0,Check-Out,2018-08-03 -City Hotel,1,37,2017,February,12,29,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,6.0,179.0,0,Transient,86.67,0,0,Canceled,2019-11-03 -City Hotel,0,44,2016,June,27,28,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,77.41,0,0,Check-Out,2019-03-04 -City Hotel,1,274,2016,March,53,6,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,40.91,0,1,Canceled,2019-03-04 -Resort Hotel,0,40,2016,March,12,23,2,2,2,0.0,0,Undefined,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient,97.44,0,0,Check-Out,2018-11-02 -City Hotel,1,264,2015,July,33,28,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.87,0,0,Canceled,2018-06-02 -City Hotel,0,27,2016,December,51,25,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,91.91,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,January,49,18,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,60.24,0,0,Check-Out,2019-10-04 -City Hotel,0,87,2016,May,22,23,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,122.91,0,0,Check-Out,2019-03-04 -Resort Hotel,1,106,2016,December,50,16,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,185.0,179.0,0,Transient,84.95,0,0,Canceled,2018-11-02 -Resort Hotel,0,262,2016,October,45,30,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,117.15,0,1,Check-Out,2019-06-03 -Resort Hotel,0,56,2016,January,4,21,1,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,42.46,0,0,Check-Out,2018-11-02 -Resort Hotel,0,23,2017,June,33,20,2,10,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,2,No Deposit,13.0,179.0,0,Transient,201.01,0,0,Check-Out,2020-03-03 -City Hotel,1,237,2015,July,34,21,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.62,0,1,Canceled,2018-05-03 -Resort Hotel,0,30,2016,April,15,25,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,85.0,179.0,0,Transient,66.77,1,0,Check-Out,2019-02-01 -City Hotel,1,164,2016,March,22,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,18,Transient,74.36,0,0,Canceled,2018-11-02 -Resort Hotel,0,12,2016,May,22,2,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,116.21,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,October,45,13,2,1,1,0.0,0,BB,CN,Corporate,Corporate,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient-Party,84.81,0,0,Check-Out,2018-08-03 -Resort Hotel,0,120,2016,July,25,20,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,79.02,0,2,Check-Out,2019-10-04 -City Hotel,0,41,2017,March,10,21,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,79.44,0,2,Check-Out,2019-02-01 -Resort Hotel,0,243,2016,August,37,21,0,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,148.02,0,0,Check-Out,2019-10-04 -Resort Hotel,0,5,2015,July,53,18,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,104.46,0,2,Check-Out,2018-06-02 -Resort Hotel,0,2,2016,October,42,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,203.0,231.0,0,Transient,40.74,0,0,Check-Out,2019-06-03 -Resort Hotel,0,6,2016,December,50,28,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,36.0,1,0,Check-Out,2019-11-03 -City Hotel,0,158,2015,November,42,30,0,1,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,85.68,0,1,Check-Out,2019-10-04 -City Hotel,0,2,2017,May,19,13,0,3,2,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,104.83,0,0,Check-Out,2020-03-03 -Resort Hotel,0,279,2016,May,21,15,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,267.0,179.0,0,Transient-Party,46.16,0,0,Check-Out,2019-02-01 -City Hotel,1,106,2017,June,28,6,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.3,0,0,Canceled,2019-03-04 -Resort Hotel,0,109,2016,August,37,28,0,3,2,1.0,0,BB,,Direct,Direct,0,0,0,H,H,0,No Deposit,248.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-06-03 -Resort Hotel,1,296,2017,April,24,31,2,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,239.0,179.0,0,Transient,46.14,0,2,Canceled,2020-02-01 -Resort Hotel,0,46,2015,December,51,30,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,94.02,0,1,Check-Out,2018-08-03 -City Hotel,0,10,2016,November,43,11,0,2,2,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,109.52,0,0,Check-Out,2019-08-04 -City Hotel,1,249,2017,April,17,25,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,92.04,0,0,Canceled,2020-03-03 -City Hotel,1,42,2016,May,28,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,75.02,0,0,Canceled,2019-02-01 -City Hotel,0,6,2016,June,27,24,0,3,1,0.0,0,BB,SWE,Direct,Direct,0,0,0,F,B,2,No Deposit,17.0,179.0,0,Transient,74.46,0,0,Check-Out,2019-02-01 -City Hotel,1,14,2016,October,47,27,1,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.35,0,0,Canceled,2019-10-04 -Resort Hotel,0,17,2016,March,16,5,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,74.26,0,2,Check-Out,2019-02-01 -City Hotel,1,85,2016,December,50,30,0,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,82.77,0,0,Canceled,2019-09-03 -City Hotel,1,10,2017,August,37,16,0,2,2,0.0,0,HB,,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,206.33,0,0,Canceled,2020-07-03 -City Hotel,0,23,2016,June,15,21,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,62,Transient,77.53,0,0,Check-Out,2019-03-04 -City Hotel,0,104,2016,April,17,31,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.28,1,0,Check-Out,2019-09-03 -Resort Hotel,0,85,2016,June,14,2,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,71.97,0,0,Check-Out,2019-02-01 -Resort Hotel,0,104,2016,February,16,19,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,87.56,0,0,Check-Out,2019-06-03 -City Hotel,0,21,2016,April,17,28,2,0,1,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,1.51,0,0,Check-Out,2019-03-04 -Resort Hotel,1,33,2016,March,10,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,249.0,0,Transient,28.26,0,0,Canceled,2019-12-04 -Resort Hotel,1,60,2015,October,44,21,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,33.2,0,0,Canceled,2018-08-03 -City Hotel,0,60,2016,August,29,24,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient,123.46,0,1,Check-Out,2019-11-03 -City Hotel,0,52,2015,August,37,27,2,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.03,0,0,Check-Out,2018-05-03 -City Hotel,0,9,2016,March,10,18,0,2,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,94.03,0,0,Check-Out,2019-02-01 -City Hotel,1,17,2015,August,35,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,11.0,179.0,0,Transient,93.03,0,1,Canceled,2018-08-03 -Resort Hotel,0,35,2016,January,3,13,0,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,85.81,0,1,Canceled,2018-11-02 -City Hotel,1,254,2017,July,21,13,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,141.7,0,1,Canceled,2020-05-03 -Resort Hotel,0,47,2017,July,34,24,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,209.14,1,1,Check-Out,2020-07-03 -City Hotel,0,46,2017,March,12,28,2,5,1,0.0,0,BB,BRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient-Party,72.32,0,0,Canceled,2019-10-04 -City Hotel,1,105,2016,August,35,6,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,78.85,0,1,Canceled,2019-04-03 -Resort Hotel,0,33,2016,December,53,31,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,164.51,0,2,Check-Out,2019-09-03 -City Hotel,0,47,2015,October,42,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,58,Contract,57.81,0,0,Check-Out,2018-08-03 -Resort Hotel,0,104,2017,April,18,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,168.56,0,0,Check-Out,2020-03-03 -Resort Hotel,0,193,2016,March,15,31,0,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,74.2,0,0,Check-Out,2019-03-04 -City Hotel,0,50,2017,April,17,23,2,5,1,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,150.9,0,2,Check-Out,2020-02-01 -Resort Hotel,1,304,2016,December,35,27,0,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,240.0,179.0,0,Transient,63.43,0,0,Canceled,2019-03-04 -Resort Hotel,0,2,2015,July,36,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,D,0,No Deposit,19.0,179.0,0,Transient,105.2,0,0,Check-Out,2018-06-02 -Resort Hotel,0,214,2017,July,30,15,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,91.05,1,1,Check-Out,2020-06-02 -Resort Hotel,0,106,2016,August,37,20,2,5,2,0.0,0,HB,,Direct,TA/TO,0,0,0,C,E,0,No Deposit,244.0,179.0,0,Transient,205.32,0,1,Check-Out,2020-06-02 -Resort Hotel,0,39,2017,August,36,30,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,240.0,179.0,0,Transient,117.72,1,2,Check-Out,2020-07-03 -City Hotel,1,43,2016,March,15,9,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,178.0,179.0,0,Transient,91.04,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,October,44,10,1,1,2,0.0,0,BB,ITA,Online TA,Corporate,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,114.68,0,0,Check-Out,2019-07-04 -City Hotel,1,281,2016,June,28,17,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,0.13,0,0,Canceled,2019-11-03 -City Hotel,1,14,2016,October,45,15,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.22,0,0,Canceled,2019-08-04 -Resort Hotel,0,29,2016,March,3,8,0,3,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,91.95,1,0,Check-Out,2018-12-03 -City Hotel,1,105,2016,May,21,30,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,133.97,0,0,Canceled,2020-02-01 -City Hotel,1,238,2016,June,27,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient,118.83,0,0,Canceled,2019-07-04 -City Hotel,0,47,2016,August,43,5,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,3,No Deposit,14.0,179.0,0,Transient,94.07,0,1,Check-Out,2019-07-04 -Resort Hotel,1,43,2017,April,16,10,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,75.14,0,0,Check-Out,2020-03-03 -City Hotel,0,254,2015,October,45,30,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,59.24,0,0,Check-Out,2018-09-02 -Resort Hotel,0,43,2016,August,44,11,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,61.6,0,2,Check-Out,2019-07-04 -City Hotel,0,0,2017,April,22,6,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,152.84,0,1,Check-Out,2020-03-03 -Resort Hotel,0,92,2016,June,17,15,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,196.32,1,0,Check-Out,2019-05-04 -Resort Hotel,0,296,2017,July,24,3,1,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,104.96,1,1,Check-Out,2020-06-02 -City Hotel,1,147,2016,October,45,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,100.98,0,2,Canceled,2019-11-03 -Resort Hotel,0,131,2016,March,43,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,223.0,75,Transient,61.38,0,0,Check-Out,2019-09-03 -Resort Hotel,0,8,2016,November,50,27,1,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,33.85,0,0,Check-Out,2019-05-04 -City Hotel,1,187,2017,July,27,16,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.67,0,0,Canceled,2020-02-01 -City Hotel,1,154,2015,July,35,21,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,D,A,0,No Deposit,9.0,179.0,0,Transient,103.78,0,0,Canceled,2018-05-03 -City Hotel,0,269,2015,December,49,20,0,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient-Party,62.65,0,0,Check-Out,2018-06-02 -City Hotel,0,99,2016,March,17,22,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.9,0,2,Check-Out,2019-02-01 -City Hotel,0,84,2017,July,27,21,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.59,0,0,Check-Out,2020-07-03 -City Hotel,0,12,2016,October,45,21,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,152.31,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2015,August,31,12,4,5,2,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,C,0,No Deposit,16.0,179.0,0,Group,99.15,0,1,Check-Out,2020-04-02 -City Hotel,0,51,2016,July,31,4,0,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,131.59,0,0,Check-Out,2018-06-02 -City Hotel,1,193,2016,October,45,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,124.55,0,0,Canceled,2019-07-04 -City Hotel,1,89,2016,May,21,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,Non Refund,10.0,179.0,0,Transient,76.93,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2017,January,2,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,77.0,0,Transient,35.53,0,0,Check-Out,2019-12-04 -Resort Hotel,0,188,2017,June,26,26,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,172.0,179.0,0,Transient,112.9,0,0,Check-Out,2020-02-01 -City Hotel,1,217,2015,September,44,22,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,110.81,0,0,Canceled,2018-06-02 -Resort Hotel,0,335,2017,June,36,20,3,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,188.0,179.0,0,Contract,111.67,0,0,Check-Out,2020-06-02 -City Hotel,0,147,2017,April,16,9,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.12,0,0,Check-Out,2020-03-03 -City Hotel,1,15,2016,March,15,22,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,61,Transient,81.04,0,0,Canceled,2018-12-03 -City Hotel,0,0,2017,March,10,15,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,119.45,0,0,Check-Out,2020-03-03 -Resort Hotel,0,104,2017,July,27,2,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,122.46,0,0,Check-Out,2020-06-02 -Resort Hotel,0,8,2016,February,9,31,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,74.42,0,0,Check-Out,2018-12-03 -Resort Hotel,0,36,2016,May,25,23,1,4,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,115.03,0,2,Check-Out,2019-06-03 -City Hotel,0,3,2016,February,10,9,2,1,3,0.0,0,BB,CHN,Direct,Direct,0,0,0,B,B,2,No Deposit,15.0,179.0,0,Transient-Party,63.85,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2016,September,41,8,0,1,1,0.0,0,BB,ESP,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,74.76,0,0,Check-Out,2019-05-04 -City Hotel,0,40,2016,February,11,12,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,B,0,No Deposit,143.0,179.0,22,Transient-Party,72.45,0,0,Check-Out,2018-11-02 -City Hotel,0,160,2015,July,27,7,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.51,0,2,Check-Out,2018-08-03 -Resort Hotel,0,4,2016,February,50,27,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,G,0,No Deposit,357.0,179.0,0,Transient,108.22,0,1,Check-Out,2019-01-03 -Resort Hotel,0,99,2017,March,11,6,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,14.0,223.0,0,Transient-Party,40.33,0,0,Check-Out,2020-03-03 -City Hotel,1,262,2017,July,33,15,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,213.33,0,0,Canceled,2020-02-01 -City Hotel,1,236,2016,June,21,9,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.29,0,0,Canceled,2019-02-01 -Resort Hotel,0,10,2016,March,18,22,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,51.35,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2017,June,35,12,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,2,No Deposit,102.0,179.0,0,Transient,113.8,0,0,Check-Out,2020-03-03 -Resort Hotel,1,37,2016,March,15,28,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,172.0,179.0,0,Transient,78.97,0,0,Canceled,2019-02-01 -City Hotel,1,112,2017,May,22,26,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,214.13,0,0,Canceled,2020-02-01 -City Hotel,0,15,2016,March,18,31,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,61.85,0,2,Check-Out,2019-03-04 -City Hotel,0,1,2016,October,44,16,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,118.31,1,0,Check-Out,2019-08-04 -Resort Hotel,0,31,2016,August,10,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.91,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2016,October,43,6,1,0,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,41.27,0,0,Check-Out,2019-07-04 -City Hotel,1,388,2016,June,30,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,164.9,0,0,Canceled,2019-11-03 -City Hotel,0,36,2016,October,44,25,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,164.57,0,0,Check-Out,2019-07-04 -Resort Hotel,0,236,2016,March,11,21,0,1,2,0.0,0,BB,CHE,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,79.0,0,Transient,27.69,0,0,Check-Out,2019-03-04 -City Hotel,0,97,2017,June,25,2,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,90.56,0,0,Check-Out,2020-02-01 -City Hotel,1,47,2016,September,44,23,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.06,0,0,Canceled,2019-07-04 -City Hotel,1,18,2017,April,10,14,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,2.53,0,3,Canceled,2020-01-04 -City Hotel,0,39,2017,April,16,24,0,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,131.12,0,0,Check-Out,2020-03-03 -City Hotel,1,116,2016,December,43,27,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,88.0,179.0,63,Transient,69.18,0,0,Canceled,2018-10-03 -Resort Hotel,0,23,2016,August,38,21,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,214.46,1,0,Check-Out,2019-07-04 -City Hotel,1,143,2016,August,35,5,2,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,9.0,179.0,0,Transient,105.3,0,1,Canceled,2018-01-03 -City Hotel,1,12,2016,August,34,15,0,1,3,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,179.0,0,Transient,5.51,0,0,Canceled,2019-10-04 -Resort Hotel,0,84,2016,October,53,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,52.41,0,1,Check-Out,2018-12-03 -City Hotel,1,0,2017,December,51,24,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,235.0,0,Transient,54.43,0,0,Canceled,2019-11-03 -Resort Hotel,0,156,2017,May,20,5,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,184.26,0,1,Check-Out,2020-02-01 -City Hotel,0,32,2016,July,27,28,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.37,0,1,Check-Out,2019-01-03 -City Hotel,0,0,2016,December,50,20,0,1,3,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,15.0,179.0,0,Transient,1.99,0,0,Check-Out,2019-05-04 -City Hotel,1,381,2017,May,21,30,2,6,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,319.0,179.0,0,Transient,102.72,0,0,Canceled,2019-11-03 -City Hotel,1,5,2015,December,5,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,61.73,0,0,Canceled,2018-07-03 -Resort Hotel,0,0,2016,July,32,20,2,5,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,H,E,2,No Deposit,15.0,179.0,0,Transient-Party,252.0,1,0,Check-Out,2019-05-04 -Resort Hotel,0,94,2017,August,32,13,0,2,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,126.35,1,3,Check-Out,2020-07-03 -City Hotel,1,14,2016,September,38,5,0,4,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,7.0,179.0,0,Transient,138.87,0,0,Canceled,2019-07-04 -Resort Hotel,1,6,2015,August,37,28,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,78.78,0,0,No-Show,2018-06-02 -Resort Hotel,0,33,2017,May,21,13,1,6,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient-Party,108.48,1,0,Check-Out,2020-04-02 -City Hotel,0,82,2015,December,53,10,1,4,2,0.0,0,Undefined,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.91,0,1,Check-Out,2018-11-02 -Resort Hotel,0,12,2016,March,10,16,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,30.51,0,0,Check-Out,2019-02-01 -Resort Hotel,0,5,2017,February,7,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,F,0,No Deposit,15.0,220.0,0,Transient,49.3,1,0,Check-Out,2020-04-02 -City Hotel,0,264,2015,July,34,12,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,125.39,0,0,Check-Out,2018-04-02 -City Hotel,0,1,2016,February,9,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,40.25,0,0,Check-Out,2018-11-02 -Resort Hotel,0,91,2016,June,27,18,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.87,0,0,Check-Out,2019-03-04 -Resort Hotel,0,153,2017,March,9,2,2,0,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,30.0,179.0,0,Transient-Party,81.29,0,0,Check-Out,2020-04-02 -City Hotel,0,240,2015,October,42,6,0,1,1,0.0,0,HB,USA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,122.99,0,0,Check-Out,2018-09-02 -Resort Hotel,0,38,2017,June,22,26,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,A,E,0,No Deposit,32.0,179.0,0,Group,74.42,1,0,Check-Out,2019-11-03 -City Hotel,0,309,2015,November,43,18,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.71,0,0,Check-Out,2018-08-03 -City Hotel,1,3,2016,August,32,31,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,61.93,0,0,Canceled,2018-08-03 -Resort Hotel,1,92,2017,February,15,2,2,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,74.37,0,0,Canceled,2020-03-03 -Resort Hotel,0,13,2017,May,22,21,2,0,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,302.0,179.0,0,Contract,62.21,0,0,Check-Out,2020-03-03 -City Hotel,1,320,2017,April,22,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,105.52,0,0,Canceled,2019-11-03 -Resort Hotel,0,48,2015,August,36,22,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,213.73,0,0,Check-Out,2018-06-02 -City Hotel,0,23,2016,June,27,22,0,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient-Party,70.82,0,0,Check-Out,2019-02-01 -City Hotel,0,97,2016,May,22,9,2,3,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,60.19,0,0,Check-Out,2019-03-04 -City Hotel,0,86,2015,October,44,10,1,3,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,34.79,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2017,January,3,21,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,38.49,0,0,Check-Out,2019-12-04 -City Hotel,1,53,2016,July,32,5,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.73,0,2,Canceled,2020-05-03 -City Hotel,0,0,2016,October,44,9,1,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,187.0,0,Transient,94.38,0,0,Check-Out,2019-05-04 -City Hotel,1,149,2017,May,21,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,1.0,179.0,0,Transient,74.79,0,0,Canceled,2019-10-04 -City Hotel,0,3,2015,December,4,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,11.0,45.0,0,Transient-Party,61.33,0,0,No-Show,2018-10-03 -Resort Hotel,1,207,2017,August,16,6,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,62.59,0,0,Canceled,2019-09-03 -City Hotel,0,11,2017,May,18,21,2,3,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,A,2,No Deposit,12.0,45.0,0,Transient,96.15,0,0,Check-Out,2020-03-03 -City Hotel,0,37,2015,July,31,15,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,125.28,0,1,Check-Out,2018-06-02 -Resort Hotel,0,25,2017,March,10,15,2,0,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,33.97,0,1,Check-Out,2019-12-04 -City Hotel,0,107,2015,July,33,26,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,91.13,0,2,Check-Out,2018-06-02 -Resort Hotel,0,273,2017,March,16,28,1,5,2,0.0,0,HB,GBR,Direct,Corporate,1,0,1,E,I,0,No Deposit,245.0,179.0,75,Transient-Party,160.24,1,1,Check-Out,2019-08-04 -City Hotel,1,117,2015,July,28,10,0,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,86.94,0,0,Canceled,2018-08-03 -City Hotel,1,299,2015,October,45,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.06,0,0,Canceled,2018-08-03 -City Hotel,1,92,2017,April,22,22,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,30.0,179.0,0,Transient,74.78,0,0,Canceled,2019-12-04 -Resort Hotel,0,15,2015,December,50,28,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,152.0,179.0,0,Transient,67.26,0,0,Check-Out,2019-01-03 -City Hotel,0,11,2016,December,53,24,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,9.0,179.0,0,Transient,75.3,0,2,Check-Out,2019-09-03 -Resort Hotel,0,2,2015,December,53,28,0,3,1,0.0,0,BB,ESP,Complementary,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,64.33,0,0,Check-Out,2018-11-02 -Resort Hotel,0,1,2015,November,42,21,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,60.95,0,0,Check-Out,2018-08-03 -City Hotel,1,209,2016,September,36,18,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,171.76,0,0,Canceled,2019-08-04 -City Hotel,1,426,2015,July,34,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.06,0,0,Canceled,2018-01-03 -City Hotel,0,12,2016,September,41,20,0,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,157.0,179.0,0,Transient-Party,79.26,0,0,Check-Out,2019-06-03 -City Hotel,1,202,2016,April,16,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,94.72,0,0,Canceled,2019-02-01 -Resort Hotel,0,104,2015,September,31,26,3,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,85.0,179.0,0,Transient,75.95,1,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2017,June,26,13,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,H,0,No Deposit,14.0,179.0,0,Transient,74.2,1,0,Check-Out,2019-04-03 -Resort Hotel,0,92,2017,April,21,23,2,4,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,1,No Deposit,378.0,179.0,0,Transient-Party,61.47,0,0,Check-Out,2020-03-03 -Resort Hotel,1,344,2016,July,22,1,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,236.0,179.0,0,Transient,71.94,0,0,Canceled,2019-03-04 -City Hotel,0,26,2017,March,17,2,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.19,0,1,Check-Out,2020-04-02 -City Hotel,0,30,2016,May,21,8,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,83.15,0,0,Check-Out,2019-03-04 -City Hotel,0,48,2017,January,9,15,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.9,0,1,Check-Out,2019-10-04 -Resort Hotel,0,195,2016,July,31,25,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,234.41,0,3,Check-Out,2019-05-04 -City Hotel,0,16,2016,May,22,20,1,0,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,11.0,179.0,0,Transient,65.91,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2015,August,35,15,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,35.35,0,1,Check-Out,2018-06-02 -Resort Hotel,0,138,2016,August,39,3,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,239.0,179.0,0,Transient,247.63,0,1,Check-Out,2019-07-04 -Resort Hotel,0,98,2016,May,21,18,1,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,93.63,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,November,42,30,0,7,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,17.0,179.0,0,Transient,2.65,0,0,Check-Out,2018-06-02 -City Hotel,0,13,2016,June,24,30,0,1,1,0.0,0,BB,ESP,Aviation,TA/TO,1,0,0,A,A,0,No Deposit,13.0,196.0,0,Transient-Party,98.77,0,0,Check-Out,2019-04-03 -City Hotel,1,12,2016,December,53,21,0,1,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,0.73,0,0,Canceled,2020-01-04 -Resort Hotel,0,35,2016,September,34,27,0,1,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,H,I,0,No Deposit,243.0,179.0,0,Transient,0.97,1,0,Check-Out,2019-04-03 -City Hotel,1,354,2016,October,44,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,24,Transient-Party,62.44,0,0,Canceled,2018-08-03 -City Hotel,0,27,2015,December,49,25,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,66.98,0,1,Check-Out,2018-09-02 -City Hotel,1,261,2016,April,14,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,40,Transient,70.66,0,1,Canceled,2019-03-04 -City Hotel,1,389,2017,March,10,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,25.0,179.0,39,Transient-Party,63.06,0,0,Canceled,2019-08-04 -City Hotel,0,49,2016,October,36,21,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.65,0,0,Check-Out,2019-08-04 -City Hotel,0,13,2015,December,50,7,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,58.37,0,0,Check-Out,2018-08-03 -Resort Hotel,0,18,2017,June,29,28,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,A,2,No Deposit,15.0,228.0,0,Transient,92.9,1,0,Check-Out,2019-07-04 -Resort Hotel,0,23,2016,September,38,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,193.45,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,February,9,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,36.88,0,1,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,August,35,7,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,128.94,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,January,44,6,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,79.6,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2017,June,26,13,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.13,0,2,Check-Out,2020-05-03 -City Hotel,1,398,2017,May,22,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,130.78,0,0,Canceled,2019-11-03 -City Hotel,0,148,2015,July,30,18,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,B,A,0,No Deposit,31.0,179.0,0,Transient-Party,100.06,0,0,Check-Out,2018-05-03 -City Hotel,1,157,2016,April,11,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,0,Transient,77.34,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,October,42,9,1,1,2,0.0,0,BB,CHE,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,72.85,0,0,Check-Out,2018-12-03 -City Hotel,0,11,2017,February,27,20,1,0,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.93,0,1,Check-Out,2019-06-03 -Resort Hotel,1,364,2017,June,27,25,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,104.75,0,0,Canceled,2019-03-04 -City Hotel,1,102,2017,July,22,6,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,120.54,0,1,Canceled,2019-12-04 -City Hotel,1,10,2016,June,19,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,138.32,0,0,Canceled,2019-02-01 -City Hotel,0,1,2016,May,44,21,0,1,1,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,108.46,0,0,Check-Out,2019-01-03 -City Hotel,0,12,2017,February,9,19,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.9,0,1,Check-Out,2020-06-02 -Resort Hotel,1,37,2015,August,39,5,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,2,No Deposit,242.0,179.0,0,Transient,154.17,0,0,Canceled,2018-08-03 -Resort Hotel,0,31,2016,March,18,28,2,1,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,119.82,0,0,Check-Out,2019-03-04 -City Hotel,1,237,2016,August,32,28,3,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,181.87,0,1,No-Show,2019-05-04 -City Hotel,0,105,2017,May,17,9,2,3,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.17,0,0,Check-Out,2019-11-03 -City Hotel,0,33,2017,May,28,30,2,1,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.06,0,2,Check-Out,2020-07-03 -Resort Hotel,0,38,2016,March,11,30,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,30.2,0,0,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,July,31,6,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,153.99,0,2,Check-Out,2019-04-03 -City Hotel,0,108,2016,November,43,8,1,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,121.58,0,1,Check-Out,2019-03-04 -Resort Hotel,0,35,2016,August,42,27,1,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,91.65,0,3,Check-Out,2019-08-04 -City Hotel,0,0,2016,February,10,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,72.0,0,Transient,67.62,0,0,Check-Out,2018-12-03 -City Hotel,1,74,2016,December,51,30,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.44,0,2,Canceled,2019-10-04 -City Hotel,1,166,2017,July,35,23,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,A,0,Non Refund,11.0,179.0,0,Transient,119.51,0,0,Canceled,2018-09-02 -City Hotel,1,377,2015,September,32,5,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.07,0,0,Check-Out,2020-07-03 -Resort Hotel,0,48,2017,February,11,25,2,0,2,0.0,0,Undefined,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,263.0,179.0,0,Transient-Party,35.46,0,0,Check-Out,2020-02-01 -City Hotel,0,176,2017,July,28,24,2,1,3,0.0,0,BB,NOR,Aviation,TA/TO,0,0,0,D,D,0,No Deposit,181.0,179.0,0,Transient,163.52,0,3,Check-Out,2020-06-02 -City Hotel,0,0,2016,September,44,25,0,1,1,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,72.51,0,0,Check-Out,2019-12-04 -Resort Hotel,0,263,2017,July,31,29,2,5,2,0.0,0,HB,GBR,Direct,TA/TO,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,88.54,1,1,Check-Out,2020-07-03 -Resort Hotel,1,8,2015,December,50,28,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.31,0,0,Canceled,2018-11-02 -City Hotel,0,22,2016,September,36,25,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,2.42,0,0,Check-Out,2019-08-04 -Resort Hotel,0,216,2016,October,42,13,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,103.36,1,0,Check-Out,2019-07-04 -City Hotel,1,16,2015,December,52,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,61,Transient,113.76,0,0,Canceled,2018-08-03 -City Hotel,1,31,2017,June,31,21,0,3,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,72.62,0,0,Canceled,2019-10-04 -City Hotel,0,3,2016,October,46,11,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.21,0,2,Check-Out,2019-11-03 -City Hotel,0,150,2017,July,30,5,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.73,0,0,Check-Out,2020-05-03 -Resort Hotel,0,46,2015,October,43,21,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient-Party,39.67,0,0,Check-Out,2018-09-02 -City Hotel,0,273,2016,May,22,30,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,89.6,0,0,Check-Out,2019-04-03 -City Hotel,1,0,2017,March,8,10,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,12.0,64.0,0,Transient,92.97,0,0,Canceled,2019-09-03 -Resort Hotel,0,21,2016,January,11,23,0,4,2,2.0,0,BB,,Direct,Direct,0,0,0,C,G,1,No Deposit,14.0,179.0,0,Transient,0.47,0,0,Check-Out,2018-11-02 -City Hotel,1,306,2016,October,42,21,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,Refundable,8.0,179.0,0,Transient,71.93,0,0,Canceled,2019-07-04 -City Hotel,1,114,2017,August,38,24,2,5,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.23,0,0,Canceled,2020-06-02 -City Hotel,1,24,2016,March,17,31,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,181.0,179.0,0,Transient,95.39,0,0,Canceled,2019-01-03 -City Hotel,0,0,2017,February,10,13,2,1,1,0.0,0,BB,,Online TA,Corporate,0,0,0,D,D,0,No Deposit,10.0,71.0,0,Transient,125.55,0,0,Check-Out,2020-01-04 -City Hotel,1,39,2016,March,10,21,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,77.05,0,0,No-Show,2018-12-03 -Resort Hotel,1,159,2015,July,25,6,2,4,1,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,171.0,179.0,0,Transient,79.57,0,0,Canceled,2019-06-03 -City Hotel,0,140,2016,January,11,27,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,61,Transient,84.37,0,0,Check-Out,2018-12-03 -City Hotel,0,54,2017,May,19,5,0,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,121.74,0,2,Check-Out,2020-04-02 -Resort Hotel,0,43,2015,December,51,7,0,1,1,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,63.11,0,0,Check-Out,2018-12-03 -City Hotel,0,48,2016,August,31,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,60.22,0,3,Check-Out,2019-05-04 -City Hotel,1,179,2016,October,43,29,2,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,10.0,179.0,0,Transient,201.08,0,0,Canceled,2019-08-04 -Resort Hotel,0,288,2017,April,9,8,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,65.01,0,1,Check-Out,2019-12-04 -Resort Hotel,0,3,2017,February,9,20,2,3,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,378.0,331.0,0,Transient-Party,38.37,0,0,Check-Out,2020-01-04 -Resort Hotel,1,165,2017,May,22,25,0,4,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,A,0,No Deposit,14.0,179.0,0,Transient-Party,164.9,0,0,Canceled,2020-03-03 -City Hotel,1,153,2017,May,21,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,131.3,0,0,Canceled,2019-11-03 -Resort Hotel,1,154,2016,September,35,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,265.0,179.0,0,Transient,44.91,0,0,Canceled,2019-04-03 -Resort Hotel,0,157,2016,March,18,31,0,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,75,Transient-Party,73.35,0,0,Check-Out,2019-03-04 -Resort Hotel,1,251,2015,August,35,6,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,8.0,179.0,0,Transient,161.83,0,0,Canceled,2018-06-02 -City Hotel,1,261,2016,October,44,20,2,10,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,115.35,0,0,Canceled,2019-03-04 -City Hotel,0,145,2016,August,40,5,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,184.38,0,1,Check-Out,2019-07-04 -City Hotel,1,0,2016,June,21,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,38.36,0,2,No-Show,2019-03-04 -City Hotel,0,293,2015,October,44,11,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.72,0,2,Check-Out,2018-09-02 -City Hotel,0,37,2017,March,10,8,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.42,1,2,Check-Out,2020-03-03 -City Hotel,0,12,2017,May,23,26,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.96,0,3,Check-Out,2020-04-02 -City Hotel,1,116,2015,September,33,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Contract,107.08,0,0,Canceled,2018-05-03 -City Hotel,0,1,2017,January,4,5,1,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.81,0,1,Check-Out,2019-09-03 -City Hotel,1,317,2016,March,28,21,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,126.63,0,0,Canceled,2019-02-01 -City Hotel,0,150,2017,August,38,5,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,151.36,0,1,Check-Out,2020-06-02 -Resort Hotel,0,240,2017,May,19,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,78.17,0,3,Check-Out,2020-03-03 -City Hotel,0,96,2016,September,49,29,0,3,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,188.72,1,2,Check-Out,2019-05-04 -City Hotel,1,225,2016,September,43,28,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.12,0,0,Canceled,2019-05-04 -City Hotel,0,44,2017,January,10,24,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,116.94,0,3,Check-Out,2020-02-01 -City Hotel,0,10,2017,May,23,7,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,186.0,0,Transient,38.76,0,0,Canceled,2020-05-03 -Resort Hotel,0,15,2016,August,34,2,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,87.65,0,0,Check-Out,2019-07-04 -Resort Hotel,1,283,2015,September,37,31,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,59.84,0,1,Canceled,2017-12-03 -City Hotel,1,310,2016,July,26,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.45,0,0,Canceled,2017-12-03 -City Hotel,0,46,2016,June,27,18,0,2,2,0.0,0,Undefined,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,74.73,0,0,Check-Out,2019-06-03 -Resort Hotel,0,9,2017,February,9,20,2,0,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,I,0,No Deposit,13.0,331.0,0,Transient-Party,85.21,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,August,37,10,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,132.3,0,2,Check-Out,2019-05-04 -Resort Hotel,0,35,2017,May,24,29,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,157.67,1,2,Check-Out,2020-01-04 -City Hotel,0,48,2016,July,31,9,2,5,2,2.0,0,BB,SWE,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,236.21,1,0,Check-Out,2019-06-03 -City Hotel,1,92,2017,May,21,15,2,5,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,150.95,0,0,Check-Out,2020-03-03 -City Hotel,0,51,2017,June,26,17,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.59,0,1,Check-Out,2020-07-03 -Resort Hotel,0,17,2016,July,22,20,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,180.59,0,1,Check-Out,2019-04-03 -City Hotel,1,50,2017,April,16,18,0,2,3,0.0,0,BB,PRT,Direct,Direct,1,0,0,B,F,0,No Deposit,14.0,179.0,0,Transient,158.44,0,0,Canceled,2018-11-02 -City Hotel,0,23,2017,March,10,13,1,4,2,0.0,0,SC,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,121.17,0,3,Check-Out,2020-04-02 -City Hotel,0,264,2017,July,32,25,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,207.72,0,0,No-Show,2020-06-02 -Resort Hotel,0,109,2016,December,51,26,1,0,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient-Party,60.16,1,2,Check-Out,2019-11-03 -City Hotel,0,45,2015,September,37,17,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,88.65,0,0,Check-Out,2018-08-03 -City Hotel,0,22,2016,August,36,12,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.04,0,0,Check-Out,2020-06-02 -Resort Hotel,1,16,2017,April,18,29,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,242.0,179.0,0,Transient,73.99,0,0,Canceled,2020-03-03 -City Hotel,0,32,2016,November,50,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,61.58,0,0,Check-Out,2019-10-04 -City Hotel,0,41,2016,October,42,16,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,192.54,0,1,Check-Out,2019-06-03 -Resort Hotel,0,44,2016,March,19,20,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,33.0,179.0,0,Transient,0.95,0,0,Check-Out,2018-10-03 -City Hotel,1,160,2017,January,29,1,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,100.72,0,0,Canceled,2018-08-03 -Resort Hotel,0,33,2015,August,36,6,0,5,2,0.0,0,HB,PRT,Direct,Undefined,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,60.37,1,0,Check-Out,2018-05-03 -City Hotel,1,259,2016,November,43,17,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,69.65,0,0,Canceled,2018-11-02 -City Hotel,1,0,2017,November,49,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,209.0,0,Transient,90.2,0,0,Canceled,2019-09-03 -Resort Hotel,0,17,2016,April,23,31,2,1,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,9.0,179.0,0,Transient,217.36,0,1,Check-Out,2019-01-03 -Resort Hotel,0,110,2016,September,42,27,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,95.31,0,0,Check-Out,2019-08-04 -Resort Hotel,0,269,2015,October,44,22,2,1,1,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,81.69,0,0,Check-Out,2018-09-02 -City Hotel,1,399,2017,August,38,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.5,0,0,Canceled,2020-07-03 -City Hotel,1,2,2016,June,27,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,238.0,0,Transient-Party,78.96,0,0,Check-Out,2019-06-03 -Resort Hotel,0,97,2016,July,29,24,0,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,106.2,0,2,Check-Out,2019-11-03 -City Hotel,1,19,2016,December,50,31,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,91.28,0,0,Canceled,2019-10-04 -City Hotel,1,259,2016,September,51,24,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,39,Transient-Party,61.78,0,0,Canceled,2017-09-02 -City Hotel,0,0,2016,June,27,10,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,76.56,0,0,Check-Out,2019-04-03 -Resort Hotel,1,322,2017,August,37,22,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,67.09,1,1,Canceled,2020-04-02 -City Hotel,1,141,2017,July,29,13,2,0,3,0.0,0,BB,,Aviation,Corporate,0,0,0,E,P,1,No Deposit,14.0,179.0,0,Transient,3.99,0,0,Canceled,2019-08-04 -City Hotel,1,88,2016,August,40,31,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,186.24,0,0,Canceled,2019-06-03 -City Hotel,1,12,2016,August,37,13,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.14,0,0,Canceled,2019-06-03 -Resort Hotel,1,7,2016,February,10,5,2,1,1,0.0,0,BB,PRT,Direct,Corporate,0,1,0,A,B,0,No Deposit,12.0,179.0,0,Transient,62.74,0,0,Canceled,2018-11-02 -City Hotel,0,2,2016,October,46,26,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.54,0,2,Check-Out,2019-11-03 -Resort Hotel,0,89,2016,September,32,21,2,7,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,9.0,179.0,0,Transient,181.77,0,3,Check-Out,2019-05-04 -Resort Hotel,1,45,2017,June,23,29,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,63.87,0,0,Canceled,2019-12-04 -Resort Hotel,0,10,2016,August,37,21,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,A,1,No Deposit,13.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -City Hotel,0,54,2016,June,26,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.93,0,3,Check-Out,2019-03-04 -City Hotel,0,2,2016,September,36,13,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,145.57,0,0,Check-Out,2019-04-03 -City Hotel,0,249,2015,October,47,6,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,118.21,0,2,Check-Out,2018-08-03 -Resort Hotel,0,157,2016,March,23,31,0,3,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,75,Transient-Party,88.58,0,0,Check-Out,2019-03-04 -City Hotel,1,46,2016,April,16,24,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,74.79,0,2,Canceled,2019-02-01 -Resort Hotel,0,223,2017,May,17,29,1,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,2,No Deposit,317.0,179.0,0,Transient-Party,84.49,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2015,July,38,22,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.21,0,1,Check-Out,2018-11-02 -City Hotel,1,113,2017,April,20,18,2,5,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,F,3,No Deposit,11.0,179.0,0,Transient,212.34,0,0,Canceled,2020-03-03 -Resort Hotel,0,245,2017,July,33,28,2,4,2,1.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,11.0,179.0,0,Transient,95.34,1,2,Check-Out,2019-06-03 -City Hotel,0,4,2016,May,36,9,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,72.26,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2015,August,35,14,0,1,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,16.0,87.0,0,Transient-Party,0.0,0,1,Check-Out,2018-06-02 -City Hotel,0,2,2016,March,8,6,0,1,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.8,0,0,Check-Out,2019-02-01 -City Hotel,0,10,2015,October,43,24,2,1,1,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,61,Transient-Party,80.08,0,0,Check-Out,2018-09-02 -City Hotel,1,14,2017,May,22,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.66,0,0,Canceled,2019-11-03 -City Hotel,1,7,2017,January,3,7,1,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,94.02,0,1,No-Show,2019-11-03 -Resort Hotel,1,161,2016,December,53,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,79.0,179.0,0,Transient,97.9,0,0,Canceled,2018-12-03 -City Hotel,1,294,2015,July,37,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.52,0,0,Canceled,2017-10-03 -Resort Hotel,0,10,2015,July,30,5,1,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,221.29,0,2,Check-Out,2018-05-03 -City Hotel,1,116,2017,August,34,11,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,134.61,0,0,Canceled,2020-05-03 -City Hotel,0,36,2016,June,24,28,0,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,89.73,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,July,32,16,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,127.67,0,0,Check-Out,2019-04-03 -City Hotel,1,366,2017,October,21,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,69.73,0,0,Canceled,2019-11-03 -City Hotel,0,17,2016,October,44,30,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,121.61,0,0,Check-Out,2019-09-03 -City Hotel,0,147,2017,January,3,6,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.46,0,1,Check-Out,2019-12-04 -City Hotel,0,199,2016,October,45,18,2,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,63.32,0,0,Check-Out,2019-09-03 -Resort Hotel,0,53,2017,March,29,11,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,197.0,179.0,0,Transient,71.19,1,0,Check-Out,2020-03-03 -City Hotel,0,13,2016,April,20,10,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,82.97,1,2,Check-Out,2019-02-01 -City Hotel,1,39,2016,March,17,4,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,66.09,0,0,Canceled,2018-12-03 -City Hotel,0,3,2016,June,31,24,1,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,75.55,0,0,Check-Out,2019-06-03 -City Hotel,0,186,2017,September,32,18,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,C,K,2,No Deposit,12.0,179.0,0,Transient,1.98,0,1,Check-Out,2019-08-04 -City Hotel,0,146,2015,July,30,27,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,112.47,1,1,Check-Out,2018-05-03 -City Hotel,0,2,2016,October,42,9,0,3,1,0.0,0,BB,BRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,101.91,0,0,Check-Out,2019-09-03 -City Hotel,1,160,2016,May,32,27,1,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,220.71,0,0,Canceled,2019-02-01 -City Hotel,0,55,2016,March,16,13,2,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,125.08,0,1,Check-Out,2019-03-04 -Resort Hotel,0,4,2016,September,44,14,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,61.41,0,0,Check-Out,2019-07-04 -Resort Hotel,0,3,2017,June,19,15,0,1,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,136.34,0,0,Check-Out,2020-05-03 -Resort Hotel,1,44,2016,February,10,10,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,33.0,179.0,0,Transient,35.23,0,0,Canceled,2018-12-03 -City Hotel,0,149,2017,May,24,28,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,116.78,0,1,Check-Out,2019-11-03 -Resort Hotel,0,90,2017,March,22,20,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,297.0,179.0,75,Transient-Party,66.1,0,0,Check-Out,2020-05-03 -City Hotel,1,20,2015,November,44,23,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,33.82,0,0,Canceled,2018-06-02 -Resort Hotel,0,66,2017,March,16,28,2,5,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,1,No Deposit,378.0,179.0,75,Transient-Party,61.64,1,1,Check-Out,2020-01-04 -Resort Hotel,0,135,2016,May,16,14,2,5,1,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,43,Transient,99.68,0,0,Check-Out,2019-03-04 -City Hotel,1,31,2016,March,16,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,67.93,0,1,Canceled,2018-12-03 -City Hotel,1,87,2017,July,28,11,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,95.78,0,0,Canceled,2020-03-03 -Resort Hotel,0,83,2017,March,18,11,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Contract,139.81,1,2,Check-Out,2020-05-03 -City Hotel,0,29,2016,December,53,16,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.59,0,1,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,May,20,7,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,63.36,1,0,Check-Out,2019-05-04 -City Hotel,0,38,2016,August,29,10,0,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient-Party,126.68,0,0,Canceled,2018-08-03 -City Hotel,1,62,2017,March,8,18,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,101.31,0,0,Canceled,2019-09-03 -City Hotel,0,0,2015,November,42,2,0,2,1,0.0,0,BB,CN,Corporate,Corporate,0,0,0,A,D,0,No Deposit,101.0,232.0,0,Transient,96.03,0,0,Check-Out,2018-09-02 -Resort Hotel,1,0,2016,May,23,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,75.61,0,0,Canceled,2019-02-01 -City Hotel,0,143,2017,June,26,2,0,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,134.93,0,2,Check-Out,2020-06-02 -City Hotel,0,89,2017,August,38,14,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,223.82,1,0,Check-Out,2020-07-03 -City Hotel,1,219,2015,July,33,6,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.29,0,0,Canceled,2018-05-03 -City Hotel,1,1,2017,February,9,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,12.0,67.0,0,Transient,59.64,0,0,Canceled,2018-10-03 -Resort Hotel,1,252,2017,June,28,22,0,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,162.0,179.0,0,Transient,158.79,1,0,Canceled,2020-06-02 -Resort Hotel,0,175,2017,April,23,25,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,F,2,No Deposit,249.0,179.0,0,Transient,48.09,0,1,Check-Out,2020-03-03 -City Hotel,0,1,2015,July,42,2,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,61.15,0,0,Check-Out,2018-05-03 -City Hotel,1,288,2017,June,28,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient-Party,62.29,0,0,Canceled,2019-11-03 -City Hotel,0,14,2016,October,45,10,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,11.0,179.0,0,Transient,217.52,0,1,Check-Out,2019-09-03 -Resort Hotel,0,19,2016,February,18,2,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,65.41,0,1,Check-Out,2019-01-03 -City Hotel,1,16,2015,October,46,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.71,0,0,Canceled,2018-08-03 -City Hotel,0,229,2017,May,30,13,2,1,2,0.0,0,HB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,103.68,0,2,Check-Out,2020-06-02 -Resort Hotel,0,200,2017,June,26,29,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,67.98,0,0,Check-Out,2020-07-03 -City Hotel,1,46,2017,February,8,27,1,2,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,74.34,0,0,Canceled,2019-10-04 -City Hotel,0,143,2017,August,32,31,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.7,0,2,Check-Out,2020-07-03 -City Hotel,0,32,2017,July,28,23,0,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,115.31,0,3,Check-Out,2020-07-03 -City Hotel,1,40,2016,August,39,16,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,145.18,0,1,Canceled,2019-05-04 -City Hotel,1,55,2017,July,27,7,1,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,227.55,0,2,Canceled,2020-01-04 -City Hotel,1,190,2015,August,37,18,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.39,0,0,Canceled,2018-01-03 -City Hotel,1,176,2017,February,9,24,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,26.0,179.0,0,Transient,74.21,0,0,Canceled,2019-10-04 -Resort Hotel,0,206,2016,October,46,30,3,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,242.0,179.0,0,Transient,149.09,0,2,Check-Out,2019-07-04 -Resort Hotel,0,16,2015,July,34,2,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,137.64,1,2,Check-Out,2018-06-02 -City Hotel,1,310,2016,June,24,15,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.7,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,January,9,5,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,66.76,0,1,Check-Out,2018-10-03 -City Hotel,1,90,2016,April,20,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,11.0,179.0,0,Transient,111.6,0,0,Canceled,2019-01-03 -Resort Hotel,1,2,2017,August,36,20,2,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,170.73,0,1,Canceled,2020-06-02 -Resort Hotel,0,152,2016,March,16,20,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,80.29,0,1,Check-Out,2019-03-04 -City Hotel,0,2,2016,November,45,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,263.0,0,Transient,2.13,0,0,Check-Out,2019-09-03 -City Hotel,1,200,2015,July,31,20,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,93.56,0,0,Canceled,2018-05-03 -Resort Hotel,0,131,2016,September,43,27,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,3,No Deposit,95.0,179.0,0,Transient,37.64,0,3,Check-Out,2019-09-03 -City Hotel,0,30,2016,June,43,15,0,1,1,0.0,0,BB,BEL,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,117.38,0,0,Check-Out,2019-08-04 -City Hotel,1,101,2016,September,37,27,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,141.04,0,0,Canceled,2019-11-03 -Resort Hotel,1,10,2017,January,9,24,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,102.05,0,1,Canceled,2020-03-03 -Resort Hotel,0,31,2015,September,41,21,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,83.95,0,1,Check-Out,2018-09-02 -City Hotel,0,12,2017,March,9,2,1,3,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Contract,101.19,0,0,Check-Out,2020-03-03 -City Hotel,1,0,2017,November,8,20,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,284.0,0,Transient,4.29,0,0,Canceled,2020-01-04 -City Hotel,0,90,2016,September,36,15,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,223.0,0,Transient-Party,96.61,0,0,Check-Out,2019-05-04 -City Hotel,1,51,2017,April,16,24,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,116.16,0,0,Canceled,2020-02-01 -City Hotel,0,238,2017,May,17,9,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient-Party,78.31,1,1,Check-Out,2020-03-03 -City Hotel,0,55,2015,September,32,31,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,4.0,179.0,0,Transient-Party,77.96,0,0,Check-Out,2018-07-03 -City Hotel,1,300,2016,October,44,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,92.53,0,0,Canceled,2018-09-02 -City Hotel,1,97,2015,October,44,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,90.47,0,0,Canceled,2018-06-02 -Resort Hotel,0,44,2017,July,26,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,C,0,No Deposit,115.0,179.0,0,Transient,190.02,1,0,Check-Out,2020-06-02 -Resort Hotel,1,151,2015,September,34,17,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,78.33,0,0,Canceled,2018-08-03 -City Hotel,1,2,2015,October,53,18,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,71.76,0,0,No-Show,2018-09-02 -City Hotel,0,55,2017,June,26,25,1,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,66.73,0,0,Check-Out,2018-06-02 -Resort Hotel,1,120,2017,August,17,27,2,5,2,1.0,0,HB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,124.01,0,0,Canceled,2019-11-03 -City Hotel,1,82,2017,January,3,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,5.0,179.0,0,Transient,109.48,0,3,Canceled,2020-06-02 -Resort Hotel,1,266,2016,October,44,31,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,40.23,0,1,Canceled,2019-08-04 -City Hotel,0,168,2015,August,38,30,2,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,75.29,0,0,Check-Out,2019-05-04 -City Hotel,1,92,2015,July,32,21,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,124.55,0,0,Canceled,2018-06-02 -Resort Hotel,0,36,2017,December,50,8,0,1,3,0.0,0,BB,BRA,Direct,Direct,0,0,0,E,E,0,No Deposit,213.0,179.0,0,Transient,59.03,1,0,Check-Out,2019-06-03 -Resort Hotel,0,114,2016,March,15,5,1,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,179.0,179.0,0,Transient,65.92,0,0,Check-Out,2018-11-02 -City Hotel,0,3,2017,January,3,19,0,3,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.6,0,1,Check-Out,2019-10-04 -Resort Hotel,0,29,2015,October,43,5,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,26.45,0,0,Check-Out,2018-06-02 -Resort Hotel,0,92,2016,May,21,25,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,240.0,179.0,0,Transient,71.46,1,0,Check-Out,2019-02-01 -City Hotel,0,59,2016,July,35,30,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,8.0,179.0,0,Transient,126.55,0,2,Check-Out,2019-05-04 -City Hotel,1,411,2016,October,38,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.39,0,0,Canceled,2018-08-03 -City Hotel,0,47,2016,November,49,18,0,1,2,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,13.0,252.0,0,Transient,93.92,0,0,Check-Out,2019-09-03 -City Hotel,0,98,2016,October,42,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.3,0,1,Check-Out,2019-06-03 -Resort Hotel,1,44,2017,March,18,6,4,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,182.04,0,0,Canceled,2019-11-03 -City Hotel,1,189,2017,June,16,25,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.97,0,1,Canceled,2020-03-03 -Resort Hotel,0,250,2016,June,27,27,2,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,69.33,0,1,Check-Out,2019-02-01 -City Hotel,0,240,2015,September,43,13,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Contract,36.19,0,0,Check-Out,2018-08-03 -City Hotel,1,102,2015,July,33,2,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.32,0,0,Canceled,2018-05-03 -Resort Hotel,0,361,2016,October,45,17,0,1,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,62.92,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2016,May,22,4,0,2,1,0.0,0,BB,,Groups,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,86.18,0,0,Check-Out,2019-06-03 -Resort Hotel,0,230,2017,May,22,15,2,1,2,0.0,0,BB,GBR,Complementary,Corporate,1,0,1,A,A,2,No Deposit,243.0,179.0,0,Group,33.79,0,2,Check-Out,2020-03-03 -City Hotel,1,0,2016,February,11,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,80.83,0,0,No-Show,2019-03-04 -City Hotel,1,9,2016,July,35,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.33,0,1,No-Show,2018-06-02 -City Hotel,1,424,2015,October,43,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.46,0,0,Canceled,2017-11-02 -Resort Hotel,0,199,2017,July,32,10,2,4,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,206.0,179.0,0,Transient,227.77,1,3,Check-Out,2020-06-02 -Resort Hotel,0,15,2017,June,25,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,129.43,0,0,Check-Out,2019-03-04 -City Hotel,1,163,2016,October,43,27,2,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,3,No Deposit,9.0,179.0,0,Transient,195.37,0,1,Canceled,2019-05-04 -City Hotel,1,62,2017,March,8,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,161.25,0,0,No-Show,2019-12-04 -City Hotel,0,2,2016,September,31,11,0,4,1,0.0,0,BB,BEL,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,80.29,0,0,Check-Out,2019-05-04 -Resort Hotel,1,115,2017,February,10,29,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,0,Transient,47.15,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2016,February,9,5,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,36.26,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2016,January,18,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,19,Transient,92.99,0,0,Check-Out,2018-11-02 -City Hotel,0,7,2017,March,16,29,0,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,77.18,0,1,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,October,43,20,0,1,1,0.0,0,BB,ESP,Complementary,Corporate,0,0,0,F,E,0,No Deposit,13.0,179.0,0,Transient-Party,79.07,1,0,Check-Out,2019-05-04 -City Hotel,1,157,2016,May,25,15,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,128.57,0,0,Canceled,2019-02-01 -Resort Hotel,0,35,2016,September,34,9,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,198.18,0,1,Check-Out,2019-05-04 -City Hotel,1,238,2016,December,53,2,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,7.0,179.0,0,Transient,88.07,0,1,Canceled,2018-12-03 -City Hotel,0,15,2016,April,23,29,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,113.77,0,0,Check-Out,2018-12-03 -City Hotel,1,277,2016,June,44,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,1,A,A,0,Non Refund,2.0,179.0,0,Transient,135.66,0,0,Canceled,2018-01-31 -Resort Hotel,0,9,2017,July,31,10,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,185.01,1,1,Check-Out,2020-07-03 -Resort Hotel,0,154,2017,January,21,25,2,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,86.84,0,0,Check-Out,2020-06-02 -City Hotel,1,17,2016,April,18,16,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,83.79,0,0,Canceled,2019-01-03 -City Hotel,0,44,2016,May,22,24,1,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.81,0,0,Check-Out,2019-02-01 -City Hotel,1,11,2016,June,26,30,3,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,105.41,0,0,Canceled,2019-05-04 -City Hotel,0,0,2017,July,34,16,0,3,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.62,0,1,Check-Out,2020-06-02 -City Hotel,0,1,2016,August,50,17,0,2,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,3,No Deposit,12.0,179.0,0,Transient,113.73,0,2,Check-Out,2019-03-04 -Resort Hotel,0,147,2015,August,38,24,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,213.19,1,1,Check-Out,2018-05-03 -City Hotel,0,36,2015,October,53,15,2,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,72.83,0,0,Check-Out,2019-09-03 -City Hotel,1,17,2017,May,23,31,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,77.83,0,0,Canceled,2019-10-04 -City Hotel,0,35,2017,June,28,13,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.82,0,1,Check-Out,2020-05-03 -Resort Hotel,0,270,2017,July,31,30,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,192.43,0,1,Check-Out,2020-06-02 -Resort Hotel,0,168,2016,May,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,15.0,222.0,0,Transient,64.92,0,0,Check-Out,2019-05-04 -City Hotel,0,84,2016,December,53,11,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,103.75,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,March,21,20,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,325.0,179.0,75,Transient-Party,113.21,1,3,Check-Out,2019-01-03 -City Hotel,0,164,2017,March,30,2,0,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,63.42,0,1,Check-Out,2020-03-03 -City Hotel,1,159,2016,September,44,7,0,2,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,128.93,0,0,Canceled,2018-12-03 -Resort Hotel,1,56,2017,August,37,20,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,148.72,0,1,Canceled,2020-07-03 -Resort Hotel,0,151,2016,March,17,31,1,3,1,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,32.73,0,0,Check-Out,2019-04-03 -Resort Hotel,0,50,2015,December,51,9,2,1,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,D,0,No Deposit,316.0,179.0,0,Transient-Party,62.85,0,0,Check-Out,2018-12-03 -Resort Hotel,1,14,2015,December,10,24,2,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,L,0,Non Refund,232.0,179.0,0,Transient,79.77,0,0,Canceled,2018-12-03 -Resort Hotel,0,13,2017,May,22,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,D,0,No Deposit,246.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,44,2017,April,17,28,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,240.0,179.0,0,Transient,71.84,0,2,Check-Out,2020-05-03 -City Hotel,0,3,2017,January,4,28,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,60.29,0,0,Check-Out,2019-08-04 -Resort Hotel,1,326,2017,August,37,24,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,116.35,0,1,Canceled,2020-04-02 -Resort Hotel,0,191,2016,September,36,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,63.45,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2015,December,50,28,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,237.0,179.0,0,Transient,38.74,1,0,Check-Out,2018-12-03 -City Hotel,0,35,2016,July,50,17,0,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.56,0,0,Check-Out,2018-12-03 -City Hotel,0,15,2016,August,36,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,183.77,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2015,December,50,18,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,43.47,1,2,Check-Out,2019-12-04 -City Hotel,0,3,2016,April,17,6,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,0,Transient,139.75,0,1,Check-Out,2019-08-04 -City Hotel,0,3,2016,January,3,5,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,B,0,No Deposit,12.0,45.0,0,Transient,67.17,0,0,Check-Out,2018-10-03 -City Hotel,1,372,2017,February,11,18,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,80.73,0,0,Canceled,2019-09-03 -City Hotel,0,1,2015,October,42,12,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,B,F,0,No Deposit,17.0,45.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,97,2016,May,24,27,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,112.36,0,3,Check-Out,2019-12-04 -City Hotel,0,217,2016,June,22,9,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,104.44,0,0,Check-Out,2019-06-03 -Resort Hotel,0,101,2017,July,25,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,178.32,1,2,Canceled,2020-04-02 -City Hotel,0,103,2017,May,20,9,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,63.81,0,1,Check-Out,2020-04-02 -City Hotel,1,148,2016,April,16,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,69.77,0,0,Canceled,2018-12-03 -Resort Hotel,1,12,2015,August,33,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,L,E,0,No Deposit,247.0,179.0,0,Transient,62.1,0,0,Canceled,2018-01-03 -City Hotel,0,22,2016,February,8,27,0,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,72.0,0,Transient-Party,73.05,0,0,Check-Out,2019-02-01 -City Hotel,0,51,2016,October,43,9,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,60.36,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2015,October,43,28,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient-Party,102.96,0,0,Check-Out,2018-06-02 -City Hotel,0,101,2017,February,7,21,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.54,0,0,Check-Out,2020-06-02 -City Hotel,1,10,2017,March,15,6,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.47,0,0,Canceled,2020-01-04 -City Hotel,0,33,2015,July,36,6,2,3,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,110.43,0,0,Check-Out,2018-05-03 -City Hotel,1,107,2017,March,11,10,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.03,0,1,Canceled,2019-09-03 -Resort Hotel,0,11,2017,August,39,6,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,188.41,0,1,Check-Out,2020-07-03 -City Hotel,0,57,2017,June,32,2,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.55,0,1,Check-Out,2020-06-02 -City Hotel,0,209,2016,October,44,28,2,1,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,88.28,0,0,Check-Out,2019-08-04 -City Hotel,0,7,2017,August,33,27,0,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,137.93,0,0,Check-Out,2019-12-04 -City Hotel,0,253,2016,July,27,30,0,2,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,92.85,0,0,Check-Out,2020-03-03 -Resort Hotel,0,16,2016,June,22,5,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,123.67,0,1,Check-Out,2019-05-04 -City Hotel,1,44,2015,December,50,21,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,59,Transient,78.71,0,0,Canceled,2018-11-02 -Resort Hotel,0,196,2016,November,49,21,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,35.89,0,0,Check-Out,2019-11-03 -Resort Hotel,0,59,2017,April,22,30,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,131.62,1,0,Check-Out,2020-03-03 -Resort Hotel,0,137,2016,March,17,25,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,331.0,0,Transient-Party,40.21,0,0,Check-Out,2019-06-03 -City Hotel,1,18,2016,May,21,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,90.07,0,0,Canceled,2019-02-01 -City Hotel,0,9,2016,February,12,14,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,64.75,0,1,Check-Out,2018-12-03 -City Hotel,0,45,2017,May,21,6,1,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,16.0,189.0,0,Transient,85.81,0,0,Check-Out,2019-12-04 -Resort Hotel,0,104,2017,April,18,24,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,168.0,179.0,0,Transient,95.01,0,0,Check-Out,2020-02-01 -Resort Hotel,0,137,2016,April,23,19,2,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient-Party,69.06,0,0,Check-Out,2019-04-03 -City Hotel,1,92,2017,March,16,14,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,108.71,0,2,Canceled,2019-10-04 -City Hotel,1,3,2016,June,22,4,0,1,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,135.81,0,0,Canceled,2019-01-03 -City Hotel,0,14,2015,October,46,7,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,87.8,0,2,Check-Out,2019-10-04 -Resort Hotel,0,113,2016,August,42,27,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,279.0,179.0,0,Transient,181.42,0,0,Check-Out,2019-09-03 -City Hotel,1,45,2015,December,51,25,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.81,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,June,22,30,0,1,3,0.0,0,BB,USA,Direct,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,108.24,0,3,Check-Out,2019-06-03 -City Hotel,0,1,2017,November,50,5,2,0,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,202.0,179.0,0,Transient,93.55,0,0,Check-Out,2019-11-03 -Resort Hotel,1,43,2017,May,23,27,2,1,2,0.0,0,HB,POL,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,214.56,0,0,No-Show,2020-02-01 -City Hotel,0,0,2017,April,18,24,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient,0.0,1,1,Check-Out,2020-02-01 -Resort Hotel,0,15,2016,October,45,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,F,0,No Deposit,248.0,179.0,0,Transient,47.4,0,0,Check-Out,2019-03-04 -Resort Hotel,0,324,2016,October,44,24,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,No Deposit,316.0,179.0,0,Transient,97.45,0,0,Check-Out,2019-08-04 -City Hotel,0,100,2016,April,9,18,1,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient-Party,76.83,0,0,Check-Out,2019-03-04 -Resort Hotel,0,7,2016,March,10,31,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,61.85,1,0,Check-Out,2019-02-01 -City Hotel,1,40,2016,October,43,24,2,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,63,Transient,89.2,0,0,Canceled,2018-12-03 -Resort Hotel,1,48,2016,July,32,4,2,6,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,8.0,179.0,0,Transient,84.54,0,1,Canceled,2019-04-03 -Resort Hotel,1,52,2015,December,53,18,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,248.0,179.0,0,Transient,62.18,0,0,Canceled,2018-11-02 -City Hotel,1,17,2016,February,8,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,67.11,0,0,No-Show,2018-12-03 -City Hotel,0,0,2015,November,41,18,2,2,2,0.0,0,BB,BRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,81.0,179.0,0,Contract,39.29,0,0,Check-Out,2018-08-03 -City Hotel,0,257,2016,October,44,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,331.0,0,Transient,73.54,0,0,Check-Out,2019-05-04 -Resort Hotel,0,82,2016,May,21,31,2,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,76.0,179.0,0,Transient,117.99,0,0,Check-Out,2019-05-04 -Resort Hotel,0,4,2017,May,23,6,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,118.76,0,1,Check-Out,2020-02-01 -City Hotel,0,36,2016,July,27,16,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,75.41,0,0,Check-Out,2019-06-03 -City Hotel,0,43,2015,November,51,15,0,2,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,59.25,0,0,Check-Out,2018-06-02 -Resort Hotel,0,201,2017,August,38,11,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,123.31,0,2,Check-Out,2019-09-03 -Resort Hotel,0,3,2017,January,3,14,0,2,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,D,D,1,No Deposit,13.0,89.0,0,Transient,38.85,1,0,Check-Out,2019-11-03 -City Hotel,1,47,2017,June,17,28,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,117.31,0,1,Canceled,2020-04-02 -City Hotel,1,364,2017,May,21,8,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,281.0,179.0,0,Transient,86.14,0,0,Canceled,2019-09-03 -Resort Hotel,0,7,2015,August,34,25,2,5,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient-Party,238.37,1,0,Check-Out,2018-06-02 -City Hotel,0,13,2015,July,31,5,0,2,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,105.17,1,0,Check-Out,2018-06-02 -Resort Hotel,0,3,2016,July,33,21,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,55.02,1,1,Check-Out,2019-06-03 -City Hotel,0,50,2017,February,10,22,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,124.82,0,2,Check-Out,2019-11-03 -Resort Hotel,0,23,2017,May,21,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,133.82,1,0,Check-Out,2020-04-02 -Resort Hotel,1,32,2016,February,10,27,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,225.52,0,0,Canceled,2019-01-03 -City Hotel,0,227,2016,May,22,6,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,96.82,1,2,Check-Out,2019-05-04 -Resort Hotel,1,315,2017,August,35,6,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,226.06,0,1,Canceled,2020-03-03 -Resort Hotel,0,15,2016,July,22,29,0,4,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-03-04 -Resort Hotel,1,113,2017,July,31,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,78.31,0,3,No-Show,2019-11-03 -Resort Hotel,0,108,2016,June,21,4,1,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,242.0,179.0,0,Transient,114.98,0,1,Check-Out,2019-11-03 -Resort Hotel,1,157,2017,July,31,25,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -Resort Hotel,0,12,2016,February,11,30,0,6,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,378.0,179.0,19,Transient-Party,122.1,0,0,Check-Out,2019-11-03 -City Hotel,0,47,2015,December,50,6,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,69.0,0,Transient-Party,65.67,0,0,Check-Out,2018-08-03 -City Hotel,1,141,2017,March,15,25,1,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,77.03,0,0,Canceled,2020-01-04 -Resort Hotel,0,0,2017,January,9,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,3,No Deposit,17.0,94.0,0,Transient,35.91,0,0,Check-Out,2020-02-01 -Resort Hotel,0,69,2017,July,34,18,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,85.77,0,0,Check-Out,2020-06-02 -City Hotel,0,22,2017,January,25,5,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,99.23,0,1,Check-Out,2020-05-03 -City Hotel,0,12,2017,March,10,25,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.89,0,1,Check-Out,2020-03-03 -Resort Hotel,0,33,2015,August,36,31,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,78.56,0,0,Check-Out,2018-06-02 -City Hotel,1,20,2017,April,18,10,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,9.0,179.0,0,Transient,117.94,0,0,No-Show,2019-10-04 -City Hotel,1,93,2016,November,50,23,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.34,0,1,Canceled,2019-07-04 -City Hotel,1,52,2015,October,43,9,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,120.81,0,2,Canceled,2019-06-03 -City Hotel,0,16,2016,July,39,27,0,2,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,175.7,0,1,Check-Out,2019-06-03 -Resort Hotel,1,345,2016,August,36,18,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,270.0,179.0,0,Transient,97.28,0,1,Canceled,2019-08-04 -Resort Hotel,0,3,2016,October,41,23,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,14.0,179.0,0,Transient-Party,104.31,0,0,Check-Out,2019-10-04 -City Hotel,0,14,2015,December,53,30,2,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,95.03,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2017,July,25,5,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,147.66,1,0,Check-Out,2020-06-02 -City Hotel,1,7,2015,August,40,28,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,199.63,0,0,No-Show,2018-06-02 -City Hotel,1,432,2017,May,23,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.96,0,0,Canceled,2020-04-02 -City Hotel,1,14,2016,September,36,24,2,5,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,82.0,179.0,0,Transient,79.91,0,0,Canceled,2019-07-04 -City Hotel,1,152,2016,October,52,31,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,42,Transient,66.4,0,0,Canceled,2018-07-03 -Resort Hotel,0,37,2017,March,10,15,0,2,1,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,A,1,No Deposit,317.0,179.0,0,Transient-Party,61.35,1,0,Check-Out,2020-06-02 -City Hotel,1,35,2017,February,10,24,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,6.0,179.0,0,Transient,61.39,0,0,Canceled,2018-12-03 -Resort Hotel,0,37,2016,August,37,28,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,207.39,0,2,Check-Out,2019-06-03 -Resort Hotel,0,13,2017,February,8,3,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,47.53,0,2,Check-Out,2019-11-03 -City Hotel,1,53,2017,May,21,29,1,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,71.89,0,0,Canceled,2020-03-03 -City Hotel,0,0,2016,November,50,21,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,89.83,0,1,Check-Out,2019-08-04 -City Hotel,1,205,2016,June,28,16,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Refundable,12.0,179.0,0,Transient,156.66,0,0,Canceled,2019-02-01 -City Hotel,0,53,2016,March,9,10,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,31.0,179.0,0,Transient,71.93,0,1,Check-Out,2018-11-02 -Resort Hotel,0,282,2017,April,21,12,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,1,No Deposit,378.0,179.0,0,Transient-Party,88.52,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,January,4,27,1,3,1,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,112.47,1,1,Check-Out,2019-02-01 -City Hotel,0,190,2016,June,36,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,148.23,0,3,Check-Out,2019-06-03 -Resort Hotel,0,134,2017,January,4,30,2,4,2,2.0,0,BB,POL,Complementary,TA/TO,0,0,0,C,G,3,No Deposit,248.0,179.0,0,Transient-Party,161.37,0,0,Check-Out,2019-11-03 -Resort Hotel,0,249,2016,September,40,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.45,0,1,Check-Out,2019-08-04 -City Hotel,0,3,2016,December,49,9,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.78,0,1,Check-Out,2019-06-03 -City Hotel,1,8,2016,October,43,11,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.6,0,0,No-Show,2018-12-03 -Resort Hotel,0,35,2015,August,35,15,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,164.44,1,0,Check-Out,2018-06-02 -City Hotel,0,71,2015,November,50,29,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,34.0,81.0,60,Transient-Party,112.65,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,February,10,10,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,H,0,No Deposit,13.0,179.0,0,Transient,28.87,0,0,Canceled,2018-10-03 -Resort Hotel,0,253,2017,June,26,20,2,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,113.27,0,1,Check-Out,2020-01-04 -City Hotel,0,42,2016,June,26,30,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,120.58,0,2,Check-Out,2019-03-04 -City Hotel,1,20,2016,January,18,27,1,0,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,77.96,0,3,Canceled,2019-03-04 -Resort Hotel,0,44,2017,July,27,28,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient-Party,47.7,0,0,Check-Out,2020-07-03 -City Hotel,0,2,2016,October,45,18,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,2,No Deposit,14.0,162.0,0,Transient,47.66,0,1,Check-Out,2019-09-03 -Resort Hotel,0,232,2015,September,34,5,2,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,0.98,1,0,Check-Out,2018-08-03 -Resort Hotel,0,99,2017,August,36,19,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,180.31,0,1,Check-Out,2020-08-03 -City Hotel,0,15,2017,July,31,25,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.98,0,2,Check-Out,2020-03-03 -City Hotel,1,189,2016,December,53,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.3,0,0,Canceled,2018-11-02 -Resort Hotel,0,156,2017,July,35,12,0,3,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,16.0,179.0,0,Transient,185.63,1,3,Check-Out,2020-04-02 -City Hotel,0,134,2017,June,25,20,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,127.91,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,October,44,2,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.13,0,2,Check-Out,2019-01-03 -City Hotel,0,374,2015,September,42,26,2,3,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,64.53,0,0,Check-Out,2018-07-03 -City Hotel,1,8,2016,October,42,10,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.54,0,0,No-Show,2019-09-03 -Resort Hotel,0,62,2015,October,50,30,2,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,40.58,0,1,Check-Out,2018-11-02 -City Hotel,0,50,2016,March,8,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,84.59,0,0,Check-Out,2018-11-02 -Resort Hotel,1,7,2015,October,37,4,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,70.26,0,1,Check-Out,2018-06-02 -Resort Hotel,0,306,2016,May,44,18,2,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,99.0,179.0,0,Transient,74.86,0,0,Check-Out,2019-02-01 -City Hotel,1,3,2016,August,31,16,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,2.13,0,0,Canceled,2019-08-04 -Resort Hotel,1,40,2015,August,53,5,2,3,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,67.42,1,0,Canceled,2019-01-03 -City Hotel,1,37,2015,December,50,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,99.98,0,0,Canceled,2018-09-02 -City Hotel,0,11,2017,June,21,20,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,130.1,0,0,No-Show,2020-03-03 -City Hotel,0,1,2017,June,25,16,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,113.2,0,1,Check-Out,2020-07-03 -Resort Hotel,0,9,2016,July,34,26,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,109.24,1,1,Check-Out,2019-06-03 -City Hotel,1,104,2016,August,37,31,1,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,129.44,0,0,Canceled,2018-06-02 -City Hotel,0,140,2017,July,33,31,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.43,0,3,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,May,22,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,1.79,0,0,Check-Out,2019-04-03 -City Hotel,1,21,2017,July,30,6,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,119.56,0,1,Canceled,2020-04-02 -Resort Hotel,0,0,2016,April,16,14,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,1,No Deposit,247.0,179.0,0,Transient,34.25,1,0,Check-Out,2019-06-03 -Resort Hotel,1,14,2015,December,51,21,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,45.45,0,0,Canceled,2018-11-02 -City Hotel,1,335,2016,March,11,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.53,0,0,Canceled,2018-11-02 -City Hotel,0,20,2016,February,16,9,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,68.69,0,0,Check-Out,2019-04-03 -Resort Hotel,0,3,2017,June,27,20,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,378.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,182,2016,July,36,31,2,5,2,0.0,0,HB,NOR,Direct,Direct,0,0,0,D,D,3,No Deposit,14.0,179.0,0,Transient,172.2,0,3,Check-Out,2019-05-04 -Resort Hotel,1,355,2017,June,22,28,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,84.0,179.0,0,Transient,110.5,0,0,Check-Out,2019-11-03 -City Hotel,1,168,2017,August,34,16,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,94.19,0,0,Canceled,2020-03-03 -Resort Hotel,0,41,2016,January,10,5,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,240.0,179.0,0,Transient,40.75,1,0,Check-Out,2018-11-02 -Resort Hotel,0,108,2015,November,51,20,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,3.0,179.0,0,Transient-Party,62.6,0,0,Check-Out,2018-06-02 -Resort Hotel,0,63,2017,August,17,28,0,4,2,1.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,203.12,0,2,Check-Out,2020-03-03 -City Hotel,0,15,2017,March,11,29,0,1,2,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.85,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2015,December,51,31,1,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,D,D,0,No Deposit,251.0,179.0,0,Transient,61.69,0,3,Check-Out,2018-10-03 -City Hotel,0,0,2016,October,41,28,0,1,3,0.0,0,SC,FRA,Online TA,Corporate,0,0,0,P,P,0,No Deposit,13.0,244.0,0,Transient,1.1,0,0,Check-Out,2019-10-04 -City Hotel,1,369,2017,March,15,15,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,75,Transient,118.04,0,0,Canceled,2019-12-04 -Resort Hotel,0,167,2017,March,17,22,2,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,179.0,0,Transient-Party,70.56,0,0,Check-Out,2020-03-03 -City Hotel,0,252,2017,July,31,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,132.11,0,0,Check-Out,2020-05-03 -Resort Hotel,0,258,2016,August,38,30,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-05-04 -Resort Hotel,1,362,2016,February,20,13,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,239.0,179.0,0,Transient-Party,40.77,0,0,Canceled,2019-08-04 -City Hotel,0,62,2016,October,44,28,1,4,3,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,114.22,0,2,Check-Out,2019-06-03 -City Hotel,1,89,2016,June,26,22,2,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,11.0,179.0,17,Transient,133.59,0,0,Canceled,2019-01-03 -City Hotel,0,108,2017,June,23,6,2,4,3,0.0,0,BB,,Aviation,TA/TO,0,0,0,E,F,0,No Deposit,26.0,179.0,0,Contract,94.62,0,0,Check-Out,2020-02-01 -City Hotel,1,172,2017,December,53,29,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.94,0,2,Canceled,2019-10-04 -City Hotel,1,0,2015,September,37,14,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,47.01,0,0,Check-Out,2018-06-02 -Resort Hotel,0,109,2015,July,37,10,1,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,174.36,0,0,Check-Out,2018-06-02 -City Hotel,1,263,2015,August,37,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,64.62,0,0,Canceled,2017-12-03 -City Hotel,0,0,2015,July,30,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,131.05,0,0,Check-Out,2018-06-02 -Resort Hotel,0,69,2017,July,27,19,2,3,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,96.25,1,3,Check-Out,2020-07-03 -Resort Hotel,1,47,2016,February,11,10,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,85.0,179.0,0,Transient,83.34,0,0,Canceled,2018-11-02 -Resort Hotel,0,18,2017,February,10,21,1,5,2,0.0,0,BB,GBR,Direct,TA/TO,1,0,1,A,A,0,No Deposit,378.0,179.0,0,Group,37.47,0,1,Check-Out,2020-02-01 -Resort Hotel,1,308,2017,July,36,16,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,134.9,0,1,Canceled,2019-10-04 -Resort Hotel,0,29,2016,March,17,15,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,C,I,1,No Deposit,11.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-05-04 -City Hotel,0,99,2016,June,27,16,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient,79.01,0,2,Check-Out,2019-05-04 -City Hotel,1,53,2016,September,23,31,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.13,0,1,Canceled,2019-08-04 -City Hotel,1,119,2016,April,17,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,40,Transient,92.68,0,0,Canceled,2018-10-03 -Resort Hotel,1,0,2017,January,4,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,62.0,0,Transient,35.15,0,0,Canceled,2019-11-03 -City Hotel,1,99,2016,November,50,26,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,105.44,0,0,Canceled,2019-08-04 -Resort Hotel,0,120,2017,April,16,13,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,140.25,1,2,Check-Out,2020-04-02 -Resort Hotel,1,22,2017,August,36,28,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,132.08,0,1,Canceled,2020-02-01 -City Hotel,1,78,2015,August,37,30,0,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,188.86,1,0,Canceled,2018-05-03 -City Hotel,1,113,2016,March,20,2,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,75.85,0,0,Canceled,2019-01-03 -Resort Hotel,0,316,2017,August,20,26,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,124.49,0,1,Check-Out,2020-07-03 -City Hotel,1,44,2017,May,27,16,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,92.2,0,0,Canceled,2020-04-02 -Resort Hotel,1,136,2017,July,35,4,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,97.0,179.0,0,Transient,117.35,0,0,Canceled,2018-08-03 -City Hotel,0,44,2016,October,46,16,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,219.0,0,Transient,105.41,0,0,Check-Out,2019-06-03 -City Hotel,0,21,2016,March,16,29,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.8,0,2,Check-Out,2019-03-04 -Resort Hotel,0,94,2016,August,33,9,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,174.0,179.0,0,Transient,115.62,0,0,Check-Out,2019-05-04 -City Hotel,0,28,2016,September,22,5,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,102.21,0,0,Check-Out,2019-05-04 -City Hotel,1,4,2017,August,37,4,0,1,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,181.01,0,0,Canceled,2020-07-03 -City Hotel,1,39,2015,October,41,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,104.33,0,0,Canceled,2018-07-03 -Resort Hotel,0,2,2015,October,45,30,1,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,35.51,0,0,Check-Out,2018-09-02 -City Hotel,1,265,2016,September,23,16,2,2,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,162.81,0,0,Canceled,2019-08-04 -City Hotel,0,3,2015,October,43,12,1,1,1,0.0,0,BB,FRA,Direct,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,58.75,0,0,Check-Out,2019-07-04 -City Hotel,0,14,2017,July,20,21,0,1,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,129.1,0,1,Check-Out,2019-12-04 -City Hotel,1,103,2015,September,39,8,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,94.0,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,December,43,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,E,1,No Deposit,17.0,242.0,0,Transient,102.94,1,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,March,19,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,58.0,0,Transient,41.84,1,1,Check-Out,2019-01-03 -Resort Hotel,0,0,2017,March,11,21,2,7,2,0.0,0,HB,AUT,Offline TA/TO,Corporate,1,0,1,E,E,1,No Deposit,299.0,179.0,75,Transient-Party,100.94,1,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2015,September,34,21,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,I,2,No Deposit,242.0,179.0,0,Transient,2.62,0,1,Check-Out,2018-05-03 -City Hotel,0,380,2015,October,44,18,0,2,1,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,71.19,0,0,Check-Out,2018-09-02 -City Hotel,0,35,2015,September,45,28,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,204.71,0,1,Check-Out,2018-08-03 -City Hotel,0,36,2015,July,32,7,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,74.45,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2017,January,4,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,10.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-10-04 -City Hotel,0,0,2017,March,10,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,67.0,0,Transient,106.51,0,1,Check-Out,2020-01-04 -Resort Hotel,1,45,2016,May,35,28,2,6,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient,42.64,0,0,Canceled,2019-03-04 -Resort Hotel,1,217,2016,July,31,16,0,2,2,0.0,0,Undefined,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,152.64,0,0,Canceled,2019-05-04 -City Hotel,1,444,2017,July,27,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,89.15,0,0,Canceled,2020-06-02 -City Hotel,0,102,2017,June,27,31,2,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.33,0,1,Check-Out,2020-07-03 -City Hotel,0,1,2016,December,53,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.92,0,0,Check-Out,2019-11-03 -City Hotel,1,6,2016,June,45,21,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,76.44,0,0,No-Show,2019-03-04 -City Hotel,1,400,2015,September,22,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,91.42,0,0,Canceled,2017-11-02 -Resort Hotel,0,161,2016,May,21,31,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient,69.5,0,0,Check-Out,2019-02-01 -City Hotel,0,104,2017,April,17,5,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,9.0,179.0,0,Transient,73.11,0,1,Check-Out,2020-03-03 -City Hotel,0,31,2017,May,12,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.35,0,1,Check-Out,2020-04-02 -Resort Hotel,0,41,2015,August,35,31,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,72.47,0,0,Check-Out,2018-09-02 -City Hotel,1,17,2016,August,37,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,129.62,0,0,Canceled,2019-07-04 -City Hotel,1,268,2016,June,23,20,0,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.63,0,2,Canceled,2019-01-03 -City Hotel,0,10,2016,March,9,10,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient,116.49,0,1,Check-Out,2019-03-04 -Resort Hotel,0,62,2016,May,28,23,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,319.0,179.0,0,Transient,220.41,0,1,Check-Out,2019-07-04 -City Hotel,1,13,2016,April,17,13,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,161.94,0,2,Canceled,2019-02-01 -City Hotel,1,84,2016,February,8,25,2,5,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.75,0,1,Canceled,2018-11-02 -City Hotel,0,52,2016,July,27,28,2,4,2,2.0,0,HB,BEL,Direct,TA/TO,0,0,0,F,F,3,No Deposit,12.0,179.0,0,Contract,252.0,0,0,Check-Out,2020-01-04 -City Hotel,0,40,2016,November,51,20,1,4,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,121.56,0,2,Check-Out,2019-08-04 -City Hotel,1,330,2016,March,17,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,38,Transient,72.28,0,0,Canceled,2018-10-03 -City Hotel,0,41,2016,July,30,10,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,176.0,179.0,0,Transient-Party,48.96,0,2,Check-Out,2019-03-04 -City Hotel,1,190,2016,October,26,14,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Transient,100.41,0,0,Canceled,2018-10-03 -City Hotel,1,131,2015,July,45,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,123.47,0,0,No-Show,2018-01-31 -Resort Hotel,0,110,2017,April,23,9,2,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,243.0,179.0,0,Transient,102.91,0,2,Check-Out,2020-02-01 -City Hotel,1,41,2017,March,10,14,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,89.51,0,0,Canceled,2020-02-01 -City Hotel,1,9,2016,December,51,2,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,74.46,0,0,Canceled,2019-09-03 -City Hotel,1,0,2016,December,52,17,0,1,3,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,16.0,179.0,0,Transient,1.16,0,0,Canceled,2019-12-04 -Resort Hotel,0,40,2015,October,40,14,2,6,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,190.0,179.0,0,Transient-Party,96.87,0,0,Check-Out,2019-07-04 -Resort Hotel,1,4,2016,February,7,23,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,1,0,D,D,0,No Deposit,14.0,179.0,0,Transient,47.13,1,0,Check-Out,2018-11-02 -Resort Hotel,0,88,2016,August,45,18,1,4,3,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,239.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,December,52,6,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,331.0,0,Transient,75.19,0,0,Check-Out,2019-11-03 -City Hotel,0,9,2016,October,46,30,0,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,190.0,0,Transient-Party,82.24,0,0,Check-Out,2018-09-02 -City Hotel,0,22,2016,August,31,17,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,209.52,0,3,Check-Out,2019-06-03 -Resort Hotel,0,214,2017,July,34,10,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.9,0,1,Check-Out,2019-06-03 -City Hotel,1,104,2017,March,12,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,38.0,179.0,0,Transient,62.77,0,0,Canceled,2019-10-04 -City Hotel,1,41,2017,August,35,26,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,60.22,0,2,Canceled,2020-07-03 -City Hotel,0,15,2017,May,22,28,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,154.59,0,1,Check-Out,2019-11-03 -Resort Hotel,0,2,2015,July,32,31,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,61.33,0,0,Check-Out,2018-06-02 -City Hotel,0,103,2017,December,50,9,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,80.44,0,0,Canceled,2019-11-03 -Resort Hotel,1,165,2016,December,53,26,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,89.0,179.0,0,Transient-Party,86.44,0,0,Canceled,2018-10-03 -City Hotel,0,12,2017,April,35,10,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,96.21,0,1,Check-Out,2020-07-03 -Resort Hotel,0,197,2015,August,38,28,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,3.32,0,0,Canceled,2018-06-02 -City Hotel,0,103,2017,May,28,30,1,7,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,153.16,0,3,Check-Out,2020-04-02 -City Hotel,0,1,2015,July,27,8,2,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,98.0,179.0,0,Transient,122.21,0,0,Check-Out,2018-12-03 -City Hotel,1,2,2016,August,35,20,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,148.56,0,2,Canceled,2019-02-01 -Resort Hotel,0,0,2017,July,29,26,0,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,75.69,0,1,Check-Out,2020-06-02 -City Hotel,0,134,2017,December,53,6,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,82.2,0,2,Check-Out,2019-11-03 -City Hotel,1,257,2015,October,43,9,2,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,98.51,0,0,Canceled,2018-08-03 -Resort Hotel,1,42,2016,June,26,30,1,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,174.0,179.0,0,Transient,60.89,0,0,Canceled,2019-02-01 -Resort Hotel,1,0,2017,January,9,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient,50.05,0,1,No-Show,2018-11-02 -City Hotel,1,281,2015,September,36,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,85.37,0,0,Canceled,2018-08-03 -City Hotel,0,234,2016,July,30,26,2,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,22.0,179.0,0,Transient,221.96,0,1,Check-Out,2019-05-04 -City Hotel,0,36,2016,August,32,4,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Transient-Party,131.93,0,1,Check-Out,2019-06-03 -City Hotel,0,11,2016,January,12,13,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,66.49,1,1,Check-Out,2018-10-03 -Resort Hotel,0,158,2017,August,26,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,111.86,0,1,Check-Out,2019-03-04 -Resort Hotel,1,46,2016,March,15,6,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,308.0,179.0,0,Transient-Party,79.5,0,0,Canceled,2019-10-04 -City Hotel,0,16,2017,March,8,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.59,0,3,Check-Out,2019-09-03 -City Hotel,1,260,2016,January,11,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,69.13,0,0,Canceled,2018-10-03 -Resort Hotel,0,29,2016,August,38,6,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,189.69,0,3,Check-Out,2019-02-01 -City Hotel,1,154,2017,June,28,17,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.52,0,0,Canceled,2020-05-03 -Resort Hotel,0,9,2016,March,16,21,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,89.0,0,Transient,27.88,0,0,Check-Out,2019-02-01 -Resort Hotel,0,280,2016,August,36,5,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,H,1,No Deposit,241.0,179.0,0,Transient,211.37,0,3,Check-Out,2019-05-04 -Resort Hotel,0,147,2016,March,23,31,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,70.0,0,0,Check-Out,2019-02-01 -City Hotel,0,110,2016,May,21,27,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,129.3,0,2,Check-Out,2019-02-01 -City Hotel,1,253,2016,July,36,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,80.43,0,0,Canceled,2018-05-03 -City Hotel,0,156,2017,June,27,16,0,1,1,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,131.4,0,0,Check-Out,2020-03-03 -Resort Hotel,0,48,2017,August,36,31,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,136.2,1,3,Check-Out,2020-06-02 -City Hotel,1,36,2016,January,3,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,96.73,0,0,Canceled,2018-11-02 -City Hotel,1,23,2016,February,8,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.94,0,0,Canceled,2018-11-02 -Resort Hotel,0,9,2015,July,31,6,1,2,2,1.0,0,BB,POL,Direct,Direct,0,0,0,A,C,1,No Deposit,246.0,179.0,0,Transient,3.2,0,0,Check-Out,2018-05-03 -Resort Hotel,0,1,2016,June,22,21,1,1,2,0.0,0,BB,GBR,Complementary,Direct,0,0,0,D,D,0,No Deposit,187.0,179.0,0,Transient,92.88,1,0,Check-Out,2019-11-03 -City Hotel,0,14,2015,September,41,2,2,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.98,0,0,Check-Out,2018-08-03 -City Hotel,1,46,2016,March,10,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,78.05,0,0,Canceled,2018-11-02 -City Hotel,1,244,2016,December,53,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,41,Transient,72.06,0,0,Canceled,2017-12-03 -Resort Hotel,0,37,2016,December,37,22,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,181.33,0,0,Check-Out,2019-06-03 -Resort Hotel,1,15,2016,October,44,10,2,5,1,0.0,0,BB,,Direct,Direct,0,0,0,G,F,2,No Deposit,16.0,179.0,0,Transient,104.62,0,2,No-Show,2019-08-04 -City Hotel,1,259,2017,May,20,6,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,148.65,0,2,Canceled,2019-11-03 -City Hotel,0,0,2017,May,24,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,16.0,45.0,0,Transient,59.95,0,0,Check-Out,2019-12-04 -City Hotel,0,9,2016,September,42,5,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.34,0,1,Check-Out,2019-03-04 -City Hotel,1,3,2017,August,36,24,2,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Canceled,2020-04-02 -City Hotel,0,15,2017,February,11,28,2,1,1,0.0,0,BB,BRA,Offline TA/TO,Corporate,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,68.59,0,0,Check-Out,2019-12-04 -City Hotel,1,7,2017,May,27,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,177.53,0,0,Canceled,2020-04-02 -Resort Hotel,0,18,2016,November,53,28,1,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,148.71,1,0,Check-Out,2019-02-01 -City Hotel,1,110,2015,July,33,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,62,Transient,63.67,0,0,Canceled,2019-08-04 -City Hotel,0,266,2015,September,45,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,66.05,0,0,Check-Out,2018-08-03 -City Hotel,1,151,2016,July,29,17,2,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,1,B,E,0,No Deposit,10.0,179.0,0,Transient,118.51,0,0,Canceled,2019-06-03 -Resort Hotel,0,1,2017,January,2,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,74.0,0,Transient,42.02,0,0,Check-Out,2020-01-04 -City Hotel,0,25,2016,December,52,25,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,89.53,1,2,Check-Out,2019-11-03 -Resort Hotel,1,158,2015,December,17,12,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,43,Transient,38.92,0,0,Canceled,2019-02-01 -City Hotel,0,3,2016,June,45,23,1,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,86.38,0,1,Check-Out,2019-06-03 -City Hotel,0,77,2015,July,35,6,0,4,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,2,No Deposit,13.0,179.0,0,Transient-Party,103.57,0,0,Check-Out,2018-07-03 -City Hotel,0,83,2016,June,28,20,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.28,0,1,Check-Out,2019-06-03 -City Hotel,0,9,2015,September,40,28,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.97,0,0,Check-Out,2018-08-03 -City Hotel,1,93,2017,April,16,24,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.91,0,0,Canceled,2020-03-03 -City Hotel,1,56,2015,December,50,30,2,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,62,Transient,91.88,0,0,Canceled,2018-08-03 -City Hotel,1,110,2016,December,51,30,2,3,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,73.0,179.0,0,Transient,185.18,0,0,Canceled,2018-10-03 -City Hotel,0,6,2017,March,9,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,91.03,0,1,Check-Out,2020-03-03 -City Hotel,1,138,2015,March,41,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,57.58,0,0,Canceled,2019-01-03 -Resort Hotel,0,5,2016,July,26,28,4,2,3,1.0,0,HB,,Direct,Direct,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient-Party,137.01,1,0,Check-Out,2019-05-04 -City Hotel,0,24,2017,May,21,27,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,77.05,0,2,Check-Out,2020-02-01 -City Hotel,0,43,2017,August,37,13,0,3,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,A,3,No Deposit,15.0,331.0,0,Transient,82.78,0,0,Check-Out,2020-07-03 -City Hotel,0,40,2016,June,27,15,0,2,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,77.0,0,Transient,50.17,1,0,Check-Out,2019-07-04 -City Hotel,0,97,2016,September,37,19,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,154.2,0,2,Check-Out,2019-08-04 -City Hotel,0,0,2016,February,18,13,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.52,0,1,Check-Out,2018-09-02 -City Hotel,1,419,2016,May,50,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,60,Transient-Party,62.28,0,0,Canceled,2019-10-04 -City Hotel,0,8,2017,June,27,19,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,144.2,0,0,Check-Out,2020-04-02 -Resort Hotel,0,47,2016,June,26,17,2,10,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,157.64,0,0,Check-Out,2020-04-02 -Resort Hotel,0,5,2016,April,17,10,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,73.29,1,2,Check-Out,2019-03-04 -City Hotel,1,231,2016,June,28,28,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.8,0,0,Canceled,2019-03-04 -Resort Hotel,1,40,2017,June,20,30,0,2,1,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,126.85,0,0,Canceled,2020-03-03 -City Hotel,0,21,2017,June,32,6,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,119.87,0,1,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,October,42,28,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,137.04,0,0,Check-Out,2019-06-03 -City Hotel,0,8,2016,March,27,18,2,1,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,D,2,No Deposit,13.0,239.0,0,Transient,31.39,0,0,Check-Out,2019-03-04 -City Hotel,1,196,2016,February,10,24,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,177.0,179.0,0,Transient,81.29,0,0,Canceled,2018-11-02 -City Hotel,0,15,2016,October,43,5,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,138.8,0,0,Check-Out,2019-08-04 -City Hotel,1,98,2015,September,34,5,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,79.59,0,0,Canceled,2018-06-02 -City Hotel,1,194,2016,June,26,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,38,Transient,81.0,0,0,Canceled,2018-12-03 -City Hotel,1,199,2017,October,23,21,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.59,0,0,Canceled,2019-09-03 -Resort Hotel,0,4,2016,July,25,20,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,91.72,0,0,Check-Out,2019-04-03 -City Hotel,0,44,2015,July,34,5,0,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient,80.19,0,1,Check-Out,2019-06-03 -Resort Hotel,0,7,2017,May,18,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,141.0,179.0,0,Transient-Party,75.92,0,0,Check-Out,2020-03-03 -City Hotel,0,10,2016,April,16,21,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,36.85,1,1,Check-Out,2019-02-01 -Resort Hotel,0,177,2017,February,11,27,2,2,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,93.0,179.0,0,Transient-Party,73.63,0,0,Check-Out,2020-01-04 -Resort Hotel,0,4,2016,March,33,7,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,86.7,0,2,Check-Out,2019-02-01 -City Hotel,1,263,2015,September,38,6,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,D,A,0,No Deposit,7.0,179.0,0,Group,72.56,0,0,Canceled,2018-08-03 -Resort Hotel,0,177,2016,August,35,6,2,5,2,0.0,0,Undefined,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,78.1,0,0,Check-Out,2018-08-03 -City Hotel,0,233,2017,June,25,19,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,153.8,0,1,Check-Out,2020-03-03 -City Hotel,0,41,2016,August,12,21,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,88.16,0,2,Check-Out,2019-06-03 -City Hotel,0,40,2017,March,15,14,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,67.41,0,1,Check-Out,2019-03-04 -City Hotel,0,17,2017,February,9,13,2,0,2,0.0,0,HB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,182.0,179.0,0,Transient-Party,68.36,0,1,Check-Out,2020-03-03 -Resort Hotel,0,85,2017,March,16,17,0,2,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,90.14,0,0,Check-Out,2020-04-02 -City Hotel,0,14,2016,October,44,28,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.58,0,2,Check-Out,2019-08-04 -City Hotel,0,95,2016,July,32,24,0,1,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,86.97,0,1,Check-Out,2019-06-03 -City Hotel,0,41,2017,July,27,12,0,2,1,0.0,0,BB,BEL,Direct,TA/TO,0,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,179.98,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2015,October,46,10,0,1,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,75.42,0,1,Check-Out,2019-01-03 -Resort Hotel,0,10,2017,April,20,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,64.59,0,1,Check-Out,2020-03-03 -City Hotel,0,93,2016,April,17,27,1,0,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,10.0,179.0,0,Transient,80.39,0,0,Check-Out,2019-12-04 -City Hotel,1,311,2017,June,20,30,2,2,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,110.36,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,February,10,11,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,37.84,0,0,Check-Out,2019-02-01 -City Hotel,1,102,2017,July,26,31,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,153.83,0,1,Canceled,2020-04-02 -City Hotel,0,42,2017,March,17,15,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,31.0,179.0,0,Transient-Party,62.04,0,0,Check-Out,2019-01-03 -City Hotel,1,0,2016,August,38,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,161.74,0,0,Canceled,2019-06-03 -City Hotel,0,43,2016,July,5,27,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,82.96,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2017,March,8,3,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,241.0,179.0,0,Transient,87.35,1,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,October,44,30,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,286.0,179.0,0,Transient,41.46,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,October,40,27,1,4,1,0.0,0,BB,AUT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,122.83,0,1,Check-Out,2019-11-03 -Resort Hotel,0,137,2017,July,33,30,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,1,108,2017,July,31,22,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,159.78,0,2,Canceled,2019-09-03 -City Hotel,1,17,2015,December,53,24,2,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,101.33,0,0,Check-Out,2018-11-02 -City Hotel,1,0,2015,August,33,23,0,2,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2018-06-02 -Resort Hotel,0,24,2016,April,10,9,2,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,66.09,0,0,Check-Out,2019-05-04 -Resort Hotel,1,145,2017,June,23,28,4,10,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,111.18,0,0,Canceled,2020-02-01 -Resort Hotel,0,51,2016,January,3,29,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,66.13,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2017,January,11,10,0,1,2,0.0,0,BB,NOR,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,193.55,0,0,Check-Out,2019-12-04 -Resort Hotel,1,18,2015,December,35,5,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,118.4,0,0,Canceled,2018-09-02 -City Hotel,1,3,2015,August,37,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,K,0,No Deposit,8.0,179.0,0,Contract,0.0,0,0,Canceled,2018-06-02 -City Hotel,0,28,2016,December,53,27,1,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,12.0,179.0,0,Transient-Party,74.89,1,0,Check-Out,2019-11-03 -City Hotel,0,378,2016,June,30,8,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,160.51,0,1,Check-Out,2020-02-01 -City Hotel,0,13,2016,October,39,16,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.25,1,3,Check-Out,2019-12-04 -Resort Hotel,1,98,2017,April,17,5,2,1,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,77.57,0,0,No-Show,2019-02-01 -Resort Hotel,0,165,2017,July,32,6,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,236.62,0,2,Canceled,2020-06-02 -City Hotel,0,72,2015,March,53,30,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,75.94,0,2,Check-Out,2019-04-03 -City Hotel,0,96,2016,October,42,15,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,93.74,0,2,Check-Out,2019-07-04 -City Hotel,0,18,2016,November,49,30,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,237.0,0,Transient,71.61,0,0,Check-Out,2019-11-03 -City Hotel,0,18,2015,October,46,7,0,2,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,F,0,No Deposit,11.0,45.0,0,Transient-Party,126.02,0,0,Check-Out,2018-09-02 -Resort Hotel,0,11,2017,May,19,26,0,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,245.0,179.0,0,Transient,89.33,1,2,Check-Out,2020-04-02 -City Hotel,0,189,2017,August,37,23,2,3,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,A,1,No Deposit,9.0,179.0,0,Contract,241.6,0,1,Check-Out,2020-07-03 -Resort Hotel,0,153,2017,June,26,3,0,2,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,105.79,0,1,Check-Out,2020-04-02 -City Hotel,0,88,2017,May,21,3,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,126.5,0,0,Check-Out,2020-03-03 -City Hotel,1,169,2015,November,50,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,89.7,0,0,Canceled,2018-11-02 -Resort Hotel,1,6,2015,August,32,6,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,17.0,179.0,0,Transient,226.63,0,0,Canceled,2018-06-02 -Resort Hotel,0,148,2017,March,16,6,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,10.0,224.0,0,Transient-Party,66.48,0,0,Check-Out,2019-11-03 -City Hotel,0,113,2016,March,2,21,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,130.48,1,3,Check-Out,2018-11-02 -City Hotel,1,200,2016,October,46,6,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.18,0,0,Canceled,2019-10-04 -City Hotel,1,117,2016,August,37,27,0,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,210.16,0,2,Canceled,2019-09-03 -City Hotel,1,0,2015,August,31,21,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,112.42,0,0,Canceled,2018-06-02 -City Hotel,1,209,2016,June,24,21,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.04,0,2,Canceled,2019-02-01 -City Hotel,0,41,2016,March,11,17,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.56,0,1,Check-Out,2019-02-01 -City Hotel,1,0,2016,August,38,8,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,123.81,0,0,No-Show,2018-09-02 -Resort Hotel,0,38,2016,April,15,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,145.0,179.0,0,Transient,68.85,0,0,Check-Out,2019-03-04 -City Hotel,0,9,2016,August,31,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,140.15,0,0,Check-Out,2019-07-04 -Resort Hotel,0,12,2016,March,10,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,53.09,0,0,Check-Out,2019-02-01 -City Hotel,1,44,2016,November,23,27,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.66,0,0,Canceled,2019-08-04 -Resort Hotel,0,0,2016,December,29,28,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,P,2,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-10-04 -City Hotel,1,236,2016,October,43,5,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.88,0,0,Canceled,2019-06-03 -Resort Hotel,0,43,2016,November,50,5,1,7,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient-Party,70.34,0,0,Check-Out,2019-09-03 -City Hotel,1,254,2016,September,24,26,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,134.02,0,0,Canceled,2019-08-04 -City Hotel,0,34,2015,July,36,26,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,118.59,0,0,Check-Out,2018-05-03 -City Hotel,1,35,2016,March,10,13,2,2,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,71.95,0,0,Canceled,2018-12-03 -City Hotel,1,400,2017,August,37,18,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,76.0,179.0,0,Transient-Party,205.02,0,0,Canceled,2020-07-03 -Resort Hotel,0,4,2017,March,10,20,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,E,I,1,No Deposit,13.0,223.0,75,Transient-Party,69.01,1,1,Check-Out,2020-01-04 -City Hotel,1,315,2017,February,22,17,4,10,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,188.0,179.0,0,Contract,62.66,0,0,Canceled,2020-02-01 -City Hotel,0,192,2016,July,35,18,1,7,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,227.28,0,2,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,October,45,29,0,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,H,0,No Deposit,244.0,179.0,0,Transient,174.06,1,1,Check-Out,2019-06-03 -Resort Hotel,0,17,2017,February,9,26,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,331.0,0,Transient-Party,62.8,0,0,No-Show,2020-03-03 -City Hotel,0,2,2016,March,16,9,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,B,0,No Deposit,32.0,179.0,0,Transient,31.91,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2016,June,19,6,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,76.51,0,0,Check-Out,2019-03-04 -Resort Hotel,0,15,2016,April,21,20,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,119.29,0,2,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,January,11,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,82.0,0,Transient,46.52,0,0,Check-Out,2019-10-04 -Resort Hotel,0,15,2015,September,44,27,1,3,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,183.42,1,0,Check-Out,2019-08-04 -Resort Hotel,1,35,2016,March,8,20,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,1,1,E,D,0,No Deposit,241.0,179.0,0,Group,79.02,0,0,Canceled,2018-12-03 -City Hotel,0,87,2016,October,43,16,2,4,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,123.64,0,1,Check-Out,2019-08-04 -Resort Hotel,0,7,2015,December,53,30,0,1,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,89.28,1,2,Check-Out,2018-06-02 -Resort Hotel,0,44,2017,October,53,16,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient,95.65,1,3,Canceled,2019-11-03 -City Hotel,1,39,2016,March,16,6,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,79.85,0,1,Canceled,2019-03-04 -City Hotel,1,265,2017,April,17,16,2,5,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,117.13,0,0,Canceled,2019-11-03 -City Hotel,1,85,2016,December,53,30,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.35,0,1,Canceled,2018-12-03 -City Hotel,1,38,2016,November,42,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.05,0,0,Canceled,2018-12-03 -City Hotel,0,70,2015,October,46,2,0,3,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient,65.79,0,0,Check-Out,2018-08-03 -Resort Hotel,0,122,2016,October,45,28,2,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,155.03,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,June,24,31,1,5,1,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Transient,1.12,0,0,Check-Out,2019-03-04 -City Hotel,1,56,2016,December,53,20,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,93.61,0,0,Canceled,2018-11-02 -City Hotel,0,40,2016,December,50,29,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,145.75,0,3,Check-Out,2019-06-03 -Resort Hotel,0,6,2015,August,37,28,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,97.5,0,0,Check-Out,2018-06-02 -City Hotel,0,7,2017,August,37,22,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.73,0,2,Check-Out,2020-01-04 -City Hotel,0,33,2016,October,42,12,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.09,0,0,Check-Out,2019-10-04 -Resort Hotel,0,57,2016,September,35,17,2,5,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,190.12,0,3,Check-Out,2019-08-04 -City Hotel,0,10,2017,February,8,26,1,0,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,39.67,0,0,Check-Out,2019-11-03 -City Hotel,0,7,2017,May,23,29,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient,81.25,0,0,Check-Out,2020-03-03 -City Hotel,0,135,2015,November,37,5,2,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,97.55,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2017,January,4,25,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.61,0,2,Check-Out,2019-09-03 -Resort Hotel,0,160,2016,June,21,2,0,1,2,0.0,0,Undefined,GBR,Groups,Direct,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,80.95,0,0,Check-Out,2019-02-01 -Resort Hotel,0,27,2016,May,20,25,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,1,0,0,A,C,0,No Deposit,243.0,179.0,0,Group,99.66,0,1,Check-Out,2019-03-04 -City Hotel,0,90,2016,July,33,14,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,60.06,0,1,Check-Out,2019-04-03 -City Hotel,0,55,2017,January,5,31,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.43,0,1,Check-Out,2019-10-04 -City Hotel,0,0,2016,February,10,25,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,197.49,0,2,Check-Out,2019-01-03 -City Hotel,1,11,2017,June,27,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,113.59,0,0,Canceled,2020-03-03 -Resort Hotel,0,314,2017,July,34,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,114.7,0,1,Check-Out,2020-07-03 -City Hotel,0,2,2016,April,11,13,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,76.0,0,Transient,37.67,0,0,Check-Out,2019-04-03 -City Hotel,1,268,2015,September,43,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,98.59,0,0,Canceled,2017-10-03 -Resort Hotel,0,165,2017,August,36,9,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,100.23,0,0,Check-Out,2020-07-03 -City Hotel,0,34,2015,September,38,21,2,3,2,0.0,0,BB,ITA,Online TA,Undefined,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient-Party,110.57,0,1,Canceled,2018-06-02 -Resort Hotel,0,76,2016,September,35,25,2,10,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Contract,92.23,0,1,Check-Out,2019-05-04 -City Hotel,0,0,2016,August,35,29,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,132.68,0,2,Check-Out,2019-05-04 -City Hotel,1,93,2015,July,33,16,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient-Party,229.2,0,0,Canceled,2018-06-02 -City Hotel,0,253,2017,April,17,19,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,84.0,179.0,0,Transient,97.94,0,0,Check-Out,2019-11-03 -Resort Hotel,0,180,2016,March,16,30,0,2,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,126.03,1,1,Check-Out,2019-02-01 -City Hotel,1,99,2017,May,32,23,2,0,2,0.0,0,BB,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.05,0,0,Canceled,2020-03-03 -Resort Hotel,0,144,2016,October,44,31,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,Refundable,15.0,224.0,0,Transient-Party,65.71,0,0,Check-Out,2019-06-03 -Resort Hotel,0,151,2016,March,11,31,0,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,222.0,0,Transient-Party,43.72,0,0,Check-Out,2019-01-03 -City Hotel,0,48,2016,July,26,2,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,158.94,0,1,Check-Out,2019-05-04 -City Hotel,1,12,2017,August,35,10,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,142.18,0,0,Canceled,2020-02-01 -Resort Hotel,0,14,2015,November,49,16,0,1,2,0.0,0,BB,POL,Complementary,TA/TO,0,0,0,C,I,0,No Deposit,243.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-02-01 -Resort Hotel,0,17,2017,July,38,22,1,2,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,161.47,1,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,March,8,3,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,223.0,0,Transient,44.81,1,0,Check-Out,2019-02-01 -City Hotel,1,227,2016,June,29,19,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,44,Transient,94.17,0,0,Canceled,2019-01-03 -City Hotel,0,52,2016,July,30,18,0,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.96,0,1,Check-Out,2019-03-04 -City Hotel,0,3,2017,March,30,28,0,1,2,0.0,0,SC,RUS,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.26,0,1,Check-Out,2020-04-02 -Resort Hotel,0,74,2015,December,53,31,0,1,2,0.0,0,FB,FRA,Groups,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient-Party,59.64,0,0,Check-Out,2018-08-03 -Resort Hotel,0,372,2015,August,35,10,2,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Contract,75.38,0,0,Check-Out,2018-01-03 -Resort Hotel,1,18,2015,October,44,15,2,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,D,0,No Deposit,245.0,179.0,0,Transient,155.74,0,3,Canceled,2018-11-02 -City Hotel,1,47,2015,November,52,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.71,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,June,42,28,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,1,No Deposit,12.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-03-04 -Resort Hotel,0,41,2016,January,53,5,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,240.0,179.0,0,Transient,44.48,1,2,Check-Out,2019-05-04 -City Hotel,1,91,2017,August,20,29,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.86,0,1,Canceled,2020-02-01 -Resort Hotel,1,45,2016,February,9,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,42.32,0,0,Canceled,2018-10-03 -City Hotel,0,35,2016,October,43,28,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,134.51,0,2,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,December,53,27,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,32.85,0,2,Check-Out,2018-11-02 -Resort Hotel,0,15,2016,August,36,13,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,204.9,0,3,Check-Out,2019-06-03 -Resort Hotel,0,12,2016,October,44,21,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,82.83,0,1,Check-Out,2019-08-04 -Resort Hotel,0,10,2016,January,4,21,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,241.0,179.0,0,Transient,43.82,0,1,Check-Out,2018-10-03 -Resort Hotel,0,12,2017,May,22,26,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,36.0,179.0,0,Transient,68.51,0,0,Check-Out,2019-03-04 -Resort Hotel,0,313,2016,May,24,29,0,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,3,Refundable,13.0,222.0,0,Transient-Party,110.1,0,0,Check-Out,2019-05-04 -City Hotel,1,397,2016,October,45,20,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,58.15,0,0,Canceled,2018-08-03 -Resort Hotel,0,102,2015,December,51,21,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient,43.97,0,0,Check-Out,2018-12-03 -Resort Hotel,0,23,2017,May,18,5,1,4,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,175.19,1,2,Check-Out,2020-03-03 -Resort Hotel,0,260,2015,October,42,9,1,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Contract,45.14,0,0,Check-Out,2018-08-03 -Resort Hotel,0,42,2016,December,50,4,0,1,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,C,1,No Deposit,303.0,179.0,0,Transient-Party,41.51,0,0,Check-Out,2019-03-04 -Resort Hotel,0,25,2016,March,17,7,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,207.45,0,0,Check-Out,2019-01-03 -City Hotel,0,42,2016,June,26,18,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Transient,75.94,0,0,Check-Out,2019-05-04 -City Hotel,0,13,2016,May,22,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,1,No Deposit,13.0,69.0,0,Transient,68.57,0,2,Check-Out,2019-03-04 -Resort Hotel,1,115,2017,March,16,24,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,91.24,0,1,Canceled,2020-03-03 -Resort Hotel,0,20,2016,May,21,10,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,89.81,0,0,Check-Out,2019-05-04 -Resort Hotel,0,9,2016,June,33,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,100.23,0,0,Check-Out,2019-06-03 -Resort Hotel,0,152,2017,June,27,29,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,378.0,179.0,0,Transient,112.96,0,0,Check-Out,2020-03-03 -Resort Hotel,1,82,2017,March,36,6,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,97.85,0,0,Canceled,2020-03-03 -City Hotel,0,110,2017,July,32,8,2,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.59,0,2,Check-Out,2019-07-04 -Resort Hotel,0,261,2016,March,17,31,0,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,D,D,0,Refundable,245.0,179.0,0,Transient,64.48,1,0,Check-Out,2019-01-03 -City Hotel,0,5,2016,January,14,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,67.0,0,Transient-Party,62.66,0,0,Check-Out,2018-11-02 -City Hotel,0,270,2016,October,43,8,1,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.31,0,1,Check-Out,2019-08-04 -City Hotel,0,2,2015,September,43,9,0,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,121.34,0,0,Check-Out,2018-06-02 -City Hotel,0,9,2016,October,43,10,0,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient,137.16,0,2,Check-Out,2019-05-04 -City Hotel,0,175,2016,June,39,22,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.22,0,2,Canceled,2019-10-04 -City Hotel,1,0,2017,January,49,8,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,1,0,0,P,P,0,No Deposit,16.0,242.0,0,Transient,2.64,0,0,Canceled,2019-12-04 -Resort Hotel,0,99,2016,June,15,17,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,F,2,No Deposit,241.0,179.0,0,Transient,135.82,1,2,Check-Out,2019-03-04 -City Hotel,1,261,2016,June,28,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,81.75,0,0,Canceled,2019-07-04 -Resort Hotel,0,2,2016,August,36,13,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,88.57,0,0,Check-Out,2020-06-02 -Resort Hotel,0,101,2016,May,23,22,2,0,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,316.0,179.0,0,Transient-Party,76.4,0,0,Check-Out,2019-06-03 -Resort Hotel,0,151,2016,March,19,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,Refundable,12.0,222.0,0,Transient-Party,68.01,1,0,Check-Out,2019-04-03 -City Hotel,0,10,2016,November,24,2,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,70.93,0,0,Check-Out,2019-04-03 -City Hotel,0,4,2015,July,25,18,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,79.39,0,0,Check-Out,2018-11-02 -City Hotel,0,102,2017,April,19,31,2,5,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.99,0,0,Check-Out,2020-03-03 -City Hotel,0,17,2016,May,28,1,0,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,72.67,0,0,Check-Out,2019-06-03 -City Hotel,0,35,2017,January,21,14,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.15,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,May,50,2,2,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,D,2,No Deposit,17.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-11-03 -City Hotel,1,41,2017,March,16,25,1,1,2,0.0,0,BB,BEL,Groups,Corporate,0,0,0,A,D,3,No Deposit,15.0,222.0,0,Transient,72.09,0,0,Canceled,2020-03-03 -City Hotel,0,2,2017,August,18,24,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,211.27,0,2,Check-Out,2020-06-02 -City Hotel,0,16,2015,October,43,29,0,1,1,0.0,0,BB,AUT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,97.21,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2015,July,37,24,1,0,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,163.5,0,0,Check-Out,2018-06-02 -Resort Hotel,0,174,2017,July,35,30,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,190.77,0,1,Check-Out,2020-04-02 -Resort Hotel,1,94,2015,July,31,21,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,96.63,0,0,Canceled,2018-06-02 -City Hotel,0,15,2016,January,9,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,71.0,0,Transient,58.71,0,0,Check-Out,2019-01-03 -City Hotel,0,1,2016,January,3,2,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.76,0,1,Check-Out,2019-09-03 -Resort Hotel,1,36,2017,June,26,25,0,10,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,2,No Deposit,210.0,179.0,0,Transient,110.79,0,0,Canceled,2020-05-03 -Resort Hotel,0,7,2015,July,38,21,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,63.51,0,0,Canceled,2018-06-02 -City Hotel,0,17,2015,September,42,21,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.47,0,0,Check-Out,2018-08-03 -Resort Hotel,0,3,2016,March,20,20,2,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,142.0,179.0,75,Transient-Party,80.02,1,1,Check-Out,2019-10-04 -City Hotel,0,94,2015,October,43,12,0,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Contract,131.99,1,0,Check-Out,2018-09-02 -City Hotel,1,1,2016,February,9,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,10.0,179.0,0,Transient,97.43,0,2,Canceled,2019-01-03 -City Hotel,0,156,2017,August,38,6,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.33,0,2,Check-Out,2020-06-02 -City Hotel,0,31,2017,June,22,22,1,5,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,118.41,0,2,Check-Out,2020-06-02 -City Hotel,1,117,2016,September,44,17,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,95.5,0,0,Canceled,2019-05-04 -Resort Hotel,0,49,2016,December,49,5,2,5,2,1.0,0,FB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient,86.88,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,October,42,27,0,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,100.89,0,2,Check-Out,2019-06-03 -Resort Hotel,0,55,2016,October,46,13,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,92.64,0,0,Check-Out,2019-09-03 -City Hotel,1,76,2017,May,21,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,121.61,0,0,Canceled,2020-03-03 -City Hotel,1,90,2016,February,10,12,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,133.0,179.0,38,Transient,95.14,0,0,Canceled,2019-04-03 -City Hotel,0,63,2016,August,18,10,2,5,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,84.12,0,2,Check-Out,2019-03-04 -Resort Hotel,1,14,2016,February,11,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,2,Non Refund,12.0,66.0,0,Transient,88.23,0,0,Canceled,2018-12-03 -Resort Hotel,1,106,2017,April,17,21,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,82.18,0,0,Canceled,2019-12-04 -City Hotel,1,384,2015,September,41,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.29,0,0,Canceled,2018-08-03 -City Hotel,1,374,2016,October,26,10,1,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,81.48,0,0,Canceled,2019-03-04 -Resort Hotel,0,1,2016,May,20,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,121.06,1,0,Check-Out,2019-02-01 -City Hotel,0,24,2016,February,9,28,2,5,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,83.81,0,0,Check-Out,2018-11-02 -Resort Hotel,0,101,2016,August,11,23,0,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,130.0,179.0,0,Transient,186.31,1,2,Check-Out,2018-12-03 -City Hotel,0,2,2017,June,8,15,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,69.0,0,Transient,123.79,0,0,Check-Out,2019-02-01 -Resort Hotel,0,13,2016,January,11,9,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,E,E,0,No Deposit,43.0,179.0,0,Transient,77.83,1,0,Check-Out,2019-03-04 -Resort Hotel,0,48,2016,July,36,29,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,167.11,0,1,Check-Out,2019-05-04 -City Hotel,0,165,2016,July,28,25,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,138.15,0,1,Check-Out,2020-03-03 -Resort Hotel,0,82,2017,June,22,8,2,5,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,E,1,No Deposit,287.0,179.0,0,Transient-Party,74.08,0,0,Check-Out,2020-05-03 -City Hotel,1,263,2016,June,33,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.84,0,0,Canceled,2018-01-03 -City Hotel,0,18,2016,June,30,17,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,85.6,1,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2016,March,10,28,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,84.0,0,Transient,63.73,0,0,Check-Out,2019-02-01 -Resort Hotel,0,148,2016,March,10,21,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,75,Transient-Party,77.91,0,0,Check-Out,2018-12-03 -City Hotel,1,42,2016,July,45,2,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,123.49,0,3,Canceled,2019-07-04 -Resort Hotel,1,0,2015,August,40,6,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,162.37,0,2,Canceled,2018-06-02 -Resort Hotel,1,276,2016,September,44,28,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,42.08,0,0,Canceled,2019-08-04 -City Hotel,1,114,2015,July,33,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,9.0,179.0,0,Transient,61.03,0,0,Canceled,2018-07-03 -Resort Hotel,0,261,2016,May,22,23,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,313.0,179.0,0,Transient-Party,79.3,0,0,Check-Out,2019-04-03 -City Hotel,1,18,2016,December,53,27,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,60.32,0,0,Canceled,2018-08-03 -City Hotel,0,94,2015,July,33,6,2,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,100.66,0,1,Check-Out,2018-06-02 -City Hotel,1,28,2017,March,10,2,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.02,0,1,Canceled,2019-03-04 -Resort Hotel,0,2,2015,September,44,23,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,83.21,0,0,Check-Out,2018-08-03 -City Hotel,1,287,2016,August,32,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.59,0,3,Canceled,2019-05-04 -Resort Hotel,1,0,2016,January,4,29,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,30.57,0,0,No-Show,2018-12-03 -City Hotel,0,12,2017,March,11,31,0,3,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,58.88,1,0,Check-Out,2020-01-04 -City Hotel,0,332,2017,July,28,16,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,131.49,0,0,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,March,37,29,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,76.58,0,0,Check-Out,2018-11-02 -City Hotel,0,19,2016,October,43,4,1,2,3,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,2,No Deposit,17.0,179.0,0,Transient,155.73,0,0,Check-Out,2019-09-03 -City Hotel,1,160,2017,March,17,31,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,91.69,0,0,Canceled,2019-12-04 -City Hotel,1,404,2017,February,22,23,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,197.0,179.0,0,Transient,73.59,0,0,Canceled,2019-11-03 -Resort Hotel,0,15,2016,March,17,30,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,90.36,0,2,Check-Out,2019-12-04 -City Hotel,0,38,2016,December,53,22,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Transient,154.11,0,2,Check-Out,2019-10-04 -City Hotel,1,38,2016,October,46,17,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.53,0,0,Canceled,2019-01-03 -City Hotel,0,377,2017,August,36,19,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,83.26,0,0,Check-Out,2019-10-04 -Resort Hotel,0,101,2017,April,22,16,0,1,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,93.0,179.0,0,Transient-Party,95.48,1,0,Check-Out,2019-12-04 -City Hotel,1,3,2016,March,17,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,E,E,0,Non Refund,12.0,64.0,0,Transient,62.69,0,2,Canceled,2020-02-01 -City Hotel,0,0,2015,September,44,30,0,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,191.06,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,March,4,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,2,No Deposit,16.0,45.0,0,Transient,36.77,1,0,Check-Out,2019-09-03 -Resort Hotel,0,23,2016,March,16,23,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,107.4,1,0,Check-Out,2019-01-03 -City Hotel,0,35,2016,July,28,28,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.64,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2016,August,3,30,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,72.98,0,1,Check-Out,2019-08-04 -Resort Hotel,0,148,2016,March,17,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,61.37,0,0,Check-Out,2019-03-04 -Resort Hotel,0,32,2015,August,34,9,0,6,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,37.23,0,2,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,March,16,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,42.48,1,0,Check-Out,2019-02-01 -City Hotel,0,22,2016,October,38,13,0,1,1,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient-Party,107.73,0,0,Check-Out,2019-05-04 -City Hotel,0,14,2016,August,22,28,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,116.72,0,0,Check-Out,2019-06-03 -City Hotel,0,18,2017,March,9,24,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,89.0,331.0,0,Transient-Party,74.13,0,0,Check-Out,2020-05-03 -City Hotel,0,275,2016,May,21,8,3,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,131.13,0,0,Check-Out,2019-05-04 -City Hotel,0,92,2017,March,12,24,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,89.77,0,3,Check-Out,2020-03-03 -City Hotel,1,1,2017,February,26,16,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.72,0,0,Canceled,2019-02-01 -Resort Hotel,1,2,2015,February,11,11,0,4,1,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,79.15,0,0,Canceled,2019-01-03 -Resort Hotel,1,252,2015,August,38,15,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient-Party,61.82,0,0,Canceled,2018-06-02 -City Hotel,0,60,2017,June,27,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,81.42,0,0,Check-Out,2020-06-02 -City Hotel,0,51,2017,March,24,5,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,73.16,0,1,Check-Out,2020-04-02 -City Hotel,0,149,2016,December,50,25,0,3,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,120.79,0,1,Check-Out,2019-12-04 -City Hotel,1,106,2017,May,15,15,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,78.0,0,0,Canceled,2019-10-04 -City Hotel,0,18,2017,March,11,22,0,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,66.97,0,1,Check-Out,2020-01-04 -City Hotel,0,298,2016,October,44,24,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,83.27,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2016,August,38,17,1,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,112.68,1,0,Check-Out,2019-07-04 -Resort Hotel,1,300,2016,August,33,25,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,79.4,0,1,Canceled,2019-05-04 -Resort Hotel,0,42,2017,December,51,30,2,1,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,G,D,0,No Deposit,248.0,179.0,0,Transient,168.82,1,1,Check-Out,2019-10-04 -City Hotel,0,107,2017,May,34,9,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,3,No Deposit,14.0,179.0,0,Transient,237.4,0,3,Check-Out,2020-03-03 -Resort Hotel,0,152,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,223.0,0,Transient-Party,61.67,0,0,Check-Out,2019-06-03 -City Hotel,0,169,2017,March,22,21,0,3,2,0.0,0,BB,BRA,Complementary,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient-Party,127.36,0,0,Check-Out,2020-03-03 -City Hotel,0,10,2016,May,22,31,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,164.09,0,1,Check-Out,2019-08-04 -City Hotel,0,140,2015,August,30,4,2,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,213.46,0,0,Check-Out,2018-05-03 -Resort Hotel,0,2,2017,August,25,12,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,91.7,0,1,Check-Out,2020-05-03 -City Hotel,1,15,2016,December,49,28,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.93,0,0,Canceled,2018-11-02 -City Hotel,0,23,2017,January,20,6,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,95.19,0,3,Check-Out,2019-12-04 -Resort Hotel,0,2,2017,February,9,12,0,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,15.0,331.0,0,Transient,75.88,0,0,Check-Out,2019-11-03 -City Hotel,0,18,2017,April,25,10,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,140.3,1,1,Check-Out,2020-04-02 -City Hotel,1,49,2016,May,23,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.69,0,0,Canceled,2019-02-01 -Resort Hotel,1,48,2015,November,53,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,238.0,179.0,0,Transient,47.18,0,0,Canceled,2018-11-02 -City Hotel,1,37,2016,July,34,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,162.0,179.0,0,Transient,113.91,0,0,Canceled,2019-06-03 -Resort Hotel,0,4,2015,December,50,7,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,59.63,0,0,Check-Out,2018-07-03 -City Hotel,1,55,2017,February,9,21,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,10.0,179.0,0,Transient,85.04,0,0,Canceled,2020-03-03 -City Hotel,0,2,2017,July,37,9,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,125.26,0,1,Check-Out,2020-06-02 -City Hotel,0,34,2015,August,37,2,0,3,1,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,99.73,0,1,Check-Out,2018-05-03 -Resort Hotel,0,416,2016,May,23,2,1,3,1,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,L,1,No Deposit,33.0,179.0,0,Transient,69.33,0,0,Check-Out,2019-05-04 -City Hotel,0,139,2017,July,36,10,0,3,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,187.75,0,1,Check-Out,2020-06-02 -City Hotel,1,101,2016,October,45,28,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.31,0,0,Canceled,2018-08-03 -City Hotel,1,4,2016,August,28,12,2,10,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,92.9,0,1,No-Show,2019-06-03 -Resort Hotel,1,87,2016,July,32,31,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient-Party,80.86,0,0,Canceled,2019-06-03 -City Hotel,1,0,2016,January,4,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.07,0,0,No-Show,2018-12-03 -Resort Hotel,1,240,2015,July,36,15,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,245.0,179.0,0,Contract,58.38,0,0,Canceled,2017-11-02 -City Hotel,0,12,2015,December,53,27,2,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient-Party,86.52,0,0,Check-Out,2018-12-03 -Resort Hotel,0,23,2015,November,49,31,2,4,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,86.13,1,2,Check-Out,2018-11-02 -City Hotel,1,42,2015,March,16,5,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,7.0,179.0,0,Transient-Party,61.44,0,2,Canceled,2018-11-02 -City Hotel,0,21,2016,March,10,5,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,70.42,0,1,Check-Out,2019-03-04 -City Hotel,0,142,2017,May,21,17,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,121.06,0,2,Check-Out,2019-12-04 -City Hotel,0,17,2017,July,31,21,0,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,171.55,0,2,Check-Out,2020-06-02 -City Hotel,0,40,2016,July,31,19,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.38,0,2,Check-Out,2019-06-03 -Resort Hotel,1,103,2016,February,10,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,E,E,0,Non Refund,139.0,179.0,0,Transient,63.28,0,0,Canceled,2018-12-03 -Resort Hotel,0,92,2016,April,23,8,2,3,1,0.0,0,HB,DEU,Groups,TA/TO,1,0,0,D,D,1,No Deposit,93.0,179.0,0,Group,39.81,0,0,Check-Out,2019-03-04 -City Hotel,0,164,2017,May,38,28,0,3,1,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.65,0,1,Check-Out,2020-04-02 -City Hotel,0,4,2015,September,41,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,63.05,0,0,Check-Out,2018-07-03 -City Hotel,1,269,2016,October,44,28,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,73.41,0,0,Canceled,2018-08-03 -Resort Hotel,0,2,2015,October,44,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,1,No Deposit,345.0,64.0,0,Transient-Party,24.57,0,0,Check-Out,2018-09-02 -Resort Hotel,1,155,2016,July,36,18,2,6,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient,191.8,0,2,Canceled,2019-08-04 -Resort Hotel,1,44,2017,July,38,29,0,7,2,1.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,194.0,179.0,0,Transient,139.73,0,0,Canceled,2019-12-04 -Resort Hotel,1,209,2016,May,24,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,93.38,0,0,Canceled,2019-04-03 -Resort Hotel,1,14,2017,June,22,10,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,196.68,0,0,Canceled,2020-02-01 -City Hotel,1,183,2016,August,36,27,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,78.0,179.0,0,Transient,121.68,0,0,Canceled,2019-05-04 -City Hotel,1,28,2016,May,21,17,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.56,0,0,Canceled,2019-02-01 -City Hotel,0,257,2015,July,33,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,69.82,0,0,Check-Out,2018-05-03 -City Hotel,0,306,2016,July,25,14,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,126.13,0,0,Check-Out,2020-05-03 -City Hotel,0,14,2017,July,30,20,1,1,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.08,0,0,Check-Out,2020-06-02 -City Hotel,1,106,2017,August,29,19,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,72.07,0,0,Canceled,2020-01-04 -City Hotel,1,145,2017,January,26,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,41,Transient,81.01,0,0,Canceled,2019-10-04 -City Hotel,0,135,2016,July,28,16,2,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,96.61,0,0,Check-Out,2019-07-04 -City Hotel,1,108,2016,June,26,24,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,68.18,0,0,Canceled,2019-05-04 -City Hotel,0,0,2016,January,3,2,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,F,0,No Deposit,16.0,45.0,0,Transient,36.82,1,0,Check-Out,2019-09-03 -Resort Hotel,1,201,2016,October,45,29,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Contract,72.43,0,0,Canceled,2019-08-04 -City Hotel,0,246,2016,July,25,5,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient-Party,62.08,0,0,Check-Out,2018-06-02 -City Hotel,0,11,2016,November,51,3,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,121.48,0,2,Check-Out,2019-08-04 -Resort Hotel,0,143,2016,March,17,31,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,D,0,Refundable,145.0,223.0,0,Transient-Party,79.76,0,0,Check-Out,2019-02-01 -Resort Hotel,0,161,2016,May,20,27,4,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,107.0,0,2,Check-Out,2019-02-01 -City Hotel,0,0,2016,October,44,27,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.6,0,1,Check-Out,2019-06-03 -City Hotel,1,52,2015,August,36,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.4,0,0,Canceled,2018-05-03 -City Hotel,0,3,2017,August,37,28,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-12-04 -City Hotel,0,4,2015,October,45,20,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,45.0,0,Transient-Party,71.39,0,0,Check-Out,2018-09-02 -City Hotel,0,10,2016,June,28,20,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,0,No Deposit,16.0,57.0,0,Transient,68.18,0,0,Check-Out,2019-12-04 -Resort Hotel,0,29,2015,October,42,30,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -City Hotel,1,311,2017,June,36,20,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,118.98,0,1,Canceled,2020-06-02 -City Hotel,1,112,2017,May,21,21,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,171.09,0,3,Canceled,2020-04-02 -Resort Hotel,0,347,2017,May,22,27,2,5,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient-Party,83.39,0,0,Check-Out,2020-05-03 -Resort Hotel,0,42,2016,March,11,28,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,313.0,179.0,0,Transient,39.5,0,0,Check-Out,2019-03-04 -Resort Hotel,0,47,2015,October,50,5,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,62.23,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2017,October,43,4,0,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,C,1,No Deposit,243.0,179.0,0,Transient,91.0,0,3,Check-Out,2019-11-03 -City Hotel,0,1,2015,November,43,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,81.09,0,0,Check-Out,2018-06-02 -Resort Hotel,0,239,2017,July,21,16,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Contract,61.13,0,1,Check-Out,2020-06-02 -City Hotel,0,13,2017,February,11,18,2,2,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,0,No Deposit,292.0,179.0,0,Transient,62.35,0,0,Check-Out,2020-06-02 -City Hotel,1,93,2015,December,50,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.6,0,0,Canceled,2018-10-03 -Resort Hotel,1,95,2015,December,50,30,2,2,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,72.67,1,0,Canceled,2019-09-03 -City Hotel,1,46,2016,June,28,27,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,113.73,0,0,Canceled,2018-12-03 -Resort Hotel,1,314,2017,July,28,6,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,168.0,179.0,0,Transient,124.75,0,0,Canceled,2020-07-03 -City Hotel,1,153,2016,September,29,29,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,103.1,0,1,Canceled,2019-03-04 -City Hotel,0,60,2017,July,23,29,2,0,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,10.0,179.0,0,Transient,128.9,0,3,Check-Out,2020-06-02 -City Hotel,1,42,2015,March,44,6,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,34.01,0,0,Canceled,2018-12-03 -Resort Hotel,1,92,2015,December,53,6,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,40.44,0,0,Canceled,2018-06-02 -Resort Hotel,0,165,2017,July,37,16,1,10,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,149.0,179.0,0,Transient,195.96,0,2,Check-Out,2020-07-03 -Resort Hotel,0,257,2015,September,36,25,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,61.43,0,0,Check-Out,2018-06-02 -City Hotel,1,265,2016,August,37,21,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,84.0,0,0,No-Show,2019-08-04 -City Hotel,1,0,2017,August,39,10,0,1,2,0.0,0,BB,ITA,Online TA,Direct,0,0,0,A,A,3,No Deposit,13.0,179.0,0,Transient,179.6,0,3,Canceled,2019-09-03 -Resort Hotel,0,0,2016,August,35,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,243.0,179.0,0,Transient,152.72,0,0,Check-Out,2019-06-03 -Resort Hotel,0,16,2016,June,16,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,I,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -City Hotel,1,37,2017,March,9,15,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,6.0,179.0,0,Transient,70.51,0,1,Canceled,2020-02-01 -City Hotel,0,241,2017,June,20,17,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,119.79,1,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2017,March,10,24,0,1,1,0.0,0,FB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,83.0,245.0,0,Transient-Party,61.95,0,0,Check-Out,2020-03-03 -City Hotel,1,216,2016,June,39,10,0,2,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,12.0,179.0,0,Transient,104.33,0,2,Canceled,2019-09-03 -City Hotel,0,22,2016,April,3,6,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.43,0,2,Check-Out,2019-11-03 -Resort Hotel,0,220,2015,September,37,13,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,D,0,No Deposit,3.0,179.0,0,Contract,61.33,0,0,Check-Out,2018-01-03 -Resort Hotel,0,17,2017,March,13,11,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,78.26,0,1,Check-Out,2020-03-03 -Resort Hotel,0,117,2017,March,16,10,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,173.0,179.0,0,Transient-Party,80.39,0,0,Check-Out,2020-06-02 -Resort Hotel,1,57,2016,December,50,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,87.02,0,2,Canceled,2019-11-03 -City Hotel,0,0,2016,February,9,13,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,70.2,0,1,Check-Out,2018-10-03 -Resort Hotel,0,269,2017,July,32,28,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,161.05,1,1,Check-Out,2020-06-02 -Resort Hotel,1,109,2017,July,37,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,239.0,179.0,0,Transient,194.17,0,1,No-Show,2020-06-02 -City Hotel,0,20,2016,March,20,24,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,97.13,0,1,Check-Out,2019-03-04 -Resort Hotel,0,77,2015,December,53,31,2,3,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,28.0,179.0,0,Transient-Party,82.68,1,2,Check-Out,2018-12-03 -City Hotel,0,2,2016,September,26,15,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,45.0,0,Transient,80.47,0,0,Check-Out,2019-07-04 -City Hotel,0,43,2017,March,16,10,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,95.29,0,1,Check-Out,2020-06-02 -Resort Hotel,1,253,2015,August,38,29,2,5,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,334.0,179.0,0,Transient,48.75,0,0,Canceled,2018-07-03 -Resort Hotel,0,20,2015,October,44,5,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,62.78,0,0,Check-Out,2018-06-02 -City Hotel,1,1,2017,January,4,12,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.47,0,0,Canceled,2019-10-04 -Resort Hotel,1,179,2015,December,53,4,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,70.0,179.0,0,Transient,42.05,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2015,October,45,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,114.51,0,0,Check-Out,2019-06-03 -City Hotel,0,300,2016,August,37,16,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.04,0,1,Check-Out,2019-08-04 -City Hotel,0,9,2016,January,3,25,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,64,Group,91.11,0,0,Check-Out,2019-11-03 -City Hotel,1,34,2016,September,35,5,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.28,0,0,Check-Out,2019-05-04 -City Hotel,1,150,2016,March,10,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,68.1,0,0,Canceled,2018-10-03 -Resort Hotel,0,30,2015,December,51,5,2,4,2,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient-Party,121.19,0,0,Check-Out,2019-10-04 -City Hotel,1,259,2017,July,30,4,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.93,0,2,Canceled,2020-05-03 -City Hotel,0,246,2016,September,37,10,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.09,0,2,Check-Out,2019-09-03 -Resort Hotel,0,19,2017,May,22,28,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,65.45,1,3,Check-Out,2020-03-03 -City Hotel,1,246,2016,September,39,17,1,1,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.17,0,0,Canceled,2018-01-31 -Resort Hotel,0,6,2016,June,27,29,0,2,1,0.0,0,BB,USA,Online TA,Direct,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,59.16,1,1,Check-Out,2019-01-03 -Resort Hotel,0,17,2017,May,22,31,0,5,2,0.0,0,HB,GBR,Offline TA/TO,Corporate,1,0,1,D,D,0,No Deposit,243.0,179.0,0,Group,106.37,1,1,Check-Out,2020-03-03 -City Hotel,1,92,2016,April,18,16,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,102.28,0,1,Canceled,2019-02-01 -Resort Hotel,1,266,2017,August,38,18,0,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,158.99,0,2,Canceled,2019-06-03 -Resort Hotel,0,25,2016,December,37,15,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,53.46,1,1,Check-Out,2019-11-03 -Resort Hotel,1,0,2016,January,10,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,68.45,0,1,No-Show,2018-11-02 -City Hotel,1,21,2017,October,45,25,2,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,128.81,0,0,Canceled,2019-11-03 -City Hotel,1,105,2016,July,9,7,2,5,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,69.9,0,2,Canceled,2018-12-03 -City Hotel,1,90,2016,April,53,28,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,84.2,0,2,No-Show,2018-11-02 -City Hotel,1,29,2015,July,31,5,2,5,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,73.17,0,2,Canceled,2018-07-03 -City Hotel,1,1,2015,August,35,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,72.68,0,0,No-Show,2018-03-03 -Resort Hotel,1,24,2017,June,36,19,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,213.39,0,0,Canceled,2020-06-02 -City Hotel,1,167,2016,June,28,5,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.12,0,0,Canceled,2018-08-03 -Resort Hotel,0,87,2016,March,16,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,331.0,0,Transient,62.77,0,0,Check-Out,2019-03-04 -Resort Hotel,0,108,2015,July,32,25,4,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Contract,61.05,0,2,Check-Out,2018-06-02 -City Hotel,0,11,2015,October,45,29,2,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,239.0,0,Transient-Party,87.18,0,0,Check-Out,2018-08-03 -City Hotel,1,38,2016,January,4,31,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,35.0,179.0,0,Transient-Party,84.92,0,0,Canceled,2018-12-03 -City Hotel,1,92,2017,August,33,16,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,162.54,0,1,No-Show,2020-07-03 -City Hotel,1,51,2017,September,43,31,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,120.77,0,0,Canceled,2019-12-04 -Resort Hotel,1,116,2017,April,11,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,17.0,179.0,0,Transient,49.01,0,0,Canceled,2019-10-04 -City Hotel,0,20,2015,October,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,60.0,0,Transient,67.31,1,1,Check-Out,2018-06-02 -City Hotel,1,96,2016,September,11,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,0,Transient,61.89,0,1,Canceled,2018-11-02 -City Hotel,0,0,2015,September,42,19,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,100.17,0,0,Check-Out,2018-09-02 -City Hotel,0,15,2017,June,29,18,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,162.02,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,March,11,16,0,3,1,0.0,0,BB,IRL,Corporate,Corporate,1,0,0,A,D,0,No Deposit,12.0,274.0,0,Transient,44.78,0,0,Check-Out,2019-03-04 -City Hotel,1,254,2016,August,31,10,2,6,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.77,0,1,Canceled,2020-05-03 -Resort Hotel,0,18,2016,December,51,9,0,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,No Deposit,193.0,179.0,0,Transient-Party,67.84,0,0,Check-Out,2019-12-04 -City Hotel,1,56,2017,May,28,2,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.28,0,0,Canceled,2020-06-02 -City Hotel,0,30,2016,April,9,22,2,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,122.25,0,1,Check-Out,2019-03-04 -City Hotel,1,269,2016,July,27,5,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.03,0,0,Canceled,2017-11-02 -Resort Hotel,0,146,2017,May,36,28,2,3,2,0.0,0,HB,PRT,Online TA,GDS,0,0,0,A,C,2,No Deposit,241.0,179.0,0,Transient,63.01,1,1,Check-Out,2020-07-03 -City Hotel,0,155,2016,May,26,3,4,10,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,138.0,179.0,0,Transient-Party,121.28,0,0,Check-Out,2019-04-03 -Resort Hotel,0,13,2016,May,7,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,36.32,0,0,Check-Out,2019-03-04 -Resort Hotel,1,21,2017,June,24,29,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,E,0,No Deposit,248.0,179.0,0,Transient,149.45,0,0,Check-Out,2020-04-02 -City Hotel,1,41,2017,December,45,21,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,Non Refund,180.0,179.0,0,Transient,120.04,0,0,Canceled,2019-12-04 -City Hotel,0,0,2015,September,44,4,0,1,1,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,98.06,0,0,Check-Out,2018-08-03 -Resort Hotel,0,186,2017,July,33,6,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,177.0,179.0,0,Contract,103.39,0,0,Check-Out,2020-07-03 -City Hotel,1,440,2017,May,27,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.87,0,0,Canceled,2020-01-04 -Resort Hotel,0,11,2015,December,53,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,62.35,1,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,February,10,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,87.05,1,0,Check-Out,2019-02-01 -City Hotel,1,429,2015,July,37,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.18,0,0,Canceled,2018-08-03 -City Hotel,0,39,2016,July,31,21,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.69,0,1,Check-Out,2019-06-03 -Resort Hotel,0,10,2016,December,51,31,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,59.24,0,0,Check-Out,2019-11-03 -City Hotel,1,15,2017,August,38,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.05,0,0,Canceled,2020-06-02 -City Hotel,0,0,2016,October,46,9,0,3,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,164.0,0,Transient,132.09,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,September,37,10,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Group,61.83,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2017,April,19,17,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,116.48,0,2,Check-Out,2020-03-03 -Resort Hotel,1,87,2016,March,16,31,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Refundable,11.0,221.0,0,Transient-Party,76.36,0,0,Canceled,2019-03-04 -City Hotel,1,89,2016,August,36,22,0,4,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,117.03,0,1,Canceled,2019-04-03 -Resort Hotel,1,64,2016,February,9,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,47.47,0,0,Canceled,2019-01-03 -City Hotel,0,18,2015,September,44,19,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,143.3,0,2,Check-Out,2018-06-02 -City Hotel,0,0,2017,May,13,16,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -Resort Hotel,0,261,2017,July,25,27,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,62.77,0,1,Check-Out,2020-06-02 -Resort Hotel,0,17,2017,July,34,16,1,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Refundable,242.0,179.0,0,Transient,123.23,0,2,Canceled,2019-12-04 -City Hotel,0,4,2016,November,52,10,1,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,D,0,No Deposit,196.0,179.0,0,Transient,158.21,0,0,Check-Out,2019-11-03 -Resort Hotel,0,155,2016,March,17,13,1,3,1,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,65.87,0,0,Check-Out,2019-02-01 -Resort Hotel,0,13,2017,February,12,22,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,69.48,0,0,Check-Out,2019-10-04 -City Hotel,1,259,2015,September,37,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.34,0,0,Canceled,2018-06-02 -Resort Hotel,0,444,2017,August,23,30,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,211.58,0,3,Check-Out,2020-07-03 -City Hotel,0,393,2016,October,44,27,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,90.99,0,1,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,December,50,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,63.0,0,Transient,40.05,1,0,Check-Out,2019-07-04 -City Hotel,1,13,2016,November,48,2,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,59.47,0,0,Canceled,2019-10-04 -City Hotel,1,369,2017,May,21,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.55,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2017,February,11,10,0,1,1,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,118.13,0,0,Check-Out,2019-12-04 -Resort Hotel,0,116,2016,April,18,24,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,93.14,0,0,Check-Out,2019-03-04 -Resort Hotel,0,116,2017,March,8,19,2,5,2,2.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,138.0,179.0,0,Transient,251.27,0,0,Check-Out,2020-02-01 -City Hotel,0,79,2016,May,20,3,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient-Party,87.9,0,0,Check-Out,2019-03-04 -City Hotel,0,154,2016,October,43,21,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-08-04 -Resort Hotel,1,139,2016,April,10,18,0,2,1,0.0,0,FB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,151.0,74.0,0,Transient,71.61,0,0,Check-Out,2019-01-03 -City Hotel,1,51,2016,April,17,13,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,119.05,0,1,Canceled,2019-02-01 -City Hotel,0,0,2016,December,42,20,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.24,0,2,Check-Out,2019-07-04 -Resort Hotel,1,24,2017,March,17,13,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,155.04,0,0,Canceled,2019-01-03 -Resort Hotel,0,2,2017,January,2,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,13.0,76.0,0,Transient,36.3,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,September,33,8,1,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,219.4,0,1,Check-Out,2019-04-03 -Resort Hotel,0,0,2017,February,12,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,244.0,179.0,0,Group,80.27,0,1,Check-Out,2019-10-04 -City Hotel,1,298,2015,September,36,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.15,0,0,Canceled,2017-10-03 -City Hotel,0,33,2017,January,4,31,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,111.84,1,2,Check-Out,2019-09-03 -City Hotel,1,43,2017,March,22,13,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.0,0,1,Canceled,2020-03-03 -Resort Hotel,0,50,2015,December,38,20,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,108.88,0,1,Check-Out,2018-11-02 -Resort Hotel,0,246,2015,July,38,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Contract,36.68,0,1,Check-Out,2018-01-31 -Resort Hotel,0,1,2016,June,34,20,4,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,178.79,0,0,Check-Out,2019-03-04 -City Hotel,1,55,2017,March,17,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,148.0,179.0,0,Transient,119.13,0,0,Canceled,2020-07-03 -Resort Hotel,1,2,2016,January,49,28,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,82.79,0,0,Canceled,2019-08-04 -Resort Hotel,0,56,2016,April,24,2,2,4,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,342.0,179.0,0,Transient,97.86,0,2,Check-Out,2019-07-04 -City Hotel,0,4,2016,August,28,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,99.31,0,0,Check-Out,2020-06-02 -City Hotel,0,93,2015,July,32,15,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,238.72,0,1,Check-Out,2018-05-03 -City Hotel,1,245,2015,September,34,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.81,0,0,Canceled,2018-09-02 -City Hotel,1,36,2016,March,16,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,B,0,Non Refund,33.0,179.0,61,Transient,69.8,0,0,Canceled,2019-03-04 -City Hotel,0,5,2017,May,22,5,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,158.38,0,0,Check-Out,2020-03-03 -Resort Hotel,0,201,2017,March,12,31,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,57.99,0,1,Check-Out,2020-04-02 -Resort Hotel,1,112,2016,March,11,6,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,80.74,0,0,Canceled,2018-11-02 -City Hotel,1,239,2016,June,28,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,62.6,0,0,Canceled,2019-03-04 -Resort Hotel,0,11,2016,April,22,17,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,63.07,0,0,Check-Out,2019-02-01 -Resort Hotel,0,142,2017,February,10,30,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,E,E,2,No Deposit,156.0,179.0,0,Contract,75.35,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2017,February,10,24,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,157.0,179.0,0,Transient,31.58,0,1,Check-Out,2019-11-03 -City Hotel,1,61,2016,October,45,5,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.48,0,0,Canceled,2019-06-03 -City Hotel,0,93,2016,September,46,1,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.27,0,2,Check-Out,2019-09-03 -Resort Hotel,1,0,2015,January,5,16,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,K,0,No Deposit,309.0,179.0,0,Transient-Party,61.97,0,0,No-Show,2018-12-03 -Resort Hotel,0,40,2016,April,17,25,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,298.0,179.0,0,Transient,99.99,0,0,Check-Out,2019-02-01 -City Hotel,1,4,2016,June,20,3,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,45.0,0,Transient,73.12,0,0,Canceled,2019-07-04 -City Hotel,0,12,2016,March,11,9,1,2,1,0.0,0,SC,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.66,0,1,Check-Out,2019-03-04 -Resort Hotel,1,38,2016,April,15,9,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,2019-01-03 -City Hotel,0,4,2016,November,25,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,62.04,0,0,Check-Out,2019-02-01 -Resort Hotel,0,92,2015,September,53,24,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,76.63,0,2,Canceled,2018-05-03 -City Hotel,1,40,2015,July,29,30,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.06,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,August,14,6,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,1.9,0,0,Check-Out,2020-03-03 -City Hotel,0,232,2016,September,32,20,0,2,1,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,180.72,0,0,Check-Out,2019-04-03 -Resort Hotel,1,5,2017,April,21,24,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,248.0,179.0,0,Transient,113.18,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2016,March,7,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,73.02,0,1,Check-Out,2018-11-02 -City Hotel,0,42,2015,December,53,5,2,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,91.72,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2015,September,36,15,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,94.11,0,0,Check-Out,2018-06-02 -City Hotel,0,104,2016,October,11,9,2,5,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,80.27,0,1,Check-Out,2019-04-03 -City Hotel,1,381,2016,April,18,31,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,261.0,179.0,21,Transient,62.45,0,0,Canceled,2019-09-03 -Resort Hotel,1,12,2016,August,35,25,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,188.08,0,0,Canceled,2018-06-02 -Resort Hotel,0,83,2016,June,31,2,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,175.0,179.0,0,Transient,70.36,0,0,Check-Out,2019-04-03 -City Hotel,1,341,2016,November,43,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.89,0,1,Canceled,2018-12-03 -Resort Hotel,0,2,2016,October,51,10,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,1.76,1,0,Check-Out,2018-12-03 -City Hotel,0,155,2015,October,43,25,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Contract,75.2,0,0,Check-Out,2018-11-02 -City Hotel,0,82,2017,May,20,30,0,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,104.83,0,1,Canceled,2020-02-01 -City Hotel,1,238,2016,October,44,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,70.12,0,0,Canceled,2018-09-02 -Resort Hotel,1,51,2015,November,51,15,2,4,1,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,60.54,0,0,Canceled,2018-01-03 -Resort Hotel,1,18,2015,August,53,15,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,241.0,179.0,0,Transient,135.2,0,1,Canceled,2019-01-03 -Resort Hotel,0,197,2016,October,43,13,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,38.8,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,March,9,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,81.0,179.0,0,Transient,42.98,0,0,Check-Out,2019-01-03 -Resort Hotel,0,57,2016,September,43,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,99.44,0,0,Check-Out,2019-08-04 -City Hotel,1,96,2016,February,11,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,L,0,Non Refund,132.0,179.0,0,Transient,108.02,0,0,No-Show,2018-12-03 -City Hotel,0,66,2016,September,38,27,1,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.07,0,2,Check-Out,2019-06-03 -Resort Hotel,0,43,2016,April,20,5,2,2,2,2.0,0,FB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,246.0,179.0,0,Transient,63.52,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,March,16,8,2,1,3,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,74.55,0,0,Check-Out,2020-02-01 -Resort Hotel,0,4,2017,February,10,12,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,225.0,0,Transient-Party,30.64,0,0,Check-Out,2020-03-03 -Resort Hotel,0,101,2017,May,22,16,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,83.67,1,1,Check-Out,2020-03-03 -City Hotel,1,205,2016,October,46,16,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient-Party,97.89,0,0,Canceled,2019-04-03 -City Hotel,0,34,2017,December,53,18,1,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.34,1,2,Check-Out,2019-12-04 -City Hotel,1,52,2016,April,17,30,0,1,1,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient-Party,101.47,0,0,Canceled,2019-03-04 -City Hotel,1,157,2016,July,53,6,2,4,2,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,129.05,0,2,Canceled,2018-12-03 -City Hotel,1,16,2016,April,14,15,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,162.78,0,0,Canceled,2019-01-03 -Resort Hotel,1,3,2015,August,37,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,61.15,0,0,Canceled,2018-07-03 -Resort Hotel,0,148,2017,February,10,30,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient,70.02,0,0,Check-Out,2019-09-03 -City Hotel,0,26,2016,May,22,22,1,3,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,94.87,0,0,Check-Out,2019-02-01 -Resort Hotel,1,52,2017,March,18,22,0,4,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,131.25,0,2,Canceled,2019-12-04 -City Hotel,0,32,2015,September,43,31,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,99.92,0,0,Check-Out,2018-09-02 -City Hotel,1,9,2016,April,19,29,0,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,153.0,0,Transient,91.82,0,0,Canceled,2019-04-03 -City Hotel,0,37,2015,November,44,10,2,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,93.4,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2017,April,17,12,0,3,1,0.0,0,BB,FRA,Complementary,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,72.54,1,0,Check-Out,2020-04-02 -City Hotel,0,17,2015,August,35,23,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,62.74,0,1,Check-Out,2017-12-03 -Resort Hotel,1,86,2016,June,28,14,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,59.59,0,0,Canceled,2019-02-01 -City Hotel,1,30,2015,December,51,2,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,83.45,0,0,Canceled,2018-10-03 -Resort Hotel,0,353,2016,October,31,16,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,157.93,1,1,Check-Out,2019-07-04 -Resort Hotel,0,329,2016,April,16,5,2,5,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,237.0,179.0,0,Transient,78.11,1,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,July,35,12,2,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.5,0,0,Check-Out,2019-04-03 -Resort Hotel,0,1,2016,August,37,31,0,2,2,1.0,0,BB,ISR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,78.41,1,1,Check-Out,2019-11-03 -Resort Hotel,0,253,2015,October,40,30,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,62,Transient-Party,102.47,0,0,Check-Out,2019-01-03 -City Hotel,0,36,2016,September,36,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,153.48,0,1,Check-Out,2019-06-03 -City Hotel,0,2,2017,March,11,15,0,3,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,C,D,0,No Deposit,11.0,179.0,0,Transient,63.41,1,2,Check-Out,2020-02-01 -City Hotel,1,40,2017,August,36,16,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,107.63,0,1,Canceled,2020-01-04 -City Hotel,1,0,2016,May,24,12,2,2,3,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,115.53,0,1,Canceled,2019-02-01 -Resort Hotel,0,142,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,62.97,1,0,Check-Out,2019-02-01 -Resort Hotel,0,204,2016,September,44,26,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,158.11,0,0,Check-Out,2019-05-04 -Resort Hotel,0,139,2017,March,16,15,0,5,1,0.0,0,BB,NLD,Offline TA/TO,Corporate,0,0,0,A,I,0,No Deposit,12.0,331.0,0,Transient,31.54,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,March,16,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,40.06,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2016,November,27,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,D,2,No Deposit,16.0,45.0,0,Transient,96.71,0,1,Check-Out,2019-11-03 -City Hotel,1,55,2016,April,53,11,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.08,0,0,Canceled,2018-11-02 -City Hotel,0,172,2016,June,25,26,2,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,101.47,0,2,Check-Out,2019-06-03 -City Hotel,0,65,2016,January,3,6,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,2.0,331.0,0,Transient-Party,0.0,0,0,Check-Out,2019-02-01 -City Hotel,1,390,2016,May,23,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,76.24,0,0,Canceled,2019-08-04 -City Hotel,1,113,2017,April,22,30,1,1,1,0.0,0,BB,DEU,Aviation,TA/TO,0,0,0,B,F,1,No Deposit,11.0,179.0,0,Transient-Party,150.21,0,0,Canceled,2020-01-04 -City Hotel,0,122,2016,July,53,27,2,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,H,A,0,No Deposit,6.0,179.0,0,Transient,102.27,0,1,Check-Out,2019-09-03 -City Hotel,1,277,2015,October,42,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.83,0,0,Canceled,2018-01-03 -City Hotel,0,4,2017,May,25,23,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Group,158.04,1,1,Check-Out,2020-06-02 -Resort Hotel,0,272,2016,March,18,31,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,80.59,0,0,Check-Out,2019-03-04 -Resort Hotel,0,22,2016,January,27,6,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,87.4,0,1,Check-Out,2019-02-01 -Resort Hotel,0,90,2017,February,11,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,G,0,No Deposit,16.0,179.0,0,Transient,60.96,0,0,Check-Out,2018-12-03 -City Hotel,1,39,2016,February,10,10,2,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,38,Transient,37.86,0,0,Canceled,2018-11-02 -Resort Hotel,0,24,2016,October,44,21,0,1,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient-Party,94.09,0,0,Check-Out,2019-09-03 -City Hotel,0,15,2016,December,50,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,236.0,0,Transient,43.36,0,0,Check-Out,2019-09-03 -Resort Hotel,0,201,2017,February,11,12,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient-Party,61.34,0,0,Check-Out,2020-05-03 -City Hotel,1,0,2016,February,8,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.06,0,1,Canceled,2018-11-02 -City Hotel,0,194,2015,October,46,16,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,45.0,0,Transient-Party,72.67,0,0,Check-Out,2018-09-02 -Resort Hotel,0,20,2017,February,6,2,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,91.78,0,0,Check-Out,2019-12-04 -City Hotel,1,4,2016,July,32,23,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.16,0,0,No-Show,2019-05-04 -City Hotel,0,103,2016,October,43,6,1,0,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,109.96,0,2,Check-Out,2019-11-03 -City Hotel,0,0,2016,November,50,20,1,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,2.76,0,0,Check-Out,2019-11-03 -City Hotel,1,20,2017,April,12,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,71.93,0,0,Canceled,2019-11-03 -City Hotel,1,404,2015,September,44,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.25,0,0,Canceled,2017-10-03 -City Hotel,1,24,2016,March,17,15,2,2,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,124.88,0,1,Canceled,2019-08-04 -City Hotel,0,14,2016,April,44,28,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,116.72,0,2,Check-Out,2019-12-04 -City Hotel,0,272,2016,September,43,17,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,210.94,1,1,Check-Out,2019-09-03 -Resort Hotel,0,17,2017,July,28,24,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,G,F,0,No Deposit,16.0,179.0,0,Transient,207.12,1,2,Check-Out,2020-03-03 -City Hotel,0,15,2016,May,27,15,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,331.0,0,Group,102.53,0,1,Check-Out,2020-03-03 -City Hotel,0,12,2017,March,26,28,0,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,123.86,0,2,Check-Out,2020-04-02 -City Hotel,1,237,2015,August,35,6,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,87.04,0,0,Canceled,2018-06-02 -City Hotel,0,150,2016,June,42,14,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,24.0,179.0,0,Transient-Party,93.49,0,0,Check-Out,2019-08-04 -Resort Hotel,0,47,2016,September,40,20,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,H,0,No Deposit,2.0,179.0,0,Transient-Party,72.07,0,0,Check-Out,2018-08-03 -City Hotel,0,22,2015,October,45,28,1,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.05,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,March,13,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,E,0,No Deposit,162.0,90.0,0,Transient,40.68,0,0,Check-Out,2019-03-04 -Resort Hotel,0,215,2015,November,43,27,0,1,1,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,265.0,179.0,0,Transient-Party,31.97,0,0,Check-Out,2018-08-03 -Resort Hotel,1,164,2016,March,15,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient,48.38,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2016,October,45,22,0,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,166.0,0,Transient,94.16,0,0,Check-Out,2019-03-04 -City Hotel,0,285,2015,October,45,21,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,85.95,0,0,Check-Out,2018-07-03 -Resort Hotel,0,44,2016,March,18,30,0,5,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,143.36,1,1,Check-Out,2019-02-01 -City Hotel,0,30,2016,January,3,23,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.09,0,2,Check-Out,2018-11-02 -City Hotel,0,143,2017,March,22,21,1,3,2,0.0,0,BB,BEL,Direct,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,119.08,1,2,Check-Out,2019-12-04 -City Hotel,0,248,2015,July,26,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,128.28,0,0,Canceled,2018-12-03 -Resort Hotel,0,5,2017,June,28,15,1,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,70.62,0,0,Check-Out,2020-03-03 -Resort Hotel,0,87,2015,December,53,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,117.97,1,0,Check-Out,2018-12-03 -Resort Hotel,0,16,2015,October,46,2,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,257.0,179.0,0,Transient,147.61,0,0,Check-Out,2018-08-03 -City Hotel,0,51,2015,August,30,20,2,4,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,130.66,0,0,Check-Out,2018-05-03 -City Hotel,1,110,2016,August,34,20,2,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,76.24,0,1,Canceled,2019-07-04 -Resort Hotel,0,130,2016,March,10,31,0,2,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,223.0,0,Transient-Party,36.46,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2017,June,36,5,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,176.73,1,0,Check-Out,2020-06-02 -Resort Hotel,0,275,2017,May,28,22,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,38.0,179.0,0,Contract,64.76,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,July,36,24,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,60.04,1,0,Check-Out,2019-06-03 -Resort Hotel,0,105,2016,August,9,5,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,112.67,0,0,Check-Out,2019-04-03 -City Hotel,1,16,2016,December,51,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,19.0,179.0,0,Transient,81.17,0,0,Canceled,2018-08-03 -City Hotel,0,192,2016,August,37,28,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,217.98,0,2,Check-Out,2019-05-04 -City Hotel,0,2,2017,May,26,5,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,D,B,2,No Deposit,13.0,45.0,42,Transient,0.0,0,0,Check-Out,2019-10-04 -City Hotel,1,374,2017,May,27,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,160.93,0,0,Canceled,2020-06-02 -City Hotel,0,10,2017,February,12,28,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,69.99,0,2,Check-Out,2020-03-03 -City Hotel,0,135,2016,June,27,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,145.7,0,2,Check-Out,2019-01-03 -Resort Hotel,0,325,2017,May,23,30,2,6,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,161.35,0,1,Check-Out,2020-02-01 -City Hotel,0,1,2016,February,10,28,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,72.52,0,0,Check-Out,2020-03-03 -Resort Hotel,1,45,2015,June,36,27,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,121.83,0,1,Canceled,2019-05-04 -Resort Hotel,0,16,2017,May,23,4,2,4,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,124.58,1,1,Check-Out,2020-03-03 -City Hotel,1,90,2017,August,33,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.7,0,2,Canceled,2019-06-03 -City Hotel,1,11,2016,June,36,12,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,99.87,0,1,Canceled,2019-05-04 -City Hotel,0,2,2016,August,49,5,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,C,K,1,No Deposit,11.0,179.0,0,Group,0.0,0,0,Check-Out,2019-08-04 -Resort Hotel,1,0,2017,May,18,11,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,111.76,0,1,No-Show,2019-04-03 -City Hotel,0,1,2015,August,35,26,2,1,1,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,64.66,0,0,Check-Out,2018-07-03 -City Hotel,1,260,2015,September,43,4,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.52,0,0,Canceled,2018-08-03 -Resort Hotel,0,21,2015,September,43,24,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,39.03,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,November,43,16,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,46.21,0,1,Check-Out,2018-06-02 -Resort Hotel,0,233,2016,May,22,25,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,378.0,179.0,0,Transient-Party,93.26,0,0,Check-Out,2019-03-04 -Resort Hotel,0,38,2016,March,21,28,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,238.0,179.0,0,Transient,147.38,1,2,Check-Out,2019-02-01 -City Hotel,1,364,2015,September,50,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,99.77,0,0,Canceled,2018-08-03 -Resort Hotel,1,63,2015,October,44,31,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,A,0,No Deposit,260.0,179.0,0,Transient-Party,42.83,0,0,Canceled,2019-10-04 -City Hotel,0,51,2017,June,27,9,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,128.37,0,1,Check-Out,2019-10-04 -City Hotel,0,46,2016,October,45,20,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,161.53,0,1,Check-Out,2019-04-03 -Resort Hotel,0,43,2015,November,43,5,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,103.7,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2015,July,26,29,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,84.32,1,0,Check-Out,2018-06-02 -Resort Hotel,1,252,2016,September,42,9,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,148.0,179.0,0,Contract,77.41,0,0,Canceled,2017-12-03 -City Hotel,0,66,2016,February,10,5,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,90.97,0,0,Check-Out,2018-11-02 -Resort Hotel,0,242,2016,September,42,14,2,10,1,0.0,0,FB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient,96.94,0,0,Check-Out,2019-05-04 -Resort Hotel,0,43,2015,December,53,29,2,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient-Party,47.61,0,0,Check-Out,2019-01-03 -Resort Hotel,0,361,2016,October,43,13,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient-Party,71.19,0,0,Check-Out,2019-06-03 -Resort Hotel,0,260,2016,March,19,9,2,5,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Transient-Party,74.76,0,0,Check-Out,2019-12-04 -City Hotel,1,262,2016,June,28,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.88,0,0,Canceled,2018-07-03 -City Hotel,0,67,2016,April,16,9,0,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient-Party,102.66,0,2,Check-Out,2019-02-01 -City Hotel,1,42,2017,May,19,16,0,4,3,2.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,212.33,0,0,Canceled,2020-03-03 -City Hotel,0,63,2017,June,31,30,0,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,119.24,0,1,Check-Out,2020-04-02 -Resort Hotel,0,2,2015,December,51,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,117.65,1,0,Check-Out,2018-12-03 -City Hotel,1,260,2017,June,26,21,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,5.0,179.0,0,Transient,141.73,0,0,Canceled,2019-03-04 -City Hotel,0,0,2016,June,27,23,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,0,No Deposit,14.0,189.0,0,Transient,46.32,0,0,Check-Out,2020-04-02 -City Hotel,0,267,2015,September,42,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.34,0,0,Check-Out,2018-08-03 -City Hotel,0,100,2016,May,20,30,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,187.71,0,0,Check-Out,2019-02-01 -Resort Hotel,0,162,2016,April,17,23,2,2,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,71.0,179.0,0,Transient-Party,103.97,0,0,Check-Out,2019-01-03 -City Hotel,0,29,2015,October,41,20,2,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,2,Check-Out,2018-09-02 -Resort Hotel,0,284,2016,October,34,18,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,75,Transient-Party,78.87,0,0,Canceled,2019-08-04 -City Hotel,0,37,2016,November,51,16,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,118.55,0,3,Check-Out,2019-11-03 -City Hotel,1,392,2016,October,51,28,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,82.31,0,0,Canceled,2019-09-03 -Resort Hotel,0,261,2017,June,25,16,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,148.83,1,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,February,9,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,C,0,No Deposit,248.0,179.0,0,Transient,36.01,0,1,Check-Out,2018-12-03 -City Hotel,1,168,2016,September,42,30,2,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,130.13,0,0,Canceled,2019-07-04 -City Hotel,0,249,2015,September,42,18,0,2,2,0.0,0,BB,CHN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.95,0,0,Check-Out,2018-07-03 -Resort Hotel,0,30,2017,August,32,6,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient-Party,59.73,0,0,Check-Out,2020-07-03 -City Hotel,0,143,2017,May,21,24,2,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,3,No Deposit,14.0,179.0,0,Transient,150.25,0,0,Check-Out,2020-03-03 -City Hotel,1,1,2017,March,19,19,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.81,0,2,Canceled,2020-04-02 -City Hotel,0,8,2016,June,29,18,0,3,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,195.0,0,Transient,87.97,0,0,Check-Out,2019-02-01 -City Hotel,1,49,2017,March,8,22,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.67,0,0,Canceled,2020-02-01 -Resort Hotel,0,46,2016,February,11,20,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,61.47,0,2,Check-Out,2019-01-03 -Resort Hotel,0,11,2017,March,10,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,3,Non Refund,14.0,224.0,0,Transient,36.46,0,0,Check-Out,2020-03-03 -City Hotel,1,11,2016,February,9,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,71.69,0,0,Canceled,2018-11-02 -Resort Hotel,0,3,2016,November,43,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,95.06,0,0,Check-Out,2018-09-02 -City Hotel,0,15,2016,October,35,2,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,155.4,0,0,Check-Out,2019-09-03 -Resort Hotel,0,160,2017,July,30,4,2,1,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,123.32,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,July,25,6,3,10,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,189.0,179.0,0,Transient,103.12,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2017,February,36,13,2,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,118.58,1,0,Check-Out,2020-06-02 -Resort Hotel,1,47,2016,August,36,9,2,5,2,1.0,0,BB,,Direct,Direct,0,0,0,F,D,0,No Deposit,246.0,179.0,0,Transient,187.51,0,3,Canceled,2018-06-02 -City Hotel,1,125,2017,May,22,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,12.0,179.0,0,Transient,93.55,0,0,Canceled,2020-01-04 -City Hotel,0,21,2016,July,27,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,232.0,0,Transient,105.64,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,June,28,26,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,43.0,179.0,0,Transient,0.28,0,0,Check-Out,2018-07-03 -City Hotel,0,202,2017,April,33,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,174.0,179.0,0,Transient,97.07,0,0,Check-Out,2020-03-03 -City Hotel,1,116,2016,June,45,28,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,121.62,0,0,Canceled,2019-05-04 -Resort Hotel,0,5,2015,October,46,20,2,6,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,L,C,0,No Deposit,13.0,179.0,0,Transient-Party,33.83,0,0,Check-Out,2018-07-03 -City Hotel,0,29,2016,June,26,5,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,77.62,0,0,Check-Out,2019-06-03 -Resort Hotel,0,241,2016,October,43,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,109.45,0,3,Check-Out,2019-07-04 -City Hotel,1,0,2015,December,45,16,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Group,46.76,0,0,Canceled,2017-11-02 -City Hotel,0,195,2017,July,33,2,2,4,2,1.0,0,HB,BEL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,116.69,0,3,Check-Out,2020-06-02 -Resort Hotel,0,3,2016,January,4,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,40.96,0,1,Check-Out,2019-10-04 -City Hotel,0,0,2016,March,9,24,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.91,0,0,Check-Out,2019-02-01 -City Hotel,0,7,2017,July,33,6,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,8.0,179.0,0,Transient,127.38,0,1,Check-Out,2020-06-02 -City Hotel,0,29,2016,March,4,29,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,71.06,1,0,Check-Out,2019-03-04 -Resort Hotel,0,35,2016,February,50,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,12.0,68.0,0,Transient,75.6,1,0,Check-Out,2019-07-04 -City Hotel,1,358,2015,October,42,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.65,0,0,Canceled,2018-06-02 -City Hotel,1,328,2016,October,45,13,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,73.04,0,0,Canceled,2018-08-03 -Resort Hotel,0,90,2016,March,18,14,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,30.12,0,0,Check-Out,2019-04-03 -City Hotel,0,32,2016,September,43,24,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,113.87,0,2,Check-Out,2019-06-03 -Resort Hotel,1,149,2016,June,35,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,187.0,215.0,0,Transient,37.52,0,0,Canceled,2019-09-03 -Resort Hotel,0,98,2015,December,50,26,2,4,2,0.0,0,FB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient,70.23,0,0,Check-Out,2018-09-02 -City Hotel,1,412,2015,September,45,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,42,Transient,88.94,0,0,Canceled,2018-01-03 -City Hotel,1,182,2016,May,22,13,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.75,0,0,Canceled,2019-02-01 -City Hotel,1,1,2017,August,38,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,143.93,0,0,No-Show,2020-05-03 -Resort Hotel,1,202,2016,August,45,15,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,170.95,0,1,Canceled,2019-09-03 -Resort Hotel,0,0,2016,March,12,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,223.0,0,Transient,38.06,0,0,Check-Out,2019-02-01 -Resort Hotel,0,184,2016,February,23,8,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,32.0,179.0,21,Transient-Party,64.81,0,0,Check-Out,2019-03-04 -Resort Hotel,0,38,2015,December,52,27,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,102.0,179.0,0,Transient-Party,58.99,0,0,Check-Out,2019-10-04 -City Hotel,0,15,2017,May,21,18,1,1,2,0.0,0,SC,ESP,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.63,0,0,Check-Out,2020-07-03 -City Hotel,0,46,2016,December,53,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,100.94,0,3,Check-Out,2018-11-02 -Resort Hotel,0,40,2016,April,16,13,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,87.25,0,0,Check-Out,2019-04-03 -Resort Hotel,1,96,2016,July,42,18,2,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,150.2,0,1,Canceled,2018-12-03 -Resort Hotel,0,151,2017,August,37,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,47.12,1,2,Check-Out,2018-07-03 -City Hotel,1,110,2016,October,43,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,42,Transient,59.05,0,0,Canceled,2019-03-04 -Resort Hotel,0,25,2015,August,36,4,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,149.81,0,0,Check-Out,2018-06-02 -City Hotel,0,18,2016,August,38,28,0,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,125.65,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,December,50,5,1,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,F,1,No Deposit,15.0,179.0,0,Transient,91.12,0,0,Check-Out,2019-11-03 -City Hotel,1,104,2015,November,52,28,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,112.1,0,0,Canceled,2018-08-03 -Resort Hotel,1,53,2017,January,2,20,2,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,164.87,0,0,Canceled,2019-11-03 -Resort Hotel,0,152,2017,July,34,15,3,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,314.0,179.0,0,Transient-Party,252.0,1,0,Check-Out,2019-12-04 -City Hotel,0,26,2017,September,34,6,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.85,0,2,Check-Out,2019-09-03 -Resort Hotel,0,156,2017,February,8,18,2,5,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,208.0,331.0,0,Transient,30.28,0,0,Check-Out,2020-04-02 -City Hotel,0,3,2016,June,29,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,18.0,45.0,0,Transient,62.5,1,0,Check-Out,2019-07-04 -Resort Hotel,0,103,2016,July,31,6,4,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,107.91,0,2,Check-Out,2019-05-04 -City Hotel,1,332,2015,August,37,21,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient-Party,150.66,0,0,Canceled,2018-05-03 -Resort Hotel,0,28,2017,March,19,25,2,5,2,0.0,0,BB,AUT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,14.0,246.0,0,Transient-Party,90.63,0,0,Check-Out,2020-03-03 -City Hotel,1,62,2017,August,36,19,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,113.71,0,2,Canceled,2019-12-04 -City Hotel,1,437,2015,July,37,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.16,0,0,Canceled,2017-12-03 -Resort Hotel,0,15,2015,September,50,28,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,82.1,1,0,Check-Out,2018-09-02 -Resort Hotel,1,42,2016,February,9,20,2,0,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,315.0,179.0,0,Transient,47.0,0,0,Canceled,2019-08-04 -City Hotel,1,265,2017,May,21,5,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,105.83,0,0,Canceled,2019-11-03 -City Hotel,0,41,2017,May,21,21,2,0,2,0.0,0,SC,GBR,Direct,Direct,0,0,0,F,A,0,No Deposit,12.0,179.0,0,Transient,101.29,0,3,Check-Out,2020-04-02 -City Hotel,0,0,2016,February,9,22,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,37.72,0,0,Check-Out,2018-11-02 -City Hotel,1,190,2016,August,43,21,1,1,2,2.0,0,BB,ESP,Online TA,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,220.32,0,0,Canceled,2019-07-04 -City Hotel,1,41,2017,April,15,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.29,0,0,Canceled,2019-02-01 -City Hotel,0,93,2016,October,42,3,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Contract,139.13,1,0,Check-Out,2019-05-04 -Resort Hotel,0,92,2016,April,43,28,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,95.22,0,1,Check-Out,2019-09-03 -Resort Hotel,0,178,2016,September,42,10,2,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,237.86,0,3,Check-Out,2019-04-03 -City Hotel,0,2,2017,March,17,11,2,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,10.0,179.0,0,Transient,139.83,0,1,Check-Out,2020-02-01 -City Hotel,0,50,2016,September,44,13,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.25,0,0,Check-Out,2019-09-03 -Resort Hotel,0,46,2017,July,43,6,2,4,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,183.88,1,2,Check-Out,2019-11-03 -Resort Hotel,1,107,2017,July,36,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,3,No Deposit,241.0,179.0,0,Transient,191.09,0,1,Canceled,2020-02-01 -Resort Hotel,1,33,2015,August,37,24,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,61.79,0,0,Canceled,2018-06-02 -City Hotel,1,22,2016,February,7,24,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,196.01,0,0,Canceled,2019-01-03 -Resort Hotel,0,203,2015,October,43,7,3,10,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient-Party,118.26,0,0,Check-Out,2018-07-03 -Resort Hotel,0,107,2017,March,16,31,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,114.26,0,2,Check-Out,2020-04-02 -Resort Hotel,0,145,2016,November,50,16,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,32.0,179.0,41,Transient,41.8,0,0,Check-Out,2019-12-04 -Resort Hotel,0,114,2016,May,15,24,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,315.0,179.0,0,Transient-Party,109.68,1,0,Check-Out,2019-03-04 -City Hotel,1,158,2017,April,16,11,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,92.95,0,0,Canceled,2019-12-04 -City Hotel,1,16,2015,January,49,6,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,59.63,0,1,Check-Out,2018-12-03 -City Hotel,1,32,2016,December,53,5,2,2,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,75.99,0,2,Canceled,2018-11-02 -City Hotel,1,203,2016,May,21,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,93.0,179.0,16,Transient,127.23,0,0,Canceled,2019-02-01 -Resort Hotel,0,11,2016,December,51,24,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,129.71,0,0,Check-Out,2019-10-04 -City Hotel,0,237,2017,July,32,20,0,2,1,0.0,0,SC,NOR,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,136.48,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2017,February,11,30,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.53,0,0,Check-Out,2019-08-04 -Resort Hotel,0,8,2017,June,22,27,0,2,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,C,C,1,No Deposit,19.0,179.0,0,Transient,173.27,0,0,Check-Out,2020-06-02 -City Hotel,1,245,2016,October,26,23,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.37,0,0,Canceled,2019-06-03 -Resort Hotel,0,0,2016,February,11,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,331.0,0,Transient,30.24,1,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2016,August,35,9,2,3,1,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,114.47,0,0,Check-Out,2019-09-03 -City Hotel,1,20,2017,February,11,28,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,91.52,0,0,Canceled,2019-12-04 -City Hotel,0,102,2017,August,36,30,0,3,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,145.33,0,0,Check-Out,2020-06-02 -Resort Hotel,0,20,2016,April,25,5,2,5,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,241.0,179.0,0,Transient,150.34,0,0,Check-Out,2019-01-03 -Resort Hotel,0,107,2016,December,51,30,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,243.0,179.0,0,Transient,121.5,0,2,Check-Out,2019-05-04 -Resort Hotel,0,8,2016,March,10,11,2,5,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,108.0,179.0,0,Transient,77.92,0,0,Check-Out,2019-02-01 -City Hotel,0,196,2016,August,44,6,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.76,0,3,Check-Out,2019-05-04 -Resort Hotel,0,90,2016,December,53,8,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,60,Transient-Party,76.9,0,0,Check-Out,2019-10-04 -City Hotel,1,40,2017,February,11,11,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,78.0,0,Transient,44.86,0,0,Canceled,2019-12-04 -City Hotel,0,65,2015,August,37,16,0,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,133.38,0,1,Check-Out,2019-07-04 -City Hotel,1,0,2016,March,11,21,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,8.0,179.0,0,Transient,84.43,0,0,Canceled,2019-02-01 -Resort Hotel,0,19,2016,April,21,24,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,1.0,179.0,0,Transient-Party,89.99,0,0,Check-Out,2019-03-04 -City Hotel,0,37,2016,October,45,10,1,4,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,178.0,0,Transient,127.99,0,0,Check-Out,2019-06-03 -Resort Hotel,0,36,2016,August,38,7,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,115.03,0,1,Check-Out,2019-06-03 -Resort Hotel,0,31,2017,July,27,28,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,169.86,0,1,Check-Out,2020-06-02 -City Hotel,0,36,2015,July,32,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,105.78,0,0,Check-Out,2018-06-02 -City Hotel,1,162,2017,August,34,13,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.65,0,0,Canceled,2020-06-02 -City Hotel,0,152,2016,August,36,15,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient,99.57,0,0,Check-Out,2019-06-03 -City Hotel,0,53,2017,March,16,10,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,81.01,0,2,Check-Out,2020-04-02 -Resort Hotel,0,194,2017,July,26,20,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,223.93,0,1,Check-Out,2020-03-03 -Resort Hotel,0,15,2016,March,18,31,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,Refundable,15.0,222.0,0,Transient,64.52,0,0,Check-Out,2019-02-01 -City Hotel,0,198,2016,October,44,29,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,121.68,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,December,53,15,1,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,95.43,0,1,Check-Out,2019-01-03 -City Hotel,1,84,2015,July,26,20,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.97,0,0,Canceled,2018-05-03 -City Hotel,0,97,2016,April,43,15,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,101.33,0,0,Check-Out,2019-08-04 -City Hotel,1,16,2016,October,43,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient,60.62,0,0,Canceled,2018-11-02 -Resort Hotel,0,12,2017,March,18,29,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-02-01 -City Hotel,1,191,2016,October,43,18,2,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,121.62,0,0,No-Show,2018-07-03 -City Hotel,1,48,2017,February,7,10,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,84.32,0,0,Canceled,2019-09-03 -City Hotel,0,44,2016,July,31,26,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,122.35,0,0,Check-Out,2018-06-02 -City Hotel,1,2,2016,October,45,2,0,1,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.4,0,0,Check-Out,2019-06-03 -City Hotel,1,18,2016,November,44,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,12.0,45.0,0,Transient,74.01,0,0,Canceled,2017-12-03 -City Hotel,1,246,2017,May,26,22,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,136.0,179.0,0,Transient,100.61,0,0,Canceled,2020-02-01 -City Hotel,0,102,2016,February,11,14,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,72.82,0,0,Check-Out,2018-11-02 -City Hotel,1,265,2015,December,51,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.26,0,0,Canceled,2018-03-03 -Resort Hotel,0,276,2016,May,28,22,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,46.19,0,1,Check-Out,2019-05-04 -Resort Hotel,0,13,2015,October,43,21,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,62.7,0,0,Check-Out,2017-12-03 -City Hotel,1,11,2017,May,22,15,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.25,0,0,Canceled,2019-11-03 -City Hotel,1,50,2016,August,36,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,209.79,0,0,Canceled,2019-08-04 -City Hotel,0,17,2017,June,25,21,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,122.71,0,0,Check-Out,2020-04-02 -Resort Hotel,0,42,2016,March,12,10,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,81.81,1,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2017,May,22,28,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,251.0,179.0,0,Transient,176.33,1,1,Check-Out,2020-03-03 -City Hotel,0,94,2015,July,37,21,2,2,2,0.0,0,BB,,Undefined,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,66.87,0,1,Check-Out,2018-06-02 -Resort Hotel,0,110,2016,June,27,6,1,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,165.87,0,0,Check-Out,2019-04-03 -City Hotel,0,234,2016,June,27,18,0,3,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,A,1,No Deposit,14.0,45.0,0,Transient,109.28,0,0,Check-Out,2019-06-03 -Resort Hotel,0,296,2016,May,23,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,60.99,1,1,Check-Out,2019-07-04 -Resort Hotel,0,20,2017,April,24,31,2,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient,61.57,0,0,Canceled,2020-04-02 -Resort Hotel,0,106,2017,August,35,29,3,3,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,118.81,0,3,Canceled,2020-04-02 -City Hotel,0,14,2017,October,35,10,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,161.85,1,0,Check-Out,2019-07-04 -City Hotel,0,116,2016,May,24,17,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,9.0,179.0,0,Transient,132.51,0,3,Check-Out,2019-05-04 -City Hotel,1,44,2017,August,37,23,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,115.58,0,0,Canceled,2020-04-02 -City Hotel,1,47,2017,May,22,17,2,7,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,13.0,245.0,0,Transient,118.4,0,0,Canceled,2020-02-01 -Resort Hotel,1,143,2016,March,17,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,36.97,0,0,Canceled,2019-01-03 -City Hotel,0,82,2016,November,44,9,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,67.31,0,0,Check-Out,2019-05-04 -Resort Hotel,0,198,2016,July,36,25,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,164.5,0,1,Check-Out,2019-06-03 -Resort Hotel,0,264,2015,October,44,16,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,320.0,179.0,0,Transient-Party,42.41,0,2,Check-Out,2018-09-02 -City Hotel,1,109,2017,June,21,13,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,80.0,179.0,0,Transient,122.99,0,0,Canceled,2020-02-01 -City Hotel,0,1,2017,May,30,20,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,F,0,No Deposit,12.0,331.0,0,Transient,1.39,0,0,Check-Out,2020-03-03 -City Hotel,1,245,2016,October,53,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,93.02,0,0,Canceled,2019-11-03 -City Hotel,0,34,2016,December,53,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.24,0,1,Check-Out,2019-11-03 -City Hotel,0,60,2016,April,18,12,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,134.22,0,1,Check-Out,2019-02-01 -City Hotel,1,31,2016,January,8,10,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,60.89,0,0,No-Show,2018-11-02 -City Hotel,1,287,2016,August,24,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,63.7,0,0,Canceled,2017-12-03 -City Hotel,0,39,2015,October,46,10,0,2,1,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,64.14,0,0,Check-Out,2018-09-02 -City Hotel,1,161,2016,June,38,30,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,120.45,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2017,June,31,9,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,99.35,1,0,Check-Out,2020-07-03 -City Hotel,1,389,2016,September,42,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,43,Transient,90.46,0,0,Canceled,2018-08-03 -City Hotel,0,107,2016,May,22,24,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,98.41,0,3,Check-Out,2019-02-01 -City Hotel,0,46,2015,December,52,25,2,5,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Contract,39.66,0,1,Check-Out,2018-11-02 -City Hotel,1,15,2016,August,28,28,1,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.78,0,1,No-Show,2019-03-04 -City Hotel,0,1,2015,January,4,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,74.0,0,Transient,65.36,0,0,Check-Out,2018-11-02 -City Hotel,0,3,2016,June,25,18,0,3,3,0.0,0,BB,AUT,Corporate,Corporate,0,0,0,G,B,0,No Deposit,14.0,179.0,0,Transient,105.08,0,2,Check-Out,2019-03-04 -City Hotel,0,49,2017,April,18,25,0,1,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,129.44,0,0,Check-Out,2020-04-02 -City Hotel,0,15,2015,July,31,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.61,0,0,Check-Out,2018-06-02 -Resort Hotel,1,49,2017,July,33,25,2,5,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,194.85,0,1,Canceled,2020-03-03 -City Hotel,0,17,2016,June,32,15,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.28,0,2,Check-Out,2019-05-04 -City Hotel,1,44,2016,November,45,7,2,0,1,0.0,0,BB,PRT,Online TA,GDS,0,1,0,A,A,0,No Deposit,175.0,179.0,0,Transient,68.67,0,0,Canceled,2018-12-03 -City Hotel,0,2,2016,October,43,9,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.26,0,2,Check-Out,2019-10-04 -Resort Hotel,0,19,2017,August,35,5,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,96.37,0,1,Check-Out,2020-07-03 -City Hotel,1,89,2016,July,27,10,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,L,0,Non Refund,127.0,179.0,0,Transient,80.52,0,0,Canceled,2019-03-04 -Resort Hotel,1,87,2017,April,20,21,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,73.24,0,0,Canceled,2020-02-01 -Resort Hotel,0,159,2016,March,18,31,1,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,H,2,Refundable,331.0,222.0,0,Transient-Party,72.27,0,0,Check-Out,2019-03-04 -City Hotel,0,107,2016,December,49,10,2,0,2,0.0,0,BB,AUT,Complementary,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-09-03 -City Hotel,0,287,2016,July,27,24,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,130.62,0,1,Check-Out,2019-03-04 -City Hotel,1,38,2016,August,17,27,2,2,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,118.54,0,0,Canceled,2019-03-04 -City Hotel,1,46,2017,October,37,19,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,9.0,179.0,0,Transient,77.63,0,0,Canceled,2019-10-04 -City Hotel,1,41,2016,July,35,12,0,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,123.22,0,0,Canceled,2018-12-03 -City Hotel,0,11,2016,January,10,29,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,77.06,0,1,Check-Out,2018-12-03 -City Hotel,0,1,2016,October,44,30,2,1,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,104.51,0,0,Check-Out,2019-08-04 -Resort Hotel,0,99,2017,July,26,15,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,244.0,179.0,0,Transient,201.31,0,1,Check-Out,2020-04-02 -City Hotel,0,20,2017,June,26,24,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,138.59,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2017,May,17,21,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,11.0,179.0,0,Transient,190.04,0,3,Check-Out,2020-03-03 -City Hotel,0,0,2016,February,10,14,1,1,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,64.0,0,Transient,60.17,0,0,Check-Out,2019-01-03 -City Hotel,0,100,2017,June,19,27,1,0,1,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,151.27,0,1,Check-Out,2020-01-04 -Resort Hotel,0,140,2017,March,13,31,0,2,1,0.0,0,BB,BEL,Groups,Corporate,0,0,0,A,A,1,No Deposit,12.0,223.0,0,Transient-Party,59.2,0,0,Check-Out,2019-11-03 -City Hotel,0,33,2016,March,14,5,0,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,95.0,179.0,0,Transient,61.97,0,0,Check-Out,2019-02-01 -City Hotel,1,60,2016,May,37,27,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.83,0,0,Canceled,2019-05-04 -City Hotel,1,18,2017,May,15,27,0,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,7.0,179.0,0,Transient,151.02,0,1,Canceled,2019-11-03 -Resort Hotel,0,244,2015,August,31,5,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,155.0,179.0,0,Contract,46.21,0,2,Check-Out,2018-06-02 -City Hotel,1,184,2016,October,22,27,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,95.92,0,0,Canceled,2019-05-04 -Resort Hotel,0,109,2017,May,22,26,2,1,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,F,0,No Deposit,246.0,179.0,0,Transient,83.0,0,2,Check-Out,2020-03-03 -Resort Hotel,0,158,2016,October,35,9,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,85.67,0,3,Check-Out,2019-05-04 -City Hotel,1,14,2016,November,49,4,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Transient,131.94,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,January,2,14,2,3,2,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,208.0,0,Transient,34.6,0,1,Check-Out,2020-04-02 -City Hotel,1,110,2016,April,17,15,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.0,0,0,Canceled,2018-12-03 -City Hotel,1,47,2017,February,11,27,2,0,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,85.68,0,2,Canceled,2019-10-04 -City Hotel,1,37,2016,May,24,3,0,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,110.34,0,0,No-Show,2019-03-04 -Resort Hotel,0,93,2016,April,21,25,1,0,3,1.0,0,BB,CN,Online TA,Direct,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,December,49,31,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,44.59,1,1,Check-Out,2019-07-04 -Resort Hotel,0,143,2017,May,24,28,0,1,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,190.05,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,September,44,20,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,93.62,0,1,Check-Out,2019-08-04 -City Hotel,1,112,2015,July,38,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,1,A,A,0,Non Refund,1.0,179.0,0,Transient,88.19,0,0,Canceled,2018-01-03 -City Hotel,1,100,2017,August,38,10,2,4,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.36,0,1,Canceled,2020-06-02 -Resort Hotel,0,8,2015,January,5,27,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,0,No Deposit,17.0,179.0,0,Transient,81.18,0,0,Check-Out,2018-09-02 -Resort Hotel,0,40,2016,December,51,5,0,1,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,E,0,No Deposit,302.0,179.0,0,Transient-Party,58.65,0,0,Check-Out,2019-10-04 -Resort Hotel,0,8,2016,June,27,29,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,107.05,0,0,Check-Out,2019-03-04 -City Hotel,1,10,2017,January,3,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,242.0,179.0,0,Transient,73.58,0,0,No-Show,2019-12-04 -City Hotel,0,42,2017,July,26,18,2,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,153.89,0,0,Check-Out,2020-04-02 -City Hotel,1,155,2016,September,44,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.4,0,1,Canceled,2019-10-04 -City Hotel,0,9,2016,August,37,15,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,173.62,0,2,Check-Out,2018-12-03 -City Hotel,0,46,2015,December,51,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,59.8,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,May,21,24,0,1,1,0.0,0,BB,,Aviation,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,137.09,0,0,Check-Out,2020-02-01 -Resort Hotel,0,249,2016,July,32,24,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2017,March,10,21,2,5,1,0.0,0,BB,ITA,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,259.0,0,Transient,75.02,0,0,Check-Out,2020-05-03 -City Hotel,0,18,2015,December,53,6,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.79,0,1,Check-Out,2019-09-03 -Resort Hotel,1,164,2016,August,37,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,166.32,0,0,Canceled,2017-11-02 -City Hotel,0,141,2016,June,27,10,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,29.0,179.0,0,Transient-Party,121.99,0,0,Check-Out,2019-07-04 -City Hotel,0,30,2017,February,10,17,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,57.7,0,2,Check-Out,2019-11-03 -Resort Hotel,0,302,2015,August,37,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Contract,61.96,0,2,Check-Out,2018-08-03 -Resort Hotel,0,247,2015,November,42,2,0,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,141.0,179.0,0,Contract,59.62,0,0,Check-Out,2018-09-02 -Resort Hotel,0,166,2017,July,32,12,3,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.67,0,0,Check-Out,2020-06-02 -Resort Hotel,1,358,2017,August,36,21,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient-Party,77.5,0,0,Canceled,2020-06-02 -City Hotel,1,98,2017,May,21,20,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.16,0,1,Canceled,2020-01-04 -Resort Hotel,0,50,2016,October,45,16,1,3,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,90.35,0,0,Check-Out,2019-08-04 -City Hotel,0,53,2015,July,31,5,0,2,2,0.0,0,BB,FRA,Online TA,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Contract,87.85,0,1,Check-Out,2018-07-03 -City Hotel,1,1,2017,February,9,24,2,1,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,10.0,179.0,0,Transient,97.03,0,0,Check-Out,2019-12-04 -City Hotel,1,28,2016,April,16,20,0,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,114.19,0,0,Canceled,2018-12-03 -Resort Hotel,0,38,2016,March,16,16,0,3,1,0.0,0,BB,GBR,Corporate,Direct,0,0,0,A,B,1,No Deposit,15.0,79.0,0,Transient-Party,79.7,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2017,August,44,13,0,3,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,200.28,0,3,Check-Out,2019-12-04 -City Hotel,1,444,2016,September,38,26,0,2,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,60.41,0,0,Canceled,2018-08-03 -Resort Hotel,1,161,2017,June,34,26,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,126.63,0,0,Canceled,2019-11-03 -Resort Hotel,0,99,2016,February,9,2,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,No Deposit,378.0,224.0,0,Transient-Party,36.3,0,0,Check-Out,2019-04-03 -City Hotel,0,29,2016,October,43,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.61,0,1,Check-Out,2019-06-03 -City Hotel,1,243,2017,June,27,15,1,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.12,0,0,Canceled,2019-11-03 -Resort Hotel,0,259,2017,June,22,3,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,A,C,2,No Deposit,378.0,179.0,0,Transient,129.89,0,1,Check-Out,2020-03-03 -City Hotel,1,44,2016,March,20,28,0,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,110.03,0,0,Canceled,2019-01-03 -Resort Hotel,0,28,2017,July,15,15,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,I,0,No Deposit,11.0,179.0,0,Transient,92.36,1,0,Check-Out,2020-03-03 -City Hotel,0,35,2016,April,20,21,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,104.32,0,0,Check-Out,2019-02-01 -City Hotel,0,306,2016,October,29,27,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,113.54,1,1,Check-Out,2019-06-03 -City Hotel,1,1,2017,August,34,8,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,267.0,0,Transient,2.42,0,0,Canceled,2019-09-03 -Resort Hotel,0,2,2016,November,48,2,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,70.34,0,0,Check-Out,2019-11-03 -City Hotel,1,12,2017,June,12,21,2,1,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,127.62,0,0,Canceled,2019-12-04 -City Hotel,0,18,2017,May,22,29,0,1,1,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,170.34,0,0,Check-Out,2020-03-03 -Resort Hotel,0,15,2016,December,51,6,0,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,171.0,179.0,0,Transient-Party,84.26,0,0,Check-Out,2018-12-03 -City Hotel,0,54,2016,May,23,27,1,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.12,0,2,Canceled,2019-03-04 -Resort Hotel,0,13,2016,March,8,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient-Party,61.46,0,0,Check-Out,2018-10-03 -City Hotel,1,37,2016,March,50,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,Non Refund,15.0,45.0,0,Transient,46.62,0,0,Canceled,2019-10-04 -City Hotel,1,101,2017,August,36,24,2,5,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -City Hotel,1,169,2016,October,42,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.07,0,0,Canceled,2019-02-01 -Resort Hotel,0,39,2017,August,39,13,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,236.23,0,0,Check-Out,2020-05-03 -Resort Hotel,1,44,2016,March,15,16,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,75.12,0,1,Canceled,2019-01-03 -Resort Hotel,0,150,2016,September,53,29,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-08-04 -Resort Hotel,1,15,2017,February,12,27,0,1,3,1.0,0,BB,PRT,Direct,Direct,1,1,0,E,A,1,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -City Hotel,1,53,2017,June,30,31,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,127.81,0,0,Canceled,2020-04-02 -City Hotel,0,12,2017,April,18,25,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,77.45,0,0,Check-Out,2020-02-01 -City Hotel,0,51,2016,June,37,16,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,149.81,0,0,Check-Out,2019-09-03 -Resort Hotel,0,49,2016,December,33,27,0,2,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,70.56,1,1,Check-Out,2019-07-04 -City Hotel,1,168,2016,April,22,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,59,Transient,80.91,0,0,Canceled,2019-02-01 -Resort Hotel,1,0,2017,January,2,21,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,1,1,0,A,A,0,No Deposit,13.0,81.0,0,Transient,32.84,1,0,Canceled,2019-12-04 -City Hotel,1,142,2015,July,32,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,116.39,0,0,Canceled,2018-05-03 -City Hotel,1,0,2017,February,10,8,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,9.0,226.0,0,Transient,57.97,0,0,Canceled,2019-10-04 -Resort Hotel,1,173,2017,August,37,16,0,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,158.2,0,1,Canceled,2020-07-03 -Resort Hotel,0,9,2017,March,9,19,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,250.0,179.0,0,Transient,103.95,0,1,Check-Out,2019-03-04 -Resort Hotel,0,188,2017,June,24,15,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,240.57,1,1,Check-Out,2020-07-03 -Resort Hotel,0,2,2017,January,4,27,0,3,2,0.0,0,BB,CN,Online TA,GDS,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,38.93,0,1,Check-Out,2019-12-04 -Resort Hotel,0,19,2016,May,22,27,2,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,76.41,0,0,Check-Out,2019-03-04 -City Hotel,0,13,2017,June,18,4,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.78,0,1,Check-Out,2020-07-03 -City Hotel,0,1,2016,December,50,10,1,1,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.74,0,2,Check-Out,2018-12-03 -City Hotel,1,160,2017,July,28,12,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,153.0,0,0,Canceled,2020-06-02 -City Hotel,1,15,2016,February,4,24,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.37,0,0,Canceled,2018-11-02 -Resort Hotel,0,40,2017,April,16,9,1,3,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,96.65,0,3,Check-Out,2020-03-03 -Resort Hotel,0,296,2016,August,44,2,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,L,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-05-04 -Resort Hotel,1,1,2016,September,36,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,134.99,0,0,Canceled,2019-05-04 -City Hotel,1,404,2015,June,37,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,112.56,0,0,Canceled,2019-06-03 -City Hotel,1,20,2016,September,44,6,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.92,0,0,Canceled,2019-02-01 -Resort Hotel,0,87,2016,March,13,6,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient-Party,75.06,0,0,Check-Out,2019-10-04 -City Hotel,1,0,2017,May,20,14,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,139.26,0,0,Canceled,2020-03-03 -City Hotel,1,21,2016,October,43,17,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,75.98,0,0,Canceled,2019-02-01 -Resort Hotel,1,2,2016,August,35,5,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,103.1,0,0,Canceled,2018-08-03 -Resort Hotel,0,232,2016,August,35,20,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient-Party,98.22,0,2,Check-Out,2019-07-04 -City Hotel,1,14,2016,October,45,19,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,179.11,0,0,Canceled,2019-09-03 -City Hotel,0,13,2016,October,45,29,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.41,0,0,Check-Out,2019-11-03 -City Hotel,0,40,2017,May,20,5,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,126.08,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,December,50,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,230.0,0,Transient-Party,102.29,1,0,Check-Out,2019-12-04 -Resort Hotel,0,83,2015,July,36,31,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,174.6,1,1,Check-Out,2018-05-03 -Resort Hotel,0,1,2017,May,19,20,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,293.0,179.0,0,Transient-Party,1.95,0,0,Check-Out,2020-04-02 -City Hotel,0,244,2017,December,53,30,2,5,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.63,0,3,Check-Out,2019-10-04 -City Hotel,1,142,2016,May,15,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,38.0,179.0,40,Transient,120.77,0,0,Canceled,2018-11-02 -City Hotel,1,164,2016,December,53,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,68.48,0,0,Canceled,2019-10-04 -Resort Hotel,0,59,2016,March,10,21,2,0,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,99.0,222.0,0,Transient-Party,48.22,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,February,10,17,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,112.38,0,0,Check-Out,2020-01-04 -City Hotel,1,0,2015,July,38,2,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,No Deposit,15.0,179.0,0,Transient,190.25,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,December,51,9,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,18.0,248.0,0,Transient,35.05,1,1,Check-Out,2019-11-03 -City Hotel,0,0,2016,October,43,12,0,1,2,1.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,F,0,No Deposit,15.0,180.0,0,Transient,110.81,0,0,Check-Out,2019-09-03 -City Hotel,1,289,2017,May,21,15,2,5,2,0.0,0,HB,USA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,119.57,0,0,Canceled,2020-04-02 -City Hotel,1,102,2017,May,22,24,1,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.05,0,0,Canceled,2020-02-01 -Resort Hotel,1,63,2015,August,35,19,2,7,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,E,0,Non Refund,196.0,179.0,0,Transient,82.16,0,0,Canceled,2018-07-03 -Resort Hotel,1,312,2016,December,51,2,1,4,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,H,0,Non Refund,3.0,179.0,0,Transient-Party,61.39,0,0,Canceled,2019-10-04 -City Hotel,0,2,2016,June,27,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,117.52,0,1,Check-Out,2019-02-01 -Resort Hotel,0,54,2016,July,9,30,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,75,Transient,80.32,0,0,Check-Out,2019-02-01 -Resort Hotel,0,99,2016,August,35,5,0,1,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,149.39,0,3,Check-Out,2020-06-02 -City Hotel,1,232,2015,October,44,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.27,0,0,Canceled,2018-09-02 -Resort Hotel,0,1,2017,March,11,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,223.0,0,Transient-Party,33.61,0,0,Check-Out,2020-04-02 -Resort Hotel,1,16,2017,July,32,7,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,168.0,179.0,0,Transient,98.02,0,0,Canceled,2020-04-02 -City Hotel,1,325,2015,August,35,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.82,0,0,Canceled,2018-05-03 -Resort Hotel,1,173,2017,January,32,28,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,65.34,0,0,Canceled,2019-11-03 -City Hotel,0,6,2015,December,51,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,29.0,179.0,0,Group,76.19,0,1,Check-Out,2018-08-03 -City Hotel,0,48,2017,May,22,31,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,193.31,1,2,Check-Out,2020-04-02 -City Hotel,1,444,2016,May,29,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,135.46,0,0,Canceled,2019-03-04 -Resort Hotel,1,40,2017,February,7,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,36.0,331.0,0,Transient,36.1,0,2,Check-Out,2018-12-03 -City Hotel,1,419,2016,June,26,1,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.43,0,2,Canceled,2020-06-02 -City Hotel,1,82,2016,December,53,2,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,198.02,0,0,Canceled,2019-08-04 -City Hotel,0,0,2016,March,4,12,2,1,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,159.16,0,1,Check-Out,2019-11-03 -City Hotel,1,20,2016,August,40,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,167.0,179.0,0,Transient,116.66,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2015,August,40,4,0,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,0.92,1,0,Check-Out,2019-08-04 -City Hotel,0,53,2016,June,22,9,0,1,2,0.0,0,FB,GBR,Groups,Direct,0,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient-Party,76.56,0,0,Check-Out,2019-05-04 -Resort Hotel,0,23,2016,July,36,25,2,1,2,2.0,0,BB,POL,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-06-03 -Resort Hotel,0,147,2017,May,22,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,130.52,0,0,Check-Out,2019-12-04 -City Hotel,1,0,2016,March,17,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,61.97,0,0,No-Show,2019-02-01 -Resort Hotel,1,78,2016,July,33,13,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,147.77,0,0,Canceled,2019-08-04 -City Hotel,0,48,2015,December,52,10,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,75.28,0,0,Check-Out,2018-12-03 -Resort Hotel,0,95,2017,July,34,15,0,4,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,191.89,1,1,Check-Out,2020-06-02 -City Hotel,0,37,2016,October,44,13,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,246.0,0,Transient-Party,58.94,0,0,Check-Out,2019-10-04 -Resort Hotel,0,97,2016,June,43,21,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,68.74,0,0,Check-Out,2019-06-03 -City Hotel,0,146,2016,June,43,23,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,96.25,0,0,Check-Out,2019-02-01 -Resort Hotel,0,25,2016,April,16,30,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,38.92,1,0,Check-Out,2019-03-04 -Resort Hotel,0,12,2016,March,11,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,16.0,84.0,0,Transient,61.48,0,0,Check-Out,2019-03-04 -City Hotel,0,21,2015,July,28,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,C,1,No Deposit,16.0,48.0,0,Transient-Party,89.15,0,0,Check-Out,2018-06-02 -Resort Hotel,0,15,2016,November,17,30,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,61.87,0,0,Check-Out,2019-06-03 -City Hotel,0,22,2017,July,36,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,120.03,0,2,Check-Out,2020-06-02 -City Hotel,1,106,2016,June,24,13,2,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,102.38,0,2,Canceled,2019-03-04 -Resort Hotel,0,146,2016,April,21,24,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,306.0,179.0,0,Transient-Party,61.06,1,2,Check-Out,2019-03-04 -City Hotel,1,207,2016,March,46,31,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,63,Transient,118.82,0,0,Canceled,2018-12-03 -Resort Hotel,0,106,2016,November,51,23,1,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,42.0,179.0,0,Contract,61.72,0,0,Check-Out,2019-08-04 -City Hotel,0,193,2017,August,38,14,2,0,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.82,0,0,Check-Out,2020-07-03 -City Hotel,1,20,2016,June,27,2,0,1,1,0.0,0,BB,ISR,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,123.55,0,0,Canceled,2019-02-01 -City Hotel,0,10,2016,June,45,23,1,0,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,63.83,0,0,Check-Out,2019-06-03 -Resort Hotel,0,88,2016,December,49,2,4,7,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,312.0,179.0,75,Transient-Party,109.09,0,1,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,March,11,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,24.06,0,0,Check-Out,2018-11-02 -City Hotel,1,268,2015,October,44,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,60.88,0,1,Canceled,2018-09-02 -City Hotel,1,421,2016,September,42,8,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,98.4,0,0,Canceled,2018-12-03 -City Hotel,0,250,2017,April,22,17,2,2,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,20,Transient-Party,69.66,0,0,Check-Out,2020-02-01 -City Hotel,0,85,2017,June,26,17,0,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,167.94,0,1,Check-Out,2020-05-03 -Resort Hotel,1,271,2016,July,33,13,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,114.48,0,0,Canceled,2019-07-04 -City Hotel,0,98,2017,August,21,14,0,2,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,239.41,1,2,Check-Out,2020-03-03 -City Hotel,0,48,2017,June,26,2,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,107,2017,April,19,15,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,119.54,0,0,Check-Out,2020-02-01 -City Hotel,0,20,2017,August,14,21,1,1,2,2.0,0,BB,PRT,Complementary,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,220.67,0,0,Check-Out,2020-06-02 -Resort Hotel,1,54,2017,July,32,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,141.31,0,0,Canceled,2020-06-02 -City Hotel,1,2,2017,February,8,19,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.02,0,0,Canceled,2019-11-03 -City Hotel,0,34,2017,February,8,25,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.74,0,0,Check-Out,2019-01-03 -City Hotel,1,301,2016,September,42,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,112.2,0,0,Canceled,2019-08-04 -City Hotel,1,8,2016,October,50,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.74,0,0,Canceled,2019-11-03 -City Hotel,0,102,2017,March,19,24,2,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,176.53,0,1,Check-Out,2019-09-03 -City Hotel,0,262,2016,May,21,8,2,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,178.0,179.0,63,Transient-Party,82.59,0,0,Check-Out,2019-05-04 -Resort Hotel,0,7,2016,July,44,22,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,79.0,179.0,0,Transient,67.9,0,0,No-Show,2019-05-04 -City Hotel,0,205,2017,April,22,29,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,101.54,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,February,9,6,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,D,0,No Deposit,15.0,331.0,0,Transient,35.83,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,October,43,15,1,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,233.0,0,Transient,68.46,0,0,Check-Out,2018-09-02 -Resort Hotel,1,40,2015,July,33,25,2,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,213.48,0,0,Canceled,2019-08-04 -City Hotel,0,12,2017,May,22,10,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.15,0,0,Check-Out,2020-04-02 -Resort Hotel,1,47,2017,July,10,9,0,3,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,132.43,0,0,Canceled,2020-05-03 -City Hotel,0,85,2017,April,9,21,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,72.92,0,1,Check-Out,2020-03-03 -Resort Hotel,1,285,2017,June,29,25,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,156.51,0,0,Canceled,2020-05-03 -City Hotel,0,0,2016,May,23,9,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,177.59,0,2,Check-Out,2019-06-03 -City Hotel,0,0,2016,August,32,15,0,1,1,0.0,0,SC,PRT,Complementary,TA/TO,1,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-05-04 -City Hotel,1,0,2016,January,3,30,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,58.45,0,0,Canceled,2018-12-03 -City Hotel,0,166,2016,September,32,22,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,172.46,0,0,Check-Out,2019-04-03 -City Hotel,0,76,2017,May,26,19,2,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,157.38,0,1,Check-Out,2020-04-02 -Resort Hotel,0,14,2017,March,17,30,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,272.0,179.0,0,Contract,0.0,0,0,Check-Out,2020-04-02 -City Hotel,1,161,2016,August,38,28,0,2,2,1.0,0,HB,PRT,Direct,Direct,0,1,0,F,A,0,No Deposit,12.0,179.0,0,Transient,190.73,0,2,Canceled,2018-05-03 -City Hotel,0,36,2016,November,45,15,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,209.67,0,1,Canceled,2019-12-04 -City Hotel,0,2,2017,June,24,17,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.72,0,1,Check-Out,2020-06-02 -Resort Hotel,0,294,2015,June,33,24,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,93.0,179.0,0,Contract,79.4,0,0,Check-Out,2017-11-02 -Resort Hotel,0,96,2016,March,20,25,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,62.28,0,1,Check-Out,2019-02-01 -Resort Hotel,0,14,2016,August,23,28,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,250.0,179.0,0,Transient,127.01,0,0,Check-Out,2020-06-02 -Resort Hotel,0,155,2016,August,35,7,3,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient-Party,252.0,1,2,Check-Out,2020-06-02 -City Hotel,1,118,2015,September,45,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.03,0,0,Canceled,2017-11-02 -City Hotel,1,21,2017,March,14,19,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Transient,63.02,0,1,Canceled,2019-02-01 -Resort Hotel,0,116,2016,July,50,9,4,5,2,0.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,85.0,179.0,0,Transient,103.34,0,0,Check-Out,2019-03-04 -City Hotel,1,90,2017,March,11,30,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,226.0,179.0,0,Transient,60.96,0,0,Canceled,2019-11-03 -City Hotel,1,156,2017,May,23,31,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,11.0,223.0,41,Transient,64.78,0,0,Canceled,2019-10-04 -Resort Hotel,0,12,2016,June,27,28,2,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,181.0,179.0,0,Transient,61.33,0,0,Check-Out,2019-04-03 -City Hotel,1,101,2017,March,10,6,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.92,0,1,Canceled,2020-02-01 -Resort Hotel,0,130,2016,May,19,24,4,10,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,184.0,179.0,75,Transient-Party,89.4,0,0,Check-Out,2019-04-03 -City Hotel,1,23,2016,March,16,15,2,1,2,0.0,0,BB,AUT,Direct,TA/TO,0,0,0,D,F,0,Non Refund,11.0,179.0,0,Transient,96.8,0,0,Canceled,2019-02-01 -City Hotel,1,10,2016,August,43,15,1,2,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,107.31,0,1,Canceled,2019-06-03 -Resort Hotel,1,112,2016,December,50,30,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient,45.92,0,0,Canceled,2019-11-03 -Resort Hotel,0,48,2015,December,53,16,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,61.99,0,0,Check-Out,2018-11-02 -City Hotel,1,248,2016,June,21,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.25,0,0,Canceled,2019-03-04 -Resort Hotel,1,35,2015,September,43,18,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,34.55,0,0,Canceled,2018-03-03 -City Hotel,0,137,2016,December,53,15,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,76.32,0,1,Check-Out,2018-12-03 -Resort Hotel,0,2,2016,March,10,28,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,1,No Deposit,14.0,179.0,0,Transient,41.9,1,0,Check-Out,2019-10-04 -City Hotel,0,9,2017,May,8,13,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.92,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2016,March,17,28,2,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,61.36,0,0,Check-Out,2019-03-04 -City Hotel,0,187,2016,December,50,24,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,12.0,179.0,0,Transient,67.92,0,1,Check-Out,2019-11-03 -City Hotel,1,409,2017,February,9,13,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.33,0,0,Canceled,2020-04-02 -Resort Hotel,0,12,2017,March,21,10,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,120.14,0,2,Check-Out,2020-03-03 -Resort Hotel,1,252,2017,May,21,4,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,101.47,1,0,Canceled,2020-03-03 -Resort Hotel,0,234,2016,July,25,24,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Transient,116.09,0,2,Check-Out,2019-05-04 -Resort Hotel,0,4,2017,January,2,14,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,82.0,0,Transient,60.91,0,0,Check-Out,2019-09-03 -City Hotel,1,1,2017,February,9,18,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,85.06,0,0,Canceled,2020-02-01 -City Hotel,0,144,2015,October,30,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Contract,35.51,0,0,Check-Out,2017-11-02 -Resort Hotel,0,0,2015,October,42,4,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,38.19,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,April,17,6,2,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,1,No Deposit,16.0,189.0,0,Transient,46.91,0,0,Check-Out,2019-03-04 -Resort Hotel,0,47,2016,September,43,7,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,250.0,179.0,0,Transient,88.15,0,0,Check-Out,2019-07-04 -City Hotel,1,255,2016,June,28,12,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,66.17,0,2,No-Show,2019-05-04 -Resort Hotel,0,113,2016,February,10,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,82.01,0,0,Check-Out,2019-02-01 -Resort Hotel,1,15,2017,February,10,6,2,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,16.0,271.0,0,Transient-Party,61.92,0,0,Canceled,2019-10-04 -Resort Hotel,1,4,2015,October,15,20,1,3,2,0.0,0,BB,AUT,Direct,Corporate,1,1,1,E,I,1,No Deposit,10.0,179.0,75,Transient-Party,21.71,1,3,Canceled,2018-11-02 -Resort Hotel,1,94,2015,December,33,9,0,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,3,Non Refund,2.0,179.0,0,Transient-Party,50.46,0,0,Check-Out,2018-06-02 -City Hotel,0,98,2016,August,38,15,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.82,0,2,Check-Out,2019-06-03 -City Hotel,1,88,2016,June,21,15,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,98.92,0,0,Canceled,2019-03-04 -City Hotel,0,4,2017,February,11,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,152.0,179.0,0,Transient-Party,76.01,0,0,Check-Out,2020-03-03 -City Hotel,0,37,2015,July,33,24,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,234.0,179.0,0,Transient,104.37,0,2,Check-Out,2019-06-03 -Resort Hotel,0,90,2017,February,20,26,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,80.85,0,0,Check-Out,2019-02-01 -City Hotel,1,251,2016,July,30,28,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,120.5,0,0,Canceled,2019-01-03 -City Hotel,0,42,2016,March,17,19,1,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.02,1,2,Check-Out,2019-03-04 -Resort Hotel,0,27,2015,December,45,31,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,35.13,0,0,Check-Out,2018-12-03 -Resort Hotel,0,18,2017,June,25,7,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,1,0,1,D,E,0,No Deposit,242.0,179.0,0,Group,143.41,1,1,Check-Out,2019-11-03 -City Hotel,0,6,2017,March,11,6,0,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,92.65,0,1,Check-Out,2020-02-01 -City Hotel,0,23,2015,November,43,21,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,95.36,0,1,Check-Out,2019-07-04 -Resort Hotel,0,2,2015,September,43,15,0,5,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,F,I,1,No Deposit,250.0,179.0,0,Transient,1.59,0,2,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,January,12,24,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,E,0,No Deposit,35.0,79.0,0,Group,59.82,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,March,10,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,32.77,0,0,Check-Out,2019-01-03 -Resort Hotel,0,96,2017,June,27,15,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,239.0,179.0,0,Transient,97.29,0,3,Check-Out,2020-04-02 -City Hotel,1,48,2017,April,17,25,1,1,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.37,0,2,Canceled,2019-10-04 -City Hotel,0,66,2016,June,19,4,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.97,0,1,Check-Out,2019-02-01 -City Hotel,0,237,2016,May,23,25,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,26.0,179.0,0,Contract,115.3,0,1,Check-Out,2019-03-04 -City Hotel,1,39,2015,October,44,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,91.0,179.0,0,Transient,61.87,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,February,11,13,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.41,0,1,Check-Out,2020-06-02 -City Hotel,0,1,2017,August,9,5,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,112.73,0,0,Check-Out,2020-06-02 -City Hotel,0,148,2017,June,28,22,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,97.59,0,0,Check-Out,2020-07-03 -City Hotel,1,364,2016,February,44,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,21,Transient,60.99,0,0,Canceled,2019-11-03 -City Hotel,0,34,2015,September,37,28,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.59,0,3,Check-Out,2018-08-03 -Resort Hotel,0,216,2017,May,22,24,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,170.0,179.0,0,Transient,69.2,0,0,Check-Out,2019-06-03 -City Hotel,1,345,2017,December,50,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Group,72.87,1,0,Canceled,2019-09-03 -Resort Hotel,0,16,2015,August,37,21,0,1,2,1.0,0,BB,ESP,Complementary,Direct,1,0,0,F,I,1,No Deposit,290.0,179.0,0,Transient,3.86,1,3,Check-Out,2018-08-03 -City Hotel,1,428,2015,July,33,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.4,0,0,Canceled,2017-11-02 -Resort Hotel,0,27,2017,May,38,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,119.95,0,1,Check-Out,2020-03-03 -Resort Hotel,0,13,2015,December,50,12,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.95,1,2,Check-Out,2018-09-02 -City Hotel,0,94,2017,April,18,9,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,93.08,0,0,Check-Out,2020-03-03 -City Hotel,0,13,2015,September,40,11,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,97.99,0,1,Check-Out,2018-08-03 -City Hotel,0,9,2016,August,37,12,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.35,0,0,Check-Out,2019-07-04 -City Hotel,0,241,2017,July,30,6,2,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,107.01,0,1,Check-Out,2020-06-02 -Resort Hotel,0,301,2017,August,18,31,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,90.0,179.0,0,Transient-Party,202.74,0,1,Check-Out,2020-06-02 -Resort Hotel,0,1,2017,February,8,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,102.0,0,Transient-Party,25.93,0,0,Check-Out,2020-03-03 -City Hotel,0,11,2017,July,36,12,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.36,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2017,February,8,5,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.99,0,0,Check-Out,2020-01-04 -Resort Hotel,0,38,2016,December,44,24,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,243.0,179.0,0,Transient,125.64,1,0,Check-Out,2019-12-04 -City Hotel,0,134,2016,June,25,29,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,71.79,0,0,Check-Out,2019-04-03 -City Hotel,1,269,2017,May,22,28,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,204.0,179.0,0,Transient,140.69,0,0,Canceled,2020-02-01 -City Hotel,0,15,2016,June,45,20,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,93.05,0,0,Check-Out,2019-04-03 -City Hotel,0,2,2017,June,26,18,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,133.08,0,0,Check-Out,2020-02-01 -Resort Hotel,0,19,2016,August,37,13,2,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,190.0,179.0,0,Transient-Party,204.53,0,0,Check-Out,2019-10-04 -Resort Hotel,0,0,2016,March,11,31,1,3,2,0.0,0,BB,IRL,Corporate,Corporate,1,0,1,D,D,0,No Deposit,13.0,222.0,0,Transient-Party,40.26,1,0,Check-Out,2019-11-03 -Resort Hotel,0,152,2016,March,11,29,1,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,65.41,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,September,44,27,0,3,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Group,65.95,0,0,Check-Out,2019-10-04 -City Hotel,0,9,2017,May,24,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,102.98,0,0,Check-Out,2020-06-02 -Resort Hotel,0,47,2017,May,24,23,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,345.0,179.0,75,Transient,129.46,0,1,Check-Out,2019-12-04 -City Hotel,0,4,2017,August,35,14,0,1,1,0.0,0,BB,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,3.42,0,0,Check-Out,2020-06-02 -Resort Hotel,0,15,2016,March,11,10,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,39.37,0,0,Check-Out,2019-04-03 -City Hotel,0,156,2017,June,26,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-07-03 -City Hotel,0,1,2015,August,42,24,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,130.84,0,2,Check-Out,2018-06-02 -Resort Hotel,0,208,2017,July,32,27,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,0.0,0,3,Check-Out,2020-07-03 -Resort Hotel,0,0,2017,June,21,10,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,186.28,0,2,Check-Out,2020-02-01 -City Hotel,0,2,2017,June,29,1,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,C,0,No Deposit,50.0,45.0,0,Transient-Party,63.7,0,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,December,53,28,1,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,35.71,0,1,Check-Out,2018-12-03 -Resort Hotel,0,3,2016,October,44,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,158.3,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,August,33,6,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,88.35,0,1,Check-Out,2018-06-02 -Resort Hotel,1,295,2015,December,44,12,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,115.04,0,0,Canceled,2019-07-04 -City Hotel,1,281,2016,September,35,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,111.43,0,0,Canceled,2018-08-03 -City Hotel,0,159,2016,December,50,4,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,83.28,0,1,Check-Out,2019-12-04 -City Hotel,0,196,2016,October,23,12,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.7,0,3,Check-Out,2019-06-03 -City Hotel,1,47,2017,July,36,13,2,5,3,0.0,0,BB,ESP,Direct,Corporate,0,0,0,D,C,0,No Deposit,12.0,179.0,0,Transient-Party,252.0,0,1,No-Show,2020-07-03 -City Hotel,1,317,2017,July,35,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,159.53,0,0,Canceled,2018-09-02 -Resort Hotel,0,153,2016,November,49,19,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,34.03,0,0,Check-Out,2019-08-04 -Resort Hotel,1,13,2015,August,36,16,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,42.55,0,0,Canceled,2018-08-03 -City Hotel,1,149,2017,March,9,26,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,178.0,179.0,75,Transient,73.0,0,0,Canceled,2019-01-03 -City Hotel,0,50,2017,July,30,4,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.84,0,2,Check-Out,2020-06-02 -City Hotel,0,31,2016,April,15,6,1,0,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,83.0,179.0,0,Transient,151.31,0,0,Check-Out,2020-03-03 -Resort Hotel,0,51,2017,April,10,18,2,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,251.0,179.0,0,Transient,96.45,0,0,Check-Out,2020-02-01 -City Hotel,0,3,2016,May,22,15,2,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,66.79,0,0,Check-Out,2019-02-01 -City Hotel,1,255,2017,April,24,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,111.41,0,0,Canceled,2020-04-02 -City Hotel,0,50,2016,October,41,8,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,166.6,0,2,Canceled,2019-06-03 -City Hotel,1,275,2017,May,21,5,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,9.0,179.0,0,Transient,79.16,0,0,Canceled,2020-01-04 -Resort Hotel,0,1,2017,May,16,15,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,118.62,1,0,Check-Out,2020-03-03 -City Hotel,0,155,2017,March,18,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,E,I,0,No Deposit,175.0,179.0,75,Group,59.55,0,3,Check-Out,2020-03-03 -City Hotel,1,238,2016,September,44,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,63,Transient,65.67,0,0,Canceled,2019-08-04 -Resort Hotel,0,152,2017,June,20,28,2,10,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.11,0,2,Check-Out,2020-03-03 -Resort Hotel,0,275,2016,June,23,20,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,E,0,Non Refund,184.0,179.0,0,Transient,71.2,0,0,Check-Out,2020-03-03 -Resort Hotel,0,241,2016,December,53,23,2,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,82.71,0,1,Check-Out,2019-05-04 -City Hotel,1,0,2015,October,45,26,1,1,2,0.0,0,BB,ITA,Undefined,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient,57.51,0,1,Canceled,2019-08-04 -Resort Hotel,0,13,2017,May,22,20,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,F,0,No Deposit,15.0,179.0,0,Transient,126.37,0,2,Check-Out,2020-04-02 -City Hotel,0,98,2015,July,37,21,0,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.48,0,0,Check-Out,2017-11-02 -Resort Hotel,0,2,2016,October,43,13,2,1,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,41.77,0,0,Check-Out,2019-09-03 -Resort Hotel,1,184,2017,January,9,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,41.0,179.0,0,Transient,63.69,0,0,Canceled,2019-09-03 -City Hotel,1,66,2016,May,23,29,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.35,0,0,Canceled,2019-02-01 -Resort Hotel,1,100,2016,May,20,5,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,39.44,0,0,No-Show,2019-01-03 -City Hotel,1,76,2017,May,20,21,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.03,0,2,Canceled,2020-02-01 -Resort Hotel,0,0,2016,October,43,17,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,46.54,0,0,Check-Out,2019-06-03 -Resort Hotel,1,33,2016,August,34,9,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Canceled,2019-01-03 -City Hotel,0,30,2016,March,17,30,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.98,0,1,Check-Out,2019-03-04 -Resort Hotel,1,3,2016,August,44,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,34.18,0,0,Canceled,2019-08-04 -City Hotel,0,0,2016,February,10,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,59.0,0,Transient,59.19,0,0,Check-Out,2018-11-02 -City Hotel,1,75,2016,February,12,27,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,92.15,0,0,Canceled,2018-10-03 -Resort Hotel,0,40,2017,June,26,24,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,84.57,1,2,Check-Out,2019-06-03 -Resort Hotel,0,108,2017,July,34,12,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,115,2016,February,12,22,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient-Party,61.82,0,0,Canceled,2018-12-03 -City Hotel,1,392,2017,July,29,13,2,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Contract,158.87,0,0,Canceled,2020-04-02 -City Hotel,1,408,2016,September,28,28,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,121.41,0,0,Canceled,2017-11-02 -Resort Hotel,0,0,2016,January,9,17,0,2,1,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,A,0,No Deposit,15.0,179.0,0,Group,59.46,0,3,Check-Out,2018-10-03 -Resort Hotel,0,13,2016,October,42,20,4,4,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,120.85,0,0,Check-Out,2019-05-04 -City Hotel,0,36,2017,March,11,24,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,102.78,0,0,Check-Out,2019-11-03 -City Hotel,1,279,2016,November,42,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,68.1,0,0,Canceled,2019-02-01 -City Hotel,1,148,2016,June,37,20,0,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,19.0,179.0,22,Transient,124.19,0,0,Canceled,2018-07-03 -Resort Hotel,0,17,2015,October,44,25,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,328.0,236.0,0,Transient-Party,75.38,0,0,Check-Out,2018-09-02 -City Hotel,0,31,2016,March,9,3,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.08,0,0,Check-Out,2018-11-02 -City Hotel,1,291,2015,October,47,28,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,7.0,179.0,0,Transient,79.13,0,1,Canceled,2018-01-03 -City Hotel,1,237,2016,February,10,21,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,66.16,0,1,Canceled,2018-11-02 -Resort Hotel,0,3,2016,February,9,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,90.0,0,Transient-Party,40.19,0,0,Check-Out,2018-11-02 -City Hotel,1,38,2016,November,51,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.29,0,0,Canceled,2019-10-04 -Resort Hotel,0,137,2016,March,12,31,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,Refundable,12.0,223.0,0,Transient-Party,36.61,0,0,Check-Out,2019-03-04 -City Hotel,0,1,2016,October,42,10,0,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-09-03 -City Hotel,1,23,2016,September,37,27,2,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,118.32,0,0,No-Show,2019-06-03 -City Hotel,1,45,2017,December,50,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,27.0,179.0,41,Transient,60.73,0,0,Canceled,2018-10-03 -City Hotel,1,369,2016,October,44,21,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.57,0,0,Canceled,2019-08-04 -City Hotel,1,99,2017,August,32,21,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.08,0,1,Canceled,2020-03-03 -Resort Hotel,1,15,2016,December,45,24,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,13.0,331.0,0,Transient,95.54,1,0,Canceled,2019-11-03 -Resort Hotel,0,90,2016,May,20,29,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,378.0,179.0,0,Transient-Party,94.57,0,0,Check-Out,2019-02-01 -City Hotel,0,108,2016,March,17,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,115.38,0,0,Check-Out,2020-01-04 -Resort Hotel,0,41,2015,August,35,9,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,60.58,0,0,Check-Out,2017-12-03 -City Hotel,0,2,2015,August,37,5,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,128.83,0,2,Check-Out,2018-06-02 -City Hotel,0,29,2015,September,46,9,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,102.13,0,0,Check-Out,2018-08-03 -Resort Hotel,0,3,2016,January,10,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient,64.56,0,0,Check-Out,2019-02-01 -Resort Hotel,0,47,2016,June,27,18,3,10,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,103.0,179.0,0,Transient,75.53,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,June,17,13,1,0,1,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,D,3,No Deposit,327.0,179.0,0,Transient,43.68,0,0,Check-Out,2019-04-03 -Resort Hotel,0,171,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient,60.67,0,0,Check-Out,2019-06-03 -City Hotel,0,83,2016,September,43,7,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.0,0,2,Check-Out,2019-06-03 -City Hotel,1,193,2016,April,17,10,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,87.0,179.0,41,Transient,62.53,0,0,Canceled,2019-01-03 -City Hotel,1,304,2017,May,21,17,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.7,0,0,Canceled,2020-07-03 -City Hotel,0,164,2016,April,32,14,0,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,6.0,179.0,0,Transient,144.22,0,1,Check-Out,2019-03-04 -City Hotel,0,2,2015,August,38,4,0,1,2,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,54.94,0,1,Check-Out,2018-06-02 -City Hotel,0,17,2017,January,10,27,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,0,No Deposit,15.0,71.0,0,Transient,77.62,0,0,Check-Out,2019-12-04 -City Hotel,1,16,2015,July,38,4,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,94.92,0,0,Canceled,2018-05-03 -Resort Hotel,0,41,2016,October,45,10,0,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,No Deposit,12.0,222.0,0,Transient,67.31,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2016,February,7,28,0,2,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.2,0,2,Check-Out,2019-02-01 -City Hotel,1,147,2016,March,15,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,138.0,179.0,0,Transient,78.23,0,0,Canceled,2018-12-03 -City Hotel,0,10,2015,July,31,10,0,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.49,0,1,Check-Out,2018-06-02 -Resort Hotel,0,3,2015,August,38,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,0.0,1,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,October,44,5,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,91.05,1,0,Check-Out,2018-06-02 -City Hotel,1,92,2017,August,33,28,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,155.44,0,1,Canceled,2020-03-03 -City Hotel,0,267,2017,June,27,12,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,83.12,0,0,Check-Out,2020-06-02 -City Hotel,1,39,2015,October,43,20,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,111.79,0,0,Canceled,2018-08-03 -Resort Hotel,0,32,2015,July,33,9,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,1,No Deposit,330.0,179.0,0,Transient-Party,77.99,0,0,Check-Out,2018-09-02 -Resort Hotel,0,151,2015,July,36,5,2,2,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,111.83,0,1,Check-Out,2018-12-03 -City Hotel,1,21,2017,August,32,22,0,3,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,10.0,179.0,0,Transient,2.12,0,2,Canceled,2019-12-04 -Resort Hotel,0,239,2015,October,44,14,1,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,135.3,0,2,Check-Out,2018-08-03 -City Hotel,0,226,2015,July,32,3,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,80.49,0,0,Check-Out,2018-05-03 -Resort Hotel,0,8,2016,May,22,24,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient-Party,145.61,1,0,Check-Out,2019-07-04 -City Hotel,1,25,2016,August,35,15,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,85.9,0,1,Canceled,2019-05-04 -City Hotel,0,10,2016,November,43,13,2,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,3,No Deposit,16.0,179.0,0,Transient,97.3,0,0,Check-Out,2019-09-03 -Resort Hotel,1,8,2016,August,41,20,2,2,2,1.0,0,HB,,Direct,Direct,0,0,0,H,I,1,No Deposit,13.0,179.0,0,Transient,163.0,1,0,Canceled,2019-04-03 -Resort Hotel,0,39,2017,March,10,14,2,3,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,D,1,No Deposit,378.0,223.0,0,Transient,41.57,1,0,Check-Out,2020-03-03 -Resort Hotel,1,324,2016,August,38,15,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,85.84,0,0,Canceled,2018-05-03 -City Hotel,0,0,2017,May,23,10,1,1,2,0.0,0,BB,,Complementary,Direct,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,218.6,0,1,Check-Out,2020-03-03 -Resort Hotel,0,15,2017,May,21,16,0,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.29,0,0,Check-Out,2020-04-02 -City Hotel,1,32,2016,October,42,13,1,1,2,0.0,0,SC,POL,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,221.0,0,Transient,109.44,0,0,Canceled,2019-09-03 -City Hotel,0,197,2015,October,42,16,2,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,F,1,No Deposit,14.0,179.0,0,Transient,0.0,1,0,Check-Out,2018-08-03 -City Hotel,0,38,2017,May,28,31,2,0,3,1.0,0,SC,CHE,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,8.0,179.0,0,Transient,1.91,0,1,Check-Out,2020-02-01 -City Hotel,1,99,2016,April,22,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,76.9,0,0,Canceled,2019-05-04 -Resort Hotel,0,1,2016,April,17,24,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,171.0,179.0,0,Transient,61.39,0,0,Check-Out,2019-01-03 -City Hotel,1,289,2016,September,37,21,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.3,0,0,Canceled,2019-04-03 -Resort Hotel,0,9,2017,February,10,28,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,38.53,1,0,Check-Out,2019-03-04 -Resort Hotel,1,32,2016,August,35,24,2,5,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,206.46,0,0,Canceled,2019-04-03 -City Hotel,0,248,2015,October,44,21,2,4,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,61,Transient-Party,93.06,0,0,Check-Out,2018-09-02 -Resort Hotel,1,272,2017,August,32,19,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,43.22,0,0,Canceled,2020-04-02 -Resort Hotel,1,0,2016,June,28,16,3,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,32.77,0,0,No-Show,2019-06-03 -City Hotel,1,84,2017,August,37,12,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,219.0,0,0,Canceled,2020-06-02 -City Hotel,0,4,2017,March,12,29,1,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,253.0,0,Transient-Party,63.87,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2017,March,10,29,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,97.0,331.0,0,Transient,28.39,0,0,Check-Out,2020-02-01 -City Hotel,1,14,2015,September,46,22,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,72.98,0,2,Canceled,2019-05-04 -City Hotel,0,113,2017,July,35,25,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,221.73,0,0,Check-Out,2020-05-03 -City Hotel,1,66,2016,December,46,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,74.66,0,1,Canceled,2018-12-03 -City Hotel,0,22,2015,July,29,27,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient-Party,117.41,0,0,Check-Out,2018-06-02 -City Hotel,0,14,2016,October,45,31,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.27,0,2,Check-Out,2019-11-03 -City Hotel,1,169,2016,October,43,29,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,61,Transient-Party,71.34,0,0,Canceled,2019-10-04 -City Hotel,1,3,2016,July,34,15,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,149.0,0,0,Canceled,2019-01-03 -City Hotel,0,2,2017,February,9,12,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Group,44.22,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2017,June,26,13,0,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,47.0,0,Transient,1.65,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2017,March,11,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,62.0,0,Transient-Party,68.3,0,0,Check-Out,2020-03-03 -Resort Hotel,0,45,2016,August,36,28,2,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-07-03 -City Hotel,0,60,2017,July,27,23,2,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient-Party,246.57,0,0,Check-Out,2020-05-03 -City Hotel,1,256,2016,July,32,21,2,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,119.96,0,3,Canceled,2019-05-04 -Resort Hotel,0,0,2015,November,43,21,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.59,0,2,Check-Out,2018-12-03 -Resort Hotel,0,145,2017,June,33,29,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,160.0,179.0,0,Transient,227.69,0,1,Check-Out,2020-06-02 -City Hotel,0,213,2016,October,44,30,1,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,93.0,179.0,0,Transient,69.0,0,0,Check-Out,2019-07-04 -City Hotel,1,249,2015,September,37,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,90.8,0,0,Canceled,2017-12-03 -City Hotel,1,94,2016,June,22,15,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,1,No Deposit,17.0,179.0,0,Transient,173.33,0,0,Canceled,2019-08-04 -City Hotel,0,158,2017,July,31,7,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,228.42,0,1,Check-Out,2020-01-04 -Resort Hotel,0,271,2017,May,22,18,2,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,378.0,179.0,0,Transient-Party,128.61,1,0,Check-Out,2020-05-03 -City Hotel,0,100,2017,August,37,31,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.82,0,2,Check-Out,2020-07-03 -City Hotel,0,81,2016,December,53,12,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.15,0,1,Check-Out,2019-09-03 -City Hotel,0,40,2017,February,13,14,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient-Party,41.57,0,0,Check-Out,2020-02-01 -City Hotel,1,97,2017,April,16,24,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,99.02,0,0,Canceled,2019-10-04 -Resort Hotel,1,47,2017,March,10,17,0,3,2,0.0,0,BB,PRT,Groups,Corporate,1,0,1,A,A,0,Non Refund,12.0,331.0,0,Transient,32.04,0,0,Canceled,2020-04-02 -City Hotel,1,181,2016,April,16,18,2,3,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,72.09,0,0,Canceled,2019-02-01 -Resort Hotel,1,12,2015,August,35,6,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,2018-05-03 -Resort Hotel,1,330,2016,March,22,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,301.0,179.0,0,Transient,61.47,0,0,Canceled,2019-02-01 -City Hotel,0,131,2016,March,9,9,0,2,3,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,96.97,0,0,Check-Out,2018-11-02 -City Hotel,1,164,2016,November,18,31,2,3,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,117.41,0,3,Canceled,2018-12-03 -City Hotel,0,13,2016,February,11,31,0,2,2,0.0,0,BB,DEU,Corporate,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,36.88,0,0,Check-Out,2018-11-02 -City Hotel,1,0,2016,October,44,25,0,2,2,0.0,0,HB,USA,Online TA,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,90.18,1,1,Canceled,2018-07-03 -City Hotel,1,47,2016,October,16,15,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,90.3,0,0,Canceled,2019-01-03 -Resort Hotel,0,11,2016,September,26,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,63.09,0,0,Check-Out,2019-05-04 -City Hotel,1,403,2016,September,16,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,61,Transient,61.77,0,0,Canceled,2018-09-02 -Resort Hotel,1,72,2017,March,17,20,2,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,27.0,331.0,0,Transient-Party,76.08,0,0,Canceled,2020-02-01 -City Hotel,1,35,2016,July,52,13,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,100.77,0,1,Canceled,2018-12-03 -City Hotel,0,139,2017,June,22,3,0,2,1,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,139.66,0,0,Check-Out,2020-06-02 -City Hotel,1,157,2016,May,22,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.37,0,0,Canceled,2018-08-03 -Resort Hotel,0,154,2016,July,32,20,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,305.0,179.0,75,Transient,84.83,0,0,Check-Out,2019-05-04 -City Hotel,1,411,2016,October,50,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.46,0,0,Canceled,2018-08-03 -City Hotel,0,39,2016,October,44,2,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Transient-Party,134.13,0,0,Check-Out,2019-05-04 -City Hotel,0,292,2017,May,27,2,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,100.31,0,0,Check-Out,2020-07-03 -City Hotel,0,10,2016,December,50,5,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,66.66,0,3,Check-Out,2019-10-04 -City Hotel,0,318,2016,June,23,6,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,Refundable,3.0,223.0,0,Transient-Party,64.3,0,0,Check-Out,2019-02-01 -City Hotel,0,27,2016,May,22,28,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,91.0,179.0,0,Transient-Party,61.45,0,0,Check-Out,2019-03-04 -City Hotel,1,219,2017,June,28,28,2,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,6.0,179.0,0,Transient,119.51,0,1,Canceled,2019-11-03 -Resort Hotel,0,3,2017,May,22,28,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,E,0,No Deposit,246.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-04-02 -City Hotel,1,247,2015,September,36,10,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,69.65,0,1,Canceled,2018-07-03 -City Hotel,1,14,2016,February,12,21,1,2,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,81.02,0,2,Canceled,2018-11-02 -City Hotel,1,91,2016,December,50,6,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.9,0,2,Canceled,2019-10-04 -City Hotel,0,116,2015,September,44,15,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,120.42,0,0,Check-Out,2018-08-03 -City Hotel,1,62,2017,April,17,10,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,Non Refund,7.0,179.0,0,Transient,149.41,0,0,Canceled,2019-12-04 -City Hotel,0,2,2016,April,18,14,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.74,0,1,Check-Out,2019-06-03 -City Hotel,1,258,2016,August,32,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,66.0,179.0,0,Transient,81.76,0,0,Canceled,2018-08-03 -Resort Hotel,0,13,2015,July,35,28,1,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,18.0,179.0,0,Transient,137.7,0,0,Check-Out,2019-11-03 -Resort Hotel,0,58,2017,May,22,21,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,154.2,0,1,Check-Out,2020-03-03 -Resort Hotel,0,238,2016,December,35,23,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,319.0,179.0,0,Transient-Party,82.0,0,0,Check-Out,2019-07-04 -City Hotel,0,16,2015,November,45,15,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,92.8,0,0,Check-Out,2018-06-02 -City Hotel,0,40,2016,April,23,9,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,176.31,1,1,Check-Out,2019-11-03 -City Hotel,0,2,2017,February,2,10,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-03-03 -Resort Hotel,0,9,2017,June,28,28,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,127.08,0,0,Check-Out,2020-06-02 -Resort Hotel,0,46,2016,December,53,5,0,5,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,75.96,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2017,May,20,2,0,1,2,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,279.0,0,Group,4.34,0,0,Canceled,2020-05-03 -City Hotel,1,161,2016,March,50,14,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,43,Transient,91.94,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2016,February,8,5,1,1,1,0.0,0,Undefined,,Direct,Direct,0,0,0,A,A,0,No Deposit,106.0,179.0,0,Transient,40.3,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,March,18,19,2,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,68.29,1,0,Check-Out,2019-02-01 -City Hotel,1,11,2017,July,3,6,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,191.99,0,1,Canceled,2019-11-03 -City Hotel,0,79,2016,November,53,21,0,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.64,0,0,Check-Out,2019-09-03 -City Hotel,0,102,2017,March,17,9,1,1,2,0.0,0,BB,AUT,Online TA,Direct,0,0,0,D,F,2,No Deposit,10.0,179.0,0,Transient,85.84,0,0,Check-Out,2020-01-04 -City Hotel,1,20,2017,August,51,26,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,175.91,0,1,Canceled,2020-01-04 -Resort Hotel,0,9,2015,November,50,9,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,243.0,179.0,0,Transient,87.47,1,0,Check-Out,2019-01-03 -City Hotel,0,32,2017,May,22,28,0,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.66,0,2,Check-Out,2020-05-03 -City Hotel,1,444,2016,October,43,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,49.84,0,0,Canceled,2018-08-03 -City Hotel,0,29,2015,October,46,11,1,1,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,62.13,0,0,Check-Out,2018-08-03 -Resort Hotel,0,41,2016,July,35,9,2,5,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.62,1,0,Check-Out,2019-05-04 -City Hotel,1,236,2016,June,25,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.74,0,0,Canceled,2019-02-01 -City Hotel,0,19,2017,August,36,15,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.84,0,1,Check-Out,2020-06-02 -Resort Hotel,0,10,2017,March,10,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,51.15,1,2,Check-Out,2020-02-01 -City Hotel,1,54,2015,November,50,6,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,0.0,0,0,Canceled,2018-08-03 -Resort Hotel,0,18,2017,March,16,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,359.0,331.0,0,Transient-Party,48.59,0,0,Check-Out,2020-04-02 -Resort Hotel,0,255,2017,July,32,28,1,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,243.68,0,0,Check-Out,2020-05-03 -City Hotel,0,125,2017,February,9,20,0,3,2,0.0,0,BB,IRL,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,73.7,0,1,Check-Out,2019-11-03 -Resort Hotel,1,166,2016,July,27,26,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,95.93,0,0,Canceled,2019-05-04 -Resort Hotel,0,2,2016,March,8,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,1,No Deposit,17.0,45.0,0,Transient,29.28,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,December,4,28,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,105.0,0,2,Check-Out,2019-10-04 -City Hotel,1,2,2015,October,43,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,61.66,0,1,Canceled,2018-12-03 -Resort Hotel,0,152,2017,July,31,27,0,4,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,232.72,0,3,Check-Out,2020-06-02 -City Hotel,1,1,2015,August,38,18,0,1,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,244.0,179.0,0,Transient,60.52,0,0,Canceled,2018-06-02 -Resort Hotel,1,0,2016,January,3,27,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,90.91,0,0,Check-Out,2018-11-02 -Resort Hotel,1,46,2016,December,45,28,2,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,150.33,0,0,Canceled,2019-08-04 -City Hotel,0,42,2015,September,37,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,43,Transient,76.13,0,0,Check-Out,2018-05-03 -City Hotel,0,89,2016,October,44,13,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,123.08,1,2,Check-Out,2019-06-03 -Resort Hotel,0,28,2016,October,41,9,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,118.68,1,2,Check-Out,2019-08-04 -City Hotel,0,13,2016,August,39,18,0,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,63.11,0,2,Check-Out,2019-06-03 -City Hotel,0,4,2016,May,44,26,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,74.09,0,0,Check-Out,2019-06-03 -City Hotel,1,157,2016,April,17,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,93.1,0,0,Canceled,2018-12-03 -City Hotel,1,160,2015,August,38,8,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,60.54,0,0,Canceled,2018-05-03 -Resort Hotel,0,150,2016,June,24,6,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,129.12,0,1,Check-Out,2019-01-03 -City Hotel,1,368,2015,October,45,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,110.73,0,0,Canceled,2018-08-03 -Resort Hotel,1,3,2015,December,50,14,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,88.42,0,0,Canceled,2018-11-02 -City Hotel,0,249,2016,May,20,14,1,1,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,1,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,59.55,0,0,Check-Out,2019-03-04 -City Hotel,1,209,2017,July,38,6,0,2,3,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,9.0,179.0,0,Transient,202.39,0,1,Canceled,2020-03-03 -Resort Hotel,0,55,2016,March,15,27,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient-Party,161.41,0,0,Check-Out,2019-03-04 -City Hotel,0,156,2016,September,37,8,0,3,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,105.95,0,0,Check-Out,2019-01-03 -City Hotel,1,7,2015,August,44,17,0,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,61.32,0,0,Canceled,2018-11-02 -City Hotel,1,80,2016,May,11,5,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-12-03 -Resort Hotel,1,308,2016,October,41,25,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,60.6,0,0,Canceled,2018-08-03 -City Hotel,0,4,2016,May,24,26,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Contract,80.21,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,March,22,12,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,H,F,0,No Deposit,16.0,331.0,0,Transient,36.49,0,0,Check-Out,2019-02-01 -Resort Hotel,0,93,2015,July,32,30,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,307.0,179.0,0,Transient-Party,61.46,0,0,Check-Out,2018-06-02 -City Hotel,1,37,2015,July,33,10,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.94,0,0,Check-Out,2018-06-02 -City Hotel,0,24,2017,February,10,30,2,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,No Deposit,17.0,250.0,0,Transient-Party,87.96,0,0,Check-Out,2020-06-02 -City Hotel,1,17,2015,October,46,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient,39.74,0,0,Canceled,2018-11-02 -City Hotel,1,224,2015,October,44,21,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,F,A,0,No Deposit,6.0,179.0,0,Transient-Party,60.71,0,0,Canceled,2018-06-02 -City Hotel,1,208,2016,November,44,5,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,87.16,0,0,Canceled,2019-06-03 -City Hotel,1,45,2016,November,50,9,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,60.74,0,0,Canceled,2019-09-03 -Resort Hotel,1,276,2017,April,16,25,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,238.0,179.0,0,Transient,158.4,0,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2017,August,33,12,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,2.69,0,3,Check-Out,2020-07-03 -City Hotel,1,250,2016,October,44,30,0,5,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,69.94,0,0,Canceled,2018-09-02 -Resort Hotel,0,103,2016,September,44,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,172.0,179.0,0,Transient-Party,77.65,0,0,Check-Out,2019-08-04 -City Hotel,0,14,2016,December,50,19,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,15.0,331.0,0,Transient,37.66,1,0,Check-Out,2020-01-04 -Resort Hotel,1,95,2016,March,14,30,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,11.0,222.0,0,Transient,61.8,0,0,Canceled,2019-01-03 -Resort Hotel,0,11,2016,March,12,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,68.47,0,0,Check-Out,2018-11-02 -Resort Hotel,0,13,2015,December,51,12,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,246.0,179.0,0,Transient,112.27,1,0,Check-Out,2018-08-03 -Resort Hotel,0,31,2016,July,15,25,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,242.0,179.0,0,Transient,148.84,0,0,Check-Out,2019-07-04 -City Hotel,0,9,2017,March,13,22,2,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,E,F,0,No Deposit,284.0,331.0,0,Transient-Party,76.7,0,0,Check-Out,2020-03-03 -Resort Hotel,0,4,2015,December,49,5,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,35.38,0,1,Check-Out,2018-11-02 -Resort Hotel,0,82,2017,February,10,8,2,1,1,0.0,0,BB,,Direct,Direct,1,0,0,A,A,0,No Deposit,18.0,331.0,0,Transient-Party,66.25,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,January,3,26,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,E,E,0,No Deposit,14.0,331.0,0,Transient,0.59,1,0,Check-Out,2019-10-04 -City Hotel,0,11,2015,August,38,30,2,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,248.98,0,0,Check-Out,2018-05-03 -City Hotel,0,118,2017,June,26,21,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,10.0,179.0,0,Transient,227.88,0,1,Check-Out,2020-07-03 -City Hotel,0,37,2016,December,53,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,74.9,0,0,Check-Out,2019-10-04 -City Hotel,1,44,2017,February,9,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,60.69,0,0,Canceled,2018-11-02 -City Hotel,0,21,2017,March,10,10,1,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,71.74,0,1,Check-Out,2020-02-01 -Resort Hotel,1,11,2016,March,10,13,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,0,Transient,60.2,0,0,Canceled,2019-01-03 -Resort Hotel,0,19,2017,August,34,26,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -City Hotel,0,298,2017,June,22,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,63.47,0,0,Check-Out,2020-06-02 -City Hotel,1,254,2017,August,37,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,10.0,179.0,0,Transient,157.67,0,2,Canceled,2020-07-03 -Resort Hotel,0,37,2017,March,9,15,1,2,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,63.81,0,0,Check-Out,2020-01-04 -City Hotel,0,31,2017,July,31,27,1,3,2,0.0,0,BB,IRL,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,63.65,0,3,Check-Out,2020-06-02 -Resort Hotel,1,260,2016,May,18,10,2,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,A,0,No Deposit,200.0,161.0,0,Transient,74.08,0,0,Canceled,2019-04-03 -Resort Hotel,0,28,2016,March,13,10,0,3,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,1,No Deposit,15.0,331.0,0,Transient-Party,38.02,0,0,Check-Out,2019-02-01 -City Hotel,0,52,2017,April,19,27,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Contract,70.45,0,0,Check-Out,2020-04-02 -Resort Hotel,0,108,2017,March,10,28,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,241.0,179.0,0,Transient,80.49,0,1,Check-Out,2020-04-02 -City Hotel,1,195,2017,May,17,2,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,86.59,0,0,Canceled,2019-10-04 -Resort Hotel,1,181,2016,December,53,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,62.99,0,2,Canceled,2018-12-03 -Resort Hotel,0,217,2017,May,27,15,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Contract,93.01,1,1,Check-Out,2020-03-03 -City Hotel,0,227,2015,September,42,25,2,0,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,101.75,0,0,Check-Out,2018-05-03 -City Hotel,0,106,2017,February,43,28,1,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,73.25,0,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,June,28,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,198.0,179.0,0,Transient,90.74,0,0,Check-Out,2019-07-04 -Resort Hotel,0,154,2015,September,32,5,1,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,75.0,179.0,0,Transient-Party,77.64,0,0,Check-Out,2019-09-03 -City Hotel,0,78,2016,July,25,21,0,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,114.88,0,1,Check-Out,2019-03-04 -City Hotel,1,96,2016,November,46,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,72.16,0,0,Canceled,2019-07-04 -Resort Hotel,0,3,2016,October,37,21,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,170.0,179.0,0,Transient,168.5,0,0,Check-Out,2019-08-04 -Resort Hotel,0,252,2015,October,35,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,148.0,179.0,0,Transient-Party,71.85,0,0,Check-Out,2018-07-03 -Resort Hotel,0,37,2016,October,45,11,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,171.82,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,December,51,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,16.0,247.0,0,Transient-Party,85.82,0,0,Check-Out,2019-11-03 -Resort Hotel,1,295,2016,March,16,10,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,65.51,0,0,Canceled,2019-02-01 -Resort Hotel,0,156,2016,March,20,28,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,6.0,179.0,0,Transient,93.43,0,1,Check-Out,2019-01-03 -Resort Hotel,0,17,2016,June,26,11,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,E,2,No Deposit,241.0,179.0,0,Transient-Party,82.26,1,2,Check-Out,2019-06-03 -Resort Hotel,0,111,2017,May,21,24,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,216.83,0,1,Check-Out,2020-04-02 -City Hotel,1,104,2016,August,38,27,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,151.35,0,0,Canceled,2019-08-04 -City Hotel,0,1,2017,April,9,10,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,95.44,0,0,Check-Out,2020-02-01 -City Hotel,1,280,2016,October,43,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.39,0,0,Canceled,2018-08-03 -Resort Hotel,0,151,2016,September,43,17,2,7,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,306.0,179.0,0,Transient-Party,62.53,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2017,June,25,17,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,154.92,0,1,Check-Out,2020-03-03 -Resort Hotel,0,89,2017,April,16,18,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,74.0,179.0,0,Transient-Party,71.13,0,2,Check-Out,2020-04-02 -Resort Hotel,0,2,2015,December,49,9,0,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,45.32,0,0,Check-Out,2018-11-02 -Resort Hotel,1,258,2016,May,23,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,71.88,0,0,Canceled,2019-02-01 -Resort Hotel,0,4,2015,December,53,31,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,95.96,0,2,Check-Out,2019-11-03 -Resort Hotel,0,91,2017,August,35,27,3,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,254.0,179.0,0,Transient,114.42,0,1,Check-Out,2020-06-02 -Resort Hotel,0,234,2015,October,43,25,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,299.0,179.0,19,Transient-Party,41.37,1,0,Check-Out,2018-09-02 -City Hotel,0,137,2017,May,22,27,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,67.79,0,1,Check-Out,2019-12-04 -City Hotel,0,355,2017,June,27,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,115.56,0,1,Check-Out,2020-07-03 -City Hotel,0,38,2017,February,9,13,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,176.0,179.0,0,Transient-Party,71.77,0,0,Check-Out,2020-03-03 -City Hotel,0,2,2016,February,9,2,2,0,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.68,0,2,Check-Out,2019-02-01 -Resort Hotel,0,246,2017,June,26,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,243.0,179.0,0,Transient-Party,132.14,1,1,Check-Out,2020-04-02 -City Hotel,1,15,2016,October,45,10,0,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.92,0,2,Canceled,2019-08-04 -City Hotel,0,66,2015,September,33,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,62,Transient-Party,62.17,0,0,Check-Out,2018-07-03 -City Hotel,0,56,2016,April,15,21,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,30.0,179.0,0,Transient-Party,75.71,0,0,Check-Out,2019-03-04 -Resort Hotel,0,96,2015,September,44,27,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,128.51,0,0,Check-Out,2018-09-02 -Resort Hotel,1,42,2015,October,35,20,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,46.45,0,0,Canceled,2018-08-03 -City Hotel,1,36,2016,February,9,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,133.0,179.0,40,Transient,63.84,0,0,Canceled,2018-12-03 -City Hotel,0,1,2017,May,26,13,2,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,67.38,0,0,Check-Out,2020-02-01 -Resort Hotel,0,16,2017,June,26,10,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,1,0,0,E,D,0,No Deposit,173.0,179.0,0,Transient,61.92,1,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2017,June,22,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,358.0,205.0,0,Group,76.42,0,0,Check-Out,2020-05-03 -City Hotel,0,265,2015,July,32,1,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.19,0,1,Check-Out,2018-06-02 -Resort Hotel,0,14,2017,July,31,14,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,250.0,179.0,0,Transient,168.13,0,0,Check-Out,2020-06-02 -City Hotel,0,43,2017,July,27,31,0,1,1,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.67,0,2,Check-Out,2020-05-03 -City Hotel,0,190,2017,May,22,20,0,1,2,2.0,0,HB,ITA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,149.19,0,1,Check-Out,2020-03-03 -Resort Hotel,0,190,2016,January,4,5,0,1,1,0.0,0,HB,PRT,Groups,GDS,0,0,0,A,B,0,Non Refund,12.0,179.0,0,Transient-Party,72.94,0,0,Check-Out,2019-05-04 -Resort Hotel,0,18,2015,August,36,2,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,140.0,179.0,0,Group,74.36,0,0,Check-Out,2018-08-03 -Resort Hotel,0,105,2017,July,19,27,2,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,111.48,0,0,Check-Out,2020-02-01 -Resort Hotel,1,29,2016,December,50,2,0,3,3,1.0,0,HB,NOR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,237.0,179.0,0,Transient,151.22,0,0,Canceled,2019-11-03 -City Hotel,0,3,2017,June,10,18,2,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,186.0,331.0,0,Transient,84.81,0,0,Check-Out,2019-12-04 -Resort Hotel,0,185,2015,December,50,27,0,3,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,74.75,0,2,Check-Out,2018-09-02 -City Hotel,1,98,2016,April,16,29,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,174.0,179.0,0,Transient,119.66,0,2,Canceled,2019-03-04 -City Hotel,0,0,2016,February,15,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,219.0,0,Transient,59.04,0,0,Check-Out,2019-03-04 -City Hotel,1,1,2017,February,9,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.41,0,0,Canceled,2020-01-04 -City Hotel,0,12,2016,October,44,13,1,2,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,77.25,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,March,12,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,89.0,0,Transient,60.77,0,0,Check-Out,2019-01-03 -City Hotel,1,207,2016,April,16,4,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,71.15,0,0,Canceled,2019-02-01 -Resort Hotel,0,117,2017,August,27,27,2,2,3,1.0,0,BB,GBR,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,173.36,0,1,Check-Out,2020-06-02 -Resort Hotel,0,104,2016,June,27,1,0,10,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,84.0,179.0,0,Transient,116.3,0,0,Check-Out,2019-06-03 -City Hotel,0,16,2017,January,5,26,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,71.12,0,1,Check-Out,2019-10-04 -City Hotel,0,30,2017,March,9,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient-Party,67.37,0,2,Check-Out,2020-04-02 -Resort Hotel,0,12,2017,January,2,25,2,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,No Deposit,13.0,331.0,0,Transient,29.8,1,0,Check-Out,2019-10-04 -City Hotel,0,1,2016,August,38,7,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.74,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,December,50,4,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,0,No Deposit,16.0,223.0,0,Transient,45.74,0,0,Check-Out,2019-09-03 -City Hotel,1,297,2016,August,35,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.21,0,1,Canceled,2018-11-02 -City Hotel,1,11,2017,June,34,9,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,9.0,179.0,0,Transient,84.97,0,0,Canceled,2020-03-03 -City Hotel,0,85,2015,September,36,13,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient-Party,166.19,0,0,Check-Out,2018-09-02 -Resort Hotel,1,34,2017,July,15,2,2,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,167.34,0,0,Canceled,2020-01-04 -City Hotel,1,44,2016,May,27,20,2,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,278.0,179.0,0,Transient,151.59,0,0,Canceled,2019-02-01 -City Hotel,1,33,2016,October,53,12,1,4,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,99.39,0,3,No-Show,2019-08-04 -City Hotel,0,0,2016,July,36,18,2,2,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,236.42,0,0,Check-Out,2019-05-04 -Resort Hotel,0,16,2016,November,49,5,2,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,113.59,0,2,Check-Out,2019-11-03 -Resort Hotel,1,24,2016,March,32,25,2,5,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,252.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,16,2016,August,36,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,147.4,1,2,Check-Out,2019-06-03 -City Hotel,0,41,2017,July,37,24,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,210.36,0,1,Check-Out,2020-06-02 -City Hotel,0,31,2017,March,11,15,0,2,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,157.91,0,3,Check-Out,2020-06-02 -City Hotel,0,23,2016,March,44,6,1,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.55,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2017,January,9,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,75.0,0,Transient,46.27,1,1,Check-Out,2019-10-04 -City Hotel,1,50,2016,October,44,22,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,85.55,0,0,Canceled,2019-11-03 -City Hotel,1,273,2016,August,41,15,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Contract,116.8,0,0,Canceled,2019-06-03 -Resort Hotel,0,6,2016,August,33,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,15.0,179.0,0,Transient,42.73,0,0,Check-Out,2018-06-02 -City Hotel,0,255,2015,July,32,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.89,0,0,Check-Out,2018-08-03 -City Hotel,0,153,2016,September,43,13,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.09,0,2,Check-Out,2019-07-04 -Resort Hotel,1,32,2015,October,43,15,1,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,C,0,Non Refund,245.0,179.0,0,Transient,47.57,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2015,August,33,30,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,129.19,0,3,Check-Out,2018-07-03 -City Hotel,1,135,2017,August,30,5,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,D,0,Non Refund,14.0,179.0,0,Transient,99.24,0,0,Canceled,2019-06-03 -City Hotel,0,366,2015,October,44,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,10.0,179.0,0,Transient,63.12,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2015,September,34,30,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient-Party,78.2,0,0,Check-Out,2018-08-03 -Resort Hotel,1,316,2016,August,38,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,168.0,179.0,0,Transient,126.51,0,0,Canceled,2019-06-03 -City Hotel,0,367,2017,August,27,13,0,2,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,123.17,0,0,Check-Out,2020-07-03 -Resort Hotel,0,263,2016,May,22,9,1,5,1,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,C,0,No Deposit,3.0,179.0,0,Transient-Party,67.41,0,0,Check-Out,2019-01-03 -City Hotel,1,90,2016,October,44,22,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,75.0,179.0,0,Transient-Party,106.16,0,0,Canceled,2019-04-03 -City Hotel,0,115,2016,October,43,24,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,160.79,0,1,Check-Out,2019-06-03 -Resort Hotel,0,45,2015,December,53,28,1,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,324.0,179.0,0,Transient-Party,70.76,0,0,Check-Out,2018-11-02 -City Hotel,1,38,2015,August,46,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient,118.86,0,0,Canceled,2018-05-03 -Resort Hotel,0,16,2016,March,19,28,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,62.88,1,0,Check-Out,2019-02-01 -City Hotel,0,3,2016,May,22,5,2,1,1,0.0,0,BB,ESP,Complementary,Direct,1,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-06-03 -Resort Hotel,0,285,2015,September,37,15,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.33,0,0,Check-Out,2018-08-03 -City Hotel,0,105,2017,April,17,9,1,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,86.01,0,0,Check-Out,2020-03-03 -City Hotel,1,12,2017,January,7,17,0,1,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,89.23,0,1,Canceled,2019-10-04 -City Hotel,1,0,2015,August,39,17,2,0,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,44.07,0,1,Canceled,2018-07-03 -City Hotel,0,15,2016,May,22,28,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,D,F,0,No Deposit,179.0,179.0,0,Group,123.82,0,0,Check-Out,2019-02-01 -City Hotel,0,2,2015,October,44,20,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,40.0,179.0,0,Transient-Party,66.69,0,0,Check-Out,2018-08-03 -Resort Hotel,0,8,2017,February,10,27,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,46.98,1,0,Check-Out,2020-03-03 -City Hotel,0,149,2017,May,21,2,1,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,152.0,179.0,0,Transient,179.33,0,0,Check-Out,2020-04-02 -City Hotel,0,13,2016,March,15,20,1,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,150.77,0,0,Check-Out,2019-02-01 -City Hotel,0,54,2016,December,50,24,1,3,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,C,D,0,No Deposit,184.0,179.0,75,Transient,118.31,0,0,Check-Out,2018-08-03 -Resort Hotel,1,59,2015,November,53,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Transient,60.66,0,0,Canceled,2018-06-02 -City Hotel,1,12,2017,June,25,5,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.81,0,0,Canceled,2019-08-04 -City Hotel,0,20,2016,March,11,31,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,64.77,0,1,Check-Out,2018-11-02 -City Hotel,0,25,2015,October,43,15,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,103.22,0,3,Check-Out,2019-09-03 -Resort Hotel,0,1,2017,June,27,14,2,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,215.0,179.0,0,Transient,94.31,0,0,Check-Out,2020-02-01 -City Hotel,0,48,2016,August,44,4,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,240.4,0,2,Check-Out,2019-06-03 -Resort Hotel,0,21,2015,December,50,24,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,95.96,0,0,Check-Out,2018-11-02 -Resort Hotel,0,30,2017,June,25,18,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.6,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,November,51,17,0,3,3,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,16.0,246.0,0,Transient,43.91,0,0,Check-Out,2019-06-03 -City Hotel,1,98,2015,September,50,24,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,93.64,0,0,Canceled,2018-07-03 -City Hotel,1,61,2016,March,17,15,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,8.0,179.0,0,Transient,95.36,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2015,August,33,8,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,H,1,No Deposit,18.0,179.0,0,Transient,153.45,0,0,Check-Out,2018-06-02 -City Hotel,1,142,2017,July,34,27,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,155.45,0,0,Canceled,2019-11-03 -Resort Hotel,0,3,2016,June,27,15,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,200.0,331.0,0,Transient,64.6,0,0,Check-Out,2019-06-03 -Resort Hotel,0,40,2015,September,34,17,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,116.36,0,0,Check-Out,2018-05-03 -City Hotel,0,8,2016,September,26,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,78.98,1,0,Check-Out,2019-07-04 -Resort Hotel,0,5,2016,August,26,31,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,63.69,1,1,Check-Out,2018-06-02 -Resort Hotel,0,38,2017,March,10,27,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,298.0,179.0,0,Transient,40.69,0,1,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,July,37,7,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,186.17,1,1,Check-Out,2020-06-02 -City Hotel,1,184,2015,July,34,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.45,0,0,Canceled,2017-11-02 -City Hotel,1,57,2017,August,10,16,1,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,67.43,0,0,Canceled,2019-10-04 -City Hotel,0,20,2016,September,44,10,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,8.0,179.0,0,Group,131.84,0,1,Check-Out,2019-02-01 -City Hotel,0,297,2015,July,43,27,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,78.0,179.0,0,Transient,102.56,0,0,Canceled,2018-08-03 -Resort Hotel,0,38,2016,February,4,13,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,69.85,1,2,Check-Out,2018-12-03 -City Hotel,0,260,2016,June,24,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,96.7,0,0,Check-Out,2019-02-01 -Resort Hotel,0,89,2015,December,50,10,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,47.09,0,0,Check-Out,2018-11-02 -City Hotel,1,41,2016,October,44,6,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.67,0,2,Canceled,2019-11-03 -City Hotel,0,50,2016,October,53,27,2,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,155.69,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,October,37,25,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,130.4,0,1,Check-Out,2019-06-03 -City Hotel,0,2,2015,September,41,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Group,98.59,0,1,Check-Out,2018-08-03 -Resort Hotel,0,1,2017,January,3,26,1,7,2,0.0,0,BB,,Corporate,Corporate,0,0,0,D,E,0,No Deposit,332.0,179.0,0,Transient,0.03,0,0,Check-Out,2019-11-03 -Resort Hotel,1,156,2017,August,32,16,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,221.36,0,0,Canceled,2020-06-02 -City Hotel,0,28,2017,August,39,21,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,146.74,0,1,Check-Out,2019-08-04 -City Hotel,1,2,2016,January,38,25,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,5.0,179.0,0,Transient,122.5,0,0,No-Show,2019-07-04 -Resort Hotel,0,34,2016,November,23,24,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,118.24,0,1,Check-Out,2019-07-04 -City Hotel,1,147,2016,December,51,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,60.86,0,1,Canceled,2019-10-04 -Resort Hotel,1,47,2015,December,49,10,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,0,Transient,99.44,0,0,Canceled,2019-01-03 -City Hotel,0,41,2017,May,24,24,2,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,242.0,179.0,0,Transient,95.27,0,2,Check-Out,2020-03-03 -City Hotel,1,39,2016,March,15,24,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,118.42,0,0,Canceled,2019-03-04 -City Hotel,0,24,2016,December,53,16,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,8.0,179.0,0,Transient,93.13,0,2,No-Show,2019-10-04 -City Hotel,0,1,2016,March,10,27,0,4,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,147.02,0,0,Canceled,2019-03-04 -City Hotel,0,144,2016,November,37,22,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,9.0,179.0,0,Transient,99.09,0,3,Check-Out,2019-12-04 -Resort Hotel,0,0,2015,July,31,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient-Party,212.43,0,0,Check-Out,2018-06-02 -City Hotel,0,156,2017,July,30,24,2,4,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,101.97,0,2,Check-Out,2019-12-04 -City Hotel,1,104,2017,June,14,15,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.95,0,1,Canceled,2020-03-03 -City Hotel,1,0,2016,October,20,28,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.2,0,0,Canceled,2019-03-04 -City Hotel,0,18,2017,March,23,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.83,0,1,Check-Out,2020-02-01 -City Hotel,0,3,2015,October,46,18,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,222.0,0,Transient-Party,84.6,0,0,Check-Out,2018-09-02 -Resort Hotel,0,97,2016,September,22,28,3,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.68,0,1,Check-Out,2019-06-03 -City Hotel,1,3,2017,May,29,28,1,0,1,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,B,P,0,No Deposit,15.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2020-05-03 -Resort Hotel,0,0,2016,October,50,28,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,71.71,0,0,Check-Out,2019-07-04 -City Hotel,0,55,2017,April,17,6,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.88,0,0,Check-Out,2020-03-03 -Resort Hotel,0,43,2016,December,33,23,2,3,1,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,D,1,No Deposit,250.0,179.0,0,Transient,184.56,1,3,Check-Out,2019-06-03 -Resort Hotel,0,1,2015,September,37,17,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,226.0,0,Transient-Party,62.52,0,0,Check-Out,2018-08-03 -Resort Hotel,0,162,2017,August,38,15,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,212.65,0,1,Check-Out,2020-07-03 -City Hotel,1,0,2017,February,9,13,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,H,1,No Deposit,14.0,179.0,0,Transient,0.0,0,0,No-Show,2020-01-04 -City Hotel,1,51,2015,July,36,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,25,Transient,116.53,0,0,Canceled,2018-08-03 -City Hotel,0,16,2017,July,32,23,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.7,0,0,Check-Out,2020-04-02 -City Hotel,1,149,2017,July,29,27,0,4,2,1.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,172.79,0,0,Canceled,2019-11-03 -City Hotel,0,10,2017,March,12,13,0,1,1,0.0,0,SC,GBR,Undefined,TA/TO,0,0,0,A,A,0,No Deposit,11.0,63.0,0,Transient,75.33,0,1,Check-Out,2020-04-02 -Resort Hotel,0,128,2017,August,33,9,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,216.84,1,0,Check-Out,2020-07-03 -City Hotel,0,208,2016,October,32,6,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,98.77,0,0,Check-Out,2019-08-04 -City Hotel,1,36,2017,May,22,17,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,5.0,179.0,0,Transient,125.15,0,1,Canceled,2020-03-03 -City Hotel,1,19,2017,February,9,5,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.88,0,0,Canceled,2019-09-03 -City Hotel,0,169,2017,July,25,24,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,137.13,0,1,Check-Out,2020-06-02 -City Hotel,1,47,2016,December,52,24,2,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,90.47,0,2,Canceled,2019-10-04 -City Hotel,0,48,2016,August,46,25,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.87,0,2,Check-Out,2019-06-03 -Resort Hotel,0,172,2017,April,17,29,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,C,2,No Deposit,378.0,179.0,0,Contract,88.15,1,0,Check-Out,2020-06-02 -City Hotel,1,104,2016,May,20,9,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,37.35,0,3,Canceled,2019-10-04 -Resort Hotel,1,171,2017,April,37,31,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,47.77,0,0,Canceled,2019-11-03 -Resort Hotel,1,43,2016,October,44,18,1,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,179.0,0,1,Canceled,2019-08-04 -Resort Hotel,1,4,2015,August,40,23,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,71.98,0,2,Canceled,2018-06-02 -City Hotel,0,16,2017,April,17,25,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,122.19,0,1,Check-Out,2019-12-04 -Resort Hotel,1,0,2017,January,2,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,Non Refund,13.0,84.0,0,Transient,39.58,0,0,Canceled,2019-11-03 -City Hotel,1,94,2017,May,37,25,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,153.18,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2017,February,8,26,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,210.0,331.0,0,Transient-Party,29.89,0,0,Check-Out,2020-05-03 -City Hotel,0,37,2017,February,11,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.22,0,2,Check-Out,2019-10-04 -City Hotel,0,1,2016,February,9,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,18,Transient,61.81,0,0,Check-Out,2019-02-01 -Resort Hotel,0,158,2016,April,16,25,1,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,317.0,179.0,0,Transient-Party,129.58,1,0,Check-Out,2019-11-03 -City Hotel,0,6,2016,December,53,1,2,4,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient-Party,166.28,1,2,Check-Out,2019-11-03 -City Hotel,0,100,2017,May,23,8,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,32.0,179.0,0,Contract,76.61,0,1,Check-Out,2020-03-03 -City Hotel,1,23,2015,July,39,13,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.88,0,0,Canceled,2018-11-02 -City Hotel,0,252,2017,June,26,19,1,4,1,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient-Party,127.66,0,0,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,October,47,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,12.0,231.0,0,Group,59.84,0,0,Check-Out,2019-12-04 -City Hotel,1,148,2015,September,43,28,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.57,0,0,Canceled,2018-07-03 -Resort Hotel,0,279,2016,March,16,31,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,76.4,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,March,10,15,2,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,223.0,75,Transient-Party,87.82,1,1,Check-Out,2019-01-03 -City Hotel,0,147,2017,August,32,5,0,2,2,2.0,0,BB,BRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,162.48,0,0,Check-Out,2020-07-03 -City Hotel,0,90,2017,August,30,13,1,2,2,1.0,0,BB,BRA,Online TA,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,96.21,0,2,Check-Out,2020-06-02 -City Hotel,0,23,2015,October,44,18,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,85.92,0,2,Check-Out,2019-01-03 -City Hotel,0,255,2016,June,28,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.3,0,0,Check-Out,2019-05-04 -City Hotel,0,121,2016,March,16,18,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,170.0,179.0,0,Transient-Party,78.76,1,2,Check-Out,2019-02-01 -Resort Hotel,0,10,2017,March,24,24,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,F,0,No Deposit,290.0,179.0,0,Transient-Party,153.71,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2017,February,10,30,0,1,1,0.0,0,SC,PRT,Corporate,GDS,0,0,0,A,A,0,No Deposit,164.0,81.0,0,Transient,99.47,0,0,Check-Out,2020-02-01 -City Hotel,0,18,2016,July,32,27,0,3,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,73.51,1,0,Check-Out,2019-05-04 -City Hotel,0,10,2016,September,44,17,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,78.4,0,0,Check-Out,2019-09-03 -City Hotel,0,21,2016,November,44,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,45.0,0,Transient,61.62,0,0,Check-Out,2019-06-03 -Resort Hotel,1,203,2017,July,37,28,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,237.0,179.0,0,Transient,113.86,0,1,Canceled,2020-03-03 -City Hotel,0,101,2016,May,20,21,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Transient-Party,99.62,0,0,Check-Out,2019-06-03 -City Hotel,1,344,2015,August,33,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,117.99,0,0,Canceled,2017-10-03 -Resort Hotel,0,9,2016,March,18,14,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,H,0,No Deposit,9.0,179.0,0,Transient,120.68,1,1,Check-Out,2019-03-04 -City Hotel,0,275,2017,June,37,17,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,72.88,0,1,Check-Out,2020-06-02 -City Hotel,1,197,2016,September,45,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,101.3,0,0,Canceled,2019-08-04 -City Hotel,0,74,2016,November,44,21,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,60.89,0,0,Check-Out,2018-11-02 -Resort Hotel,1,205,2017,March,9,25,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Group,77.55,0,0,Canceled,2020-04-02 -Resort Hotel,0,30,2015,August,35,18,2,2,2,0.0,0,HB,PRT,Direct,Direct,0,1,0,A,C,0,No Deposit,16.0,179.0,0,Transient-Party,39.4,0,0,Canceled,2018-05-03 -City Hotel,0,98,2016,October,45,10,2,1,3,0.0,0,BB,USA,Online TA,GDS,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,86.39,0,1,Check-Out,2019-08-04 -City Hotel,0,21,2016,June,25,17,0,1,1,1.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,80.23,0,1,Check-Out,2019-06-03 -City Hotel,1,15,2016,October,46,31,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.51,0,0,Canceled,2019-08-04 -City Hotel,0,109,2016,October,45,16,1,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,113.68,0,0,Check-Out,2019-08-04 -Resort Hotel,0,193,2017,April,16,21,1,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,C,I,0,No Deposit,240.0,179.0,0,Transient,120.82,0,1,Check-Out,2020-02-01 -City Hotel,0,328,2016,May,15,21,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,73.82,0,0,Check-Out,2019-06-03 -City Hotel,1,42,2016,April,21,9,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,87.25,0,0,Canceled,2019-02-01 -Resort Hotel,1,220,2017,May,37,26,0,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,184.56,0,0,Canceled,2020-06-02 -Resort Hotel,0,199,2016,July,26,9,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,I,0,No Deposit,25.0,179.0,0,Transient,1.67,0,0,Check-Out,2019-06-03 -City Hotel,1,171,2016,June,36,16,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,23,Transient,81.44,0,0,Canceled,2019-07-04 -City Hotel,1,254,2016,July,31,20,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,F,F,0,No Deposit,8.0,179.0,0,Transient,63.82,0,2,Canceled,2019-04-03 -City Hotel,1,31,2016,April,52,2,2,1,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.66,0,0,Canceled,2019-03-04 -Resort Hotel,0,33,2016,July,22,30,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,78.4,1,1,Check-Out,2019-06-03 -City Hotel,0,111,2016,October,43,9,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.43,0,3,Check-Out,2019-06-03 -City Hotel,1,312,2015,October,45,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.25,0,0,Canceled,2017-12-03 -City Hotel,0,144,2017,July,26,21,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,164.74,0,1,Check-Out,2020-06-02 -City Hotel,1,203,2017,July,37,28,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,155.84,0,0,Canceled,2018-01-31 -City Hotel,0,263,2017,July,26,2,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,155.03,0,0,Check-Out,2020-06-02 -City Hotel,0,20,2015,December,51,20,0,1,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,61.7,0,0,Check-Out,2018-11-02 -City Hotel,0,39,2017,July,32,8,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,167.28,0,0,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,November,49,10,2,1,2,2.0,0,BB,PRT,Complementary,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,80.6,0,0,Check-Out,2019-09-03 -Resort Hotel,0,252,2016,September,42,6,3,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,156.0,179.0,0,Transient,74.98,0,2,Check-Out,2019-07-04 -City Hotel,0,84,2016,June,34,18,2,3,2,1.0,0,BB,CHE,Online TA,Direct,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,163.75,1,0,Check-Out,2019-03-04 -City Hotel,0,81,2017,February,7,27,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,123.0,179.0,0,Transient-Party,73.44,0,0,Check-Out,2019-11-03 -City Hotel,1,95,2016,July,32,6,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,237.55,0,0,Canceled,2019-05-04 -Resort Hotel,0,11,2016,August,36,23,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,240.0,179.0,0,Group,63.79,0,1,Check-Out,2018-09-02 -City Hotel,1,68,2016,March,23,28,1,1,2,0.0,0,BB,PRT,Groups,GDS,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.8,0,0,Canceled,2019-02-01 -Resort Hotel,1,54,2017,February,9,27,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,D,0,Non Refund,11.0,179.0,0,Transient,62.86,0,0,Canceled,2018-12-03 -Resort Hotel,0,61,2017,January,13,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,37.04,0,0,Check-Out,2019-11-03 -City Hotel,1,38,2015,July,36,25,2,4,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,165.48,0,0,Canceled,2018-08-03 -Resort Hotel,0,153,2017,March,16,10,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient-Party,76.79,0,0,Check-Out,2020-01-04 -City Hotel,0,13,2017,March,18,20,1,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.41,0,3,Check-Out,2019-12-04 -Resort Hotel,0,111,2016,December,53,30,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,67.9,0,1,Check-Out,2018-08-03 -City Hotel,0,29,2017,February,11,17,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,59.79,0,0,Check-Out,2019-09-03 -City Hotel,0,24,2017,March,10,31,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,191.0,179.0,0,Transient,119.94,0,1,Check-Out,2019-10-04 -City Hotel,0,1,2017,August,35,13,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,109.38,0,0,Check-Out,2020-06-02 -Resort Hotel,0,56,2016,October,43,26,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient,169.49,1,1,Check-Out,2019-08-04 -City Hotel,0,13,2017,February,10,8,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.41,0,1,Check-Out,2019-10-04 -Resort Hotel,0,93,2015,October,33,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,59.67,0,0,Check-Out,2018-08-03 -Resort Hotel,0,18,2015,September,37,28,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,112.1,1,0,Check-Out,2018-08-03 -City Hotel,1,35,2016,March,9,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,76.74,0,0,Canceled,2018-12-03 -Resort Hotel,0,165,2016,August,42,30,2,3,2,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,206.54,1,0,Check-Out,2019-12-04 -City Hotel,1,233,2016,November,43,15,0,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,74.92,0,0,Canceled,2019-10-04 -City Hotel,0,252,2017,August,35,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,75.79,0,1,Check-Out,2020-01-04 -City Hotel,0,18,2017,August,26,28,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,75.99,0,2,Check-Out,2020-06-02 -City Hotel,1,98,2017,August,24,13,2,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Canceled,2020-02-01 -City Hotel,1,0,2016,January,3,25,2,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.55,0,0,No-Show,2018-11-02 -Resort Hotel,0,197,2016,August,30,2,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,C,D,0,No Deposit,312.0,179.0,75,Transient,62.49,1,0,Check-Out,2019-05-04 -City Hotel,1,94,2017,April,10,9,1,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,71.5,0,0,Canceled,2019-11-03 -Resort Hotel,1,49,2016,March,8,13,0,3,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,233.0,179.0,0,Transient,77.71,0,0,Canceled,2018-11-02 -City Hotel,1,16,2016,December,51,28,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,14.0,213.0,0,Transient,37.83,0,0,Canceled,2018-11-02 -City Hotel,0,327,2016,September,32,18,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,67,Transient-Party,72.53,0,0,Check-Out,2018-08-03 -City Hotel,0,103,2017,June,16,9,0,2,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.74,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,August,37,31,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,February,8,2,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,3,No Deposit,378.0,224.0,0,Transient,44.72,0,0,Check-Out,2020-01-04 -City Hotel,0,17,2015,September,35,28,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,0,A,A,0,No Deposit,89.0,179.0,0,Transient,72.29,0,0,Canceled,2018-06-02 -City Hotel,1,302,2015,October,42,29,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,154.18,0,0,Canceled,2018-07-03 -Resort Hotel,0,157,2016,May,22,2,2,10,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient,122.97,0,0,Check-Out,2019-06-03 -Resort Hotel,0,135,2017,March,12,12,0,1,2,0.0,0,BB,USA,Direct,Corporate,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,112.72,1,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2017,February,10,15,1,0,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,75.67,0,0,Check-Out,2020-02-01 -City Hotel,0,105,2016,June,27,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.96,0,2,Check-Out,2019-05-04 -Resort Hotel,0,48,2016,March,16,16,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,164.0,179.0,0,Transient-Party,69.27,1,1,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,April,36,9,2,0,1,0.0,0,HB,IRL,Complementary,TA/TO,0,0,0,C,I,1,No Deposit,241.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-01-04 -City Hotel,0,250,2015,July,29,20,2,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,99.94,0,1,Check-Out,2018-05-03 -Resort Hotel,0,35,2015,October,32,27,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,102.85,0,0,Check-Out,2018-07-03 -Resort Hotel,1,80,2017,May,23,17,0,7,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,345.0,179.0,0,Transient-Party,70.88,0,0,Canceled,2020-03-03 -City Hotel,1,80,2016,May,21,28,2,3,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,205.2,0,2,Canceled,2019-02-01 -City Hotel,1,266,2015,July,34,6,2,2,2,0.0,0,BB,,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.65,0,0,Canceled,2017-10-03 -City Hotel,0,11,2016,October,43,14,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,2018-09-02 -City Hotel,0,2,2016,February,11,15,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.52,0,1,Check-Out,2018-10-03 -Resort Hotel,1,108,2016,August,35,24,2,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,169.69,0,0,Canceled,2019-02-01 -City Hotel,1,263,2015,October,46,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,1,A,A,0,No Deposit,240.0,179.0,0,Transient,103.79,0,0,Canceled,2018-06-02 -Resort Hotel,0,30,2017,March,11,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,91.64,1,3,Check-Out,2020-01-04 -City Hotel,0,431,2017,June,26,8,1,2,2,0.0,0,SC,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,90.13,0,0,Check-Out,2019-07-04 -City Hotel,1,3,2016,March,10,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,18,Transient,102.24,0,0,Canceled,2018-11-02 -City Hotel,0,256,2017,July,36,10,3,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,83.21,0,0,Check-Out,2019-06-03 -City Hotel,0,33,2016,June,23,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.95,0,2,Check-Out,2019-06-03 -City Hotel,1,60,2015,September,49,15,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,77.44,0,0,Canceled,2017-12-03 -City Hotel,0,84,2016,June,34,22,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,75.71,0,1,Check-Out,2019-07-04 -City Hotel,0,2,2016,August,17,5,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,72.0,179.0,44,Transient-Party,121.78,0,0,Check-Out,2018-11-02 -Resort Hotel,0,41,2015,October,50,9,0,4,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,79.07,0,0,Check-Out,2018-05-03 -Resort Hotel,1,175,2017,August,36,5,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient,87.82,0,0,Canceled,2020-07-03 -Resort Hotel,1,116,2016,March,16,13,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,138.0,179.0,0,Transient,83.08,0,0,Canceled,2019-02-01 -City Hotel,0,18,2017,January,4,27,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,62.11,0,0,Check-Out,2019-09-03 -Resort Hotel,1,46,2016,March,9,9,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,91.0,179.0,0,Transient-Party,76.76,0,0,Canceled,2018-11-02 -City Hotel,0,140,2016,July,36,15,0,2,1,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,136.0,1,0,Check-Out,2019-04-03 -City Hotel,0,59,2016,May,22,17,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,88.66,0,1,Check-Out,2019-02-01 -City Hotel,0,1,2016,December,11,19,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,B,0,No Deposit,15.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -City Hotel,0,7,2016,September,45,10,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,152.45,0,0,Check-Out,2018-12-03 -City Hotel,1,164,2016,December,28,28,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,125.0,179.0,0,Transient,62.41,0,0,Canceled,2019-11-03 -Resort Hotel,0,55,2015,September,45,12,0,2,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,64.35,0,0,Check-Out,2018-09-02 -City Hotel,1,108,2017,March,8,25,0,4,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,87.52,0,2,Canceled,2019-11-03 -City Hotel,1,388,2017,March,17,31,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,9.0,179.0,0,Transient,133.78,0,0,Canceled,2020-04-02 -City Hotel,0,138,2016,July,32,2,1,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,126.83,0,2,Check-Out,2019-07-04 -City Hotel,1,108,2016,June,21,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,B,D,0,Non Refund,10.0,179.0,0,Transient,116.96,0,0,Canceled,2019-01-03 -City Hotel,0,5,2016,October,52,3,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,182.0,0,Transient,88.42,0,0,Check-Out,2019-01-03 -Resort Hotel,1,149,2016,May,39,27,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,118.07,0,0,Canceled,2019-05-04 -Resort Hotel,0,153,2015,August,31,5,2,3,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,282.0,179.0,0,Transient-Party,124.18,0,0,Check-Out,2018-07-03 -City Hotel,0,11,2016,November,46,27,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.62,0,0,Check-Out,2019-08-04 -Resort Hotel,0,191,2016,September,25,30,0,3,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,D,A,1,Refundable,14.0,223.0,0,Transient-Party,92.75,0,0,Check-Out,2019-07-04 -Resort Hotel,0,60,2017,May,23,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,39.5,0,1,Check-Out,2020-03-03 -Resort Hotel,1,33,2016,January,3,28,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Group,152.17,0,0,Canceled,2018-12-03 -City Hotel,0,119,2017,March,16,9,0,1,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient-Party,74.25,0,0,Check-Out,2019-11-03 -City Hotel,1,269,2015,December,50,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.3,0,0,Canceled,2017-11-02 -Resort Hotel,1,72,2017,February,9,20,0,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,37.35,0,0,Canceled,2020-04-02 -City Hotel,0,13,2016,April,16,29,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,78.98,0,0,Check-Out,2019-02-01 -City Hotel,0,20,2017,May,24,10,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,123.8,0,1,Check-Out,2020-06-02 -City Hotel,1,97,2017,July,21,28,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,149.92,0,2,Canceled,2020-04-02 -Resort Hotel,1,11,2016,April,8,16,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,118.75,0,1,No-Show,2019-02-01 -City Hotel,1,13,2017,August,32,7,0,3,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,232.03,0,3,Canceled,2020-03-03 -City Hotel,0,47,2017,July,31,6,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,114.5,0,0,Check-Out,2020-06-02 -City Hotel,1,2,2016,May,42,27,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,10.0,179.0,0,Transient,1.33,0,3,Canceled,2019-11-03 -City Hotel,1,50,2017,December,22,30,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.53,0,0,Canceled,2019-12-04 -City Hotel,0,3,2017,January,4,27,0,3,1,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,121.12,1,0,Check-Out,2020-04-02 -City Hotel,1,160,2017,June,32,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,119.87,0,0,Canceled,2020-02-01 -City Hotel,0,3,2015,November,43,30,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,15.0,45.0,0,Transient,0.0,1,2,Check-Out,2018-09-02 -City Hotel,0,1,2016,February,10,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,10.0,72.0,0,Transient,85.46,0,0,Check-Out,2019-01-03 -Resort Hotel,0,14,2017,June,31,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,48.21,1,3,Check-Out,2020-02-01 -City Hotel,1,424,2015,September,45,20,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Transient,67.74,0,0,Canceled,2018-09-02 -City Hotel,1,44,2016,July,32,5,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,160.09,0,1,Canceled,2019-06-03 -City Hotel,0,11,2017,April,17,6,0,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,99.36,0,0,Check-Out,2020-02-01 -City Hotel,0,13,2017,April,22,28,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,378.0,179.0,0,Transient-Party,88.08,0,0,Check-Out,2020-03-03 -City Hotel,1,102,2016,September,44,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,123.57,0,0,Canceled,2018-08-03 -City Hotel,1,161,2016,June,27,24,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,D,0,Non Refund,23.0,179.0,0,Transient,88.96,0,2,Canceled,2018-12-03 -City Hotel,0,37,2016,December,51,5,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.48,0,0,Check-Out,2019-11-03 -Resort Hotel,0,104,2016,June,29,15,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,125.57,0,1,Check-Out,2019-04-03 -City Hotel,0,113,2017,July,31,4,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,169.15,0,0,Check-Out,2020-06-02 -City Hotel,0,2,2017,June,21,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,230.0,0,Transient,50.02,0,2,Check-Out,2020-07-03 -City Hotel,1,412,2016,May,22,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,126.89,0,0,Canceled,2019-01-03 -City Hotel,0,243,2016,June,26,27,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,126.72,0,0,Check-Out,2019-02-01 -Resort Hotel,0,29,2017,June,28,31,2,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,D,D,0,No Deposit,189.0,179.0,0,Transient,119.45,0,1,Check-Out,2020-03-03 -Resort Hotel,0,8,2016,August,36,24,1,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,18.0,179.0,0,Transient,123.96,1,0,Check-Out,2019-06-03 -City Hotel,0,82,2016,April,27,10,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,118.8,0,2,Check-Out,2019-02-01 -Resort Hotel,0,4,2017,February,6,27,0,1,2,0.0,0,Undefined,,Groups,Corporate,0,0,0,E,E,3,No Deposit,49.0,179.0,0,Transient-Party,70.6,1,0,Check-Out,2019-10-04 -City Hotel,1,385,2016,October,44,28,2,2,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.94,0,3,Canceled,2019-05-04 -Resort Hotel,0,2,2016,July,32,6,2,3,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,182.03,0,1,Check-Out,2018-11-02 -City Hotel,0,17,2015,October,43,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,235.0,0,Transient-Party,80.18,0,0,Check-Out,2018-08-03 -Resort Hotel,1,33,2016,July,33,17,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,38.7,0,2,Canceled,2019-03-04 -Resort Hotel,0,0,2015,December,53,28,0,3,3,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,15.0,179.0,0,Transient-Party,41.27,0,0,Check-Out,2018-08-03 -City Hotel,0,159,2015,July,43,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,26.0,179.0,0,Contract,43.91,0,2,Check-Out,2017-11-02 -City Hotel,0,55,2016,April,38,24,0,4,2,0.0,0,HB,ESP,Groups,Corporate,0,0,0,A,F,1,No Deposit,3.0,179.0,0,Transient-Party,64.22,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,January,10,9,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,94.14,0,0,Check-Out,2019-09-03 -Resort Hotel,1,300,2015,September,43,6,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,90.21,0,0,Canceled,2018-08-03 -City Hotel,0,299,2016,September,35,5,0,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,77.12,0,0,Check-Out,2019-04-03 -City Hotel,0,93,2017,July,33,5,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,130.48,0,1,Check-Out,2020-05-03 -Resort Hotel,0,21,2016,June,25,25,0,3,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,127.32,1,0,Check-Out,2019-06-03 -City Hotel,1,229,2017,July,34,14,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,180.23,0,0,Canceled,2019-11-03 -Resort Hotel,0,5,2016,September,36,29,2,4,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,216.04,0,2,Check-Out,2019-06-03 -City Hotel,0,0,2017,June,4,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,101.95,0,1,Check-Out,2019-11-03 -City Hotel,0,43,2016,November,45,28,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,96.0,179.0,0,Transient,75.6,0,0,Check-Out,2019-08-04 -City Hotel,0,10,2016,August,38,24,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.09,0,1,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,March,9,24,2,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,94.86,0,0,Check-Out,2020-03-03 -City Hotel,0,50,2015,August,39,17,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.26,0,0,Check-Out,2018-07-03 -Resort Hotel,1,257,2017,June,31,5,2,5,2,2.0,0,HB,AUT,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,178.94,0,3,Canceled,2020-05-03 -Resort Hotel,1,47,2016,February,10,16,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,71.85,0,0,Canceled,2019-08-04 -City Hotel,0,10,2017,March,16,13,0,3,1,0.0,0,BB,CHE,Aviation,Corporate,1,0,0,E,E,2,No Deposit,12.0,189.0,0,Transient,104.08,0,1,Check-Out,2019-11-03 -City Hotel,1,49,2016,March,10,5,2,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,126.39,0,2,Canceled,2018-12-03 -Resort Hotel,0,272,2017,July,31,15,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,226.85,0,2,Check-Out,2020-06-02 -City Hotel,1,21,2016,June,15,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,61,Transient-Party,74.75,0,0,Canceled,2019-02-01 -Resort Hotel,0,240,2016,June,36,27,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,134.0,179.0,0,Transient-Party,130.34,0,0,Check-Out,2019-02-01 -City Hotel,1,404,2017,July,34,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,44,Transient,89.02,0,0,Canceled,2019-01-03 -City Hotel,0,107,2017,February,7,2,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,72.13,0,1,Check-Out,2020-02-01 -Resort Hotel,0,50,2016,February,8,11,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,72.98,1,2,Check-Out,2019-03-04 -Resort Hotel,1,33,2016,February,11,8,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,80.0,179.0,75,Transient-Party,81.95,0,0,Canceled,2019-01-03 -Resort Hotel,1,113,2017,May,23,16,2,7,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,166.99,0,0,Canceled,2020-02-01 -City Hotel,0,119,2016,June,24,21,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,80.0,179.0,0,Transient-Party,71.04,0,0,Check-Out,2019-02-01 -Resort Hotel,0,46,2017,July,23,24,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,251.0,179.0,0,Transient,187.57,0,0,Check-Out,2020-03-03 -City Hotel,1,22,2016,March,17,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,35.56,0,0,Canceled,2018-10-03 -Resort Hotel,1,0,2015,August,37,31,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,115.63,0,0,Canceled,2018-05-03 -City Hotel,1,8,2016,December,51,19,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,196.23,0,0,Canceled,2019-09-03 -Resort Hotel,1,98,2015,November,50,27,1,3,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,265.0,179.0,0,Transient,85.39,0,0,Canceled,2018-09-02 -Resort Hotel,0,0,2016,February,10,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,0,Transient,34.29,0,0,Canceled,2018-11-02 -City Hotel,0,43,2016,November,43,13,0,2,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,201.0,179.0,0,Transient,106.92,0,0,Check-Out,2019-09-03 -Resort Hotel,0,4,2015,January,4,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,61.86,0,0,Check-Out,2018-11-02 -City Hotel,1,6,2017,May,21,6,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.57,0,0,Check-Out,2020-01-04 -City Hotel,0,41,2016,June,24,16,2,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,B,1,No Deposit,16.0,179.0,0,Transient,116.72,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,February,11,9,2,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,146.0,331.0,0,Transient-Party,36.52,0,0,Check-Out,2019-12-04 -Resort Hotel,1,270,2017,May,21,12,2,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,E,A,0,Non Refund,239.0,179.0,0,Transient,72.99,0,0,Canceled,2019-10-04 -Resort Hotel,0,36,2016,February,3,14,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,61.01,0,1,Check-Out,2018-10-03 -Resort Hotel,0,174,2017,August,35,22,4,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,248.77,0,2,Check-Out,2020-06-02 -City Hotel,0,302,2015,September,45,6,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,75.45,0,0,Check-Out,2018-05-03 -Resort Hotel,0,250,2015,July,34,6,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,62.44,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,January,4,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.46,0,1,Check-Out,2018-12-03 -City Hotel,1,6,2017,July,24,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,168.35,0,0,Canceled,2020-05-03 -City Hotel,0,230,2016,July,35,30,2,5,2,0.0,0,HB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,78.97,0,2,Check-Out,2019-05-04 -City Hotel,0,61,2017,August,36,6,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,206.57,0,1,Check-Out,2020-07-03 -City Hotel,0,114,2016,June,26,1,0,3,1,0.0,0,BB,DEU,Corporate,Corporate,1,0,1,A,A,1,No Deposit,11.0,179.0,0,Group,87.73,0,0,Check-Out,2019-05-04 -City Hotel,1,295,2017,May,20,25,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,A,0,Non Refund,9.0,179.0,0,Transient,128.07,0,0,Canceled,2020-04-02 -City Hotel,0,14,2016,May,22,13,0,1,2,2.0,0,BB,PRT,Complementary,TA/TO,1,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-05-04 -Resort Hotel,1,83,2017,May,22,21,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,70.36,0,0,Check-Out,2019-12-04 -Resort Hotel,0,3,2017,April,17,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,0,No Deposit,333.0,331.0,0,Transient,31.99,0,0,Check-Out,2020-04-02 -City Hotel,0,229,2016,May,24,10,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,107.62,0,2,Check-Out,2019-05-04 -City Hotel,0,1,2016,June,31,27,2,1,3,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,99.02,0,1,Check-Out,2019-03-04 -City Hotel,1,281,2015,October,45,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.89,0,0,Canceled,2017-10-03 -City Hotel,0,14,2016,September,27,12,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,B,B,0,No Deposit,12.0,81.0,0,Transient,121.15,0,2,Check-Out,2019-02-01 -City Hotel,1,386,2016,March,18,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,77.17,0,0,Canceled,2018-12-03 -Resort Hotel,0,42,2017,February,10,20,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient-Party,67.26,0,0,Check-Out,2020-03-03 -City Hotel,0,238,2017,April,21,31,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,229.74,0,3,Check-Out,2020-04-02 -Resort Hotel,1,41,2017,August,39,10,0,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,194.22,0,1,Canceled,2019-07-04 -City Hotel,0,144,2017,August,35,5,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.17,0,2,Check-Out,2020-05-03 -Resort Hotel,0,51,2015,August,40,11,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,153.15,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,March,11,28,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,36.5,0,2,Check-Out,2019-02-01 -City Hotel,1,65,2015,September,35,28,2,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.9,0,3,Canceled,2018-08-03 -City Hotel,1,316,2016,May,20,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.7,0,0,Canceled,2018-12-03 -City Hotel,0,159,2017,August,32,21,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,123.55,0,2,Check-Out,2020-04-02 -City Hotel,0,52,2017,August,37,28,1,3,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,226.99,0,1,Check-Out,2020-07-03 -Resort Hotel,0,10,2016,January,10,18,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient-Party,183.37,1,0,Check-Out,2018-11-02 -City Hotel,0,106,2016,May,22,28,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,19,Group,90.92,1,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,January,5,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.94,0,1,Check-Out,2018-11-02 -City Hotel,0,21,2016,October,44,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,124.74,0,3,Check-Out,2019-08-04 -City Hotel,1,281,2015,September,40,5,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,92.49,0,0,Canceled,2018-07-03 -City Hotel,1,152,2016,April,18,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,89.61,0,0,Canceled,2019-03-04 -City Hotel,0,3,2015,October,43,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,244.0,0,Transient-Party,88.97,0,0,Check-Out,2019-06-03 -City Hotel,0,33,2016,December,50,18,2,1,1,0.0,0,BB,CHN,Online TA,Corporate,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,70.76,0,0,Check-Out,2020-04-02 -Resort Hotel,0,20,2017,June,27,5,0,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,98.73,0,2,Check-Out,2020-02-01 -City Hotel,0,32,2016,December,51,8,0,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,D,D,2,No Deposit,16.0,331.0,0,Transient,61.33,0,0,Check-Out,2019-12-04 -City Hotel,0,150,2015,December,51,6,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,91.39,0,0,Check-Out,2018-08-03 -Resort Hotel,1,4,2017,May,22,10,2,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,148.53,0,1,Canceled,2020-02-01 -City Hotel,1,319,2017,June,27,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,155.95,0,0,Canceled,2019-11-03 -City Hotel,1,292,2016,May,45,14,0,1,1,0.0,0,BB,ESP,Groups,Direct,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.75,0,0,Canceled,2019-06-03 -Resort Hotel,0,280,2017,August,33,17,3,1,2,0.0,0,HB,ESP,Offline TA/TO,Direct,0,0,0,A,C,2,No Deposit,359.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-07-03 -City Hotel,1,0,2016,March,16,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,H,0,No Deposit,83.0,179.0,0,Transient,69.26,0,0,Canceled,2019-01-03 -City Hotel,0,209,2017,March,24,14,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,25.0,179.0,0,Transient-Party,113.25,0,3,Check-Out,2020-04-02 -Resort Hotel,0,10,2017,January,9,21,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,188.3,0,1,Check-Out,2020-02-01 -Resort Hotel,0,37,2017,May,9,25,0,5,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,4.48,0,0,Check-Out,2020-03-03 -City Hotel,0,246,2017,August,33,28,1,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,171.85,0,3,Check-Out,2020-07-03 -Resort Hotel,0,98,2017,February,14,24,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,1,No Deposit,322.0,179.0,0,Transient-Party,83.2,0,0,Check-Out,2019-10-04 -City Hotel,1,21,2016,March,10,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,D,0,Non Refund,35.0,179.0,0,Transient,98.84,0,0,Canceled,2018-12-03 -City Hotel,1,49,2017,August,37,6,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.78,0,2,Canceled,2019-12-04 -Resort Hotel,0,50,2017,April,20,5,1,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,E,E,3,No Deposit,252.0,179.0,0,Transient,89.62,0,0,Check-Out,2020-01-04 -Resort Hotel,0,19,2015,November,50,15,1,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,305.0,179.0,0,Group,76.21,0,0,Check-Out,2019-01-03 -City Hotel,0,1,2015,December,53,10,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,3,No Deposit,14.0,179.0,0,Transient,123.19,0,2,Check-Out,2019-10-04 -City Hotel,1,18,2017,February,11,7,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,81.66,0,0,Canceled,2019-02-01 -City Hotel,0,6,2016,October,42,27,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.41,0,2,Check-Out,2019-11-03 -City Hotel,0,97,2016,October,45,28,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,184.07,0,0,Check-Out,2019-04-03 -City Hotel,1,313,2015,July,33,11,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,91.5,0,0,Canceled,2017-12-03 -Resort Hotel,0,43,2016,February,9,24,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,155.88,0,0,Check-Out,2019-03-04 -Resort Hotel,0,192,2017,March,17,30,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,2,Refundable,378.0,222.0,0,Transient-Party,36.12,1,0,Check-Out,2020-03-03 -Resort Hotel,0,154,2016,May,16,22,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,15.0,223.0,0,Transient-Party,33.88,0,0,Check-Out,2019-03-04 -Resort Hotel,1,194,2016,May,22,4,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,288.0,179.0,0,Transient-Party,66.9,0,0,Canceled,2019-11-03 -Resort Hotel,0,252,2017,August,33,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,158.91,0,2,Check-Out,2020-06-02 -City Hotel,0,0,2016,May,22,28,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,212.3,1,0,Check-Out,2019-06-03 -City Hotel,0,47,2016,March,11,15,1,0,2,0.0,0,BB,BEL,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.45,0,1,Check-Out,2018-11-02 -City Hotel,0,438,2015,September,41,24,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.77,0,0,Check-Out,2018-08-03 -City Hotel,0,48,2016,June,27,18,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,61.97,0,0,Check-Out,2019-05-04 -City Hotel,1,441,2015,September,38,4,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.1,0,0,Canceled,2018-08-03 -City Hotel,0,13,2017,March,9,31,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,25.0,179.0,0,Transient,122.05,0,0,Canceled,2020-06-02 -City Hotel,1,103,2017,June,26,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,159.0,0,0,Canceled,2020-06-02 -Resort Hotel,0,255,2016,October,43,13,2,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,84.89,0,2,Check-Out,2019-08-04 -City Hotel,1,162,2016,March,10,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,64,Transient,66.73,0,0,Canceled,2018-12-03 -Resort Hotel,0,5,2016,June,23,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,64.0,0,Transient-Party,80.0,1,0,Check-Out,2019-04-03 -Resort Hotel,0,14,2016,August,35,31,4,7,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,208.22,0,2,Check-Out,2019-08-04 -City Hotel,1,91,2017,February,9,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,89.47,0,0,Canceled,2020-02-01 -City Hotel,0,159,2017,May,26,5,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,128.42,0,1,Check-Out,2020-02-01 -City Hotel,0,1,2017,August,33,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,133.52,0,0,Check-Out,2020-07-03 -City Hotel,1,17,2016,June,35,17,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,210.87,0,0,Canceled,2019-04-03 -City Hotel,0,32,2016,May,45,12,2,4,3,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,E,0,No Deposit,192.0,179.0,0,Transient,214.24,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2015,September,38,6,0,4,3,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,175.77,0,0,Check-Out,2018-12-03 -City Hotel,1,2,2017,December,41,9,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,3.68,0,0,Canceled,2019-12-04 -City Hotel,0,46,2017,June,26,21,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,132.13,0,0,Check-Out,2020-04-02 -Resort Hotel,0,130,2015,December,53,31,2,5,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,C,3,No Deposit,13.0,179.0,0,Transient-Party,35.45,0,0,Check-Out,2018-12-03 -City Hotel,1,0,2016,August,36,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,76.92,0,1,Canceled,2018-06-02 -City Hotel,0,100,2015,July,33,24,2,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,105.0,0,0,Check-Out,2018-06-02 -Resort Hotel,1,13,2016,November,51,10,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,228.0,0,Transient,34.11,0,0,Canceled,2019-11-03 -Resort Hotel,0,13,2017,February,10,25,1,1,2,0.0,0,BB,ESP,Direct,Corporate,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,61.67,0,0,Check-Out,2019-01-03 -City Hotel,1,226,2016,August,34,12,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,141.93,0,0,Canceled,2019-05-04 -Resort Hotel,0,38,2015,August,43,9,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,63,Transient-Party,61.98,0,2,Check-Out,2019-01-03 -Resort Hotel,0,151,2017,August,32,13,2,5,1,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,98.14,1,1,Check-Out,2020-06-02 -City Hotel,0,1,2015,September,35,8,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,71.4,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,June,20,9,0,1,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,0.0,0,0,Check-Out,2020-03-03 -City Hotel,1,333,2017,February,11,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,175.54,0,0,Canceled,2020-06-02 -Resort Hotel,0,53,2015,November,52,28,1,3,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,F,2,No Deposit,277.0,179.0,0,Transient-Party,98.51,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2015,August,38,20,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,179.0,0,Transient,92.1,0,0,Check-Out,2018-06-02 -City Hotel,1,12,2016,November,50,30,2,6,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,91.32,0,0,Canceled,2019-09-03 -City Hotel,0,25,2016,January,11,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,73.93,0,0,Check-Out,2018-11-02 -City Hotel,0,13,2015,October,43,22,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,2.0,179.0,0,Contract,62.23,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2015,July,35,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,2,No Deposit,18.0,179.0,0,Transient,108.88,1,0,Check-Out,2018-06-02 -City Hotel,1,89,2017,February,9,11,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,83.91,0,0,Canceled,2020-01-04 -Resort Hotel,1,262,2016,September,22,23,1,0,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,219.12,0,0,Canceled,2019-01-03 -Resort Hotel,1,103,2016,July,33,10,2,5,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,1,0,Canceled,2019-08-04 -City Hotel,0,31,2016,January,10,22,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,104.94,0,1,Check-Out,2020-01-04 -City Hotel,0,23,2016,July,32,12,1,3,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-05-04 -City Hotel,1,54,2016,April,18,31,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.89,0,0,Canceled,2019-02-01 -Resort Hotel,1,1,2017,March,10,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,264.0,0,Transient,37.84,0,0,Canceled,2020-03-03 -City Hotel,1,3,2015,December,51,27,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,122.85,0,0,Canceled,2018-07-03 -City Hotel,0,47,2016,February,9,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,40,Transient,72.14,0,0,Check-Out,2018-11-02 -Resort Hotel,0,13,2017,June,26,22,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,A,2,No Deposit,241.0,179.0,0,Transient,205.82,0,2,Check-Out,2020-01-04 -City Hotel,1,262,2015,July,38,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.75,0,0,Canceled,2018-06-02 -Resort Hotel,0,139,2016,June,22,6,3,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,80.0,179.0,0,Group,76.16,0,0,Check-Out,2020-06-02 -City Hotel,1,369,2016,September,32,18,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.04,0,0,Canceled,2018-08-03 -Resort Hotel,0,21,2016,May,36,7,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,77.61,0,1,Check-Out,2019-03-04 -City Hotel,0,136,2017,June,28,21,0,4,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,132.94,0,1,Check-Out,2020-06-02 -City Hotel,1,53,2017,February,8,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,76.42,0,0,Canceled,2018-10-03 -Resort Hotel,0,275,2017,July,33,16,0,2,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient-Party,242.28,1,0,Check-Out,2020-07-03 -Resort Hotel,1,151,2015,September,44,29,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,38.14,0,0,Canceled,2018-12-03 -City Hotel,1,36,2016,October,45,7,1,2,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,163.85,0,0,No-Show,2019-08-04 -Resort Hotel,0,49,2017,May,26,13,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient-Party,157.6,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,March,11,5,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,32.34,0,0,Check-Out,2019-01-03 -City Hotel,1,316,2015,September,32,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Contract,61.31,0,0,Canceled,2017-12-03 -Resort Hotel,0,55,2016,November,50,17,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,35.0,179.0,0,Transient-Party,39.38,0,0,Check-Out,2019-11-03 -Resort Hotel,0,29,2016,December,53,30,2,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,129.08,0,0,Check-Out,2019-03-04 -Resort Hotel,1,225,2017,March,17,2,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient,56.26,0,3,Canceled,2019-10-04 -City Hotel,0,75,2016,December,50,14,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,131.47,0,2,Check-Out,2019-10-04 -City Hotel,0,14,2017,April,9,31,0,1,3,0.0,0,BB,,Corporate,Direct,0,0,0,A,D,0,No Deposit,12.0,77.0,0,Transient,154.49,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2015,January,12,29,0,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,74.1,0,1,Check-Out,2018-11-02 -Resort Hotel,1,36,2017,May,22,30,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Transient,131.62,0,2,Canceled,2019-12-04 -Resort Hotel,1,172,2017,August,39,17,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,207.22,0,1,Canceled,2020-06-02 -City Hotel,1,0,2016,January,2,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,70.17,0,1,No-Show,2018-11-02 -City Hotel,1,3,2015,August,32,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,237.09,0,0,Check-Out,2018-05-03 -City Hotel,0,237,2017,June,30,21,1,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,252.0,1,3,Check-Out,2020-06-02 -City Hotel,1,47,2016,December,51,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,95.8,0,0,Canceled,2018-08-03 -Resort Hotel,0,258,2016,October,44,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,125.4,0,2,Check-Out,2018-08-03 -City Hotel,1,0,2016,December,53,5,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,1,No Deposit,12.0,179.0,0,Transient,102.39,0,0,Canceled,2018-12-03 -Resort Hotel,1,315,2017,May,23,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,128.18,0,2,Canceled,2020-05-03 -City Hotel,0,26,2016,October,35,6,2,4,2,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,109.29,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2016,November,4,6,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.41,0,1,Check-Out,2019-06-03 -Resort Hotel,0,271,2016,September,35,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,239.8,0,2,Check-Out,2019-08-04 -City Hotel,1,306,2015,July,32,19,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,166.15,0,1,Canceled,2018-06-02 -City Hotel,0,96,2017,June,14,15,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,87.58,0,0,Check-Out,2020-03-03 -City Hotel,1,2,2017,April,21,20,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,98.02,0,0,Canceled,2019-11-03 -Resort Hotel,0,22,2017,June,9,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,94.42,0,0,Check-Out,2020-03-03 -City Hotel,1,15,2016,February,9,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,61.42,0,0,Canceled,2018-11-02 -City Hotel,0,2,2015,September,35,19,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.59,0,2,Check-Out,2018-09-02 -Resort Hotel,1,1,2017,July,28,16,2,1,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,176.61,0,0,Canceled,2020-02-01 -City Hotel,0,321,2016,June,36,14,0,4,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,99.82,0,0,Check-Out,2019-06-03 -City Hotel,0,18,2017,July,24,28,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.67,0,0,Check-Out,2020-03-03 -City Hotel,1,102,2017,June,26,24,0,5,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,100.93,0,0,Canceled,2018-10-03 -Resort Hotel,0,187,2017,September,35,28,0,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,110.59,1,0,Check-Out,2019-11-03 -Resort Hotel,0,16,2016,October,45,18,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,61.32,0,0,Check-Out,2019-08-04 -City Hotel,0,18,2015,December,53,28,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,112.38,0,0,Check-Out,2018-11-02 -Resort Hotel,1,232,2017,July,32,17,2,5,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,283.0,179.0,0,Transient,88.58,0,0,Canceled,2019-07-04 -City Hotel,0,4,2016,December,51,19,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,8.0,179.0,0,Transient,105.52,0,1,Check-Out,2019-10-04 -City Hotel,0,104,2017,May,23,24,1,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,181.83,0,0,Check-Out,2020-06-02 -City Hotel,0,84,2017,May,21,18,0,1,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,8.0,331.0,0,Contract,84.85,0,0,Check-Out,2020-02-01 -City Hotel,0,39,2017,May,23,14,0,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,1,No Deposit,18.0,179.0,0,Transient,189.32,1,0,Check-Out,2020-06-02 -Resort Hotel,0,6,2015,August,44,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,241.0,179.0,0,Group,59.64,0,1,Check-Out,2018-06-02 -City Hotel,1,0,2016,November,50,12,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,1,No Deposit,13.0,278.0,0,Transient,0.0,0,0,Canceled,2019-09-03 -Resort Hotel,0,1,2015,August,31,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,46.71,1,2,Check-Out,2018-06-02 -City Hotel,1,45,2015,July,53,9,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.52,0,0,Canceled,2018-05-03 -Resort Hotel,1,248,2016,July,26,4,2,5,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,189.0,179.0,0,Transient,145.29,1,0,Canceled,2019-05-04 -Resort Hotel,0,19,2017,May,21,29,0,1,2,0.0,0,HB,IRL,Online TA,TA/TO,1,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,78.96,1,0,Check-Out,2020-02-01 -Resort Hotel,1,30,2016,December,51,27,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,61,Transient-Party,60.79,0,0,Canceled,2018-12-03 -City Hotel,1,36,2016,July,34,30,2,5,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,59.09,0,0,No-Show,2018-12-03 -Resort Hotel,0,52,2017,August,37,16,2,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,202.41,1,0,Check-Out,2020-06-02 -City Hotel,1,34,2017,January,3,5,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,105.25,0,0,Canceled,2019-11-03 -City Hotel,1,15,2017,February,8,21,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,111.2,0,0,Canceled,2020-02-01 -City Hotel,0,5,2017,June,27,18,2,1,1,0.0,0,SC,,Corporate,Corporate,1,0,1,A,C,0,No Deposit,15.0,45.0,0,Transient,96.37,0,0,Check-Out,2020-04-02 -City Hotel,1,243,2015,July,35,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.6,0,0,Canceled,2018-05-03 -Resort Hotel,0,10,2017,June,31,15,0,4,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,215.21,1,1,Check-Out,2020-07-03 -City Hotel,1,229,2017,July,30,30,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,99.72,0,0,Canceled,2020-06-02 -City Hotel,1,245,2016,May,21,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,102.64,0,0,Canceled,2020-02-01 -City Hotel,0,10,2016,July,33,29,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,118.96,0,0,Check-Out,2019-06-03 -City Hotel,0,137,2017,June,26,2,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,133.52,0,0,Check-Out,2020-05-03 -City Hotel,0,92,2015,December,50,21,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Contract,39.97,0,0,Check-Out,2018-09-02 -City Hotel,0,64,2017,August,32,9,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,203.31,0,2,Check-Out,2020-06-02 -City Hotel,0,22,2015,August,38,21,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,153.84,1,1,Check-Out,2018-07-03 -City Hotel,1,333,2016,September,29,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.74,0,0,Canceled,2018-01-03 -City Hotel,1,57,2015,December,53,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,81.77,0,0,Canceled,2018-08-03 -Resort Hotel,1,159,2017,August,28,18,2,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,240.0,179.0,0,Transient,194.39,0,1,Canceled,2020-07-03 -Resort Hotel,0,238,2016,December,51,21,2,4,2,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,E,D,0,No Deposit,14.0,179.0,0,Transient-Party,62.52,0,0,Check-Out,2019-04-03 -Resort Hotel,0,99,2015,December,53,31,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,1,No Deposit,89.0,179.0,0,Transient-Party,46.0,0,2,Check-Out,2018-06-02 -Resort Hotel,0,13,2016,August,38,24,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,117.53,1,1,Check-Out,2019-05-04 -City Hotel,0,34,2016,October,43,27,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,70.14,0,0,Check-Out,2019-06-03 -Resort Hotel,0,228,2017,August,36,30,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,196.68,0,3,Check-Out,2019-07-04 -Resort Hotel,0,17,2016,April,19,28,2,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,241.0,179.0,0,Transient,71.84,0,2,Check-Out,2019-03-04 -Resort Hotel,0,100,2016,July,25,21,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,132.15,0,2,Check-Out,2019-06-03 -Resort Hotel,0,152,2017,February,9,13,2,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,26.72,0,0,Check-Out,2020-01-04 -Resort Hotel,1,102,2017,April,17,6,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,84.62,0,2,Check-Out,2020-03-03 -City Hotel,0,30,2016,February,49,10,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.81,0,1,Check-Out,2019-11-03 -City Hotel,0,43,2017,October,9,19,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.11,0,3,Check-Out,2019-12-04 -City Hotel,0,199,2016,June,53,23,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,92.09,0,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2017,June,35,17,4,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,17.0,331.0,0,Transient,80.43,0,0,Check-Out,2020-03-03 -Resort Hotel,1,47,2015,August,37,30,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,141.86,0,2,No-Show,2018-05-03 -Resort Hotel,0,12,2016,May,23,20,4,3,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,118.12,1,0,Check-Out,2019-08-04 -City Hotel,1,211,2016,October,45,15,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,39,Transient,126.11,0,0,Canceled,2019-07-04 -Resort Hotel,1,54,2015,August,35,12,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,43.84,0,0,Canceled,2018-08-03 -City Hotel,0,46,2017,May,23,24,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,219.47,0,1,Check-Out,2020-03-03 -City Hotel,1,9,2016,January,8,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.49,0,0,Canceled,2018-10-03 -City Hotel,0,0,2016,February,4,27,0,1,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,D,0,No Deposit,35.0,331.0,0,Transient,95.68,0,0,Check-Out,2019-01-03 -Resort Hotel,0,88,2016,March,15,17,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,164.94,0,1,Check-Out,2019-01-03 -City Hotel,1,208,2016,June,24,10,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,135.0,179.0,0,Transient-Party,93.97,0,0,Canceled,2019-02-01 -City Hotel,0,152,2015,March,17,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,42.54,0,0,Check-Out,2018-12-03 -City Hotel,1,1,2016,June,4,17,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,42,Transient,97.19,0,0,No-Show,2019-12-04 -City Hotel,0,271,2015,September,36,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,37.58,0,2,Check-Out,2018-08-03 -City Hotel,1,19,2017,May,23,27,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.26,0,0,Canceled,2020-05-03 -City Hotel,0,25,2015,September,36,10,0,4,1,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Group,108.66,0,0,Check-Out,2018-08-03 -Resort Hotel,0,143,2016,March,11,21,0,10,3,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,326.0,179.0,75,Transient,99.44,0,0,Check-Out,2019-04-03 -City Hotel,0,11,2016,March,10,7,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,64.77,0,0,Check-Out,2019-01-03 -City Hotel,0,5,2016,November,37,31,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,74.0,0,Transient-Party,72.28,0,0,Check-Out,2019-09-03 -Resort Hotel,0,11,2016,October,46,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,312.0,179.0,0,Transient-Party,30.0,0,0,Check-Out,2019-11-03 -Resort Hotel,1,18,2015,December,51,25,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,74.69,0,0,Check-Out,2018-10-03 -Resort Hotel,0,25,2015,October,44,20,0,4,2,0.0,0,HB,,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,97.2,0,0,Check-Out,2018-08-03 -City Hotel,1,157,2017,June,28,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,210.0,179.0,0,Transient,166.24,0,0,Canceled,2020-05-03 -City Hotel,1,89,2017,May,22,2,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,103.89,0,0,Canceled,2019-09-03 -Resort Hotel,0,1,2016,January,11,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,258.0,0,Transient,40.83,1,0,Check-Out,2019-06-03 -Resort Hotel,1,140,2016,August,37,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,144.37,1,1,Canceled,2019-06-03 -Resort Hotel,0,0,2017,May,16,27,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-07-03 -Resort Hotel,1,163,2015,November,53,27,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.14,0,0,Canceled,2017-12-03 -City Hotel,1,42,2016,December,37,16,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.11,0,1,Canceled,2019-05-04 -City Hotel,0,13,2016,December,3,9,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.69,0,0,Check-Out,2019-10-04 -City Hotel,1,78,2016,May,22,26,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,71.72,0,2,Canceled,2019-01-03 -City Hotel,1,273,2016,June,17,24,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,93.68,0,0,Canceled,2019-01-03 -City Hotel,0,21,2017,April,21,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,127.39,0,3,Check-Out,2020-05-03 -City Hotel,0,116,2016,June,23,27,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,95.0,179.0,59,Transient-Party,122.66,0,0,Check-Out,2019-04-03 -City Hotel,1,208,2017,August,32,8,2,4,2,0.0,0,HB,,Online TA,TA/TO,0,1,0,D,E,0,No Deposit,8.0,179.0,0,Transient,192.32,0,0,Canceled,2020-05-03 -City Hotel,1,185,2017,February,11,12,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.03,0,0,Canceled,2019-10-04 -City Hotel,1,48,2016,May,21,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,113.94,0,0,Canceled,2019-02-01 -Resort Hotel,0,36,2016,October,45,17,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,95.24,0,0,Check-Out,2019-07-04 -City Hotel,1,317,2016,June,15,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,83.0,179.0,41,Transient,73.38,0,0,Canceled,2018-11-02 -Resort Hotel,0,59,2016,March,16,18,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,67.04,0,2,Check-Out,2019-02-01 -Resort Hotel,0,118,2017,March,17,7,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,63.41,0,0,Canceled,2020-02-01 -City Hotel,0,43,2016,June,29,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,69.0,0,Transient-Party,74.35,0,1,Check-Out,2019-06-03 -Resort Hotel,0,49,2015,December,49,9,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,38.79,0,2,Check-Out,2018-12-03 -Resort Hotel,1,325,2015,August,35,30,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,61.19,0,0,Canceled,2019-07-04 -Resort Hotel,0,54,2016,June,30,3,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,76.8,1,1,Check-Out,2019-03-04 -City Hotel,0,93,2016,July,24,13,0,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,114.54,1,1,Check-Out,2018-06-02 -City Hotel,0,40,2017,March,9,11,1,3,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.91,0,1,Check-Out,2020-03-03 -Resort Hotel,0,81,2016,January,4,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,71.13,0,0,Check-Out,2018-12-03 -Resort Hotel,0,45,2016,October,43,21,0,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,101.4,0,2,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,October,45,9,2,2,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,170.0,0,Transient,69.29,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2015,July,34,8,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient-Party,107.33,0,3,Check-Out,2018-05-03 -Resort Hotel,1,88,2017,August,38,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,72.91,0,0,Canceled,2020-07-03 -City Hotel,1,274,2015,September,45,30,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,148.67,0,0,Canceled,2018-06-02 -City Hotel,1,52,2017,May,16,11,2,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.08,0,0,Canceled,2019-11-03 -Resort Hotel,0,154,2017,January,7,2,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,45.61,0,0,Check-Out,2019-12-04 -Resort Hotel,0,197,2016,June,37,18,2,7,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,2,No Deposit,350.0,331.0,0,Transient,47.05,1,0,Check-Out,2019-08-04 -Resort Hotel,0,98,2015,July,53,10,2,7,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,165.0,179.0,0,Transient-Party,121.21,0,0,Check-Out,2018-09-02 -Resort Hotel,0,154,2017,March,33,29,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,167.0,179.0,0,Transient-Party,80.7,0,0,Check-Out,2019-12-04 -City Hotel,1,32,2016,March,11,27,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,88.0,179.0,0,Transient,67.94,0,0,Canceled,2018-10-03 -Resort Hotel,0,47,2017,August,37,25,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,134.35,0,0,Check-Out,2020-07-03 -Resort Hotel,0,102,2015,December,51,27,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,87.53,0,0,Check-Out,2018-12-03 -City Hotel,0,18,2016,April,15,11,2,4,3,1.0,0,SC,USA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,132.12,1,2,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,September,44,7,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,226.0,0,Transient,39.81,1,0,Check-Out,2019-10-04 -City Hotel,1,1,2017,June,26,8,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,123.87,0,0,Canceled,2020-03-03 -Resort Hotel,0,42,2017,January,3,27,0,7,1,0.0,0,BB,,Groups,Direct,0,0,0,A,D,0,No Deposit,13.0,83.0,0,Transient,36.05,1,0,Check-Out,2019-10-04 -Resort Hotel,0,257,2015,October,44,21,2,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.93,0,0,Check-Out,2018-09-02 -Resort Hotel,0,28,2017,March,10,17,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,93.94,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,December,49,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -City Hotel,1,268,2016,June,25,27,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.9,0,0,Canceled,2019-02-01 -City Hotel,0,101,2017,June,25,30,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.69,0,1,Check-Out,2020-05-03 -Resort Hotel,0,98,2016,June,35,6,4,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,148.98,1,1,Check-Out,2020-05-03 -Resort Hotel,0,1,2015,August,34,27,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,226.91,1,1,Check-Out,2018-06-02 -City Hotel,1,108,2017,August,38,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,153.47,0,0,Canceled,2019-12-04 -City Hotel,1,99,2017,April,20,6,0,4,3,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Canceled,2020-02-01 -Resort Hotel,0,254,2017,July,26,5,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient-Party,106.31,0,1,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,February,9,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,60.59,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2015,September,37,23,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,111.04,1,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,October,42,9,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,137.13,0,1,Check-Out,2019-09-03 -City Hotel,0,200,2016,July,43,30,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.43,0,2,Check-Out,2019-05-04 -Resort Hotel,0,325,2017,March,16,31,0,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,1,Refundable,10.0,179.0,0,Transient,163.14,0,0,Check-Out,2020-03-03 -City Hotel,0,32,2015,August,37,21,2,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,129.47,0,0,Check-Out,2018-05-03 -City Hotel,1,17,2016,May,24,13,0,1,1,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,115.09,0,1,Canceled,2019-03-04 -City Hotel,1,208,2016,September,44,21,2,1,1,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,117.9,0,0,Canceled,2019-08-04 -Resort Hotel,0,150,2017,March,10,5,1,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,3,No Deposit,239.0,179.0,0,Transient,115.71,1,1,Check-Out,2019-12-04 -Resort Hotel,1,150,2015,December,53,31,2,4,2,0.0,0,Undefined,BEL,Groups,TA/TO,0,0,0,D,D,0,Non Refund,34.0,179.0,0,Transient,88.42,0,0,Canceled,2018-10-03 -City Hotel,1,109,2016,February,11,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.87,0,0,Canceled,2019-03-04 -City Hotel,0,103,2017,August,35,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,152.15,0,0,Check-Out,2020-06-02 -City Hotel,1,15,2015,September,44,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,91.34,1,0,Canceled,2018-08-03 -City Hotel,1,231,2017,May,22,27,0,1,3,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,F,0,No Deposit,178.0,179.0,0,Transient,76.95,0,0,Canceled,2020-01-04 -Resort Hotel,0,10,2016,March,18,23,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,37.5,0,0,Check-Out,2019-02-01 -City Hotel,1,289,2016,June,26,9,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient,80.84,0,0,Canceled,2019-05-04 -City Hotel,0,143,2017,June,35,18,2,3,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,95.55,0,1,Check-Out,2020-07-03 -City Hotel,0,20,2017,May,22,21,1,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,217.21,0,0,Check-Out,2020-04-02 -Resort Hotel,1,34,2016,February,10,5,2,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,195.26,0,1,Canceled,2019-01-03 -City Hotel,0,100,2017,April,23,9,0,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient-Party,126.37,0,0,Check-Out,2020-03-03 -City Hotel,1,155,2017,December,9,24,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,97.22,0,0,Canceled,2019-11-03 -City Hotel,1,258,2017,February,38,21,2,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,Refundable,9.0,179.0,0,Transient,182.45,0,0,Canceled,2019-11-03 -Resort Hotel,0,105,2016,October,34,15,3,4,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,94.0,179.0,0,Transient,102.44,0,0,Check-Out,2018-08-03 -Resort Hotel,1,387,2015,October,43,5,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,58.91,0,0,Canceled,2018-07-03 -Resort Hotel,0,13,2017,August,36,12,0,3,2,2.0,0,BB,ITA,Direct,Direct,0,0,0,F,F,2,No Deposit,16.0,179.0,0,Transient,195.65,1,1,Check-Out,2019-10-04 -Resort Hotel,0,0,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,2,No Deposit,17.0,224.0,0,Transient,40.48,0,0,Check-Out,2019-11-03 -City Hotel,0,29,2016,May,21,30,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.96,0,1,Check-Out,2019-06-03 -Resort Hotel,0,37,2016,May,21,28,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,132.16,0,1,Check-Out,2019-04-03 -City Hotel,1,1,2016,April,32,8,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,261.0,0,Transient,1.31,0,0,Canceled,2019-03-04 -Resort Hotel,0,93,2016,July,36,21,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,9.0,179.0,0,Transient,185.18,0,1,Check-Out,2019-04-03 -City Hotel,0,25,2016,March,11,13,0,1,1,0.0,0,BB,,Complementary,TA/TO,1,0,1,F,F,1,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-01-03 -Resort Hotel,0,52,2017,June,30,19,0,10,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,119.26,0,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2015,December,50,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,26.99,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2017,June,25,15,0,2,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,161.78,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,March,15,7,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,B,D,0,No Deposit,74.0,179.0,0,Transient-Party,66.24,0,1,Check-Out,2019-03-04 -City Hotel,1,80,2016,December,45,26,2,3,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,67.14,0,0,Canceled,2019-03-04 -Resort Hotel,0,49,2015,October,37,31,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,61.42,1,1,Check-Out,2018-08-03 -Resort Hotel,0,35,2016,February,9,19,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,87.0,179.0,0,Transient-Party,78.4,0,0,Check-Out,2019-11-03 -City Hotel,0,219,2016,July,25,21,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,131.52,1,1,Check-Out,2019-05-04 -Resort Hotel,1,313,2017,July,9,20,2,5,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,170.0,179.0,0,Transient,116.2,0,1,Canceled,2019-11-03 -City Hotel,0,2,2017,July,26,6,0,1,2,0.0,0,BB,CHE,Aviation,TA/TO,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,116.51,0,0,Check-Out,2020-04-02 -Resort Hotel,0,99,2016,May,23,25,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,115.24,1,1,Check-Out,2020-03-03 -Resort Hotel,1,71,2016,August,36,15,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,94.25,0,0,No-Show,2019-01-03 -City Hotel,1,298,2016,November,43,21,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,L,0,No Deposit,181.0,179.0,0,Transient,59.54,0,0,Canceled,2019-11-03 -City Hotel,1,143,2016,July,31,10,0,1,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,133.2,0,0,Canceled,2018-08-03 -City Hotel,1,366,2017,March,15,22,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,19,Transient-Party,74.5,0,0,Canceled,2019-10-04 -Resort Hotel,0,117,2015,December,53,21,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,45.91,0,0,Check-Out,2018-11-02 -City Hotel,0,19,2016,June,27,6,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,B,0,No Deposit,81.0,179.0,41,Transient,71.83,0,1,Check-Out,2019-03-04 -City Hotel,0,158,2017,July,24,26,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,24.0,179.0,0,Transient,62.63,0,0,Check-Out,2020-06-02 -City Hotel,0,37,2016,October,46,6,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,103.08,0,2,Check-Out,2019-12-04 -Resort Hotel,0,149,2016,April,17,15,0,3,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,83.13,0,0,Check-Out,2019-03-04 -Resort Hotel,1,6,2016,July,35,27,2,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,80.56,0,0,Canceled,2019-01-03 -City Hotel,0,200,2017,March,16,9,2,3,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.53,0,3,Check-Out,2020-04-02 -Resort Hotel,0,226,2015,July,37,5,2,5,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,F,E,0,No Deposit,14.0,179.0,0,Transient,204.65,0,0,Check-Out,2018-05-03 -Resort Hotel,1,50,2017,February,9,24,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,D,D,0,Non Refund,41.0,331.0,0,Transient,71.27,0,0,Canceled,2019-11-03 -City Hotel,0,9,2017,May,23,15,0,3,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,K,1,No Deposit,10.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-04-03 -City Hotel,0,12,2017,April,17,15,0,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.29,0,3,Check-Out,2020-02-01 -City Hotel,1,14,2016,May,21,24,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.44,0,3,Canceled,2019-02-01 -City Hotel,1,44,2017,August,37,28,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,95.58,0,2,Canceled,2020-06-02 -Resort Hotel,0,13,2015,November,42,6,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,88.88,1,0,Check-Out,2018-09-02 -City Hotel,0,112,2016,June,20,26,1,3,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,78.1,0,0,Check-Out,2019-06-03 -Resort Hotel,0,148,2015,December,53,3,1,3,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,86.65,0,2,Check-Out,2019-10-04 -City Hotel,1,21,2015,September,45,9,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,75.62,0,0,Canceled,2018-08-03 -City Hotel,1,90,2017,March,16,18,2,0,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,66.83,0,0,Canceled,2019-03-04 -City Hotel,0,99,2017,August,22,6,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.2,0,2,Check-Out,2020-07-03 -City Hotel,1,267,2015,October,42,12,2,2,2,0.0,0,BB,,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,47.92,0,0,Canceled,2017-12-03 -City Hotel,0,159,2016,October,49,30,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,124.07,0,0,Check-Out,2019-11-03 -City Hotel,1,152,2015,July,28,9,2,1,2,0.0,0,SC,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,116.22,0,0,No-Show,2018-06-02 -Resort Hotel,0,99,2017,July,30,25,0,4,2,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,127.36,0,2,Check-Out,2020-04-02 -City Hotel,1,1,2016,January,4,12,1,1,1,0.0,0,BB,PRT,Corporate,Undefined,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,62.99,0,0,No-Show,2019-01-03 -Resort Hotel,0,9,2015,February,9,18,2,2,1,0.0,0,FB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,331.0,0,Transient,47.49,0,0,Check-Out,2019-02-01 -City Hotel,1,319,2016,July,37,15,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,130.0,0,0,Canceled,2019-04-03 -Resort Hotel,0,5,2015,December,51,5,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,34.92,0,0,Check-Out,2018-11-02 -City Hotel,0,17,2016,January,11,3,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,195.0,179.0,19,Transient-Party,70.67,0,0,Check-Out,2018-11-02 -Resort Hotel,0,36,2016,November,51,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,35.53,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,January,2,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,63.0,0,Transient,30.0,0,0,Check-Out,2019-12-04 -City Hotel,0,2,2017,January,11,5,0,3,2,0.0,0,BB,NLD,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,74.0,0,Transient,72.13,0,0,Check-Out,2020-03-03 -City Hotel,0,107,2016,July,22,20,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,7.0,179.0,0,Transient,143.96,0,3,Check-Out,2020-04-02 -Resort Hotel,0,23,2015,December,53,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,51.36,0,0,No-Show,2018-08-03 -Resort Hotel,0,22,2016,May,22,21,0,1,2,1.0,0,BB,DEU,Groups,Direct,0,0,0,C,C,2,No Deposit,286.0,179.0,0,Transient,78.8,0,0,Check-Out,2019-03-04 -Resort Hotel,1,9,2015,August,33,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,61.34,0,0,Canceled,2018-12-03 -City Hotel,0,250,2016,July,21,24,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.06,0,3,Check-Out,2019-01-03 -City Hotel,0,93,2017,March,10,13,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,91.05,0,2,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,February,9,13,1,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,244.0,179.0,0,Transient,67.8,0,0,Canceled,2018-11-02 -City Hotel,0,116,2016,August,36,24,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,105.71,1,1,Check-Out,2019-06-03 -Resort Hotel,0,6,2015,June,28,30,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.67,0,0,Check-Out,2019-06-03 -Resort Hotel,0,150,2016,October,43,14,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,240.0,179.0,0,Transient,113.58,1,0,Check-Out,2019-08-04 -Resort Hotel,0,32,2016,June,30,31,2,5,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,89.77,0,0,Check-Out,2019-02-01 -City Hotel,0,245,2017,March,31,21,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,61.55,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2017,May,21,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.17,0,1,Check-Out,2020-03-03 -Resort Hotel,0,35,2017,April,16,7,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient-Party,97.75,1,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,December,51,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,214.0,0,Transient,87.33,0,0,Check-Out,2019-11-03 -Resort Hotel,0,104,2016,September,38,21,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,161.55,0,3,Check-Out,2019-08-04 -Resort Hotel,0,98,2017,May,22,24,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,312.0,179.0,0,Transient-Party,71.94,0,1,Check-Out,2020-04-02 -City Hotel,0,8,2016,August,35,4,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,178.8,0,2,Check-Out,2019-11-03 -Resort Hotel,0,247,2016,December,44,28,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,236.0,179.0,0,Transient,124.17,1,2,Check-Out,2019-08-04 -City Hotel,1,442,2016,October,45,15,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.87,0,0,Canceled,2017-10-03 -City Hotel,0,1,2016,April,23,27,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,1,No Deposit,16.0,180.0,0,Transient-Party,79.73,0,0,Check-Out,2019-03-04 -Resort Hotel,0,165,2015,September,35,20,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,84.31,0,0,Check-Out,2018-07-03 -City Hotel,0,152,2015,July,30,23,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,98.65,0,0,Check-Out,2018-05-03 -Resort Hotel,0,5,2016,February,8,6,2,1,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,72.34,0,1,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,April,14,18,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,90.0,179.0,0,Transient,61.73,0,0,Check-Out,2019-03-04 -City Hotel,0,47,2016,September,45,31,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.78,0,2,Check-Out,2019-08-04 -City Hotel,0,13,2016,December,53,12,0,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,33.0,63.0,0,Transient-Party,123.12,0,0,Check-Out,2019-08-04 -Resort Hotel,1,2,2016,December,42,5,2,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,237.0,0,Transient,40.21,0,0,Canceled,2019-09-03 -Resort Hotel,0,49,2017,May,36,21,0,3,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,73.1,0,0,Check-Out,2020-07-03 -Resort Hotel,1,270,2016,December,49,21,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,275.0,179.0,0,Transient,109.89,0,0,Canceled,2019-10-04 -City Hotel,0,45,2016,May,51,12,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,99.25,0,0,Check-Out,2019-12-04 -City Hotel,1,289,2015,August,27,30,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,147.98,0,1,Canceled,2019-03-04 -Resort Hotel,0,2,2015,August,36,27,3,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,119.06,0,0,Check-Out,2018-09-02 -Resort Hotel,0,316,2016,May,17,30,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,351.0,224.0,0,Transient-Party,44.14,0,0,Check-Out,2019-06-03 -City Hotel,1,41,2016,December,3,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.13,0,0,Canceled,2018-10-03 -Resort Hotel,0,12,2016,March,16,26,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,I,0,No Deposit,241.0,179.0,0,Transient,38.57,0,1,Check-Out,2019-02-01 -Resort Hotel,0,92,2015,October,41,2,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Contract,41.94,0,1,Check-Out,2018-08-03 -Resort Hotel,1,116,2016,May,22,24,0,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,D,D,0,No Deposit,13.0,331.0,0,Transient-Party,62.56,0,0,Canceled,2019-02-01 -City Hotel,0,6,2017,January,10,28,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,G,F,0,No Deposit,15.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-10-04 -City Hotel,0,0,2016,October,43,11,2,0,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,G,F,2,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,1,273,2016,October,41,2,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,124.6,0,1,Canceled,2019-07-04 -City Hotel,0,149,2017,August,32,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,130.84,0,0,Check-Out,2020-06-02 -City Hotel,0,38,2016,October,44,2,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,141.24,0,0,Check-Out,2018-08-03 -City Hotel,0,50,2016,April,17,8,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,110.38,0,2,Check-Out,2019-03-04 -City Hotel,0,89,2015,July,31,27,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.28,0,0,Check-Out,2018-05-03 -Resort Hotel,0,7,2016,August,38,19,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,162.39,0,1,Check-Out,2019-06-03 -Resort Hotel,1,304,2016,October,27,22,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,71.2,0,2,No-Show,2019-03-04 -Resort Hotel,0,0,2015,September,36,16,2,1,1,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,102.29,0,0,Check-Out,2018-06-02 -Resort Hotel,0,197,2016,October,44,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,166.0,179.0,0,Transient,69.53,0,0,Check-Out,2019-09-03 -Resort Hotel,0,41,2016,October,42,30,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,208.82,1,2,Check-Out,2019-05-04 -City Hotel,0,31,2016,July,32,16,0,3,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.35,0,1,Check-Out,2019-05-04 -Resort Hotel,0,2,2015,September,35,19,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,217.75,1,3,Check-Out,2018-08-03 -City Hotel,0,261,2015,September,44,25,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,70.6,1,1,Check-Out,2018-12-03 -City Hotel,1,237,2015,July,33,26,2,1,3,2.0,0,HB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,6.0,179.0,0,Contract,87.96,0,0,Canceled,2018-11-02 -City Hotel,0,147,2016,December,4,27,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,274.0,179.0,0,Transient,75.06,0,0,Check-Out,2018-12-03 -City Hotel,0,58,2015,October,47,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,247.0,0,Transient-Party,60.46,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2016,August,43,21,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-09-03 -Resort Hotel,0,111,2016,October,44,29,1,5,2,0.0,0,HB,USA,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,182.0,179.0,65,Transient,37.92,0,0,Check-Out,2019-09-03 -Resort Hotel,0,27,2015,December,53,28,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,32.21,0,2,Check-Out,2018-11-02 -Resort Hotel,0,45,2017,April,17,30,2,2,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,D,A,0,No Deposit,40.0,179.0,0,Transient-Party,80.37,0,0,Check-Out,2020-04-02 -City Hotel,1,311,2016,July,37,10,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.55,0,0,Canceled,2019-08-04 -City Hotel,1,247,2015,September,43,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.75,0,0,Canceled,2017-11-02 -Resort Hotel,0,32,2015,November,43,29,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,38.99,1,0,Check-Out,2019-12-04 -Resort Hotel,0,16,2016,December,51,24,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,31.38,0,0,Check-Out,2019-12-04 -Resort Hotel,1,206,2017,July,26,20,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,154.0,179.0,0,Transient,84.18,0,0,Canceled,2019-10-04 -City Hotel,0,48,2015,December,53,9,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,23.0,179.0,75,Transient-Party,125.56,0,0,Check-Out,2018-08-03 -Resort Hotel,0,11,2016,September,35,13,2,2,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,62.53,0,1,Check-Out,2019-06-03 -City Hotel,1,338,2015,September,37,26,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,67.23,0,0,Canceled,2017-11-02 -Resort Hotel,1,67,2016,April,18,27,0,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,311.0,179.0,0,Transient,43.18,0,0,Canceled,2019-01-03 -City Hotel,0,148,2016,October,42,4,2,1,1,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.65,0,2,Check-Out,2019-12-04 -Resort Hotel,1,164,2015,October,43,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,35.02,0,0,Canceled,2018-07-03 -City Hotel,0,38,2016,December,53,28,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.27,0,2,Check-Out,2019-09-03 -City Hotel,1,106,2016,November,51,24,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,55.76,0,2,Canceled,2019-09-03 -City Hotel,0,0,2017,February,9,6,2,0,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,231.97,0,0,Check-Out,2018-10-03 -Resort Hotel,1,203,2015,July,38,28,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,F,0,No Deposit,244.0,179.0,0,Transient,77.78,0,1,Canceled,2018-06-02 -City Hotel,1,156,2017,February,10,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,70.1,0,0,Canceled,2018-12-03 -Resort Hotel,0,12,2017,June,22,10,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,366.0,179.0,0,Transient,151.05,1,0,Check-Out,2020-04-02 -City Hotel,1,0,2016,January,9,27,1,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,74.03,0,0,No-Show,2019-06-03 -Resort Hotel,0,1,2016,February,9,9,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,108.06,1,0,Check-Out,2019-01-03 -City Hotel,0,244,2016,August,42,6,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.74,0,2,Check-Out,2019-06-03 -Resort Hotel,1,307,2017,July,35,14,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,243.67,0,0,Canceled,2020-03-03 -City Hotel,0,7,2015,September,46,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient-Party,112.74,0,1,Check-Out,2018-09-02 -City Hotel,0,32,2016,August,45,12,0,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.14,0,2,Check-Out,2020-01-04 -Resort Hotel,0,0,2016,October,44,3,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,50.87,0,1,Check-Out,2019-08-04 -Resort Hotel,0,61,2016,May,50,8,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,303.0,179.0,0,Transient-Party,62.55,0,0,Check-Out,2019-01-03 -Resort Hotel,0,21,2015,November,38,6,0,2,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,312.0,179.0,0,Transient-Party,62.91,0,0,Check-Out,2018-09-02 -City Hotel,1,417,2015,September,47,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.13,0,0,Canceled,2018-01-03 -City Hotel,0,236,2016,June,26,21,0,3,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,155.93,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,July,31,20,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,93.08,0,1,Check-Out,2020-06-02 -City Hotel,1,22,2015,June,36,10,2,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,107.06,0,0,Canceled,2018-06-02 -Resort Hotel,0,8,2016,January,10,9,2,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,39.78,1,0,Check-Out,2018-10-03 -City Hotel,0,95,2017,June,20,15,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,81.39,0,0,Check-Out,2020-03-03 -City Hotel,1,153,2016,June,22,28,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,41,Transient,121.58,0,0,Canceled,2019-02-01 -City Hotel,0,2,2017,August,31,20,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,155.47,0,0,Check-Out,2020-06-02 -Resort Hotel,0,121,2015,December,49,15,2,4,1,0.0,0,BB,BRA,Offline TA/TO,Direct,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient-Party,47.76,0,2,Check-Out,2018-12-03 -City Hotel,1,143,2017,June,29,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,106.26,0,0,Canceled,2020-03-03 -Resort Hotel,0,136,2015,December,53,31,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-11-02 -City Hotel,1,83,2016,June,30,18,1,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.45,0,3,Canceled,2019-06-03 -City Hotel,1,90,2017,March,19,10,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,61.78,0,0,Canceled,2020-01-04 -Resort Hotel,0,34,2015,October,42,8,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,35.85,0,0,Check-Out,2018-08-03 -Resort Hotel,1,272,2016,July,49,23,3,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,226.0,179.0,0,Transient,78.56,0,0,Canceled,2019-06-03 -City Hotel,0,0,2016,September,42,21,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,140.7,0,0,Check-Out,2019-11-03 -City Hotel,1,417,2016,June,49,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,64,Transient,75.39,0,0,Canceled,2018-08-03 -City Hotel,1,257,2016,December,27,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.0,0,0,Canceled,2018-10-03 -City Hotel,0,30,2017,August,38,21,0,1,3,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,209.38,1,1,Check-Out,2020-06-02 -City Hotel,0,2,2017,February,10,21,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,13.0,331.0,0,Transient,120.18,0,0,Check-Out,2020-03-03 -Resort Hotel,1,253,2016,September,37,13,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,145.16,0,0,Canceled,2019-08-04 -Resort Hotel,0,194,2016,July,33,30,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,119.06,0,0,Check-Out,2018-06-02 -City Hotel,0,45,2017,March,9,23,0,1,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.43,0,2,Check-Out,2020-04-02 -Resort Hotel,0,38,2016,January,5,17,0,2,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,83.71,0,0,Check-Out,2019-10-04 -City Hotel,0,239,2015,October,44,12,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,60.79,0,0,Check-Out,2018-09-02 -Resort Hotel,0,400,2016,December,53,10,1,2,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,74.02,0,2,Check-Out,2019-11-03 -City Hotel,0,103,2017,May,21,16,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,10.0,179.0,0,Transient,173.66,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,October,35,21,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,44.8,0,0,Check-Out,2019-07-04 -City Hotel,1,1,2016,January,3,10,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,63.4,0,1,Canceled,2018-12-03 -City Hotel,0,147,2016,July,32,2,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,99.29,0,1,Check-Out,2019-03-04 -City Hotel,1,260,2017,June,30,26,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,69.09,0,0,Canceled,2019-02-01 -City Hotel,1,321,2016,September,10,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Refundable,9.0,179.0,0,Transient,86.83,0,0,Canceled,2017-12-03 -City Hotel,1,256,2017,June,20,6,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,128.1,0,0,Canceled,2020-02-01 -City Hotel,1,389,2016,August,32,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,211.55,0,0,Canceled,2019-09-03 -City Hotel,1,183,2016,September,42,10,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,147.32,0,0,No-Show,2019-08-04 -Resort Hotel,0,149,2016,August,36,25,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,218.2,1,0,Check-Out,2019-06-03 -Resort Hotel,1,207,2016,May,17,30,0,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Contract,71.3,0,0,Canceled,2019-08-04 -City Hotel,1,141,2015,September,34,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,59.95,0,0,Canceled,2017-11-02 -City Hotel,1,49,2016,October,43,28,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,61.67,0,0,Canceled,2019-10-04 -City Hotel,0,56,2016,October,49,27,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient-Party,125.14,0,2,Check-Out,2019-09-03 -City Hotel,0,3,2015,October,46,27,1,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,243.0,0,Transient-Party,60.83,0,0,Check-Out,2018-09-02 -City Hotel,0,44,2017,May,26,5,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,331.0,0,Transient-Party,73.24,0,0,Check-Out,2020-04-02 -City Hotel,0,220,2015,October,45,21,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,87.67,0,0,Check-Out,2018-07-03 -Resort Hotel,0,47,2016,August,50,10,2,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-07-04 -Resort Hotel,0,353,2017,August,37,28,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,Refundable,30.0,179.0,0,Contract,62.62,0,0,Check-Out,2020-06-02 -Resort Hotel,1,136,2017,May,23,21,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,25.0,179.0,0,Transient,117.14,0,0,Canceled,2019-11-03 -Resort Hotel,1,115,2016,March,17,6,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient-Party,81.63,0,0,Canceled,2019-11-03 -City Hotel,1,96,2016,October,27,27,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.3,0,1,Canceled,2018-08-03 -City Hotel,1,281,2017,June,27,27,2,0,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient-Party,130.64,1,0,Canceled,2020-02-01 -Resort Hotel,0,1,2016,February,9,15,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,139.0,179.0,0,Transient,64.06,0,0,Check-Out,2018-10-03 -City Hotel,0,103,2016,July,25,9,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,120.13,0,1,Check-Out,2019-04-03 -Resort Hotel,0,287,2016,October,10,27,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,180.0,179.0,0,Contract,45.36,0,0,Check-Out,2020-01-04 -City Hotel,0,3,2016,February,11,10,2,1,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,82.08,0,0,Check-Out,2018-10-03 -City Hotel,0,20,2016,May,21,17,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,127.46,0,0,Check-Out,2019-05-04 -Resort Hotel,0,18,2016,November,45,2,0,3,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,26.0,179.0,0,Group,73.18,0,0,Check-Out,2019-11-03 -City Hotel,0,11,2016,November,44,31,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.62,0,1,Check-Out,2019-09-03 -City Hotel,1,54,2017,June,27,29,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,92.88,0,0,Canceled,2020-03-03 -City Hotel,0,94,2017,June,26,27,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,127.0,0,1,Check-Out,2020-04-02 -Resort Hotel,0,35,2017,February,3,17,0,2,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,228.7,0,1,Check-Out,2019-12-04 -City Hotel,1,350,2017,May,21,30,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,87.26,0,0,Canceled,2020-02-01 -City Hotel,0,106,2017,June,31,15,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.78,0,3,Check-Out,2020-07-03 -City Hotel,1,141,2016,December,53,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.82,0,0,Canceled,2019-09-03 -City Hotel,0,12,2015,September,36,24,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,116.66,0,0,Check-Out,2018-08-03 -City Hotel,0,51,2016,March,10,26,2,2,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,65.27,0,0,Check-Out,2019-03-04 -City Hotel,0,26,2016,August,38,28,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,124.59,0,1,Check-Out,2019-05-04 -City Hotel,0,50,2015,August,35,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,39.22,0,0,Check-Out,2018-06-02 -Resort Hotel,0,34,2016,February,53,22,1,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-01-03 -City Hotel,1,159,2017,August,31,12,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,78.99,0,0,Canceled,2020-06-02 -City Hotel,0,47,2017,June,26,19,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,73.57,0,0,Check-Out,2020-06-02 -City Hotel,0,55,2017,January,21,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.4,0,1,Check-Out,2020-03-03 -Resort Hotel,1,310,2017,January,16,15,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,237.0,179.0,0,Transient,67.38,0,1,Canceled,2019-11-03 -City Hotel,0,1,2016,January,4,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,13.0,70.0,0,Transient,43.24,0,0,Check-Out,2018-11-02 -Resort Hotel,0,7,2016,September,44,18,2,1,2,2.0,0,SC,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,134.78,0,0,Check-Out,2018-11-02 -City Hotel,0,68,2016,May,26,23,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,205.85,0,0,Check-Out,2019-04-03 -City Hotel,0,10,2017,March,21,20,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,89.23,0,3,Check-Out,2020-04-02 -City Hotel,1,255,2015,August,38,6,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.51,0,0,Canceled,2018-05-03 -Resort Hotel,0,45,2016,April,22,8,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,161.46,1,1,Check-Out,2019-07-04 -City Hotel,0,8,2017,March,20,21,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,80.79,0,3,Check-Out,2020-01-04 -Resort Hotel,0,230,2016,August,37,29,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,41.56,1,1,Check-Out,2019-07-04 -City Hotel,0,14,2016,November,50,13,1,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,62.69,0,0,Check-Out,2019-12-04 -City Hotel,1,14,2016,November,50,23,2,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,94.45,1,0,Canceled,2019-09-03 -City Hotel,0,7,2016,September,37,14,0,2,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.58,0,0,Check-Out,2019-06-03 -City Hotel,1,50,2016,February,17,16,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,38.78,0,0,Canceled,2018-11-02 -Resort Hotel,0,18,2017,March,17,9,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,236.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,12,2017,June,25,6,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.47,0,3,Check-Out,2020-03-03 -City Hotel,1,135,2015,July,27,30,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,1,A,A,0,No Deposit,11.0,179.0,0,Transient,124.34,0,1,Canceled,2018-06-02 -Resort Hotel,0,157,2016,October,44,2,0,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,74.37,0,0,Check-Out,2018-08-03 -City Hotel,0,94,2017,April,17,22,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,131.89,0,0,Check-Out,2020-01-04 -City Hotel,1,169,2015,July,33,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.01,0,0,Canceled,2018-08-03 -City Hotel,1,53,2015,September,49,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,71.34,0,0,Canceled,2018-08-03 -City Hotel,1,70,2016,May,44,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,60.95,0,0,Canceled,2018-08-03 -City Hotel,1,1,2017,February,4,2,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.34,0,0,No-Show,2019-01-03 -City Hotel,1,4,2016,May,21,15,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,323.0,179.0,0,Transient,62.87,0,0,Canceled,2019-03-04 -City Hotel,0,22,2015,October,47,22,1,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Contract,60.07,0,0,Check-Out,2018-07-03 -City Hotel,0,34,2016,September,47,25,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,176.03,0,2,Check-Out,2019-10-04 -City Hotel,0,42,2016,December,48,19,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,F,F,2,No Deposit,12.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-11-03 -Resort Hotel,0,13,2016,September,49,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,2,No Deposit,16.0,62.0,0,Transient,46.74,0,0,Check-Out,2019-06-03 -City Hotel,0,55,2015,October,45,30,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.76,0,0,Check-Out,2018-09-02 -City Hotel,0,17,2017,July,27,10,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,135.73,0,0,Check-Out,2020-06-02 -City Hotel,1,156,2016,September,43,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,83.07,0,0,Canceled,2018-12-03 -Resort Hotel,0,13,2017,January,53,13,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,1.96,0,0,Check-Out,2019-10-04 -Resort Hotel,0,124,2017,February,11,8,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,106.0,179.0,0,Transient-Party,81.3,0,0,Check-Out,2019-10-04 -City Hotel,1,6,2016,August,46,21,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,128.14,0,0,Canceled,2018-06-02 -City Hotel,1,0,2017,February,8,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,177.0,331.0,0,Transient,42.15,0,0,Canceled,2019-12-04 -Resort Hotel,0,10,2016,November,41,5,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,F,1,No Deposit,16.0,236.0,0,Transient-Party,70.03,0,0,Check-Out,2019-11-03 -City Hotel,0,4,2015,November,51,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,2,No Deposit,15.0,45.0,0,Transient,30.46,0,0,Check-Out,2018-09-02 -City Hotel,0,44,2015,October,42,24,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,37.0,220.0,0,Transient-Party,76.3,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2017,August,30,5,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,2020-07-03 -City Hotel,0,37,2015,October,43,28,0,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,68.87,0,0,Check-Out,2018-09-02 -City Hotel,0,24,2016,October,44,28,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,72.89,0,0,Check-Out,2019-10-04 -City Hotel,0,18,2017,March,11,12,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,79.24,0,0,Check-Out,2019-12-04 -City Hotel,0,12,2016,June,26,23,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.8,0,2,Check-Out,2019-02-01 -City Hotel,0,38,2017,February,36,31,2,0,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.83,0,0,Check-Out,2020-03-03 -City Hotel,1,2,2017,February,8,5,0,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,61.01,0,0,Canceled,2020-02-01 -Resort Hotel,1,409,2017,June,27,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,Non Refund,32.0,179.0,0,Transient,79.03,0,0,Canceled,2019-12-04 -City Hotel,0,0,2016,July,24,10,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,1.02,0,0,Check-Out,2019-05-04 -Resort Hotel,0,36,2015,November,42,18,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,317.0,179.0,0,Group,44.26,0,1,Check-Out,2018-08-03 -Resort Hotel,0,91,2015,July,33,25,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,252.0,179.0,0,Transient,195.44,1,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,December,51,31,0,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient-Party,40.08,0,0,Check-Out,2018-08-03 -City Hotel,1,68,2016,August,35,9,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,88.49,0,1,Canceled,2019-05-04 -Resort Hotel,0,9,2016,December,52,2,0,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,2,No Deposit,244.0,179.0,0,Transient-Party,44.51,1,1,Check-Out,2018-12-03 -Resort Hotel,0,12,2016,February,10,24,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,143.0,179.0,0,Transient,33.9,0,1,Check-Out,2018-10-03 -City Hotel,0,22,2016,September,44,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,74.26,0,0,Canceled,2019-05-04 -City Hotel,0,4,2017,August,36,18,1,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,77.89,0,0,Check-Out,2020-05-03 -City Hotel,0,418,2016,August,35,9,2,1,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,260.0,179.0,0,Transient-Party,93.08,0,0,Check-Out,2019-06-03 -City Hotel,0,104,2016,June,21,29,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,130.22,0,2,Check-Out,2019-03-04 -City Hotel,1,246,2016,April,8,21,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,E,0,Non Refund,25.0,179.0,0,Transient-Party,98.92,0,0,Canceled,2019-02-01 -Resort Hotel,0,192,2017,August,37,25,2,7,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,140.05,0,1,Check-Out,2020-06-02 -City Hotel,1,39,2017,July,27,13,2,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,95.72,0,0,Canceled,2020-03-03 -Resort Hotel,1,58,2016,October,36,31,0,1,2,1.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient-Party,74.52,0,0,Canceled,2019-06-03 -City Hotel,1,96,2017,April,17,31,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,F,0,Non Refund,10.0,179.0,0,Transient,123.97,0,0,Canceled,2020-02-01 -Resort Hotel,1,0,2015,November,46,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,77.48,0,0,Canceled,2018-11-02 -Resort Hotel,1,208,2016,October,43,2,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,92.83,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,February,11,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,42.88,0,0,Check-Out,2018-10-03 -City Hotel,1,58,2017,March,18,10,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,62.0,179.0,0,Transient,128.14,0,0,Canceled,2018-12-03 -City Hotel,1,379,2016,August,35,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,236.0,179.0,0,Transient,160.25,0,0,Canceled,2018-06-02 -Resort Hotel,0,97,2017,May,23,28,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,187.55,0,1,Check-Out,2020-03-03 -City Hotel,0,24,2015,December,53,30,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,94.03,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2017,February,16,12,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,374.0,179.0,0,Transient,168.68,0,1,Check-Out,2020-03-03 -Resort Hotel,0,35,2016,March,17,30,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,249.0,179.0,0,Transient,153.23,0,0,Check-Out,2019-02-01 -Resort Hotel,1,35,2016,March,9,10,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,40.38,0,0,Canceled,2019-03-04 -City Hotel,0,1,2016,February,8,15,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.03,0,1,Check-Out,2019-12-04 -City Hotel,0,49,2017,July,30,1,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.98,0,2,Check-Out,2020-07-03 -Resort Hotel,0,2,2017,February,4,29,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,D,0,Non Refund,378.0,331.0,0,Contract,23.07,0,0,Check-Out,2019-12-04 -Resort Hotel,0,104,2017,January,10,6,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,90.0,179.0,0,Transient,43.32,0,0,Check-Out,2019-06-03 -City Hotel,0,8,2016,March,15,23,2,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,70.58,0,0,Check-Out,2019-02-01 -Resort Hotel,0,107,2016,March,11,6,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,49.89,0,1,Check-Out,2019-03-04 -Resort Hotel,0,34,2017,August,31,20,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,169.0,179.0,0,Transient-Party,107.33,0,0,Check-Out,2020-06-02 -City Hotel,0,267,2017,July,26,19,2,4,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,88.48,0,1,Check-Out,2020-06-02 -City Hotel,0,2,2016,October,41,9,0,1,3,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,2,No Deposit,16.0,281.0,0,Transient,2.22,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2015,August,38,13,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,138.89,0,0,Check-Out,2018-08-03 -City Hotel,0,54,2016,June,26,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,84.74,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2017,March,10,23,1,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,94.65,0,3,Check-Out,2020-03-03 -Resort Hotel,0,54,2015,December,50,31,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,74.03,0,0,Check-Out,2018-12-03 -City Hotel,0,60,2016,February,9,21,1,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,108.15,0,1,Check-Out,2019-11-03 -City Hotel,1,33,2016,February,8,18,1,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,153.38,0,0,Canceled,2019-02-01 -City Hotel,1,100,2015,December,51,9,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,21,Transient,60.43,0,0,Canceled,2018-08-03 -City Hotel,0,160,2016,March,11,10,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient-Party,93.95,0,2,Check-Out,2018-11-02 -Resort Hotel,0,89,2017,May,16,6,2,5,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,D,A,0,No Deposit,34.0,179.0,0,Transient-Party,62.67,0,0,Check-Out,2019-11-03 -City Hotel,0,221,2017,June,26,21,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,225.0,0,Transient,98.98,0,0,Check-Out,2020-05-03 -City Hotel,1,50,2016,December,50,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,17,Transient,97.58,0,0,Canceled,2018-12-03 -Resort Hotel,0,43,2017,March,10,10,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,72.0,179.0,0,Transient-Party,37.29,0,1,Check-Out,2019-12-04 -Resort Hotel,0,98,2016,March,12,30,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,80.66,0,0,Check-Out,2019-02-01 -City Hotel,1,57,2016,November,50,9,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,59.78,0,0,Canceled,2019-08-04 -City Hotel,0,0,2016,May,21,25,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,68.03,0,0,Check-Out,2019-02-01 -City Hotel,1,43,2016,October,43,13,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,102.88,0,1,No-Show,2018-08-03 -Resort Hotel,1,41,2015,December,35,9,1,2,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.84,0,0,Canceled,2018-06-02 -Resort Hotel,0,2,2015,July,32,5,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,A,0,No Deposit,314.0,179.0,0,Group,52.71,0,2,Check-Out,2018-05-03 -Resort Hotel,0,59,2016,December,50,3,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,H,0,No Deposit,86.0,179.0,0,Transient-Party,61.02,0,0,Check-Out,2018-12-03 -City Hotel,0,34,2016,March,18,2,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,112.39,1,0,Check-Out,2019-02-01 -City Hotel,0,44,2016,June,27,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,82.29,0,0,Check-Out,2020-02-01 -City Hotel,1,392,2015,August,39,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.73,0,0,Canceled,2017-12-03 -Resort Hotel,1,137,2016,July,31,23,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,95.34,0,0,Canceled,2019-01-03 -City Hotel,0,192,2016,October,44,28,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,115.89,0,0,Check-Out,2019-08-04 -City Hotel,1,155,2016,April,49,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,64,Transient-Party,118.75,0,0,Canceled,2019-01-03 -City Hotel,0,150,2017,May,29,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,32.0,179.0,0,Transient-Party,119.7,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,January,10,13,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient,65.04,0,1,Check-Out,2019-01-03 -City Hotel,0,11,2016,June,43,30,0,2,3,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.3,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2016,April,44,28,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,K,1,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -Resort Hotel,0,51,2016,March,12,18,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,38.09,0,0,Check-Out,2018-11-02 -City Hotel,0,19,2015,October,46,28,1,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,69.71,0,0,Check-Out,2018-09-02 -City Hotel,1,382,2015,July,28,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.91,0,0,Canceled,2018-01-03 -City Hotel,1,88,2015,July,33,4,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Transient,157.71,0,0,Canceled,2018-06-02 -City Hotel,0,34,2017,March,12,30,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,322.0,179.0,0,Transient,70.89,0,0,Check-Out,2020-05-03 -Resort Hotel,0,145,2017,April,16,10,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,98.0,179.0,0,Transient-Party,53.27,0,0,Check-Out,2020-03-03 -City Hotel,1,0,2016,August,26,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,262.0,0,Transient,5.41,0,0,Canceled,2019-12-04 -City Hotel,1,1,2016,October,44,30,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,B,1,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Canceled,2018-09-02 -City Hotel,0,3,2015,September,53,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,11.0,45.0,0,Group,81.47,0,0,Check-Out,2019-09-03 -City Hotel,0,11,2015,July,32,9,2,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,83.7,0,1,Check-Out,2018-06-02 -City Hotel,0,7,2016,October,45,10,0,1,2,2.0,0,BB,CHE,Online TA,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,212.7,0,0,Check-Out,2019-10-04 -Resort Hotel,1,14,2016,December,52,28,2,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,78.19,0,0,Canceled,2019-09-03 -City Hotel,0,12,2017,May,22,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,62.36,0,0,Check-Out,2020-04-02 -City Hotel,1,33,2016,March,11,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.6,0,0,Canceled,2019-03-04 -City Hotel,0,86,2016,May,21,26,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,65.21,0,1,Check-Out,2019-04-03 -City Hotel,1,142,2016,December,53,20,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,74.32,0,1,Canceled,2018-11-02 -City Hotel,0,40,2015,August,36,24,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,163.71,0,0,Check-Out,2018-06-02 -City Hotel,1,86,2016,September,43,20,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.99,0,1,No-Show,2019-06-03 -Resort Hotel,0,156,2016,March,19,25,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,7.0,179.0,0,Transient,100.67,0,0,Check-Out,2019-02-01 -City Hotel,1,320,2016,May,22,2,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,171.97,0,0,Canceled,2019-02-01 -City Hotel,1,381,2016,September,43,15,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.61,0,1,Canceled,2019-04-03 -City Hotel,0,2,2016,March,32,5,2,2,1,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Contract,70.53,0,0,Check-Out,2018-06-02 -City Hotel,1,16,2017,June,29,5,0,3,3,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,139.39,0,0,Canceled,2020-06-02 -City Hotel,0,20,2016,November,50,9,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.27,0,2,Check-Out,2019-11-03 -City Hotel,1,313,2015,September,32,7,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,67,Contract,46.6,0,0,Canceled,2018-07-03 -City Hotel,0,148,2017,June,26,14,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.43,0,1,Check-Out,2020-06-02 -City Hotel,0,18,2015,August,40,31,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,127.78,0,2,Check-Out,2018-06-02 -Resort Hotel,1,219,2015,December,53,25,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,40.0,179.0,0,Transient,37.79,0,0,Canceled,2018-06-02 -Resort Hotel,1,142,2017,July,30,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,123.59,0,1,Canceled,2020-07-03 -City Hotel,0,16,2016,September,44,24,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,228.29,0,0,Check-Out,2018-08-03 -City Hotel,0,7,2015,July,25,5,0,2,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,86.7,0,1,Check-Out,2018-06-02 -Resort Hotel,0,188,2016,October,44,29,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,104.71,1,2,Check-Out,2019-12-04 -Resort Hotel,0,189,2017,April,15,23,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,75.17,0,0,Check-Out,2020-04-02 -Resort Hotel,0,307,2017,May,25,31,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,111.44,1,2,Check-Out,2020-04-02 -City Hotel,1,93,2016,December,53,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,9.0,179.0,0,Transient,128.37,0,0,Canceled,2019-10-04 -Resort Hotel,0,147,2016,March,12,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient,82.29,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,February,8,18,2,0,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,17.0,179.0,0,Transient,71.64,0,2,Check-Out,2020-01-04 -City Hotel,0,110,2016,June,44,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,74.97,0,0,Check-Out,2019-05-04 -City Hotel,1,329,2015,September,44,21,2,5,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,74.76,0,0,Canceled,2018-08-03 -City Hotel,0,93,2017,May,16,9,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,112.63,0,2,Check-Out,2020-04-02 -City Hotel,1,321,2015,September,38,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.8,0,0,Canceled,2018-08-03 -City Hotel,1,53,2016,December,51,24,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,40,Transient,62.05,0,0,Canceled,2018-10-03 -Resort Hotel,0,2,2015,November,35,16,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,144.44,1,0,Check-Out,2018-12-03 -City Hotel,1,3,2016,June,35,2,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,307.0,179.0,0,Transient,102.59,0,0,Canceled,2019-05-04 -Resort Hotel,0,198,2016,October,45,16,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,244.0,179.0,0,Transient,79.93,1,2,Check-Out,2019-10-04 -City Hotel,1,139,2016,December,53,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.28,0,1,Canceled,2019-08-04 -City Hotel,0,11,2017,May,22,15,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.64,0,2,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,March,12,21,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,18.0,222.0,0,Transient,46.02,0,0,Check-Out,2018-11-02 -City Hotel,1,158,2017,September,37,26,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,142.38,0,0,Canceled,2018-08-03 -City Hotel,0,0,2017,August,32,17,0,1,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,243.41,0,0,Check-Out,2020-06-02 -City Hotel,0,21,2017,May,21,25,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.59,0,1,Check-Out,2020-03-03 -Resort Hotel,1,36,2017,January,3,7,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,Non Refund,242.0,179.0,0,Transient,60.99,0,0,Canceled,2019-09-03 -City Hotel,1,1,2016,March,10,16,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,67.85,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2017,June,24,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,45.0,0,Transient,2.7,0,2,Check-Out,2020-03-03 -Resort Hotel,1,48,2017,February,10,27,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,74.66,0,0,Canceled,2020-02-01 -Resort Hotel,1,324,2017,March,18,31,0,5,2,0.0,0,HB,PRT,Groups,Corporate,0,1,1,A,A,0,Non Refund,10.0,240.0,0,Transient,76.04,0,0,Canceled,2019-12-04 -City Hotel,0,24,2016,March,23,16,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,118.32,0,1,Check-Out,2019-03-04 -Resort Hotel,0,9,2016,September,43,18,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,121.68,0,0,Check-Out,2019-08-04 -City Hotel,1,2,2017,March,9,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,58.84,0,0,Canceled,2019-09-03 -Resort Hotel,0,13,2017,April,17,25,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,73.53,0,0,Check-Out,2020-02-01 -City Hotel,1,49,2015,September,45,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.49,0,0,Canceled,2018-07-03 -City Hotel,0,86,2017,May,15,24,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,B,B,3,No Deposit,17.0,179.0,0,Transient-Party,189.7,1,0,Check-Out,2020-04-02 -City Hotel,0,211,2016,October,21,24,0,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,77.59,0,0,Check-Out,2019-05-04 -Resort Hotel,0,36,2016,July,38,31,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,110.81,0,2,Check-Out,2020-04-02 -City Hotel,0,4,2016,June,26,29,2,0,1,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Group,79.59,0,0,Check-Out,2020-02-01 -City Hotel,0,16,2015,October,44,4,2,1,1,0.0,0,BB,CN,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,90.49,0,0,Check-Out,2018-07-03 -Resort Hotel,0,258,2016,April,18,10,1,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient-Party,75.55,0,0,Check-Out,2019-03-04 -Resort Hotel,0,9,2015,October,44,6,2,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,38.12,0,1,Check-Out,2018-08-03 -City Hotel,0,2,2017,July,26,13,0,1,1,0.0,0,SC,RUS,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-06-02 -Resort Hotel,1,95,2016,March,16,20,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,246.0,179.0,0,Transient,121.95,0,0,Canceled,2018-12-03 -Resort Hotel,1,313,2017,June,28,28,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,C,2,No Deposit,242.0,179.0,0,Transient,148.13,0,1,Canceled,2020-04-02 -Resort Hotel,1,172,2016,June,27,17,2,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,283.0,179.0,0,Transient,82.59,0,0,Canceled,2019-06-03 -Resort Hotel,0,160,2017,July,35,31,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,239.0,179.0,0,Transient,195.1,1,1,Check-Out,2020-06-02 -City Hotel,0,0,2015,October,46,20,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,183.0,0,Transient,97.46,0,0,Check-Out,2018-09-02 -City Hotel,1,1,2016,May,44,12,0,1,2,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,2.74,0,0,Canceled,2019-04-03 -Resort Hotel,0,28,2016,April,22,6,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,93.26,0,0,Check-Out,2019-03-04 -City Hotel,0,164,2017,June,27,9,1,1,1,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,228.24,0,2,Check-Out,2020-06-02 -Resort Hotel,0,209,2017,July,37,29,2,5,2,0.0,0,HB,NLD,Online TA,Direct,0,0,0,D,G,2,No Deposit,248.0,179.0,0,Transient,252.0,1,3,Check-Out,2020-06-02 -City Hotel,1,47,2016,September,36,15,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,155.72,1,0,Canceled,2019-03-04 -City Hotel,0,137,2017,July,27,2,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,175.87,0,1,Check-Out,2020-07-03 -City Hotel,1,2,2016,January,3,6,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,73.31,0,0,Check-Out,2018-10-03 -City Hotel,0,2,2016,July,46,16,1,1,3,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,98.98,0,0,Check-Out,2019-07-04 -Resort Hotel,0,26,2016,December,53,2,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,G,2,No Deposit,11.0,179.0,0,Transient,69.98,1,1,Check-Out,2018-11-02 -City Hotel,1,13,2016,August,36,2,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,1,0,0,A,K,1,No Deposit,7.0,179.0,0,Transient,0.0,0,1,Canceled,2019-03-04 -Resort Hotel,0,0,2015,September,44,29,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Group,42.99,0,0,Check-Out,2018-12-03 -City Hotel,1,270,2015,September,37,21,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,81.03,0,0,Canceled,2018-06-02 -City Hotel,1,16,2016,February,11,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,63.11,0,0,Canceled,2019-10-04 -City Hotel,1,0,2016,January,4,6,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,61.47,0,0,No-Show,2018-12-03 -Resort Hotel,0,40,2016,October,46,31,0,1,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,32.48,0,0,Check-Out,2019-07-04 -Resort Hotel,0,264,2017,July,34,29,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,131.22,0,1,Check-Out,2020-06-02 -City Hotel,0,2,2015,December,44,19,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.69,0,1,Check-Out,2018-11-02 -City Hotel,0,14,2016,January,10,13,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,74.21,0,1,Check-Out,2019-10-04 -Resort Hotel,1,22,2017,February,18,21,2,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,199.68,0,0,Canceled,2020-01-04 -City Hotel,0,142,2016,August,38,5,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,7.0,179.0,0,Transient,129.6,0,2,Check-Out,2019-07-04 -Resort Hotel,1,271,2015,July,31,5,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,96.69,0,0,Canceled,2018-06-02 -Resort Hotel,0,156,2017,June,28,5,0,4,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,160.0,179.0,0,Transient,118.37,0,0,Check-Out,2020-03-03 -City Hotel,1,0,2017,January,4,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,62.97,0,1,No-Show,2019-11-03 -City Hotel,0,98,2016,July,30,11,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.36,0,0,Check-Out,2020-03-03 -City Hotel,0,41,2016,October,52,28,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,71.62,0,0,Check-Out,2019-09-03 -Resort Hotel,0,39,2016,March,12,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,253.0,179.0,0,Transient,95.58,1,0,Check-Out,2019-04-03 -City Hotel,0,53,2017,July,36,12,2,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-03-03 -Resort Hotel,0,9,2017,April,24,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,16.0,331.0,0,Transient,74.64,0,0,Check-Out,2020-03-03 -City Hotel,1,15,2017,August,4,9,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,122.46,0,0,No-Show,2020-07-03 -City Hotel,0,261,2015,July,27,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.37,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,October,43,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,247.0,0,Transient,89.39,1,0,Check-Out,2019-04-03 -Resort Hotel,0,167,2017,March,18,31,0,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,75,Transient,114.1,0,0,Check-Out,2020-02-01 -Resort Hotel,1,155,2016,June,37,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,Non Refund,170.0,179.0,0,Transient,119.39,0,0,Canceled,2020-06-02 -Resort Hotel,1,89,2016,August,35,10,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,112.41,0,1,No-Show,2018-06-02 -City Hotel,0,116,2017,June,23,23,0,4,2,2.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,249.91,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2016,October,24,28,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,61.26,0,0,Check-Out,2019-12-04 -Resort Hotel,0,164,2017,July,31,24,2,5,3,2.0,0,HB,USA,Direct,TA/TO,0,0,0,G,G,2,No Deposit,249.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,March,9,30,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,39.77,0,0,Check-Out,2020-02-01 -City Hotel,0,15,2016,April,28,24,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,132.5,0,2,Check-Out,2019-03-04 -City Hotel,1,211,2017,May,25,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,96.17,0,0,Canceled,2019-12-04 -City Hotel,0,0,2017,March,10,21,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,70.0,1,1,Check-Out,2019-12-04 -City Hotel,0,1,2016,March,18,16,0,1,3,0.0,0,BB,,Direct,Corporate,0,0,0,D,F,0,No Deposit,14.0,179.0,0,Transient,2.64,0,0,Check-Out,2019-08-04 -City Hotel,1,11,2017,April,17,27,1,3,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,118.66,0,0,Canceled,2020-01-04 -Resort Hotel,0,2,2017,July,29,17,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,63.91,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2015,August,37,28,2,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,78.22,0,0,Check-Out,2018-07-03 -Resort Hotel,0,204,2016,June,29,28,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,141.26,0,0,Check-Out,2019-08-04 -City Hotel,0,43,2016,October,44,13,2,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,F,2,No Deposit,14.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-08-04 -City Hotel,0,16,2016,April,20,16,1,0,1,0.0,0,BB,NLD,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,182.0,0,Transient,110.44,0,0,Check-Out,2019-07-04 -Resort Hotel,0,99,2017,March,18,29,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,59.49,0,1,Check-Out,2019-12-04 -City Hotel,0,19,2017,May,22,8,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,130.52,0,1,Check-Out,2019-02-01 -City Hotel,0,56,2016,March,11,13,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,66.26,0,1,Check-Out,2019-02-01 -City Hotel,1,418,2016,April,38,24,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.31,0,0,Canceled,2018-12-03 -City Hotel,0,55,2016,November,45,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,91.41,0,0,Check-Out,2019-06-03 -City Hotel,0,17,2016,August,36,10,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,61.95,0,0,Check-Out,2020-03-03 -City Hotel,1,12,2016,July,44,20,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,96.08,0,0,Canceled,2019-03-04 -Resort Hotel,1,45,2017,March,16,5,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,34.17,0,0,Canceled,2020-02-01 -Resort Hotel,0,35,2016,November,50,9,1,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,14.0,240.0,0,Transient,45.13,0,0,Check-Out,2019-09-03 -City Hotel,0,257,2017,June,30,11,2,6,2,0.0,0,HB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,75,Transient,168.17,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,June,25,10,0,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,239.81,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2015,July,33,23,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,A,0,No Deposit,18.0,179.0,0,Transient,202.91,0,0,Check-Out,2018-06-02 -City Hotel,1,8,2017,June,16,6,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,102.86,0,1,No-Show,2020-04-02 -City Hotel,1,120,2016,November,48,4,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,10.0,179.0,0,Transient,78.84,0,0,Canceled,2019-08-04 -City Hotel,1,338,2016,May,20,17,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient-Party,77.67,0,0,Canceled,2019-03-04 -City Hotel,1,44,2016,May,21,13,0,1,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,72.99,0,0,Canceled,2019-01-03 -City Hotel,0,99,2017,May,20,6,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,92.61,0,0,Check-Out,2020-04-02 -Resort Hotel,0,29,2017,May,20,27,2,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,79.13,1,1,Check-Out,2020-03-03 -City Hotel,0,16,2016,June,17,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,K,0,No Deposit,15.0,179.0,0,Transient,4.39,0,0,Check-Out,2019-06-03 -City Hotel,0,56,2016,October,44,28,2,0,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,102.01,0,0,Check-Out,2019-01-03 -City Hotel,1,0,2016,August,22,14,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,63.9,0,0,No-Show,2019-03-04 -City Hotel,0,9,2015,August,40,29,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,4.0,179.0,0,Contract,87.83,0,2,Check-Out,2018-09-02 -City Hotel,1,31,2016,June,35,24,2,0,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,118.02,0,0,No-Show,2019-09-03 -Resort Hotel,0,221,2015,September,34,15,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,179.0,179.0,0,Contract,60.83,0,0,Check-Out,2019-08-04 -City Hotel,1,193,2015,October,45,18,2,0,1,0.0,0,BB,ITA,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,36.97,0,0,Canceled,2018-09-02 -City Hotel,0,17,2015,December,44,9,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,106.78,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2016,August,38,20,2,5,2,2.0,0,BB,AUT,Direct,Direct,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-06-03 -City Hotel,0,42,2016,December,49,8,2,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,1.8,0,0,Check-Out,2019-11-03 -City Hotel,0,12,2016,December,49,30,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,34.21,0,0,Check-Out,2019-08-04 -City Hotel,0,8,2016,April,19,13,1,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,1,No Deposit,337.0,166.0,0,Transient,86.54,0,0,Check-Out,2019-03-04 -Resort Hotel,0,43,2015,December,51,10,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,41.76,0,0,Check-Out,2018-06-02 -City Hotel,0,133,2017,May,10,28,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,238.0,179.0,0,Transient,126.67,1,1,Check-Out,2019-10-04 -City Hotel,0,56,2016,May,17,11,2,3,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,D,1,No Deposit,315.0,179.0,0,Transient-Party,79.6,0,0,Check-Out,2019-02-01 -City Hotel,1,143,2016,December,51,30,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,A,A,0,Non Refund,11.0,45.0,0,Transient,75.69,0,0,Canceled,2018-12-03 -Resort Hotel,0,104,2015,October,47,9,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Transient-Party,65.88,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,April,17,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,209.9,1,0,Check-Out,2018-12-03 -City Hotel,1,191,2016,May,37,15,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,129.74,0,0,No-Show,2019-12-04 -City Hotel,0,60,2016,September,43,7,0,1,1,0.0,0,BB,CN,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,63.15,0,0,Check-Out,2019-07-04 -City Hotel,0,3,2017,March,11,6,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient,71.72,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,November,46,30,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,H,I,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,August,4,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,14.0,182.0,0,Transient,62.9,0,0,Check-Out,2020-04-02 -City Hotel,0,212,2017,August,37,25,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,107.92,1,2,Check-Out,2020-07-03 -Resort Hotel,0,94,2016,September,50,10,2,3,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,75,Transient-Party,87.8,1,0,Check-Out,2019-08-04 -Resort Hotel,0,35,2016,March,16,20,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,10.0,179.0,0,Transient,89.74,1,1,Check-Out,2019-02-01 -City Hotel,0,36,2016,November,39,5,0,3,3,0.0,0,BB,USA,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,123.82,0,0,Check-Out,2019-09-03 -City Hotel,0,95,2015,August,43,31,2,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,F,A,0,No Deposit,14.0,179.0,0,Transient,64.56,0,0,Check-Out,2018-08-03 -City Hotel,0,41,2016,October,53,26,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,102.02,0,2,Check-Out,2019-12-04 -City Hotel,0,40,2016,December,53,20,1,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,129.22,0,0,Check-Out,2019-03-04 -Resort Hotel,0,159,2017,August,34,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,74.86,1,3,Check-Out,2020-06-02 -Resort Hotel,0,5,2017,March,9,5,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,50.85,0,1,Check-Out,2020-02-01 -City Hotel,0,50,2017,February,7,12,2,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,81.42,0,0,Check-Out,2020-05-03 -City Hotel,0,256,2017,April,28,12,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,124.3,0,0,Check-Out,2020-03-03 -Resort Hotel,0,101,2017,April,16,31,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,87.12,0,0,Check-Out,2020-02-01 -Resort Hotel,0,150,2017,July,27,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,131.95,0,2,Check-Out,2020-06-02 -Resort Hotel,0,46,2015,August,43,8,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,40.04,0,0,Check-Out,2018-08-03 -City Hotel,0,246,2016,May,25,29,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,98.09,0,0,Check-Out,2019-02-01 -Resort Hotel,0,12,2017,May,8,21,2,5,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,156.93,1,0,Check-Out,2020-01-04 -Resort Hotel,0,49,2016,October,44,31,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,153.69,0,0,Canceled,2019-07-04 -City Hotel,1,21,2015,July,36,25,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,60.79,0,1,Canceled,2018-08-03 -City Hotel,1,212,2016,September,35,20,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,62,Transient,80.67,0,0,Canceled,2018-08-03 -City Hotel,0,152,2016,August,37,31,0,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,164.95,0,1,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,February,3,6,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,17.0,179.0,0,Transient,90.55,0,0,Check-Out,2018-09-02 -Resort Hotel,1,51,2016,December,50,27,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,38.74,0,1,Canceled,2018-11-02 -Resort Hotel,0,1,2017,February,11,16,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,375.0,331.0,0,Transient,41.44,0,0,Check-Out,2020-01-04 -Resort Hotel,0,26,2016,March,16,20,0,4,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,143.24,1,3,Check-Out,2019-01-03 -Resort Hotel,0,19,2017,August,23,28,2,1,2,2.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,251.0,179.0,0,Transient,199.51,1,0,Check-Out,2020-06-02 -City Hotel,0,15,2017,April,18,26,1,3,3,0.0,0,BB,USA,Direct,Direct,0,0,0,E,F,0,No Deposit,16.0,179.0,0,Transient,174.08,0,0,Check-Out,2020-02-01 -City Hotel,0,33,2015,September,40,19,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.34,0,1,Check-Out,2018-08-03 -City Hotel,0,36,2017,February,11,28,2,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.44,0,0,Canceled,2019-09-03 -Resort Hotel,1,49,2015,July,38,12,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,169.95,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,January,2,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,17.0,331.0,0,Transient,40.75,1,0,Check-Out,2019-12-04 -City Hotel,1,41,2017,April,18,5,2,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,6.0,179.0,0,Transient,117.77,0,0,Canceled,2020-02-01 -City Hotel,1,92,2015,July,33,21,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,0,Transient,66.55,0,0,Canceled,2018-09-02 -City Hotel,1,96,2016,March,16,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,21,Transient,90.31,0,0,Canceled,2018-12-03 -City Hotel,0,34,2017,October,44,22,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,2,No Deposit,14.0,179.0,0,Transient,102.34,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2017,January,3,5,0,1,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,331.0,0,Transient,1.8,0,1,Check-Out,2019-12-04 -City Hotel,1,327,2016,July,33,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.19,0,0,Canceled,2018-01-31 -City Hotel,0,0,2016,September,53,25,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,223.4,0,1,Check-Out,2019-05-04 -City Hotel,1,257,2017,July,31,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,176.47,0,1,Check-Out,2019-08-04 -City Hotel,0,1,2015,December,49,17,0,2,2,0.0,0,BB,ESP,Direct,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,44.31,0,1,Check-Out,2018-11-02 -City Hotel,0,2,2015,November,43,27,2,4,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,B,2,No Deposit,1.0,179.0,0,Transient-Party,60.26,0,0,Check-Out,2018-08-03 -City Hotel,1,88,2015,July,35,12,0,1,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,B,2,No Deposit,9.0,179.0,0,Transient,122.25,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,May,24,9,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,D,0,No Deposit,15.0,174.0,0,Transient,82.25,0,0,Check-Out,2019-03-04 -Resort Hotel,1,48,2016,July,31,15,2,2,2,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,207.99,0,0,Canceled,2019-03-04 -Resort Hotel,0,102,2016,September,48,10,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,200.09,0,1,Check-Out,2019-01-03 -City Hotel,0,296,2016,June,28,28,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.92,0,0,Check-Out,2019-02-01 -City Hotel,1,104,2017,May,22,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.97,0,0,Canceled,2019-02-01 -Resort Hotel,0,3,2015,August,38,24,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,235.85,0,0,Check-Out,2019-06-03 -City Hotel,0,49,2016,October,44,24,2,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,154.74,0,0,Check-Out,2019-05-04 -Resort Hotel,1,7,2016,January,3,10,1,0,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,157.82,0,0,Canceled,2018-12-03 -Resort Hotel,0,146,2016,September,36,31,0,3,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,224.0,0,Transient-Party,82.11,0,0,Check-Out,2019-07-04 -Resort Hotel,1,125,2017,May,21,13,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,139.53,0,1,Canceled,2020-02-01 -City Hotel,0,266,2017,February,17,25,2,1,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient,123.73,0,1,Check-Out,2020-03-03 -Resort Hotel,0,134,2016,March,18,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,213.0,331.0,0,Transient,40.56,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,January,9,13,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,D,0,No Deposit,173.0,179.0,0,Transient,76.16,0,0,Check-Out,2018-10-03 -Resort Hotel,0,26,2017,June,33,31,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,62.22,0,0,Check-Out,2020-04-02 -City Hotel,0,13,2015,September,11,16,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient-Party,58.68,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,February,10,12,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,74.65,0,0,Canceled,2018-11-02 -City Hotel,0,82,2015,August,35,21,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,42,Transient-Party,61.84,0,0,Check-Out,2018-06-02 -Resort Hotel,0,43,2015,July,32,28,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,127.45,0,2,Check-Out,2018-12-03 -Resort Hotel,0,31,2016,October,53,31,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,118.41,1,2,Check-Out,2019-03-04 -City Hotel,0,35,2016,December,53,31,0,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.84,0,1,Check-Out,2019-10-04 -City Hotel,0,100,2016,May,20,10,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,122.27,0,1,Check-Out,2019-03-04 -City Hotel,1,38,2015,February,8,22,0,1,1,0.0,0,BB,,Groups,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,37.88,0,0,Canceled,2018-10-03 -Resort Hotel,0,149,2017,February,8,31,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,92.0,331.0,0,Transient-Party,90.01,0,0,Check-Out,2020-04-02 -Resort Hotel,0,21,2017,February,10,28,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,G,D,0,No Deposit,378.0,179.0,0,Transient,82.9,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,February,11,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,36.41,0,0,Check-Out,2019-02-01 -City Hotel,0,86,2016,September,32,24,1,3,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,84.0,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,May,10,25,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,31.39,0,0,Check-Out,2019-10-04 -Resort Hotel,0,49,2015,October,42,18,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,63.77,1,2,Check-Out,2018-09-02 -Resort Hotel,0,166,2016,June,27,30,2,1,1,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,79.8,0,0,Check-Out,2019-06-03 -City Hotel,0,4,2016,November,51,25,1,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,237.0,0,Transient-Party,79.81,0,0,Check-Out,2019-12-04 -City Hotel,1,106,2016,March,10,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,Non Refund,7.0,179.0,0,Transient,61.51,0,0,Canceled,2018-11-02 -Resort Hotel,0,34,2017,March,23,25,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,Non Refund,310.0,179.0,0,Transient-Party,100.35,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,November,53,4,2,0,3,0.0,0,BB,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,17.0,259.0,0,Transient,2.29,0,0,Check-Out,2019-09-03 -Resort Hotel,0,157,2017,May,20,29,1,10,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,99.58,0,1,Check-Out,2020-06-02 -City Hotel,0,47,2017,June,21,18,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,80.52,0,0,Check-Out,2020-03-03 -City Hotel,0,50,2016,October,34,20,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,104.29,1,2,Check-Out,2019-06-03 -Resort Hotel,0,20,2017,August,31,31,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,240.0,179.0,0,Transient,163.06,0,1,Check-Out,2020-07-03 -City Hotel,0,93,2017,April,15,28,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.85,0,0,Check-Out,2020-03-03 -Resort Hotel,0,233,2016,June,36,2,2,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,0,2,Canceled,2019-06-03 -City Hotel,0,67,2017,March,10,10,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,71.57,0,1,Check-Out,2020-03-03 -City Hotel,0,88,2016,June,25,4,2,4,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.05,0,1,Check-Out,2019-10-04 -City Hotel,1,396,2016,October,44,16,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,Non Refund,12.0,179.0,0,Transient,128.03,0,0,Canceled,2019-10-04 -City Hotel,0,44,2016,October,45,9,0,4,1,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,152.11,0,0,Check-Out,2019-09-03 -City Hotel,1,83,2015,October,45,21,2,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,91.14,0,1,No-Show,2018-08-03 -City Hotel,0,46,2017,February,16,21,2,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,34.0,223.0,0,Transient-Party,60.73,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2017,May,34,10,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,16.0,45.0,0,Transient,3.49,0,0,Check-Out,2020-06-02 -Resort Hotel,0,16,2017,July,24,6,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,H,2,No Deposit,240.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-04-02 -City Hotel,0,6,2016,November,51,23,0,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Group,62.49,0,0,Check-Out,2019-07-04 -Resort Hotel,0,110,2017,April,22,21,2,5,2,1.0,0,BB,AUT,Direct,Direct,1,0,1,G,G,2,No Deposit,45.0,179.0,0,Transient,193.18,0,1,Check-Out,2020-03-03 -City Hotel,0,1,2017,May,9,12,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,1,No Deposit,14.0,195.0,0,Transient-Party,78.43,0,0,Check-Out,2020-04-02 -Resort Hotel,0,4,2017,May,22,15,2,1,1,0.0,0,BB,,Groups,Direct,0,0,0,A,A,1,Non Refund,310.0,331.0,0,Transient-Party,61.29,1,0,Check-Out,2019-12-04 -Resort Hotel,0,17,2016,October,43,11,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,128.14,0,2,Check-Out,2019-05-04 -Resort Hotel,0,207,2016,August,35,20,4,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,111.38,0,2,Check-Out,2019-07-04 -Resort Hotel,0,148,2016,March,17,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient,79.4,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2015,October,41,9,0,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,30.19,0,0,Check-Out,2019-01-03 -City Hotel,0,7,2016,August,44,18,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,69.61,0,2,Check-Out,2019-07-04 -City Hotel,0,55,2016,August,36,4,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,91.64,0,1,Check-Out,2018-05-03 -City Hotel,0,77,2017,April,16,21,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.65,0,2,Check-Out,2020-02-01 -City Hotel,0,37,2016,July,26,26,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,92.37,0,1,Check-Out,2019-05-04 -Resort Hotel,1,62,2016,July,34,27,2,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,137.99,0,0,Canceled,2020-03-03 -City Hotel,0,19,2015,September,41,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,116.0,0,0,Check-Out,2018-07-03 -City Hotel,1,103,2017,June,27,25,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.46,0,0,Canceled,2020-05-03 -Resort Hotel,1,98,2015,August,48,22,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,2018-05-03 -City Hotel,1,368,2016,May,45,9,2,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,3.0,179.0,0,Transient-Party,63.01,0,0,Canceled,2018-01-03 -City Hotel,1,260,2015,July,32,16,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,142.96,0,2,Canceled,2018-05-03 -City Hotel,0,111,2017,June,30,6,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,10.0,179.0,0,Transient,110.11,0,1,Check-Out,2020-02-01 -Resort Hotel,0,39,2017,January,23,19,1,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,36.56,0,3,Check-Out,2020-04-02 -City Hotel,0,247,2016,July,26,7,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,125.01,0,0,Check-Out,2019-05-04 -City Hotel,1,144,2017,May,29,28,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,84.38,0,1,Check-Out,2020-04-02 -City Hotel,0,17,2016,September,36,21,2,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,107.11,0,2,Check-Out,2019-05-04 -City Hotel,1,16,2016,March,9,23,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,166.0,179.0,39,Transient,62.76,0,0,Canceled,2018-12-03 -City Hotel,1,109,2016,April,17,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,88.52,0,2,Canceled,2018-11-02 -City Hotel,0,19,2016,October,41,15,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,I,0,No Deposit,15.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-09-03 -Resort Hotel,1,6,2015,October,45,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,85.69,0,0,Canceled,2018-09-02 -Resort Hotel,0,110,2016,February,9,6,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient-Party,84.06,0,0,Check-Out,2018-11-02 -Resort Hotel,1,46,2016,December,44,28,1,1,1,1.0,0,BB,CHE,Direct,Direct,0,0,0,H,H,2,No Deposit,251.0,179.0,0,Transient,164.47,0,0,Canceled,2019-09-03 -Resort Hotel,0,293,2016,May,23,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,152.01,0,0,Check-Out,2020-02-01 -City Hotel,0,100,2016,October,43,29,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,11.0,179.0,0,Transient-Party,136.5,0,0,Check-Out,2019-09-03 -City Hotel,0,9,2016,December,11,25,1,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,F,E,0,No Deposit,11.0,179.0,0,Transient,0.0,0,3,Check-Out,2018-12-03 -City Hotel,0,13,2017,January,3,29,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,3,No Deposit,148.0,179.0,42,Transient-Party,92.23,0,0,Check-Out,2020-01-04 -Resort Hotel,0,47,2015,November,43,2,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,139.0,179.0,0,Transient-Party,59.36,0,0,Check-Out,2018-08-03 -City Hotel,0,11,2016,November,43,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,78.0,0,Group,107.15,1,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,January,4,18,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient-Party,33.95,1,0,Check-Out,2019-10-04 -City Hotel,1,50,2016,September,25,15,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,77.17,0,0,Canceled,2019-08-04 -City Hotel,0,86,2016,June,24,7,2,1,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,1,No Deposit,178.0,179.0,0,Transient,130.15,0,1,Check-Out,2019-06-03 -City Hotel,0,20,2016,October,18,27,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,78.28,0,0,Check-Out,2019-07-04 -City Hotel,1,156,2017,May,26,16,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,66.16,0,0,Canceled,2020-04-02 -City Hotel,0,1,2016,May,24,28,2,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,123.95,0,0,Check-Out,2019-11-03 -City Hotel,1,252,2015,October,45,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,76.75,0,0,Canceled,2018-08-03 -City Hotel,0,4,2017,February,8,18,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,C,0,No Deposit,15.0,77.0,0,Transient,65.08,0,0,Check-Out,2019-10-04 -City Hotel,0,154,2016,June,27,27,0,10,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,41,Transient,87.19,0,0,Check-Out,2019-02-01 -City Hotel,1,2,2017,March,19,3,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient,92.69,0,0,Canceled,2020-03-03 -Resort Hotel,0,10,2016,March,12,29,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,86.55,0,1,Check-Out,2019-03-04 -Resort Hotel,0,100,2016,July,34,2,2,5,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient-Party,62.98,0,0,Check-Out,2019-06-03 -City Hotel,0,326,2017,June,21,31,2,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,99.36,0,1,Check-Out,2019-12-04 -Resort Hotel,0,1,2015,September,36,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,378.0,179.0,0,Transient,72.75,0,0,Check-Out,2018-09-02 -City Hotel,0,10,2017,February,4,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,37.0,179.0,0,Transient,107.57,0,0,Check-Out,2019-11-03 -City Hotel,0,3,2015,October,45,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,112.59,0,0,Check-Out,2018-06-02 -City Hotel,0,21,2015,November,36,4,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,123.78,0,2,Check-Out,2018-08-03 -Resort Hotel,0,92,2016,March,17,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,69.19,0,0,Check-Out,2019-03-04 -City Hotel,1,265,2015,July,32,9,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.4,0,0,Canceled,2018-05-03 -Resort Hotel,0,3,2015,September,43,9,1,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient-Party,75.09,0,0,Check-Out,2018-08-03 -City Hotel,0,11,2016,August,35,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,101.88,0,1,Check-Out,2019-05-04 -Resort Hotel,0,16,2017,February,12,28,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,98.0,0,Transient,69.81,1,0,Check-Out,2018-12-03 -City Hotel,0,87,2017,July,28,31,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.18,0,1,Check-Out,2020-04-02 -Resort Hotel,0,158,2017,June,26,28,0,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,244.0,179.0,0,Transient,118.29,1,1,Check-Out,2020-03-03 -Resort Hotel,0,12,2017,February,10,6,0,2,1,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,91.78,1,0,Check-Out,2020-01-04 -City Hotel,0,263,2016,July,26,16,0,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,163.93,0,3,Check-Out,2020-03-03 -City Hotel,0,36,2016,December,51,28,2,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,104.05,0,0,Check-Out,2019-11-03 -Resort Hotel,1,260,2015,July,35,7,0,1,2,0.0,0,HB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,119.22,0,0,Canceled,2018-05-03 -Resort Hotel,0,1,2017,May,22,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,1,No Deposit,16.0,240.0,0,Transient-Party,92.57,0,0,Check-Out,2019-09-03 -City Hotel,0,148,2017,March,15,24,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,75,Transient-Party,67.76,0,0,Check-Out,2020-04-02 -City Hotel,0,35,2017,July,26,22,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.23,0,2,Check-Out,2020-07-03 -Resort Hotel,0,33,2015,December,53,10,2,1,2,0.0,0,Undefined,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,244.0,179.0,0,Transient,38.72,0,2,Check-Out,2019-10-04 -City Hotel,0,103,2016,July,21,14,2,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,227.29,0,1,Check-Out,2019-03-04 -City Hotel,0,7,2016,March,17,24,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,87.0,179.0,0,Transient-Party,67.88,0,0,Check-Out,2019-04-03 -City Hotel,1,54,2016,April,17,24,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.88,0,0,Canceled,2019-03-04 -City Hotel,0,149,2017,May,21,9,0,3,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.25,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2015,August,34,4,0,2,3,0.0,0,BB,ESP,Complementary,Undefined,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,70.37,0,1,Check-Out,2018-06-02 -Resort Hotel,0,2,2017,August,35,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,52.01,1,1,Check-Out,2020-05-03 -City Hotel,1,98,2016,March,9,19,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,75.88,0,0,Canceled,2018-10-03 -Resort Hotel,1,101,2017,March,15,20,2,7,3,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,208.0,179.0,0,Transient,83.84,0,0,Canceled,2020-01-04 -City Hotel,1,384,2016,March,17,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,65.47,0,0,Canceled,2018-12-03 -City Hotel,0,255,2016,April,16,25,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,77.75,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2015,July,33,17,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,170.36,0,2,Check-Out,2018-06-02 -City Hotel,0,22,2016,July,26,6,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient,78.68,0,2,Check-Out,2019-06-03 -Resort Hotel,0,159,2017,March,11,10,2,5,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,D,D,2,No Deposit,12.0,331.0,0,Transient,34.59,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2015,August,45,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.26,0,0,Check-Out,2019-10-04 -Resort Hotel,0,254,2017,June,23,28,2,5,2,0.0,0,FB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,62.94,0,0,Check-Out,2020-02-01 -Resort Hotel,0,41,2016,May,23,13,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,70.83,0,1,Check-Out,2019-06-03 -City Hotel,1,243,2015,July,33,10,2,0,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,250.77,0,0,Canceled,2018-05-03 -City Hotel,1,43,2017,June,27,8,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,7.0,179.0,0,Transient,134.86,0,1,Canceled,2020-02-01 -City Hotel,1,0,2016,December,50,9,2,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,266.0,0,Transient,3.01,0,0,Canceled,2019-09-03 -Resort Hotel,0,102,2017,February,9,23,0,1,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,69.0,179.0,0,Transient,82.29,0,0,Check-Out,2020-05-03 -City Hotel,1,41,2016,December,49,20,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,85.18,0,0,Canceled,2019-02-01 -City Hotel,0,126,2017,November,51,30,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,143.88,0,1,Check-Out,2019-11-03 -City Hotel,1,97,2017,April,11,26,2,1,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,137.73,0,3,Canceled,2020-02-01 -City Hotel,0,2,2017,August,37,29,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,74.63,0,2,Check-Out,2020-07-03 -City Hotel,0,2,2015,August,31,4,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,138.85,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2017,April,18,21,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,112.99,0,0,Check-Out,2020-06-02 -City Hotel,0,49,2016,October,42,15,0,2,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,150.85,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,February,12,2,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,74.68,1,2,Check-Out,2018-11-02 -Resort Hotel,0,1,2015,March,11,21,1,5,1,0.0,0,BB,GBR,Direct,TA/TO,1,0,1,E,F,0,No Deposit,14.0,179.0,0,Group,44.0,0,0,Check-Out,2018-11-02 -City Hotel,0,16,2015,August,37,13,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,B,D,1,No Deposit,11.0,179.0,0,Transient-Party,62.32,0,0,Check-Out,2018-05-03 -Resort Hotel,1,273,2016,May,42,29,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,240.0,179.0,0,Transient,101.12,0,0,Canceled,2019-11-03 -City Hotel,0,148,2017,August,18,6,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,93.3,0,2,Check-Out,2020-04-02 -City Hotel,0,258,2016,June,27,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,41,Transient,79.33,0,0,Check-Out,2019-03-04 -City Hotel,1,109,2016,September,26,9,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,189.49,0,0,Canceled,2019-08-04 -City Hotel,0,38,2015,September,45,3,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,101.39,0,0,Check-Out,2018-08-03 -Resort Hotel,0,56,2016,September,46,14,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,152.0,179.0,0,Contract,153.48,0,0,Check-Out,2019-08-04 -City Hotel,1,24,2017,January,4,23,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,79.67,0,0,Canceled,2019-11-03 -Resort Hotel,0,37,2016,February,9,5,2,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,238.0,179.0,0,Transient,81.64,1,0,Check-Out,2019-02-01 -Resort Hotel,0,40,2016,July,32,2,2,6,2,0.0,0,BB,SWE,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,79.55,0,0,Check-Out,2019-05-04 -Resort Hotel,0,204,2017,August,26,16,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,127.41,1,3,Check-Out,2020-06-02 -Resort Hotel,0,93,2016,August,38,21,0,7,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,115.08,1,0,Check-Out,2019-04-03 -City Hotel,0,56,2016,August,21,14,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.38,0,1,Check-Out,2019-11-03 -City Hotel,1,13,2015,October,41,6,2,1,2,0.0,0,HB,ITA,Complementary,TA/TO,1,1,0,A,B,1,No Deposit,10.0,179.0,0,Transient-Party,80.46,0,0,Canceled,2018-08-03 -City Hotel,1,45,2016,October,43,24,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.96,0,0,Canceled,2018-07-03 -Resort Hotel,1,105,2017,February,10,29,1,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,79.56,0,0,Canceled,2019-10-04 -Resort Hotel,0,80,2016,August,33,31,1,5,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,89.77,0,0,Check-Out,2019-06-03 -Resort Hotel,0,12,2016,June,35,30,1,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,86.61,0,2,Check-Out,2019-01-03 -City Hotel,0,73,2017,May,27,26,1,3,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,42.0,179.0,0,Transient,176.37,0,0,Check-Out,2020-01-04 -City Hotel,0,252,2016,March,42,21,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.15,0,0,Check-Out,2018-12-03 -City Hotel,1,85,2017,April,17,6,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,108.74,0,0,Canceled,2020-04-02 -City Hotel,1,15,2016,August,37,10,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.07,0,2,Canceled,2019-08-04 -Resort Hotel,1,171,2017,June,15,31,2,3,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,213.63,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2017,February,8,6,0,2,2,0.0,0,SC,FRA,Online TA,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,36.09,1,0,Check-Out,2020-01-04 -City Hotel,0,47,2017,January,10,5,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,87.47,0,2,Check-Out,2020-02-01 -Resort Hotel,0,8,2017,June,10,19,2,2,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,E,E,0,No Deposit,14.0,331.0,0,Transient,81.43,0,0,Check-Out,2020-04-02 -City Hotel,0,106,2017,April,16,28,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.0,1,2,Check-Out,2020-02-01 -Resort Hotel,1,165,2017,July,28,2,0,5,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,121.48,0,0,Check-Out,2020-07-03 -City Hotel,0,2,2015,September,37,14,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.32,0,0,Check-Out,2018-08-03 -City Hotel,0,9,2017,June,27,13,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,120.76,0,1,Check-Out,2020-02-01 -City Hotel,1,1,2015,July,43,15,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,8.0,179.0,0,Transient,59.07,0,0,Canceled,2018-06-02 -City Hotel,0,252,2016,June,42,30,2,3,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.54,0,1,Check-Out,2019-08-04 -City Hotel,1,309,2015,September,45,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.51,0,0,Canceled,2018-08-03 -Resort Hotel,0,104,2016,August,35,27,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,243.0,179.0,0,Transient,204.87,1,1,Check-Out,2019-05-04 -Resort Hotel,1,167,2015,December,53,27,0,7,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,139.21,0,0,Canceled,2018-08-03 -City Hotel,0,73,2015,August,49,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,31.0,179.0,0,Transient-Party,61.39,0,0,Check-Out,2018-09-02 -City Hotel,0,28,2016,September,46,10,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,132.46,0,0,Check-Out,2019-08-04 -City Hotel,1,385,2016,September,38,1,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,78.84,0,0,Canceled,2018-08-03 -Resort Hotel,0,40,2016,December,53,28,2,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,88.64,0,0,Check-Out,2019-12-04 -Resort Hotel,1,191,2016,December,53,8,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,E,A,0,No Deposit,33.0,179.0,75,Transient-Party,75.24,0,0,Canceled,2019-11-03 -City Hotel,1,58,2017,May,22,19,2,1,2,0.0,0,BB,GBR,Aviation,TA/TO,0,0,0,E,E,0,No Deposit,171.0,179.0,0,Transient,147.33,0,0,Canceled,2020-03-03 -Resort Hotel,0,108,2016,August,16,6,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,147.01,0,2,Check-Out,2019-03-04 -Resort Hotel,0,178,2015,November,44,30,2,7,3,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,105.73,0,2,Check-Out,2018-08-03 -City Hotel,0,106,2015,July,43,4,2,10,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,102.38,0,0,Check-Out,2018-08-03 -City Hotel,0,115,2016,September,44,10,0,5,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,118.6,0,0,Check-Out,2019-05-04 -City Hotel,0,13,2016,August,35,5,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,119.13,0,3,Check-Out,2019-07-04 -City Hotel,0,14,2016,March,16,14,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,131.42,0,2,Check-Out,2019-02-01 -Resort Hotel,0,229,2017,July,27,12,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,247.56,1,0,Check-Out,2020-06-02 -City Hotel,1,142,2016,March,16,10,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient,73.62,0,0,Canceled,2019-03-04 -City Hotel,0,8,2017,May,24,21,1,0,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,11.0,179.0,0,Transient,159.68,0,0,Check-Out,2020-02-01 -City Hotel,1,111,2016,July,36,13,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,121.43,0,2,Canceled,2018-11-02 -City Hotel,1,160,2017,July,28,9,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.79,0,2,Canceled,2020-06-02 -City Hotel,1,87,2016,May,22,17,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,6.0,179.0,0,Transient,112.69,0,1,Canceled,2019-03-04 -City Hotel,0,10,2017,February,10,29,0,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient,72.23,0,0,Check-Out,2019-12-04 -Resort Hotel,0,105,2015,August,32,16,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,250.0,179.0,0,Transient,112.21,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2015,October,42,3,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,48.2,1,2,Check-Out,2019-06-03 -Resort Hotel,0,142,2016,June,28,10,0,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,128.26,0,1,Check-Out,2020-06-02 -City Hotel,0,41,2016,April,16,13,2,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,80.72,0,0,Check-Out,2019-01-03 -City Hotel,0,296,2015,October,40,4,0,2,2,0.0,0,HB,DEU,Direct,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,83.07,0,0,Check-Out,2018-07-03 -City Hotel,1,230,2017,July,26,21,2,2,1,0.0,0,SC,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,171.71,0,1,Canceled,2020-03-03 -City Hotel,0,9,2017,February,7,12,2,1,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,44.69,0,0,Check-Out,2019-09-03 -City Hotel,1,100,2016,June,27,28,3,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,162.0,179.0,0,Transient,88.49,0,1,No-Show,2019-04-03 -City Hotel,1,23,2016,April,17,9,0,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,113.67,0,0,Canceled,2019-10-04 -Resort Hotel,0,85,2016,September,42,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,91.0,179.0,0,Transient,39.33,0,0,Check-Out,2019-08-04 -City Hotel,1,96,2017,April,8,13,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.79,0,0,Canceled,2020-02-01 -Resort Hotel,0,6,2016,October,10,25,2,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,316.0,179.0,0,Contract,26.38,0,0,Check-Out,2019-04-03 -Resort Hotel,0,1,2016,December,49,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,104.55,1,0,Check-Out,2019-10-04 -Resort Hotel,0,49,2016,October,42,17,0,2,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,235.66,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,February,8,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,70.81,0,0,Check-Out,2019-02-01 -City Hotel,0,42,2017,August,37,15,0,3,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,188.25,0,3,Check-Out,2020-06-02 -Resort Hotel,0,164,2017,July,27,19,4,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,208.33,0,2,Check-Out,2020-06-02 -City Hotel,1,108,2017,June,15,2,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.65,0,0,Canceled,2018-10-03 -City Hotel,0,201,2017,August,34,17,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,103.25,0,1,Check-Out,2020-06-02 -City Hotel,1,199,2016,October,45,15,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.46,0,0,Canceled,2019-02-01 -City Hotel,0,15,2016,October,44,19,1,1,1,0.0,0,BB,ITA,Offline TA/TO,GDS,0,0,0,A,C,0,No Deposit,196.0,179.0,0,Transient,122.59,0,0,Check-Out,2019-08-04 -Resort Hotel,1,31,2017,February,9,2,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,76.0,0,Transient,27.98,0,0,Canceled,2019-12-04 -Resort Hotel,0,33,2017,July,19,24,2,4,2,1.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,78.16,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,September,42,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,129.65,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2016,August,9,2,0,3,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,331.0,0,Transient,77.41,0,1,Check-Out,2020-06-02 -Resort Hotel,1,289,2016,April,14,21,1,4,1,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,G,0,No Deposit,10.0,179.0,0,Transient,118.37,0,0,Canceled,2018-11-02 -City Hotel,1,40,2016,March,16,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,60.0,0,Transient,76.62,0,0,Canceled,2019-03-04 -Resort Hotel,0,192,2016,May,29,24,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,13.0,179.0,0,Transient,101.11,0,2,Check-Out,2019-05-04 -Resort Hotel,0,324,2015,September,35,19,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,219.62,0,0,Check-Out,2018-08-03 -City Hotel,0,87,2016,August,53,17,1,2,2,0.0,0,HB,CHE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,109.84,0,0,Check-Out,2019-12-04 -City Hotel,0,14,2016,May,23,30,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,71.33,0,1,Check-Out,2019-07-04 -City Hotel,1,42,2016,February,10,12,0,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,179.3,0,0,Canceled,2018-11-02 -City Hotel,1,298,2016,August,37,13,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.14,0,0,Canceled,2017-12-03 -Resort Hotel,0,55,2015,December,50,5,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,61.31,0,0,Check-Out,2019-01-03 -City Hotel,0,154,2016,August,35,21,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,281.0,179.0,0,Transient,99.32,0,1,Check-Out,2019-09-03 -Resort Hotel,0,38,2016,March,16,25,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,64.45,1,1,Check-Out,2019-04-03 -City Hotel,0,33,2016,June,36,17,0,3,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.14,0,1,Check-Out,2019-06-03 -Resort Hotel,0,231,2016,March,16,31,1,5,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,C,0,Refundable,12.0,224.0,0,Transient-Party,72.71,0,0,Check-Out,2019-02-01 -Resort Hotel,1,53,2016,June,28,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,H,0,No Deposit,247.0,179.0,0,Transient,38.18,1,0,Canceled,2019-03-04 -City Hotel,1,3,2016,July,10,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,72.0,179.0,0,Transient,61.84,0,0,Canceled,2018-12-03 -City Hotel,1,412,2016,June,26,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,20,Transient,102.1,0,0,Canceled,2018-09-02 -City Hotel,0,298,2017,May,21,21,0,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,95.85,0,0,Check-Out,2020-03-03 -City Hotel,0,94,2017,May,22,7,2,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,106.66,0,1,Check-Out,2020-05-03 -City Hotel,1,163,2017,May,22,29,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient,97.88,0,0,Canceled,2020-03-03 -Resort Hotel,1,239,2016,October,44,24,0,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,33.4,0,0,Canceled,2019-07-04 -Resort Hotel,0,104,2016,April,33,10,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,Refundable,315.0,179.0,0,Transient,79.97,0,0,Check-Out,2019-05-04 -City Hotel,0,234,2016,July,31,31,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,76.15,0,0,Check-Out,2018-08-03 -Resort Hotel,1,145,2016,July,35,2,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,187.29,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,January,2,28,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,80.0,0,Transient,43.33,0,0,Check-Out,2019-09-03 -City Hotel,0,8,2016,October,44,2,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.07,0,2,Check-Out,2019-09-03 -City Hotel,0,140,2016,July,30,20,2,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.34,0,0,Check-Out,2019-05-04 -City Hotel,0,13,2017,January,3,13,0,2,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,80.28,0,1,Check-Out,2020-07-03 -Resort Hotel,0,38,2016,July,34,6,1,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,130.71,1,2,Check-Out,2019-06-03 -City Hotel,1,263,2017,February,8,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,74.81,0,0,Canceled,2019-12-04 -Resort Hotel,0,13,2016,November,43,15,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,37.0,179.0,0,Contract,73.26,0,0,Check-Out,2018-10-03 -Resort Hotel,0,12,2017,May,21,16,2,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,120.82,1,2,Check-Out,2020-03-03 -City Hotel,0,9,2015,September,43,28,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.41,0,0,Check-Out,2018-08-03 -City Hotel,0,34,2017,June,26,20,0,1,1,0.0,0,BB,CN,Complementary,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,113.13,0,0,Check-Out,2019-05-04 -City Hotel,0,51,2016,March,17,9,0,1,1,0.0,0,HB,IRL,Groups,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient-Party,34.39,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,March,10,10,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,241.0,179.0,0,Transient,63.69,0,0,Check-Out,2019-01-03 -City Hotel,1,218,2016,October,43,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,324.0,179.0,0,Transient-Party,60.87,0,0,Canceled,2019-10-04 -Resort Hotel,1,0,2017,January,2,28,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,A,0,Non Refund,15.0,73.0,0,Transient,37.9,1,0,Canceled,2019-12-04 -City Hotel,1,57,2015,November,53,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,238.0,179.0,0,Transient,58.76,0,0,Canceled,2018-08-03 -City Hotel,0,245,2016,October,23,5,1,10,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.78,0,0,Check-Out,2019-05-04 -City Hotel,1,283,2016,February,35,25,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,127.0,179.0,0,Transient,96.99,0,0,Canceled,2018-11-02 -Resort Hotel,0,3,2017,August,30,18,0,1,2,0.0,0,BB,FRA,Direct,Direct,1,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,113.41,0,1,Check-Out,2020-06-02 -City Hotel,1,98,2015,October,51,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,71.04,0,0,Canceled,2018-07-03 -Resort Hotel,0,44,2015,July,31,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,17.0,179.0,0,Transient,122.86,0,0,Check-Out,2018-12-03 -Resort Hotel,1,14,2016,November,44,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,69.35,0,0,Canceled,2019-10-04 -City Hotel,0,159,2015,December,53,20,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.59,0,2,Check-Out,2018-05-03 -Resort Hotel,0,50,2015,December,52,19,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,44.35,0,2,Check-Out,2019-01-03 -City Hotel,0,300,2015,June,30,9,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Contract,64.66,0,0,Check-Out,2017-11-02 -Resort Hotel,0,82,2016,March,11,21,2,0,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,E,1,No Deposit,192.0,331.0,0,Transient-Party,32.93,0,0,Check-Out,2019-04-03 -City Hotel,1,8,2016,August,36,14,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,202.86,0,0,Canceled,2019-08-04 -City Hotel,0,39,2017,April,15,31,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,7.0,179.0,0,Contract,101.61,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,October,43,20,0,1,2,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.09,0,0,Check-Out,2019-08-04 -Resort Hotel,0,110,2017,June,26,23,0,3,3,0.0,0,HB,PRT,Online TA,Corporate,0,0,0,E,E,1,No Deposit,247.0,179.0,0,Transient,158.98,1,0,Check-Out,2020-03-03 -City Hotel,1,2,2017,June,26,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient,1.8,0,0,Check-Out,2019-03-04 -Resort Hotel,0,6,2016,January,4,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,197.0,179.0,0,Transient,80.46,0,0,Check-Out,2019-02-01 -Resort Hotel,0,5,2016,April,23,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,230.0,0,Transient,37.13,0,0,Check-Out,2019-06-03 -City Hotel,0,140,2016,August,34,18,2,4,2,1.0,0,BB,USA,Online TA,Direct,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,207.26,0,0,Check-Out,2019-05-04 -City Hotel,1,303,2015,August,35,20,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,13.0,179.0,0,Transient,189.91,0,0,No-Show,2018-06-02 -City Hotel,0,309,2016,October,43,30,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,3,No Deposit,29.0,179.0,0,Transient-Party,60.43,0,0,Check-Out,2019-08-04 -Resort Hotel,0,35,2015,August,37,28,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,30.68,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2015,November,44,30,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,41.92,0,0,Check-Out,2018-06-02 -Resort Hotel,0,155,2017,June,23,29,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,242.0,179.0,0,Transient,126.66,1,1,Check-Out,2020-03-03 -City Hotel,0,11,2015,September,40,18,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,69.0,179.0,0,Group,133.19,0,0,Check-Out,2018-08-03 -City Hotel,1,296,2015,July,36,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.14,0,0,Canceled,2017-11-02 -Resort Hotel,1,29,2015,September,31,30,0,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,110.44,0,0,Canceled,2018-06-02 -City Hotel,1,7,2016,June,21,21,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,192.17,0,0,Canceled,2019-02-01 -City Hotel,1,262,2017,August,31,25,2,5,2,0.0,0,BB,PRT,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,92.75,0,0,Canceled,2019-09-03 -City Hotel,0,17,2015,October,45,24,0,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,B,0,No Deposit,13.0,203.0,0,Transient-Party,74.06,0,0,Check-Out,2018-09-02 -City Hotel,1,75,2017,March,17,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,80.42,0,2,Canceled,2019-11-03 -City Hotel,0,1,2015,December,51,13,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,229.0,0,Transient,69.09,0,0,Check-Out,2019-11-03 -City Hotel,1,240,2016,July,29,15,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,E,0,No Deposit,9.0,179.0,0,Transient,154.33,0,1,Canceled,2018-11-02 -City Hotel,0,0,2016,September,42,19,0,2,1,0.0,0,BB,,Complementary,Direct,0,0,0,D,D,0,No Deposit,12.0,236.0,0,Transient,0.24,0,0,Check-Out,2019-10-04 -City Hotel,1,48,2016,December,53,25,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,300.0,179.0,0,Transient,93.88,0,0,Canceled,2018-10-03 -Resort Hotel,1,121,2016,August,34,24,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,126.83,0,0,Canceled,2019-05-04 -City Hotel,0,232,2015,July,36,12,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,84.0,179.0,0,Contract,131.54,0,0,Check-Out,2018-08-03 -Resort Hotel,1,368,2017,February,7,14,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,13.0,242.0,0,Transient,29.51,0,0,Canceled,2020-04-02 -City Hotel,0,0,2017,June,28,5,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.69,0,1,Check-Out,2020-07-03 -City Hotel,1,413,2016,April,22,28,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,82.88,0,0,Canceled,2018-11-02 -City Hotel,1,287,2017,May,24,28,2,6,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,71.23,0,0,Canceled,2019-11-03 -Resort Hotel,1,7,2015,July,36,27,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,16.0,179.0,0,Transient,225.67,0,0,Canceled,2018-06-02 -City Hotel,1,106,2017,July,33,17,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,A,1,No Deposit,10.0,179.0,0,Transient,82.12,0,1,Canceled,2019-10-04 -City Hotel,0,8,2017,June,19,6,1,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,148.22,0,3,No-Show,2020-02-01 -Resort Hotel,0,39,2017,July,30,6,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,164.24,0,2,Check-Out,2020-06-02 -Resort Hotel,0,46,2017,July,37,25,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,244.0,179.0,0,Transient,83.48,1,0,Check-Out,2020-06-02 -City Hotel,0,52,2016,September,45,13,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,125.8,0,2,Check-Out,2019-06-03 -City Hotel,1,56,2017,April,38,13,2,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.32,0,0,Canceled,2020-01-04 -Resort Hotel,0,7,2015,December,53,31,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,60.73,1,2,Check-Out,2018-12-03 -Resort Hotel,1,212,2017,July,36,6,2,7,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,F,E,1,Non Refund,183.0,179.0,0,Transient,146.24,0,0,Canceled,2020-06-02 -City Hotel,0,53,2016,January,17,23,0,1,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,62,Transient-Party,100.09,0,0,Check-Out,2018-12-03 -City Hotel,1,34,2015,December,53,18,0,1,3,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,109.67,0,0,Check-Out,2018-08-03 -Resort Hotel,0,9,2017,February,8,9,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,332.0,331.0,0,Transient,30.52,0,0,Check-Out,2019-11-03 -Resort Hotel,1,50,2017,June,25,5,2,6,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,162.96,0,0,Canceled,2019-02-01 -City Hotel,0,149,2016,May,44,5,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.0,0,2,Check-Out,2019-06-03 -Resort Hotel,1,161,2017,December,9,18,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,1,A,A,1,Non Refund,314.0,179.0,0,Transient-Party,45.21,0,0,Canceled,2019-01-03 -Resort Hotel,0,90,2015,December,51,15,0,2,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,63.72,0,0,Check-Out,2018-09-02 -Resort Hotel,0,35,2017,June,22,10,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,109.49,1,0,Check-Out,2020-05-03 -Resort Hotel,0,9,2016,July,30,11,0,4,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-02-01 -Resort Hotel,0,49,2016,December,5,28,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,34.22,0,0,Check-Out,2019-09-03 -City Hotel,1,35,2016,February,9,15,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,65.71,0,0,Canceled,2018-12-03 -City Hotel,0,48,2017,May,21,21,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.9,0,1,Check-Out,2020-03-03 -City Hotel,1,90,2017,June,22,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient-Party,110.83,0,1,No-Show,2020-04-02 -Resort Hotel,0,2,2015,December,51,30,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,331.0,0,Transient,60.36,1,0,Check-Out,2018-12-03 -City Hotel,0,97,2016,December,52,30,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient,63.98,0,1,Check-Out,2019-10-04 -Resort Hotel,0,199,2016,May,32,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,27.0,179.0,0,Transient-Party,103.61,0,0,Check-Out,2019-02-01 -City Hotel,1,40,2016,October,45,20,0,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,159.51,0,0,Canceled,2019-05-04 -City Hotel,0,2,2016,January,8,28,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.66,0,1,Check-Out,2018-11-02 -City Hotel,0,0,2015,September,50,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,45.0,0,Group,43.19,0,2,Check-Out,2018-11-02 -Resort Hotel,0,1,2015,October,42,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,48.27,0,0,No-Show,2018-05-03 -Resort Hotel,0,283,2017,August,21,8,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,176.33,1,1,Check-Out,2020-04-02 -City Hotel,0,80,2017,May,17,19,0,1,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient-Party,74.37,0,0,Check-Out,2020-05-03 -City Hotel,0,109,2016,December,51,26,0,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,F,1,No Deposit,13.0,179.0,0,Transient-Party,97.29,0,2,Check-Out,2019-10-04 -City Hotel,1,0,2016,February,11,9,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,71.0,0,Transient,104.21,0,0,Check-Out,2019-04-03 -City Hotel,0,35,2015,August,32,24,0,1,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,225.82,0,1,Check-Out,2018-06-02 -Resort Hotel,0,50,2016,April,15,30,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,73.0,179.0,21,Transient-Party,86.52,0,0,Check-Out,2019-01-03 -Resort Hotel,0,14,2015,August,37,2,0,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,212.25,1,2,Check-Out,2018-06-02 -Resort Hotel,0,163,2016,March,22,31,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,2,Refundable,14.0,223.0,0,Transient-Party,75.54,0,0,Check-Out,2019-05-04 -City Hotel,0,40,2016,January,5,10,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,76.38,0,0,Check-Out,2018-09-02 -City Hotel,0,31,2016,April,8,9,0,4,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,116.31,0,0,Check-Out,2019-02-01 -Resort Hotel,0,58,2017,March,23,13,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,33.07,1,2,Check-Out,2020-02-01 -Resort Hotel,0,17,2016,August,36,5,2,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient-Party,206.83,0,2,Check-Out,2019-06-03 -Resort Hotel,0,242,2015,October,40,21,4,4,2,0.0,0,BB,GBR,Direct,Corporate,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient-Party,92.88,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2016,November,51,29,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,97.82,0,0,Check-Out,2019-09-03 -City Hotel,0,18,2015,September,44,21,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient-Party,99.19,0,0,Check-Out,2018-07-03 -Resort Hotel,0,1,2016,February,11,9,1,0,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,66.4,0,0,Check-Out,2019-02-01 -Resort Hotel,0,8,2016,April,15,31,1,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,166.04,1,0,Check-Out,2019-02-01 -Resort Hotel,1,259,2017,June,27,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,238.0,179.0,0,Transient,164.73,0,2,Canceled,2020-02-01 -City Hotel,1,315,2017,January,4,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,152.07,0,0,Canceled,2019-08-04 -City Hotel,0,16,2016,June,25,10,0,3,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,77.0,75.0,0,Transient,68.6,0,0,Check-Out,2019-02-01 -City Hotel,1,412,2017,June,34,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,85.89,0,0,Canceled,2020-03-03 -City Hotel,1,98,2015,December,36,2,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,1,1,0,D,D,0,No Deposit,23.0,179.0,0,Group,89.2,0,0,Canceled,2018-06-02 -City Hotel,1,99,2017,July,25,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.19,0,1,Canceled,2020-06-02 -City Hotel,1,1,2017,May,16,21,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,206.0,0,Transient,73.52,0,0,Canceled,2019-11-03 -City Hotel,1,51,2017,March,36,28,1,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,153.06,1,0,Canceled,2019-11-03 -City Hotel,1,40,2016,January,10,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,61.26,0,0,Canceled,2018-11-02 -City Hotel,0,45,2016,May,22,24,2,5,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.38,0,1,Check-Out,2019-06-03 -Resort Hotel,1,153,2017,June,26,9,2,5,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,Non Refund,13.0,179.0,0,Transient,99.19,0,0,Canceled,2020-01-04 -Resort Hotel,0,5,2015,December,53,29,2,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,14.0,179.0,0,Transient,81.87,0,0,Check-Out,2018-11-02 -Resort Hotel,0,61,2015,November,49,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,1,D,D,0,No Deposit,92.0,179.0,0,Group,42.65,0,0,Check-Out,2018-11-02 -City Hotel,0,40,2017,June,29,23,2,0,1,0.0,0,BB,ESP,Aviation,GDS,0,0,0,A,A,0,No Deposit,183.0,331.0,0,Transient,86.24,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2017,February,10,22,0,1,2,2.0,0,BB,PRT,Corporate,Corporate,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,194.64,0,0,Check-Out,2020-01-04 -City Hotel,0,46,2017,June,26,22,1,1,2,0.0,0,HB,DEU,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.57,1,1,Check-Out,2020-04-02 -City Hotel,0,16,2017,May,35,20,1,0,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,95.35,0,0,Check-Out,2020-07-03 -Resort Hotel,0,157,2016,October,42,13,4,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,F,C,1,No Deposit,241.0,179.0,0,Transient,196.65,1,1,Check-Out,2019-07-04 -City Hotel,1,242,2016,October,42,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,0,Transient,95.62,0,0,Canceled,2018-10-03 -Resort Hotel,0,271,2016,October,44,21,0,5,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,1,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,89.8,0,0,Check-Out,2019-08-04 -Resort Hotel,1,229,2015,September,38,30,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,42.7,0,0,Canceled,2017-11-02 -City Hotel,0,0,2017,May,23,13,0,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,178.0,0,Transient,3.03,1,0,Check-Out,2019-12-04 -City Hotel,0,152,2017,May,17,17,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,100.41,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2016,December,4,17,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,115.68,1,0,Check-Out,2018-11-02 -City Hotel,1,2,2016,June,29,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,14.0,45.0,0,Transient,63.28,0,0,Canceled,2019-02-01 -City Hotel,1,172,2015,August,39,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.84,0,0,Canceled,2018-06-02 -City Hotel,0,154,2017,July,24,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,9.0,179.0,0,Contract,89.22,0,0,Check-Out,2020-03-03 -Resort Hotel,1,108,2017,July,31,20,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,216.31,0,0,Canceled,2020-06-02 -Resort Hotel,1,32,2017,February,8,12,1,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,224.0,0,Transient,86.28,0,0,Canceled,2019-12-04 -Resort Hotel,0,16,2017,August,30,18,0,3,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,E,G,2,No Deposit,15.0,179.0,0,Transient,251.92,0,3,Check-Out,2020-06-02 -City Hotel,0,163,2017,July,32,27,2,5,2,1.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,221.42,0,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2017,June,29,6,2,1,2,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,A,1,No Deposit,333.0,179.0,0,Transient-Party,118.69,1,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,February,3,23,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,165.0,179.0,0,Transient,42.69,1,0,Check-Out,2019-05-04 -Resort Hotel,1,429,2016,May,36,15,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient,62.3,0,0,Canceled,2019-08-04 -Resort Hotel,0,7,2017,June,32,10,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,243.0,179.0,0,Transient,122.11,1,0,Check-Out,2020-03-03 -City Hotel,1,44,2016,May,26,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,80.0,179.0,41,Transient,98.68,0,0,Canceled,2018-11-02 -City Hotel,0,2,2017,March,16,10,2,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,77.95,0,2,Check-Out,2020-02-01 -City Hotel,0,28,2015,August,38,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,119.31,0,2,Check-Out,2018-01-31 -City Hotel,0,99,2017,August,36,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,105.99,0,0,Check-Out,2020-06-02 -City Hotel,0,262,2017,July,32,24,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,143.42,0,1,Check-Out,2020-07-03 -City Hotel,1,39,2016,December,44,29,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,138.97,0,1,Canceled,2019-10-04 -Resort Hotel,0,10,2015,September,50,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,62.5,0,0,Check-Out,2018-09-02 -City Hotel,0,139,2017,February,14,10,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,95.25,0,2,Check-Out,2020-04-02 -City Hotel,0,37,2016,June,25,5,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Contract,93.83,0,1,Check-Out,2019-03-04 -City Hotel,0,163,2016,May,27,3,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,99.65,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2015,August,39,19,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,19.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -City Hotel,0,22,2016,October,43,12,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,100.93,0,0,Check-Out,2019-08-04 -Resort Hotel,0,157,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,1,Refundable,13.0,222.0,0,Transient-Party,78.07,0,0,Check-Out,2019-02-01 -City Hotel,0,17,2017,January,3,29,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,132.07,0,2,Check-Out,2020-06-02 -Resort Hotel,0,314,2017,May,22,14,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,123.87,1,1,Check-Out,2020-03-03 -City Hotel,0,13,2016,September,44,21,2,1,2,2.0,0,BB,BEL,Online TA,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,211.83,0,0,Check-Out,2019-06-03 -City Hotel,0,143,2017,October,43,21,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,107.94,0,3,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,April,14,18,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,May,22,9,2,0,1,0.0,0,BB,GBR,Aviation,Corporate,1,0,1,D,A,1,No Deposit,195.0,155.0,0,Transient,83.79,0,0,Check-Out,2019-11-03 -Resort Hotel,0,16,2017,May,10,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient,44.39,0,0,Check-Out,2020-06-02 -Resort Hotel,0,48,2017,May,23,28,1,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,225.85,0,0,Check-Out,2020-05-03 -City Hotel,0,106,2017,July,31,28,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,105.1,0,3,Check-Out,2020-04-02 -City Hotel,1,41,2017,July,33,10,2,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,130.67,0,1,Check-Out,2020-07-03 -Resort Hotel,0,263,2016,May,22,20,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,74.18,0,0,Check-Out,2019-02-01 -City Hotel,1,1,2016,October,43,17,0,1,1,0.0,0,BB,GBR,Complementary,Corporate,0,0,1,A,E,0,No Deposit,12.0,179.0,24,Group,0.0,0,0,Canceled,2019-09-03 -Resort Hotel,0,2,2016,October,45,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,166.02,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2017,February,11,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,62.55,0,0,Check-Out,2019-09-03 -Resort Hotel,1,300,2017,June,25,8,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,99.48,0,1,Canceled,2020-03-03 -Resort Hotel,1,262,2015,October,43,26,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,87.49,0,0,Canceled,2018-08-03 -Resort Hotel,0,18,2015,November,45,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,43.14,0,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2017,May,22,5,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,223.0,179.0,0,Transient,127.85,1,0,Check-Out,2019-06-03 -Resort Hotel,0,8,2016,December,53,27,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,97.86,1,1,Check-Out,2019-10-04 -City Hotel,0,41,2017,May,23,24,2,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.21,0,0,Check-Out,2020-04-02 -Resort Hotel,0,51,2015,October,44,6,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,42.74,0,2,Check-Out,2018-08-03 -City Hotel,1,32,2016,November,21,5,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.44,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,February,11,10,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,87.74,0,0,Check-Out,2018-11-02 -City Hotel,1,255,2016,May,26,9,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,1,0,A,A,1,Non Refund,13.0,179.0,0,Transient,36.52,0,0,Canceled,2019-04-03 -Resort Hotel,0,8,2016,October,42,2,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,71.75,0,0,Check-Out,2019-08-04 -Resort Hotel,0,49,2016,October,43,12,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,146.78,0,1,Check-Out,2019-07-04 -City Hotel,0,38,2017,February,10,29,2,5,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,158.84,0,1,Check-Out,2019-02-01 -City Hotel,1,252,2017,August,32,20,0,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,100.2,0,0,Canceled,2020-04-02 -City Hotel,1,42,2017,May,24,14,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,102.31,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2017,October,44,10,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,C,0,No Deposit,14.0,179.0,0,Transient,87.43,1,3,Check-Out,2019-11-03 -City Hotel,0,94,2015,March,9,24,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,99.14,0,1,Check-Out,2018-12-03 -City Hotel,1,240,2016,June,20,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,83.12,0,0,Canceled,2019-04-03 -Resort Hotel,1,159,2016,March,17,30,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,9.0,179.0,0,Transient,87.19,0,0,Canceled,2019-02-01 -City Hotel,1,379,2016,May,23,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.7,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2016,March,9,10,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,61.23,0,0,Check-Out,2018-12-03 -Resort Hotel,0,149,2015,July,53,30,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,100.43,1,2,Check-Out,2018-08-03 -City Hotel,0,9,2016,May,19,20,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,117.4,1,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2017,February,4,27,1,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,16.0,179.0,0,Group,0.77,0,1,Check-Out,2019-10-04 -City Hotel,0,2,2017,January,3,5,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.9,0,1,Check-Out,2019-11-03 -City Hotel,0,5,2016,May,22,28,0,1,2,0.0,0,SC,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,60.97,0,0,Check-Out,2019-07-04 -City Hotel,0,45,2015,November,50,14,0,2,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,81.22,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,May,16,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,1,No Deposit,16.0,331.0,0,Transient,83.48,1,0,Check-Out,2020-03-03 -City Hotel,0,18,2016,October,45,15,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,0,No Deposit,16.0,210.0,0,Transient,83.65,0,0,Check-Out,2019-07-04 -City Hotel,1,41,2017,March,11,13,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,F,0,Non Refund,14.0,179.0,0,Transient,63.07,1,0,Canceled,2019-12-04 -City Hotel,0,19,2016,August,32,6,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,118.28,1,1,Check-Out,2019-05-04 -City Hotel,1,7,2016,May,33,3,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,119.87,0,0,Canceled,2019-02-01 -City Hotel,0,135,2017,August,39,22,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,197.01,0,1,Check-Out,2019-10-04 -City Hotel,0,58,2017,May,21,25,0,4,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,135.05,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,October,44,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,248.0,244.0,0,Transient,28.88,1,0,Check-Out,2019-08-04 -City Hotel,0,13,2016,November,45,10,0,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,65.3,0,0,Check-Out,2019-10-04 -Resort Hotel,1,39,2016,March,16,15,0,5,3,1.0,0,HB,PRT,Groups,TA/TO,1,0,1,P,I,2,No Deposit,10.0,179.0,0,Transient,61.75,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2017,June,9,9,1,1,2,0.0,0,HB,PRT,Direct,GDS,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,63.06,1,0,Check-Out,2020-04-02 -Resort Hotel,0,24,2015,December,51,27,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,61.56,0,2,Check-Out,2018-11-02 -City Hotel,1,11,2016,June,31,21,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,114.28,0,0,No-Show,2018-08-03 -City Hotel,0,2,2016,May,16,6,1,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,135.92,0,0,Check-Out,2019-02-01 -Resort Hotel,0,7,2016,June,20,15,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,C,0,No Deposit,247.0,179.0,0,Transient,87.86,0,2,Check-Out,2019-03-04 -Resort Hotel,1,45,2016,July,37,9,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,134.0,179.0,0,Transient,72.63,0,0,Canceled,2019-02-01 -City Hotel,1,60,2016,October,44,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,81.94,0,0,Canceled,2018-07-03 -City Hotel,0,172,2016,April,9,24,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,B,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -City Hotel,1,32,2017,January,3,2,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,61.39,0,1,Canceled,2019-12-04 -City Hotel,1,9,2016,June,28,2,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.66,0,1,No-Show,2019-02-01 -City Hotel,1,60,2017,March,16,2,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,82.98,0,0,Canceled,2020-02-01 -City Hotel,0,20,2015,September,35,17,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,61.07,0,0,Check-Out,2018-08-03 -Resort Hotel,0,54,2016,November,44,10,0,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-09-03 -City Hotel,1,30,2017,May,18,13,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,92.34,0,0,Canceled,2020-02-01 -City Hotel,1,202,2015,July,32,9,0,5,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,129.83,0,1,Canceled,2018-06-02 -City Hotel,0,16,2016,December,53,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,10.0,179.0,0,Group,118.31,0,1,Check-Out,2019-10-04 -City Hotel,0,117,2016,September,36,10,0,2,3,1.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,130.56,0,2,Check-Out,2019-06-03 -City Hotel,1,102,2015,April,53,7,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.68,0,0,Canceled,2019-01-03 -Resort Hotel,0,247,2016,May,20,9,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,72.86,0,0,Check-Out,2019-07-04 -City Hotel,0,36,2015,December,44,25,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,6.0,179.0,0,Transient-Party,59.76,1,0,Canceled,2018-09-02 -City Hotel,1,249,2017,June,27,12,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,100.12,0,0,Canceled,2020-06-02 -City Hotel,1,171,2017,July,35,22,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,85.55,0,0,Canceled,2018-06-02 -Resort Hotel,0,188,2017,May,22,17,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,129.07,0,2,Check-Out,2020-03-03 -City Hotel,0,160,2017,May,20,18,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,124.77,0,0,Check-Out,2020-04-02 -Resort Hotel,1,146,2016,July,36,15,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,75.0,179.0,0,Transient-Party,118.23,0,0,Canceled,2019-08-04 -Resort Hotel,0,9,2016,November,50,18,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,39.35,0,0,Check-Out,2019-11-03 -Resort Hotel,0,17,2017,February,10,11,0,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,32.32,0,1,Check-Out,2020-06-02 -City Hotel,1,415,2017,May,21,27,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,114.37,0,0,Canceled,2020-03-03 -City Hotel,0,34,2016,April,24,10,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,140.54,0,3,Check-Out,2019-03-04 -City Hotel,0,45,2016,June,15,30,0,1,1,0.0,0,BB,SWE,Online TA,Corporate,0,0,0,A,D,1,No Deposit,10.0,67.0,0,Transient,120.23,0,2,Check-Out,2019-02-01 -Resort Hotel,1,153,2016,December,50,10,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient-Party,70.83,0,0,Canceled,2018-11-02 -Resort Hotel,0,112,2017,March,18,15,2,5,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,41.09,0,0,Check-Out,2020-02-01 -Resort Hotel,0,172,2017,March,21,3,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,I,2,Refundable,12.0,222.0,0,Transient-Party,49.4,1,2,Check-Out,2020-01-04 -Resort Hotel,0,147,2016,October,45,16,2,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,337.0,223.0,0,Transient-Party,71.76,0,0,Check-Out,2019-05-04 -Resort Hotel,0,107,2016,March,27,13,0,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,243.0,179.0,0,Transient,71.53,0,0,Check-Out,2019-02-01 -City Hotel,1,200,2016,December,15,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,18,Transient,78.31,0,0,Canceled,2019-10-04 -City Hotel,0,73,2016,March,8,30,2,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,63,Transient,82.43,1,0,Check-Out,2019-02-01 -Resort Hotel,0,28,2016,December,50,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,237.0,0,Transient-Party,61.06,0,0,Check-Out,2019-12-04 -Resort Hotel,1,14,2016,February,52,30,2,0,2,0.0,0,BB,GBR,Online TA,GDS,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,73.82,0,0,Canceled,2018-11-02 -City Hotel,0,0,2016,December,49,15,1,2,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.02,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,March,11,28,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,D,0,No Deposit,16.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-03-04 -City Hotel,0,204,2017,June,27,29,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,79.85,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2015,October,45,10,1,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,73.61,0,1,Check-Out,2018-08-03 -City Hotel,1,0,2017,July,33,12,1,2,1,0.0,0,SC,BRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,186.0,0,0,Canceled,2019-11-03 -City Hotel,0,196,2016,October,46,15,2,4,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,199.36,0,2,Check-Out,2019-04-03 -City Hotel,1,102,2017,August,34,12,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,161.22,0,2,Canceled,2019-12-04 -Resort Hotel,0,23,2016,December,4,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient,62.21,1,0,Check-Out,2019-11-03 -Resort Hotel,0,206,2016,September,40,4,4,5,2,1.0,0,HB,USA,Direct,Direct,0,0,0,C,C,0,No Deposit,251.0,179.0,0,Transient,207.13,1,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,September,43,6,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,17.0,179.0,0,Transient,104.7,0,0,Check-Out,2018-08-03 -City Hotel,1,192,2016,March,11,9,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,119.33,0,0,Canceled,2018-10-03 -City Hotel,0,15,2016,November,45,16,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,136.88,0,0,Check-Out,2018-11-02 -City Hotel,0,15,2015,October,46,13,1,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,260.0,0,Transient-Party,58.7,0,0,Check-Out,2018-10-03 -Resort Hotel,1,142,2017,June,27,21,1,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,194.0,179.0,0,Transient-Party,115.51,0,0,Canceled,2020-04-02 -City Hotel,1,2,2017,January,3,30,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,64.84,0,0,Canceled,2019-12-04 -City Hotel,1,170,2016,January,10,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,78.21,0,0,Canceled,2018-10-03 -City Hotel,1,140,2016,October,45,18,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,142.87,0,0,Canceled,2019-08-04 -Resort Hotel,0,15,2017,March,12,6,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,64.8,0,1,Check-Out,2019-09-03 -City Hotel,1,103,2016,July,26,8,2,5,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.87,0,0,Canceled,2019-07-04 -City Hotel,0,29,2017,April,17,6,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,70.62,0,2,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,February,3,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,36.26,0,0,Check-Out,2019-01-03 -Resort Hotel,0,29,2015,December,53,25,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,74.39,0,0,Check-Out,2018-08-03 -City Hotel,1,107,2015,September,44,10,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,141.84,0,0,Canceled,2018-05-03 -Resort Hotel,0,3,2016,November,11,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,45.0,0,Transient,48.1,1,0,Check-Out,2019-06-03 -City Hotel,0,16,2017,June,22,24,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,62.3,0,1,Check-Out,2020-03-03 -City Hotel,1,255,2016,June,27,6,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,162.0,179.0,43,Transient,99.85,0,0,Canceled,2019-02-01 -Resort Hotel,1,157,2017,March,15,30,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,157.0,0,0,Canceled,2020-02-01 -City Hotel,0,274,2017,June,37,8,1,3,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,77.96,0,0,Check-Out,2019-08-04 -Resort Hotel,1,292,2017,February,35,18,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,165.0,179.0,0,Transient,60.12,0,0,No-Show,2020-03-03 -City Hotel,1,6,2017,June,33,18,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,3,No Deposit,15.0,179.0,0,Transient,136.31,0,0,No-Show,2020-06-02 -City Hotel,0,0,2015,September,42,28,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,I,0,No Deposit,9.0,331.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,203,2016,September,46,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,81.92,0,0,Check-Out,2019-08-04 -Resort Hotel,1,1,2017,February,10,21,0,4,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,15.0,224.0,0,Transient,41.59,0,0,Canceled,2019-12-04 -City Hotel,0,4,2016,September,44,26,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.54,0,0,Check-Out,2019-06-03 -City Hotel,0,259,2016,June,43,12,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,125.5,0,3,Check-Out,2019-06-03 -Resort Hotel,0,83,2016,October,35,2,1,10,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,39.1,0,0,Check-Out,2019-07-04 -City Hotel,1,41,2016,January,3,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,119.82,0,0,Canceled,2019-10-04 -City Hotel,1,114,2016,October,45,24,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.83,0,2,Canceled,2019-01-03 -City Hotel,1,16,2016,November,50,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,68.2,0,0,Canceled,2019-10-04 -City Hotel,1,117,2015,September,33,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,95.62,0,0,Canceled,2018-07-03 -City Hotel,0,160,2016,July,32,16,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,149.18,0,0,Check-Out,2019-06-03 -Resort Hotel,0,42,2016,June,16,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,95.88,1,0,Check-Out,2019-02-01 -City Hotel,1,0,2016,August,35,13,2,1,1,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,74.35,0,0,No-Show,2019-09-03 -City Hotel,0,278,2017,June,27,6,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,64.19,0,1,Check-Out,2020-06-02 -Resort Hotel,0,104,2017,June,28,18,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,F,2,No Deposit,240.0,179.0,0,Transient,222.44,0,1,Check-Out,2020-02-01 -City Hotel,0,16,2016,September,45,28,0,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.61,0,1,Check-Out,2019-03-04 -Resort Hotel,0,28,2016,July,32,4,0,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,251.0,179.0,0,Transient,94.81,0,0,Check-Out,2019-05-04 -Resort Hotel,0,10,2016,July,31,10,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.48,0,2,Check-Out,2019-05-04 -Resort Hotel,0,264,2016,October,46,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,300.0,179.0,0,Transient-Party,39.95,0,0,Check-Out,2019-04-03 -City Hotel,0,105,2015,September,37,20,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,127.2,0,0,Check-Out,2018-08-03 -City Hotel,1,9,2017,June,10,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,79.24,0,0,Canceled,2019-11-03 -Resort Hotel,0,220,2016,July,27,15,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient-Party,84.27,0,0,Check-Out,2019-05-04 -Resort Hotel,1,237,2016,May,27,2,3,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,96.68,0,0,Canceled,2019-01-03 -City Hotel,0,144,2016,October,43,23,1,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,67.85,0,0,Check-Out,2019-08-04 -City Hotel,1,42,2017,August,28,20,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.74,0,1,Check-Out,2020-07-03 -City Hotel,0,76,2016,October,43,5,1,4,2,1.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,105.71,0,3,Check-Out,2019-08-04 -Resort Hotel,0,65,2016,September,37,31,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,98.43,0,2,Check-Out,2019-05-04 -City Hotel,0,0,2016,February,9,9,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,242.0,0,Transient,37.65,0,0,Check-Out,2018-09-02 -Resort Hotel,0,23,2016,March,17,9,1,5,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,H,1,No Deposit,17.0,179.0,0,Transient,105.4,1,0,Check-Out,2019-05-04 -Resort Hotel,1,154,2017,August,38,21,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,87.14,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2017,August,9,27,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,125.85,1,1,Check-Out,2020-02-01 -Resort Hotel,0,12,2016,December,51,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,E,1,No Deposit,105.0,219.0,0,Transient,32.4,0,0,Check-Out,2019-12-04 -City Hotel,1,218,2017,June,27,10,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.01,0,0,Canceled,2020-02-01 -City Hotel,0,37,2016,October,44,23,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.4,0,1,Check-Out,2019-09-03 -City Hotel,1,7,2017,February,9,25,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,74.0,0,Transient-Party,73.87,0,0,Canceled,2019-10-04 -Resort Hotel,0,290,2016,May,21,15,1,1,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,255.0,179.0,0,Transient-Party,78.28,0,0,Check-Out,2019-05-04 -City Hotel,0,94,2016,September,45,31,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.73,1,2,Check-Out,2019-11-03 -Resort Hotel,1,135,2017,August,44,13,0,4,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,268.0,179.0,0,Transient,203.82,0,0,Canceled,2020-01-04 -Resort Hotel,0,23,2015,September,35,23,2,5,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,L,E,1,No Deposit,248.0,179.0,0,Transient,223.06,0,0,Check-Out,2018-05-03 -Resort Hotel,0,318,2015,July,26,2,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Contract,64.27,0,0,Check-Out,2018-06-02 -City Hotel,1,133,2016,June,23,11,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,41,Transient,84.3,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2016,December,51,5,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,D,D,3,No Deposit,15.0,331.0,0,Transient,32.65,1,0,Check-Out,2019-06-03 -City Hotel,1,211,2017,June,16,15,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,147.09,0,0,Canceled,2019-10-04 -City Hotel,0,253,2015,October,43,17,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,18,Contract,78.76,0,0,Check-Out,2018-08-03 -Resort Hotel,0,152,2017,May,12,30,2,4,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,D,E,1,No Deposit,16.0,179.0,0,Transient,133.98,1,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,March,9,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient-Party,62.63,1,0,Check-Out,2019-02-01 -City Hotel,0,13,2016,May,44,27,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.6,0,0,Check-Out,2019-05-04 -City Hotel,0,2,2015,October,47,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,11.0,79.0,0,Transient-Party,68.75,0,0,Check-Out,2018-09-02 -City Hotel,0,12,2017,April,23,24,1,1,1,0.0,0,HB,DEU,Direct,Direct,0,0,0,D,A,1,No Deposit,13.0,179.0,0,Transient,119.67,0,0,Check-Out,2020-03-03 -Resort Hotel,1,17,2017,June,28,28,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,82.69,0,1,Canceled,2020-04-02 -City Hotel,0,3,2016,October,44,9,2,3,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,96.68,0,0,Check-Out,2019-08-04 -City Hotel,1,253,2017,June,25,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.33,0,1,Canceled,2020-02-01 -Resort Hotel,1,107,2017,May,21,22,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,48.06,0,0,Canceled,2020-03-03 -Resort Hotel,0,17,2016,July,35,13,2,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,194.07,1,2,Check-Out,2019-06-03 -City Hotel,0,37,2016,August,39,30,2,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,129.45,0,0,Check-Out,2019-09-03 -Resort Hotel,1,255,2016,September,35,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient,70.14,0,0,Canceled,2019-04-03 -City Hotel,1,365,2016,August,36,30,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,124.76,0,0,Canceled,2019-07-04 -City Hotel,0,131,2017,June,24,10,2,7,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.62,0,0,Check-Out,2019-05-04 -City Hotel,1,278,2016,September,23,15,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.81,0,0,Canceled,2019-03-04 -City Hotel,0,13,2015,September,35,27,0,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.73,0,0,Check-Out,2018-07-03 -City Hotel,0,152,2017,June,29,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient,101.36,0,0,Check-Out,2020-06-02 -City Hotel,0,20,2016,June,28,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,91.33,0,0,Check-Out,2019-06-03 -City Hotel,1,248,2017,June,27,27,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.12,0,0,Canceled,2020-03-03 -Resort Hotel,1,226,2016,June,26,17,2,7,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,Refundable,166.0,179.0,0,Transient,123.13,0,0,Canceled,2019-01-03 -Resort Hotel,1,46,2017,March,10,2,2,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,237.0,179.0,0,Transient,113.48,0,1,Canceled,2019-10-04 -City Hotel,0,14,2015,October,42,29,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,1,No Deposit,38.0,179.0,0,Contract,66.79,0,0,Check-Out,2018-12-03 -City Hotel,1,199,2016,October,44,20,2,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,88.65,0,0,Canceled,2019-08-04 -City Hotel,0,276,2015,July,25,26,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,66.7,0,0,Check-Out,2018-06-02 -City Hotel,1,341,2015,August,39,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.44,0,0,Check-Out,2017-12-03 -Resort Hotel,0,11,2017,September,33,3,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Contract,75.99,0,0,Check-Out,2020-06-02 -City Hotel,1,43,2016,April,16,31,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,41,Transient,84.72,0,0,Canceled,2018-11-02 -Resort Hotel,0,394,2016,October,34,20,0,3,1,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,81.0,179.0,0,Group,0.0,0,1,Check-Out,2018-09-02 -Resort Hotel,0,12,2016,July,36,19,0,5,3,0.0,0,FB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,109.02,0,0,Check-Out,2019-07-04 -City Hotel,1,23,2016,August,39,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,158.64,0,0,Canceled,2018-08-03 -City Hotel,1,304,2017,August,34,13,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,196.09,0,1,Canceled,2020-06-02 -Resort Hotel,0,158,2016,March,18,31,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,11.0,223.0,0,Transient-Party,47.02,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,March,21,20,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.7,0,1,Check-Out,2020-05-03 -City Hotel,0,93,2016,May,22,25,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,152.71,0,3,Check-Out,2019-07-04 -City Hotel,1,93,2017,August,35,17,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,167.01,0,1,Canceled,2019-11-03 -Resort Hotel,0,48,2017,May,23,19,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,1.09,1,0,Check-Out,2020-03-03 -Resort Hotel,0,308,2016,October,44,17,3,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,41.08,1,1,Check-Out,2019-06-03 -City Hotel,0,156,2016,June,26,30,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,132.87,0,0,Check-Out,2019-05-04 -Resort Hotel,1,202,2017,May,17,17,0,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,238.0,179.0,0,Transient,93.26,0,2,Check-Out,2020-03-03 -City Hotel,0,1,2016,March,17,15,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient,112.66,0,1,Check-Out,2020-02-01 -City Hotel,0,8,2016,June,25,7,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,89.52,0,0,Check-Out,2019-06-03 -Resort Hotel,0,108,2016,April,19,16,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,62,Transient-Party,38.71,0,0,Check-Out,2018-11-02 -City Hotel,0,8,2016,June,24,26,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.1,0,0,Check-Out,2019-05-04 -Resort Hotel,0,15,2017,May,19,31,2,1,2,0.0,0,BB,POL,Groups,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,133.0,0,0,Check-Out,2020-02-01 -City Hotel,1,17,2017,August,37,29,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,134.42,0,1,Canceled,2019-06-03 -City Hotel,0,39,2017,May,20,30,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,97.31,0,0,Check-Out,2019-11-03 -City Hotel,0,6,2016,October,44,29,1,3,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,163.49,0,3,Check-Out,2019-08-04 -City Hotel,0,0,2016,October,46,9,0,2,1,0.0,0,BB,NLD,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,178.0,0,Transient,134.62,0,1,Check-Out,2019-03-04 -Resort Hotel,0,3,2016,June,26,21,2,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,72.64,0,1,Check-Out,2019-03-04 -City Hotel,1,424,2016,September,36,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,3,Non Refund,82.0,179.0,0,Transient,106.51,0,0,Canceled,2018-08-03 -City Hotel,1,10,2016,June,27,8,0,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,22.0,179.0,0,Transient,147.27,0,0,Canceled,2019-07-04 -City Hotel,1,162,2017,June,27,27,2,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,99.44,0,0,Canceled,2020-03-03 -City Hotel,1,109,2016,October,36,12,0,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,145.37,0,1,Canceled,2019-09-03 -City Hotel,1,272,2016,October,50,31,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,122.38,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2015,October,50,18,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,3,No Deposit,17.0,179.0,0,Transient,76.21,1,3,Check-Out,2019-06-03 -City Hotel,1,0,2016,June,22,5,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,63.71,0,1,Canceled,2019-02-01 -Resort Hotel,0,52,2015,March,53,9,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,122.61,0,1,Check-Out,2018-11-02 -City Hotel,0,16,2016,March,49,24,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,79.07,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2015,October,45,21,0,2,2,0.0,0,HB,FRA,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,28.0,179.0,0,Contract,130.95,0,0,Check-Out,2018-09-02 -City Hotel,1,276,2015,September,38,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,1.0,179.0,0,Transient,59.45,0,0,Canceled,2018-08-03 -City Hotel,0,3,2017,April,14,13,0,1,1,0.0,0,BB,AUT,Direct,Corporate,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Group,130.19,1,3,Check-Out,2020-06-02 -City Hotel,0,50,2015,November,43,20,2,0,2,0.0,0,BB,ESP,Direct,Corporate,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,163.4,0,0,Check-Out,2018-07-03 -Resort Hotel,0,250,2017,July,18,28,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,69.24,0,0,Check-Out,2020-05-03 -Resort Hotel,0,43,2015,December,50,28,1,4,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,74.65,0,0,Check-Out,2018-09-02 -Resort Hotel,0,189,2017,May,27,6,4,10,1,0.0,0,HB,DEU,Aviation,Corporate,0,0,0,D,D,2,No Deposit,216.0,331.0,0,Transient-Party,113.55,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2015,November,45,17,0,1,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,62.49,0,0,Check-Out,2018-06-02 -Resort Hotel,0,114,2016,February,15,5,2,4,1,0.0,0,BB,,Direct,Direct,0,0,0,A,C,3,No Deposit,247.0,179.0,0,Transient,143.97,0,2,Check-Out,2019-02-01 -City Hotel,0,10,2016,October,43,16,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.83,0,1,Check-Out,2019-06-03 -City Hotel,0,409,2017,June,24,18,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Contract,102.17,0,0,Check-Out,2020-02-01 -City Hotel,0,13,2016,June,27,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,76.78,0,2,Check-Out,2019-07-04 -City Hotel,0,40,2015,July,30,20,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,64.92,0,2,Check-Out,2018-06-02 -Resort Hotel,0,46,2016,March,13,30,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,237.83,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,June,9,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,H,D,1,No Deposit,133.0,179.0,0,Transient,61.84,1,0,Check-Out,2018-10-03 -City Hotel,0,1,2015,October,35,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,61.19,0,0,Canceled,2018-06-02 -City Hotel,1,107,2016,July,29,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,B,D,0,Non Refund,7.0,179.0,0,Transient,115.53,0,2,Canceled,2018-06-02 -City Hotel,0,0,2015,July,31,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,91.22,1,1,Check-Out,2018-06-02 -City Hotel,0,53,2015,October,44,5,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.82,0,0,Check-Out,2018-08-03 -City Hotel,1,260,2016,April,24,30,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,B,1,Non Refund,78.0,179.0,75,Transient-Party,82.21,0,0,Canceled,2019-02-01 -Resort Hotel,1,247,2015,August,32,23,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,87.57,0,0,Canceled,2018-06-02 -City Hotel,0,87,2016,July,29,20,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,101.63,0,1,Check-Out,2018-11-02 -City Hotel,1,44,2017,April,15,25,2,5,1,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,128.36,0,0,Canceled,2018-12-03 -Resort Hotel,1,240,2016,June,27,27,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,129.38,0,1,Check-Out,2019-04-03 -City Hotel,0,146,2016,June,27,20,0,1,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,A,1,No Deposit,10.0,179.0,0,Transient,112.98,0,2,Check-Out,2020-03-03 -City Hotel,1,17,2017,May,23,9,2,0,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,8.0,179.0,0,Transient,170.22,0,1,Canceled,2020-02-01 -City Hotel,0,58,2017,June,26,15,2,0,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,153.96,0,0,Check-Out,2020-05-03 -City Hotel,0,115,2017,May,29,16,1,4,2,2.0,0,SC,ITA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,11.0,179.0,0,Transient,149.29,1,1,Check-Out,2020-04-02 -City Hotel,0,7,2017,June,21,6,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,87.2,0,1,Check-Out,2020-03-03 -City Hotel,0,7,2016,December,53,11,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.91,0,1,Check-Out,2019-09-03 -City Hotel,0,278,2016,October,43,28,2,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,94.9,0,1,Check-Out,2019-09-03 -Resort Hotel,1,37,2016,November,51,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,65.45,0,0,Canceled,2019-09-03 -City Hotel,0,1,2017,April,21,7,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,13.0,256.0,0,Group,135.87,0,0,Check-Out,2020-02-01 -City Hotel,0,34,2015,October,43,18,0,1,1,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.69,0,0,Check-Out,2018-06-02 -Resort Hotel,1,18,2017,February,11,13,2,4,1,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,77.3,0,2,Canceled,2019-11-03 -Resort Hotel,1,38,2016,December,53,28,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,69.46,0,1,Canceled,2019-11-03 -Resort Hotel,0,162,2016,July,25,5,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,88.0,179.0,0,Transient,70.76,0,0,Check-Out,2019-06-03 -City Hotel,0,39,2016,December,44,11,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.98,0,2,Check-Out,2019-12-04 -City Hotel,0,167,2016,August,32,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,139.2,0,0,Check-Out,2019-05-04 -Resort Hotel,0,308,2017,June,22,28,4,5,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient-Party,89.07,0,0,Canceled,2020-05-03 -City Hotel,0,6,2015,October,43,9,2,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.49,0,0,Check-Out,2018-08-03 -Resort Hotel,0,34,2017,March,11,27,0,7,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,80.45,1,1,Check-Out,2020-01-04 -City Hotel,1,49,2016,October,45,16,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,161.74,0,1,Canceled,2019-08-04 -Resort Hotel,0,248,2017,April,17,22,2,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,312.0,179.0,0,Transient,80.5,1,1,Check-Out,2020-03-03 -City Hotel,0,148,2017,May,25,8,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,131.53,0,0,Check-Out,2020-04-02 -Resort Hotel,0,118,2017,August,35,31,2,5,3,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,E,3,No Deposit,244.0,179.0,0,Transient,227.56,0,1,Check-Out,2020-05-03 -City Hotel,0,102,2015,October,43,12,1,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,77.19,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2015,October,44,13,1,1,1,0.0,0,BB,POL,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,91.35,0,0,Check-Out,2018-09-02 -City Hotel,1,2,2016,January,3,18,0,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,74.85,0,0,Canceled,2019-09-03 -Resort Hotel,1,142,2017,June,28,19,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,102.01,0,1,Canceled,2020-07-03 -City Hotel,0,192,2017,June,25,9,0,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,128.3,0,1,Check-Out,2020-02-01 -Resort Hotel,0,254,2016,June,25,5,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient-Party,75.13,0,0,Check-Out,2019-02-01 -City Hotel,0,49,2016,April,15,30,1,0,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,98.05,0,0,Check-Out,2018-12-03 -Resort Hotel,0,148,2015,July,30,9,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient-Party,83.08,0,0,Check-Out,2019-08-04 -City Hotel,1,34,2017,June,32,20,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,F,F,0,Non Refund,14.0,179.0,0,Transient,127.79,0,0,Canceled,2019-11-03 -City Hotel,0,257,2016,October,44,21,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,B,0,No Deposit,82.0,179.0,0,Transient,71.51,0,0,Check-Out,2019-08-04 -Resort Hotel,0,5,2016,December,46,9,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,E,2,No Deposit,12.0,221.0,0,Transient,84.98,1,3,Check-Out,2019-04-03 -City Hotel,0,3,2015,October,43,9,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,K,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,95,2017,June,26,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,94.88,0,1,Check-Out,2020-07-03 -City Hotel,0,158,2016,May,33,24,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,124.01,0,1,Check-Out,2019-02-01 -City Hotel,0,12,2017,August,33,15,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,95.44,0,1,Check-Out,2020-04-02 -City Hotel,0,3,2016,November,52,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,17.0,231.0,0,Transient,34.92,0,0,Check-Out,2018-09-02 -City Hotel,0,236,2016,July,41,31,0,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.82,1,1,Check-Out,2019-04-03 -City Hotel,0,3,2016,September,43,18,0,1,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,226.08,0,2,Check-Out,2019-08-04 -City Hotel,0,10,2016,June,27,10,0,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,G,0,No Deposit,8.0,179.0,0,Transient,165.29,0,2,Canceled,2019-06-03 -City Hotel,1,13,2017,December,49,25,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.42,0,1,Canceled,2019-11-03 -City Hotel,0,33,2017,February,8,14,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,331.0,0,Transient,31.15,0,0,Check-Out,2019-12-04 -City Hotel,0,90,2016,October,43,20,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,121.95,0,0,Check-Out,2019-08-04 -Resort Hotel,0,15,2016,October,45,16,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,93.71,1,0,Check-Out,2019-09-03 -Resort Hotel,0,294,2015,October,43,6,2,7,1,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,182.0,179.0,0,Transient-Party,93.88,0,2,Check-Out,2019-09-03 -City Hotel,0,31,2015,July,32,21,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,67.6,0,1,Check-Out,2018-06-02 -City Hotel,0,3,2015,October,45,31,1,2,1,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,73.36,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2015,November,44,2,2,5,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,181.0,179.0,0,Transient,147.8,0,0,Check-Out,2018-09-02 -Resort Hotel,1,14,2015,August,49,18,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,137.0,179.0,0,Transient-Party,99.36,0,0,Canceled,2018-06-02 -Resort Hotel,0,44,2016,December,52,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,33.77,0,0,Check-Out,2019-12-04 -City Hotel,1,38,2016,July,31,17,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,145.68,0,1,Canceled,2019-06-03 -Resort Hotel,1,206,2016,June,32,24,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,237.0,179.0,0,Transient,128.35,0,0,Canceled,2019-07-04 -City Hotel,1,4,2017,August,33,24,1,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.29,0,0,Canceled,2020-06-02 -City Hotel,1,302,2017,May,21,6,2,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.16,0,0,Canceled,2020-03-03 -Resort Hotel,0,9,2016,July,27,19,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,98.95,1,0,Check-Out,2019-06-03 -City Hotel,1,27,2016,December,53,24,1,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,66.05,0,1,Canceled,2019-11-03 -City Hotel,0,210,2016,September,43,7,1,4,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,2019-07-04 -Resort Hotel,0,18,2017,August,36,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,245.0,179.0,0,Transient,158.5,0,3,Check-Out,2020-07-03 -Resort Hotel,0,7,2016,January,53,27,1,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,309.0,179.0,0,Transient,92.02,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2017,March,11,24,2,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,68.8,0,3,Check-Out,2020-02-01 -Resort Hotel,1,312,2016,March,23,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,222.0,0,Transient-Party,83.85,0,0,Canceled,2019-04-03 -Resort Hotel,1,10,2016,March,18,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,15.0,73.0,0,Transient,59.48,1,0,Canceled,2018-12-03 -Resort Hotel,0,142,2017,July,29,5,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,98.37,0,0,Check-Out,2020-02-01 -City Hotel,1,114,2017,April,16,31,0,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.8,0,0,Canceled,2020-02-01 -City Hotel,0,35,2017,April,16,31,0,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,89.65,0,0,Check-Out,2020-03-03 -City Hotel,1,1,2015,June,19,17,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,1,0,A,A,0,Non Refund,16.0,179.0,0,Transient,59.8,0,0,Canceled,2018-01-03 -City Hotel,0,46,2017,August,21,6,2,4,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,D,0,No Deposit,182.0,179.0,0,Transient,3.66,0,0,Check-Out,2020-07-03 -City Hotel,0,0,2016,April,17,22,0,1,1,0.0,0,SC,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,109,2017,February,8,6,0,5,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Non Refund,15.0,331.0,0,Transient-Party,38.67,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2015,October,47,18,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,1.0,67.0,0,Transient-Party,60.23,0,0,Check-Out,2018-08-03 -Resort Hotel,0,252,2016,July,31,13,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.48,0,1,Check-Out,2019-03-04 -City Hotel,0,88,2017,May,21,20,2,5,2,0.0,0,SC,ESP,Direct,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,94.35,0,3,Check-Out,2020-04-02 -Resort Hotel,0,151,2016,May,17,31,2,5,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,12.0,224.0,0,Transient-Party,76.47,1,0,Check-Out,2019-05-04 -City Hotel,0,17,2016,September,43,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,218.0,0,Transient,84.64,0,0,Check-Out,2019-06-03 -Resort Hotel,0,147,2017,August,38,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,243.0,179.0,0,Transient,216.26,1,1,Check-Out,2020-07-03 -City Hotel,1,0,2017,May,21,13,2,1,2,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,82.52,0,0,Canceled,2019-11-03 -Resort Hotel,0,146,2016,August,35,12,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,2,No Deposit,272.0,179.0,0,Transient-Party,108.07,1,0,Check-Out,2019-08-04 -Resort Hotel,1,45,2017,April,16,23,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,142.0,179.0,0,Transient,71.33,0,0,Canceled,2019-02-01 -City Hotel,1,89,2017,January,3,15,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.0,0,0,Canceled,2019-10-04 -Resort Hotel,1,327,2016,October,20,26,2,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,102.37,0,3,Canceled,2019-08-04 -City Hotel,0,1,2017,January,4,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,157.09,1,3,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,December,50,5,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,34.76,0,1,Check-Out,2019-01-03 -City Hotel,0,18,2015,December,50,24,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,115.71,0,1,Check-Out,2018-12-03 -City Hotel,0,25,2015,July,33,27,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,71.3,1,0,Check-Out,2018-06-02 -City Hotel,1,151,2016,May,21,17,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,129.0,179.0,65,Transient,74.13,0,0,Canceled,2018-12-03 -Resort Hotel,0,55,2017,August,36,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,118.07,0,1,Check-Out,2020-07-03 -City Hotel,1,433,2017,February,17,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,127.35,0,0,Canceled,2019-11-03 -City Hotel,0,40,2016,June,28,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,110.86,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2015,September,44,7,0,4,2,0.0,0,HB,POL,Complementary,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.17,1,2,Check-Out,2018-08-03 -Resort Hotel,0,252,2016,October,43,8,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,11.0,222.0,0,Transient,67.58,0,0,Check-Out,2019-07-04 -Resort Hotel,0,15,2016,November,51,20,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient-Party,33.53,0,0,Check-Out,2019-11-03 -City Hotel,1,101,2015,December,53,18,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,62.04,0,0,Canceled,2018-08-03 -Resort Hotel,0,4,2017,June,27,20,2,1,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,79.75,0,1,Check-Out,2019-05-04 -Resort Hotel,0,165,2017,June,27,19,0,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,195.97,0,3,Check-Out,2020-06-02 -City Hotel,0,18,2015,December,51,28,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,59.05,0,0,Check-Out,2018-08-03 -Resort Hotel,1,158,2016,December,53,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,92.0,179.0,0,Transient,54.84,0,0,Canceled,2019-09-03 -Resort Hotel,0,24,2016,November,44,22,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,98.47,0,3,Check-Out,2019-07-04 -City Hotel,1,245,2015,December,50,27,0,1,2,1.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,66.76,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2017,March,10,19,1,0,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,I,0,No Deposit,14.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-03-03 -Resort Hotel,0,244,2015,October,41,20,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,252.0,179.0,0,Transient,76.77,0,0,Check-Out,2019-08-04 -Resort Hotel,0,281,2017,May,21,10,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,181.0,179.0,0,Transient,80.08,0,0,Check-Out,2020-03-03 -Resort Hotel,0,38,2017,April,20,24,0,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,319.0,179.0,0,Transient-Party,60.81,0,0,Check-Out,2020-03-03 -City Hotel,0,97,2016,June,25,24,0,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,90.96,0,0,Check-Out,2019-06-03 -City Hotel,0,6,2017,March,23,19,0,2,1,0.0,0,BB,GBR,Complementary,Corporate,1,0,1,G,F,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -City Hotel,0,45,2016,May,23,5,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,127.45,0,1,Check-Out,2019-03-04 -City Hotel,0,90,2016,October,46,28,2,0,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,162.5,1,1,Check-Out,2019-11-03 -City Hotel,1,45,2016,March,10,25,0,2,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,93.9,0,0,Canceled,2018-11-02 -Resort Hotel,1,13,2017,February,9,19,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,298.0,205.0,0,Transient,74.55,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,April,21,4,2,0,1,0.0,0,BB,SWE,Undefined,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient-Party,78.97,0,1,Check-Out,2019-03-04 -Resort Hotel,0,265,2016,July,29,15,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,87.37,1,0,Check-Out,2019-07-04 -City Hotel,1,406,2016,October,46,27,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.45,0,0,Canceled,2018-08-03 -City Hotel,0,161,2017,August,36,2,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,202.8,0,1,Check-Out,2020-07-03 -City Hotel,0,9,2017,March,16,16,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,76.65,0,1,Check-Out,2020-01-04 -City Hotel,0,10,2015,February,53,21,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,62.76,0,0,Check-Out,2018-11-02 -City Hotel,1,247,2016,June,27,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,87.93,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2015,October,44,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,42.76,0,2,Check-Out,2018-08-03 -Resort Hotel,1,0,2017,January,2,15,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,1,1,A,D,0,No Deposit,15.0,81.0,0,Transient,40.23,0,0,Canceled,2019-10-04 -City Hotel,1,335,2017,August,37,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,91.07,0,0,Canceled,2017-10-03 -City Hotel,0,0,2017,March,11,14,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,83.29,0,2,Check-Out,2020-03-03 -Resort Hotel,0,81,2016,July,36,31,0,3,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient-Party,211.92,0,0,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,April,17,25,1,5,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,44.03,0,2,Check-Out,2020-02-01 -Resort Hotel,0,10,2015,December,49,10,0,5,2,0.0,0,BB,,Complementary,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,120.79,0,0,Check-Out,2018-11-02 -City Hotel,0,0,2015,December,52,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,13.0,57.0,0,Transient,63.08,0,0,Check-Out,2018-11-02 -Resort Hotel,0,38,2016,January,6,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient-Party,69.78,0,0,Check-Out,2019-09-03 -Resort Hotel,0,31,2016,October,20,20,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,61.55,0,0,Check-Out,2019-02-01 -City Hotel,0,8,2017,January,13,29,0,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,66.37,0,2,Check-Out,2019-12-04 -City Hotel,0,12,2016,October,49,21,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,104.98,0,0,Check-Out,2019-08-04 -Resort Hotel,0,101,2016,August,32,15,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,13.0,179.0,0,Transient,226.92,0,3,Check-Out,2019-05-04 -Resort Hotel,0,51,2016,August,37,24,0,2,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,193.33,0,0,Check-Out,2019-06-03 -Resort Hotel,0,146,2017,August,33,31,3,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,75.09,1,1,Check-Out,2020-06-02 -Resort Hotel,0,134,2017,August,39,14,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,245.8,0,1,Check-Out,2020-07-03 -Resort Hotel,0,270,2016,October,45,10,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient-Party,60.98,0,1,Check-Out,2019-08-04 -City Hotel,1,3,2015,August,35,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,122.74,0,0,Canceled,2018-08-03 -City Hotel,1,14,2017,May,22,31,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,92.29,0,0,Canceled,2019-11-03 -City Hotel,0,0,2017,March,20,15,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,F,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,45,2016,September,44,12,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,202.63,0,2,Check-Out,2019-11-03 -Resort Hotel,1,96,2017,August,20,30,1,5,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,225.97,0,0,Canceled,2020-03-03 -City Hotel,0,110,2017,July,24,26,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,132.96,0,2,Check-Out,2020-02-01 -City Hotel,0,35,2015,December,53,26,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient-Party,45.97,1,0,Check-Out,2018-11-02 -Resort Hotel,1,108,2015,December,37,7,2,5,2,1.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,101.21,0,0,Canceled,2018-05-03 -City Hotel,1,19,2016,January,4,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,58.25,0,0,Canceled,2018-10-03 -City Hotel,1,158,2017,February,11,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,77.3,0,0,Canceled,2019-11-03 -City Hotel,0,35,2016,March,23,14,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,128.49,0,1,Check-Out,2019-02-01 -City Hotel,1,48,2016,June,19,16,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.94,0,1,Canceled,2019-02-01 -Resort Hotel,0,95,2016,March,16,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,Refundable,15.0,223.0,0,Transient-Party,29.55,0,0,Check-Out,2019-03-04 -City Hotel,1,44,2016,February,3,28,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient,74.01,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,May,22,6,1,0,1,0.0,0,BB,FRA,Aviation,Corporate,1,0,0,A,E,0,No Deposit,15.0,166.0,0,Transient,2.71,0,0,Check-Out,2020-04-02 -Resort Hotel,0,47,2016,November,51,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,237.0,0,Transient,30.34,1,0,Check-Out,2019-08-04 -City Hotel,0,91,2016,July,37,13,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient,79.46,0,0,Check-Out,2018-12-03 -City Hotel,0,53,2015,July,32,2,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,75.76,0,0,Check-Out,2018-07-03 -Resort Hotel,0,13,2016,January,4,31,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,64.52,1,0,Check-Out,2018-11-02 -Resort Hotel,0,132,2017,March,18,6,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,316.0,179.0,0,Transient-Party,183.61,0,0,Check-Out,2020-04-02 -Resort Hotel,0,10,2016,October,42,13,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,168.31,1,0,Check-Out,2019-03-04 -City Hotel,1,8,2016,December,53,10,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,126.01,0,1,Canceled,2019-07-04 -City Hotel,0,0,2017,January,8,4,0,1,2,1.0,0,BB,DEU,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,153.24,0,3,Check-Out,2019-11-03 -Resort Hotel,0,12,2017,January,3,7,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,39.2,0,1,Canceled,2018-10-03 -City Hotel,1,43,2016,March,10,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,1.0,179.0,0,Transient-Party,61.29,0,0,Canceled,2019-02-01 -City Hotel,1,287,2017,May,21,9,0,4,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,126.25,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2017,August,36,15,1,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,203.5,0,0,Check-Out,2020-06-02 -City Hotel,1,424,2015,September,44,8,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,64,Transient,75.66,0,0,Canceled,2018-08-03 -Resort Hotel,0,39,2016,September,34,25,1,6,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,241.0,179.0,0,Transient,238.54,0,0,Check-Out,2019-06-03 -Resort Hotel,0,52,2016,December,17,9,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,47.79,1,0,Check-Out,2018-10-03 -Resort Hotel,0,154,2016,October,42,27,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,49.65,0,0,Check-Out,2019-08-04 -Resort Hotel,0,10,2017,June,22,18,0,1,1,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,60.38,0,0,Check-Out,2020-03-03 -City Hotel,0,146,2017,June,27,31,0,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,101.39,0,1,Check-Out,2020-04-02 -City Hotel,1,269,2017,May,37,8,1,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.19,0,0,Canceled,2019-10-04 -City Hotel,1,112,2016,September,43,6,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,139.78,0,2,Canceled,2018-08-03 -City Hotel,0,1,2016,April,17,16,1,0,2,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,0,No Deposit,14.0,238.0,0,Group,0.0,0,1,Check-Out,2020-02-01 -City Hotel,0,15,2015,October,44,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,117.01,0,0,Check-Out,2018-08-03 -City Hotel,0,94,2017,August,36,10,1,10,1,0.0,0,HB,AUT,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,190.3,1,3,Check-Out,2020-06-02 -Resort Hotel,1,97,2016,December,53,10,2,4,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,239.0,179.0,0,Transient,85.17,0,0,Canceled,2019-10-04 -City Hotel,0,2,2016,June,31,7,0,1,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,98.54,0,0,Check-Out,2020-06-02 -City Hotel,1,61,2016,October,45,23,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,71.78,0,0,Canceled,2019-08-04 -Resort Hotel,1,218,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,75,Transient-Party,62.11,0,0,Canceled,2019-02-01 -City Hotel,0,45,2016,December,49,12,0,2,3,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,64.62,0,1,Check-Out,2019-12-04 -City Hotel,0,235,2017,August,35,16,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,236.25,1,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,January,3,26,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,115.89,0,1,Check-Out,2018-10-03 -Resort Hotel,0,18,2017,May,12,29,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,59.59,1,1,Check-Out,2020-03-03 -City Hotel,1,245,2017,July,31,24,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,187.48,0,0,Canceled,2019-03-04 -Resort Hotel,0,93,2015,October,43,20,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,93.91,0,2,Check-Out,2018-12-03 -Resort Hotel,0,166,2016,October,42,23,3,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,73.49,0,0,Check-Out,2019-09-03 -City Hotel,0,102,2017,April,16,10,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.01,0,1,Check-Out,2020-04-02 -Resort Hotel,1,15,2016,March,10,28,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,315.0,179.0,0,Transient,71.43,0,0,Canceled,2018-12-03 -City Hotel,0,1,2015,August,35,15,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,60.15,0,0,Check-Out,2018-06-02 -City Hotel,0,144,2016,September,44,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,103.13,0,1,Check-Out,2019-12-04 -Resort Hotel,0,10,2016,June,25,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,241.0,179.0,0,Transient,62.75,0,2,Check-Out,2020-05-03 -Resort Hotel,0,38,2016,March,18,31,0,3,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,38.17,0,0,Check-Out,2019-01-03 -Resort Hotel,1,194,2015,October,43,12,0,2,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,79.47,0,0,Canceled,2018-09-02 -City Hotel,0,197,2017,July,30,20,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-07-03 -City Hotel,0,148,2016,March,10,21,0,3,1,0.0,0,FB,ITA,Offline TA/TO,Direct,0,0,0,A,F,0,No Deposit,186.0,179.0,0,Transient,105.33,0,0,Check-Out,2019-03-04 -City Hotel,1,275,2017,April,21,19,0,2,2,0.0,0,BB,PRT,Groups,GDS,1,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,95.64,0,0,Canceled,2019-11-03 -City Hotel,0,443,2017,September,32,9,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,165.07,0,0,Check-Out,2020-06-02 -City Hotel,0,2,2015,October,44,21,4,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,60.11,0,0,Check-Out,2017-12-03 -City Hotel,0,3,2015,October,44,13,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,11.0,179.0,0,Group,39.71,0,1,Check-Out,2018-09-02 -Resort Hotel,0,99,2016,May,43,16,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,177.0,179.0,0,Transient,76.88,0,0,Check-Out,2019-06-03 -City Hotel,0,15,2016,December,50,19,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient,89.13,0,1,Check-Out,2019-11-03 -City Hotel,0,13,2016,October,43,14,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.01,0,0,Check-Out,2019-09-03 -Resort Hotel,0,9,2016,July,41,6,1,7,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,89.47,0,1,Check-Out,2019-12-04 -City Hotel,0,9,2016,September,45,7,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.41,0,1,Check-Out,2019-06-03 -City Hotel,1,0,2017,January,2,15,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,2,No Deposit,14.0,179.0,0,Transient,52.92,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,January,4,27,1,1,2,2.0,0,BB,PRT,Complementary,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient-Party,88.09,0,0,Check-Out,2019-04-03 -City Hotel,0,40,2016,August,37,9,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,161.54,0,1,Check-Out,2019-06-03 -Resort Hotel,0,304,2016,July,33,15,2,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,73.91,0,0,Check-Out,2019-01-03 -City Hotel,1,20,2016,February,5,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,59.62,0,0,Canceled,2019-09-03 -Resort Hotel,0,15,2017,February,9,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,G,C,0,No Deposit,244.0,179.0,0,Transient,130.49,1,0,Check-Out,2020-03-03 -City Hotel,0,44,2017,June,26,10,2,0,2,0.0,0,HB,PRT,Complementary,Corporate,1,0,1,A,F,1,No Deposit,198.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-09-03 -Resort Hotel,0,9,2016,March,10,15,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,C,I,0,No Deposit,241.0,179.0,0,Transient,63.0,0,0,Check-Out,2019-01-03 -City Hotel,0,16,2016,February,10,7,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,128.0,179.0,0,Transient,74.93,0,1,Check-Out,2018-11-02 -City Hotel,1,141,2017,June,32,22,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.02,0,0,Canceled,2020-01-04 -Resort Hotel,0,64,2015,December,45,30,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,45.64,0,2,Check-Out,2018-06-02 -City Hotel,1,10,2016,May,26,17,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,98.73,0,0,Check-Out,2019-02-01 -City Hotel,1,237,2016,March,14,10,2,2,2,0.0,0,FB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,61.2,0,0,Canceled,2019-01-03 -City Hotel,0,19,2015,December,51,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,30.37,0,0,Check-Out,2017-12-03 -Resort Hotel,0,124,2017,August,36,6,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,240.83,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,January,10,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,86.0,45.0,0,Group,30.37,0,1,Check-Out,2019-10-04 -Resort Hotel,0,127,2017,August,38,31,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,82.92,1,1,Check-Out,2019-08-04 -City Hotel,0,259,2017,June,21,9,1,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,29.0,179.0,0,Transient-Party,109.79,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,December,4,11,0,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,63.44,0,1,Check-Out,2019-10-04 -City Hotel,0,100,2015,August,48,6,1,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,59.17,0,1,Check-Out,2017-11-02 -City Hotel,1,428,2017,August,38,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.58,0,0,Canceled,2018-09-02 -Resort Hotel,0,145,2017,December,11,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,32.89,0,1,Check-Out,2019-11-03 -City Hotel,0,1,2016,October,42,21,1,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,F,1,No Deposit,14.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-08-04 -City Hotel,0,0,2015,September,45,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,107.43,0,0,Check-Out,2018-09-02 -City Hotel,0,52,2016,November,51,9,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,112.0,0,2,Check-Out,2019-10-04 -City Hotel,0,54,2016,December,5,13,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,93.72,0,2,Check-Out,2019-09-03 -City Hotel,0,10,2015,September,44,23,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,63.12,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2017,July,29,9,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,125.92,0,0,Check-Out,2020-06-02 -Resort Hotel,1,198,2017,August,36,27,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,313.0,179.0,0,Transient-Party,184.95,0,0,Canceled,2019-12-04 -Resort Hotel,1,107,2016,July,25,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,0,Non Refund,135.0,179.0,0,Transient,97.11,0,0,Canceled,2019-02-01 -Resort Hotel,1,20,2015,December,53,25,2,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,60.97,0,2,Canceled,2018-10-03 -Resort Hotel,0,3,2017,July,26,28,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,150.4,0,0,Check-Out,2020-04-02 -City Hotel,1,16,2017,July,31,6,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.53,0,0,Canceled,2019-03-04 -Resort Hotel,0,144,2016,July,27,21,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,157.84,0,3,Check-Out,2019-07-04 -Resort Hotel,0,91,2015,November,50,30,2,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,306.0,179.0,0,Transient-Party,70.84,0,0,Check-Out,2019-11-03 -City Hotel,0,47,2016,July,44,21,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Contract,121.32,0,1,Check-Out,2019-06-03 -City Hotel,0,101,2017,August,35,5,0,1,1,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,114.93,0,1,Check-Out,2020-04-02 -City Hotel,0,107,2017,June,26,5,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.92,1,2,Check-Out,2020-06-02 -City Hotel,0,1,2016,December,43,20,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,241.0,0,Transient,78.35,0,0,Check-Out,2019-12-04 -City Hotel,0,160,2017,June,36,15,0,2,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,50.0,0,Transient,82.1,0,0,Check-Out,2020-06-02 -Resort Hotel,1,2,2017,January,3,2,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,202.56,0,1,Canceled,2018-11-02 -City Hotel,0,193,2017,August,36,15,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-06-02 -City Hotel,0,0,2016,April,22,16,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,15.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-03-04 -Resort Hotel,0,11,2016,May,32,27,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,1,No Deposit,16.0,179.0,0,Transient,158.38,0,0,Check-Out,2019-06-03 -City Hotel,0,97,2016,March,9,29,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,92.52,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,December,51,8,0,1,2,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,273.0,0,Group,1.4,0,0,Check-Out,2019-12-04 -Resort Hotel,0,85,2016,June,27,26,0,4,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,118.97,0,0,Check-Out,2019-01-03 -Resort Hotel,0,47,2016,July,31,4,1,1,3,0.0,0,HB,NOR,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-11-02 -City Hotel,1,155,2016,June,25,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,129.0,179.0,0,Transient,105.3,0,0,Canceled,2019-01-03 -Resort Hotel,0,90,2016,November,49,2,4,7,2,1.0,0,BB,POL,Online TA,Corporate,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,70.25,1,1,Check-Out,2019-10-04 -City Hotel,1,264,2017,August,35,19,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,1,0,B,E,0,No Deposit,10.0,179.0,0,Transient,98.81,0,0,Canceled,2020-04-02 -City Hotel,0,48,2016,October,45,24,2,5,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,172.5,0,1,Check-Out,2019-08-04 -Resort Hotel,0,251,2016,August,38,27,2,10,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,64.12,0,2,Check-Out,2020-06-02 -Resort Hotel,0,21,2016,April,17,8,0,6,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,71.0,179.0,75,Transient-Party,69.01,0,0,Check-Out,2019-04-03 -City Hotel,0,22,2017,February,12,28,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,126.86,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,August,21,28,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,94.48,0,1,Check-Out,2020-01-04 -City Hotel,1,17,2016,July,10,24,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,235.0,179.0,0,Transient,73.85,0,2,Canceled,2019-02-01 -City Hotel,0,49,2017,June,21,15,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,104.14,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2017,June,26,16,0,1,2,0.0,0,SC,IRL,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,168.11,0,1,Check-Out,2020-03-03 -Resort Hotel,0,12,2017,May,20,25,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,G,1,No Deposit,243.0,179.0,0,Transient-Party,147.39,1,1,Check-Out,2020-03-03 -City Hotel,1,39,2016,February,3,22,0,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.46,0,0,Canceled,2018-12-03 -City Hotel,0,143,2017,August,38,28,0,4,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.65,0,1,Check-Out,2020-08-03 -Resort Hotel,1,12,2015,August,32,6,2,5,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,189.86,0,2,No-Show,2019-06-03 -City Hotel,0,50,2016,November,45,28,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,171.86,0,1,Check-Out,2019-08-04 -City Hotel,0,0,2017,February,10,14,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.06,0,0,Check-Out,2019-10-04 -City Hotel,1,229,2015,October,45,16,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,93.19,0,1,Canceled,2018-06-02 -City Hotel,1,249,2016,June,26,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.53,0,0,Canceled,2017-10-03 -City Hotel,0,150,2017,March,53,15,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.19,0,0,Check-Out,2019-10-04 -Resort Hotel,0,10,2016,December,45,30,3,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,312.0,179.0,0,Transient,160.03,0,0,Check-Out,2019-06-03 -City Hotel,0,202,2016,August,41,9,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,152.65,0,0,Check-Out,2019-06-03 -City Hotel,1,103,2016,July,27,9,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Contract,71.37,0,0,Canceled,2019-05-04 -City Hotel,1,255,2017,May,21,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,88.31,0,0,Canceled,2017-11-02 -City Hotel,0,179,2017,May,23,2,2,1,3,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,194.32,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,October,43,27,0,1,1,0.0,0,BB,USA,Direct,Direct,1,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,94.56,0,1,Check-Out,2019-11-03 -City Hotel,1,195,2016,March,9,10,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,113.8,0,2,Canceled,2019-02-01 -Resort Hotel,0,232,2015,September,44,10,4,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Contract,46.69,0,0,Check-Out,2017-11-02 -Resort Hotel,0,152,2016,September,43,22,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,82.78,0,0,Check-Out,2019-05-04 -Resort Hotel,0,11,2017,February,9,17,2,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-02-01 -City Hotel,0,102,2016,September,43,20,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.47,0,2,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,August,35,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,B,1,No Deposit,247.0,179.0,0,Transient,99.69,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,March,8,13,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,37.72,0,0,Check-Out,2018-12-03 -Resort Hotel,0,32,2016,August,37,22,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-06-03 -City Hotel,1,112,2016,December,53,24,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,97.45,0,1,Canceled,2019-09-03 -Resort Hotel,1,179,2017,July,32,9,2,5,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,195.58,0,2,Canceled,2020-02-01 -City Hotel,1,49,2017,March,12,27,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,Non Refund,14.0,179.0,0,Transient,104.57,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,October,43,9,1,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,241.0,0,Transient,2.45,0,0,Check-Out,2019-08-04 -City Hotel,0,246,2017,July,32,26,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,77.17,0,0,Check-Out,2020-05-03 -Resort Hotel,1,110,2016,May,15,25,2,5,2,0.0,0,HB,BRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,310.0,179.0,0,Transient-Party,75.12,0,0,Canceled,2019-05-04 -City Hotel,0,65,2015,September,36,12,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,116.25,0,0,Check-Out,2018-07-03 -City Hotel,0,242,2016,July,30,18,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,102.46,0,1,Check-Out,2019-05-04 -City Hotel,0,164,2016,July,31,5,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,89.29,0,1,Check-Out,2019-05-04 -Resort Hotel,0,117,2016,March,20,31,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,67.78,0,0,Check-Out,2019-03-04 -City Hotel,0,105,2016,April,16,30,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,62.82,0,3,Check-Out,2019-04-03 -City Hotel,1,44,2016,February,11,6,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,152.0,179.0,16,Transient-Party,69.61,0,1,Canceled,2019-03-04 -Resort Hotel,0,1,2017,January,2,14,2,0,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,40.47,0,0,Check-Out,2019-11-03 -City Hotel,1,6,2016,July,34,4,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.23,0,0,Canceled,2019-01-03 -City Hotel,1,36,2016,August,36,15,1,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,125.85,0,0,Canceled,2018-11-02 -City Hotel,0,61,2015,December,51,11,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,39.0,179.0,0,Contract,58.43,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,March,10,19,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,224.0,0,Transient-Party,60.03,0,0,Check-Out,2019-06-03 -Resort Hotel,1,390,2016,March,8,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,84.0,179.0,0,Transient,76.24,0,0,Canceled,2019-10-04 -City Hotel,1,247,2016,September,26,16,0,2,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,275.0,179.0,0,Transient,78.96,0,1,Canceled,2019-05-04 -Resort Hotel,1,54,2017,February,9,30,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,75.79,0,0,Canceled,2020-03-03 -City Hotel,1,12,2016,March,17,29,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.74,0,2,Canceled,2019-02-01 -Resort Hotel,0,155,2016,March,36,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Contract,196.86,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,February,12,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,222.0,0,Transient,76.58,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,March,17,15,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,3.74,0,0,Check-Out,2019-04-03 -Resort Hotel,0,2,2016,June,37,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,36.29,1,3,Check-Out,2019-06-03 -City Hotel,0,116,2016,June,36,24,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,123.9,0,0,Check-Out,2020-05-03 -City Hotel,0,54,2016,March,17,30,1,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,110.4,0,1,Check-Out,2019-04-03 -City Hotel,0,112,2017,May,27,6,2,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.14,0,1,Check-Out,2020-03-03 -Resort Hotel,0,43,2016,September,34,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,38.34,0,1,Check-Out,2019-06-03 -Resort Hotel,0,93,2017,August,36,15,0,7,3,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,E,E,0,No Deposit,14.0,222.0,0,Transient,123.38,1,3,Check-Out,2019-07-04 -City Hotel,1,188,2015,August,40,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,85.56,0,0,Canceled,2018-01-31 -Resort Hotel,1,240,2016,December,53,29,0,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,264.0,179.0,75,Transient-Party,114.04,0,0,Canceled,2019-10-04 -City Hotel,1,108,2016,June,23,28,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,123.76,0,2,Canceled,2019-03-04 -City Hotel,0,44,2017,August,34,5,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,161.49,0,1,Check-Out,2019-12-04 -City Hotel,1,108,2017,March,16,10,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,F,0,Non Refund,31.0,179.0,0,Transient-Party,103.49,0,0,Canceled,2019-10-04 -City Hotel,0,249,2015,October,43,28,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.04,0,0,Check-Out,2017-11-02 -City Hotel,1,157,2017,March,31,10,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,175.0,179.0,0,Transient-Party,64.24,0,0,Check-Out,2018-09-02 -City Hotel,0,39,2017,January,3,17,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.73,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,May,44,28,1,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient-Party,147.25,0,0,Check-Out,2019-09-03 -Resort Hotel,0,196,2017,July,34,22,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,183.84,0,3,Check-Out,2020-06-02 -City Hotel,1,269,2015,September,36,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,59.93,0,0,Canceled,2018-08-03 -City Hotel,0,41,2016,September,35,24,2,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,293.0,179.0,0,Transient-Party,128.5,0,0,Check-Out,2019-12-04 -Resort Hotel,0,245,2016,May,23,5,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,276.0,179.0,0,Transient-Party,60.09,0,0,Check-Out,2019-03-04 -Resort Hotel,0,40,2017,March,17,5,2,5,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,101.34,0,2,Check-Out,2020-03-03 -City Hotel,0,20,2016,June,18,29,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,123.95,1,2,Check-Out,2019-02-01 -Resort Hotel,1,151,2015,December,51,25,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,42.52,0,0,Canceled,2018-07-03 -City Hotel,0,35,2016,December,3,10,1,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,100.08,0,0,Check-Out,2019-05-04 -Resort Hotel,1,49,2015,October,44,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,37.03,0,0,Canceled,2018-08-03 -Resort Hotel,0,259,2016,September,43,21,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,71.01,0,1,Check-Out,2019-07-04 -Resort Hotel,0,1,2015,July,38,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,13.0,179.0,0,Group,146.93,1,2,Check-Out,2018-06-02 -Resort Hotel,0,286,2016,September,35,16,4,10,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,75,Transient,185.55,0,2,Canceled,2019-04-03 -Resort Hotel,0,332,2015,November,44,18,1,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient-Party,87.58,0,0,Check-Out,2018-08-03 -City Hotel,1,1,2017,March,16,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,89.56,0,0,Canceled,2020-03-03 -Resort Hotel,0,3,2017,February,9,6,0,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.62,0,1,Check-Out,2019-11-03 -Resort Hotel,0,43,2016,March,15,30,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,241.0,179.0,0,Transient,74.06,1,2,Check-Out,2019-02-01 -City Hotel,0,14,2017,March,11,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,102.79,0,0,Check-Out,2020-02-01 -City Hotel,1,312,2015,September,45,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.93,0,0,Canceled,2017-10-03 -City Hotel,1,104,2017,March,17,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,137.42,0,0,Canceled,2020-02-01 -City Hotel,1,2,2017,February,11,20,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,11.0,179.0,0,Transient,120.47,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2016,July,27,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,14.0,179.0,0,Transient,101.05,0,0,Check-Out,2019-05-04 -City Hotel,0,33,2017,March,18,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,145.39,0,0,Check-Out,2020-01-04 -Resort Hotel,0,3,2015,October,44,9,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,100.92,1,1,Check-Out,2019-08-04 -City Hotel,0,8,2017,June,20,27,0,1,1,0.0,0,SC,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,171.0,65.0,0,Transient,132.8,0,0,Canceled,2020-04-02 -Resort Hotel,0,3,2017,August,26,10,1,1,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,110.36,0,1,Check-Out,2020-07-03 -City Hotel,1,384,2016,August,36,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.11,0,0,Canceled,2019-11-03 -City Hotel,0,2,2017,June,36,19,0,3,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,102.52,0,0,Check-Out,2020-03-03 -City Hotel,0,46,2016,March,8,30,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,75,Transient-Party,77.98,0,2,Check-Out,2018-12-03 -City Hotel,1,402,2017,May,27,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,75.11,0,0,Canceled,2019-12-04 -City Hotel,0,283,2016,October,43,31,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,114.64,0,0,Check-Out,2019-08-04 -Resort Hotel,1,41,2015,July,31,2,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,151.71,0,2,Canceled,2018-05-03 -Resort Hotel,1,144,2016,January,4,28,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,148.79,0,1,Canceled,2019-08-04 -Resort Hotel,0,34,2016,April,42,10,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,124.16,1,0,Check-Out,2019-02-01 -Resort Hotel,0,16,2016,March,12,27,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,17.0,222.0,0,Transient,73.99,0,0,Check-Out,2019-01-03 -City Hotel,0,267,2017,July,32,24,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,85.06,0,0,Check-Out,2020-06-02 -City Hotel,0,59,2016,April,26,20,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,117.27,0,0,Canceled,2017-10-03 -Resort Hotel,0,136,2017,February,9,15,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,81.0,0,Transient,42.63,0,1,Check-Out,2019-12-04 -City Hotel,0,7,2017,May,23,10,0,4,1,0.0,0,BB,BRA,Aviation,Corporate,0,0,0,D,H,2,No Deposit,11.0,181.0,0,Transient,104.69,0,0,Check-Out,2020-02-01 -City Hotel,1,222,2017,August,40,9,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,145.68,0,0,Canceled,2019-08-04 -City Hotel,0,90,2017,May,23,28,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,143.68,0,0,Check-Out,2020-04-02 -City Hotel,0,2,2016,January,3,5,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient-Party,72.44,0,0,Check-Out,2018-11-02 -City Hotel,1,45,2017,March,9,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.36,0,0,Canceled,2019-11-03 -City Hotel,0,254,2016,October,41,22,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,72.38,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2016,May,22,5,1,0,2,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,92.24,0,0,Check-Out,2019-06-03 -City Hotel,0,13,2016,February,10,5,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.06,0,2,Check-Out,2018-09-02 -City Hotel,0,10,2015,October,42,20,0,1,2,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,I,0,No Deposit,10.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-08-03 -Resort Hotel,1,190,2016,August,39,7,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,238.0,179.0,0,Transient,200.44,0,1,Canceled,2019-04-03 -City Hotel,1,430,2016,June,44,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,39,Transient,83.93,0,0,Canceled,2018-08-03 -City Hotel,1,98,2016,March,10,23,2,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,117.76,0,0,Canceled,2019-06-03 -Resort Hotel,1,92,2015,July,39,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,246.0,179.0,0,Transient,81.17,0,0,Canceled,2018-06-02 -Resort Hotel,1,159,2016,February,11,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,96.99,0,0,Canceled,2018-11-02 -City Hotel,1,17,2016,November,48,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,61.65,0,0,Canceled,2019-02-01 -City Hotel,1,1,2016,January,2,13,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,12.0,69.0,0,Transient,61.15,0,0,Canceled,2018-10-03 -City Hotel,0,1,2017,June,9,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.65,0,1,Check-Out,2020-02-01 -City Hotel,0,8,2017,April,18,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,45.0,0,Transient,120.93,0,0,Check-Out,2020-02-01 -City Hotel,0,158,2016,June,20,5,2,1,1,2.0,0,BB,,Direct,Direct,0,0,0,G,G,2,No Deposit,14.0,179.0,0,Transient,98.75,0,0,Check-Out,2019-08-04 -Resort Hotel,0,10,2015,August,16,6,0,5,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,1,No Deposit,16.0,179.0,75,Transient,36.44,1,3,Check-Out,2018-05-03 -City Hotel,1,48,2016,December,53,9,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,41,Transient-Party,38.48,0,3,Canceled,2019-10-04 -City Hotel,1,3,2017,January,3,13,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,133.01,0,0,Canceled,2019-10-04 -City Hotel,1,387,2016,May,22,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,252.0,179.0,0,Transient,76.4,0,0,Canceled,2019-01-03 -Resort Hotel,0,109,2016,July,33,2,4,10,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,172.54,0,0,Check-Out,2019-10-04 -City Hotel,0,41,2016,December,41,5,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,A,1,No Deposit,8.0,179.0,0,Transient,111.77,0,2,Check-Out,2019-02-01 -Resort Hotel,1,444,2016,October,44,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,176.0,179.0,0,Transient,35.79,0,0,Canceled,2019-08-04 -City Hotel,0,195,2016,July,38,30,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,120.25,0,1,Check-Out,2019-03-04 -City Hotel,0,8,2016,February,10,20,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.48,0,1,Check-Out,2019-01-03 -Resort Hotel,0,2,2017,May,22,10,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-02-01 -City Hotel,0,118,2015,December,50,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,90.68,0,0,Check-Out,2019-01-03 -City Hotel,1,144,2017,July,26,29,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,8.0,179.0,0,Group,152.56,0,1,Canceled,2020-05-03 -City Hotel,0,17,2016,November,50,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient-Party,90.98,0,0,Check-Out,2019-11-03 -City Hotel,0,47,2015,August,43,6,2,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,154.83,0,2,Check-Out,2018-08-03 -City Hotel,1,145,2016,May,29,24,0,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,77.46,0,0,Canceled,2019-05-04 -Resort Hotel,0,93,2016,September,43,10,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,I,0,No Deposit,240.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-10-04 -City Hotel,0,40,2017,June,32,2,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.58,0,2,Check-Out,2019-03-04 -City Hotel,1,38,2016,February,8,8,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.91,0,0,Canceled,2018-10-03 -Resort Hotel,0,2,2017,March,16,5,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,86.0,179.0,0,Transient-Party,45.55,0,0,Check-Out,2019-03-04 -City Hotel,1,103,2015,November,43,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,94.87,0,0,Canceled,2018-11-02 -Resort Hotel,0,49,2016,March,11,21,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,137.0,179.0,0,Transient,67.38,0,0,Check-Out,2019-03-04 -Resort Hotel,0,110,2017,March,18,24,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,147.02,0,2,Check-Out,2020-03-03 -Resort Hotel,0,151,2017,June,26,5,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,72.01,0,0,Check-Out,2020-03-03 -Resort Hotel,0,134,2016,April,17,31,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,245.0,179.0,0,Transient,93.68,1,0,Check-Out,2019-02-01 -City Hotel,0,3,2016,November,51,5,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,64.91,0,0,Check-Out,2019-11-03 -Resort Hotel,1,0,2017,February,9,6,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,57.26,0,0,Canceled,2020-01-04 -Resort Hotel,0,5,2017,May,24,28,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,327.0,179.0,0,Transient-Party,163.65,0,0,Check-Out,2020-04-02 -Resort Hotel,0,251,2017,July,27,29,0,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,38.0,179.0,0,Transient-Party,85.23,1,0,Check-Out,2020-06-02 -City Hotel,1,39,2016,May,20,24,0,4,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient,89.92,0,0,Canceled,2019-03-04 -Resort Hotel,1,290,2017,June,33,11,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,168.0,179.0,0,Transient,198.18,0,0,Canceled,2020-03-03 -Resort Hotel,0,59,2016,October,44,14,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,131.79,1,3,Check-Out,2019-06-03 -City Hotel,0,139,2017,June,26,24,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,80.0,179.0,0,Transient-Party,94.15,0,0,Check-Out,2020-05-03 -City Hotel,1,37,2017,June,26,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.67,0,0,Canceled,2020-04-02 -Resort Hotel,0,20,2017,March,18,30,0,1,2,0.0,0,BB,BEL,Corporate,Corporate,0,0,1,A,D,2,No Deposit,15.0,223.0,0,Transient-Party,38.83,0,0,Check-Out,2019-02-01 -City Hotel,0,37,2016,January,53,7,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,E,E,2,No Deposit,244.0,179.0,0,Group,0.46,0,1,Check-Out,2019-10-04 -City Hotel,1,97,2017,May,20,22,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,95.69,0,0,Canceled,2020-05-03 -Resort Hotel,0,159,2017,June,22,31,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,210.87,0,0,Check-Out,2020-04-02 -City Hotel,0,16,2016,September,38,14,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,170.05,0,2,Check-Out,2019-07-04 -Resort Hotel,0,1,2015,January,4,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Group,63.32,1,1,Check-Out,2018-11-02 -City Hotel,0,44,2016,August,37,29,1,3,2,2.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,142.38,0,3,Check-Out,2019-05-04 -City Hotel,1,42,2016,December,43,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,74.34,0,0,Canceled,2019-10-04 -Resort Hotel,1,314,2015,October,44,29,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,64.56,0,0,Canceled,2018-07-03 -Resort Hotel,0,0,2017,February,10,13,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,18.0,331.0,0,Transient,29.0,1,0,Check-Out,2019-12-04 -City Hotel,0,1,2017,August,30,6,1,1,1,0.0,0,SC,,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,131.72,0,1,Check-Out,2020-06-02 -Resort Hotel,0,94,2015,December,53,17,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,122.95,0,0,Check-Out,2018-09-02 -Resort Hotel,1,256,2016,June,28,7,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,301.0,179.0,75,Transient,77.96,0,2,Canceled,2019-11-03 -City Hotel,0,26,2016,October,40,9,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,114.23,0,2,Check-Out,2019-07-04 -City Hotel,1,215,2017,June,28,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.31,0,0,Canceled,2017-12-03 -City Hotel,1,51,2016,November,22,6,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,0.66,0,0,Canceled,2019-05-04 -Resort Hotel,0,249,2016,May,21,6,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,63.93,0,0,Check-Out,2019-06-03 -City Hotel,0,36,2016,November,50,18,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,94.52,0,0,Check-Out,2019-09-03 -City Hotel,0,266,2015,September,36,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,7.0,179.0,0,Group,63.65,0,1,Check-Out,2018-08-03 -City Hotel,0,149,2015,July,32,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,151.38,0,0,Check-Out,2018-05-03 -City Hotel,1,115,2017,May,21,15,2,5,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,178.58,1,2,Canceled,2020-02-01 -Resort Hotel,1,0,2015,August,38,13,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,15.0,179.0,0,Transient,58.92,0,0,Canceled,2018-01-03 -City Hotel,0,90,2017,June,22,14,2,2,2,1.0,0,BB,GBR,Direct,Direct,1,0,0,D,G,0,No Deposit,15.0,179.0,0,Transient,166.7,0,1,Check-Out,2020-06-02 -Resort Hotel,1,119,2016,May,18,20,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,262.0,179.0,0,Transient,94.92,0,0,Canceled,2017-12-03 -Resort Hotel,0,28,2016,December,52,25,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,378.0,331.0,0,Transient-Party,61.53,0,0,Check-Out,2019-10-04 -City Hotel,0,46,2015,June,27,26,1,1,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,118.8,0,0,Check-Out,2019-07-04 -City Hotel,0,71,2016,September,37,12,0,2,2,0.0,0,BB,ITA,Groups,Corporate,0,0,0,C,D,0,No Deposit,99.0,179.0,0,Transient-Party,136.28,0,0,Check-Out,2019-07-04 -City Hotel,0,43,2017,August,36,30,0,2,3,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,127.75,0,1,Check-Out,2020-06-02 -City Hotel,0,54,2017,March,11,27,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.04,0,1,Check-Out,2019-10-04 -City Hotel,1,305,2016,December,23,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,59.38,0,0,Canceled,2019-10-04 -City Hotel,0,21,2017,March,16,31,0,1,2,0.0,0,BB,GBR,Aviation,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,64.22,1,2,Check-Out,2020-03-03 -City Hotel,0,40,2016,May,10,13,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,131.06,0,0,Check-Out,2019-02-01 -City Hotel,1,196,2016,July,44,5,1,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,152.18,0,0,Canceled,2019-01-03 -City Hotel,0,17,2017,August,38,29,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,13.0,179.0,0,Transient-Party,177.68,0,0,Check-Out,2019-11-03 -City Hotel,1,100,2015,December,53,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,84.0,179.0,0,Transient,95.22,0,0,Canceled,2018-08-03 -City Hotel,1,116,2015,July,26,6,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,39,Transient,59.69,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2017,January,2,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,13.0,97.0,0,Transient,38.85,0,0,Check-Out,2020-02-01 -Resort Hotel,1,428,2016,October,43,25,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,239.0,179.0,0,Transient,65.16,0,1,Canceled,2018-08-03 -Resort Hotel,0,253,2016,October,44,30,2,3,2,1.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,121.22,0,2,Check-Out,2019-08-04 -Resort Hotel,1,157,2017,June,22,18,2,10,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,C,0,No Deposit,242.0,179.0,0,Transient,155.36,0,3,Canceled,2020-04-02 -Resort Hotel,0,44,2015,December,53,3,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,122.15,0,0,Check-Out,2018-08-03 -City Hotel,0,43,2017,April,17,31,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,125.76,0,0,Check-Out,2020-03-03 -City Hotel,1,0,2017,March,15,16,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,42.43,0,1,Canceled,2019-12-04 -Resort Hotel,1,266,2016,October,43,9,2,5,2,0.0,0,BB,CHE,Groups,TA/TO,0,0,0,A,A,0,Non Refund,179.0,179.0,0,Transient,76.96,0,0,Canceled,2019-04-03 -Resort Hotel,0,259,2015,October,41,9,1,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,62.28,0,0,Check-Out,2017-11-02 -City Hotel,0,240,2015,August,44,9,2,3,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Contract,81.49,0,1,Check-Out,2017-11-02 -City Hotel,0,0,2017,August,36,18,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,133.12,0,0,Check-Out,2018-08-03 -Resort Hotel,1,151,2017,August,36,9,2,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,155.0,179.0,0,Transient,74.38,0,0,Canceled,2020-06-02 -City Hotel,1,304,2016,February,42,4,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,27.0,179.0,41,Transient,75.19,0,0,Canceled,2018-10-03 -City Hotel,0,3,2016,July,30,17,2,1,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,125.46,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2016,February,9,9,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,66.68,0,1,Check-Out,2018-12-03 -City Hotel,1,150,2015,September,44,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,62.19,0,0,Canceled,2018-07-03 -City Hotel,1,421,2016,September,44,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,94.01,0,0,Canceled,2019-07-04 -Resort Hotel,1,10,2017,August,31,27,0,4,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,220.54,0,2,Canceled,2020-05-03 -City Hotel,0,285,2016,May,24,13,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,84.68,0,0,Check-Out,2019-06-03 -City Hotel,1,3,2017,May,22,29,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,126.07,0,0,Canceled,2020-06-02 -Resort Hotel,0,3,2016,March,15,24,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,99.58,0,0,Check-Out,2019-03-04 -City Hotel,0,12,2017,June,22,21,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,161.36,0,1,Check-Out,2019-03-04 -Resort Hotel,0,146,2016,March,15,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,E,0,Refundable,13.0,222.0,0,Transient-Party,69.51,0,0,Check-Out,2019-02-01 -City Hotel,0,92,2017,May,26,17,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,119.6,0,1,Check-Out,2020-06-02 -City Hotel,0,206,2016,June,28,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,67.69,0,0,Check-Out,2019-06-03 -City Hotel,1,1,2015,August,35,27,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,153.35,0,0,Canceled,2018-05-03 -City Hotel,0,1,2016,October,43,10,2,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,F,0,No Deposit,14.0,179.0,0,Transient,95.81,0,0,Check-Out,2019-08-04 -Resort Hotel,0,284,2017,July,33,19,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,241.0,179.0,0,Transient,145.48,1,1,Check-Out,2020-06-02 -Resort Hotel,0,194,2016,March,44,31,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,221.0,75,Transient-Party,47.4,0,0,Check-Out,2019-03-04 -City Hotel,1,11,2015,November,51,10,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,68.48,0,0,No-Show,2018-08-03 -City Hotel,1,245,2016,June,35,2,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.7,0,1,Canceled,2019-04-03 -City Hotel,0,13,2017,July,32,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,72.0,179.0,0,Transient-Party,132.49,0,1,Check-Out,2020-06-02 -City Hotel,0,44,2016,January,17,10,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,35.0,179.0,63,Transient,67.7,0,0,Check-Out,2018-12-03 -Resort Hotel,1,57,2017,June,22,22,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient,101.61,0,2,Canceled,2020-03-03 -City Hotel,0,22,2016,December,52,28,0,1,2,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,88.58,0,0,Check-Out,2019-10-04 -Resort Hotel,0,32,2017,January,4,16,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,3,No Deposit,15.0,179.0,0,Transient,30.81,1,0,Check-Out,2019-10-04 -Resort Hotel,0,249,2017,June,21,21,2,5,2,0.0,0,BB,NLD,Direct,TA/TO,0,0,0,A,A,2,No Deposit,178.0,179.0,0,Transient,112.49,0,1,Check-Out,2020-07-03 -Resort Hotel,0,153,2017,May,39,25,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,90.57,0,3,Check-Out,2020-04-02 -Resort Hotel,0,230,2017,June,21,28,2,4,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,F,0,No Deposit,311.0,179.0,0,Transient-Party,129.09,0,0,Check-Out,2020-06-02 -Resort Hotel,0,309,2016,August,33,2,0,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,178.0,179.0,0,Transient,98.25,0,0,Check-Out,2019-07-04 -City Hotel,1,154,2016,June,25,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,59,Transient,77.11,0,0,Canceled,2019-03-04 -City Hotel,1,25,2016,December,10,19,0,4,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Transient,164.73,0,1,Canceled,2019-11-03 -City Hotel,1,102,2016,March,11,18,1,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.34,0,0,Check-Out,2019-02-01 -Resort Hotel,0,8,2017,May,21,2,1,1,2,0.0,0,BB,CHE,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,111.42,0,2,Check-Out,2020-03-03 -City Hotel,0,101,2016,June,22,14,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,131.62,0,1,Check-Out,2019-06-03 -City Hotel,0,33,2016,October,49,9,0,4,3,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,E,0,No Deposit,15.0,197.0,0,Transient,144.89,0,0,Check-Out,2018-09-02 -Resort Hotel,1,151,2017,March,8,27,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,227.61,0,0,Canceled,2019-09-03 -Resort Hotel,0,49,2016,October,43,18,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,81.75,1,2,Check-Out,2019-04-03 -City Hotel,0,35,2016,November,50,30,1,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient,80.76,0,3,Check-Out,2019-07-04 -City Hotel,1,85,2016,December,50,2,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,63.11,0,0,Canceled,2019-03-04 -City Hotel,1,3,2017,May,20,6,0,1,1,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-04-02 -City Hotel,0,39,2016,May,22,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,189.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,1,45,2017,July,17,5,2,3,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,161.78,0,2,Canceled,2019-02-01 -City Hotel,0,13,2016,November,53,10,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.85,0,2,Check-Out,2019-06-03 -City Hotel,0,2,2016,February,4,20,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,95.0,179.0,0,Transient-Party,80.13,0,0,Check-Out,2018-11-02 -City Hotel,1,107,2015,October,43,24,2,4,2,0.0,0,BB,CHE,Online TA,Direct,0,1,0,F,A,0,No Deposit,13.0,179.0,0,Transient,107.5,0,2,Canceled,2019-07-04 -Resort Hotel,1,1,2016,April,18,31,0,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.77,0,1,Canceled,2018-12-03 -City Hotel,0,24,2015,December,53,25,2,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,95.34,1,3,Check-Out,2018-06-02 -Resort Hotel,0,2,2016,December,52,12,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,105.57,0,2,Check-Out,2018-12-03 -City Hotel,1,105,2016,April,22,15,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,64.15,0,0,Canceled,2018-11-02 -Resort Hotel,1,431,2017,September,53,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,245.0,179.0,0,Transient,119.13,0,0,Canceled,2019-11-03 -City Hotel,0,237,2017,July,32,6,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.36,0,2,Check-Out,2020-07-03 -City Hotel,1,103,2016,March,16,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,41,Transient,70.99,0,0,Canceled,2018-12-03 -City Hotel,0,111,2017,June,21,15,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,176.0,179.0,0,Transient,154.5,0,1,Check-Out,2020-03-03 -City Hotel,0,59,2017,April,17,29,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,97.26,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2016,December,36,3,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-04-03 -City Hotel,0,35,2017,April,16,10,1,0,1,0.0,0,SC,GBR,Aviation,Corporate,0,0,0,A,D,0,No Deposit,12.0,165.0,0,Transient-Party,78.54,0,0,Check-Out,2020-05-03 -City Hotel,1,154,2016,May,11,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,41,Transient,106.22,0,0,Canceled,2018-11-02 -City Hotel,1,157,2017,July,28,29,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,161.58,0,0,Canceled,2020-06-02 -Resort Hotel,1,50,2017,March,18,15,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,229.0,179.0,0,Transient,72.62,0,0,Canceled,2020-02-01 -Resort Hotel,1,104,2017,July,15,18,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,378.0,179.0,0,Transient,165.15,0,2,Canceled,2020-06-02 -Resort Hotel,1,314,2016,April,11,22,2,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,110.08,0,0,Canceled,2019-12-04 -Resort Hotel,0,2,2015,December,4,2,0,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,80.19,0,0,Check-Out,2018-12-03 -City Hotel,0,43,2017,May,35,7,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.31,0,1,Check-Out,2020-03-03 -Resort Hotel,1,100,2017,January,21,6,2,5,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,17.0,179.0,0,Transient,106.26,0,0,Canceled,2020-02-01 -City Hotel,1,1,2017,March,15,11,1,0,3,0.0,0,SC,PRT,Online TA,Corporate,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,5.45,0,0,Canceled,2019-12-04 -City Hotel,0,56,2016,May,16,24,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,84.95,0,0,Check-Out,2019-03-04 -Resort Hotel,0,44,2016,March,9,3,1,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,78.0,179.0,0,Transient,83.17,0,0,Check-Out,2018-12-03 -City Hotel,0,150,2016,October,45,12,0,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,183.6,0,1,Check-Out,2019-09-03 -City Hotel,1,0,2016,May,23,19,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,14.0,179.0,0,Transient,0.19,0,0,Canceled,2019-08-04 -City Hotel,1,28,2017,August,19,9,2,1,2,0.0,0,BB,ESP,Undefined,TA/TO,0,0,0,B,F,0,No Deposit,12.0,179.0,0,Group,111.42,0,1,Canceled,2020-03-03 -City Hotel,0,38,2016,May,43,20,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,65.89,0,0,Check-Out,2019-03-04 -Resort Hotel,0,7,2017,December,50,28,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient,83.72,0,0,Check-Out,2019-11-03 -City Hotel,0,172,2015,November,44,23,0,1,2,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,32.0,179.0,0,Group,70.06,0,0,Check-Out,2018-07-03 -City Hotel,1,118,2015,October,43,14,2,6,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,E,D,1,No Deposit,10.0,179.0,0,Transient-Party,97.37,0,0,Canceled,2018-08-03 -City Hotel,0,8,2017,May,22,18,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Group,75.84,0,1,Check-Out,2019-03-04 -Resort Hotel,0,53,2016,December,51,20,2,4,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,85.39,0,0,Check-Out,2019-06-03 -City Hotel,1,27,2016,June,26,25,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,77.28,0,1,Canceled,2019-06-03 -City Hotel,1,10,2015,July,38,3,0,2,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.2,0,0,Canceled,2018-08-03 -City Hotel,0,97,2016,October,44,13,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,75.71,0,0,Check-Out,2019-09-03 -City Hotel,1,11,2017,March,14,6,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.21,0,2,Canceled,2020-03-03 -City Hotel,0,158,2016,April,17,6,1,3,1,0.0,0,BB,POL,Groups,Direct,0,0,0,A,C,1,No Deposit,33.0,179.0,0,Transient-Party,85.16,0,0,Check-Out,2019-04-03 -Resort Hotel,1,18,2017,August,36,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,135.18,0,0,Canceled,2020-06-02 -City Hotel,0,0,2017,March,9,27,0,4,2,0.0,0,SC,BEL,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient-Party,107.02,0,3,Check-Out,2019-09-03 -City Hotel,1,123,2015,September,37,26,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.69,0,0,Canceled,2017-11-02 -Resort Hotel,0,109,2015,December,53,30,1,1,2,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,A,0,No Deposit,299.0,179.0,0,Transient,62.27,0,0,Canceled,2018-06-02 -City Hotel,0,41,2016,July,41,10,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,237.0,179.0,0,Transient,115.04,0,1,Check-Out,2019-09-03 -City Hotel,0,13,2016,June,22,28,1,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,230.02,0,0,Check-Out,2019-03-04 -Resort Hotel,1,5,2016,June,26,16,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,77.49,0,1,Canceled,2019-05-04 -City Hotel,0,0,2016,June,26,25,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,K,0,No Deposit,17.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-05-03 -Resort Hotel,0,108,2017,July,33,10,2,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,136.16,0,3,Check-Out,2020-07-03 -Resort Hotel,0,43,2016,March,10,5,2,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,37.38,0,1,Check-Out,2019-01-03 -City Hotel,1,18,2015,September,44,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.02,0,0,Canceled,2018-08-03 -City Hotel,0,10,2016,June,3,17,1,1,2,0.0,0,BB,GBR,Corporate,Direct,0,0,0,A,C,0,No Deposit,14.0,45.0,0,Transient-Party,82.55,0,0,Check-Out,2019-06-03 -City Hotel,1,109,2016,October,23,9,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,E,0,No Deposit,11.0,70.0,0,Transient,105.68,0,0,Canceled,2019-06-03 -City Hotel,0,256,2016,July,44,30,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,105.27,0,2,Check-Out,2019-05-04 -Resort Hotel,1,9,2017,May,22,5,0,5,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,291.0,179.0,0,Transient,169.29,0,0,Canceled,2020-03-03 -Resort Hotel,1,12,2015,December,53,31,2,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,42.28,0,0,Canceled,2018-08-03 -City Hotel,1,17,2015,November,50,25,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.82,0,0,Canceled,2018-08-03 -City Hotel,1,28,2016,December,48,19,0,1,3,0.0,0,SC,,Complementary,Corporate,1,1,0,P,P,0,No Deposit,12.0,179.0,0,Transient,0.7,0,0,Canceled,2020-01-04 -City Hotel,0,0,2016,April,17,23,1,1,1,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,159.01,0,0,Check-Out,2019-02-01 -City Hotel,0,19,2017,February,11,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,14.0,179.0,0,Transient,77.08,0,0,Check-Out,2019-09-03 -Resort Hotel,1,47,2016,September,33,10,4,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,158.42,0,0,Canceled,2019-05-04 -Resort Hotel,0,83,2016,March,17,20,0,2,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,115.46,0,0,Check-Out,2019-12-04 -City Hotel,0,37,2016,June,16,10,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,81.0,179.0,0,Transient,105.19,0,0,Check-Out,2019-02-01 -Resort Hotel,0,249,2016,July,31,21,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,159.36,0,1,Check-Out,2020-05-03 -City Hotel,0,14,2017,January,3,24,0,2,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,77.87,0,0,Check-Out,2019-11-03 -Resort Hotel,1,195,2017,July,28,25,2,1,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,206.29,0,0,Canceled,2020-06-02 -Resort Hotel,0,138,2015,July,35,24,2,5,1,1.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,181.94,1,2,Check-Out,2019-05-04 -City Hotel,0,0,2015,October,44,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,99.24,0,0,Check-Out,2018-08-03 -City Hotel,0,26,2016,July,30,31,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,238.0,179.0,0,Transient,161.54,1,2,Check-Out,2019-05-04 -Resort Hotel,0,50,2017,August,22,19,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,248.74,1,3,Check-Out,2020-06-02 -City Hotel,0,0,2017,March,8,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,66.0,0,Transient,33.62,1,0,Check-Out,2020-04-02 -City Hotel,1,96,2017,February,11,29,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.01,0,1,Canceled,2019-12-04 -Resort Hotel,0,35,2016,March,17,16,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,221.0,0,Transient,66.1,1,0,Check-Out,2019-03-04 -City Hotel,1,57,2015,February,10,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.96,0,0,Canceled,2017-11-02 -Resort Hotel,0,13,2015,November,50,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,41.43,0,0,Check-Out,2018-09-02 -Resort Hotel,0,246,2016,July,33,22,2,5,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,D,G,2,No Deposit,13.0,179.0,0,Transient,93.9,0,0,Check-Out,2019-03-04 -City Hotel,0,12,2017,March,11,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,141.0,179.0,0,Transient-Party,89.01,0,0,Check-Out,2020-02-01 -City Hotel,1,201,2017,April,22,10,1,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,F,0,Non Refund,284.0,179.0,0,Transient-Party,83.41,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2016,March,16,30,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,71.4,1,0,Check-Out,2019-02-01 -Resort Hotel,0,36,2017,June,25,25,1,7,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,156.16,0,0,Check-Out,2020-03-03 -City Hotel,0,247,2015,October,42,11,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.86,0,0,Check-Out,2017-11-02 -Resort Hotel,0,402,2017,May,22,20,2,5,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,334.0,179.0,0,Transient-Party,99.81,0,0,Check-Out,2020-03-03 -City Hotel,0,261,2016,October,43,21,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.56,0,2,Check-Out,2018-08-03 -City Hotel,0,40,2016,March,9,27,2,4,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,G,F,1,No Deposit,16.0,179.0,0,Transient,173.54,0,0,Check-Out,2018-10-03 -Resort Hotel,0,5,2017,March,17,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,D,0,No Deposit,168.0,179.0,0,Group,0.0,0,0,Check-Out,2020-01-04 -City Hotel,1,245,2015,May,37,24,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,71.89,0,0,Canceled,2017-12-03 -City Hotel,1,386,2017,August,37,10,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,9.0,179.0,0,Transient,102.86,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,October,43,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Group,42.93,0,1,Check-Out,2018-12-03 -Resort Hotel,0,106,2016,July,26,15,2,7,3,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,180.0,179.0,0,Transient,97.32,0,0,Check-Out,2019-03-04 -City Hotel,0,40,2016,February,9,25,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,70.98,0,2,Check-Out,2019-02-01 -City Hotel,0,0,2016,February,10,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,71.0,179.0,0,Transient,59.5,0,0,Check-Out,2019-09-03 -City Hotel,1,309,2016,May,23,23,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,109.18,0,0,Canceled,2019-02-01 -Resort Hotel,0,60,2015,October,36,30,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,139.22,0,1,Check-Out,2019-05-04 -City Hotel,1,1,2017,March,3,19,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,143.99,0,1,Canceled,2020-03-03 -Resort Hotel,1,245,2016,October,22,18,0,1,1,0.0,0,BB,ISR,Direct,Direct,0,0,0,D,C,0,No Deposit,13.0,179.0,0,Transient,150.75,0,0,Canceled,2019-05-04 -Resort Hotel,0,54,2016,April,23,18,2,5,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,43.4,0,0,Check-Out,2019-03-04 -Resort Hotel,1,4,2017,February,10,4,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,75.29,0,0,Canceled,2019-10-04 -City Hotel,1,156,2017,March,24,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,158.38,0,1,Canceled,2020-04-02 -City Hotel,0,153,2017,July,27,18,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,163.83,0,1,Check-Out,2020-02-01 -City Hotel,1,148,2016,December,44,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,24.0,179.0,64,Transient,76.15,0,0,Canceled,2018-12-03 -City Hotel,0,107,2017,March,18,24,0,3,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,102.09,0,2,Check-Out,2020-02-01 -City Hotel,0,266,2015,September,40,4,1,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,82.57,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,November,49,16,2,0,2,2.0,0,BB,PRT,Online TA,TA/TO,1,0,0,H,I,1,No Deposit,243.0,179.0,0,Transient,0.0,1,3,Check-Out,2018-08-03 -City Hotel,0,149,2017,August,37,12,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,131.44,0,3,Check-Out,2020-06-02 -Resort Hotel,0,202,2016,May,23,30,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,1,Refundable,12.0,179.0,0,Transient-Party,171.03,0,0,Check-Out,2019-05-04 -City Hotel,0,1,2016,September,45,22,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.38,0,1,Check-Out,2019-08-04 -Resort Hotel,0,158,2016,March,16,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,78.56,1,0,Check-Out,2019-03-04 -City Hotel,0,58,2016,October,43,30,2,4,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,155.1,0,0,Check-Out,2019-07-04 -Resort Hotel,0,272,2016,September,36,30,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,165.25,0,2,Check-Out,2019-06-03 -Resort Hotel,0,18,2015,January,10,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient-Party,48.43,1,0,Check-Out,2019-04-03 -Resort Hotel,0,18,2016,December,50,28,0,2,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,230.0,0,Transient,81.5,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2016,October,43,9,0,2,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,36.97,0,1,Check-Out,2019-06-03 -City Hotel,0,46,2017,August,35,31,1,0,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,C,K,0,No Deposit,10.0,179.0,0,Transient,1.19,0,1,Check-Out,2020-06-02 -City Hotel,1,94,2016,May,9,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.99,0,0,Canceled,2018-12-03 -Resort Hotel,0,18,2016,September,27,7,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,115.39,0,0,Check-Out,2019-04-03 -Resort Hotel,0,250,2015,August,35,22,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,241.0,179.0,0,Transient-Party,210.99,1,2,Check-Out,2018-06-02 -Resort Hotel,1,49,2017,July,32,2,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,159.0,179.0,0,Transient,77.74,0,0,Canceled,2020-05-03 -City Hotel,1,17,2016,October,44,18,2,1,2,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,86.93,0,0,Canceled,2019-08-04 -Resort Hotel,0,293,2017,July,31,29,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Contract,63.57,0,1,Check-Out,2020-06-02 -Resort Hotel,0,94,2017,May,19,31,2,10,2,0.0,0,HB,FRA,Direct,Corporate,0,0,0,E,E,0,No Deposit,332.0,179.0,0,Transient,115.92,0,0,Check-Out,2020-04-02 -Resort Hotel,0,93,2017,August,31,10,4,5,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,123.58,0,3,Check-Out,2020-07-03 -Resort Hotel,1,109,2017,June,19,24,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,162.62,0,0,Canceled,2019-10-04 -Resort Hotel,0,88,2016,March,24,13,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,119.97,1,2,Check-Out,2019-03-04 -City Hotel,0,1,2017,March,10,2,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Group,0.0,0,0,Check-Out,2020-03-03 -City Hotel,0,28,2017,December,53,27,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,10.0,179.0,0,Transient,153.12,0,3,Check-Out,2019-10-04 -City Hotel,0,4,2016,June,9,22,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.6,0,0,Check-Out,2018-11-02 -Resort Hotel,0,21,2017,July,23,13,2,1,2,2.0,0,BB,,Direct,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-03-03 -City Hotel,1,85,2016,September,43,24,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,194.0,0,0,Canceled,2018-11-02 -City Hotel,1,51,2015,August,37,31,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,122.06,0,0,Canceled,2018-05-03 -City Hotel,0,2,2017,August,23,28,1,3,2,0.0,0,BB,CHE,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,103.4,0,0,Check-Out,2020-04-02 -Resort Hotel,1,17,2016,November,32,27,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,119.76,0,0,Canceled,2018-08-03 -City Hotel,1,1,2016,December,50,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,42.13,0,0,Canceled,2018-11-02 -City Hotel,0,11,2016,June,26,15,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.2,0,0,Check-Out,2019-04-03 -City Hotel,0,94,2017,May,22,28,2,3,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,163.52,0,2,Check-Out,2020-03-03 -City Hotel,0,1,2016,May,24,11,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,1,No Deposit,178.0,179.0,0,Transient,138.53,0,0,Check-Out,2020-01-04 -City Hotel,0,51,2015,July,32,10,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,63.43,0,0,Check-Out,2017-11-02 -Resort Hotel,0,47,2015,October,44,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,44.22,0,2,Check-Out,2018-08-03 -Resort Hotel,0,150,2017,March,11,9,2,0,2,0.0,0,Undefined,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,378.0,241.0,0,Transient-Party,63.22,0,0,Check-Out,2020-01-04 -Resort Hotel,1,15,2017,April,17,15,0,2,2,0.0,0,FB,PRT,Groups,Corporate,1,0,0,E,E,1,Non Refund,79.0,179.0,0,Transient,99.71,0,0,Canceled,2020-03-03 -Resort Hotel,0,93,2016,January,11,27,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,320.0,179.0,0,Transient,42.17,1,0,Check-Out,2018-11-02 -City Hotel,0,160,2017,July,30,6,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,178.64,0,2,Check-Out,2020-05-03 -City Hotel,0,120,2015,August,25,10,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,140.71,0,0,Check-Out,2019-02-01 -City Hotel,0,10,2017,June,22,15,0,3,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.53,0,0,Check-Out,2020-03-03 -Resort Hotel,0,86,2016,June,26,13,2,5,1,0.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,63.66,0,2,Check-Out,2019-02-01 -City Hotel,0,0,2017,February,10,6,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.43,0,1,Check-Out,2020-02-01 -City Hotel,1,45,2016,March,21,10,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,149.35,0,0,Canceled,2018-11-02 -City Hotel,1,11,2016,August,33,13,1,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,184.67,0,1,Canceled,2019-04-03 -City Hotel,0,34,2016,October,33,16,0,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,2,No Deposit,16.0,331.0,0,Transient,106.64,0,0,Check-Out,2019-08-04 -Resort Hotel,0,112,2016,April,50,19,2,5,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,D,E,2,No Deposit,243.0,179.0,0,Transient,76.54,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,December,50,21,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,189.91,0,0,Check-Out,2018-10-03 -City Hotel,0,308,2015,September,37,17,0,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,60.71,0,0,Check-Out,2017-12-03 -Resort Hotel,0,0,2016,September,43,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,50.26,1,0,Check-Out,2019-01-03 -City Hotel,0,1,2016,October,43,22,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,138.6,0,0,Check-Out,2019-08-04 -Resort Hotel,0,8,2016,May,22,28,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,238.0,179.0,0,Transient,132.99,1,2,Check-Out,2019-06-03 -Resort Hotel,0,8,2015,October,46,26,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,149.45,0,2,Check-Out,2018-08-03 -Resort Hotel,0,30,2015,October,45,10,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,C,0,No Deposit,246.0,179.0,0,Transient,69.49,0,0,Check-Out,2018-06-02 -Resort Hotel,1,101,2016,December,32,21,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,62.19,0,0,Canceled,2018-12-03 -City Hotel,1,143,2017,May,21,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,109.45,0,1,Canceled,2020-02-01 -City Hotel,1,81,2017,April,26,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,217.0,0,Transient,100.3,0,0,Canceled,2020-04-02 -Resort Hotel,0,205,2017,July,26,16,2,5,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,9.0,179.0,0,Transient-Party,81.08,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2017,February,9,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,20.0,331.0,0,Transient,31.46,0,0,Check-Out,2019-10-04 -Resort Hotel,0,38,2016,September,44,24,1,6,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-08-04 -City Hotel,0,1,2015,July,36,19,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,61.1,0,1,Check-Out,2018-06-02 -City Hotel,0,0,2015,October,46,5,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,172.84,0,0,Check-Out,2018-09-02 -City Hotel,1,149,2015,December,53,31,2,3,2,0.0,0,FB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.02,0,0,Canceled,2018-12-03 -City Hotel,0,95,2016,July,31,30,0,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,111.68,0,1,Check-Out,2019-06-03 -Resort Hotel,0,10,2017,May,21,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,83.0,179.0,0,Group,0.0,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,October,22,28,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,0.55,0,0,Check-Out,2019-03-04 -City Hotel,1,107,2017,June,28,31,2,4,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,E,F,2,No Deposit,185.0,179.0,0,Transient,155.99,0,0,Canceled,2020-04-02 -Resort Hotel,0,1,2016,September,37,7,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,176.0,179.0,0,Transient,75.61,0,0,Check-Out,2019-06-03 -City Hotel,0,20,2017,June,25,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,63.63,0,0,Check-Out,2020-06-02 -Resort Hotel,0,38,2015,September,36,6,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,159.55,0,0,Check-Out,2018-08-03 -City Hotel,1,15,2016,January,4,29,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,60.68,0,0,No-Show,2018-12-03 -City Hotel,0,13,2016,December,53,5,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient,79.35,1,0,Check-Out,2019-06-03 -City Hotel,1,146,2016,December,53,23,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.86,0,0,Canceled,2018-11-02 -Resort Hotel,0,6,2016,April,21,26,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,90.0,179.0,0,Transient-Party,35.06,0,0,Check-Out,2019-04-03 -City Hotel,1,3,2017,July,33,21,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,150.31,0,1,Canceled,2020-01-04 -City Hotel,0,258,2017,June,20,17,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,126.67,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,June,27,6,1,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,168.33,0,0,Check-Out,2019-02-01 -City Hotel,1,241,2016,July,28,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.18,0,0,Canceled,2020-06-02 -Resort Hotel,0,95,2017,June,26,22,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,G,0,No Deposit,247.0,179.0,0,Transient,142.45,0,3,Check-Out,2020-02-01 -Resort Hotel,0,320,2015,August,37,28,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,129.07,1,3,Check-Out,2018-05-03 -City Hotel,0,48,2017,April,15,6,2,4,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,157.26,0,1,Check-Out,2020-03-03 -Resort Hotel,1,39,2017,February,9,30,0,2,2,0.0,0,BB,CHN,Corporate,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,41.33,0,0,Canceled,2019-11-03 -City Hotel,0,69,2015,December,51,15,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.3,0,2,Check-Out,2018-10-03 -City Hotel,0,7,2017,May,21,24,0,2,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient-Party,152.32,0,1,Check-Out,2020-03-03 -City Hotel,0,52,2016,February,8,9,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,118.22,0,1,Check-Out,2019-05-04 -Resort Hotel,1,201,2016,March,22,22,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,E,1,Refundable,302.0,222.0,0,Transient,39.09,0,0,Canceled,2019-02-01 -City Hotel,1,203,2017,January,18,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,96.43,0,0,Canceled,2020-05-03 -City Hotel,1,253,2015,June,32,29,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,63.56,0,1,Canceled,2018-06-02 -City Hotel,0,191,2017,May,28,15,2,0,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,122.58,0,2,Check-Out,2020-02-01 -City Hotel,1,113,2016,January,10,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,21,Transient,77.08,0,0,Canceled,2018-11-02 -Resort Hotel,1,148,2015,July,35,16,4,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,98.08,0,0,Canceled,2018-06-02 -Resort Hotel,0,98,2015,July,10,20,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,61.35,0,0,Check-Out,2018-12-03 -City Hotel,0,14,2017,February,10,7,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,78.0,0,2,Check-Out,2020-02-01 -City Hotel,0,8,2016,December,51,25,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,20,Transient,61.91,0,1,Check-Out,2019-11-03 -City Hotel,1,361,2017,August,37,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,168.06,0,0,Canceled,2020-06-02 -City Hotel,1,0,2016,August,35,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,H,0,No Deposit,14.0,179.0,0,Transient,100.28,0,0,Canceled,2019-11-03 -City Hotel,0,15,2017,June,25,23,0,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,162.14,0,0,Check-Out,2020-06-02 -Resort Hotel,0,190,2017,August,38,31,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,224.82,1,0,Check-Out,2020-06-02 -Resort Hotel,1,98,2016,February,10,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,238.0,179.0,0,Transient,45.22,0,0,Canceled,2018-10-03 -City Hotel,1,2,2016,August,37,30,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,212.85,0,1,Canceled,2019-06-03 -City Hotel,0,53,2017,August,31,18,2,5,3,1.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,159.3,0,3,Check-Out,2019-12-04 -City Hotel,0,42,2015,November,50,5,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,35.48,0,0,Check-Out,2018-09-02 -Resort Hotel,0,24,2015,August,31,20,4,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,378.0,179.0,0,Transient-Party,251.47,1,0,Check-Out,2020-06-02 -Resort Hotel,1,28,2015,September,43,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Canceled,2018-06-02 -Resort Hotel,0,13,2016,September,44,17,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,148.1,0,2,Check-Out,2019-10-04 -Resort Hotel,0,4,2016,July,34,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,155.26,1,0,Check-Out,2020-07-03 -City Hotel,1,320,2015,September,37,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.3,0,0,Canceled,2018-08-03 -City Hotel,0,39,2017,January,3,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,61.97,0,0,Canceled,2018-11-02 -City Hotel,1,39,2017,April,20,20,2,3,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,111.72,0,1,Canceled,2020-02-01 -City Hotel,0,5,2017,January,4,13,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,170.0,179.0,0,Transient,78.03,0,0,Check-Out,2019-10-04 -City Hotel,0,99,2016,October,50,27,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,26.0,179.0,0,Transient-Party,80.7,0,0,Check-Out,2019-05-04 -City Hotel,0,334,2015,September,42,31,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,60,Transient-Party,76.43,0,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2016,May,23,28,0,10,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,123.94,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2017,February,9,26,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,156.42,0,0,Check-Out,2020-03-03 -Resort Hotel,1,268,2016,May,20,24,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,36.0,179.0,0,Transient,62.91,0,0,Canceled,2019-03-04 -Resort Hotel,0,9,2016,December,52,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,78.0,0,Transient-Party,62.89,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2017,March,16,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,32.0,66.0,0,Transient,93.44,0,0,Check-Out,2020-01-04 -Resort Hotel,0,58,2015,October,45,9,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,114.51,1,2,Check-Out,2018-08-03 -City Hotel,1,10,2016,August,33,22,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.22,0,0,Canceled,2019-01-03 -Resort Hotel,1,44,2015,October,43,22,0,5,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,36.01,0,0,Canceled,2018-06-02 -City Hotel,0,253,2017,December,53,27,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,94.72,0,1,Check-Out,2020-01-04 -City Hotel,0,56,2016,May,29,17,0,4,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,224.56,0,1,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,February,10,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient,37.03,0,0,Check-Out,2019-02-01 -City Hotel,1,145,2016,October,40,27,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,112.82,0,0,Canceled,2019-08-04 -City Hotel,0,42,2017,January,3,15,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.6,0,1,Check-Out,2019-11-03 -City Hotel,0,13,2017,June,38,29,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,110.2,0,1,Canceled,2020-05-03 -City Hotel,0,42,2017,August,12,27,1,3,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,115.48,0,1,Check-Out,2020-07-03 -City Hotel,1,197,2016,June,29,24,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,105.76,0,1,Canceled,2019-03-04 -City Hotel,1,49,2016,March,9,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.34,0,0,Canceled,2018-11-02 -Resort Hotel,0,34,2017,May,15,26,2,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,158.26,1,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2015,October,42,21,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,171.97,0,0,Check-Out,2018-06-02 -Resort Hotel,0,165,2015,August,33,10,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,133.17,0,1,Check-Out,2018-07-03 -City Hotel,0,306,2016,June,44,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,68.67,0,0,Check-Out,2019-05-04 -City Hotel,0,119,2016,June,26,16,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,61.33,0,2,Canceled,2019-05-04 -Resort Hotel,0,1,2017,March,16,20,0,1,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,30.87,1,0,Check-Out,2020-01-04 -Resort Hotel,0,154,2017,February,8,6,2,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,50.07,0,0,Check-Out,2020-04-02 -Resort Hotel,0,86,2016,July,31,24,2,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,165.04,0,2,Check-Out,2019-05-04 -City Hotel,1,154,2016,July,37,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,108.01,0,0,Canceled,2019-04-03 -Resort Hotel,0,14,2016,December,49,23,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,28.65,0,0,Check-Out,2019-10-04 -City Hotel,0,12,2016,June,28,27,0,2,1,0.0,0,BB,NLD,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,79.0,0,Transient,99.67,0,0,Check-Out,2019-05-04 -City Hotel,0,75,2016,October,39,24,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.04,0,0,Check-Out,2019-06-03 -City Hotel,0,256,2016,August,34,15,2,2,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,97.91,0,3,Check-Out,2020-06-02 -Resort Hotel,0,249,2016,June,26,13,0,3,1,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,132.0,179.0,0,Transient,72.66,0,0,Check-Out,2019-03-04 -City Hotel,0,12,2017,December,50,21,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,74.04,0,0,Check-Out,2019-12-04 -Resort Hotel,0,56,2015,November,43,17,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,178.0,179.0,0,Transient-Party,97.58,0,0,Check-Out,2018-09-02 -City Hotel,1,297,2017,June,26,24,0,3,2,2.0,0,HB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,228.56,0,1,Canceled,2020-04-02 -City Hotel,0,441,2016,September,45,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.33,0,0,Check-Out,2019-08-04 -City Hotel,0,16,2016,October,43,16,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.45,0,2,Check-Out,2019-09-03 -City Hotel,1,99,2015,September,36,9,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.24,0,0,Canceled,2018-05-03 -City Hotel,0,142,2016,March,53,30,0,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.26,0,1,Check-Out,2019-11-03 -City Hotel,1,12,2016,November,49,12,1,1,1,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,71.17,0,0,Check-Out,2019-10-04 -City Hotel,0,37,2016,March,8,6,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,69.88,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,February,4,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,71.0,0,Transient,69.56,0,0,Check-Out,2018-10-03 -Resort Hotel,0,152,2016,July,37,30,2,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,167.05,0,3,Check-Out,2019-06-03 -Resort Hotel,0,37,2016,June,27,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,211.0,218.0,0,Transient,38.81,0,0,Check-Out,2019-04-03 -Resort Hotel,0,23,2016,May,24,14,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,61.49,1,0,Check-Out,2019-04-03 -City Hotel,0,0,2017,May,22,30,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,C,1,No Deposit,14.0,179.0,0,Transient,127.71,0,1,Check-Out,2020-03-03 -City Hotel,0,96,2017,March,4,6,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.48,0,1,Check-Out,2020-03-03 -City Hotel,0,1,2015,August,35,5,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,B,0,No Deposit,12.0,179.0,0,Transient,0.38,0,1,Check-Out,2018-06-02 -City Hotel,0,0,2016,February,4,2,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-11-02 -City Hotel,1,2,2017,August,35,13,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,164.87,0,0,Canceled,2020-06-02 -Resort Hotel,0,163,2016,August,37,18,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,D,2,No Deposit,242.0,179.0,0,Transient,228.36,1,3,Check-Out,2020-06-02 -City Hotel,0,1,2016,December,51,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,65.55,0,0,Check-Out,2019-06-03 -City Hotel,0,44,2016,August,33,5,2,3,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,164.42,0,2,Check-Out,2019-05-04 -City Hotel,1,28,2017,July,32,15,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,152.39,0,2,Canceled,2019-03-04 -City Hotel,0,105,2016,May,27,27,2,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,142.26,0,1,Check-Out,2019-05-04 -City Hotel,1,30,2016,March,10,19,0,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,7.0,179.0,0,Transient,77.79,0,1,Canceled,2018-11-02 -City Hotel,0,227,2016,May,27,6,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Group,204.51,0,0,Check-Out,2019-02-01 -Resort Hotel,0,26,2016,November,44,12,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,81.75,0,2,Check-Out,2019-11-03 -City Hotel,0,24,2016,November,50,27,0,1,1,0.0,0,BB,,Groups,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient-Party,112.21,0,0,Check-Out,2019-10-04 -Resort Hotel,0,145,2015,December,4,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,63.27,0,0,Check-Out,2018-11-02 -City Hotel,0,6,2017,June,25,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.9,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2015,November,43,16,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,73.01,0,1,Check-Out,2018-06-02 -Resort Hotel,0,106,2016,February,11,5,2,5,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,147.0,179.0,0,Transient-Party,60.0,0,0,Check-Out,2019-03-04 -City Hotel,1,10,2015,August,37,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Canceled,2018-08-03 -City Hotel,1,48,2015,December,53,30,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,66.78,0,0,Canceled,2018-12-03 -City Hotel,0,2,2016,March,39,30,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,63.24,0,0,Check-Out,2019-11-03 -Resort Hotel,0,16,2016,March,16,9,2,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,E,2,No Deposit,129.0,179.0,0,Transient-Party,59.92,0,0,Check-Out,2019-04-03 -City Hotel,1,308,2016,December,53,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,23.0,179.0,0,Transient-Party,90.46,0,0,Canceled,2018-10-03 -City Hotel,0,1,2015,October,46,10,1,1,1,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,83.0,0,Transient-Party,61.35,0,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2017,March,9,30,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,63.08,0,0,Check-Out,2019-10-04 -Resort Hotel,1,152,2016,July,32,16,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,12.0,179.0,0,Transient,86.91,0,0,Canceled,2019-11-03 -Resort Hotel,1,104,2016,April,16,13,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,91.87,0,2,Canceled,2019-01-03 -Resort Hotel,0,33,2016,February,11,21,1,0,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,189.0,331.0,0,Transient-Party,74.39,0,0,Check-Out,2019-03-04 -Resort Hotel,0,240,2016,July,32,28,2,4,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,224.62,0,0,Check-Out,2018-05-03 -Resort Hotel,0,5,2017,February,10,2,0,1,2,0.0,0,BB,,Direct,Direct,1,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,65.45,1,1,Check-Out,2019-09-03 -City Hotel,1,11,2016,June,25,17,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.38,0,0,Check-Out,2019-05-04 -City Hotel,1,9,2016,July,36,18,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,88.81,0,0,Canceled,2019-02-01 -City Hotel,0,26,2015,October,44,16,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,B,1,No Deposit,4.0,222.0,0,Transient-Party,42.2,0,1,Check-Out,2018-09-02 -City Hotel,1,81,2016,March,17,22,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.9,0,2,Canceled,2018-11-02 -City Hotel,0,239,2017,August,35,25,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,101.95,0,1,Check-Out,2020-06-02 -City Hotel,0,6,2017,July,32,2,0,1,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.68,0,1,Check-Out,2020-07-03 -City Hotel,1,6,2016,June,26,20,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,45.0,0,Transient,159.21,0,2,Canceled,2019-01-03 -Resort Hotel,0,66,2017,July,27,25,2,5,1,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,252.0,0,2,Check-Out,2020-06-02 -Resort Hotel,0,24,2016,November,50,28,0,1,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,179.31,0,0,Check-Out,2019-10-04 -Resort Hotel,1,10,2015,September,47,29,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,36.9,0,0,No-Show,2018-05-03 -Resort Hotel,1,107,2017,March,10,10,0,1,1,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,91.81,0,0,Canceled,2019-10-04 -City Hotel,0,46,2017,May,21,6,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,83.56,0,0,Check-Out,2019-02-01 -City Hotel,1,30,2016,July,33,18,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.77,0,0,Canceled,2019-06-03 -Resort Hotel,0,1,2017,February,10,11,0,1,2,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,I,0,No Deposit,14.0,238.0,0,Transient,0.33,0,0,Check-Out,2020-03-03 -Resort Hotel,1,2,2015,July,34,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,244.0,179.0,0,Transient,62.51,0,0,Canceled,2018-06-02 -Resort Hotel,0,79,2016,March,11,5,2,0,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,F,1,No Deposit,245.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-01-03 -City Hotel,1,238,2015,October,44,9,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,1,0,D,A,0,No Deposit,2.0,179.0,0,Contract,85.43,0,3,Canceled,2017-12-03 -Resort Hotel,1,24,2017,May,22,16,0,5,1,1.0,0,HB,IRL,Direct,Direct,0,0,0,E,F,2,No Deposit,247.0,179.0,0,Transient,121.51,1,1,Canceled,2020-02-01 -Resort Hotel,0,108,2016,January,2,2,2,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,118.02,0,0,Check-Out,2018-11-02 -Resort Hotel,0,99,2016,December,49,24,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient,62.38,0,0,Check-Out,2019-08-04 -City Hotel,1,142,2017,May,20,4,0,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient-Party,99.56,0,0,No-Show,2020-02-01 -Resort Hotel,0,46,2015,July,31,10,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,251.0,179.0,0,Transient-Party,108.03,0,2,Check-Out,2020-05-03 -City Hotel,0,42,2016,May,27,6,1,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,148.28,0,1,Check-Out,2020-03-03 -City Hotel,1,13,2017,February,21,24,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,123.06,0,0,Canceled,2019-12-04 -City Hotel,0,81,2016,August,25,18,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,149.31,0,1,Check-Out,2019-04-03 -City Hotel,1,165,2015,August,35,27,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,61,Transient,124.75,0,0,Canceled,2018-06-02 -City Hotel,0,8,2017,June,26,17,0,4,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,1,A,A,2,No Deposit,11.0,331.0,0,Transient-Party,104.96,0,0,Check-Out,2020-04-02 -City Hotel,0,108,2017,May,22,13,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,88.62,0,1,Check-Out,2020-02-01 -City Hotel,0,51,2016,June,24,25,0,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,B,2,No Deposit,10.0,179.0,0,Transient,129.82,0,0,Check-Out,2019-05-04 -Resort Hotel,0,141,2016,October,44,30,1,0,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,120.74,1,2,Check-Out,2019-05-04 -City Hotel,1,51,2016,December,11,27,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,111.21,0,0,Canceled,2019-10-04 -Resort Hotel,0,139,2017,March,10,31,1,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,250.0,0,Transient,34.44,0,0,Check-Out,2019-03-04 -Resort Hotel,0,84,2015,December,50,12,0,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,110.19,1,1,Check-Out,2019-06-03 -Resort Hotel,0,14,2017,May,19,6,2,5,2,0.0,0,BB,POL,Direct,Direct,0,0,0,D,F,0,No Deposit,247.0,179.0,0,Transient,108.83,1,1,Check-Out,2020-03-03 -City Hotel,0,148,2016,July,38,28,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,216.09,0,1,Check-Out,2019-06-03 -City Hotel,1,107,2017,April,18,16,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,99.73,0,0,Canceled,2019-02-01 -City Hotel,1,410,2016,June,27,20,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,124.85,0,0,Canceled,2019-03-04 -Resort Hotel,1,49,2017,August,36,2,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,C,C,0,No Deposit,241.0,179.0,0,Transient,143.35,0,0,Canceled,2019-06-03 -Resort Hotel,0,3,2016,March,19,28,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,358.0,179.0,0,Transient-Party,65.29,0,0,Check-Out,2018-12-03 -City Hotel,0,103,2016,October,45,13,0,4,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,78.77,0,0,Check-Out,2019-09-03 -Resort Hotel,1,23,2017,May,24,22,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,E,F,0,No Deposit,16.0,179.0,0,Transient,41.77,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2016,August,22,10,0,1,1,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,D,1,No Deposit,3.0,179.0,0,Transient-Party,95.22,0,0,Check-Out,2019-03-04 -City Hotel,0,171,2016,August,36,29,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,212.01,0,2,Check-Out,2019-06-03 -City Hotel,0,254,2015,October,41,6,1,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,79.5,0,1,Check-Out,2017-11-02 -Resort Hotel,0,12,2016,July,43,21,0,1,3,1.0,0,BB,CHE,Online TA,Direct,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,214.87,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2016,July,42,12,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,95.89,0,3,Check-Out,2019-07-04 -Resort Hotel,0,195,2017,February,9,9,2,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,66.71,0,3,Check-Out,2020-03-03 -Resort Hotel,0,29,2017,May,22,6,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,71.76,0,0,Check-Out,2020-01-04 -City Hotel,1,106,2017,June,25,6,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,158.0,179.0,0,Transient,97.57,0,1,Canceled,2020-02-01 -City Hotel,0,0,2017,March,23,10,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.96,0,0,Check-Out,2020-03-03 -Resort Hotel,0,210,2016,October,45,29,1,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,262.0,179.0,0,Transient-Party,81.47,1,0,Check-Out,2019-08-04 -City Hotel,1,0,2016,March,13,18,0,3,1,0.0,0,HB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,13.0,54.0,0,Transient,28.33,0,0,Canceled,2018-12-03 -City Hotel,1,429,2017,March,17,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,79.21,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2017,April,15,2,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,97.78,0,0,Check-Out,2020-02-01 -City Hotel,1,190,2016,August,43,13,1,5,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.46,0,1,Check-Out,2019-07-04 -City Hotel,0,154,2017,July,29,12,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,139.14,0,3,Check-Out,2020-06-02 -Resort Hotel,0,241,2015,July,37,28,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,239.0,179.0,0,Transient,60.55,0,1,Check-Out,2018-06-02 -City Hotel,1,241,2017,April,17,17,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,85.21,0,1,Canceled,2020-03-03 -City Hotel,1,259,2017,June,27,12,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,94.39,0,0,Canceled,2020-06-02 -Resort Hotel,0,12,2017,February,8,24,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,2,No Deposit,205.0,179.0,0,Transient-Party,36.05,0,0,Check-Out,2020-04-02 -Resort Hotel,0,60,2015,December,53,15,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,39.82,0,0,Check-Out,2018-12-03 -City Hotel,1,37,2016,December,44,25,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,65.1,0,0,Canceled,2019-10-04 -Resort Hotel,0,2,2017,January,9,24,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,38.0,1,3,Check-Out,2019-11-03 -City Hotel,1,408,2017,July,36,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,123.88,0,1,Check-Out,2020-02-01 -Resort Hotel,1,265,2016,June,22,2,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,298.0,179.0,0,Transient,62.44,0,0,Canceled,2019-02-01 -City Hotel,0,7,2015,August,38,30,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,142.41,0,2,Check-Out,2018-06-02 -City Hotel,0,4,2016,November,45,30,0,1,1,0.0,0,BB,DEU,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,71.22,0,0,Check-Out,2019-08-04 -City Hotel,1,258,2016,October,42,13,2,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,8.0,179.0,0,Transient,179.62,0,2,Canceled,2019-07-04 -Resort Hotel,0,16,2016,October,46,29,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,113.48,0,1,Check-Out,2019-08-04 -City Hotel,1,159,2017,March,17,28,0,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,81.12,0,2,Canceled,2019-10-04 -City Hotel,0,7,2016,June,27,24,1,1,1,0.0,0,Undefined,CN,Corporate,Corporate,0,0,0,A,E,1,No Deposit,13.0,179.0,0,Transient,77.36,0,0,Check-Out,2019-08-04 -Resort Hotel,0,18,2015,February,9,6,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,92.1,0,0,Check-Out,2019-01-03 -City Hotel,0,82,2016,July,30,21,0,4,1,0.0,0,HB,ITA,Complementary,Direct,1,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-05-04 -City Hotel,0,18,2017,July,25,25,1,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.32,0,2,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,March,13,12,0,4,2,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,61.09,1,3,Check-Out,2019-01-03 -Resort Hotel,1,19,2016,January,11,2,0,1,1,0.0,0,BB,,Corporate,Corporate,1,1,0,A,A,2,No Deposit,14.0,226.0,0,Transient,31.15,0,0,Check-Out,2018-12-03 -Resort Hotel,1,61,2017,May,11,13,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,84.7,0,0,Canceled,2020-03-03 -City Hotel,0,43,2017,April,17,9,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,151.18,0,0,Check-Out,2020-01-04 -City Hotel,1,40,2016,March,16,21,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,78.96,0,2,Canceled,2018-12-03 -Resort Hotel,0,83,2017,April,18,15,0,4,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,C,C,2,No Deposit,11.0,179.0,0,Transient-Party,78.87,0,1,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,August,32,26,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,1,No Deposit,245.0,179.0,0,Transient,244.1,0,2,Check-Out,2019-04-03 -City Hotel,0,86,2016,December,5,4,1,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,77.99,0,1,Check-Out,2019-09-03 -City Hotel,0,7,2016,November,45,21,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,82.46,1,0,Check-Out,2019-02-01 -City Hotel,1,237,2016,June,42,9,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,113.98,0,0,Canceled,2019-02-01 -Resort Hotel,0,83,2015,October,41,18,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,199.24,0,1,Check-Out,2018-12-03 -City Hotel,0,7,2017,March,9,20,1,0,2,2.0,0,BB,,Direct,Direct,0,0,0,L,D,1,No Deposit,15.0,179.0,0,Transient,111.34,0,3,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,April,16,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,37.01,0,1,Check-Out,2019-05-04 -City Hotel,1,179,2017,August,39,6,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,148.93,0,0,Canceled,2020-06-02 -City Hotel,0,17,2017,June,23,28,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,81.27,0,2,Check-Out,2020-04-02 -City Hotel,1,429,2017,June,25,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,131.09,0,0,Canceled,2019-11-03 -City Hotel,0,54,2016,October,44,9,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,7.0,179.0,0,Transient-Party,67.14,0,0,Check-Out,2018-09-02 -City Hotel,1,102,2015,November,42,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,29.88,0,0,Canceled,2018-01-03 -City Hotel,1,59,2016,May,17,5,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,Refundable,315.0,179.0,0,Transient,82.15,0,0,Canceled,2019-08-04 -Resort Hotel,0,42,2015,December,17,7,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,61.81,0,0,Check-Out,2018-12-03 -City Hotel,1,46,2015,February,42,6,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,72.75,0,1,Canceled,2019-10-04 -City Hotel,1,35,2017,February,8,21,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,62.06,0,0,Canceled,2019-11-03 -City Hotel,0,15,2017,May,23,30,1,1,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.01,0,0,Check-Out,2020-04-02 -City Hotel,0,84,2016,August,35,25,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.03,0,1,Check-Out,2019-06-03 -City Hotel,1,94,2016,July,36,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.28,0,0,Canceled,2019-03-04 -City Hotel,1,35,2016,October,44,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,91.83,0,0,Canceled,2019-03-04 -City Hotel,0,2,2016,June,26,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,130.91,0,1,Check-Out,2019-02-01 -City Hotel,1,15,2016,November,42,25,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,A,0,Non Refund,29.0,179.0,0,Transient,85.4,0,0,Canceled,2019-02-01 -City Hotel,0,11,2016,December,53,28,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.46,0,0,Check-Out,2019-12-04 -Resort Hotel,0,2,2017,April,15,13,1,1,2,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,41.05,1,0,Check-Out,2019-03-04 -City Hotel,0,3,2016,June,10,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,12.0,224.0,0,Transient,75.13,0,1,Check-Out,2019-06-03 -City Hotel,0,35,2017,January,3,29,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,69.82,0,0,Check-Out,2019-12-04 -City Hotel,0,9,2017,November,44,6,2,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,30.0,179.0,0,Contract,112.85,0,1,Check-Out,2019-12-04 -City Hotel,0,2,2015,August,36,6,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,78.62,0,0,Check-Out,2018-09-02 -City Hotel,1,57,2016,April,16,16,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,45.9,0,0,Canceled,2019-01-03 -Resort Hotel,0,36,2015,December,50,31,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,36.58,1,0,Check-Out,2018-09-02 -City Hotel,0,15,2015,September,17,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Contract,60.36,0,0,Check-Out,2018-08-03 -City Hotel,1,48,2016,October,44,6,1,4,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Transient,154.17,0,2,Canceled,2019-12-04 -Resort Hotel,0,9,2017,February,10,24,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,331.0,0,Transient,41.55,0,0,Check-Out,2019-10-04 -Resort Hotel,1,251,2015,July,36,16,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,61.63,0,0,Canceled,2018-01-03 -Resort Hotel,0,190,2016,October,43,2,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,61.4,0,1,Check-Out,2019-09-03 -City Hotel,1,280,2016,August,36,10,0,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,218.22,0,1,Canceled,2019-05-04 -City Hotel,0,16,2016,March,15,3,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient-Party,61.46,1,1,Check-Out,2018-11-02 -Resort Hotel,0,245,2017,August,32,24,3,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.7,1,1,Check-Out,2020-07-03 -City Hotel,1,85,2016,July,30,20,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,161.39,0,1,Canceled,2018-11-02 -City Hotel,0,0,2015,December,33,18,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,118.16,0,0,Check-Out,2018-06-02 -City Hotel,0,30,2017,June,23,31,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.2,0,2,Check-Out,2019-12-04 -City Hotel,1,1,2016,March,22,15,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,11.0,297.0,0,Transient,4.18,0,0,Canceled,2019-12-04 -City Hotel,0,3,2016,February,8,31,0,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.39,0,1,Check-Out,2018-10-03 -City Hotel,1,160,2016,March,18,14,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,81.46,0,1,Canceled,2018-11-02 -Resort Hotel,0,3,2016,July,28,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,180.38,0,0,Check-Out,2020-06-02 -Resort Hotel,0,158,2017,May,21,28,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,37.23,0,0,Check-Out,2020-03-03 -Resort Hotel,0,117,2015,October,43,18,2,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,74.0,179.0,0,Transient-Party,61.87,0,0,Check-Out,2018-07-03 -Resort Hotel,0,148,2017,August,31,2,2,6,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,13.0,179.0,0,Transient,192.49,0,3,Check-Out,2020-06-02 -City Hotel,0,1,2017,July,30,15,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,148.52,0,2,Check-Out,2020-06-02 -City Hotel,1,357,2016,June,26,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,69.45,0,0,Canceled,2019-11-03 -Resort Hotel,0,263,2016,March,22,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,222.0,0,Transient-Party,81.28,0,0,Check-Out,2019-05-04 -Resort Hotel,0,58,2015,December,53,29,2,5,1,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,93.0,179.0,0,Transient-Party,77.83,0,0,Check-Out,2019-01-03 -City Hotel,0,12,2016,October,46,9,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,141.55,0,2,Check-Out,2019-09-03 -City Hotel,0,264,2015,November,45,13,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,96.88,1,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2017,February,8,2,1,0,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,1,0,1,A,A,0,No Deposit,205.0,179.0,0,Group,60.89,0,0,Check-Out,2019-10-04 -Resort Hotel,1,29,2017,July,26,30,2,4,3,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,226.1,0,0,Canceled,2020-06-02 -City Hotel,0,337,2016,December,53,27,1,0,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,1,No Deposit,321.0,179.0,0,Transient-Party,61.81,0,0,Check-Out,2019-11-03 -City Hotel,1,38,2015,October,47,25,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,81.87,0,0,Canceled,2018-08-03 -City Hotel,0,22,2017,May,22,28,2,0,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,151.0,0,0,Check-Out,2020-02-01 -Resort Hotel,0,246,2017,April,35,24,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,100.09,0,3,Check-Out,2019-11-03 -City Hotel,1,99,2016,April,16,15,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.96,0,0,Canceled,2019-02-01 -Resort Hotel,0,41,2016,August,43,18,0,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,225.21,0,2,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,May,18,13,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,241.0,331.0,0,Transient-Party,74.42,0,0,Check-Out,2019-03-04 -City Hotel,0,106,2016,May,15,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,100.31,0,2,Check-Out,2019-02-01 -City Hotel,0,104,2016,October,43,17,3,3,2,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,10.0,179.0,0,Group,89.98,0,1,Check-Out,2019-10-04 -Resort Hotel,1,9,2016,July,27,2,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Refundable,238.0,179.0,0,Transient,123.74,0,0,Canceled,2019-06-03 -Resort Hotel,0,154,2017,March,10,25,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,64.0,0,0,Check-Out,2020-02-01 -City Hotel,1,3,2017,March,17,10,2,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,152.53,0,0,Canceled,2020-01-04 -City Hotel,0,17,2017,June,37,18,0,2,1,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,105.46,0,0,Check-Out,2020-07-03 -Resort Hotel,0,310,2017,August,37,21,2,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,236.62,0,0,Check-Out,2020-07-03 -Resort Hotel,0,17,2015,September,43,25,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,2,No Deposit,3.0,179.0,0,Group,44.9,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,October,44,25,1,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,122.15,0,0,Check-Out,2019-08-04 -City Hotel,1,292,2015,July,26,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,96.47,0,0,Canceled,2017-11-02 -City Hotel,1,436,2016,October,42,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,124.92,0,0,Canceled,2019-10-04 -Resort Hotel,0,60,2015,December,44,12,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,32.01,0,0,Check-Out,2018-08-03 -City Hotel,0,4,2017,August,37,15,1,0,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,63.54,0,0,Check-Out,2019-06-03 -City Hotel,0,370,2016,November,44,27,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,73.01,0,2,Check-Out,2019-04-03 -City Hotel,0,2,2016,April,26,29,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,29.0,179.0,0,Transient,74.44,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,November,46,2,1,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.31,0,2,Check-Out,2019-11-03 -City Hotel,0,88,2016,August,39,14,0,3,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,189.7,1,2,Check-Out,2019-07-04 -City Hotel,0,4,2016,October,42,21,4,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,33.0,179.0,75,Contract,111.86,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,September,34,23,2,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.83,1,0,Check-Out,2019-06-03 -City Hotel,0,162,2017,August,34,13,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,187.03,0,1,Check-Out,2020-07-03 -Resort Hotel,0,159,2017,July,33,24,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,248.0,179.0,0,Transient,252.0,0,0,Canceled,2019-12-04 -City Hotel,1,50,2016,February,8,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,73.11,0,0,Canceled,2019-02-01 -Resort Hotel,0,10,2015,December,53,31,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient-Party,62.39,0,0,Check-Out,2018-05-03 -Resort Hotel,0,111,2016,June,26,20,2,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,311.0,179.0,0,Transient,134.78,1,1,Check-Out,2019-03-04 -Resort Hotel,0,157,2016,February,9,10,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,145.0,179.0,0,Transient,63.41,0,0,Canceled,2018-12-03 -City Hotel,0,0,2016,January,11,20,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,E,1,No Deposit,13.0,331.0,0,Transient-Party,78.1,1,0,Check-Out,2018-11-02 -Resort Hotel,0,35,2016,April,23,20,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,342.0,263.0,0,Transient,34.58,0,0,Check-Out,2019-04-03 -City Hotel,0,48,2017,March,9,14,1,2,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,93.0,179.0,0,Group,45.21,0,1,Check-Out,2019-11-03 -Resort Hotel,1,238,2017,May,23,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,185.94,0,2,Canceled,2020-03-03 -City Hotel,0,0,2016,September,43,12,0,1,3,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,16.0,285.0,0,Transient,3.46,0,0,Check-Out,2019-10-04 -Resort Hotel,1,8,2015,August,34,16,2,1,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,C,2,No Deposit,246.0,179.0,0,Transient,186.01,1,2,Canceled,2018-07-03 -Resort Hotel,0,3,2017,February,10,7,2,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,30.06,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2015,December,42,6,0,1,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,41.18,0,0,Check-Out,2018-08-03 -City Hotel,1,43,2017,January,2,28,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,G,G,0,Non Refund,238.0,179.0,0,Transient,69.53,0,0,Canceled,2019-09-03 -City Hotel,0,160,2017,August,37,20,2,5,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,132.98,0,1,Check-Out,2020-06-02 -Resort Hotel,0,2,2017,August,29,27,2,5,1,0.0,0,Undefined,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient-Party,204.44,0,0,Check-Out,2020-06-02 -City Hotel,0,38,2017,March,16,18,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.87,0,1,Check-Out,2020-04-02 -Resort Hotel,0,18,2016,November,45,28,1,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,181.0,179.0,0,Transient-Party,97.89,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,March,10,12,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,E,I,1,No Deposit,16.0,179.0,0,Transient,1.86,1,0,Check-Out,2019-10-04 -Resort Hotel,1,43,2017,June,27,17,2,5,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,115.14,0,1,Canceled,2020-02-01 -City Hotel,1,210,2016,July,29,30,2,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,115.47,0,0,Canceled,2019-05-04 -City Hotel,0,265,2017,May,22,26,1,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,134.66,0,0,Check-Out,2019-03-04 -City Hotel,1,95,2016,March,11,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,75.54,0,1,Canceled,2019-06-03 -City Hotel,1,23,2016,March,11,20,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,72.8,0,0,Canceled,2019-01-03 -City Hotel,1,41,2016,November,53,27,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.51,0,1,Canceled,2019-08-04 -Resort Hotel,1,42,2017,January,2,15,0,1,2,0.0,0,BB,PRT,Groups,Corporate,1,1,0,A,D,0,Non Refund,12.0,82.0,0,Transient,38.64,0,0,Canceled,2019-11-03 -Resort Hotel,0,7,2016,March,17,20,0,1,1,0.0,0,Undefined,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,31.0,179.0,0,Transient-Party,69.17,0,0,Check-Out,2019-03-04 -Resort Hotel,0,287,2017,June,27,28,2,10,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,131.6,0,1,Check-Out,2020-03-03 -City Hotel,1,1,2016,March,11,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,78.28,0,0,Canceled,2019-02-01 -City Hotel,1,95,2016,May,20,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,132.0,179.0,0,Transient,78.04,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,June,20,19,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,13.0,179.0,0,Transient,146.93,0,1,Check-Out,2019-12-04 -City Hotel,1,91,2016,October,42,7,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.6,0,0,Canceled,2019-09-03 -Resort Hotel,0,200,2017,May,27,27,0,10,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,E,I,1,No Deposit,194.0,179.0,0,Transient,161.66,0,0,Check-Out,2020-05-03 -City Hotel,1,309,2017,June,28,24,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,153.0,179.0,0,Transient,88.21,0,0,Canceled,2020-03-03 -City Hotel,0,39,2015,December,50,5,1,2,3,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,31.07,0,0,Check-Out,2018-06-02 -City Hotel,0,162,2016,June,20,31,0,3,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.32,0,0,Check-Out,2019-04-03 -City Hotel,1,103,2016,March,11,31,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,45,Transient,83.17,0,0,Canceled,2018-11-02 -City Hotel,1,20,2017,January,13,12,0,2,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,186.91,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2016,August,36,6,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,157.08,1,0,Check-Out,2018-12-03 -Resort Hotel,0,92,2017,April,17,15,2,1,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,115.05,0,0,Check-Out,2020-04-02 -City Hotel,1,309,2015,October,44,3,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,65.16,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2016,April,17,31,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,71.48,0,0,Check-Out,2019-03-04 -City Hotel,0,16,2017,January,3,6,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,81.66,0,1,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,February,11,25,0,3,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,61.35,0,1,Check-Out,2018-11-02 -Resort Hotel,1,60,2016,March,10,4,1,4,2,0.0,0,BB,ESP,Direct,Direct,1,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,43.68,0,0,Canceled,2018-12-03 -Resort Hotel,1,267,2016,October,46,16,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,75,Transient,72.55,0,1,Check-Out,2019-10-04 -City Hotel,0,193,2016,October,45,24,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,127.23,0,0,Check-Out,2019-06-03 -Resort Hotel,0,49,2015,December,50,9,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,G,D,0,No Deposit,245.0,179.0,0,Transient,69.33,1,2,Check-Out,2019-10-04 -City Hotel,0,297,2015,September,44,20,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,62.14,0,1,Check-Out,2018-08-03 -Resort Hotel,0,17,2016,May,23,27,1,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,No Deposit,252.0,179.0,0,Transient,132.2,0,0,Check-Out,2020-06-02 -City Hotel,0,6,2016,February,11,24,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,B,B,1,No Deposit,17.0,179.0,0,Transient-Party,62.02,0,0,Check-Out,2018-11-02 -City Hotel,1,0,2016,October,42,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,89.92,0,2,No-Show,2019-09-03 -City Hotel,1,28,2016,January,30,15,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.67,0,0,Canceled,2019-01-03 -Resort Hotel,0,19,2016,September,44,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,B,1,No Deposit,18.0,331.0,0,Transient,38.6,1,0,Check-Out,2020-01-04 -Resort Hotel,1,102,2017,August,35,13,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,238.0,179.0,0,Transient,152.48,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,May,24,2,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,H,I,1,No Deposit,239.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-03-04 -City Hotel,0,78,2017,July,36,14,2,5,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,96.89,0,2,Check-Out,2020-07-03 -City Hotel,1,53,2016,April,38,3,2,3,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.02,0,1,Canceled,2019-11-03 -City Hotel,0,7,2016,August,36,18,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.17,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2017,February,10,5,0,1,1,0.0,0,BB,IRL,Online TA,Corporate,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,38.97,1,1,Check-Out,2020-01-04 -City Hotel,0,1,2016,April,19,10,1,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,195.0,0,Transient,82.39,0,0,Check-Out,2019-02-01 -Resort Hotel,1,389,2016,October,43,8,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,246.0,179.0,65,Transient-Party,44.86,0,0,Canceled,2019-10-04 -Resort Hotel,0,5,2017,January,4,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,100.0,0,Transient,40.37,0,0,Check-Out,2019-11-03 -City Hotel,1,15,2017,February,9,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.21,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2015,January,4,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,60.48,0,0,Check-Out,2018-12-03 -City Hotel,1,262,2017,July,32,20,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.98,0,2,Canceled,2020-06-02 -City Hotel,0,43,2015,August,32,14,0,2,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,55.66,0,1,Canceled,2018-07-03 -City Hotel,0,102,2017,February,10,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,128.24,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2017,February,9,28,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,69.09,0,0,Check-Out,2019-10-04 -City Hotel,0,150,2017,May,21,6,2,4,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,147.46,0,0,Check-Out,2020-04-02 -City Hotel,0,154,2017,June,20,2,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient,103.59,0,2,Check-Out,2020-04-02 -City Hotel,1,2,2017,July,27,27,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.95,0,2,Canceled,2020-07-03 -City Hotel,0,0,2015,August,35,12,0,1,1,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-07-03 -City Hotel,0,155,2015,July,32,11,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,96.32,0,0,Check-Out,2018-05-03 -City Hotel,0,206,2017,August,36,28,0,3,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.62,0,2,Check-Out,2020-07-03 -City Hotel,0,33,2016,June,30,28,1,3,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,100.15,1,1,Check-Out,2019-05-04 -Resort Hotel,1,97,2015,October,44,2,2,4,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,208.01,0,0,Canceled,2019-01-03 -Resort Hotel,0,90,2016,September,33,28,1,0,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,172.49,1,2,Check-Out,2019-08-04 -City Hotel,0,392,2017,June,17,16,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,153.65,0,1,Check-Out,2020-05-03 -Resort Hotel,0,13,2016,March,22,20,2,3,2,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,D,D,1,No Deposit,378.0,179.0,0,Transient-Party,83.32,0,0,Check-Out,2019-03-04 -City Hotel,1,10,2016,January,17,27,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,70.15,0,1,Canceled,2019-10-04 -City Hotel,0,31,2017,April,16,6,2,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,148.51,0,2,Check-Out,2020-02-01 -City Hotel,0,0,2015,August,37,14,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,113.03,0,0,Check-Out,2019-03-04 -City Hotel,1,228,2015,September,39,27,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,70.19,0,0,Canceled,2018-08-03 -Resort Hotel,0,18,2016,April,36,31,0,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,113.8,0,0,Check-Out,2020-06-02 -City Hotel,0,136,2017,June,24,17,2,3,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,98.34,0,0,Check-Out,2020-07-03 -Resort Hotel,0,411,2015,October,43,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,64,Transient-Party,47.17,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2015,November,53,20,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,39.43,1,1,Check-Out,2018-11-02 -City Hotel,0,1,2015,October,44,5,1,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.17,0,1,Check-Out,2018-11-02 -Resort Hotel,0,17,2016,December,51,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,331.0,0,Transient,38.9,1,0,Check-Out,2019-11-03 -Resort Hotel,0,32,2016,June,8,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,145.0,179.0,0,Transient,65.01,0,0,Check-Out,2019-04-03 -Resort Hotel,0,24,2017,May,17,9,1,4,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,86.83,1,0,Check-Out,2020-03-03 -Resort Hotel,0,103,2017,June,27,27,2,5,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,123.84,0,2,Check-Out,2020-04-02 -Resort Hotel,1,3,2017,February,7,12,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,26.18,0,0,Canceled,2020-02-01 -City Hotel,0,141,2017,July,34,8,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.96,0,1,Check-Out,2019-07-04 -City Hotel,0,408,2015,August,42,20,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,70.8,0,0,Check-Out,2017-12-03 -City Hotel,0,225,2016,July,31,28,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.98,0,1,Check-Out,2019-06-03 -City Hotel,0,28,2017,May,18,22,2,0,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,203.91,0,0,Check-Out,2020-04-02 -City Hotel,1,6,2016,December,5,17,1,1,3,2.0,0,BB,BRA,Online TA,Direct,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,88.17,0,0,Canceled,2018-12-03 -City Hotel,0,23,2016,March,17,10,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.47,0,0,Check-Out,2019-02-01 -Resort Hotel,1,269,2016,August,31,18,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,63.07,0,0,Canceled,2018-01-03 -City Hotel,1,9,2017,May,18,10,0,1,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.65,0,1,Canceled,2020-03-03 -City Hotel,0,51,2016,December,50,27,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.5,0,0,Check-Out,2020-01-04 -Resort Hotel,1,22,2017,August,36,6,2,1,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,154.91,0,0,Canceled,2020-04-02 -City Hotel,0,1,2017,June,26,2,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,83.0,0,Transient,136.1,0,0,Check-Out,2020-05-03 -City Hotel,0,13,2016,March,11,6,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,79.7,0,1,Check-Out,2019-01-03 -Resort Hotel,0,187,2017,May,27,29,2,4,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,157.62,0,0,Check-Out,2020-06-02 -Resort Hotel,0,203,2016,October,44,6,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,149.61,0,0,Check-Out,2019-10-04 -Resort Hotel,1,3,2016,July,37,28,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,250.0,179.0,0,Transient,206.11,0,0,Check-Out,2018-06-02 -Resort Hotel,0,95,2017,June,16,15,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,174.0,179.0,0,Transient,118.3,0,0,Check-Out,2020-04-02 -City Hotel,0,15,2017,January,2,11,0,4,2,0.0,0,SC,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,82.99,1,0,Check-Out,2020-02-01 -City Hotel,0,10,2017,February,11,25,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.65,0,2,Check-Out,2019-10-04 -Resort Hotel,1,2,2016,March,11,7,0,1,2,0.0,0,HB,PRT,Undefined,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,65.28,0,0,Canceled,2019-03-04 -City Hotel,0,103,2017,June,28,16,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,G,F,1,No Deposit,15.0,179.0,0,Transient,170.23,1,2,Check-Out,2020-05-03 -City Hotel,1,148,2016,July,31,30,2,7,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,107.38,0,0,Canceled,2019-03-04 -Resort Hotel,0,10,2017,April,23,9,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,C,1,No Deposit,244.0,179.0,0,Transient-Party,153.52,1,1,Check-Out,2020-04-02 -Resort Hotel,0,98,2015,October,43,10,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,47.2,0,2,Check-Out,2018-06-02 -Resort Hotel,1,98,2017,February,10,10,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,62.99,0,3,Canceled,2020-02-01 -Resort Hotel,0,152,2016,October,43,10,2,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,85.0,179.0,0,Transient,119.67,0,0,Check-Out,2019-06-03 -City Hotel,0,41,2016,October,43,5,1,2,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,127.36,0,0,Check-Out,2019-08-04 -City Hotel,1,137,2017,April,16,5,2,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,118.65,0,2,Canceled,2020-02-01 -City Hotel,0,10,2017,March,11,28,0,1,1,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,22.0,68.0,0,Transient-Party,100.77,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,October,44,16,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,71.35,0,2,Check-Out,2018-08-03 -City Hotel,0,94,2015,October,43,15,2,7,1,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,150.0,179.0,0,Transient,129.03,0,1,Check-Out,2018-08-03 -City Hotel,1,103,2016,April,16,29,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,82.02,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2015,October,42,2,3,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,15.0,250.0,0,Transient,31.42,0,0,Check-Out,2018-08-03 -Resort Hotel,0,311,2016,January,23,13,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,64.34,0,1,Check-Out,2019-12-04 -City Hotel,0,6,2016,March,21,30,2,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,128.75,0,0,Check-Out,2019-02-01 -City Hotel,0,49,2017,August,36,13,2,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,161.7,0,3,Check-Out,2019-09-03 -Resort Hotel,1,15,2017,July,33,10,1,4,2,2.0,0,BB,USA,Direct,Direct,0,0,0,G,G,2,No Deposit,247.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -Resort Hotel,1,336,2016,October,45,6,1,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,115.6,0,2,Check-Out,2019-04-03 -City Hotel,0,15,2017,July,27,27,0,5,3,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,128.32,0,0,Check-Out,2020-02-01 -City Hotel,1,42,2015,July,30,21,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Contract,98.96,0,1,Canceled,2018-07-03 -City Hotel,1,56,2015,September,33,28,1,6,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,No Deposit,4.0,179.0,0,Transient-Party,123.69,0,0,Canceled,2017-11-02 -City Hotel,0,1,2015,December,49,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,39.98,0,0,Check-Out,2018-07-03 -Resort Hotel,0,0,2016,February,10,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,85.0,179.0,0,Transient-Party,31.9,0,0,Check-Out,2018-11-02 -City Hotel,1,89,2016,January,4,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,66.55,0,0,Canceled,2018-12-03 -City Hotel,0,39,2017,February,8,9,2,0,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,61.35,0,0,Check-Out,2019-12-04 -Resort Hotel,1,188,2017,July,32,26,2,1,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,151.11,0,0,Canceled,2020-02-01 -Resort Hotel,0,159,2017,July,30,6,2,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,331.0,179.0,0,Transient,132.33,0,1,Check-Out,2020-06-02 -City Hotel,1,199,2016,June,27,8,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,86.01,0,0,Canceled,2019-04-03 -City Hotel,1,242,2015,July,32,8,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.8,0,1,Canceled,2018-05-03 -Resort Hotel,1,315,2016,October,38,28,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,304.0,179.0,0,Transient-Party,99.29,0,0,Canceled,2019-10-04 -City Hotel,0,134,2017,June,28,28,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.54,0,1,Check-Out,2020-06-02 -City Hotel,1,39,2016,August,39,21,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,209.59,0,1,Canceled,2019-09-03 -City Hotel,1,96,2016,November,49,9,1,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,Non Refund,15.0,179.0,0,Transient,70.49,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2015,October,43,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,238.0,0,Transient,42.7,0,0,Check-Out,2018-09-02 -City Hotel,1,242,2015,July,31,24,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,79.57,0,0,Canceled,2018-05-03 -City Hotel,1,44,2016,February,11,13,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.05,0,1,Canceled,2018-11-02 -Resort Hotel,0,5,2015,September,50,11,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,67.68,0,0,Check-Out,2018-12-03 -City Hotel,0,51,2016,October,42,8,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,64.76,0,0,Check-Out,2019-05-04 -City Hotel,1,43,2016,September,42,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,145.96,0,0,Canceled,2018-08-03 -City Hotel,1,407,2017,May,17,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,63.04,0,0,Canceled,2019-11-03 -City Hotel,1,371,2017,May,16,11,1,0,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Canceled,2020-04-02 -City Hotel,1,73,2017,May,28,28,1,1,1,0.0,0,SC,BEL,Offline TA/TO,GDS,0,0,0,A,A,0,Non Refund,185.0,179.0,0,Transient,127.24,0,0,No-Show,2020-01-04 -Resort Hotel,1,31,2016,October,41,21,0,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,141.78,0,0,Canceled,2019-05-04 -City Hotel,0,36,2016,December,53,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,81.12,0,1,Check-Out,2019-11-03 -Resort Hotel,0,141,2016,March,22,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,Refundable,15.0,78.0,0,Transient-Party,68.97,1,0,Check-Out,2019-05-04 -City Hotel,0,104,2016,October,45,10,0,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.91,0,1,Check-Out,2019-08-04 -Resort Hotel,1,116,2016,December,52,10,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,178.0,179.0,0,Transient,59.92,0,0,Canceled,2019-09-03 -Resort Hotel,0,46,2017,February,13,16,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,82.05,0,0,Check-Out,2020-02-01 -City Hotel,1,43,2016,September,47,19,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,221.51,0,2,Canceled,2019-08-04 -City Hotel,1,150,2017,January,2,28,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,8.0,179.0,0,Transient,119.58,0,1,Canceled,2019-10-04 -City Hotel,0,1,2015,August,36,21,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,107.48,0,1,Check-Out,2018-06-02 -City Hotel,1,85,2016,May,21,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.33,0,0,Canceled,2019-03-04 -City Hotel,0,147,2016,June,29,18,4,4,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,1,No Deposit,77.0,179.0,0,Transient,97.47,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2017,June,31,10,1,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.1,0,1,Check-Out,2020-04-02 -Resort Hotel,0,11,2016,January,51,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,150.42,1,3,Check-Out,2019-12-04 -City Hotel,1,9,2017,January,8,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,57.12,0,0,Canceled,2018-11-02 -Resort Hotel,0,90,2017,July,30,9,2,5,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,75.33,1,2,Check-Out,2019-11-03 -City Hotel,1,90,2017,April,18,16,0,3,3,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,6.0,179.0,0,Transient,125.14,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2017,January,2,17,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,331.0,0,Transient,30.23,0,1,Check-Out,2019-11-03 -Resort Hotel,0,49,2016,May,22,16,1,0,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,61.22,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2017,April,16,16,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,147.05,0,2,Check-Out,2020-04-02 -City Hotel,0,37,2016,April,17,28,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,40,Transient,77.05,0,0,Check-Out,2019-07-04 -City Hotel,0,249,2016,March,17,11,1,0,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.82,0,0,Check-Out,2019-07-04 -Resort Hotel,0,60,2015,August,35,4,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,181.0,179.0,0,Transient,125.17,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2016,December,49,26,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient,125.06,0,0,Check-Out,2019-05-04 -City Hotel,1,203,2016,April,28,18,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.41,0,0,Canceled,2018-11-02 -City Hotel,0,19,2016,May,21,2,0,1,2,2.0,0,SC,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,241.35,0,0,Check-Out,2019-05-04 -City Hotel,1,42,2017,May,22,13,1,1,3,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,130.0,0,0,Canceled,2020-03-03 -City Hotel,0,105,2017,July,34,16,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,150.12,0,2,Check-Out,2020-06-02 -City Hotel,1,95,2016,June,26,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,74.0,0,0,Canceled,2019-02-01 -City Hotel,1,15,2016,March,17,10,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Transient,61.67,0,0,Canceled,2019-02-01 -City Hotel,0,33,2016,July,21,9,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,155.58,0,3,Check-Out,2019-11-03 -City Hotel,1,194,2015,August,35,2,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,105.41,0,0,Canceled,2018-08-03 -City Hotel,0,15,2017,June,22,24,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.06,0,1,Check-Out,2020-07-03 -City Hotel,1,43,2017,April,16,25,2,5,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,February,11,20,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,17.0,331.0,0,Transient-Party,31.41,0,0,Check-Out,2020-01-04 -City Hotel,1,253,2017,August,25,31,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,77.41,0,0,Canceled,2020-06-02 -City Hotel,1,110,2016,August,30,9,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,141.13,0,2,Canceled,2019-02-01 -City Hotel,0,0,2016,June,15,14,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,106.56,0,1,Check-Out,2019-03-04 -City Hotel,1,28,2016,March,16,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,238.0,0,Transient-Party,90.96,0,0,Check-Out,2019-01-03 -Resort Hotel,0,100,2016,July,32,18,2,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.34,0,1,Check-Out,2019-07-04 -City Hotel,0,3,2016,June,28,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,B,0,No Deposit,16.0,56.0,0,Transient,155.19,0,0,Check-Out,2019-06-03 -City Hotel,0,27,2015,October,41,14,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.42,0,0,Check-Out,2018-08-03 -Resort Hotel,0,158,2016,July,36,2,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,202.01,0,0,Check-Out,2019-04-03 -Resort Hotel,0,161,2016,November,48,10,1,10,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,203.58,0,0,Check-Out,2019-06-03 -Resort Hotel,0,11,2016,March,17,6,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,68.69,0,0,Check-Out,2019-06-03 -Resort Hotel,0,198,2016,July,32,31,2,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,14.0,224.0,0,Transient-Party,48.18,0,0,Check-Out,2019-04-03 -Resort Hotel,0,15,2017,February,11,26,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,182.0,331.0,0,Transient-Party,49.2,0,0,Check-Out,2020-02-01 -City Hotel,1,160,2017,June,26,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,133.74,0,0,Canceled,2020-04-02 -City Hotel,1,279,2015,September,43,22,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,33.0,179.0,0,Contract,61.8,0,0,Canceled,2017-12-03 -Resort Hotel,1,2,2016,October,46,28,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,135.39,0,0,Canceled,2019-10-04 -City Hotel,1,104,2017,August,38,14,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,153.78,0,2,Canceled,2019-12-04 -City Hotel,0,21,2017,June,27,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,0,No Deposit,13.0,64.0,0,Transient,85.91,0,0,Check-Out,2020-06-02 -City Hotel,1,308,2015,July,32,11,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,61.98,0,1,Canceled,2017-11-02 -City Hotel,1,23,2017,December,53,31,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.1,0,2,Canceled,2019-11-03 -City Hotel,0,2,2016,August,37,6,0,3,2,2.0,0,BB,FRA,Complementary,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,238.82,0,0,Check-Out,2020-01-04 -City Hotel,0,185,2016,April,9,20,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,33.0,179.0,0,Transient-Party,72.1,0,0,Check-Out,2019-02-01 -Resort Hotel,0,85,2016,January,52,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,67.74,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2016,January,43,14,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,74.0,179.0,0,Transient,102.21,0,1,Check-Out,2019-04-03 -City Hotel,0,24,2016,July,26,27,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,118.12,1,1,Check-Out,2019-06-03 -City Hotel,0,152,2016,October,43,16,0,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,120.54,0,2,Check-Out,2019-07-04 -City Hotel,0,1,2015,September,44,6,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,72.0,0,Transient-Party,91.02,0,0,Check-Out,2018-07-03 -City Hotel,0,199,2017,March,17,24,2,5,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,10.0,179.0,0,Transient,93.32,0,3,Check-Out,2020-04-02 -City Hotel,0,258,2017,August,39,19,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,116.51,1,1,Check-Out,2020-07-03 -Resort Hotel,0,17,2016,October,43,11,3,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,249.0,179.0,0,Transient,83.46,0,0,Check-Out,2019-09-03 -City Hotel,1,82,2016,March,9,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,66.86,0,2,Canceled,2020-02-01 -Resort Hotel,0,7,2016,March,15,13,1,1,3,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,129.23,0,0,Check-Out,2019-01-03 -Resort Hotel,1,1,2017,July,33,21,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,19.0,179.0,0,Transient,47.1,0,0,Canceled,2019-08-04 -City Hotel,1,160,2016,March,19,21,2,1,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,8.0,179.0,0,Transient,93.53,0,0,Canceled,2019-01-03 -Resort Hotel,0,126,2017,June,22,2,2,1,2,2.0,0,BB,USA,Online TA,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,April,21,30,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-07-04 -City Hotel,0,40,2016,November,44,28,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,112.57,1,0,Check-Out,2019-07-04 -City Hotel,0,42,2016,June,28,10,0,3,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.27,0,1,Check-Out,2019-08-04 -City Hotel,0,25,2015,July,43,30,2,3,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,62.29,0,0,Check-Out,2018-06-02 -Resort Hotel,1,12,2016,May,32,24,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,77.64,1,2,Check-Out,2019-04-03 -Resort Hotel,0,3,2015,July,42,9,4,1,2,0.0,0,BB,GBR,Groups,TA/TO,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Contract,32.24,0,0,Check-Out,2018-08-03 -Resort Hotel,0,214,2016,May,23,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,Refundable,16.0,223.0,0,Transient-Party,64.68,0,0,Check-Out,2019-05-04 -Resort Hotel,0,262,2015,December,48,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,301.0,179.0,0,Transient-Party,167.43,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2017,March,6,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,80.0,0,Transient,95.32,0,1,Check-Out,2020-02-01 -City Hotel,0,1,2017,February,9,25,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,85.31,0,0,Check-Out,2020-04-02 -City Hotel,1,259,2017,July,31,14,2,0,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,157.13,0,1,Canceled,2020-02-01 -Resort Hotel,0,132,2017,March,10,23,1,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,224.0,0,Transient-Party,75.9,0,0,Check-Out,2019-11-03 -Resort Hotel,0,52,2016,October,26,9,4,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,61.35,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,January,12,21,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,D,D,0,No Deposit,15.0,45.0,0,Transient,80.81,0,0,Check-Out,2018-12-03 -City Hotel,1,53,2016,October,44,13,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.6,0,0,Canceled,2018-08-03 -City Hotel,0,15,2016,April,18,7,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,117.26,0,1,Check-Out,2019-03-04 -City Hotel,0,15,2016,August,38,30,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,163.04,0,1,Check-Out,2019-08-04 -City Hotel,1,0,2016,May,22,15,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,66.54,0,0,No-Show,2019-02-01 -Resort Hotel,0,4,2017,March,12,18,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,15.0,223.0,0,Transient-Party,43.52,0,0,Check-Out,2019-11-03 -City Hotel,1,267,2016,March,23,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,60,Transient,62.24,0,0,Canceled,2018-08-03 -City Hotel,0,107,2017,May,26,9,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,127.21,0,0,Check-Out,2019-03-04 -City Hotel,0,38,2015,July,31,18,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,35.08,0,0,Check-Out,2018-06-02 -Resort Hotel,0,60,2016,February,9,29,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,126.54,0,3,Check-Out,2019-09-03 -City Hotel,0,13,2016,November,51,9,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,9.0,179.0,0,Transient,146.9,1,0,Check-Out,2019-06-03 -City Hotel,0,42,2016,May,27,11,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,L,D,0,No Deposit,15.0,179.0,0,Transient,113.62,0,1,Check-Out,2019-05-04 -Resort Hotel,0,43,2016,June,23,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,62.73,0,1,Check-Out,2019-03-04 -Resort Hotel,0,60,2016,September,36,16,4,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,125.75,0,1,Check-Out,2019-05-04 -Resort Hotel,1,140,2016,April,17,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,2,Refundable,12.0,179.0,0,Transient-Party,61.35,0,0,Canceled,2019-01-03 -City Hotel,1,12,2016,March,15,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,D,1,No Deposit,28.0,179.0,0,Transient,60.52,0,0,Canceled,2019-01-03 -City Hotel,1,12,2016,June,39,28,0,3,3,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,25.0,179.0,0,Transient,112.39,0,0,Canceled,2019-11-03 -City Hotel,0,44,2016,March,16,28,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,5.0,179.0,0,Transient,56.92,0,2,Check-Out,2020-02-01 -City Hotel,0,35,2017,May,22,18,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.61,0,0,Check-Out,2020-04-02 -Resort Hotel,0,155,2017,December,21,6,2,5,2,0.0,0,HB,BRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,103.31,0,0,Check-Out,2019-12-04 -Resort Hotel,1,0,2016,February,9,20,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,31.27,0,0,Canceled,2018-11-02 -City Hotel,1,15,2016,May,23,20,0,3,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,E,D,0,No Deposit,13.0,155.0,0,Transient,111.26,0,0,Canceled,2019-08-04 -Resort Hotel,0,137,2017,December,40,9,2,5,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,E,E,2,No Deposit,330.0,225.0,0,Transient-Party,102.29,0,2,Check-Out,2019-12-04 -Resort Hotel,1,132,2015,October,46,5,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,29.97,0,0,Canceled,2017-11-02 -Resort Hotel,1,262,2016,June,26,13,3,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient-Party,85.57,0,0,No-Show,2019-01-03 -City Hotel,1,26,2017,July,33,2,0,2,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.92,0,1,Canceled,2020-04-02 -Resort Hotel,0,139,2016,March,11,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,12.0,223.0,75,Transient-Party,66.31,0,0,Check-Out,2019-03-04 -Resort Hotel,0,37,2016,June,21,9,1,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,74.85,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2015,July,29,27,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,1,A,C,0,No Deposit,251.0,179.0,0,Group,62.89,0,1,Check-Out,2018-05-03 -City Hotel,0,39,2017,February,12,7,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.98,0,0,Check-Out,2020-04-02 -Resort Hotel,0,201,2015,October,44,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,139.0,179.0,0,Group,44.49,0,3,Check-Out,2018-08-03 -Resort Hotel,0,185,2016,May,22,5,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,127.33,0,1,Check-Out,2019-01-03 -City Hotel,0,41,2016,June,35,29,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.91,0,2,Check-Out,2019-03-04 -City Hotel,0,89,2017,February,8,5,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,95.41,0,2,Check-Out,2020-02-01 -City Hotel,0,77,2016,July,41,5,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.01,0,2,Check-Out,2019-06-03 -Resort Hotel,0,14,2015,October,45,17,0,3,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,77.9,0,0,Check-Out,2018-09-02 -City Hotel,1,29,2017,June,26,17,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,141.08,0,0,Canceled,2020-02-01 -Resort Hotel,0,56,2016,April,17,30,2,3,3,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,198.59,0,2,Check-Out,2019-03-04 -Resort Hotel,0,2,2016,April,44,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-03-03 -City Hotel,1,31,2016,September,35,5,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.1,0,0,Canceled,2019-06-03 -City Hotel,1,158,2017,July,27,21,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,191.61,0,3,Check-Out,2020-05-03 -City Hotel,1,0,2016,December,53,26,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.0,0,1,Canceled,2019-10-04 -Resort Hotel,0,245,2016,May,21,22,2,5,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,63.34,0,1,Check-Out,2019-02-01 -City Hotel,0,8,2015,October,43,27,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,92.87,0,0,Check-Out,2018-08-03 -City Hotel,1,12,2017,June,19,10,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,152.2,0,1,Canceled,2020-01-04 -Resort Hotel,0,314,2016,October,45,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,90.0,179.0,0,Transient,62.49,0,0,Canceled,2019-03-04 -City Hotel,0,59,2016,October,43,13,4,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,150.71,0,1,Check-Out,2019-08-04 -Resort Hotel,0,41,2017,February,10,23,0,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,96.93,0,0,Check-Out,2020-01-04 -City Hotel,1,2,2015,August,38,15,0,1,1,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,55.8,0,1,Canceled,2018-07-03 -Resort Hotel,0,0,2016,December,50,24,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,C,I,1,No Deposit,13.0,179.0,0,Transient,39.69,0,0,Check-Out,2018-11-02 -City Hotel,1,33,2017,May,21,10,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,169.66,0,1,Canceled,2020-02-01 -City Hotel,0,100,2017,February,9,24,0,2,2,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,80.0,0,Transient,114.24,0,0,Check-Out,2019-12-04 -Resort Hotel,1,51,2017,February,11,13,1,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,30.94,0,1,Canceled,2019-10-04 -City Hotel,1,158,2017,August,35,4,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,88.26,0,1,Canceled,2020-06-02 -City Hotel,0,47,2016,November,50,30,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.82,0,1,Check-Out,2019-10-04 -City Hotel,1,52,2017,June,21,30,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,171.78,0,0,Canceled,2020-01-04 -City Hotel,1,1,2017,April,22,20,0,1,1,0.0,0,BB,PRT,Groups,Direct,1,0,0,A,D,0,Non Refund,13.0,179.0,0,Transient,118.76,0,0,Canceled,2020-03-03 -Resort Hotel,0,53,2016,October,43,30,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,155.35,0,2,Check-Out,2019-08-04 -City Hotel,0,0,2016,June,27,9,1,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,0,No Deposit,15.0,331.0,0,Transient,103.95,0,0,Check-Out,2019-04-03 -City Hotel,1,168,2016,June,26,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,42,Transient,127.08,0,0,Canceled,2018-06-02 -City Hotel,0,243,2017,June,21,24,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,129.77,0,0,Check-Out,2020-02-01 -City Hotel,0,64,2017,March,17,9,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,84.31,0,1,Check-Out,2020-04-02 -Resort Hotel,0,18,2015,July,34,10,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,96.13,0,1,Check-Out,2018-04-02 -City Hotel,0,10,2016,October,45,31,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.88,0,2,Check-Out,2019-12-04 -City Hotel,1,264,2016,September,38,18,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,111.77,0,0,Canceled,2017-10-03 -Resort Hotel,0,97,2017,July,30,15,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,378.0,179.0,0,Transient,104.3,0,2,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,January,4,18,0,4,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,48.64,0,0,Check-Out,2019-10-04 -City Hotel,0,365,2017,May,22,23,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,67.5,0,0,Check-Out,2020-04-02 -City Hotel,1,41,2016,March,16,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,A,0,Non Refund,147.0,179.0,0,Transient,112.13,0,0,Canceled,2019-02-01 -City Hotel,0,2,2016,March,9,8,1,0,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,117.91,0,0,Check-Out,2019-01-03 -City Hotel,0,36,2015,November,51,6,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,120.09,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2016,June,26,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,106.79,0,0,Check-Out,2019-03-04 -City Hotel,0,13,2017,January,10,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,G,F,0,No Deposit,12.0,179.0,0,Transient,79.81,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2017,August,33,30,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,11.0,179.0,0,Transient,201.49,0,3,Check-Out,2019-03-04 -Resort Hotel,0,159,2017,May,22,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,76.22,0,0,Check-Out,2020-04-02 -Resort Hotel,0,159,2015,December,53,6,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient-Party,88.23,0,1,Check-Out,2019-10-04 -City Hotel,0,124,2017,January,3,31,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,81.07,0,0,Check-Out,2019-11-03 -City Hotel,0,1,2017,September,37,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,18.0,45.0,0,Transient,113.17,1,0,Check-Out,2019-07-04 -City Hotel,1,198,2017,June,14,16,2,7,3,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,78.0,179.0,0,Contract,122.31,0,0,Canceled,2020-03-03 -Resort Hotel,0,156,2016,March,17,24,0,5,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,94.23,0,0,Check-Out,2019-06-03 -City Hotel,0,258,2016,July,28,5,0,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,October,42,6,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,H,0,No Deposit,17.0,45.0,0,Transient,0.62,0,0,Check-Out,2019-09-03 -City Hotel,1,434,2016,October,45,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,63.23,0,0,Canceled,2018-08-03 -City Hotel,0,166,2017,July,32,5,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,195.82,0,0,Check-Out,2020-03-03 -Resort Hotel,1,174,2015,September,36,17,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,68.33,0,0,Canceled,2018-08-03 -City Hotel,1,22,2016,July,27,23,0,4,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,72.47,0,1,Canceled,2019-11-03 -Resort Hotel,1,133,2016,February,11,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,275.0,179.0,0,Transient-Party,43.78,0,0,Canceled,2018-10-03 -Resort Hotel,0,9,2016,May,21,8,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,H,0,No Deposit,249.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2015,November,49,28,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,67.68,0,0,Check-Out,2018-08-03 -City Hotel,0,34,2016,October,21,8,1,4,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,25.0,179.0,0,Transient-Party,58.71,0,0,Check-Out,2019-07-04 -City Hotel,0,15,2016,December,51,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,14.0,68.0,0,Transient,77.69,0,1,Check-Out,2019-12-04 -City Hotel,0,225,2016,June,23,3,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.18,0,3,Check-Out,2019-03-04 -City Hotel,0,112,2017,March,17,26,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,100.15,0,0,Check-Out,2020-02-01 -Resort Hotel,0,16,2016,August,34,9,4,7,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,172.0,179.0,0,Transient-Party,94.02,0,0,Check-Out,2019-08-04 -Resort Hotel,0,263,2017,June,26,16,3,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient,67.92,0,0,Check-Out,2020-06-02 -Resort Hotel,0,11,2016,December,50,16,2,1,1,0.0,0,FB,,Corporate,Corporate,0,0,1,A,H,0,No Deposit,16.0,331.0,0,Transient-Party,48.22,0,0,Check-Out,2019-11-03 -City Hotel,1,256,2016,August,38,24,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,95.74,0,0,Canceled,2018-08-03 -City Hotel,0,64,2015,September,41,15,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,77.68,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,August,35,15,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,A,0,No Deposit,17.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-07-03 -City Hotel,0,270,2016,May,27,20,4,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,130.91,0,0,Check-Out,2019-02-01 -City Hotel,0,20,2017,July,26,9,0,1,1,0.0,0,SC,NLD,Online TA,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,118.85,0,2,Check-Out,2019-09-03 -City Hotel,1,2,2017,March,16,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,F,0,No Deposit,239.0,179.0,0,Transient,62.82,0,0,Canceled,2020-03-03 -City Hotel,0,103,2016,December,37,27,2,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.57,0,0,Check-Out,2019-07-04 -City Hotel,0,18,2016,October,50,2,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,1,No Deposit,15.0,242.0,0,Transient,69.16,0,0,Check-Out,2019-07-04 -City Hotel,0,45,2016,April,18,14,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.97,0,0,Check-Out,2019-02-01 -Resort Hotel,0,99,2016,December,49,19,1,2,1,0.0,0,Undefined,GBR,Groups,Corporate,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient-Party,70.83,0,0,Check-Out,2019-06-03 -City Hotel,1,331,2016,July,26,27,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,127.51,0,0,Canceled,2019-03-04 -City Hotel,0,233,2015,July,32,19,2,5,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient-Party,109.93,0,2,Check-Out,2018-05-03 -City Hotel,0,53,2016,April,10,24,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.94,0,1,Check-Out,2019-02-01 -City Hotel,1,13,2016,May,23,15,2,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.83,0,1,Canceled,2019-01-03 -City Hotel,1,80,2016,May,25,8,2,2,1,0.0,0,HB,AUT,Online TA,Corporate,0,0,0,F,E,0,No Deposit,12.0,179.0,0,Transient,125.53,0,0,Canceled,2019-03-04 -City Hotel,1,31,2015,October,39,29,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.36,0,0,Canceled,2018-09-02 -City Hotel,0,250,2016,July,32,13,4,5,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,180.0,179.0,0,Transient,206.5,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,March,17,9,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,115.78,0,0,Check-Out,2020-03-03 -Resort Hotel,0,304,2017,August,24,13,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,151.17,0,0,Check-Out,2020-07-03 -Resort Hotel,0,144,2017,May,17,24,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,H,0,No Deposit,239.0,179.0,0,Transient,80.19,1,0,Check-Out,2020-03-03 -City Hotel,0,94,2016,July,37,3,1,3,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,154.67,0,0,Check-Out,2019-06-03 -City Hotel,1,112,2015,August,37,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,99.65,0,0,Canceled,2018-06-02 -City Hotel,0,82,2016,December,44,2,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.47,0,3,Check-Out,2019-10-04 -City Hotel,1,102,2016,June,26,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,92.76,0,0,Canceled,2019-04-03 -City Hotel,1,1,2017,January,9,13,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.5,0,0,Canceled,2018-11-02 -Resort Hotel,0,7,2017,June,16,15,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,E,1,No Deposit,193.0,331.0,0,Transient,113.96,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,March,15,16,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,D,G,0,No Deposit,11.0,73.0,0,Transient,76.11,0,0,Check-Out,2019-02-01 -Resort Hotel,0,172,2016,April,53,14,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-04-03 -Resort Hotel,0,185,2016,March,27,31,0,3,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,224.0,18,Transient-Party,71.61,1,0,Check-Out,2019-02-01 -Resort Hotel,1,30,2016,March,9,10,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,1,Non Refund,11.0,331.0,0,Transient-Party,31.06,0,0,Canceled,2019-03-04 -Resort Hotel,1,14,2017,March,10,21,2,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,F,0,No Deposit,246.0,179.0,0,Transient,139.51,0,1,Canceled,2020-02-01 -City Hotel,0,46,2017,May,20,6,2,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,0.0,0,0,Check-Out,2020-03-03 -City Hotel,1,273,2016,August,37,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,94.64,0,0,Canceled,2017-10-03 -City Hotel,0,0,2017,May,8,28,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Group,102.71,0,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,January,4,30,0,1,1,0.0,0,BB,,Online TA,Direct,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,62.27,0,0,Check-Out,2018-11-02 -City Hotel,1,50,2017,November,10,12,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,1,0,B,A,0,No Deposit,7.0,179.0,0,Transient,75.49,0,0,Canceled,2019-12-04 -City Hotel,1,38,2017,March,17,27,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient-Party,81.66,0,0,Canceled,2020-03-03 -Resort Hotel,0,255,2016,September,30,28,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,268.0,179.0,75,Transient,150.04,0,0,Canceled,2019-07-04 -City Hotel,0,255,2015,July,36,27,0,2,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,59.79,0,1,Check-Out,2018-08-03 -City Hotel,1,246,2015,October,44,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,44.3,0,0,Canceled,2017-11-02 -Resort Hotel,0,3,2016,December,21,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,K,0,No Deposit,16.0,235.0,0,Transient,60.02,0,0,Check-Out,2019-01-03 -City Hotel,0,0,2017,January,2,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,A,0,No Deposit,12.0,331.0,0,Transient,37.31,0,0,Check-Out,2019-11-03 -City Hotel,1,168,2016,April,26,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,23.0,179.0,19,Transient,127.94,0,0,Canceled,2019-02-01 -City Hotel,0,1,2015,October,44,28,0,4,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,3.16,1,0,Check-Out,2018-09-02 -Resort Hotel,0,20,2016,August,37,6,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,155.91,1,2,Check-Out,2019-05-04 -Resort Hotel,0,110,2016,July,37,2,0,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,100.43,0,1,Check-Out,2019-06-03 -Resort Hotel,0,1,2016,May,50,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,78.0,0,Transient,59.32,1,0,Check-Out,2019-06-03 -City Hotel,1,51,2017,May,21,4,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.72,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2016,June,24,13,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,307.0,179.0,0,Transient,85.46,0,0,Check-Out,2019-04-03 -Resort Hotel,0,92,2016,June,25,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,159.0,179.0,0,Transient,102.37,0,0,Check-Out,2019-01-03 -Resort Hotel,0,0,2016,March,13,6,0,3,1,0.0,0,BB,BEL,Groups,Corporate,1,0,0,A,D,1,No Deposit,13.0,223.0,0,Transient-Party,36.3,0,2,Check-Out,2019-11-03 -Resort Hotel,0,98,2015,November,49,11,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,1,0,1,A,F,0,No Deposit,240.0,179.0,0,Group,156.64,0,1,Check-Out,2018-08-03 -Resort Hotel,0,153,2016,March,9,30,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,16,Transient-Party,41.17,1,0,Check-Out,2019-02-01 -City Hotel,1,36,2016,August,35,10,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.89,0,0,Canceled,2019-05-04 -Resort Hotel,1,22,2016,May,22,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,75.32,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2016,May,20,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,68.01,0,0,Check-Out,2019-02-01 -Resort Hotel,1,261,2017,August,31,29,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,179.12,0,0,Canceled,2020-06-02 -Resort Hotel,1,308,2016,August,21,27,2,2,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,244.0,179.0,0,Transient,248.9,0,0,Canceled,2019-06-03 -Resort Hotel,0,9,2016,July,28,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.53,0,1,Check-Out,2019-05-04 -Resort Hotel,0,134,2017,March,17,26,2,5,2,0.0,0,HB,USA,Direct,Corporate,1,0,1,E,E,1,No Deposit,242.0,179.0,75,Transient-Party,85.12,1,3,Check-Out,2019-11-03 -City Hotel,0,17,2015,October,51,12,0,2,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,59.49,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,March,19,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,I,1,No Deposit,16.0,223.0,75,Transient-Party,43.93,0,0,Check-Out,2020-02-01 -City Hotel,1,59,2017,March,18,29,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,126.76,0,0,Canceled,2019-01-03 -City Hotel,0,41,2017,August,38,28,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.04,0,2,Check-Out,2020-06-02 -City Hotel,0,53,2017,March,10,5,0,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,234.44,0,0,Check-Out,2019-12-04 -City Hotel,0,9,2016,November,50,5,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.09,0,0,Check-Out,2019-12-04 -Resort Hotel,1,161,2016,March,17,31,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,221.0,0,Transient-Party,80.37,0,0,Canceled,2019-02-01 -City Hotel,0,85,2016,August,14,13,1,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,25.0,179.0,0,Transient-Party,123.36,0,2,Check-Out,2018-01-03 -City Hotel,0,87,2015,November,43,12,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,96.66,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2015,August,34,18,2,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,123.0,179.0,0,Transient-Party,99.69,0,0,Check-Out,2018-06-02 -City Hotel,0,55,2015,July,35,4,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient-Party,63.38,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2015,December,52,6,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,61.8,0,0,Check-Out,2018-12-03 -City Hotel,1,325,2015,September,35,21,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,70.34,0,0,Canceled,2017-09-02 -City Hotel,1,68,2015,December,50,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.35,0,0,Canceled,2018-10-03 -Resort Hotel,0,201,2016,March,16,31,0,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,81.52,1,0,Check-Out,2019-06-03 -City Hotel,1,185,2017,June,26,31,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.43,0,2,Canceled,2020-05-03 -City Hotel,1,7,2016,October,45,25,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,F,0,No Deposit,11.0,179.0,0,Transient,113.27,0,0,Canceled,2018-12-03 -City Hotel,1,277,2017,June,33,15,1,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,168.75,0,0,Canceled,2020-05-03 -City Hotel,1,50,2017,April,16,16,2,5,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,106.84,0,0,Canceled,2020-02-01 -City Hotel,1,167,2017,April,15,2,2,5,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,99.06,0,0,Canceled,2020-01-04 -City Hotel,0,17,2017,February,9,13,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,84.0,179.0,0,Transient,69.83,0,0,Check-Out,2018-09-02 -City Hotel,1,35,2016,January,2,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,127.0,179.0,39,Transient,68.32,0,0,Canceled,2019-02-01 -Resort Hotel,1,42,2016,March,10,2,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,40,Transient,71.97,0,0,Canceled,2019-02-01 -City Hotel,0,104,2016,June,22,24,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.84,0,0,Check-Out,2019-06-03 -Resort Hotel,0,260,2015,December,36,28,0,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,80.82,0,0,Check-Out,2019-01-03 -Resort Hotel,0,111,2016,July,32,2,0,10,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,128.94,0,1,Check-Out,2020-06-02 -City Hotel,0,109,2016,May,22,23,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient-Party,154.0,1,0,Check-Out,2019-04-03 -City Hotel,0,266,2017,June,26,13,2,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,115.04,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,December,53,22,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,102.65,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2016,April,18,25,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,286.0,331.0,0,Transient-Party,69.6,0,1,Check-Out,2019-03-04 -City Hotel,1,7,2016,September,43,3,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,114.04,0,1,No-Show,2019-09-03 -City Hotel,1,293,2015,August,39,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,Non Refund,2.0,179.0,0,Contract,61.1,0,1,Canceled,2017-11-02 -City Hotel,0,39,2015,March,8,24,2,5,1,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,26.0,179.0,40,Transient-Party,39.97,0,0,Check-Out,2018-11-02 -City Hotel,0,50,2016,October,43,5,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.93,0,3,Check-Out,2019-09-03 -Resort Hotel,0,244,2016,October,45,16,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,10.0,179.0,0,Transient-Party,76.65,0,0,Canceled,2018-09-02 -Resort Hotel,0,45,2015,September,51,30,2,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,42.56,0,2,Check-Out,2018-08-03 -Resort Hotel,0,237,2016,June,28,1,3,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,75.9,0,0,Check-Out,2019-05-04 -City Hotel,0,11,2017,January,3,31,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,74.9,0,2,Check-Out,2019-11-03 -City Hotel,1,266,2016,July,31,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.25,0,0,Canceled,2017-11-02 -Resort Hotel,0,141,2017,May,27,30,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,124.65,1,2,Check-Out,2020-02-01 -City Hotel,0,33,2016,January,50,22,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.43,1,2,Check-Out,2018-12-03 -Resort Hotel,0,80,2016,March,9,31,2,3,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,B,0,Refundable,12.0,221.0,0,Transient-Party,34.64,0,0,Check-Out,2019-02-01 -City Hotel,1,157,2017,August,38,9,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,79.77,0,0,Canceled,2020-06-02 -Resort Hotel,1,12,2017,March,9,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,D,0,No Deposit,179.0,227.0,0,Transient,45.84,0,0,Canceled,2019-11-03 -Resort Hotel,0,378,2016,September,35,13,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,109.76,0,0,Check-Out,2019-05-04 -Resort Hotel,0,160,2016,August,27,24,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,113.31,0,0,Check-Out,2019-07-04 -Resort Hotel,0,40,2017,March,12,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,14.0,223.0,0,Transient,89.97,0,0,Check-Out,2020-04-02 -Resort Hotel,0,139,2016,May,16,8,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient,69.92,0,0,Check-Out,2019-05-04 -Resort Hotel,0,48,2016,January,2,24,0,1,2,0.0,0,BB,,Direct,Corporate,0,0,0,A,D,0,No Deposit,331.0,331.0,0,Transient,37.72,1,0,Check-Out,2019-08-04 -Resort Hotel,0,97,2017,April,10,6,2,5,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,89.18,0,0,No-Show,2019-11-03 -City Hotel,0,30,2017,May,21,20,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.17,0,1,Check-Out,2020-03-03 -Resort Hotel,1,290,2017,June,30,20,2,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,358.0,179.0,0,Transient,118.57,0,0,No-Show,2020-04-02 -City Hotel,1,231,2017,April,22,16,2,0,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,156.96,0,1,Canceled,2020-03-03 -Resort Hotel,0,232,2015,September,35,15,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,1,0,A,C,0,No Deposit,237.0,179.0,0,Transient-Party,114.65,1,2,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,August,39,17,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,105.04,0,2,Check-Out,2019-03-04 -Resort Hotel,0,145,2015,October,43,21,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,88.0,179.0,0,Contract,67.57,0,0,Check-Out,2018-09-02 -Resort Hotel,0,3,2015,November,44,4,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient-Party,59.31,0,0,Check-Out,2018-07-03 -Resort Hotel,1,0,2015,July,34,17,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,237.24,0,0,Canceled,2018-06-02 -City Hotel,1,38,2016,August,35,12,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,105.33,0,2,Canceled,2019-08-04 -City Hotel,0,145,2016,December,53,5,2,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.95,0,1,Check-Out,2019-10-04 -City Hotel,1,101,2017,June,24,15,2,1,3,0.0,0,HB,ITA,Aviation,Corporate,0,0,0,H,F,1,No Deposit,14.0,179.0,0,Transient,141.11,0,0,Canceled,2020-05-03 -Resort Hotel,0,15,2015,November,43,8,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,331.0,0,Transient,33.68,0,0,Check-Out,2018-09-02 -City Hotel,0,47,2016,May,32,27,2,3,3,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,198.99,0,1,Check-Out,2019-11-03 -City Hotel,0,165,2015,September,44,25,0,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Contract,112.67,0,0,Check-Out,2018-07-03 -City Hotel,0,91,2015,December,50,27,2,5,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,91.77,0,0,Check-Out,2018-08-03 -City Hotel,1,341,2015,November,50,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.45,0,0,Canceled,2017-11-02 -City Hotel,0,17,2017,July,31,11,0,1,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.53,0,0,Check-Out,2020-06-02 -Resort Hotel,0,37,2016,January,9,27,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,85.42,1,0,Check-Out,2018-11-02 -City Hotel,1,444,2016,October,45,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,97.88,0,0,Canceled,2019-09-03 -City Hotel,1,14,2016,May,23,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,70.86,0,0,Canceled,2019-03-04 -City Hotel,0,42,2017,July,31,9,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.13,0,2,Check-Out,2020-05-03 -City Hotel,0,243,2015,July,36,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,115.86,0,0,Check-Out,2018-05-03 -Resort Hotel,0,8,2015,December,53,13,2,5,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,242.0,179.0,0,Transient,62.1,1,2,Check-Out,2018-11-02 -City Hotel,0,1,2015,January,4,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient-Party,33.6,0,0,Check-Out,2018-11-02 -Resort Hotel,0,140,2017,June,25,3,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,104.95,0,1,Check-Out,2020-04-02 -Resort Hotel,0,45,2016,January,3,21,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,125.23,0,0,Check-Out,2018-12-03 -City Hotel,0,215,2017,August,19,29,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient-Party,125.78,0,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,October,44,28,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,75.37,0,3,Check-Out,2019-09-03 -Resort Hotel,0,10,2016,October,43,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,62.05,0,0,Check-Out,2019-07-04 -City Hotel,1,64,2015,July,32,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.58,0,0,Canceled,2018-06-02 -Resort Hotel,0,59,2017,August,30,5,1,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient,226.41,1,1,Check-Out,2020-07-03 -Resort Hotel,0,257,2016,October,43,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,53.87,0,1,Check-Out,2019-09-03 -Resort Hotel,0,35,2017,May,17,10,2,5,2,2.0,0,HB,,Direct,Direct,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,233.06,1,2,Check-Out,2020-01-04 -Resort Hotel,0,312,2017,July,24,6,2,6,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,59.22,0,0,Check-Out,2020-06-02 -Resort Hotel,0,10,2016,April,10,12,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,H,0,No Deposit,196.0,179.0,0,Transient,68.39,0,0,Check-Out,2019-04-03 -City Hotel,0,31,2016,November,49,6,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,61.06,0,0,Check-Out,2019-10-04 -Resort Hotel,0,89,2016,September,43,21,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,129.41,0,3,Check-Out,2019-09-03 -City Hotel,1,248,2017,July,31,16,2,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.02,0,1,Canceled,2020-06-02 -City Hotel,1,297,2016,August,37,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.96,0,1,Canceled,2019-06-03 -City Hotel,0,139,2016,March,22,20,0,4,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,158.86,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2016,November,49,2,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,59.55,0,0,Check-Out,2019-09-03 -City Hotel,0,13,2016,March,53,31,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.64,0,1,Check-Out,2019-02-01 -City Hotel,1,49,2015,July,34,27,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,129.47,0,0,Canceled,2018-06-02 -City Hotel,0,10,2016,November,51,5,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.18,0,0,Check-Out,2019-10-04 -City Hotel,1,93,2015,August,38,2,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,172.38,0,1,Canceled,2018-05-03 -Resort Hotel,0,33,2015,December,52,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,0,No Deposit,14.0,71.0,0,Transient,61.05,0,0,Check-Out,2018-12-03 -City Hotel,0,1,2017,February,11,30,0,3,1,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,45.0,0,Transient,186.24,0,1,Check-Out,2020-01-04 -Resort Hotel,0,0,2016,July,43,13,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,154.06,1,0,Check-Out,2019-06-03 -Resort Hotel,1,209,2016,October,44,28,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,112.25,0,2,Check-Out,2019-09-03 -City Hotel,1,209,2017,March,16,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.01,0,2,Canceled,2020-04-02 -City Hotel,0,3,2016,March,18,6,0,2,3,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,115.46,0,1,Check-Out,2019-03-04 -Resort Hotel,0,252,2016,October,43,15,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.44,0,3,Check-Out,2019-08-04 -City Hotel,0,18,2016,October,28,24,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,331.0,0,Transient,81.48,0,0,Check-Out,2019-06-03 -City Hotel,1,106,2016,April,18,13,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,80.34,0,0,Canceled,2019-02-01 -City Hotel,0,14,2017,February,9,18,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.82,0,1,Check-Out,2020-04-02 -City Hotel,0,51,2017,August,33,18,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,208.89,0,2,Check-Out,2020-07-03 -City Hotel,1,50,2017,May,23,24,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.95,0,1,Canceled,2020-04-02 -City Hotel,0,47,2016,March,17,25,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,150.19,0,0,Check-Out,2019-02-01 -City Hotel,0,18,2016,September,35,30,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,81.55,0,0,Check-Out,2019-06-03 -City Hotel,1,81,2016,May,21,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,63.16,0,0,Canceled,2019-02-01 -City Hotel,0,99,2016,March,14,24,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,10.0,179.0,0,Transient,113.43,0,1,Check-Out,2020-02-01 -Resort Hotel,0,140,2017,January,4,16,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,40.08,0,2,Check-Out,2019-05-04 -City Hotel,0,256,2016,June,30,16,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,9.0,179.0,0,Transient,123.62,0,1,Check-Out,2019-04-03 -Resort Hotel,0,1,2016,October,42,20,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,70.88,0,0,Check-Out,2019-08-04 -City Hotel,0,155,2017,June,27,9,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,141.24,0,2,Check-Out,2020-06-02 -City Hotel,0,95,2017,August,37,27,2,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,107.85,0,3,Check-Out,2020-07-03 -City Hotel,1,54,2017,August,42,24,0,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,231.96,0,1,Canceled,2019-08-04 -City Hotel,1,50,2017,June,28,24,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,125.23,0,1,Canceled,2019-05-04 -City Hotel,0,0,2016,December,49,10,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.56,0,1,Check-Out,2019-11-03 -City Hotel,0,160,2017,June,26,20,2,0,3,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,171.64,0,0,Check-Out,2020-01-04 -City Hotel,0,11,2017,February,10,27,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.94,0,0,Check-Out,2019-11-03 -City Hotel,1,13,2016,March,16,10,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,97.0,179.0,39,Transient,62.01,0,0,Canceled,2018-10-03 -Resort Hotel,0,177,2017,June,29,28,4,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,148.37,0,3,Check-Out,2020-05-03 -Resort Hotel,0,2,2015,November,44,10,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,70.88,0,0,Check-Out,2018-05-03 -Resort Hotel,0,2,2015,September,35,19,1,5,1,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,47.72,0,0,Check-Out,2018-07-03 -City Hotel,0,98,2016,October,43,21,2,5,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.03,0,1,Check-Out,2019-11-03 -Resort Hotel,0,42,2016,December,51,28,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,67.73,0,0,Check-Out,2019-11-03 -Resort Hotel,0,258,2015,October,43,25,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Contract,44.1,0,0,Check-Out,2017-11-02 -Resort Hotel,0,173,2017,April,14,16,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,378.0,179.0,0,Transient,126.34,1,2,Check-Out,2020-02-01 -City Hotel,0,339,2017,May,26,27,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,23.0,179.0,0,Transient-Party,78.52,0,0,Check-Out,2020-03-03 -City Hotel,1,12,2017,January,11,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,11.0,179.0,0,Transient,81.7,0,1,Canceled,2019-11-03 -City Hotel,1,17,2016,April,21,15,0,2,3,0.0,0,BB,GBR,Complementary,Direct,0,0,0,D,D,0,No Deposit,85.0,179.0,0,Transient,112.46,0,0,Check-Out,2020-03-03 -Resort Hotel,1,19,2015,September,45,10,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,198.36,0,0,Canceled,2018-09-02 -City Hotel,0,33,2017,February,7,7,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.81,0,1,Check-Out,2020-03-03 -Resort Hotel,0,90,2015,October,45,30,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Contract,60.17,0,0,Check-Out,2018-06-02 -City Hotel,0,148,2016,October,43,2,2,5,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,26.0,179.0,0,Transient-Party,76.24,0,0,Check-Out,2019-03-04 -City Hotel,0,115,2016,July,30,2,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,231.92,0,0,Check-Out,2019-05-04 -City Hotel,1,261,2017,July,23,18,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,F,0,No Deposit,12.0,179.0,0,Transient,80.81,0,0,Canceled,2019-10-04 -Resort Hotel,0,137,2016,August,36,18,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,154.23,1,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,April,22,25,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,112.89,0,1,Check-Out,2019-03-04 -City Hotel,1,46,2017,July,31,6,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,173.11,0,0,Canceled,2020-06-02 -City Hotel,0,323,2016,August,35,20,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,95.83,0,0,Check-Out,2019-05-04 -City Hotel,1,92,2016,July,33,21,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.42,0,0,Canceled,2019-02-01 -City Hotel,1,340,2017,February,9,12,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,233.0,179.0,0,Transient,62.0,0,0,Canceled,2019-12-04 -Resort Hotel,0,16,2016,May,44,8,0,1,3,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,286.0,179.0,0,Transient-Party,75.11,0,0,Check-Out,2019-06-03 -Resort Hotel,1,272,2017,July,28,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,92.6,0,0,Canceled,2017-11-02 -City Hotel,1,142,2016,November,43,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,94.15,0,1,Canceled,2019-05-04 -Resort Hotel,0,12,2016,January,9,23,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,44.66,1,0,Check-Out,2018-10-03 -City Hotel,0,92,2015,September,42,2,2,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,93.23,0,1,Check-Out,2019-08-04 -City Hotel,0,127,2016,December,51,16,1,2,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,67.45,0,0,Check-Out,2019-11-03 -City Hotel,0,11,2016,October,42,20,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.9,0,2,Check-Out,2019-08-04 -Resort Hotel,0,152,2016,June,41,15,2,6,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,41.45,0,1,Check-Out,2019-05-04 -City Hotel,0,5,2016,November,46,27,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,331.0,0,Transient,112.36,0,0,Check-Out,2019-06-03 -City Hotel,1,295,2015,October,42,15,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,58,Transient-Party,131.48,0,0,Canceled,2018-07-03 -City Hotel,0,88,2016,July,32,11,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.68,0,1,Check-Out,2019-07-04 -Resort Hotel,0,265,2017,August,16,10,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,317.0,179.0,75,Transient-Party,128.57,0,0,Check-Out,2020-04-02 -Resort Hotel,0,256,2016,July,42,30,3,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,206.0,192.0,0,Transient,106.05,0,1,Check-Out,2019-09-03 -City Hotel,0,270,2016,June,29,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,17,Transient-Party,122.43,0,0,Check-Out,2019-02-01 -City Hotel,0,109,2017,July,30,7,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.9,0,2,Check-Out,2020-06-02 -City Hotel,0,5,2016,August,38,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.4,0,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,December,53,8,0,1,2,0.0,0,HB,PRT,Complementary,Direct,0,0,0,A,C,0,No Deposit,38.0,179.0,0,Transient,59.72,0,0,Check-Out,2018-11-02 -City Hotel,0,89,2017,May,22,6,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,98.34,0,3,Check-Out,2020-01-04 -Resort Hotel,0,4,2015,October,46,25,1,1,2,0.0,0,BB,CN,Groups,Direct,0,0,0,A,A,2,No Deposit,14.0,331.0,0,Transient-Party,110.47,0,0,Check-Out,2018-09-02 -Resort Hotel,0,37,2017,April,19,29,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,209.51,0,2,Check-Out,2020-04-02 -Resort Hotel,0,11,2016,June,27,10,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,118.77,1,2,Check-Out,2019-07-04 -City Hotel,0,13,2015,October,43,7,1,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,88.76,0,0,Check-Out,2018-09-02 -City Hotel,1,35,2017,January,5,25,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,90.0,0,Transient,35.68,0,0,Canceled,2019-11-03 -Resort Hotel,0,98,2017,May,23,27,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,1,No Deposit,378.0,179.0,0,Transient,129.1,0,0,Check-Out,2019-12-04 -City Hotel,1,111,2016,August,37,15,2,2,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,208.41,0,0,Canceled,2018-06-02 -City Hotel,0,19,2016,December,50,30,0,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,207.0,179.0,0,Transient,118.85,0,0,Check-Out,2019-10-04 -Resort Hotel,0,52,2017,June,22,10,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,119.41,0,1,Check-Out,2020-03-03 -City Hotel,0,1,2016,July,26,20,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,50.49,0,1,Check-Out,2019-06-03 -Resort Hotel,1,151,2017,March,11,28,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,K,0,Non Refund,67.0,179.0,0,Transient,114.2,0,0,Check-Out,2019-02-01 -City Hotel,0,12,2016,March,10,22,0,1,1,0.0,0,SC,GBR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.73,0,0,Check-Out,2019-02-01 -City Hotel,1,91,2016,June,25,22,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,128.0,179.0,0,Transient,98.81,0,0,Canceled,2018-12-03 -City Hotel,0,86,2017,June,25,12,1,3,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,1.48,0,2,Check-Out,2020-06-02 -City Hotel,0,140,2017,May,23,24,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,150.03,0,0,Check-Out,2020-06-02 -City Hotel,1,317,2017,July,29,12,0,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,80.68,0,0,Canceled,2017-11-02 -City Hotel,0,107,2015,September,43,2,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,103.15,0,0,Check-Out,2018-08-03 -Resort Hotel,0,223,2017,April,10,19,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,1,No Deposit,378.0,179.0,0,Transient-Party,76.62,0,0,Check-Out,2020-05-03 -City Hotel,0,16,2017,January,3,18,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,136.89,0,0,Check-Out,2020-06-02 -City Hotel,1,42,2017,July,21,6,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,121.72,0,0,No-Show,2020-02-01 -City Hotel,0,38,2016,September,46,25,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,74.38,0,0,Check-Out,2018-08-03 -Resort Hotel,0,192,2017,August,34,10,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,132.03,0,1,Check-Out,2020-04-02 -City Hotel,1,89,2016,May,26,10,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,35.39,0,0,Canceled,2019-02-01 -Resort Hotel,0,18,2015,October,45,10,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,C,0,No Deposit,15.0,247.0,0,Transient-Party,38.0,0,0,Check-Out,2018-09-02 -City Hotel,1,56,2016,January,11,10,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,65.65,0,0,Canceled,2018-12-03 -City Hotel,0,4,2017,August,38,28,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,234.43,0,0,Check-Out,2020-07-03 -City Hotel,0,15,2017,June,29,29,2,5,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,120.24,0,0,Check-Out,2020-01-04 -City Hotel,1,40,2015,September,35,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.03,0,0,Canceled,2018-08-03 -City Hotel,1,1,2017,January,10,15,0,1,1,0.0,0,SC,PRT,Undefined,Corporate,1,0,0,A,K,0,No Deposit,11.0,213.0,0,Transient,0.0,0,1,Canceled,2020-05-03 -City Hotel,0,246,2015,September,30,20,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.19,0,0,Check-Out,2018-08-03 -Resort Hotel,1,179,2016,December,10,31,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient,80.84,0,0,Canceled,2019-10-04 -City Hotel,1,1,2015,September,45,24,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,150.69,0,0,Check-Out,2018-08-03 -City Hotel,0,18,2017,October,37,12,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,11.0,179.0,0,Transient,109.24,0,1,Check-Out,2019-12-04 -City Hotel,1,58,2017,January,11,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,35.66,0,0,Canceled,2019-09-03 -City Hotel,1,25,2015,December,53,2,0,4,2,0.0,0,HB,ESP,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,74.86,0,0,Canceled,2019-11-03 -Resort Hotel,0,144,2016,March,20,11,1,10,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient-Party,71.98,0,0,Check-Out,2019-11-03 -City Hotel,1,140,2016,May,16,13,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient-Party,76.59,0,0,Canceled,2019-02-01 -City Hotel,1,62,2016,February,18,25,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,36.0,179.0,0,Transient-Party,126.08,0,0,Canceled,2019-10-04 -Resort Hotel,1,197,2017,February,8,5,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,172.0,179.0,0,Transient,89.2,0,0,Canceled,2019-10-04 -City Hotel,0,38,2017,June,30,5,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,97.19,0,0,Check-Out,2020-03-03 -City Hotel,0,176,2017,August,36,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.27,0,1,Check-Out,2020-07-03 -City Hotel,0,144,2017,June,17,31,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.93,0,2,Check-Out,2019-12-04 -City Hotel,1,88,2017,April,18,22,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,111.45,0,0,Canceled,2020-02-01 -City Hotel,0,32,2016,January,4,24,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.48,0,0,Check-Out,2019-12-04 -City Hotel,0,151,2016,May,35,6,2,5,1,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.52,0,0,Check-Out,2019-11-03 -City Hotel,0,48,2016,April,17,24,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,79.51,0,1,Check-Out,2019-03-04 -City Hotel,0,168,2017,August,26,30,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,128.89,0,1,Check-Out,2020-06-02 -City Hotel,0,16,2015,November,50,30,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,120.29,0,1,Check-Out,2019-06-03 -Resort Hotel,0,9,2017,June,27,31,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,250.0,179.0,0,Transient,218.36,0,0,Check-Out,2020-07-03 -City Hotel,0,146,2017,June,16,15,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,155.63,0,1,Check-Out,2020-07-03 -City Hotel,1,346,2016,May,16,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,12.0,179.0,0,Transient,72.91,0,0,Canceled,2019-01-03 -Resort Hotel,1,18,2017,January,4,14,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,64.55,1,0,Canceled,2019-10-04 -Resort Hotel,0,153,2016,March,18,2,1,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,12.0,223.0,0,Transient-Party,40.57,0,0,Check-Out,2019-02-01 -City Hotel,1,11,2016,June,26,21,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,90.75,0,0,Canceled,2018-06-02 -City Hotel,1,242,2017,June,24,8,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,A,1,No Deposit,7.0,179.0,0,Transient,121.35,0,0,Canceled,2020-01-04 -Resort Hotel,0,33,2015,December,52,31,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,G,3,No Deposit,243.0,179.0,0,Transient,34.01,1,1,Check-Out,2019-10-04 -Resort Hotel,1,76,2016,May,16,27,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,170.0,179.0,0,Transient,106.07,0,0,No-Show,2019-03-04 -Resort Hotel,0,344,2016,April,22,21,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,293.0,179.0,0,Transient-Party,37.92,0,0,Check-Out,2019-07-04 -City Hotel,1,103,2016,May,26,5,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,143.85,0,0,Canceled,2018-12-03 -City Hotel,1,402,2015,October,38,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,68.76,0,0,Canceled,2018-08-03 -City Hotel,1,134,2017,January,4,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,75.55,0,0,Canceled,2019-10-04 -City Hotel,0,99,2016,June,34,26,2,6,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,144.09,0,1,Check-Out,2019-08-04 -Resort Hotel,0,6,2017,May,22,13,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,241.0,179.0,0,Transient,121.05,1,1,Check-Out,2020-04-02 -Resort Hotel,0,144,2016,March,21,2,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,1,No Deposit,88.0,179.0,0,Transient-Party,28.75,0,0,Check-Out,2019-02-01 -City Hotel,0,24,2017,February,9,18,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.62,0,0,Canceled,2019-11-03 -City Hotel,1,266,2015,August,39,21,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.9,0,2,Check-Out,2018-05-03 -City Hotel,1,171,2015,October,39,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.34,0,0,Canceled,2017-11-02 -City Hotel,0,2,2017,May,23,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,K,0,No Deposit,15.0,179.0,0,Transient,63.89,0,0,Check-Out,2020-02-01 -City Hotel,0,107,2017,August,36,2,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.15,1,1,Check-Out,2020-08-03 -Resort Hotel,0,241,2015,July,39,30,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,107.76,0,2,Check-Out,2018-06-02 -City Hotel,1,79,2016,August,35,6,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.59,0,0,Canceled,2019-04-03 -City Hotel,0,152,2016,May,22,4,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,B,0,No Deposit,79.0,179.0,0,Transient-Party,69.35,0,1,Check-Out,2019-06-03 -City Hotel,0,247,2015,August,34,17,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,59.74,0,1,Check-Out,2018-07-03 -Resort Hotel,0,3,2015,December,51,10,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,3,No Deposit,243.0,179.0,0,Transient,30.08,0,0,Check-Out,2018-10-03 -Resort Hotel,0,153,2017,May,28,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,274.0,179.0,0,Transient,119.29,1,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2016,January,10,27,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,378.0,179.0,0,Transient,40.3,0,0,Canceled,2018-10-03 -City Hotel,1,49,2016,September,33,18,1,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,79.33,0,0,Canceled,2019-03-04 -Resort Hotel,0,8,2017,March,10,13,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,I,0,No Deposit,238.0,179.0,0,Transient,0.72,0,0,Check-Out,2020-02-01 -City Hotel,1,2,2016,May,15,10,1,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,83.19,1,0,Canceled,2018-12-03 -City Hotel,0,0,2017,January,3,17,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.98,0,1,Check-Out,2019-11-03 -City Hotel,0,84,2017,June,28,5,0,1,3,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,E,E,0,No Deposit,12.0,65.0,0,Transient-Party,225.92,0,2,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,July,39,28,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,252.0,179.0,0,Transient,124.1,0,0,Check-Out,2018-06-02 -Resort Hotel,0,15,2016,December,48,4,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Group,62.15,0,0,Check-Out,2019-06-03 -City Hotel,0,48,2016,June,28,20,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,141.57,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2017,March,9,13,0,1,3,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,F,0,No Deposit,18.0,179.0,0,Transient,0.0,1,0,Check-Out,2020-02-01 -City Hotel,0,91,2016,March,9,28,0,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,E,0,No Deposit,37.0,179.0,0,Transient-Party,65.03,0,0,Check-Out,2019-04-03 -City Hotel,1,148,2017,February,9,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,81.9,0,0,Canceled,2019-12-04 -City Hotel,1,241,2015,September,35,24,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,1,No Deposit,36.0,179.0,0,Contract,62.91,0,0,Canceled,2017-10-03 -Resort Hotel,1,111,2017,May,15,10,1,0,2,0.0,0,HB,PRT,Online TA,GDS,0,0,0,A,A,0,Non Refund,198.0,179.0,0,Transient,105.35,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2016,October,43,20,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,1.94,1,2,Check-Out,2018-12-03 -City Hotel,0,421,2016,September,37,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,28.0,179.0,0,Transient-Party,99.42,0,0,Check-Out,2019-06-03 -City Hotel,1,64,2016,February,10,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,63.07,0,0,Canceled,2018-11-02 -Resort Hotel,0,46,2016,October,45,17,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,38.63,0,1,Check-Out,2019-08-04 -Resort Hotel,0,5,2016,August,37,30,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,242.0,179.0,0,Transient,206.32,1,2,Check-Out,2019-05-04 -City Hotel,0,3,2016,June,34,12,0,2,2,0.0,0,SC,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,110.34,0,1,Check-Out,2019-03-04 -City Hotel,1,248,2017,May,20,2,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,59.6,0,0,Check-Out,2020-05-03 -Resort Hotel,1,20,2017,May,24,19,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,161.88,0,0,Canceled,2020-03-03 -City Hotel,0,1,2017,May,7,18,0,2,2,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.03,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,November,43,28,0,1,2,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,1,No Deposit,15.0,281.0,0,Transient,5.94,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2015,October,42,28,0,1,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,331.0,0,Transient-Party,68.53,0,0,Check-Out,2018-12-03 -City Hotel,0,150,2016,June,29,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient-Party,93.16,0,0,Check-Out,2019-06-03 -Resort Hotel,0,240,2016,June,42,20,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,123.54,0,1,Check-Out,2019-06-03 -Resort Hotel,0,16,2016,August,36,9,4,7,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,154.5,0,0,Check-Out,2019-08-04 -City Hotel,1,95,2016,August,18,30,2,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.06,0,2,Canceled,2019-02-01 -City Hotel,0,32,2017,August,3,30,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.53,1,1,Check-Out,2020-01-04 -City Hotel,1,2,2017,March,9,12,2,0,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,83.65,0,0,Canceled,2020-02-01 -Resort Hotel,0,162,2016,March,16,14,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,C,A,2,Refundable,2.0,222.0,0,Transient-Party,76.92,1,0,Check-Out,2020-02-01 -City Hotel,0,18,2015,October,45,17,0,3,2,0.0,0,BB,BRA,Groups,Direct,0,0,0,A,G,1,No Deposit,12.0,179.0,0,Transient-Party,77.38,1,0,Check-Out,2018-08-03 -City Hotel,1,33,2017,April,18,15,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,121.36,0,2,Canceled,2020-03-03 -City Hotel,1,167,2016,October,22,2,0,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,80.04,0,0,Canceled,2018-08-03 -City Hotel,0,37,2017,June,25,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,76.46,0,1,Check-Out,2019-08-04 -City Hotel,1,62,2016,July,34,28,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.07,0,1,Canceled,2018-12-03 -City Hotel,0,17,2017,January,4,5,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,14.0,62.0,0,Transient,81.18,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2017,November,50,9,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,48.0,331.0,0,Transient-Party,57.81,0,0,Check-Out,2019-11-03 -Resort Hotel,1,54,2015,October,45,22,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,238.0,179.0,0,Transient,60.25,0,0,Canceled,2017-10-03 -Resort Hotel,0,57,2017,August,32,30,0,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,128.02,0,1,Check-Out,2020-07-03 -City Hotel,1,24,2017,May,23,5,0,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,G,0,No Deposit,13.0,179.0,0,Transient,160.44,0,3,Canceled,2020-02-01 -City Hotel,1,41,2016,April,18,31,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.93,0,0,Canceled,2019-01-03 -Resort Hotel,0,208,2016,October,44,3,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,224.0,179.0,0,Transient-Party,97.5,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2015,September,42,12,2,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,61.95,0,2,Check-Out,2019-08-04 -City Hotel,0,41,2015,October,43,9,0,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,128.55,0,3,Check-Out,2019-06-03 -Resort Hotel,0,11,2017,January,21,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient-Party,61.03,1,1,Check-Out,2020-03-03 -Resort Hotel,1,48,2017,June,16,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Contract,71.8,0,0,Canceled,2020-01-04 -City Hotel,1,29,2016,August,21,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,91.32,0,0,Canceled,2019-03-04 -City Hotel,0,1,2016,January,11,28,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,19,Transient,66.49,0,0,Check-Out,2018-12-03 -Resort Hotel,0,8,2017,February,12,6,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,69.0,0,Transient,77.54,0,0,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,March,16,25,0,1,1,0.0,0,Undefined,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,43.56,0,0,Check-Out,2019-02-01 -City Hotel,1,2,2016,June,17,27,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,117.08,0,0,Canceled,2019-03-04 -City Hotel,1,14,2016,July,43,18,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,103.4,0,0,Canceled,2018-06-02 -City Hotel,0,47,2016,September,38,16,0,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,150.54,0,0,Canceled,2018-09-02 -City Hotel,0,3,2016,May,17,31,1,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,64.28,0,2,Check-Out,2019-04-03 -Resort Hotel,0,0,2017,May,22,30,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,290.0,179.0,0,Transient,196.78,1,2,Check-Out,2020-02-01 -Resort Hotel,0,155,2016,April,16,31,1,3,2,0.0,0,Undefined,AUT,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,102.85,0,0,Check-Out,2019-05-04 -Resort Hotel,0,12,2017,March,11,6,0,3,2,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,223.0,0,Transient-Party,58.67,0,0,Check-Out,2020-04-02 -City Hotel,1,1,2016,March,12,30,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,77.27,0,0,Canceled,2018-11-02 -City Hotel,1,33,2017,June,24,5,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,103.47,0,0,Canceled,2020-02-01 -City Hotel,1,20,2015,December,51,9,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient-Party,61.6,0,0,Canceled,2018-08-03 -City Hotel,1,12,2015,September,33,27,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,94.71,0,0,Canceled,2018-08-03 -City Hotel,1,20,2017,February,10,31,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,Non Refund,10.0,179.0,0,Transient,73.31,0,0,Canceled,2019-09-03 -City Hotel,1,98,2016,April,18,22,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.93,0,0,Canceled,2019-02-01 -City Hotel,0,60,2016,August,36,24,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.15,0,0,Check-Out,2019-06-03 -Resort Hotel,0,100,2016,December,15,28,1,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,143.0,179.0,0,Transient-Party,74.07,0,0,Check-Out,2018-12-03 -City Hotel,0,119,2016,August,32,17,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,172.34,0,0,Check-Out,2020-06-02 -City Hotel,1,248,2016,June,31,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.59,0,0,Canceled,2018-10-03 -City Hotel,1,98,2016,September,44,21,2,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,147.23,0,1,Canceled,2019-07-04 -Resort Hotel,0,3,2015,October,41,20,3,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,62.39,0,0,Check-Out,2019-09-03 -City Hotel,1,19,2017,May,20,21,1,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,124.38,0,0,Canceled,2020-02-01 -City Hotel,1,139,2016,May,21,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,60.96,0,0,Canceled,2020-02-01 -City Hotel,0,14,2017,March,17,28,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient-Party,69.98,0,1,Check-Out,2020-04-02 -Resort Hotel,0,2,2017,January,2,16,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,41.98,0,1,Check-Out,2019-12-04 -Resort Hotel,0,246,2015,October,42,15,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Contract,30.91,0,1,Check-Out,2018-09-02 -Resort Hotel,0,9,2017,February,9,21,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,97.0,0,Transient,44.97,0,0,Check-Out,2020-04-02 -City Hotel,1,1,2016,September,36,15,1,2,2,0.0,0,Undefined,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.3,0,0,Canceled,2019-09-03 -City Hotel,1,1,2016,October,42,10,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,76.78,0,0,Canceled,2019-12-04 -City Hotel,0,17,2015,August,38,5,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,100.45,0,0,Check-Out,2018-09-02 -City Hotel,0,102,2017,July,26,15,2,3,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Contract,106.5,0,2,Check-Out,2020-04-02 -City Hotel,0,106,2016,June,26,24,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.43,0,2,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,December,44,2,1,10,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,D,1,No Deposit,300.0,179.0,0,Transient,94.09,1,0,Check-Out,2019-11-03 -Resort Hotel,1,40,2016,December,53,28,1,1,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,247.72,0,0,Canceled,2019-05-04 -Resort Hotel,0,110,2016,March,17,8,2,5,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient,72.87,0,0,Check-Out,2019-02-01 -City Hotel,0,35,2016,August,36,30,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,7.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-07-04 -City Hotel,0,142,2017,June,26,16,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,153.02,0,0,Check-Out,2020-03-03 -City Hotel,0,52,2016,July,33,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.33,0,2,Check-Out,2019-05-04 -City Hotel,0,94,2016,March,17,28,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,90.21,0,3,Check-Out,2019-06-03 -City Hotel,0,0,2015,October,47,30,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,78.4,0,0,Check-Out,2018-09-02 -City Hotel,1,44,2017,February,8,2,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,95.79,0,0,Canceled,2019-12-04 -City Hotel,1,26,2015,September,39,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,111.21,0,0,Canceled,2018-08-03 -Resort Hotel,1,49,2016,October,44,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,240.0,179.0,0,Transient,59.23,0,0,Canceled,2019-10-04 -Resort Hotel,0,56,2015,October,53,8,2,5,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,30.87,0,0,Check-Out,2018-12-03 -City Hotel,1,275,2016,October,45,23,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,258.0,179.0,0,Transient,76.6,0,0,Canceled,2019-08-04 -Resort Hotel,0,4,2015,July,35,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,244.0,0,Transient,63.39,0,0,Check-Out,2018-07-03 -City Hotel,0,4,2016,March,9,21,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,1,1,1,A,A,1,No Deposit,12.0,331.0,0,Transient,58.43,0,0,Check-Out,2019-04-03 -City Hotel,0,58,2016,January,11,9,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.52,0,1,Check-Out,2019-01-03 -City Hotel,0,19,2017,February,11,20,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,101.09,0,0,Check-Out,2020-02-01 -Resort Hotel,1,39,2015,August,33,22,0,1,2,0.0,0,FB,PRT,Groups,Undefined,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,99.29,0,0,Canceled,2018-06-02 -Resort Hotel,0,8,2016,March,11,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,76.0,0,Transient,37.41,1,1,Check-Out,2019-07-04 -City Hotel,1,407,2017,August,36,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.51,0,0,Canceled,2020-01-04 -City Hotel,1,298,2015,September,38,31,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.97,0,0,Canceled,2017-12-03 -City Hotel,0,2,2017,March,11,2,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,122.29,0,0,Check-Out,2019-02-01 -City Hotel,0,61,2016,September,35,1,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.08,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2017,June,26,18,1,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.13,0,0,Check-Out,2020-04-02 -Resort Hotel,1,45,2016,December,44,29,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,78.03,0,0,Canceled,2019-08-04 -Resort Hotel,0,14,2015,October,45,14,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,99.29,0,0,Check-Out,2018-08-03 -City Hotel,0,235,2015,October,36,9,1,1,1,0.0,0,HB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,162.26,0,0,Check-Out,2018-06-02 -Resort Hotel,0,153,2017,August,34,19,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,146.09,0,0,Check-Out,2020-06-02 -City Hotel,1,99,2015,December,50,28,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Contract,98.24,0,0,Canceled,2018-08-03 -Resort Hotel,0,38,2017,May,21,15,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,150.07,0,1,Canceled,2020-03-03 -Resort Hotel,1,109,2016,May,27,8,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,75.41,0,0,Check-Out,2019-02-01 -City Hotel,0,248,2015,August,32,12,2,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,73.53,0,1,Check-Out,2018-06-02 -City Hotel,1,10,2017,December,48,7,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,264.0,0,Transient,0.0,0,0,Canceled,2019-12-04 -City Hotel,0,139,2017,May,53,18,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,35.0,179.0,0,Transient,69.7,0,0,Check-Out,2019-11-03 -Resort Hotel,0,39,2016,August,3,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,76.46,0,0,Check-Out,2019-03-04 -Resort Hotel,0,114,2016,March,16,16,0,3,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,37.55,0,0,Check-Out,2019-02-01 -City Hotel,1,195,2016,December,45,29,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.15,0,1,Canceled,2019-11-03 -Resort Hotel,1,34,2016,April,16,20,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,205.96,0,0,Canceled,2019-02-01 -City Hotel,1,370,2017,April,21,29,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,104.27,0,0,Canceled,2019-11-03 -City Hotel,1,105,2017,March,17,15,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,71.93,0,2,Canceled,2020-01-04 -Resort Hotel,0,166,2016,June,27,30,4,10,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient,105.68,0,1,Check-Out,2020-06-02 -City Hotel,0,29,2017,May,23,18,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.24,0,1,Check-Out,2020-03-03 -City Hotel,0,12,2016,December,53,21,1,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.29,0,1,Check-Out,2019-11-03 -Resort Hotel,0,17,2016,August,36,24,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,37.84,0,0,Check-Out,2019-04-03 -City Hotel,1,0,2016,February,9,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,41,Transient,65.94,0,0,No-Show,2018-12-03 -City Hotel,1,202,2016,April,17,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,145.62,0,0,Canceled,2019-02-01 -City Hotel,0,19,2016,January,11,20,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,84.07,0,0,Canceled,2019-10-04 -Resort Hotel,0,10,2017,March,18,15,0,6,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,11.0,179.0,75,Transient-Party,70.1,1,0,Check-Out,2020-03-03 -Resort Hotel,1,95,2015,August,36,28,2,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,1,0,D,D,0,No Deposit,13.0,179.0,0,Transient,98.13,0,0,Canceled,2018-06-02 -City Hotel,0,44,2017,May,20,6,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,3,No Deposit,10.0,179.0,0,Transient,89.94,0,1,Check-Out,2020-04-02 -City Hotel,1,306,2017,August,35,9,2,5,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,118.44,0,1,Canceled,2020-01-04 -City Hotel,1,97,2017,March,18,14,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,14.0,64.0,0,Transient,80.1,0,0,Canceled,2020-04-02 -City Hotel,1,146,2016,June,25,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,128.2,0,0,Check-Out,2019-05-04 -Resort Hotel,0,7,2016,October,42,2,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,95.54,1,1,Check-Out,2019-11-03 -Resort Hotel,0,58,2017,March,18,30,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,I,2,No Deposit,243.0,179.0,0,Transient,2.81,0,0,Check-Out,2020-01-04 -Resort Hotel,0,23,2017,May,23,11,1,2,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,244.0,179.0,0,Transient,218.54,0,0,Check-Out,2019-07-04 -Resort Hotel,0,19,2016,June,24,2,0,1,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,C,1,No Deposit,317.0,179.0,0,Transient,108.89,0,0,Check-Out,2019-05-04 -City Hotel,1,2,2016,January,4,9,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,63.06,0,0,Canceled,2019-09-03 -City Hotel,0,391,2017,June,35,18,2,3,2,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,98.63,0,0,Check-Out,2020-07-03 -Resort Hotel,1,11,2015,December,53,11,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,97.16,0,0,Canceled,2018-11-02 -Resort Hotel,0,284,2015,October,44,27,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,60.54,0,0,Canceled,2018-09-02 -City Hotel,1,1,2016,March,32,25,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.53,0,0,Canceled,2019-06-03 -Resort Hotel,0,1,2016,January,36,12,0,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,1,A,C,0,No Deposit,247.0,179.0,0,Group,0.0,1,1,Check-Out,2018-11-02 -City Hotel,0,94,2016,September,35,30,0,3,2,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.81,0,2,Check-Out,2019-09-03 -Resort Hotel,1,255,2016,October,37,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,158.0,179.0,0,Transient,75.35,0,0,Canceled,2019-08-04 -City Hotel,0,242,2017,July,34,2,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,166.97,0,1,Check-Out,2020-06-02 -City Hotel,0,31,2015,September,45,28,0,1,1,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,109.04,0,0,Check-Out,2018-07-03 -City Hotel,0,206,2016,August,31,17,0,3,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,230.78,0,1,Check-Out,2019-05-04 -City Hotel,0,7,2016,March,10,21,2,1,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,I,0,No Deposit,12.0,179.0,0,Transient-Party,92.47,0,0,Check-Out,2019-02-01 -City Hotel,0,50,2017,June,28,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,135.53,0,0,Check-Out,2020-06-02 -City Hotel,1,29,2016,June,28,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,40,Transient,128.24,0,0,Canceled,2019-05-04 -City Hotel,1,38,2016,January,4,6,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,10.0,179.0,0,Transient,68.51,0,0,Canceled,2018-09-02 -City Hotel,0,0,2016,July,31,4,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,246.14,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,January,3,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,248.0,179.0,0,Transient,68.23,0,0,Check-Out,2019-03-04 -City Hotel,1,49,2017,August,36,17,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,200.97,0,0,Canceled,2020-07-03 -City Hotel,1,361,2016,September,36,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,44,Transient,80.57,0,0,Canceled,2018-11-02 -Resort Hotel,1,253,2015,August,37,25,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,E,A,0,Non Refund,302.0,179.0,0,Transient,62.16,0,0,Canceled,2018-07-03 -City Hotel,1,323,2016,March,17,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,61.21,0,0,Canceled,2019-03-04 -City Hotel,1,42,2017,March,11,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,174.64,0,0,Canceled,2019-11-03 -Resort Hotel,0,1,2015,October,42,14,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,239.0,179.0,0,Transient,40.1,0,2,Check-Out,2019-07-04 -Resort Hotel,1,116,2017,March,16,28,1,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,179.0,0,Transient,63.67,0,0,Canceled,2019-01-03 -Resort Hotel,1,96,2016,March,11,21,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,39.81,0,0,Canceled,2019-01-03 -City Hotel,0,246,2015,October,43,29,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.06,0,0,Check-Out,2018-08-03 -Resort Hotel,1,116,2017,April,17,27,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,163.1,0,0,No-Show,2020-03-03 -City Hotel,1,219,2015,September,39,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,59.54,0,0,Canceled,2017-11-02 -City Hotel,0,42,2016,August,52,28,2,4,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.95,0,0,Check-Out,2019-08-04 -City Hotel,0,20,2016,October,46,29,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,103.75,0,0,Check-Out,2019-08-04 -City Hotel,0,93,2016,June,32,21,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.21,0,2,Check-Out,2019-06-03 -City Hotel,0,14,2015,October,44,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Contract,60.49,0,0,Check-Out,2018-06-02 -Resort Hotel,0,11,2017,May,20,23,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient-Party,116.17,1,2,Check-Out,2020-01-04 -Resort Hotel,0,3,2016,July,32,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient,46.62,0,0,Check-Out,2018-11-02 -Resort Hotel,0,188,2017,June,22,22,0,1,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,F,E,0,No Deposit,240.0,179.0,0,Transient,62.93,1,2,No-Show,2020-03-03 -Resort Hotel,0,4,2017,June,27,31,2,3,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,99.82,0,3,Check-Out,2020-05-03 -City Hotel,0,34,2016,May,14,7,1,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,72.48,0,0,Check-Out,2019-03-04 -Resort Hotel,0,47,2016,July,38,7,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,150.01,0,0,Check-Out,2020-06-02 -Resort Hotel,0,252,2015,October,43,10,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,73.17,0,0,Check-Out,2018-08-03 -Resort Hotel,1,42,2016,June,26,25,2,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,70.23,0,1,No-Show,2019-02-01 -City Hotel,0,0,2017,May,24,9,0,1,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,B,0,No Deposit,181.0,179.0,0,Transient-Party,3.94,0,0,Check-Out,2020-04-02 -Resort Hotel,1,107,2016,July,36,20,1,0,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,166.48,0,0,Canceled,2018-07-03 -City Hotel,0,2,2016,November,50,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,16.0,244.0,0,Transient-Party,58.7,0,0,Check-Out,2018-09-02 -City Hotel,1,239,2016,October,53,2,0,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,109.18,0,0,Canceled,2019-11-03 -Resort Hotel,0,77,2015,December,53,21,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,242.0,179.0,0,Transient,35.28,0,0,Canceled,2018-10-03 -Resort Hotel,0,14,2016,October,51,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,221.0,0,Transient,85.57,0,1,Check-Out,2019-08-04 -Resort Hotel,0,37,2016,September,20,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,79.58,0,0,Check-Out,2019-02-01 -City Hotel,0,48,2016,October,44,26,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.37,0,2,Check-Out,2019-08-04 -City Hotel,1,59,2016,April,14,10,2,5,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,16,Transient-Party,94.37,0,0,Canceled,2019-01-03 -Resort Hotel,1,0,2016,March,15,12,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,25.95,0,0,No-Show,2019-04-03 -Resort Hotel,0,89,2016,May,24,28,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient,214.96,0,1,Check-Out,2019-11-03 -City Hotel,0,243,2015,September,44,21,2,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,74.82,0,0,Check-Out,2018-08-03 -City Hotel,0,48,2016,June,25,22,4,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.6,0,3,Check-Out,2019-06-03 -City Hotel,1,97,2017,March,11,24,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,67.34,0,1,Check-Out,2020-02-01 -City Hotel,0,156,2015,October,44,28,0,1,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,60.32,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,November,49,4,0,1,1,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,118.71,1,0,Check-Out,2018-06-02 -City Hotel,1,108,2017,May,23,6,2,5,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,192.08,0,0,Canceled,2020-02-01 -City Hotel,1,31,2016,June,22,9,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,117.27,0,0,No-Show,2019-04-03 -Resort Hotel,0,12,2017,February,9,27,2,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,No Deposit,13.0,331.0,0,Transient-Party,36.27,0,0,Check-Out,2020-03-03 -Resort Hotel,0,155,2016,March,11,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,14.0,222.0,0,Transient-Party,60.11,0,0,Check-Out,2019-03-04 -City Hotel,0,244,2016,December,53,29,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,65.56,0,2,Check-Out,2019-11-03 -Resort Hotel,1,2,2015,September,37,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,Non Refund,14.0,179.0,0,Transient,116.46,0,0,Canceled,2018-08-03 -City Hotel,0,154,2017,April,15,13,2,1,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,G,A,0,No Deposit,12.0,179.0,0,Transient,103.45,0,3,Check-Out,2020-02-01 -City Hotel,0,13,2017,May,37,25,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,237.0,179.0,0,Transient,164.59,0,1,Check-Out,2019-09-03 -Resort Hotel,0,197,2017,June,28,16,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,237.0,179.0,0,Transient,117.13,1,1,Check-Out,2020-05-03 -City Hotel,0,146,2017,May,23,25,1,1,2,0.0,0,BB,CN,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,77.84,0,1,Check-Out,2020-04-02 -City Hotel,0,50,2017,June,26,2,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.78,0,0,Check-Out,2020-06-02 -Resort Hotel,0,43,2015,October,44,13,0,3,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,68.19,0,0,Check-Out,2018-09-02 -City Hotel,1,255,2017,July,30,22,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient-Party,102.58,0,0,Canceled,2020-06-02 -City Hotel,1,311,2016,August,37,4,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,86.9,0,0,Canceled,2019-07-04 -City Hotel,0,11,2015,September,42,12,0,1,3,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,78.26,0,0,Check-Out,2018-09-02 -Resort Hotel,0,90,2015,December,49,21,2,7,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,232.0,179.0,0,Transient-Party,75.48,0,0,Check-Out,2018-11-02 -Resort Hotel,0,66,2017,February,24,13,1,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,241.0,0,Transient,44.3,0,0,Check-Out,2020-04-02 -City Hotel,0,90,2016,August,36,21,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-07-04 -City Hotel,0,5,2016,August,33,20,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-08-04 -Resort Hotel,0,194,2016,March,9,22,0,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,222.0,0,Transient-Party,33.17,0,0,Check-Out,2019-03-04 -Resort Hotel,0,204,2017,July,29,6,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,C,3,No Deposit,378.0,179.0,0,Transient-Party,172.26,0,0,Check-Out,2020-06-02 -Resort Hotel,0,17,2017,June,50,29,2,10,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,E,0,Non Refund,333.0,179.0,0,Transient,128.42,0,0,Check-Out,2019-11-03 -City Hotel,0,26,2015,August,38,21,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,252.0,0,3,Check-Out,2018-06-02 -City Hotel,0,0,2016,March,10,20,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,F,0,No Deposit,13.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-04-03 -City Hotel,1,228,2016,February,10,23,0,2,2,0.0,0,BB,POL,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,80.75,0,0,Canceled,2018-12-03 -Resort Hotel,0,110,2016,June,43,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,241.0,179.0,0,Transient-Party,91.22,0,0,Check-Out,2019-07-04 -City Hotel,0,113,2016,November,51,9,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,85.01,0,0,Check-Out,2019-06-03 -City Hotel,1,253,2017,June,27,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,71.4,0,0,Canceled,2019-10-04 -City Hotel,1,1,2016,August,28,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.33,0,1,Canceled,2019-03-04 -Resort Hotel,0,11,2016,March,18,31,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,222.0,0,Transient-Party,39.18,0,0,Check-Out,2019-04-03 -City Hotel,1,48,2017,March,33,20,2,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.89,0,1,Canceled,2020-03-03 -City Hotel,1,105,2016,May,19,20,4,10,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,102.13,0,0,Canceled,2019-01-03 -City Hotel,0,0,2016,September,8,9,0,1,1,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,C,0,No Deposit,11.0,49.0,0,Transient-Party,35.03,0,0,Check-Out,2019-02-01 -Resort Hotel,0,156,2017,July,29,21,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,176.71,0,0,Canceled,2020-07-03 -Resort Hotel,0,1,2015,August,34,21,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,19.0,179.0,0,Transient,214.16,1,0,Check-Out,2018-06-02 -City Hotel,0,16,2017,March,10,13,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,107.56,0,1,Check-Out,2020-02-01 -Resort Hotel,0,329,2017,June,24,11,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.64,0,0,Check-Out,2020-01-04 -City Hotel,0,147,2016,October,27,27,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,85.05,0,0,Check-Out,2019-05-04 -Resort Hotel,0,152,2017,April,16,16,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,91.93,0,0,Check-Out,2019-03-04 -Resort Hotel,0,60,2017,March,10,2,4,6,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,218.93,1,1,Check-Out,2020-04-02 -Resort Hotel,1,61,2016,March,22,18,2,7,2,0.0,0,BB,CHE,Online TA,TA/TO,0,1,0,A,F,0,No Deposit,243.0,179.0,0,Transient,46.83,0,0,Canceled,2019-02-01 -Resort Hotel,0,2,2017,March,10,21,2,5,2,0.0,0,HB,GBR,Groups,Corporate,1,0,1,E,I,1,No Deposit,9.0,179.0,75,Transient-Party,82.13,1,1,Check-Out,2020-02-01 -City Hotel,1,49,2017,February,11,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,37.84,0,0,Canceled,2019-11-03 -Resort Hotel,0,205,2016,October,46,31,0,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,3,Refundable,15.0,222.0,0,Transient-Party,50.38,0,0,Check-Out,2019-07-04 -Resort Hotel,0,253,2017,August,36,18,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,2020-07-03 -City Hotel,0,12,2015,October,44,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,77.09,0,0,Check-Out,2018-09-02 -City Hotel,0,125,2017,April,17,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,171.38,0,1,Check-Out,2020-01-04 -Resort Hotel,1,209,2016,August,35,12,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,203.53,0,0,Canceled,2019-06-03 -Resort Hotel,1,175,2017,August,37,21,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,145.89,0,0,Canceled,2020-06-02 -Resort Hotel,0,155,2017,June,26,2,2,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,180.0,179.0,0,Transient,134.54,0,1,Check-Out,2020-02-01 -City Hotel,0,301,2017,July,32,2,2,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,0,Transient,128.56,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2016,January,9,15,1,0,1,0.0,0,BB,,Online TA,Direct,0,0,0,D,B,0,No Deposit,12.0,179.0,0,Transient,96.71,0,0,No-Show,2018-12-03 -City Hotel,1,40,2017,April,17,2,0,1,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.34,0,1,Canceled,2020-02-01 -City Hotel,1,204,2016,November,50,12,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.89,0,0,Canceled,2019-07-04 -City Hotel,1,254,2017,May,22,28,0,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,98.56,0,0,Canceled,2020-02-01 -Resort Hotel,0,94,2016,April,24,24,2,5,2,0.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,99.06,0,0,Check-Out,2019-06-03 -City Hotel,0,294,2015,August,31,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.57,0,0,Check-Out,2017-11-02 -Resort Hotel,0,12,2016,July,31,24,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,88.84,1,2,Check-Out,2019-07-04 -City Hotel,0,50,2015,November,53,9,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,93.5,1,0,Check-Out,2018-11-02 -City Hotel,0,138,2016,July,28,20,0,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.33,0,1,Check-Out,2019-05-04 -City Hotel,1,50,2016,October,37,21,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,115.5,0,0,Canceled,2019-07-04 -Resort Hotel,0,1,2016,September,16,10,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,36.78,0,0,Check-Out,2019-03-04 -Resort Hotel,1,178,2017,June,17,22,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,84.12,0,2,Canceled,2019-10-04 -City Hotel,0,2,2015,October,46,2,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,L,0,No Deposit,15.0,265.0,0,Transient-Party,36.19,0,0,Check-Out,2018-09-02 -Resort Hotel,0,51,2015,July,31,2,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,246.0,179.0,0,Transient-Party,240.43,0,1,Check-Out,2018-06-02 -City Hotel,0,11,2016,December,53,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.36,0,2,Check-Out,2019-11-03 -City Hotel,1,41,2017,March,17,5,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,A,0,Non Refund,29.0,179.0,0,Transient-Party,128.92,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2015,October,51,25,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient-Party,28.36,0,0,Check-Out,2018-08-03 -City Hotel,0,112,2017,March,16,24,0,2,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,66.04,0,1,Check-Out,2020-02-01 -City Hotel,0,1,2016,January,3,2,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,82.6,0,1,Check-Out,2019-05-04 -Resort Hotel,1,46,2017,March,10,8,1,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,68.29,0,0,Canceled,2020-01-04 -Resort Hotel,0,43,2016,March,10,15,2,7,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,166.0,179.0,0,Transient,63.62,0,0,Check-Out,2019-02-01 -City Hotel,1,92,2015,September,43,26,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,146.0,0,2,Canceled,2018-08-03 -Resort Hotel,0,104,2017,March,18,7,2,5,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,68.99,0,1,Check-Out,2020-03-03 -City Hotel,1,272,2017,July,30,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,209.7,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,February,11,13,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,69.46,0,1,Check-Out,2018-12-03 -City Hotel,1,296,2017,May,22,5,1,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,313.0,179.0,0,Transient,121.9,0,0,Canceled,2020-03-03 -City Hotel,0,95,2017,June,19,13,1,0,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.52,0,1,Check-Out,2020-07-03 -City Hotel,0,42,2016,April,44,21,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.78,0,0,Check-Out,2019-04-03 -Resort Hotel,0,152,2016,August,33,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,239.0,179.0,0,Transient,155.9,1,2,Check-Out,2019-05-04 -City Hotel,0,5,2016,October,43,17,1,1,2,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,78.54,0,0,Check-Out,2019-09-03 -City Hotel,0,16,2017,March,11,19,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,9.0,179.0,0,Transient,136.44,0,1,Check-Out,2019-11-03 -City Hotel,1,100,2015,July,42,9,2,2,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Contract,62.42,0,1,Canceled,2018-05-03 -Resort Hotel,1,88,2016,July,27,28,2,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,238.0,179.0,0,Transient,72.61,1,3,Canceled,2019-06-03 -City Hotel,1,53,2015,December,51,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,58.85,0,0,Canceled,2018-07-03 -City Hotel,1,23,2016,January,4,21,1,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,19.0,179.0,0,Transient,67.21,0,0,No-Show,2018-11-02 -Resort Hotel,0,0,2017,February,10,6,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,38.58,1,0,Check-Out,2020-01-04 -City Hotel,0,17,2017,May,25,9,2,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,93.0,179.0,0,Transient,136.81,0,0,Check-Out,2020-06-02 -City Hotel,0,143,2015,December,53,29,0,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,37.0,179.0,0,Transient-Party,62.26,0,0,Check-Out,2019-10-04 -Resort Hotel,0,43,2017,August,38,15,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,245.0,179.0,0,Transient-Party,182.4,1,0,Check-Out,2020-01-04 -Resort Hotel,0,3,2016,March,18,11,2,0,1,0.0,0,BB,SWE,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,68.94,0,0,Check-Out,2019-01-03 -Resort Hotel,0,125,2016,August,37,28,1,3,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,166.53,0,3,Check-Out,2019-06-03 -City Hotel,1,93,2016,April,18,20,0,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.18,0,0,Canceled,2019-02-01 -City Hotel,1,37,2016,October,46,25,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.28,0,0,Canceled,2019-08-04 -Resort Hotel,0,211,2016,March,23,31,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,72.92,0,0,Check-Out,2019-06-03 -Resort Hotel,0,13,2016,February,27,20,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,63.1,0,0,Check-Out,2018-11-02 -City Hotel,0,9,2016,January,3,28,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,60.92,0,2,Check-Out,2018-11-02 -City Hotel,0,149,2016,May,27,16,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,125.89,0,1,Check-Out,2019-05-04 -City Hotel,0,163,2016,May,28,31,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,93.35,0,2,Check-Out,2019-02-01 -Resort Hotel,0,3,2015,December,51,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,35.38,0,0,Check-Out,2018-11-02 -City Hotel,0,135,2015,November,53,6,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,36.0,179.0,0,Contract,60.67,0,0,Check-Out,2018-09-02 -City Hotel,0,34,2016,October,49,10,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,154.74,0,2,Check-Out,2019-09-03 -City Hotel,0,306,2017,August,32,15,2,5,2,0.0,0,BB,SWE,Undefined,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,49.52,0,1,Check-Out,2020-07-03 -Resort Hotel,0,53,2016,February,10,21,1,0,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,I,3,No Deposit,11.0,179.0,0,Transient-Party,62.99,0,0,Check-Out,2019-10-04 -City Hotel,1,43,2015,October,45,2,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,59.67,0,0,Canceled,2018-10-03 -Resort Hotel,1,245,2015,October,44,12,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,D,0,Non Refund,15.0,179.0,0,Transient,79.26,0,0,Canceled,2018-06-02 -City Hotel,0,45,2016,July,30,8,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,124.27,0,2,Check-Out,2019-05-04 -Resort Hotel,1,96,2016,July,35,13,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,A,E,0,No Deposit,239.0,179.0,0,Transient,80.77,0,1,Canceled,2019-06-03 -Resort Hotel,1,2,2016,October,28,27,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,73.84,0,0,Canceled,2019-05-04 -City Hotel,0,8,2017,May,22,20,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,61.27,0,0,Check-Out,2020-04-02 -Resort Hotel,1,201,2016,January,10,24,2,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,41.0,179.0,0,Transient,70.27,0,0,Canceled,2019-02-01 -Resort Hotel,0,6,2016,March,12,16,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,224.0,0,Transient,85.84,0,0,Check-Out,2019-06-03 -Resort Hotel,0,21,2016,December,53,22,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,229.35,1,3,Check-Out,2019-09-03 -Resort Hotel,0,39,2016,June,36,23,0,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,18.0,179.0,0,Transient,198.21,0,0,Check-Out,2020-06-02 -Resort Hotel,0,95,2016,August,36,15,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,116.16,0,1,Check-Out,2019-06-03 -Resort Hotel,1,86,2016,February,10,21,2,5,2,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,36.62,0,2,No-Show,2018-11-02 -Resort Hotel,0,0,2015,July,33,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,60.29,1,0,Check-Out,2018-06-02 -City Hotel,1,86,2016,July,31,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,116.73,0,0,Canceled,2018-11-02 -Resort Hotel,0,49,2017,February,9,16,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient-Party,37.73,1,0,Check-Out,2020-01-04 -City Hotel,1,98,2015,December,53,9,0,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,F,A,0,No Deposit,14.0,179.0,0,Transient,105.2,0,0,Canceled,2018-10-03 -City Hotel,0,101,2016,March,18,13,2,5,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,118.74,0,2,Check-Out,2019-04-03 -Resort Hotel,1,312,2016,March,9,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,3.0,223.0,0,Transient-Party,61.98,0,0,Canceled,2019-02-01 -City Hotel,1,379,2016,March,27,28,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,41,Transient,74.58,0,0,Canceled,2018-11-02 -Resort Hotel,0,39,2016,August,38,2,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,242.0,179.0,0,Transient,205.71,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,October,37,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.79,0,0,Check-Out,2019-09-03 -Resort Hotel,1,9,2017,February,9,28,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,77.0,73.0,0,Transient,71.05,0,0,Canceled,2019-12-04 -City Hotel,1,330,2016,September,34,21,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.91,0,0,Canceled,2019-03-04 -City Hotel,1,49,2015,July,33,4,2,1,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,122.6,0,0,Canceled,2018-06-02 -City Hotel,1,254,2015,November,37,12,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.64,0,0,Canceled,2018-08-03 -City Hotel,0,281,2017,August,36,16,2,3,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,116.4,1,0,Check-Out,2020-07-03 -Resort Hotel,0,2,2016,November,9,30,2,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,44.97,0,0,Check-Out,2018-12-03 -City Hotel,0,46,2017,June,21,14,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.04,0,2,Check-Out,2020-01-04 -City Hotel,1,15,2016,February,9,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,71.0,76.0,42,Transient,61.28,0,0,Canceled,2018-10-03 -Resort Hotel,0,160,2017,June,27,17,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Contract,68.2,0,1,Check-Out,2019-09-03 -City Hotel,1,37,2017,August,35,4,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,Refundable,8.0,179.0,0,Transient,215.13,0,0,Canceled,2019-09-03 -City Hotel,1,48,2015,July,33,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.27,0,0,Canceled,2018-01-03 -Resort Hotel,0,26,2017,March,10,12,2,0,2,0.0,0,BB,POL,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,180.0,179.0,0,Transient,40.04,0,0,Check-Out,2019-10-04 -City Hotel,1,36,2017,June,27,29,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,90.31,0,0,Canceled,2020-04-02 -City Hotel,0,25,2015,July,26,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.64,0,0,Check-Out,2017-11-02 -City Hotel,1,226,2017,August,37,17,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,61.6,0,0,Canceled,2020-04-02 -Resort Hotel,0,0,2016,February,9,14,0,1,1,0.0,0,BB,GBR,Corporate,TA/TO,1,1,1,A,B,1,No Deposit,240.0,179.0,0,Group,61.14,0,1,Check-Out,2019-02-01 -City Hotel,1,150,2015,August,40,23,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,87.24,0,0,Canceled,2018-08-03 -City Hotel,0,97,2017,April,17,24,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient-Party,124.07,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2015,September,41,30,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,118.03,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2017,May,19,26,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.52,0,0,Check-Out,2020-04-02 -Resort Hotel,1,54,2016,May,22,15,0,5,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,H,0,Non Refund,249.0,179.0,0,Transient,83.15,0,2,Canceled,2019-08-04 -City Hotel,0,2,2016,January,5,21,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,12.0,179.0,0,Transient,90.2,0,2,Check-Out,2019-10-04 -City Hotel,0,12,2016,December,53,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,9.0,179.0,0,Group,78.68,0,1,Check-Out,2019-08-04 -City Hotel,0,137,2017,April,18,10,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,116.47,0,0,Check-Out,2019-12-04 -City Hotel,0,2,2016,February,10,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,10.0,45.0,0,Transient,60.14,0,0,Check-Out,2019-01-03 -Resort Hotel,0,207,2017,August,36,2,0,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,166.5,0,1,Check-Out,2020-06-02 -Resort Hotel,1,108,2016,April,15,8,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,126.41,0,0,Canceled,2019-01-03 -City Hotel,1,57,2017,January,9,29,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,72.9,0,0,Canceled,2019-10-04 -City Hotel,0,20,2016,September,43,9,0,4,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,122.43,0,0,Check-Out,2019-06-03 -City Hotel,1,152,2017,March,16,30,0,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.7,0,0,Canceled,2020-04-02 -City Hotel,0,0,2016,November,45,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,15.0,229.0,0,Transient,62.35,0,0,Check-Out,2019-07-04 -City Hotel,0,37,2016,April,15,4,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,9.0,179.0,0,Transient,85.88,0,0,Check-Out,2019-06-03 -City Hotel,0,197,2015,August,37,16,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,175.84,0,3,Check-Out,2018-04-02 -City Hotel,1,159,2017,March,9,27,2,2,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,131.2,0,0,Canceled,2019-10-04 -Resort Hotel,0,165,2016,April,15,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,C,C,1,Refundable,13.0,222.0,0,Transient-Party,99.8,0,0,Check-Out,2019-03-04 -City Hotel,1,17,2016,December,52,5,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,65.07,0,1,Canceled,2018-12-03 -City Hotel,1,114,2016,September,39,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,89.16,0,0,Canceled,2018-08-03 -Resort Hotel,1,61,2015,November,45,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.13,0,1,Canceled,2018-08-03 -Resort Hotel,1,0,2017,January,2,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,59.78,0,0,Canceled,2019-10-04 -Resort Hotel,0,140,2016,July,34,28,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,211.19,0,0,Check-Out,2018-06-02 -Resort Hotel,1,198,2016,September,36,16,2,5,2,1.0,0,FB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,84.03,0,0,Canceled,2019-08-04 -City Hotel,1,49,2017,February,10,27,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.91,0,0,Canceled,2019-10-04 -City Hotel,0,3,2016,May,22,8,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,3.17,0,0,Check-Out,2019-10-04 -City Hotel,0,15,2016,August,46,6,1,1,1,0.0,0,BB,BRA,Aviation,Corporate,0,0,0,D,F,0,No Deposit,14.0,165.0,0,Transient,120.54,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2016,June,26,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,E,0,No Deposit,12.0,179.0,0,Group,71.33,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2017,February,10,25,0,1,1,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,82.1,0,0,Check-Out,2020-02-01 -City Hotel,0,242,2015,October,43,21,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Contract,62.22,0,1,Check-Out,2018-08-03 -City Hotel,0,411,2015,September,36,15,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,123.97,0,1,Check-Out,2018-08-03 -Resort Hotel,0,20,2015,October,50,28,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,58.45,0,0,Check-Out,2018-09-02 -Resort Hotel,0,41,2017,July,29,29,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,83.58,0,0,Check-Out,2020-06-02 -City Hotel,1,437,2017,May,21,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.06,0,0,Canceled,2019-11-03 -Resort Hotel,0,1,2017,March,16,6,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,I,0,No Deposit,245.0,179.0,0,Transient,0.15,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2017,March,10,13,2,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,64.92,0,1,Check-Out,2020-04-02 -City Hotel,1,101,2016,June,26,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,194.71,0,0,Canceled,2019-04-03 -City Hotel,0,140,2016,May,22,28,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.15,1,0,Check-Out,2019-03-04 -City Hotel,0,34,2015,September,45,2,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Contract,60.17,0,0,Check-Out,2018-09-02 -City Hotel,1,372,2017,May,21,20,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,74.67,0,0,Canceled,2020-04-02 -Resort Hotel,0,0,2016,February,10,24,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,203.0,179.0,0,Transient,59.16,0,0,Check-Out,2019-02-01 -Resort Hotel,0,95,2015,March,9,10,0,1,2,0.0,0,HB,FRA,Groups,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,103.9,1,1,Check-Out,2018-12-03 -City Hotel,1,202,2016,September,10,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,68.07,0,0,Canceled,2018-11-02 -Resort Hotel,0,9,2016,December,3,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,60.71,1,0,Check-Out,2019-06-03 -City Hotel,0,144,2016,October,51,24,2,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,300.0,179.0,0,Transient-Party,72.99,0,0,Check-Out,2018-08-03 -City Hotel,0,24,2015,October,46,28,2,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,14.0,179.0,0,Transient-Party,65.41,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2017,March,16,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,I,2,No Deposit,178.0,179.0,0,Transient,0.97,0,0,Check-Out,2020-06-02 -Resort Hotel,0,256,2016,October,45,12,4,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,76.9,0,0,Check-Out,2019-07-04 -City Hotel,1,48,2016,March,18,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,1.0,179.0,0,Transient,61.44,0,0,Canceled,2018-11-02 -City Hotel,0,41,2016,April,18,29,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,82.74,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2015,October,44,28,0,2,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,141.18,0,0,Check-Out,2018-07-03 -City Hotel,0,126,2016,September,40,21,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.2,0,0,Check-Out,2019-05-04 -City Hotel,1,195,2016,September,25,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,41,Transient,73.87,0,0,Canceled,2019-06-03 -City Hotel,0,104,2015,October,51,17,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,129.0,179.0,0,Group,60.8,1,1,Check-Out,2018-09-02 -Resort Hotel,0,30,2017,December,50,27,2,5,1,0.0,0,HB,POL,Offline TA/TO,Corporate,0,0,0,A,C,2,No Deposit,194.0,179.0,0,Transient,86.2,0,0,Check-Out,2020-01-04 -Resort Hotel,0,168,2017,May,22,31,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,222.0,0,Transient,92.18,0,0,Check-Out,2020-05-03 -City Hotel,0,153,2017,June,30,9,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,114.85,0,2,Check-Out,2020-06-02 -Resort Hotel,0,20,2016,August,32,15,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,63.39,1,0,Check-Out,2018-11-02 -Resort Hotel,0,86,2016,December,53,20,2,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,D,E,0,No Deposit,91.0,179.0,20,Transient-Party,99.3,0,0,Check-Out,2019-10-04 -City Hotel,1,246,2016,May,21,24,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,185.0,179.0,0,Transient,59.68,0,0,Canceled,2019-02-01 -City Hotel,1,313,2017,August,38,14,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,94.59,0,0,Canceled,2018-01-03 -Resort Hotel,0,91,2016,August,36,31,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,191.99,1,2,Check-Out,2019-04-03 -City Hotel,1,172,2016,October,44,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,2,Non Refund,23.0,179.0,0,Transient,65.37,0,0,Canceled,2018-11-02 -Resort Hotel,1,114,2017,July,33,16,0,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,243.0,179.0,0,Transient,203.03,0,1,Canceled,2020-03-03 -City Hotel,1,46,2016,August,35,24,1,2,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,94.68,0,0,Canceled,2018-08-03 -City Hotel,0,2,2017,June,23,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,60.0,0,Transient,61.58,0,0,Check-Out,2019-12-04 -Resort Hotel,0,36,2017,January,12,25,1,4,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,9.0,179.0,0,Transient,196.0,0,0,Check-Out,2020-03-03 -City Hotel,1,309,2015,July,31,22,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,63.9,0,2,Canceled,2018-06-02 -City Hotel,0,17,2016,December,50,5,2,1,2,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,203.0,179.0,0,Transient,69.79,0,0,Check-Out,2019-11-03 -Resort Hotel,1,1,2017,March,9,17,0,1,1,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,I,1,No Deposit,189.0,179.0,0,Transient-Party,68.47,1,0,Canceled,2020-01-04 -Resort Hotel,0,160,2016,December,51,9,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,250.0,179.0,0,Transient,155.12,1,0,Check-Out,2018-11-02 -City Hotel,0,0,2016,August,36,17,0,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,215.81,0,1,Check-Out,2019-04-03 -City Hotel,0,1,2015,August,36,24,1,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,97.73,0,0,Check-Out,2018-06-02 -City Hotel,1,413,2016,October,44,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.96,0,0,Canceled,2018-01-03 -City Hotel,1,176,2017,May,22,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Group,78.29,0,0,Canceled,2019-02-01 -Resort Hotel,0,300,2015,September,40,24,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,83.0,179.0,0,Transient-Party,62.66,0,1,Check-Out,2018-08-03 -City Hotel,0,34,2016,August,25,25,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,0,Transient-Party,62.15,0,0,Check-Out,2019-03-04 -City Hotel,0,97,2016,November,34,14,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,75,Transient,110.84,0,0,Check-Out,2020-07-03 -Resort Hotel,0,11,2016,September,44,13,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,77.19,0,0,Check-Out,2019-08-04 -Resort Hotel,0,145,2016,February,10,21,1,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,32.0,223.0,0,Transient,71.59,0,0,Check-Out,2019-12-04 -City Hotel,1,419,2017,April,18,14,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,102.93,0,0,Canceled,2020-02-01 -City Hotel,0,2,2017,May,20,13,0,1,3,0.0,0,BB,SWE,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,150.61,0,0,Check-Out,2020-01-04 -Resort Hotel,0,148,2016,March,10,10,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,Refundable,12.0,179.0,0,Transient-Party,40.2,0,0,Check-Out,2019-02-01 -Resort Hotel,1,251,2017,February,8,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,65.49,0,0,Canceled,2020-05-03 -Resort Hotel,1,297,2017,May,21,18,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,146.68,0,1,Canceled,2020-01-04 -City Hotel,0,44,2017,March,9,15,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,64.09,0,0,Check-Out,2020-03-03 -City Hotel,0,154,2016,May,20,15,2,4,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,238.0,179.0,0,Transient,116.86,0,2,Canceled,2019-02-01 -Resort Hotel,0,0,2016,April,17,19,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient,25.41,0,0,Check-Out,2019-02-01 -City Hotel,0,92,2017,April,23,10,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.74,0,0,Check-Out,2020-04-02 -Resort Hotel,0,88,2016,July,27,24,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,78.15,0,2,Check-Out,2019-02-01 -City Hotel,0,20,2017,August,4,14,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,225.24,0,2,Check-Out,2019-11-03 -City Hotel,1,354,2016,October,44,10,2,2,3,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,75,Transient,90.35,0,0,Canceled,2017-12-03 -City Hotel,0,0,2016,December,4,6,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,36.0,179.0,0,Transient,62.13,0,1,Check-Out,2018-10-03 -Resort Hotel,0,48,2015,July,40,30,1,3,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,C,2,No Deposit,247.0,179.0,0,Transient,36.6,0,0,Check-Out,2018-11-02 -City Hotel,1,97,2016,October,19,2,0,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,106.74,0,0,Canceled,2019-12-04 -Resort Hotel,1,203,2017,August,26,28,2,5,3,1.0,0,BB,,Direct,Direct,0,0,0,H,H,0,No Deposit,251.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -City Hotel,0,15,2016,September,37,6,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,114.88,0,2,Check-Out,2019-05-04 -City Hotel,0,0,2017,February,15,10,0,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.59,0,0,Canceled,2020-03-03 -Resort Hotel,0,66,2016,December,53,9,2,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,92.51,0,1,Check-Out,2019-07-04 -City Hotel,1,3,2016,June,27,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,124.28,0,0,No-Show,2019-02-01 -Resort Hotel,1,14,2017,August,35,22,2,10,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,150.0,179.0,0,Transient,179.62,1,1,Check-Out,2020-03-03 -City Hotel,1,242,2016,May,22,16,0,2,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,316.0,179.0,64,Transient,74.95,0,0,Canceled,2019-06-03 -City Hotel,1,57,2017,May,22,18,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,11.0,179.0,0,Transient,152.7,0,0,Canceled,2019-11-03 -City Hotel,0,37,2016,June,44,22,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,102.11,0,1,Check-Out,2019-07-04 -Resort Hotel,1,21,2017,February,10,9,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,C,A,0,Non Refund,11.0,179.0,0,Transient,79.57,0,0,Canceled,2019-09-03 -Resort Hotel,0,40,2017,March,11,12,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,F,F,0,No Deposit,19.0,179.0,0,Transient,123.99,0,0,Check-Out,2019-08-04 -Resort Hotel,0,146,2016,June,22,30,0,3,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,82.04,0,1,Check-Out,2019-06-03 -City Hotel,1,248,2015,July,32,31,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,60.74,0,1,Canceled,2018-06-02 -City Hotel,1,1,2016,August,27,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,71.74,0,0,Canceled,2018-12-03 -City Hotel,1,29,2016,July,34,18,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,1,1,1,E,E,1,No Deposit,15.0,179.0,0,Transient,64.01,0,0,Canceled,2020-03-03 -City Hotel,1,384,2015,May,23,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,61.47,0,0,Canceled,2017-12-03 -City Hotel,1,344,2015,September,44,30,0,5,2,0.0,0,HB,PRT,Groups,TA/TO,1,1,0,A,A,1,Non Refund,1.0,179.0,0,Transient-Party,43.24,0,0,Canceled,2017-12-03 -City Hotel,0,90,2016,May,21,16,2,2,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,145.53,0,1,Check-Out,2019-04-03 -City Hotel,0,9,2016,June,25,31,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.25,0,1,Check-Out,2019-03-04 -City Hotel,1,254,2017,September,44,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.83,0,0,Canceled,2019-11-03 -City Hotel,0,36,2015,September,40,31,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,2.0,179.0,63,Transient-Party,60.19,0,0,Check-Out,2018-08-03 -Resort Hotel,0,160,2016,October,45,31,2,7,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,61.19,0,3,Check-Out,2019-12-04 -City Hotel,1,241,2016,July,30,27,2,3,1,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.56,0,2,Canceled,2019-05-04 -Resort Hotel,0,141,2016,March,16,29,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,3.0,223.0,0,Transient,82.3,0,0,Check-Out,2019-03-04 -City Hotel,1,192,2016,April,23,6,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,110.44,0,2,Canceled,2019-11-03 -Resort Hotel,1,6,2016,July,32,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,236.0,179.0,0,Transient,149.41,0,2,Canceled,2018-05-03 -City Hotel,1,4,2015,November,51,5,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,6.0,179.0,0,Transient,72.27,0,1,Canceled,2018-12-03 -City Hotel,1,29,2017,May,23,3,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,27.81,0,0,Canceled,2020-04-02 -Resort Hotel,0,48,2016,December,50,12,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,75.83,0,0,Check-Out,2018-12-03 -Resort Hotel,0,207,2016,October,44,14,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,31.0,179.0,0,Transient,62.92,0,1,Check-Out,2019-12-04 -Resort Hotel,0,5,2016,May,24,25,4,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,42.7,0,0,Check-Out,2019-03-04 -Resort Hotel,0,153,2017,June,27,17,4,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,248.0,179.0,0,Transient,168.1,0,0,Check-Out,2020-06-02 -Resort Hotel,0,53,2015,November,52,28,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,247.0,179.0,0,Transient,23.46,0,3,Check-Out,2018-11-02 -City Hotel,0,116,2015,July,34,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,1,No Deposit,1.0,179.0,0,Transient-Party,84.28,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,May,23,9,1,1,3,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,218.51,0,0,Check-Out,2019-02-01 -City Hotel,0,38,2017,April,18,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,72.33,0,0,Check-Out,2020-03-03 -City Hotel,0,3,2015,November,44,24,1,1,1,0.0,0,BB,POL,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,82.73,0,0,Check-Out,2019-09-03 -City Hotel,0,5,2016,August,38,20,0,3,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,231.84,0,2,Check-Out,2020-05-03 -City Hotel,1,405,2017,June,10,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,42,Transient,126.07,0,0,Canceled,2018-12-03 -Resort Hotel,1,289,2016,March,22,21,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,59.82,0,0,Canceled,2019-02-01 -City Hotel,1,13,2016,September,45,10,1,3,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,92.59,0,0,Canceled,2019-07-04 -Resort Hotel,1,146,2016,October,44,9,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,30.43,0,2,No-Show,2019-07-04 -City Hotel,1,96,2017,June,29,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,40,Transient,154.35,0,0,Canceled,2020-04-02 -Resort Hotel,1,41,2016,March,10,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,78.0,179.0,0,Transient,119.98,0,0,Canceled,2018-10-03 -City Hotel,1,219,2015,September,46,27,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,82.82,0,2,Canceled,2018-08-03 -City Hotel,1,250,2017,July,29,21,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.62,0,1,Canceled,2020-04-02 -City Hotel,0,0,2016,March,45,27,0,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,210.16,0,0,Check-Out,2019-03-04 -Resort Hotel,0,47,2016,August,38,10,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,293.0,179.0,0,Transient,148.23,0,0,Check-Out,2019-05-04 -Resort Hotel,0,9,2016,July,35,18,1,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,166.05,1,0,Check-Out,2019-04-03 -Resort Hotel,1,156,2016,July,34,6,2,5,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,121.85,0,3,Canceled,2019-04-03 -City Hotel,1,430,2015,September,45,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.88,0,0,Canceled,2018-08-03 -Resort Hotel,0,3,2016,January,10,12,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,39.05,0,1,Check-Out,2018-11-02 -City Hotel,0,0,2016,August,27,17,0,1,1,0.0,0,SC,PRT,Direct,Direct,1,0,0,C,K,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -Resort Hotel,0,39,2016,November,43,9,0,2,2,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,133.06,0,0,Check-Out,2019-06-03 -City Hotel,0,8,2017,December,53,18,1,1,2,1.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,102.62,0,1,Check-Out,2019-11-03 -Resort Hotel,1,88,2016,February,14,28,1,1,1,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,80.46,0,0,Canceled,2019-06-03 -City Hotel,0,22,2016,April,19,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,206.69,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2015,August,22,17,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,61.58,0,0,Check-Out,2018-09-02 -City Hotel,0,8,2015,October,45,21,0,1,1,0.0,0,BB,AUT,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,8.0,74.0,0,Transient-Party,101.06,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2015,July,32,5,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,249.0,179.0,0,Transient,73.85,0,0,Check-Out,2018-05-03 -Resort Hotel,0,2,2016,May,21,10,0,2,2,0.0,0,BB,,Direct,Direct,1,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient,105.09,1,0,Check-Out,2019-06-03 -Resort Hotel,0,75,2015,November,41,13,4,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,160.51,0,2,Check-Out,2019-08-04 -City Hotel,1,406,2015,August,37,26,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.95,0,0,Canceled,2017-12-03 -City Hotel,1,14,2016,July,31,30,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,1,0,A,A,1,No Deposit,11.0,179.0,0,Transient,101.17,0,2,Canceled,2018-06-02 -City Hotel,1,296,2016,July,21,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,148.08,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,January,10,18,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,63.91,0,2,Check-Out,2019-10-04 -Resort Hotel,0,18,2015,December,50,28,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,160.95,1,0,Check-Out,2018-11-02 -City Hotel,0,58,2016,August,38,27,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,123.6,0,2,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,April,16,25,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,42.06,0,0,Check-Out,2019-03-04 -Resort Hotel,0,300,2015,October,43,17,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Contract,32.44,0,1,Check-Out,2018-08-03 -City Hotel,1,43,2017,August,36,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,83.45,0,1,Canceled,2019-12-04 -City Hotel,0,10,2016,October,45,18,1,0,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,176.0,0,Transient,172.18,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,January,44,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,35.69,0,0,Check-Out,2019-11-03 -Resort Hotel,0,49,2015,December,51,21,1,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,76.35,0,0,Check-Out,2018-09-02 -City Hotel,1,49,2017,May,36,29,2,3,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,212.66,0,3,Canceled,2020-03-03 -Resort Hotel,0,2,2017,February,10,7,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,323.0,179.0,0,Transient,39.35,0,0,Check-Out,2019-10-04 -Resort Hotel,0,164,2016,May,27,5,1,7,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient-Party,120.65,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2015,October,43,17,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,94.88,0,0,Check-Out,2019-09-03 -City Hotel,0,377,2015,August,37,13,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,64.41,0,0,Check-Out,2018-06-02 -City Hotel,1,153,2017,August,32,15,2,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,159.38,0,1,Canceled,2020-07-03 -Resort Hotel,1,283,2017,May,20,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,234.0,179.0,0,Transient,95.84,0,0,Canceled,2020-03-03 -City Hotel,1,256,2017,July,27,15,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,111.23,0,0,Canceled,2019-05-04 -Resort Hotel,0,2,2017,January,4,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,16.0,267.0,0,Transient,40.58,0,1,Check-Out,2019-10-04 -Resort Hotel,0,5,2015,September,34,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-05-03 -City Hotel,0,20,2016,June,34,28,2,5,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,7.0,179.0,0,Transient,216.97,0,3,Check-Out,2018-06-02 -Resort Hotel,0,12,2016,March,9,25,2,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,138.0,179.0,0,Transient,72.25,0,0,Check-Out,2019-01-03 -Resort Hotel,0,2,2015,August,38,8,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,243.0,179.0,0,Transient,46.15,0,0,Check-Out,2018-05-03 -City Hotel,0,6,2015,August,26,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,11.0,77.0,0,Transient,116.15,0,0,Check-Out,2019-06-03 -City Hotel,1,102,2017,June,23,29,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,112.53,0,0,Canceled,2019-12-04 -Resort Hotel,0,2,2015,July,8,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,44.17,0,1,Check-Out,2019-02-01 -City Hotel,1,52,2015,July,33,28,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.47,0,0,Canceled,2018-06-02 -City Hotel,1,2,2016,September,38,21,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,2.08,0,0,Canceled,2019-08-04 -City Hotel,0,16,2016,August,41,21,0,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,204.94,0,2,Check-Out,2019-09-03 -Resort Hotel,0,157,2017,August,37,21,2,7,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,42.0,179.0,0,Transient,63.36,0,0,Check-Out,2019-11-03 -City Hotel,1,315,2016,June,23,28,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,80.33,0,0,Canceled,2019-02-01 -City Hotel,1,14,2017,May,23,31,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.25,0,1,Canceled,2019-12-04 -City Hotel,0,199,2016,March,10,6,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient-Party,111.68,0,2,Check-Out,2018-11-02 -City Hotel,0,98,2016,December,50,27,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,185.0,179.0,0,Transient-Party,64.59,0,0,Check-Out,2019-11-03 -City Hotel,0,16,2017,March,16,7,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.17,0,2,Check-Out,2020-04-02 -Resort Hotel,0,40,2016,March,18,28,2,5,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient-Party,40.08,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2015,October,44,22,0,2,2,0.0,0,BB,SWE,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,88.12,0,2,Check-Out,2018-06-02 -Resort Hotel,0,284,2015,July,30,25,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,99.18,0,0,Check-Out,2018-05-03 -City Hotel,1,25,2017,March,9,24,0,4,1,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,7.0,179.0,0,Contract,88.87,0,0,Canceled,2020-01-04 -City Hotel,0,144,2015,July,31,10,2,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,159.42,0,0,Canceled,2018-06-02 -Resort Hotel,0,48,2016,July,31,6,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-02-01 -Resort Hotel,1,153,2017,April,19,25,2,3,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient,197.18,0,0,Canceled,2020-02-01 -City Hotel,0,41,2017,April,18,28,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,166.7,0,2,Check-Out,2020-03-03 -City Hotel,1,241,2017,July,34,21,2,5,3,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,199.69,0,2,Canceled,2020-04-02 -City Hotel,0,93,2016,April,18,28,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.55,0,2,Check-Out,2019-02-01 -City Hotel,0,38,2016,February,10,6,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,54.74,0,1,Check-Out,2018-10-03 -City Hotel,1,92,2017,June,26,8,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,87.25,0,2,Canceled,2020-03-03 -Resort Hotel,0,111,2017,April,15,10,2,5,3,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,152.31,0,2,Check-Out,2020-02-01 -Resort Hotel,0,102,2016,December,22,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,173.0,179.0,0,Transient-Party,74.72,0,0,Check-Out,2018-12-03 -Resort Hotel,0,311,2017,June,21,11,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,90.44,1,1,Check-Out,2020-07-03 -City Hotel,0,83,2016,May,21,15,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,123.0,179.0,0,Transient-Party,77.75,0,0,Check-Out,2019-03-04 -Resort Hotel,0,2,2017,February,10,18,0,1,1,0.0,0,HB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,269.0,0,Group,42.74,0,0,Check-Out,2020-01-04 -City Hotel,1,444,2015,September,46,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.84,0,0,Canceled,2018-08-03 -Resort Hotel,0,56,2017,February,8,17,2,3,1,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,35.61,0,0,Check-Out,2020-02-01 -Resort Hotel,0,43,2016,October,44,12,1,0,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,C,C,0,No Deposit,360.0,179.0,0,Transient-Party,62.14,0,0,Check-Out,2019-06-03 -City Hotel,1,17,2017,May,23,17,1,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,164.05,0,0,Canceled,2020-06-02 -City Hotel,0,146,2016,October,37,30,1,4,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.47,0,0,No-Show,2019-07-04 -City Hotel,0,3,2017,February,9,2,0,3,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,118.71,0,0,Check-Out,2020-06-02 -City Hotel,1,159,2016,August,41,25,2,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,213.05,0,3,Canceled,2019-08-04 -City Hotel,0,235,2015,July,31,6,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,84.34,0,2,Check-Out,2018-06-02 -City Hotel,1,30,2016,February,10,15,1,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,61.11,0,0,Canceled,2019-10-04 -City Hotel,1,294,2015,July,35,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.98,0,0,Canceled,2018-05-03 -City Hotel,1,45,2017,August,32,30,0,2,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,150.59,0,3,Canceled,2019-12-04 -City Hotel,0,29,2016,July,33,6,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,163.47,0,3,Check-Out,2019-12-04 -City Hotel,1,231,2016,September,36,15,2,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.59,0,0,Canceled,2019-08-04 -Resort Hotel,0,89,2017,May,22,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient-Party,77.26,0,2,Check-Out,2020-04-02 -City Hotel,0,52,2015,October,46,23,0,2,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,82.22,1,1,Check-Out,2019-08-04 -City Hotel,0,42,2016,June,27,20,0,1,3,0.0,0,BB,NLD,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,17,Transient,96.02,0,0,Check-Out,2019-06-03 -City Hotel,1,62,2016,August,36,10,0,4,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient-Party,105.28,0,1,Check-Out,2019-05-04 -City Hotel,1,93,2017,March,16,20,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,75.18,0,0,Canceled,2020-03-03 -Resort Hotel,0,2,2017,January,10,26,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,61.59,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2016,June,28,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,62.08,1,0,Check-Out,2019-02-01 -Resort Hotel,1,24,2017,May,21,6,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,79.6,0,2,Canceled,2020-03-03 -Resort Hotel,1,191,2016,June,31,21,1,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,95.9,0,1,Canceled,2019-02-01 -Resort Hotel,0,252,2015,July,32,24,1,4,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient-Party,100.0,0,0,Check-Out,2018-06-02 -Resort Hotel,1,321,2017,April,15,11,2,5,3,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient-Party,167.45,0,0,Canceled,2020-03-03 -City Hotel,0,145,2017,April,18,22,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,109.61,0,3,Check-Out,2019-11-03 -City Hotel,0,16,2016,August,30,13,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,134.17,0,1,Check-Out,2020-06-02 -City Hotel,1,252,2015,September,37,18,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,116.59,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2015,March,10,21,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,18.0,179.0,0,Transient,105.91,0,0,Check-Out,2018-10-03 -Resort Hotel,0,53,2015,October,44,26,2,7,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,188.0,179.0,0,Transient-Party,23.75,0,0,Check-Out,2018-08-03 -City Hotel,1,157,2017,March,27,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,178.0,179.0,0,Transient,142.88,0,0,Check-Out,2020-03-03 -Resort Hotel,0,93,2017,May,21,4,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,70.81,0,0,Check-Out,2020-01-04 -City Hotel,0,145,2016,November,50,26,1,2,1,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,78.2,0,0,Check-Out,2019-10-04 -Resort Hotel,1,266,2015,August,36,5,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,189.7,0,1,Check-Out,2018-06-02 -City Hotel,1,416,2017,June,21,24,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,160.22,0,1,Canceled,2020-03-03 -Resort Hotel,1,158,2016,May,23,31,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,Refundable,11.0,179.0,0,Transient-Party,119.74,0,0,Canceled,2019-01-03 -City Hotel,0,44,2016,June,28,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,45.0,0,Transient,100.73,1,0,Check-Out,2019-06-03 -City Hotel,1,21,2016,December,49,28,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,206.0,179.0,0,Transient,60.64,0,0,No-Show,2019-10-04 -City Hotel,1,152,2015,September,35,31,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.19,0,0,Canceled,2018-06-02 -City Hotel,0,46,2016,March,10,28,1,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,78.65,0,0,Check-Out,2019-03-04 -Resort Hotel,1,216,2017,August,38,18,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,63.34,0,3,Canceled,2020-04-02 -City Hotel,1,154,2017,July,33,31,2,5,2,1.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,155.0,0,2,Canceled,2020-05-03 -Resort Hotel,0,95,2016,May,26,21,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,A,1,No Deposit,84.0,179.0,0,Transient,74.3,0,0,Check-Out,2019-03-04 -Resort Hotel,0,369,2016,December,50,18,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient-Party,77.74,0,0,Check-Out,2019-12-04 -City Hotel,1,8,2015,December,51,21,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,A,A,0,Non Refund,73.0,179.0,0,Group,40.94,0,0,Canceled,2018-11-02 -City Hotel,1,47,2015,December,44,10,2,2,3,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Canceled,2018-08-03 -Resort Hotel,1,93,2016,March,17,5,2,1,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,102.88,0,0,Canceled,2019-01-03 -Resort Hotel,0,15,2017,July,33,28,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,217.37,0,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2016,February,10,10,1,1,2,0.0,0,BB,USA,Groups,Corporate,0,0,0,A,A,0,No Deposit,323.0,331.0,0,Transient,30.85,0,0,Check-Out,2019-03-04 -City Hotel,1,2,2016,July,26,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.54,0,0,Canceled,2019-10-04 -Resort Hotel,0,12,2017,March,11,16,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,I,1,No Deposit,18.0,223.0,0,Transient,48.83,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2017,March,18,20,0,1,2,0.0,0,HB,PRT,Direct,Corporate,1,0,0,E,I,1,No Deposit,15.0,331.0,0,Transient-Party,4.19,0,0,Check-Out,2020-01-04 -Resort Hotel,0,3,2016,March,12,27,0,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,D,D,1,No Deposit,214.0,331.0,0,Transient-Party,61.28,0,0,Check-Out,2018-12-03 -City Hotel,0,25,2016,October,17,23,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,218.89,0,1,Check-Out,2019-11-03 -Resort Hotel,0,4,2016,October,43,21,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,76.4,0,1,Check-Out,2019-01-03 -City Hotel,1,39,2016,August,50,9,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,A,1,No Deposit,11.0,179.0,0,Transient,102.2,0,1,Canceled,2020-01-04 -City Hotel,0,41,2016,March,10,18,2,2,3,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,184.31,0,2,Check-Out,2019-05-04 -City Hotel,0,34,2017,April,20,21,0,4,1,0.0,0,BB,USA,Corporate,Direct,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,111.27,1,0,Check-Out,2020-03-03 -City Hotel,0,161,2016,October,43,22,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,144.25,0,2,Check-Out,2019-09-03 -City Hotel,0,0,2017,February,10,29,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,122.59,0,1,Check-Out,2019-10-04 -City Hotel,0,0,2015,November,45,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,17.0,244.0,0,Transient,31.95,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2015,July,33,5,2,5,2,0.0,0,BB,SWE,Undefined,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,45.6,0,1,Canceled,2018-07-03 -Resort Hotel,0,177,2017,August,51,27,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,164.0,179.0,0,Transient-Party,60.49,0,0,Check-Out,2020-01-04 -Resort Hotel,0,147,2016,March,12,3,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,A,1,No Deposit,14.0,224.0,0,Transient-Party,39.18,0,0,Check-Out,2019-03-04 -Resort Hotel,0,45,2017,March,12,14,2,0,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,90.4,0,0,Check-Out,2020-03-03 -Resort Hotel,0,77,2016,March,11,15,2,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,F,0,Non Refund,14.0,179.0,0,Transient,75.89,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,July,27,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,62.6,0,0,Check-Out,2018-06-02 -City Hotel,0,16,2016,March,12,28,2,2,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.74,0,0,Check-Out,2018-12-03 -City Hotel,0,12,2015,September,36,15,0,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,121.49,0,0,Check-Out,2018-08-03 -Resort Hotel,0,11,2016,December,53,6,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,43.47,1,3,Check-Out,2019-09-03 -City Hotel,0,11,2017,July,34,27,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,125.43,0,1,Check-Out,2019-03-04 -Resort Hotel,0,16,2016,September,41,12,1,3,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,1,A,H,2,No Deposit,16.0,67.0,0,Transient,91.85,1,2,Check-Out,2019-10-04 -City Hotel,0,44,2017,April,17,16,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.46,0,2,Check-Out,2020-04-02 -Resort Hotel,0,229,2015,October,42,15,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,39.13,0,0,Check-Out,2018-06-02 -Resort Hotel,0,201,2017,January,50,29,0,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,312.0,179.0,0,Transient-Party,77.74,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2017,October,42,5,1,2,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,88.69,0,1,Check-Out,2019-08-04 -City Hotel,1,334,2017,May,22,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,78.96,0,0,Canceled,2019-03-04 -Resort Hotel,1,48,2017,May,9,15,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,238.0,179.0,0,Transient,103.22,0,1,Canceled,2020-03-03 -Resort Hotel,0,25,2016,August,32,9,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Contract,75.48,0,1,Check-Out,2019-04-03 -City Hotel,1,203,2016,August,22,6,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,127.69,0,1,Canceled,2020-03-03 -City Hotel,0,2,2017,August,36,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,126.76,1,1,Check-Out,2020-07-03 -City Hotel,0,92,2017,May,21,14,2,3,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,95.26,0,2,Check-Out,2020-03-03 -Resort Hotel,0,167,2016,July,32,27,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,133.51,0,3,Check-Out,2020-06-02 -City Hotel,1,135,2017,December,53,24,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.53,0,0,Canceled,2019-10-04 -City Hotel,1,146,2017,June,29,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,169.25,0,1,Canceled,2020-06-02 -City Hotel,1,308,2016,August,33,17,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,85.8,0,1,Canceled,2019-05-04 -City Hotel,0,0,2016,November,33,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,18.0,45.0,0,Transient,100.53,1,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,October,40,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,117.43,0,2,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,January,9,28,2,0,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,1.33,0,0,Check-Out,2020-01-04 -Resort Hotel,1,55,2016,September,35,31,0,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,156.84,0,0,Canceled,2019-09-03 -City Hotel,1,421,2017,May,22,5,4,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.19,0,0,Canceled,2019-12-04 -City Hotel,0,4,2017,December,3,11,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.29,0,1,Check-Out,2019-12-04 -City Hotel,1,83,2017,March,15,25,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,20.0,179.0,0,Transient,74.6,0,1,Canceled,2019-02-01 -City Hotel,1,89,2017,July,27,27,0,3,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,116.9,0,2,Canceled,2020-06-02 -City Hotel,0,0,2016,May,21,12,0,1,3,0.0,0,SC,RUS,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,281.0,0,Transient,3.35,0,0,Canceled,2019-05-04 -Resort Hotel,0,184,2016,July,34,2,2,1,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-06-02 -City Hotel,1,136,2016,August,30,20,1,3,2,0.0,0,SC,PRT,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,134.2,0,0,Canceled,2019-11-03 -Resort Hotel,1,0,2017,January,2,28,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,D,D,2,No Deposit,16.0,84.0,0,Transient,86.28,0,0,Canceled,2019-11-03 -City Hotel,1,142,2016,August,11,29,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,35.13,0,1,No-Show,2019-02-01 -Resort Hotel,1,287,2015,August,34,21,2,1,2,0.0,0,BB,PRT,Groups,Undefined,1,1,1,A,A,0,Non Refund,329.0,179.0,0,Group,61.34,0,0,Canceled,2018-05-03 -City Hotel,0,258,2016,October,50,21,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,69.27,1,1,Check-Out,2019-06-03 -City Hotel,1,198,2016,August,16,27,2,5,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,163.5,0,0,Canceled,2018-11-02 -City Hotel,0,1,2017,May,21,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,226.0,0,Transient,87.46,1,0,Check-Out,2019-03-04 -Resort Hotel,0,6,2015,December,53,30,1,3,2,0.0,0,Undefined,ESP,Complementary,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,73.87,0,0,Check-Out,2019-11-03 -City Hotel,0,314,2016,May,22,24,1,2,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,108.42,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,February,4,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,248.0,179.0,0,Transient,33.24,0,0,Check-Out,2018-10-03 -City Hotel,0,10,2015,October,46,28,0,3,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,10.0,255.0,0,Transient-Party,75.01,0,0,Check-Out,2018-09-02 -City Hotel,0,5,2017,July,30,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,173.08,0,1,Check-Out,2020-06-02 -City Hotel,0,20,2016,October,45,30,1,3,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,116.57,0,0,Check-Out,2019-06-03 -City Hotel,0,135,2016,June,37,28,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,131.8,0,0,Canceled,2018-05-03 -City Hotel,0,6,2017,July,27,31,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,220.97,0,3,Check-Out,2020-06-02 -City Hotel,1,85,2016,February,8,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,242.0,179.0,0,Transient,69.8,0,0,No-Show,2019-01-03 -City Hotel,0,47,2016,October,45,28,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,76.42,0,2,Check-Out,2019-08-04 -City Hotel,1,87,2016,April,21,28,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,146.8,0,1,No-Show,2019-03-04 -Resort Hotel,0,98,2017,June,33,10,2,3,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,159.34,1,0,Check-Out,2020-06-02 -Resort Hotel,1,8,2016,March,16,31,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,33.0,179.0,0,Transient-Party,41.49,0,0,Canceled,2019-03-04 -Resort Hotel,0,6,2016,March,9,13,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,331.0,0,Group,23.26,0,0,Check-Out,2019-03-04 -City Hotel,1,1,2017,June,37,15,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,72.93,0,0,Canceled,2020-04-02 -City Hotel,1,396,2015,June,25,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,39,Transient,82.89,0,0,Canceled,2018-08-03 -City Hotel,0,30,2016,December,50,2,1,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.04,0,0,Check-Out,2019-11-03 -Resort Hotel,0,34,2016,September,49,15,0,1,1,0.0,0,HB,BRA,Complementary,TA/TO,0,0,0,A,I,2,No Deposit,12.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-07-04 -Resort Hotel,1,3,2015,August,40,26,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,173.12,0,0,Canceled,2018-06-02 -Resort Hotel,0,153,2016,March,44,21,0,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,91.0,223.0,0,Transient-Party,28.13,0,0,Check-Out,2019-02-01 -City Hotel,1,243,2016,July,34,22,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.46,0,3,Canceled,2019-05-04 -City Hotel,1,12,2017,February,11,25,0,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,69.5,0,0,Canceled,2019-11-03 -City Hotel,1,22,2016,April,16,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient,96.38,0,0,Canceled,2019-01-03 -City Hotel,0,0,2017,June,11,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,44.0,45.0,0,Transient,69.65,0,0,Check-Out,2020-06-02 -City Hotel,0,20,2016,November,52,2,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,68.83,0,0,Check-Out,2019-11-03 -Resort Hotel,1,9,2015,July,32,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,1,No Deposit,3.0,179.0,0,Transient-Party,63.11,0,0,Check-Out,2018-05-03 -City Hotel,0,20,2016,June,20,25,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,67.75,0,0,Check-Out,2019-04-03 -City Hotel,1,100,2017,March,9,2,2,3,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.35,0,2,Canceled,2020-04-02 -City Hotel,0,95,2016,August,34,14,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,249.53,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2017,February,9,10,2,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,118.31,0,2,Check-Out,2019-10-04 -City Hotel,0,13,2016,August,33,16,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.61,0,1,Check-Out,2019-07-04 -Resort Hotel,1,264,2015,October,43,11,2,2,2,0.0,0,HB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,82.72,0,0,Canceled,2018-01-31 -City Hotel,1,142,2016,February,11,29,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,71.9,0,0,Canceled,2018-11-02 -City Hotel,0,43,2016,August,36,4,2,3,3,0.0,0,HB,ITA,Complementary,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,184.27,0,3,Check-Out,2019-07-04 -Resort Hotel,0,145,2016,December,51,30,0,7,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,45.0,179.0,0,Transient-Party,64.35,0,0,Check-Out,2019-11-03 -City Hotel,0,99,2017,July,36,4,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,135.45,0,1,Check-Out,2019-10-04 -City Hotel,1,33,2016,July,38,30,2,5,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,200.68,0,2,Canceled,2019-06-03 -City Hotel,0,53,2015,September,36,21,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,94.87,0,0,Check-Out,2018-07-03 -City Hotel,0,16,2016,April,27,16,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.95,0,1,Check-Out,2018-12-03 -City Hotel,0,2,2015,August,39,31,0,3,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,200.12,0,0,Check-Out,2018-06-02 -Resort Hotel,1,50,2017,May,11,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,82.03,0,0,Canceled,2019-03-04 -City Hotel,0,14,2016,June,28,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,13.0,66.0,0,Transient,119.67,0,0,Check-Out,2019-07-04 -City Hotel,1,27,2017,March,15,14,0,1,2,0.0,0,SC,,Online TA,TA/TO,1,0,0,P,P,0,No Deposit,10.0,179.0,0,Group,0.0,0,0,Canceled,2019-12-04 -City Hotel,0,89,2016,October,43,12,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.04,0,0,Check-Out,2019-08-04 -Resort Hotel,0,255,2015,August,34,12,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,105.67,0,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,April,19,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,153.0,179.0,0,Transient,176.26,0,0,Check-Out,2020-02-01 -City Hotel,1,102,2016,July,26,24,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,81.66,0,0,Canceled,2019-02-01 -Resort Hotel,0,45,2016,January,11,5,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,73.71,0,2,Check-Out,2019-04-03 -City Hotel,0,210,2017,May,33,15,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.24,0,0,Check-Out,2020-03-03 -City Hotel,1,36,2016,March,9,26,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,Non Refund,168.0,179.0,18,Transient,59.61,0,0,Canceled,2018-11-02 -City Hotel,1,411,2015,September,37,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.95,0,0,Canceled,2018-08-03 -City Hotel,1,87,2017,July,25,6,2,5,1,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,115.5,0,1,Canceled,2020-04-02 -Resort Hotel,1,91,2016,June,32,14,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,157.52,0,1,No-Show,2019-06-03 -City Hotel,1,2,2017,July,25,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.63,0,0,Canceled,2020-05-03 -Resort Hotel,0,40,2016,January,2,23,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient-Party,150.69,0,0,Check-Out,2018-12-03 -Resort Hotel,0,17,2016,December,52,24,0,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,248.0,179.0,0,Transient-Party,85.97,0,0,Check-Out,2019-11-03 -City Hotel,0,2,2017,January,3,20,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,156.73,0,0,Check-Out,2019-10-04 -City Hotel,1,0,2016,February,9,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,38.97,0,0,No-Show,2018-12-03 -City Hotel,0,0,2016,April,11,2,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,B,0,No Deposit,277.0,179.0,0,Transient,67.28,0,0,Check-Out,2019-04-03 -Resort Hotel,1,20,2016,July,26,23,2,5,2,0.0,0,FB,PRT,Direct,Direct,1,0,0,C,I,1,No Deposit,188.0,179.0,0,Transient,3.11,0,0,Canceled,2019-04-03 -City Hotel,0,49,2015,December,34,28,1,0,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,67.7,0,1,Check-Out,2018-09-02 -City Hotel,0,14,2016,March,27,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,106.08,0,0,Check-Out,2019-02-01 -City Hotel,1,403,2015,October,44,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.57,0,0,Canceled,2018-11-02 -Resort Hotel,0,262,2017,October,38,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,144.16,1,1,Check-Out,2019-11-03 -City Hotel,0,0,2015,August,38,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient,64.23,0,1,Check-Out,2018-10-03 -Resort Hotel,0,26,2016,January,5,21,0,4,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,116.96,0,1,Check-Out,2019-11-03 -City Hotel,0,406,2017,May,23,18,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,44.0,66.0,0,Transient-Party,86.43,0,0,Canceled,2020-04-02 -City Hotel,0,1,2016,December,53,10,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,72.23,0,0,Check-Out,2019-11-03 -Resort Hotel,1,302,2016,May,22,5,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.47,0,0,Canceled,2019-01-03 -City Hotel,0,62,2015,December,53,30,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,123.12,0,0,Check-Out,2018-10-03 -City Hotel,0,48,2015,October,51,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,71.26,0,0,Check-Out,2018-09-02 -Resort Hotel,0,156,2017,May,17,28,2,5,3,1.0,0,HB,CHE,Online TA,TA/TO,0,0,0,E,G,2,No Deposit,245.0,179.0,0,Transient,172.01,1,1,Check-Out,2020-06-02 -City Hotel,0,2,2015,October,43,19,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,102.0,45.0,0,Transient-Party,73.25,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,September,43,21,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,E,0,No Deposit,9.0,179.0,0,Group,0.0,0,0,Check-Out,2018-06-02 -City Hotel,0,38,2016,October,43,16,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.22,0,2,Check-Out,2019-09-03 -City Hotel,1,279,2017,August,35,28,1,2,2,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,0,Non Refund,192.0,179.0,0,Transient,166.22,0,0,Canceled,2019-12-04 -Resort Hotel,0,6,2016,February,7,5,2,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient,67.82,0,0,Check-Out,2018-11-02 -Resort Hotel,0,43,2016,July,38,13,0,2,2,2.0,0,HB,CHE,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,206.48,1,0,Check-Out,2020-03-03 -Resort Hotel,0,4,2015,November,51,15,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,59.88,0,1,Check-Out,2018-05-03 -City Hotel,0,48,2016,October,44,11,1,4,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,123.64,0,3,Check-Out,2019-09-03 -Resort Hotel,0,231,2016,October,43,24,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,83.0,179.0,0,Transient-Party,86.19,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2017,July,37,23,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,252.0,0,0,Canceled,2020-04-02 -Resort Hotel,0,147,2016,August,36,30,0,2,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,2019-05-04 -City Hotel,1,56,2016,April,50,30,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,173.0,179.0,0,Transient,106.58,0,0,Canceled,2019-11-03 -City Hotel,0,150,2017,March,9,5,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.34,0,1,No-Show,2020-02-01 -Resort Hotel,0,36,2017,February,11,25,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,95.74,0,0,Check-Out,2020-05-03 -City Hotel,0,3,2017,August,37,24,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,200.0,179.0,0,Transient,107.93,1,0,Check-Out,2020-06-02 -City Hotel,1,41,2015,November,45,10,2,1,2,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,No Deposit,12.0,179.0,0,Transient,62.67,0,0,Canceled,2018-06-02 -City Hotel,1,22,2017,May,23,19,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,7.0,179.0,0,Transient-Party,71.51,0,0,Check-Out,2020-04-02 -City Hotel,0,374,2015,August,43,28,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.28,0,0,Check-Out,2017-11-02 -Resort Hotel,0,40,2016,March,18,16,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,71.02,0,2,Check-Out,2019-05-04 -City Hotel,1,29,2016,December,51,31,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.3,0,0,No-Show,2019-11-03 -City Hotel,1,85,2015,August,36,4,2,2,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,110.91,0,0,Canceled,2018-06-02 -City Hotel,0,33,2017,March,9,6,0,1,1,0.0,0,BB,PRT,Groups,Direct,1,0,0,A,E,0,No Deposit,301.0,241.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2016,March,16,20,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,17,2016,January,3,5,1,1,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,2.31,0,0,Check-Out,2019-10-04 -Resort Hotel,0,3,2015,December,50,25,0,1,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient-Party,71.52,0,2,Check-Out,2018-10-03 -City Hotel,1,159,2016,June,53,17,0,2,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,198.48,0,1,Canceled,2019-03-04 -City Hotel,0,2,2017,June,10,19,1,1,1,0.0,0,SC,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,0.28,0,0,Check-Out,2020-03-03 -City Hotel,0,103,2017,March,17,17,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,96.95,0,1,Check-Out,2019-12-04 -Resort Hotel,0,28,2016,October,48,30,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,59.77,0,0,Check-Out,2019-12-04 -City Hotel,1,0,2016,December,50,9,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,15.0,179.0,0,Transient,0.27,0,0,Canceled,2019-12-04 -City Hotel,0,252,2017,July,22,22,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.17,0,1,Check-Out,2020-03-03 -City Hotel,0,139,2016,July,25,23,2,1,3,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,161.14,0,0,Check-Out,2019-05-04 -City Hotel,1,2,2017,January,2,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.24,1,1,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,March,18,30,0,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,D,D,1,Refundable,15.0,222.0,0,Transient-Party,115.02,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,January,2,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,222.0,0,Transient,62.94,1,0,Check-Out,2019-10-04 -City Hotel,0,93,2017,July,25,30,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,170.46,1,0,Check-Out,2020-06-02 -City Hotel,0,3,2017,February,10,28,0,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,71.0,0,Transient,94.51,0,1,Check-Out,2020-02-01 -Resort Hotel,0,169,2017,June,34,3,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,74.5,0,2,Check-Out,2020-06-02 -City Hotel,0,259,2017,July,31,18,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,132.73,0,3,Check-Out,2020-07-03 -Resort Hotel,0,14,2016,October,41,25,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient-Party,64.6,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,January,3,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,241.0,179.0,0,Transient,82.36,0,1,Check-Out,2018-11-02 -City Hotel,0,0,2015,September,42,21,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,113.44,1,0,Check-Out,2018-05-03 -City Hotel,0,49,2017,May,23,10,2,2,2,0.0,0,HB,BRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,131.02,0,0,Check-Out,2020-04-02 -Resort Hotel,0,158,2016,March,9,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,60.54,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,February,17,13,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,74.45,0,0,Check-Out,2019-02-01 -Resort Hotel,1,63,2015,October,45,9,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,34.76,0,0,Canceled,2018-09-02 -City Hotel,0,23,2017,June,24,20,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,G,1,No Deposit,15.0,179.0,0,Transient,125.2,1,0,Check-Out,2020-05-03 -City Hotel,1,401,2015,June,32,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,39,Transient,101.98,0,0,Canceled,2018-11-02 -City Hotel,1,167,2016,May,20,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.02,0,0,Canceled,2018-08-03 -City Hotel,1,228,2017,June,27,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,135.03,0,0,Canceled,2019-11-03 -City Hotel,0,13,2016,September,36,16,0,2,2,0.0,0,BB,GBR,Direct,Corporate,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient,101.97,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2017,February,11,12,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.0,0,1,Check-Out,2020-06-02 -City Hotel,0,203,2016,December,43,9,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,95.78,0,2,Check-Out,2019-10-04 -City Hotel,0,39,2017,April,18,6,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,169.48,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,March,21,24,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,247.0,179.0,0,Transient,116.35,0,0,Check-Out,2019-02-01 -Resort Hotel,0,6,2016,May,21,27,0,1,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,194.81,1,2,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,November,44,27,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,61.35,0,0,Check-Out,2018-08-03 -Resort Hotel,0,239,2017,March,21,16,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,I,0,No Deposit,160.0,179.0,0,Transient,164.57,1,0,Check-Out,2020-04-02 -Resort Hotel,0,260,2017,June,28,16,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,72.73,1,0,Check-Out,2020-04-02 -Resort Hotel,1,146,2016,August,35,21,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,93.46,0,0,Canceled,2018-12-03 -City Hotel,0,43,2016,December,51,27,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,70.0,0,1,Check-Out,2019-11-03 -Resort Hotel,0,86,2016,October,25,27,0,3,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,1,0,1,A,I,1,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-04-03 -Resort Hotel,0,3,2017,March,22,16,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient-Party,93.98,0,0,Check-Out,2020-03-03 -Resort Hotel,0,137,2016,November,44,25,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,79.6,1,2,Check-Out,2019-08-04 -Resort Hotel,0,0,2016,February,10,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,1,No Deposit,13.0,331.0,0,Transient,33.48,0,0,Check-Out,2019-06-03 -City Hotel,0,21,2016,December,51,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,45.0,0,Transient,64.51,0,0,Check-Out,2018-11-02 -City Hotel,0,53,2017,May,16,16,1,0,2,0.0,0,HB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,176.0,227.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -Resort Hotel,0,280,2016,November,42,22,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,44.47,0,3,Check-Out,2019-09-03 -Resort Hotel,0,15,2016,May,21,29,2,5,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,C,E,1,No Deposit,353.0,179.0,0,Transient-Party,192.19,1,0,Check-Out,2019-06-03 -City Hotel,1,101,2017,June,25,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.88,0,2,Canceled,2020-04-02 -Resort Hotel,0,39,2016,October,43,25,1,0,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,191.8,0,0,Check-Out,2019-08-04 -City Hotel,1,21,2016,October,38,16,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient,78.44,0,0,Canceled,2019-07-04 -Resort Hotel,0,0,2015,July,35,27,2,7,2,1.0,0,BB,,Direct,Direct,0,0,0,A,F,3,No Deposit,17.0,179.0,0,Transient,134.07,0,3,Check-Out,2018-06-02 -Resort Hotel,0,1,2015,October,43,5,0,1,1,0.0,0,HB,PRT,Complementary,Corporate,1,0,0,A,I,2,No Deposit,95.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-08-03 -Resort Hotel,0,93,2017,July,23,29,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,186.17,0,2,Check-Out,2020-04-02 -Resort Hotel,0,199,2016,August,32,30,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,E,0,No Deposit,306.0,179.0,0,Transient-Party,77.84,0,1,Check-Out,2019-04-03 -City Hotel,1,268,2017,August,32,5,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,195.69,0,0,Canceled,2020-02-01 -City Hotel,1,49,2017,May,26,5,0,4,3,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,6.0,179.0,0,Transient,216.14,0,0,Canceled,2020-01-04 -Resort Hotel,0,289,2016,March,9,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,332.0,179.0,0,Transient,41.08,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,December,51,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,72.0,0,Transient,33.1,0,1,Check-Out,2019-01-03 -City Hotel,0,12,2016,August,37,29,2,1,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,75.78,0,0,Check-Out,2019-07-04 -City Hotel,0,199,2016,August,35,20,0,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,219.11,0,0,Check-Out,2019-09-03 -Resort Hotel,0,3,2015,August,37,20,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,62.98,0,1,Check-Out,2018-06-02 -Resort Hotel,0,122,2015,September,36,17,3,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,134.19,0,3,Check-Out,2019-05-04 -City Hotel,1,240,2016,December,42,8,2,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.09,0,2,Canceled,2019-10-04 -Resort Hotel,0,16,2017,January,4,29,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,60.73,0,0,Check-Out,2019-11-03 -City Hotel,0,11,2016,March,9,24,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,60.25,0,2,Check-Out,2019-01-03 -City Hotel,0,107,2016,September,43,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,149.35,0,2,Check-Out,2019-08-04 -Resort Hotel,0,51,2016,July,27,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,104.04,0,1,Check-Out,2019-07-04 -City Hotel,0,2,2016,May,22,16,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,107.14,0,1,Check-Out,2019-02-01 -Resort Hotel,0,210,2017,June,22,18,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,146.53,0,1,Check-Out,2020-04-02 -Resort Hotel,0,24,2017,August,38,30,0,1,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,208.6,0,0,Check-Out,2020-04-02 -Resort Hotel,1,188,2016,December,48,25,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,169.0,179.0,0,Contract,74.01,0,0,No-Show,2019-10-04 -City Hotel,0,42,2017,June,17,9,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,100.03,0,1,Check-Out,2020-06-02 -Resort Hotel,0,146,2016,July,31,16,2,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,98.95,0,2,Check-Out,2019-04-03 -Resort Hotel,1,22,2017,April,18,27,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,34.64,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,August,20,7,2,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.92,0,1,Check-Out,2020-07-03 -City Hotel,1,289,2015,July,34,2,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,59,Transient,103.13,0,0,Canceled,2018-05-03 -Resort Hotel,1,0,2017,April,18,24,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,205.0,0,Transient,36.5,0,0,Canceled,2020-02-01 -Resort Hotel,0,145,2016,December,51,9,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,85.42,1,1,Check-Out,2020-01-04 -City Hotel,0,15,2016,February,9,18,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,A,0,No Deposit,99.0,179.0,0,Contract,37.74,0,1,Check-Out,2018-01-31 -City Hotel,1,93,2017,July,27,15,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.84,0,0,Canceled,2020-02-01 -Resort Hotel,0,19,2016,September,43,11,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,1,395,2017,May,20,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,164.08,0,0,Canceled,2020-02-01 -Resort Hotel,0,198,2016,December,53,18,2,7,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient,38.45,0,1,Check-Out,2019-12-04 -City Hotel,1,85,2016,February,10,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,38,Transient,61.94,0,0,Canceled,2018-10-03 -City Hotel,0,180,2015,December,51,28,2,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,78.44,0,0,Check-Out,2019-10-04 -Resort Hotel,0,16,2016,July,38,26,0,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,211.09,0,0,Check-Out,2019-05-04 -City Hotel,0,159,2017,August,36,10,2,5,2,0.0,0,SC,AUT,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,11.0,179.0,0,Transient,221.43,0,1,Check-Out,2020-01-04 -City Hotel,1,47,2016,March,16,11,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,90.0,179.0,0,Transient,68.15,0,0,Canceled,2018-11-02 -Resort Hotel,0,164,2016,September,36,10,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,41.52,0,2,Check-Out,2019-04-03 -Resort Hotel,1,207,2016,May,21,25,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient,41.17,0,0,Canceled,2019-03-04 -City Hotel,1,46,2016,December,51,21,1,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,59.11,0,0,Canceled,2018-08-03 -Resort Hotel,0,241,2015,November,43,28,0,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,87.0,179.0,0,Contract,23.48,0,0,Check-Out,2018-08-03 -City Hotel,1,142,2016,October,44,19,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,83.19,0,0,Canceled,2019-08-04 -Resort Hotel,1,13,2015,August,39,22,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,47.3,0,0,No-Show,2018-07-03 -Resort Hotel,0,41,2016,October,11,9,1,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,187.0,179.0,0,Transient-Party,39.79,0,0,Check-Out,2019-12-04 -City Hotel,1,39,2017,April,16,16,2,0,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,86.59,0,2,Canceled,2020-01-04 -Resort Hotel,0,5,2017,January,3,13,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,11.0,179.0,0,Transient,138.35,0,3,Check-Out,2019-10-04 -City Hotel,0,9,2015,August,31,10,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,114.92,0,0,Check-Out,2018-06-02 -Resort Hotel,1,17,2016,January,2,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,No Deposit,15.0,92.0,0,Transient,35.95,0,0,Canceled,2019-11-03 -City Hotel,0,296,2016,June,42,6,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,147.0,179.0,75,Transient,214.98,0,0,Check-Out,2019-07-04 -City Hotel,1,16,2016,October,46,20,0,1,1,0.0,0,BB,AUT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,171.0,0,Transient,135.74,0,0,Canceled,2019-03-04 -City Hotel,1,69,2015,September,37,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.84,0,0,Canceled,2018-05-03 -City Hotel,1,58,2017,July,37,27,2,3,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,140.54,0,1,Canceled,2019-11-03 -City Hotel,0,19,2017,March,10,13,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,68.01,0,1,Check-Out,2020-02-01 -City Hotel,1,10,2016,August,18,28,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,241.6,0,0,Canceled,2019-03-04 -City Hotel,0,53,2016,July,27,12,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.83,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,October,44,20,1,0,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,65.28,0,0,Check-Out,2019-06-03 -City Hotel,1,16,2017,January,4,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,112.07,0,1,Canceled,2019-09-03 -City Hotel,0,8,2017,May,22,31,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,110.68,0,2,Check-Out,2020-04-02 -City Hotel,0,50,2016,August,36,21,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.73,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,March,11,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,245.0,179.0,0,Group,60.8,0,2,Check-Out,2018-06-02 -Resort Hotel,0,261,2016,June,28,5,1,1,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,A,0,Non Refund,39.0,179.0,0,Transient,114.47,0,0,Check-Out,2019-04-03 -City Hotel,1,283,2015,October,46,30,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,98.31,0,1,Canceled,2019-11-03 -City Hotel,1,38,2016,October,3,9,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,258.0,179.0,0,Transient,65.61,0,0,Canceled,2019-10-04 -City Hotel,0,0,2017,February,7,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,92.0,0,Transient,70.48,0,0,Check-Out,2019-10-04 -Resort Hotel,1,103,2015,July,31,21,0,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,72.0,179.0,0,Transient,133.97,0,0,Canceled,2019-03-04 -Resort Hotel,1,1,2016,February,9,2,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,38.78,0,0,Canceled,2019-03-04 -Resort Hotel,0,8,2016,July,25,31,1,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,121.0,0,1,Check-Out,2019-05-04 -City Hotel,0,41,2015,October,43,28,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.23,0,0,Check-Out,2018-08-03 -City Hotel,0,213,2016,April,16,24,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,72.93,1,1,Check-Out,2019-03-04 -Resort Hotel,0,197,2017,March,20,2,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,2.19,1,2,Check-Out,2020-01-04 -Resort Hotel,0,3,2017,June,27,5,2,3,3,0.0,0,HB,,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,123.11,0,2,Check-Out,2020-03-03 -City Hotel,0,43,2015,October,35,15,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.12,0,0,Check-Out,2017-11-02 -City Hotel,1,0,2016,April,21,31,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient-Party,74.44,0,0,Canceled,2019-02-01 -City Hotel,0,48,2016,October,44,29,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,84.59,0,2,Canceled,2019-08-04 -City Hotel,1,259,2015,September,36,18,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.17,0,0,Canceled,2018-05-03 -Resort Hotel,0,10,2016,January,10,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,69.61,0,2,Check-Out,2019-12-04 -Resort Hotel,0,2,2016,May,28,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,81.32,0,0,Check-Out,2019-04-03 -City Hotel,0,50,2017,October,45,10,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,176.58,0,3,Check-Out,2019-12-04 -City Hotel,0,85,2017,June,8,24,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,7.0,179.0,0,Transient,133.55,1,3,Check-Out,2019-11-03 -City Hotel,1,158,2017,June,23,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,63.04,0,0,Canceled,2019-11-03 -Resort Hotel,0,101,2016,March,22,6,0,5,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,75.19,0,2,Check-Out,2019-02-01 -City Hotel,0,56,2017,June,27,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,17.0,65.0,0,Transient,131.34,1,0,Check-Out,2020-04-02 -Resort Hotel,1,62,2015,December,53,28,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,48.44,0,0,Canceled,2018-12-03 -City Hotel,1,98,2017,May,22,27,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,152.28,0,1,Canceled,2020-04-02 -Resort Hotel,0,282,2015,August,10,5,2,1,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,51.75,0,0,Check-Out,2018-06-02 -City Hotel,1,8,2017,March,11,16,2,3,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,84.63,0,0,No-Show,2020-03-03 -City Hotel,0,0,2016,May,22,28,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,146,2016,March,12,13,0,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,30.89,0,0,Check-Out,2019-04-03 -Resort Hotel,0,7,2015,August,36,7,0,3,1,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,Refundable,2.0,222.0,0,Transient-Party,63.63,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2015,October,46,13,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,32.82,0,0,Check-Out,2018-09-02 -Resort Hotel,0,156,2017,July,33,18,1,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,G,1,No Deposit,17.0,179.0,0,Transient,181.81,0,3,Check-Out,2020-03-03 -Resort Hotel,0,22,2017,July,10,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,126.96,0,1,Check-Out,2020-06-02 -City Hotel,1,157,2017,June,29,16,2,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,241.0,179.0,0,Transient,161.08,0,1,Canceled,2020-03-03 -City Hotel,0,1,2017,March,10,21,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.09,0,1,Check-Out,2020-02-01 -Resort Hotel,0,55,2017,March,12,10,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,E,3,No Deposit,193.0,179.0,0,Transient,86.24,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2015,November,43,20,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,1,D,D,1,No Deposit,10.0,179.0,0,Group,0.5,0,0,Check-Out,2018-06-02 -City Hotel,0,143,2016,May,24,24,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,134.98,0,0,Check-Out,2019-06-03 -Resort Hotel,0,150,2017,May,22,28,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,243.0,179.0,0,Transient,167.45,1,1,Check-Out,2020-03-03 -City Hotel,0,133,2016,December,53,29,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.81,0,1,Canceled,2019-11-03 -City Hotel,1,145,2016,August,38,20,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.45,0,0,Canceled,2018-06-02 -Resort Hotel,0,2,2016,September,44,25,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,184.71,0,0,Check-Out,2019-05-04 -City Hotel,0,3,2015,October,53,16,1,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,16.0,45.0,0,Transient,0.0,0,0,Check-Out,2017-12-03 -City Hotel,1,309,2015,September,42,15,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,93.13,0,0,Canceled,2017-11-02 -Resort Hotel,1,314,2016,May,16,17,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,18,Transient,74.17,0,1,Canceled,2019-06-03 -City Hotel,1,9,2015,August,33,18,2,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,141.14,0,0,Canceled,2018-11-02 -Resort Hotel,1,133,2016,March,45,31,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,221.0,0,Transient-Party,64.24,0,0,Canceled,2019-08-04 -City Hotel,1,80,2016,July,31,19,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,44.77,0,0,No-Show,2019-05-04 -City Hotel,1,164,2016,July,43,24,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,101.92,0,0,Canceled,2018-10-03 -City Hotel,0,137,2017,May,29,28,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,169.38,0,1,Check-Out,2020-05-03 -Resort Hotel,1,138,2017,June,27,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,C,C,2,No Deposit,13.0,331.0,0,Transient-Party,130.74,0,0,Canceled,2020-05-03 -Resort Hotel,0,157,2016,June,22,21,0,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,187.92,1,1,Check-Out,2019-06-03 -Resort Hotel,0,34,2017,May,21,18,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-04-02 -City Hotel,1,110,2015,October,43,5,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,33.09,0,0,Canceled,2018-09-02 -Resort Hotel,0,9,2017,May,9,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,119.1,1,0,Check-Out,2020-04-02 -City Hotel,1,2,2015,July,42,29,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,102.84,0,0,Canceled,2018-09-02 -Resort Hotel,1,15,2017,March,18,28,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,2,No Deposit,16.0,224.0,0,Transient,48.13,0,0,Canceled,2020-04-02 -Resort Hotel,1,8,2016,February,9,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.36,0,0,No-Show,2018-12-03 -City Hotel,1,40,2016,October,44,11,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,205.4,0,1,Canceled,2019-08-04 -City Hotel,1,34,2015,July,32,15,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,117.45,0,0,Canceled,2018-08-03 -Resort Hotel,1,101,2017,July,32,18,2,6,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,226.66,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,March,11,2,0,1,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,1,0,0,E,E,0,No Deposit,184.0,179.0,0,Transient,68.12,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,June,22,16,1,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,F,0,No Deposit,14.0,45.0,0,Transient,0.0,1,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,January,3,1,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,94.0,0,Transient,74.93,0,0,Check-Out,2019-10-04 -City Hotel,0,4,2015,October,42,28,1,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,34.32,0,1,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,October,44,30,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,F,0,No Deposit,15.0,179.0,0,Transient,125.96,0,0,Check-Out,2019-08-04 -Resort Hotel,0,146,2016,June,33,6,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,81.04,1,1,Check-Out,2019-05-04 -Resort Hotel,0,8,2016,July,45,29,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,155.97,1,0,Check-Out,2019-04-03 -City Hotel,0,34,2016,April,18,6,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.3,0,0,Check-Out,2019-02-01 -City Hotel,1,54,2016,March,27,3,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,18,Transient,125.11,0,0,Canceled,2018-12-03 -Resort Hotel,1,114,2016,June,33,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,37.91,0,0,Canceled,2019-04-03 -Resort Hotel,0,110,2015,October,45,18,1,1,1,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Contract,36.21,0,0,Check-Out,2018-01-31 -City Hotel,0,173,2017,July,26,31,2,4,2,1.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.07,0,2,Check-Out,2020-06-02 -Resort Hotel,0,94,2016,May,23,13,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,96.5,0,1,Check-Out,2019-08-04 -City Hotel,0,39,2016,April,15,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,75.81,0,0,Canceled,2019-02-01 -City Hotel,0,2,2017,March,8,29,0,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,222.0,0,Transient-Party,107.23,0,0,Check-Out,2019-09-03 -Resort Hotel,0,16,2015,October,51,31,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,45.17,0,2,Check-Out,2018-08-03 -City Hotel,1,106,2016,March,11,30,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,73.44,0,0,Canceled,2018-12-03 -City Hotel,1,137,2015,December,53,31,0,1,2,0.0,0,Undefined,PRT,Complementary,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,70.11,0,0,Canceled,2018-08-03 -Resort Hotel,0,19,2016,November,44,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,260.0,0,Transient,41.6,0,0,Check-Out,2018-09-02 -City Hotel,0,16,2015,December,33,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.87,0,1,Check-Out,2018-12-03 -City Hotel,0,96,2017,July,27,5,1,2,2,0.0,0,BB,USA,Direct,TA/TO,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,195.6,0,1,Check-Out,2019-08-04 -City Hotel,0,190,2016,September,35,13,0,6,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.99,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2016,December,11,14,0,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.5,0,2,Check-Out,2019-01-03 -City Hotel,1,149,2016,March,22,12,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,72.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,61,2015,December,53,30,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,107.38,0,2,Check-Out,2018-12-03 -City Hotel,0,31,2016,July,42,5,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,162.84,0,2,Check-Out,2019-06-03 -Resort Hotel,0,103,2015,July,32,21,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,137.21,0,0,Check-Out,2018-06-02 -City Hotel,0,246,2016,September,43,2,1,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,106.28,0,0,Check-Out,2019-08-04 -City Hotel,1,15,2017,April,21,13,1,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.11,0,0,Canceled,2019-11-03 -City Hotel,1,209,2016,August,33,5,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.95,0,2,Canceled,2019-08-04 -Resort Hotel,0,2,2017,August,11,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,44.84,0,0,Check-Out,2020-06-02 -Resort Hotel,0,10,2015,December,39,23,2,5,3,0.0,0,BB,CHE,Direct,Direct,0,0,0,L,D,1,No Deposit,17.0,179.0,0,Transient,79.84,0,0,Check-Out,2018-12-03 -City Hotel,0,247,2015,October,42,12,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,71.0,179.0,62,Contract,71.93,0,0,Check-Out,2018-08-03 -City Hotel,1,21,2016,December,44,13,0,3,2,0.0,0,Undefined,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.14,0,0,Canceled,2018-08-03 -Resort Hotel,0,54,2016,August,15,6,0,3,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,249.0,78.0,0,Transient,124.47,0,1,Check-Out,2018-12-03 -City Hotel,0,53,2015,October,44,20,0,1,1,0.0,0,HB,,Groups,Corporate,0,0,0,A,A,1,No Deposit,26.0,331.0,75,Transient-Party,64.16,0,0,Check-Out,2019-11-03 -Resort Hotel,0,33,2016,December,53,2,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,92.55,1,1,Check-Out,2019-12-04 -City Hotel,0,34,2016,May,18,21,0,2,2,0.0,0,BB,CHE,Complementary,Direct,0,0,0,A,C,0,No Deposit,32.0,179.0,0,Transient,69.58,0,0,Check-Out,2019-03-04 -City Hotel,1,8,2017,February,10,24,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.33,0,0,Canceled,2019-12-04 -City Hotel,1,104,2016,March,22,28,2,2,3,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,9.0,179.0,0,Transient,84.14,0,3,Check-Out,2019-05-04 -Resort Hotel,0,41,2016,March,17,13,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,61.75,0,2,Check-Out,2019-03-04 -City Hotel,0,17,2016,June,27,30,0,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,E,B,0,No Deposit,163.0,179.0,0,Transient-Party,85.43,0,0,Check-Out,2019-03-04 -Resort Hotel,0,15,2017,May,27,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,153.87,0,2,Check-Out,2020-03-03 -City Hotel,1,406,2016,October,41,10,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,0.0,0,0,Canceled,2019-08-04 -City Hotel,1,159,2016,October,43,20,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,130.16,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,October,28,6,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,111.93,1,0,Check-Out,2019-06-03 -City Hotel,0,14,2017,March,10,6,0,1,2,0.0,0,SC,CHE,Online TA,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,94.35,0,3,Check-Out,2020-03-03 -City Hotel,0,107,2016,June,27,12,0,2,3,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient,88.57,0,2,Check-Out,2019-05-04 -City Hotel,0,34,2017,May,15,10,0,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.02,0,1,Check-Out,2020-05-03 -Resort Hotel,1,0,2016,October,43,27,1,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,108.78,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,July,33,31,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,161.28,0,1,Check-Out,2019-06-03 -Resort Hotel,0,32,2016,October,44,13,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,84.3,0,0,Check-Out,2018-08-03 -City Hotel,0,8,2016,May,22,29,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,2.0,179.0,0,Contract,67.36,0,0,Check-Out,2019-03-04 -Resort Hotel,0,286,2016,August,37,27,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,95.25,0,1,Check-Out,2018-09-02 -Resort Hotel,0,111,2017,April,29,10,4,5,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,181.0,179.0,0,Transient,122.27,0,2,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,December,49,9,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient,158.79,1,2,Check-Out,2019-06-03 -Resort Hotel,0,46,2016,November,4,28,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,49.45,0,2,Check-Out,2018-11-02 -City Hotel,0,2,2017,February,6,6,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,144.36,0,1,Check-Out,2020-02-01 -Resort Hotel,0,1,2017,May,23,15,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,123.8,0,2,Check-Out,2020-01-04 -Resort Hotel,0,98,2017,May,22,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,D,3,No Deposit,246.0,179.0,0,Transient,161.36,1,1,Check-Out,2020-07-03 -City Hotel,1,3,2015,July,34,15,2,0,3,0.0,0,BB,ISR,Complementary,Undefined,0,0,0,B,B,2,No Deposit,16.0,179.0,0,Transient-Party,0.0,0,2,Check-Out,2018-07-03 -Resort Hotel,1,335,2016,March,15,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,179.0,0,Transient-Party,48.73,0,0,Canceled,2019-02-01 -City Hotel,0,272,2017,June,25,30,0,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,102.96,0,0,Check-Out,2019-12-04 -City Hotel,0,188,2016,November,53,17,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient-Party,63.11,0,1,Check-Out,2019-09-03 -Resort Hotel,1,33,2016,August,30,5,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.16,0,1,Canceled,2019-05-04 -Resort Hotel,0,23,2015,July,33,6,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,220.97,1,1,Check-Out,2018-11-02 -Resort Hotel,0,4,2017,June,8,18,0,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,74.99,0,0,Check-Out,2020-04-02 -City Hotel,0,22,2016,September,44,23,1,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,164.29,0,0,Check-Out,2019-06-03 -City Hotel,1,396,2015,July,33,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,F,F,0,No Deposit,11.0,179.0,0,Group,124.73,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2016,October,17,11,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,85.35,0,0,Check-Out,2019-04-03 -City Hotel,1,375,2016,October,41,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,121.11,0,0,Canceled,2018-09-02 -City Hotel,1,50,2016,December,32,15,2,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.2,0,1,Canceled,2019-06-03 -City Hotel,0,99,2016,December,53,9,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,118.93,0,1,Check-Out,2019-01-03 -Resort Hotel,0,411,2017,April,15,16,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,61.24,0,0,Check-Out,2020-06-02 -City Hotel,1,110,2017,May,27,29,2,3,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,F,0,No Deposit,247.0,179.0,0,Transient,125.02,0,0,Canceled,2020-02-01 -City Hotel,0,22,2017,November,43,2,1,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,58.54,0,2,Check-Out,2019-12-04 -Resort Hotel,1,11,2015,September,38,13,2,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,206.45,0,2,Canceled,2019-05-04 -Resort Hotel,0,3,2015,October,45,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,61.73,0,1,Check-Out,2018-09-02 -City Hotel,0,2,2017,January,3,18,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,66.38,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2015,October,42,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,96.63,0,0,Check-Out,2018-08-03 -City Hotel,0,18,2015,October,45,20,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Transient-Party,111.92,0,0,Check-Out,2018-08-03 -Resort Hotel,1,45,2015,August,39,14,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,35.06,0,2,Check-Out,2018-05-03 -City Hotel,0,60,2016,June,24,20,0,3,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,216.28,0,0,Check-Out,2019-02-01 -Resort Hotel,1,9,2017,February,8,2,0,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Non Refund,12.0,331.0,0,Transient,70.48,0,0,Canceled,2019-10-04 -City Hotel,0,159,2016,January,3,31,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.14,0,2,Check-Out,2019-02-01 -Resort Hotel,0,42,2016,January,53,31,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,118.91,1,1,Check-Out,2018-12-03 -City Hotel,1,385,2016,October,42,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,0,Transient,105.02,0,0,Canceled,2019-07-04 -City Hotel,0,64,2015,October,44,11,1,2,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,86.18,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,August,31,25,1,0,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,150.73,0,3,Check-Out,2018-06-02 -City Hotel,1,88,2016,December,37,21,2,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.7,0,1,Canceled,2019-04-03 -City Hotel,1,89,2016,April,16,29,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,71.45,0,0,Canceled,2019-02-01 -City Hotel,0,21,2016,April,37,28,1,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.42,0,1,Check-Out,2019-11-03 -City Hotel,1,55,2017,August,33,20,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,7.0,179.0,0,Transient,191.49,0,0,Canceled,2019-10-04 -Resort Hotel,0,2,2017,January,11,8,0,1,2,0.0,0,HB,PRT,Complementary,Direct,0,0,0,A,I,0,No Deposit,368.0,179.0,0,Transient,61.93,1,0,Check-Out,2019-09-03 -City Hotel,1,189,2016,September,37,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.54,0,0,Canceled,2019-04-03 -Resort Hotel,0,42,2015,December,49,6,2,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,114.42,0,0,Check-Out,2018-07-03 -City Hotel,0,96,2016,March,10,17,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,B,1,No Deposit,2.0,179.0,0,Transient-Party,68.1,0,0,Check-Out,2019-12-04 -Resort Hotel,0,300,2017,September,39,28,2,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,241.0,179.0,0,Transient,70.24,0,3,Check-Out,2019-12-04 -City Hotel,0,1,2015,October,44,10,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,104.07,0,0,Check-Out,2018-08-03 -Resort Hotel,1,15,2016,March,12,21,1,1,2,0.0,0,FB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,45.04,0,0,Canceled,2018-12-03 -Resort Hotel,1,160,2015,October,42,29,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,70.21,0,0,Canceled,2018-08-03 -Resort Hotel,1,314,2016,May,23,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,89.51,0,0,Canceled,2019-03-04 -City Hotel,0,164,2017,July,29,5,2,4,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -City Hotel,1,204,2016,July,21,13,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,Non Refund,11.0,179.0,0,Transient,181.88,0,0,Canceled,2019-07-04 -Resort Hotel,0,14,2016,July,32,31,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,82.82,0,0,Check-Out,2019-02-01 -City Hotel,1,36,2015,July,32,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,107.73,0,0,Canceled,2018-06-02 -City Hotel,1,130,2016,August,38,28,0,3,3,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,2019-05-04 -City Hotel,0,1,2016,January,10,29,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,73.0,0,Transient,60.89,0,3,Check-Out,2019-11-03 -City Hotel,0,0,2016,December,42,14,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Contract,30.44,0,0,Check-Out,2019-09-03 -City Hotel,0,1,2017,March,10,15,0,1,1,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,30.0,70.0,0,Transient,112.7,0,0,Check-Out,2020-01-04 -Resort Hotel,1,169,2017,August,27,20,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,113.53,0,1,Canceled,2019-10-04 -Resort Hotel,0,89,2015,October,44,5,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,3,No Deposit,71.0,179.0,0,Transient-Party,88.1,0,0,Check-Out,2018-09-02 -Resort Hotel,1,33,2016,February,8,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,131.0,179.0,0,Transient,78.69,0,0,Canceled,2018-11-02 -City Hotel,1,151,2016,June,27,25,2,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.11,0,0,Canceled,2019-02-01 -Resort Hotel,0,269,2017,May,35,13,2,10,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Contract,181.2,0,0,Check-Out,2020-03-03 -City Hotel,1,52,2016,December,51,21,0,4,2,0.0,0,BB,CHE,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.69,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2016,August,36,30,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,165.38,0,0,Check-Out,2019-05-04 -Resort Hotel,0,52,2017,February,17,2,2,4,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,150.67,0,0,Check-Out,2020-03-03 -Resort Hotel,1,240,2016,August,36,21,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,119.03,0,2,Canceled,2019-05-04 -City Hotel,1,330,2015,September,23,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,61,Transient,63.35,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2017,February,9,28,0,1,2,0.0,0,SC,GBR,Direct,Direct,0,0,0,G,A,0,No Deposit,14.0,179.0,0,Transient,127.61,0,3,Check-Out,2020-04-02 -City Hotel,0,12,2016,July,42,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.06,0,2,Check-Out,2019-05-04 -Resort Hotel,0,22,2016,December,53,22,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient,44.89,0,2,Check-Out,2019-07-04 -City Hotel,1,1,2017,March,7,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Canceled,2020-02-01 -Resort Hotel,1,0,2016,July,33,17,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,63.66,0,0,Canceled,2019-01-03 -City Hotel,0,44,2016,July,31,30,0,2,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,E,B,0,No Deposit,12.0,179.0,0,Transient,126.35,0,0,Check-Out,2018-08-03 -City Hotel,1,0,2016,August,44,9,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,241.0,0,Transient,3.71,0,0,Canceled,2019-10-04 -City Hotel,0,0,2017,March,23,9,1,0,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Group,3.2,0,0,Check-Out,2020-06-02 -City Hotel,0,153,2016,June,25,5,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,108.9,0,0,Check-Out,2019-03-04 -Resort Hotel,0,32,2017,January,8,13,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Contract,91.68,0,0,Check-Out,2019-12-04 -City Hotel,1,2,2016,October,43,10,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.73,0,0,Canceled,2018-08-03 -City Hotel,1,57,2017,March,16,5,2,5,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.56,0,0,Canceled,2019-10-04 -City Hotel,0,39,2016,December,53,29,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,64.3,0,1,Check-Out,2018-10-03 -Resort Hotel,0,2,2016,May,35,30,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,157.14,1,1,Check-Out,2019-01-03 -City Hotel,0,16,2017,April,17,6,0,4,1,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,77.0,179.0,0,Transient-Party,102.11,0,0,Check-Out,2020-03-03 -City Hotel,0,247,2016,July,32,27,2,5,2,1.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,97.39,0,1,Check-Out,2018-06-02 -Resort Hotel,1,1,2016,June,26,28,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,162.78,0,0,Canceled,2019-03-04 -City Hotel,1,0,2016,January,3,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,53.55,0,1,No-Show,2018-12-03 -City Hotel,0,0,2015,October,43,21,1,0,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,5,2017,February,9,5,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,D,0,No Deposit,13.0,249.0,0,Transient,72.43,0,0,Check-Out,2020-02-01 -Resort Hotel,0,1,2017,January,3,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,37.28,0,0,Check-Out,2019-11-03 -City Hotel,1,90,2015,September,45,12,2,1,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,61.48,0,2,Canceled,2018-08-03 -Resort Hotel,0,162,2017,August,16,16,2,5,1,0.0,0,HB,AUT,Corporate,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,151.26,1,3,Check-Out,2020-01-04 -Resort Hotel,0,232,2017,June,26,9,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Group,215.63,0,1,Check-Out,2019-05-04 -City Hotel,0,14,2017,May,24,24,0,1,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.41,1,0,Check-Out,2020-05-03 -Resort Hotel,0,291,2016,May,22,9,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,41.4,0,0,Check-Out,2019-04-03 -Resort Hotel,0,24,2016,July,34,5,0,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,92.05,0,1,Check-Out,2019-04-03 -City Hotel,1,26,2017,February,8,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,60.61,0,0,Canceled,2018-11-02 -City Hotel,0,10,2017,June,27,29,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,29.0,179.0,0,Transient,134.18,0,0,Check-Out,2020-02-01 -City Hotel,1,255,2016,June,34,17,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,92.35,0,0,Canceled,2019-08-04 -Resort Hotel,0,250,2017,July,30,27,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,151.0,179.0,0,Transient-Party,97.57,1,1,Check-Out,2020-03-03 -Resort Hotel,0,149,2017,February,7,9,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,1,No Deposit,246.0,90.0,0,Transient,67.31,0,0,Check-Out,2020-05-03 -Resort Hotel,1,50,2016,October,30,8,1,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,181.23,0,0,Canceled,2019-08-04 -City Hotel,0,102,2016,June,26,8,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.81,0,1,Check-Out,2019-08-04 -City Hotel,0,35,2016,March,21,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,68.91,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,March,16,28,2,0,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,240.0,179.0,0,Transient,33.56,0,0,Check-Out,2019-02-01 -Resort Hotel,0,41,2016,November,42,25,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,122.19,1,2,Check-Out,2019-06-03 -City Hotel,0,10,2015,September,35,18,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,121.64,0,1,Check-Out,2018-07-03 -Resort Hotel,1,103,2016,May,22,13,2,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,D,E,2,No Deposit,14.0,179.0,0,Transient,150.33,0,0,Canceled,2019-08-04 -City Hotel,0,2,2017,March,7,15,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.33,1,0,Check-Out,2019-12-04 -Resort Hotel,0,50,2015,January,4,28,0,2,2,2.0,0,BB,NLD,Groups,TA/TO,0,0,0,G,G,0,No Deposit,94.0,179.0,0,Transient,244.21,0,0,Check-Out,2018-11-02 -City Hotel,1,199,2017,May,24,10,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,228.93,0,0,Canceled,2020-03-03 -City Hotel,1,37,2016,October,42,21,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.35,0,0,Canceled,2019-07-04 -Resort Hotel,0,0,2017,February,9,5,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,106.0,0,Transient,58.89,0,0,Check-Out,2020-03-03 -City Hotel,1,373,2016,October,34,6,0,1,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.21,0,0,Canceled,2018-10-03 -Resort Hotel,0,16,2017,June,35,29,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,320.0,179.0,0,Transient,196.23,0,2,Check-Out,2020-06-02 -City Hotel,1,146,2017,August,37,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,85.66,0,0,Canceled,2018-08-03 -City Hotel,1,21,2016,February,32,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,143.44,1,0,Canceled,2018-12-03 -City Hotel,1,36,2015,September,44,6,0,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.82,0,0,Canceled,2018-09-02 -City Hotel,1,250,2017,July,34,29,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,239.0,179.0,0,Transient,201.03,0,2,Canceled,2019-05-04 -City Hotel,0,108,2017,August,37,13,2,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,78.31,0,1,Check-Out,2019-12-04 -City Hotel,1,11,2016,June,22,8,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,91.13,0,0,Canceled,2019-02-01 -City Hotel,0,37,2017,April,18,24,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,148.58,0,1,Check-Out,2020-03-03 -City Hotel,0,168,2017,June,27,2,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.86,0,1,Check-Out,2020-03-03 -Resort Hotel,0,0,2017,March,4,16,0,1,2,0.0,0,BB,AUT,Corporate,Corporate,1,0,1,E,I,1,No Deposit,12.0,224.0,75,Transient-Party,0.0,1,0,Check-Out,2020-01-04 -Resort Hotel,1,5,2016,August,37,25,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,170.77,0,1,No-Show,2019-02-01 -City Hotel,1,54,2015,October,44,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.43,0,0,Canceled,2018-08-03 -City Hotel,1,14,2017,June,26,13,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,162.9,0,1,Canceled,2020-06-02 -City Hotel,0,0,2016,September,49,2,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,14.0,183.0,0,Transient,62.66,0,0,Check-Out,2019-06-03 -City Hotel,0,162,2017,August,24,15,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,102.79,0,3,Check-Out,2020-07-03 -City Hotel,1,117,2017,May,22,21,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,E,E,0,Non Refund,8.0,179.0,0,Transient,124.24,0,0,Canceled,2020-02-01 -City Hotel,0,112,2017,April,15,13,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,157.2,0,0,Check-Out,2020-03-03 -Resort Hotel,0,240,2015,September,45,16,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.66,0,0,Canceled,2017-11-02 -Resort Hotel,0,2,2015,July,34,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,130.95,0,0,Check-Out,2018-06-02 -Resort Hotel,1,151,2016,August,33,15,2,5,2,1.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-05-04 -Resort Hotel,1,49,2015,December,53,30,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,72.98,0,0,No-Show,2018-11-02 -City Hotel,1,203,2016,September,42,6,2,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,138.87,0,0,Canceled,2019-10-04 -City Hotel,0,141,2016,September,50,30,3,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,98.58,0,0,Check-Out,2019-08-04 -City Hotel,0,37,2017,August,38,6,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,206.11,0,2,Check-Out,2019-12-04 -City Hotel,0,169,2015,August,37,13,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,61.3,0,0,Check-Out,2017-12-03 -City Hotel,1,187,2016,September,22,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.69,0,1,No-Show,2019-02-01 -Resort Hotel,0,241,2015,October,42,4,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,1,No Deposit,302.0,179.0,0,Transient-Party,47.49,0,0,Check-Out,2018-08-03 -City Hotel,1,91,2016,August,37,21,0,4,3,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Canceled,2019-08-04 -Resort Hotel,0,7,2015,December,53,8,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,40.68,0,0,Check-Out,2018-12-03 -Resort Hotel,0,14,2016,August,35,21,0,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,242.0,179.0,0,Transient,210.26,0,0,Check-Out,2019-09-03 -Resort Hotel,0,245,2016,July,34,19,1,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,241.0,179.0,0,Transient,78.36,1,1,Check-Out,2019-09-03 -City Hotel,0,363,2015,September,39,23,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,76.83,0,0,Check-Out,2018-07-03 -Resort Hotel,0,99,2017,July,9,24,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,143.2,0,2,Check-Out,2020-01-04 -Resort Hotel,0,37,2017,February,11,17,0,2,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,378.0,331.0,0,Transient-Party,62.4,0,0,Check-Out,2019-09-03 -Resort Hotel,1,103,2015,August,32,5,0,4,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,119.11,0,0,Canceled,2018-07-03 -City Hotel,0,0,2017,June,26,20,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,122.66,0,1,Check-Out,2020-06-02 -Resort Hotel,1,122,2017,April,24,30,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,237.0,179.0,0,Transient,150.59,0,2,Canceled,2020-02-01 -City Hotel,1,4,2016,August,38,9,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,1,Non Refund,16.0,45.0,0,Transient,62.67,0,0,Canceled,2018-08-03 -City Hotel,0,384,2017,April,16,30,0,4,1,0.0,0,HB,DEU,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,12.0,227.0,0,Transient-Party,100.81,1,0,Check-Out,2020-02-01 -Resort Hotel,0,102,2016,June,32,21,2,2,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,183.12,0,0,Check-Out,2019-05-04 -City Hotel,1,51,2017,December,53,18,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.29,0,1,Canceled,2019-10-04 -Resort Hotel,0,1,2017,March,10,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,63.24,1,0,Check-Out,2020-03-03 -City Hotel,1,9,2017,February,10,29,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,K,0,No Deposit,20.0,179.0,0,Transient-Party,74.03,0,1,No-Show,2020-02-01 -City Hotel,0,5,2017,May,23,29,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.4,0,0,Check-Out,2020-02-01 -Resort Hotel,0,21,2016,July,42,18,1,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,120.29,0,0,Check-Out,2019-09-03 -Resort Hotel,0,15,2016,October,45,10,1,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,162.16,1,0,Check-Out,2019-08-04 -City Hotel,1,16,2015,December,51,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,62.01,0,0,Canceled,2018-08-03 -City Hotel,1,6,2016,December,53,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.66,0,0,Canceled,2019-10-04 -City Hotel,1,67,2017,February,9,28,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,63.63,0,0,Canceled,2018-12-03 -City Hotel,0,0,2015,November,52,30,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,30.82,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2015,August,46,13,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,38.65,0,0,Check-Out,2018-08-03 -City Hotel,1,248,2016,October,41,22,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,2,No Deposit,12.0,179.0,0,Transient-Party,104.63,0,1,Canceled,2019-07-04 -Resort Hotel,0,11,2015,October,43,19,2,1,1,0.0,0,BB,ISR,Groups,Corporate,0,1,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,37.73,0,0,Check-Out,2018-09-02 -Resort Hotel,1,98,2017,April,17,23,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,50.35,0,0,Canceled,2019-03-04 -City Hotel,1,191,2016,July,27,17,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,128.33,0,0,Canceled,2018-06-02 -Resort Hotel,1,56,2017,February,8,24,2,4,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,C,A,0,No Deposit,14.0,179.0,0,Group,104.43,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,June,22,25,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,G,B,0,No Deposit,12.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,0,2,2016,October,44,29,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.23,0,0,Check-Out,2019-07-04 -City Hotel,0,232,2016,June,27,10,0,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.61,0,2,Check-Out,2019-02-01 -City Hotel,0,55,2016,June,43,12,0,3,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,61.92,0,0,Check-Out,2019-06-03 -Resort Hotel,0,3,2017,March,18,17,2,5,2,0.0,0,HB,AUT,Offline TA/TO,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,68.17,1,3,Check-Out,2020-02-01 -Resort Hotel,0,45,2017,December,50,17,0,2,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,H,1,No Deposit,176.0,179.0,0,Transient,102.59,0,0,Check-Out,2019-03-04 -City Hotel,1,114,2016,October,45,28,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.62,0,0,Canceled,2019-05-04 -Resort Hotel,0,18,2015,October,50,6,2,1,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,243.0,179.0,0,Group,49.67,1,1,Check-Out,2017-12-03 -Resort Hotel,1,163,2017,January,4,28,1,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient-Party,66.97,0,1,No-Show,2019-11-03 -Resort Hotel,0,13,2015,January,4,31,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,250.0,179.0,0,Transient,38.93,0,0,Check-Out,2018-09-02 -City Hotel,0,106,2017,March,10,20,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient-Party,119.48,0,1,Check-Out,2020-02-01 -Resort Hotel,1,289,2015,September,42,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,36.4,0,0,Canceled,2018-07-03 -Resort Hotel,0,95,2016,December,50,16,0,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,61.09,0,0,Check-Out,2019-12-04 -City Hotel,0,0,2017,May,24,28,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,74.45,0,0,Check-Out,2020-03-03 -City Hotel,0,42,2016,June,24,30,1,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.65,0,1,Check-Out,2019-03-04 -Resort Hotel,0,16,2016,December,5,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,319.0,179.0,0,Transient,30.21,0,0,Check-Out,2019-11-03 -City Hotel,0,47,2015,July,30,21,0,2,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,120.74,0,0,Check-Out,2020-06-02 -Resort Hotel,0,189,2016,September,32,15,4,10,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,114.77,0,0,Check-Out,2019-04-03 -City Hotel,1,169,2017,August,27,22,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,203.01,0,0,Canceled,2020-07-03 -City Hotel,1,233,2015,July,32,6,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,117.86,0,0,Canceled,2018-05-03 -Resort Hotel,0,8,2016,December,51,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,331.0,0,Transient,58.6,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,October,44,25,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,151.15,1,3,Check-Out,2019-08-04 -Resort Hotel,0,20,2016,March,10,24,1,4,2,0.0,0,HB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient,41.68,0,0,Check-Out,2019-03-04 -City Hotel,1,45,2016,December,50,24,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,60,Transient-Party,60.08,0,0,Canceled,2019-09-03 -City Hotel,1,1,2016,May,18,9,1,0,3,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,17.0,256.0,0,Transient,3.43,0,0,Canceled,2020-01-04 -City Hotel,0,36,2017,May,16,2,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.22,0,1,Check-Out,2020-03-03 -City Hotel,0,40,2016,April,16,20,2,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,87.18,0,2,Check-Out,2019-03-04 -Resort Hotel,0,267,2015,July,32,9,2,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,139.22,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2015,October,44,13,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,64.02,1,2,Check-Out,2018-08-03 -Resort Hotel,0,3,2015,September,35,9,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,157.91,0,0,Check-Out,2020-06-02 -City Hotel,0,154,2017,July,31,7,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.64,0,2,Check-Out,2020-06-02 -City Hotel,1,298,2016,October,46,25,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,81.51,0,0,Canceled,2018-08-03 -City Hotel,1,53,2017,April,17,19,2,4,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,84.59,0,0,Canceled,2020-02-01 -City Hotel,1,16,2016,November,43,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,Non Refund,13.0,45.0,0,Transient,70.26,0,1,Canceled,2018-12-03 -Resort Hotel,1,266,2015,October,48,23,2,5,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,A,1,No Deposit,30.0,179.0,0,Transient,126.37,0,0,Canceled,2019-11-03 -City Hotel,0,29,2016,December,5,25,1,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,39.09,0,1,Check-Out,2019-11-03 -City Hotel,0,9,2017,April,23,30,1,1,1,0.0,0,BB,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,69.73,0,0,Check-Out,2020-06-02 -City Hotel,0,13,2017,September,35,30,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,63.24,0,1,Check-Out,2020-06-02 -City Hotel,1,39,2017,January,10,27,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.64,0,0,Canceled,2019-11-03 -City Hotel,0,15,2016,October,46,6,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.41,0,0,Check-Out,2019-09-03 -City Hotel,1,97,2015,August,38,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,116.98,0,0,Canceled,2018-08-03 -Resort Hotel,1,122,2016,July,18,16,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,60.27,0,2,Canceled,2018-11-02 -City Hotel,0,117,2016,December,53,17,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,65.8,0,1,Check-Out,2018-12-03 -City Hotel,0,48,2015,July,32,17,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,16.0,179.0,0,Transient,137.86,0,0,Check-Out,2018-05-03 -City Hotel,1,185,2017,April,18,21,0,2,1,0.0,0,HB,PRT,Groups,Corporate,1,1,0,A,A,1,Non Refund,11.0,179.0,0,Transient-Party,61.74,0,0,Canceled,2019-03-04 -City Hotel,0,6,2016,March,10,5,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,76.31,0,2,Check-Out,2019-10-04 -Resort Hotel,0,20,2016,August,35,1,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,78.8,0,0,Check-Out,2019-08-04 -Resort Hotel,1,323,2017,June,16,13,2,5,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,159.0,179.0,0,Transient,107.41,0,1,Canceled,2020-03-03 -Resort Hotel,0,281,2016,July,30,20,3,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,E,E,0,No Deposit,66.0,179.0,0,Transient-Party,98.46,0,0,Check-Out,2019-04-03 -City Hotel,1,54,2016,December,51,17,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.99,0,0,Canceled,2019-07-04 -City Hotel,0,2,2016,March,16,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient-Party,68.58,0,0,Check-Out,2019-02-01 -City Hotel,0,13,2016,April,18,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.86,0,0,Check-Out,2019-04-03 -City Hotel,1,262,2016,August,32,2,2,2,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,92.14,0,1,Canceled,2019-05-04 -City Hotel,1,149,2016,July,43,24,0,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient-Party,202.69,0,0,Canceled,2019-11-03 -City Hotel,0,18,2017,May,30,4,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,76.55,0,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2015,November,51,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient-Party,35.53,0,0,Check-Out,2018-08-03 -City Hotel,0,39,2017,February,8,11,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient-Party,105.75,0,0,Check-Out,2020-02-01 -City Hotel,0,160,2016,August,38,24,2,6,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,10.0,179.0,0,Transient,148.46,0,2,Check-Out,2020-07-03 -City Hotel,0,10,2016,May,25,28,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,121.27,0,3,Check-Out,2019-11-03 -Resort Hotel,0,256,2016,July,35,2,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,326.0,179.0,0,Transient,137.19,0,2,Check-Out,2019-04-03 -City Hotel,1,147,2017,August,36,21,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,175.81,0,0,Canceled,2020-05-03 -Resort Hotel,0,86,2017,July,22,7,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,75.18,0,3,Canceled,2020-02-01 -City Hotel,1,83,2017,July,28,5,0,4,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.52,0,1,Canceled,2020-03-03 -City Hotel,1,157,2017,June,27,2,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,112.71,0,0,No-Show,2020-07-03 -City Hotel,1,143,2017,May,9,25,0,4,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.88,0,0,Canceled,2020-03-03 -Resort Hotel,0,6,2016,April,17,19,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,71.85,0,2,Check-Out,2019-02-01 -City Hotel,1,47,2015,August,35,20,2,2,1,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,65.43,0,1,Canceled,2018-07-03 -City Hotel,0,51,2016,July,28,22,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,190.0,179.0,0,Transient,62.57,0,0,Check-Out,2018-06-02 -City Hotel,0,95,2017,July,26,18,0,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,159.07,0,3,Check-Out,2020-07-03 -City Hotel,0,12,2016,August,26,20,1,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient-Party,189.59,1,3,Check-Out,2019-05-04 -Resort Hotel,0,0,2017,February,9,5,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,179.0,0,Transient,33.99,1,1,Check-Out,2020-01-04 -City Hotel,1,256,2017,July,32,5,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,194.28,0,1,Canceled,2020-06-02 -Resort Hotel,1,11,2015,August,36,26,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,78.69,0,0,Canceled,2018-11-02 -City Hotel,0,62,2017,August,30,5,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,62.42,0,1,Check-Out,2019-11-03 -City Hotel,0,51,2015,January,52,24,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,74.72,0,0,Check-Out,2018-11-02 -City Hotel,0,35,2016,September,42,17,0,3,2,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient,83.81,0,0,Check-Out,2019-06-03 -City Hotel,0,38,2017,March,38,28,2,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.34,0,1,Check-Out,2019-12-04 -City Hotel,1,31,2015,October,43,15,1,5,2,0.0,0,HB,ISR,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,78.33,0,0,Canceled,2018-08-03 -Resort Hotel,1,40,2017,January,4,19,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,162.72,0,0,Canceled,2019-10-04 -City Hotel,0,0,2016,October,45,27,1,0,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,79.89,0,0,Check-Out,2019-08-04 -Resort Hotel,1,44,2016,December,51,27,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,177.0,179.0,0,Transient,68.04,0,0,Canceled,2019-09-03 -City Hotel,1,51,2015,September,50,26,2,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,112.36,0,0,Check-Out,2018-08-03 -Resort Hotel,1,167,2017,June,21,10,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Contract,81.14,1,0,Canceled,2019-12-04 -Resort Hotel,0,12,2015,December,6,31,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,30.45,0,3,Check-Out,2018-11-02 -City Hotel,0,32,2015,October,43,15,2,1,2,0.0,0,HB,,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,112.19,0,0,Check-Out,2018-08-03 -City Hotel,1,42,2016,July,32,15,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,164.19,0,1,Canceled,2019-05-04 -City Hotel,0,70,2015,October,47,18,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,62.89,0,0,Check-Out,2018-08-03 -City Hotel,1,58,2015,December,53,10,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.86,0,0,Canceled,2018-10-03 -City Hotel,1,85,2017,May,22,31,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.97,0,0,Canceled,2020-02-01 -City Hotel,0,54,2016,December,50,15,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.32,0,0,Check-Out,2019-10-04 -City Hotel,0,4,2015,January,3,21,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,38,Transient-Party,61.34,0,1,Check-Out,2018-11-02 -City Hotel,0,195,2017,June,26,15,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,79.35,0,1,Check-Out,2019-03-04 -City Hotel,0,245,2016,June,25,21,2,10,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,1,E,A,0,No Deposit,162.0,179.0,0,Group,87.48,0,0,Check-Out,2019-06-03 -City Hotel,0,1,2016,October,44,21,1,0,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,1.23,0,0,Check-Out,2019-10-04 -City Hotel,0,169,2017,May,34,13,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,148.96,1,2,Check-Out,2019-12-04 -Resort Hotel,0,103,2017,March,19,15,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,1,No Deposit,241.0,179.0,0,Transient,40.86,0,1,Check-Out,2020-03-03 -Resort Hotel,0,207,2017,May,23,31,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,62.38,0,0,Check-Out,2019-12-04 -Resort Hotel,1,1,2017,January,2,16,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,A,3,Non Refund,200.0,179.0,0,Transient,143.6,0,0,Canceled,2019-12-04 -Resort Hotel,0,40,2016,October,45,5,1,4,2,1.0,0,SC,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,61.16,1,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2017,April,10,5,0,5,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,A,2,No Deposit,198.0,331.0,75,Transient,83.63,1,0,Check-Out,2020-04-02 -City Hotel,0,1,2017,June,28,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,A,2,No Deposit,14.0,45.0,0,Transient,82.51,0,0,Check-Out,2020-04-02 -City Hotel,0,27,2016,May,28,27,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,182.42,0,1,Check-Out,2019-05-04 -Resort Hotel,0,16,2017,February,9,20,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,82.31,0,2,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,January,12,31,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Transient,40.74,0,2,Check-Out,2018-12-03 -Resort Hotel,0,39,2017,March,12,14,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,36.46,0,0,Check-Out,2020-05-03 -Resort Hotel,1,38,2016,March,17,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,2,No Deposit,15.0,57.0,0,Transient,35.22,0,0,Canceled,2018-11-02 -Resort Hotel,1,101,2015,August,43,20,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,31.0,179.0,0,Contract,73.08,0,0,Canceled,2018-07-03 -Resort Hotel,0,20,2016,June,28,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,62.83,0,1,Check-Out,2019-07-04 -City Hotel,1,140,2016,August,32,17,1,3,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,191.14,0,0,Canceled,2019-04-03 -Resort Hotel,1,14,2017,February,7,16,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,38.93,0,0,Canceled,2019-12-04 -Resort Hotel,0,98,2016,April,17,9,0,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,87.93,0,0,Check-Out,2019-05-04 -Resort Hotel,0,296,2016,June,34,10,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,115.27,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2015,August,33,5,2,2,3,0.0,0,BB,,Complementary,Undefined,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient-Party,55.95,0,0,Check-Out,2018-06-02 -Resort Hotel,1,316,2017,August,35,31,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,150.56,0,0,Canceled,2020-06-02 -City Hotel,0,151,2017,June,35,19,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,77.39,0,0,Check-Out,2020-01-04 -City Hotel,0,142,2017,October,22,13,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,132.18,0,2,Check-Out,2020-04-02 -City Hotel,0,295,2016,September,35,8,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Contract,111.68,0,2,Check-Out,2019-08-04 -City Hotel,1,93,2016,August,33,16,0,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.45,0,1,Check-Out,2019-08-04 -City Hotel,0,98,2015,July,30,6,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Transient-Party,159.68,0,0,Check-Out,2018-06-02 -City Hotel,0,59,2017,May,18,20,0,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,137.9,0,1,Check-Out,2020-01-04 -Resort Hotel,0,12,2017,June,29,20,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,206.59,0,0,Check-Out,2020-05-03 -City Hotel,0,2,2015,October,45,12,0,2,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,71.0,0,Transient,72.97,0,0,Check-Out,2018-09-02 -City Hotel,0,19,2016,September,44,18,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Group,178.48,0,0,Check-Out,2019-02-01 -City Hotel,1,259,2016,October,41,23,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,G,0,No Deposit,8.0,179.0,42,Transient-Party,96.17,0,0,Canceled,2019-10-04 -Resort Hotel,0,213,2016,April,34,15,2,5,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,116.45,1,1,Check-Out,2019-02-01 -City Hotel,0,191,2016,September,37,28,2,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,170.94,0,0,Check-Out,2019-08-04 -City Hotel,1,264,2017,May,18,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.62,0,0,Canceled,2018-12-03 -City Hotel,0,136,2016,October,44,2,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,8.0,179.0,0,Transient,197.04,0,3,Check-Out,2019-11-03 -City Hotel,0,198,2016,May,23,10,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient-Party,126.81,0,0,Check-Out,2019-02-01 -Resort Hotel,1,0,2016,August,36,28,1,3,2,2.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,160.36,0,0,Check-Out,2018-12-03 -Resort Hotel,0,36,2016,May,26,4,4,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,210.0,331.0,0,Transient,79.7,0,0,Check-Out,2019-06-03 -Resort Hotel,0,143,2017,June,27,17,2,5,1,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,138.39,0,3,Check-Out,2020-07-03 -Resort Hotel,0,0,2015,November,44,30,2,1,1,0.0,0,BB,,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,222.0,0,Transient-Party,95.84,0,0,Check-Out,2019-07-04 -City Hotel,0,3,2016,September,36,6,2,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,79.95,0,0,Check-Out,2019-08-04 -Resort Hotel,0,51,2017,March,10,9,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,73.65,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2017,April,22,9,1,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,247.0,0,Transient,72.5,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,March,12,19,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,222.0,0,Transient-Party,114.28,0,0,Check-Out,2020-03-03 -Resort Hotel,0,90,2015,December,51,21,0,3,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,68.32,0,0,Check-Out,2018-06-02 -Resort Hotel,1,43,2015,July,26,7,2,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Contract,61.52,0,2,Check-Out,2018-01-31 -City Hotel,0,47,2016,November,53,16,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.21,0,1,Check-Out,2019-12-04 -Resort Hotel,1,41,2015,August,37,1,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,239.0,179.0,0,Transient,143.24,0,2,Canceled,2018-06-02 -Resort Hotel,0,249,2015,October,42,20,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Contract,61.7,0,0,Check-Out,2018-08-03 -City Hotel,0,37,2017,July,30,7,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,G,F,2,No Deposit,16.0,179.0,0,Transient,178.12,0,3,Check-Out,2020-04-02 -Resort Hotel,0,22,2016,December,50,11,2,2,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,3,No Deposit,14.0,179.0,0,Transient,61.3,0,0,Check-Out,2019-11-03 -City Hotel,0,19,2016,September,45,26,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,119.47,0,3,Check-Out,2019-09-03 -Resort Hotel,0,0,2017,May,26,15,2,4,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient-Party,0.0,1,0,Check-Out,2020-01-04 -City Hotel,0,48,2016,April,17,25,0,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,139.21,0,2,Check-Out,2019-02-01 -City Hotel,0,40,2016,April,18,11,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,70.86,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,August,34,10,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,1,No Deposit,189.0,331.0,0,Transient,73.91,0,0,Check-Out,2020-07-03 -City Hotel,1,0,2016,May,37,28,0,3,1,0.0,0,BB,NLD,Aviation,Corporate,0,0,0,D,A,0,No Deposit,12.0,158.0,0,Transient,79.36,0,0,Canceled,2019-08-04 -Resort Hotel,0,20,2017,August,35,28,2,1,1,2.0,0,BB,,Online TA,Direct,0,0,0,A,C,2,No Deposit,245.0,179.0,0,Transient,119.26,0,3,Check-Out,2020-07-03 -City Hotel,1,314,2015,October,44,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.35,0,0,Canceled,2018-09-02 -City Hotel,1,47,2016,July,33,6,1,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.43,0,1,Canceled,2019-06-03 -City Hotel,1,232,2016,December,53,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.82,0,0,Canceled,2018-11-02 -City Hotel,0,154,2017,April,18,24,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.26,0,3,Check-Out,2019-12-04 -Resort Hotel,1,255,2016,September,43,17,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,82.0,179.0,0,Transient,69.31,0,0,Canceled,2019-07-04 -City Hotel,0,102,2016,March,36,30,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,7.0,179.0,0,Transient,100.93,0,2,Check-Out,2020-01-04 -City Hotel,0,0,2017,May,23,18,2,0,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,79.18,0,0,Check-Out,2020-01-04 -City Hotel,0,2,2015,October,44,8,1,0,1,0.0,0,BB,PRT,Undefined,Direct,0,0,0,A,D,1,No Deposit,15.0,45.0,0,Transient-Party,0.0,0,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2016,March,9,21,2,2,2,0.0,0,BB,,Corporate,TA/TO,1,0,1,A,I,0,No Deposit,246.0,179.0,0,Transient,62.11,0,1,Check-Out,2018-10-03 -City Hotel,0,280,2016,May,23,8,0,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,80.33,1,0,Check-Out,2019-03-04 -City Hotel,1,152,2016,November,53,29,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,96.06,0,1,Canceled,2018-12-03 -Resort Hotel,0,62,2017,April,21,3,2,0,3,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,378.0,179.0,0,Transient,148.67,0,0,Check-Out,2020-02-01 -Resort Hotel,0,17,2015,October,44,13,1,1,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,No Deposit,14.0,67.0,0,Transient-Party,30.95,0,0,Check-Out,2018-09-02 -Resort Hotel,1,292,2015,August,39,16,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,166.34,0,2,Canceled,2018-06-02 -City Hotel,0,30,2017,May,23,29,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,180.0,0,Transient,69.89,0,0,Check-Out,2020-04-02 -City Hotel,0,145,2015,September,43,10,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,71.66,0,1,Check-Out,2018-07-03 -Resort Hotel,0,22,2015,July,31,17,4,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,126.35,0,2,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,August,35,9,0,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,149.84,0,0,Check-Out,2019-06-03 -City Hotel,1,56,2016,December,45,10,1,1,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,95.9,0,0,No-Show,2019-08-04 -Resort Hotel,0,28,2016,May,18,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,155.03,0,0,Check-Out,2019-03-04 -Resort Hotel,1,158,2016,December,45,16,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,L,0,No Deposit,170.0,179.0,0,Transient,77.8,0,0,Canceled,2019-10-04 -City Hotel,0,102,2016,June,27,20,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,213.43,0,0,Check-Out,2019-12-04 -City Hotel,1,0,2017,March,8,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,83.06,0,0,Canceled,2020-03-03 -Resort Hotel,0,56,2016,August,32,24,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Contract,77.37,0,0,Check-Out,2018-12-03 -Resort Hotel,0,12,2016,February,10,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,60.0,0,Transient,25.68,0,0,Check-Out,2019-03-04 -City Hotel,1,407,2016,June,27,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.68,0,0,Canceled,2020-03-03 -Resort Hotel,0,2,2017,March,12,22,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,2,No Deposit,17.0,223.0,0,Transient,50.53,0,0,Check-Out,2020-03-03 -Resort Hotel,1,200,2016,March,22,9,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,116.81,0,2,Canceled,2019-03-04 -Resort Hotel,0,43,2015,December,50,28,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,70.7,0,0,Check-Out,2019-11-03 -City Hotel,1,156,2017,March,13,16,2,2,2,0.0,0,HB,SWE,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,102.11,0,1,Canceled,2020-03-03 -Resort Hotel,1,201,2015,September,42,28,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,87.95,0,0,Canceled,2018-08-03 -City Hotel,0,158,2015,August,37,9,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,113.0,0,0,Check-Out,2019-07-04 -City Hotel,1,14,2016,July,15,6,2,5,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,162.68,0,3,Canceled,2019-08-04 -City Hotel,0,0,2016,October,43,14,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,188.0,179.0,0,Transient,70.73,0,0,Check-Out,2019-02-01 -City Hotel,1,45,2017,May,22,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,65.18,0,0,Canceled,2019-11-03 -City Hotel,1,4,2016,August,33,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,36.59,0,2,No-Show,2018-06-02 -City Hotel,0,23,2015,May,18,27,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,1.0,179.0,0,Transient-Party,83.33,0,0,Check-Out,2018-08-03 -Resort Hotel,1,104,2015,October,42,10,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Contract,34.65,0,0,Canceled,2017-11-02 -City Hotel,1,331,2016,May,22,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.65,0,0,Canceled,2018-11-02 -City Hotel,0,2,2017,June,25,30,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,125.77,0,2,Check-Out,2020-02-01 -Resort Hotel,0,48,2017,August,37,10,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,242.0,179.0,0,Transient,201.99,1,0,Check-Out,2019-06-03 -City Hotel,1,88,2016,June,22,27,0,2,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,13.0,179.0,0,Transient,155.21,0,0,Canceled,2019-01-03 -City Hotel,0,106,2016,January,22,20,1,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,110.71,0,0,Check-Out,2019-11-03 -City Hotel,1,421,2017,March,20,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,74.64,0,0,Canceled,2019-03-04 -City Hotel,1,53,2015,December,53,6,2,0,3,0.0,0,BB,PRT,Undefined,TA/TO,0,1,0,B,K,0,No Deposit,11.0,179.0,0,Transient-Party,61.32,0,0,Canceled,2019-11-03 -City Hotel,0,144,2017,March,25,9,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.72,0,3,Check-Out,2020-04-02 -Resort Hotel,0,191,2016,October,42,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,300.0,179.0,0,Transient,66.32,0,0,Check-Out,2019-08-04 -Resort Hotel,0,4,2016,November,23,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,2,No Deposit,15.0,216.0,0,Transient-Party,60.58,1,0,Check-Out,2019-04-03 -City Hotel,0,54,2016,June,25,8,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,73.69,0,0,Check-Out,2018-05-03 -City Hotel,0,26,2015,November,43,16,0,5,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.82,0,2,Check-Out,2018-09-02 -City Hotel,1,14,2017,March,18,18,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,196.63,0,0,Canceled,2019-09-03 -City Hotel,1,12,2016,October,43,5,0,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,71.17,0,0,Canceled,2019-10-04 -Resort Hotel,0,63,2017,July,33,5,2,5,2,1.0,0,BB,NLD,Direct,TA/TO,0,0,0,E,G,2,No Deposit,246.0,179.0,0,Transient,205.22,1,2,Check-Out,2020-06-02 -City Hotel,0,1,2017,March,10,28,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,69.51,0,0,Check-Out,2020-02-01 -City Hotel,0,59,2016,October,22,21,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.4,0,3,Check-Out,2019-08-04 -City Hotel,0,2,2016,November,46,22,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,62.96,0,1,Check-Out,2019-07-04 -City Hotel,0,271,2016,July,27,20,0,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,127.26,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,December,44,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,15.0,240.0,0,Transient,34.78,1,0,Check-Out,2019-12-04 -Resort Hotel,0,48,2016,October,44,9,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,240.0,179.0,0,Transient,106.36,0,0,Check-Out,2019-09-03 -City Hotel,1,152,2016,June,27,12,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,113.5,0,2,Canceled,2019-03-04 -Resort Hotel,0,3,2016,October,45,31,3,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,52.53,0,0,Check-Out,2019-10-04 -City Hotel,0,42,2016,December,52,17,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,137.12,0,2,Check-Out,2019-05-04 -Resort Hotel,0,40,2017,March,18,5,0,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,29.26,0,1,Check-Out,2020-03-03 -Resort Hotel,0,300,2016,May,26,8,2,10,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,E,1,No Deposit,244.0,179.0,0,Transient,119.69,1,1,Check-Out,2019-06-03 -City Hotel,0,29,2017,May,23,15,0,5,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.91,0,0,Check-Out,2020-01-04 -Resort Hotel,0,272,2016,April,21,21,2,5,2,0.0,0,Undefined,DEU,Groups,Direct,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient,80.43,0,0,Canceled,2019-02-01 -City Hotel,0,251,2015,August,37,7,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.22,0,2,Check-Out,2018-08-03 -Resort Hotel,0,37,2016,August,32,2,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,120.92,1,2,Check-Out,2019-07-04 -City Hotel,1,0,2017,June,26,29,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.46,0,0,Canceled,2020-04-02 -City Hotel,1,191,2015,August,33,4,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,222.18,0,0,No-Show,2018-06-02 -City Hotel,1,196,2016,September,37,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,76.0,179.0,0,Transient,119.94,0,0,Canceled,2018-07-03 -City Hotel,1,298,2016,May,22,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,174.0,179.0,0,Transient-Party,60.81,0,0,Canceled,2019-04-03 -Resort Hotel,1,152,2017,July,37,30,2,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,239.0,179.0,0,Transient,192.54,0,0,Canceled,2020-05-03 -City Hotel,0,275,2015,September,34,17,2,2,1,0.0,0,HB,IRL,Groups,TA/TO,0,1,0,A,A,0,No Deposit,84.0,179.0,0,Contract,81.74,0,0,Check-Out,2018-08-03 -Resort Hotel,0,140,2016,February,8,5,0,4,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,89.0,179.0,0,Transient-Party,76.24,0,0,Check-Out,2018-11-02 -Resort Hotel,0,34,2016,December,52,7,2,4,2,0.0,0,BB,POL,Complementary,TA/TO,0,0,0,C,F,0,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,July,34,25,0,3,3,0.0,0,BB,PRT,Complementary,Direct,1,0,0,G,F,2,No Deposit,14.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-07-04 -City Hotel,1,11,2016,August,21,30,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,39,Transient,84.74,0,0,Canceled,2019-08-04 -City Hotel,0,19,2016,October,45,16,1,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.53,0,0,Check-Out,2019-09-03 -City Hotel,1,38,2016,July,25,14,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,114.93,0,1,Canceled,2019-02-01 -Resort Hotel,0,60,2015,October,44,17,0,3,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,86.71,0,0,Check-Out,2019-12-04 -City Hotel,0,95,2016,November,36,30,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,175.0,0,1,Check-Out,2019-11-03 -City Hotel,0,10,2017,July,26,10,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.17,0,0,Check-Out,2020-06-02 -City Hotel,1,100,2016,March,16,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,74.0,179.0,0,Transient,79.07,0,0,Canceled,2019-02-01 -Resort Hotel,1,8,2017,January,53,29,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,159.59,0,0,Canceled,2019-12-04 -City Hotel,1,381,2016,February,10,20,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,17,Transient,59.19,0,0,Canceled,2018-12-03 -Resort Hotel,0,53,2015,December,51,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient-Party,57.74,0,0,Check-Out,2019-01-03 -City Hotel,0,246,2017,May,26,17,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient-Party,67.33,0,2,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,January,3,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,95.0,179.0,0,Transient,32.97,0,0,Check-Out,2018-11-02 -City Hotel,0,35,2016,January,3,21,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,60.15,0,1,Check-Out,2019-11-03 -City Hotel,1,45,2017,March,9,10,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,64.66,0,0,Canceled,2019-11-03 -City Hotel,0,45,2016,December,11,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,20,Transient-Party,75.85,0,0,Check-Out,2019-09-03 -City Hotel,0,257,2016,July,37,13,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.13,0,2,Check-Out,2019-06-03 -City Hotel,0,44,2016,May,28,14,1,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,121.37,0,0,Check-Out,2019-03-04 -City Hotel,1,80,2015,August,34,12,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,95.68,0,0,No-Show,2018-06-02 -City Hotel,0,2,2015,November,37,27,0,1,2,2.0,0,BB,AUT,Direct,Direct,0,0,0,F,F,3,No Deposit,11.0,179.0,0,Transient,185.04,0,0,Check-Out,2018-08-03 -City Hotel,0,48,2017,March,10,19,2,5,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,167.0,179.0,0,Transient,92.68,0,1,Check-Out,2019-03-04 -City Hotel,0,244,2017,May,21,5,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,78.8,0,1,Check-Out,2020-04-02 -City Hotel,0,0,2017,February,7,13,2,3,2,0.0,0,HB,CHE,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,267.0,0,Transient,81.52,1,0,Check-Out,2020-04-02 -City Hotel,1,34,2017,February,9,5,0,2,3,2.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Canceled,2019-12-04 -City Hotel,1,159,2016,April,14,25,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,25.0,179.0,0,Transient,131.8,0,0,Canceled,2019-01-03 -Resort Hotel,1,144,2017,July,32,27,2,4,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,2,No Deposit,247.0,179.0,0,Transient,208.83,0,0,Canceled,2020-05-03 -Resort Hotel,1,135,2016,August,38,23,2,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,49.64,0,0,Canceled,2018-06-02 -City Hotel,0,128,2017,May,17,31,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.54,0,1,Canceled,2020-03-03 -Resort Hotel,0,227,2016,July,33,21,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,73.22,0,0,Check-Out,2019-02-01 -Resort Hotel,0,11,2017,August,36,31,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,242.0,179.0,0,Transient,200.04,1,1,Check-Out,2020-07-03 -Resort Hotel,0,23,2016,December,49,2,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,40.07,0,1,Check-Out,2018-10-03 -Resort Hotel,1,64,2016,January,12,9,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,15,Transient,60.77,0,0,Canceled,2018-10-03 -City Hotel,1,442,2015,December,45,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.97,0,0,Canceled,2018-08-03 -City Hotel,0,88,2017,December,51,18,2,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,94.77,0,3,Check-Out,2019-06-03 -City Hotel,0,18,2016,April,16,10,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.16,0,2,Check-Out,2019-03-04 -Resort Hotel,0,270,2016,July,31,6,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,238.0,179.0,0,Transient,224.35,0,3,Check-Out,2019-10-04 -City Hotel,1,283,2015,August,34,21,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,61.28,0,1,Canceled,2017-11-02 -Resort Hotel,0,40,2017,May,21,24,2,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,H,0,No Deposit,239.0,179.0,0,Transient,161.02,0,1,Check-Out,2020-01-04 -Resort Hotel,0,35,2016,October,4,31,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,188.0,179.0,0,Transient,74.13,0,0,Check-Out,2019-11-03 -Resort Hotel,0,255,2016,September,42,2,2,4,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,237.16,1,0,Check-Out,2018-06-02 -City Hotel,0,2,2017,February,7,18,0,1,2,0.0,0,BB,SWE,Corporate,Direct,0,0,0,D,D,0,No Deposit,13.0,51.0,0,Transient,99.89,0,1,Check-Out,2019-02-01 -City Hotel,1,158,2016,June,27,18,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,86.31,0,0,Canceled,2019-01-03 -City Hotel,0,16,2016,August,43,2,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,97.3,0,1,Check-Out,2019-03-04 -City Hotel,0,2,2017,February,11,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,45.0,0,Transient,37.95,0,0,Check-Out,2020-03-03 -Resort Hotel,0,13,2016,September,33,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,75.42,0,1,Check-Out,2018-06-02 -City Hotel,1,22,2016,August,38,26,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,82.27,0,0,No-Show,2019-06-03 -Resort Hotel,0,0,2015,July,29,10,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,252.0,0,0,Check-Out,2018-05-03 -Resort Hotel,0,23,2016,December,52,17,0,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -City Hotel,0,14,2016,September,44,24,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,149.14,0,1,Check-Out,2019-06-03 -City Hotel,0,144,2016,February,50,9,0,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,264.0,179.0,0,Transient,66.78,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2015,September,43,5,1,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,38.05,1,2,Check-Out,2018-06-02 -City Hotel,1,5,2016,September,35,7,0,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.95,0,1,No-Show,2019-06-03 -City Hotel,1,89,2017,May,18,16,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,153.23,0,0,Canceled,2019-12-04 -City Hotel,0,105,2015,October,43,3,0,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,21.0,179.0,0,Transient-Party,60.09,0,0,Check-Out,2018-06-02 -City Hotel,1,144,2016,June,28,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,114.64,0,0,Canceled,2019-02-01 -Resort Hotel,0,12,2015,December,52,26,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,79.0,0,Transient,61.85,0,0,Check-Out,2019-10-04 -Resort Hotel,0,65,2016,December,43,22,2,4,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,3,Check-Out,2019-10-04 -City Hotel,0,15,2017,May,21,24,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,209.8,0,1,Check-Out,2020-03-03 -City Hotel,0,152,2017,June,27,19,0,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.11,0,2,Check-Out,2020-03-03 -City Hotel,0,10,2016,July,41,20,0,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,101.06,0,0,Check-Out,2019-06-03 -City Hotel,1,155,2016,September,43,22,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,62.0,179.0,0,Transient,117.62,0,0,Canceled,2019-07-04 -City Hotel,0,99,2016,November,47,21,0,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.58,0,1,Check-Out,2019-09-03 -City Hotel,1,42,2017,March,10,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,67.08,0,0,Canceled,2020-03-03 -City Hotel,0,0,2016,November,21,11,0,1,1,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,17.0,224.0,0,Transient,3.2,0,0,Check-Out,2020-01-04 -City Hotel,0,141,2016,July,26,27,1,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,216.88,0,0,Check-Out,2019-04-03 -Resort Hotel,0,119,2015,August,31,15,2,5,1,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,132.44,0,0,Check-Out,2018-07-03 -Resort Hotel,0,38,2016,December,50,9,1,1,1,0.0,0,BB,ESP,Online TA,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,76.66,0,0,Check-Out,2019-12-04 -City Hotel,0,41,2016,March,17,28,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.88,0,0,Check-Out,2019-02-01 -City Hotel,0,49,2015,December,53,12,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,60.93,1,2,Check-Out,2019-01-03 -City Hotel,0,18,2016,April,16,31,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.96,1,0,Check-Out,2019-08-04 -City Hotel,0,106,2017,May,21,13,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.12,0,2,Check-Out,2020-03-03 -City Hotel,0,42,2016,June,27,23,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.01,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2015,December,49,6,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,D,0,No Deposit,13.0,45.0,0,Transient,33.46,0,0,Check-Out,2018-09-02 -City Hotel,1,262,2016,May,20,15,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,61.98,0,0,Canceled,2019-04-03 -City Hotel,1,57,2016,September,45,11,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,215.61,0,2,Canceled,2019-07-04 -City Hotel,0,2,2017,August,36,8,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.73,0,0,Check-Out,2020-06-02 -Resort Hotel,0,51,2016,March,17,29,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,124.91,0,0,Check-Out,2019-01-03 -Resort Hotel,0,10,2016,August,37,16,2,10,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,205.91,1,0,Check-Out,2019-05-04 -City Hotel,0,10,2016,March,10,16,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.82,0,1,Check-Out,2019-02-01 -City Hotel,0,24,2016,December,50,6,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,81.7,0,1,Check-Out,2019-12-04 -City Hotel,1,50,2016,August,36,28,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,111.77,0,1,No-Show,2019-11-03 -City Hotel,0,1,2015,October,46,22,1,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,84.34,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2016,January,3,13,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.44,0,1,Check-Out,2019-10-04 -City Hotel,1,102,2016,June,20,4,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,130.0,179.0,0,Transient-Party,103.09,0,0,Canceled,2019-01-03 -City Hotel,0,3,2015,September,45,25,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.42,1,1,Check-Out,2019-06-03 -City Hotel,0,12,2017,March,21,24,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.2,0,1,Check-Out,2019-12-04 -City Hotel,1,247,2016,August,36,2,0,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,79.61,0,1,Canceled,2019-08-04 -City Hotel,0,160,2016,August,38,22,2,4,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.95,0,2,Check-Out,2019-07-04 -City Hotel,0,255,2015,September,41,22,2,3,1,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,129.36,0,0,Check-Out,2018-08-03 -City Hotel,1,46,2017,January,52,25,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.62,0,0,Canceled,2019-10-04 -City Hotel,1,250,2017,June,30,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,6.0,179.0,0,Transient,114.88,0,0,Canceled,2020-02-01 -City Hotel,0,32,2017,March,3,27,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.0,0,2,Check-Out,2019-12-04 -Resort Hotel,1,4,2016,October,5,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,120.91,0,1,No-Show,2019-09-03 -City Hotel,0,1,2016,June,30,30,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.85,0,2,Check-Out,2019-06-03 -City Hotel,1,11,2017,May,23,17,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,92.31,0,0,Canceled,2020-03-03 -City Hotel,1,91,2016,January,3,30,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,100.26,0,0,No-Show,2019-03-04 -Resort Hotel,1,12,2015,July,32,10,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,11.0,179.0,0,Transient-Party,198.0,0,1,Canceled,2018-06-02 -City Hotel,0,97,2016,June,27,10,2,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,162.43,0,0,Check-Out,2019-02-01 -Resort Hotel,1,205,2015,October,44,20,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,281.0,179.0,0,Transient-Party,46.28,0,0,Canceled,2018-09-02 -City Hotel,1,147,2015,August,40,13,0,4,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,F,A,0,No Deposit,9.0,179.0,0,Transient-Party,192.01,0,3,Canceled,2018-06-02 -Resort Hotel,1,42,2016,April,27,4,0,3,3,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,364.0,179.0,0,Transient,119.21,0,0,Canceled,2019-02-01 -City Hotel,1,152,2016,August,32,9,2,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.9,0,2,Canceled,2019-10-04 -City Hotel,0,245,2015,November,41,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.31,0,0,Check-Out,2018-08-03 -City Hotel,1,40,2015,October,46,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,73.7,0,0,Canceled,2018-08-03 -City Hotel,0,158,2016,February,3,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient-Party,75.74,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2016,February,11,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,248.0,0,Transient,29.84,1,0,Check-Out,2019-03-04 -City Hotel,1,152,2016,August,36,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,63.48,0,0,Canceled,2018-08-03 -City Hotel,1,22,2017,May,21,21,1,2,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.56,0,0,No-Show,2019-12-04 -City Hotel,1,324,2017,May,23,24,0,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,E,F,0,Non Refund,14.0,179.0,0,Transient-Party,205.04,0,0,Canceled,2020-03-03 -City Hotel,1,42,2016,March,17,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.78,0,1,Canceled,2019-02-01 -Resort Hotel,0,129,2016,August,39,22,2,3,1,0.0,0,SC,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,130.85,0,1,Check-Out,2019-05-04 -City Hotel,1,50,2016,December,45,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,182.08,0,1,Canceled,2018-11-02 -City Hotel,0,113,2016,March,21,14,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Contract,93.03,0,1,Check-Out,2019-02-01 -Resort Hotel,0,272,2016,June,32,21,4,10,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient,137.29,0,1,Check-Out,2019-05-04 -City Hotel,0,211,2016,October,44,4,1,6,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient-Party,89.13,0,0,Check-Out,2019-08-04 -Resort Hotel,1,272,2015,July,31,15,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,102.64,0,0,Canceled,2018-06-02 -Resort Hotel,0,48,2016,March,50,3,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,191.0,179.0,0,Transient,40.8,0,0,Check-Out,2019-11-03 -City Hotel,0,231,2015,October,44,28,2,1,1,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,70.72,0,0,Check-Out,2018-09-02 -Resort Hotel,0,3,2016,October,37,25,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,43.98,0,0,Check-Out,2018-12-03 -City Hotel,0,44,2017,March,16,27,2,2,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,91.24,0,1,Check-Out,2020-03-03 -City Hotel,0,7,2015,September,41,15,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Contract,106.33,0,0,Check-Out,2018-09-02 -City Hotel,0,7,2017,May,26,6,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,121.18,0,2,Check-Out,2020-03-03 -Resort Hotel,0,208,2015,September,34,30,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,3,No Deposit,180.0,179.0,0,Contract,46.59,0,0,Check-Out,2018-06-02 -City Hotel,0,32,2016,March,11,6,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.67,0,0,Check-Out,2019-11-03 -City Hotel,0,29,2015,October,45,29,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,79.24,0,1,Check-Out,2018-09-02 -City Hotel,0,41,2015,August,31,15,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,94.87,1,0,Check-Out,2018-06-02 -Resort Hotel,1,14,2015,December,53,19,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,77.01,0,0,Check-Out,2018-12-03 -City Hotel,0,15,2017,February,10,28,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,66.59,0,2,Check-Out,2019-11-03 -Resort Hotel,0,14,2017,August,35,6,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,242.0,179.0,0,Transient,154.51,1,1,Check-Out,2020-07-03 -Resort Hotel,0,165,2017,June,26,12,1,0,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,C,0,No Deposit,189.0,179.0,0,Transient,95.95,0,3,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,January,4,29,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,35.78,1,0,Check-Out,2018-11-02 -Resort Hotel,0,256,2015,November,52,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,61.84,0,0,Check-Out,2019-01-03 -City Hotel,0,14,2017,May,28,24,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,138.04,0,0,Check-Out,2020-01-04 -Resort Hotel,0,184,2017,August,22,18,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,240.09,1,1,Check-Out,2020-04-02 -Resort Hotel,0,155,2016,March,50,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,14.0,223.0,0,Transient-Party,81.79,0,0,Check-Out,2019-05-04 -Resort Hotel,1,44,2017,July,35,29,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,138.48,0,2,Canceled,2020-06-02 -City Hotel,0,251,2017,February,9,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,88.27,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,May,23,16,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,101.04,0,0,Check-Out,2019-03-04 -Resort Hotel,1,140,2017,May,23,26,2,7,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,156.53,0,0,Canceled,2020-03-03 -Resort Hotel,0,44,2017,March,10,31,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,224.0,0,Transient-Party,37.97,0,0,Check-Out,2020-03-03 -Resort Hotel,0,35,2017,June,22,24,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,148.94,0,1,Check-Out,2020-03-03 -City Hotel,0,85,2016,December,53,20,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient,61.99,0,1,Check-Out,2019-01-03 -City Hotel,1,383,2015,August,37,6,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,115.36,0,0,Canceled,2018-06-02 -Resort Hotel,0,12,2015,August,31,27,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,51.38,1,0,Check-Out,2018-06-02 -City Hotel,0,18,2017,April,17,17,2,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,124.89,0,3,Check-Out,2020-02-01 -City Hotel,1,86,2017,April,15,5,2,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.46,0,1,Canceled,2019-11-03 -City Hotel,0,30,2016,October,42,19,2,5,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,151.35,0,2,Check-Out,2019-05-04 -City Hotel,0,66,2017,May,15,15,2,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,88.27,0,1,Check-Out,2020-06-02 -City Hotel,0,59,2017,March,16,9,2,5,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.52,0,1,Check-Out,2020-02-01 -City Hotel,0,20,2016,October,43,1,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,207.42,0,1,Check-Out,2019-06-03 -City Hotel,0,30,2017,April,22,8,1,2,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,0.21,0,0,Check-Out,2020-05-03 -City Hotel,1,0,2016,September,36,13,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,252.0,0,2,Canceled,2019-08-04 -Resort Hotel,0,0,2015,February,11,18,0,1,1,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,65.29,0,0,Check-Out,2018-12-03 -Resort Hotel,1,200,2017,June,38,28,2,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,120.62,0,0,Canceled,2020-03-03 -Resort Hotel,1,18,2015,August,39,28,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,200.79,0,0,Canceled,2018-06-02 -City Hotel,0,3,2017,January,9,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,17.0,179.0,0,Transient,36.1,0,0,Check-Out,2019-12-04 -City Hotel,1,0,2016,August,38,17,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,B,F,0,No Deposit,16.0,179.0,0,Transient,162.89,0,0,Canceled,2018-06-02 -City Hotel,0,28,2016,July,32,18,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,89.82,0,3,Check-Out,2019-04-03 -City Hotel,0,265,2016,June,24,22,1,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Contract,115.97,0,1,Check-Out,2019-06-03 -City Hotel,1,432,2016,May,36,12,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.12,0,0,Canceled,2018-01-03 -Resort Hotel,1,18,2017,February,11,18,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,323.0,179.0,0,Transient,62.46,0,0,Canceled,2019-10-04 -Resort Hotel,0,114,2016,March,16,25,2,5,2,0.0,0,Undefined,CHE,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,32.0,179.0,0,Transient,61.87,0,0,Check-Out,2020-01-04 -City Hotel,0,109,2016,September,43,26,2,1,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,119.33,0,2,Check-Out,2019-08-04 -Resort Hotel,0,16,2017,March,17,31,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,3,No Deposit,14.0,223.0,75,Transient-Party,35.94,1,1,Check-Out,2020-01-04 -City Hotel,0,75,2017,August,40,6,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-07-03 -City Hotel,1,367,2016,October,44,27,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,65.56,0,0,Canceled,2018-08-03 -City Hotel,0,9,2017,June,28,15,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-05-03 -City Hotel,1,43,2017,February,9,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,122.99,0,0,Canceled,2019-10-04 -Resort Hotel,1,41,2017,July,34,19,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,184.06,0,0,Canceled,2020-01-04 -City Hotel,0,14,2016,November,48,27,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,H,0,No Deposit,37.0,236.0,0,Transient-Party,84.29,0,0,Check-Out,2019-09-03 -City Hotel,0,50,2017,April,17,20,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,8.0,179.0,0,Transient,122.22,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2016,March,10,28,2,2,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,0.0,1,0,Check-Out,2019-02-01 -City Hotel,0,109,2016,June,14,2,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,102.7,0,1,Check-Out,2019-11-03 -Resort Hotel,1,56,2015,December,49,17,2,5,2,0.0,0,HB,,Groups,TA/TO,0,0,0,E,E,0,No Deposit,178.0,179.0,0,Transient,115.69,0,1,Canceled,2019-10-04 -City Hotel,0,21,2017,March,12,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,79.07,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,May,36,2,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,130.65,0,1,Check-Out,2020-06-02 -Resort Hotel,0,63,2016,December,51,6,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,42.75,0,0,Check-Out,2018-12-03 -Resort Hotel,0,24,2017,August,37,5,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,186.0,179.0,0,Transient,127.23,0,0,Check-Out,2020-06-02 -City Hotel,0,14,2017,August,28,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.58,0,1,Check-Out,2020-06-02 -Resort Hotel,0,309,2016,August,37,21,2,6,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,221.44,0,0,Check-Out,2019-08-04 -Resort Hotel,0,10,2017,March,17,31,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,101.01,1,1,Check-Out,2019-11-03 -Resort Hotel,0,152,2016,May,18,13,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,14.0,223.0,0,Transient-Party,69.43,0,0,Check-Out,2019-04-03 -Resort Hotel,0,2,2016,March,9,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient-Party,62.57,0,0,Check-Out,2018-12-03 -City Hotel,1,23,2017,May,12,6,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,Non Refund,12.0,179.0,0,Transient,87.54,0,0,Canceled,2019-04-03 -City Hotel,1,100,2016,August,35,16,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.08,0,1,Canceled,2018-11-02 -City Hotel,0,83,2016,March,13,25,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,79.29,0,0,Check-Out,2019-02-01 -Resort Hotel,1,4,2016,March,11,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,14.0,72.0,0,Transient,31.1,0,0,Canceled,2019-02-01 -City Hotel,1,102,2017,June,29,23,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.96,0,1,Canceled,2019-02-01 -Resort Hotel,0,255,2016,July,33,15,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,66.27,0,1,Check-Out,2019-04-03 -Resort Hotel,0,49,2015,October,43,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,36.69,0,1,Check-Out,2019-07-04 -City Hotel,0,271,2017,August,38,18,0,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,134.51,0,2,Check-Out,2020-06-02 -City Hotel,1,25,2016,October,43,31,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,72.71,0,0,Canceled,2018-08-03 -City Hotel,0,0,2016,July,31,31,0,4,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.27,0,0,Check-Out,2019-05-04 -Resort Hotel,0,20,2015,November,53,28,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,113.29,0,0,Check-Out,2018-08-03 -City Hotel,0,40,2015,December,50,10,2,1,1,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,91.0,179.0,0,Transient-Party,79.34,0,0,Check-Out,2018-09-02 -City Hotel,0,201,2017,October,36,28,3,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,132.15,0,2,Check-Out,2019-09-03 -City Hotel,0,59,2015,September,42,12,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.08,0,0,Check-Out,2018-08-03 -Resort Hotel,0,38,2017,July,32,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,181.43,1,2,Check-Out,2020-07-03 -Resort Hotel,0,46,2016,March,12,25,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,117.05,1,1,Check-Out,2019-02-01 -Resort Hotel,1,194,2016,March,43,9,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,74.27,0,0,Canceled,2019-08-04 -Resort Hotel,1,83,2016,June,26,24,2,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,163.0,179.0,0,Transient-Party,139.24,0,0,Canceled,2019-02-01 -City Hotel,0,51,2016,November,45,21,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,16.0,45.0,0,Transient,37.23,1,0,Check-Out,2019-11-03 -City Hotel,1,38,2016,August,39,29,2,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,161.86,0,0,No-Show,2019-06-03 -City Hotel,0,3,2016,September,36,26,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,125.21,1,2,Check-Out,2018-09-02 -City Hotel,1,19,2016,June,29,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,136.63,0,0,Canceled,2019-07-04 -City Hotel,1,53,2017,July,27,5,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,139.47,0,2,Canceled,2020-03-03 -Resort Hotel,0,17,2017,August,36,30,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,242.0,179.0,0,Transient,227.99,0,1,Check-Out,2020-08-03 -Resort Hotel,0,267,2016,October,45,3,3,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,49.04,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2017,July,32,5,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,126.09,0,1,Check-Out,2020-03-03 -Resort Hotel,0,242,2017,May,22,29,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Contract,70.89,0,0,Check-Out,2020-01-04 -Resort Hotel,1,262,2017,July,33,13,2,5,3,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,B,1,No Deposit,11.0,179.0,0,Transient,165.47,0,1,No-Show,2020-06-02 -Resort Hotel,1,274,2017,March,10,7,2,5,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient,75.54,0,1,Canceled,2020-04-02 -City Hotel,0,10,2016,November,50,13,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,9.0,179.0,0,Transient,194.75,0,0,Check-Out,2018-08-03 -City Hotel,0,42,2016,November,50,8,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,56.59,0,1,Check-Out,2019-12-04 -City Hotel,1,56,2017,May,21,15,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,91.16,0,0,Check-Out,2019-10-04 -City Hotel,0,38,2017,May,22,10,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,162.51,0,3,Check-Out,2020-06-02 -City Hotel,1,1,2015,July,26,8,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,1,1,L,A,0,No Deposit,15.0,179.0,0,Transient,163.32,0,0,Canceled,2018-06-02 -City Hotel,0,87,2016,June,27,23,0,2,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,112.1,0,1,Check-Out,2019-05-04 -City Hotel,0,0,2016,December,51,25,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,F,0,No Deposit,15.0,67.0,0,Transient,58.92,1,0,Check-Out,2019-03-04 -Resort Hotel,0,83,2016,March,18,30,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,I,1,No Deposit,126.0,179.0,0,Transient-Party,110.89,0,1,Check-Out,2019-02-01 -Resort Hotel,0,54,2017,February,10,15,2,2,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,3,No Deposit,15.0,331.0,0,Transient-Party,30.38,0,0,Check-Out,2020-01-04 -Resort Hotel,0,0,2017,May,22,8,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,C,I,2,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-10-04 -Resort Hotel,0,198,2017,February,8,30,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,15.0,265.0,0,Transient,68.34,0,0,Check-Out,2020-03-03 -City Hotel,1,1,2015,October,47,19,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,13.0,45.0,0,Transient,66.54,0,0,Canceled,2018-09-02 -City Hotel,1,387,2016,October,42,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,44,Transient,62.17,0,0,Canceled,2018-12-03 -Resort Hotel,0,53,2016,July,9,30,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,45.34,0,0,Canceled,2018-11-02 -City Hotel,1,0,2017,December,27,21,0,1,2,0.0,0,SC,FRA,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,14.0,258.0,0,Transient,2.71,0,0,Canceled,2020-01-04 -City Hotel,0,271,2015,September,35,26,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.23,0,0,Check-Out,2018-07-03 -City Hotel,0,8,2016,September,45,13,0,1,1,0.0,0,SC,ITA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,90.38,0,0,Check-Out,2019-12-04 -Resort Hotel,1,57,2016,February,10,26,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,7.0,179.0,0,Transient,88.95,0,2,Check-Out,2018-10-03 -City Hotel,0,3,2017,January,8,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient,36.31,0,0,Check-Out,2020-03-03 -City Hotel,1,154,2016,November,51,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,42,Transient,79.82,0,0,Canceled,2018-11-02 -Resort Hotel,0,253,2016,May,23,15,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,261.0,179.0,0,Transient,81.74,0,0,Check-Out,2019-05-04 -City Hotel,0,61,2016,October,38,19,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,182.51,1,1,Check-Out,2019-08-04 -Resort Hotel,0,22,2015,December,53,29,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,113.6,0,2,Check-Out,2018-10-03 -City Hotel,1,13,2015,December,50,15,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,100.95,0,0,Canceled,2018-07-03 -City Hotel,0,1,2016,October,27,5,1,0,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,62.89,0,0,Check-Out,2019-06-03 -City Hotel,1,0,2016,February,11,14,0,2,3,2.0,0,BB,CHE,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,68.51,0,1,Canceled,2019-03-04 -City Hotel,0,147,2016,July,33,19,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,138.28,0,2,Check-Out,2019-05-04 -City Hotel,0,100,2016,October,45,19,2,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,103.62,0,3,Check-Out,2019-06-03 -Resort Hotel,0,98,2015,November,43,21,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,240.0,179.0,0,Group,44.63,0,1,Check-Out,2018-08-03 -City Hotel,1,41,2016,March,9,11,2,5,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,39.85,0,0,Canceled,2018-12-03 -City Hotel,1,371,2017,June,25,12,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,96.44,0,0,Canceled,2020-06-02 -City Hotel,0,40,2016,June,36,21,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.66,0,0,Check-Out,2019-05-04 -City Hotel,1,50,2015,December,37,11,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.16,0,0,Canceled,2018-09-02 -City Hotel,1,106,2016,October,44,9,2,2,3,2.0,0,HB,ITA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,156.31,0,0,Canceled,2019-07-04 -Resort Hotel,0,11,2015,December,53,21,1,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,H,E,0,No Deposit,12.0,179.0,0,Transient,101.02,0,2,Check-Out,2018-12-03 -City Hotel,1,382,2017,April,18,30,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,159.0,179.0,0,Transient,72.92,0,0,Canceled,2019-03-04 -City Hotel,0,0,2015,December,50,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,238.0,0,Transient-Party,38.31,0,0,Check-Out,2019-06-03 -Resort Hotel,0,141,2017,February,11,7,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,53.31,0,0,Check-Out,2019-11-03 -City Hotel,1,317,2015,October,48,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,79.91,0,0,Canceled,2018-01-03 -City Hotel,0,3,2017,June,20,7,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,124.72,0,0,Check-Out,2020-07-03 -Resort Hotel,1,233,2016,August,29,16,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,112.45,0,0,No-Show,2019-03-04 -City Hotel,0,60,2017,March,11,22,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,66.08,0,0,Check-Out,2020-02-01 -City Hotel,1,2,2016,June,15,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,B,0,Non Refund,12.0,179.0,0,Transient,97.95,0,0,Canceled,2018-11-02 -Resort Hotel,0,62,2016,February,10,23,1,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient,84.19,0,0,Check-Out,2019-02-01 -City Hotel,0,113,2016,September,40,20,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,126.43,0,1,Check-Out,2018-08-03 -City Hotel,0,105,2017,July,35,24,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,241.47,0,1,Check-Out,2019-06-03 -Resort Hotel,1,66,2015,July,28,6,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,167.82,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,June,29,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,75.94,1,0,Check-Out,2019-06-03 -City Hotel,0,106,2017,March,23,15,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Contract,162.62,0,1,Canceled,2020-01-04 -City Hotel,0,15,2015,September,45,21,0,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,G,D,0,No Deposit,16.0,223.0,0,Transient-Party,63.57,0,0,Check-Out,2018-08-03 -City Hotel,1,37,2016,December,53,30,2,2,3,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Canceled,2019-11-03 -Resort Hotel,1,261,2015,May,36,31,2,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,77.62,0,0,Canceled,2018-06-02 -City Hotel,0,143,2017,August,32,21,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.28,0,2,Canceled,2020-07-03 -Resort Hotel,0,93,2017,March,52,24,2,3,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,D,0,No Deposit,17.0,179.0,0,Transient-Party,36.32,0,0,Check-Out,2019-12-04 -Resort Hotel,1,105,2017,March,26,6,2,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,237.0,179.0,0,Transient,101.12,0,1,Canceled,2020-04-02 -City Hotel,0,18,2017,June,27,24,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,166.56,0,0,Check-Out,2020-04-02 -City Hotel,0,248,2016,December,10,11,2,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,81.32,0,2,Check-Out,2018-12-03 -Resort Hotel,0,234,2017,June,25,15,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,75,Transient-Party,107.98,0,1,Check-Out,2020-04-02 -City Hotel,0,1,2017,February,11,10,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,129.06,0,0,Check-Out,2020-03-03 -Resort Hotel,0,13,2016,February,9,11,0,1,2,0.0,0,Undefined,GBR,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,13.0,331.0,0,Transient,29.82,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2016,August,45,18,1,3,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,127.17,0,2,Check-Out,2019-08-04 -City Hotel,0,41,2016,October,47,22,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.46,0,1,Canceled,2020-01-04 -City Hotel,1,97,2016,March,17,29,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,65,Transient,71.53,0,0,Canceled,2018-10-03 -City Hotel,0,17,2017,June,16,13,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.85,0,2,Check-Out,2020-03-03 -City Hotel,0,10,2017,March,9,10,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.74,0,2,Check-Out,2020-03-03 -Resort Hotel,0,153,2017,August,27,19,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,62.39,1,1,Check-Out,2020-06-02 -Resort Hotel,0,54,2015,December,51,30,0,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,47.89,0,0,Check-Out,2018-12-03 -City Hotel,1,331,2016,July,36,9,2,5,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,8.0,179.0,0,Transient,99.27,0,0,Canceled,2019-05-04 -Resort Hotel,0,18,2015,August,33,10,0,2,1,0.0,0,HB,PRT,Complementary,Direct,1,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,0.0,1,2,Check-Out,2019-07-04 -City Hotel,0,309,2015,September,44,18,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.59,0,0,Check-Out,2017-11-02 -City Hotel,1,43,2017,June,26,4,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,0,No Deposit,13.0,183.0,0,Transient,115.7,0,0,Canceled,2019-12-04 -City Hotel,1,12,2016,January,4,8,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.03,0,0,No-Show,2019-01-03 -Resort Hotel,1,201,2016,May,28,22,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,241.0,179.0,0,Transient,192.97,0,0,Canceled,2020-02-01 -Resort Hotel,0,2,2016,January,4,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,0,No Deposit,251.0,179.0,0,Transient,188.97,1,0,Check-Out,2018-11-02 -City Hotel,1,173,2015,August,37,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,F,0,No Deposit,7.0,179.0,0,Transient,114.64,0,0,Canceled,2017-12-03 -City Hotel,0,255,2016,December,48,20,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,29.0,179.0,0,Transient-Party,72.56,0,0,Check-Out,2019-10-04 -City Hotel,0,0,2016,August,18,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,215.35,1,1,Check-Out,2019-08-04 -City Hotel,1,413,2016,October,44,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,118.07,0,0,Canceled,2018-08-03 -City Hotel,1,260,2016,August,35,1,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.47,0,0,Canceled,2019-07-04 -City Hotel,1,105,2017,April,16,27,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,154.56,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,September,41,21,1,3,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,123.15,1,0,Check-Out,2018-08-03 -City Hotel,1,20,2016,October,46,27,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,128.77,0,0,Canceled,2019-08-04 -City Hotel,0,182,2016,December,53,26,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,98.48,0,1,Check-Out,2019-12-04 -City Hotel,0,17,2016,August,34,10,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,89.47,0,1,Check-Out,2019-04-03 -City Hotel,0,22,2017,July,31,14,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.29,0,0,Check-Out,2020-06-02 -City Hotel,0,100,2017,May,21,20,2,0,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,110.1,0,0,Check-Out,2020-02-01 -City Hotel,0,24,2015,September,53,11,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,158.13,0,2,Check-Out,2018-08-03 -City Hotel,0,85,2015,July,32,15,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,236.0,179.0,0,Contract,162.84,0,1,Check-Out,2018-06-02 -City Hotel,1,165,2016,December,22,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,77.44,0,0,Canceled,2017-11-02 -City Hotel,0,14,2017,August,23,6,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,206.01,0,1,Check-Out,2020-06-02 -City Hotel,1,250,2016,June,33,19,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,149.74,0,2,Canceled,2019-06-03 -City Hotel,0,268,2015,September,42,19,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,63.89,0,0,Check-Out,2018-07-03 -Resort Hotel,0,39,2015,November,50,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,47.84,0,2,Check-Out,2018-12-03 -City Hotel,0,20,2015,September,44,27,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,125.13,0,0,Check-Out,2018-08-03 -City Hotel,1,61,2017,August,34,12,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.89,0,0,Canceled,2019-12-04 -City Hotel,1,217,2016,March,17,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.05,0,0,Canceled,2019-10-04 -Resort Hotel,1,80,2015,December,53,31,2,5,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,34.33,0,0,Canceled,2018-05-03 -Resort Hotel,0,2,2016,February,10,13,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient-Party,118.85,1,0,Check-Out,2018-11-02 -City Hotel,0,133,2017,December,4,28,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,12.0,179.0,0,Transient,113.37,0,0,Check-Out,2019-10-04 -City Hotel,1,110,2015,October,46,31,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,82.39,0,0,Canceled,2018-09-02 -City Hotel,1,196,2016,June,38,4,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.87,0,0,Canceled,2018-08-03 -City Hotel,0,19,2015,October,47,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,L,0,No Deposit,13.0,246.0,0,Transient-Party,90.32,0,0,Check-Out,2018-09-02 -Resort Hotel,0,233,2015,August,34,10,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,95.43,0,0,Check-Out,2018-06-02 -City Hotel,0,110,2017,May,22,24,0,1,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Contract,79.21,0,0,Check-Out,2020-03-03 -Resort Hotel,0,264,2017,June,25,18,0,2,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,136.82,0,0,Check-Out,2020-03-03 -City Hotel,0,8,2017,April,23,14,0,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient,103.94,0,0,Check-Out,2020-07-03 -City Hotel,0,0,2016,January,9,6,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,59.86,0,1,Check-Out,2018-11-02 -City Hotel,1,17,2015,October,43,24,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.98,0,0,Canceled,2018-08-03 -City Hotel,0,1,2016,June,27,18,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,85.46,0,0,Check-Out,2019-03-04 -Resort Hotel,0,197,2017,June,28,21,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,179.0,179.0,0,Contract,63.68,0,0,Check-Out,2020-07-03 -City Hotel,0,207,2017,May,16,27,2,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,125.27,0,0,Check-Out,2020-02-01 -City Hotel,0,231,2016,November,49,20,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,83.29,0,0,Check-Out,2019-08-04 -City Hotel,1,103,2017,May,22,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,172.54,0,0,Canceled,2020-02-01 -City Hotel,1,89,2016,July,32,26,2,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.02,0,1,Canceled,2019-02-01 -City Hotel,1,15,2016,March,18,28,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.19,0,0,Canceled,2019-02-01 -Resort Hotel,1,118,2017,February,9,20,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,D,0,Non Refund,183.0,179.0,0,Transient,38.52,0,0,Canceled,2019-10-04 -City Hotel,1,159,2017,May,22,6,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,0,Transient,72.36,0,0,Canceled,2020-04-02 -Resort Hotel,0,13,2016,October,10,24,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,94.34,0,0,Check-Out,2019-02-01 -City Hotel,0,57,2015,September,41,10,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient-Party,77.25,0,0,Check-Out,2018-08-03 -City Hotel,0,38,2016,March,15,5,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,34.74,0,0,Check-Out,2018-12-03 -City Hotel,1,9,2015,September,39,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,76.65,0,0,No-Show,2019-06-03 -City Hotel,1,16,2016,February,10,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,64.04,0,0,Canceled,2018-11-02 -City Hotel,0,12,2016,October,22,31,2,0,2,0.0,0,BB,NOR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,118.01,0,0,Check-Out,2018-12-03 -Resort Hotel,0,34,2015,December,52,31,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,60.74,0,2,Check-Out,2018-08-03 -City Hotel,1,145,2016,June,24,19,2,5,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,163.14,0,0,Canceled,2019-04-03 -Resort Hotel,1,29,2015,December,53,28,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,1,Non Refund,336.0,179.0,0,Transient,78.11,0,0,Canceled,2018-10-03 -City Hotel,0,102,2016,August,36,6,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.95,0,0,Check-Out,2019-04-03 -Resort Hotel,0,93,2016,October,44,28,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,168.44,0,1,Check-Out,2019-08-04 -City Hotel,1,237,2017,June,26,18,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,116.64,0,0,Canceled,2019-09-03 -Resort Hotel,1,157,2015,August,32,26,2,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,84.57,0,0,Canceled,2018-11-02 -City Hotel,0,358,2016,August,33,2,0,3,1,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.18,0,1,Check-Out,2019-07-04 -Resort Hotel,1,259,2016,February,11,28,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,340.0,179.0,0,Transient,75.67,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,December,50,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,L,F,0,No Deposit,12.0,179.0,0,Group,48.13,0,0,Check-Out,2018-10-03 -Resort Hotel,1,24,2015,October,45,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,15.0,243.0,0,Transient-Party,42.2,0,0,Canceled,2018-09-02 -Resort Hotel,0,93,2016,July,31,31,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient-Party,79.13,0,0,Check-Out,2018-06-02 -Resort Hotel,1,212,2016,December,49,20,1,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,318.0,179.0,0,Transient,46.78,0,0,Canceled,2019-12-04 -Resort Hotel,0,2,2016,January,4,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,87.75,0,1,Check-Out,2018-11-02 -Resort Hotel,0,1,2015,December,53,5,0,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient-Party,58.36,0,2,Check-Out,2019-01-03 -City Hotel,0,34,2016,July,27,10,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.99,0,3,Check-Out,2019-06-03 -City Hotel,0,55,2017,May,21,20,2,0,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,F,2,No Deposit,13.0,167.0,0,Transient,90.41,0,0,Check-Out,2020-03-03 -City Hotel,0,204,2016,October,45,30,1,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,10.0,179.0,0,Transient-Party,60.89,0,3,Check-Out,2019-11-03 -City Hotel,1,97,2017,July,26,2,2,7,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,239.0,179.0,0,Transient,115.81,0,2,Canceled,2020-04-02 -Resort Hotel,0,302,2015,October,41,10,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,90.0,179.0,0,Contract,37.6,0,0,Check-Out,2018-08-03 -City Hotel,1,14,2016,February,10,5,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,182.01,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2016,March,12,27,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,238.0,179.0,0,Transient,80.17,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2017,June,26,6,0,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,3.32,0,0,Check-Out,2019-11-03 -City Hotel,1,250,2015,October,44,2,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,63.24,0,0,Canceled,2018-06-02 -City Hotel,0,33,2015,July,32,20,2,5,2,0.0,0,BB,,Undefined,Undefined,0,0,0,B,B,0,No Deposit,15.0,288.0,0,Transient-Party,0.0,0,0,Check-Out,2018-07-03 -Resort Hotel,0,93,2017,May,21,11,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-07-03 -City Hotel,0,17,2015,December,50,28,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient-Party,61.34,0,3,Check-Out,2018-09-02 -City Hotel,0,104,2017,March,17,31,2,1,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,193.35,0,2,Check-Out,2020-03-03 -City Hotel,0,100,2017,May,22,21,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.79,0,1,Canceled,2019-03-04 -Resort Hotel,1,197,2016,March,18,31,0,3,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,35.9,0,0,Canceled,2019-03-04 -Resort Hotel,0,2,2016,October,44,25,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,295.0,179.0,0,Transient,50.53,0,0,Check-Out,2019-08-04 -Resort Hotel,0,38,2015,November,49,28,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient-Party,51.14,1,3,Check-Out,2018-09-02 -Resort Hotel,0,6,2016,January,3,25,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,80.0,0,Transient,37.7,1,0,Check-Out,2018-12-03 -Resort Hotel,1,31,2016,February,15,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,B,A,0,No Deposit,12.0,179.0,0,Group,96.07,0,1,No-Show,2019-04-03 -City Hotel,0,2,2016,June,23,28,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,89.7,0,0,Check-Out,2019-03-04 -City Hotel,1,75,2017,July,26,8,0,7,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,127.76,0,0,Canceled,2020-05-03 -City Hotel,0,13,2016,July,27,12,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.71,0,1,Check-Out,2019-06-03 -City Hotel,0,140,2017,March,17,15,2,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,2,No Deposit,11.0,179.0,75,Transient,103.95,0,0,Check-Out,2019-10-04 -City Hotel,1,137,2016,June,21,18,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,99.64,0,0,Canceled,2018-12-03 -City Hotel,1,19,2015,December,52,31,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,D,0,Non Refund,15.0,233.0,0,Transient,60.59,0,0,Canceled,2018-08-03 -City Hotel,0,101,2017,April,19,27,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,156.44,0,1,Check-Out,2019-12-04 -City Hotel,0,27,2016,November,50,5,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.41,0,2,Check-Out,2019-11-03 -Resort Hotel,0,254,2016,September,43,6,1,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,158.58,1,1,Check-Out,2019-07-04 -City Hotel,0,162,2017,March,8,20,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,2.0,45.0,0,Transient-Party,83.38,0,0,Check-Out,2020-06-02 -Resort Hotel,0,105,2017,May,23,28,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,214.89,1,2,Check-Out,2020-05-03 -City Hotel,0,25,2016,November,47,14,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,B,0,No Deposit,13.0,331.0,0,Transient,83.22,1,0,Check-Out,2019-10-04 -City Hotel,1,160,2016,October,43,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,76.67,0,0,Canceled,2018-11-02 -City Hotel,1,407,2017,May,22,26,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,83.0,179.0,0,Transient,62.46,0,0,Canceled,2019-09-03 -City Hotel,0,47,2016,October,44,20,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,71.88,0,0,Check-Out,2019-09-03 -City Hotel,0,48,2016,October,27,16,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.38,0,1,Check-Out,2019-07-04 -City Hotel,1,0,2016,February,13,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,17.0,45.0,0,Transient,28.58,1,0,Canceled,2018-12-03 -Resort Hotel,0,142,2015,September,37,13,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,84.49,0,0,Check-Out,2018-04-02 -City Hotel,0,42,2016,May,21,26,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.08,0,1,Check-Out,2020-01-04 -Resort Hotel,0,176,2017,March,9,31,2,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,68.44,1,0,Check-Out,2020-04-02 -City Hotel,1,45,2016,September,35,13,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,112.27,0,2,Canceled,2019-06-03 -City Hotel,0,12,2017,April,18,10,1,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,97.88,0,0,Check-Out,2020-03-03 -City Hotel,0,51,2015,December,51,21,0,3,1,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,61.53,0,2,Check-Out,2018-12-03 -City Hotel,1,56,2017,May,31,17,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,102.3,0,0,Canceled,2020-05-03 -Resort Hotel,0,107,2015,December,32,6,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,61.52,0,0,Check-Out,2018-06-02 -Resort Hotel,1,101,2015,July,32,23,2,5,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,136.74,0,0,Canceled,2019-05-04 -City Hotel,1,3,2017,May,23,15,0,1,3,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,154.0,0,Transient,139.71,0,0,Canceled,2020-03-03 -City Hotel,1,32,2015,October,43,18,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,81.81,0,0,Canceled,2018-06-02 -City Hotel,1,0,2015,August,34,3,2,5,3,0.0,0,BB,,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,70.59,0,0,Canceled,2018-06-02 -Resort Hotel,1,137,2016,May,21,13,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,131.57,0,1,Check-Out,2019-04-03 -City Hotel,1,314,2015,September,37,5,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.97,0,0,Canceled,2018-07-03 -City Hotel,1,19,2015,August,38,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,63.83,0,0,No-Show,2018-07-03 -City Hotel,0,261,2017,July,28,23,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,117.08,0,2,Check-Out,2020-06-02 -City Hotel,1,48,2016,February,9,1,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,1,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,95.49,0,3,Canceled,2018-11-02 -City Hotel,0,253,2015,July,45,15,0,2,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient-Party,108.62,0,0,Check-Out,2018-06-02 -Resort Hotel,0,60,2016,July,38,24,1,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,116.74,0,3,Check-Out,2019-04-03 -City Hotel,1,47,2017,March,17,15,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.36,0,0,Canceled,2019-10-04 -City Hotel,0,95,2016,May,43,19,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,71.76,0,1,Check-Out,2019-02-01 -City Hotel,0,248,2015,July,36,15,3,0,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,114.93,0,0,Check-Out,2018-06-02 -Resort Hotel,0,47,2017,April,16,13,1,0,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,181.0,179.0,0,Transient,156.64,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,February,10,6,1,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,66.87,0,0,Check-Out,2019-01-03 -City Hotel,0,15,2016,June,26,20,0,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.12,0,0,Check-Out,2019-06-03 -City Hotel,0,47,2017,July,31,14,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.83,0,1,Check-Out,2020-07-03 -City Hotel,1,57,2017,August,38,8,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,178.02,0,0,Canceled,2020-05-03 -Resort Hotel,0,108,2017,July,26,17,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,186.0,179.0,0,Transient,204.22,0,0,Check-Out,2020-06-02 -City Hotel,0,46,2017,January,8,15,0,3,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,75.53,1,1,Check-Out,2020-06-02 -Resort Hotel,1,294,2017,May,22,14,1,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,69.64,0,0,Canceled,2020-02-01 -City Hotel,1,31,2017,July,37,30,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,2,Canceled,2019-06-03 -City Hotel,0,148,2017,July,30,30,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,158.99,0,1,Check-Out,2020-04-02 -Resort Hotel,0,18,2015,October,43,5,2,5,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,97.51,0,0,Check-Out,2018-06-02 -Resort Hotel,1,3,2017,April,22,29,0,3,2,0.0,0,HB,PRT,Groups,Corporate,1,0,0,A,F,1,No Deposit,248.0,179.0,0,Transient,1.77,0,0,Canceled,2020-02-01 -City Hotel,0,2,2015,September,43,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.97,0,0,Check-Out,2018-05-03 -Resort Hotel,0,191,2017,May,26,29,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,240.0,179.0,0,Transient,118.17,1,1,Check-Out,2020-05-03 -City Hotel,1,43,2017,May,23,27,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.84,0,0,Canceled,2019-12-04 -City Hotel,0,37,2016,December,50,6,2,1,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,205.0,179.0,0,Transient,82.7,0,0,Check-Out,2019-10-04 -City Hotel,1,57,2017,April,9,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,80.47,0,0,Canceled,2019-09-03 -City Hotel,1,39,2017,May,22,7,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Group,79.31,0,2,Canceled,2020-02-01 -City Hotel,0,10,2016,October,49,27,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.77,0,1,Check-Out,2019-06-03 -City Hotel,0,3,2017,January,11,27,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.6,0,2,Check-Out,2020-01-04 -City Hotel,0,3,2017,August,33,31,1,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,155.64,0,2,Canceled,2019-09-03 -City Hotel,1,193,2017,July,26,28,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.68,0,1,Canceled,2020-04-02 -City Hotel,0,66,2016,July,36,20,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,204.55,0,1,Check-Out,2019-07-04 -Resort Hotel,1,121,2017,July,22,24,4,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,197.76,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2016,October,11,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,C,1,No Deposit,15.0,179.0,0,Group,45.44,0,1,Check-Out,2018-10-03 -City Hotel,0,17,2015,October,46,17,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,96.15,0,1,Check-Out,2018-09-02 -Resort Hotel,1,154,2017,March,9,5,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient-Party,80.32,0,0,Canceled,2019-11-03 -Resort Hotel,1,193,2017,June,23,5,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,86.36,0,2,Canceled,2020-01-04 -City Hotel,1,105,2016,July,32,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.11,0,0,Canceled,2019-03-04 -City Hotel,0,41,2015,October,42,5,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,63.09,0,1,Check-Out,2017-11-02 -City Hotel,0,149,2017,June,16,22,2,4,3,0.0,0,HB,DEU,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,90.82,0,1,Check-Out,2020-04-02 -City Hotel,0,56,2016,April,43,20,0,5,1,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,A,A,2,No Deposit,37.0,179.0,0,Transient,121.35,0,0,Check-Out,2018-12-03 -Resort Hotel,1,2,2016,May,23,19,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,37.26,0,2,Canceled,2019-03-04 -Resort Hotel,0,17,2016,March,18,31,1,1,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,60.37,0,0,Check-Out,2019-04-03 -Resort Hotel,0,49,2016,July,34,29,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,159.77,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2016,April,17,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,16.0,179.0,0,Transient,126.82,0,0,Check-Out,2019-03-04 -City Hotel,1,37,2016,October,46,28,0,2,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,159.12,0,2,Canceled,2019-09-03 -Resort Hotel,0,4,2015,December,53,31,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,82.2,0,0,Check-Out,2018-11-02 -City Hotel,1,11,2016,May,20,30,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,11.0,179.0,0,Transient,139.06,0,0,Canceled,2019-01-03 -Resort Hotel,0,17,2015,August,35,22,0,5,2,0.0,0,HB,PRT,Direct,Direct,1,0,1,E,I,1,No Deposit,17.0,179.0,0,Transient-Party,101.77,1,2,Check-Out,2020-05-03 -City Hotel,0,257,2017,August,33,29,2,4,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,112.39,1,3,Check-Out,2020-07-03 -City Hotel,1,89,2016,August,37,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.62,0,0,Canceled,2019-01-03 -Resort Hotel,0,271,2015,June,23,16,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,95.0,179.0,0,Contract,60.43,0,0,Check-Out,2018-08-03 -Resort Hotel,0,288,2015,September,44,13,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,76.69,0,0,Check-Out,2018-09-02 -City Hotel,0,273,2016,August,36,28,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,197.48,0,2,Check-Out,2019-06-03 -Resort Hotel,0,65,2015,December,53,30,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,43.63,0,0,Check-Out,2018-11-02 -Resort Hotel,1,323,2016,December,53,24,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,323.0,179.0,0,Transient,61.21,0,0,Canceled,2018-10-03 -City Hotel,0,11,2017,July,30,28,2,3,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.36,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,July,31,5,2,2,2,1.0,0,HB,GBR,Direct,Direct,1,0,0,H,I,1,No Deposit,12.0,179.0,0,Transient,2.72,1,1,Check-Out,2018-06-02 -City Hotel,0,0,2016,February,11,26,2,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,2,No Deposit,19.0,179.0,0,Transient,60.91,1,0,Check-Out,2019-02-01 -City Hotel,1,0,2016,January,4,2,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,71.91,0,0,No-Show,2018-12-03 -City Hotel,1,14,2016,October,27,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,Non Refund,12.0,45.0,0,Transient,62.94,0,0,Canceled,2019-06-03 -City Hotel,0,100,2016,June,26,5,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,36.0,179.0,0,Transient,139.02,0,0,Check-Out,2019-02-01 -Resort Hotel,1,48,2017,March,9,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,61.46,0,0,Canceled,2018-10-03 -Resort Hotel,0,310,2016,October,14,6,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,87.0,179.0,0,Transient-Party,61.07,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2015,October,44,5,0,1,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,A,B,0,No Deposit,12.0,45.0,0,Transient-Party,45.13,0,0,Check-Out,2018-09-02 -City Hotel,0,12,2017,March,10,18,0,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.28,0,3,Check-Out,2020-02-01 -Resort Hotel,0,202,2016,July,27,31,2,10,1,0.0,0,HB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,108.18,1,2,Check-Out,2018-04-02 -Resort Hotel,0,40,2017,May,11,18,1,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,328.0,179.0,0,Transient,43.74,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,June,27,13,2,7,3,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,378.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,12,2017,March,10,31,0,1,1,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,1,No Deposit,12.0,89.0,0,Transient-Party,39.18,0,0,Check-Out,2020-04-02 -Resort Hotel,0,254,2017,March,19,30,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,67.96,0,1,Check-Out,2019-11-03 -Resort Hotel,0,116,2017,November,18,10,2,5,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,114.3,0,3,Check-Out,2019-12-04 -City Hotel,0,14,2016,March,8,2,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,88.73,0,0,Check-Out,2019-02-01 -Resort Hotel,1,37,2017,March,11,13,0,1,1,0.0,0,BB,PRT,Groups,GDS,0,0,0,E,E,0,No Deposit,283.0,179.0,0,Transient,109.49,0,0,Canceled,2020-02-01 -Resort Hotel,1,95,2015,December,49,20,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,166.0,179.0,0,Transient,62.86,0,0,Canceled,2018-11-02 -City Hotel,0,2,2017,April,16,9,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.79,0,1,Check-Out,2020-03-03 -Resort Hotel,1,89,2015,December,53,9,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.51,0,0,Canceled,2018-11-02 -City Hotel,1,423,2015,September,37,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,122.8,0,0,Canceled,2018-12-03 -Resort Hotel,0,9,2016,August,40,29,0,3,2,2.0,0,BB,ESP,Direct,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,0.0,1,1,Check-Out,2019-07-04 -City Hotel,0,1,2016,November,50,20,0,3,3,0.0,0,BB,NLD,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,60.21,0,0,Check-Out,2019-11-03 -Resort Hotel,1,306,2017,July,34,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,196.22,0,2,Canceled,2020-05-03 -Resort Hotel,0,234,2016,October,34,21,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,45.4,0,0,Check-Out,2019-06-03 -City Hotel,1,111,2017,July,32,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.89,0,2,Canceled,2020-06-02 -City Hotel,1,358,2015,September,38,18,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.15,0,0,Check-Out,2018-08-03 -Resort Hotel,1,21,2017,February,9,9,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient-Party,77.33,0,0,Canceled,2020-01-04 -Resort Hotel,1,129,2016,July,34,28,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,221.99,0,0,Canceled,2019-05-04 -City Hotel,1,31,2016,December,53,3,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.45,0,1,Canceled,2019-11-03 -City Hotel,1,163,2017,June,25,18,2,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,E,0,No Deposit,177.0,179.0,0,Transient,145.43,0,0,Canceled,2019-08-04 -City Hotel,1,35,2016,April,42,13,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,115.72,0,0,Canceled,2019-02-01 -City Hotel,1,14,2015,January,3,3,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,29.5,0,0,Canceled,2018-10-03 -City Hotel,0,2,2016,September,51,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,9.0,70.0,0,Group,75.39,0,1,Check-Out,2019-08-04 -City Hotel,0,39,2016,March,27,25,2,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,69.94,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,November,44,28,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,100.97,0,2,Check-Out,2019-03-04 -City Hotel,1,373,2017,May,23,28,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,73.78,0,0,Canceled,2020-03-03 -City Hotel,1,164,2017,July,27,28,2,3,2,1.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,132.48,0,3,Canceled,2020-06-02 -Resort Hotel,0,101,2016,July,23,13,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,180.0,179.0,0,Transient,125.21,0,0,Check-Out,2019-05-04 -City Hotel,0,58,2016,May,26,27,1,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.28,0,2,Check-Out,2019-06-03 -City Hotel,0,5,2017,June,30,18,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.6,0,1,Check-Out,2019-12-04 -City Hotel,0,14,2016,March,11,15,2,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,14.0,331.0,0,Transient-Party,71.08,0,0,Canceled,2018-11-02 -Resort Hotel,0,42,2016,March,10,25,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,69.09,1,1,Check-Out,2019-02-01 -City Hotel,1,145,2017,August,37,30,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,188.88,0,0,Canceled,2020-04-02 -Resort Hotel,0,143,2016,March,23,10,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,115.66,0,0,Check-Out,2019-03-04 -City Hotel,1,420,2016,April,16,6,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,125.29,0,0,Canceled,2017-12-03 -City Hotel,0,10,2016,August,35,15,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.81,0,1,Check-Out,2019-05-04 -City Hotel,1,100,2017,March,18,9,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.07,0,0,Canceled,2020-02-01 -City Hotel,0,18,2017,February,11,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,36.5,0,0,Check-Out,2020-01-04 -City Hotel,1,0,2016,January,16,14,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,65.0,0,Transient,216.34,0,0,No-Show,2019-03-04 -City Hotel,0,106,2017,August,38,10,2,5,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,219.29,0,2,Check-Out,2020-06-02 -Resort Hotel,0,20,2015,September,43,19,0,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient-Party,63.71,0,0,Check-Out,2018-08-03 -City Hotel,0,271,2016,August,38,20,2,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Contract,91.37,0,1,Check-Out,2019-01-03 -City Hotel,1,71,2017,March,15,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.88,0,0,Canceled,2019-01-03 -City Hotel,1,32,2016,April,21,24,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.13,0,0,No-Show,2019-03-04 -City Hotel,1,1,2016,November,50,25,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,85.17,0,1,Canceled,2018-12-03 -City Hotel,0,147,2017,June,29,28,0,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.56,0,2,Check-Out,2020-02-01 -City Hotel,0,265,2017,May,22,21,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,F,0,No Deposit,16.0,179.0,0,Transient,134.81,0,0,Check-Out,2020-06-02 -City Hotel,0,252,2016,February,8,6,0,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,41.32,0,1,Check-Out,2019-06-03 -Resort Hotel,0,154,2017,August,38,29,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,208.55,0,1,Check-Out,2020-07-03 -City Hotel,0,34,2017,April,18,24,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.98,0,0,Check-Out,2019-11-03 -City Hotel,0,110,2017,June,32,23,2,5,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,192.06,0,1,Check-Out,2020-05-03 -City Hotel,0,93,2017,May,16,16,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,153.57,0,1,Check-Out,2020-03-03 -Resort Hotel,1,0,2015,August,38,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,179.0,45.0,0,Transient,63.07,0,0,Check-Out,2018-06-02 -City Hotel,0,9,2016,October,44,18,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.77,0,1,Check-Out,2019-12-04 -City Hotel,1,416,2016,June,16,21,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,16,Transient,60.89,0,0,Canceled,2019-03-04 -Resort Hotel,0,93,2016,April,20,25,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient-Party,80.05,0,0,Check-Out,2019-04-03 -City Hotel,0,40,2015,September,42,22,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.57,0,0,Check-Out,2018-08-03 -Resort Hotel,0,18,2016,February,8,24,1,2,2,0.0,0,Undefined,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,73.29,0,0,Check-Out,2019-03-04 -City Hotel,1,16,2016,September,39,20,0,5,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,11.0,179.0,0,Transient,212.84,0,0,Canceled,2019-05-04 -City Hotel,1,171,2017,July,28,10,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,88.89,0,0,Canceled,2020-02-01 -City Hotel,0,35,2016,November,50,30,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,65.49,0,0,Check-Out,2019-09-03 -Resort Hotel,1,268,2017,August,37,6,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,247.0,179.0,0,Transient,163.15,0,3,Canceled,2020-06-02 -City Hotel,0,63,2016,December,11,9,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,115.24,0,1,Check-Out,2018-12-03 -City Hotel,1,36,2017,January,9,30,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,70.81,0,0,Canceled,2018-10-03 -City Hotel,1,101,2016,June,27,21,0,2,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,126.08,0,0,No-Show,2019-06-03 -Resort Hotel,0,39,2016,March,16,3,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,74.0,0,Transient-Party,37.78,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2015,October,43,20,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,86.98,0,3,Check-Out,2018-06-02 -City Hotel,0,293,2015,September,45,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Contract,71.38,0,2,Check-Out,2018-08-03 -City Hotel,1,144,2016,December,50,28,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.85,0,0,Canceled,2019-10-04 -City Hotel,1,41,2017,January,17,21,0,1,1,0.0,0,HB,PRT,Groups,Direct,0,0,0,D,H,0,Non Refund,14.0,179.0,0,Transient,37.32,0,0,Canceled,2019-11-03 -City Hotel,0,99,2017,May,21,9,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.75,0,2,Check-Out,2020-03-03 -Resort Hotel,0,244,2015,August,37,21,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,130.5,0,1,Check-Out,2018-06-02 -Resort Hotel,1,158,2017,April,17,27,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,99.79,0,0,Canceled,2020-03-03 -City Hotel,0,89,2016,October,43,27,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,68.03,0,2,Check-Out,2019-08-04 -Resort Hotel,0,146,2016,July,45,31,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,126.18,0,2,Check-Out,2019-08-04 -Resort Hotel,0,253,2016,October,41,30,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,37.0,179.0,0,Contract,43.57,0,0,Check-Out,2018-08-03 -City Hotel,1,86,2016,June,24,19,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.15,0,0,Canceled,2019-03-04 -City Hotel,1,136,2017,June,27,13,2,5,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,182.49,0,0,Canceled,2020-02-01 -Resort Hotel,0,8,2017,January,7,27,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,42.53,1,0,Check-Out,2019-10-04 -City Hotel,0,147,2017,March,16,17,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient-Party,68.79,0,0,Check-Out,2019-11-03 -City Hotel,0,32,2017,August,37,10,0,2,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,222.8,0,2,Check-Out,2020-06-02 -City Hotel,1,100,2016,August,10,12,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,94.42,0,0,Canceled,2018-11-02 -Resort Hotel,0,41,2017,March,36,31,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,84.54,1,1,Check-Out,2019-12-04 -City Hotel,1,114,2017,April,16,5,2,5,3,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,97.28,0,1,Canceled,2020-02-01 -Resort Hotel,0,157,2016,April,15,26,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,D,1,No Deposit,245.0,179.0,0,Transient-Party,116.13,1,0,Check-Out,2019-07-04 -City Hotel,1,216,2017,July,22,24,2,0,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,86.76,0,0,Canceled,2020-06-02 -Resort Hotel,0,14,2016,October,45,28,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,162.01,1,1,Check-Out,2019-07-04 -City Hotel,0,45,2016,November,23,15,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,61.09,0,1,Check-Out,2019-09-03 -City Hotel,1,166,2017,July,22,27,2,5,3,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,7.0,179.0,0,Transient,152.22,0,1,Canceled,2019-11-03 -Resort Hotel,0,90,2016,August,35,2,2,5,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,166.23,0,3,Check-Out,2019-06-03 -City Hotel,1,398,2017,August,36,31,0,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,125.89,0,1,Canceled,2020-06-02 -Resort Hotel,0,17,2017,July,34,25,2,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,181.92,0,1,Check-Out,2020-06-02 -Resort Hotel,1,97,2017,May,21,16,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Contract,126.49,0,1,Canceled,2020-03-03 -Resort Hotel,0,95,2017,March,21,21,2,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,318.0,179.0,0,Group,60.77,0,1,Check-Out,2020-01-04 -City Hotel,1,154,2016,June,27,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.85,0,0,Canceled,2020-05-03 -Resort Hotel,0,43,2016,August,34,12,2,4,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,2.15,1,0,Check-Out,2019-08-04 -City Hotel,1,0,2016,February,2,9,0,3,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,88.0,179.0,0,Transient,82.45,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2016,March,26,20,0,1,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,196.18,1,1,Check-Out,2019-04-03 -Resort Hotel,0,249,2015,December,50,10,2,5,2,0.0,0,FB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient-Party,45.21,0,0,Check-Out,2019-01-03 -City Hotel,1,0,2016,February,10,25,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,68.05,0,0,Canceled,2019-01-03 -City Hotel,0,25,2017,August,39,9,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.81,0,3,Check-Out,2020-01-04 -City Hotel,0,13,2016,June,26,5,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,123.73,0,0,Check-Out,2019-02-01 -Resort Hotel,0,292,2017,June,27,30,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,112.1,0,0,Check-Out,2020-02-01 -City Hotel,1,175,2015,July,39,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.93,0,0,Canceled,2018-07-03 -Resort Hotel,0,85,2017,March,21,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,127.05,1,0,Check-Out,2019-12-04 -City Hotel,0,37,2017,March,9,10,2,2,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,61.53,0,0,Check-Out,2020-03-03 -City Hotel,1,14,2016,November,51,27,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,84.12,0,0,Canceled,2019-10-04 -Resort Hotel,0,2,2015,October,44,10,3,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,C,1,No Deposit,243.0,179.0,0,Transient,39.14,0,1,Check-Out,2018-08-03 -City Hotel,1,98,2016,November,50,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,8.0,179.0,0,Transient,125.98,0,0,No-Show,2019-07-04 -Resort Hotel,0,145,2016,March,16,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,1,Refundable,14.0,222.0,0,Transient-Party,72.98,0,0,Check-Out,2019-02-01 -City Hotel,1,39,2015,December,44,6,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,237.0,179.0,0,Transient,117.99,0,0,Canceled,2018-10-03 -Resort Hotel,1,257,2016,July,34,18,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,42.12,0,0,Canceled,2019-05-04 -Resort Hotel,1,14,2016,July,35,21,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,87.08,0,2,Canceled,2019-06-03 -Resort Hotel,0,22,2016,December,50,8,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,185.0,179.0,0,Transient-Party,61.06,0,0,Check-Out,2019-10-04 -City Hotel,1,5,2016,March,22,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,110.7,0,0,No-Show,2019-03-04 -City Hotel,0,59,2017,March,15,21,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,120.39,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2017,March,45,16,1,5,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.36,0,1,Check-Out,2019-12-04 -City Hotel,0,34,2017,May,22,25,1,3,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,E,F,0,No Deposit,12.0,179.0,0,Transient-Party,81.23,0,0,Check-Out,2020-01-04 -Resort Hotel,0,3,2017,February,11,6,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,47.57,0,1,Check-Out,2020-02-01 -City Hotel,1,107,2016,March,16,31,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,12.0,179.0,0,Transient,72.91,0,0,Canceled,2018-12-03 -Resort Hotel,0,21,2016,February,11,18,1,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,37.48,0,0,Check-Out,2020-01-04 -Resort Hotel,0,17,2015,October,44,18,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,34.18,0,0,Check-Out,2018-09-02 -City Hotel,1,149,2016,March,7,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,B,A,0,Non Refund,150.0,179.0,39,Transient,41.61,0,0,Canceled,2019-07-04 -Resort Hotel,1,259,2015,November,53,21,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,41.97,0,0,Canceled,2018-06-02 -City Hotel,1,192,2016,July,32,13,2,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,169.15,0,0,Canceled,2019-10-04 -Resort Hotel,0,133,2017,June,34,2,4,10,2,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,81.49,1,2,Check-Out,2020-06-02 -City Hotel,0,261,2016,July,31,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,104.28,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2017,July,31,31,2,4,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,3,No Deposit,253.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,24,2016,December,10,28,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.38,0,0,Check-Out,2018-12-03 -City Hotel,1,18,2016,November,44,28,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,114.01,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2016,June,27,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,17.0,179.0,0,Transient,142.64,1,0,Check-Out,2019-07-04 -City Hotel,0,30,2016,December,4,28,1,4,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.72,1,1,Check-Out,2018-11-02 -Resort Hotel,0,19,2015,December,50,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,G,3,No Deposit,246.0,179.0,0,Transient,81.63,0,0,Check-Out,2018-12-03 -Resort Hotel,0,71,2015,December,52,26,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,58.6,0,2,Check-Out,2018-11-02 -Resort Hotel,0,5,2015,August,37,31,0,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,111.96,0,2,Check-Out,2019-08-04 -City Hotel,1,2,2016,November,3,15,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,58.25,0,1,No-Show,2019-09-03 -Resort Hotel,0,35,2017,February,16,14,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,73.0,179.0,0,Transient-Party,62.15,1,0,Check-Out,2020-02-01 -City Hotel,0,1,2015,October,40,20,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,A,1,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-08-03 -City Hotel,0,4,2015,November,46,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,122.09,0,0,Check-Out,2018-08-03 -Resort Hotel,1,27,2016,September,38,14,2,2,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,173.24,0,2,Canceled,2019-08-04 -City Hotel,0,10,2015,August,38,20,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.54,0,0,Check-Out,2018-06-02 -City Hotel,0,142,2017,July,28,2,2,4,1,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.34,0,2,Check-Out,2020-06-02 -Resort Hotel,0,281,2016,November,48,17,3,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,267.0,179.0,0,Contract,62.0,0,0,Check-Out,2019-06-03 -City Hotel,0,60,2016,May,23,10,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,H,0,No Deposit,27.0,179.0,0,Transient-Party,101.68,0,0,Check-Out,2019-03-04 -Resort Hotel,0,10,2017,December,50,6,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,I,3,No Deposit,100.0,179.0,43,Transient-Party,72.66,1,0,Check-Out,2019-11-03 -City Hotel,1,315,2017,June,22,30,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,180.0,179.0,0,Transient,100.14,0,0,Canceled,2019-11-03 -City Hotel,0,25,2017,January,4,29,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,108.93,0,1,Check-Out,2019-11-03 -City Hotel,1,110,2017,April,24,27,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.8,0,2,Check-Out,2020-02-01 -City Hotel,0,160,2017,August,50,9,2,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient,95.3,0,1,Check-Out,2019-11-03 -Resort Hotel,1,37,2016,June,31,4,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,99.04,0,0,Canceled,2019-02-01 -City Hotel,0,86,2016,December,53,31,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,100.24,0,1,Check-Out,2019-09-03 -City Hotel,0,73,2016,June,27,21,2,3,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,103.64,0,1,Check-Out,2019-05-04 -City Hotel,0,41,2017,June,22,31,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.46,0,1,Check-Out,2020-06-02 -Resort Hotel,0,39,2016,October,45,2,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,96.99,1,1,Check-Out,2019-10-04 -City Hotel,1,46,2015,September,44,16,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.95,0,0,Canceled,2017-10-03 -City Hotel,0,156,2015,August,37,27,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,122.28,0,0,Check-Out,2018-08-03 -City Hotel,0,21,2016,August,36,10,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.82,0,1,Check-Out,2019-05-04 -City Hotel,1,91,2016,September,43,15,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.44,0,0,Canceled,2019-08-04 -City Hotel,0,9,2017,April,26,24,0,2,1,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.45,0,0,Check-Out,2020-04-02 -City Hotel,0,11,2017,March,10,18,0,1,1,0.0,0,BB,NLD,Corporate,GDS,0,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient,79.25,0,0,Check-Out,2020-01-04 -City Hotel,0,160,2017,February,10,31,0,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,73.41,0,0,Check-Out,2020-02-01 -City Hotel,1,0,2017,May,32,9,2,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Transient,3.91,0,0,Canceled,2019-12-04 -City Hotel,1,31,2016,June,43,21,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,41,Transient,124.97,0,0,Canceled,2018-12-03 -City Hotel,0,60,2016,October,45,19,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,111.93,0,1,Check-Out,2019-08-04 -City Hotel,0,164,2017,February,7,5,0,3,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient-Party,90.45,0,1,Check-Out,2019-11-03 -City Hotel,1,25,2017,September,39,31,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.25,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2016,August,28,16,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,241.0,179.0,0,Transient,61.59,0,1,Check-Out,2019-06-03 -City Hotel,0,46,2017,April,17,17,0,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,69.39,0,0,Check-Out,2020-02-01 -Resort Hotel,0,269,2017,May,21,5,2,1,2,1.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,150.95,0,1,Check-Out,2020-04-02 -Resort Hotel,0,35,2017,February,11,14,1,1,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,C,3,No Deposit,44.0,179.0,0,Transient-Party,43.54,0,0,Check-Out,2019-11-03 -City Hotel,0,88,2015,August,35,18,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,135.9,0,1,Check-Out,2018-06-02 -Resort Hotel,0,39,2016,December,50,5,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,248.0,179.0,0,Transient,72.77,0,0,Check-Out,2019-08-04 -City Hotel,1,410,2017,May,21,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.92,0,0,Canceled,2020-03-03 -City Hotel,1,0,2016,January,3,28,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.82,0,0,No-Show,2019-09-03 -City Hotel,0,107,2016,June,28,10,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,156.71,0,0,Canceled,2019-02-01 -City Hotel,0,2,2016,June,27,20,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,140.15,0,0,Check-Out,2019-05-04 -City Hotel,1,89,2017,May,21,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,65.62,0,0,Canceled,2020-03-03 -City Hotel,1,30,2016,December,51,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,41,Transient,66.03,0,0,Canceled,2018-12-03 -Resort Hotel,0,19,2017,May,10,16,2,3,3,0.0,0,BB,,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,152.0,179.0,0,Transient,107.22,0,2,Check-Out,2020-05-03 -Resort Hotel,0,8,2016,July,27,2,2,7,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,210.23,1,3,Check-Out,2019-11-03 -City Hotel,0,84,2016,November,46,31,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.36,0,1,Check-Out,2020-01-04 -City Hotel,1,272,2015,October,45,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.4,0,0,Canceled,2018-07-03 -Resort Hotel,0,3,2017,August,27,6,2,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,69.7,0,2,Check-Out,2020-03-03 -Resort Hotel,1,252,2015,September,42,21,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,75,Transient-Party,35.36,0,0,Canceled,2017-10-03 -Resort Hotel,0,143,2017,August,33,18,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,118.8,1,1,Check-Out,2020-07-03 -Resort Hotel,0,0,2015,September,43,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,49.92,1,2,Check-Out,2019-02-01 -City Hotel,0,45,2017,February,10,14,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,240.0,0,Transient,71.03,0,2,Check-Out,2020-02-01 -Resort Hotel,0,135,2016,July,27,28,0,1,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,208.03,0,0,Check-Out,2018-12-03 -Resort Hotel,0,98,2017,May,20,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,101.32,0,1,Check-Out,2019-02-01 -City Hotel,0,88,2015,July,32,9,2,4,1,0.0,0,BB,NOR,Groups,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient-Party,62.06,0,0,Check-Out,2018-07-03 -City Hotel,0,24,2016,November,43,21,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,0,Transient,94.37,0,0,Canceled,2019-07-04 -City Hotel,0,0,2016,March,4,5,0,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,119.71,0,2,Check-Out,2019-02-01 -City Hotel,0,95,2016,August,25,19,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,180.35,0,0,Check-Out,2019-01-03 -City Hotel,1,253,2016,May,22,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,93.95,0,0,Canceled,2018-12-03 -Resort Hotel,0,3,2016,March,22,22,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,H,3,No Deposit,15.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-02-01 -City Hotel,1,210,2017,May,21,9,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,79.56,0,0,Canceled,2020-04-02 -City Hotel,1,154,2017,June,27,8,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,23.0,179.0,0,Transient,134.8,0,1,Canceled,2020-06-02 -Resort Hotel,0,23,2016,February,10,9,0,2,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,150.0,331.0,0,Transient-Party,61.35,0,0,Check-Out,2019-01-03 -Resort Hotel,0,113,2016,May,18,26,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Contract,73.87,1,1,Check-Out,2019-03-04 -City Hotel,0,35,2016,November,53,28,1,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,207.32,0,0,Check-Out,2019-10-04 -City Hotel,0,103,2017,August,37,21,0,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,169.33,0,1,Check-Out,2019-07-04 -City Hotel,1,9,2016,December,48,5,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,97.04,0,2,Canceled,2019-09-03 -Resort Hotel,0,150,2017,August,36,7,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,242.0,179.0,0,Transient,228.21,0,1,Check-Out,2020-05-03 -Resort Hotel,0,2,2016,August,37,6,2,4,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,157.06,0,3,Check-Out,2019-06-03 -Resort Hotel,1,245,2015,September,46,9,0,2,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,62.2,0,0,Canceled,2018-01-31 -City Hotel,1,18,2015,October,43,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,64.0,0,Transient-Party,94.31,0,0,Canceled,2018-09-02 -Resort Hotel,0,0,2016,January,3,13,1,2,2,2.0,0,BB,ITA,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,65.16,0,0,Check-Out,2018-09-02 -City Hotel,0,95,2016,May,23,28,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,255.0,179.0,0,Transient,74.36,0,0,Check-Out,2019-07-04 -City Hotel,0,17,2016,October,49,5,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,59.0,0,Transient,102.22,0,0,Check-Out,2019-09-03 -Resort Hotel,0,18,2015,October,44,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,81.0,179.0,0,Group,61.3,0,0,Check-Out,2019-09-03 -City Hotel,1,105,2016,March,17,19,0,2,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,68.0,179.0,0,Transient,78.26,0,0,Canceled,2019-02-01 -City Hotel,0,18,2016,May,25,5,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.59,0,1,Check-Out,2019-06-03 -Resort Hotel,0,290,2017,May,23,18,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,67.6,0,0,Check-Out,2020-04-02 -City Hotel,0,54,2017,June,21,15,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,102.12,0,1,Check-Out,2020-03-03 -City Hotel,1,283,2017,October,35,7,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,60.29,0,0,No-Show,2017-11-02 -City Hotel,0,40,2017,September,15,9,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,105.44,0,0,Check-Out,2019-11-03 -City Hotel,1,104,2016,June,29,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,123.32,0,0,Canceled,2020-03-03 -City Hotel,1,52,2017,February,9,4,1,1,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,81.72,0,1,Canceled,2019-11-03 -Resort Hotel,0,4,2016,February,17,28,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,46.52,0,0,Check-Out,2019-02-01 -City Hotel,1,3,2017,May,21,29,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.66,0,0,Canceled,2020-03-03 -City Hotel,1,183,2016,March,18,30,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,125.0,179.0,0,Transient,74.3,0,0,Canceled,2018-10-03 -Resort Hotel,1,20,2017,June,23,21,2,7,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,120.52,0,1,Canceled,2020-02-01 -City Hotel,0,252,2017,February,9,28,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,224.35,0,2,Check-Out,2020-03-03 -Resort Hotel,0,86,2017,February,24,24,1,1,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,E,F,0,No Deposit,378.0,179.0,0,Transient-Party,84.1,0,0,Check-Out,2020-02-01 -City Hotel,0,95,2016,March,18,30,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,134.58,0,1,Check-Out,2020-03-03 -City Hotel,0,249,2015,September,41,5,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,119.61,0,0,Check-Out,2018-08-03 -Resort Hotel,1,35,2016,February,9,18,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,79.04,0,0,Canceled,2018-12-03 -City Hotel,0,16,2016,April,21,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,49.01,0,0,Check-Out,2019-02-01 -City Hotel,1,98,2016,December,53,2,0,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,1,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,101.85,0,0,Canceled,2019-03-04 -City Hotel,0,11,2016,May,32,5,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,8.0,179.0,0,Transient,94.91,0,2,Check-Out,2019-12-04 -City Hotel,0,13,2016,March,13,6,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.42,0,2,Check-Out,2019-03-04 -City Hotel,0,45,2017,May,21,28,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,110.04,0,1,Check-Out,2020-02-01 -City Hotel,1,85,2016,June,26,21,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.63,0,1,Canceled,2019-02-01 -City Hotel,0,18,2016,October,42,20,1,1,1,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,3,No Deposit,16.0,223.0,0,Transient,120.01,0,0,Check-Out,2019-11-03 -Resort Hotel,0,161,2017,May,26,25,0,2,2,2.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,180.0,179.0,0,Transient,164.94,0,0,Check-Out,2020-03-03 -City Hotel,0,49,2017,April,17,10,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-01-04 -City Hotel,0,47,2015,September,33,21,2,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,103.04,0,0,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,April,17,24,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,240.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-06-03 -City Hotel,1,65,2017,July,37,18,1,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,207.37,0,0,Canceled,2020-07-03 -City Hotel,1,303,2016,October,45,23,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.67,0,0,Check-Out,2019-08-04 -Resort Hotel,1,42,2017,July,34,22,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,167.29,0,0,Canceled,2020-06-02 -Resort Hotel,0,20,2016,July,25,15,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,137.0,179.0,0,Transient,75.05,0,0,Check-Out,2019-07-04 -Resort Hotel,0,98,2017,August,33,21,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,240.0,179.0,0,Transient,74.18,0,1,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,January,51,31,0,4,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,2,No Deposit,15.0,287.0,0,Transient,31.71,0,0,Check-Out,2019-09-03 -City Hotel,0,167,2015,October,35,5,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.9,0,2,Check-Out,2019-07-04 -City Hotel,0,83,2017,February,12,29,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,67.97,0,2,Check-Out,2019-10-04 -City Hotel,0,43,2017,June,24,24,2,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.36,0,0,Check-Out,2020-07-03 -Resort Hotel,0,156,2016,June,19,25,0,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,74.23,0,1,Check-Out,2019-03-04 -Resort Hotel,1,98,2017,May,22,19,2,7,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,C,A,2,No Deposit,365.0,179.0,0,Transient,97.15,0,1,Canceled,2020-03-03 -City Hotel,0,43,2017,May,22,24,1,1,2,2.0,0,BB,GBR,Direct,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,87.93,0,0,Check-Out,2019-03-04 -Resort Hotel,1,263,2015,June,28,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,13.0,207.0,0,Transient,48.21,0,0,Canceled,2018-06-02 -City Hotel,0,54,2016,October,46,9,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.96,0,1,Check-Out,2019-08-04 -City Hotel,0,18,2017,June,28,20,1,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,9.0,179.0,0,Transient,122.72,0,0,Check-Out,2020-04-02 -Resort Hotel,0,17,2016,September,16,4,0,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,172.0,179.0,0,Transient-Party,76.48,0,0,Check-Out,2019-06-03 -City Hotel,0,26,2016,June,26,24,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,116.79,1,2,Check-Out,2019-03-04 -Resort Hotel,0,200,2016,May,24,31,1,3,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,Refundable,16.0,224.0,0,Transient-Party,78.08,0,0,Check-Out,2019-03-04 -City Hotel,0,141,2016,June,28,31,2,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,104.05,1,0,Check-Out,2019-01-03 -City Hotel,1,34,2016,November,45,11,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.57,0,0,Canceled,2019-08-04 -City Hotel,1,160,2015,September,42,5,2,2,2,0.0,0,BB,POL,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.3,0,0,Canceled,2018-07-03 -Resort Hotel,0,238,2015,July,36,18,0,1,2,0.0,0,HB,ESP,Direct,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,134.87,0,0,Check-Out,2018-06-02 -Resort Hotel,0,53,2016,January,9,6,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,84.71,0,0,Check-Out,2019-03-04 -City Hotel,0,226,2016,October,31,6,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.9,0,2,Check-Out,2019-02-01 -Resort Hotel,0,75,2015,December,53,31,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,34.53,0,2,Check-Out,2018-12-03 -Resort Hotel,1,18,2016,July,39,23,0,1,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,197.83,0,0,Canceled,2019-05-04 -City Hotel,1,81,2017,March,18,29,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,99.58,0,0,Canceled,2020-01-04 -City Hotel,0,241,2016,August,37,6,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.53,0,1,Check-Out,2019-08-04 -Resort Hotel,0,3,2016,November,49,20,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,11.0,179.0,0,Transient,115.26,1,0,Check-Out,2019-10-04 -City Hotel,0,80,2016,July,29,19,0,3,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.68,0,3,Check-Out,2019-07-04 -City Hotel,1,432,2017,August,36,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,67.7,0,0,Canceled,2019-11-03 -City Hotel,1,46,2017,June,19,14,2,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,146.66,0,2,Canceled,2020-02-01 -City Hotel,1,3,2017,August,32,14,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.51,0,0,Canceled,2020-06-02 -Resort Hotel,1,138,2016,October,44,31,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,10.0,222.0,0,Transient-Party,75.22,0,0,Canceled,2019-08-04 -Resort Hotel,0,166,2017,August,38,6,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,12.0,179.0,0,Transient,215.68,0,0,Check-Out,2020-06-02 -Resort Hotel,0,141,2016,November,44,13,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,72.66,1,0,Check-Out,2019-03-04 -City Hotel,1,51,2015,October,35,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,60,Transient-Party,59.75,0,0,Canceled,2017-11-02 -City Hotel,1,50,2016,August,9,4,2,2,3,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,87.06,0,1,Canceled,2018-12-03 -Resort Hotel,0,37,2017,August,31,30,0,4,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.1,0,1,Check-Out,2020-04-02 -City Hotel,0,28,2017,May,21,17,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,134.88,0,0,Check-Out,2020-02-01 -Resort Hotel,1,13,2015,December,52,31,2,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,35.43,1,0,Canceled,2018-11-02 -City Hotel,0,92,2017,May,21,21,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.42,0,0,Check-Out,2020-04-02 -City Hotel,0,267,2017,June,24,14,2,3,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,135.18,0,3,Check-Out,2020-06-02 -City Hotel,0,2,2017,January,3,18,0,1,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,80.33,0,0,Check-Out,2019-09-03 -City Hotel,1,264,2016,July,28,19,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,3.0,179.0,0,Transient,127.84,0,0,Canceled,2019-02-01 -Resort Hotel,0,149,2016,July,33,20,4,10,3,1.0,0,FB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,202.04,0,0,Check-Out,2019-08-04 -City Hotel,0,25,2016,February,12,16,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,81.29,0,3,Check-Out,2019-02-01 -Resort Hotel,0,3,2017,April,15,13,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,79.64,0,1,Check-Out,2020-03-03 -Resort Hotel,0,4,2015,September,45,21,1,1,3,0.0,0,BB,,Direct,Direct,0,0,0,H,H,3,No Deposit,250.0,179.0,0,Transient,186.93,0,0,Check-Out,2019-08-04 -City Hotel,0,155,2016,January,3,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,68.08,0,1,Check-Out,2019-05-04 -City Hotel,1,18,2016,August,44,11,0,2,1,0.0,0,BB,,Online TA,TA/TO,1,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,86.28,0,1,Canceled,2018-09-02 -Resort Hotel,0,256,2017,August,37,6,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,239.0,179.0,0,Transient,217.85,0,1,Check-Out,2020-06-02 -Resort Hotel,0,195,2017,June,20,4,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,83.56,0,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2015,December,53,6,0,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,59.92,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2016,January,4,31,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,G,0,No Deposit,17.0,66.0,0,Transient,104.05,0,0,Check-Out,2019-11-03 -City Hotel,1,49,2017,August,27,27,2,5,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,187.0,179.0,0,Transient,126.97,0,0,No-Show,2020-04-02 -Resort Hotel,0,1,2017,March,10,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,93.0,72.0,0,Transient-Party,125.59,0,0,Check-Out,2019-09-03 -City Hotel,1,16,2017,May,21,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Group,78.2,0,0,Canceled,2020-01-04 -City Hotel,1,209,2017,August,33,16,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.14,0,2,Canceled,2020-07-03 -City Hotel,0,409,2017,August,10,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,73.21,0,0,Check-Out,2019-11-03 -City Hotel,1,16,2016,September,45,28,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.61,0,1,Canceled,2019-07-04 -Resort Hotel,0,406,2016,June,27,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,278.0,179.0,0,Transient,61.87,0,0,Check-Out,2019-11-03 -City Hotel,1,18,2016,September,28,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,44.4,0,0,Canceled,2019-09-03 -City Hotel,0,8,2017,June,27,15,1,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,207.0,0,Transient,121.55,0,0,Check-Out,2020-04-02 -Resort Hotel,1,1,2016,February,11,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,37.41,0,0,Canceled,2018-11-02 -City Hotel,1,404,2016,October,42,9,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,43,Transient,119.12,0,0,Canceled,2019-09-03 -Resort Hotel,0,14,2017,June,27,24,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,187.0,179.0,0,Transient,101.55,0,0,Check-Out,2020-06-02 -City Hotel,0,90,2017,May,20,20,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.23,0,2,Check-Out,2020-04-02 -Resort Hotel,0,263,2016,July,31,10,2,5,2,2.0,0,HB,GBR,Direct,Direct,0,0,0,G,G,2,No Deposit,15.0,179.0,0,Transient-Party,252.0,1,0,Check-Out,2019-04-03 -Resort Hotel,0,298,2016,June,28,24,2,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient-Party,61.92,0,0,Check-Out,2019-04-03 -Resort Hotel,0,415,2016,October,44,28,1,2,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,69.82,0,0,Check-Out,2019-07-04 -City Hotel,1,259,2016,September,36,27,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,6.0,179.0,0,Transient,86.5,0,0,Canceled,2018-11-02 -Resort Hotel,0,34,2016,October,42,12,2,1,2,0.0,0,HB,USA,Direct,Direct,0,0,0,E,F,0,No Deposit,14.0,179.0,0,Transient,142.09,0,0,Check-Out,2019-08-04 -City Hotel,1,19,2017,July,32,9,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,139.3,0,2,Canceled,2020-02-01 -City Hotel,1,38,2016,February,10,13,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,B,D,0,No Deposit,9.0,179.0,0,Transient,61.41,0,2,Canceled,2018-10-03 -City Hotel,1,214,2016,July,33,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,71.93,0,0,Canceled,2018-07-03 -Resort Hotel,1,244,2017,July,27,22,2,5,2,0.0,0,HB,PRT,Direct,Corporate,0,0,0,E,E,0,No Deposit,344.0,179.0,0,Transient-Party,222.11,0,0,Canceled,2020-03-03 -Resort Hotel,0,0,2015,August,36,9,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,185.89,0,0,Check-Out,2019-08-04 -City Hotel,0,265,2015,October,45,13,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,90.91,0,0,Check-Out,2018-08-03 -City Hotel,1,54,2016,November,11,7,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient,40.57,0,0,Canceled,2019-01-03 -City Hotel,1,365,2016,October,44,2,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,68.45,0,0,Canceled,2019-09-03 -City Hotel,0,11,2016,October,43,14,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.64,0,1,Check-Out,2019-08-04 -City Hotel,1,274,2017,June,26,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,120.18,0,0,Canceled,2020-02-01 -City Hotel,1,40,2017,January,11,28,0,3,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,95.66,0,0,Canceled,2019-11-03 -City Hotel,1,57,2016,August,38,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,250.0,179.0,0,Transient,150.1,0,0,Canceled,2019-06-03 -City Hotel,1,3,2016,February,10,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,37.0,45.0,0,Transient,61.42,0,0,Canceled,2018-11-02 -City Hotel,1,301,2015,August,37,20,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,2.0,179.0,0,Transient,60.41,0,0,Canceled,2018-01-31 -Resort Hotel,1,17,2015,December,53,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,60.02,0,0,Canceled,2018-09-02 -City Hotel,1,8,2016,May,36,21,0,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.65,0,0,Canceled,2019-01-03 -Resort Hotel,0,48,2017,May,25,29,4,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,309.0,179.0,0,Transient,101.99,0,1,Check-Out,2019-10-04 -Resort Hotel,0,295,2017,June,27,30,0,1,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,156.0,179.0,0,Transient-Party,213.34,0,0,Check-Out,2020-06-02 -City Hotel,1,428,2017,March,27,26,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,0,A,F,2,No Deposit,11.0,45.0,0,Transient,100.84,0,1,Canceled,2018-12-03 -Resort Hotel,0,54,2015,October,44,9,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,33.81,0,0,Check-Out,2019-11-03 -City Hotel,0,97,2016,July,26,8,3,5,2,0.0,0,BB,IRL,Aviation,Direct,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,116.25,0,0,Check-Out,2019-05-04 -City Hotel,1,14,2016,February,10,2,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,123.29,0,0,Canceled,2019-10-04 -Resort Hotel,0,109,2016,March,18,11,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient-Party,44.05,0,1,Check-Out,2019-03-04 -Resort Hotel,0,1,2015,September,44,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,241.0,179.0,0,Group,62.19,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2016,August,33,4,0,2,2,0.0,0,BB,AUT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,110.84,0,1,Check-Out,2019-07-04 -City Hotel,1,36,2016,February,12,20,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,15.0,45.0,0,Transient,39.31,0,0,Canceled,2018-12-03 -City Hotel,0,38,2016,October,44,27,1,1,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,64,Transient,85.54,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2015,September,45,5,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,45.4,0,0,Check-Out,2018-08-03 -City Hotel,0,57,2016,June,35,9,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.45,0,2,Check-Out,2019-07-04 -City Hotel,1,31,2015,October,46,10,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,61.87,0,0,Canceled,2018-08-03 -City Hotel,0,41,2016,August,53,28,0,1,3,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,108.92,0,0,Check-Out,2019-06-03 -Resort Hotel,1,7,2016,July,31,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,146.01,0,0,Canceled,2018-11-02 -City Hotel,1,0,2016,June,26,12,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,86.75,0,0,No-Show,2019-03-04 -Resort Hotel,0,45,2016,March,10,28,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,70.35,0,0,Check-Out,2019-01-03 -Resort Hotel,0,11,2017,July,30,27,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient-Party,170.46,1,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2016,October,45,15,1,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,249.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -City Hotel,0,49,2015,October,43,7,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Contract,66.38,0,2,Check-Out,2018-08-03 -Resort Hotel,0,20,2015,October,45,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,251.0,0,Transient-Party,36.17,0,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,July,37,31,0,1,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,155.45,1,1,Check-Out,2019-05-04 -City Hotel,0,13,2017,August,26,2,0,1,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,132.82,0,0,Check-Out,2020-06-02 -City Hotel,0,139,2016,June,27,21,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.61,0,2,Check-Out,2019-06-03 -Resort Hotel,0,5,2017,March,28,13,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,G,0,No Deposit,13.0,179.0,0,Transient,127.0,1,3,Check-Out,2020-03-03 -Resort Hotel,0,4,2015,December,50,27,0,1,1,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient,27.34,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2016,October,44,30,0,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,119.08,1,1,Check-Out,2019-08-04 -Resort Hotel,0,170,2016,March,15,31,0,2,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,223.0,0,Transient-Party,77.36,1,0,Check-Out,2019-02-01 -City Hotel,0,141,2016,June,25,9,0,2,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,152.11,0,1,Check-Out,2019-02-01 -Resort Hotel,1,0,2017,January,2,27,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,81.0,0,Transient,32.27,0,2,Canceled,2019-11-03 -Resort Hotel,1,275,2016,April,17,31,2,5,2,0.0,0,HB,NLD,Groups,Direct,0,0,0,C,D,0,Refundable,11.0,222.0,0,Transient-Party,104.17,0,0,Canceled,2019-06-03 -City Hotel,1,49,2017,August,37,29,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,199.37,0,1,Check-Out,2020-03-03 -City Hotel,0,151,2016,June,28,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,42,Transient,129.48,0,0,Canceled,2019-01-03 -City Hotel,0,7,2016,March,48,3,2,4,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,77.5,0,1,Check-Out,2019-07-04 -City Hotel,0,3,2017,August,27,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,178.0,179.0,0,Group,119.2,0,1,Check-Out,2020-06-02 -City Hotel,1,35,2017,March,10,21,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.9,0,0,Canceled,2019-10-04 -City Hotel,1,15,2016,September,35,16,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,205.96,0,0,Canceled,2019-07-04 -City Hotel,1,250,2016,October,43,6,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,124.08,0,0,Canceled,2019-08-04 -City Hotel,1,3,2017,December,53,24,0,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,164.13,0,0,Canceled,2019-11-03 -Resort Hotel,0,152,2016,March,7,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,Refundable,12.0,224.0,0,Transient-Party,59.43,0,0,Check-Out,2019-03-04 -Resort Hotel,0,264,2015,October,43,27,2,1,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,C,1,No Deposit,12.0,331.0,0,Transient-Party,70.05,0,0,Check-Out,2018-09-02 -City Hotel,1,12,2017,July,28,20,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.46,0,1,Canceled,2019-11-03 -Resort Hotel,0,37,2017,March,18,18,0,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,331.0,0,Transient,39.64,0,0,Check-Out,2020-01-04 -Resort Hotel,0,58,2016,April,18,5,2,6,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,114.46,1,2,Check-Out,2019-03-04 -City Hotel,0,6,2017,August,35,10,2,1,2,0.0,0,BB,FRA,Complementary,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,251.83,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,April,22,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,38.69,1,0,Check-Out,2019-03-04 -City Hotel,0,0,2016,February,11,13,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,76.83,0,0,Check-Out,2019-09-03 -City Hotel,1,268,2016,April,21,18,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,59.58,0,0,Canceled,2019-01-03 -City Hotel,1,112,2015,August,37,1,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,90.64,0,0,Canceled,2018-08-03 -Resort Hotel,0,151,2015,June,42,21,2,5,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,45.7,1,0,Check-Out,2019-05-04 -City Hotel,0,86,2016,July,25,2,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,135.27,0,1,Check-Out,2019-06-03 -City Hotel,1,93,2016,June,42,29,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.8,0,2,Canceled,2019-08-04 -City Hotel,0,7,2017,January,10,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,12.0,63.0,0,Transient-Party,33.96,0,0,Check-Out,2019-11-03 -Resort Hotel,1,239,2016,July,39,31,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,3.0,222.0,0,Transient-Party,62.22,0,0,Canceled,2019-06-03 -City Hotel,0,140,2016,November,16,13,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,71.88,0,2,Check-Out,2019-08-04 -City Hotel,0,33,2016,December,50,23,0,2,2,0.0,0,Undefined,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,113.04,0,0,Check-Out,2019-12-04 -City Hotel,0,25,2015,September,36,30,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.81,0,0,Check-Out,2019-06-03 -City Hotel,0,5,2016,May,20,7,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.95,0,2,Check-Out,2019-02-01 -Resort Hotel,1,41,2016,June,24,19,0,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,216.52,0,0,Canceled,2019-02-01 -Resort Hotel,0,85,2016,October,42,5,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,F,C,0,No Deposit,358.0,179.0,0,Transient,51.24,1,0,Check-Out,2019-07-04 -Resort Hotel,0,32,2016,October,42,13,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.99,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2017,July,27,15,0,3,2,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,111.19,0,1,Check-Out,2020-06-02 -Resort Hotel,0,39,2016,March,16,21,0,3,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,1,No Deposit,14.0,179.0,0,Transient,34.76,0,0,Check-Out,2019-03-04 -City Hotel,1,22,2016,October,42,17,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,1,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Canceled,2019-10-04 -City Hotel,1,258,2015,July,31,9,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.69,0,2,Canceled,2018-05-03 -City Hotel,0,89,2016,May,22,8,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,76.48,0,1,Check-Out,2019-05-04 -Resort Hotel,0,228,2016,May,28,28,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,124.27,0,1,Check-Out,2020-03-03 -City Hotel,0,54,2015,October,47,18,1,1,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,59.02,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,January,4,27,1,3,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-08-04 -Resort Hotel,0,253,2017,August,23,16,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,247.0,179.0,0,Transient,183.8,1,3,Check-Out,2020-07-03 -City Hotel,1,419,2016,May,22,15,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,64,Transient,88.31,0,0,Canceled,2018-12-03 -City Hotel,0,43,2016,October,44,27,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,100.21,0,0,Check-Out,2018-08-03 -Resort Hotel,0,14,2017,January,4,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,17.0,45.0,0,Transient,49.45,0,0,Check-Out,2019-10-04 -City Hotel,1,97,2015,September,42,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.34,0,0,Canceled,2018-07-03 -City Hotel,1,17,2016,December,50,25,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,182.58,0,0,Canceled,2019-09-03 -City Hotel,0,84,2016,August,31,6,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,92.35,1,0,Check-Out,2019-07-04 -City Hotel,1,4,2015,September,46,23,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,D,0,Non Refund,12.0,179.0,0,Transient,116.32,0,0,Canceled,2018-09-02 -Resort Hotel,0,0,2016,February,10,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,59.45,1,0,Check-Out,2018-11-02 -City Hotel,1,192,2016,October,44,29,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,126.13,0,0,No-Show,2019-08-04 -City Hotel,1,263,2017,March,9,17,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,13.0,216.0,0,Transient-Party,79.58,0,2,Canceled,2019-10-04 -Resort Hotel,1,37,2015,August,37,28,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,230.24,0,0,Canceled,2018-06-02 -Resort Hotel,0,1,2016,October,47,19,1,0,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,81.32,0,0,Check-Out,2019-08-04 -City Hotel,0,2,2016,May,30,26,0,1,1,0.0,0,BB,,Aviation,Corporate,1,0,0,D,D,1,No Deposit,14.0,183.0,0,Transient,141.46,0,0,Check-Out,2019-06-03 -Resort Hotel,0,42,2015,September,43,9,1,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient-Party,31.63,0,0,Check-Out,2018-09-02 -City Hotel,0,11,2016,January,50,17,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,313.0,179.0,0,Transient-Party,71.58,0,0,Check-Out,2019-04-03 -City Hotel,1,58,2016,February,9,18,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,57.59,0,0,Canceled,2019-01-03 -City Hotel,0,190,2017,May,26,9,0,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,E,D,0,No Deposit,12.0,51.0,0,Transient,111.85,0,0,Check-Out,2020-03-03 -Resort Hotel,1,280,2015,September,43,28,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,38.97,0,0,Canceled,2018-08-03 -Resort Hotel,0,169,2017,August,35,31,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -Resort Hotel,0,274,2017,May,11,18,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient,72.03,0,2,Check-Out,2019-11-03 -Resort Hotel,0,69,2016,October,43,15,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,78.67,0,0,Check-Out,2019-08-04 -Resort Hotel,0,34,2016,March,9,22,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,61.77,1,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,August,22,26,0,1,3,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,212.84,0,3,Check-Out,2019-03-04 -City Hotel,0,238,2016,August,36,31,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.07,0,1,Check-Out,2019-06-03 -Resort Hotel,0,0,2016,January,9,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,32.57,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2015,December,50,13,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,102.0,232.0,0,Transient,42.57,1,0,Check-Out,2018-07-03 -Resort Hotel,0,9,2016,August,32,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.84,1,0,Check-Out,2019-06-03 -City Hotel,0,83,2016,August,37,28,2,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.42,0,2,Check-Out,2019-08-04 -City Hotel,1,348,2017,May,24,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,73.28,0,0,Canceled,2020-03-03 -Resort Hotel,0,29,2015,October,44,29,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,158.15,0,1,Check-Out,2018-09-02 -City Hotel,0,192,2016,February,37,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.94,0,3,Check-Out,2019-06-03 -City Hotel,1,250,2015,August,32,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.24,0,0,Canceled,2018-08-03 -Resort Hotel,0,94,2016,December,12,30,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,64.46,0,0,Check-Out,2018-12-03 -Resort Hotel,0,351,2017,February,10,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,D,0,Non Refund,378.0,179.0,0,Transient,62.24,0,0,Check-Out,2019-12-04 -Resort Hotel,1,21,2017,August,30,16,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,237.76,0,0,Canceled,2020-03-03 -City Hotel,1,264,2015,September,43,5,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.58,0,0,Canceled,2018-08-03 -City Hotel,0,205,2016,October,43,17,1,2,2,0.0,0,HB,DEU,Direct,TA/TO,0,0,0,D,C,0,No Deposit,11.0,179.0,0,Transient,117.32,0,0,Check-Out,2019-08-04 -Resort Hotel,0,15,2017,August,38,28,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,190.43,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2016,April,25,19,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,1,No Deposit,13.0,235.0,0,Transient-Party,63.47,0,0,Check-Out,2019-02-01 -Resort Hotel,1,43,2015,November,53,26,0,1,1,0.0,0,FB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.17,0,0,Canceled,2019-02-01 -Resort Hotel,1,27,2015,December,51,8,2,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,46.03,0,2,Canceled,2018-11-02 -City Hotel,0,172,2017,March,18,16,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.19,0,2,Check-Out,2020-03-03 -City Hotel,1,148,2017,May,28,21,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,152.16,0,0,Canceled,2020-01-04 -Resort Hotel,1,213,2016,August,37,29,3,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,152.36,0,0,Canceled,2019-08-04 -Resort Hotel,0,99,2017,February,12,25,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,64.73,0,0,Check-Out,2019-10-04 -City Hotel,0,13,2016,July,30,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,120.04,0,1,Check-Out,2019-04-03 -City Hotel,1,400,2015,October,44,2,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,20,Transient,76.08,0,0,Canceled,2018-08-03 -City Hotel,0,1,2017,February,4,15,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,109.67,0,2,Check-Out,2020-05-03 -City Hotel,0,47,2015,September,34,10,0,1,2,0.0,0,BB,CHN,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-06-02 -Resort Hotel,0,2,2015,December,51,27,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,41.83,0,0,Check-Out,2018-12-03 -City Hotel,1,314,2015,September,43,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.7,0,0,Canceled,2018-08-03 -City Hotel,0,10,2016,March,10,28,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,90.86,0,1,Check-Out,2019-01-03 -City Hotel,1,48,2016,August,37,18,2,5,1,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,198.0,0,1,Canceled,2019-04-03 -City Hotel,1,55,2016,October,42,11,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,130.2,0,0,Canceled,2019-11-03 -Resort Hotel,0,7,2017,May,21,9,0,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,3,No Deposit,378.0,179.0,0,Transient-Party,110.23,1,0,Check-Out,2020-04-02 -City Hotel,0,230,2015,October,42,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,64.36,0,0,Check-Out,2018-09-02 -Resort Hotel,1,1,2015,February,49,21,0,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,278.0,179.0,0,Transient,38.08,0,0,Canceled,2019-01-03 -Resort Hotel,0,109,2015,September,36,3,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,F,0,No Deposit,247.0,179.0,0,Transient,180.83,0,0,Check-Out,2018-08-03 -City Hotel,0,97,2016,December,34,27,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.52,0,0,Check-Out,2019-07-04 -City Hotel,0,111,2017,August,36,5,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -City Hotel,0,28,2016,September,35,30,2,4,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,0,No Deposit,11.0,179.0,75,Transient-Party,178.78,1,2,Check-Out,2019-07-04 -City Hotel,1,139,2017,May,20,18,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.47,0,0,Canceled,2020-04-02 -City Hotel,1,66,2017,March,18,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,61.99,0,0,Canceled,2018-11-02 -Resort Hotel,0,47,2017,April,19,18,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,197.0,179.0,0,Transient,68.16,0,0,Check-Out,2019-01-03 -Resort Hotel,0,1,2017,February,9,24,0,2,2,0.0,0,Undefined,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,25.12,0,0,Check-Out,2019-11-03 -Resort Hotel,0,62,2017,February,10,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,204.02,0,3,Check-Out,2020-02-01 -City Hotel,1,241,2017,June,25,20,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,98.39,0,0,Canceled,2020-02-01 -City Hotel,1,233,2015,October,12,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,69.42,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2016,September,41,31,4,10,1,0.0,0,HB,GBR,Online TA,Direct,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,40.77,0,0,Check-Out,2019-09-03 -Resort Hotel,0,15,2015,October,43,5,2,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,45.08,0,0,Check-Out,2018-08-03 -City Hotel,0,15,2016,July,35,30,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,150.6,0,2,Check-Out,2019-06-03 -Resort Hotel,1,1,2015,December,50,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,Non Refund,13.0,57.0,0,Transient,40.22,1,0,Canceled,2018-12-03 -City Hotel,1,88,2016,June,22,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,44,Transient,76.24,0,0,Canceled,2019-03-04 -Resort Hotel,0,97,2016,April,22,25,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,59.79,1,1,Check-Out,2019-07-04 -City Hotel,1,16,2017,May,22,10,0,1,1,0.0,0,SC,NOR,Online TA,GDS,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,133.56,0,0,Canceled,2020-04-02 -City Hotel,0,79,2016,December,53,10,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,98.78,0,2,Check-Out,2019-11-03 -Resort Hotel,0,55,2017,June,10,27,0,2,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,C,1,No Deposit,44.0,179.0,0,Transient-Party,62.07,0,0,Check-Out,2020-06-02 -City Hotel,0,5,2017,February,9,10,0,3,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,53.72,0,1,Check-Out,2020-02-01 -City Hotel,1,415,2017,June,32,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,125.64,0,0,Canceled,2018-06-02 -Resort Hotel,0,86,2016,March,27,27,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,41.35,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2015,November,51,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,99.09,0,0,Check-Out,2018-08-03 -Resort Hotel,1,245,2017,July,32,25,2,5,3,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,C,C,0,Refundable,241.0,179.0,0,Transient,156.04,0,0,Canceled,2020-03-03 -City Hotel,0,92,2016,July,27,16,2,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.85,1,2,Check-Out,2019-12-04 -Resort Hotel,0,47,2015,December,50,24,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Contract,42.87,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2017,April,17,13,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,87.34,0,2,Check-Out,2020-02-01 -City Hotel,0,78,2015,October,51,6,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,62,Contract,38.98,0,0,Check-Out,2018-09-02 -Resort Hotel,0,12,2016,August,37,28,2,10,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,206.94,1,1,Check-Out,2019-08-04 -City Hotel,0,18,2017,February,9,10,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.64,0,0,Check-Out,2020-02-01 -City Hotel,0,3,2017,March,10,16,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,71.74,0,1,Check-Out,2019-12-04 -City Hotel,0,49,2016,March,16,16,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,82.99,0,1,Check-Out,2019-02-01 -City Hotel,1,12,2015,September,50,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,60.64,0,2,Canceled,2018-01-03 -City Hotel,0,38,2017,April,17,27,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.71,0,1,Check-Out,2020-03-03 -City Hotel,0,15,2015,September,38,7,0,3,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient-Party,218.3,0,0,Check-Out,2018-08-03 -City Hotel,0,109,2016,August,32,24,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,149.69,0,2,Check-Out,2019-07-04 -City Hotel,0,92,2016,March,17,30,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,67.73,0,1,Check-Out,2019-10-04 -City Hotel,0,7,2015,August,38,18,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,9.0,179.0,0,Transient-Party,172.91,0,0,Check-Out,2018-05-03 -Resort Hotel,0,159,2015,July,34,16,2,5,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,252.0,1,0,Check-Out,2018-05-03 -Resort Hotel,0,240,2017,June,28,28,0,10,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,107.31,0,0,Check-Out,2020-06-02 -Resort Hotel,0,150,2017,August,32,24,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,244.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-03-03 -City Hotel,0,3,2016,October,43,4,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,3.0,88.0,0,Transient-Party,38.06,0,0,Canceled,2018-09-02 -City Hotel,0,26,2016,May,22,9,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.79,0,0,Check-Out,2019-04-03 -Resort Hotel,0,50,2016,July,49,2,3,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,31.0,179.0,0,Transient-Party,106.51,0,1,Check-Out,2019-07-04 -City Hotel,0,8,2017,August,37,10,1,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,11.0,183.0,0,Transient,125.73,0,0,Check-Out,2020-06-02 -Resort Hotel,1,31,2016,July,32,27,2,3,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,16.0,179.0,0,Transient,228.77,0,0,Canceled,2019-05-04 -Resort Hotel,0,0,2016,April,16,23,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,29.0,45.0,0,Transient-Party,92.92,0,0,Check-Out,2019-02-01 -City Hotel,1,40,2017,April,14,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,70.16,0,0,Canceled,2019-11-03 -Resort Hotel,1,46,2017,April,16,29,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient,104.27,0,0,Canceled,2019-12-04 -City Hotel,0,1,2017,June,36,13,0,1,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,3.73,0,0,Check-Out,2020-06-02 -City Hotel,0,110,2017,June,23,11,2,5,1,0.0,0,HB,,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,33.0,252.0,0,Transient,134.47,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,February,9,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,331.0,0,Transient,32.89,1,0,Check-Out,2018-12-03 -City Hotel,1,42,2017,August,36,12,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,113.13,0,0,Canceled,2020-04-02 -Resort Hotel,0,10,2017,August,32,31,2,1,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,186.36,1,1,Check-Out,2020-06-02 -City Hotel,1,37,2016,October,17,15,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,95.45,0,1,Canceled,2019-11-03 -City Hotel,0,0,2016,January,4,27,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,121.73,0,1,Check-Out,2019-11-03 -City Hotel,1,212,2017,May,27,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,120.44,0,0,Canceled,2019-12-04 -City Hotel,1,386,2015,September,44,13,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,68.81,0,0,Canceled,2018-09-02 -City Hotel,1,248,2016,September,45,9,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,109.46,0,1,Canceled,2019-10-04 -City Hotel,1,299,2016,December,50,4,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,1.06,0,0,Canceled,2017-12-03 -City Hotel,0,149,2017,June,27,30,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,156.68,0,1,Check-Out,2020-07-03 -City Hotel,0,3,2016,October,44,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,70.05,0,0,Check-Out,2018-09-02 -City Hotel,1,2,2016,March,16,10,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,0,A,A,0,Non Refund,10.0,45.0,0,Transient,68.95,0,0,Canceled,2018-11-02 -City Hotel,1,204,2017,August,39,13,2,3,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.76,0,2,Canceled,2020-06-02 -City Hotel,0,144,2017,June,32,25,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,117.64,0,0,Check-Out,2020-06-02 -Resort Hotel,0,2,2016,April,17,9,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,0.0,1,2,Check-Out,2019-08-04 -City Hotel,0,186,2017,August,23,24,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,150.32,0,1,Check-Out,2020-06-02 -City Hotel,0,2,2016,June,22,16,2,3,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,116.99,0,1,Check-Out,2019-06-03 -City Hotel,1,49,2017,March,10,16,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,85.75,0,0,Canceled,2020-03-03 -City Hotel,0,2,2017,May,27,3,1,2,1,0.0,0,BB,SWE,Online TA,GDS,0,0,0,A,A,0,No Deposit,201.0,179.0,0,Transient,135.16,0,0,Check-Out,2020-07-03 -Resort Hotel,0,4,2016,March,9,13,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,D,0,No Deposit,248.0,179.0,0,Transient,60.69,0,0,Canceled,2018-12-03 -City Hotel,0,17,2017,May,21,19,0,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,59.3,0,0,Check-Out,2019-12-04 -Resort Hotel,0,185,2016,June,25,30,0,7,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,241.0,179.0,0,Transient,38.93,0,0,Check-Out,2019-06-03 -Resort Hotel,0,157,2017,July,32,30,2,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,248.22,0,0,Check-Out,2019-04-03 -Resort Hotel,0,17,2016,August,37,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,72.72,0,1,Check-Out,2019-06-03 -City Hotel,1,146,2016,May,26,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,1,A,A,0,Non Refund,71.0,179.0,61,Transient,99.25,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,May,20,13,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.6,0,1,Check-Out,2019-06-03 -City Hotel,0,378,2015,October,44,10,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,61.46,0,0,Check-Out,2018-08-03 -Resort Hotel,1,236,2017,July,33,6,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,100.03,0,1,Canceled,2018-06-02 -Resort Hotel,1,17,2015,August,38,5,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,90.08,0,0,Check-Out,2018-08-03 -City Hotel,1,157,2016,May,36,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.38,0,0,Canceled,2017-11-02 -City Hotel,0,28,2015,July,38,16,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,158.66,1,0,Check-Out,2018-06-02 -Resort Hotel,0,13,2015,November,37,9,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,239.0,179.0,0,Transient,123.06,1,1,Check-Out,2018-09-02 -City Hotel,1,84,2016,April,16,13,2,5,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,75.69,0,0,Canceled,2019-01-03 -Resort Hotel,1,164,2016,December,49,2,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,61.79,0,0,Canceled,2019-11-03 -Resort Hotel,0,369,2016,September,44,21,2,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,73.63,0,0,Check-Out,2019-09-03 -City Hotel,1,25,2016,August,36,9,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,63.84,0,0,Canceled,2019-05-04 -City Hotel,1,102,2016,September,28,2,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,138.42,0,0,Canceled,2019-06-03 -City Hotel,1,36,2016,June,27,9,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.43,0,0,Canceled,2019-04-03 -Resort Hotel,0,43,2016,March,16,15,0,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,67.98,0,2,Check-Out,2019-02-01 -City Hotel,0,2,2017,August,22,16,0,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,81.0,0,Transient,2.13,0,0,Check-Out,2019-11-03 -Resort Hotel,0,37,2016,October,41,23,2,0,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,314.0,179.0,0,Transient,44.0,0,0,Check-Out,2019-08-04 -City Hotel,0,374,2016,June,26,13,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,71.1,0,0,Check-Out,2018-06-02 -Resort Hotel,0,4,2015,September,36,27,0,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient-Party,168.07,1,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,August,17,16,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,1,0,1,D,D,2,No Deposit,17.0,199.0,0,Transient,159.83,1,1,Check-Out,2020-04-02 -Resort Hotel,1,273,2016,September,37,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,C,C,0,Non Refund,11.0,179.0,0,Transient,138.76,0,0,Canceled,2018-06-02 -City Hotel,1,98,2016,March,17,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,75.75,0,1,Canceled,2018-12-03 -Resort Hotel,0,11,2017,February,10,20,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,95.07,1,0,Check-Out,2019-12-04 -City Hotel,1,20,2015,November,53,31,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,24.46,0,2,Canceled,2018-08-03 -City Hotel,0,242,2015,September,38,17,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,A,0,No Deposit,2.0,179.0,0,Contract,60.81,0,0,Check-Out,2017-09-02 -City Hotel,1,29,2015,July,33,18,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,D,1,No Deposit,17.0,179.0,0,Transient,156.34,0,0,No-Show,2018-11-02 -Resort Hotel,1,169,2016,December,53,25,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,242.0,179.0,0,Transient,28.78,0,0,Canceled,2019-08-04 -City Hotel,1,359,2017,January,3,17,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,110.89,0,0,Canceled,2019-11-03 -Resort Hotel,1,49,2017,August,31,10,2,5,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient-Party,199.32,0,0,Canceled,2020-04-02 -Resort Hotel,0,273,2016,May,25,23,2,5,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,180.0,179.0,0,Transient-Party,63.49,0,0,Check-Out,2020-03-03 -City Hotel,1,97,2017,May,21,29,1,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,95.8,0,0,Canceled,2020-03-03 -Resort Hotel,0,160,2016,August,27,10,2,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,113.4,0,2,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,September,44,25,1,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,37.33,0,0,Check-Out,2019-06-03 -City Hotel,1,155,2016,June,27,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,88.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,4,2016,April,18,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient,62.18,0,0,Check-Out,2019-04-03 -City Hotel,1,238,2016,July,33,15,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.04,0,1,Canceled,2018-06-02 -City Hotel,1,249,2015,July,38,29,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.47,0,0,Canceled,2017-12-03 -Resort Hotel,0,252,2016,May,21,2,3,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,133.0,179.0,0,Transient-Party,75.3,0,0,Check-Out,2019-04-03 -City Hotel,0,40,2015,October,35,18,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,133.0,179.0,0,Contract,43.06,0,0,Check-Out,2018-08-03 -City Hotel,0,112,2016,December,50,20,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.25,0,0,Check-Out,2019-09-03 -Resort Hotel,0,33,2016,July,34,5,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,118.85,1,2,Check-Out,2019-04-03 -Resort Hotel,0,273,2017,February,11,11,2,5,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,101.05,0,0,Check-Out,2020-03-03 -City Hotel,0,24,2015,October,53,22,2,5,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,90.57,0,1,Check-Out,2018-07-03 -Resort Hotel,0,14,2016,March,14,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,E,1,No Deposit,332.0,179.0,0,Transient,85.5,0,0,Check-Out,2019-10-04 -City Hotel,1,35,2016,March,16,11,2,4,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,E,A,0,Non Refund,11.0,45.0,0,Transient,77.45,0,0,Canceled,2018-12-03 -Resort Hotel,1,165,2016,May,23,16,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,291.0,179.0,0,Transient,76.17,0,0,Canceled,2019-02-01 -City Hotel,0,87,2017,July,33,14,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.59,0,2,Check-Out,2020-06-02 -Resort Hotel,1,324,2017,August,32,15,2,1,1,0.0,0,HB,SWE,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,92.5,0,1,Canceled,2020-06-02 -City Hotel,1,205,2016,September,46,15,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,127.77,0,0,Canceled,2019-11-03 -Resort Hotel,0,2,2015,November,43,24,0,1,1,0.0,0,BB,CN,Online TA,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,94.36,0,0,Check-Out,2018-09-02 -City Hotel,0,10,2016,March,11,25,1,0,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,70.88,0,1,Check-Out,2019-01-03 -Resort Hotel,1,18,2015,October,44,5,2,5,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,43.14,0,2,Canceled,2018-06-02 -Resort Hotel,1,29,2015,January,41,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,74.0,0,0,Canceled,2018-12-03 -City Hotel,1,104,2017,August,36,7,2,5,2,0.0,0,BB,ITA,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,105.29,0,2,Canceled,2020-07-03 -City Hotel,0,11,2017,June,36,13,0,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,164.17,0,0,Check-Out,2020-07-03 -Resort Hotel,0,19,2016,May,23,5,1,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,E,E,0,No Deposit,16.0,229.0,0,Transient,137.0,0,0,Check-Out,2019-06-03 -City Hotel,0,3,2016,January,13,18,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,61.8,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2015,October,45,28,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,222.0,0,Transient-Party,77.7,0,0,Check-Out,2018-09-02 -City Hotel,1,149,2016,March,8,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,Non Refund,261.0,179.0,0,Transient,76.08,0,0,Canceled,2018-12-03 -Resort Hotel,0,114,2015,December,49,24,2,5,2,1.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,64,Transient,76.98,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2015,December,53,6,1,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-10-03 -Resort Hotel,0,0,2017,February,12,27,1,1,2,0.0,0,Undefined,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,161.0,331.0,0,Transient-Party,79.01,0,0,Check-Out,2020-01-04 -City Hotel,0,91,2017,June,20,6,2,3,2,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,A,0,No Deposit,11.0,249.0,0,Transient,89.74,0,1,Check-Out,2020-04-02 -City Hotel,0,263,2017,July,25,19,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,132.97,0,0,Check-Out,2020-06-02 -City Hotel,0,49,2016,July,4,6,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,92.09,0,1,Check-Out,2018-12-03 -Resort Hotel,0,206,2017,July,23,15,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,162.62,1,1,Check-Out,2020-03-03 -City Hotel,1,184,2017,May,14,20,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.01,1,1,Canceled,2019-12-04 -Resort Hotel,0,151,2016,May,21,31,2,3,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,1,Refundable,12.0,179.0,0,Transient-Party,79.51,0,0,Check-Out,2019-03-04 -City Hotel,0,45,2017,August,31,30,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.46,0,2,Check-Out,2020-07-03 -City Hotel,0,85,2017,December,41,15,2,0,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.18,0,0,Check-Out,2019-10-04 -Resort Hotel,0,25,2016,July,33,6,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,101.59,0,2,Check-Out,2018-06-02 -City Hotel,0,0,2016,May,44,21,1,1,1,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,157.06,0,0,Check-Out,2019-06-03 -City Hotel,1,50,2016,December,53,14,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,39.18,0,2,No-Show,2018-12-03 -City Hotel,1,164,2016,October,43,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,85.39,0,0,Canceled,2019-10-04 -Resort Hotel,0,86,2017,May,22,27,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2015,September,37,11,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,188.35,1,2,Check-Out,2018-07-03 -Resort Hotel,0,91,2016,September,34,20,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,80.05,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2017,January,4,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,247.0,179.0,0,Transient,244.04,1,1,Check-Out,2019-11-03 -City Hotel,0,153,2017,August,35,14,2,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,120.59,1,3,Check-Out,2020-07-03 -City Hotel,1,41,2016,March,9,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient,107.11,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2015,September,43,22,2,1,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,331.0,0,Contract,63.65,0,0,Check-Out,2017-12-03 -City Hotel,0,156,2015,July,32,30,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,4.0,179.0,0,Transient-Party,63.89,0,0,Canceled,2018-06-02 -City Hotel,0,0,2016,October,42,25,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,61.07,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2017,February,10,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient,63.56,0,1,Check-Out,2018-11-02 -City Hotel,0,55,2016,March,17,14,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,74.57,0,2,Check-Out,2019-02-01 -City Hotel,1,121,2015,December,51,22,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.02,0,0,Canceled,2017-12-03 -City Hotel,0,136,2015,July,32,30,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,122.61,0,2,Check-Out,2018-06-02 -City Hotel,0,15,2016,September,42,19,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,143.24,0,2,Check-Out,2018-07-03 -City Hotel,1,216,2017,April,15,14,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,96.09,0,0,Canceled,2018-12-03 -Resort Hotel,0,150,2017,June,27,5,4,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,189.0,179.0,0,Transient,126.71,0,0,Check-Out,2020-03-03 -Resort Hotel,0,289,2017,August,39,10,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,310.0,179.0,0,Transient-Party,190.28,0,0,Check-Out,2020-07-03 -City Hotel,0,59,2017,May,21,28,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,166.55,0,2,Check-Out,2020-03-03 -Resort Hotel,0,11,2016,January,3,18,1,2,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,241.0,179.0,0,Transient,37.07,0,1,Check-Out,2018-11-02 -City Hotel,0,94,2015,July,31,5,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,108.32,0,0,Check-Out,2018-06-02 -City Hotel,0,38,2016,November,44,8,0,2,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,12.0,179.0,0,Transient,62.61,0,0,Check-Out,2019-10-04 -City Hotel,0,17,2016,June,27,8,0,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,171.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,2,2015,December,51,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,3,No Deposit,14.0,75.0,0,Transient,62.51,0,0,Check-Out,2018-12-03 -City Hotel,1,15,2016,December,53,5,0,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.79,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2017,February,11,15,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,G,1,No Deposit,18.0,179.0,0,Transient,0.0,1,2,Check-Out,2019-12-04 -City Hotel,1,127,2016,January,9,1,0,2,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,172.02,0,0,Canceled,2018-11-02 -City Hotel,0,14,2016,July,37,21,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.37,0,1,Check-Out,2019-05-04 -Resort Hotel,1,434,2017,December,53,20,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,311.0,179.0,0,Transient,61.0,0,0,Canceled,2019-11-03 -Resort Hotel,0,10,2016,October,45,24,0,3,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,265.0,0,Transient-Party,61.47,1,0,Check-Out,2018-09-02 -City Hotel,0,3,2016,April,18,10,0,3,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,1,No Deposit,13.0,184.0,0,Transient,83.27,0,0,Check-Out,2019-03-04 -City Hotel,0,238,2016,September,42,22,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,3,No Deposit,23.0,179.0,0,Transient-Party,72.53,0,0,Check-Out,2019-04-03 -City Hotel,1,18,2017,April,15,25,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,1,No Deposit,77.0,179.0,0,Transient-Party,150.21,0,0,Canceled,2020-03-03 -Resort Hotel,0,63,2015,December,50,9,0,2,1,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,E,0,No Deposit,34.0,179.0,0,Transient-Party,86.92,0,0,Check-Out,2018-10-03 -City Hotel,1,42,2017,March,22,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.65,0,2,Canceled,2019-12-04 -City Hotel,0,0,2017,December,49,6,0,1,2,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,15.0,276.0,0,Transient,2.74,0,0,Check-Out,2019-12-04 -City Hotel,0,48,2015,September,44,21,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,61,Transient-Party,81.38,0,0,Check-Out,2019-05-04 -City Hotel,0,104,2016,September,36,6,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.99,0,2,Check-Out,2019-08-04 -City Hotel,1,16,2016,February,10,28,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,85.0,179.0,0,Transient,76.77,0,0,Canceled,2018-11-02 -Resort Hotel,1,0,2015,July,24,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,H,0,No Deposit,17.0,179.0,0,Transient,96.0,0,0,Canceled,2018-11-02 -City Hotel,1,261,2016,September,43,10,2,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.03,0,0,Canceled,2019-05-04 -City Hotel,0,0,2017,January,2,13,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,78.71,0,2,Check-Out,2019-10-04 -City Hotel,0,36,2016,December,53,26,1,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,105.74,0,2,Check-Out,2019-12-04 -City Hotel,1,1,2016,October,42,28,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,113.56,0,0,Canceled,2019-08-04 -Resort Hotel,0,22,2017,February,8,27,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,331.0,75,Transient-Party,78.61,0,0,Check-Out,2019-11-03 -City Hotel,0,34,2016,April,16,21,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,78.26,0,0,Check-Out,2019-02-01 -City Hotel,0,9,2016,January,11,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,13.0,84.0,0,Transient,74.44,0,0,Check-Out,2019-02-01 -Resort Hotel,1,71,2015,December,50,19,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,26.0,179.0,0,Transient,77.41,0,0,Canceled,2018-10-03 -City Hotel,1,251,2017,August,17,18,0,2,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,131.83,0,0,Canceled,2020-03-03 -City Hotel,0,259,2017,May,22,28,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,83.63,0,2,Check-Out,2020-04-02 -City Hotel,0,54,2017,May,37,20,1,1,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,17.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-07-03 -Resort Hotel,0,153,2017,April,16,22,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,F,A,2,No Deposit,9.0,179.0,0,Transient,120.94,0,2,Check-Out,2020-02-01 -City Hotel,1,0,2015,October,42,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,6.0,179.0,0,Transient,62.87,0,0,Canceled,2017-12-03 -City Hotel,0,1,2017,August,34,16,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,129.68,1,1,Check-Out,2019-09-03 -Resort Hotel,1,51,2017,February,7,20,1,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,35.8,0,0,Canceled,2019-11-03 -Resort Hotel,1,253,2016,June,22,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,62.13,0,0,Canceled,2019-03-04 -City Hotel,0,141,2017,May,20,23,2,0,1,0.0,0,HB,ESP,Direct,Corporate,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient-Party,81.51,0,0,Check-Out,2020-03-03 -Resort Hotel,0,10,2016,March,12,25,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,244.0,179.0,0,Transient,63.27,0,0,Check-Out,2019-07-04 -City Hotel,1,19,2017,February,11,25,1,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,F,0,Non Refund,10.0,179.0,0,Transient,116.52,0,0,Canceled,2019-08-04 -Resort Hotel,1,16,2016,November,50,30,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,70.46,0,0,Canceled,2019-08-04 -City Hotel,1,98,2015,August,35,21,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,6.0,179.0,0,Transient-Party,135.27,0,0,Canceled,2018-05-03 -Resort Hotel,0,97,2016,October,44,10,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,50.12,0,3,Check-Out,2018-08-03 -City Hotel,0,147,2017,May,21,27,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,151.06,1,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,March,12,20,2,0,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,E,E,0,No Deposit,13.0,176.0,0,Transient,89.48,0,0,Check-Out,2019-04-03 -City Hotel,1,311,2016,November,53,24,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.06,0,0,Canceled,2019-09-03 -Resort Hotel,0,96,2017,June,27,13,4,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,173.0,179.0,0,Transient,148.4,0,1,Check-Out,2020-04-02 -City Hotel,1,51,2015,October,45,24,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,1,No Deposit,9.0,179.0,0,Transient,39.85,0,2,Canceled,2018-11-02 -City Hotel,0,0,2017,June,28,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,14.0,45.0,0,Group,109.16,0,1,Check-Out,2020-01-04 -City Hotel,1,18,2016,September,4,13,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.83,0,0,Canceled,2019-10-04 -Resort Hotel,0,1,2017,October,15,30,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,234.24,0,2,Check-Out,2020-05-03 -Resort Hotel,1,37,2017,May,21,24,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,318.0,179.0,0,Transient-Party,102.75,0,0,Canceled,2019-11-03 -City Hotel,0,0,2016,February,9,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,57.09,0,1,Check-Out,2019-02-01 -Resort Hotel,1,46,2017,February,11,29,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,152.0,179.0,0,Transient-Party,62.51,0,0,Canceled,2019-11-03 -City Hotel,0,11,2015,February,10,20,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,73.0,80.0,0,Transient-Party,88.55,0,0,Check-Out,2018-12-03 -City Hotel,0,61,2016,May,18,31,2,3,2,2.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,11.0,179.0,0,Transient,105.73,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2016,March,23,21,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,84.84,0,1,Check-Out,2019-02-01 -City Hotel,0,13,2015,December,33,5,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,106.48,0,0,Check-Out,2018-11-02 -City Hotel,0,202,2016,May,21,13,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.45,0,2,Check-Out,2019-11-03 -Resort Hotel,1,20,2017,February,7,9,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,331.0,0,Transient,40.57,0,0,Canceled,2019-11-03 -Resort Hotel,0,54,2016,April,18,30,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,150.1,1,1,Check-Out,2020-03-03 -Resort Hotel,0,2,2017,February,8,5,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,331.0,0,Transient,39.79,0,0,Check-Out,2020-04-02 -City Hotel,0,1,2015,December,50,6,2,4,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,D,0,No Deposit,11.0,45.0,0,Transient,0.0,0,2,Check-Out,2018-12-03 -Resort Hotel,0,5,2016,December,53,27,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,113.18,1,0,Check-Out,2019-12-04 -City Hotel,0,14,2015,September,44,18,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,126.58,0,2,Check-Out,2018-09-02 -City Hotel,1,11,2017,March,16,20,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,109.52,0,1,Canceled,2020-01-04 -City Hotel,0,1,2016,December,50,28,1,1,3,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,F,0,No Deposit,15.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-10-04 -Resort Hotel,0,363,2016,July,43,28,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.03,0,2,Check-Out,2019-06-03 -City Hotel,0,1,2016,October,26,25,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,45.0,0,Transient,117.13,0,0,Check-Out,2019-06-03 -City Hotel,1,42,2017,May,17,25,0,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,9.0,179.0,0,Transient,111.98,0,0,Canceled,2019-01-03 -Resort Hotel,0,52,2016,October,44,2,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,64.21,0,2,Check-Out,2019-09-03 -City Hotel,1,9,2017,February,8,5,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,68.97,0,0,Canceled,2019-09-03 -City Hotel,0,0,2015,June,28,8,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,103.02,0,0,Check-Out,2018-05-03 -City Hotel,1,46,2015,December,50,25,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,16.0,45.0,0,Transient,50.13,0,0,No-Show,2018-10-03 -Resort Hotel,0,1,2016,March,11,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,1,No Deposit,184.0,179.0,0,Group,185.88,0,1,Check-Out,2020-03-03 -Resort Hotel,0,9,2017,July,32,23,1,5,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,94.0,179.0,0,Transient,241.36,0,0,Check-Out,2020-07-03 -City Hotel,0,255,2017,June,21,26,1,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,88.8,0,0,Check-Out,2019-11-03 -Resort Hotel,1,197,2017,March,16,8,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,1,Refundable,11.0,221.0,0,Transient-Party,85.19,0,0,Canceled,2019-09-03 -City Hotel,0,6,2016,July,31,16,0,2,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,237.2,0,0,Check-Out,2019-06-03 -Resort Hotel,0,155,2017,August,37,31,1,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,153.47,0,1,Check-Out,2020-06-02 -City Hotel,0,1,2017,June,22,9,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,61.47,0,0,Check-Out,2020-04-02 -Resort Hotel,0,0,2016,May,18,21,2,0,2,0.0,0,BB,GBR,Complementary,Direct,0,0,0,C,F,1,No Deposit,15.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-11-03 -Resort Hotel,0,42,2016,May,23,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,122.1,0,1,Check-Out,2019-01-03 -Resort Hotel,0,80,2016,July,26,25,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,104.07,0,0,Check-Out,2019-05-04 -City Hotel,0,166,2017,July,26,27,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient,89.27,0,0,Check-Out,2020-03-03 -City Hotel,1,39,2016,August,29,13,1,3,3,0.0,0,BB,DEU,Undefined,TA/TO,0,0,0,B,B,3,No Deposit,11.0,179.0,0,Transient-Party,77.0,0,1,Canceled,2019-06-03 -Resort Hotel,0,35,2016,April,28,13,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,H,0,No Deposit,245.0,179.0,0,Transient-Party,34.22,1,0,Check-Out,2019-02-01 -City Hotel,0,90,2016,April,17,5,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.82,0,0,Check-Out,2019-11-03 -City Hotel,1,383,2016,January,5,27,1,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,75.55,0,0,Canceled,2018-10-03 -Resort Hotel,1,304,2017,July,26,26,4,5,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,64.37,0,0,Canceled,2020-01-04 -City Hotel,1,33,2016,March,18,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,E,D,1,No Deposit,15.0,45.0,0,Transient,62.86,0,0,Canceled,2019-06-03 -City Hotel,1,415,2017,May,21,28,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,82.61,0,0,Canceled,2020-02-01 -Resort Hotel,0,90,2015,December,53,31,2,5,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,43.55,0,2,Check-Out,2018-11-02 -Resort Hotel,1,0,2015,October,45,12,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,61.11,0,0,No-Show,2018-08-03 -Resort Hotel,1,49,2016,October,44,6,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,65.5,0,0,Canceled,2019-09-03 -Resort Hotel,0,59,2015,October,42,10,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,84.0,179.0,0,Transient-Party,51.66,0,1,Check-Out,2018-09-02 -City Hotel,0,0,2016,August,38,9,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.64,0,2,Check-Out,2019-09-03 -City Hotel,1,322,2015,December,53,18,1,2,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,A,0,Non Refund,299.0,179.0,0,Transient-Party,79.49,0,0,Canceled,2017-12-03 -City Hotel,0,251,2017,May,20,7,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,141.73,0,2,Check-Out,2020-04-02 -City Hotel,0,114,2015,August,37,30,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,97.82,0,0,Check-Out,2018-05-03 -City Hotel,1,4,2017,May,35,13,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,189.35,0,0,Canceled,2020-03-03 -City Hotel,1,45,2016,March,10,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,39.35,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2017,January,3,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,204.0,76.0,0,Transient,44.01,0,0,Check-Out,2020-06-02 -Resort Hotel,0,5,2015,July,33,21,0,3,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,125.44,0,2,Check-Out,2018-05-03 -Resort Hotel,0,249,2016,August,37,16,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,64.75,0,0,Canceled,2019-05-04 -City Hotel,1,175,2017,March,10,13,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.52,0,0,Canceled,2020-03-03 -Resort Hotel,0,145,2015,July,30,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,88.5,0,0,Check-Out,2019-04-03 -City Hotel,0,97,2015,December,53,31,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,62.73,0,0,Check-Out,2018-11-02 -Resort Hotel,0,1,2016,February,9,15,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,44.83,0,1,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,January,3,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,89.0,0,Transient,34.1,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2016,December,45,2,0,1,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,D,D,1,No Deposit,174.0,179.0,0,Transient-Party,60.67,0,0,Check-Out,2019-09-03 -Resort Hotel,0,8,2015,July,33,31,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient-Party,152.58,1,0,No-Show,2018-06-02 -City Hotel,0,77,2016,March,10,14,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,69.65,0,2,Check-Out,2019-01-03 -City Hotel,1,62,2017,May,17,17,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.07,0,0,Canceled,2020-02-01 -City Hotel,1,2,2017,June,27,24,0,2,1,0.0,0,BB,BEL,Aviation,GDS,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,142.42,0,0,Canceled,2019-11-03 -City Hotel,0,101,2016,September,43,9,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,216.83,0,2,Check-Out,2019-11-03 -City Hotel,0,373,2016,October,43,19,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,74.16,0,0,Check-Out,2019-09-03 -Resort Hotel,0,47,2017,August,33,5,1,3,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.72,0,1,Check-Out,2019-12-04 -City Hotel,1,48,2016,September,21,9,1,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,135.38,0,0,Canceled,2019-01-03 -Resort Hotel,0,139,2016,October,45,16,4,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,246.0,179.0,0,Transient,94.62,1,0,Check-Out,2019-11-03 -Resort Hotel,0,144,2016,May,35,25,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient-Party,74.02,0,0,Check-Out,2019-02-01 -City Hotel,0,59,2016,June,28,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,36.0,179.0,0,Transient-Party,96.25,0,0,Check-Out,2019-03-04 -City Hotel,1,65,2016,April,18,10,2,4,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,10.0,179.0,0,Transient-Party,213.48,1,1,Canceled,2019-04-03 -Resort Hotel,0,266,2016,July,31,19,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,271.0,179.0,63,Transient-Party,116.22,0,0,Check-Out,2019-07-04 -Resort Hotel,0,23,2016,December,49,12,1,3,1,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,E,0,No Deposit,100.0,179.0,0,Transient-Party,79.91,0,0,Check-Out,2019-10-04 -City Hotel,0,12,2016,November,51,28,0,3,1,0.0,0,BB,SWE,Direct,Direct,0,0,0,A,H,0,No Deposit,13.0,179.0,0,Transient-Party,58.46,0,0,Check-Out,2019-11-03 -City Hotel,1,163,2015,July,31,27,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,65.01,0,0,Canceled,2018-05-03 -City Hotel,0,145,2017,March,10,14,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,79.0,179.0,0,Transient,128.43,0,1,Check-Out,2020-02-01 -City Hotel,0,1,2016,April,28,10,0,1,1,0.0,0,BB,ESP,Corporate,GDS,0,0,0,D,D,0,No Deposit,177.0,179.0,0,Transient,81.67,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,October,43,9,0,1,1,0.0,0,SC,PRT,Complementary,Direct,1,0,0,A,F,0,No Deposit,13.0,237.0,0,Transient,0.0,1,1,Check-Out,2019-09-03 -City Hotel,1,153,2016,June,28,19,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.16,0,0,Canceled,2019-02-01 -City Hotel,1,271,2016,September,43,2,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,198.86,0,1,Canceled,2019-06-03 -Resort Hotel,0,71,2016,August,37,31,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,100.93,0,1,Check-Out,2019-06-03 -City Hotel,1,2,2016,July,33,17,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,140.65,0,1,No-Show,2018-06-02 -City Hotel,0,0,2016,April,15,16,0,1,3,0.0,0,BB,GBR,Complementary,Direct,0,0,0,A,P,1,No Deposit,12.0,45.0,0,Transient,94.58,0,1,Check-Out,2019-04-03 -City Hotel,0,87,2016,July,31,18,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Contract,61.83,0,1,Check-Out,2020-02-01 -City Hotel,0,47,2017,April,16,17,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,81.85,0,0,Check-Out,2020-03-03 -City Hotel,1,52,2016,June,26,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,40,Transient,97.96,0,0,Canceled,2018-11-02 -City Hotel,0,50,2015,December,51,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,45.0,0,Transient,30.67,0,0,Check-Out,2018-12-03 -City Hotel,0,32,2015,September,44,29,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,92.41,0,0,Check-Out,2018-07-03 -Resort Hotel,0,0,2015,December,51,20,2,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,105.0,179.0,0,Transient,48.99,0,0,Check-Out,2018-08-03 -Resort Hotel,0,48,2017,February,9,28,1,0,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,0,No Deposit,102.0,179.0,0,Transient,84.48,0,0,Check-Out,2019-09-03 -Resort Hotel,1,31,2016,January,10,28,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,66.29,0,0,Canceled,2019-02-01 -Resort Hotel,0,20,2017,January,53,6,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,158.69,0,1,Check-Out,2019-12-04 -Resort Hotel,1,154,2016,January,30,4,0,4,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,199.53,0,0,Canceled,2019-01-03 -Resort Hotel,0,0,2015,November,43,20,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,40.07,0,0,Canceled,2018-05-03 -City Hotel,0,1,2015,August,36,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,62.84,0,0,Check-Out,2018-06-02 -City Hotel,0,4,2015,October,45,14,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient-Party,84.05,0,1,Check-Out,2018-08-03 -City Hotel,0,91,2016,July,33,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,73.78,0,0,Check-Out,2019-04-03 -City Hotel,1,97,2016,August,32,16,2,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.18,0,1,Canceled,2018-12-03 -City Hotel,0,94,2015,December,53,18,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,75.62,0,0,Check-Out,2018-11-02 -City Hotel,0,53,2016,October,44,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,111.63,0,0,Check-Out,2019-08-04 -Resort Hotel,0,193,2016,October,40,17,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,37.51,0,0,Check-Out,2018-09-02 -City Hotel,0,167,2017,June,25,20,0,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,161.21,0,1,Check-Out,2020-04-02 -City Hotel,1,147,2016,January,4,28,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,167.0,179.0,0,Transient,70.26,0,0,No-Show,2019-01-03 -City Hotel,1,43,2017,May,23,21,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,156.71,0,1,Canceled,2020-05-03 -City Hotel,0,105,2016,June,27,15,1,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,99.8,0,0,Check-Out,2019-05-04 -Resort Hotel,0,14,2016,February,9,10,0,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,39.9,0,1,Check-Out,2019-01-03 -Resort Hotel,0,15,2016,November,4,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,245.0,179.0,0,Group,33.92,0,1,Check-Out,2019-10-04 -City Hotel,0,242,2015,July,33,31,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.24,0,0,Check-Out,2017-12-03 -City Hotel,1,204,2017,April,16,20,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,95.1,0,0,Canceled,2020-02-01 -Resort Hotel,0,18,2017,July,32,25,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-03-03 -Resort Hotel,0,36,2016,May,22,20,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,B,0,No Deposit,16.0,179.0,0,Transient,118.56,0,0,Check-Out,2019-03-04 -City Hotel,0,91,2016,June,26,16,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.09,0,1,Check-Out,2019-03-04 -City Hotel,0,36,2017,May,17,27,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,67.73,0,0,Check-Out,2019-11-03 -Resort Hotel,0,36,2017,March,11,12,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,170.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -Resort Hotel,0,50,2016,August,24,27,2,5,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,157.05,0,1,Check-Out,2019-09-03 -City Hotel,1,3,2016,April,16,10,0,2,1,0.0,0,BB,PRT,Direct,TA/TO,0,1,0,A,A,0,Non Refund,13.0,179.0,43,Transient,72.11,0,0,Canceled,2018-12-03 -City Hotel,1,150,2017,June,27,27,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,203.37,0,0,Canceled,2020-03-03 -City Hotel,1,90,2016,February,10,20,1,0,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,94.97,0,0,Canceled,2018-11-02 -City Hotel,1,48,2016,June,23,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,128.43,0,0,Canceled,2019-01-03 -City Hotel,0,3,2016,June,27,2,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,82.04,1,0,Check-Out,2019-08-04 -City Hotel,1,163,2016,March,11,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,43,Transient,78.73,0,0,Canceled,2018-11-02 -Resort Hotel,0,41,2015,December,49,30,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,127.31,0,0,Check-Out,2018-12-03 -City Hotel,0,55,2017,March,18,21,1,1,3,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,180.0,331.0,0,Transient-Party,63.76,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2015,October,43,15,1,2,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,60.4,0,0,Check-Out,2018-08-03 -Resort Hotel,0,13,2017,February,11,10,1,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,86.2,1,0,Check-Out,2020-03-03 -City Hotel,1,308,2016,September,43,22,2,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,91.21,0,2,Canceled,2018-08-03 -City Hotel,0,25,2016,April,15,22,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,241.0,179.0,0,Transient,120.6,0,3,Check-Out,2019-01-03 -Resort Hotel,1,51,2016,September,38,31,3,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,141.27,0,1,Canceled,2019-07-04 -City Hotel,0,0,2016,March,10,21,1,4,3,0.0,0,Undefined,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,163.2,0,0,Check-Out,2019-02-01 -Resort Hotel,0,26,2016,March,16,12,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,250.0,179.0,0,Transient,178.87,1,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,June,21,30,0,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient-Party,88.33,0,1,Check-Out,2019-02-01 -Resort Hotel,0,53,2017,March,11,30,0,5,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient-Party,74.02,0,3,Check-Out,2019-11-03 -Resort Hotel,0,15,2015,September,39,9,0,2,1,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,90.0,179.0,0,Transient,214.59,0,0,Check-Out,2018-08-03 -City Hotel,0,41,2017,May,21,30,0,2,1,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.89,0,1,Check-Out,2020-03-03 -Resort Hotel,0,257,2016,June,31,15,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,129.22,0,1,Check-Out,2019-02-01 -City Hotel,0,1,2016,April,16,9,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,159.85,0,2,Check-Out,2019-06-03 -Resort Hotel,1,85,2015,October,46,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,73.42,0,0,Canceled,2018-08-03 -City Hotel,1,227,2015,August,33,21,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,112.57,0,0,Canceled,2018-05-03 -Resort Hotel,0,4,2016,November,49,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,30.66,1,0,Check-Out,2019-11-03 -Resort Hotel,0,153,2016,March,18,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,14.0,223.0,75,Transient-Party,79.94,0,0,Check-Out,2019-02-01 -Resort Hotel,1,8,2015,September,44,18,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,200.0,179.0,67,Transient-Party,40.31,0,0,No-Show,2018-12-03 -Resort Hotel,0,42,2016,August,35,2,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,62.48,1,1,Check-Out,2019-05-04 -Resort Hotel,1,0,2016,January,10,18,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,24.38,0,0,No-Show,2018-12-03 -City Hotel,1,0,2017,January,10,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.29,0,0,No-Show,2019-11-03 -City Hotel,0,9,2017,June,21,10,1,3,1,0.0,0,BB,,Online TA,Direct,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,101.09,0,1,Check-Out,2020-02-01 -City Hotel,0,148,2015,August,33,21,0,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient-Party,111.65,0,0,Check-Out,2018-05-03 -City Hotel,1,421,2015,September,38,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.06,0,0,Canceled,2017-11-02 -City Hotel,1,274,2016,October,43,22,2,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.97,0,0,Canceled,2019-11-03 -City Hotel,1,49,2016,June,28,21,2,5,3,0.0,0,BB,USA,Online TA,GDS,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,125.25,0,1,Canceled,2019-01-03 -Resort Hotel,0,21,2017,April,23,23,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-03-03 -City Hotel,0,56,2015,October,46,29,2,4,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.98,0,0,Check-Out,2018-09-02 -City Hotel,0,35,2016,November,51,26,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,248.0,0,Transient,57.58,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,February,11,28,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,39.67,1,0,Check-Out,2018-11-02 -Resort Hotel,0,4,2017,August,28,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,48.31,1,1,Check-Out,2020-06-02 -City Hotel,1,0,2016,May,23,28,1,4,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,E,0,No Deposit,12.0,191.0,0,Transient,165.39,1,0,Canceled,2019-03-04 -Resort Hotel,1,137,2016,December,53,29,2,4,2,0.0,0,Undefined,POL,Groups,TA/TO,0,0,0,A,F,0,No Deposit,378.0,179.0,0,Transient-Party,89.34,0,0,Canceled,2019-11-03 -City Hotel,1,31,2015,January,4,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,59.57,0,0,Canceled,2018-11-02 -City Hotel,0,36,2017,January,4,6,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,78.52,1,0,Check-Out,2019-12-04 -Resort Hotel,0,274,2016,June,26,30,3,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,C,0,No Deposit,243.0,179.0,0,Transient,44.82,1,1,Check-Out,2019-06-03 -City Hotel,1,134,2017,May,21,30,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,91.14,0,0,Canceled,2020-03-03 -City Hotel,1,0,2016,March,12,16,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,91.85,0,0,Canceled,2018-12-03 -Resort Hotel,0,102,2016,April,15,23,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,72.0,179.0,0,Transient,123.01,0,0,Check-Out,2019-03-04 -City Hotel,0,13,2016,November,45,25,0,1,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,124.38,0,0,Check-Out,2019-08-04 -Resort Hotel,0,7,2017,February,10,24,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,158.47,0,0,Check-Out,2019-10-04 -City Hotel,1,14,2016,December,4,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,74.47,0,1,Canceled,2018-11-02 -Resort Hotel,1,155,2017,March,10,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,0,Non Refund,14.0,331.0,0,Transient,48.52,0,0,Canceled,2020-03-03 -Resort Hotel,0,209,2017,August,38,17,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,165.02,1,3,Check-Out,2020-06-02 -City Hotel,0,245,2015,November,45,3,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,75.0,179.0,0,Contract,116.57,0,0,Check-Out,2017-11-02 -City Hotel,0,14,2016,November,53,27,0,2,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,75.79,0,0,Check-Out,2019-05-04 -Resort Hotel,0,2,2017,July,35,28,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,0.0,1,2,Check-Out,2020-06-02 -Resort Hotel,0,37,2017,February,8,29,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,59.11,0,0,Check-Out,2020-04-02 -Resort Hotel,1,119,2016,May,22,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,77.95,0,0,Canceled,2019-10-04 -Resort Hotel,0,48,2017,February,11,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,33.43,0,2,Check-Out,2019-11-03 -Resort Hotel,1,3,2017,February,10,29,1,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,69.18,0,0,Check-Out,2019-10-04 -City Hotel,0,1,2017,August,43,18,0,1,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,88.62,0,0,Check-Out,2019-08-04 -Resort Hotel,0,1,2017,July,32,21,0,3,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,243.0,179.0,0,Transient,48.76,0,1,Check-Out,2020-07-03 -City Hotel,0,285,2016,June,20,5,0,3,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,73.0,179.0,0,Transient,77.41,0,0,Check-Out,2019-02-01 -Resort Hotel,0,2,2016,January,18,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,72.0,0,Transient,68.83,0,0,Check-Out,2018-12-03 -City Hotel,0,19,2015,August,36,21,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,76.93,0,0,Check-Out,2018-08-03 -City Hotel,1,98,2017,June,26,14,0,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,123.55,0,1,Canceled,2020-03-03 -Resort Hotel,0,51,2015,July,28,5,0,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,46.15,0,0,Check-Out,2018-06-02 -Resort Hotel,0,50,2015,October,42,28,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,123.86,0,3,Check-Out,2018-08-03 -Resort Hotel,0,3,2017,February,9,10,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,39.43,0,1,Check-Out,2020-03-03 -Resort Hotel,0,148,2016,March,10,2,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,D,D,1,No Deposit,378.0,179.0,0,Transient,31.18,0,0,Canceled,2020-04-02 -City Hotel,1,151,2016,December,53,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,59.77,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2017,January,3,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,3,No Deposit,15.0,93.0,0,Transient,38.84,0,0,Check-Out,2019-09-03 -City Hotel,0,101,2015,October,44,30,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.89,0,1,Check-Out,2018-09-02 -City Hotel,0,0,2015,October,43,6,0,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.03,0,0,Check-Out,2018-08-03 -City Hotel,1,14,2016,November,44,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,118.8,0,1,Canceled,2018-10-03 -City Hotel,1,208,2016,August,37,20,0,2,3,2.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,17.0,179.0,0,Transient-Party,181.46,0,1,Canceled,2019-07-04 -City Hotel,0,243,2015,July,28,24,0,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,74.18,0,0,Check-Out,2019-05-04 -City Hotel,1,54,2016,March,9,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.63,0,0,Canceled,2018-12-03 -City Hotel,1,106,2017,March,22,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,255.0,179.0,0,Transient,73.53,0,0,Canceled,2019-02-01 -City Hotel,1,17,2016,October,46,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,219.0,0,Transient,69.62,0,0,Canceled,2019-11-03 -City Hotel,0,107,2017,June,26,17,1,1,3,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,B,D,0,No Deposit,14.0,179.0,0,Transient,129.22,0,0,Check-Out,2020-02-01 -City Hotel,0,246,2016,July,30,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Transient,85.94,0,0,Check-Out,2019-05-04 -City Hotel,0,9,2016,March,18,29,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,67.31,0,0,Check-Out,2019-02-01 -City Hotel,1,151,2016,October,41,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.14,0,0,Canceled,2019-10-04 -City Hotel,0,50,2016,April,17,9,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,126.7,0,0,Check-Out,2020-02-01 -City Hotel,0,134,2017,August,30,12,0,1,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,92.06,0,0,Check-Out,2020-07-03 -City Hotel,0,52,2016,August,38,21,1,2,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,226.77,1,1,Check-Out,2019-09-03 -Resort Hotel,0,284,2016,September,35,25,1,5,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,313.0,179.0,0,Transient,121.79,0,0,Check-Out,2019-02-01 -City Hotel,1,22,2017,May,26,5,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,77.48,0,0,Canceled,2020-06-02 -City Hotel,0,107,2016,October,42,4,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.07,0,2,Check-Out,2019-06-03 -Resort Hotel,0,38,2016,March,17,9,1,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,B,0,No Deposit,79.0,179.0,0,Transient-Party,68.15,0,0,Check-Out,2019-05-04 -City Hotel,1,57,2017,April,16,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,91.75,0,0,Canceled,2019-11-03 -Resort Hotel,0,200,2016,November,27,2,1,3,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient,41.35,0,0,Check-Out,2019-04-03 -Resort Hotel,0,318,2016,August,23,2,4,6,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,253.0,179.0,0,Transient,78.03,0,0,Check-Out,2019-04-03 -City Hotel,0,18,2017,January,8,5,0,2,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.51,0,0,Check-Out,2019-09-03 -Resort Hotel,0,1,2016,October,44,13,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,16.0,232.0,0,Transient,36.29,0,0,Check-Out,2019-09-03 -City Hotel,0,2,2016,December,50,21,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,62.06,0,0,Check-Out,2019-11-03 -City Hotel,1,109,2016,October,37,29,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,119.17,0,0,Canceled,2019-12-04 -Resort Hotel,0,1,2016,February,11,20,1,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,316.0,179.0,0,Transient-Party,76.3,0,0,Check-Out,2019-03-04 -City Hotel,0,190,2016,July,30,9,2,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,99.42,0,1,Check-Out,2019-03-04 -Resort Hotel,0,152,2016,August,35,21,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,68.07,0,2,Check-Out,2019-09-03 -City Hotel,0,1,2016,May,17,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,13.0,67.0,0,Transient,61.48,0,0,Check-Out,2019-03-04 -City Hotel,0,3,2015,December,50,29,0,7,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,94.0,179.0,0,Group,36.07,0,0,Check-Out,2018-08-03 -City Hotel,0,115,2017,May,33,6,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.41,0,2,Check-Out,2020-04-02 -City Hotel,0,13,2017,March,8,5,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.07,0,2,Check-Out,2020-03-03 -City Hotel,0,2,2017,May,23,15,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.86,0,1,Check-Out,2020-03-03 -Resort Hotel,1,371,2016,October,45,16,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,68.91,0,0,Canceled,2019-09-03 -City Hotel,0,10,2016,June,15,11,0,2,3,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,13.0,179.0,0,Transient-Party,136.61,0,0,Check-Out,2019-02-01 -Resort Hotel,0,106,2016,August,42,2,3,5,2,0.0,0,HB,AUT,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,200.67,0,0,Check-Out,2019-08-04 -City Hotel,1,13,2017,January,4,28,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.46,0,0,Canceled,2019-09-03 -City Hotel,1,18,2017,February,10,21,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,1,0,D,D,0,Non Refund,30.0,179.0,0,Transient,62.39,0,0,Canceled,2018-09-02 -Resort Hotel,0,58,2015,December,49,6,2,1,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,62.25,0,0,Check-Out,2018-05-03 -City Hotel,0,1,2017,May,21,27,1,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,160.82,1,0,Check-Out,2020-04-02 -Resort Hotel,0,13,2016,October,43,5,2,10,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient,62.44,0,0,Check-Out,2019-09-03 -City Hotel,0,9,2016,October,45,16,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,124.01,0,2,Check-Out,2019-06-03 -Resort Hotel,0,17,2015,December,53,31,1,4,2,0.0,0,Undefined,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient-Party,35.21,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,January,12,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,72.0,0,Transient,35.94,0,1,Check-Out,2018-12-03 -City Hotel,1,0,2016,January,4,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,69.67,0,0,No-Show,2018-11-02 -Resort Hotel,0,231,2015,July,35,3,2,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Contract,100.57,0,0,Check-Out,2018-06-02 -Resort Hotel,0,102,2015,October,53,30,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,37.55,0,0,Check-Out,2018-08-03 -City Hotel,1,260,2016,September,36,22,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.93,0,2,Canceled,2019-04-03 -Resort Hotel,0,4,2016,May,22,5,0,1,1,0.0,0,HB,PRT,Direct,TA/TO,1,0,0,C,I,1,No Deposit,313.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-12-03 -City Hotel,1,291,2015,July,36,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.31,0,0,Canceled,2017-11-02 -Resort Hotel,1,46,2016,March,18,27,0,1,2,0.0,0,Undefined,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,134.0,179.0,0,Transient,70.28,0,0,Canceled,2019-03-04 -City Hotel,0,39,2016,April,19,15,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,70.75,0,0,Check-Out,2019-02-01 -Resort Hotel,0,90,2016,July,28,6,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,61.47,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2017,February,10,27,0,1,1,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,76.67,0,0,Check-Out,2020-03-03 -City Hotel,1,2,2016,November,45,30,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,33.59,0,0,No-Show,2019-09-03 -City Hotel,0,159,2017,June,21,13,2,0,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.65,0,1,Check-Out,2020-04-02 -City Hotel,0,86,2016,March,16,26,0,4,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.03,0,2,Check-Out,2019-02-01 -Resort Hotel,0,89,2017,March,18,6,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,156.0,79.0,0,Transient-Party,0.83,0,0,Check-Out,2020-02-01 -City Hotel,1,38,2017,May,31,20,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,208.59,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2017,August,30,6,0,3,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,124.81,1,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,March,24,24,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,95.71,0,0,Check-Out,2020-01-04 -City Hotel,0,16,2016,December,10,12,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,61.95,0,0,Check-Out,2019-09-03 -City Hotel,1,1,2016,June,34,2,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,122.76,0,0,No-Show,2019-05-04 -City Hotel,0,54,2017,April,16,9,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,75,Transient,117.8,1,0,Check-Out,2020-02-01 -City Hotel,1,108,2017,May,25,13,1,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,D,E,0,No Deposit,165.0,179.0,0,Transient,123.65,0,0,Canceled,2019-03-04 -City Hotel,0,17,2017,May,21,14,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient-Party,90.02,0,0,Check-Out,2020-03-03 -City Hotel,0,255,2016,July,35,12,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,117.88,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2016,June,50,2,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,103.0,218.0,0,Transient,60.49,0,0,Check-Out,2019-10-04 -Resort Hotel,0,150,2017,February,7,14,2,5,2,0.0,0,HB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,88.0,331.0,0,Transient-Party,34.04,0,0,Check-Out,2020-04-02 -City Hotel,1,287,2015,July,35,9,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,83.11,0,0,Canceled,2018-05-03 -City Hotel,0,7,2016,March,16,5,1,4,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,1,No Deposit,75.0,179.0,0,Transient,90.97,0,0,Check-Out,2019-03-04 -City Hotel,1,87,2016,June,4,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.01,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2015,October,45,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,225.0,0,Transient,33.38,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2015,September,37,4,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,49.09,0,0,Check-Out,2018-06-02 -City Hotel,1,257,2017,May,22,17,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,106.76,0,0,Canceled,2019-11-03 -Resort Hotel,0,111,2015,July,31,20,1,1,1,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,169.08,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2017,April,17,9,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,1,0,1,A,I,0,No Deposit,11.0,331.0,0,Transient-Party,0.0,0,0,Check-Out,2020-01-04 -Resort Hotel,1,111,2017,May,16,23,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,193.88,0,1,Canceled,2020-02-01 -City Hotel,1,98,2016,December,53,21,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,8.0,179.0,0,Transient,73.33,0,1,Canceled,2018-12-03 -City Hotel,0,0,2016,September,44,21,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,1,No Deposit,13.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-09-03 -Resort Hotel,1,53,2016,March,9,20,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,2,Non Refund,146.0,179.0,0,Transient-Party,86.33,0,0,Canceled,2019-02-01 -City Hotel,0,101,2016,May,36,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,4.57,0,0,Check-Out,2018-12-03 -City Hotel,0,56,2017,August,10,5,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,248.65,0,3,Check-Out,2020-03-03 -City Hotel,0,102,2017,April,18,10,2,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.2,0,1,Check-Out,2020-03-03 -Resort Hotel,0,13,2015,October,38,22,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.55,0,0,Check-Out,2017-10-03 -Resort Hotel,0,143,2016,September,45,29,3,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,116.44,0,0,Check-Out,2019-05-04 -City Hotel,0,156,2017,August,38,11,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,119.43,0,1,Check-Out,2020-07-03 -City Hotel,0,161,2015,November,36,30,2,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient-Party,76.65,0,0,Check-Out,2018-09-02 -Resort Hotel,1,152,2017,April,17,18,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,E,A,3,No Deposit,171.0,179.0,0,Transient-Party,62.07,0,0,Canceled,2019-11-03 -City Hotel,1,408,2017,May,25,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,68.47,0,0,Canceled,2019-12-04 -City Hotel,0,1,2017,February,10,16,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,8.0,179.0,0,Contract,0.0,0,1,Check-Out,2020-04-02 -Resort Hotel,0,9,2016,February,11,30,1,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,64.83,0,0,Check-Out,2019-03-04 -City Hotel,1,114,2015,August,36,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,122.66,0,0,Canceled,2018-06-02 -Resort Hotel,0,40,2017,April,16,5,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,167.0,179.0,0,Transient-Party,80.34,0,0,Check-Out,2020-05-03 -City Hotel,0,162,2017,July,33,15,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,168.89,0,1,Check-Out,2019-06-03 -City Hotel,1,46,2017,April,15,6,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,72.35,0,0,Canceled,2019-10-04 -City Hotel,0,113,2017,May,22,27,0,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,153.21,0,0,Check-Out,2020-04-02 -Resort Hotel,0,116,2017,July,26,7,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,120.95,0,1,Check-Out,2020-05-03 -Resort Hotel,0,33,2016,October,42,9,2,2,1,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,35.74,0,0,Check-Out,2019-12-04 -City Hotel,0,63,2015,September,42,20,2,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,59.99,0,0,Check-Out,2018-08-03 -City Hotel,1,30,2016,March,16,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,143.36,0,2,Canceled,2019-02-01 -City Hotel,0,189,2016,October,51,2,0,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.06,0,1,Check-Out,2019-11-03 -City Hotel,1,191,2016,August,39,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,115.36,0,0,Canceled,2017-11-02 -City Hotel,0,2,2017,June,26,29,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,2.29,0,0,Check-Out,2019-04-03 -City Hotel,0,3,2016,June,22,6,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.19,0,1,Check-Out,2020-03-03 -City Hotel,1,0,2016,July,33,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,116.63,0,0,Canceled,2018-05-03 -Resort Hotel,0,302,2016,March,50,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,222.0,0,Transient-Party,64.69,0,0,Check-Out,2019-01-03 -City Hotel,1,41,2016,June,27,15,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,211.64,0,1,Canceled,2019-02-01 -Resort Hotel,0,125,2016,August,34,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,D,E,0,No Deposit,324.0,179.0,0,Transient,51.63,0,0,Check-Out,2019-05-04 -City Hotel,1,102,2016,April,18,5,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,93.78,0,2,Canceled,2019-01-03 -City Hotel,1,32,2016,May,23,18,1,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,A,F,0,No Deposit,15.0,172.0,0,Transient,62.36,0,0,Canceled,2019-03-04 -City Hotel,0,21,2015,October,50,27,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,248.0,0,Transient-Party,61.62,0,0,Check-Out,2018-08-03 -Resort Hotel,0,42,2016,September,42,17,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,116.33,0,2,Check-Out,2019-03-04 -City Hotel,1,150,2017,July,34,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,141.33,0,0,Canceled,2020-06-02 -Resort Hotel,0,50,2015,December,46,13,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,43.15,0,2,Check-Out,2018-06-02 -City Hotel,0,93,2015,September,43,30,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,29.11,0,0,Check-Out,2018-08-03 -Resort Hotel,1,36,2016,April,16,13,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,96.43,0,0,Canceled,2019-02-01 -Resort Hotel,0,118,2015,October,43,10,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,98.44,0,0,Check-Out,2018-08-03 -City Hotel,1,12,2016,February,3,2,2,0,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,73.01,0,0,No-Show,2018-11-02 -Resort Hotel,0,150,2016,December,43,3,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,230.81,1,2,Check-Out,2019-08-04 -Resort Hotel,1,222,2016,October,43,24,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,32.51,0,0,Canceled,2019-10-04 -City Hotel,1,13,2017,May,21,15,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,159.35,0,0,Canceled,2020-06-02 -Resort Hotel,0,299,2016,September,41,20,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,77.17,0,1,Check-Out,2020-01-04 -Resort Hotel,0,233,2015,August,35,13,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,64.0,179.0,0,Transient-Party,103.13,0,0,Canceled,2018-05-03 -Resort Hotel,0,64,2016,December,51,22,0,2,2,0.0,0,FB,GBR,Groups,Direct,0,0,0,A,E,1,No Deposit,30.0,179.0,0,Transient-Party,70.12,0,0,Check-Out,2020-01-04 -City Hotel,1,2,2016,March,12,12,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,63.91,0,0,Canceled,2018-12-03 -Resort Hotel,0,11,2016,August,40,31,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,164.44,1,0,Check-Out,2020-07-03 -Resort Hotel,1,151,2016,May,23,26,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,308.0,179.0,0,Transient,43.59,0,0,Canceled,2019-03-04 -City Hotel,0,38,2017,March,11,29,1,0,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,127.83,0,3,Check-Out,2019-12-04 -City Hotel,0,162,2017,August,23,17,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,125.9,0,3,Check-Out,2020-07-03 -City Hotel,0,1,2016,May,22,15,1,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,108.97,0,2,Check-Out,2019-03-04 -Resort Hotel,0,157,2017,June,25,31,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,130.33,1,3,Check-Out,2020-07-03 -Resort Hotel,0,62,2015,December,53,6,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,37.24,0,2,Check-Out,2018-11-02 -Resort Hotel,0,98,2015,December,51,31,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient-Party,35.4,0,0,Check-Out,2018-11-02 -City Hotel,0,34,2016,January,5,19,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,69.37,0,0,Check-Out,2018-10-03 -City Hotel,1,39,2015,October,43,21,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.04,0,0,Canceled,2018-08-03 -Resort Hotel,0,141,2016,July,30,18,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-07-04 -City Hotel,1,242,2015,September,44,25,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,95.22,0,0,Canceled,2018-09-02 -City Hotel,0,184,2016,October,43,29,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,231.0,179.0,0,Transient-Party,85.11,0,0,Check-Out,2018-09-02 -Resort Hotel,1,39,2015,July,35,9,4,10,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,D,E,0,No Deposit,244.0,179.0,0,Contract,62.11,0,0,Canceled,2017-11-02 -City Hotel,0,103,2016,February,42,6,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,78.58,0,0,Check-Out,2018-12-03 -City Hotel,0,249,2015,July,29,18,0,3,2,0.0,0,BB,,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,104.31,0,1,Check-Out,2018-05-03 -Resort Hotel,0,237,2015,October,39,18,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,D,0,No Deposit,3.0,179.0,0,Contract,44.32,0,0,Check-Out,2017-11-02 -Resort Hotel,0,99,2016,October,42,27,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient-Party,76.15,1,2,Check-Out,2019-05-04 -Resort Hotel,0,8,2015,August,32,11,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,60.69,0,1,Check-Out,2019-05-04 -Resort Hotel,0,45,2016,October,43,8,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,I,0,No Deposit,16.0,331.0,0,Transient-Party,42.29,0,0,Check-Out,2019-09-03 -Resort Hotel,0,24,2016,December,37,22,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,231.75,1,2,Check-Out,2019-03-04 -City Hotel,0,39,2017,March,9,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,82.1,0,1,Check-Out,2020-02-01 -City Hotel,0,15,2016,May,26,14,0,1,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.52,0,1,Check-Out,2019-06-03 -City Hotel,0,8,2017,April,12,13,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,70.42,0,0,Check-Out,2020-03-03 -Resort Hotel,1,16,2016,December,53,27,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,324.0,179.0,0,Transient-Party,60.51,0,0,Canceled,2019-03-04 -City Hotel,0,35,2016,April,36,6,0,2,1,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,124.02,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2015,December,10,12,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,37.67,0,0,Check-Out,2018-10-03 -City Hotel,1,5,2016,December,12,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,35.0,179.0,0,Group,69.01,0,0,Canceled,2019-09-03 -Resort Hotel,0,9,2017,February,11,27,0,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,310.0,179.0,0,Transient-Party,37.63,0,1,Check-Out,2020-02-01 -City Hotel,0,92,2016,September,36,10,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,92.78,0,0,Check-Out,2019-05-04 -Resort Hotel,0,44,2016,November,37,16,0,3,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient-Party,89.63,1,1,Check-Out,2019-08-04 -Resort Hotel,1,167,2016,May,26,27,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,71.88,0,1,Check-Out,2019-04-03 -City Hotel,1,241,2015,September,44,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,90.69,0,0,Canceled,2018-01-03 -Resort Hotel,0,140,2017,June,31,31,1,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,95.16,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2017,April,20,25,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.38,0,1,Check-Out,2020-02-01 -City Hotel,1,130,2016,June,26,20,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,98.07,0,1,No-Show,2019-03-04 -City Hotel,1,269,2017,May,23,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.25,0,0,Canceled,2020-07-03 -Resort Hotel,0,15,2017,March,44,22,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,126.3,0,3,Check-Out,2019-10-04 -City Hotel,0,91,2017,July,29,10,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.24,0,1,Check-Out,2020-06-02 -City Hotel,0,15,2015,October,46,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.55,0,2,Check-Out,2018-08-03 -City Hotel,0,14,2016,June,27,10,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,71.0,0,Transient,88.7,0,0,Check-Out,2019-05-04 -City Hotel,1,63,2017,February,10,9,2,3,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,137.36,0,3,Canceled,2019-11-03 -City Hotel,0,38,2017,April,9,15,2,5,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient-Party,138.44,0,0,Check-Out,2020-03-03 -City Hotel,0,55,2015,August,33,2,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,128.97,1,2,Check-Out,2019-04-03 -City Hotel,0,80,2015,September,32,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,87.73,0,0,Check-Out,2018-06-02 -City Hotel,1,1,2016,January,4,6,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,74.68,0,2,Canceled,2018-11-02 -City Hotel,0,45,2015,September,32,28,2,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,103.75,0,0,Check-Out,2018-06-02 -City Hotel,0,11,2016,December,51,18,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,331.0,0,Transient,102.78,0,0,Check-Out,2019-06-03 -City Hotel,0,101,2017,July,24,10,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.47,0,1,Check-Out,2020-04-02 -City Hotel,1,108,2015,December,15,30,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,204.54,0,0,Canceled,2018-11-02 -City Hotel,0,0,2016,November,51,31,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.27,0,0,Check-Out,2019-10-04 -Resort Hotel,0,157,2017,March,30,28,2,3,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,177.0,179.0,0,Transient,60.77,0,0,Check-Out,2020-06-02 -Resort Hotel,0,18,2017,May,14,6,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,132.29,0,1,Check-Out,2020-01-04 -Resort Hotel,0,106,2015,September,43,19,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,31.19,0,1,Check-Out,2019-08-04 -City Hotel,0,231,2017,July,31,7,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,102.78,0,0,Check-Out,2020-05-03 -Resort Hotel,0,21,2015,September,50,18,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,26.66,0,0,Check-Out,2018-09-02 -City Hotel,0,43,2016,August,37,10,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,97.27,0,2,Check-Out,2019-08-04 -Resort Hotel,1,19,2015,December,45,28,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,62.01,0,0,Canceled,2018-11-02 -City Hotel,0,54,2016,March,16,10,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,134.0,179.0,0,Transient-Party,74.86,0,0,Check-Out,2018-12-03 -Resort Hotel,0,196,2016,July,34,9,0,10,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,205.0,179.0,0,Transient,189.49,0,0,Check-Out,2018-05-03 -Resort Hotel,0,99,2016,August,36,25,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,107.87,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2016,November,48,20,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,D,0,No Deposit,15.0,181.0,0,Transient,93.89,0,1,Check-Out,2019-06-03 -Resort Hotel,0,26,2016,March,16,3,2,4,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,45.21,0,0,Check-Out,2019-06-03 -City Hotel,0,9,2015,October,44,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient-Party,95.09,0,0,Check-Out,2018-08-03 -City Hotel,0,37,2017,March,7,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.81,0,0,Check-Out,2020-03-03 -City Hotel,1,2,2016,January,4,29,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,64.0,0,Transient,74.53,0,1,Canceled,2018-11-02 -City Hotel,0,0,2016,June,35,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,B,0,No Deposit,11.0,179.0,0,Group,97.0,0,2,Check-Out,2019-05-04 -City Hotel,0,155,2016,September,36,9,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,129.76,1,2,Check-Out,2019-07-04 -City Hotel,0,1,2017,July,33,2,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.26,0,1,Check-Out,2020-06-02 -City Hotel,0,21,2016,February,8,5,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,61.72,0,0,Check-Out,2019-04-03 -City Hotel,1,1,2017,December,51,22,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,117.53,0,0,Canceled,2019-11-03 -City Hotel,1,167,2017,July,32,15,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,90.44,0,0,Canceled,2020-03-03 -Resort Hotel,1,299,2015,July,37,15,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,95.13,0,0,Canceled,2018-05-03 -City Hotel,0,54,2017,June,22,17,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,110.79,1,3,Check-Out,2020-06-02 -Resort Hotel,1,67,2016,July,32,5,2,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,242.14,0,0,Canceled,2019-04-03 -City Hotel,0,10,2015,September,36,16,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,100.03,0,0,Check-Out,2018-08-03 -City Hotel,0,99,2016,April,16,9,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,89.23,0,1,Check-Out,2019-02-01 -City Hotel,1,23,2016,March,8,27,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,115.56,0,0,Canceled,2019-02-01 -Resort Hotel,1,23,2016,October,40,13,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,70.98,0,0,No-Show,2019-08-04 -Resort Hotel,0,49,2016,December,53,6,2,5,2,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,C,I,1,No Deposit,243.0,179.0,0,Transient,174.37,1,3,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,June,43,10,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,C,I,1,No Deposit,12.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-04-03 -Resort Hotel,0,47,2017,March,23,26,0,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,241.0,179.0,0,Group,69.22,0,1,Check-Out,2020-02-01 -City Hotel,0,11,2017,May,21,15,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Contract,78.43,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,May,22,30,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,144.37,0,1,Check-Out,2020-03-03 -City Hotel,1,250,2016,September,44,28,2,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,82.48,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2017,April,18,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,209.62,1,0,Check-Out,2019-11-03 -Resort Hotel,1,198,2017,March,17,31,0,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,80.7,0,0,Canceled,2020-03-03 -City Hotel,0,1,2017,March,9,7,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.77,0,0,Check-Out,2020-03-03 -City Hotel,0,12,2016,June,11,18,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,119.92,0,1,Check-Out,2019-03-04 -City Hotel,0,136,2017,January,4,27,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,126.54,0,1,Check-Out,2019-10-04 -Resort Hotel,0,2,2016,March,18,28,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,132.74,0,2,Check-Out,2019-02-01 -Resort Hotel,1,49,2016,March,26,25,1,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,73.97,0,1,Canceled,2019-02-01 -City Hotel,0,134,2015,December,38,6,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient,97.55,0,0,Check-Out,2018-08-03 -Resort Hotel,0,18,2017,February,12,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,43.03,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,August,33,17,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,H,2,No Deposit,248.0,179.0,0,Transient,228.28,1,2,Check-Out,2020-06-02 -City Hotel,1,255,2016,May,28,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,63.62,0,0,Canceled,2019-02-01 -City Hotel,1,156,2016,June,25,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,41,Transient,70.93,0,0,Canceled,2018-11-02 -City Hotel,0,295,2017,October,9,15,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.8,0,1,Check-Out,2020-04-02 -Resort Hotel,0,3,2017,July,29,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-06-02 -City Hotel,1,307,2016,August,45,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.03,0,3,Canceled,2019-05-04 -Resort Hotel,1,267,2016,October,45,27,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,262.0,179.0,0,Transient,75.96,0,0,No-Show,2019-08-04 -Resort Hotel,0,16,2016,March,21,2,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,1,No Deposit,14.0,179.0,0,Transient,0.0,0,3,Check-Out,2019-08-04 -City Hotel,1,41,2015,February,17,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,68.37,0,0,Canceled,2019-02-01 -City Hotel,1,40,2016,April,22,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,25.0,179.0,0,Transient,64.68,0,0,Canceled,2019-03-04 -Resort Hotel,0,5,2017,August,29,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-06-02 -Resort Hotel,0,3,2016,January,5,2,0,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,133.8,0,1,Check-Out,2019-11-03 -Resort Hotel,0,207,2016,December,48,28,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Transient-Party,86.66,0,0,Check-Out,2019-11-03 -City Hotel,0,14,2016,December,4,21,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.81,0,1,Check-Out,2019-11-03 -City Hotel,1,34,2017,February,8,21,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,13.0,251.0,0,Transient,71.68,0,0,Canceled,2019-12-04 -City Hotel,0,14,2015,June,32,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,125.91,0,1,Check-Out,2020-05-03 -Resort Hotel,0,17,2015,September,42,21,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,44.2,0,0,Check-Out,2018-08-03 -Resort Hotel,0,123,2017,February,10,21,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,74.05,0,1,Check-Out,2020-02-01 -City Hotel,0,12,2017,March,12,27,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.41,0,1,Check-Out,2019-10-04 -City Hotel,0,40,2016,September,43,20,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,203.06,0,1,Check-Out,2019-09-03 -Resort Hotel,0,122,2017,March,27,31,1,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,C,2,Refundable,14.0,179.0,0,Transient-Party,192.7,1,0,Check-Out,2020-06-02 -Resort Hotel,0,24,2015,December,49,10,2,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,92.0,179.0,0,Transient-Party,75.01,0,0,Check-Out,2018-09-02 -City Hotel,1,42,2016,February,9,12,2,2,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,68.67,0,2,Canceled,2018-12-03 -City Hotel,1,48,2016,December,51,13,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,3,Canceled,2018-10-03 -Resort Hotel,1,15,2017,August,41,29,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,215.19,0,1,Canceled,2020-07-03 -City Hotel,1,52,2015,August,31,5,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,90.32,0,0,Canceled,2018-06-02 -City Hotel,0,18,2015,September,38,15,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,96.97,0,2,Check-Out,2018-06-02 -City Hotel,0,247,2015,September,43,13,0,2,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.35,0,0,Check-Out,2018-08-03 -Resort Hotel,1,32,2016,July,25,14,0,5,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,111.0,0,0,Canceled,2019-05-04 -City Hotel,0,266,2017,July,33,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.11,0,2,Check-Out,2020-06-02 -City Hotel,1,2,2016,March,10,21,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,1,0,B,B,1,No Deposit,8.0,179.0,0,Transient,65.77,0,1,Canceled,2019-03-04 -Resort Hotel,0,1,2017,April,17,13,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,62.8,1,1,Check-Out,2020-02-01 -Resort Hotel,0,18,2017,January,5,5,0,3,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,209.86,0,0,Check-Out,2019-11-03 -City Hotel,0,32,2017,March,18,14,2,6,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,I,2,No Deposit,11.0,179.0,0,Transient,81.36,0,1,Check-Out,2020-04-02 -Resort Hotel,0,161,2016,October,49,20,3,5,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,166.0,179.0,0,Transient,77.54,0,0,Check-Out,2019-10-04 -City Hotel,0,11,2016,October,45,21,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,123.14,0,0,Check-Out,2019-07-04 -City Hotel,1,11,2016,October,4,29,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.84,0,2,Check-Out,2019-11-03 -Resort Hotel,0,57,2016,October,43,8,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,10.0,179.0,0,Transient,75.2,1,1,Check-Out,2019-06-03 -Resort Hotel,1,163,2017,August,36,2,2,3,3,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,172.0,179.0,0,Transient-Party,188.7,0,1,Canceled,2020-06-02 -Resort Hotel,0,169,2016,September,22,28,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,251.0,179.0,0,Transient,33.65,1,0,Check-Out,2019-08-04 -City Hotel,1,273,2016,August,32,5,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,131.63,0,2,Canceled,2019-10-04 -City Hotel,0,41,2016,December,50,26,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,70.57,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2016,October,40,2,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,118.63,0,2,Check-Out,2019-04-03 -Resort Hotel,1,201,2017,May,29,19,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,120.99,0,1,Canceled,2020-03-03 -City Hotel,0,11,2016,December,50,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,230.0,0,Transient,68.33,0,0,Check-Out,2019-06-03 -Resort Hotel,0,291,2015,November,48,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,54.03,0,2,Check-Out,2018-08-03 -City Hotel,0,55,2016,July,26,5,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,60.65,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2016,June,26,17,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,14.0,54.0,0,Transient,93.2,0,0,Check-Out,2019-06-03 -City Hotel,0,89,2016,October,43,31,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,89.13,0,1,Check-Out,2019-04-03 -Resort Hotel,1,368,2017,March,17,28,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient-Party,81.31,0,0,Canceled,2019-04-03 -Resort Hotel,0,0,2015,November,42,4,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,I,1,No Deposit,12.0,179.0,0,Transient,41.02,1,0,Check-Out,2019-07-04 -City Hotel,1,100,2017,November,32,11,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,3,No Deposit,13.0,179.0,0,Transient,96.21,0,0,No-Show,2019-11-03 -City Hotel,0,84,2015,July,31,16,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,98.9,0,0,Check-Out,2018-06-02 -City Hotel,0,24,2016,June,26,3,1,3,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,124.3,0,1,Check-Out,2019-06-03 -City Hotel,1,3,2017,April,11,28,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,128.7,0,0,Canceled,2019-12-04 -City Hotel,0,43,2016,June,17,28,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,95.79,0,2,Check-Out,2019-07-04 -Resort Hotel,0,234,2016,July,32,21,0,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,128.57,0,0,Check-Out,2019-06-03 -Resort Hotel,1,0,2015,August,50,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,L,D,0,No Deposit,14.0,179.0,0,Transient,44.0,0,0,Canceled,2018-11-02 -City Hotel,1,46,2015,October,43,24,2,3,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,19,Transient,69.8,0,0,Canceled,2018-08-03 -Resort Hotel,0,55,2015,November,50,26,2,3,1,1.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient-Party,67.25,1,2,Check-Out,2018-08-03 -City Hotel,0,35,2016,January,10,22,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.12,0,1,Check-Out,2018-10-03 -Resort Hotel,0,3,2016,April,45,28,0,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,36.22,0,1,Check-Out,2019-03-04 -City Hotel,0,0,2016,October,42,31,1,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,79.95,0,0,Check-Out,2018-07-03 -Resort Hotel,0,234,2016,April,26,28,4,7,2,0.0,0,FB,ESP,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient-Party,130.35,0,0,Check-Out,2020-03-03 -City Hotel,0,292,2015,August,37,18,0,1,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,105.81,0,1,Check-Out,2018-07-03 -City Hotel,1,267,2016,July,28,20,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,86.38,0,0,Canceled,2019-04-03 -City Hotel,1,106,2016,June,26,20,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Contract,108.5,0,0,Canceled,2019-01-03 -Resort Hotel,0,21,2015,July,33,6,0,3,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,14.0,45.0,0,Group,64.58,0,0,Check-Out,2018-05-03 -City Hotel,1,62,2016,March,9,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,60.33,0,0,Canceled,2018-11-02 -City Hotel,0,266,2016,October,43,27,2,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.55,0,2,Check-Out,2019-08-04 -City Hotel,1,384,2016,August,37,23,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,167.0,179.0,0,Transient,92.88,0,0,Canceled,2017-09-02 -Resort Hotel,0,27,2016,March,9,24,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,137.0,179.0,0,Transient,61.78,0,0,Check-Out,2018-11-02 -City Hotel,0,2,2016,October,41,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,130.81,0,0,Check-Out,2019-10-04 -Resort Hotel,1,40,2015,December,53,31,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Transient,76.7,0,0,Canceled,2018-11-02 -City Hotel,1,44,2016,September,37,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.29,0,0,Canceled,2019-12-04 -City Hotel,0,50,2017,June,20,29,1,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,97.67,0,1,Check-Out,2020-02-01 -Resort Hotel,0,58,2017,April,17,13,1,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,249.0,179.0,0,Transient,250.12,0,0,Check-Out,2020-03-03 -City Hotel,0,1,2017,June,22,27,0,1,1,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,75.77,0,1,Check-Out,2020-04-02 -City Hotel,0,281,2016,July,34,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,101.8,0,1,Check-Out,2020-06-02 -City Hotel,0,2,2017,February,9,5,1,1,2,0.0,0,BB,ISR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,75.18,0,0,Check-Out,2020-01-04 -City Hotel,0,61,2016,December,51,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.28,0,1,Check-Out,2019-10-04 -City Hotel,1,0,2016,January,4,7,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,63.89,0,0,No-Show,2018-10-03 -Resort Hotel,0,21,2016,June,26,15,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,E,E,1,No Deposit,195.0,179.0,0,Transient,70.11,0,0,Check-Out,2019-06-03 -City Hotel,0,115,2016,June,26,20,0,3,3,0.0,0,BB,NLD,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,85.18,0,1,Check-Out,2019-02-01 -City Hotel,1,4,2016,July,28,20,0,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.99,0,2,No-Show,2019-03-04 -Resort Hotel,1,300,2017,June,28,19,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,11.0,179.0,0,Transient,90.77,0,1,Canceled,2020-03-03 -Resort Hotel,1,96,2016,March,20,29,0,2,3,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,225.46,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2015,October,47,27,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,58.7,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2015,June,44,28,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,108.84,1,0,Check-Out,2018-08-03 -City Hotel,0,20,2017,May,23,27,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,153.71,0,1,Check-Out,2019-05-04 -City Hotel,0,1,2016,March,11,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,64.0,0,Transient,61.54,0,0,Check-Out,2019-02-01 -Resort Hotel,0,94,2016,February,11,24,1,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,284.0,179.0,0,Transient-Party,81.2,0,0,Check-Out,2019-11-03 -City Hotel,1,161,2016,May,17,28,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,60.66,0,0,Canceled,2018-08-03 -City Hotel,0,35,2017,March,10,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.26,0,2,Check-Out,2020-02-01 -Resort Hotel,0,399,2016,October,43,8,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.55,0,1,Check-Out,2019-08-04 -City Hotel,0,29,2016,October,44,23,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,263.0,179.0,0,Transient-Party,45.78,0,0,Check-Out,2019-11-03 -City Hotel,0,101,2017,July,29,13,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,165.71,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2017,February,9,13,2,0,1,0.0,0,SC,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.69,0,0,Check-Out,2020-01-04 -Resort Hotel,0,87,2016,June,25,6,4,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,76.78,0,1,Check-Out,2019-03-04 -City Hotel,0,52,2017,February,7,21,0,1,1,0.0,0,BB,DEU,Corporate,GDS,1,0,1,D,D,0,No Deposit,35.0,77.0,0,Contract,127.58,0,0,Check-Out,2019-12-04 -City Hotel,1,113,2016,April,18,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.45,0,0,Canceled,2019-03-04 -City Hotel,1,346,2016,December,51,2,1,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,62,Transient,78.04,0,0,Canceled,2019-09-03 -Resort Hotel,1,249,2015,October,44,10,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,43.56,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,November,43,13,0,10,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,2,No Deposit,18.0,227.0,0,Transient,37.03,1,3,Check-Out,2019-07-04 -Resort Hotel,1,11,2016,February,19,24,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,F,F,0,No Deposit,15.0,179.0,0,Transient,115.24,0,0,Canceled,2019-02-01 -City Hotel,1,91,2016,January,19,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,40,Transient,95.02,0,0,Canceled,2018-11-02 -City Hotel,0,40,2017,June,36,13,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.98,0,0,Check-Out,2020-06-02 -City Hotel,0,90,2016,October,43,30,1,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,123.96,0,2,Check-Out,2019-10-04 -Resort Hotel,0,97,2015,September,35,27,2,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,100.27,0,1,Check-Out,2018-01-03 -Resort Hotel,0,16,2016,August,33,5,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,182.76,1,1,Check-Out,2019-07-04 -City Hotel,1,37,2015,September,35,21,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,72.69,0,1,Canceled,2018-08-03 -City Hotel,0,42,2017,July,34,24,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.76,0,1,Check-Out,2020-07-03 -Resort Hotel,0,85,2015,November,42,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,2,No Deposit,312.0,179.0,0,Transient-Party,39.65,0,0,Check-Out,2018-09-02 -Resort Hotel,0,43,2016,December,50,17,2,2,2,0.0,0,HB,FRA,Groups,Direct,0,0,0,A,A,2,No Deposit,86.0,179.0,41,Transient-Party,75.69,0,0,Check-Out,2018-12-03 -Resort Hotel,0,29,2016,March,15,11,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,31.02,0,1,Check-Out,2019-02-01 -City Hotel,1,47,2017,January,3,18,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,75.09,0,0,Canceled,2019-11-03 -City Hotel,1,263,2015,September,35,18,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,33.0,179.0,0,Contract,61.65,0,0,Canceled,2018-07-03 -Resort Hotel,0,1,2017,January,12,28,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,291.0,331.0,0,Transient,60.99,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2015,August,34,16,0,2,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,84.74,0,1,Check-Out,2018-07-03 -City Hotel,0,3,2017,July,10,16,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,D,0,No Deposit,12.0,179.0,0,Transient,123.4,0,1,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,January,35,28,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,131.18,1,2,Check-Out,2019-03-04 -Resort Hotel,0,49,2017,July,33,25,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,82.57,0,1,Check-Out,2020-04-02 -Resort Hotel,0,44,2015,November,50,9,2,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,118.33,0,2,Check-Out,2019-01-03 -City Hotel,1,7,2016,March,12,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,Non Refund,15.0,45.0,0,Transient,72.51,0,0,Canceled,2018-12-03 -Resort Hotel,0,218,2017,March,16,6,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,374.0,179.0,0,Transient,76.73,0,0,Check-Out,2019-11-03 -Resort Hotel,0,20,2016,December,51,20,3,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,31.08,0,0,Check-Out,2019-10-04 -Resort Hotel,0,5,2017,June,27,21,0,1,3,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,165.64,1,2,Check-Out,2020-03-03 -City Hotel,1,31,2016,July,53,15,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,78.78,0,3,Canceled,2019-01-03 -City Hotel,1,96,2016,December,53,23,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.78,0,0,Canceled,2019-10-04 -City Hotel,0,3,2017,February,10,19,0,3,1,0.0,0,BB,DEU,Corporate,Corporate,1,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,93.16,0,2,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,September,43,9,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,159.27,0,3,Check-Out,2019-05-04 -City Hotel,0,46,2017,November,36,26,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.7,0,2,Check-Out,2019-11-03 -City Hotel,1,19,2016,November,43,24,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,69.43,0,0,No-Show,2019-08-04 -Resort Hotel,1,29,2017,January,2,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,256.0,0,Transient,28.23,0,0,Canceled,2019-11-03 -City Hotel,1,40,2015,November,43,9,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,66.97,0,1,Canceled,2018-01-03 -City Hotel,1,0,2016,November,44,2,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,14.0,179.0,0,Transient,1.91,0,0,Canceled,2019-09-03 -City Hotel,0,143,2015,September,42,28,0,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,101.66,0,0,Check-Out,2018-08-03 -Resort Hotel,1,94,2017,August,36,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,3,No Deposit,173.0,179.0,0,Transient,162.28,0,1,Canceled,2020-07-03 -City Hotel,0,6,2017,June,27,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,234.0,0,Transient,120.96,0,0,Check-Out,2020-05-03 -City Hotel,0,0,2016,May,22,23,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,254.0,0,Group,2.54,0,0,Check-Out,2019-12-04 -City Hotel,0,162,2017,July,32,24,2,7,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.06,0,0,Check-Out,2020-05-03 -Resort Hotel,0,0,2015,October,51,18,0,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,38.5,0,2,Check-Out,2018-08-03 -City Hotel,0,0,2016,October,46,19,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,130.92,0,0,Check-Out,2019-09-03 -City Hotel,1,42,2016,June,23,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,77.21,0,0,Canceled,2019-02-01 -City Hotel,1,0,2017,May,21,14,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,179.0,0,Transient,2.6,0,0,Canceled,2020-06-02 -City Hotel,0,2,2017,June,28,28,0,3,2,2.0,0,BB,ESP,Direct,Direct,1,0,0,G,G,3,No Deposit,17.0,179.0,0,Transient,161.72,0,3,Check-Out,2020-06-02 -Resort Hotel,0,33,2015,September,41,9,1,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Contract,60.94,0,0,Check-Out,2018-08-03 -Resort Hotel,0,13,2016,July,31,15,3,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,181.0,179.0,0,Transient,78.62,0,1,Check-Out,2019-05-04 -City Hotel,0,34,2016,July,31,31,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,102.38,0,0,Check-Out,2019-05-04 -City Hotel,0,18,2017,July,32,30,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,131.76,0,0,Check-Out,2020-06-02 -City Hotel,0,121,2015,October,44,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,0,Transient,86.85,0,0,Check-Out,2018-12-03 -Resort Hotel,0,149,2016,September,33,15,2,10,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,237.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2018-06-02 -City Hotel,1,43,2016,October,44,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,61,Transient,84.49,0,0,Canceled,2018-08-03 -City Hotel,0,2,2017,March,8,9,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.69,0,2,Check-Out,2020-03-03 -City Hotel,1,41,2017,May,21,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.66,0,0,Canceled,2019-12-04 -Resort Hotel,1,149,2016,August,33,31,0,3,2,0.0,0,HB,NLD,Groups,TA/TO,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient,92.37,0,0,Canceled,2019-08-04 -City Hotel,0,2,2015,December,51,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,87.0,179.0,0,Transient,93.64,0,0,Check-Out,2018-09-02 -Resort Hotel,1,289,2017,June,24,26,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,169.0,179.0,0,Transient-Party,138.53,0,0,Canceled,2020-03-03 -Resort Hotel,0,11,2015,October,43,31,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,74.94,1,0,Check-Out,2018-09-02 -City Hotel,0,0,2016,October,46,15,0,1,1,0.0,0,SC,BEL,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,77.96,0,0,Canceled,2019-07-04 -Resort Hotel,1,112,2015,December,53,9,2,5,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,130.97,0,1,Canceled,2018-11-02 -City Hotel,0,6,2017,May,23,10,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.18,0,0,Check-Out,2020-05-03 -City Hotel,0,2,2016,October,45,24,1,1,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,131.4,0,0,Check-Out,2019-08-04 -Resort Hotel,0,161,2016,August,37,31,1,3,1,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient,67.92,0,0,Check-Out,2020-06-02 -City Hotel,1,105,2017,March,17,31,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,128.2,0,0,Canceled,2020-03-03 -City Hotel,0,43,2015,September,37,22,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.0,0,0,Check-Out,2018-07-03 -Resort Hotel,1,14,2016,July,34,18,0,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,Non Refund,239.0,179.0,0,Transient,139.15,0,0,Canceled,2018-12-03 -Resort Hotel,0,62,2016,August,37,27,1,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient,183.43,1,1,Check-Out,2019-05-04 -City Hotel,1,10,2016,January,2,2,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,66.82,0,2,Canceled,2018-11-02 -Resort Hotel,0,47,2015,September,43,5,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,91.9,0,2,Check-Out,2018-08-03 -Resort Hotel,0,87,2015,October,42,28,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Contract,121.54,1,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2017,January,4,23,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,0.48,1,1,Check-Out,2020-03-03 -City Hotel,1,46,2016,May,22,6,1,2,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.12,0,1,Canceled,2019-01-03 -City Hotel,1,44,2016,April,17,30,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,86.0,179.0,0,Transient,119.68,0,0,Canceled,2019-01-03 -Resort Hotel,0,1,2016,September,41,31,1,0,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,I,0,No Deposit,11.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-09-03 -Resort Hotel,0,101,2017,May,20,21,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,150.5,0,2,Check-Out,2020-03-03 -City Hotel,0,13,2015,December,53,10,0,3,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,110.34,0,0,Check-Out,2018-11-02 -Resort Hotel,0,21,2015,December,50,27,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,61.57,0,0,Check-Out,2018-09-02 -City Hotel,1,21,2017,August,38,28,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Non Refund,9.0,179.0,0,Transient,202.08,0,0,Canceled,2019-11-03 -City Hotel,0,55,2017,March,15,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,80.21,0,2,Check-Out,2019-02-01 -City Hotel,0,12,2017,June,27,5,2,1,2,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,168.0,0,Transient,106.41,0,0,Check-Out,2020-05-03 -City Hotel,1,153,2016,May,27,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,40,Transient,94.0,0,0,Canceled,2018-12-03 -City Hotel,0,12,2016,July,32,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-06-03 -Resort Hotel,1,191,2015,August,34,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,60.75,0,0,No-Show,2018-07-03 -Resort Hotel,0,17,2015,December,51,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,324.0,179.0,0,Transient,60.68,0,0,Check-Out,2018-09-02 -Resort Hotel,0,3,2016,August,37,9,0,4,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,161.92,0,1,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,March,13,14,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,77.38,0,0,Check-Out,2019-02-01 -Resort Hotel,0,50,2015,December,53,31,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,46.42,0,2,Check-Out,2018-11-02 -City Hotel,0,103,2016,July,26,20,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,81.59,0,3,Check-Out,2019-05-04 -Resort Hotel,1,91,2016,December,32,21,2,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,313.0,179.0,0,Transient,77.95,0,0,Canceled,2019-10-04 -City Hotel,1,13,2016,May,50,12,1,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,73.46,0,0,Canceled,2019-10-04 -Resort Hotel,0,27,2016,November,44,21,0,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,140.08,0,2,Check-Out,2019-08-04 -Resort Hotel,0,158,2016,July,32,8,0,7,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,194.0,179.0,0,Transient,103.12,0,0,Check-Out,2019-04-03 -City Hotel,0,46,2017,May,21,16,1,4,2,0.0,0,HB,BEL,Direct,TA/TO,0,0,0,E,F,2,No Deposit,12.0,179.0,0,Transient-Party,120.59,0,2,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,May,20,8,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,120.34,0,0,Check-Out,2019-03-04 -City Hotel,0,101,2016,March,36,24,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.04,0,2,Check-Out,2019-06-03 -City Hotel,0,153,2016,April,30,5,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,120.95,0,0,Check-Out,2019-03-04 -City Hotel,1,244,2016,February,13,27,2,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Contract,60.99,0,1,Canceled,2018-12-03 -Resort Hotel,0,170,2017,August,37,21,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,208.95,1,1,Check-Out,2020-04-02 -Resort Hotel,0,102,2016,May,23,9,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,244.0,179.0,0,Transient,106.5,0,0,Check-Out,2019-04-03 -City Hotel,0,132,2016,January,5,30,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,130.38,0,1,Check-Out,2019-02-01 -City Hotel,1,144,2016,July,36,20,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,237.0,179.0,0,Transient,177.88,0,0,Canceled,2019-06-03 -City Hotel,1,39,2016,March,16,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,38.43,0,0,Canceled,2019-03-04 -Resort Hotel,0,20,2016,February,10,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,39.56,0,1,Check-Out,2018-12-03 -City Hotel,0,0,2016,August,49,10,0,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Group,2.86,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,January,11,6,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,83.58,0,1,Check-Out,2019-05-04 -City Hotel,1,222,2016,September,39,31,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.75,0,0,Canceled,2019-07-04 -City Hotel,1,202,2016,September,37,18,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,30.0,179.0,0,Transient,94.89,0,0,Canceled,2018-07-03 -Resort Hotel,0,0,2017,March,11,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,16.0,246.0,0,Transient,43.12,0,0,Check-Out,2020-03-03 -City Hotel,1,43,2017,June,29,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,6.0,179.0,0,Transient,127.76,0,0,Canceled,2020-06-02 -Resort Hotel,0,1,2015,December,53,6,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,37.82,0,1,Check-Out,2018-08-03 -City Hotel,1,140,2016,August,38,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,83.09,0,0,Canceled,2019-06-03 -Resort Hotel,1,125,2017,March,17,6,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,148.0,179.0,0,Transient,143.64,0,0,Canceled,2020-02-01 -City Hotel,0,4,2016,October,45,28,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,96.58,0,0,Check-Out,2018-08-03 -Resort Hotel,1,307,2016,June,26,30,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,75.0,179.0,0,Transient,107.39,0,1,Canceled,2019-01-03 -City Hotel,0,3,2016,August,34,14,1,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,18.0,179.0,0,Transient,1.6,1,0,Check-Out,2019-02-01 -City Hotel,0,17,2017,July,28,9,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.33,0,0,Check-Out,2019-05-04 -Resort Hotel,0,46,2016,September,35,9,2,6,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,251.0,179.0,0,Transient,202.8,1,0,Check-Out,2018-07-03 -City Hotel,1,0,2015,August,35,12,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,0.0,0,1,Canceled,2018-07-03 -Resort Hotel,0,164,2017,August,35,25,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,193.0,179.0,0,Transient,190.56,0,1,Check-Out,2020-06-02 -City Hotel,0,32,2016,September,41,20,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,84.72,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2015,October,43,22,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,37.0,179.0,0,Contract,38.62,0,0,Check-Out,2018-08-03 -Resort Hotel,0,11,2017,August,2,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,121.11,1,3,Check-Out,2020-06-02 -City Hotel,0,101,2016,February,23,28,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,74.69,0,0,Check-Out,2019-06-03 -City Hotel,0,41,2016,December,53,24,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,129.51,0,1,Check-Out,2019-11-03 -Resort Hotel,1,12,2015,December,53,25,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,38.11,0,0,Canceled,2018-08-03 -Resort Hotel,1,10,2017,August,36,21,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,146.11,0,0,Canceled,2019-02-01 -City Hotel,1,163,2016,April,15,20,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,B,F,1,Non Refund,33.0,179.0,0,Transient,112.73,0,0,Canceled,2019-11-03 -City Hotel,0,240,2015,October,30,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,75.61,0,0,Check-Out,2018-08-03 -City Hotel,1,43,2016,May,35,26,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,171.35,1,0,Canceled,2018-11-02 -City Hotel,0,40,2015,December,49,10,0,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,66.01,0,0,Check-Out,2018-08-03 -City Hotel,0,13,2017,May,20,30,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,126.12,0,2,Check-Out,2020-04-02 -Resort Hotel,0,64,2015,October,43,31,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,244.0,179.0,0,Group,41.15,0,1,Check-Out,2018-08-03 -City Hotel,0,12,2016,September,45,13,1,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,87.79,0,0,Check-Out,2019-05-04 -City Hotel,0,110,2017,August,32,27,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,26.0,179.0,0,Transient,219.45,0,0,Check-Out,2020-06-02 -City Hotel,0,0,2015,August,45,11,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.59,0,3,Check-Out,2018-08-03 -Resort Hotel,0,36,2015,February,50,2,0,2,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,62.86,0,0,Check-Out,2018-11-02 -City Hotel,0,244,2016,March,28,16,0,1,1,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,60.99,0,0,Check-Out,2019-03-04 -Resort Hotel,1,295,2016,May,42,5,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,77.11,0,0,Canceled,2019-04-03 -City Hotel,0,267,2016,May,13,13,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,93.25,0,1,Check-Out,2019-02-01 -City Hotel,0,37,2017,May,23,16,0,1,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.42,0,1,Check-Out,2020-07-03 -Resort Hotel,0,259,2015,July,33,8,2,6,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient-Party,46.08,0,0,Check-Out,2018-07-03 -City Hotel,1,98,2015,August,36,24,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,78.77,0,0,Canceled,2018-11-02 -City Hotel,1,252,2016,February,10,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,93.18,0,0,Canceled,2018-11-02 -Resort Hotel,0,0,2016,March,31,11,1,2,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,106.07,0,0,Check-Out,2019-12-04 -City Hotel,1,147,2015,December,53,21,2,4,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,85.16,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2015,August,34,13,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,2,No Deposit,14.0,179.0,0,Transient,216.55,0,0,Check-Out,2020-06-02 -City Hotel,1,3,2017,August,36,21,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.09,0,0,Canceled,2020-07-03 -City Hotel,1,59,2016,January,17,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,84.0,0,Transient,67.89,0,0,Canceled,2018-11-02 -City Hotel,0,40,2016,March,12,28,0,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,79.63,0,3,Check-Out,2019-05-04 -City Hotel,0,56,2017,April,17,16,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,192.61,0,1,Check-Out,2020-04-02 -Resort Hotel,0,2,2015,October,41,9,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,242.0,179.0,0,Group,76.42,0,1,Check-Out,2018-08-03 -Resort Hotel,0,290,2016,July,33,24,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,170.27,0,2,Check-Out,2019-05-04 -City Hotel,0,47,2016,March,46,9,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,115.2,0,2,Check-Out,2019-03-04 -Resort Hotel,0,40,2017,May,10,23,0,2,3,0.0,0,BB,PRT,Complementary,Direct,1,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,220.97,1,0,Check-Out,2019-03-04 -City Hotel,1,161,2017,June,24,20,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,150.12,0,1,Canceled,2020-03-03 -City Hotel,0,98,2016,October,37,13,2,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,111.45,0,1,Check-Out,2019-06-03 -City Hotel,1,361,2015,September,35,25,1,2,2,0.0,0,BB,PRT,Groups,Undefined,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,101.09,0,0,Canceled,2018-06-02 -Resort Hotel,1,18,2016,August,37,12,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,58.97,0,0,No-Show,2020-07-03 -City Hotel,0,90,2016,April,18,5,2,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,1,No Deposit,320.0,179.0,0,Transient-Party,62.88,0,0,Check-Out,2019-02-01 -City Hotel,1,279,2017,August,27,15,0,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,108.91,0,0,Canceled,2020-06-02 -City Hotel,0,0,2016,August,40,24,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,144.67,0,1,Check-Out,2018-06-02 -Resort Hotel,1,158,2017,August,19,16,2,5,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,66.0,179.0,0,Transient,145.31,0,0,Check-Out,2020-06-02 -City Hotel,0,306,2017,July,33,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.43,0,1,Check-Out,2020-06-02 -City Hotel,1,13,2017,August,38,24,2,2,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,194.38,0,3,Canceled,2020-07-03 -Resort Hotel,0,92,2017,February,9,28,2,5,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,71.95,0,0,Check-Out,2020-04-02 -City Hotel,0,23,2016,July,24,9,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.53,0,1,Check-Out,2019-04-03 -City Hotel,1,2,2016,February,10,10,2,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,73.15,0,0,Canceled,2018-12-03 -City Hotel,0,95,2015,August,34,27,2,5,2,0.0,0,HB,CHE,Direct,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,98.29,0,0,Check-Out,2018-06-02 -City Hotel,0,4,2017,June,25,27,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,77.64,0,0,Check-Out,2020-07-03 -City Hotel,1,90,2016,June,27,22,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.97,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2017,May,20,5,2,4,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,3,No Deposit,17.0,179.0,0,Transient,226.88,1,1,Check-Out,2020-03-03 -Resort Hotel,0,4,2015,October,43,25,2,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,126.15,1,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,February,17,6,0,4,2,0.0,0,BB,ESP,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,40.61,1,0,Check-Out,2019-02-01 -City Hotel,1,283,2015,July,27,12,4,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Contract,130.85,0,0,Canceled,2017-09-02 -City Hotel,0,129,2015,August,37,28,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,72.86,0,0,Check-Out,2018-08-03 -Resort Hotel,1,41,2017,February,11,25,2,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,343.0,179.0,0,Transient,0.43,0,0,Canceled,2020-04-02 -Resort Hotel,0,8,2016,April,18,6,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,112.85,0,1,Check-Out,2020-03-03 -City Hotel,0,10,2015,July,36,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,141.91,0,1,Check-Out,2018-05-03 -Resort Hotel,0,207,2017,July,26,11,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,140.0,179.0,0,Contract,71.83,0,2,Check-Out,2020-02-01 -Resort Hotel,0,24,2017,June,32,10,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,0,No Deposit,15.0,179.0,75,Transient-Party,75.09,1,1,Check-Out,2020-05-03 -Resort Hotel,0,8,2016,February,10,27,0,2,2,0.0,0,BB,,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,239.0,179.0,0,Group,81.99,0,0,Check-Out,2018-11-02 -Resort Hotel,0,0,2015,November,36,31,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,250.0,179.0,0,Transient,187.62,1,0,Check-Out,2018-06-02 -Resort Hotel,0,138,2015,October,45,25,0,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,62.17,0,0,Check-Out,2018-09-02 -City Hotel,0,9,2017,January,4,2,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.71,0,2,Canceled,2019-11-03 -City Hotel,0,87,2016,December,50,25,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,105.3,0,1,Check-Out,2018-12-03 -City Hotel,0,0,2016,March,12,15,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,1,No Deposit,16.0,46.0,0,Transient,0.0,1,0,Check-Out,2019-02-01 -Resort Hotel,0,271,2017,December,33,28,1,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,80.62,0,3,Check-Out,2019-11-03 -City Hotel,0,16,2015,August,37,21,1,2,2,0.0,0,SC,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.24,0,0,Check-Out,2019-05-04 -City Hotel,1,10,2016,April,18,20,2,1,3,1.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,121.43,0,0,Canceled,2019-03-04 -Resort Hotel,0,295,2015,July,31,10,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,141.0,179.0,0,Contract,41.76,0,0,Check-Out,2018-08-03 -Resort Hotel,0,5,2016,January,4,21,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,34.11,0,1,Check-Out,2018-10-03 -City Hotel,1,91,2017,August,38,28,2,1,3,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,143.19,0,0,Canceled,2019-11-03 -City Hotel,0,34,2016,September,42,28,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,63.11,0,0,Check-Out,2018-09-02 -Resort Hotel,0,2,2017,February,15,14,2,1,3,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.08,0,3,Check-Out,2020-05-03 -City Hotel,0,110,2015,July,44,16,2,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,114.26,0,0,Check-Out,2018-08-03 -Resort Hotel,0,36,2017,May,22,13,1,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,86.96,0,2,Check-Out,2020-05-03 -City Hotel,0,14,2017,February,9,9,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,234.0,0,Transient,61.45,0,1,Check-Out,2020-02-01 -Resort Hotel,0,0,2017,March,11,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,31.4,1,2,Check-Out,2019-12-04 -City Hotel,0,12,2017,May,26,27,2,1,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient-Party,88.14,0,2,Check-Out,2020-04-02 -City Hotel,0,88,2016,June,23,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,112.42,0,0,Check-Out,2019-03-04 -City Hotel,0,269,2016,September,36,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,91.69,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,January,2,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,86.0,0,Transient,40.07,1,0,Check-Out,2019-10-04 -Resort Hotel,1,193,2016,October,44,18,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,140.43,0,2,Canceled,2019-04-03 -City Hotel,1,202,2017,June,20,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,104.38,0,0,Canceled,2019-10-04 -City Hotel,1,406,2016,May,45,28,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,62.4,0,0,Canceled,2019-12-04 -City Hotel,0,102,2016,March,8,28,0,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,69.55,0,1,Check-Out,2018-11-02 -City Hotel,1,397,2015,October,44,24,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.65,0,0,Canceled,2018-08-03 -Resort Hotel,0,200,2015,March,41,12,1,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,60.58,1,1,Check-Out,2018-05-03 -Resort Hotel,1,165,2016,October,43,24,1,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,64.3,0,0,Canceled,2019-08-04 -Resort Hotel,0,1,2015,September,43,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,118.56,1,0,Check-Out,2018-08-03 -Resort Hotel,1,122,2017,February,8,15,1,2,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient,99.33,0,0,Canceled,2020-03-03 -City Hotel,0,0,2016,May,21,29,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,94.03,0,2,Check-Out,2019-03-04 -City Hotel,0,10,2016,January,10,10,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,79.43,0,1,Check-Out,2019-10-04 -Resort Hotel,0,7,2016,October,50,9,0,2,1,0.0,0,BB,POL,Corporate,Corporate,0,0,0,A,E,3,No Deposit,39.0,227.0,0,Transient-Party,67.97,0,0,Check-Out,2019-12-04 -Resort Hotel,0,50,2015,December,52,20,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,153.09,0,2,Check-Out,2018-08-03 -Resort Hotel,0,12,2017,May,25,30,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,146.18,1,1,Check-Out,2020-02-01 -Resort Hotel,0,40,2016,December,50,2,0,1,2,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,D,0,No Deposit,272.0,179.0,0,Transient,43.89,0,0,Check-Out,2019-11-03 -City Hotel,1,111,2016,March,11,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,9.0,179.0,0,Transient,71.76,0,0,Canceled,2018-11-02 -City Hotel,0,0,2017,April,19,30,0,2,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,A,1,No Deposit,12.0,192.0,0,Transient,72.01,0,0,Check-Out,2020-03-03 -Resort Hotel,0,14,2016,June,36,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,41.85,1,1,Check-Out,2019-07-04 -City Hotel,1,308,2017,June,35,27,1,1,2,0.0,0,SC,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,114.57,0,0,Canceled,2020-05-03 -City Hotel,0,2,2015,October,8,13,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,95.0,179.0,0,Contract,32.78,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2017,August,38,24,3,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,122.14,0,1,Check-Out,2020-07-03 -City Hotel,0,0,2015,November,43,2,0,1,1,0.0,0,BB,GBR,Complementary,Corporate,1,0,0,A,B,0,No Deposit,15.0,45.0,0,Transient,0.0,1,0,Check-Out,2018-08-03 -Resort Hotel,1,53,2017,April,16,10,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,137.02,0,0,Canceled,2020-01-04 -City Hotel,0,40,2017,February,12,9,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,77.57,0,0,Check-Out,2020-01-04 -Resort Hotel,0,34,2016,March,7,2,1,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,77.07,0,1,Check-Out,2018-12-03 -City Hotel,0,16,2016,August,20,14,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.33,0,0,Check-Out,2019-05-04 -City Hotel,0,294,2016,September,35,27,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.16,0,0,Check-Out,2019-02-01 -City Hotel,1,258,2015,July,32,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,89.41,0,0,Canceled,2018-06-02 -Resort Hotel,0,106,2017,February,11,25,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,93.59,0,0,Check-Out,2020-03-03 -Resort Hotel,0,86,2017,February,10,16,2,5,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,99.67,0,0,Check-Out,2019-11-03 -City Hotel,1,102,2016,March,17,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,0,Transient,76.25,0,0,Canceled,2019-02-01 -Resort Hotel,0,103,2016,September,44,31,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,61,Transient,97.83,0,0,Check-Out,2019-09-03 -Resort Hotel,0,44,2016,April,21,24,2,0,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,87.73,0,1,Check-Out,2019-05-04 -Resort Hotel,1,9,2015,December,51,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,61.36,0,0,Canceled,2018-11-02 -Resort Hotel,1,256,2016,July,37,30,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,E,E,0,No Deposit,242.0,179.0,0,Transient,63.02,0,0,Canceled,2018-08-03 -City Hotel,0,19,2016,May,42,8,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.98,0,1,Check-Out,2019-06-03 -City Hotel,0,135,2016,September,42,10,2,4,1,0.0,0,SC,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.5,0,3,Check-Out,2019-08-04 -Resort Hotel,0,195,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,32.0,179.0,75,Transient-Party,71.01,0,0,Check-Out,2019-02-01 -City Hotel,1,146,2016,May,19,20,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,77.1,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2017,January,3,23,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,62.63,0,2,Check-Out,2019-11-03 -City Hotel,0,23,2016,August,35,30,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,140.02,0,1,Check-Out,2019-06-03 -City Hotel,1,101,2015,October,43,25,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,59.18,0,0,Canceled,2018-08-03 -Resort Hotel,0,1,2015,July,36,5,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,16.0,179.0,0,Transient,155.94,0,0,Check-Out,2018-05-03 -Resort Hotel,0,0,2016,September,34,6,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,D,0,No Deposit,18.0,179.0,0,Transient,0.0,1,0,Check-Out,2018-09-02 -City Hotel,0,12,2015,July,29,8,0,2,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,114.43,0,0,Check-Out,2018-06-02 -Resort Hotel,0,21,2015,October,42,18,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,143.78,0,3,Check-Out,2018-08-03 -Resort Hotel,0,241,2016,June,26,14,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,73.0,179.0,0,Contract,101.49,0,1,Check-Out,2018-12-03 -City Hotel,1,4,2017,August,21,16,0,5,2,0.0,0,BB,NOR,Direct,Direct,1,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,105.11,0,1,No-Show,2020-04-02 -Resort Hotel,0,0,2016,January,10,30,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,62.51,1,1,Check-Out,2018-09-02 -City Hotel,1,103,2016,February,9,5,2,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,F,B,0,No Deposit,14.0,179.0,63,Transient,101.54,0,0,Canceled,2018-10-03 -Resort Hotel,1,37,2016,September,33,5,4,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,87.0,179.0,0,Transient,122.65,0,0,Canceled,2019-04-03 -City Hotel,1,304,2015,October,45,20,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,85.6,0,0,Canceled,2018-09-02 -City Hotel,1,426,2015,September,43,5,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.82,0,0,Canceled,2018-08-03 -City Hotel,0,147,2017,April,17,10,0,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,F,1,No Deposit,378.0,179.0,0,Transient-Party,36.3,0,0,Check-Out,2019-10-04 -City Hotel,0,16,2015,October,44,2,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,77.42,0,0,Check-Out,2018-08-03 -Resort Hotel,0,38,2017,January,9,15,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,90.2,0,3,Check-Out,2020-03-03 -City Hotel,1,80,2015,July,33,18,2,5,2,0.0,0,BB,PRT,Direct,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.48,0,0,No-Show,2018-06-02 -Resort Hotel,0,358,2017,May,19,4,1,4,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,71.74,0,0,Check-Out,2020-04-02 -City Hotel,1,0,2016,January,4,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,57.75,0,0,No-Show,2018-10-03 -City Hotel,0,37,2016,March,35,17,2,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.3,0,2,Check-Out,2019-03-04 -City Hotel,0,61,2016,June,27,9,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,122.97,0,1,Check-Out,2019-02-01 -City Hotel,0,15,2016,October,44,28,0,1,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,100.59,0,0,Check-Out,2019-06-03 -Resort Hotel,1,107,2016,July,27,16,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,243.0,179.0,0,Transient,44.78,0,1,No-Show,2019-04-03 -Resort Hotel,0,116,2016,July,33,27,2,10,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,243.48,1,1,Check-Out,2019-03-04 -City Hotel,0,223,2017,December,53,13,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,130.4,0,1,Check-Out,2019-11-03 -Resort Hotel,0,20,2015,November,51,27,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,59,Transient-Party,63.52,0,0,Check-Out,2018-12-03 -Resort Hotel,1,106,2016,November,53,15,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,106.17,0,3,Canceled,2019-03-04 -Resort Hotel,0,314,2017,August,35,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,60.33,0,1,Check-Out,2018-08-03 -Resort Hotel,0,8,2015,December,52,5,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,C,1,No Deposit,82.0,179.0,0,Transient-Party,79.76,0,0,Check-Out,2018-12-03 -City Hotel,1,316,2017,May,21,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,156.07,0,0,Canceled,2018-08-03 -City Hotel,1,41,2017,April,18,22,2,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient-Party,106.89,0,0,Canceled,2019-09-03 -City Hotel,0,292,2015,July,34,12,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,62.85,0,1,Check-Out,2020-06-02 -Resort Hotel,1,106,2016,April,17,10,4,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,Refundable,326.0,179.0,0,Transient,60.07,0,0,Canceled,2019-02-01 -Resort Hotel,0,10,2016,June,28,16,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,59.0,0,Transient,27.72,0,0,Check-Out,2019-06-03 -City Hotel,0,93,2016,August,37,12,2,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Transient,181.3,0,1,Check-Out,2019-06-03 -Resort Hotel,0,6,2016,March,9,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,14.0,69.0,0,Transient-Party,47.71,1,0,Check-Out,2019-11-03 -Resort Hotel,0,50,2016,May,17,21,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,144.37,0,3,Check-Out,2019-03-04 -Resort Hotel,1,348,2015,August,35,28,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,A,A,0,No Deposit,299.0,179.0,0,Group,65.59,0,0,Canceled,2019-11-03 -City Hotel,1,126,2016,May,35,24,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,30.0,179.0,0,Transient,79.1,0,0,Check-Out,2018-12-03 -Resort Hotel,1,26,2016,April,17,29,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,283.0,179.0,0,Transient,37.16,0,0,Canceled,2019-10-04 -Resort Hotel,0,205,2016,May,23,31,1,3,1,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,221.0,0,Transient-Party,117.27,0,0,Check-Out,2019-02-01 -City Hotel,0,17,2017,March,10,17,0,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,115.76,0,0,Check-Out,2019-12-04 -City Hotel,1,59,2017,March,16,28,2,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,143.18,0,0,Canceled,2020-01-04 -City Hotel,1,15,2016,October,43,6,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,11.0,179.0,0,Transient,125.14,0,0,Canceled,2019-10-04 -City Hotel,1,252,2016,October,43,13,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,149.57,0,0,Canceled,2019-08-04 -City Hotel,0,36,2016,August,37,20,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient-Party,123.36,0,1,Check-Out,2020-01-04 -Resort Hotel,0,149,2016,March,10,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,15.0,223.0,0,Transient-Party,62.26,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,October,41,21,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,H,1,No Deposit,14.0,45.0,0,Transient-Party,0.0,0,0,Check-Out,2018-09-02 -City Hotel,0,9,2017,March,18,28,0,1,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,11.0,179.0,0,Transient,131.33,0,0,Check-Out,2019-12-04 -City Hotel,0,56,2016,August,37,18,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,141.25,0,2,Check-Out,2019-06-03 -Resort Hotel,1,127,2017,April,16,17,2,2,1,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,72.44,0,0,Canceled,2020-03-03 -Resort Hotel,1,53,2017,July,25,18,1,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,252.0,0,2,Canceled,2020-02-01 -City Hotel,0,47,2016,July,37,9,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,85.12,0,1,Check-Out,2019-06-03 -City Hotel,0,35,2017,March,16,27,2,0,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,331.0,0,Transient-Party,88.69,0,0,Check-Out,2020-04-02 -City Hotel,0,36,2016,February,10,18,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,68.04,0,1,Check-Out,2019-12-04 -Resort Hotel,0,43,2016,August,35,28,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,210.95,0,1,Check-Out,2019-06-03 -Resort Hotel,0,148,2016,March,16,31,1,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,219.0,75,Transient-Party,96.51,0,0,Canceled,2019-02-01 -City Hotel,0,202,2015,August,36,18,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,65.31,0,0,Check-Out,2018-08-03 -City Hotel,0,111,2016,October,44,24,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,118.8,0,0,Check-Out,2019-08-04 -Resort Hotel,1,2,2016,February,17,12,0,1,3,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,30.61,0,0,Canceled,2019-03-04 -Resort Hotel,0,271,2017,July,26,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,121.67,0,1,Check-Out,2020-06-02 -City Hotel,0,15,2016,June,26,20,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,94.82,0,0,Check-Out,2019-03-04 -City Hotel,1,98,2016,February,11,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,78.14,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,August,35,27,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,31.0,179.0,0,Transient-Party,66.76,0,0,Check-Out,2018-12-03 -City Hotel,0,148,2016,May,22,5,2,2,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,63.09,0,0,Check-Out,2018-12-03 -City Hotel,1,43,2017,January,4,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,33.0,179.0,0,Transient-Party,69.4,0,0,Canceled,2019-09-03 -Resort Hotel,0,0,2017,August,38,6,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,244.0,179.0,0,Transient,200.97,1,2,Check-Out,2020-07-03 -City Hotel,1,161,2016,October,44,24,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,126.3,0,1,Canceled,2019-05-04 -Resort Hotel,0,272,2017,July,22,9,2,5,2,0.0,0,Undefined,,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,236.33,0,0,Check-Out,2020-03-03 -City Hotel,1,15,2016,October,36,17,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient,148.11,0,0,Check-Out,2018-08-03 -City Hotel,1,142,2016,March,16,19,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,76.91,0,0,Canceled,2019-01-03 -City Hotel,0,60,2015,October,44,13,1,3,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,13.0,76.0,0,Transient-Party,92.2,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2016,June,17,21,2,4,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,63.4,0,0,Check-Out,2019-02-01 -Resort Hotel,0,212,2016,November,37,21,2,5,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,D,1,No Deposit,87.0,179.0,0,Transient-Party,59.88,0,0,Check-Out,2019-09-03 -City Hotel,1,113,2017,January,3,16,2,5,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,218.58,0,2,Canceled,2019-10-04 -City Hotel,1,3,2016,February,8,5,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,99.95,0,0,Canceled,2018-11-02 -City Hotel,0,63,2017,July,30,28,2,5,2,2.0,0,BB,GBR,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,167.98,0,2,Check-Out,2020-02-01 -City Hotel,1,177,2017,July,32,25,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,185.0,179.0,0,Transient,163.3,0,0,Canceled,2020-06-02 -City Hotel,1,23,2016,June,21,23,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,105.18,0,1,Canceled,2019-01-03 -Resort Hotel,0,57,2017,June,4,6,4,3,1,0.0,0,BB,BRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,95.69,0,1,Check-Out,2020-03-03 -City Hotel,0,31,2016,December,43,2,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,9.0,179.0,0,Transient,76.62,0,3,Check-Out,2019-11-03 -Resort Hotel,0,157,2016,March,15,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,222.0,0,Transient-Party,62.84,0,0,Check-Out,2019-03-04 -City Hotel,0,2,2016,November,45,21,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,331.0,0,Transient,98.42,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2016,October,44,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,78.63,0,2,Canceled,2019-07-04 -Resort Hotel,0,29,2016,October,43,9,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,154.31,0,0,Check-Out,2019-05-04 -Resort Hotel,0,2,2016,May,10,13,1,0,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,326.0,179.0,0,Transient,35.77,0,0,Check-Out,2019-07-04 -Resort Hotel,0,5,2016,June,28,27,0,2,1,0.0,0,BB,ESP,Online TA,Corporate,1,0,0,E,E,0,No Deposit,13.0,331.0,0,Transient,120.8,0,0,Check-Out,2020-03-03 -City Hotel,1,201,2017,July,35,20,0,4,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient-Party,217.88,0,0,Canceled,2020-06-02 -City Hotel,1,17,2015,September,44,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,72.24,0,0,Canceled,2018-07-03 -Resort Hotel,1,163,2017,August,39,21,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Canceled,2020-06-02 -Resort Hotel,0,207,2016,August,37,27,0,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,131.62,0,0,Check-Out,2019-06-03 -Resort Hotel,1,10,2016,September,44,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,263.0,179.0,0,Transient,43.85,0,0,Canceled,2019-08-04 -City Hotel,1,0,2015,February,9,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,93.53,0,0,Canceled,2019-01-03 -City Hotel,1,166,2017,March,15,6,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,128.28,0,0,Canceled,2020-03-03 -City Hotel,0,54,2015,September,26,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,100.63,0,0,Check-Out,2019-06-03 -City Hotel,0,179,2016,January,50,5,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,180.44,0,3,Check-Out,2019-10-04 -Resort Hotel,0,142,2016,March,10,16,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,Refundable,15.0,222.0,0,Transient-Party,69.79,0,0,Check-Out,2019-03-04 -Resort Hotel,0,129,2017,March,18,30,1,5,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,1,No Deposit,315.0,179.0,0,Transient-Party,60.04,0,0,Check-Out,2019-12-04 -Resort Hotel,1,156,2016,July,33,9,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,Non Refund,17.0,179.0,0,Transient,145.09,0,0,Canceled,2019-02-01 -City Hotel,1,43,2016,March,10,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,11.0,179.0,0,Transient,177.96,0,0,Canceled,2019-11-03 -City Hotel,0,86,2016,July,31,5,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,B,0,No Deposit,14.0,179.0,0,Transient,165.57,0,2,Check-Out,2019-02-01 -City Hotel,0,141,2016,May,10,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,74.0,179.0,0,Transient,61.08,0,0,Check-Out,2018-11-02 -City Hotel,0,38,2017,February,9,22,0,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,123.5,1,1,Check-Out,2020-02-01 -City Hotel,1,88,2016,July,32,2,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,76.42,0,1,Canceled,2019-04-03 -City Hotel,1,0,2016,November,50,9,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,280.0,0,Transient,2.35,0,0,Canceled,2019-09-03 -City Hotel,0,107,2017,May,22,16,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,216.1,1,1,Check-Out,2020-03-03 -Resort Hotel,0,31,2017,June,27,4,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,2,No Deposit,16.0,54.0,0,Transient-Party,48.58,0,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,February,8,5,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,66.58,0,1,Check-Out,2019-01-03 -City Hotel,1,283,2016,June,29,16,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,120.0,179.0,0,Transient,94.06,0,0,No-Show,2019-05-04 -City Hotel,0,55,2015,July,32,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,77.81,0,0,Check-Out,2018-05-03 -City Hotel,1,18,2015,August,36,30,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.95,0,0,Canceled,2018-06-02 -Resort Hotel,0,10,2015,December,49,25,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,36.0,179.0,0,Transient-Party,60.38,1,0,Check-Out,2018-06-02 -Resort Hotel,0,9,2016,February,11,9,2,5,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,98.0,331.0,0,Transient-Party,73.64,0,0,Check-Out,2019-03-04 -Resort Hotel,0,1,2017,February,11,10,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,248.0,179.0,0,Transient,50.12,0,0,Check-Out,2020-01-04 -City Hotel,1,8,2016,February,11,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,70.15,0,0,Canceled,2019-02-01 -City Hotel,0,0,2015,August,38,26,2,0,1,0.0,0,BB,,Direct,Undefined,0,0,0,B,B,0,No Deposit,19.0,179.0,0,Transient-Party,71.7,0,1,Check-Out,2018-07-03 -City Hotel,1,41,2017,March,22,27,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,63,Transient,117.17,0,0,Canceled,2018-11-02 -Resort Hotel,0,1,2016,January,5,11,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,73.23,0,0,Check-Out,2018-12-03 -City Hotel,1,18,2016,June,26,12,0,2,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,78.87,0,0,Canceled,2019-02-01 -City Hotel,1,83,2016,February,3,22,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,80.0,179.0,18,Transient-Party,74.84,0,0,Canceled,2018-10-03 -Resort Hotel,0,105,2017,May,26,29,4,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,I,2,No Deposit,336.0,179.0,0,Transient,178.11,0,0,Check-Out,2020-03-03 -Resort Hotel,0,257,2015,October,41,20,0,5,1,0.0,0,HB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,43.27,1,2,Check-Out,2018-08-03 -City Hotel,1,150,2016,July,27,30,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,107.92,0,0,Canceled,2019-02-01 -City Hotel,0,0,2015,October,41,10,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,86.67,0,0,Check-Out,2018-09-02 -Resort Hotel,0,189,2016,August,37,5,0,3,3,1.0,0,BB,,Online TA,Direct,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,192.89,1,3,Check-Out,2019-05-04 -City Hotel,0,0,2015,December,50,5,0,3,1,0.0,0,BB,POL,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,104.99,0,2,Check-Out,2018-10-03 -Resort Hotel,0,10,2015,October,44,2,2,7,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,310.0,179.0,0,Transient,45.94,0,0,Check-Out,2018-09-02 -Resort Hotel,1,46,2015,December,51,16,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,A,0,Non Refund,14.0,179.0,0,Transient,0.0,0,0,Canceled,2018-12-03 -City Hotel,0,63,2015,July,23,5,1,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.85,0,2,Check-Out,2018-11-02 -Resort Hotel,0,92,2017,June,25,20,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,1,E,E,0,No Deposit,378.0,179.0,0,Group,85.91,0,0,Check-Out,2020-03-03 -Resort Hotel,0,3,2016,September,42,5,1,10,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,250.0,179.0,0,Transient,42.35,0,0,Check-Out,2019-07-04 -Resort Hotel,1,53,2017,August,36,11,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,246.0,179.0,0,Transient,250.14,1,1,Canceled,2019-11-03 -City Hotel,0,0,2016,August,36,30,0,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,138.46,0,1,Check-Out,2019-06-03 -City Hotel,0,18,2017,June,32,10,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,213.5,0,1,Check-Out,2020-03-03 -City Hotel,0,14,2017,March,9,6,0,2,1,0.0,0,SC,DEU,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,66.35,0,0,Check-Out,2020-02-01 -City Hotel,1,81,2016,June,31,18,1,3,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,144.02,0,0,Canceled,2019-04-03 -City Hotel,1,404,2016,March,3,18,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,41,Transient,62.05,0,0,Canceled,2018-10-03 -City Hotel,0,17,2016,October,42,27,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,84.24,0,0,Check-Out,2018-08-03 -City Hotel,0,6,2015,September,43,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,156.58,0,2,Check-Out,2018-09-02 -City Hotel,0,196,2016,December,53,11,2,4,1,1.0,0,BB,GBR,Online TA,GDS,0,0,0,D,D,0,No Deposit,185.0,179.0,0,Transient,130.97,0,0,Check-Out,2019-11-03 -Resort Hotel,0,155,2016,March,17,31,1,3,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,2,Refundable,11.0,224.0,0,Transient-Party,44.01,0,0,Check-Out,2019-06-03 -Resort Hotel,0,210,2015,August,35,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient-Party,157.95,0,1,Check-Out,2019-08-04 -Resort Hotel,0,227,2016,June,21,25,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Group,82.65,0,2,Check-Out,2019-05-04 -Resort Hotel,0,96,2015,July,12,31,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,247.0,179.0,0,Transient,96.33,1,2,Check-Out,2018-12-03 -Resort Hotel,1,94,2016,December,53,31,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,334.0,179.0,0,Transient,69.44,0,0,Canceled,2019-09-03 -City Hotel,0,0,2016,May,22,15,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,B,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-03-04 -Resort Hotel,1,59,2017,May,22,9,2,3,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,113.07,0,1,Canceled,2019-10-04 -Resort Hotel,0,50,2015,October,41,9,1,3,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,112.95,0,0,Check-Out,2018-09-02 -City Hotel,1,254,2017,June,26,26,2,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.79,0,0,Canceled,2020-04-02 -Resort Hotel,0,119,2016,October,51,21,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,115.52,1,1,Check-Out,2019-09-03 -City Hotel,0,41,2016,December,44,14,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,90.14,0,0,Check-Out,2019-09-03 -City Hotel,0,190,2017,July,27,15,3,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,G,0,No Deposit,18.0,179.0,0,Transient,86.93,0,0,Check-Out,2020-05-03 -City Hotel,0,8,2015,November,44,10,2,1,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,38.65,0,0,Check-Out,2018-08-03 -City Hotel,0,138,2015,October,43,24,2,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,3,No Deposit,13.0,179.0,0,Transient,91.37,0,0,Check-Out,2018-08-03 -Resort Hotel,0,59,2016,April,16,5,2,1,1,0.0,0,HB,CHN,Direct,Direct,0,0,0,A,D,1,No Deposit,244.0,179.0,0,Transient,37.51,0,0,Check-Out,2019-02-01 -Resort Hotel,0,36,2016,January,50,6,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,71.37,0,1,Check-Out,2019-02-01 -City Hotel,1,210,2016,September,35,19,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,134.23,0,0,Canceled,2018-08-03 -City Hotel,0,0,2017,March,21,30,0,1,2,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,0.0,0,0,Check-Out,2020-04-02 -City Hotel,0,15,2016,July,27,15,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,111.89,0,1,Check-Out,2019-06-03 -City Hotel,0,16,2016,June,22,8,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,135.88,0,1,Check-Out,2019-06-03 -City Hotel,1,91,2015,September,33,6,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,85.01,0,0,Canceled,2018-05-03 -City Hotel,0,285,2015,July,33,29,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,62.09,0,1,Check-Out,2017-10-03 -City Hotel,0,32,2017,July,26,24,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.43,0,2,Check-Out,2020-04-02 -Resort Hotel,0,1,2016,May,23,28,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,78.17,1,2,Check-Out,2019-06-03 -City Hotel,0,236,2017,May,27,27,2,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,154.21,0,0,Check-Out,2020-03-03 -City Hotel,0,41,2015,September,42,15,1,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,241.0,179.0,0,Transient,121.52,0,0,Check-Out,2018-07-03 -City Hotel,1,380,2016,April,16,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,70.25,0,0,Canceled,2018-11-02 -City Hotel,0,176,2017,April,14,15,0,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,103.85,1,0,Check-Out,2020-04-02 -Resort Hotel,0,87,2015,December,51,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,16.0,179.0,0,Transient,96.81,0,0,Check-Out,2018-05-03 -City Hotel,1,20,2016,October,43,6,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,160.19,0,1,Canceled,2019-11-03 -City Hotel,1,264,2016,October,44,29,2,1,2,0.0,0,HB,PRT,Groups,Corporate,1,1,0,A,A,0,Non Refund,32.0,179.0,0,Transient,84.03,0,0,Canceled,2018-08-03 -Resort Hotel,0,17,2016,October,42,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,89.0,179.0,0,Transient,36.45,0,0,Check-Out,2019-08-04 -City Hotel,1,0,2015,August,32,4,2,5,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,99.58,0,1,Canceled,2018-07-03 -City Hotel,1,333,2017,May,22,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.76,0,0,Canceled,2019-10-04 -City Hotel,0,147,2016,September,44,29,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,114.12,0,2,Check-Out,2019-07-04 -City Hotel,0,202,2017,August,36,20,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,153.82,0,0,Check-Out,2020-07-03 -City Hotel,0,22,2015,October,41,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,100.75,0,0,Check-Out,2019-06-03 -City Hotel,1,319,2015,July,33,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.61,0,0,Canceled,2017-10-03 -City Hotel,1,29,2017,April,15,2,2,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.48,0,1,Canceled,2019-11-03 -Resort Hotel,1,364,2015,October,42,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,58.04,0,0,Canceled,2018-01-03 -City Hotel,0,16,2015,September,43,24,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Contract,61.47,0,0,Check-Out,2018-05-03 -City Hotel,1,318,2016,March,21,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.44,0,0,Canceled,2018-11-02 -Resort Hotel,0,47,2016,April,16,26,2,1,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,103.23,1,0,Check-Out,2018-12-03 -Resort Hotel,0,18,2017,January,3,28,0,4,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,123.59,0,0,Check-Out,2019-10-04 -Resort Hotel,0,194,2015,November,42,21,2,5,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient-Party,71.86,0,0,Check-Out,2018-09-02 -Resort Hotel,0,258,2015,December,52,25,2,1,2,0.0,0,Undefined,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient-Party,60.0,0,0,Check-Out,2018-06-02 -City Hotel,0,183,2016,September,46,25,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.12,0,3,Check-Out,2019-07-04 -City Hotel,0,1,2015,September,37,25,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient-Party,115.66,1,0,Check-Out,2019-06-03 -Resort Hotel,1,366,2017,March,11,31,2,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,2,No Deposit,378.0,179.0,0,Transient-Party,114.18,0,0,No-Show,2020-01-04 -Resort Hotel,0,109,2016,June,22,29,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,318.0,179.0,0,Transient,199.06,0,1,Check-Out,2020-02-01 -City Hotel,0,4,2015,October,41,5,2,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,75.0,179.0,0,Contract,97.08,0,0,Check-Out,2019-09-03 -City Hotel,0,66,2016,June,27,9,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,165.93,0,0,Check-Out,2019-04-03 -City Hotel,1,202,2016,October,43,16,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient,78.45,0,0,Canceled,2018-12-03 -City Hotel,1,2,2017,August,36,27,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,D,0,Refundable,12.0,179.0,0,Transient,252.0,0,0,Canceled,2020-07-03 -City Hotel,1,387,2017,May,22,31,2,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,58.01,0,0,Canceled,2019-11-03 -City Hotel,1,44,2016,February,10,12,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.42,0,0,Canceled,2018-11-02 -Resort Hotel,0,14,2017,July,32,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,238.0,179.0,0,Transient,44.09,0,3,Check-Out,2020-06-02 -City Hotel,0,135,2016,July,26,6,2,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,121.81,0,1,Check-Out,2019-02-01 -City Hotel,0,21,2017,June,27,16,2,1,2,0.0,0,SC,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.08,0,0,Check-Out,2020-06-02 -City Hotel,0,154,2017,July,35,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.52,0,1,Check-Out,2020-06-02 -Resort Hotel,0,44,2015,September,35,27,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,82.0,179.0,0,Transient,61.28,0,0,Check-Out,2018-11-02 -Resort Hotel,1,43,2016,June,25,21,0,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,101.54,0,0,Canceled,2019-02-01 -City Hotel,1,444,2017,May,23,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,108.83,0,0,Canceled,2020-03-03 -Resort Hotel,0,12,2017,March,36,30,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Refundable,12.0,179.0,0,Transient,81.41,1,1,Check-Out,2020-06-02 -City Hotel,0,48,2015,December,51,6,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,92.61,0,0,Check-Out,2018-11-02 -Resort Hotel,0,48,2015,October,41,20,1,0,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,67.24,0,0,Check-Out,2018-08-03 -City Hotel,0,230,2016,May,22,20,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,45.83,0,0,Check-Out,2019-04-03 -City Hotel,1,435,2016,September,37,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,118.84,0,0,Canceled,2017-11-02 -City Hotel,1,63,2016,February,16,5,1,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,312.0,179.0,0,Transient,63.69,0,0,Canceled,2019-02-01 -Resort Hotel,0,43,2017,March,11,10,0,2,2,0.0,0,HB,CHE,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,183.0,179.0,0,Transient,98.56,0,0,Check-Out,2020-02-01 -City Hotel,1,52,2015,December,53,27,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,62.87,0,0,Canceled,2018-11-02 -City Hotel,0,6,2015,July,32,8,1,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,85.0,179.0,0,Transient,124.01,0,0,Check-Out,2018-06-02 -City Hotel,1,199,2016,August,37,26,2,5,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,127.94,0,0,Canceled,2019-08-04 -City Hotel,1,183,2016,September,36,19,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,167.79,0,3,Canceled,2019-08-04 -Resort Hotel,0,1,2015,January,4,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,A,0,No Deposit,237.0,179.0,0,Group,41.6,0,1,Check-Out,2018-05-03 -Resort Hotel,1,378,2016,October,39,17,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,116.19,0,1,No-Show,2019-08-04 -City Hotel,1,100,2017,April,15,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,79.82,0,0,Canceled,2020-02-01 -City Hotel,1,97,2017,July,35,31,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,153.19,0,0,Canceled,2020-07-03 -City Hotel,0,13,2015,December,50,22,2,2,2,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Group,97.6,0,0,Check-Out,2019-12-04 -City Hotel,1,18,2017,January,10,16,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,97.36,0,0,Canceled,2019-10-04 -City Hotel,0,13,2015,December,49,2,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,78.58,0,2,Check-Out,2019-09-03 -Resort Hotel,0,20,2016,June,18,10,2,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,0,Transient,114.67,0,1,Check-Out,2019-06-03 -City Hotel,0,9,2015,November,50,9,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,13.0,331.0,0,Transient-Party,91.0,0,0,Check-Out,2018-12-03 -City Hotel,0,2,2015,October,36,10,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Group,78.93,0,0,Check-Out,2018-08-03 -Resort Hotel,0,51,2016,November,43,5,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,109.75,0,2,Check-Out,2019-11-03 -Resort Hotel,0,103,2016,February,10,6,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,46.18,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2016,May,18,14,0,2,1,0.0,0,HB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,192.0,0,Transient,110.74,0,1,Check-Out,2019-07-04 -City Hotel,0,13,2017,July,34,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,215.81,0,1,Check-Out,2020-04-02 -City Hotel,1,64,2017,August,22,27,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,86.44,0,0,Canceled,2020-04-02 -Resort Hotel,1,0,2016,February,9,15,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,83.0,179.0,0,Transient,31.98,0,0,Canceled,2019-01-03 -City Hotel,0,34,2016,November,51,28,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.01,0,1,Check-Out,2019-09-03 -Resort Hotel,0,143,2017,July,27,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,131.77,1,0,Check-Out,2020-03-03 -City Hotel,0,266,2015,September,40,24,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,16,Transient-Party,121.04,0,0,Check-Out,2018-08-03 -Resort Hotel,1,150,2017,June,26,10,3,1,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,167.88,0,2,Canceled,2020-03-03 -City Hotel,1,332,2017,August,36,14,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,148.82,0,1,Canceled,2020-05-03 -City Hotel,1,203,2017,February,11,26,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,0,Transient-Party,187.76,0,0,Canceled,2020-03-03 -City Hotel,0,188,2017,May,23,9,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,186.0,179.0,0,Transient-Party,66.26,1,0,Check-Out,2019-09-03 -City Hotel,0,13,2015,August,39,21,2,1,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,149.19,0,1,Check-Out,2018-06-02 -City Hotel,1,54,2016,May,16,24,0,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,131.33,0,0,Canceled,2019-01-03 -City Hotel,0,1,2017,October,22,21,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,89.12,0,2,Check-Out,2019-11-03 -City Hotel,0,91,2016,June,32,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,62.0,0,Transient,71.47,0,0,Check-Out,2019-04-03 -Resort Hotel,0,15,2017,January,3,5,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,62.09,0,0,Check-Out,2019-09-03 -City Hotel,0,144,2016,October,44,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,137.37,0,2,Check-Out,2020-06-02 -Resort Hotel,1,170,2016,July,37,23,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,112.34,0,0,Canceled,2019-08-04 -Resort Hotel,0,32,2015,August,36,7,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,62.15,1,2,Check-Out,2019-03-04 -City Hotel,0,37,2015,November,49,5,2,5,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,77.36,0,0,Check-Out,2018-08-03 -Resort Hotel,0,99,2015,November,46,30,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,49.5,0,2,Check-Out,2018-11-02 -City Hotel,1,159,2017,April,16,17,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,40,Transient,121.95,0,0,Canceled,2018-12-03 -Resort Hotel,1,250,2017,August,36,25,4,10,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,301.0,179.0,0,Transient-Party,182.54,0,0,Canceled,2020-05-03 -City Hotel,0,141,2016,November,49,24,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,153.1,0,1,Check-Out,2019-04-03 -City Hotel,1,0,2017,May,22,26,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,164.57,0,1,Canceled,2019-02-01 -City Hotel,1,102,2017,May,43,21,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,62.32,0,0,Canceled,2019-09-03 -City Hotel,0,3,2016,August,35,28,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.17,0,1,Check-Out,2019-06-03 -City Hotel,0,3,2017,April,16,23,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.98,0,2,Check-Out,2020-06-02 -Resort Hotel,0,10,2017,July,29,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,46.16,0,0,Check-Out,2020-06-02 -Resort Hotel,1,1,2016,May,4,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,59.27,0,0,No-Show,2019-03-04 -City Hotel,0,28,2017,January,4,27,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,95.06,0,1,Check-Out,2019-11-03 -Resort Hotel,1,5,2016,January,3,25,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,153.32,0,0,Canceled,2019-10-04 -Resort Hotel,0,6,2016,March,23,14,0,3,2,0.0,0,HB,AUT,Corporate,Corporate,1,0,1,E,E,1,No Deposit,11.0,179.0,75,Transient-Party,78.26,1,0,Check-Out,2020-01-04 -City Hotel,1,24,2016,May,21,12,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.19,0,0,Canceled,2019-03-04 -Resort Hotel,0,2,2017,February,8,9,2,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,331.0,0,Transient,35.77,0,0,Check-Out,2019-12-04 -City Hotel,1,49,2017,August,38,8,0,1,2,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Canceled,2020-05-03 -Resort Hotel,1,17,2016,March,11,29,1,3,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,E,E,0,Non Refund,184.0,179.0,0,Transient,64.0,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2016,February,10,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,I,0,No Deposit,16.0,331.0,0,Transient,41.62,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,June,27,8,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,1,No Deposit,18.0,179.0,0,Transient,125.75,0,0,Check-Out,2019-03-04 -City Hotel,1,4,2016,October,44,28,2,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,141.14,0,0,Canceled,2019-08-04 -City Hotel,0,19,2016,June,29,19,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,E,E,2,No Deposit,216.0,166.0,0,Transient,122.21,0,0,Check-Out,2019-05-04 -City Hotel,0,3,2016,October,43,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,69.43,0,0,Check-Out,2018-08-03 -City Hotel,0,4,2016,September,36,14,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.12,0,0,Check-Out,2019-02-01 -Resort Hotel,1,167,2015,October,46,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,16.0,235.0,0,Transient,36.09,0,0,Canceled,2018-06-02 -Resort Hotel,0,0,2016,February,10,9,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,245.0,179.0,0,Transient,183.95,0,0,Check-Out,2018-12-03 -Resort Hotel,0,159,2017,January,21,28,1,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-03-03 -City Hotel,0,26,2017,May,21,20,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.25,0,0,Check-Out,2020-04-02 -City Hotel,1,115,2016,March,16,28,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,6.0,179.0,0,Transient,109.93,0,0,Canceled,2019-01-03 -City Hotel,1,430,2016,November,44,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,39,Transient,73.32,0,0,Canceled,2018-08-03 -City Hotel,1,245,2015,October,44,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.91,0,0,Canceled,2018-08-03 -Resort Hotel,0,90,2017,August,43,16,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,0,0,D,E,0,No Deposit,240.0,179.0,0,Group,71.62,1,1,Check-Out,2020-03-03 -Resort Hotel,1,110,2016,July,32,30,2,10,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,320.0,179.0,0,Transient,197.46,0,0,Canceled,2019-05-04 -City Hotel,0,11,2016,March,9,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,67.53,0,0,Check-Out,2019-02-01 -City Hotel,1,2,2017,April,16,31,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,9.0,179.0,0,Transient,94.2,0,0,Canceled,2019-02-01 -Resort Hotel,0,12,2016,January,9,18,1,1,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,H,1,No Deposit,34.0,179.0,0,Transient-Party,73.81,0,0,Check-Out,2019-03-04 -Resort Hotel,0,250,2016,October,43,17,2,10,2,0.0,0,HB,CN,Offline TA/TO,Corporate,0,0,0,E,E,0,No Deposit,333.0,179.0,0,Transient,162.53,0,0,Check-Out,2019-05-04 -City Hotel,1,311,2015,August,43,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.66,0,0,Canceled,2018-08-03 -City Hotel,0,21,2017,May,21,15,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,236.99,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2016,December,50,12,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,14.0,275.0,0,Group,2.13,0,0,Canceled,2019-12-04 -City Hotel,0,32,2016,July,32,21,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,207.59,0,3,Check-Out,2020-06-02 -Resort Hotel,1,159,2016,March,17,31,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Transient,80.42,0,0,Canceled,2019-01-03 -City Hotel,0,60,2017,July,30,19,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,159.54,0,1,Check-Out,2020-05-03 -City Hotel,0,15,2017,April,28,5,1,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.57,0,1,Check-Out,2019-12-04 -City Hotel,1,296,2015,December,45,12,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,72.06,0,0,Canceled,2019-09-03 -City Hotel,0,199,2015,July,32,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,64.98,0,0,Check-Out,2019-06-03 -Resort Hotel,0,10,2016,April,17,15,0,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,D,E,1,No Deposit,12.0,179.0,0,Transient-Party,100.61,0,0,Check-Out,2020-03-03 -Resort Hotel,1,40,2016,July,28,25,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,45.72,0,1,No-Show,2019-07-04 -Resort Hotel,0,15,2017,October,50,26,0,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,E,E,0,No Deposit,358.0,179.0,0,Transient,116.09,0,0,Check-Out,2019-12-04 -Resort Hotel,0,85,2016,December,53,10,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,245.0,179.0,0,Transient-Party,60.45,0,3,Check-Out,2019-11-03 -City Hotel,1,49,2015,September,40,17,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,113.81,0,0,Canceled,2018-08-03 -City Hotel,0,261,2016,November,24,20,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient-Party,73.9,0,0,Check-Out,2019-10-04 -City Hotel,0,96,2015,November,53,24,1,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,81.81,0,0,Check-Out,2018-12-03 -City Hotel,0,278,2017,July,31,27,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.15,0,2,Check-Out,2020-06-02 -Resort Hotel,0,85,2017,April,17,28,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,326.0,179.0,0,Transient-Party,48.75,0,0,Check-Out,2020-02-01 -City Hotel,0,94,2015,August,34,18,2,5,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,105.98,0,2,Check-Out,2019-06-03 -City Hotel,1,145,2016,August,37,27,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,8.0,179.0,0,Transient,125.19,0,0,Canceled,2019-05-04 -City Hotel,1,3,2017,August,36,9,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Canceled,2020-04-02 -City Hotel,1,83,2016,August,33,15,0,5,3,1.0,0,HB,BEL,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient,197.47,0,1,Canceled,2019-05-04 -City Hotel,0,10,2017,March,11,28,2,0,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,182.0,0,Transient,89.69,0,0,Check-Out,2019-11-03 -City Hotel,1,44,2016,March,16,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,41,Transient,79.63,0,0,Canceled,2018-11-02 -City Hotel,0,45,2016,January,3,28,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,317.0,179.0,0,Transient-Party,63.11,0,0,Check-Out,2019-10-04 -City Hotel,1,107,2016,August,37,10,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,134.74,0,2,Canceled,2019-09-03 -City Hotel,0,2,2016,October,43,13,1,0,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,105.56,1,0,Check-Out,2019-08-04 -Resort Hotel,0,57,2017,May,22,29,2,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,74.99,1,3,Check-Out,2020-04-02 -Resort Hotel,1,160,2017,July,31,12,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,191.94,0,0,Canceled,2020-07-03 -Resort Hotel,0,96,2017,March,10,2,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,75,Transient-Party,73.73,0,0,Check-Out,2020-03-03 -City Hotel,1,343,2015,July,28,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.02,0,0,Canceled,2018-01-03 -Resort Hotel,0,145,2017,August,37,5,4,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Contract,199.36,0,0,Check-Out,2020-04-02 -City Hotel,1,417,2015,October,44,18,1,1,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,72.66,0,0,Canceled,2018-08-03 -Resort Hotel,1,158,2016,August,37,16,0,3,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,225.37,1,0,Canceled,2019-08-04 -Resort Hotel,0,1,2017,February,11,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,102.89,0,1,Check-Out,2018-10-03 -Resort Hotel,0,54,2015,December,50,6,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,45.05,0,1,Check-Out,2018-08-03 -City Hotel,1,51,2016,September,28,20,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,71.0,179.0,0,Transient,110.22,0,0,Canceled,2019-04-03 -City Hotel,0,107,2017,March,16,10,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,76.05,0,0,Check-Out,2020-04-02 -City Hotel,1,307,2017,August,26,5,2,2,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,173.99,0,0,Canceled,2020-02-01 -City Hotel,1,314,2017,August,27,27,0,1,3,1.0,0,BB,PRT,Complementary,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,139.32,0,0,Canceled,2019-10-04 -Resort Hotel,0,166,2017,July,33,5,0,2,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,3,No Deposit,250.0,179.0,0,Transient,252.0,0,0,Canceled,2020-06-02 -City Hotel,0,53,2016,October,45,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,140.83,0,0,Check-Out,2019-08-04 -Resort Hotel,1,0,2016,July,22,20,0,4,1,0.0,0,BB,BRA,Direct,Direct,0,0,0,E,H,1,No Deposit,14.0,179.0,0,Transient,155.11,0,0,No-Show,2019-07-04 -City Hotel,1,307,2015,February,8,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,37.0,179.0,0,Contract,61.63,0,0,Canceled,2017-12-03 -City Hotel,0,225,2017,August,27,10,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,133.21,1,1,Check-Out,2019-05-04 -City Hotel,1,414,2016,March,15,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,39,Transient,62.66,0,0,Canceled,2018-12-03 -City Hotel,0,0,2017,March,10,28,0,1,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,D,0,No Deposit,159.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-01-04 -City Hotel,0,155,2016,July,32,9,2,2,2,0.0,0,HB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,158.51,0,1,Check-Out,2019-01-03 -Resort Hotel,0,257,2016,May,20,31,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,Refundable,14.0,224.0,0,Transient-Party,69.08,0,0,Check-Out,2019-05-04 -City Hotel,1,16,2017,July,28,17,1,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,171.24,0,0,No-Show,2020-06-02 -City Hotel,0,26,2017,March,14,10,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.07,0,0,Check-Out,2020-03-03 -City Hotel,0,7,2015,July,32,6,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.38,0,0,Check-Out,2017-10-03 -Resort Hotel,0,80,2017,March,18,18,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,236.0,179.0,0,Transient,30.03,0,2,Check-Out,2020-02-01 -Resort Hotel,0,293,2017,May,16,30,2,3,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,11.0,222.0,0,Transient-Party,68.93,1,0,Check-Out,2020-03-03 -City Hotel,1,210,2017,August,35,25,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,12.0,179.0,0,Transient,173.26,0,1,Canceled,2020-07-03 -Resort Hotel,1,199,2017,January,2,7,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,209.16,0,0,Canceled,2019-09-03 -City Hotel,0,21,2016,November,44,6,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.58,0,1,Canceled,2019-10-04 -City Hotel,0,2,2016,November,51,13,1,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,206.0,179.0,0,Transient,78.11,0,0,Check-Out,2019-10-04 -City Hotel,1,44,2016,June,16,15,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,100.76,0,0,Canceled,2019-01-03 -City Hotel,1,58,2017,April,15,20,2,5,3,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,8.0,179.0,75,Transient,73.62,0,0,Canceled,2020-02-01 -Resort Hotel,0,293,2017,July,31,10,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,293.0,179.0,0,Contract,63.29,0,0,Check-Out,2020-06-02 -City Hotel,1,288,2015,October,44,7,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,2.0,179.0,0,Contract,117.83,0,0,Canceled,2017-11-02 -Resort Hotel,0,83,2016,June,31,19,0,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient-Party,78.91,0,0,Check-Out,2019-05-04 -City Hotel,0,13,2017,January,8,5,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Group,0.0,0,1,Check-Out,2019-10-04 -City Hotel,0,0,2017,February,10,13,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,69.31,0,2,Check-Out,2019-09-03 -City Hotel,0,142,2016,November,51,1,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,56.68,0,0,Check-Out,2019-08-04 -Resort Hotel,0,36,2016,October,44,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Contract,120.88,0,2,Check-Out,2019-09-03 -City Hotel,0,96,2016,May,44,28,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,186.96,0,1,Check-Out,2019-12-04 -City Hotel,1,192,2016,May,23,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,63,Transient,66.26,0,0,Canceled,2019-02-01 -Resort Hotel,0,226,2017,August,32,8,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,174.0,179.0,0,Transient-Party,100.8,0,1,Check-Out,2020-06-02 -Resort Hotel,0,0,2017,February,8,13,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,19.0,179.0,0,Transient,1.74,1,0,Check-Out,2019-12-04 -City Hotel,0,0,2016,April,22,28,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,66.29,0,0,Check-Out,2019-06-03 -City Hotel,1,7,2017,June,22,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,P,A,0,No Deposit,14.0,58.0,0,Transient,59.99,0,0,Canceled,2019-11-03 -City Hotel,0,49,2017,August,30,16,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,149.39,0,1,Check-Out,2020-03-03 -City Hotel,1,21,2016,June,28,5,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,2,No Deposit,14.0,144.0,0,Transient,87.36,0,0,Canceled,2019-05-04 -Resort Hotel,0,151,2016,March,17,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,73.02,0,0,Check-Out,2019-03-04 -Resort Hotel,0,13,2017,June,21,20,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,247.0,63.0,0,Contract,114.09,0,0,Check-Out,2020-07-03 -City Hotel,0,39,2016,October,43,21,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,0,No Deposit,11.0,331.0,0,Transient,119.22,0,0,Check-Out,2018-08-03 -Resort Hotel,0,301,2017,May,21,10,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,114.18,0,1,Check-Out,2020-02-01 -City Hotel,0,132,2015,July,33,23,2,4,2,0.0,0,BB,DEU,Groups,Undefined,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,123.78,0,0,Check-Out,2018-06-02 -City Hotel,1,100,2015,October,47,10,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,59.62,0,0,Check-Out,2018-08-03 -City Hotel,0,102,2016,January,4,25,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,40.0,179.0,0,Transient,78.22,0,0,Check-Out,2018-12-03 -City Hotel,0,106,2017,April,22,25,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.12,0,2,Check-Out,2020-04-02 -Resort Hotel,0,36,2016,March,9,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,141.0,179.0,0,Transient-Party,40.54,0,0,Check-Out,2019-02-01 -City Hotel,1,152,2016,June,32,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,118.37,0,0,Canceled,2019-05-04 -City Hotel,0,103,2017,April,15,10,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,156.83,0,1,Check-Out,2020-04-02 -Resort Hotel,0,13,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,82.0,0,Transient,41.57,0,0,Check-Out,2020-03-03 -Resort Hotel,0,201,2016,May,23,27,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,37.93,0,1,Check-Out,2019-02-01 -City Hotel,0,2,2017,June,21,9,0,3,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,H,K,0,No Deposit,9.0,179.0,0,Transient,0.0,0,2,Check-Out,2020-03-03 -City Hotel,1,40,2017,May,21,5,0,4,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,178.47,0,0,Canceled,2020-02-01 -Resort Hotel,0,166,2017,July,21,19,2,3,2,1.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,G,2,No Deposit,243.0,179.0,0,Transient,211.88,1,1,Check-Out,2020-06-02 -Resort Hotel,1,21,2016,September,42,20,2,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,No Deposit,243.0,179.0,0,Transient,145.28,0,0,Canceled,2019-05-04 -City Hotel,1,0,2016,December,53,9,0,1,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,179.0,0,Transient,1.11,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2016,December,46,31,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,0.0,1,0,Check-Out,2019-08-04 -Resort Hotel,1,278,2017,April,24,30,2,2,2,0.0,0,HB,USA,Groups,TA/TO,0,0,0,E,E,0,Non Refund,27.0,179.0,0,Transient,62.48,0,0,Canceled,2020-04-02 -Resort Hotel,0,95,2017,June,27,2,2,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient,136.8,1,1,Check-Out,2020-06-02 -City Hotel,0,44,2017,August,26,30,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,238.0,179.0,0,Transient,199.78,1,3,Check-Out,2020-06-02 -City Hotel,1,38,2015,October,44,9,0,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,1,0,G,G,0,No Deposit,235.0,179.0,0,Transient,81.91,0,0,Canceled,2018-08-03 -City Hotel,0,55,2017,May,26,18,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,120.83,0,1,Check-Out,2020-02-01 -City Hotel,0,108,2015,December,53,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.66,0,2,Check-Out,2019-10-04 -City Hotel,1,82,2016,March,9,16,0,6,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,31.58,0,0,Canceled,2019-01-03 -City Hotel,0,31,2016,October,41,5,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.31,0,1,Check-Out,2019-08-04 -City Hotel,1,8,2017,July,28,2,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.17,0,0,Canceled,2020-01-04 -City Hotel,1,37,2016,October,45,21,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,132.2,0,0,Canceled,2019-05-04 -City Hotel,0,21,2016,March,11,28,1,0,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,D,0,No Deposit,95.0,76.0,0,Transient-Party,70.84,0,0,Check-Out,2019-03-04 -Resort Hotel,0,8,2017,March,11,23,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient,44.81,0,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2016,August,32,30,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,249.0,179.0,0,Transient,120.28,0,0,Check-Out,2018-11-02 -City Hotel,0,20,2017,May,21,24,0,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,173.41,0,0,Check-Out,2020-04-02 -City Hotel,0,209,2016,August,36,27,0,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,140.06,0,0,Check-Out,2020-06-02 -Resort Hotel,0,293,2017,August,22,5,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,I,0,No Deposit,242.0,179.0,0,Transient,248.97,0,0,Check-Out,2020-05-03 -Resort Hotel,1,15,2016,June,26,27,0,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,136.13,0,0,Canceled,2019-02-01 -City Hotel,1,90,2017,August,22,30,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.4,0,2,No-Show,2019-12-04 -City Hotel,0,237,2016,September,29,13,2,0,1,0.0,0,BB,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,100.76,0,0,Check-Out,2019-05-04 -Resort Hotel,0,137,2016,September,35,15,4,6,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,90.81,0,0,Check-Out,2019-09-03 -City Hotel,0,264,2015,August,37,4,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,123.24,0,2,Check-Out,2018-06-02 -Resort Hotel,1,13,2016,March,10,25,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,83.0,179.0,0,Transient,61.11,0,0,Canceled,2019-02-01 -City Hotel,0,188,2017,June,27,24,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,79.81,0,0,Check-Out,2020-06-02 -Resort Hotel,0,0,2016,January,4,15,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,75.71,0,1,Check-Out,2018-12-03 -City Hotel,1,381,2016,October,43,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,70.06,0,0,Canceled,2019-10-04 -City Hotel,0,4,2016,March,14,18,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,6.0,179.0,0,Transient,87.1,0,2,Check-Out,2019-03-04 -Resort Hotel,0,227,2016,October,42,6,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient-Party,84.41,1,0,Check-Out,2019-06-03 -Resort Hotel,0,231,2015,October,43,28,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,123.0,0,0,Check-Out,2018-08-03 -City Hotel,0,113,2016,February,10,21,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,69.29,0,1,Check-Out,2018-11-02 -City Hotel,1,0,2017,February,10,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,60.98,1,0,Canceled,2019-10-04 -City Hotel,1,14,2016,March,10,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,69.0,179.0,0,Transient,37.98,0,0,No-Show,2019-03-04 -Resort Hotel,1,116,2016,March,15,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Refundable,241.0,179.0,0,Transient,101.92,0,0,Canceled,2019-02-01 -City Hotel,0,1,2017,June,24,14,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,G,D,0,No Deposit,13.0,45.0,0,Transient,0.21,1,3,Check-Out,2019-01-03 -Resort Hotel,0,1,2015,August,37,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,62.39,0,0,Check-Out,2018-07-03 -Resort Hotel,1,194,2017,December,50,27,1,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient-Party,62.6,0,0,Canceled,2019-10-04 -City Hotel,0,242,2015,November,46,15,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,101.23,0,2,Check-Out,2018-08-03 -City Hotel,0,0,2016,February,9,13,1,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,64.86,0,0,Check-Out,2019-02-01 -City Hotel,1,372,2016,September,37,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,82.24,0,0,Canceled,2017-12-03 -City Hotel,1,3,2017,February,9,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,71.3,0,0,Canceled,2020-02-01 -Resort Hotel,0,39,2017,May,23,5,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,F,0,No Deposit,305.0,179.0,0,Transient-Party,126.1,0,0,Check-Out,2020-03-03 -Resort Hotel,0,12,2016,March,8,31,0,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,12.0,255.0,0,Transient-Party,41.85,0,0,Check-Out,2019-06-03 -Resort Hotel,0,91,2017,July,37,13,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,79.26,0,2,Check-Out,2020-01-04 -Resort Hotel,0,1,2015,November,41,8,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,85.0,179.0,0,Transient,40.29,0,0,Check-Out,2018-08-03 -City Hotel,0,1,2015,October,44,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,71.02,0,0,Check-Out,2018-09-02 -City Hotel,0,14,2016,December,43,26,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,92.97,0,3,Check-Out,2019-11-03 -Resort Hotel,0,27,2016,August,37,13,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,75.83,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,January,3,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,82.0,0,Transient,31.81,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2015,September,42,7,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,103.91,1,0,Check-Out,2018-06-02 -City Hotel,1,48,2015,September,35,16,2,1,2,2.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,62.34,0,0,Canceled,2018-07-03 -City Hotel,0,4,2016,May,21,9,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,41,Transient-Party,69.86,0,0,Check-Out,2019-03-04 -City Hotel,1,110,2017,June,26,27,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,82.19,0,0,Canceled,2020-02-01 -Resort Hotel,0,104,2017,May,22,13,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,238.0,179.0,0,Transient,119.55,0,2,Check-Out,2020-04-02 -Resort Hotel,0,28,2016,June,23,20,0,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,70.13,0,0,Check-Out,2019-07-04 -City Hotel,0,18,2016,October,41,30,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,92.73,0,2,Check-Out,2019-08-04 -City Hotel,1,108,2017,March,10,10,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,106.19,0,0,Canceled,2019-11-03 -City Hotel,1,37,2017,December,50,2,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,1,No Deposit,12.0,331.0,0,Transient,0.0,0,0,Canceled,2019-11-03 -City Hotel,1,1,2016,February,8,10,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,60.79,0,0,Canceled,2018-10-03 -Resort Hotel,0,4,2017,March,20,20,1,2,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,125.97,1,1,Check-Out,2020-04-02 -Resort Hotel,1,180,2017,May,21,13,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,1,No Deposit,23.0,179.0,0,Transient-Party,87.23,0,1,No-Show,2019-12-04 -City Hotel,0,18,2015,July,27,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient-Party,135.67,0,0,Check-Out,2018-05-03 -Resort Hotel,1,102,2016,August,31,6,1,2,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,F,0,No Deposit,193.0,179.0,0,Transient,169.02,0,0,Canceled,2019-08-04 -Resort Hotel,0,0,2017,January,3,13,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,0,No Deposit,16.0,90.0,0,Transient,42.43,0,0,Check-Out,2019-12-04 -City Hotel,0,1,2017,May,16,13,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,E,0,No Deposit,10.0,179.0,0,Group,67.68,0,1,Check-Out,2020-02-01 -Resort Hotel,1,69,2015,October,46,22,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,93.0,179.0,0,Transient-Party,62.49,0,0,Canceled,2018-12-03 -Resort Hotel,1,204,2017,August,36,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,162.79,0,0,Canceled,2019-12-04 -Resort Hotel,0,41,2015,November,37,30,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,46.78,0,1,Check-Out,2018-06-02 -City Hotel,1,0,2016,February,12,27,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,98.21,0,0,Canceled,2018-12-03 -Resort Hotel,1,354,2016,May,23,8,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.77,0,2,Canceled,2019-03-04 -Resort Hotel,0,396,2017,August,17,23,0,3,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,63.77,0,0,Check-Out,2020-01-04 -City Hotel,1,18,2017,August,35,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,Non Refund,14.0,179.0,0,Transient,116.17,0,0,Canceled,2020-06-02 -City Hotel,0,4,2017,August,34,14,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,186.36,1,1,Check-Out,2020-06-02 -Resort Hotel,0,61,2017,March,7,22,2,2,2,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,70.8,0,1,Check-Out,2019-10-04 -City Hotel,1,110,2016,September,36,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,25.0,179.0,0,Transient,82.2,0,0,Canceled,2018-07-03 -City Hotel,1,232,2017,July,27,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,101.12,0,0,Canceled,2020-01-04 -City Hotel,0,2,2017,May,37,10,0,1,2,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Contract,132.11,0,0,Check-Out,2019-11-03 -City Hotel,0,0,2017,January,11,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,D,1,No Deposit,13.0,75.0,0,Transient,41.47,1,0,Check-Out,2020-06-02 -City Hotel,0,252,2015,July,31,13,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.28,0,0,Check-Out,2018-08-03 -City Hotel,1,249,2015,September,35,10,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,112.31,0,0,Canceled,2018-05-03 -Resort Hotel,0,79,2015,August,37,5,2,4,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,85.53,0,2,Check-Out,2018-06-02 -Resort Hotel,1,0,2017,March,9,12,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,158.34,0,1,Canceled,2020-03-03 -Resort Hotel,0,16,2017,February,12,12,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,165.0,179.0,0,Transient,0.28,1,0,Check-Out,2020-01-04 -City Hotel,0,13,2017,June,30,4,0,2,2,0.0,0,BB,NOR,Groups,Corporate,0,0,0,A,F,2,Non Refund,13.0,179.0,0,Transient-Party,125.72,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2015,December,51,13,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,104.0,249.0,0,Transient,107.21,1,1,Check-Out,2018-09-02 -Resort Hotel,0,56,2017,July,32,13,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient,143.24,0,3,Canceled,2020-06-02 -City Hotel,0,155,2017,March,18,21,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.76,0,2,Check-Out,2020-04-02 -City Hotel,1,46,2016,December,50,9,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,69.26,0,0,Canceled,2019-09-03 -City Hotel,0,54,2016,December,50,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,71.46,0,1,Check-Out,2019-12-04 -City Hotel,0,233,2016,June,37,17,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,164.0,179.0,0,Transient,74.28,0,0,Check-Out,2019-05-04 -Resort Hotel,0,27,2015,September,41,28,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,275.0,179.0,0,Transient-Party,98.16,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,March,10,31,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,89.0,239.0,0,Transient,62.75,1,0,Check-Out,2019-10-04 -City Hotel,0,152,2016,December,16,27,1,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,116.25,0,1,Check-Out,2019-08-04 -City Hotel,0,7,2017,January,4,28,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.88,0,1,Check-Out,2019-12-04 -Resort Hotel,0,2,2016,September,34,9,2,1,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,164.15,0,0,Check-Out,2018-08-03 -City Hotel,0,0,2017,April,16,19,0,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.51,0,1,Check-Out,2020-04-02 -City Hotel,1,389,2017,May,23,26,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,120.09,0,0,Canceled,2019-10-04 -Resort Hotel,0,47,2017,April,16,30,0,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,131.03,1,2,Check-Out,2020-01-04 -City Hotel,0,0,2017,March,23,25,1,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,234.09,1,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2016,January,4,10,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient,37.39,0,0,Check-Out,2018-11-02 -City Hotel,0,107,2016,November,44,27,1,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.75,0,2,Check-Out,2019-08-04 -City Hotel,0,15,2016,August,31,17,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,106.11,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2015,October,4,28,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Contract,74.7,0,0,Check-Out,2018-11-02 -City Hotel,0,9,2016,July,33,9,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,118.62,0,1,Check-Out,2019-05-04 -City Hotel,0,43,2016,October,44,19,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,64.0,0,Transient,128.54,0,1,Check-Out,2019-12-04 -Resort Hotel,1,310,2015,August,33,19,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient-Party,187.17,0,1,Canceled,2018-06-02 -City Hotel,1,19,2015,November,46,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.58,0,0,Canceled,2018-08-03 -Resort Hotel,0,114,2017,June,28,27,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,12.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-04-02 -City Hotel,0,141,2016,August,33,20,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,154.01,0,0,Check-Out,2019-11-03 -City Hotel,1,1,2016,August,36,16,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.32,0,1,Canceled,2019-06-03 -Resort Hotel,0,102,2017,March,11,30,1,0,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,284.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-10-04 -City Hotel,0,255,2017,July,32,20,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,157.82,0,2,Check-Out,2020-07-03 -Resort Hotel,0,36,2016,April,16,10,1,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,76.74,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,March,17,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,88.06,1,1,Check-Out,2019-01-03 -City Hotel,1,315,2016,June,23,2,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,99.93,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2015,December,43,18,2,6,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,31.85,0,0,Check-Out,2018-08-03 -City Hotel,0,111,2017,April,17,5,2,5,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,9.0,179.0,0,Transient,128.38,0,1,Check-Out,2020-03-03 -City Hotel,0,1,2017,February,9,13,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,39.03,1,0,Check-Out,2019-10-04 -Resort Hotel,1,45,2016,August,37,17,1,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,54.87,0,0,Canceled,2018-12-03 -Resort Hotel,0,41,2016,October,41,5,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,123.59,0,1,Check-Out,2019-06-03 -City Hotel,0,12,2015,August,37,24,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.46,0,2,Check-Out,2018-08-03 -City Hotel,0,2,2017,April,19,24,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,84.5,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2015,October,36,2,2,3,1,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,36.62,0,2,Check-Out,2018-05-03 -City Hotel,0,16,2017,May,19,23,0,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,98.16,1,0,Check-Out,2019-11-03 -City Hotel,0,45,2016,September,35,5,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,100.32,0,1,Check-Out,2019-07-04 -Resort Hotel,0,47,2016,October,41,19,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,163.0,179.0,0,Group,82.2,0,0,Check-Out,2019-06-03 -Resort Hotel,0,241,2016,June,25,17,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,80.05,0,2,Check-Out,2019-05-04 -City Hotel,0,157,2017,June,27,28,0,1,1,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.09,1,0,Check-Out,2020-03-03 -City Hotel,0,0,2016,March,10,2,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,F,0,No Deposit,14.0,45.0,0,Transient,0.0,1,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2015,July,35,9,0,1,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,131.03,0,0,Check-Out,2018-06-02 -City Hotel,0,3,2015,August,34,18,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,74.22,0,1,Check-Out,2018-05-03 -City Hotel,0,3,2017,July,35,9,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,211.25,0,3,Check-Out,2020-07-03 -City Hotel,0,16,2017,March,10,20,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,117.01,0,0,Check-Out,2020-03-03 -City Hotel,0,105,2016,June,43,20,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,97.62,0,1,Check-Out,2019-05-04 -City Hotel,0,2,2016,August,42,19,1,5,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,164.25,1,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2017,March,37,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,99.84,0,0,Check-Out,2019-10-04 -City Hotel,1,167,2016,September,37,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,77.56,0,0,Canceled,2019-08-04 -City Hotel,0,31,2016,May,23,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,70.67,0,0,Check-Out,2019-03-04 -Resort Hotel,0,217,2016,May,15,11,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,C,2,Refundable,13.0,222.0,0,Transient-Party,61.94,0,0,Check-Out,2019-03-04 -City Hotel,1,258,2015,November,50,20,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.69,0,0,Canceled,2017-11-02 -City Hotel,1,166,2017,March,10,27,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,9.0,179.0,0,Transient,127.13,0,0,Canceled,2019-12-04 -City Hotel,0,259,2016,July,36,23,0,2,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,H,A,1,No Deposit,190.0,179.0,0,Contract,157.88,0,0,Check-Out,2019-06-03 -Resort Hotel,0,288,2016,October,43,22,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,95.0,179.0,0,Contract,86.53,0,0,Check-Out,2019-06-03 -City Hotel,0,16,2017,April,16,25,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,99.55,0,0,Check-Out,2020-04-02 -City Hotel,1,213,2017,May,22,12,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.77,0,1,Canceled,2020-06-02 -City Hotel,0,53,2017,June,26,8,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,137.36,0,3,Check-Out,2020-03-03 -City Hotel,1,36,2016,August,36,2,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,112.9,0,1,No-Show,2019-06-03 -City Hotel,0,12,2016,December,51,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,13.0,239.0,0,Transient,38.39,0,0,Check-Out,2019-06-03 -City Hotel,0,145,2017,January,43,21,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.71,0,0,Check-Out,2019-11-03 -City Hotel,1,47,2016,March,10,13,0,3,2,0.0,0,SC,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.04,0,0,Check-Out,2018-11-02 -Resort Hotel,0,12,2015,October,44,21,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,32.91,0,0,Check-Out,2018-08-03 -City Hotel,1,217,2016,December,51,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,38.17,0,0,Canceled,2019-10-04 -City Hotel,0,55,2017,March,8,9,1,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.6,0,0,Check-Out,2020-04-02 -City Hotel,0,150,2017,June,28,3,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,122.0,1,2,Check-Out,2019-06-03 -Resort Hotel,1,300,2017,July,33,5,0,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,235.0,179.0,0,Transient,143.91,0,0,Canceled,2019-02-01 -Resort Hotel,0,11,2016,November,26,28,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Group,66.96,0,0,Check-Out,2019-01-03 -City Hotel,0,44,2017,May,21,20,2,4,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,143.22,0,2,Check-Out,2020-03-03 -City Hotel,0,16,2017,February,11,5,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,78.6,0,1,Check-Out,2020-02-01 -City Hotel,1,32,2016,June,27,31,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,131.22,0,0,Canceled,2019-03-04 -City Hotel,0,148,2017,June,27,30,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,98.12,0,0,Check-Out,2020-06-02 -Resort Hotel,0,43,2016,June,21,31,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,61.76,1,2,Check-Out,2019-05-04 -City Hotel,1,161,2017,April,23,29,1,3,3,0.0,0,BB,FRA,Complementary,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,205.53,0,0,Canceled,2020-03-03 -Resort Hotel,0,134,2016,October,27,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,87.0,179.0,64,Transient,67.73,0,0,Check-Out,2019-04-03 -City Hotel,0,1,2016,October,44,18,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,K,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,March,12,28,0,2,2,0.0,0,Undefined,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,141.0,223.0,0,Transient-Party,71.79,0,0,Check-Out,2019-01-03 -City Hotel,0,2,2015,September,38,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,153.5,0,1,Check-Out,2018-06-02 -City Hotel,1,2,2016,August,37,30,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,E,0,No Deposit,168.0,179.0,0,Transient,122.11,0,0,Canceled,2019-08-04 -Resort Hotel,0,57,2016,October,45,2,2,10,1,0.0,0,BB,SWE,Aviation,TA/TO,0,0,0,A,D,0,No Deposit,95.0,179.0,0,Transient,37.26,0,0,Check-Out,2019-08-04 -City Hotel,0,52,2016,September,42,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,43.88,0,3,Check-Out,2019-07-04 -City Hotel,1,10,2015,July,32,10,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,153.58,0,0,Canceled,2018-05-03 -Resort Hotel,0,254,2016,November,44,19,0,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,72.7,0,0,Check-Out,2019-09-03 -City Hotel,0,3,2016,October,45,8,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient,134.17,0,0,Check-Out,2019-08-04 -City Hotel,1,175,2015,July,34,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.43,0,0,Canceled,2018-05-03 -City Hotel,1,94,2017,May,15,28,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,87.38,0,0,Canceled,2020-04-02 -Resort Hotel,0,98,2016,July,43,24,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,74.96,0,2,Check-Out,2019-05-04 -City Hotel,1,39,2017,December,48,21,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.27,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2016,February,10,21,2,3,1,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,283.0,179.0,0,Transient,65.01,0,0,Check-Out,2019-02-01 -Resort Hotel,1,1,2017,February,8,27,1,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,F,0,Non Refund,15.0,331.0,0,Transient,39.67,0,0,Canceled,2019-11-03 -Resort Hotel,1,105,2017,June,21,24,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,A,0,No Deposit,236.0,179.0,0,Transient,152.2,0,0,Canceled,2020-03-03 -City Hotel,0,14,2015,October,43,13,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,90.15,0,0,Check-Out,2018-08-03 -City Hotel,1,50,2016,May,17,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,60.5,0,0,Canceled,2019-01-03 -City Hotel,1,0,2016,December,50,3,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,3.24,0,0,Check-Out,2019-12-04 -City Hotel,1,12,2016,August,39,27,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,61.26,0,0,Canceled,2017-12-03 -Resort Hotel,0,113,2016,May,17,27,0,1,1,0.0,0,HB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,354.0,179.0,0,Transient-Party,123.53,0,0,Check-Out,2019-03-04 -City Hotel,0,112,2016,October,43,9,2,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,170.07,0,2,Check-Out,2019-08-04 -Resort Hotel,0,59,2017,August,16,6,1,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,2,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-07-03 -City Hotel,0,40,2016,May,25,19,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,101.25,0,1,Check-Out,2019-02-01 -City Hotel,1,53,2016,March,15,21,2,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,78.12,0,1,Canceled,2019-02-01 -City Hotel,0,155,2015,September,38,28,2,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,106.58,0,0,Check-Out,2018-08-03 -City Hotel,1,8,2016,March,27,26,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,73.79,0,0,No-Show,2019-02-01 -City Hotel,0,11,2015,July,36,30,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,63.83,1,0,Check-Out,2018-09-02 -Resort Hotel,0,266,2016,March,10,10,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,82.35,0,0,Check-Out,2019-02-01 -City Hotel,1,153,2016,March,25,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,63,Transient,70.07,0,0,Canceled,2019-01-03 -Resort Hotel,0,5,2017,March,11,17,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,16.0,179.0,75,Transient-Party,71.07,1,1,Check-Out,2020-02-01 -Resort Hotel,0,199,2017,August,37,13,1,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,C,1,No Deposit,239.0,179.0,0,Transient,173.1,0,3,Check-Out,2020-07-03 -City Hotel,0,84,2017,May,21,13,1,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,7.0,179.0,0,Transient,105.83,0,0,Check-Out,2020-02-01 -Resort Hotel,0,40,2016,May,23,5,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,133.83,0,2,Check-Out,2019-11-03 -City Hotel,0,99,2016,July,44,23,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,96.23,0,1,Check-Out,2019-11-03 -City Hotel,0,9,2016,September,36,24,0,4,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.3,0,1,Check-Out,2019-06-03 -Resort Hotel,0,141,2016,February,10,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,59.42,0,0,Check-Out,2018-12-03 -City Hotel,0,339,2016,July,34,26,0,2,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,159.26,0,2,Check-Out,2019-05-04 -Resort Hotel,0,0,2017,February,10,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,245.0,331.0,0,Transient-Party,72.59,0,0,Check-Out,2020-02-01 -City Hotel,0,3,2015,September,45,10,0,1,1,0.0,0,HB,PRT,Groups,Corporate,1,0,1,A,A,1,No Deposit,13.0,45.0,0,Group,0.0,0,0,Check-Out,2018-08-03 -City Hotel,1,202,2016,September,38,16,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.47,0,1,Canceled,2019-08-04 -Resort Hotel,0,7,2016,February,10,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,247.0,88.0,0,Transient,61.13,0,0,Check-Out,2019-10-04 -City Hotel,0,155,2016,August,27,2,0,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,82.25,0,0,Check-Out,2019-09-03 -Resort Hotel,1,14,2017,August,12,18,0,1,1,0.0,0,BB,,Groups,Direct,0,0,0,A,E,0,Non Refund,90.0,70.0,0,Transient,110.23,0,0,Canceled,2020-01-04 -Resort Hotel,0,150,2016,July,26,7,4,7,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,72.91,0,0,Check-Out,2020-07-03 -Resort Hotel,0,2,2017,May,23,4,1,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient-Party,98.89,0,1,Check-Out,2020-04-02 -Resort Hotel,0,41,2015,October,51,19,0,4,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient-Party,57.99,0,1,Check-Out,2018-09-02 -City Hotel,0,2,2016,August,35,15,0,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,G,F,0,No Deposit,13.0,179.0,0,Transient,147.63,1,1,Check-Out,2019-06-03 -Resort Hotel,0,89,2015,July,32,6,2,2,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,190.52,0,1,Check-Out,2018-06-02 -City Hotel,0,3,2015,August,36,5,2,2,2,2.0,0,BB,FRA,Direct,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,158.9,0,0,Check-Out,2018-06-02 -City Hotel,1,92,2015,December,50,30,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.78,0,0,Canceled,2019-08-04 -Resort Hotel,1,240,2017,July,31,24,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,207.56,0,0,Canceled,2019-11-03 -Resort Hotel,0,0,2016,February,17,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,68.0,0,Transient,60.77,0,0,Check-Out,2019-04-03 -Resort Hotel,0,254,2016,June,23,16,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,2019-07-04 -City Hotel,0,14,2016,August,33,14,0,2,1,0.0,0,BB,ITA,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,160.61,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2016,December,45,25,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,79.16,0,3,Check-Out,2019-08-04 -City Hotel,0,98,2016,June,26,8,2,0,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,A,E,1,No Deposit,13.0,186.0,0,Transient,82.3,0,0,Check-Out,2019-06-03 -City Hotel,0,43,2017,February,18,18,0,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,77.08,0,0,Check-Out,2020-02-01 -City Hotel,0,0,2016,June,35,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.03,0,0,Check-Out,2019-03-04 -City Hotel,1,159,2016,March,3,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,44,Transient,78.42,0,0,Canceled,2018-11-02 -Resort Hotel,1,306,2015,September,36,24,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.29,0,0,Canceled,2018-08-03 -Resort Hotel,1,45,2016,March,21,18,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,252.0,179.0,0,Transient,74.34,0,0,Canceled,2019-02-01 -Resort Hotel,0,193,2016,May,22,28,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient-Party,79.76,1,0,Check-Out,2019-03-04 -City Hotel,0,11,2017,March,34,10,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.66,0,0,Check-Out,2020-03-03 -City Hotel,1,18,2016,April,23,27,0,1,1,0.0,0,BB,PRT,Groups,GDS,0,0,0,A,B,0,No Deposit,196.0,179.0,0,Transient-Party,1.16,0,0,Canceled,2019-01-03 -City Hotel,1,206,2016,May,23,20,2,5,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,E,E,0,Non Refund,10.0,179.0,0,Transient,69.69,0,0,Canceled,2019-01-03 -Resort Hotel,1,104,2016,July,32,10,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,90.48,0,2,Canceled,2018-04-02 -City Hotel,0,90,2017,July,22,28,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.6,0,0,Check-Out,2020-05-03 -City Hotel,0,0,2017,February,8,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.43,0,1,Check-Out,2019-02-01 -City Hotel,0,15,2017,April,17,18,1,3,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,11.0,163.0,0,Transient,124.74,0,0,Check-Out,2019-11-03 -Resort Hotel,1,242,2017,April,37,30,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,162.0,179.0,0,Transient,84.67,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2017,February,11,2,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,70.77,0,1,Check-Out,2019-11-03 -City Hotel,1,156,2017,March,16,29,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.43,0,0,Canceled,2020-01-04 -City Hotel,0,189,2016,September,43,21,1,5,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,100.08,0,2,Check-Out,2019-07-04 -City Hotel,1,42,2016,March,17,11,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,114.87,0,0,Canceled,2020-01-04 -City Hotel,1,281,2017,August,35,13,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,193.49,0,1,Canceled,2020-07-03 -City Hotel,0,224,2016,September,43,15,0,2,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,133.05,0,0,Check-Out,2019-06-03 -City Hotel,0,0,2017,March,16,21,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,158.01,1,1,Check-Out,2020-02-01 -City Hotel,0,130,2016,October,44,16,0,1,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,81.88,0,1,Check-Out,2019-06-03 -City Hotel,1,342,2015,September,45,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.22,0,0,Canceled,2018-09-02 -City Hotel,0,0,2016,June,26,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,12.0,45.0,0,Transient,83.09,0,2,Check-Out,2019-02-01 -City Hotel,0,52,2017,August,21,6,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.54,0,1,Check-Out,2020-03-03 -Resort Hotel,0,66,2015,October,44,17,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,15.0,229.0,0,Transient,74.89,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2015,August,36,6,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,156.43,0,0,Check-Out,2018-06-02 -City Hotel,0,100,2015,September,35,29,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,206.0,179.0,0,Transient-Party,121.03,0,0,Check-Out,2018-06-02 -Resort Hotel,1,16,2017,February,9,13,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,15.0,331.0,0,Transient,28.05,0,0,Canceled,2019-11-03 -Resort Hotel,0,317,2017,July,33,10,2,7,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Contract,63.95,0,1,Check-Out,2020-07-03 -Resort Hotel,0,9,2017,March,17,29,2,5,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,70.32,1,0,Check-Out,2020-02-01 -Resort Hotel,0,2,2015,October,44,18,1,0,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,101.0,179.0,0,Group,30.7,0,0,Check-Out,2018-08-03 -City Hotel,0,69,2016,December,51,28,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient-Party,62.43,0,0,Check-Out,2019-10-04 -Resort Hotel,0,24,2015,October,46,27,0,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,C,1,No Deposit,15.0,270.0,0,Transient-Party,58.65,0,0,Check-Out,2018-10-03 -Resort Hotel,0,96,2015,October,51,21,2,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,26.56,0,0,Check-Out,2018-10-03 -City Hotel,1,160,2016,October,43,23,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,79.8,0,0,Canceled,2019-05-04 -City Hotel,0,31,2016,June,24,20,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,183.52,0,0,Check-Out,2019-01-03 -City Hotel,0,57,2016,June,30,27,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,131.01,0,0,Check-Out,2019-12-04 -Resort Hotel,0,0,2016,June,28,30,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,316.0,179.0,0,Transient,1.14,0,0,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,April,43,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,151.03,0,0,Check-Out,2019-04-03 -City Hotel,0,1,2017,June,16,17,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.91,0,1,Check-Out,2020-03-03 -Resort Hotel,0,88,2017,March,12,25,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,61.89,0,0,Check-Out,2019-09-03 -City Hotel,0,11,2016,June,36,24,0,2,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,121.98,0,0,Check-Out,2019-12-04 -City Hotel,0,30,2016,June,24,2,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,0,A,I,2,No Deposit,14.0,49.0,0,Transient,67.93,0,2,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,February,9,17,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,331.0,0,Transient,43.69,0,0,Check-Out,2019-03-04 -City Hotel,0,155,2016,April,22,30,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,102.72,0,0,Check-Out,2019-02-01 -City Hotel,0,162,2015,September,45,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,59.55,0,0,Check-Out,2018-08-03 -Resort Hotel,0,1,2016,August,35,21,2,0,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,229.22,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2015,October,44,2,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,22.86,1,0,Check-Out,2018-09-02 -City Hotel,1,164,2017,August,32,15,1,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,202.87,0,0,Canceled,2020-07-03 -Resort Hotel,0,43,2015,November,44,30,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,39.18,0,2,Check-Out,2018-11-02 -Resort Hotel,0,0,2015,December,53,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient,64.26,0,0,Check-Out,2018-10-03 -Resort Hotel,0,79,2015,October,37,25,0,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.94,0,0,Check-Out,2018-08-03 -City Hotel,1,300,2017,March,18,2,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,126.13,0,0,Canceled,2019-11-03 -City Hotel,0,282,2017,June,28,24,0,2,2,2.0,0,SC,AUT,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,4.93,0,0,Check-Out,2020-07-03 -Resort Hotel,1,236,2016,June,27,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,1,1,0,D,D,0,No Deposit,378.0,179.0,0,Contract,102.07,0,2,Canceled,2019-03-04 -Resort Hotel,0,258,2016,June,37,17,3,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,161.0,179.0,0,Transient,118.57,0,0,Check-Out,2019-03-04 -City Hotel,1,10,2016,July,9,24,1,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,142.24,0,0,Canceled,2018-12-03 -Resort Hotel,1,56,2017,January,2,24,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.59,0,0,Canceled,2019-11-03 -City Hotel,0,13,2017,February,9,25,1,0,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,80.0,0,Transient,72.3,0,0,Check-Out,2020-01-04 -Resort Hotel,0,16,2016,April,17,19,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,165.91,0,1,Check-Out,2019-12-04 -Resort Hotel,0,17,2016,November,24,26,0,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,114.42,1,1,Check-Out,2019-06-03 -City Hotel,0,91,2017,July,32,6,0,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,171.52,0,2,Check-Out,2020-06-02 -City Hotel,0,3,2017,March,10,31,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,34.24,0,0,Check-Out,2020-04-02 -Resort Hotel,1,11,2016,February,9,7,2,5,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,244.0,179.0,0,Transient,94.09,0,0,No-Show,2018-12-03 -City Hotel,1,386,2016,October,44,27,2,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,69.45,0,3,Canceled,2019-10-04 -Resort Hotel,0,43,2015,July,44,19,0,3,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,84.52,0,2,Check-Out,2018-06-02 -City Hotel,1,36,2015,August,37,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,93.36,0,0,Canceled,2018-06-02 -City Hotel,0,93,2017,May,19,6,2,1,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,1,0,1,A,C,0,No Deposit,72.0,179.0,0,Transient,97.29,0,1,Check-Out,2020-05-03 -City Hotel,1,286,2016,October,44,30,1,4,2,1.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,74.16,0,3,Canceled,2019-08-04 -City Hotel,0,286,2017,May,23,20,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient-Party,122.48,0,0,Canceled,2020-03-03 -City Hotel,0,0,2015,August,33,21,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,3,No Deposit,8.0,179.0,0,Contract,141.19,0,1,Check-Out,2018-05-03 -Resort Hotel,0,50,2016,May,17,5,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,140.34,0,1,Check-Out,2019-02-01 -City Hotel,0,20,2016,February,8,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,34.95,0,1,Check-Out,2018-12-03 -Resort Hotel,0,55,2017,March,12,15,1,3,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,234.0,0,Transient,41.77,1,0,Check-Out,2020-02-01 -Resort Hotel,0,147,2017,April,23,25,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,160.0,179.0,0,Transient-Party,102.21,0,0,Check-Out,2020-03-03 -City Hotel,1,321,2017,June,22,27,2,5,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,30.0,179.0,0,Transient,102.37,0,0,Canceled,2019-09-03 -Resort Hotel,0,167,2016,June,25,18,0,7,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,E,0,No Deposit,245.0,179.0,0,Transient,95.53,0,0,Check-Out,2019-05-04 -City Hotel,0,3,2016,November,36,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,69.62,0,0,Check-Out,2019-08-04 -City Hotel,0,148,2017,June,25,21,0,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,78.32,0,1,Check-Out,2020-07-03 -City Hotel,0,7,2016,June,26,13,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.94,0,2,Check-Out,2019-03-04 -City Hotel,0,117,2017,June,20,16,1,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,124.17,0,1,Check-Out,2020-07-03 -City Hotel,1,111,2017,March,16,21,2,5,2,1.0,0,HB,USA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,7.0,179.0,0,Transient,77.01,0,1,Canceled,2020-01-04 -City Hotel,1,314,2017,May,20,9,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,0.0,0,0,Canceled,2019-12-04 -City Hotel,1,22,2016,July,19,15,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,209.63,0,0,Canceled,2020-02-01 -City Hotel,0,13,2016,December,5,29,1,3,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,108.54,0,0,Check-Out,2019-11-03 -City Hotel,0,35,2016,June,25,8,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,149.8,0,1,Check-Out,2019-05-04 -City Hotel,0,43,2015,July,30,13,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,88.23,0,0,Check-Out,2018-12-03 -City Hotel,1,24,2016,January,3,28,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.92,0,0,Canceled,2018-11-02 -City Hotel,1,11,2016,October,46,19,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,89.4,0,0,No-Show,2018-09-02 -City Hotel,0,27,2016,July,32,13,2,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,77.18,0,3,Check-Out,2019-04-03 -City Hotel,0,3,2017,August,36,29,1,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,93.12,1,2,Check-Out,2020-07-03 -Resort Hotel,0,0,2015,November,44,20,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,F,F,1,No Deposit,17.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,1,259,2016,August,35,20,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Contract,97.42,0,0,Canceled,2020-05-03 -Resort Hotel,0,2,2016,October,45,14,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,73.0,179.0,0,Transient,62.73,0,0,Check-Out,2019-08-04 -Resort Hotel,0,57,2016,August,36,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,80.51,0,1,Check-Out,2019-07-04 -City Hotel,0,1,2016,December,51,28,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,254.0,179.0,0,Transient,122.25,1,0,Check-Out,2019-10-04 -Resort Hotel,0,275,2016,March,11,31,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,77.16,0,0,Check-Out,2019-06-03 -City Hotel,0,13,2016,November,51,5,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,87.87,0,0,Check-Out,2019-10-04 -City Hotel,0,34,2016,March,19,10,1,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,205.04,0,1,Check-Out,2019-03-04 -City Hotel,1,188,2017,August,37,27,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.35,0,0,Canceled,2019-12-04 -City Hotel,0,13,2017,March,7,20,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,1,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,1.8,0,0,Check-Out,2020-02-01 -City Hotel,0,2,2017,June,26,2,0,1,1,0.0,0,BB,USA,Corporate,Corporate,1,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient,109.49,0,0,Check-Out,2020-03-03 -City Hotel,0,405,2016,June,27,10,1,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.33,0,0,Canceled,2020-06-02 -City Hotel,0,0,2016,April,16,30,0,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,11.0,179.0,0,Transient,121.42,0,3,Check-Out,2020-06-02 -City Hotel,1,49,2016,December,21,27,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.94,0,2,Canceled,2019-10-04 -City Hotel,0,14,2015,August,36,5,2,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,B,B,0,No Deposit,17.0,179.0,0,Transient,154.23,0,1,Check-Out,2018-12-03 -Resort Hotel,0,231,2015,July,28,22,2,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Contract,63.19,0,2,Check-Out,2018-06-02 -City Hotel,1,156,2017,August,29,20,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,120.08,0,0,Canceled,2020-06-02 -Resort Hotel,1,2,2016,February,9,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,13.0,76.0,0,Transient,63.05,0,0,Canceled,2018-10-03 -Resort Hotel,1,97,2017,May,21,24,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,309.0,179.0,0,Transient,146.68,0,0,Canceled,2020-02-01 -City Hotel,0,107,2017,June,22,28,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,9.0,179.0,0,Transient,199.99,0,0,Check-Out,2020-03-03 -City Hotel,0,60,2017,April,23,24,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,C,D,0,No Deposit,13.0,179.0,0,Transient,59.55,0,3,Check-Out,2019-12-04 -City Hotel,0,35,2017,April,15,30,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,92.6,0,0,Check-Out,2020-04-02 -Resort Hotel,0,37,2016,September,30,5,2,5,2,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,242.0,179.0,0,Transient,196.79,1,1,Check-Out,2019-07-04 -City Hotel,1,354,2016,September,45,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,38,Transient,117.67,0,0,Canceled,2019-04-03 -City Hotel,0,94,2016,November,44,5,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,39.32,0,0,Check-Out,2019-11-03 -City Hotel,0,99,2015,October,46,13,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,59.05,0,0,Check-Out,2018-09-02 -Resort Hotel,0,192,2017,March,17,20,1,0,1,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,276.0,179.0,0,Transient-Party,38.44,0,0,Check-Out,2019-12-04 -Resort Hotel,0,13,2017,May,20,11,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,106.26,1,0,Check-Out,2020-04-02 -City Hotel,0,29,2016,November,46,15,2,0,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,185.4,0,0,Check-Out,2019-08-04 -City Hotel,1,0,2016,January,3,28,0,3,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,7.0,179.0,0,Transient,65.39,0,1,No-Show,2018-12-03 -City Hotel,0,318,2016,June,32,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,155.81,0,1,Check-Out,2019-05-04 -City Hotel,0,71,2016,September,43,3,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.72,0,0,Check-Out,2019-07-04 -Resort Hotel,1,62,2016,August,4,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,238.0,179.0,0,Transient,61.4,0,0,Canceled,2018-12-03 -Resort Hotel,0,16,2015,November,46,5,0,1,1,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.4,0,0,Check-Out,2018-09-02 -City Hotel,0,0,2015,July,33,30,0,2,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,100.29,0,0,Check-Out,2018-06-02 -Resort Hotel,0,256,2017,June,27,24,0,3,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,153.4,0,1,Check-Out,2019-06-03 -Resort Hotel,0,237,2017,May,17,7,1,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,106.44,0,0,Check-Out,2020-03-03 -City Hotel,1,27,2016,June,24,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.36,0,0,Canceled,2019-02-01 -Resort Hotel,1,288,2016,December,53,27,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,269.0,179.0,0,Transient,74.56,0,0,Check-Out,2019-12-04 -Resort Hotel,0,92,2017,May,20,18,2,2,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,91.3,0,3,Check-Out,2020-03-03 -City Hotel,0,0,2017,January,2,31,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,76.0,0,Transient,33.28,0,0,Check-Out,2019-12-04 -City Hotel,0,100,2017,July,31,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.69,0,1,Check-Out,2020-05-03 -Resort Hotel,0,101,2017,July,27,27,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,160.69,0,0,Check-Out,2020-06-02 -Resort Hotel,0,98,2016,August,35,16,2,3,2,0.0,0,HB,,Direct,Direct,0,0,0,A,D,1,No Deposit,17.0,179.0,0,Transient,101.9,0,0,Check-Out,2019-06-03 -Resort Hotel,0,24,2015,October,45,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient-Party,64.2,1,0,Check-Out,2018-09-02 -City Hotel,1,253,2016,July,34,5,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,118.55,0,2,Canceled,2019-05-04 -Resort Hotel,1,267,2016,December,52,15,2,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,61.96,0,1,Canceled,2019-08-04 -City Hotel,0,13,2017,August,37,18,0,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,3,No Deposit,9.0,179.0,0,Transient,95.27,0,1,Check-Out,2020-07-03 -City Hotel,0,36,2016,June,37,18,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,131.85,0,2,Check-Out,2019-05-04 -Resort Hotel,0,196,2016,July,38,24,2,4,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,186.0,179.0,0,Transient,64.03,0,0,Check-Out,2019-05-04 -City Hotel,0,52,2016,August,36,28,2,5,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,132.19,0,1,Check-Out,2020-04-02 -City Hotel,0,38,2017,June,23,10,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.3,0,0,Check-Out,2020-05-03 -City Hotel,0,51,2016,April,21,23,2,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,116.87,0,1,Check-Out,2020-02-01 -City Hotel,0,2,2016,April,16,21,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.99,0,2,Check-Out,2019-06-03 -Resort Hotel,0,7,2016,November,50,30,2,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,G,1,No Deposit,246.0,179.0,0,Transient-Party,153.13,1,0,Check-Out,2019-08-04 -City Hotel,0,0,2017,September,21,15,2,4,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,131.02,0,1,Check-Out,2019-11-03 -City Hotel,0,16,2017,June,26,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,F,0,No Deposit,11.0,230.0,0,Transient-Party,103.74,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2016,April,15,30,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,D,0,No Deposit,17.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,1,259,2016,July,33,15,2,7,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,128.38,0,2,Canceled,2019-02-01 -City Hotel,0,2,2016,October,46,31,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,127.72,1,0,Check-Out,2019-07-04 -City Hotel,0,138,2016,July,35,2,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,9.0,179.0,0,Transient,99.92,0,0,Check-Out,2019-06-03 -Resort Hotel,0,11,2015,September,36,16,0,2,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Check-Out,2018-08-03 -City Hotel,0,121,2016,June,25,28,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.42,0,2,Check-Out,2019-04-03 -City Hotel,1,149,2016,August,37,4,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,160.51,0,0,Canceled,2019-01-03 -Resort Hotel,0,5,2017,May,24,30,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,117.75,0,1,Check-Out,2020-04-02 -Resort Hotel,0,105,2017,April,17,30,2,1,1,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,252.0,1,2,Check-Out,2019-12-04 -City Hotel,1,6,2015,September,46,29,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.2,0,0,Canceled,2018-01-03 -Resort Hotel,0,293,2016,July,32,13,1,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,190.0,179.0,0,Contract,78.43,0,0,Check-Out,2019-05-04 -Resort Hotel,1,101,2017,June,21,9,2,5,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,305.0,179.0,0,Transient,213.97,0,0,Canceled,2020-04-02 -City Hotel,0,58,2016,October,43,18,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-08-04 -City Hotel,0,419,2016,October,44,30,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.77,0,1,Check-Out,2019-08-04 -City Hotel,1,18,2016,May,20,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,124.62,0,0,Canceled,2019-01-03 -Resort Hotel,0,58,2015,December,53,25,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,60.63,0,2,Check-Out,2018-11-02 -City Hotel,1,52,2017,July,17,14,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,205.37,0,0,Canceled,2020-03-03 -City Hotel,1,107,2017,May,21,13,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,7.0,179.0,0,Transient,90.05,0,0,Canceled,2020-03-03 -City Hotel,1,146,2017,June,27,17,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,150.81,0,0,Canceled,2020-06-02 -Resort Hotel,1,49,2015,December,44,23,2,5,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,108.13,0,2,Canceled,2018-06-02 -Resort Hotel,0,3,2017,February,10,13,2,0,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,52.25,0,0,Check-Out,2019-12-04 -City Hotel,0,25,2016,October,41,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,66.15,0,0,Check-Out,2018-09-02 -Resort Hotel,0,32,2016,June,24,19,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,69.0,0,0,Check-Out,2019-04-03 -City Hotel,0,51,2017,August,36,12,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,169.54,0,2,Check-Out,2020-06-02 -City Hotel,1,263,2017,June,27,27,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,148.37,0,0,Canceled,2020-03-03 -City Hotel,0,50,2017,August,33,6,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,200.98,0,3,Check-Out,2020-06-02 -Resort Hotel,0,90,2017,May,20,31,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,203.19,0,1,Check-Out,2020-03-03 -City Hotel,0,279,2016,May,21,24,1,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,78.06,0,0,Check-Out,2019-06-03 -Resort Hotel,0,205,2017,April,17,22,2,5,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,33.8,0,0,Check-Out,2020-03-03 -City Hotel,0,149,2017,June,28,17,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,124.32,0,1,Check-Out,2020-03-03 -Resort Hotel,1,95,2017,March,11,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,257.0,179.0,0,Transient-Party,75.14,0,0,Check-Out,2020-02-01 -Resort Hotel,0,0,2017,July,30,26,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,105.58,0,2,Check-Out,2018-05-03 -Resort Hotel,1,242,2016,August,27,16,0,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,190.28,0,0,Canceled,2019-06-03 -Resort Hotel,0,3,2017,February,9,30,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,17.0,92.0,0,Transient,37.29,0,0,Check-Out,2019-04-03 -City Hotel,1,142,2017,April,9,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,Non Refund,12.0,57.0,0,Transient,70.92,0,0,Canceled,2019-04-03 -Resort Hotel,0,44,2017,March,16,16,1,3,2,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,222.0,0,Transient-Party,38.97,1,0,Check-Out,2020-03-03 -Resort Hotel,0,92,2016,August,35,6,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,154.33,0,2,Check-Out,2019-09-03 -Resort Hotel,1,267,2016,July,34,14,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,65.88,0,0,Canceled,2018-05-03 -City Hotel,0,19,2015,October,48,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,228.0,0,Transient-Party,72.17,0,0,Check-Out,2018-09-02 -Resort Hotel,0,45,2016,October,44,5,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,E,0,No Deposit,240.0,179.0,0,Group,46.31,0,3,Check-Out,2018-11-02 -City Hotel,0,224,2016,June,25,18,0,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,77.18,0,2,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,January,5,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,236.0,179.0,0,Transient,60.73,1,0,Check-Out,2018-11-02 -City Hotel,0,301,2016,July,36,10,2,5,2,0.0,0,HB,,Offline TA/TO,GDS,0,0,0,A,A,2,No Deposit,178.0,179.0,0,Transient,119.41,0,0,Check-Out,2018-06-02 -Resort Hotel,0,1,2017,January,11,28,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,176.0,179.0,0,Transient,120.27,0,0,Check-Out,2019-11-03 -Resort Hotel,0,1,2016,February,9,1,0,2,1,0.0,0,Undefined,GBR,Corporate,Direct,0,0,0,D,D,1,No Deposit,206.0,331.0,0,Transient,37.52,0,1,Check-Out,2019-04-03 -City Hotel,0,107,2017,August,35,30,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,93.65,0,2,Check-Out,2019-11-03 -Resort Hotel,0,108,2016,June,17,24,0,10,2,0.0,0,FB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,326.0,179.0,0,Transient,76.38,0,1,Check-Out,2019-03-04 -City Hotel,0,137,2016,July,34,16,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,72.29,0,0,Canceled,2019-02-01 -City Hotel,0,17,2016,September,45,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,111.29,0,2,Check-Out,2019-09-03 -City Hotel,1,1,2015,August,35,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,93.39,0,0,Canceled,2018-05-03 -Resort Hotel,0,273,2016,August,43,29,2,5,2,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,240.0,179.0,0,Transient,132.89,1,2,Check-Out,2020-03-03 -Resort Hotel,1,142,2016,February,12,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,1,No Deposit,195.0,179.0,0,Transient,67.06,0,0,Canceled,2018-11-02 -City Hotel,1,390,2016,October,44,7,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.09,0,0,Canceled,2019-08-04 -Resort Hotel,1,148,2017,May,23,27,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,90.77,0,0,Canceled,2020-04-02 -City Hotel,0,41,2016,June,43,2,2,7,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,161.48,0,3,Check-Out,2019-06-03 -City Hotel,0,44,2016,December,53,13,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,63.46,0,2,Check-Out,2018-11-02 -City Hotel,0,3,2016,October,45,2,0,1,2,2.0,0,BB,USA,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,225.63,0,0,Check-Out,2019-07-04 -Resort Hotel,0,0,2017,January,10,15,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,13.0,179.0,0,Transient,70.72,0,3,Check-Out,2020-01-04 -Resort Hotel,1,95,2016,May,24,6,1,1,1,0.0,0,FB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,84.82,0,0,Canceled,2019-02-01 -City Hotel,1,183,2016,September,37,21,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.15,0,2,Canceled,2019-06-03 -Resort Hotel,0,253,2015,December,42,5,0,4,1,1.0,0,HB,ESP,Complementary,Direct,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,108.7,0,0,Check-Out,2018-05-03 -City Hotel,0,4,2015,July,42,20,0,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,72.75,0,0,Check-Out,2018-08-03 -City Hotel,1,160,2017,February,10,25,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,71.8,0,0,Canceled,2019-08-04 -City Hotel,0,33,2017,June,24,30,2,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient-Party,65.68,1,0,Check-Out,2020-04-02 -City Hotel,0,2,2015,October,41,2,0,1,1,0.0,0,BB,CHE,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.13,0,3,Check-Out,2019-06-03 -City Hotel,0,97,2016,December,53,8,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,128.25,0,3,Check-Out,2019-10-04 -City Hotel,0,196,2017,May,20,31,2,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient-Party,100.83,0,0,Check-Out,2020-04-02 -Resort Hotel,1,35,2015,July,34,6,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,236.0,179.0,0,Transient-Party,82.43,1,1,Canceled,2018-07-03 -City Hotel,1,406,2016,October,43,13,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,30.0,179.0,0,Transient,123.85,0,0,Canceled,2019-11-03 -City Hotel,0,44,2016,November,49,9,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,65.32,0,1,Check-Out,2019-12-04 -Resort Hotel,0,93,2016,July,30,30,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,199.59,0,0,Check-Out,2019-08-04 -Resort Hotel,1,96,2016,September,37,10,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,127.77,0,0,No-Show,2019-06-03 -City Hotel,0,374,2016,October,42,16,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.77,0,1,Canceled,2019-09-03 -Resort Hotel,0,275,2016,September,36,17,4,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,37.65,0,0,Check-Out,2019-05-04 -Resort Hotel,0,48,2017,December,10,17,0,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,125.84,1,2,Check-Out,2019-12-04 -Resort Hotel,0,0,2017,July,25,17,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,A,I,2,No Deposit,178.0,179.0,0,Transient,2.31,0,0,Check-Out,2020-05-03 -City Hotel,1,48,2016,July,34,27,2,4,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,170.35,0,1,Canceled,2019-06-03 -City Hotel,1,55,2016,July,36,4,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.59,0,1,Canceled,2018-05-03 -Resort Hotel,1,90,2016,May,22,5,2,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,70.18,0,0,Canceled,2019-01-03 -Resort Hotel,0,266,2015,August,35,17,0,5,2,0.0,0,HB,CHN,Direct,TA/TO,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,88.53,1,0,Check-Out,2018-05-03 -Resort Hotel,0,2,2017,January,2,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,74.0,0,Transient,38.79,1,0,Check-Out,2019-11-03 -Resort Hotel,0,2,2016,August,32,2,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,19.0,179.0,0,Transient,102.31,1,1,Check-Out,2019-04-03 -Resort Hotel,0,1,2016,June,36,5,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,193.0,179.0,0,Transient,39.38,0,0,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,February,10,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,34.48,0,0,Check-Out,2019-01-03 -City Hotel,1,21,2017,June,37,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,159.0,179.0,0,Transient,98.58,0,0,Canceled,2020-03-03 -Resort Hotel,0,301,2016,May,18,31,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,Refundable,14.0,222.0,0,Transient-Party,67.51,0,0,Check-Out,2019-03-04 -City Hotel,1,170,2016,March,17,10,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.01,0,0,Canceled,2018-12-03 -Resort Hotel,0,2,2015,December,49,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,62.19,0,0,Check-Out,2018-08-03 -City Hotel,0,2,2017,February,10,20,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,72.42,1,0,Check-Out,2020-01-04 -Resort Hotel,0,14,2015,December,52,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,160.88,0,2,Check-Out,2018-11-02 -Resort Hotel,0,252,2015,July,36,25,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,81.96,0,0,Check-Out,2020-06-02 -City Hotel,0,103,2016,October,49,9,1,3,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,143.63,0,2,Check-Out,2019-06-03 -City Hotel,0,34,2016,July,27,15,0,2,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,116.39,0,0,Check-Out,2019-06-03 -City Hotel,1,0,2016,February,3,27,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,1,0,A,K,0,No Deposit,7.0,179.0,0,Transient,0.0,0,0,Canceled,2019-10-04 -City Hotel,0,15,2016,October,5,5,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.21,0,1,Check-Out,2019-02-01 -Resort Hotel,0,39,2017,March,10,13,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,76.83,0,1,Check-Out,2020-05-03 -City Hotel,0,44,2016,July,31,1,2,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,209.55,0,2,Check-Out,2019-06-03 -City Hotel,0,168,2016,July,36,15,1,5,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.17,0,2,Check-Out,2019-04-03 -Resort Hotel,0,23,2017,February,10,8,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,322.0,179.0,0,Transient,76.11,0,0,Check-Out,2019-12-04 -Resort Hotel,0,1,2017,July,36,30,0,4,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,239.85,1,0,Check-Out,2019-10-04 -City Hotel,0,52,2015,December,50,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,16,Transient-Party,60.63,0,0,Check-Out,2018-07-03 -City Hotel,0,103,2016,August,36,5,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,137.5,0,0,Check-Out,2019-05-04 -Resort Hotel,0,16,2016,July,33,5,0,4,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,130.58,1,2,Check-Out,2020-06-02 -Resort Hotel,0,4,2016,July,53,28,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,245.0,179.0,0,Transient,37.64,1,2,Check-Out,2019-01-03 -City Hotel,0,1,2017,June,26,10,1,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,141.36,0,0,Check-Out,2020-04-02 -City Hotel,0,162,2016,June,28,23,0,2,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,115.05,0,0,Check-Out,2019-04-03 -City Hotel,0,18,2017,April,17,27,0,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.41,0,1,Check-Out,2020-01-04 -City Hotel,0,19,2016,August,36,24,2,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,106.01,0,0,Check-Out,2019-06-03 -Resort Hotel,0,19,2015,September,37,10,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,A,0,No Deposit,1.0,179.0,0,Group,61.31,0,0,Check-Out,2018-06-02 -City Hotel,0,146,2016,December,46,29,2,4,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,124.6,0,0,Check-Out,2019-05-04 -City Hotel,0,37,2016,March,13,30,2,5,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,13.0,179.0,0,Transient,72.17,0,3,Check-Out,2019-02-01 -Resort Hotel,1,17,2016,August,32,4,1,3,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,247.2,0,0,Canceled,2019-11-03 -Resort Hotel,0,190,2017,June,25,27,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,132.24,0,0,Check-Out,2020-07-03 -City Hotel,1,315,2015,October,43,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.2,0,0,Canceled,2017-12-03 -Resort Hotel,0,141,2016,March,14,31,1,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,2,Refundable,10.0,179.0,0,Transient,63.99,0,0,Check-Out,2019-02-01 -City Hotel,0,46,2016,July,36,21,2,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-06-03 -City Hotel,0,15,2016,February,8,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,85.0,0,Transient,35.12,0,0,Check-Out,2019-12-04 -City Hotel,0,3,2016,January,3,10,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.69,0,2,Check-Out,2019-04-03 -City Hotel,0,10,2017,June,27,28,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,191.88,0,0,Check-Out,2020-04-02 -City Hotel,0,47,2016,August,33,18,3,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,100.73,0,1,Check-Out,2019-06-03 -City Hotel,0,286,2015,September,50,18,2,1,2,0.0,0,HB,RUS,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,116.08,0,0,Check-Out,2018-08-03 -City Hotel,0,14,2017,May,23,10,2,0,1,0.0,0,SC,ITA,Direct,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,113.65,0,0,Check-Out,2020-03-03 -City Hotel,1,55,2016,August,36,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,75.66,0,0,Canceled,2019-03-04 -City Hotel,1,5,2015,December,44,13,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,84.61,0,0,Canceled,2018-08-03 -Resort Hotel,0,15,2015,December,53,18,1,1,2,0.0,0,Undefined,IRL,Direct,Direct,0,0,0,A,D,2,No Deposit,338.0,179.0,0,Transient,45.5,0,0,Check-Out,2018-11-02 -Resort Hotel,1,286,2015,August,40,19,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient-Party,193.82,0,0,Canceled,2018-06-02 -Resort Hotel,1,336,2017,April,17,29,2,5,2,1.0,0,BB,PRT,Direct,Corporate,0,0,0,D,E,1,No Deposit,13.0,179.0,0,Transient,78.08,0,0,Canceled,2019-09-03 -Resort Hotel,1,46,2015,December,50,17,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,124.24,0,2,Canceled,2018-08-03 -Resort Hotel,1,29,2016,February,18,24,1,2,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,38.0,179.0,0,Transient-Party,88.61,0,0,Canceled,2018-12-03 -Resort Hotel,1,294,2015,August,37,10,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,58.65,0,0,Canceled,2018-06-02 -City Hotel,1,337,2017,April,21,11,0,3,2,0.0,0,SC,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,85.91,0,0,Canceled,2019-10-04 -Resort Hotel,0,92,2016,August,37,29,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,203.03,0,1,Check-Out,2019-04-03 -City Hotel,1,26,2015,August,33,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,65.94,0,0,Canceled,2018-05-03 -City Hotel,1,248,2015,July,32,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,122.03,0,0,Canceled,2018-06-02 -City Hotel,1,252,2016,October,22,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,67.07,0,0,Canceled,2018-11-02 -City Hotel,0,1,2016,November,52,7,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,228.0,0,Transient,81.34,0,0,Check-Out,2018-09-02 -City Hotel,0,1,2015,July,32,15,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,63.61,0,2,Check-Out,2018-06-02 -City Hotel,1,35,2015,December,53,2,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,0,No Deposit,13.0,179.0,0,Transient,115.19,0,0,No-Show,2019-01-03 -City Hotel,0,113,2016,May,22,8,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,100.57,0,0,Check-Out,2019-05-04 -City Hotel,0,0,2015,October,44,31,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,99.93,0,0,Check-Out,2018-09-02 -City Hotel,0,14,2017,March,17,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,71.0,179.0,0,Group,90.99,0,1,Check-Out,2019-10-04 -City Hotel,1,97,2016,October,8,13,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,75,Transient-Party,76.85,0,0,Canceled,2018-12-03 -Resort Hotel,1,130,2017,June,27,2,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,164.64,0,0,Canceled,2020-03-03 -Resort Hotel,0,1,2017,July,5,18,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,251.0,179.0,0,Transient,252.0,0,3,Check-Out,2020-06-02 -City Hotel,1,311,2017,August,31,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.12,0,0,Canceled,2018-01-03 -City Hotel,1,2,2016,March,8,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,63.05,0,0,No-Show,2018-11-02 -City Hotel,1,24,2016,March,53,30,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,121.05,0,0,Canceled,2018-11-02 -City Hotel,0,37,2017,April,16,18,2,5,1,0.0,0,BB,SWE,Aviation,Corporate,1,0,0,E,D,1,No Deposit,13.0,181.0,0,Transient,129.17,0,0,Check-Out,2020-04-02 -City Hotel,1,62,2015,November,37,15,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,11.0,179.0,64,Transient,105.57,0,0,Canceled,2018-07-03 -City Hotel,1,41,2016,December,38,24,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,148.01,0,0,Canceled,2018-11-02 -City Hotel,0,0,2016,January,3,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,93.28,0,0,Check-Out,2018-12-03 -City Hotel,1,7,2016,June,27,6,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.2,0,1,Canceled,2019-04-03 -City Hotel,0,14,2017,April,17,6,2,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,F,3,No Deposit,250.0,255.0,0,Transient,161.84,0,0,Check-Out,2020-04-02 -City Hotel,1,256,2015,October,46,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,60.85,0,1,Canceled,2018-09-02 -Resort Hotel,0,46,2016,June,24,6,1,0,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,60.29,0,0,Check-Out,2019-03-04 -City Hotel,0,10,2016,October,44,21,0,1,2,0.0,0,SC,SWE,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.04,0,1,Check-Out,2019-09-03 -Resort Hotel,0,232,2015,September,44,31,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,71.64,0,0,Check-Out,2018-01-03 -Resort Hotel,0,15,2016,September,42,21,1,0,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,1.31,0,0,Check-Out,2019-07-04 -City Hotel,0,0,2017,February,9,10,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.63,0,0,Check-Out,2018-10-03 -City Hotel,1,41,2016,December,53,28,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.22,0,1,Canceled,2018-11-02 -City Hotel,1,413,2017,May,22,2,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.39,0,0,Canceled,2019-11-03 -City Hotel,1,56,2017,February,10,27,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,7.0,179.0,0,Transient,198.35,0,1,Canceled,2019-11-03 -Resort Hotel,0,33,2016,June,29,9,0,3,2,2.0,0,BB,IRL,Online TA,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,152.78,0,1,Check-Out,2019-02-01 -Resort Hotel,0,245,2016,June,26,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,117.25,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2017,March,10,31,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,134.74,1,0,Check-Out,2020-01-04 -Resort Hotel,0,51,2016,July,26,25,2,3,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,247.73,0,2,Check-Out,2020-04-02 -Resort Hotel,0,44,2017,February,12,30,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,98.21,0,0,Canceled,2019-10-04 -City Hotel,1,19,2015,November,44,14,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,12.0,45.0,0,Transient,44.1,0,0,Canceled,2018-08-03 -City Hotel,0,39,2016,November,51,26,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,3,No Deposit,240.0,179.0,0,Transient,117.38,0,1,Check-Out,2019-06-03 -Resort Hotel,0,202,2016,October,42,2,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,71.91,1,0,Check-Out,2019-07-04 -City Hotel,0,18,2016,October,43,31,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,A,2,No Deposit,15.0,45.0,0,Transient,0.0,0,2,Check-Out,2019-09-03 -Resort Hotel,1,12,2016,July,26,17,0,4,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,163.87,0,0,Canceled,2019-08-04 -City Hotel,0,15,2016,May,27,5,0,1,1,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.27,0,0,Check-Out,2019-03-04 -City Hotel,1,21,2017,March,17,4,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,B,E,0,No Deposit,69.0,179.0,0,Transient,114.57,0,0,Canceled,2020-02-01 -City Hotel,0,2,2016,June,26,2,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,126.31,0,1,Check-Out,2019-02-01 -City Hotel,0,8,2016,December,52,29,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,77.78,0,2,Check-Out,2019-10-04 -City Hotel,1,259,2016,July,29,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.18,0,0,Canceled,2019-05-04 -Resort Hotel,1,205,2016,September,35,30,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,262.0,179.0,0,Transient,0.52,0,3,Canceled,2019-07-04 -City Hotel,1,165,2015,October,41,29,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,293.0,179.0,0,Transient-Party,66.19,0,2,Canceled,2018-08-03 -Resort Hotel,0,2,2016,March,20,6,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,35.75,1,0,Check-Out,2019-03-04 -City Hotel,1,258,2016,October,43,23,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,134.17,0,0,Canceled,2019-11-03 -Resort Hotel,0,13,2016,August,33,6,0,7,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,130.15,0,2,Check-Out,2019-08-04 -City Hotel,0,87,2017,May,21,2,2,4,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,117.16,0,0,Check-Out,2020-02-01 -City Hotel,0,58,2017,May,20,15,1,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.43,0,3,Check-Out,2020-04-02 -City Hotel,1,233,2016,February,25,4,3,0,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,2,No Deposit,246.0,179.0,0,Transient,150.62,0,3,Check-Out,2019-11-03 -City Hotel,0,49,2015,October,42,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,26.35,0,1,Check-Out,2018-08-03 -City Hotel,1,96,2016,September,28,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.89,0,0,Canceled,2018-08-03 -City Hotel,0,38,2016,January,25,24,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.66,0,1,Check-Out,2019-10-04 -Resort Hotel,0,108,2016,December,53,15,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,137.21,0,2,Check-Out,2019-11-03 -City Hotel,1,0,2016,January,12,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,10.0,68.0,0,Transient,35.91,0,0,Canceled,2018-10-03 -City Hotel,0,13,2016,May,26,20,2,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,102.66,1,1,Check-Out,2019-02-01 -City Hotel,0,108,2016,March,16,23,1,4,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.44,0,1,Check-Out,2020-04-02 -City Hotel,1,93,2016,May,28,17,1,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,93.14,0,0,Canceled,2019-02-01 -City Hotel,0,19,2015,October,41,22,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,79.55,0,0,Check-Out,2018-09-02 -Resort Hotel,0,148,2016,August,37,15,0,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,214.97,1,0,Check-Out,2019-06-03 -City Hotel,0,54,2016,October,42,5,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,126.35,0,0,Check-Out,2018-08-03 -Resort Hotel,0,2,2016,June,25,27,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,2,No Deposit,250.0,179.0,0,Transient,177.79,1,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,March,28,9,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,59.76,1,0,Check-Out,2019-03-04 -Resort Hotel,0,116,2017,May,22,5,0,4,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,131.91,0,0,Check-Out,2020-02-01 -City Hotel,0,243,2016,August,38,7,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.13,0,1,Check-Out,2019-06-03 -City Hotel,1,38,2016,November,11,25,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,80.7,0,0,Canceled,2019-06-03 -Resort Hotel,1,150,2016,February,11,20,2,3,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,1,No Deposit,84.0,179.0,0,Transient-Party,99.15,0,0,Canceled,2019-12-04 -City Hotel,0,13,2017,May,27,20,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,126.12,0,0,Check-Out,2020-06-02 -Resort Hotel,0,12,2017,January,3,27,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,319.0,79.0,0,Transient,58.56,0,0,Check-Out,2019-11-03 -City Hotel,0,88,2016,October,52,9,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,79.47,0,0,Check-Out,2019-11-03 -Resort Hotel,0,212,2017,August,32,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,D,D,2,No Deposit,178.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-01-04 -City Hotel,1,143,2017,June,27,17,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,70.37,0,1,Canceled,2019-03-04 -City Hotel,0,184,2017,June,22,12,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.94,0,0,Check-Out,2020-05-03 -City Hotel,0,116,2015,December,52,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.93,0,0,Check-Out,2018-12-03 -Resort Hotel,0,161,2017,May,27,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,87.41,0,2,Check-Out,2020-07-03 -Resort Hotel,0,20,2016,July,39,30,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,191.0,179.0,0,Transient,118.36,1,1,Check-Out,2019-08-04 -City Hotel,1,322,2016,April,23,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,80.97,0,0,Canceled,2019-02-01 -City Hotel,1,10,2016,June,28,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,Non Refund,16.0,179.0,0,Transient,71.32,0,0,Canceled,2019-04-03 -City Hotel,0,13,2017,August,31,19,2,4,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,9.0,179.0,0,Transient,99.92,0,2,Check-Out,2019-06-03 -City Hotel,1,228,2016,September,46,6,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,173.23,0,0,Canceled,2019-02-01 -City Hotel,1,2,2017,February,9,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,62.0,0,Transient,87.47,0,0,Canceled,2018-11-02 -City Hotel,1,85,2017,March,12,15,0,3,3,2.0,0,BB,BRA,Direct,Direct,0,0,0,E,F,1,No Deposit,12.0,179.0,0,Transient,231.38,0,0,Canceled,2019-10-04 -Resort Hotel,0,192,2016,June,21,16,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,95.17,0,0,Check-Out,2019-05-04 -City Hotel,0,191,2016,April,50,23,2,5,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,E,2,No Deposit,15.0,69.0,0,Transient,123.89,0,0,Check-Out,2019-06-03 -Resort Hotel,1,263,2016,December,30,20,2,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,167.3,0,0,Canceled,2019-10-04 -City Hotel,1,91,2016,April,13,9,1,2,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,39,Transient-Party,98.95,0,0,Canceled,2019-01-03 -City Hotel,1,3,2016,July,32,21,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,9.0,179.0,0,Transient,149.93,0,1,Canceled,2019-01-03 -Resort Hotel,0,11,2016,January,3,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,240.0,179.0,0,Transient,45.44,1,0,Check-Out,2019-06-03 -City Hotel,0,13,2015,December,51,10,0,3,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,71.47,0,0,Check-Out,2019-10-04 -City Hotel,0,163,2016,September,44,31,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,131.94,0,3,Check-Out,2019-08-04 -City Hotel,1,315,2017,August,37,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,101.62,0,0,Canceled,2019-11-03 -City Hotel,1,404,2016,September,50,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,66,Transient,75.56,0,0,Canceled,2018-10-03 -City Hotel,0,0,2015,September,37,26,0,1,2,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,83.09,0,0,Check-Out,2019-08-04 -City Hotel,0,266,2016,July,32,9,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.28,0,0,Check-Out,2019-05-04 -City Hotel,1,406,2015,October,45,6,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.51,0,0,Canceled,2018-08-03 -City Hotel,0,46,2017,April,16,9,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,153.8,0,0,Check-Out,2020-02-01 -Resort Hotel,0,297,2015,July,34,30,2,5,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.89,0,0,Check-Out,2019-05-04 -Resort Hotel,0,15,2016,August,37,14,0,1,1,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,172.49,0,0,Check-Out,2019-05-04 -City Hotel,0,43,2016,October,44,5,1,1,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.52,0,0,Check-Out,2019-11-03 -City Hotel,0,5,2017,July,25,22,0,3,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,A,2,No Deposit,12.0,179.0,0,Transient,1.52,0,1,Canceled,2020-06-02 -City Hotel,1,13,2017,February,10,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,203.0,0,Transient,62.05,0,0,Canceled,2019-11-03 -City Hotel,0,247,2016,March,10,27,2,1,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,157.0,0,0,Check-Out,2019-11-03 -Resort Hotel,0,18,2016,May,22,2,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,130.92,1,1,Check-Out,2019-03-04 -Resort Hotel,0,33,2016,May,28,2,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,217.12,1,2,Check-Out,2019-06-03 -Resort Hotel,0,49,2016,July,36,12,1,3,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,159.92,1,0,Check-Out,2019-05-04 -City Hotel,1,2,2016,January,12,26,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient,39.36,0,0,Canceled,2019-02-01 -Resort Hotel,0,6,2016,December,50,24,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,92.18,1,0,Check-Out,2019-11-03 -City Hotel,0,1,2016,February,4,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,73.49,0,0,Check-Out,2019-02-01 -City Hotel,0,20,2016,March,8,5,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,H,D,0,No Deposit,11.0,45.0,0,Transient,70.38,0,1,Check-Out,2019-03-04 -City Hotel,1,166,2017,September,43,16,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.44,0,0,Canceled,2019-11-03 -Resort Hotel,0,39,2016,March,16,4,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,163.0,179.0,0,Transient,126.47,0,1,Check-Out,2019-03-04 -City Hotel,1,54,2016,March,15,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,101.28,0,0,Canceled,2018-12-03 -City Hotel,0,57,2016,December,51,6,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.02,0,0,Check-Out,2019-08-04 -Resort Hotel,1,0,2016,March,18,9,2,0,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,239.0,179.0,0,Transient,59.29,0,2,Canceled,2019-02-01 -Resort Hotel,0,3,2016,March,10,15,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,I,1,No Deposit,239.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-01-03 -Resort Hotel,0,212,2015,December,44,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,277.0,179.0,0,Group,49.39,0,1,Check-Out,2018-08-03 -Resort Hotel,1,193,2016,September,35,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,1,No Deposit,245.0,179.0,0,Transient,39.95,0,0,Canceled,2019-05-04 -Resort Hotel,1,55,2015,December,49,6,1,1,2,0.0,0,FB,ITA,Groups,TA/TO,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient,84.6,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2016,March,26,24,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,40.65,1,0,Check-Out,2018-12-03 -Resort Hotel,0,0,2015,October,44,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,70.02,0,0,Check-Out,2018-06-02 -City Hotel,0,173,2016,October,27,21,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,121.83,0,1,Check-Out,2019-02-01 -City Hotel,0,12,2017,March,17,7,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.65,0,2,Check-Out,2020-03-03 -City Hotel,1,236,2015,August,33,4,0,3,3,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,56.24,0,1,Canceled,2018-07-03 -City Hotel,0,10,2017,February,10,12,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient-Party,69.32,0,2,Check-Out,2020-03-03 -City Hotel,1,22,2016,March,44,13,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.76,0,0,Canceled,2019-01-03 -Resort Hotel,1,54,2015,November,46,21,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,34.69,0,0,Canceled,2018-08-03 -City Hotel,1,46,2017,December,49,29,2,3,3,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,85.03,0,0,Canceled,2019-10-04 -City Hotel,0,1,2017,August,37,2,1,4,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,124.48,0,2,Check-Out,2020-01-04 -City Hotel,1,316,2015,September,44,18,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,70.91,0,0,Canceled,2018-08-03 -City Hotel,0,29,2016,July,34,6,1,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.56,0,0,Check-Out,2019-08-04 -City Hotel,0,40,2016,December,53,30,1,4,2,1.0,0,BB,CHN,Online TA,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,128.68,0,1,Canceled,2019-07-04 -City Hotel,0,251,2016,July,30,16,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,136.39,0,1,Check-Out,2019-07-04 -City Hotel,0,230,2016,May,25,31,2,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,95.63,0,1,Check-Out,2019-08-04 -Resort Hotel,0,3,2016,January,11,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,61.14,0,0,Check-Out,2018-10-03 -Resort Hotel,0,11,2017,August,36,3,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,C,0,No Deposit,241.0,179.0,0,Transient,124.87,0,1,Check-Out,2019-07-04 -Resort Hotel,0,97,2015,December,52,26,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,68.94,0,0,Check-Out,2018-10-03 -City Hotel,1,15,2017,June,40,9,0,2,1,0.0,0,BB,PRT,Direct,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,138.9,0,2,No-Show,2020-04-02 -City Hotel,1,289,2015,October,45,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,59.69,0,0,Canceled,2017-11-02 -City Hotel,1,17,2017,August,38,15,0,4,2,1.0,0,SC,CHE,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,242.02,0,0,Canceled,2019-07-04 -City Hotel,0,33,2016,December,9,20,1,2,2,0.0,0,FB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,90.2,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2015,November,42,25,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,14.0,83.0,0,Transient,26.47,0,0,Check-Out,2019-07-04 -Resort Hotel,0,167,2016,August,35,19,3,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,149.17,0,1,Check-Out,2019-05-04 -City Hotel,1,372,2017,April,15,24,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,1,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient-Party,83.43,0,0,Canceled,2019-10-04 -Resort Hotel,1,48,2016,July,38,24,1,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,160.19,1,0,Canceled,2019-08-04 -Resort Hotel,0,121,2017,May,22,10,0,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,126.58,1,1,Check-Out,2020-07-03 -City Hotel,1,418,2015,September,33,6,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,64,Transient-Party,62.15,0,0,Canceled,2018-08-03 -Resort Hotel,1,22,2016,June,26,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,73.0,0,Transient,33.0,0,0,Canceled,2019-03-04 -Resort Hotel,0,20,2017,August,39,29,2,10,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,206.58,1,3,Check-Out,2020-04-02 -Resort Hotel,0,205,2017,May,22,16,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Contract,101.85,0,0,Check-Out,2020-05-03 -City Hotel,0,279,2017,July,32,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,101.97,0,1,Check-Out,2020-06-02 -Resort Hotel,0,181,2016,May,22,18,1,6,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,73.67,0,2,Check-Out,2019-05-04 -City Hotel,0,40,2016,May,22,24,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,147.2,0,0,Check-Out,2019-05-04 -Resort Hotel,1,38,2016,January,9,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,29.38,0,0,Canceled,2018-11-02 -City Hotel,1,379,2017,July,34,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.43,0,0,Canceled,2020-06-02 -Resort Hotel,0,17,2015,October,42,1,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,2,No Deposit,14.0,179.0,0,Transient,52.6,1,0,Check-Out,2019-06-03 -City Hotel,0,248,2015,July,33,27,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,119.8,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,March,16,15,0,1,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,0,No Deposit,14.0,75.0,0,Transient-Party,26.73,1,0,Check-Out,2020-01-04 -City Hotel,0,109,2016,April,16,30,0,1,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.28,0,0,Check-Out,2019-02-01 -Resort Hotel,0,111,2016,September,43,9,1,0,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,293.0,179.0,0,Transient,44.64,0,1,Check-Out,2019-06-03 -Resort Hotel,0,39,2016,August,38,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,240.0,179.0,0,Transient,191.91,1,1,Check-Out,2019-12-04 -City Hotel,0,1,2015,October,43,20,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,33.0,179.0,0,Group,56.99,0,0,Check-Out,2018-08-03 -Resort Hotel,0,99,2015,July,31,5,2,5,2,2.0,0,BB,CHE,Direct,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,166.76,0,0,Check-Out,2019-04-03 -Resort Hotel,0,89,2015,October,44,6,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,66.17,0,0,Check-Out,2018-09-02 -Resort Hotel,0,9,2016,June,27,15,1,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,61.4,1,0,Check-Out,2019-06-03 -City Hotel,0,15,2016,February,10,31,0,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,68.86,0,0,No-Show,2019-02-01 -Resort Hotel,1,88,2016,December,53,30,2,3,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,77.14,0,0,Canceled,2019-11-03 -City Hotel,0,1,2017,March,10,16,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,F,0,No Deposit,339.0,179.0,0,Transient,0.47,0,0,Check-Out,2020-02-01 -Resort Hotel,1,110,2017,June,32,16,2,1,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,95.16,0,0,Canceled,2020-04-02 -Resort Hotel,0,6,2017,May,21,6,2,6,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-06-02 -City Hotel,0,156,2017,July,32,15,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,233.27,0,2,Check-Out,2020-06-02 -City Hotel,1,91,2016,June,29,30,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,90.26,0,0,Canceled,2019-03-04 -Resort Hotel,1,4,2015,December,50,2,2,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,85.84,0,0,Canceled,2018-10-03 -City Hotel,0,9,2016,August,38,19,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,123.92,0,0,Check-Out,2019-06-03 -Resort Hotel,0,199,2016,March,18,31,0,2,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,222.0,0,Transient-Party,61.26,0,0,Check-Out,2019-02-01 -Resort Hotel,1,176,2016,August,30,5,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,119.04,0,1,Canceled,2019-08-04 -Resort Hotel,1,193,2015,October,43,6,1,2,2,0.0,0,HB,PRT,Direct,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,138.72,0,0,Canceled,2018-07-03 -Resort Hotel,0,58,2017,August,32,16,0,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,1.52,0,0,Check-Out,2020-07-03 -Resort Hotel,0,18,2017,June,31,18,0,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,126.45,0,3,Check-Out,2020-06-02 -Resort Hotel,0,151,2016,July,32,5,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,176.7,1,2,Check-Out,2019-06-03 -City Hotel,0,12,2015,October,45,21,1,1,1,0.0,0,BB,CN,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,67.31,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2015,September,35,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,139.5,1,0,Check-Out,2018-06-02 -Resort Hotel,1,373,2016,October,43,17,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,59.11,0,0,Canceled,2019-09-03 -City Hotel,0,1,2016,November,46,18,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,36.45,1,0,Check-Out,2019-12-04 -City Hotel,0,0,2017,July,24,21,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.93,0,1,Check-Out,2020-06-02 -City Hotel,1,18,2017,January,4,28,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,58.99,0,0,Canceled,2019-10-04 -City Hotel,0,14,2016,October,11,9,1,0,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,B,0,No Deposit,193.0,179.0,0,Transient,87.65,0,0,Check-Out,2019-05-04 -Resort Hotel,0,14,2017,August,37,27,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,206.38,1,2,Check-Out,2020-05-03 -City Hotel,0,33,2016,March,7,10,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.99,0,1,Check-Out,2018-12-03 -City Hotel,0,77,2016,July,32,25,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,130.97,0,0,Check-Out,2019-08-04 -Resort Hotel,0,0,2015,December,53,22,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient-Party,54.71,0,0,Check-Out,2018-07-03 -City Hotel,1,22,2015,January,5,19,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.53,0,1,No-Show,2018-12-03 -City Hotel,0,14,2016,April,16,25,0,3,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,99.62,0,0,Check-Out,2019-03-04 -City Hotel,1,5,2016,July,38,15,0,1,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,143.41,0,1,No-Show,2019-05-04 -Resort Hotel,0,76,2017,August,22,17,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,209.04,0,1,Check-Out,2020-02-01 -Resort Hotel,0,168,2015,December,50,24,0,3,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,297.0,179.0,0,Transient-Party,61.74,1,0,Check-Out,2019-01-03 -City Hotel,0,3,2015,January,2,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,95.17,0,0,Check-Out,2018-12-03 -Resort Hotel,0,204,2017,May,21,9,1,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,92.92,0,0,Check-Out,2020-06-02 -City Hotel,1,1,2016,January,3,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,B,K,0,Non Refund,11.0,179.0,0,Transient,60.02,0,0,Canceled,2018-12-03 -City Hotel,0,56,2016,December,51,28,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,75.38,0,0,Check-Out,2019-11-03 -Resort Hotel,0,43,2015,August,37,9,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient-Party,157.29,1,0,Check-Out,2018-06-02 -Resort Hotel,0,99,2017,April,17,26,2,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,3,No Deposit,378.0,179.0,0,Transient-Party,68.67,0,0,Check-Out,2019-11-03 -City Hotel,0,9,2017,June,26,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,45.0,0,Transient,61.07,1,1,Check-Out,2020-03-03 -City Hotel,1,343,2017,August,37,20,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,155.5,0,0,Canceled,2020-06-02 -Resort Hotel,0,93,2015,November,53,12,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,312.0,179.0,0,Transient-Party,37.2,0,0,Check-Out,2019-02-01 -City Hotel,1,200,2016,September,45,22,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.25,0,0,Canceled,2019-11-03 -Resort Hotel,0,48,2017,August,35,6,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,181.79,1,2,Check-Out,2020-06-02 -Resort Hotel,0,4,2015,October,47,31,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,256.0,0,Transient-Party,69.84,0,0,Check-Out,2018-09-02 -Resort Hotel,1,260,2017,June,26,25,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,110.33,0,0,Check-Out,2020-02-01 -Resort Hotel,0,103,2015,August,34,24,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,161.0,179.0,0,Transient-Party,84.96,0,2,Check-Out,2019-07-04 -City Hotel,0,0,2015,December,53,31,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,104.58,0,0,Check-Out,2018-12-03 -Resort Hotel,0,54,2015,September,37,27,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,76.15,0,0,Check-Out,2018-05-03 -City Hotel,0,10,2017,May,23,23,1,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,B,0,No Deposit,8.0,179.0,0,Transient,121.95,0,0,Check-Out,2020-04-02 -City Hotel,1,92,2017,May,21,29,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,166.39,0,1,No-Show,2020-02-01 -City Hotel,0,143,2016,October,35,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,175.0,0,Transient-Party,124.62,0,0,Check-Out,2019-03-04 -Resort Hotel,1,39,2016,March,16,18,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,240.0,179.0,0,Transient,120.07,0,0,Canceled,2019-02-01 -Resort Hotel,0,109,2016,August,35,24,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,165.0,179.0,75,Transient,161.06,0,1,Check-Out,2019-08-04 -City Hotel,0,96,2016,October,42,20,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,112.11,0,0,Check-Out,2019-07-04 -City Hotel,1,0,2016,January,4,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,Non Refund,9.0,179.0,0,Group,66.3,0,0,Canceled,2019-08-04 -City Hotel,0,241,2015,October,42,21,2,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,104.04,0,0,Check-Out,2018-08-03 -Resort Hotel,0,4,2016,September,43,20,1,0,1,0.0,0,BB,PRT,Groups,Corporate,0,0,1,D,D,0,No Deposit,202.0,179.0,0,Group,0.0,0,0,Check-Out,2019-07-04 -Resort Hotel,0,41,2016,January,3,2,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,69.59,0,0,Check-Out,2019-03-04 -City Hotel,0,3,2016,October,22,25,0,1,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,193.78,0,0,Check-Out,2019-03-04 -Resort Hotel,1,21,2016,January,3,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.57,1,0,Canceled,2018-11-02 -City Hotel,1,106,2017,May,26,15,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient-Party,125.48,0,0,Canceled,2020-02-01 -City Hotel,1,382,2017,August,37,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,129.03,0,0,Canceled,2018-09-02 -Resort Hotel,1,10,2016,January,11,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,241.0,0,Transient,40.11,0,0,Canceled,2019-03-04 -City Hotel,0,3,2017,April,23,30,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,62.58,0,0,Check-Out,2020-04-02 -Resort Hotel,0,25,2017,February,9,22,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,50.22,1,0,Check-Out,2019-11-03 -City Hotel,1,58,2016,September,42,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.2,0,0,Canceled,2019-10-04 -City Hotel,1,203,2016,September,43,29,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,221.0,0,Transient,92.1,0,0,Canceled,2019-03-04 -Resort Hotel,0,0,2017,February,10,16,1,0,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,1,0,1,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,74.63,0,1,Check-Out,2019-11-03 -City Hotel,1,152,2017,March,18,6,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,75,Transient,85.49,0,0,Canceled,2020-01-04 -Resort Hotel,0,255,2017,July,34,9,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Contract,62.68,0,0,Check-Out,2020-06-02 -Resort Hotel,0,212,2015,October,44,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,46.66,0,0,Check-Out,2018-09-02 -Resort Hotel,1,51,2017,July,29,30,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.73,0,2,Canceled,2020-03-03 -Resort Hotel,0,347,2017,February,9,15,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,92.0,0,Transient-Party,34.13,0,0,Check-Out,2019-12-04 -City Hotel,0,106,2017,July,31,24,2,5,3,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,46.0,179.0,0,Transient,126.64,0,0,Check-Out,2020-03-03 -City Hotel,0,65,2016,March,10,27,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,61.0,0,Transient,122.69,0,0,Check-Out,2019-05-04 -Resort Hotel,0,1,2016,May,16,1,1,1,2,1.0,0,HB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,252.0,179.0,0,Transient,203.43,1,3,Check-Out,2019-03-04 -Resort Hotel,1,146,2017,July,33,14,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,170.73,0,2,Canceled,2019-11-03 -City Hotel,1,2,2016,August,44,15,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,127.25,0,0,Canceled,2019-11-03 -City Hotel,1,18,2017,June,31,6,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,62.45,0,0,Canceled,2020-06-02 -City Hotel,1,97,2015,July,30,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,32.0,179.0,0,Contract,94.12,0,1,Canceled,2017-10-03 -City Hotel,0,14,2016,September,48,2,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,E,E,1,No Deposit,14.0,331.0,0,Transient,134.86,0,0,Check-Out,2019-09-03 -City Hotel,0,99,2017,June,30,24,0,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,138.68,0,1,Check-Out,2020-03-03 -Resort Hotel,0,105,2016,July,32,30,1,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,E,1,No Deposit,378.0,179.0,0,Transient,212.79,1,0,Check-Out,2019-06-03 -City Hotel,0,155,2017,June,27,6,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.93,0,1,Check-Out,2020-04-02 -City Hotel,1,75,2016,April,3,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,95.71,0,0,No-Show,2019-01-03 -City Hotel,0,149,2016,August,36,29,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,125.27,0,1,Check-Out,2019-07-04 -City Hotel,1,15,2016,August,31,9,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,116.26,0,2,Canceled,2019-10-04 -City Hotel,1,49,2017,August,39,15,2,2,2,2.0,0,SC,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,153.36,1,2,Canceled,2020-07-03 -City Hotel,1,255,2015,September,43,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,139.78,0,0,Canceled,2018-08-03 -Resort Hotel,0,111,2016,October,44,10,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,241.88,0,1,Check-Out,2019-08-04 -Resort Hotel,0,142,2016,June,28,8,2,7,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,141.0,179.0,0,Transient,151.89,0,0,Check-Out,2019-05-04 -Resort Hotel,1,245,2017,June,11,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,11.0,45.0,0,Transient,47.92,0,1,Canceled,2020-04-02 -City Hotel,0,39,2016,December,53,29,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,105.08,0,3,Check-Out,2019-11-03 -City Hotel,1,27,2017,June,27,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,149.0,179.0,0,Transient,100.01,0,0,Canceled,2019-03-04 -City Hotel,1,204,2017,July,27,21,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,158.64,0,3,Canceled,2020-06-02 -City Hotel,1,106,2017,July,22,26,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.47,1,1,Canceled,2019-12-04 -City Hotel,1,384,2017,April,17,14,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,103.43,0,0,Canceled,2019-12-04 -Resort Hotel,0,115,2017,April,17,27,2,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,72.37,0,1,Check-Out,2020-02-01 -City Hotel,0,152,2017,March,15,21,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,246.0,0,Contract,120.21,0,0,Check-Out,2020-02-01 -Resort Hotel,0,245,2016,July,28,29,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,16,Transient-Party,98.79,0,1,Check-Out,2019-02-01 -City Hotel,1,112,2017,July,33,21,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,100.0,0,0,Canceled,2020-04-02 -City Hotel,0,0,2016,March,8,5,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,1,0,1,A,F,0,No Deposit,11.0,45.0,0,Transient,0.0,0,1,Check-Out,2019-02-01 -City Hotel,0,0,2017,June,22,9,0,1,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,114.71,0,0,Check-Out,2019-03-04 -City Hotel,0,83,2017,May,21,12,2,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,183.09,0,3,Check-Out,2020-02-01 -Resort Hotel,0,2,2016,March,17,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,193.0,179.0,0,Transient,39.68,0,0,Check-Out,2019-03-04 -Resort Hotel,1,292,2016,September,36,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,F,E,0,Non Refund,237.0,179.0,0,Transient,177.28,0,0,Canceled,2019-05-04 -City Hotel,0,2,2017,February,12,13,2,1,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,92.64,0,3,Check-Out,2020-01-04 -City Hotel,0,46,2016,December,50,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,44.0,68.0,0,Transient-Party,97.93,0,0,Check-Out,2019-12-04 -Resort Hotel,0,81,2015,July,31,20,3,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,10.0,179.0,0,Transient-Party,183.52,1,1,Check-Out,2019-05-04 -Resort Hotel,0,148,2017,August,39,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,195.89,0,2,Check-Out,2020-06-02 -City Hotel,0,61,2016,October,43,17,2,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,161.67,0,0,Check-Out,2019-08-04 -Resort Hotel,1,61,2015,December,51,8,2,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,378.0,179.0,0,Transient,80.74,0,0,Canceled,2018-06-02 -City Hotel,1,46,2017,April,17,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,18,Transient,81.81,0,0,Canceled,2020-02-01 -City Hotel,0,139,2016,March,11,14,2,1,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,30.86,0,1,Check-Out,2019-03-04 -Resort Hotel,0,3,2015,December,51,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,24.68,0,2,Check-Out,2018-09-02 -City Hotel,1,92,2016,August,39,31,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,115.92,0,0,Canceled,2018-06-02 -City Hotel,0,34,2016,March,10,9,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,126.38,0,1,Check-Out,2018-12-03 -City Hotel,0,391,2015,October,43,24,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,90.31,0,0,Check-Out,2018-09-02 -City Hotel,0,114,2017,July,20,15,2,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,110.76,0,1,Check-Out,2020-03-03 -Resort Hotel,0,98,2015,September,37,29,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,188.16,1,1,Check-Out,2018-08-03 -City Hotel,0,46,2016,May,26,9,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,213.38,0,2,Check-Out,2019-06-03 -Resort Hotel,1,230,2016,August,42,6,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,67.23,0,0,No-Show,2019-08-04 -Resort Hotel,0,99,2016,July,33,18,1,4,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,174.71,0,0,Check-Out,2018-12-03 -Resort Hotel,0,60,2017,May,38,28,1,5,2,2.0,0,HB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Check-Out,2019-11-03 -City Hotel,0,42,2016,April,22,27,0,2,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,35.0,179.0,0,Transient,154.19,0,0,Check-Out,2019-08-04 -City Hotel,0,1,2015,August,32,6,0,3,2,0.0,0,BB,,Direct,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,59.36,0,0,Check-Out,2018-06-02 -City Hotel,1,44,2016,March,15,9,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.68,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2015,September,42,31,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,115.73,1,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2016,March,29,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,59.0,0,Transient,36.48,0,0,Check-Out,2019-04-03 -City Hotel,1,3,2016,July,23,30,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.39,0,0,Canceled,2020-02-01 -City Hotel,0,18,2017,October,10,13,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,1,0,1,A,E,0,No Deposit,10.0,179.0,0,Group,71.36,0,0,Check-Out,2019-11-03 -Resort Hotel,0,163,2017,August,36,31,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,107.67,1,1,Check-Out,2020-07-03 -City Hotel,0,87,2016,March,25,24,0,3,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,110.95,0,2,Canceled,2019-11-03 -City Hotel,1,9,2016,February,10,23,1,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,63.53,0,2,Canceled,2018-12-03 -City Hotel,0,39,2016,December,53,10,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,99.03,1,1,Check-Out,2019-11-03 -City Hotel,0,20,2016,November,53,10,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,36.98,0,0,Check-Out,2019-10-04 -Resort Hotel,0,1,2016,October,44,31,4,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Contract,78.74,0,0,Check-Out,2019-06-03 -City Hotel,1,17,2017,February,10,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,11.0,179.0,0,Transient,78.31,0,2,Canceled,2019-11-03 -Resort Hotel,0,8,2016,December,50,21,1,5,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,81.01,0,1,Check-Out,2019-10-04 -City Hotel,1,405,2017,May,22,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,113.3,0,0,Canceled,2019-11-03 -City Hotel,0,3,2015,July,31,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,34.6,0,0,Check-Out,2018-06-02 -City Hotel,1,162,2015,July,34,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,146.39,0,0,Canceled,2020-05-03 -City Hotel,0,2,2015,September,46,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,77.0,0,Transient,61.79,0,0,Check-Out,2018-11-02 -Resort Hotel,0,110,2016,August,37,5,2,5,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,207.58,1,3,Check-Out,2020-06-02 -City Hotel,0,141,2016,December,53,25,2,1,2,0.0,0,Undefined,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,27.0,179.0,63,Transient,104.15,0,0,Check-Out,2019-06-03 -Resort Hotel,0,318,2015,October,43,31,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,39.13,0,1,Check-Out,2018-08-03 -City Hotel,0,2,2015,November,43,10,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,8.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -City Hotel,1,12,2017,January,3,13,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,H,0,No Deposit,9.0,179.0,0,Transient-Party,72.64,0,0,No-Show,2019-11-03 -City Hotel,0,40,2016,January,11,31,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,79.53,0,3,Check-Out,2019-10-04 -City Hotel,1,318,2016,September,44,20,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,75,Transient,100.04,0,0,Canceled,2019-07-04 -City Hotel,1,1,2016,February,11,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,83.49,0,2,Canceled,2019-12-04 -Resort Hotel,0,0,2015,July,31,5,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,77.31,1,0,Check-Out,2018-08-03 -Resort Hotel,0,0,2015,December,53,30,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,E,0,No Deposit,247.0,179.0,0,Transient,61.48,0,1,Check-Out,2018-09-02 -City Hotel,0,9,2017,December,48,31,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient,61.92,0,0,Check-Out,2019-11-03 -Resort Hotel,0,35,2016,January,4,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,32.44,1,1,Check-Out,2018-11-02 -City Hotel,1,174,2015,October,36,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,41,Transient,118.9,0,0,Canceled,2018-12-03 -City Hotel,1,46,2016,October,44,18,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.17,0,0,Canceled,2019-09-03 -Resort Hotel,0,6,2017,December,50,6,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,238.0,179.0,0,Transient,121.93,1,2,Check-Out,2019-12-04 -Resort Hotel,0,46,2016,September,44,13,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,251.0,179.0,0,Transient,200.62,0,2,Check-Out,2019-06-03 -City Hotel,1,219,2016,October,45,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,43,Transient,169.95,0,0,Canceled,2018-08-03 -Resort Hotel,0,13,2017,September,18,31,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,157.94,1,2,Check-Out,2019-12-04 -Resort Hotel,1,36,2016,July,36,21,2,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,244.0,179.0,0,Transient,146.73,0,1,Canceled,2019-04-03 -City Hotel,1,0,2016,May,11,16,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,11.0,179.0,0,Group,1.28,0,0,Canceled,2019-11-03 -Resort Hotel,0,19,2015,July,32,5,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,126.04,0,0,Check-Out,2018-04-02 -City Hotel,0,43,2017,June,26,20,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,130.38,0,0,Check-Out,2020-06-02 -City Hotel,1,203,2016,December,50,10,1,5,3,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,99.01,0,0,Canceled,2019-09-03 -City Hotel,0,226,2015,August,38,24,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,172.61,0,1,Check-Out,2018-06-02 -Resort Hotel,0,51,2016,May,23,8,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,96.77,0,0,Check-Out,2019-07-04 -City Hotel,0,1,2017,June,27,13,0,1,1,0.0,0,HB,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Group,164.75,0,0,Check-Out,2019-12-04 -Resort Hotel,1,301,2016,August,35,25,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,187.72,0,2,Canceled,2019-06-03 -Resort Hotel,0,0,2017,March,16,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,1,No Deposit,12.0,257.0,0,Transient-Party,31.08,0,0,Check-Out,2020-04-02 -Resort Hotel,0,18,2016,September,35,24,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,I,1,No Deposit,11.0,179.0,0,Transient,4.22,0,0,Check-Out,2019-07-04 -City Hotel,1,17,2016,September,38,22,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.77,0,0,Canceled,2019-09-03 -City Hotel,1,156,2017,February,9,13,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,68.6,0,0,Canceled,2019-09-03 -Resort Hotel,0,2,2016,October,43,2,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,95.61,0,0,Check-Out,2019-05-04 -Resort Hotel,0,241,2015,September,43,10,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient-Party,88.06,1,1,Check-Out,2018-08-03 -Resort Hotel,0,15,2016,December,50,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,42.44,0,2,Check-Out,2019-12-04 -City Hotel,0,139,2017,April,15,21,0,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,125.26,0,0,Check-Out,2020-03-03 -Resort Hotel,0,37,2017,March,9,16,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,93.99,0,0,Check-Out,2020-03-03 -Resort Hotel,1,166,2016,August,33,25,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,242.0,179.0,0,Transient,162.3,0,2,Canceled,2019-08-04 -Resort Hotel,1,2,2015,July,37,27,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,248.0,179.0,0,Transient,125.98,0,1,No-Show,2018-06-02 -Resort Hotel,0,154,2017,March,13,28,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,83.1,0,1,Check-Out,2019-11-03 -City Hotel,0,90,2016,May,23,10,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,104.23,0,0,Check-Out,2019-06-03 -Resort Hotel,0,102,2016,November,16,15,2,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,141.52,0,1,Check-Out,2019-03-04 -City Hotel,0,18,2016,May,42,20,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,70.74,0,2,Check-Out,2019-03-04 -City Hotel,1,145,2017,March,11,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,22,Transient,90.34,0,0,Canceled,2018-11-02 -City Hotel,0,113,2016,June,21,25,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,113.14,0,1,Check-Out,2019-03-04 -City Hotel,1,369,2016,December,53,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,77.45,0,0,Canceled,2019-10-04 -Resort Hotel,1,1,2016,February,10,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,124.98,1,0,Canceled,2018-12-03 -City Hotel,0,39,2016,March,9,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,90.18,0,0,Check-Out,2019-03-04 -Resort Hotel,0,69,2015,July,34,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,A,2,No Deposit,19.0,179.0,0,Transient,136.66,1,0,Check-Out,2018-06-02 -City Hotel,1,49,2016,February,10,21,0,1,3,0.0,0,BB,PRT,Online TA,GDS,0,0,0,H,D,0,No Deposit,171.0,179.0,0,Transient,74.0,0,0,Canceled,2019-02-01 -City Hotel,0,44,2015,October,53,5,1,2,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,C,3,No Deposit,36.0,179.0,0,Transient-Party,58.79,0,0,Check-Out,2018-06-02 -City Hotel,1,243,2016,January,17,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,78.17,0,1,No-Show,2018-12-03 -City Hotel,0,13,2017,June,27,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,66.0,0,Transient-Party,63.11,0,0,Check-Out,2019-11-03 -Resort Hotel,0,15,2017,March,17,25,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,105.0,331.0,0,Transient-Party,79.64,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,December,35,14,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,2019-01-03 -City Hotel,1,263,2017,June,27,11,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,86.92,0,0,Canceled,2019-07-04 -City Hotel,0,41,2015,October,45,2,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,106.19,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2016,October,50,25,0,2,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,82.36,0,0,No-Show,2018-09-02 -City Hotel,1,20,2017,February,10,21,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,22,Transient,71.03,0,0,Canceled,2019-10-04 -City Hotel,0,13,2017,June,24,6,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.17,0,0,Check-Out,2020-04-02 -Resort Hotel,0,206,2017,May,21,17,2,3,2,1.0,0,BB,IRL,Direct,Corporate,0,0,0,G,G,3,No Deposit,248.0,179.0,0,Transient,210.18,1,0,Check-Out,2020-04-02 -City Hotel,0,97,2016,June,25,27,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,121.4,1,2,Check-Out,2019-05-04 -City Hotel,0,24,2017,July,29,28,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Contract,154.92,0,2,Check-Out,2020-06-02 -Resort Hotel,0,149,2016,July,27,23,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient,73.35,0,1,Check-Out,2019-08-04 -City Hotel,1,19,2016,March,16,31,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.53,0,0,Canceled,2019-02-01 -City Hotel,0,89,2015,July,35,5,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,96.03,0,0,Check-Out,2018-06-02 -Resort Hotel,1,149,2017,March,17,29,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,309.0,179.0,0,Transient-Party,77.12,0,0,Canceled,2019-11-03 -Resort Hotel,0,49,2016,March,10,28,2,0,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,91.0,179.0,0,Transient,76.47,0,0,Check-Out,2019-02-01 -Resort Hotel,0,4,2016,September,42,28,0,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,353.0,179.0,0,Transient,192.67,0,0,Check-Out,2018-08-03 -City Hotel,0,94,2016,August,38,21,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Contract,152.43,0,1,Check-Out,2019-05-04 -City Hotel,0,33,2016,May,23,20,0,4,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,187.29,0,0,Check-Out,2019-05-04 -City Hotel,0,7,2016,January,4,31,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.7,0,2,Check-Out,2018-12-03 -City Hotel,1,167,2017,August,32,20,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,10.0,179.0,0,Transient,122.62,0,0,Canceled,2020-03-03 -City Hotel,1,59,2016,May,27,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,A,A,0,Non Refund,11.0,179.0,0,Transient,81.83,0,0,Canceled,2019-02-01 -Resort Hotel,0,1,2015,October,44,2,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,82.99,1,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2015,January,37,24,2,1,1,0.0,0,BB,FRA,Direct,Direct,1,0,0,L,H,0,No Deposit,13.0,179.0,0,Transient,70.4,0,0,Check-Out,2018-05-03 -City Hotel,0,15,2017,June,26,20,0,3,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,128.26,0,1,Check-Out,2020-07-03 -Resort Hotel,1,412,2015,December,50,2,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,137.0,179.0,0,Transient,44.54,0,0,Canceled,2018-11-02 -City Hotel,0,42,2016,May,26,10,0,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,77.19,0,0,Check-Out,2019-04-03 -Resort Hotel,0,1,2016,December,51,12,1,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient-Party,27.65,0,0,Check-Out,2018-09-02 -City Hotel,1,159,2016,February,9,5,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,140.19,0,0,Canceled,2018-11-02 -City Hotel,0,142,2017,June,21,17,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.11,0,1,Check-Out,2020-05-03 -City Hotel,1,183,2016,October,41,17,1,0,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,140.57,0,1,Canceled,2019-08-04 -Resort Hotel,0,1,2017,October,30,4,3,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,95.67,0,3,Check-Out,2019-10-04 -Resort Hotel,1,1,2016,February,50,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,41.05,0,0,Check-Out,2018-12-03 -City Hotel,0,264,2016,September,36,20,0,2,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,D,D,1,No Deposit,34.0,179.0,0,Transient,81.48,0,0,Check-Out,2018-09-02 -Resort Hotel,1,156,2016,May,21,20,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,Refundable,10.0,179.0,0,Transient-Party,76.65,0,0,Canceled,2019-03-04 -City Hotel,0,115,2017,April,19,20,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient-Party,107.5,0,2,Check-Out,2020-02-01 -City Hotel,1,83,2017,February,11,27,0,1,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,F,0,Non Refund,7.0,179.0,75,Transient,88.95,0,0,Canceled,2019-10-04 -Resort Hotel,1,103,2017,June,23,2,3,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,276.0,179.0,0,Transient,194.74,0,0,Canceled,2020-02-01 -City Hotel,1,34,2016,May,21,24,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,117.03,0,2,Canceled,2019-02-01 -City Hotel,0,14,2015,October,46,10,1,0,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,119.25,0,0,Check-Out,2018-06-02 -City Hotel,1,19,2017,October,44,18,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,234.68,0,0,Canceled,2019-09-03 -City Hotel,1,107,2016,July,27,1,0,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.94,0,0,Canceled,2019-01-03 -City Hotel,1,293,2015,September,37,20,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,D,0,Non Refund,2.0,179.0,0,Contract,61.02,0,0,Canceled,2017-11-02 -City Hotel,0,193,2017,May,21,6,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,190.0,179.0,0,Transient-Party,109.94,0,0,Check-Out,2020-07-03 -City Hotel,1,88,2016,December,53,28,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.87,0,0,Canceled,2019-11-03 -City Hotel,0,38,2016,November,50,16,0,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,E,E,0,No Deposit,14.0,231.0,0,Transient,94.11,0,0,Check-Out,2019-07-04 -City Hotel,0,12,2015,November,36,6,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,61.6,0,0,Check-Out,2018-11-02 -City Hotel,0,10,2017,January,4,21,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.65,0,0,Check-Out,2020-06-02 -Resort Hotel,0,181,2017,August,10,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Contract,176.13,1,2,Check-Out,2020-07-03 -City Hotel,1,146,2016,June,4,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,135.3,0,0,Canceled,2018-11-02 -City Hotel,0,0,2015,October,46,28,2,1,2,0.0,0,SC,BEL,Direct,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,34.38,0,0,Check-Out,2018-10-03 -City Hotel,0,150,2016,October,33,30,1,5,1,0.0,0,FB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.46,0,0,Check-Out,2019-05-04 -Resort Hotel,0,164,2016,May,23,27,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,A,0,No Deposit,244.0,179.0,0,Transient,138.55,0,2,Check-Out,2019-02-01 -Resort Hotel,1,258,2015,July,36,25,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,E,0,Non Refund,181.0,179.0,0,Contract,61.14,0,0,Canceled,2017-09-02 -Resort Hotel,0,56,2016,October,23,6,2,1,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,49.2,1,1,Check-Out,2019-06-03 -City Hotel,1,147,2016,January,4,11,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,65,Transient,58.78,0,0,Canceled,2018-11-02 -City Hotel,0,9,2016,August,37,13,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,174.93,0,1,Check-Out,2019-08-04 -City Hotel,0,4,2016,February,8,29,1,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,108.57,0,0,Check-Out,2019-02-01 -City Hotel,0,36,2016,June,23,12,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,1,No Deposit,15.0,68.0,0,Transient-Party,82.68,0,0,Check-Out,2019-03-04 -City Hotel,0,3,2015,July,32,20,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,61.4,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2017,March,9,31,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient-Party,148.43,0,0,Check-Out,2020-04-02 -Resort Hotel,0,138,2017,March,17,5,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,C,3,No Deposit,186.0,179.0,0,Transient-Party,73.62,0,0,Check-Out,2019-12-04 -Resort Hotel,0,11,2016,May,29,27,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,142.0,179.0,0,Transient,32.37,0,0,Check-Out,2019-03-04 -City Hotel,0,147,2016,May,20,15,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,84.18,1,0,Check-Out,2019-03-04 -City Hotel,0,12,2016,March,10,29,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,70.07,0,0,Check-Out,2018-10-03 -Resort Hotel,0,190,2016,July,43,30,2,7,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,128.43,0,0,Check-Out,2019-06-03 -Resort Hotel,1,140,2016,September,37,2,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,141.28,0,2,No-Show,2019-04-03 -Resort Hotel,1,51,2015,September,45,31,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,111.74,0,2,Canceled,2018-05-03 -Resort Hotel,0,35,2016,August,37,21,2,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,82.59,0,0,Check-Out,2019-08-04 -City Hotel,0,19,2017,May,18,15,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,79.2,0,1,Check-Out,2020-02-01 -Resort Hotel,0,9,2015,October,43,2,0,4,2,0.0,0,HB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,202.79,0,2,Check-Out,2018-09-02 -Resort Hotel,0,1,2016,October,43,13,1,7,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,178.6,0,0,Check-Out,2019-08-04 -City Hotel,0,35,2017,May,21,17,2,3,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,153.11,0,0,Check-Out,2020-03-03 -City Hotel,0,98,2016,July,27,27,0,4,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,2,No Deposit,13.0,331.0,0,Transient,0.0,0,1,Check-Out,2020-06-02 -City Hotel,1,102,2016,April,16,30,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,75.94,0,0,Canceled,2019-01-03 -City Hotel,1,393,2016,April,23,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.24,0,0,Canceled,2018-12-03 -City Hotel,0,107,2017,May,16,7,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,102.48,0,1,Check-Out,2020-03-03 -City Hotel,0,86,2016,May,20,6,1,2,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,99.56,0,0,Check-Out,2019-03-04 -Resort Hotel,1,16,2017,January,3,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,304.0,179.0,0,Transient,78.51,0,0,Canceled,2019-10-04 -Resort Hotel,0,9,2016,July,28,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,67.74,1,0,Check-Out,2020-01-04 -Resort Hotel,0,63,2016,April,23,11,0,3,2,1.0,0,HB,ITA,Online TA,Direct,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient-Party,168.43,1,0,Check-Out,2020-03-03 -City Hotel,1,85,2017,May,18,2,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,64.13,0,0,Canceled,2019-11-03 -Resort Hotel,0,27,2016,January,10,17,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,60.45,1,1,Check-Out,2018-11-02 -City Hotel,1,46,2017,February,8,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,7.0,179.0,0,Transient,71.4,0,0,Canceled,2018-11-02 -City Hotel,1,13,2016,July,27,21,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,101.0,0,0,Canceled,2019-01-03 -Resort Hotel,0,15,2017,February,10,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,189.0,80.0,0,Transient,62.06,0,0,Check-Out,2019-10-04 -Resort Hotel,0,48,2016,October,41,12,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,295.0,179.0,0,Transient,108.56,0,0,Check-Out,2019-07-04 -Resort Hotel,0,143,2016,September,44,31,3,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,238.36,1,2,Check-Out,2019-05-04 -Resort Hotel,0,0,2016,February,10,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,86.0,179.0,0,Transient,58.86,0,0,Check-Out,2018-11-02 -Resort Hotel,0,300,2016,May,20,21,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,33.0,223.0,0,Transient-Party,49.9,0,3,Check-Out,2019-02-01 -Resort Hotel,0,55,2016,August,36,20,0,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,61.77,0,1,Check-Out,2019-07-04 -City Hotel,1,89,2016,September,42,28,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,70.66,0,0,Canceled,2018-08-03 -City Hotel,1,324,2016,May,26,14,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,87.74,0,0,Canceled,2018-08-03 -City Hotel,1,246,2016,October,46,2,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,105.6,0,0,Canceled,2019-05-04 -City Hotel,0,10,2016,September,53,7,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.11,1,2,Check-Out,2019-12-04 -City Hotel,1,149,2017,February,9,21,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,41,Transient,71.75,0,0,Canceled,2018-10-03 -Resort Hotel,1,158,2017,July,35,25,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Refundable,240.0,179.0,0,Transient,187.64,0,0,Canceled,2020-06-02 -Resort Hotel,0,157,2017,July,32,21,2,5,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,176.0,179.0,0,Transient,216.5,1,0,Check-Out,2020-03-03 -City Hotel,0,150,2017,April,17,17,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,94.72,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2017,August,37,13,0,1,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient,193.42,0,1,Check-Out,2020-07-03 -Resort Hotel,0,41,2016,March,15,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,68.89,0,0,Check-Out,2019-02-01 -Resort Hotel,0,245,2016,July,31,15,2,10,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,82.0,179.0,0,Transient,67.37,0,0,Check-Out,2019-06-03 -Resort Hotel,0,0,2017,May,34,9,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,152.42,1,0,Check-Out,2020-07-03 -Resort Hotel,0,15,2015,October,47,14,2,5,1,0.0,0,BB,POL,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,11.0,331.0,0,Transient-Party,75.28,0,0,Check-Out,2018-09-02 -City Hotel,1,274,2016,April,21,26,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,90.15,0,0,Canceled,2018-11-02 -City Hotel,1,48,2017,June,22,3,1,1,1,0.0,0,BB,PRT,Aviation,GDS,0,0,0,A,A,1,No Deposit,201.0,179.0,0,Transient,110.77,0,0,Canceled,2020-01-04 -City Hotel,1,276,2017,May,22,13,2,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,C,F,1,No Deposit,170.0,179.0,0,Transient-Party,146.44,0,0,No-Show,2020-03-03 -City Hotel,1,0,2017,February,9,16,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,132.85,0,0,Canceled,2019-11-03 -City Hotel,0,247,2017,June,25,2,0,4,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,137.3,0,2,Check-Out,2020-06-02 -City Hotel,0,1,2017,January,4,5,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,209.0,0,Transient,91.1,0,1,Check-Out,2020-02-01 -City Hotel,0,274,2017,May,20,18,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,149.54,0,2,Check-Out,2020-03-03 -City Hotel,1,15,2016,October,44,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,41,Transient,153.16,0,1,Canceled,2019-10-04 -Resort Hotel,1,2,2016,July,31,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,97.09,0,1,Canceled,2019-04-03 -Resort Hotel,0,243,2015,October,44,2,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,35.35,0,0,Check-Out,2018-09-02 -City Hotel,0,239,2016,August,37,2,2,4,2,2.0,0,BB,BRA,Online TA,Direct,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,91.93,0,1,Check-Out,2019-07-04 -City Hotel,1,158,2015,July,3,6,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,105.49,0,1,Canceled,2018-12-03 -City Hotel,1,20,2016,March,21,28,0,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.15,0,0,Canceled,2019-11-03 -City Hotel,0,32,2017,July,25,29,1,2,3,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,124.25,0,0,Check-Out,2020-02-01 -Resort Hotel,0,278,2016,October,43,31,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,186.08,0,1,Check-Out,2019-08-04 -City Hotel,1,0,2017,March,16,19,0,2,3,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,75,Transient-Party,0.0,1,0,Check-Out,2020-02-01 -Resort Hotel,0,247,2017,May,27,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Contract,64.26,0,0,Check-Out,2020-03-03 -City Hotel,0,41,2017,June,25,6,1,3,3,0.0,0,BB,NLD,Aviation,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,130.77,0,0,Check-Out,2020-03-03 -City Hotel,1,157,2017,August,28,30,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,128.42,0,1,Check-Out,2020-07-03 -City Hotel,0,37,2016,August,44,21,2,4,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,162.05,0,1,Check-Out,2019-10-04 -City Hotel,1,401,2015,October,47,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,58.08,0,0,Canceled,2018-07-03 -Resort Hotel,0,323,2016,May,23,10,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,195.04,0,1,Check-Out,2019-08-04 -Resort Hotel,0,1,2016,February,9,6,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.61,0,0,Check-Out,2018-09-02 -City Hotel,0,10,2015,August,39,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,58.31,0,0,Check-Out,2018-08-03 -City Hotel,0,12,2015,September,37,18,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,59.05,0,0,Check-Out,2018-05-03 -Resort Hotel,0,35,2015,December,53,19,0,2,2,0.0,0,Undefined,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,46.04,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2016,June,28,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,E,E,0,No Deposit,16.0,45.0,0,Transient-Party,85.78,0,0,Check-Out,2019-11-03 -City Hotel,0,57,2015,September,44,19,0,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,128.28,0,0,Check-Out,2018-08-03 -City Hotel,0,32,2017,May,22,5,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,B,1,No Deposit,14.0,168.0,0,Transient,151.21,0,0,Check-Out,2019-12-04 -City Hotel,0,61,2017,July,26,27,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.25,0,0,Check-Out,2020-06-02 -Resort Hotel,0,14,2016,July,29,28,1,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,208.78,0,0,Check-Out,2019-06-03 -City Hotel,0,15,2017,March,7,30,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,66.84,0,2,Check-Out,2020-06-02 -Resort Hotel,0,1,2016,January,29,27,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,94.04,0,0,Check-Out,2019-06-03 -City Hotel,0,2,2015,July,48,5,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,77.64,0,0,Check-Out,2018-11-02 -City Hotel,0,18,2015,September,42,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Contract,72.14,0,1,Check-Out,2018-09-02 -City Hotel,1,46,2016,June,20,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,11.0,179.0,0,Transient,91.41,0,0,Canceled,2019-05-04 -Resort Hotel,0,127,2016,March,19,31,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,74.64,1,0,Check-Out,2019-01-03 -City Hotel,0,0,2016,December,26,5,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,345.0,179.0,0,Transient,83.24,0,0,Check-Out,2018-06-02 -Resort Hotel,1,16,2016,May,22,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,117.89,0,0,Canceled,2019-06-03 -City Hotel,1,318,2017,May,22,28,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,85.24,0,0,Canceled,2018-09-02 -City Hotel,0,7,2016,March,9,16,0,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.91,0,0,Check-Out,2019-02-01 -City Hotel,0,245,2015,July,33,24,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,4.0,179.0,0,Transient-Party,61.62,0,0,Check-Out,2018-05-03 -Resort Hotel,0,53,2017,March,17,6,1,5,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,153.9,0,1,Check-Out,2020-03-03 -City Hotel,1,10,2016,January,51,28,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,A,0,No Deposit,12.0,179.0,0,Transient,77.52,0,0,No-Show,2018-12-03 -City Hotel,1,0,2017,August,27,13,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,10.0,179.0,0,Transient,3.99,0,0,Canceled,2019-10-04 -City Hotel,0,200,2016,August,36,6,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,128.84,0,2,Check-Out,2019-04-03 -City Hotel,1,116,2016,July,35,27,2,5,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.36,0,0,Canceled,2019-07-04 -City Hotel,1,191,2016,August,37,21,1,0,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,119.82,0,0,No-Show,2019-08-04 -Resort Hotel,0,16,2017,July,28,6,3,0,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,193.0,179.0,0,Transient,100.67,0,0,Check-Out,2020-06-02 -City Hotel,0,1,2017,March,10,2,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,D,2,No Deposit,8.0,179.0,0,Transient,119.5,0,0,Check-Out,2019-11-03 -Resort Hotel,0,13,2015,December,36,30,1,0,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,118.49,1,0,Check-Out,2018-08-03 -City Hotel,0,80,2016,December,53,30,0,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,7.0,179.0,0,Transient-Party,64.94,1,1,Check-Out,2019-11-03 -Resort Hotel,0,24,2017,July,31,30,2,5,2,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,166.79,1,1,Check-Out,2020-03-03 -Resort Hotel,0,64,2016,August,35,5,0,4,1,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,1,No Deposit,205.0,179.0,0,Transient,134.67,0,0,Check-Out,2019-06-03 -Resort Hotel,1,1,2017,January,10,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient,32.59,0,0,No-Show,2020-02-01 -Resort Hotel,0,50,2016,October,44,28,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,86.0,179.0,0,Transient-Party,69.66,0,0,Check-Out,2018-08-03 -City Hotel,0,4,2016,May,17,9,0,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.54,0,1,Check-Out,2019-12-04 -Resort Hotel,0,258,2017,July,28,5,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,G,G,1,No Deposit,8.0,179.0,0,Transient,106.95,1,1,Check-Out,2020-06-02 -Resort Hotel,0,11,2016,March,11,6,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,34.04,0,0,Check-Out,2019-03-04 -City Hotel,0,197,2017,May,22,6,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.15,0,1,Check-Out,2020-04-02 -City Hotel,0,83,2017,March,12,12,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient-Party,95.72,0,2,Check-Out,2019-02-01 -City Hotel,1,400,2015,August,34,9,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,129.16,0,0,Canceled,2017-12-03 -City Hotel,0,125,2016,August,37,30,0,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.52,0,1,Check-Out,2019-03-04 -City Hotel,0,107,2016,May,22,8,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,61.41,0,0,Check-Out,2019-03-04 -Resort Hotel,0,145,2017,March,12,18,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,378.0,222.0,75,Transient,45.35,1,3,Check-Out,2020-03-03 -Resort Hotel,0,1,2016,October,43,17,1,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,2,No Deposit,253.0,179.0,0,Transient,166.77,0,0,Check-Out,2019-10-04 -City Hotel,1,151,2015,July,30,24,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,77.3,0,0,Canceled,2020-04-02 -Resort Hotel,0,92,2017,May,27,6,2,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient-Party,80.65,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2015,September,35,9,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,145.1,0,0,Check-Out,2018-07-03 -Resort Hotel,0,31,2016,September,42,13,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,151.99,0,0,Check-Out,2019-08-04 -City Hotel,1,30,2015,September,45,25,2,2,2,0.0,0,BB,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.58,0,0,Canceled,2018-08-03 -City Hotel,0,2,2016,January,3,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,12.0,243.0,0,Transient-Party,62.37,0,0,Check-Out,2018-11-02 -City Hotel,1,12,2016,September,44,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,219.0,0,Transient,82.42,0,0,Canceled,2019-06-03 -Resort Hotel,1,165,2016,March,23,31,1,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,60.31,0,0,Canceled,2019-06-03 -City Hotel,1,0,2016,June,49,9,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,13.0,179.0,0,Transient,1.5,0,0,Canceled,2019-09-03 -City Hotel,0,302,2016,October,43,7,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,131.92,0,1,Check-Out,2019-08-04 -City Hotel,1,41,2016,April,15,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,81.65,0,0,Canceled,2019-02-01 -City Hotel,0,1,2016,July,29,21,0,3,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,167.47,0,0,Check-Out,2019-06-03 -Resort Hotel,0,151,2017,July,32,19,0,3,3,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,32.0,179.0,0,Transient-Party,163.16,0,0,Check-Out,2020-06-02 -Resort Hotel,0,59,2015,December,53,12,2,4,2,1.0,0,BB,USA,Direct,Direct,0,0,0,F,D,0,No Deposit,246.0,179.0,0,Transient,50.27,1,2,Check-Out,2018-10-03 -City Hotel,1,36,2015,July,31,10,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,138.59,0,0,Canceled,2018-05-03 -Resort Hotel,0,110,2015,December,53,4,0,2,2,1.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,90.9,0,0,Check-Out,2018-06-02 -Resort Hotel,0,285,2015,July,33,11,3,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,82.44,0,0,Canceled,2017-10-03 -City Hotel,0,93,2016,March,21,9,0,3,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,64.88,0,0,Check-Out,2019-04-03 -City Hotel,0,99,2017,February,10,10,2,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,120.49,0,0,Check-Out,2020-02-01 -City Hotel,1,273,2015,October,43,16,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,63.37,0,0,Canceled,2018-08-03 -City Hotel,1,0,2016,July,24,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.43,0,0,Canceled,2019-01-03 -Resort Hotel,0,101,2017,June,27,6,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Contract,89.16,0,1,Check-Out,2020-04-02 -City Hotel,0,120,2016,October,44,9,1,2,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,128.07,0,0,Check-Out,2019-03-04 -City Hotel,1,38,2017,May,21,23,0,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,129.94,0,0,Canceled,2020-02-01 -City Hotel,0,60,2016,October,37,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,82.0,179.0,0,Transient,182.54,0,0,Check-Out,2018-12-03 -Resort Hotel,0,2,2015,November,52,27,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,84.4,0,2,Check-Out,2018-08-03 -Resort Hotel,1,383,2015,October,45,30,2,1,1,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,264.0,179.0,0,Transient-Party,24.72,0,0,Canceled,2018-08-03 -City Hotel,1,246,2016,May,23,23,0,4,2,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,A,F,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Canceled,2019-01-03 -Resort Hotel,0,58,2015,December,51,4,2,5,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,344.0,179.0,0,Transient-Party,61.26,0,0,Check-Out,2018-06-02 -City Hotel,0,285,2016,September,45,30,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.49,0,0,Check-Out,2018-08-03 -City Hotel,1,45,2016,April,16,7,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,63,Contract,119.22,0,0,Canceled,2018-11-02 -City Hotel,1,47,2016,August,35,23,2,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,177.39,0,0,Canceled,2018-11-02 -City Hotel,1,0,2016,December,51,12,0,1,3,0.0,0,SC,,Online TA,Corporate,0,0,0,P,P,0,No Deposit,14.0,247.0,0,Group,1.93,0,0,Canceled,2019-12-04 -Resort Hotel,1,269,2015,October,46,18,2,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,C,0,No Deposit,2.0,249.0,0,Contract,40.63,0,0,Check-Out,2018-08-03 -City Hotel,1,45,2017,May,25,18,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,0,E,A,0,No Deposit,13.0,179.0,0,Transient,138.36,0,0,Canceled,2020-04-02 -City Hotel,0,33,2017,August,3,18,0,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,103.0,0,1,Check-Out,2019-12-04 -City Hotel,1,153,2016,August,38,20,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.36,0,0,Canceled,2019-04-03 -City Hotel,0,16,2016,December,4,22,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.56,0,0,Check-Out,2019-10-04 -City Hotel,0,10,2017,May,20,14,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,92.66,0,1,Check-Out,2020-03-03 -City Hotel,1,400,2016,October,45,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.54,0,0,Canceled,2017-11-02 -City Hotel,0,187,2016,May,22,4,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,75.18,0,1,Check-Out,2019-05-04 -City Hotel,0,17,2015,December,53,25,2,5,2,0.0,0,Undefined,BEL,Groups,TA/TO,0,0,0,A,E,0,No Deposit,88.0,179.0,0,Transient-Party,72.38,0,2,Check-Out,2018-07-03 -City Hotel,0,40,2015,October,46,7,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,46.0,0,0,Check-Out,2018-09-02 -City Hotel,1,56,2016,June,27,31,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,123.71,0,0,Canceled,2019-02-01 -Resort Hotel,1,158,2017,February,11,26,1,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,98.72,0,0,Canceled,2019-11-03 -City Hotel,1,196,2016,August,37,15,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,147.38,0,0,Canceled,2019-09-03 -City Hotel,1,322,2015,October,45,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.36,0,0,Canceled,2017-11-02 -Resort Hotel,0,158,2016,July,37,21,2,5,2,1.0,0,HB,,Online TA,Direct,0,0,0,H,C,3,No Deposit,248.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-06-03 -City Hotel,1,22,2015,July,34,6,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.77,0,0,Canceled,2017-11-02 -City Hotel,0,250,2016,August,41,30,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,111.37,0,1,Check-Out,2019-04-03 -Resort Hotel,0,386,2015,October,43,9,4,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,D,D,0,No Deposit,327.0,179.0,0,Contract,61.7,0,1,Check-Out,2017-11-02 -City Hotel,1,37,2017,July,28,21,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,144.82,0,0,Canceled,2019-04-03 -City Hotel,1,389,2016,May,21,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,297.0,179.0,0,Transient,128.94,0,0,Canceled,2019-02-01 -City Hotel,0,148,2016,September,44,30,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,114.53,1,2,Check-Out,2019-08-04 -City Hotel,1,105,2017,February,9,19,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.98,0,0,Canceled,2019-10-04 -Resort Hotel,0,221,2017,May,20,30,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,86.0,179.0,0,Transient,200.14,0,2,Check-Out,2020-03-03 -City Hotel,1,398,2015,November,37,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,63.4,0,0,Canceled,2018-08-03 -Resort Hotel,0,12,2016,November,49,6,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,248.0,179.0,0,Group,62.12,0,1,Check-Out,2019-09-03 -City Hotel,0,17,2015,September,46,2,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,57.89,0,0,Check-Out,2018-01-31 -City Hotel,1,87,2016,July,33,19,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,9.0,179.0,0,Transient,115.4,0,0,Canceled,2019-04-03 -City Hotel,0,15,2016,March,10,16,0,2,1,0.0,0,SC,ITA,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,75.6,0,0,Check-Out,2019-02-01 -Resort Hotel,1,142,2016,March,17,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient,79.68,0,0,Canceled,2019-01-03 -City Hotel,0,26,2017,April,19,31,1,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,85.63,0,0,Check-Out,2020-02-01 -Resort Hotel,0,44,2016,August,35,27,3,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,D,2,No Deposit,242.0,179.0,0,Transient,206.66,1,3,Check-Out,2019-02-01 -City Hotel,0,36,2017,February,7,9,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,12.0,179.0,0,Transient,1.66,0,0,Check-Out,2019-10-04 -City Hotel,1,86,2015,October,44,18,2,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,90.98,0,0,Canceled,2018-08-03 -City Hotel,1,98,2016,December,51,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,59.17,0,0,Canceled,2018-10-03 -City Hotel,1,2,2016,April,17,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,127.0,179.0,0,Transient,60.48,0,1,Canceled,2019-03-04 -City Hotel,0,15,2017,June,36,21,0,3,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-06-02 -Resort Hotel,1,197,2016,July,36,8,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,12.0,179.0,0,Transient,194.93,0,0,Canceled,2018-05-03 -Resort Hotel,0,0,2015,December,50,28,2,5,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,I,1,No Deposit,239.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-12-03 -City Hotel,1,67,2016,November,53,9,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,88.38,0,0,Canceled,2019-10-04 -Resort Hotel,0,20,2016,March,16,15,0,4,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,E,1,No Deposit,15.0,179.0,75,Transient,87.78,1,3,Check-Out,2019-02-01 -City Hotel,0,0,2016,February,12,27,0,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,74.65,0,0,Check-Out,2018-10-03 -City Hotel,1,291,2016,October,45,14,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.43,0,0,Canceled,2018-03-03 -Resort Hotel,0,20,2015,December,51,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient-Party,60.4,0,0,Check-Out,2018-09-02 -Resort Hotel,0,46,2016,October,16,15,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,240.0,179.0,0,Group,41.73,0,2,Check-Out,2018-11-02 -Resort Hotel,0,62,2017,June,29,17,4,5,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,156.43,0,3,Check-Out,2020-03-03 -Resort Hotel,1,14,2015,November,48,7,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,298.0,179.0,0,Transient-Party,71.37,0,0,Canceled,2018-12-03 -Resort Hotel,1,130,2016,July,27,2,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,149.8,0,0,Canceled,2019-03-04 -City Hotel,1,305,2015,October,44,21,2,3,2,0.0,0,BB,SWE,Direct,Corporate,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,96.42,0,0,Canceled,2019-06-03 -Resort Hotel,0,22,2015,December,50,24,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,75.91,0,0,Check-Out,2018-09-02 -City Hotel,0,247,2017,August,36,28,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,167.0,179.0,0,Transient,107.09,0,0,Check-Out,2020-07-03 -City Hotel,0,105,2016,June,25,8,0,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,86.0,179.0,0,Transient,93.32,0,0,Check-Out,2019-06-03 -Resort Hotel,0,2,2016,August,10,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,85.7,1,1,Check-Out,2019-06-03 -City Hotel,1,6,2016,June,26,17,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.62,0,1,Canceled,2019-05-04 -City Hotel,1,99,2016,August,35,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,153.0,179.0,0,Transient,79.74,0,0,Canceled,2018-08-03 -City Hotel,0,39,2016,December,50,28,1,4,1,1.0,0,BB,ESP,Online TA,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,152.24,1,0,Check-Out,2018-12-03 -City Hotel,0,1,2016,October,46,16,1,0,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,227.0,0,Transient,91.07,0,0,Check-Out,2019-08-04 -City Hotel,0,264,2016,October,45,27,3,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,59.51,0,0,Check-Out,2019-11-03 -Resort Hotel,0,38,2017,August,38,28,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient-Party,193.18,1,1,Check-Out,2020-05-03 -City Hotel,1,20,2016,August,22,2,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.97,0,0,Canceled,2019-02-01 -Resort Hotel,1,152,2016,June,24,21,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,300.0,179.0,0,Transient,93.18,0,1,No-Show,2019-04-03 -City Hotel,1,91,2017,May,21,10,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,103.34,0,0,Canceled,2020-02-01 -Resort Hotel,0,208,2016,August,34,9,4,10,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,231.09,0,0,Check-Out,2020-06-02 -City Hotel,0,12,2017,May,19,10,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,3,No Deposit,34.0,220.0,0,Transient-Party,63.07,0,0,Check-Out,2020-05-03 -Resort Hotel,1,111,2016,December,33,27,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,205.19,0,1,Canceled,2019-05-04 -City Hotel,1,167,2017,January,8,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,A,0,Non Refund,8.0,179.0,0,Transient,59.52,0,0,Canceled,2019-09-03 -City Hotel,0,0,2017,February,9,6,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.31,0,0,Check-Out,2020-02-01 -City Hotel,0,40,2015,November,44,9,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,64.66,0,0,Check-Out,2018-08-03 -City Hotel,1,4,2015,August,35,5,0,1,1,0.0,0,BB,PRT,Complementary,Undefined,1,1,0,A,A,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Canceled,2018-08-03 -City Hotel,0,242,2017,June,26,9,0,2,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,149.15,0,0,Check-Out,2020-06-02 -Resort Hotel,1,9,2015,September,36,31,2,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,237.0,179.0,0,Transient,39.49,0,0,Canceled,2018-05-03 -City Hotel,0,192,2017,May,10,27,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,125.93,0,2,Check-Out,2020-04-02 -Resort Hotel,0,2,2016,January,11,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,75,Transient-Party,38.21,0,0,Check-Out,2018-12-03 -City Hotel,0,0,2017,May,11,9,0,2,2,0.0,0,BB,ESP,Complementary,Direct,1,0,1,G,F,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,2020-02-01 -City Hotel,1,40,2016,January,3,15,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,64.72,0,1,No-Show,2018-11-02 -Resort Hotel,0,0,2016,December,51,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,14.0,68.0,0,Transient,27.7,1,0,Check-Out,2019-04-03 -City Hotel,1,159,2017,May,36,24,0,2,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,127.15,0,2,Canceled,2020-06-02 -Resort Hotel,0,4,2015,July,30,25,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,96.85,0,0,Check-Out,2018-06-02 -Resort Hotel,0,20,2015,December,51,2,1,7,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,244.0,179.0,0,Transient,40.21,0,2,Check-Out,2018-11-02 -Resort Hotel,0,0,2017,May,15,5,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,120.2,1,1,Check-Out,2019-11-03 -City Hotel,0,304,2017,August,36,28,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,121.35,0,0,Check-Out,2020-06-02 -City Hotel,0,296,2016,September,34,13,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,150.79,0,0,Check-Out,2019-07-04 -City Hotel,0,106,2016,October,25,14,1,1,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,176.02,0,2,Check-Out,2019-07-04 -City Hotel,0,19,2016,January,4,29,0,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,61.76,0,0,Check-Out,2018-12-03 -Resort Hotel,1,78,2017,August,31,23,2,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,64.81,0,0,Canceled,2020-02-01 -Resort Hotel,0,0,2016,July,26,24,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,16.0,179.0,0,Transient,223.67,1,0,Check-Out,2020-06-02 -Resort Hotel,1,186,2016,August,40,25,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,171.54,0,0,Canceled,2019-05-04 -Resort Hotel,0,32,2017,July,11,16,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,223.99,1,1,Check-Out,2020-04-02 -Resort Hotel,0,110,2016,May,17,9,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,42.62,0,0,Check-Out,2019-04-03 -Resort Hotel,1,151,2016,April,9,17,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,88.68,0,0,Canceled,2019-01-03 -City Hotel,1,28,2017,May,20,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,45.0,0,Transient,62.85,0,0,Canceled,2020-02-01 -City Hotel,0,18,2016,December,51,6,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.46,1,3,Check-Out,2019-08-04 -City Hotel,0,33,2016,October,53,27,2,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,95.5,0,2,Check-Out,2019-11-03 -City Hotel,0,2,2016,May,20,4,1,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,173.99,0,0,Check-Out,2020-06-02 -City Hotel,1,18,2016,May,44,10,0,1,1,0.0,0,BB,PRT,Complementary,TA/TO,1,1,1,A,A,0,Non Refund,10.0,179.0,0,Transient,0.0,0,2,Canceled,2019-01-03 -Resort Hotel,0,1,2015,September,50,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,16.0,90.0,0,Transient,33.02,0,0,Check-Out,2018-08-03 -City Hotel,0,42,2016,June,21,15,0,2,1,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.65,0,3,Check-Out,2019-03-04 -Resort Hotel,0,248,2016,September,35,20,2,5,2,1.0,0,HB,ESP,Direct,Direct,1,0,0,H,I,1,No Deposit,13.0,179.0,75,Transient-Party,5.55,0,0,Check-Out,2019-05-04 -City Hotel,1,143,2016,December,50,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,64,Transient,63.23,0,0,Canceled,2018-11-02 -City Hotel,0,0,2016,September,44,2,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,195.12,0,0,Check-Out,2019-06-03 -Resort Hotel,1,203,2017,May,10,21,1,1,2,0.0,0,BB,BRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,142.0,179.0,0,Transient,63.66,0,0,Canceled,2020-03-03 -City Hotel,0,3,2016,October,36,12,2,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,G,3,No Deposit,16.0,179.0,0,Transient,93.54,0,1,Check-Out,2018-08-03 -Resort Hotel,0,13,2016,August,23,31,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,107.27,0,0,Check-Out,2019-03-04 -Resort Hotel,1,46,2017,May,22,21,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,160.0,179.0,0,Transient-Party,100.51,0,0,Canceled,2020-04-02 -City Hotel,0,51,2016,June,26,19,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.29,0,1,Check-Out,2019-03-04 -Resort Hotel,0,146,2016,October,46,27,2,5,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,106.15,0,2,Check-Out,2019-09-03 -City Hotel,0,16,2017,August,34,17,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,2.79,0,3,Check-Out,2020-07-03 -Resort Hotel,0,0,2016,October,36,19,1,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,1.11,1,0,Check-Out,2018-09-02 -City Hotel,0,51,2016,September,43,7,2,5,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient-Party,82.57,0,0,Check-Out,2019-06-03 -City Hotel,0,103,2016,January,3,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,16,Transient-Party,106.8,0,0,Check-Out,2018-11-02 -City Hotel,1,7,2017,December,50,22,1,5,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,199.0,179.0,18,Transient,76.01,0,0,Canceled,2019-10-04 -City Hotel,1,223,2016,August,36,2,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,146.86,0,0,Canceled,2019-04-03 -City Hotel,1,41,2016,July,34,24,2,4,3,2.0,0,BB,SWE,Online TA,Direct,0,0,0,F,F,0,No Deposit,247.0,179.0,0,Transient,157.35,0,0,Canceled,2019-03-04 -City Hotel,0,12,2015,October,45,24,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,104.41,0,0,Check-Out,2018-08-03 -City Hotel,0,104,2017,April,18,31,2,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,80.95,0,2,Check-Out,2020-03-03 -City Hotel,0,44,2017,May,24,31,2,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,9.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-05-03 -City Hotel,1,15,2017,February,8,20,0,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,74.35,0,0,Canceled,2019-10-04 -Resort Hotel,1,250,2015,August,42,5,2,1,2,0.0,0,FB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,96.0,179.0,0,Transient-Party,63.6,0,0,Canceled,2018-06-02 -Resort Hotel,0,86,2016,July,29,6,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,86.12,1,3,Check-Out,2019-06-03 -City Hotel,0,17,2017,July,27,18,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Group,94.06,0,2,Check-Out,2019-12-04 -City Hotel,1,2,2015,June,28,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,Non Refund,2.0,45.0,0,Transient,68.45,0,0,Canceled,2018-11-02 -Resort Hotel,0,149,2017,March,17,15,0,5,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,1,A,D,1,No Deposit,16.0,221.0,75,Transient,89.55,0,0,Check-Out,2020-03-03 -City Hotel,1,212,2017,August,38,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,A,A,2,Non Refund,30.0,179.0,0,Transient,102.28,0,0,Canceled,2019-11-03 -Resort Hotel,0,99,2017,August,23,28,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,98.39,0,0,Check-Out,2019-11-03 -Resort Hotel,1,106,2017,April,10,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,239.0,179.0,0,Transient,96.03,0,2,Canceled,2019-10-04 -City Hotel,1,250,2015,September,42,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,60.03,0,0,Canceled,2018-07-03 -City Hotel,0,2,2015,July,36,16,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -Resort Hotel,0,237,2017,May,29,17,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,C,1,No Deposit,246.0,179.0,0,Transient,120.32,1,0,Check-Out,2019-04-03 -City Hotel,1,318,2017,October,32,21,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,Non Refund,10.0,179.0,0,Transient,159.65,0,0,Canceled,2019-10-04 -Resort Hotel,0,0,2016,June,27,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient,76.63,0,1,Check-Out,2019-05-04 -Resort Hotel,0,1,2015,October,45,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,196.0,179.0,0,Transient,29.35,0,0,Check-Out,2018-09-02 -Resort Hotel,0,1,2016,March,12,25,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,40.97,0,1,Check-Out,2019-01-03 -City Hotel,1,92,2016,April,43,22,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,75.0,179.0,0,Transient,103.67,0,2,Canceled,2019-02-01 -City Hotel,0,9,2016,October,44,25,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Group,125.05,0,1,Check-Out,2018-09-02 -City Hotel,1,13,2017,March,17,11,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,A,0,Non Refund,30.0,76.0,0,Transient,62.16,0,0,Canceled,2020-02-01 -City Hotel,0,2,2016,June,26,2,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,125.16,0,0,Check-Out,2018-12-03 -City Hotel,1,284,2015,August,36,17,2,5,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,55.73,0,1,Canceled,2018-06-02 -Resort Hotel,0,63,2015,December,53,26,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,121.94,1,2,Check-Out,2018-11-02 -Resort Hotel,0,32,2016,July,36,29,2,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,130.96,1,0,Check-Out,2019-05-04 -City Hotel,0,147,2017,July,30,6,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,100.08,0,0,Check-Out,2020-07-03 -Resort Hotel,1,167,2017,May,22,18,4,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,186.0,179.0,0,Transient,112.73,0,0,Canceled,2020-01-04 -Resort Hotel,0,14,2016,February,10,30,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,16.0,331.0,0,Transient,43.92,0,0,Check-Out,2019-12-04 -City Hotel,0,12,2016,April,19,16,0,2,1,0.0,0,BB,BRA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,74.74,0,0,Check-Out,2019-03-04 -City Hotel,1,51,2016,August,36,13,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,8.0,179.0,0,Transient,134.21,0,2,Canceled,2019-07-04 -City Hotel,1,301,2017,May,17,15,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,81.0,179.0,0,Transient,61.32,0,0,Canceled,2019-12-04 -City Hotel,0,16,2016,October,17,30,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,102.39,0,1,Check-Out,2019-10-04 -City Hotel,0,14,2017,January,3,23,1,0,2,0.0,0,BB,FRA,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Group,159.96,0,3,Check-Out,2020-02-01 -Resort Hotel,0,2,2016,June,23,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,16.0,229.0,0,Transient,37.57,0,0,Check-Out,2020-04-02 -City Hotel,1,41,2016,June,27,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,93.51,0,0,Canceled,2019-02-01 -Resort Hotel,1,81,2017,May,21,28,2,5,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,172.0,179.0,75,Transient,74.46,0,0,Canceled,2020-04-02 -Resort Hotel,0,101,2017,June,28,29,4,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,162.0,179.0,0,Transient,92.1,1,0,Check-Out,2020-04-02 -City Hotel,1,83,2016,October,44,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,11.0,179.0,0,Transient,116.76,0,0,Canceled,2019-08-04 -City Hotel,1,107,2016,October,44,16,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,153.63,0,2,Canceled,2019-08-04 -Resort Hotel,0,0,2016,February,10,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,73.0,179.0,0,Transient,70.39,0,0,Check-Out,2020-01-04 -Resort Hotel,0,28,2015,November,42,30,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,38.2,0,0,Check-Out,2018-07-03 -Resort Hotel,0,119,2017,March,16,5,2,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,C,1,No Deposit,291.0,179.0,0,Transient-Party,97.92,0,0,Check-Out,2020-03-03 -City Hotel,0,19,2016,April,19,18,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,224.26,0,1,Check-Out,2019-10-04 -City Hotel,0,326,2016,May,21,4,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,76.43,0,0,Check-Out,2019-02-01 -City Hotel,0,107,2017,August,27,21,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,176.91,0,2,Check-Out,2020-05-03 -City Hotel,0,32,2016,May,25,5,2,10,3,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,E,E,1,No Deposit,16.0,178.0,0,Transient,140.35,0,0,Check-Out,2019-04-03 -City Hotel,0,1,2016,October,46,15,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,61.87,0,0,Check-Out,2019-09-03 -City Hotel,1,323,2017,June,25,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,1.0,179.0,0,Transient,119.82,0,0,Canceled,2019-10-04 -City Hotel,0,96,2015,August,37,28,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,106.54,0,2,Check-Out,2019-05-04 -Resort Hotel,0,46,2017,February,10,27,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,72.74,0,3,Check-Out,2019-10-04 -City Hotel,1,41,2017,June,26,30,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,105.68,0,3,Canceled,2020-03-03 -City Hotel,1,1,2017,April,16,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Group,153.26,0,0,Canceled,2020-03-03 -City Hotel,1,101,2017,July,31,12,2,4,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,160.5,0,3,Canceled,2020-06-02 -City Hotel,0,2,2017,February,11,10,0,1,1,0.0,0,HB,GBR,Offline TA/TO,Corporate,1,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,78.6,0,1,Check-Out,2020-03-03 -City Hotel,0,0,2015,October,46,12,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,38.94,0,0,Check-Out,2018-08-03 -Resort Hotel,0,32,2016,October,44,27,2,5,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,3,No Deposit,244.0,179.0,0,Transient,126.23,1,2,Check-Out,2019-02-01 -Resort Hotel,0,101,2015,October,45,26,2,1,1,0.0,0,BB,SWE,Groups,Corporate,0,0,0,A,A,3,No Deposit,77.0,179.0,0,Transient-Party,84.11,0,0,Check-Out,2018-09-02 -Resort Hotel,0,95,2015,December,26,20,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,62.34,0,0,Check-Out,2019-06-03 -City Hotel,0,9,2016,December,50,29,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.08,0,1,Check-Out,2018-11-02 -City Hotel,1,40,2017,March,16,3,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,75.46,0,0,Canceled,2019-10-04 -City Hotel,1,103,2017,March,9,25,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,88.36,0,2,Canceled,2020-02-01 -City Hotel,1,45,2016,March,11,16,2,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,B,0,No Deposit,79.0,179.0,0,Transient-Party,37.51,0,0,Canceled,2019-02-01 -City Hotel,0,14,2016,December,51,10,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,76.81,0,1,Check-Out,2019-09-03 -Resort Hotel,0,112,2016,August,45,28,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,73.92,0,2,Check-Out,2019-08-04 -Resort Hotel,1,158,2016,August,29,5,2,5,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,103.64,0,0,Check-Out,2019-08-04 -City Hotel,1,18,2016,April,16,20,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,152.11,0,0,Canceled,2019-02-01 -Resort Hotel,0,103,2017,February,10,20,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,10.0,179.0,0,Transient,73.54,0,3,Check-Out,2020-02-01 -City Hotel,1,156,2016,June,26,10,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,90.52,0,0,Canceled,2018-11-02 -City Hotel,0,44,2016,August,44,28,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.96,0,2,Check-Out,2019-07-04 -City Hotel,1,239,2015,August,38,7,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.25,0,0,Canceled,2018-05-03 -City Hotel,0,13,2016,September,39,25,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,112.24,0,0,Check-Out,2019-07-04 -City Hotel,0,68,2016,May,48,30,0,2,1,0.0,0,BB,CN,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,84.0,73.0,0,Transient,119.38,0,0,Check-Out,2018-11-02 -Resort Hotel,1,121,2017,May,22,16,1,1,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.09,0,0,Canceled,2020-04-02 -City Hotel,1,276,2017,July,28,2,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.58,0,1,Canceled,2019-08-04 -Resort Hotel,0,267,2016,September,39,30,4,7,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,70.79,0,3,Check-Out,2019-06-03 -City Hotel,0,15,2016,May,23,24,0,2,2,0.0,0,SC,ESP,Groups,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,169.91,0,0,Check-Out,2019-06-03 -Resort Hotel,0,20,2015,August,39,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient-Party,61.29,0,0,Check-Out,2018-09-02 -City Hotel,0,14,2017,August,34,31,0,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,129.11,0,2,Check-Out,2019-09-03 -Resort Hotel,0,141,2017,March,8,13,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,26.0,179.0,0,Transient,80.11,1,0,Check-Out,2020-06-02 -Resort Hotel,0,7,2015,August,41,19,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,169.26,0,2,Check-Out,2018-06-02 -City Hotel,1,34,2017,March,9,6,0,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.62,0,1,Canceled,2020-03-03 -Resort Hotel,0,10,2016,June,28,21,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,74.16,0,0,Check-Out,2019-06-03 -Resort Hotel,1,32,2016,March,9,25,1,1,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,162.0,179.0,42,Transient,27.17,0,0,Canceled,2019-01-03 -Resort Hotel,0,33,2016,September,41,15,1,3,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,70.33,1,0,Check-Out,2019-07-04 -City Hotel,0,46,2015,October,44,31,1,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,71.57,0,3,Check-Out,2018-09-02 -City Hotel,1,190,2017,October,42,2,2,2,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,9.0,179.0,0,Transient,86.21,0,3,Canceled,2019-11-03 -City Hotel,0,65,2015,October,44,21,1,3,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,19.0,179.0,0,Transient-Party,93.52,0,0,Check-Out,2018-07-03 -Resort Hotel,0,26,2015,December,52,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient-Party,65.69,1,0,Check-Out,2018-09-02 -City Hotel,0,93,2016,October,43,13,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.11,0,1,Check-Out,2019-09-03 -City Hotel,1,29,2016,July,26,29,1,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,88.5,0,0,Check-Out,2019-03-04 -City Hotel,1,101,2017,July,35,12,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient-Party,119.34,0,1,Canceled,2020-06-02 -Resort Hotel,0,289,2017,August,31,21,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,106.5,1,2,Check-Out,2020-07-03 -Resort Hotel,0,2,2017,March,33,31,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,90.19,0,1,Check-Out,2020-04-02 -City Hotel,0,33,2016,October,41,24,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,116.35,0,2,Check-Out,2019-08-04 -City Hotel,1,293,2017,June,26,18,1,4,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,131.39,0,1,Canceled,2020-06-02 -Resort Hotel,0,354,2017,April,11,27,2,4,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,290.0,179.0,0,Transient-Party,87.53,0,0,Check-Out,2020-01-04 -City Hotel,1,111,2017,September,43,15,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,156.53,0,0,Canceled,2019-12-04 -Resort Hotel,0,0,2016,December,37,13,2,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,118.3,1,0,Check-Out,2019-12-04 -City Hotel,0,229,2015,July,31,18,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,61.54,0,0,Check-Out,2018-08-03 -City Hotel,0,104,2017,July,28,5,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,122.5,0,1,Check-Out,2020-06-02 -Resort Hotel,0,167,2017,August,28,2,4,5,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,218.51,0,0,Check-Out,2020-02-01 -City Hotel,1,10,2017,February,8,12,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,66.37,0,0,Canceled,2018-09-02 -City Hotel,0,1,2017,February,8,8,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,331.0,0,Transient,35.29,0,0,Check-Out,2020-04-02 -City Hotel,0,0,2017,April,20,21,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,32.0,179.0,0,Transient,130.3,0,0,Check-Out,2020-05-03 -Resort Hotel,1,159,2016,April,28,18,2,1,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,80.67,0,0,Canceled,2019-06-03 -City Hotel,0,259,2017,August,35,14,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,181.47,0,3,Check-Out,2019-12-04 -Resort Hotel,0,47,2017,January,11,29,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,81.77,0,0,Check-Out,2019-11-03 -Resort Hotel,0,0,2016,December,3,5,2,0,2,0.0,0,BB,,Complementary,TA/TO,0,0,0,H,I,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-09-03 -Resort Hotel,0,193,2015,October,42,21,2,2,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,117.82,0,0,Check-Out,2018-06-02 -City Hotel,0,0,2016,January,3,31,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,57.3,0,1,Check-Out,2018-10-03 -City Hotel,0,54,2017,May,18,5,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,154.38,0,1,Check-Out,2020-02-01 -City Hotel,1,92,2015,September,45,27,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,67.99,0,2,No-Show,2018-06-02 -City Hotel,1,167,2017,February,11,21,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,H,0,No Deposit,7.0,179.0,0,Transient,67.95,0,0,Canceled,2020-02-01 -Resort Hotel,0,109,2016,March,16,5,0,4,2,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,70.33,0,2,Check-Out,2019-05-04 -City Hotel,1,17,2015,July,33,21,1,5,2,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-07-03 -City Hotel,0,1,2016,February,10,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,13.0,45.0,0,Transient,59.56,0,0,Check-Out,2019-03-04 -Resort Hotel,0,245,2016,March,10,15,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,105.0,179.0,0,Transient-Party,38.97,0,0,Check-Out,2019-04-03 -Resort Hotel,0,0,2016,February,8,9,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,I,0,No Deposit,11.0,331.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -City Hotel,1,291,2016,October,45,10,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,77.0,179.0,0,Transient,116.91,0,0,Canceled,2019-06-03 -City Hotel,0,0,2015,January,44,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,222.0,0,Transient,88.75,1,0,Check-Out,2019-01-03 -Resort Hotel,1,303,2016,March,9,26,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient,60.88,0,0,Check-Out,2019-01-03 -Resort Hotel,0,38,2016,October,50,27,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,23,Transient,72.72,0,0,Check-Out,2018-07-03 -City Hotel,1,444,2017,August,37,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.82,0,0,Canceled,2018-06-02 -Resort Hotel,0,1,2015,December,12,8,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,62,Transient-Party,83.88,0,0,Check-Out,2018-11-02 -City Hotel,1,188,2016,June,26,14,4,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,25.0,179.0,42,Transient,183.4,0,0,Canceled,2019-01-03 -Resort Hotel,1,2,2015,December,39,16,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,1,1,A,D,0,Non Refund,15.0,179.0,0,Group,61.01,0,0,Canceled,2018-08-03 -City Hotel,1,3,2016,March,11,9,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,76.23,0,0,Canceled,2018-12-03 -Resort Hotel,1,16,2017,June,26,20,4,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,342.0,179.0,0,Transient,118.65,1,0,Canceled,2020-02-01 -Resort Hotel,0,51,2015,August,32,31,4,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,254.0,179.0,0,Transient,224.3,1,3,Check-Out,2018-05-03 -City Hotel,1,1,2017,June,10,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,16.0,45.0,0,Transient,39.74,0,0,Canceled,2020-04-02 -Resort Hotel,0,63,2016,April,18,6,2,7,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,341.0,179.0,0,Transient,73.19,0,1,Check-Out,2019-03-04 -Resort Hotel,0,0,2016,November,42,17,0,2,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,C,3,No Deposit,15.0,256.0,0,Transient,27.33,0,0,Check-Out,2018-09-02 -City Hotel,0,247,2016,July,31,21,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,211.39,0,0,Check-Out,2019-06-03 -Resort Hotel,0,139,2016,August,37,21,2,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,201.13,1,2,Check-Out,2019-07-04 -Resort Hotel,0,42,2017,June,12,21,2,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,121.41,0,1,Check-Out,2020-04-02 -City Hotel,1,226,2016,June,20,17,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,199.67,0,0,Canceled,2019-02-01 -City Hotel,0,29,2016,April,12,24,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient,164.03,0,0,Check-Out,2019-02-01 -City Hotel,0,237,2015,October,43,21,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,59.35,0,0,Check-Out,2018-08-03 -Resort Hotel,0,50,2016,August,17,10,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,136.95,0,0,Check-Out,2019-11-03 -City Hotel,0,13,2017,May,20,27,1,2,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,122.53,1,0,Check-Out,2020-04-02 -City Hotel,0,3,2017,March,20,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,81.0,238.0,0,Transient,1.92,1,0,Check-Out,2020-06-02 -City Hotel,0,45,2017,April,8,21,2,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.83,1,1,Check-Out,2020-03-03 -City Hotel,0,53,2016,December,53,24,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,59.75,1,1,Check-Out,2019-11-03 -Resort Hotel,0,54,2017,August,38,29,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,147.65,1,2,Check-Out,2020-06-02 -City Hotel,0,55,2017,July,32,26,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,132.59,0,0,Check-Out,2020-04-02 -City Hotel,0,164,2017,August,39,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,75.31,0,0,Check-Out,2020-07-03 -City Hotel,0,169,2016,August,36,28,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,90.0,179.0,65,Transient,168.94,0,0,Check-Out,2018-11-02 -Resort Hotel,0,1,2016,October,45,23,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,324.0,179.0,0,Transient,37.5,0,0,Check-Out,2019-09-03 -City Hotel,0,270,2016,May,16,9,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,151.0,179.0,0,Transient-Party,113.43,0,1,Check-Out,2019-02-01 -Resort Hotel,0,98,2016,May,22,14,0,5,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,D,F,3,No Deposit,33.0,179.0,0,Transient-Party,115.55,0,2,Check-Out,2020-06-02 -City Hotel,0,12,2015,December,50,31,0,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,90.22,0,0,Check-Out,2018-08-03 -Resort Hotel,0,137,2017,March,29,13,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,187.0,179.0,75,Transient-Party,75.85,0,0,Check-Out,2019-11-03 -City Hotel,0,62,2016,May,23,24,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,94.7,0,0,Check-Out,2019-04-03 -City Hotel,1,425,2016,September,43,17,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,42,Transient,101.88,0,0,Canceled,2018-08-03 -Resort Hotel,0,34,2017,March,16,28,0,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,69.55,0,3,Check-Out,2020-04-02 -Resort Hotel,0,154,2016,June,25,23,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,93.0,179.0,0,Transient,77.12,0,1,Check-Out,2019-06-03 -City Hotel,1,258,2016,October,14,15,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,125.68,0,1,Canceled,2019-10-04 -City Hotel,0,14,2016,June,27,15,1,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,169.44,0,1,Check-Out,2019-03-04 -City Hotel,1,2,2015,July,28,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,12.0,179.0,0,Transient,191.51,0,0,No-Show,2019-01-03 -Resort Hotel,1,305,2016,September,42,13,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Transient,76.82,0,0,Check-Out,2019-08-04 -Resort Hotel,0,49,2015,June,28,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,337.0,179.0,0,Group,43.44,0,0,Check-Out,2018-11-02 -Resort Hotel,0,12,2016,March,10,10,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,1,Refundable,14.0,223.0,0,Transient-Party,35.68,0,0,Check-Out,2019-04-03 -Resort Hotel,0,194,2015,December,50,6,0,1,2,1.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient-Party,71.44,0,0,Check-Out,2018-11-02 -City Hotel,0,46,2016,December,53,25,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,89.33,0,1,Canceled,2019-11-03 -City Hotel,1,0,2017,June,29,19,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,116.74,0,0,No-Show,2019-06-03 -City Hotel,0,39,2016,January,8,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,75.0,179.0,39,Transient,74.55,0,0,Check-Out,2018-10-03 -City Hotel,1,18,2015,February,9,13,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,4.0,179.0,0,Contract,61.73,0,0,Canceled,2018-01-03 -City Hotel,0,10,2016,August,31,31,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,219.81,0,1,Check-Out,2019-06-03 -City Hotel,0,0,2017,February,10,15,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,66.0,0,Transient,71.96,0,0,Check-Out,2020-02-01 -City Hotel,1,430,2017,July,39,21,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,161.0,179.0,0,Transient,63.19,0,0,Canceled,2020-06-02 -City Hotel,1,43,2016,July,32,10,2,5,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,182.52,0,1,Canceled,2019-05-04 -Resort Hotel,0,13,2015,September,42,6,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,80.47,0,2,Check-Out,2018-08-03 -City Hotel,0,101,2016,September,36,8,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.33,0,3,Check-Out,2018-07-03 -City Hotel,1,149,2016,December,53,6,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,146.17,0,3,Canceled,2018-11-02 -City Hotel,0,14,2015,July,31,27,0,1,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Contract,132.05,0,0,Check-Out,2018-06-02 -Resort Hotel,1,79,2015,August,37,20,2,5,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,62.24,0,0,Canceled,2018-06-02 -City Hotel,0,33,2016,April,18,24,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,158.0,179.0,0,Transient-Party,81.11,0,0,Check-Out,2019-04-03 -City Hotel,0,1,2017,June,28,28,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,109.32,1,0,Check-Out,2020-06-02 -Resort Hotel,1,19,2017,February,9,15,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient,68.2,0,0,Canceled,2020-02-01 -City Hotel,0,0,2016,May,21,8,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,B,0,No Deposit,14.0,46.0,0,Group,3.88,0,0,Check-Out,2019-07-04 -City Hotel,0,114,2017,June,36,25,2,7,2,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,F,E,0,No Deposit,159.0,179.0,0,Transient,131.25,0,1,Check-Out,2020-07-03 -Resort Hotel,0,0,2015,August,37,14,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,37.25,0,2,Check-Out,2018-07-03 -Resort Hotel,0,8,2016,August,37,29,1,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,241.0,179.0,0,Transient,187.64,1,2,Check-Out,2019-07-04 -City Hotel,1,442,2016,October,43,5,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,117.88,0,0,Canceled,2018-12-03 -City Hotel,0,11,2016,June,27,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,45.0,0,Transient,78.46,0,0,Check-Out,2019-03-04 -City Hotel,1,53,2017,January,8,5,2,0,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,100.52,0,0,Canceled,2019-10-04 -City Hotel,0,14,2017,February,8,17,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,87.84,0,1,Check-Out,2019-12-04 -City Hotel,0,70,2016,August,38,6,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,182.17,0,2,Check-Out,2019-04-03 -City Hotel,0,128,2015,November,46,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.73,0,0,Check-Out,2018-08-03 -Resort Hotel,0,226,2017,August,33,20,3,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,81.15,1,1,Check-Out,2020-06-02 -City Hotel,0,1,2015,September,36,21,0,1,2,0.0,0,BB,ISR,Corporate,Direct,1,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,108.85,0,0,Check-Out,2018-08-03 -City Hotel,0,6,2017,May,26,5,1,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,187.84,0,0,Check-Out,2020-06-02 -Resort Hotel,0,33,2017,May,21,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,250.0,179.0,0,Transient,122.91,1,3,Check-Out,2020-07-03 -Resort Hotel,0,36,2016,April,15,31,2,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.39,0,1,Check-Out,2019-02-01 -City Hotel,0,14,2017,May,25,30,1,0,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,164.86,0,0,Check-Out,2020-04-02 -City Hotel,0,157,2017,March,10,30,2,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,92.0,245.0,0,Group,80.03,0,0,Check-Out,2018-10-03 -City Hotel,1,39,2015,August,39,13,2,0,2,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,L,B,0,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-08-03 -Resort Hotel,1,105,2017,March,12,25,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,238.0,179.0,0,Transient,62.02,0,2,Canceled,2019-12-04 -City Hotel,0,188,2016,April,15,30,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.02,0,2,Check-Out,2019-02-01 -Resort Hotel,1,50,2017,August,40,18,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,83.79,0,0,Canceled,2018-11-02 -City Hotel,1,5,2016,June,27,18,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,61.0,179.0,0,Transient,91.88,0,1,No-Show,2019-03-04 -City Hotel,1,245,2017,July,33,21,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.53,0,0,Canceled,2020-06-02 -Resort Hotel,0,153,2017,April,18,31,1,7,2,1.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,196.25,0,0,Check-Out,2020-02-01 -Resort Hotel,1,162,2016,March,17,25,2,2,2,2.0,0,HB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,171.93,0,1,Canceled,2020-02-01 -City Hotel,0,162,2017,August,35,10,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.67,0,3,Check-Out,2020-07-03 -Resort Hotel,0,416,2015,October,43,3,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,67.07,0,0,Check-Out,2018-08-03 -City Hotel,1,104,2015,September,26,10,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Contract,116.73,0,0,Canceled,2018-07-03 -City Hotel,0,155,2017,July,32,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.54,0,0,Check-Out,2020-07-03 -Resort Hotel,1,258,2015,September,35,21,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,52.03,0,0,Canceled,2017-12-03 -City Hotel,1,41,2017,May,20,16,2,5,1,0.0,0,BB,CHN,Groups,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,1.7,0,0,Canceled,2020-04-02 -Resort Hotel,0,5,2015,August,34,31,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,59.24,0,2,Check-Out,2018-06-02 -City Hotel,0,2,2017,July,26,18,0,1,1,0.0,0,SC,NLD,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,174.0,0,Transient,2.41,1,0,Check-Out,2020-07-03 -Resort Hotel,0,0,2015,July,32,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,60.83,0,0,Check-Out,2018-07-03 -City Hotel,1,0,2016,January,9,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,58.55,0,0,No-Show,2019-02-01 -City Hotel,0,87,2015,September,36,28,1,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,89.31,0,0,Check-Out,2018-07-03 -Resort Hotel,1,44,2017,August,31,21,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,209.04,0,0,Canceled,2020-06-02 -City Hotel,1,0,2016,February,10,5,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,10.0,74.0,40,Transient,32.61,0,0,No-Show,2018-11-02 -Resort Hotel,0,271,2015,October,44,13,0,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,91.21,0,0,Check-Out,2018-09-02 -City Hotel,0,107,2016,October,45,16,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.14,0,0,Check-Out,2018-08-03 -Resort Hotel,0,44,2016,February,10,9,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,84.0,179.0,0,Transient-Party,61.13,0,0,Check-Out,2020-03-03 -City Hotel,1,182,2017,May,22,24,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,71.25,0,0,Canceled,2020-01-04 -City Hotel,0,110,2017,April,16,29,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,104.56,0,0,Check-Out,2020-03-03 -Resort Hotel,0,0,2016,January,2,27,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,1.87,0,0,Check-Out,2018-10-03 -City Hotel,1,372,2017,May,22,6,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,85.71,0,0,Canceled,2019-11-03 -City Hotel,0,60,2017,May,20,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,132.29,0,0,Check-Out,2020-02-01 -Resort Hotel,0,34,2016,May,18,17,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,F,0,No Deposit,248.0,179.0,0,Transient,153.4,1,0,Check-Out,2019-06-03 -Resort Hotel,0,60,2017,July,16,6,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,62.82,0,1,Check-Out,2020-04-02 -City Hotel,1,0,2016,August,34,20,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,9.0,179.0,0,Transient,157.33,0,0,Canceled,2019-04-03 -City Hotel,0,33,2016,December,53,28,0,4,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.65,0,1,Check-Out,2019-12-04 -City Hotel,0,310,2015,October,44,29,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient-Party,92.16,0,0,Check-Out,2018-08-03 -Resort Hotel,1,103,2017,May,21,7,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,123.83,0,1,Canceled,2020-02-01 -City Hotel,1,35,2016,March,17,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,118.5,0,0,Canceled,2018-11-02 -City Hotel,0,4,2016,August,26,5,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,113.4,0,2,Check-Out,2019-05-04 -City Hotel,0,40,2016,May,20,30,0,3,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,D,B,0,No Deposit,32.0,179.0,0,Transient-Party,92.91,0,0,Check-Out,2019-04-03 -City Hotel,0,0,2016,January,4,28,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,66.01,0,0,Check-Out,2019-08-04 -Resort Hotel,0,30,2017,April,11,5,0,1,2,0.0,0,Undefined,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,61.31,0,0,Check-Out,2019-12-04 -Resort Hotel,0,49,2016,December,51,9,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,247.0,179.0,0,Transient,59.01,0,1,Check-Out,2019-08-04 -City Hotel,0,218,2017,August,33,19,2,0,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,10.0,179.0,0,Transient,88.52,1,2,Check-Out,2020-06-02 -Resort Hotel,0,58,2015,December,49,26,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,81.56,0,0,Check-Out,2019-10-04 -Resort Hotel,0,93,2016,October,29,13,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,77.22,0,0,Check-Out,2019-09-03 -Resort Hotel,1,44,2016,June,16,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient,112.44,0,0,No-Show,2019-02-01 -City Hotel,0,44,2016,March,4,28,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.5,1,3,Check-Out,2019-10-04 -Resort Hotel,0,235,2017,May,21,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,203.35,0,1,Check-Out,2020-04-02 -Resort Hotel,1,50,2016,October,43,28,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,282.0,179.0,0,Transient,47.58,0,0,Canceled,2017-12-03 -City Hotel,0,0,2017,February,10,9,0,2,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.9,0,0,Check-Out,2019-10-04 -City Hotel,0,2,2016,October,43,26,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,F,0,No Deposit,14.0,179.0,0,Transient,236.34,1,0,Check-Out,2019-11-03 -Resort Hotel,0,176,2017,July,35,30,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,126.11,1,3,Check-Out,2020-03-03 -Resort Hotel,0,100,2016,March,15,31,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,60.15,0,0,Check-Out,2019-02-01 -Resort Hotel,0,1,2016,January,4,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,69.0,0,Transient,47.44,0,0,Check-Out,2018-11-02 -City Hotel,0,22,2016,August,24,28,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.14,0,1,Check-Out,2019-05-04 -Resort Hotel,0,0,2015,March,43,20,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,61.89,0,0,Check-Out,2018-11-02 -City Hotel,1,255,2016,September,44,9,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,106.42,0,0,Canceled,2018-08-03 -City Hotel,0,109,2016,April,15,18,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,125.9,0,1,Check-Out,2019-03-04 -City Hotel,1,50,2016,December,53,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.33,0,0,Canceled,2019-11-03 -Resort Hotel,0,270,2016,April,23,6,2,5,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,86.44,0,0,Canceled,2019-02-01 -Resort Hotel,0,43,2017,May,22,31,2,7,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,90.87,0,2,Check-Out,2020-04-02 -City Hotel,0,45,2016,June,49,30,1,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,92.32,0,2,Check-Out,2019-03-04 -City Hotel,0,22,2016,October,44,12,0,3,2,0.0,0,HB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,54.68,0,3,Check-Out,2019-09-03 -Resort Hotel,0,0,2015,August,47,25,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,188.69,0,0,Check-Out,2018-08-03 -Resort Hotel,1,115,2015,December,51,21,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,59.72,0,0,Canceled,2018-06-02 -Resort Hotel,0,12,2017,January,2,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,12.0,87.0,0,Transient,31.3,0,0,Check-Out,2019-10-04 -City Hotel,0,104,2016,March,16,15,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,B,0,No Deposit,90.0,179.0,63,Transient,76.03,0,0,Check-Out,2019-02-01 -Resort Hotel,0,0,2016,September,42,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,46.0,179.0,0,Transient,139.14,0,0,Check-Out,2019-09-03 -City Hotel,0,0,2015,November,43,30,0,2,1,0.0,0,BB,FRA,Direct,Corporate,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient-Party,59.72,0,0,Check-Out,2018-08-03 -Resort Hotel,0,144,2016,March,17,29,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,179.0,0,Transient-Party,117.79,1,0,Check-Out,2019-02-01 -City Hotel,1,83,2017,October,15,24,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,157.37,0,3,Canceled,2019-11-03 -Resort Hotel,1,142,2016,July,41,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,1,1,1,E,E,0,No Deposit,8.0,179.0,0,Group,128.0,0,1,Canceled,2019-07-04 -City Hotel,0,145,2017,May,28,27,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,112.29,0,2,Check-Out,2020-05-03 -City Hotel,0,0,2016,May,23,18,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,76.15,0,0,Check-Out,2019-02-01 -Resort Hotel,1,115,2015,December,50,10,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,140.0,179.0,0,Transient,78.36,0,0,Canceled,2019-01-03 -Resort Hotel,0,11,2016,January,10,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,320.0,179.0,0,Transient,38.65,1,0,Check-Out,2019-03-04 -City Hotel,1,392,2017,June,16,18,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Group,102.14,0,0,Canceled,2020-03-03 -Resort Hotel,0,17,2015,December,50,9,0,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,239.0,179.0,0,Transient,105.59,0,2,Check-Out,2018-08-03 -City Hotel,1,155,2016,June,27,6,0,1,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,132.0,179.0,0,Transient,45.74,0,0,Canceled,2018-11-02 -Resort Hotel,0,149,2016,October,45,2,0,4,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,74.61,0,0,Check-Out,2019-06-03 -Resort Hotel,0,16,2016,October,44,28,1,2,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-09-03 -Resort Hotel,0,18,2017,March,11,10,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,7.0,179.0,0,Transient,86.17,0,1,Check-Out,2020-02-01 -City Hotel,0,13,2016,September,44,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,90.23,0,1,Check-Out,2019-06-03 -Resort Hotel,0,3,2017,July,12,2,0,7,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,82.11,0,0,Check-Out,2020-03-03 -Resort Hotel,0,1,2017,February,24,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,17.0,57.0,0,Transient-Party,76.04,0,0,Check-Out,2020-03-03 -City Hotel,0,7,2016,October,26,20,0,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,75.17,0,0,Check-Out,2019-06-03 -City Hotel,0,92,2016,March,17,2,2,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,69.81,0,0,Check-Out,2018-12-03 -Resort Hotel,0,39,2015,August,53,10,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,199.53,1,2,Check-Out,2018-09-02 -City Hotel,0,2,2016,November,43,9,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,89.33,1,0,Check-Out,2019-06-03 -City Hotel,0,49,2016,June,25,9,1,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,135.49,0,2,Check-Out,2019-05-04 -Resort Hotel,0,91,2017,August,32,27,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,2,No Deposit,251.0,179.0,0,Transient,185.37,1,2,Check-Out,2020-03-03 -City Hotel,1,156,2017,August,36,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,204.03,0,0,Canceled,2020-06-02 -Resort Hotel,0,2,2015,October,42,30,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,35.22,0,0,Check-Out,2018-08-03 -City Hotel,0,87,2015,June,27,10,4,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Contract,60.87,0,0,Check-Out,2018-09-02 -City Hotel,0,43,2016,February,10,14,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,67.62,0,1,Check-Out,2018-11-02 -City Hotel,0,1,2016,January,11,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,16.0,60.0,0,Transient,28.13,0,0,Check-Out,2018-11-02 -City Hotel,0,8,2016,June,24,31,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.03,0,1,Check-Out,2019-05-04 -City Hotel,1,95,2016,December,46,31,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,155.22,0,2,No-Show,2019-06-03 -Resort Hotel,0,306,2015,October,42,20,4,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Contract,34.7,0,1,Check-Out,2018-07-03 -Resort Hotel,0,115,2017,July,32,23,1,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,1,No Deposit,17.0,179.0,0,Transient,232.3,0,0,Check-Out,2020-06-02 -City Hotel,0,272,2015,September,40,20,2,2,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,84.2,0,0,Check-Out,2018-08-03 -City Hotel,0,97,2017,July,9,6,0,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,2020-04-02 -City Hotel,0,12,2016,August,37,4,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,86.23,0,0,Check-Out,2019-06-03 -City Hotel,0,41,2015,July,36,2,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Contract,111.57,0,1,Check-Out,2018-06-02 -City Hotel,0,13,2016,December,53,12,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.71,0,1,Check-Out,2019-11-03 -Resort Hotel,0,164,2017,July,33,31,4,4,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,211.69,0,2,Check-Out,2020-05-03 -Resort Hotel,0,199,2016,May,29,24,1,4,2,2.0,0,BB,CN,Groups,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient-Party,61.9,0,0,Check-Out,2019-03-04 -City Hotel,0,3,2016,December,50,27,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,63.07,0,0,Check-Out,2019-11-03 -City Hotel,1,14,2017,July,33,20,2,5,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,118.93,0,2,Canceled,2020-03-03 -City Hotel,1,44,2016,October,43,27,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,153.26,0,2,Canceled,2019-09-03 -City Hotel,0,1,2015,October,44,10,0,1,1,0.0,0,BB,CN,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.3,0,0,Check-Out,2018-09-02 -City Hotel,0,38,2016,August,51,28,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,127.62,0,1,Check-Out,2019-11-03 -Resort Hotel,1,40,2016,March,23,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,76.23,0,2,Canceled,2019-03-04 -Resort Hotel,1,331,2017,July,36,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,180.0,179.0,0,Transient,122.5,0,0,Canceled,2020-06-02 -Resort Hotel,0,44,2016,December,51,25,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,85.66,0,1,Check-Out,2019-11-03 -City Hotel,1,49,2016,June,32,4,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,125.56,0,0,Canceled,2019-02-01 -City Hotel,0,0,2016,October,44,17,0,2,1,0.0,0,HB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,82.14,0,0,Check-Out,2019-09-03 -City Hotel,0,158,2017,April,20,5,2,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,110.37,0,1,Check-Out,2020-03-03 -City Hotel,1,282,2017,May,21,24,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,96.53,0,0,Canceled,2019-11-03 -City Hotel,1,259,2015,September,43,5,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.19,0,0,Canceled,2018-08-03 -Resort Hotel,0,44,2015,October,44,5,1,5,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,61.38,0,0,Check-Out,2018-09-02 -Resort Hotel,0,0,2017,January,10,9,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,17.0,250.0,0,Transient,47.74,1,0,Check-Out,2019-09-03 -Resort Hotel,1,204,2016,April,16,7,1,3,1,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,D,1,Refundable,13.0,222.0,0,Transient-Party,74.91,0,0,Canceled,2019-01-03 -City Hotel,0,3,2016,July,28,16,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,L,A,1,No Deposit,13.0,179.0,0,Transient,100.79,0,1,Check-Out,2019-06-03 -City Hotel,0,382,2016,August,33,15,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.84,0,1,Check-Out,2019-05-04 -City Hotel,1,381,2015,September,36,10,2,3,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,82.43,0,0,Canceled,2018-07-03 -City Hotel,0,101,2017,May,24,20,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,252.0,0,0,Check-Out,2020-02-01 -City Hotel,1,10,2017,March,16,16,0,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,G,0,No Deposit,164.0,179.0,0,Transient,92.84,0,0,Canceled,2020-02-01 -City Hotel,0,22,2015,November,53,27,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,60.53,0,0,Check-Out,2018-11-02 -City Hotel,1,3,2016,June,44,13,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,197.0,202.0,0,Transient,78.31,0,0,Canceled,2019-06-03 -City Hotel,1,34,2016,November,44,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,56.0,179.0,0,Transient,155.39,0,1,No-Show,2019-01-03 -City Hotel,0,107,2017,March,16,5,2,2,3,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,109.31,0,1,Check-Out,2020-03-03 -City Hotel,1,117,2017,June,25,21,2,3,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,92.61,0,0,Canceled,2020-02-01 -City Hotel,0,22,2015,September,35,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,63.76,0,1,Check-Out,2018-07-03 -Resort Hotel,0,39,2017,July,35,17,2,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,111.74,0,1,Check-Out,2020-05-03 -City Hotel,0,17,2016,December,50,30,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.75,0,0,Check-Out,2019-10-04 -City Hotel,1,187,2016,August,24,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,87.1,0,0,Canceled,2019-02-01 -Resort Hotel,1,245,2015,September,37,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,239.0,179.0,0,Transient,61.48,0,0,Canceled,2018-07-03 -City Hotel,0,277,2017,June,27,10,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,177.89,0,0,Check-Out,2020-06-02 -City Hotel,1,303,2016,October,44,29,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,74.92,0,0,Canceled,2017-11-02 -City Hotel,1,41,2015,August,39,28,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,60.45,0,0,Canceled,2018-08-03 -City Hotel,0,2,2016,September,43,20,2,1,1,0.0,0,BB,GBR,Aviation,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,74.45,0,3,Check-Out,2019-08-04 -City Hotel,1,315,2016,May,17,2,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient-Party,118.39,0,0,Canceled,2019-01-03 -Resort Hotel,1,69,2016,May,22,16,2,2,3,2.0,0,HB,ESP,Groups,TA/TO,0,0,0,G,G,1,No Deposit,12.0,179.0,0,Transient,158.4,0,0,Canceled,2018-12-03 -City Hotel,1,108,2017,May,23,14,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,139.93,0,2,Canceled,2020-04-02 -Resort Hotel,1,157,2017,March,44,3,4,5,2,2.0,0,BB,USA,Online TA,Direct,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,76.06,0,0,Canceled,2019-09-03 -Resort Hotel,1,277,2017,July,21,18,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,278.0,179.0,0,Transient,118.48,0,0,Canceled,2020-03-03 -Resort Hotel,1,106,2017,February,9,9,2,5,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,142.0,239.0,0,Transient,68.34,0,0,Canceled,2019-03-04 -City Hotel,1,1,2016,February,17,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,69.05,0,0,Canceled,2018-11-02 -City Hotel,1,87,2016,June,26,28,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.27,0,2,Canceled,2019-06-03 -Resort Hotel,0,0,2015,December,48,6,1,0,2,0.0,0,HB,PRT,Complementary,Direct,1,0,0,A,B,0,No Deposit,16.0,179.0,0,Transient,0.0,0,2,Check-Out,2019-10-04 -City Hotel,1,9,2017,December,53,31,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.16,0,3,Canceled,2019-11-03 -Resort Hotel,0,15,2016,December,5,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,80.24,1,1,Check-Out,2019-11-03 -Resort Hotel,0,195,2016,September,43,22,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,75,Transient-Party,86.08,0,0,Check-Out,2019-05-04 -City Hotel,1,13,2017,February,10,27,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,0.0,0,0,No-Show,2020-02-01 -Resort Hotel,0,204,2017,March,9,29,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,35.66,0,1,Check-Out,2020-03-03 -City Hotel,1,369,2015,October,45,10,2,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,100.45,0,0,Canceled,2019-07-04 -City Hotel,0,0,2016,January,11,13,0,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,G,A,0,No Deposit,13.0,179.0,0,Transient,81.13,0,0,Check-Out,2018-12-03 -Resort Hotel,0,88,2016,May,21,10,1,5,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,246.0,179.0,0,Transient,89.76,0,1,Check-Out,2020-01-04 -City Hotel,0,6,2017,April,22,24,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,153.0,179.0,0,Transient,91.96,0,0,Check-Out,2020-02-01 -City Hotel,0,1,2015,December,48,5,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.26,0,0,Check-Out,2018-12-03 -Resort Hotel,0,161,2016,October,50,28,1,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,43.76,0,2,Check-Out,2019-05-04 -Resort Hotel,1,197,2017,May,20,10,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,357.0,179.0,0,Transient,0.0,0,0,No-Show,2020-02-01 -City Hotel,1,331,2015,September,35,24,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,E,0,No Deposit,2.0,179.0,0,Transient-Party,65.63,0,0,Canceled,2018-05-03 -City Hotel,0,302,2015,August,37,13,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,123.15,0,0,Check-Out,2018-08-03 -City Hotel,1,106,2016,February,20,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.33,0,0,Canceled,2018-11-02 -Resort Hotel,0,263,2016,October,53,31,1,4,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,158.91,0,3,Check-Out,2019-08-04 -Resort Hotel,0,147,2016,December,49,13,2,10,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,1,No Deposit,82.0,179.0,75,Transient,64.13,0,1,Check-Out,2019-10-04 -Resort Hotel,0,188,2016,July,21,22,1,4,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,44.0,179.0,0,Transient-Party,61.81,0,0,Check-Out,2019-06-03 -City Hotel,1,42,2016,May,22,16,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,114.93,0,2,Canceled,2019-03-04 -Resort Hotel,0,1,2016,March,9,15,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,68.56,0,2,Check-Out,2019-03-04 -Resort Hotel,1,219,2017,August,37,12,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,247.0,179.0,0,Transient,116.88,0,2,Canceled,2020-06-02 -Resort Hotel,0,1,2016,January,3,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,37.33,1,1,Check-Out,2019-03-04 -City Hotel,0,27,2015,September,44,18,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,79.77,0,0,Check-Out,2018-08-03 -City Hotel,1,118,2015,October,49,29,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,78.03,0,0,Canceled,2018-11-02 -Resort Hotel,0,135,2016,March,17,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,29.98,0,0,Check-Out,2019-05-04 -Resort Hotel,0,247,2017,July,32,21,2,5,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,14.0,179.0,0,Transient,252.0,1,0,Check-Out,2020-03-03 -City Hotel,1,214,2017,August,51,28,2,5,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.54,0,0,Canceled,2019-10-04 -Resort Hotel,1,40,2016,August,38,11,0,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Canceled,2019-08-04 -City Hotel,0,0,2016,January,10,20,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,68.95,0,0,Check-Out,2019-03-04 -City Hotel,1,154,2015,June,38,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.53,0,0,Canceled,2017-10-03 -Resort Hotel,0,1,2016,October,44,29,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,251.0,179.0,0,Transient,32.53,0,0,Check-Out,2019-09-03 -City Hotel,0,157,2016,July,26,15,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Contract,130.26,0,1,Check-Out,2019-06-03 -City Hotel,1,7,2016,October,44,11,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,74.67,0,0,Canceled,2019-11-03 -City Hotel,0,161,2017,June,36,5,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.75,0,2,Check-Out,2020-07-03 -City Hotel,1,369,2017,May,35,13,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,162.12,0,0,Canceled,2020-06-02 -Resort Hotel,0,0,2016,January,3,10,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,97.54,0,2,Check-Out,2019-10-04 -City Hotel,0,39,2016,March,3,9,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,122.0,0,1,Check-Out,2019-03-04 -City Hotel,1,145,2016,October,35,18,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,93.08,0,0,Canceled,2019-02-01 -Resort Hotel,0,8,2016,June,35,15,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,320.0,179.0,0,Transient,70.42,0,0,Check-Out,2019-03-04 -City Hotel,0,10,2016,December,53,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,140.0,179.0,0,Transient-Party,59.99,0,0,Check-Out,2019-09-03 -City Hotel,0,50,2016,October,46,11,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,125.86,0,1,Check-Out,2019-07-04 -Resort Hotel,0,132,2016,June,33,31,2,5,2,1.0,0,HB,POL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,188.26,1,1,Check-Out,2019-06-03 -City Hotel,0,1,2017,July,34,21,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,134.21,0,0,Check-Out,2020-06-02 -City Hotel,0,32,2016,September,38,13,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,90.92,0,2,Check-Out,2019-08-04 -Resort Hotel,0,140,2017,December,50,23,0,3,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,65.43,0,0,Check-Out,2020-01-04 -City Hotel,0,2,2017,May,21,5,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,133.65,0,3,Check-Out,2020-03-03 -City Hotel,0,46,2017,March,18,24,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,88.92,1,2,Check-Out,2020-03-03 -City Hotel,1,117,2016,December,51,13,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,63,Transient,60.83,0,0,Canceled,2018-08-03 -Resort Hotel,0,16,2016,January,49,27,2,0,2,2.0,0,BB,GBR,Groups,TA/TO,0,0,0,G,G,3,No Deposit,336.0,179.0,0,Transient,47.76,0,0,Check-Out,2019-09-03 -Resort Hotel,0,269,2016,October,37,18,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,241.0,179.0,0,Transient-Party,118.31,0,2,Check-Out,2019-07-04 -City Hotel,0,0,2017,July,27,2,0,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,133.47,0,0,Check-Out,2019-12-04 -City Hotel,1,229,2016,July,31,15,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,B,0,No Deposit,8.0,179.0,0,Transient,99.34,0,0,Canceled,2019-01-03 -Resort Hotel,0,40,2015,October,42,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,44.83,1,2,Check-Out,2018-06-02 -Resort Hotel,0,0,2016,July,9,14,0,1,2,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,5.84,0,0,Check-Out,2019-05-04 -Resort Hotel,0,146,2017,August,28,21,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient-Party,218.27,1,0,Check-Out,2019-06-03 -Resort Hotel,1,65,2016,August,34,28,2,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,224.95,0,2,Canceled,2019-06-03 -Resort Hotel,0,12,2017,February,10,16,2,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,75.97,0,0,Check-Out,2020-04-02 -City Hotel,0,38,2015,July,33,5,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,101.49,0,0,Check-Out,2018-05-03 -City Hotel,0,26,2017,July,34,28,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.0,0,1,Check-Out,2020-06-02 -Resort Hotel,1,57,2015,July,30,20,1,7,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,244.0,179.0,0,Transient,99.84,0,0,Canceled,2018-06-02 -City Hotel,0,56,2016,October,43,2,1,2,2,0.0,0,BB,RUS,Direct,Direct,1,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient,119.06,0,2,Check-Out,2019-08-04 -Resort Hotel,0,162,2016,October,41,10,2,6,3,0.0,0,HB,,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,120.27,0,0,Check-Out,2019-06-03 -City Hotel,1,99,2015,December,50,24,2,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,75,Transient,102.71,0,0,Canceled,2017-09-02 -City Hotel,1,318,2015,October,46,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,19,Transient,60.35,0,0,Canceled,2017-11-02 -City Hotel,0,2,2017,August,26,14,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,99.83,0,0,Check-Out,2020-06-02 -City Hotel,0,155,2015,October,45,21,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,33.54,0,0,Canceled,2018-09-02 -Resort Hotel,0,0,2016,June,36,13,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,218.0,0,Transient,32.12,0,2,Check-Out,2019-04-03 -City Hotel,1,31,2016,July,50,5,0,4,1,1.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,111.1,0,0,No-Show,2019-02-01 -City Hotel,1,285,2016,April,17,6,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,131.45,0,0,Canceled,2018-11-02 -City Hotel,1,16,2015,October,46,29,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.18,0,0,Canceled,2018-08-03 -Resort Hotel,0,105,2016,May,23,28,1,3,2,0.0,0,FB,ITA,Groups,TA/TO,0,0,0,C,C,0,No Deposit,91.0,179.0,0,Transient-Party,130.11,0,0,Check-Out,2019-07-04 -City Hotel,1,2,2016,May,21,21,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,62.84,0,0,Canceled,2019-01-03 -City Hotel,1,131,2017,December,4,9,2,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.52,0,0,Canceled,2019-09-03 -City Hotel,0,1,2016,January,21,26,1,3,3,2.0,0,BB,,Online TA,Corporate,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,170.1,0,1,Check-Out,2019-02-01 -City Hotel,0,51,2016,January,4,28,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,69.04,0,1,Check-Out,2018-10-03 -City Hotel,1,296,2017,April,17,14,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.43,0,0,Canceled,2020-02-01 -City Hotel,0,44,2016,January,4,29,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,40,Transient,72.65,0,0,Check-Out,2018-09-02 -City Hotel,0,21,2016,April,39,10,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-03-04 -Resort Hotel,0,33,2016,October,44,13,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,123.0,179.0,0,Transient,75.53,0,2,Check-Out,2019-07-04 -City Hotel,1,154,2015,September,43,20,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.57,0,0,Canceled,2018-08-03 -City Hotel,0,2,2016,June,16,13,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,89.57,0,0,Check-Out,2019-03-04 -Resort Hotel,0,8,2015,October,43,29,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,51.19,0,1,Check-Out,2018-08-03 -City Hotel,0,0,2016,February,10,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,58.12,0,0,Check-Out,2019-01-03 -City Hotel,0,102,2016,August,36,27,2,5,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,129.46,0,0,Check-Out,2019-05-04 -Resort Hotel,0,109,2016,July,41,2,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,167.0,179.0,0,Transient,98.96,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2017,May,23,15,0,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,132.61,0,1,Check-Out,2020-07-03 -City Hotel,0,53,2016,November,52,27,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.39,0,2,Check-Out,2019-12-04 -City Hotel,0,8,2017,May,10,14,2,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.62,0,1,Check-Out,2020-03-03 -Resort Hotel,1,394,2016,December,53,16,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,307.0,179.0,0,Transient-Party,74.6,0,0,Canceled,2019-09-03 -Resort Hotel,0,274,2016,August,36,3,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,1,0,0,A,C,3,No Deposit,239.0,179.0,0,Group,151.47,0,1,Check-Out,2020-06-02 -City Hotel,1,0,2015,August,34,19,0,2,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,63.15,0,1,Canceled,2018-07-03 -City Hotel,0,109,2017,February,9,13,1,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.17,0,1,Check-Out,2020-01-04 -Resort Hotel,1,165,2017,March,11,31,0,3,2,0.0,0,BB,PRT,Groups,Corporate,1,1,1,A,A,0,Non Refund,11.0,71.0,0,Transient,44.74,0,0,Canceled,2020-03-03 -City Hotel,0,44,2016,May,22,24,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,10.0,179.0,0,Transient-Party,1.44,0,0,Check-Out,2019-06-03 -City Hotel,0,46,2016,June,25,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.89,0,2,Check-Out,2019-02-01 -City Hotel,0,2,2016,October,44,2,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,128.58,0,0,Check-Out,2019-05-04 -Resort Hotel,0,319,2017,March,18,25,2,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,69.99,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2017,February,7,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,62.09,0,0,Check-Out,2018-12-03 -City Hotel,0,63,2017,June,25,17,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,150.42,0,2,Check-Out,2020-03-03 -Resort Hotel,0,154,2016,October,42,28,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,262.0,179.0,0,Transient,36.79,0,0,Check-Out,2018-07-03 -City Hotel,0,2,2017,March,8,6,0,1,2,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,0.14,0,0,Canceled,2020-03-03 -Resort Hotel,0,4,2015,September,44,12,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,47.97,0,0,Check-Out,2018-08-03 -City Hotel,0,185,2017,May,23,30,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,173.0,179.0,0,Transient-Party,62.33,0,0,Canceled,2020-03-03 -Resort Hotel,0,105,2016,October,47,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,57.17,0,0,Check-Out,2018-09-02 -City Hotel,0,3,2017,February,9,21,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,30.49,0,1,Check-Out,2020-03-03 -Resort Hotel,0,23,2015,July,31,13,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,32.91,0,0,Check-Out,2018-06-02 -Resort Hotel,0,96,2016,March,9,29,0,1,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,64.58,1,0,Check-Out,2019-03-04 -City Hotel,0,13,2017,January,9,29,2,1,2,2.0,0,BB,ITA,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,167.66,0,0,Canceled,2019-11-03 -Resort Hotel,0,241,2016,February,18,23,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,E,1,No Deposit,173.0,179.0,0,Transient-Party,70.19,0,0,Check-Out,2019-02-01 -City Hotel,1,10,2016,November,49,26,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,124.52,0,0,Canceled,2019-07-04 -Resort Hotel,0,24,2017,November,17,31,0,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,67.57,0,2,Check-Out,2019-11-03 -City Hotel,0,14,2016,March,9,29,1,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,109.45,0,2,Check-Out,2020-03-03 -Resort Hotel,0,9,2016,March,11,16,0,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,36.48,0,1,Check-Out,2019-01-03 -Resort Hotel,0,112,2017,August,28,30,1,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,324.0,179.0,0,Transient,194.77,1,0,Check-Out,2020-03-03 -City Hotel,1,0,2015,January,38,6,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,87.97,0,0,No-Show,2019-01-03 -Resort Hotel,1,55,2015,December,53,30,2,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,10.0,179.0,0,Transient-Party,61.35,0,0,Canceled,2018-12-03 -Resort Hotel,0,0,2016,March,17,13,1,0,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,C,I,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,2019-02-01 -City Hotel,1,3,2017,May,21,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,63.73,0,0,Canceled,2019-02-01 -City Hotel,0,2,2017,March,9,16,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,17.0,224.0,0,Transient-Party,83.86,0,0,Check-Out,2020-04-02 -City Hotel,1,36,2015,October,45,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,124.06,0,1,No-Show,2018-09-02 -Resort Hotel,0,340,2016,November,49,5,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,325.0,179.0,0,Transient-Party,81.29,0,0,Check-Out,2019-07-04 -Resort Hotel,1,146,2016,March,12,31,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,179.0,0,Transient-Party,46.83,0,0,Canceled,2019-03-04 -City Hotel,1,21,2016,June,39,23,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,79.12,0,0,Check-Out,2019-05-04 -City Hotel,1,40,2016,April,16,22,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,71.37,0,0,Canceled,2019-03-04 -City Hotel,1,288,2015,September,38,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,59.66,0,0,Canceled,2017-11-02 -City Hotel,0,151,2016,October,51,28,1,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.39,0,2,Check-Out,2019-11-03 -City Hotel,1,102,2016,July,30,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,Non Refund,11.0,179.0,0,Transient,75.7,0,0,Canceled,2018-01-03 -City Hotel,1,32,2016,October,44,28,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,234.0,179.0,0,Transient,60.94,1,0,Canceled,2019-07-04 -City Hotel,1,63,2017,April,16,12,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,77.32,0,0,Canceled,2019-10-04 -Resort Hotel,0,150,2017,July,32,29,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,E,E,0,No Deposit,242.0,179.0,0,Group,143.23,0,1,Check-Out,2020-02-01 -City Hotel,0,10,2016,June,25,13,0,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.53,0,1,Check-Out,2020-01-04 -Resort Hotel,0,4,2015,July,33,17,0,1,1,0.0,0,BB,FRA,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.0,0,0,Check-Out,2018-05-03 -City Hotel,0,2,2016,November,51,1,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,51.79,0,1,Check-Out,2019-11-03 -City Hotel,0,0,2017,June,28,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,15.0,45.0,0,Transient-Party,63.3,0,0,Check-Out,2020-02-01 -City Hotel,1,3,2017,August,34,30,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,164.38,0,0,Canceled,2019-12-04 -Resort Hotel,0,84,2016,March,26,15,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,121.33,0,1,Check-Out,2019-02-01 -Resort Hotel,0,1,2017,August,35,28,0,2,1,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,C,1,No Deposit,13.0,179.0,0,Transient-Party,229.93,1,0,Check-Out,2020-07-03 -City Hotel,1,327,2017,May,27,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,E,I,0,No Deposit,2.0,179.0,0,Contract,88.36,0,2,Check-Out,2019-02-01 -City Hotel,1,393,2017,August,36,13,0,4,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,Non Refund,237.0,179.0,0,Transient,148.88,0,0,Canceled,2019-12-04 -City Hotel,1,27,2015,July,32,17,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,244.0,179.0,0,Transient,85.95,0,0,Canceled,2018-06-02 -Resort Hotel,0,282,2016,September,43,24,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Contract,120.21,1,0,Check-Out,2019-06-03 -City Hotel,1,245,2016,October,44,16,2,4,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,176.57,0,1,Canceled,2019-07-04 -City Hotel,1,32,2017,May,11,24,2,1,2,0.0,0,SC,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.8,0,0,No-Show,2019-12-04 -City Hotel,0,255,2015,September,44,16,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,162.83,0,1,Check-Out,2018-08-03 -Resort Hotel,1,94,2016,February,8,2,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,G,G,0,Non Refund,242.0,179.0,0,Transient,177.25,0,0,Canceled,2018-10-03 -City Hotel,1,44,2015,July,36,6,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,76.22,0,1,Canceled,2018-05-03 -City Hotel,0,1,2017,December,4,10,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,3,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,2019-11-03 -City Hotel,1,105,2017,August,35,31,2,2,2,0.0,0,HB,BEL,Online TA,TA/TO,1,0,1,D,E,0,No Deposit,7.0,179.0,0,Group,106.72,0,2,Canceled,2020-05-03 -City Hotel,0,141,2015,December,25,30,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,123.68,1,0,Check-Out,2019-01-03 -Resort Hotel,1,252,2015,July,31,15,2,5,2,0.0,0,FB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,52.06,0,0,Canceled,2018-06-02 -Resort Hotel,0,7,2015,August,38,21,0,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,246.0,179.0,0,Transient,146.35,0,1,Check-Out,2020-06-02 -City Hotel,1,158,2017,June,27,10,0,3,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,124.84,0,0,Canceled,2020-06-02 -City Hotel,1,3,2017,February,8,10,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,86.48,0,0,Canceled,2020-02-01 -Resort Hotel,0,226,2016,May,28,9,1,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,139.46,1,0,Check-Out,2019-03-04 -Resort Hotel,0,157,2016,July,32,15,2,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,243.0,179.0,0,Transient,242.39,0,2,Check-Out,2019-05-04 -City Hotel,1,415,2016,October,46,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,19,Transient,92.26,0,0,Canceled,2018-08-03 -Resort Hotel,1,47,2017,July,33,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,2,No Deposit,242.0,179.0,0,Transient,94.1,0,1,No-Show,2020-06-02 -Resort Hotel,0,54,2016,April,23,6,2,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,109.87,0,1,Check-Out,2019-03-04 -City Hotel,1,42,2016,November,51,15,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,67.89,0,0,Canceled,2019-09-03 -City Hotel,1,50,2016,October,42,21,2,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,110.96,0,1,Canceled,2019-05-04 -Resort Hotel,1,262,2017,May,33,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,116.4,0,0,Canceled,2020-04-02 -Resort Hotel,0,2,2015,December,52,31,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,40.47,0,0,Canceled,2018-11-02 -Resort Hotel,0,181,2016,June,36,9,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,116.25,0,1,Check-Out,2019-05-04 -Resort Hotel,0,86,2017,May,26,21,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,21.0,179.0,0,Transient-Party,125.57,0,1,Check-Out,2020-04-02 -City Hotel,1,41,2017,May,38,16,1,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,138.0,0,Transient,63.27,0,0,Canceled,2020-04-02 -Resort Hotel,1,33,2015,December,53,23,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,60.62,0,2,Canceled,2018-11-02 -City Hotel,1,54,2017,January,12,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,40,Transient-Party,62.53,0,0,Canceled,2019-10-04 -Resort Hotel,0,3,2017,July,30,15,1,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,211.29,1,3,Check-Out,2020-06-02 -City Hotel,0,39,2015,October,43,9,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,124.51,0,0,Check-Out,2019-07-04 -City Hotel,1,288,2017,July,34,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,143.67,0,0,Canceled,2020-04-02 -City Hotel,0,45,2016,August,53,27,2,5,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,41,Transient,199.23,0,1,Check-Out,2019-06-03 -City Hotel,0,39,2016,August,39,25,2,1,2,1.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.27,0,2,Check-Out,2019-07-04 -City Hotel,1,103,2017,June,26,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,0,Transient,118.17,0,0,Canceled,2019-10-04 -City Hotel,0,258,2016,June,25,30,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,141.12,0,0,Check-Out,2019-02-01 -City Hotel,0,3,2017,March,10,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,40.0,245.0,0,Transient-Party,72.89,0,0,Check-Out,2020-02-01 -City Hotel,1,20,2016,May,23,4,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,15.0,181.0,0,Transient,109.65,0,0,Canceled,2019-12-04 -City Hotel,1,198,2016,June,9,5,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,72.04,0,0,No-Show,2019-02-01 -Resort Hotel,0,102,2016,December,49,23,0,1,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,37.0,179.0,0,Transient-Party,44.61,0,0,Check-Out,2019-01-03 -City Hotel,1,10,2016,October,45,29,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.1,0,0,No-Show,2019-08-04 -City Hotel,1,2,2017,February,9,26,1,1,1,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,9.0,179.0,0,Transient,68.51,0,0,Canceled,2019-08-04 -City Hotel,0,22,2016,November,21,30,0,1,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,93.6,0,1,Check-Out,2019-02-01 -City Hotel,0,177,2017,October,45,21,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,120.19,0,3,Check-Out,2019-12-04 -Resort Hotel,1,267,2016,September,35,15,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,69.73,0,0,Canceled,2019-02-01 -Resort Hotel,0,45,2017,February,8,9,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,39.0,225.0,0,Transient,46.7,0,0,Check-Out,2019-11-03 -Resort Hotel,0,94,2017,May,20,21,2,5,3,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,233.0,179.0,0,Transient-Party,176.97,0,0,Check-Out,2020-04-02 -Resort Hotel,1,409,2016,October,44,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Transient,109.25,0,0,Canceled,2019-08-04 -Resort Hotel,0,8,2016,June,3,25,0,1,1,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,242.0,179.0,0,Transient,3.14,1,2,Check-Out,2019-06-03 -City Hotel,1,3,2017,February,10,10,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,215.18,0,0,Canceled,2019-10-04 -Resort Hotel,0,201,2017,August,33,31,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,253.0,179.0,0,Transient,214.29,0,3,Check-Out,2020-06-02 -Resort Hotel,1,198,2017,August,36,19,4,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient,75.53,0,2,Canceled,2019-08-04 -City Hotel,1,161,2016,December,53,6,1,3,1,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,61.46,0,0,Canceled,2019-07-04 -City Hotel,1,14,2016,April,11,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,87.14,0,0,Canceled,2019-01-03 -City Hotel,1,169,2016,June,26,12,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.96,0,0,Canceled,2019-02-01 -City Hotel,0,11,2016,March,38,20,0,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,E,E,2,No Deposit,14.0,222.0,0,Transient,95.42,1,0,Check-Out,2019-07-04 -Resort Hotel,0,36,2016,March,11,28,2,2,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,62.1,1,1,Check-Out,2018-12-03 -City Hotel,0,88,2015,July,32,7,2,2,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,75.75,0,2,Check-Out,2019-02-01 -City Hotel,0,12,2016,April,20,20,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,75.14,0,0,Check-Out,2019-03-04 -City Hotel,1,91,2017,February,8,28,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.25,0,3,Canceled,2019-11-03 -Resort Hotel,0,115,2017,March,24,31,0,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,107.5,1,1,Check-Out,2020-06-02 -City Hotel,0,35,2016,December,18,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,59.36,0,0,Canceled,2019-04-03 -Resort Hotel,0,79,2016,January,53,2,0,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,95.57,0,1,Check-Out,2018-11-02 -City Hotel,0,97,2017,April,15,19,2,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,74.95,0,0,Check-Out,2020-04-02 -City Hotel,0,154,2017,July,26,2,2,1,2,0.0,0,BB,IRL,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,126.29,0,1,Canceled,2020-03-03 -City Hotel,1,92,2017,June,27,5,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,168.0,179.0,0,Transient,111.17,0,0,Canceled,2020-02-01 -Resort Hotel,0,14,2015,November,42,4,2,4,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient-Party,72.15,0,0,Check-Out,2018-08-03 -City Hotel,1,417,2016,August,35,9,1,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,77.62,0,0,Canceled,2019-10-04 -City Hotel,1,0,2015,August,39,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,61.95,0,1,Canceled,2018-06-02 -Resort Hotel,0,2,2017,June,17,9,1,0,1,1.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,167.19,0,0,Check-Out,2019-08-04 -City Hotel,0,0,2016,March,45,5,0,1,1,0.0,0,BB,,Aviation,Corporate,1,0,1,D,D,1,No Deposit,108.0,182.0,0,Transient,2.6,0,0,Check-Out,2019-01-03 -Resort Hotel,0,4,2017,May,22,28,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,20.0,179.0,0,Transient,252.0,1,0,Check-Out,2019-11-03 -City Hotel,1,0,2017,June,21,20,1,0,1,0.0,0,SC,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,152.0,179.0,0,Transient,78.64,0,0,Canceled,2020-03-03 -Resort Hotel,0,150,2016,March,18,22,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,12.0,221.0,0,Transient-Party,65.67,0,0,Check-Out,2019-04-03 -Resort Hotel,0,19,2015,December,44,18,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,71.0,179.0,0,Transient-Party,124.6,0,0,Check-Out,2018-07-03 -City Hotel,1,64,2016,July,27,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,130.29,0,0,Canceled,2017-10-03 -City Hotel,0,28,2017,June,24,13,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,113.56,0,1,Check-Out,2020-03-03 -City Hotel,0,2,2015,October,43,9,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,66.3,0,0,Check-Out,2018-05-03 -Resort Hotel,1,286,2017,April,20,14,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient,60.96,0,1,Canceled,2019-12-04 -City Hotel,0,12,2016,April,10,4,2,5,2,1.0,0,BB,BRA,Online TA,Corporate,0,0,0,E,E,2,No Deposit,9.0,179.0,0,Transient,103.57,0,0,Check-Out,2019-03-04 -City Hotel,0,0,2015,October,40,8,2,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,152.13,0,2,Check-Out,2019-05-04 -City Hotel,1,372,2017,June,20,20,0,1,2,0.0,0,HB,AUT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,203.16,0,0,Check-Out,2020-04-02 -City Hotel,0,14,2016,August,33,5,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient-Party,102.09,1,0,Check-Out,2019-10-04 -City Hotel,1,3,2017,July,37,20,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,17.0,179.0,0,Transient,163.71,0,0,Canceled,2018-09-02 -City Hotel,1,43,2016,January,9,24,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,59.38,0,2,Canceled,2019-03-04 -City Hotel,1,96,2016,August,53,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,99.19,0,0,Canceled,2019-06-03 -City Hotel,0,101,2016,June,25,21,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.17,0,1,Check-Out,2019-02-01 -City Hotel,1,235,2015,July,34,18,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,G,G,0,No Deposit,11.0,179.0,0,Transient,143.08,0,0,Canceled,2018-05-03 -City Hotel,0,95,2017,March,16,2,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,132.34,0,0,Check-Out,2020-04-02 -City Hotel,1,38,2017,July,26,21,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,25.0,179.0,75,Transient-Party,64.03,0,0,Canceled,2019-12-04 -Resort Hotel,0,43,2016,November,49,10,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,252.0,179.0,0,Transient,156.21,1,0,Check-Out,2019-10-04 -Resort Hotel,0,113,2017,February,16,16,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,75,Transient-Party,69.4,0,0,Check-Out,2020-04-02 -City Hotel,1,328,2015,October,46,25,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.07,0,0,Canceled,2017-09-02 -City Hotel,0,43,2016,September,46,21,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,196.07,0,2,Check-Out,2019-05-04 -City Hotel,1,12,2017,August,24,16,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,2,No Deposit,13.0,172.0,0,Transient,85.16,0,0,Canceled,2019-07-04 -City Hotel,1,215,2017,June,27,17,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,13.0,179.0,0,Transient,64.54,0,0,Canceled,2018-11-02 -Resort Hotel,0,207,2017,July,32,27,4,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,306.0,179.0,0,Transient,93.15,0,0,Check-Out,2019-06-03 -City Hotel,0,11,2017,April,27,10,0,1,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,98.79,0,0,Check-Out,2019-03-04 -Resort Hotel,1,145,2016,June,36,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,241.0,179.0,0,Transient,73.26,0,0,Canceled,2019-08-04 -Resort Hotel,0,218,2016,August,35,17,2,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,D,1,No Deposit,251.0,179.0,0,Transient,198.88,1,0,Check-Out,2019-06-03 -Resort Hotel,0,12,2017,April,10,27,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient-Party,97.96,0,0,Check-Out,2020-01-04 -City Hotel,0,8,2016,October,43,18,1,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.26,0,0,Check-Out,2019-07-04 -Resort Hotel,0,1,2017,June,27,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,14.0,67.0,0,Transient,126.5,1,0,Check-Out,2020-04-02 -City Hotel,0,0,2016,July,25,18,2,0,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,63.65,0,2,Check-Out,2019-01-03 -Resort Hotel,1,42,2016,December,50,24,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,374.0,179.0,0,Transient,45.72,0,0,Canceled,2019-01-03 -City Hotel,0,209,2016,September,44,8,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,99.35,0,1,Check-Out,2019-09-03 -Resort Hotel,0,14,2016,January,4,27,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,No Deposit,250.0,179.0,0,Transient,61.01,0,0,Check-Out,2019-10-04 -Resort Hotel,0,15,2017,January,4,6,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,317.0,179.0,0,Transient,62.56,1,1,Check-Out,2018-11-02 -Resort Hotel,0,143,2016,August,23,31,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,127.05,0,0,Check-Out,2019-07-04 -City Hotel,1,257,2016,June,28,18,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.63,0,2,Canceled,2018-12-03 -City Hotel,1,86,2016,March,16,20,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,98.98,0,0,No-Show,2019-03-04 -City Hotel,1,197,2015,September,39,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Contract,58.51,0,0,Canceled,2017-10-03 -Resort Hotel,0,26,2016,July,9,31,0,4,2,0.0,0,HB,PRT,Groups,Corporate,1,0,1,A,I,0,No Deposit,240.0,179.0,75,Transient-Party,0.22,1,2,Check-Out,2019-03-04 -City Hotel,1,16,2017,December,32,28,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,116.7,0,1,Canceled,2019-11-03 -City Hotel,1,3,2016,October,43,21,2,7,2,0.0,0,BB,DEU,Online TA,GDS,0,0,0,D,D,0,No Deposit,178.0,179.0,0,Transient,144.8,0,0,No-Show,2019-08-04 -City Hotel,1,43,2015,July,33,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,151.48,0,0,Canceled,2017-12-03 -Resort Hotel,0,16,2015,November,51,30,2,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,C,0,No Deposit,247.0,179.0,0,Transient,42.15,0,0,Check-Out,2018-09-02 -City Hotel,0,2,2016,May,27,4,0,1,3,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,186.0,179.0,0,Transient,84.3,0,0,Check-Out,2019-05-04 -City Hotel,1,151,2016,June,27,17,1,6,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,71.94,0,0,Canceled,2018-12-03 -City Hotel,1,134,2016,June,28,25,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,86.25,0,1,Canceled,2019-05-04 -City Hotel,1,16,2017,June,27,21,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.41,0,0,Canceled,2020-02-01 -Resort Hotel,1,80,2016,August,38,16,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,60.42,0,2,No-Show,2019-04-03 -City Hotel,0,0,2017,March,17,30,0,1,2,0.0,0,BB,ESP,Direct,Direct,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,59.83,1,2,Check-Out,2020-02-01 -Resort Hotel,0,253,2015,September,45,27,2,3,2,0.0,0,HB,SWE,Groups,TA/TO,0,0,0,E,E,2,No Deposit,308.0,179.0,0,Transient-Party,78.25,0,0,Check-Out,2018-09-02 -Resort Hotel,1,165,2015,December,52,31,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,328.0,179.0,0,Transient-Party,61.08,0,0,Canceled,2019-10-04 -City Hotel,1,292,2015,September,37,20,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,58.95,0,0,Canceled,2017-12-03 -City Hotel,0,244,2015,September,41,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,71.51,0,0,Check-Out,2018-08-03 -Resort Hotel,0,95,2015,December,51,2,0,1,2,0.0,0,Undefined,POL,Groups,TA/TO,0,0,0,A,D,0,No Deposit,100.0,179.0,0,Transient-Party,37.59,0,0,Check-Out,2018-11-02 -City Hotel,1,103,2016,December,53,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.01,0,0,Canceled,2018-11-02 -City Hotel,1,51,2016,October,53,27,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,145.76,0,0,Canceled,2019-10-04 -City Hotel,1,373,2016,October,45,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,75.9,0,0,Canceled,2019-11-03 -City Hotel,1,2,2015,August,37,3,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,60.08,0,0,Canceled,2018-06-02 -City Hotel,1,43,2017,January,3,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.69,0,1,Canceled,2019-11-03 -City Hotel,0,46,2016,October,44,14,0,2,3,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,97.97,0,0,Check-Out,2019-05-04 -Resort Hotel,1,2,2016,February,10,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,Non Refund,33.0,179.0,42,Transient,62.0,0,0,Canceled,2019-02-01 -Resort Hotel,0,0,2016,May,35,8,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,93.49,1,0,Check-Out,2019-10-04 -City Hotel,1,16,2016,May,3,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,127.0,179.0,0,Transient,58.22,0,0,No-Show,2020-03-03 -City Hotel,0,149,2017,July,27,27,0,4,2,1.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,G,2,No Deposit,8.0,179.0,0,Transient,126.24,0,0,Check-Out,2019-09-03 -Resort Hotel,0,0,2016,February,8,6,0,2,2,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,I,0,No Deposit,244.0,179.0,0,Transient,0.0,0,1,Check-Out,2018-12-03 -Resort Hotel,0,0,2016,March,19,3,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,1,0,1,A,D,1,No Deposit,12.0,68.0,0,Transient-Party,29.73,0,1,Check-Out,2019-02-01 -City Hotel,1,25,2017,May,9,23,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.11,0,0,Canceled,2020-02-01 -Resort Hotel,0,1,2016,March,14,24,0,2,2,0.0,0,BB,AUT,Groups,Corporate,0,0,0,A,A,1,No Deposit,15.0,223.0,0,Transient-Party,36.91,0,0,Check-Out,2019-11-03 -City Hotel,0,142,2017,June,36,27,1,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient,213.54,0,0,Check-Out,2020-05-03 -City Hotel,1,38,2016,December,51,30,0,2,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.58,0,1,Canceled,2018-11-02 -Resort Hotel,0,48,2016,March,18,21,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,222.0,0,Transient,38.21,0,2,Check-Out,2019-03-04 -Resort Hotel,1,4,2016,June,26,16,1,7,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,183.98,0,1,No-Show,2019-05-04 -Resort Hotel,1,42,2015,August,36,21,0,5,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.57,0,0,Check-Out,2018-06-02 -Resort Hotel,0,40,2015,October,42,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,150.02,1,0,Check-Out,2018-12-03 -City Hotel,0,0,2015,July,36,5,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,161.23,0,1,Check-Out,2018-06-02 -Resort Hotel,0,6,2015,August,34,10,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,242.0,179.0,0,Transient,231.23,1,2,Check-Out,2018-06-02 -Resort Hotel,0,8,2016,February,8,20,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,78.16,1,1,Check-Out,2018-12-03 -City Hotel,1,40,2016,March,11,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,73.0,179.0,41,Transient,74.18,0,0,Canceled,2018-11-02 -Resort Hotel,0,293,2017,May,23,28,2,6,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,140.86,0,1,Check-Out,2020-05-03 -Resort Hotel,0,2,2017,January,13,16,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,I,0,No Deposit,13.0,179.0,0,Transient-Party,71.94,0,0,Check-Out,2019-12-04 -Resort Hotel,0,154,2016,October,41,30,4,2,2,0.0,0,HB,,Direct,TA/TO,0,0,0,A,D,2,No Deposit,324.0,179.0,0,Transient,43.94,0,0,Check-Out,2019-12-04 -Resort Hotel,0,25,2017,July,29,10,0,4,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,252.0,1,2,Check-Out,2020-07-03 -City Hotel,1,50,2016,March,17,11,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,68.23,0,0,Canceled,2018-11-02 -Resort Hotel,0,48,2017,September,38,10,2,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,226.5,0,2,Check-Out,2020-06-02 -City Hotel,0,92,2016,June,26,21,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,118.31,1,2,Check-Out,2019-12-04 -Resort Hotel,0,107,2017,May,23,27,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,337.0,179.0,0,Contract,110.68,0,0,Check-Out,2020-03-03 -City Hotel,1,45,2015,August,39,3,2,4,2,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,0,Canceled,2018-06-02 -City Hotel,0,180,2016,August,45,9,2,3,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,205.29,1,0,Check-Out,2019-06-03 -Resort Hotel,0,46,2016,November,51,2,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,123.78,0,2,Check-Out,2019-10-04 -Resort Hotel,0,16,2015,July,34,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient-Party,130.53,0,0,Check-Out,2018-06-02 -City Hotel,1,302,2016,March,16,31,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,H,2,Refundable,10.0,179.0,0,Transient,67.82,0,0,Canceled,2019-01-03 -City Hotel,1,224,2015,October,45,22,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,88.91,0,0,Canceled,2018-08-03 -City Hotel,1,246,2016,July,27,29,0,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,135.0,179.0,0,Transient,122.51,0,0,Canceled,2019-03-04 -City Hotel,0,3,2017,April,17,27,2,0,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,F,0,No Deposit,16.0,331.0,0,Transient,0.48,0,0,Check-Out,2020-03-03 -City Hotel,0,14,2017,July,31,30,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,10.0,179.0,0,Transient,122.44,0,1,Check-Out,2020-03-03 -Resort Hotel,0,17,2016,May,21,27,0,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient-Party,182.23,1,0,Check-Out,2020-02-01 -City Hotel,0,9,2016,December,51,30,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,16,Transient-Party,62.62,0,0,Check-Out,2019-06-03 -Resort Hotel,0,17,2016,June,26,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Contract,62.24,0,1,Check-Out,2019-04-03 -City Hotel,0,0,2015,November,42,20,0,1,1,0.0,0,BB,ESP,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,60.08,0,0,Check-Out,2018-08-03 -Resort Hotel,0,42,2016,March,19,29,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,37.82,0,2,Check-Out,2019-11-03 -City Hotel,0,16,2015,September,30,9,2,2,2,0.0,0,HB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,89.62,0,2,Check-Out,2018-05-03 -City Hotel,0,61,2015,September,35,22,2,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,1,No Deposit,45.0,179.0,0,Contract,65.67,1,0,Check-Out,2018-06-02 -City Hotel,1,4,2015,August,34,5,0,1,1,0.0,0,HB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,43.66,0,1,Canceled,2018-07-03 -City Hotel,1,421,2016,February,3,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,62,Transient,58.28,0,0,Canceled,2018-12-03 -City Hotel,0,44,2015,December,49,5,2,2,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.1,0,2,Check-Out,2018-11-02 -Resort Hotel,0,52,2017,August,36,19,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,2019-05-04 -City Hotel,0,34,2015,October,45,31,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Contract,61.62,0,0,Check-Out,2018-09-02 -Resort Hotel,1,107,2016,July,50,2,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,104.6,0,0,Canceled,2019-02-01 -Resort Hotel,1,151,2016,October,36,21,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Contract,60.85,0,0,Canceled,2017-12-03 -Resort Hotel,1,241,2015,December,50,10,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,47.9,0,0,Canceled,2018-09-02 -City Hotel,0,3,2016,May,20,19,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,95.85,0,0,Check-Out,2018-12-03 -City Hotel,0,120,2016,June,27,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,33.0,179.0,0,Transient,75.34,0,0,Check-Out,2019-07-04 -City Hotel,0,32,2016,September,43,16,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,170.31,0,1,Check-Out,2019-08-04 -City Hotel,0,42,2016,April,17,5,1,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,91.47,0,0,Check-Out,2019-02-01 -City Hotel,0,1,2017,August,36,9,0,3,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,169.2,0,0,Check-Out,2020-07-03 -City Hotel,1,194,2016,December,43,21,2,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.14,0,1,Canceled,2019-09-03 -City Hotel,0,277,2017,July,31,5,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,225.62,0,2,Check-Out,2020-07-03 -Resort Hotel,0,2,2016,September,10,20,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,318.0,179.0,0,Transient,45.93,1,0,Check-Out,2019-09-03 -Resort Hotel,0,10,2016,July,10,2,2,1,1,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,97.16,1,1,Check-Out,2019-05-04 -Resort Hotel,0,292,2016,October,44,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,66.64,0,0,Check-Out,2019-08-04 -City Hotel,0,166,2016,June,28,26,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,35.0,179.0,62,Transient,62.39,0,0,Check-Out,2019-05-04 -Resort Hotel,0,56,2016,July,31,6,2,5,2,1.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,236.0,179.0,0,Transient,121.79,0,2,Check-Out,2019-06-03 -Resort Hotel,0,118,2017,March,17,19,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,221.36,1,2,Check-Out,2020-03-03 -Resort Hotel,1,197,2015,July,36,27,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,126.0,179.0,0,Transient,72.64,0,0,Canceled,2018-06-02 -City Hotel,1,50,2017,March,8,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,Non Refund,19.0,45.0,0,Transient,100.26,0,0,Canceled,2020-01-04 -City Hotel,0,2,2016,June,26,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,12.0,45.0,0,Transient,35.17,0,0,Check-Out,2019-02-01 -Resort Hotel,0,36,2015,October,44,20,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,67.98,0,0,Check-Out,2018-09-02 -City Hotel,1,0,2016,June,25,9,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,134.77,0,0,Canceled,2018-12-03 -City Hotel,0,13,2016,November,35,21,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,I,1,No Deposit,13.0,264.0,0,Transient,0.0,0,0,Check-Out,2018-06-02 -Resort Hotel,0,24,2016,November,44,23,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,242.0,179.0,0,Transient,142.61,0,0,Check-Out,2019-05-04 -Resort Hotel,0,102,2016,June,23,30,1,3,2,1.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,92.61,0,1,Check-Out,2019-03-04 -City Hotel,0,1,2016,March,15,15,2,0,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,7.0,179.0,0,Transient,201.49,0,2,Check-Out,2019-01-03 -City Hotel,1,315,2017,May,20,21,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,132.96,0,0,Canceled,2020-04-02 -City Hotel,1,149,2017,April,15,8,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,102.12,0,0,Canceled,2018-12-03 -City Hotel,1,134,2016,June,36,15,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,18,Transient,79.68,0,0,Canceled,2018-11-02 -City Hotel,1,38,2016,March,10,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient,69.19,0,0,Canceled,2019-02-01 -City Hotel,0,44,2016,March,17,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,120.94,0,1,Check-Out,2019-03-04 -City Hotel,1,252,2016,August,32,2,0,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,124.9,0,0,Canceled,2019-06-03 -City Hotel,0,2,2017,August,33,28,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,155.01,0,0,Check-Out,2020-06-02 -City Hotel,1,3,2017,May,21,21,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,C,0,Non Refund,15.0,179.0,0,Transient,62.42,0,0,Canceled,2020-02-01 -Resort Hotel,1,262,2016,October,41,24,2,7,2,1.0,0,BB,USA,Direct,Direct,0,0,0,D,L,2,No Deposit,243.0,179.0,0,Transient,48.67,0,2,No-Show,2019-06-03 -City Hotel,0,2,2017,March,18,15,0,2,3,2.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,165.1,0,0,Check-Out,2020-02-01 -City Hotel,0,9,2016,March,15,25,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,75.91,0,2,Check-Out,2019-12-04 -City Hotel,1,33,2017,June,27,15,0,1,1,0.0,0,SC,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,115.34,0,0,Canceled,2020-04-02 -Resort Hotel,0,32,2017,July,24,21,0,10,2,0.0,0,HB,PRT,Direct,Direct,0,0,1,E,E,1,No Deposit,337.0,179.0,0,Transient,177.87,1,0,Check-Out,2020-02-01 -Resort Hotel,1,251,2017,August,34,28,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,180.47,0,0,Canceled,2020-04-02 -City Hotel,0,87,2016,August,36,10,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,133.63,0,1,Check-Out,2019-06-03 -City Hotel,0,16,2015,August,37,13,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,135.39,0,1,Check-Out,2018-07-03 -City Hotel,0,52,2016,December,53,24,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,94.43,0,2,Check-Out,2019-10-04 -City Hotel,0,28,2016,October,32,6,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Contract,126.8,0,2,Check-Out,2019-06-03 -Resort Hotel,1,10,2017,January,3,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,235.0,179.0,0,Transient,164.39,0,1,No-Show,2020-04-02 -Resort Hotel,0,28,2016,January,10,6,1,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,180.21,0,0,Check-Out,2020-06-02 -City Hotel,0,45,2015,July,26,5,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,114.62,0,0,Check-Out,2018-06-02 -City Hotel,0,53,2015,September,32,28,4,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,85.0,179.0,0,Transient-Party,102.74,0,0,Check-Out,2018-07-03 -City Hotel,1,107,2017,August,37,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,78.83,0,1,Canceled,2020-03-03 -City Hotel,1,258,2016,October,46,15,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.13,0,0,Canceled,2019-07-04 -Resort Hotel,0,1,2015,December,50,25,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,42.48,1,0,Check-Out,2018-08-03 -Resort Hotel,0,43,2016,March,11,9,2,4,2,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,84.54,0,0,Check-Out,2019-11-03 -City Hotel,0,21,2017,August,37,27,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,177.93,0,0,Check-Out,2020-06-02 -City Hotel,0,15,2017,February,9,27,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,31.62,0,0,Check-Out,2019-09-03 -City Hotel,1,195,2016,May,22,19,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,331.0,0,Transient-Party,66.19,0,0,Canceled,2019-03-04 -City Hotel,0,5,2016,December,51,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,E,2,No Deposit,16.0,45.0,0,Transient,63.52,0,0,Check-Out,2018-11-02 -City Hotel,0,49,2016,June,24,26,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient-Party,75.52,0,0,Check-Out,2019-05-04 -City Hotel,0,39,2017,October,30,16,2,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,G,A,1,No Deposit,13.0,179.0,0,Transient,97.37,0,3,Check-Out,2020-06-02 -City Hotel,0,2,2015,September,38,2,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,115.67,0,0,Check-Out,2018-08-03 -Resort Hotel,0,3,2017,June,25,21,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,260.0,0,Transient,37.33,0,0,Check-Out,2020-04-02 -City Hotel,0,252,2015,July,33,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.93,0,2,Check-Out,2019-05-04 -Resort Hotel,0,40,2016,May,21,24,0,1,1,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,317.0,179.0,0,Transient-Party,168.51,1,0,Check-Out,2019-06-03 -Resort Hotel,0,189,2015,September,36,9,0,4,2,0.0,0,HB,GBR,Direct,TA/TO,0,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,180.36,0,0,Check-Out,2018-05-03 -City Hotel,0,3,2016,July,27,28,1,4,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,235.0,179.0,0,Transient,120.8,0,2,Check-Out,2019-04-03 -Resort Hotel,1,271,2017,August,37,22,1,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,234.3,1,0,Canceled,2019-07-04 -City Hotel,0,10,2016,May,22,6,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,60.63,0,2,Check-Out,2019-03-04 -City Hotel,0,100,2017,May,26,28,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,152.68,0,1,Check-Out,2020-02-01 -Resort Hotel,0,108,2016,September,42,13,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,102.5,0,2,Check-Out,2019-05-04 -City Hotel,0,98,2016,February,10,23,0,5,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,72.4,0,1,Check-Out,2019-02-01 -City Hotel,1,141,2016,June,27,19,0,2,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,133.31,0,0,Canceled,2019-06-03 -Resort Hotel,0,4,2017,March,10,28,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,H,I,3,No Deposit,175.0,217.0,0,Transient-Party,0.0,0,0,Check-Out,2020-04-02 -Resort Hotel,0,25,2016,October,43,14,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,112.27,0,2,Check-Out,2018-08-03 -City Hotel,0,2,2016,October,36,30,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,111.81,0,0,Check-Out,2019-08-04 -City Hotel,0,103,2016,April,16,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,84.0,179.0,0,Transient,62.95,0,0,Check-Out,2019-02-01 -Resort Hotel,0,16,2017,February,8,13,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,1,A,A,0,No Deposit,12.0,331.0,0,Transient,62.74,0,0,Check-Out,2020-05-03 -City Hotel,0,1,2016,February,9,16,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.19,0,1,Check-Out,2019-02-01 -City Hotel,0,147,2016,July,26,5,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,151.72,0,0,Check-Out,2019-05-04 -Resort Hotel,0,156,2016,March,15,25,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,169.0,179.0,0,Transient,76.74,0,0,Check-Out,2019-02-01 -City Hotel,0,0,2016,November,48,8,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,D,1,No Deposit,12.0,331.0,0,Transient,32.02,0,0,Check-Out,2019-10-04 -City Hotel,0,96,2016,May,26,7,2,0,3,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,75.26,0,0,Check-Out,2020-03-03 -City Hotel,1,60,2017,May,21,19,0,2,2,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient-Party,119.52,0,0,Canceled,2019-10-04 -City Hotel,0,37,2015,August,35,9,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,76.38,0,0,Check-Out,2018-06-02 -Resort Hotel,0,0,2015,December,53,9,1,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,62.84,0,1,Check-Out,2018-12-03 -City Hotel,1,53,2016,December,51,24,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.3,0,1,Canceled,2018-12-03 -City Hotel,0,42,2016,December,52,31,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,41.0,179.0,0,Transient,59.47,0,1,Check-Out,2019-10-04 -Resort Hotel,0,45,2016,April,27,9,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,39.86,0,1,Check-Out,2019-01-03 -City Hotel,0,14,2015,December,53,24,1,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.47,0,0,Check-Out,2019-10-04 -City Hotel,0,32,2017,August,32,20,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,99.57,0,0,Check-Out,2020-03-03 -City Hotel,1,165,2016,December,42,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,40,Transient,100.21,0,0,Canceled,2018-08-03 -Resort Hotel,0,0,2017,April,21,5,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,3,No Deposit,247.0,179.0,0,Transient-Party,48.75,1,0,Check-Out,2020-03-03 -City Hotel,0,19,2016,June,23,27,0,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,120.94,0,1,Check-Out,2019-04-03 -Resort Hotel,0,185,2017,May,23,18,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,71.12,0,3,Check-Out,2019-02-01 -Resort Hotel,0,3,2016,October,44,24,2,1,2,0.0,0,BB,,Groups,Direct,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient,60.92,0,0,Check-Out,2018-11-02 -City Hotel,0,148,2017,June,16,31,2,3,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,119.93,0,1,Check-Out,2020-07-03 -Resort Hotel,0,19,2016,October,50,30,2,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,118.69,0,0,Check-Out,2019-08-04 -City Hotel,0,85,2016,December,53,5,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.52,0,1,Check-Out,2019-11-03 -Resort Hotel,0,353,2017,August,26,28,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,174.73,0,0,Check-Out,2019-03-04 -City Hotel,0,7,2016,March,24,6,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,212.83,0,0,Check-Out,2019-02-01 -City Hotel,0,16,2016,September,35,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,13.0,61.0,0,Transient,63.28,0,0,Check-Out,2019-06-03 -City Hotel,0,54,2015,August,37,24,1,5,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,214.21,0,0,Check-Out,2018-05-03 -City Hotel,0,16,2015,October,43,16,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,116.23,0,1,Check-Out,2018-08-03 -Resort Hotel,0,77,2016,October,43,16,0,5,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Check-Out,2019-05-04 -Resort Hotel,0,3,2017,August,32,27,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,2020-07-03 -City Hotel,0,42,2017,May,21,9,0,3,2,0.0,0,BB,AUT,Direct,Corporate,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient-Party,158.78,1,1,Check-Out,2020-06-02 -City Hotel,1,104,2017,April,18,5,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.88,0,0,Canceled,2019-02-01 -Resort Hotel,1,437,2017,July,26,17,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,155.0,179.0,0,Transient,63.16,0,0,Canceled,2020-03-03 -City Hotel,0,71,2015,September,36,27,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,90.2,0,0,Check-Out,2018-06-02 -City Hotel,0,99,2016,September,42,13,0,2,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,75,Group,100.14,0,0,Check-Out,2019-05-04 -Resort Hotel,0,34,2016,December,51,6,1,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,63.03,1,3,Check-Out,2019-11-03 -City Hotel,1,145,2017,July,33,30,2,0,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,152.66,0,0,Canceled,2020-02-01 -City Hotel,0,0,2017,May,21,21,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,E,F,2,No Deposit,14.0,179.0,0,Transient,0.0,1,1,Check-Out,2020-04-02 -City Hotel,0,115,2016,April,23,5,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient-Party,69.42,0,1,Check-Out,2019-02-01 -City Hotel,1,150,2016,May,18,21,1,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.09,0,2,Check-Out,2019-03-04 -Resort Hotel,1,47,2017,March,20,6,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,165.01,0,0,Canceled,2019-11-03 -Resort Hotel,0,4,2017,February,9,14,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,49.33,0,0,Canceled,2020-02-01 -Resort Hotel,0,38,2016,May,23,9,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,302.0,179.0,0,Group,64.67,0,2,Check-Out,2020-02-01 -City Hotel,1,304,2016,October,43,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,262.0,179.0,22,Transient,78.44,0,0,Canceled,2018-08-03 -City Hotel,1,163,2015,August,37,10,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,97.19,0,0,Canceled,2018-07-03 -Resort Hotel,0,162,2016,July,33,6,4,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,87.63,0,0,Check-Out,2019-08-04 -Resort Hotel,0,24,2016,October,41,10,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,237.0,179.0,0,Transient,118.17,0,1,Check-Out,2019-06-03 diff --git a/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/data.csv b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/data.csv new file mode 100644 index 00000000..f31436e3 --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/data.csv @@ -0,0 +1,10001 @@ +hotel,is_canceled,lead_time,arrival_date_year,arrival_date_month,arrival_date_week_number,arrival_date_day_of_month,stays_in_weekend_nights,stays_in_week_nights,adults,children,babies,meal,country,market_segment,distribution_channel,is_repeated_guest,previous_cancellations,previous_bookings_not_canceled,reserved_room_type,assigned_room_type,booking_changes,deposit_type,agent,company,days_in_waiting_list,customer_type,adr,required_car_parking_spaces,total_of_special_requests,reservation_status,name,email,phone-number,credit_card,reservation_status_date +City Hotel,1,224,2017,June,26,25,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,75.63,0,0,Canceled,Allison Hill,silvapreston@example.org,001-211-370-0524x59609,4230468017979821871,2024-06-17 +Resort Hotel,0,85,2017,July,28,11,0,6,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,51.52,0,0,Check-Out,Noah Rhodes,kathleenellis@example.com,(271)472-0984,3528681187088632,2025-08-09 +City Hotel,0,14,2017,June,26,26,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.36,0,0,Check-Out,Angie Henderson,jeffrey20@example.com,909.343.1521x199,374361486083961,2026-01-03 +City Hotel,1,46,2017,November,45,7,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.7,0,1,Canceled,Daniel Wagner,cbradley@example.org,886.625.6156x3688,4200728237167,2024-04-04 +City Hotel,1,43,2017,April,14,3,1,2,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,230.81,0,0,Canceled,Cristian Santos,rhonda97@example.org,+1-565-804-5696x06285,2698075972440452,2024-06-29 +City Hotel,1,141,2017,February,7,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.35,0,0,Canceled,Connie Lawrence,michael79@example.org,001-774-692-8187x11363,4165673177207,2024-05-06 +Resort Hotel,0,57,2017,April,15,10,4,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,151.12,0,1,Check-Out,Abigail Shaffer,kaylaburns@example.org,813.631.1270,6011446363438994,2025-12-16 +City Hotel,0,1,2017,January,4,22,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,12.0,179.0,0,Transient,131.76,1,2,Check-Out,Gina Moore,wilsonmatthew@example.net,547-283-9904x97910,4243917740277481664,2025-04-30 +City Hotel,1,168,2017,April,16,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,128.56,0,0,Canceled,Gabrielle Davis,basssteven@example.com,001-933-879-9161x8502,2262796022901195,2025-06-08 +Resort Hotel,0,2,2017,November,48,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,50.15,0,1,Check-Out,Ryan Munoz,colleenwhite@example.com,806.344.0930x577,3503315045184106,2025-05-14 +Resort Hotel,0,162,2017,August,35,30,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,9.0,221.0,0,Transient-Party,79.43,0,0,Check-Out,Monica Herrera,montoyabrenda@example.net,506-792-6005x4286,346783454604160,2025-01-25 +City Hotel,1,301,2017,April,14,5,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.1,0,1,Canceled,Jamie Arnold,richard88@example.net,540.488.5174x4441,3522226089494565,2025-08-17 +Resort Hotel,0,51,2017,January,3,16,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,102.0,1,0,Check-Out,Lisa Hensley,cwebster@example.net,882-335-5263x73380,213135758529108,2024-08-07 +Resort Hotel,0,15,2017,August,34,25,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,33.0,221.0,0,Transient-Party,41.7,0,1,Check-Out,Michele Williams,emily73@example.com,879.598.9043x8100,5457801028429502,2025-05-18 +City Hotel,0,19,2017,March,12,22,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,K,0,No Deposit,8.0,179.0,0,Transient-Party,4.69,0,2,Check-Out,Dylan Miller,edowns@example.net,605-295-0761,30132837428544,2024-09-28 +Resort Hotel,1,20,2017,August,35,28,0,3,3,2.0,0,Undefined,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Transient,44.4,0,0,Canceled,Brian Ramirez,maria36@example.com,+1-448-368-7169x07338,3500062081581091,2026-02-02 +Resort Hotel,0,117,2017,June,25,19,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.97,0,1,Check-Out,Holly Wood,nicole02@example.com,4923009114,30096930008380,2025-12-14 +City Hotel,0,221,2017,July,31,29,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,163.39,1,0,Check-Out,Derek Zuniga,edwardfoster@example.com,+1-568-850-9894x79398,4190910444893202,2024-09-27 +City Hotel,1,9,2017,August,33,18,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,89.52,0,2,Canceled,Lisa Jackson,wdyer@example.com,469-406-1096x033,4962300383147677,2025-03-13 +City Hotel,1,158,2017,April,15,9,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,217.81,0,3,Canceled,Carla Gray,zstokes@example.com,+1-238-722-3537x55727,213130378624637,2024-09-08 +City Hotel,1,247,2017,April,14,8,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,208.97,0,0,Canceled,Margaret Hawkins DDS,april66@example.net,+1-825-701-8872x069,4729405554704378550,2025-06-27 +Resort Hotel,1,206,2017,April,16,13,2,5,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,246.0,179.0,0,Transient,252.0,0,3,Canceled,Patty Perez,lori47@example.net,001-577-967-7887x13084,213171683075495,2025-08-04 +City Hotel,1,151,2017,September,37,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,136.0,179.0,0,Transient,63.34,0,0,Canceled,Ethan Adams,baileymeagan@example.net,(800)866-3295,4230660958333432,2026-01-25 +City Hotel,0,158,2017,November,47,22,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.74,0,2,Check-Out,Tommy Walter,joshuaramos@example.com,(974)789-3670x619,4416322509287023,2025-11-23 +City Hotel,0,10,2017,August,31,1,0,3,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.31,1,1,Check-Out,Matthew Foster,deborah24@example.org,2033814043,30151366792328,2024-12-28 +Resort Hotel,0,211,2017,January,2,3,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,237.62,0,3,Check-Out,Judy Baker,john72@example.net,(731)650-0583x534,6011093166757673,2026-01-10 +City Hotel,0,14,2017,August,34,23,2,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,99.49,0,3,Check-Out,Justin Baker,hansenjoshua@example.net,(655)561-4178,3527975983071094,2024-07-27 +City Hotel,1,141,2017,January,5,31,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,96.09,0,0,Canceled,Stephanie Ross,oedwards@example.net,860.718.3257x981,4042915556672,2024-12-05 +Resort Hotel,1,249,2017,April,14,3,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,207.87,0,0,Canceled,Zachary Hicks,marvin03@example.com,001-735-224-6936x042,6549884471555229,2024-12-15 +Resort Hotel,0,0,2017,November,45,7,1,0,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,221.0,0,Transient,36.48,0,0,Check-Out,Anthony Rodriguez,joshua07@example.net,601-593-9589x818,38477377053430,2024-09-13 +Resort Hotel,1,144,2017,April,14,1,0,3,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,D,E,0,Refundable,13.0,221.0,0,Transient-Party,76.0,0,0,Canceled,Rebecca Henderson,brooksamanda@example.org,001-724-345-7434x259,3544590725014929,2024-09-26 +City Hotel,0,3,2017,February,8,19,2,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,82.83,0,1,Check-Out,James Ferrell,sara93@example.org,(428)369-5293,6011671604822934,2024-10-18 +Resort Hotel,0,0,2017,November,46,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,183.0,231.0,0,Transient-Party,45.26,0,0,Check-Out,Tricia Valencia,wrightcarolyn@example.com,2622868521,213160104198861,2026-03-12 +Resort Hotel,0,4,2017,June,24,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,47.67,1,1,Check-Out,Nathan Maldonado,hortonjoshua@example.org,001-673-659-0132x570,4013174349414,2025-04-04 +City Hotel,0,17,2017,July,27,3,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.9,0,1,Check-Out,Debra Davidson,nwalker@example.org,748-722-4302,3536412277760322,2025-03-11 +Resort Hotel,0,3,2017,November,44,3,2,1,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient,48.26,1,1,Check-Out,Jeffrey Chavez,christopher06@example.org,288.755.7393x97426,3568624555616189,2024-11-26 +City Hotel,1,1,2017,September,39,27,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.78,0,1,Canceled,Sherri Baker,lisamccarthy@example.org,(502)762-5991x435,4478122624426,2026-01-23 +Resort Hotel,1,44,2017,August,34,23,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,88.63,0,0,Canceled,Cassandra Gaines,dale26@example.com,+1-956-591-7207x036,346038081675715,2025-03-05 +Resort Hotel,0,47,2017,April,15,9,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,233.29,0,2,Check-Out,Elizabeth Fowler,mollyhayes@example.net,336.330.1527x7374,6536140604455687,2025-11-01 +Resort Hotel,0,17,2017,May,19,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,57.69,0,2,Check-Out,Brittany Farmer,sharris@example.com,+1-444-387-8905,213196616326095,2024-12-02 +Resort Hotel,0,1,2017,November,45,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,53.44,0,1,Check-Out,Paula Moreno,bcampbell@example.com,+1-744-909-0025,580238084165,2024-09-14 +City Hotel,1,145,2017,December,52,23,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.32,0,1,Canceled,Fred Smith,vshields@example.org,725.673.1302x20373,4748182483869058,2024-10-25 +Resort Hotel,1,264,2017,January,2,7,2,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,275.0,179.0,0,Transient,141.53,0,0,Canceled,Sherry Decker,jefferyvincent@example.org,9537340164,213169884118478,2025-04-22 +City Hotel,0,22,2017,May,20,17,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,108.69,0,1,Check-Out,Anthony Humphrey,ygonzalez@example.net,+1-706-309-3371x98658,4580869686896,2025-02-16 +Resort Hotel,0,0,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,15.0,179.0,0,Transient,32.89,1,0,Check-Out,Angelica Tucker,vbaker@example.net,5214465481,2238067541887542,2025-03-07 +City Hotel,0,81,2017,June,23,9,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,62.0,179.0,0,Contract,118.31,0,0,Check-Out,Philip Cannon,kimberlyerickson@example.net,(306)915-2501,4680423973815965,2024-06-15 +Resort Hotel,1,273,2017,March,10,4,4,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,242.0,179.0,0,Transient,54.74,0,1,Canceled,John Pierce,lisa10@example.org,498.779.5047x0062,30204692011085,2024-08-06 +City Hotel,1,114,2017,December,48,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,76.0,179.0,0,Transient,104.35,0,0,Canceled,Shane Henderson,whitetracy@example.org,2174759174,3517904892526636,2025-06-04 +Resort Hotel,0,33,2017,June,23,8,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,77.0,179.0,0,Contract,44.12,0,2,Check-Out,Joshua Blair,hbrock@example.net,993.260.4470,4545571602920740,2025-06-23 +Resort Hotel,0,18,2017,September,39,24,1,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,115.37,1,1,Check-Out,Eric Carney,danny48@example.com,(360)357-9652x73983,343084584827497,2025-02-03 +Resort Hotel,0,382,2017,January,2,11,2,0,1,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,309.0,179.0,0,Transient-Party,92.81,0,1,Check-Out,Jessica Holmes,oalvarez@example.com,(959)282-2189,4306832968012658786,2025-02-27 +City Hotel,0,150,2017,December,51,23,2,2,2,0.0,0,BB,,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.66,0,3,Check-Out,Danny Morgan,aprilforbes@example.org,862-344-4516,4209521476211,2024-12-09 +Resort Hotel,0,0,2017,May,19,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,1,No Deposit,248.0,179.0,0,Transient,50.54,0,1,Check-Out,Crystal Robinson,qmiller@example.org,970.734.0849,6011632822330175,2025-12-10 +Resort Hotel,1,134,2017,July,28,10,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,110.1,0,0,Canceled,Mark Perez,sergio54@example.net,515.302.7439,4274927023420219114,2026-01-20 +City Hotel,0,106,2017,November,46,14,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,65,Transient-Party,110.86,0,0,Check-Out,Shannon Jones,nrice@example.com,001-216-854-5948,3534295832351527,2025-09-15 +City Hotel,1,313,2017,June,26,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,66,Transient,104.04,0,0,Canceled,Michael Lewis,bautistarhonda@example.net,(809)252-7958,376154092656793,2025-09-02 +Resort Hotel,0,149,2017,March,12,22,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,119.69,0,0,Check-Out,Timothy Duncan,robertlopez@example.com,425.409.3330x206,342897222929990,2024-12-01 +City Hotel,0,2,2017,July,28,12,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,206.0,0,Transient,87.22,0,0,Check-Out,Richard Aguirre,barbermichelle@example.com,5536845281,4329806516525041,2025-04-28 +City Hotel,0,45,2017,October,42,17,0,4,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,41.75,0,0,Check-Out,Brent Jordan,ryan70@example.com,001-878-857-5232,343924871521362,2026-03-10 +City Hotel,0,151,2017,October,43,27,2,3,3,0.0,0,BB,IRL,Online TA,Corporate,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient-Party,242.2,0,2,Check-Out,John Daniel,fieldsrobin@example.net,403-282-1186,3531494012367253,2026-02-03 +Resort Hotel,0,96,2017,January,4,25,1,1,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,75,Transient,89.97,1,0,Check-Out,Victoria Garcia,pughcarol@example.org,001-650-425-5130x99962,4618452453724222814,2025-09-28 +Resort Hotel,0,11,2017,August,32,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,85.97,1,1,Check-Out,Gerald Hensley,nnielsen@example.net,+1-364-797-7070x34562,2278712330675654,2024-05-02 +City Hotel,0,22,2017,December,2,31,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.06,0,1,Check-Out,Connor West,andersontravis@example.com,(952)774-2169x195,30364927718951,2026-02-01 +Resort Hotel,0,0,2017,October,43,24,2,5,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,43.95,1,1,Check-Out,Donald Wright,carmen98@example.com,001-241-890-4549,3584746443371261,2024-09-06 +Resort Hotel,0,115,2017,March,11,13,1,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,237.0,179.0,0,Transient,240.78,1,3,Check-Out,Jessica Callahan,gravestammy@example.org,847-382-9240x98866,6561912143779761,2025-05-06 +City Hotel,0,28,2017,June,23,3,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,211.38,0,2,Check-Out,Amber Kidd,gjenkins@example.com,+1-318-270-0749x89006,6011876353710368,2025-08-19 +City Hotel,0,12,2017,May,20,20,2,3,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.28,0,0,Check-Out,Tracy House,cookheather@example.org,(703)415-5677,4438107047086779,2025-12-09 +City Hotel,1,148,2017,April,15,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,221.13,0,0,Canceled,Carol Tucker,wriley@example.org,763-259-2444,4772904408861,2026-01-26 +City Hotel,1,96,2017,June,25,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,103.44,0,0,Canceled,James Brown,xkirk@example.org,565.947.8891x559,4983982718668111398,2024-12-12 +Resort Hotel,0,23,2017,November,47,19,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,William Baker,cardenasjoseph@example.com,451.242.5807x4221,2718841946492606,2025-03-20 +City Hotel,1,38,2017,August,31,2,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,89.84,0,1,Canceled,Jordan Henderson,sheppardallison@example.net,001-437-336-0014x52323,4885996818922393435,2024-07-27 +City Hotel,1,109,2017,February,9,26,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,81.89,0,1,Canceled,Whitney Peters,scott48@example.org,001-542-204-1793x95384,5349844232971333,2024-06-17 +City Hotel,0,146,2017,November,47,20,2,2,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,82.29,0,1,Check-Out,Brittney Phillips,perezzachary@example.com,218.546.6090x3514,30264533730111,2024-04-11 +City Hotel,0,68,2017,February,8,23,0,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,E,3,No Deposit,11.0,179.0,0,Transient,140.83,0,3,Check-Out,Lauren Daniels,vlewis@example.net,931.439.3605,3545347822661097,2024-07-23 +City Hotel,1,90,2017,February,8,23,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,89.08,0,0,No-Show,Amy Silva,hannah04@example.com,001-807-731-1567x6238,4123898537609860,2025-10-02 +City Hotel,0,27,2017,December,49,7,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,29.0,179.0,0,Transient-Party,84.02,0,0,Check-Out,Sarah Moore,timothypalmer@example.net,+1-226-530-1618,30409743112507,2025-04-21 +City Hotel,0,7,2017,March,13,25,0,2,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.43,0,0,Check-Out,Angela Lopez,lopezmichelle@example.net,6382794263,4311347636514329440,2026-03-08 +City Hotel,0,50,2017,May,19,9,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,102.54,0,1,Check-Out,Megan Young,latoyahartman@example.com,001-454-375-5156x9832,3598318044454641,2025-06-06 +City Hotel,0,0,2017,October,41,10,0,1,1,1.0,0,SC,SWE,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,87.75,0,0,Check-Out,Steve Sanchez,jodimiller@example.com,001-281-328-0919x177,676143534466,2025-08-07 +City Hotel,0,11,2017,July,28,10,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,73.56,1,0,Check-Out,Lisa Barnes,julie84@example.com,001-882-977-1795,3585294485450015,2024-12-13 +Resort Hotel,1,25,2017,April,14,7,1,2,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,215.48,1,0,Canceled,Kelly Donovan,pamela88@example.net,358.776.6121x77444,30265588496227,2025-07-01 +City Hotel,1,174,2017,January,3,19,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,119.16,0,0,Canceled,Mike Allen,wendy93@example.org,(557)443-7598x2481,501891012145,2024-10-17 +City Hotel,0,3,2017,April,15,11,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,A,0,No Deposit,9.0,45.0,0,Transient,1.03,0,1,Check-Out,Michael Evans,wendybonilla@example.org,+1-618-601-2955,30421610447874,2025-03-07 +City Hotel,0,65,2017,March,11,13,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,29.0,179.0,0,Transient,107.96,0,1,Check-Out,Paul Jones,xsims@example.com,373-252-6407x14913,3553810715259690,2024-11-05 +City Hotel,0,19,2017,December,50,10,1,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,171.62,0,1,Check-Out,Zachary Ferrell,kirkmallory@example.org,665-527-4045x645,4571656918998,2025-04-04 +Resort Hotel,0,18,2017,April,15,12,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,237.0,179.0,0,Transient,64.47,1,1,Check-Out,Daniel Baker,xharvey@example.org,329-403-8265,30530369214986,2024-07-25 +City Hotel,1,159,2017,June,25,24,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,123.75,0,0,Canceled,Shirley Suarez,paulerik@example.net,001-794-372-9926x33700,3545285438729124,2024-08-25 +City Hotel,0,155,2017,March,11,13,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,11.0,179.0,0,Transient,132.65,0,1,Check-Out,Christopher Bass,nolancatherine@example.net,339-712-2276,4247935558406,2025-02-22 +City Hotel,1,38,2017,November,46,15,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,85.11,0,1,Canceled,Lisa Archer,ojames@example.org,+1-442-451-1874,630492378645,2025-08-09 +City Hotel,0,0,2017,July,28,10,1,2,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,331.0,0,Transient,3.27,0,0,Check-Out,Aimee Montoya,reneehoward@example.com,918.758.3132,2245679644622815,2024-07-13 +City Hotel,1,87,2017,April,18,30,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,140.6,0,0,Canceled,Matthew Mcmillan,joseph03@example.org,603.540.9718x1485,340423404382122,2025-01-06 +Resort Hotel,0,15,2017,June,22,2,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,85.19,0,0,Check-Out,Brian Rodriguez,lharper@example.org,(427)948-1873x1785,4522132041101296683,2025-08-26 +Resort Hotel,0,16,2017,April,18,28,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,1,No Deposit,237.0,179.0,0,Transient,66.58,1,2,Check-Out,Denise Jacobs,joshua02@example.net,(742)884-6851x92617,4509178424875955,2025-12-09 +City Hotel,0,57,2017,June,25,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Contract,79.05,0,0,Check-Out,Christina Walters,kclark@example.org,+1-327-242-9003x916,560388470844,2025-01-05 +Resort Hotel,1,155,2017,March,10,5,1,10,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,228.91,0,1,Canceled,John Whitehead,thomastheresa@example.net,(281)611-1704,6515668460655896,2025-03-31 +City Hotel,0,158,2017,April,15,9,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,102.83,0,0,Canceled,Anna Henderson,jason85@example.org,001-978-273-7480x521,4026058440656302098,2025-08-11 +City Hotel,0,164,2017,February,8,21,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,10.0,179.0,75,Transient,120.05,0,1,Check-Out,Aaron Wise,carterjames@example.net,(507)339-7016,4290098790330174,2024-12-16 +City Hotel,0,20,2017,November,47,22,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.91,0,2,Check-Out,Deborah Figueroa,hollychang@example.net,(929)658-1077x19676,4752677949364084,2026-03-16 +City Hotel,0,76,2017,November,47,25,2,2,1,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,225.05,0,2,Check-Out,Jessica Smith,imahoney@example.org,666-606-4858,3543578142037004,2025-10-08 +City Hotel,0,51,2017,March,12,21,1,3,3,1.0,0,SC,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,115.25,0,0,Check-Out,Stephen Mckee,allison10@example.net,524-850-4988x645,4157524911421,2024-05-12 +Resort Hotel,1,18,2017,September,38,18,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,221.0,0,Transient,39.81,0,0,Check-Out,Sandra Aguilar,reneebrown@example.com,+1-845-812-6527,5295231191176175,2024-06-17 +Resort Hotel,0,11,2017,August,32,7,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,143.23,0,1,Check-Out,Cameron Parker,alyssa73@example.net,431.355.2541x783,2268731023450888,2024-12-20 +Resort Hotel,1,115,2017,February,9,24,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,140.57,0,1,Canceled,Rebecca Valencia,scott79@example.com,226-881-8685,349275624522064,2026-01-31 +Resort Hotel,0,180,2017,November,46,13,1,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,53.65,0,0,Check-Out,Christine Wright,brendafox@example.net,345.285.6977,213158463155357,2024-11-15 +City Hotel,0,15,2017,September,39,27,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,126.77,0,3,Check-Out,Richard Henson,josephmoran@example.net,756-488-2634x2423,4117515051076742,2026-02-20 +City Hotel,0,100,2017,November,45,7,2,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Contract,163.38,0,2,Check-Out,Marc Moore,joel15@example.org,787.800.5251x36272,3593318358803222,2025-07-25 +City Hotel,0,0,2017,November,47,24,0,1,3,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,105.09,0,1,Check-Out,Sharon Cherry,toddheath@example.org,982-611-4084,4952090073561715,2025-06-04 +Resort Hotel,1,155,2017,February,9,29,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,241.68,0,0,Canceled,Sierra Johnson,samuelhill@example.org,(861)454-7121,3504540928554286,2025-07-04 +Resort Hotel,0,45,2017,March,13,24,2,2,2,2.0,0,BB,POL,Online TA,Direct,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,252.0,1,1,Check-Out,Evelyn Galvan,miranda18@example.com,857.733.2006x1193,4237002939094044287,2025-01-10 +Resort Hotel,0,10,2017,January,4,24,1,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,331.0,0,Transient,53.7,1,0,Check-Out,Sharon Cochran,monicadiaz@example.com,(797)448-0233,3549963769582835,2025-08-12 +City Hotel,1,43,2017,September,38,17,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,145.0,0,0,Check-Out,Richard Rodriguez,yschroeder@example.net,558.645.9638,213144926031567,2024-08-06 +City Hotel,1,200,2017,April,18,30,1,4,3,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,No-Show,Shannon Walker,rogersmatthew@example.org,(807)349-1698x1555,6514527430274629,2024-07-24 +Resort Hotel,0,146,2017,May,20,14,2,5,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,202.47,1,1,Check-Out,Julia Torres,brianpalmer@example.net,696.404.7510,6509008689737548,2025-11-06 +City Hotel,0,149,2017,April,16,17,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,B,0,No Deposit,12.0,179.0,0,Transient,220.19,0,1,Check-Out,Crystal Johnson,nluna@example.com,525-784-6589x933,4382832173277571,2025-10-15 +City Hotel,0,37,2017,January,2,6,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,I,0,No Deposit,11.0,179.0,0,Transient,0.46,1,0,Check-Out,Garrett Lin,jose87@example.com,617.968.5384x9940,4533628768874469158,2024-04-11 +City Hotel,1,249,2017,December,51,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.99,0,0,Canceled,Diana May,leonardmatthew@example.net,327.697.2809x277,4574438753840731166,2025-01-14 +Resort Hotel,1,0,2017,October,43,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,331.0,0,Transient,46.55,0,0,Canceled,William Herrera,william49@example.net,3049640879,4355505492067690,2024-12-06 +City Hotel,1,166,2017,February,9,25,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,109.81,0,0,Canceled,Ashley Waller,dyermegan@example.net,661.788.5752,213188648978050,2024-06-13 +Resort Hotel,1,401,2017,March,10,8,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,40,Transient-Party,104.63,0,0,Canceled,Victor Baker,dixonderek@example.com,(216)442-0118,4009676839563996,2025-07-08 +City Hotel,1,155,2017,November,44,1,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,139.19,0,1,Canceled,Jeffrey Chandler,richard40@example.org,001-895-548-5211x21594,3550202311549349,2026-01-16 +City Hotel,0,6,2017,April,16,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,118.51,1,0,Check-Out,Larry Dixon,anthony69@example.com,938.817.9842,344843292665245,2024-07-26 +Resort Hotel,0,13,2017,March,10,3,2,2,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,247.08,1,0,Check-Out,Kenneth Scott,kristen93@example.com,001-701-577-0690,6576298374768423,2024-05-09 +City Hotel,0,15,2017,August,32,11,1,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,100.86,0,1,Check-Out,April Frost,william10@example.net,870.719.3639,180093117772738,2024-09-17 +City Hotel,0,13,2017,December,52,25,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.49,0,1,Check-Out,Michelle Harmon,elizabethgriffin@example.com,243-764-6296,4754613995459856,2025-03-13 +City Hotel,1,441,2017,June,23,6,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,84.05,0,0,Canceled,Helen Jones,sergio77@example.com,652-219-0926x7125,4151240295499703117,2025-11-12 +Resort Hotel,0,5,2017,May,21,23,2,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,329.0,179.0,0,Transient,48.12,0,0,Check-Out,Erin Edwards,nathan25@example.com,276-908-3073x5460,3586146786135290,2025-12-10 +City Hotel,1,177,2017,April,14,3,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,124.41,0,0,Canceled,Michelle Evans,martinezwillie@example.org,001-674-607-6856,6548356441452572,2024-06-13 +Resort Hotel,1,66,2017,September,39,23,1,4,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,249.75,0,0,Canceled,Jason Powell,jill37@example.net,001-692-855-9334x88695,213128149809156,2024-06-20 +Resort Hotel,0,41,2017,April,17,23,2,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,252.0,1,0,Check-Out,Cameron Fisher,bgilbert@example.com,+1-600-822-0976,3527108467436431,2024-09-26 +City Hotel,0,191,2017,January,4,26,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient-Party,110.95,0,0,Check-Out,Megan Orr,pagemorgan@example.com,(431)575-9596x274,4096863405332,2024-08-28 +City Hotel,1,298,2017,December,2,31,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,101.05,0,0,Canceled,Elizabeth Kelley,amy49@example.net,241.528.3437,4158498466384,2025-05-01 +City Hotel,1,47,2017,November,46,15,1,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.84,0,1,Canceled,Dustin Jordan,qmurray@example.net,352.869.6857x539,501858307157,2026-03-02 +Resort Hotel,0,149,2017,May,18,1,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,2,Refundable,13.0,222.0,0,Transient-Party,224.58,0,0,Check-Out,Mary Marshall,grahamdavid@example.net,+1-891-839-4689x3327,213136611363289,2026-01-18 +Resort Hotel,1,261,2017,February,8,23,0,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Non Refund,245.0,179.0,0,Transient,208.74,0,0,Canceled,Daniel Kennedy,kristin71@example.org,963-498-4811,213189126648074,2025-03-16 +City Hotel,0,1,2017,December,50,9,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,0.66,1,2,Check-Out,Rebecca Jackson,michael35@example.org,001-825-212-5748x15324,4334133225086451,2026-01-18 +City Hotel,0,15,2017,December,51,20,2,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,1,F,F,0,No Deposit,13.0,179.0,0,Transient,237.55,1,1,Check-Out,Jose Schultz,kimberlyjordan@example.com,+1-263-898-1808x5542,6532908995493838,2024-08-14 +City Hotel,0,355,2017,January,3,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,60.0,0,Transient-Party,65.02,0,0,Check-Out,Robert Potter,bennettdavid@example.org,6995396007,2512750776774793,2025-03-07 +City Hotel,0,12,2017,March,9,1,1,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,137.29,0,2,Check-Out,Courtney Gonzalez,travisfrazier@example.com,306-517-7238x20751,3522304697120920,2025-12-27 +Resort Hotel,0,38,2017,March,11,15,1,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,140.04,0,1,Check-Out,David Alvarez,james14@example.com,486-457-9681x0320,2709217865696249,2025-02-18 +City Hotel,1,52,2017,June,23,3,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient-Party,81.1,0,0,Canceled,Angel Perry,steelejames@example.org,501-373-2815x954,378036558820435,2024-06-25 +City Hotel,1,2,2017,June,25,18,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.99,0,0,Canceled,Cheyenne Horton,oescobar@example.org,(246)674-0094,6011732156591507,2024-04-18 +Resort Hotel,0,223,2017,April,17,26,2,5,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,64.36,0,0,Check-Out,David Douglas Jr.,morgansusan@example.com,978.514.1195,4462070902471,2025-01-12 +City Hotel,1,308,2017,March,12,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,92.7,0,0,Canceled,Patricia Rodriguez,kristygomez@example.net,(506)734-0513x00572,4611895914412461,2025-03-01 +City Hotel,1,226,2017,April,14,2,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,116.01,0,0,Canceled,Christopher Rubio,pam56@example.org,327.891.8233,4942439617361202,2025-03-07 +City Hotel,1,13,2017,December,51,16,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,115.07,0,0,Canceled,Amber Wright,colemanangela@example.net,316.629.9681x7548,4925903391926259,2024-09-10 +City Hotel,0,3,2017,June,25,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,116.15,0,0,Check-Out,Joyce Solis,jamesbauer@example.net,623-935-2156x0232,3528281362090196,2024-08-24 +City Hotel,1,83,2017,October,43,22,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,100.69,0,2,Canceled,Victoria Larson,wlyons@example.com,968-279-2718x5513,4937016507216717,2024-11-15 +Resort Hotel,1,194,2017,March,12,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,123.16,0,2,Canceled,Stephanie Salazar,jhicks@example.net,959.679.7808,4184929644840399,2024-10-18 +City Hotel,0,12,2017,August,31,4,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,80.0,0,Transient-Party,78.82,0,0,Check-Out,Kathy Rivas,katherine49@example.org,878-567-9393,2535171060447231,2025-02-21 +City Hotel,0,424,2017,June,25,19,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,69.0,0,0,Canceled,Stephanie Manning,shawkatherine@example.org,001-249-595-7202,3509685682911746,2025-11-03 +City Hotel,0,195,2017,May,20,16,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,206.2,0,0,Check-Out,David Wright,james71@example.com,521-504-8114x68138,4108674918397188,2026-02-15 +Resort Hotel,1,292,2017,June,25,20,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,82.83,0,0,Canceled,Pamela Boyd,erin85@example.org,738-463-4923,4030707205202,2025-01-16 +Resort Hotel,0,88,2017,November,46,18,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,45.94,0,0,Check-Out,Denise Jones,garrettbeth@example.net,001-749-337-1041x7628,6526110826187519,2024-04-17 +Resort Hotel,0,2,2017,September,38,23,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,63.95,0,3,Check-Out,Devon Flores,jeffreyhawkins@example.org,5309164040,6011800264877504,2024-06-02 +City Hotel,0,281,2017,May,21,21,1,0,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,65,Transient-Party,101.29,0,0,Check-Out,Brenda Hall,monicabarnett@example.com,001-362-311-8806x90438,4296748145606959,2024-12-25 +Resort Hotel,1,44,2017,July,27,3,2,6,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,237.42,1,0,Canceled,Michelle Brown,millsstephanie@example.net,382-719-9120x6244,180047644076120,2025-10-18 +Resort Hotel,0,38,2017,July,27,6,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,241.0,179.0,0,Group,112.83,1,1,Check-Out,Joshua Perry,debbie01@example.org,001-801-366-4150x99575,30397166099493,2025-03-01 +City Hotel,1,416,2017,April,14,8,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,118.05,0,0,Canceled,Jason Stein,nathan83@example.net,534-331-5329,213168916294893,2026-01-06 +Resort Hotel,1,33,2017,April,15,11,0,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,238.0,179.0,0,Transient,249.68,0,1,Canceled,Melissa Gates,davismike@example.org,593-692-8223x596,3501024683084386,2026-03-02 +Resort Hotel,0,9,2017,December,50,9,2,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,62.58,0,0,Check-Out,Jamie Smith,bradleysullivan@example.org,001-872-762-4719x391,676193439996,2025-07-11 +City Hotel,0,50,2017,January,4,25,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,181.18,0,1,Check-Out,Paul Castaneda,carrjames@example.net,(277)530-8724,30401144151168,2024-06-03 +Resort Hotel,0,2,2017,September,37,10,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,44.39,0,1,Check-Out,Jennifer Adkins,jasmineshepard@example.com,(848)700-2540x6467,4656785971766152670,2024-09-29 +City Hotel,0,2,2017,July,31,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,E,1,No Deposit,16.0,45.0,0,Transient,53.19,0,0,Check-Out,Lindsey Walker,vincentwilliams@example.org,372-477-5329,6011386124390201,2025-05-26 +City Hotel,1,278,2017,May,19,10,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,63.75,0,0,Canceled,Jeffrey Johnson,amyfields@example.net,565.256.4414,213106405113638,2026-01-20 +City Hotel,0,8,2017,October,42,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,131.58,0,2,Check-Out,Michael Powell,sherrygamble@example.org,2155903824,3585770788046022,2024-04-30 +City Hotel,0,0,2017,October,42,21,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,181.0,0,Transient,53.46,0,0,Check-Out,John Anderson,allisoncampbell@example.com,6926283436,583612646617,2025-10-21 +City Hotel,0,16,2017,January,4,25,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,138.39,0,2,Check-Out,Alyssa Long,mullinsrobert@example.com,(266)630-9066x958,4843350484636396,2024-04-10 +City Hotel,0,56,2017,November,47,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,85.54,0,0,Check-Out,Alyssa Day,vpowell@example.com,001-994-406-6446x51571,3563835668004106,2024-07-31 +Resort Hotel,1,53,2017,April,17,22,0,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,228.11,0,0,Canceled,Joel Williams,jocelynstephens@example.com,001-630-602-8834x928,2381547031316669,2024-07-02 +Resort Hotel,0,12,2017,November,46,12,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,14.0,45.0,0,Transient,46.6,0,1,Check-Out,Daniel Murphy,lopezjacob@example.com,650-674-2982x80379,4995229311184523838,2024-12-31 +City Hotel,0,9,2017,March,10,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,252.0,0,2,Check-Out,Jamie Walton,rcarter@example.org,9009105689,4274926416170,2024-09-03 +City Hotel,0,13,2017,August,31,1,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,92.59,0,0,Check-Out,Darlene Miller,bparker@example.com,+1-803-864-9644x221,374878385429755,2024-11-14 +City Hotel,0,186,2017,June,26,25,2,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.13,0,1,Check-Out,Joshua Cooke,mwong@example.net,+1-789-828-6979x79348,213173389132794,2025-05-23 +City Hotel,0,29,2017,June,25,18,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Contract,67.55,1,0,Check-Out,Matthew Harrington,kathleengreene@example.com,857.222.3152,3593214518487057,2025-05-04 +City Hotel,1,150,2017,March,10,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,140.31,0,0,Canceled,Nicole Herring,mallen@example.net,(279)348-1575x810,6559599597818197,2025-12-30 +Resort Hotel,0,263,2017,January,3,15,1,2,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient-Party,92.25,0,0,Check-Out,Alex Hernandez,april87@example.com,001-654-247-5124x5737,213149107299537,2024-10-09 +Resort Hotel,0,145,2017,January,2,13,1,0,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,3,No Deposit,247.0,179.0,0,Transient,56.3,1,1,Check-Out,Michael Elliott,joseph92@example.com,001-802-303-2870x789,2286129176800611,2025-03-03 +City Hotel,0,9,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,78.83,0,0,Check-Out,Michael Wang,qfox@example.org,483.422.5091x5573,3532367194816744,2026-03-16 +City Hotel,0,2,2017,September,36,5,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,1,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,90.07,0,0,Check-Out,Lawrence Adkins,sarah46@example.net,(623)426-0175,6011346622152396,2024-12-31 +Resort Hotel,1,134,2017,November,48,28,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,243.0,179.0,0,Transient,44.24,0,0,Canceled,Robert Oconnell,tonyacarroll@example.net,(598)683-2099x1242,4366141417486,2025-10-22 +Resort Hotel,1,201,2017,April,18,30,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,201.68,0,0,Canceled,Alexander Collins,john55@example.com,+1-839-906-1845,4374085060385401556,2025-06-05 +Resort Hotel,1,42,2017,August,32,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,237.0,179.0,0,Transient,62.48,0,1,Canceled,Tina Sanders,jcollins@example.org,(678)657-3023,6501920985404078,2025-12-08 +City Hotel,0,12,2017,December,52,26,0,2,2,0.0,0,SC,FRA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,13.0,222.0,0,Transient,127.66,0,0,Check-Out,Angela Vaughn,alejandro26@example.net,571.946.7339x0921,3532143803383057,2024-06-16 +Resort Hotel,0,0,2017,October,43,24,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,185.0,179.0,0,Transient,46.1,0,1,Check-Out,Ashley Barton,bradfordsheila@example.com,3188327403,503841954608,2026-01-25 +City Hotel,0,25,2017,April,15,9,2,5,3,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Canceled,Lindsay Martinez,kathy96@example.com,001-347-743-4188,30106651808213,2025-11-21 +Resort Hotel,0,151,2017,November,45,8,3,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,136.85,0,1,Check-Out,Dr. Hannah Patterson,zcontreras@example.net,+1-476-351-5021x8645,4922218936459,2025-08-07 +Resort Hotel,0,200,2017,May,21,22,3,7,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,28.0,179.0,0,Transient,141.17,0,1,Check-Out,Jonathan Peterson,benjamindavid@example.net,001-841-351-7638,3584471333766328,2025-04-27 +City Hotel,0,51,2017,July,27,6,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.23,0,1,Check-Out,Samantha Garcia,maryray@example.org,+1-590-485-4030,6011554772108767,2024-12-25 +Resort Hotel,0,2,2017,July,28,11,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,E,D,0,No Deposit,354.0,331.0,0,Transient,48.96,0,0,Check-Out,Madison Poole,elizabethsantos@example.net,(235)755-9953x972,3582956809645578,2025-05-05 +City Hotel,0,21,2017,April,15,9,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,172.1,0,2,Check-Out,Jessica Gross,josephcastro@example.org,(800)964-2092x25973,4629141642295005,2025-10-09 +Resort Hotel,1,100,2017,January,2,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,316.0,179.0,0,Transient,108.16,0,0,Canceled,Debra Morton,rebeccaperez@example.org,2715060113,4227251151536479,2024-10-26 +Resort Hotel,1,1,2017,September,36,3,0,1,1,0.0,0,BB,,Corporate,Corporate,0,1,1,A,D,0,No Deposit,14.0,75.0,0,Transient,40.78,0,1,No-Show,Karen Graham,toddgrant@example.com,(923)623-5433,30313513360793,2025-11-24 +Resort Hotel,0,0,2017,March,13,25,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,140.04,0,2,Check-Out,Debra Christian,zavalaemma@example.org,536-456-0267x41216,4524656929758058,2026-01-04 +City Hotel,0,55,2017,March,10,4,1,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,9.0,179.0,0,Transient,125.31,0,2,Check-Out,Angelica Keith,xaviervasquez@example.com,659-562-2397x248,4098108585311739552,2025-03-07 +City Hotel,0,37,2017,April,16,14,1,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,230.76,0,3,Check-Out,John Bishop,tyler30@example.com,001-560-399-6079,3535559136991331,2025-11-07 +City Hotel,0,0,2017,September,38,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,127.0,179.0,0,Transient,82.62,1,1,Check-Out,Allen Rosales,mark65@example.net,3518507108,565456569997,2025-08-22 +City Hotel,0,193,2017,December,50,13,0,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,103.67,0,1,Check-Out,Daniel Salinas,pbates@example.net,001-553-759-8515x32092,3544309765113057,2024-04-27 +City Hotel,0,59,2017,May,18,4,3,2,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,113.74,0,0,Check-Out,Spencer Haynes,margaret78@example.com,442.249.5015,213169231819562,2024-11-08 +City Hotel,0,52,2017,November,45,7,1,1,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,118.53,0,0,Check-Out,Adam Vaughan,brownmichael@example.org,5644861577,213172147068985,2025-04-13 +Resort Hotel,0,0,2017,April,14,3,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,252.0,179.0,0,Transient,213.02,1,0,Check-Out,Nathan Freeman,sabrinawalsh@example.com,869-264-9289x638,2221546840922109,2024-08-27 +Resort Hotel,0,11,2017,October,40,6,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,67.33,0,0,Check-Out,Melissa Brewer,qgreen@example.net,726-669-9300,630407440613,2026-03-18 +Resort Hotel,0,15,2017,January,2,3,4,7,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,227.91,0,1,Check-Out,Ricky Davis II,jason63@example.org,364.524.9442x828,4250535053325605,2025-04-12 +City Hotel,1,15,2017,April,15,11,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,100.1,0,2,No-Show,Elizabeth Perkins,ajohnson@example.org,(955)412-6691,502032898335,2025-11-18 +City Hotel,0,18,2017,August,32,10,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,87.1,0,1,Check-Out,Joseph Coleman,suzanne53@example.com,829.272.1369x086,6011326748577353,2025-05-10 +City Hotel,0,236,2017,March,9,4,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,58.7,0,0,Check-Out,Erin Warner,gregory04@example.org,(329)463-1650,3569554166103641,2025-11-27 +City Hotel,0,16,2017,June,23,8,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,89.91,0,0,Check-Out,David Martinez,hooperwilliam@example.com,304-503-4176x097,30218494604665,2026-01-13 +City Hotel,0,41,2017,November,48,26,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,104.68,0,0,Check-Out,Bryan Herrera,stephen15@example.org,477.293.8640x4704,3571969328459812,2024-08-31 +City Hotel,1,424,2017,March,12,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,83.05,0,0,Canceled,Cathy Robinson,wrightchristopher@example.net,+1-386-464-7863x59430,4016555628496,2024-06-03 +City Hotel,0,7,2017,December,49,5,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.78,0,1,Check-Out,Dr. William Warren,armstrongallison@example.net,(569)341-5354,4265494532943,2026-03-19 +Resort Hotel,0,82,2017,July,29,19,2,5,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,1,0,A,A,0,No Deposit,35.0,179.0,0,Transient,57.08,0,1,Check-Out,Brian Lee,ballardrobert@example.net,570.450.9822x16259,2707404534091307,2024-04-30 +City Hotel,1,8,2017,July,28,13,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,154.36,0,0,Canceled,Christopher Smith,youngleslie@example.net,(540)584-0749,213112622246441,2024-11-14 +City Hotel,0,14,2017,July,28,11,0,1,2,0.0,0,SC,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,82.2,0,1,Check-Out,Denise Mccann,brandon14@example.org,216-423-2528x744,180016805424742,2025-04-29 +City Hotel,1,11,2017,November,45,8,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.01,0,1,Canceled,Melissa Martinez,marissamckinney@example.net,001-513-432-2760,3526161875407339,2024-03-29 +City Hotel,0,53,2017,July,28,12,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,57.4,0,1,Check-Out,Katherine Salas,anolan@example.net,591-765-8064,4848160144604556050,2025-08-21 +Resort Hotel,1,308,2017,February,7,14,1,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,85.71,0,1,Canceled,Julie Alexander,jacobburns@example.net,512-299-8663x18058,4982869571138,2025-02-08 +Resort Hotel,0,16,2017,June,23,4,2,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,86.43,0,0,Check-Out,Anthony Everett,chandavid@example.org,+1-576-390-4635x077,3596116877673689,2025-11-24 +City Hotel,1,18,2017,April,17,28,0,2,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.86,0,1,Canceled,Rodney Morales,smithbilly@example.net,+1-585-793-7753,375551713562428,2025-02-08 +City Hotel,0,21,2017,December,52,28,1,1,1,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,116.19,0,0,Check-Out,Mark Brown,doyletravis@example.org,+1-240-895-3324x335,2242217135551541,2024-09-25 +City Hotel,1,111,2017,February,7,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,163.4,0,1,Canceled,Justin Torres,edward91@example.net,001-484-743-3890,4011176229881,2025-07-23 +Resort Hotel,0,0,2017,November,44,3,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,51.1,0,0,Check-Out,Bailey Duran DDS,michael49@example.com,771-827-8066x448,348541964801736,2024-06-06 +Resort Hotel,1,49,2017,November,46,13,2,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,102.1,0,0,Canceled,Courtney Mills,christine05@example.org,286.389.2685x5127,3546393201800962,2026-01-05 +City Hotel,0,0,2017,August,34,20,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,A,0,No Deposit,11.0,45.0,0,Transient,0.0,1,1,Check-Out,Jeremy Dalton,lsmith@example.com,783-760-6370,3563684850357611,2025-12-21 +Resort Hotel,0,107,2017,October,43,27,2,2,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,73.37,0,0,Check-Out,Elizabeth Oliver DDS,hdavis@example.com,356-651-5414x2386,341642052715171,2024-05-18 +Resort Hotel,0,161,2017,November,48,29,1,3,2,0.0,0,Undefined,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,222.0,0,Transient-Party,71.13,0,0,Check-Out,Theresa Clark,lesliebaird@example.org,309-241-3822x58140,4200565291030668,2025-09-26 +City Hotel,1,159,2017,February,5,1,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,Non Refund,13.0,179.0,0,Transient,169.06,0,0,Canceled,Matthew Moore,collinsmichelle@example.net,319-805-0442,4454613853118910,2025-06-17 +City Hotel,0,0,2017,November,45,8,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,81.9,0,0,Check-Out,Benjamin Smith,vmendoza@example.net,958-408-1063x5519,3544075689136801,2025-06-21 +City Hotel,0,12,2017,November,48,25,1,0,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,38.39,0,1,Check-Out,Kirk Carter,david06@example.org,(434)745-5658x2476,4724125084275927288,2024-12-06 +City Hotel,0,14,2017,July,28,14,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.05,0,0,Check-Out,Michael Warner,larsoneric@example.org,+1-245-397-2205,180072288297451,2025-09-03 +City Hotel,0,48,2017,November,45,4,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,50.99,0,1,Check-Out,Michael Bradshaw,moralesbriana@example.com,+1-816-300-2684x96777,213160926177093,2026-03-20 +City Hotel,1,116,2017,March,12,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,134.87,0,0,Canceled,Lori Guerrero,linda37@example.org,001-920-729-7637,577562272036,2025-06-20 +Resort Hotel,0,0,2017,March,10,7,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,114.81,0,0,Check-Out,Jessica Stephens,yesenia32@example.org,(357)394-3193x667,2709017125001762,2025-06-04 +City Hotel,1,399,2017,August,33,18,2,5,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.28,0,0,Canceled,Susan Serrano,john92@example.com,(325)935-2293x8629,4593862627386756,2025-05-04 +City Hotel,0,107,2017,February,6,7,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,72.29,0,1,Check-Out,Christopher Parker,john12@example.com,+1-393-775-9372x7513,676316174603,2024-08-10 +Resort Hotel,0,0,2017,November,48,29,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient,54.64,0,1,Check-Out,Laura Roberts,zjenkins@example.org,662.207.1389x47785,180007175189544,2024-07-02 +City Hotel,0,29,2017,July,27,4,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,79.06,0,1,Check-Out,Michael Lyons,jeffreymorales@example.com,894.653.9341x123,3537950527487666,2024-08-12 +City Hotel,1,39,2017,April,16,17,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,252.0,0,0,Canceled,Kathryn Snyder,matthew06@example.org,(628)250-6967x20647,343656586892965,2025-06-14 +Resort Hotel,1,136,2017,February,8,23,3,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,164.23,0,0,No-Show,Andrew Reynolds,shawn55@example.org,001-755-903-7501x605,30039226474098,2025-03-06 +City Hotel,0,3,2017,April,15,9,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,1,A,D,0,No Deposit,11.0,179.0,0,Transient,142.61,0,1,Check-Out,David Davis,ibryant@example.org,001-504-778-7123x7287,4149811091280,2025-03-15 +Resort Hotel,0,147,2017,November,47,23,2,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,239.0,179.0,0,Transient,62.0,0,1,Check-Out,Sara Johnston,richardsnow@example.net,268.756.4296x5399,4254992788885062,2025-09-05 +City Hotel,0,69,2017,May,19,7,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,80.73,0,0,Check-Out,Yvonne Chambers,thomasjennifer@example.org,871-377-4168x6744,582014041849,2025-12-06 +Resort Hotel,1,52,2017,June,24,12,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,38.81,0,1,Canceled,Andrew Avila,smithsusan@example.net,001-551-760-0804x435,180078021430713,2024-03-27 +City Hotel,0,38,2017,November,47,22,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,84.04,0,1,Check-Out,Matthew Moon,cpierce@example.com,001-510-206-7076x0345,3554055388839621,2024-06-14 +Resort Hotel,0,21,2017,December,2,31,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,1,No Deposit,311.0,179.0,0,Transient,52.12,1,0,Check-Out,Kevin Walters,floressummer@example.org,4733415274,376649634406755,2025-12-01 +City Hotel,0,38,2017,December,50,15,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,138.28,0,2,Check-Out,Brandon Bailey MD,christophermills@example.com,(281)333-0943,30363667854299,2025-05-22 +Resort Hotel,1,320,2017,June,24,12,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,88.9,0,0,Canceled,Shannon Rivera,mkane@example.org,001-480-887-5374x12600,373663854679150,2025-11-07 +City Hotel,1,52,2017,May,21,24,0,3,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,96.12,0,0,Canceled,Donna Landry,teresadiaz@example.org,+1-474-658-6189x4206,5501078667469620,2025-08-27 +City Hotel,0,86,2017,December,2,30,2,4,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,144.34,0,2,Check-Out,Krista Gibson,kathleenellison@example.org,+1-787-582-0282,3559944900644764,2024-05-09 +Resort Hotel,0,0,2017,August,31,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,75.0,179.0,0,Transient-Party,91.4,0,1,Check-Out,Frank Cordova,joseph49@example.net,001-265-452-2053x84803,6011337040046633,2024-06-12 +City Hotel,1,411,2017,January,3,20,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,43,Contract,78.36,0,0,Canceled,Jose Travis,tanya65@example.com,(415)571-6195x467,180010791629265,2025-05-09 +City Hotel,1,68,2017,March,12,21,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,129.23,0,0,Canceled,Kimberly Gutierrez,kempbonnie@example.org,+1-504-741-8507x113,3509143389751858,2026-03-24 +City Hotel,0,224,2017,August,31,4,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Contract,125.53,0,0,Check-Out,Isaiah Avila,michellemccarthy@example.org,646-735-4765,3519520085474182,2025-04-03 +Resort Hotel,0,31,2017,August,32,5,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,140.0,179.0,75,Transient-Party,47.47,0,0,Check-Out,Olivia Harris,hernandezgregory@example.net,976-220-6934x8673,30074905659313,2025-07-15 +City Hotel,1,158,2017,May,20,17,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Contract,105.75,0,0,No-Show,Tanya Kim,robert85@example.net,+1-921-497-6174x32641,348029037738770,2025-07-19 +City Hotel,0,35,2017,May,19,10,1,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient-Party,96.58,1,1,Check-Out,Barbara Dudley,jocelyn90@example.org,+1-225-351-4588x50182,573082900644,2024-10-28 +City Hotel,1,46,2017,August,35,31,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,139.36,0,0,Canceled,Cynthia Moore,torresmelissa@example.net,3102263900,347559057500875,2025-06-14 +City Hotel,0,35,2017,December,49,5,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,78.73,0,0,Check-Out,Kristen Davis,morriskevin@example.net,839.248.8340x390,3527181215697281,2025-06-21 +Resort Hotel,0,38,2017,September,36,5,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,44.7,0,1,Check-Out,Susan Murray MD,maxwellcorey@example.net,271.787.2970x345,630406044333,2025-01-29 +Resort Hotel,0,176,2017,June,24,14,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Contract,134.17,0,2,Check-Out,Kathleen Moran,jamesmyers@example.com,+1-682-502-4469,348409175949266,2026-03-24 +City Hotel,0,21,2017,May,19,7,1,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,87.19,0,2,Check-Out,Denise Davenport,jeffreybutler@example.org,+1-674-422-5779x830,6011860910496026,2024-04-21 +City Hotel,1,169,2017,November,46,18,2,4,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,9.0,179.0,0,Transient,135.1,0,2,Canceled,Mrs. Kristen Reyes,stewartjeanne@example.com,345-538-2332,585965055163,2026-03-20 +City Hotel,1,29,2017,March,10,5,2,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient-Party,170.13,0,1,Canceled,Katie Suarez,james00@example.net,001-401-593-8682x267,30528286865831,2025-09-29 +City Hotel,1,308,2017,March,13,26,1,4,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,252.0,0,2,Canceled,Desiree Tyler,david43@example.com,961-419-4361x47562,30324283294146,2025-12-25 +City Hotel,0,18,2017,July,27,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient-Party,84.1,1,1,Check-Out,Timothy Romero,pjohnson@example.org,855.231.8444,3568787980780365,2025-07-23 +City Hotel,0,7,2017,September,39,24,1,2,1,0.0,0,BB,NLD,Online TA,Direct,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient,44.2,0,1,Check-Out,Diane Evans,hartmanalex@example.net,288-335-6347x1688,38675039104174,2025-01-04 +Resort Hotel,0,2,2017,January,2,12,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,47.13,0,0,Check-Out,Yvonne Burns,scott12@example.com,271.208.6965x4065,3586939977570816,2024-11-03 +City Hotel,1,80,2017,August,31,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,75,Transient,92.8,0,0,Canceled,Joshua Reed,andreafrazier@example.org,(935)364-1407,3514338742339317,2025-12-17 +City Hotel,0,169,2017,February,6,3,2,4,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,11.0,179.0,0,Transient,83.74,0,1,Check-Out,Kimberly Gibson,samanthaburton@example.net,521-605-4351x371,6508613406874341,2025-02-16 +City Hotel,1,192,2017,June,25,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,99.04,0,0,Canceled,Colin Terry,pdavis@example.net,001-279-992-2910,4254536980754350,2024-06-23 +City Hotel,0,306,2017,October,44,31,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,81.56,0,0,Check-Out,Cynthia Rowe,oscar17@example.com,485.385.9919x289,3512522929385209,2026-02-03 +City Hotel,1,304,2017,June,23,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,80.66,0,0,Canceled,Patrick Thornton,wbrooks@example.net,001-876-696-0383x47862,3533923815299139,2024-12-20 +City Hotel,1,44,2017,October,43,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,11.0,179.0,0,Transient,122.62,0,2,Canceled,Jasmin Alvarado,snyderjodi@example.net,(216)215-0186x05035,4892544581735,2024-10-09 +City Hotel,1,13,2017,February,6,3,1,4,2,2.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.06,0,0,Canceled,Veronica Simpson,anthonymiles@example.org,+1-678-961-1407x6703,630414840599,2025-06-03 +Resort Hotel,0,8,2017,July,27,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,59.0,0,Transient-Party,48.8,0,0,Check-Out,Jonathan Lawrence,jennifer91@example.com,6088263746,6011000899128502,2026-03-06 +Resort Hotel,0,0,2017,August,32,12,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,63.72,0,1,Check-Out,Shelly Alexander,johnsantos@example.com,(325)507-4762,675953202065,2024-03-31 +City Hotel,0,13,2017,July,27,3,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.93,0,2,Check-Out,Joyce Bowen,wandabennett@example.net,001-283-959-3016x8497,4823165881385775,2025-06-28 +City Hotel,0,5,2017,June,23,5,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,60.19,0,0,Check-Out,Matthew Moore,mjohnson@example.net,999-325-7511,2417716554051635,2024-11-28 +City Hotel,1,52,2017,July,27,4,1,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.31,0,2,Check-Out,Wayne Morgan,jennifer06@example.com,340-334-2875x673,4352119381576630,2024-09-03 +Resort Hotel,0,78,2017,November,47,25,0,2,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,75.59,0,0,Check-Out,Marie Christian,sarah52@example.net,001-701-676-6027x91261,213172519026579,2026-03-21 +City Hotel,0,15,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,63.0,0,Transient-Party,5.73,0,1,Check-Out,Shannon James,ashley57@example.org,5986569103,3532493905070999,2024-12-04 +City Hotel,0,213,2017,June,22,3,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,94.99,0,1,Check-Out,Nathan Malone,yphelps@example.com,+1-510-303-3453,4169193606312312440,2025-03-18 +City Hotel,1,160,2017,August,31,3,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,41,Transient-Party,116.75,0,0,Canceled,Amanda Jones,rayphilip@example.org,+1-974-322-1659x8115,2246503966811518,2024-11-02 +City Hotel,0,3,2017,September,38,22,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,159.0,179.0,0,Transient,76.34,0,1,Check-Out,Tammie Bright,pmedina@example.com,467.289.5379,30473746707044,2024-07-07 +City Hotel,0,5,2017,January,2,12,1,1,2,0.0,0,SC,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.96,0,1,Check-Out,Jessica Garcia,uthomas@example.org,(339)568-2481x7297,4906075092494011,2024-06-02 +Resort Hotel,0,314,2017,July,30,25,4,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,228.1,0,1,Check-Out,Shelia Wallace,qrodriguez@example.org,515-682-5084,676280957033,2025-06-17 +City Hotel,0,76,2017,December,50,13,2,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,127.18,0,2,Check-Out,Stephanie Williams,ijohnson@example.net,+1-721-612-1828x82914,180070671402936,2024-10-02 +City Hotel,1,332,2017,May,19,11,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,119.87,0,0,Canceled,Elaine Brooks,efrench@example.org,605.543.3212x595,4129669643451467486,2024-06-01 +City Hotel,1,15,2017,August,33,14,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,92.89,0,1,No-Show,Joseph Knight,bhunt@example.net,(344)239-2207,2238525577733617,2025-06-14 +City Hotel,0,12,2017,January,4,23,0,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,146.33,0,0,Check-Out,Carolyn Miller,johnsoncatherine@example.org,508-898-9408x16723,3570145418922024,2026-01-05 +City Hotel,0,385,2017,June,23,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.79,0,1,Check-Out,Lisa Allen,lroberson@example.net,001-335-710-7385,4610567553351,2024-09-04 +City Hotel,1,13,2017,August,35,30,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,237.0,179.0,0,Transient,89.93,0,1,Canceled,Briana Murray,lawrencemegan@example.org,743.656.7941,2712368069157622,2025-06-27 +City Hotel,1,257,2017,April,15,11,0,2,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,128.78,0,0,Canceled,David Smith,valdezbrandon@example.org,+1-209-346-1745x56378,213149256366947,2026-02-12 +City Hotel,0,152,2017,November,45,8,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.09,0,1,Check-Out,Stephanie Byrd,victorsullivan@example.org,371.451.3006x34096,4674178701210701,2025-07-08 +City Hotel,0,1,2017,October,43,26,0,1,1,0.0,0,BB,CHN,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,1.69,0,1,Check-Out,Jeremy Reed,coopermegan@example.net,+1-999-926-2361x8157,180087689394418,2025-12-24 +City Hotel,0,123,2017,May,21,24,2,3,1,0.0,0,BB,IRL,Offline TA/TO,GDS,0,0,0,D,D,0,No Deposit,185.0,179.0,0,Transient,118.43,0,0,Check-Out,Margaret Coleman,fmarshall@example.com,(742)737-8850x79047,4163825762598725,2024-11-23 +Resort Hotel,0,0,2017,July,27,7,2,5,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,1,No Deposit,312.0,331.0,0,Transient,46.6,0,0,Check-Out,Ryan Gonzalez,milleremily@example.com,(530)433-5012,4467674162893,2025-03-18 +City Hotel,1,254,2017,July,29,19,2,5,2,0.0,0,SC,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,63,Transient,86.19,0,0,Canceled,John Young,heidihunter@example.org,001-600-311-2493,060471830160,2024-11-16 +City Hotel,0,17,2017,October,43,25,0,4,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,71.83,0,0,Check-Out,Laura Haney,hartronald@example.net,+1-258-722-1215x1108,4748157430231834,2025-08-21 +Resort Hotel,0,98,2017,June,26,26,2,4,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,99.95,0,0,Check-Out,William Barrett,btorres@example.com,6662593561,4670456612714290,2025-05-07 +Resort Hotel,0,21,2017,May,19,10,1,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,228.0,179.0,0,Transient,62.26,0,0,Check-Out,Keith Jennings,uharris@example.net,8814452860,676164412576,2025-06-08 +City Hotel,0,3,2017,July,27,5,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient,4.42,0,1,Check-Out,Amber Obrien,peter91@example.net,774-447-0749,340101015254928,2025-02-04 +Resort Hotel,0,47,2017,March,9,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,120.4,1,1,Check-Out,Tanner Mitchell DDS,edwardgomez@example.org,(849)594-9897,6011885084186244,2025-04-17 +City Hotel,0,12,2017,October,40,5,1,1,1,1.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.08,0,1,Check-Out,Heather Fields,michealallen@example.net,001-316-800-7694,180026521815149,2025-11-26 +City Hotel,1,236,2017,June,24,14,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,82.54,0,0,Canceled,Megan Le,urobles@example.net,387-801-5295x06354,4270179219501,2025-11-28 +Resort Hotel,0,35,2017,November,46,15,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,53.31,0,3,Check-Out,Sara Fuller,michaelwilliams@example.com,385.830.4456x759,374011322061875,2025-02-10 +City Hotel,1,28,2017,July,29,20,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,87.08,0,0,Canceled,Maria Parker,colemanjulie@example.net,324.333.5085,4508388995152660743,2025-05-20 +City Hotel,1,2,2017,December,49,8,1,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,183.0,0,Transient,113.16,0,0,Canceled,Kevin Oconnor,mfowler@example.com,(774)481-6269,3548472858149085,2024-04-02 +City Hotel,1,112,2017,December,52,29,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,144.9,0,0,Canceled,Edward Burgess,arnoldjessica@example.com,5564605999,6566914388597937,2025-03-23 +Resort Hotel,0,0,2017,October,43,28,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,51.39,1,1,Check-Out,Carlos Ryan,cbaker@example.com,+1-219-474-6563x8256,3501163937323883,2024-11-21 +City Hotel,1,177,2017,June,23,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,220.0,179.0,0,Contract,62.47,0,1,Canceled,Kiara Mcintyre,phayes@example.com,001-287-461-9768x13891,3512185738310360,2024-05-17 +Resort Hotel,0,10,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,237.0,179.0,0,Transient-Party,45.19,0,0,Check-Out,Dawn Summers,diamond43@example.net,+1-208-274-0289x9365,4244495032864,2024-05-23 +City Hotel,1,39,2017,July,28,10,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.89,0,2,Canceled,Dr. Paul Morgan,nathanmunoz@example.net,001-631-490-8578x8258,3558035263949667,2024-09-24 +Resort Hotel,1,52,2017,November,47,19,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient-Party,64.82,0,0,Canceled,Victor Taylor,lwalton@example.com,(608)865-2077,213131457044291,2024-07-28 +City Hotel,0,146,2017,March,12,16,2,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,103.25,0,0,Check-Out,Shannon Ramsey,kendrakirby@example.net,8252637811,676185988232,2025-06-08 +Resort Hotel,0,117,2017,May,19,9,2,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient-Party,106.22,0,0,Check-Out,Tracy Ballard,bryanjames@example.com,+1-697-627-3285x57797,3540340876754160,2025-02-07 +City Hotel,0,86,2017,December,48,2,1,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,84.67,1,2,Check-Out,Richard Smith,hbowman@example.org,001-408-852-2861x9827,4543207741328,2025-01-06 +City Hotel,1,20,2017,November,45,7,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.9,0,0,Canceled,Jordan Chambers,hpacheco@example.net,8659768299,3541611875023461,2025-09-03 +City Hotel,0,1,2017,January,4,22,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,18.0,179.0,0,Transient,228.49,0,0,Check-Out,Lauren Carson,carrollsuzanne@example.net,(282)641-9786,4512902893480442,2024-05-29 +City Hotel,0,149,2017,May,19,7,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,62.82,0,0,Check-Out,Ashley Hall,jasonallen@example.org,(888)978-9259,3590910384266466,2025-02-03 +City Hotel,1,28,2017,July,29,20,1,4,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,88.02,0,1,Canceled,Stephen Hoffman,courtneysanchez@example.net,001-824-419-5415x717,180012126685384,2025-11-23 +City Hotel,0,29,2017,August,35,27,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,108.16,0,1,Check-Out,Connie Brown,chawkins@example.com,(796)372-8925x7655,213118482342519,2024-07-18 +City Hotel,0,50,2017,May,19,10,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,137.69,0,1,Check-Out,Susan Turner,gmoreno@example.net,765-599-8314x309,3502165056782467,2026-01-23 +Resort Hotel,0,199,2017,May,19,7,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,228.0,179.0,0,Transient-Party,176.33,0,1,Check-Out,Charles Shah,pbrooks@example.com,(718)893-1530,3528975069049252,2024-04-18 +City Hotel,0,3,2017,December,51,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,136.69,0,1,Check-Out,Johnathan Davis,gregory20@example.org,001-954-683-3880x67191,180031291892203,2025-05-15 +City Hotel,0,7,2017,October,42,21,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,78.12,0,0,Check-Out,Brandy Chavez,kimberly74@example.com,(851)986-9756,3554556271100831,2025-01-02 +City Hotel,0,59,2017,February,6,4,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.13,0,1,Check-Out,Natalie Bautista,wilsonangelica@example.com,875-324-0975,3513638508368264,2025-07-29 +City Hotel,0,0,2017,October,43,23,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.41,0,1,Check-Out,Patrick Moore,kellyrichardson@example.com,293.647.4950,3573675979539558,2024-05-25 +Resort Hotel,0,1,2017,November,46,16,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,337.0,179.0,0,Transient,42.19,0,0,Check-Out,Brett Burns,ashleymartin@example.org,618-550-0603x0798,4571441505191,2025-08-27 +City Hotel,0,13,2017,November,47,25,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.13,0,0,Check-Out,Trevor Johnson,bethmiller@example.net,001-563-648-6156x58879,3566525709661777,2024-12-26 +Resort Hotel,0,19,2017,January,2,7,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,C,0,No Deposit,278.0,179.0,0,Transient-Party,62.28,0,0,Check-Out,Jeremy Sampson,vdixon@example.org,5489693841,30403667871214,2025-12-21 +City Hotel,1,47,2017,March,10,11,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,62.24,0,0,Canceled,Ariana Jennings,ashleyhill@example.net,6783703301,213181717173679,2026-02-07 +Resort Hotel,0,3,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,75.0,0,Transient,90.86,0,0,Check-Out,Vanessa Howard,wbrooks@example.net,482-360-6068,372351044709894,2025-06-07 +City Hotel,0,16,2017,May,19,10,1,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,73.44,0,0,Check-Out,Colton Martinez,stewarttammy@example.net,797.264.6705x7420,4451211313837014,2024-10-21 +City Hotel,0,8,2017,September,38,21,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.4,0,2,Check-Out,Jordan Bates,xhardy@example.net,+1-208-300-0182x6062,4901354745763170,2026-03-19 +City Hotel,1,84,2017,January,2,8,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,109.2,0,0,Canceled,Linda Smith,ellisjames@example.org,299-206-8870,6502486579638215,2025-03-30 +City Hotel,1,139,2017,January,5,31,0,3,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.56,0,0,Canceled,Dana Martinez,jason53@example.com,623-226-6345x6450,5280565963518248,2025-06-19 +Resort Hotel,0,83,2017,March,12,20,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,108.64,0,0,No-Show,Andrea Hubbard,wesleydominguez@example.org,001-579-742-5922x021,4497136531492,2026-01-30 +Resort Hotel,0,52,2017,July,27,6,1,6,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,133.86,0,3,Check-Out,Daniel Kane,troy09@example.org,(407)764-3593,3558684726325740,2024-09-02 +Resort Hotel,0,1,2017,January,2,4,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,17.0,179.0,0,Transient,125.59,1,1,Check-Out,Charles Lester,nmoore@example.com,(818)437-0157x74416,4022782501052855,2025-03-15 +Resort Hotel,0,55,2017,August,35,29,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,117.39,0,1,Check-Out,Scott Thomas,quinnjacob@example.net,345-898-4847,676248459122,2024-11-06 +City Hotel,0,3,2017,September,39,28,0,1,3,1.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,80.78,0,2,Check-Out,David Thompson,shannon56@example.org,+1-693-361-7568x2681,38105052024554,2025-12-30 +City Hotel,1,151,2017,January,4,22,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.5,0,0,Canceled,Allison Smith,james91@example.com,(950)514-5700x401,4297140484821676397,2025-03-04 +Resort Hotel,1,204,2017,March,10,5,4,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,247.18,0,0,Canceled,Cynthia Morris,ywu@example.com,+1-537-759-1128x6131,30375618941116,2025-09-03 +Resort Hotel,0,148,2017,November,48,25,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,13.0,223.0,0,Transient-Party,37.38,0,0,Check-Out,Anthony Harmon,drakeamanda@example.com,470-716-0161x99594,3589164502142414,2025-12-24 +City Hotel,0,13,2017,July,30,23,2,2,2,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,72.0,0,Transient,80.46,0,0,Check-Out,Nichole Alvarez,rosskatherine@example.org,001-835-725-3709x420,2454226245208564,2024-11-29 +City Hotel,0,34,2017,August,32,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient-Party,65.62,0,1,No-Show,Kayla Rodriguez,joseph10@example.net,+1-499-454-4080x995,3571164603146785,2026-02-07 +City Hotel,1,21,2017,December,51,16,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.31,0,0,Canceled,Theresa Williams,smithdustin@example.com,954-996-3083,4117547119591600099,2025-03-09 +Resort Hotel,0,2,2017,September,37,11,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,C,0,No Deposit,13.0,75.0,0,Transient,56.13,0,0,Check-Out,Sharon Boyd,mgreen@example.com,(751)588-3389,4433851242974041,2026-02-10 +Resort Hotel,0,12,2017,September,36,4,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,48.25,0,1,Check-Out,Victor Brown,mckenzie21@example.org,791-602-6398x6493,3587766334616852,2025-03-06 +Resort Hotel,1,3,2017,April,13,1,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,43.94,0,0,Canceled,James Parks,rosaleslauren@example.net,499-470-7554x538,4951666933417627,2024-11-26 +City Hotel,1,133,2017,September,39,27,0,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,111.5,0,0,Canceled,Theodore Jones Jr.,ncarr@example.net,740.991.7089,3516339233990152,2024-08-26 +Resort Hotel,0,100,2017,December,49,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,G,0,No Deposit,243.0,179.0,0,Transient,50.93,1,1,Check-Out,Ana Hill,lewiseric@example.net,938-826-7828x2759,3532405773646007,2024-10-26 +City Hotel,0,59,2017,April,15,11,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,137.28,0,0,Check-Out,Kimberly Nguyen,mikemaddox@example.com,407.598.1051x31469,4975330672938267,2024-05-10 +City Hotel,1,421,2017,May,20,17,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.0,0,0,Canceled,Kerry Chavez DDS,allisonhogan@example.net,586.834.5872,30093463149491,2025-08-11 +City Hotel,0,24,2017,June,22,1,0,4,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,134.02,0,2,Check-Out,Michael Farrell,garciamark@example.com,362.385.8498,38315189538869,2025-11-03 +City Hotel,0,145,2017,November,46,13,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,11.0,179.0,0,Transient,124.57,0,2,Canceled,Patricia Le,wyattkevin@example.com,+1-745-275-8738x6880,4455806928505,2024-10-06 +City Hotel,0,10,2017,December,51,17,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,75.43,1,1,Check-Out,Jesse Perez,fbrown@example.com,001-974-351-1524x718,4915898108456,2025-11-13 +Resort Hotel,1,153,2017,November,44,2,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,378.0,179.0,0,Transient-Party,42.25,0,0,Canceled,Jesse Perry,mckenzie26@example.org,9007300352,30470117809490,2024-08-27 +City Hotel,0,119,2017,August,34,24,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,152.0,179.0,0,Transient,93.22,0,0,Check-Out,Jeffery Ortega,marilyn55@example.com,672-986-3249,4708045749770188,2024-08-14 +City Hotel,1,112,2017,February,6,3,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.2,0,0,Canceled,Christian Leblanc,ahays@example.org,001-383-660-0298x45582,340665154752652,2025-01-04 +City Hotel,1,15,2017,November,47,21,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,209.0,0,Transient,123.35,0,2,Canceled,Ronald Davis,rivasmatthew@example.com,001-961-472-7018x91388,5487451670259775,2024-08-27 +City Hotel,1,1,2017,October,44,31,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,72.81,0,0,No-Show,Parker Cain,sdean@example.org,872-883-6069,4920545126714107,2024-09-11 +City Hotel,1,414,2017,April,14,8,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.44,0,1,Canceled,Laurie Hoffman,elizabethhudson@example.org,+1-584-348-7949,3585835686935863,2025-04-04 +Resort Hotel,1,251,2017,January,2,5,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,99.19,0,0,Canceled,Bryan Gomez,fcopeland@example.com,433.922.0624x807,348937432964876,2025-05-14 +Resort Hotel,0,40,2017,December,49,9,2,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,86.25,0,1,Check-Out,Nicole Parrish,elizabethperez@example.com,635-485-6932x8743,3548585638842800,2025-04-13 +City Hotel,1,187,2017,January,2,7,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,107.63,0,0,Canceled,Tracy Burke,zgentry@example.net,2505240905,30525456827534,2024-05-07 +City Hotel,1,113,2017,January,4,22,1,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,75,Transient,125.33,0,0,No-Show,Kenneth Lewis,marissa47@example.net,001-445-703-7350x926,36541516744514,2025-05-29 +City Hotel,1,109,2017,February,8,22,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,116.08,0,0,Canceled,Courtney Rodriguez,lebrent@example.org,001-426-417-5154x188,3587851858166862,2024-05-23 +City Hotel,1,61,2017,February,8,18,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.64,0,1,Canceled,Holly Farmer,sarafox@example.org,+1-487-500-2136x13999,3547662945524487,2025-10-18 +Resort Hotel,0,150,2017,March,11,12,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,48.16,0,2,Check-Out,Renee Bruce,alexanderwanda@example.com,(439)487-4451,4064414752070621,2024-07-12 +Resort Hotel,0,46,2017,November,46,16,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,46.33,0,1,Check-Out,Sabrina Austin,myersmatthew@example.org,460.278.6607x644,4143014157485,2025-01-08 +City Hotel,0,96,2017,January,4,26,1,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,104.55,0,2,Check-Out,Allison Hickman,cynthia12@example.org,307.471.3599x233,4329581828319077491,2025-11-16 +City Hotel,0,15,2017,February,6,10,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.92,0,2,Check-Out,Debra White,gabrielschultz@example.com,+1-299-785-1186,3531935894290955,2024-11-15 +Resort Hotel,1,76,2017,February,7,12,4,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,236.0,179.0,0,Transient,216.38,0,1,Canceled,Ellen Morgan,reginald68@example.org,623-811-2625x748,4753264226499,2026-02-09 +Resort Hotel,0,167,2017,November,47,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,50.77,0,1,Check-Out,Sergio Knight,ryan18@example.net,(574)665-5057x5194,4504239631523,2025-08-10 +City Hotel,0,409,2017,May,19,12,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,221.0,179.0,0,Transient-Party,109.67,0,1,Check-Out,Charles Schultz,joseph33@example.net,(354)382-5085,2248040968944375,2026-01-27 +City Hotel,0,59,2017,June,24,9,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,196.77,0,0,Check-Out,Paul Lewis,ryanward@example.org,(449)747-5046x534,36888685143311,2025-10-08 +City Hotel,0,40,2017,April,14,5,0,2,3,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Check-Out,Glen Wood,aprilhooper@example.net,622-288-0326x0297,4957362763900080,2025-05-03 +City Hotel,1,53,2017,February,8,19,1,2,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,119.55,0,2,Canceled,Paula Bradley,murphyryan@example.com,979-868-7335x20188,3519228636870037,2025-07-04 +City Hotel,1,15,2017,June,24,11,2,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,68.0,0,Transient-Party,78.28,0,0,Canceled,Anthony Moore,gonzalescheyenne@example.net,810-897-6302,3528878361919265,2026-02-13 +City Hotel,0,194,2017,March,11,15,1,5,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,216.13,1,3,Check-Out,Megan Nelson,jessica82@example.net,001-953-458-1898x5791,3538360324384604,2024-10-20 +City Hotel,0,33,2017,May,20,14,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,76.43,1,0,Check-Out,Karla Ramos,padillagregory@example.com,748-768-8238,213120681438684,2024-08-14 +Resort Hotel,1,108,2017,August,33,19,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,164.0,179.0,0,Transient,62.62,0,0,Canceled,Paul Wilson,georgeolsen@example.org,951-509-3466,4514755916026,2024-10-07 +City Hotel,0,46,2017,November,47,19,2,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,107.97,0,2,Check-Out,Douglas Gregory,santosernest@example.net,4889048081,4612878556781020,2024-05-04 +Resort Hotel,0,0,2017,November,45,5,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,K,0,No Deposit,244.0,179.0,0,Transient,0.0,0,1,Check-Out,Mr. Andrew Foster,william41@example.com,001-327-346-0011x15663,30567155847934,2024-05-14 +Resort Hotel,1,250,2017,September,38,17,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,16.0,179.0,0,Transient,81.58,0,0,Canceled,Aimee Turner,potterjavier@example.net,5843855793,3530835930586732,2024-06-15 +Resort Hotel,0,0,2017,October,42,21,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,39.0,0,0,Check-Out,Chad Scott,heather69@example.net,(840)614-7669,30187136621140,2025-11-15 +Resort Hotel,1,49,2017,March,12,18,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,110.34,0,1,Check-Out,Adam Burgess,beverlymitchell@example.org,+1-646-715-9101,6553998616463447,2025-04-29 +City Hotel,0,49,2017,November,48,26,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,115.09,0,1,Check-Out,James Padilla,amorris@example.org,(397)317-3043,30231131455268,2025-05-12 +Resort Hotel,0,158,2017,March,11,15,4,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,F,A,0,No Deposit,173.0,179.0,0,Transient,132.14,0,0,Check-Out,Sandra Drake,lorijohnson@example.com,887.350.9310,345478757109493,2024-06-21 +City Hotel,0,0,2017,July,29,20,0,1,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,2.18,0,0,Check-Out,Scott Williams,pamela20@example.net,835.859.9717x7721,676300317846,2025-01-26 +Resort Hotel,0,29,2017,June,24,14,1,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,159.71,1,0,Check-Out,Thomas Atkins,jacqueline69@example.net,901-462-5953x4547,3580246948798039,2025-06-08 +City Hotel,1,415,2017,November,47,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,62.53,0,0,Canceled,Laura Mckinney,npowell@example.com,+1-708-893-7259,4522849011777027,2025-05-21 +City Hotel,1,164,2017,April,16,19,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,219.36,0,0,Canceled,Brian Smith,vazquezdylan@example.org,368-698-3750,3522328731498315,2026-02-15 +Resort Hotel,0,9,2017,January,4,22,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,296.0,179.0,0,Transient,241.98,0,3,Check-Out,Robert Montgomery,wrightpaul@example.net,+1-810-727-0364,3584035232769228,2025-11-21 +City Hotel,0,0,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,14.0,45.0,0,Transient,50.52,0,0,Check-Out,Tamara Davis,stacy16@example.com,001-676-510-5272x375,2272978504975925,2025-02-05 +Resort Hotel,0,31,2017,March,10,10,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,213.39,0,1,Check-Out,Dana Chapman,heather91@example.com,847-578-0152x60748,4264306847885401,2025-12-11 +City Hotel,0,149,2017,February,9,26,1,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,11.0,179.0,0,Contract,135.24,0,1,Check-Out,Jennifer Collins,lauraball@example.net,388-639-7847x91665,30250469894500,2025-12-14 +City Hotel,0,43,2017,February,8,21,0,5,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,75,Transient,177.41,0,0,Check-Out,Gary Jackson,staffordcorey@example.org,645-403-2312x4891,2720734213206963,2025-12-19 +City Hotel,1,0,2017,April,15,6,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Group,0.5,0,0,No-Show,Ashley Hicks,nicole31@example.com,442.958.9159x6545,3561081038772229,2025-01-22 +Resort Hotel,1,54,2017,April,18,28,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,H,0,No Deposit,239.0,179.0,0,Transient,187.36,0,0,Canceled,Hannah Luna,ipoole@example.org,572.604.1689,213169633876152,2025-10-05 +City Hotel,0,432,2017,May,19,12,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,129.96,0,1,Check-Out,Robin Young,keithdaniels@example.net,(241)285-0489,6011403307959882,2025-05-12 +City Hotel,0,58,2017,April,17,22,2,5,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,138.58,0,1,Canceled,Craig Morrison,acostadylan@example.net,(506)570-8762x4082,4545191732582920,2024-11-05 +City Hotel,0,11,2017,June,23,9,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,191.62,0,1,Check-Out,Mary Thompson,ralph67@example.org,+1-400-792-7338x5289,6011635645057362,2025-04-29 +Resort Hotel,0,12,2017,August,31,4,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,172.0,179.0,0,Transient-Party,50.2,0,1,Check-Out,Kathleen Webster,yvettemoore@example.org,902.967.2182x5715,4283264395128,2024-04-18 +City Hotel,0,361,2017,June,23,9,1,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,88.06,0,0,Check-Out,Joann Glass,john42@example.org,817.253.6397,30590254195799,2025-01-22 +City Hotel,1,20,2017,September,39,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,Non Refund,16.0,179.0,0,Transient,118.3,0,0,Canceled,Madison Weber,calexander@example.com,461.484.3968,4329881809161762,2025-12-02 +City Hotel,0,1,2017,December,52,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,G,0,No Deposit,11.0,179.0,0,Transient,104.28,1,1,Check-Out,Lori Hernandez,tcruz@example.org,001-983-336-9195,213116206979400,2024-08-07 +City Hotel,0,10,2017,August,34,24,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,74.63,0,3,Check-Out,Jeremy Turner,denisewalters@example.net,883.900.3056x4415,4293665366678330,2025-09-30 +City Hotel,1,434,2017,March,10,7,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,99.94,0,0,Canceled,Anthony Romero,bbowman@example.net,282-487-5833x1839,6011202448633533,2024-06-16 +City Hotel,1,43,2017,November,47,22,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,77.97,0,1,Canceled,Jesse Brown,tkent@example.org,357-832-0836,3560943281719630,2025-04-09 +City Hotel,0,46,2017,June,23,6,0,1,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.54,0,1,Check-Out,Angela Lin,itucker@example.org,001-422-287-9473x110,180043267159582,2026-02-19 +City Hotel,0,100,2017,June,22,2,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,29.0,179.0,0,Contract,81.08,0,0,Check-Out,Lisa Hunter,colematthew@example.com,981-261-1336x2885,30501284827152,2025-03-13 +City Hotel,1,290,2017,June,26,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,75.0,179.0,0,Transient,130.22,0,0,Canceled,Julian Conner,smithmarissa@example.net,758-496-7196,3547400130274075,2025-05-19 +Resort Hotel,1,281,2017,June,24,12,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Refundable,10.0,223.0,0,Transient-Party,47.35,0,0,Canceled,Joanna Pacheco,khanmitchell@example.org,+1-563-802-6698x0327,4835431198378,2024-07-18 +City Hotel,0,143,2017,May,22,31,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,167.33,0,1,Check-Out,Erica Alvarez,wattslisa@example.net,(362)990-9137x41283,3592547947689723,2025-11-03 +City Hotel,0,21,2017,April,17,26,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,175.0,179.0,0,Transient,104.03,0,1,Check-Out,Antonio Garcia,jlevy@example.com,(567)235-0822x047,347472707683275,2026-02-24 +City Hotel,0,88,2017,September,36,5,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,102.34,0,1,Check-Out,Gwendolyn Klein,ibrock@example.com,492-649-0748,4426110467647935023,2024-11-11 +Resort Hotel,0,240,2017,May,19,9,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,299.0,179.0,0,Transient-Party,40.35,0,1,Check-Out,Carrie Wright,ian54@example.org,983-335-6720,4054992487846,2024-09-18 +City Hotel,0,34,2017,November,45,12,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,80.99,0,1,Check-Out,Jeffrey Mills,qmcgee@example.net,+1-790-214-7342x7220,5513271604362570,2024-08-23 +City Hotel,0,9,2017,August,33,12,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,80.72,0,1,Check-Out,Jake Campbell,brittneywashington@example.com,+1-401-251-7489x862,180084561868031,2025-01-11 +City Hotel,1,104,2017,December,49,2,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,107.44,0,0,Canceled,George Harper,beverlyflores@example.org,(586)773-6438x94152,6011018009871753,2026-01-28 +City Hotel,1,438,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,222.0,0,Transient-Party,84.62,0,0,Canceled,Maria Jones,angelagarcia@example.net,001-882-702-9016,3530847536965905,2024-04-23 +Resort Hotel,1,31,2017,April,15,8,1,6,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,242.0,179.0,0,Transient,232.79,0,3,Canceled,Michael Mitchell,lauradixon@example.org,651-574-7723,4830327389249,2025-12-29 +City Hotel,1,115,2017,February,9,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,98.01,0,1,Canceled,Mary Escobar,qwong@example.net,+1-766-264-7984x65033,4649916041560125,2024-08-18 +City Hotel,0,2,2017,April,15,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,132.86,0,1,Check-Out,Felicia Aguilar,kimberlystevens@example.net,868-201-5276x509,675992831718,2024-11-02 +Resort Hotel,0,1,2017,August,32,8,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,109.93,1,1,Check-Out,Gregory Ponce,eblack@example.net,807.558.5693,36527862220456,2024-12-31 +City Hotel,1,91,2017,November,47,24,0,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,96.73,0,0,Canceled,Jenna Larson,hilldebra@example.org,(829)591-9457,4993190582468625,2025-04-21 +City Hotel,0,98,2017,February,7,10,0,6,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,20.0,179.0,0,Transient,144.18,0,2,Check-Out,Emily Bennett,rebecca73@example.org,+1-843-339-9712x3630,4979196681593062,2024-05-18 +City Hotel,0,145,2017,December,51,19,1,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,127.0,179.0,0,Transient,107.05,0,1,Check-Out,Robin Santiago,beth11@example.net,+1-337-970-6198x780,2325470440071537,2025-12-24 +Resort Hotel,0,51,2017,February,8,18,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,126.88,0,1,Check-Out,Nancy Jennings,lmaldonado@example.org,+1-416-669-9341x05567,4236756078212409,2024-10-19 +City Hotel,0,97,2017,January,3,20,1,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,168.43,0,2,Check-Out,Maria Henderson,curtislucas@example.com,(974)320-7842,2264754823826705,2025-12-01 +City Hotel,0,40,2017,July,30,25,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,142.92,0,1,Check-Out,Jack White,wcortez@example.org,001-871-637-5648x67143,30511974321317,2026-01-06 +Resort Hotel,0,15,2017,March,13,23,3,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,78.74,0,0,Check-Out,Travis Tucker,plucero@example.org,+1-993-261-7590,4147078081008868566,2024-12-25 +City Hotel,1,94,2017,August,34,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,28.0,179.0,0,Transient-Party,98.64,0,0,Check-Out,Chad Jones,amendoza@example.net,8252188281,630477909687,2025-01-06 +City Hotel,0,45,2017,March,9,4,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,9.0,179.0,0,Transient,99.83,1,2,Check-Out,Ashley Wise,ashley99@example.net,(453)434-4110,30531274392461,2025-02-02 +City Hotel,0,41,2017,February,6,8,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,125.35,0,1,Check-Out,Sophia Johnson,wgonzalez@example.com,4134921609,30318449944255,2024-05-21 +Resort Hotel,0,274,2017,June,23,5,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,262.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,Ralph Anderson,twagner@example.com,593.570.9972x63329,342827194502095,2024-07-08 +Resort Hotel,1,15,2017,November,47,23,2,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,168.0,179.0,0,Transient,45.43,0,2,Canceled,Christopher Guerra,kaylayoung@example.org,+1-800-423-2852x12400,630462856869,2024-04-20 +City Hotel,0,84,2017,November,46,17,1,2,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,112.57,0,0,Check-Out,Rhonda Martin,rhonda51@example.net,(841)674-8600,6011689435340447,2025-02-07 +Resort Hotel,0,0,2017,November,46,18,2,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,13.0,179.0,75,Transient-Party,59.39,1,1,Check-Out,Jason Rhodes,andrea54@example.net,001-488-224-7690,4302956749431953,2025-04-29 +City Hotel,0,1,2017,September,39,26,0,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,214.42,0,0,Check-Out,Jeremy Mitchell,frankwood@example.com,001-227-469-9904x5082,4260133403275,2025-10-10 +Resort Hotel,0,294,2017,August,32,11,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,2,No Deposit,29.0,179.0,0,Contract,61.78,0,0,Check-Out,Joann Ferguson,craig30@example.net,001-569-927-8297x25398,4244742563846331,2025-10-05 +City Hotel,1,325,2017,February,8,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,108.97,0,0,Canceled,Robert Harrison,cheryl54@example.org,753-874-0126x8490,6517091066090335,2026-01-24 +City Hotel,0,96,2017,May,21,21,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,30.0,179.0,0,Contract,89.15,0,2,Check-Out,Holly Valentine,sclark@example.com,432-906-5931x2483,3595429206435972,2024-12-28 +City Hotel,0,91,2017,April,14,5,2,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,211.36,1,1,Check-Out,Mrs. Diane Reyes,mccalljane@example.org,+1-306-554-5734x854,3542339653542812,2024-05-24 +City Hotel,0,0,2017,October,40,1,1,4,3,0.0,0,BB,BRA,Online TA,Direct,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,80.7,0,2,Check-Out,Tracy Montoya,carlsontyler@example.com,(536)261-6252,4272836611302,2025-05-20 +Resort Hotel,1,20,2017,December,50,12,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,I,0,No Deposit,242.0,179.0,0,Transient,79.02,0,1,Canceled,Brenda Wright,chamberstiffany@example.com,+1-781-497-3349x45204,6516623328282457,2025-01-06 +City Hotel,1,16,2017,March,13,28,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,107.78,0,0,No-Show,Shelly Spencer,richardkelly@example.net,920-852-6738x890,213191799950910,2025-12-24 +City Hotel,0,48,2017,April,14,5,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,D,0,No Deposit,12.0,179.0,0,Transient,218.34,0,2,Check-Out,Ryan Rosales,bendermatthew@example.org,001-413-418-7639x5400,341863544203671,2026-02-14 +Resort Hotel,1,70,2017,September,36,8,2,2,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,Phillip Nelson,calvin37@example.org,3264788695,213139836485176,2025-02-10 +Resort Hotel,1,9,2017,January,4,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,114.59,1,1,Canceled,Brittany Kim,johntaylor@example.net,205.270.2730x3820,30009158751953,2024-09-18 +Resort Hotel,0,109,2017,August,35,31,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,79.88,0,3,Check-Out,Courtney Hayes,ybridges@example.com,+1-403-390-1108x00928,4910292620909,2024-04-02 +City Hotel,0,102,2017,January,2,8,0,2,3,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,145.59,0,2,Check-Out,Alexander Brown,kaiserjames@example.net,001-403-888-7815x14178,4248614669529218,2025-06-24 +Resort Hotel,0,3,2017,November,46,17,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,195.0,222.0,0,Transient,81.25,0,0,Check-Out,Cynthia Vang,jaypetersen@example.org,(540)916-2429x555,379787139899160,2025-08-03 +City Hotel,1,0,2017,March,10,9,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,97.0,179.0,0,Transient-Party,222.65,0,0,No-Show,Alfred Galvan,zacharyalexander@example.net,2977915422,2290500451457547,2025-05-05 +City Hotel,0,20,2017,December,51,19,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,7.57,0,0,Check-Out,Marie Moody,michaelvalencia@example.net,+1-932-783-7158,676244070550,2025-03-27 +City Hotel,0,151,2017,February,9,28,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,2.33,0,0,Check-Out,Dustin Gallegos,vharmon@example.com,949-463-2424x6604,6011711371268042,2025-12-23 +City Hotel,0,56,2017,November,47,24,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,108.99,0,1,Check-Out,Brenda Thornton,stephaniewilson@example.org,+1-548-342-2090x014,4353100216687,2025-08-30 +City Hotel,0,14,2017,February,8,22,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,237.39,0,1,Check-Out,Aaron Miller,lcurry@example.com,2166097067,3512327007286778,2026-01-31 +Resort Hotel,0,3,2017,September,36,4,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,A,C,0,No Deposit,240.0,179.0,0,Transient,49.91,1,1,Check-Out,Ruben Dunn,katherinejimenez@example.org,001-630-424-1935x0805,5376189398461323,2025-09-06 +Resort Hotel,0,46,2017,December,51,21,0,1,2,0.0,0,Undefined,,Groups,Direct,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient-Party,53.6,0,0,Check-Out,Kelsey Rodriguez,millercatherine@example.org,335.574.1518,3525149206675493,2025-01-28 +Resort Hotel,0,28,2017,January,3,14,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,82.49,1,1,Check-Out,Eric Williams,vickigarcia@example.org,228-781-5147x399,2239129598648422,2024-07-16 +City Hotel,0,20,2017,August,34,24,2,2,3,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,119.59,0,1,Check-Out,Riley Bryant,pmartin@example.org,479.999.1557,4145606045770,2024-09-12 +City Hotel,0,74,2017,March,9,3,2,5,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,8.0,179.0,0,Transient,166.39,0,2,Check-Out,Taylor Carlson,vdennis@example.net,(884)418-1628x2613,3594407682900561,2025-07-02 +Resort Hotel,0,19,2017,July,29,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,I,1,No Deposit,13.0,331.0,0,Transient,63.88,0,0,Check-Out,Jose Allen,emily00@example.org,434-719-1739x593,3532537510021829,2025-09-24 +Resort Hotel,0,44,2017,November,48,29,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,138.34,0,1,Check-Out,Jeffrey Mendez,hicksandrew@example.net,240-255-4632x1827,38314827043903,2024-04-22 +Resort Hotel,1,136,2017,January,3,18,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,137.79,0,0,Canceled,Jason Beck,xevans@example.net,001-962-968-6108x44760,30541149380591,2026-03-20 +City Hotel,0,10,2017,June,24,11,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,106.82,0,0,Check-Out,William Jones,byrdsamantha@example.org,+1-589-589-6286x743,5368077991547632,2025-12-12 +Resort Hotel,0,41,2017,June,26,25,4,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,98.64,1,1,Check-Out,Katie Mcneil,masonkevin@example.net,001-898-498-5258x804,060487408670,2025-07-06 +City Hotel,0,186,2017,February,7,14,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,103.98,0,1,Check-Out,Jeanette Harrison,andrew17@example.org,(525)358-0315x395,4370984713548,2024-04-30 +City Hotel,0,16,2017,March,12,18,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.52,0,2,Check-Out,Veronica King,aprilcompton@example.org,001-931-635-2148x5751,501814346786,2024-12-24 +City Hotel,0,33,2017,December,52,28,2,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Group,106.22,0,1,Check-Out,Richard Cooper,ewalters@example.net,519.326.2197,4962272833333,2025-04-30 +City Hotel,1,3,2017,April,14,4,0,1,2,0.0,0,HB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,202.34,0,0,Canceled,Lori Ingram,omay@example.org,357-626-5425x8660,4079142712541844,2025-12-16 +Resort Hotel,0,0,2017,June,24,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,43.03,1,0,Check-Out,Evelyn Williams,katherinecampbell@example.net,(611)860-8107x4525,6011047593163780,2024-07-05 +City Hotel,1,1,2017,September,39,24,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.3,0,0,Canceled,Robin Thompson,aatkins@example.org,250-585-5110,370989010417968,2024-11-04 +City Hotel,1,2,2017,November,44,3,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,91.08,0,0,Canceled,Julie Dominguez,sydneyramirez@example.net,9619547105,3578354518546566,2026-01-25 +Resort Hotel,0,37,2017,January,2,3,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,90.64,0,2,Check-Out,Robin Brown,elizabeth43@example.net,4379131194,2221811138760771,2025-02-27 +City Hotel,0,57,2017,January,5,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,129.97,0,1,Canceled,Judith Carter,kristopheranderson@example.org,500-436-6606,30302755511437,2024-03-30 +City Hotel,0,6,2017,July,31,30,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,37.0,227.0,0,Transient-Party,81.21,0,0,Check-Out,Curtis Williams,cward@example.org,+1-779-888-1594,4759756151947935791,2026-03-14 +City Hotel,1,20,2017,February,8,23,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,1,0,A,A,1,No Deposit,10.0,179.0,0,Transient,166.97,0,0,Canceled,Kaylee Hays,megan01@example.org,001-906-795-5991x5242,4058386802750438720,2024-11-27 +City Hotel,0,1,2017,September,36,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,15.0,45.0,0,Transient,65.43,0,0,Check-Out,Dawn Mullins,daniel13@example.com,+1-809-401-6153x64431,4531704127894316,2025-04-16 +Resort Hotel,0,10,2017,January,3,15,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient-Party,43.67,0,1,Check-Out,Howard Norman,matthew79@example.com,200.430.0452,6011520606419993,2025-10-24 +City Hotel,0,2,2017,April,14,2,1,2,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,G,2,No Deposit,243.0,179.0,0,Transient,113.87,1,1,Check-Out,Evelyn Martinez,brandonkennedy@example.org,550.396.8888,4986338609455161,2024-09-16 +Resort Hotel,0,96,2017,August,32,7,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,80.78,0,0,Check-Out,Steve Paul,erikacarlson@example.com,649-663-8676,3592869674109505,2025-04-22 +Resort Hotel,0,153,2017,November,48,29,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,61.48,0,1,Check-Out,Jasmine Beltran,sfischer@example.com,912-619-1706x221,3597626173361010,2024-08-09 +Resort Hotel,0,82,2017,November,46,18,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,136.0,179.0,0,Transient-Party,77.17,0,1,Check-Out,Jonathan Glass MD,dianeburns@example.org,(260)432-0039,3556134788299245,2024-12-31 +City Hotel,1,146,2017,December,49,4,1,1,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,Non Refund,75.0,179.0,0,Transient,98.47,0,0,Canceled,Monica Miller,despinoza@example.com,+1-315-342-5942x839,4890716340222542,2025-12-09 +City Hotel,1,384,2017,June,23,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,96.44,0,0,Canceled,Samantha Gardner,calvarez@example.com,(610)659-7012,4859152548432161585,2025-06-12 +City Hotel,0,1,2017,September,39,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,15.0,179.0,0,Transient,6.06,0,0,Check-Out,Bobby Guerrero,robinsontimothy@example.net,(436)402-5673,180084106389923,2024-04-27 +City Hotel,1,162,2017,April,15,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,Non Refund,9.0,179.0,0,Transient,140.37,0,0,Canceled,Lance Simmons,andersonjason@example.net,+1-217-512-3209x554,3583866214883855,2025-07-27 +Resort Hotel,0,13,2017,August,34,24,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,65.05,0,2,Check-Out,Heather Williams,patelaudrey@example.net,236-888-6914x803,6011292363963312,2025-02-11 +Resort Hotel,0,15,2017,November,46,12,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,109.92,0,0,Check-Out,Heather Bolton,zday@example.org,(856)993-0090x38755,630477178168,2025-06-11 +Resort Hotel,0,2,2017,November,44,3,1,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,47.24,0,1,Check-Out,William Gould,ramirezthomas@example.org,(613)942-8233x4430,4913294949995101,2026-01-14 +City Hotel,0,52,2017,April,14,3,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.69,0,0,Check-Out,Mark Cox,michael94@example.com,742-672-0513,3558104666624267,2026-03-20 +City Hotel,1,204,2017,March,11,11,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.43,0,0,Canceled,Meghan Cisneros,jocelyn68@example.org,649-416-1112,180021236155394,2024-07-25 +City Hotel,1,41,2017,February,5,2,1,3,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,162.26,0,0,Canceled,Lawrence Harrington,oclayton@example.com,561-996-2326x86251,676185757512,2024-06-01 +Resort Hotel,0,13,2017,January,3,14,0,10,1,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,3.1,1,1,Check-Out,Austin Osborne,ryanrachel@example.org,527.369.0555x9084,3511020021019751,2024-04-26 +Resort Hotel,1,13,2017,October,41,12,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient,64.17,0,0,Canceled,James Bradley,lnixon@example.net,9346469430,3539813619838865,2025-07-01 +Resort Hotel,0,3,2017,March,10,4,3,10,2,0.0,0,FB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,221.9,0,1,Check-Out,Meghan Rush,umaxwell@example.net,+1-282-309-7681x278,4660988240846799,2025-08-03 +Resort Hotel,0,74,2017,March,9,3,2,3,2,1.0,0,BB,NOR,Direct,Direct,0,0,0,C,C,2,No Deposit,247.0,179.0,0,Transient,188.84,1,1,Check-Out,Phillip Berry,wrightcynthia@example.org,+1-622-669-9519x0629,4529278427665,2025-05-19 +Resort Hotel,1,48,2017,August,34,20,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,45.74,0,1,Canceled,Jennifer Banks,nancy58@example.com,(905)320-3065,4594807411957790,2025-03-09 +Resort Hotel,0,33,2017,August,32,8,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,H,0,No Deposit,240.0,179.0,0,Transient,51.3,0,1,Check-Out,Brian Fitzgerald,rebeccarodriguez@example.net,(287)353-3480,3589362184717111,2024-12-21 +Resort Hotel,1,41,2017,December,49,8,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,86.38,0,3,No-Show,Mr. Justin Green III,john62@example.org,360.649.4742,4787506669668565,2025-03-01 +City Hotel,1,167,2017,November,46,14,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,28.0,179.0,0,Transient,103.76,0,0,Canceled,Zachary Mitchell,rachel49@example.org,(254)682-7189,6011598280197473,2025-12-28 +City Hotel,0,7,2017,June,22,3,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,90.55,0,0,Check-Out,Katherine Martinez,brandywest@example.net,976-492-2962x58470,342029032645067,2025-06-03 +Resort Hotel,0,101,2017,November,48,26,2,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,338.0,223.0,0,Transient-Party,81.14,1,0,Check-Out,Jodi Roach,johnathan63@example.net,776-599-9590,180098873342303,2024-04-11 +Resort Hotel,0,14,2017,November,46,13,1,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,46.5,0,0,Check-Out,Brandon Fleming,melanie70@example.org,8445319740,377262693298243,2026-02-16 +City Hotel,0,248,2017,February,5,3,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.03,0,1,Check-Out,Emma Reed,rodgerstabitha@example.org,+1-595-590-7009x7407,30446428961618,2025-01-30 +City Hotel,1,303,2017,April,16,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,96.68,0,0,Canceled,Joshua Vance,james84@example.org,001-573-551-0909,370497129467155,2025-05-23 +City Hotel,0,10,2017,June,24,13,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,69.78,1,0,Check-Out,Michelle Ho,mcdanielmichael@example.net,386-683-9859,2243157174739418,2025-01-08 +Resort Hotel,0,14,2017,March,10,4,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,242.0,179.0,0,Group,48.06,0,1,Check-Out,Rebecca Hicks,jennifer35@example.com,001-269-236-6639x189,36352352392370,2025-06-21 +City Hotel,0,2,2017,November,45,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,16.0,222.0,0,Transient-Party,57.35,1,0,Check-Out,Curtis Taylor,sharon07@example.net,001-718-307-3218,6520394370820495,2025-05-25 +Resort Hotel,0,52,2017,July,27,6,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,64.0,0,Transient,86.75,0,0,Check-Out,Allison Spencer,sbryant@example.net,919-773-4860x717,579385406684,2026-02-24 +Resort Hotel,1,100,2017,August,35,31,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,11.0,179.0,75,Transient-Party,62.15,0,0,Canceled,Robert Arnold,dawnmerritt@example.org,250-275-6868x0477,180002649875729,2026-03-19 +City Hotel,0,149,2017,April,17,24,2,3,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,218.17,0,3,Check-Out,Angelica Parker,farmeranthony@example.org,338-385-9787,344242299423791,2024-11-16 +Resort Hotel,0,241,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,72.0,0,0,Check-Out,Dr. Kelly Hammond DVM,rchan@example.net,692.811.7059,3548685244856226,2025-09-08 +City Hotel,0,110,2017,April,16,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,B,0,No Deposit,1.0,179.0,0,Contract,216.64,0,2,Check-Out,William Day,frostandrew@example.net,(896)614-7979x3892,3594303611231147,2025-06-26 +City Hotel,0,14,2017,June,23,8,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.37,0,0,Check-Out,Michael Cooper,troy11@example.org,513.235.2954x00545,213174581516339,2024-07-20 +City Hotel,0,33,2017,May,18,5,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,105.99,0,1,Check-Out,Penny Bowman,richard75@example.net,621-243-1665x1899,6537296861279076,2024-11-15 +City Hotel,0,3,2017,April,17,23,0,4,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,E,1,No Deposit,16.0,179.0,0,Transient,93.67,0,0,Check-Out,Vincent Reynolds,amedina@example.com,964.502.9816,4061749481478535,2024-04-12 +Resort Hotel,0,6,2017,March,12,24,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,134.89,0,2,Check-Out,Amy Martinez,benderandrew@example.net,726.621.0038,3549553768680720,2025-11-12 +City Hotel,0,24,2017,June,22,1,0,1,1,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,65.32,0,0,Check-Out,Christopher Morris,andrea67@example.org,829.415.5152x1983,4254055073849431358,2025-11-07 +Resort Hotel,0,325,2017,May,20,18,1,4,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,D,E,1,No Deposit,242.0,179.0,0,Transient-Party,62.91,1,0,Check-Out,Hannah Everett,rscott@example.org,808.317.2607,6555066717272360,2024-05-30 +City Hotel,0,9,2017,October,43,22,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,152.0,179.0,0,Transient,74.59,0,0,Check-Out,Sarah King,smartinez@example.com,(442)204-4156,213143919972878,2024-10-13 +City Hotel,0,0,2017,December,51,20,2,1,3,0.0,0,BB,,Online TA,Corporate,0,0,0,D,D,0,No Deposit,11.0,331.0,0,Transient,147.3,0,1,Check-Out,Krista Martinez,qbrown@example.net,427.899.9949x9401,3578705826995862,2025-12-06 +Resort Hotel,0,167,2017,March,12,24,4,0,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,228.18,0,0,Check-Out,Joseph Shaw,hharrison@example.org,(429)436-7408x65600,3548261049903611,2025-10-25 +City Hotel,0,24,2017,December,50,12,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,110.32,0,2,Check-Out,Todd Moore,shawsteven@example.org,001-757-503-4935,639021663641,2025-06-09 +Resort Hotel,1,46,2017,March,12,23,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,237.36,1,0,Canceled,Michelle Jacobs,johnnguyen@example.org,517-860-7987x679,6011633379088133,2024-12-31 +City Hotel,0,11,2017,March,10,5,0,4,1,0.0,0,BB,AUT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,131.41,1,2,Check-Out,Kristy Bryan,donna30@example.com,001-689-919-5209x8463,4542440652885644560,2024-08-05 +City Hotel,1,14,2017,March,13,26,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,131.47,0,0,Canceled,Angel May,dennislarsen@example.net,274.315.4633x441,341998134341158,2025-01-20 +Resort Hotel,0,1,2017,October,40,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,239.0,179.0,0,Transient,47.62,0,1,Check-Out,Marilyn Wang,kbarton@example.net,(680)429-1439,4688544196600596339,2025-12-08 +Resort Hotel,0,399,2017,February,8,19,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,123.0,179.0,0,Transient,136.21,0,0,Check-Out,Mark Jimenez,qsandoval@example.net,001-807-748-0155x97205,4543624210268903,2025-09-22 +Resort Hotel,1,160,2017,March,11,13,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,221.07,0,0,No-Show,Donna Frye,fischerdanielle@example.org,(927)719-2680,4113316781878,2025-07-01 +Resort Hotel,0,26,2017,November,47,22,1,3,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,62.99,0,0,Check-Out,Dr. Michael Evans,lauren38@example.org,2098670833,374418979608942,2026-02-19 +Resort Hotel,0,0,2017,December,49,4,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,108.19,0,0,Check-Out,Anthony Gonzales,mramos@example.net,001-373-938-2878,3543097430338438,2025-08-09 +Resort Hotel,0,15,2017,April,15,9,1,1,2,2.0,0,BB,ESP,Online TA,Direct,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Check-Out,Mr. Lawrence Edwards,joseskinner@example.org,(535)828-8151,4185578887533432,2025-10-26 +City Hotel,1,146,2017,December,2,30,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,242.0,179.0,0,Transient,125.92,0,1,Canceled,Morgan Valencia,tanner48@example.org,+1-992-287-1002x397,180073647985067,2026-01-19 +Resort Hotel,1,108,2017,January,5,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,107.07,0,0,Canceled,Bianca Wood,hickmanerin@example.org,531-434-5516x388,6598665244815747,2025-10-10 +City Hotel,1,147,2017,January,2,10,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.79,0,1,Canceled,Emma Owens,huntkatrina@example.com,399.271.0575x49811,30210674843239,2024-12-12 +City Hotel,1,102,2017,August,33,13,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,102.46,0,0,Canceled,David Davis,derekmiller@example.com,+1-481-366-0898x911,2243460503460353,2025-03-06 +Resort Hotel,0,10,2017,August,33,16,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,32.0,179.0,0,Transient,1.0,0,0,Check-Out,James Gilbert,hannah51@example.net,571-543-8401x1540,4418760987735,2025-02-10 +Resort Hotel,0,56,2017,November,45,8,0,3,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,E,1,No Deposit,196.0,179.0,75,Transient-Party,45.18,0,0,Check-Out,Sean Moore,martinmichael@example.org,496-990-0705x53096,4425418985680,2025-11-29 +City Hotel,1,102,2017,January,4,24,0,2,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,115.14,0,0,Canceled,Kenneth Edwards,pbrown@example.com,918.869.8683x017,4989909348260,2025-05-19 +Resort Hotel,0,100,2017,April,15,10,4,10,2,1.0,0,BB,,Direct,Direct,0,0,0,F,E,1,No Deposit,16.0,179.0,0,Transient,252.0,1,2,Check-Out,Kathleen Robertson,rebeccastevens@example.org,(760)594-9274,3509661079330063,2025-10-08 +City Hotel,0,43,2017,November,48,28,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,15.0,62.0,0,Transient,74.81,0,0,Canceled,Mr. Alexander Landry MD,michaeljames@example.net,295.669.6826x0692,6553138246116053,2025-03-20 +Resort Hotel,0,220,2017,April,14,3,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,1,No Deposit,249.0,179.0,0,Transient,95.73,0,1,Check-Out,Cindy Gomez,yphillips@example.net,579-758-8303,3586891754093654,2025-09-03 +City Hotel,1,151,2017,December,49,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.15,0,0,No-Show,Johnny Khan,jason25@example.org,7037766002,3542419099299720,2024-10-31 +City Hotel,1,198,2017,June,25,23,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,96.0,0,0,Canceled,Julie Herrera,jamiejones@example.com,9385471068,5346308621147452,2025-03-08 +City Hotel,0,51,2017,June,23,10,2,5,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,D,D,0,No Deposit,172.0,179.0,0,Transient,113.34,0,0,Check-Out,Jessica Khan,daniel11@example.net,001-717-936-7231x01094,3550633421780327,2024-08-30 +City Hotel,1,96,2017,July,30,23,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.87,0,0,Canceled,Pamela Diaz,bowmananthony@example.org,(813)501-2073x081,3532080484593978,2025-09-20 +City Hotel,1,3,2017,August,32,6,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,185.99,0,0,Canceled,Kelly Lee,vgarcia@example.com,481-810-5027x2577,4774966807949308,2025-10-10 +City Hotel,0,38,2017,October,41,8,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,60.69,0,1,Check-Out,Angel Gordon,brianjohnson@example.org,995-584-3612,3569096538055893,2025-08-21 +City Hotel,0,1,2017,July,30,25,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,1,A,D,0,No Deposit,13.0,169.0,0,Transient,89.86,0,1,Check-Out,Diana Hays,charlesleonard@example.com,(285)782-4348x228,4095655522288,2025-02-23 +City Hotel,1,165,2017,January,2,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,109.55,0,0,Canceled,Barbara Hester,deborahcoleman@example.com,762.236.2391x613,3592803161008680,2024-09-12 +City Hotel,1,283,2017,June,23,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,89.74,0,0,Canceled,Robert Morgan,kaitlindiaz@example.org,(948)255-2568,180017250505498,2024-11-03 +City Hotel,0,3,2017,October,41,11,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,60.84,0,1,Check-Out,Nicole Gonzalez,elizabeth56@example.org,780.663.5729x89820,30443687062063,2025-06-07 +City Hotel,1,118,2017,May,21,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,83.42,0,0,Canceled,Kathryn Williams,walldaniel@example.net,937-328-2912,503804609249,2026-03-04 +City Hotel,0,51,2017,March,9,1,0,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,137.67,0,2,Check-Out,Gary Wells,elizabeth99@example.net,(343)316-9580x0684,676360902586,2024-06-04 +City Hotel,0,36,2017,July,28,15,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Contract,114.99,0,0,Check-Out,Larry Robertson,joseph26@example.net,(502)901-2212x58472,4621646806512670,2024-07-15 +Resort Hotel,0,48,2017,April,16,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,D,D,0,No Deposit,24.0,179.0,0,Contract,60.12,0,2,Check-Out,Louis Martin,fergusonmelissa@example.com,284-389-3698x0225,3517833335274746,2025-10-06 +City Hotel,1,124,2017,February,8,19,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.62,0,0,Canceled,Nancy Evans MD,jason58@example.org,357.681.3742,6011978375516995,2025-02-24 +City Hotel,0,20,2017,November,45,11,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.54,0,1,Check-Out,Kim Erickson,umoreno@example.net,257-609-9521,4983120045897096,2024-07-11 +Resort Hotel,0,99,2017,April,16,19,3,5,2,0.0,0,Undefined,GBR,Corporate,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,45.88,0,0,Check-Out,Robert Richardson,brian14@example.net,(605)998-9926x1104,4545284588400352,2024-03-28 +Resort Hotel,1,36,2017,February,8,23,2,4,3,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Transient,252.0,1,0,No-Show,Veronica Silva,tammy23@example.org,001-861-349-4340x5013,180009720983777,2025-05-26 +Resort Hotel,0,11,2017,January,2,7,1,10,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,Refundable,16.0,74.0,0,Transient,86.17,1,0,Check-Out,Molly Watts,michaelwood@example.org,+1-945-475-4523x558,3557486605239088,2025-04-28 +City Hotel,1,154,2017,December,51,21,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,105.01,0,0,Canceled,John Coffey,william35@example.net,001-355-205-5241,4292832854584724,2024-12-13 +City Hotel,1,163,2017,June,24,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.05,0,0,Canceled,Paula Lane,williamjohnson@example.org,871.454.0992x29346,639010478084,2025-06-16 +Resort Hotel,0,13,2017,October,43,25,0,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,133.0,179.0,0,Transient,121.58,0,0,Check-Out,Lauren Jackson,fstewart@example.net,+1-772-954-8354x599,3564405922232882,2024-08-25 +Resort Hotel,1,13,2017,November,46,15,1,0,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,42.07,0,0,Canceled,Lisa Randall,willisnicole@example.net,(463)548-5500,4947402036871271,2025-04-21 +Resort Hotel,1,0,2017,April,17,26,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,17.0,179.0,0,Transient,50.12,0,0,Canceled,Michael Johnson,xstokes@example.com,+1-409-772-9678x28661,3501798556937669,2024-09-28 +City Hotel,0,170,2017,January,3,16,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,116.32,0,1,Check-Out,Ashley Smith,rhonda52@example.com,+1-204-406-2094x341,4628762283236,2024-07-14 +Resort Hotel,0,1,2017,May,18,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,163.61,0,0,Check-Out,Christian Vaughn,evasquez@example.com,801.530.1132,213119306207664,2025-12-31 +City Hotel,1,184,2017,April,14,4,1,2,2,1.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,71.01,0,1,Canceled,Reginald Knapp,kimberly49@example.com,898.886.8496,4467169268494064220,2025-06-23 +Resort Hotel,0,17,2017,November,44,1,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Check-Out,Nancy Brown,laura30@example.com,267.634.8153x91221,3572625096193913,2025-01-24 +Resort Hotel,1,134,2017,August,32,8,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,237.0,179.0,0,Transient,87.71,0,2,Canceled,Daniel Nguyen,dcampbell@example.org,860.656.9043,3547826866938600,2024-04-25 +City Hotel,0,3,2017,January,4,22,0,1,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,1.64,0,0,Check-Out,Kelly Edwards,ksmith@example.net,001-944-269-4421x106,3510592510294690,2025-10-28 +City Hotel,0,13,2017,November,44,1,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,104.16,0,1,Check-Out,Thomas Peterson,peterpayne@example.org,+1-990-353-0326x151,3578850872343904,2024-05-23 +Resort Hotel,0,58,2017,June,26,24,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,49.44,0,1,Check-Out,Raymond Le,xdiaz@example.org,4404446463,6011878204426186,2025-12-18 +Resort Hotel,0,9,2017,April,14,4,4,5,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,248.0,179.0,0,Transient,200.81,0,3,Check-Out,Melissa Bishop,oford@example.net,240.714.4979x05735,180012530544680,2025-02-01 +City Hotel,0,39,2017,December,49,8,1,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,211.82,0,0,Check-Out,David Grant,rebecca46@example.org,816-431-8927x500,340483398324118,2025-04-27 +Resort Hotel,0,143,2017,May,19,7,2,4,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Contract,103.24,0,0,Check-Out,William Evans,taylorandrew@example.com,953-690-0506,2417545208777307,2025-03-15 +City Hotel,0,100,2017,January,2,4,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.54,0,2,Check-Out,Daniel Bush,mcdonaldmichele@example.com,001-981-779-8903x30393,4068239910227920,2024-06-11 +City Hotel,1,53,2017,March,13,31,0,4,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,143.25,0,0,Canceled,Gregory Peck,jessica96@example.org,001-781-930-1217x09944,213134940635030,2025-10-27 +City Hotel,0,2,2017,June,22,2,1,2,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,110.21,0,0,Check-Out,Denise Martinez,camposbruce@example.net,281-834-1029,4848654281300,2025-05-31 +Resort Hotel,0,56,2017,May,20,16,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,166.33,0,0,Check-Out,Jamie Baird,donaldchen@example.com,269-818-5361,30468237090801,2025-02-02 +City Hotel,0,153,2017,April,18,30,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,231.95,0,1,Check-Out,Tina Ballard,kjohnson@example.org,407.969.6702x5891,213193506330956,2024-08-10 +City Hotel,1,105,2017,May,22,31,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,63.5,0,0,Canceled,Dwayne Klein,xfarley@example.net,377-232-6857,30346978028117,2024-12-29 +Resort Hotel,1,280,2017,March,12,20,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,171.0,179.0,0,Transient,133.18,0,0,Canceled,Jeremy Scott,mannkenneth@example.org,(728)794-1686x318,2709884578458082,2025-02-14 +City Hotel,1,0,2017,December,52,25,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,39.0,238.0,0,Transient,80.01,0,1,No-Show,Dale Ryan,nayala@example.org,(256)776-7879,36769282193513,2025-12-14 +Resort Hotel,0,19,2017,March,12,21,3,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,57.16,1,2,Check-Out,Melissa Taylor,brian39@example.com,001-741-416-6911x5340,36681519982206,2024-10-23 +City Hotel,0,8,2017,October,42,18,1,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.18,0,2,Check-Out,Laurie Sanchez,emilyharper@example.net,001-242-269-9696x97686,2274382332725115,2024-11-09 +City Hotel,0,11,2017,November,44,1,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.01,0,1,Check-Out,Kiara Little,stacie27@example.net,882.681.6041x379,30280924253083,2025-10-03 +City Hotel,1,111,2017,May,18,1,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,122.58,0,2,Canceled,Jason Love,eric36@example.org,+1-304-397-0383x41031,4708143462760070,2025-07-08 +Resort Hotel,1,262,2017,December,49,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,43.06,0,0,Canceled,Randy Smith,qvargas@example.net,(257)470-1830x784,4021714958496856,2026-01-15 +City Hotel,1,150,2017,May,22,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,147.88,0,0,Canceled,Tanya Russell,vswanson@example.com,001-445-560-9432x01302,676187735243,2025-10-02 +Resort Hotel,0,0,2017,February,6,4,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,135.35,0,1,Check-Out,Sherry Woods,jennifer57@example.net,001-535-540-3571,630406692396,2024-04-28 +Resort Hotel,0,18,2017,April,15,12,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,252.0,0,3,Check-Out,Victor Morris,thompsonjessica@example.net,001-984-547-2781x21965,6512342197893237,2025-02-17 +City Hotel,1,146,2017,January,3,18,0,5,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,81.41,0,0,Canceled,Susan Davis,snydermorgan@example.net,(815)649-6066x076,4531820256972,2024-11-24 +City Hotel,0,150,2017,April,14,4,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,244.25,0,3,Check-Out,Kimberly Sharp,scottrodriguez@example.org,912.743.4683x4854,4052763543860708620,2025-11-04 +City Hotel,0,35,2017,November,48,29,1,2,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,49.63,0,1,Check-Out,Susan Thompson,melissahuynh@example.com,557-498-0058,213119958430119,2025-02-06 +City Hotel,1,202,2017,March,13,27,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,252.0,0,1,Canceled,Casey Gillespie,martincarol@example.org,(397)236-0630x17982,376203128289580,2026-01-27 +Resort Hotel,0,10,2017,December,52,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,3,Refundable,247.0,179.0,0,Transient,161.0,1,0,Check-Out,Jennifer Simpson DVM,ihuffman@example.com,+1-859-527-8332x859,375679448943736,2024-09-22 +City Hotel,0,93,2017,February,7,10,4,0,2,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,122.15,0,1,Check-Out,Tammy Mcdowell,agarcia@example.com,551-416-1065x151,3575505714964837,2024-05-23 +City Hotel,0,111,2017,March,11,16,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,77.92,0,0,Check-Out,Keith Rodriguez,mirandajoshua@example.org,001-822-262-9365x88349,4303809771122468708,2026-03-04 +City Hotel,1,34,2017,July,28,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,52.15,0,0,Canceled,Mrs. Virginia Daniels,jessica65@example.net,720-348-8252x67913,348586214490749,2024-11-16 +City Hotel,0,5,2017,August,35,28,1,2,2,1.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,3.42,0,1,Check-Out,Todd Rosales MD,cory28@example.com,(486)394-0948x718,38327202071042,2025-03-29 +Resort Hotel,0,35,2017,April,14,5,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,210.12,0,3,Check-Out,Brian Martin,williamkrueger@example.org,+1-878-307-6615x4580,213142245967628,2025-09-19 +City Hotel,0,92,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,75,Transient-Party,65.16,0,1,No-Show,David Lopez,adam22@example.net,570.701.3651x22016,4187850541211,2025-03-13 +Resort Hotel,0,21,2017,July,27,3,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,77.0,0,Transient,46.71,1,0,Check-Out,Rachel Bradley,benjaminhampton@example.com,769.813.6472x598,30425154867025,2025-08-01 +City Hotel,1,297,2017,February,5,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,18,Transient,130.16,0,0,Canceled,Casey Chase,briana28@example.net,+1-742-512-2898,4613857532768747646,2025-04-10 +City Hotel,1,34,2017,February,5,3,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,246.58,0,3,Canceled,Samantha Robertson,scottvelazquez@example.com,001-854-514-3019x42673,4487523335425,2024-09-21 +Resort Hotel,1,51,2017,November,44,3,1,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,47.42,0,2,Canceled,Michael Lopez,rolson@example.org,(251)253-1043,5435243393266945,2024-12-25 +Resort Hotel,0,40,2017,October,44,31,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,45.56,0,1,Check-Out,Franklin Wright,colleenflores@example.com,653-910-0259x0475,6011896063895721,2024-09-07 +Resort Hotel,0,271,2017,November,47,21,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,78.0,179.0,62,Transient-Party,76.27,0,0,Check-Out,David Molina,reneeperez@example.net,(391)971-3595x18469,639025484465,2025-02-05 +City Hotel,1,148,2017,May,19,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,63,Transient,111.88,0,0,Canceled,Elizabeth Sharp,ylee@example.org,(484)971-2719,4498293820357082451,2025-07-05 +Resort Hotel,1,186,2017,February,5,1,4,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,84.86,0,1,Canceled,Matthew Schwartz,nmeyer@example.net,(541)598-7833,639046638529,2024-05-15 +City Hotel,1,16,2017,June,23,7,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,163.6,0,0,Canceled,Bryan Parker,lcarrillo@example.org,7657597613,4461609084991,2024-11-22 +City Hotel,0,4,2017,April,14,2,2,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,173.94,0,0,Check-Out,Jonathan Jacobson,summersmelvin@example.org,(920)922-7961,6516430043871782,2025-06-09 +City Hotel,0,48,2017,April,17,29,1,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,63.65,0,1,Check-Out,Emily Wilson,tayloraaron@example.com,+1-600-512-8085x51729,4220512446733,2025-02-21 +City Hotel,0,2,2017,August,31,2,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,28.0,179.0,0,Transient,109.19,0,0,Check-Out,Elizabeth Mendez,carloslee@example.net,711.698.9683,4724012692663703,2025-11-30 +City Hotel,0,5,2017,October,41,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,43.11,0,1,Check-Out,Casey Hernandez,stephanie86@example.net,7528564060,213126515754501,2025-03-11 +City Hotel,0,46,2017,August,35,29,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,109.77,0,2,Check-Out,Lisa Perry,vmata@example.org,732-990-0889x5091,4262872394053,2025-04-05 +City Hotel,1,298,2017,June,23,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,62.92,0,0,Canceled,Kaitlin Medina,wjones@example.com,+1-727-250-6362x29822,4920781563772973,2025-06-15 +Resort Hotel,1,97,2017,August,35,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,44.18,0,1,Canceled,Colleen Wright,danieljohnson@example.org,(638)465-3123x584,3548624184069888,2025-04-19 +Resort Hotel,0,1,2017,September,35,1,2,5,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,56.58,0,1,Check-Out,Shelley Miller,castroanita@example.org,4942184446,4339427951338846,2025-06-08 +Resort Hotel,1,151,2017,March,10,2,4,10,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,144.22,0,1,No-Show,Michael Miller,qwalker@example.net,424-357-9727x313,4794661117770147748,2025-09-03 +Resort Hotel,0,2,2017,October,44,31,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,300.0,179.0,0,Transient,45.6,0,1,Check-Out,Amy Kelley,brett93@example.org,980-682-9380,3585793072997742,2025-10-21 +City Hotel,1,327,2017,April,14,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,118.09,0,0,Canceled,Laura Hernandez,ocole@example.org,385.872.9032,30359218397986,2024-06-08 +City Hotel,1,420,2017,October,43,22,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,78.5,0,0,Canceled,Joseph Wilson,cherylzhang@example.com,915-956-7337x61072,4934476551776318514,2025-12-17 +Resort Hotel,0,5,2017,March,13,28,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,C,1,No Deposit,242.0,179.0,0,Transient,67.02,0,0,Check-Out,Kevin Davis,harmonzachary@example.org,+1-287-765-9732x46057,4362865162932941,2025-01-08 +City Hotel,0,21,2017,November,45,5,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.43,0,1,Check-Out,Rhonda Chavez,gabriellechavez@example.com,5218192505,3549173629522902,2025-11-30 +Resort Hotel,0,0,2017,November,48,25,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,131.0,179.0,0,Transient,46.63,0,0,Check-Out,Joyce Brown,foxrobert@example.net,001-882-951-7024x552,30408007563900,2024-08-11 +Resort Hotel,0,4,2017,March,13,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,49.49,0,2,Canceled,Robert Cummings,smithbrian@example.org,969-434-4322x283,3548396710032165,2025-11-08 +City Hotel,0,1,2017,October,40,3,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.4,0,0,Check-Out,Robert Reese,anthonyrios@example.com,630-627-3220,3563485176701981,2025-04-29 +Resort Hotel,0,104,2017,February,7,13,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,241.0,179.0,0,Transient,135.58,1,1,Check-Out,Amber Cooper,savagesherry@example.org,+1-640-600-4534,4877676939256,2024-08-19 +Resort Hotel,0,355,2017,February,6,8,0,2,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,311.0,179.0,0,Transient-Party,56.24,0,1,Check-Out,Zachary Michael,michael39@example.net,(522)579-2817x2724,6011178164223347,2024-05-02 +City Hotel,0,40,2017,December,49,3,1,2,3,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,158.57,0,0,Check-Out,Timothy Johnson,ashley02@example.org,477-420-4844x376,4401678744885,2026-03-05 +City Hotel,1,13,2017,February,7,14,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,126.32,0,1,Canceled,Randy Cannon,charlesmurphy@example.net,759-994-8482x75965,3522537772239368,2025-01-21 +Resort Hotel,1,89,2017,April,14,3,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,236.0,179.0,0,Transient,252.0,0,0,Canceled,Maria Fisher,hshah@example.com,(794)313-0087x10623,3504099750395904,2025-02-04 +Resort Hotel,0,165,2017,November,48,26,1,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,195.0,1,1,Check-Out,Janet Kane DVM,sean90@example.org,(893)718-2446x4956,213106767419540,2025-02-06 +Resort Hotel,0,53,2017,May,21,25,2,5,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,215.81,1,2,Check-Out,Michael Stanley,jamesfuentes@example.net,(860)320-7624x5130,2702568551622932,2024-07-03 +Resort Hotel,0,0,2017,November,45,7,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,179.0,179.0,0,Group,49.66,0,1,Check-Out,Martha Bailey,bauermichelle@example.net,001-627-634-8579x49418,3545796707678149,2024-08-20 +Resort Hotel,0,99,2017,August,34,24,3,6,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient,56.19,0,0,Check-Out,Joshua Rice,sheila75@example.org,(765)949-5370,213129889994000,2025-02-16 +Resort Hotel,0,2,2017,March,11,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,235.0,179.0,0,Transient,159.83,1,1,Check-Out,Courtney Smith,stephanienavarro@example.org,(749)241-5874x491,4541963613352423,2024-07-09 +Resort Hotel,0,0,2017,April,17,20,0,5,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,160.47,0,0,Check-Out,Edwin Nunez,sarahwilliams@example.net,(922)895-1858,3594977183640569,2025-12-14 +City Hotel,1,33,2017,February,8,22,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,149.18,0,1,Check-Out,Kim Morrow,wsnyder@example.net,911.865.5089x14908,6577624959809309,2025-07-13 +City Hotel,0,49,2017,April,14,5,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,234.99,0,1,Check-Out,Gregory Hill,rnguyen@example.net,+1-291-257-4800x486,3549454341389188,2025-09-02 +City Hotel,0,0,2017,December,49,6,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.0,1,1,Check-Out,Molly Rodriguez,stefanie09@example.com,001-626-478-2249x093,4481074391215063,2025-05-23 +City Hotel,0,26,2017,December,2,30,2,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,G,0,No Deposit,12.0,45.0,0,Transient,0.97,0,1,Check-Out,Jennifer Miranda,torresbradley@example.net,001-774-397-8475x22815,3528039474350332,2024-05-27 +City Hotel,0,47,2017,November,45,8,0,3,2,0.0,0,BB,SWE,Offline TA/TO,Direct,0,0,0,A,F,1,No Deposit,12.0,179.0,0,Transient,100.04,0,1,Check-Out,Alexis Harris,pthompson@example.com,662-549-9372x99520,180030296924805,2025-08-27 +City Hotel,1,393,2017,January,2,1,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,98.24,0,0,Canceled,Andrew Harper,rhowell@example.com,7169042637,3548438584524305,2025-03-05 +City Hotel,0,44,2017,October,40,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,92.78,1,0,Check-Out,Amber Yang,seanshaw@example.com,001-229-784-6858x576,6011824616123847,2024-05-05 +Resort Hotel,1,16,2017,July,27,3,1,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,45.57,0,0,Canceled,David Robinson,fernandezdavid@example.net,4573599753,6011932022260259,2024-08-27 +City Hotel,0,69,2017,November,45,7,0,2,2,0.0,0,HB,DEU,Online TA,Direct,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient-Party,109.91,0,1,Check-Out,Amy Gordon,benjaminmcguire@example.org,+1-681-894-0548,4900511012773959725,2025-11-07 +Resort Hotel,1,179,2017,November,48,30,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,1,Refundable,15.0,179.0,75,Transient-Party,76.02,0,0,Canceled,Robert Dennis,kathy50@example.net,001-552-291-8935x8058,213100678356172,2024-12-19 +Resort Hotel,0,36,2017,November,47,22,1,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,82.12,0,0,Check-Out,Kyle Chambers,rebecca21@example.com,668.420.5426x024,4037613839100210,2025-08-11 +City Hotel,1,16,2017,April,15,9,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,208.71,0,3,Canceled,Eric Thomas,mgreen@example.com,001-511-873-8496x274,6502381779392228,2025-04-19 +City Hotel,1,168,2017,November,45,7,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.83,0,0,Canceled,Connie Turner,michelestrong@example.org,+1-648-450-7013,213180667859543,2024-09-03 +Resort Hotel,0,98,2017,January,3,15,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,286.0,179.0,0,Transient,109.38,0,0,Check-Out,Travis Hobbs,tmueller@example.com,(935)350-4405,4348286630487,2024-06-17 +Resort Hotel,1,8,2017,November,46,14,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,45.26,0,2,Canceled,Lori Simmons,cscott@example.com,3622080201,4051376653915300,2025-12-18 +City Hotel,0,147,2017,June,24,15,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,64,Transient-Party,106.74,0,1,Check-Out,William David DDS,velliott@example.net,412-458-8604x960,4695586228295879,2025-09-12 +City Hotel,1,102,2017,April,16,17,2,5,2,0.0,0,FB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,95.0,179.0,0,Transient,170.56,0,0,Canceled,Emma Butler,amanda74@example.net,309-920-1198x85526,3529602512051987,2025-03-09 +Resort Hotel,0,2,2017,June,23,7,2,5,2,0.0,0,HB,RUS,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient-Party,88.9,0,0,Check-Out,James Webster,rosariochristopher@example.com,(782)470-2612,4247050485535637,2024-08-02 +Resort Hotel,0,0,2017,June,23,9,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,E,0,No Deposit,108.0,179.0,0,Group,59.9,0,0,Check-Out,Samuel Turner,jellis@example.com,001-379-276-0402x71830,4680593533252980,2024-07-06 +Resort Hotel,1,420,2017,May,20,16,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,126.04,0,0,Canceled,Renee Melendez,stefanie87@example.net,2845952540,180052713684317,2024-04-09 +Resort Hotel,0,172,2017,April,18,29,0,2,2,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,H,0,No Deposit,249.0,179.0,0,Transient,108.95,1,1,Check-Out,Tracy Grant,denisecole@example.net,(618)989-3457x649,060412214201,2025-12-16 +City Hotel,0,37,2017,March,9,1,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,107.91,0,0,Check-Out,David Harris,jay70@example.org,897.892.6911x61646,4804110276559579,2024-09-04 +Resort Hotel,1,127,2017,April,16,19,1,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Tammy Boone,joshualewis@example.org,+1-832-466-3188x29787,4641008778042,2025-01-05 +City Hotel,0,0,2017,June,26,24,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,103.39,0,0,Check-Out,Nathaniel Lee,wyang@example.net,958-748-5166x2635,4966199979905,2026-01-06 +Resort Hotel,0,136,2017,April,15,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,378.0,179.0,0,Transient,84.95,0,0,Check-Out,Michael Morrison,saragreen@example.org,584-352-4054x1683,373671660340966,2024-04-02 +Resort Hotel,0,147,2017,January,5,29,3,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,167.31,0,1,Check-Out,Chelsea Gill,rpayne@example.com,221-747-2380x327,4589127968728305,2024-03-31 +City Hotel,0,22,2017,April,16,19,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,131.73,0,2,Check-Out,Kristin Mendoza,cartertimothy@example.net,444-202-7412x43205,180091602758741,2026-03-03 +City Hotel,1,40,2017,November,44,4,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,82.3,0,1,No-Show,Felicia Krueger,pauljones@example.net,001-579-604-2661x3676,180089675209618,2025-05-11 +City Hotel,0,62,2017,June,23,9,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.15,0,1,Check-Out,Timothy Hayden,ybrooks@example.net,+1-485-228-5295x8031,4806097301523,2025-03-19 +City Hotel,0,7,2017,August,34,23,1,1,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,E,D,1,No Deposit,12.0,179.0,0,Transient-Party,92.97,0,0,Check-Out,Zachary Mendoza,valerieyoder@example.net,832-779-6855,4852704484956584150,2025-01-30 +Resort Hotel,1,165,2017,April,14,3,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,C,E,1,No Deposit,242.0,179.0,0,Transient,204.92,0,0,Canceled,Larry Harris,katherinebass@example.org,+1-721-517-7800x2810,503818968821,2025-09-27 +Resort Hotel,0,178,2017,December,51,19,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient-Party,36.59,0,1,Check-Out,Kristen Rowe,terrenceclark@example.com,+1-603-406-4167x021,4371777481821615,2024-06-04 +City Hotel,0,83,2017,November,47,18,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,14.0,47.0,0,Transient,90.9,0,1,Check-Out,Joseph Howard,xwilson@example.com,+1-790-278-3401x0772,4370533285058992633,2025-08-05 +Resort Hotel,0,13,2017,February,6,4,3,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,138.0,179.0,0,Contract,83.81,0,2,Check-Out,Jose Crawford,ebranch@example.org,(810)298-5930,4540915770675955,2025-09-16 +Resort Hotel,0,2,2017,July,31,30,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,39.19,0,3,Check-Out,William Harrison,adamtran@example.com,943.482.9135x39411,676353015644,2025-01-12 +City Hotel,0,21,2017,December,51,16,0,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient-Party,119.38,0,1,Check-Out,Suzanne Wood,kkeller@example.com,842.593.3175x613,6593200851368908,2026-01-01 +City Hotel,1,148,2017,November,44,3,1,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.42,0,2,Canceled,Justin Walker,richardsondonald@example.com,315-996-9554,4818655721497,2024-06-21 +Resort Hotel,0,240,2017,February,5,2,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,326.0,179.0,0,Transient,80.28,0,3,Check-Out,Dean Donovan,matthewprice@example.org,+1-608-385-5763,3546513176502984,2025-06-30 +Resort Hotel,0,52,2017,February,6,3,2,7,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,101.15,0,0,Check-Out,Jennifer Hernandez,carpenterkristen@example.org,001-562-253-1640x2373,375555635513724,2024-07-04 +City Hotel,1,3,2017,April,14,1,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,90.62,0,0,Canceled,James Whitaker,sabrina83@example.com,001-945-274-1298x6037,349214060538458,2025-03-10 +Resort Hotel,0,140,2017,June,23,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,288.0,179.0,0,Contract,49.13,0,3,Check-Out,Mr. Michael Scott PhD,wolfejamie@example.org,942-953-1702x77721,4351797057022324354,2025-07-24 +Resort Hotel,0,14,2017,January,4,21,1,10,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,139.45,0,0,Check-Out,Maria Henry,charles36@example.com,001-528-778-2650x0312,341421648311716,2026-02-22 +Resort Hotel,0,0,2017,February,8,22,0,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,G,1,No Deposit,16.0,179.0,0,Transient,145.62,0,0,Check-Out,Robert Jackson,davidrobertson@example.com,583-466-2539x6718,4485225900292739371,2024-12-29 +Resort Hotel,1,382,2017,May,22,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,124.37,0,0,Canceled,Katherine Stark,christina97@example.net,001-539-553-0215x59522,2285456065414860,2024-06-22 +Resort Hotel,0,222,2017,November,46,14,2,5,2,2.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,141.0,179.0,0,Transient,130.82,1,1,Check-Out,Maria Brown,bvelasquez@example.net,259-910-5185,4195889161355501,2024-08-12 +City Hotel,1,152,2017,June,22,1,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,111.9,0,0,Canceled,Ryan Landry,bsolis@example.org,001-372-928-1089,4032264640048910,2025-07-19 +City Hotel,0,11,2017,January,4,22,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,88.6,0,2,Check-Out,Pamela Gutierrez,jimenezsheila@example.org,3893850003,4668598149182955123,2024-06-17 +Resort Hotel,0,1,2017,March,12,20,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,E,D,0,No Deposit,11.0,179.0,0,Transient,99.3,0,3,Check-Out,Crystal Mann,kristin37@example.org,001-632-803-6096x0337,180016671984431,2024-03-29 +City Hotel,0,48,2017,May,22,28,1,5,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.7,0,1,Check-Out,Jonathan Brooks,bowersjessica@example.org,926-590-7280,561940449151,2024-07-11 +City Hotel,0,3,2017,August,32,10,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,87.49,0,1,Check-Out,Mary Jensen,sbraun@example.org,001-544-369-6909x102,4685718640749090,2025-05-01 +City Hotel,0,9,2017,November,48,29,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,109.04,0,0,Check-Out,Mr. Aaron Arnold,fcastro@example.net,001-237-298-0446,4531316083924849685,2024-05-16 +City Hotel,0,42,2017,August,32,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,83.21,0,0,Check-Out,Joseph Hill,sallen@example.com,991.594.9235x9202,4817734467854514525,2024-08-26 +Resort Hotel,1,205,2017,May,21,26,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,78.51,0,0,Canceled,Alicia Li,flopez@example.com,+1-504-299-7805x50144,213140108406395,2024-05-30 +City Hotel,0,15,2017,November,47,19,2,1,1,0.0,0,BB,AUT,Groups,Corporate,0,0,0,A,E,0,No Deposit,37.0,179.0,0,Transient,6.57,0,0,Check-Out,Renee Browning,zzimmerman@example.com,311-267-0512,30550807610405,2024-11-04 +City Hotel,0,2,2017,December,51,22,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.26,0,2,Check-Out,Brent Hernandez,stevensonjonathan@example.com,753.753.5423x6537,4151104200206,2025-02-17 +Resort Hotel,0,94,2017,July,27,3,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Contract,44.19,0,0,Check-Out,Joseph Ochoa,hpatterson@example.org,+1-449-612-8264,30220866175597,2026-01-19 +City Hotel,0,0,2017,April,16,20,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,B,1,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,James Watson,kathleen74@example.org,001-614-885-9618,3531878033439655,2025-07-26 +City Hotel,0,26,2017,January,4,26,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.86,0,1,Check-Out,Karl Branch,george85@example.org,485-947-3989x30161,180092810132273,2025-11-17 +City Hotel,0,52,2017,April,16,16,0,3,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,D,D,0,No Deposit,11.0,63.0,0,Transient,215.6,0,3,Check-Out,Michael Abbott,kingjessica@example.net,+1-324-826-2811x507,213190626991089,2025-06-19 +Resort Hotel,1,398,2017,September,37,15,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Non Refund,39.0,179.0,0,Transient,35.39,0,0,Check-Out,Shannon Malone,nthompson@example.net,+1-692-832-1711,3550844611742171,2025-09-09 +City Hotel,0,11,2017,November,47,23,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.05,0,1,Check-Out,James Tran,gina21@example.net,353.601.5705x570,2365046218863544,2025-05-10 +City Hotel,0,1,2017,July,30,23,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,13.0,60.0,0,Transient-Party,45.38,0,0,Check-Out,Adam Jackson,derekreeves@example.net,402.676.7991,5292227580204316,2025-10-24 +Resort Hotel,0,11,2017,October,41,13,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Group,61.67,0,1,Check-Out,Mr. Richard Knight PhD,davidhart@example.org,001-640-342-8324x20095,630466792359,2024-11-18 +City Hotel,0,164,2017,January,2,6,2,0,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,98.18,0,0,Check-Out,Joseph Williams,murraylynn@example.org,8846297967,6596764473108031,2025-03-03 +City Hotel,0,108,2017,June,25,19,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,E,E,1,No Deposit,16.0,213.0,0,Transient-Party,55.3,0,1,Check-Out,Sean Clay,dorothysmith@example.net,(863)433-1325,4571170602623,2025-06-02 +Resort Hotel,0,253,2017,January,4,20,1,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,259.0,179.0,0,Transient,77.46,1,0,Check-Out,Anthony Jones,stacy45@example.com,327-841-4055,4818384472515370,2024-09-13 +City Hotel,0,62,2017,July,27,4,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.53,0,1,Check-Out,Stephanie Elliott,emclean@example.org,+1-829-377-2916x16934,3575572230349497,2024-06-17 +City Hotel,1,22,2017,December,50,9,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.34,0,2,Canceled,Timothy Edwards,maria41@example.net,446.248.7820x795,4243326757034085,2024-06-03 +City Hotel,1,157,2017,January,2,3,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,105.09,0,0,Canceled,Laurie Goodwin,ysantos@example.com,257.504.6483x7153,6011617250244584,2024-10-22 +Resort Hotel,1,291,2017,November,46,11,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,88.04,0,0,Canceled,Jennifer Jones,phillipsrobert@example.net,463.317.4816x7431,4794892411746284,2024-07-14 +Resort Hotel,1,13,2017,November,47,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,101.53,0,0,Canceled,David Davenport,barbaramcclain@example.com,001-582-372-5967x3475,6011180101918773,2026-02-18 +Resort Hotel,0,148,2017,April,14,8,1,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient-Party,2.2,0,1,Check-Out,Steven Rivera,mitchell67@example.net,984.716.4756x0915,676197657130,2025-09-25 +Resort Hotel,0,0,2017,August,35,27,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,243.0,179.0,0,Transient,53.99,1,2,Check-Out,Brenda Hinton,zwalton@example.com,615-479-6142x823,4273504869917,2025-09-22 +City Hotel,0,110,2017,November,46,11,1,3,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,77.0,179.0,0,Transient-Party,111.17,0,1,Check-Out,Kathryn Mccann,yball@example.com,001-782-509-7886x223,4285808144870338,2025-12-09 +City Hotel,0,33,2017,July,27,3,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,131.42,0,0,Check-Out,Jeffrey Roberson,timothy60@example.net,522-413-2868x797,213160844102975,2026-01-24 +City Hotel,1,260,2017,May,19,10,0,4,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.98,0,0,Canceled,Randy Friedman,david85@example.net,798-596-0993x94758,213149786843373,2024-12-17 +Resort Hotel,1,146,2017,November,45,10,1,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,132.71,0,1,Canceled,Raymond Johnson,brendacollins@example.com,343-928-0194x0945,180044537647455,2024-05-07 +Resort Hotel,0,151,2017,March,13,30,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,H,H,3,No Deposit,242.0,179.0,0,Transient,224.22,1,2,Check-Out,Willie Henry,chadcox@example.com,790.217.1548x949,213105101443059,2024-12-10 +City Hotel,0,387,2017,February,7,13,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,19.0,179.0,0,Transient-Party,133.9,0,0,Check-Out,Todd Reynolds,lmoreno@example.net,(536)923-6076x826,6011855726832331,2026-03-22 +Resort Hotel,0,15,2017,July,29,20,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,225.81,0,1,Check-Out,Mary Miller,dferrell@example.com,906-485-9646x5215,342528227685564,2025-06-27 +City Hotel,1,280,2017,July,29,21,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,103.0,0,0,Canceled,Rebecca Marquez,joy22@example.org,989-556-6546x4398,4699243599136,2025-03-12 +Resort Hotel,1,144,2017,August,34,22,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,75,Transient,88.8,0,0,Canceled,Christian Dawson,sjones@example.net,7704046660,3585825552051457,2025-07-12 +City Hotel,0,400,2017,May,20,15,1,2,2,0.0,0,BB,PRT,Aviation,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,78.82,0,0,Check-Out,Nancy Stewart,heather69@example.org,(761)424-7130,3582565627005582,2024-08-24 +City Hotel,0,20,2017,May,19,7,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,219.0,0,Transient,130.63,0,0,Check-Out,Aaron Parker,obowers@example.net,2648091917,38210705254648,2026-02-03 +City Hotel,0,13,2017,September,38,20,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,79.14,0,3,Check-Out,Derrick Anderson,rglover@example.org,(393)754-8910x21140,30508138723685,2024-08-05 +City Hotel,1,418,2017,April,17,27,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,115.7,0,0,Canceled,Jerry Peters,jamestimothy@example.com,581-767-3833x99704,4986777344470,2024-09-10 +City Hotel,0,5,2017,August,32,7,0,2,1,0.0,0,SC,ESP,Corporate,Direct,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,80.71,1,1,Check-Out,Alexander Gomez,bvalencia@example.org,(932)777-0361x93288,3581160160520204,2024-06-13 +Resort Hotel,0,2,2017,April,18,30,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,111.99,1,0,Check-Out,Kyle Nguyen,sanchezlauren@example.org,(657)568-7526,4640173798121045,2025-08-28 +Resort Hotel,0,99,2017,August,31,2,0,2,1,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient-Party,62.63,0,0,Check-Out,Edgar Hughes,john31@example.net,397.397.5254x217,4549038633033402,2024-10-14 +Resort Hotel,0,4,2017,May,21,25,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,H,E,0,No Deposit,245.0,179.0,0,Transient,48.34,0,0,Check-Out,Steven Stein,zoehoover@example.org,(284)795-9826x34945,3518413367251505,2026-02-17 +Resort Hotel,0,110,2017,February,9,27,0,1,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,171.76,0,2,Check-Out,Laura Jackson,loriprince@example.org,001-337-654-9904x951,378386355414175,2024-06-16 +City Hotel,0,15,2017,April,16,15,0,1,3,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,127.89,0,1,Check-Out,Charles Turner,owenwilliam@example.net,801-208-9872,4249242331337064,2024-08-06 +Resort Hotel,1,284,2017,September,38,17,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,Non Refund,293.0,179.0,0,Transient,60.15,0,0,Canceled,Arthur Hamilton MD,moralesjohn@example.net,(894)771-3739x266,344857307989713,2025-03-16 +Resort Hotel,0,193,2017,April,17,22,2,6,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,61.98,1,1,Check-Out,Mr. David Wright,matthew75@example.com,001-498-718-3703x94731,4962130664115139,2025-05-18 +City Hotel,1,200,2017,December,51,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,319.0,179.0,42,Transient,79.65,0,0,Canceled,Linda Gonzalez,heatherkelly@example.net,697-207-5149x767,4750416608071819,2026-02-09 +City Hotel,0,23,2017,March,10,9,2,4,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,112.48,0,1,Check-Out,Eric Rush,egarcia@example.com,9285674160,4721711519890935,2025-12-08 +City Hotel,0,4,2017,May,18,1,2,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,179.57,0,2,Check-Out,Manuel Brock,robertellis@example.com,001-819-385-0478x82556,372771232480505,2025-08-27 +Resort Hotel,0,35,2017,March,12,22,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient-Party,79.91,1,2,Check-Out,George Ochoa,shawn83@example.com,(482)940-8287,36261031967157,2025-04-25 +Resort Hotel,0,376,2017,January,3,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient-Party,74.72,0,0,Check-Out,Valerie Taylor,pinedasusan@example.net,+1-340-864-7088x7044,349203337213870,2024-12-14 +Resort Hotel,1,140,2017,March,13,30,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,144.18,0,2,Canceled,Travis Harris,debrabryant@example.org,+1-207-730-2758x79432,30168110157483,2024-12-31 +City Hotel,1,13,2017,September,38,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Group,79.08,0,1,Canceled,Vincent Novak,marknovak@example.com,8002943659,4300217160464,2024-11-16 +Resort Hotel,0,4,2017,September,39,25,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,C,B,0,No Deposit,14.0,179.0,0,Transient-Party,64.71,0,1,Check-Out,Michael Henry,pmcpherson@example.net,654.554.2233x6069,342591698538274,2025-10-02 +City Hotel,1,166,2017,February,5,3,3,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,103.74,0,0,No-Show,Dana Bennett,lindseydaniels@example.net,001-747-829-6932x15299,2702410027256146,2024-11-19 +Resort Hotel,1,85,2017,August,34,22,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,261.0,179.0,0,Transient,84.74,0,0,Canceled,Jenna Wilson,jennifer86@example.net,470-888-5481,180096681610499,2024-11-26 +City Hotel,0,13,2017,September,38,23,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,30.52,0,1,Check-Out,Leslie Gardner,carlos82@example.com,890-594-1254x724,4513178880025404,2025-05-11 +City Hotel,0,315,2017,April,14,2,2,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,106.51,0,2,Check-Out,Krista Benton,smckee@example.org,603.545.8409,4945405308759605,2025-11-30 +Resort Hotel,0,137,2017,January,2,4,1,2,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,93.0,179.0,0,Transient-Party,109.49,0,0,Check-Out,Michael Gonzales,hamptonsabrina@example.com,9892436664,345868182915144,2025-04-02 +City Hotel,0,58,2017,February,6,8,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,119.85,1,1,Check-Out,Michael Fuentes,josephcoleman@example.net,247-919-9613x06957,38489777950891,2024-12-11 +City Hotel,0,39,2017,February,6,8,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,162.0,0,1,Check-Out,Jennifer Porter,cynthia62@example.net,730-480-2878,4406093560311885,2026-01-01 +Resort Hotel,0,23,2017,November,46,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,62.02,1,2,Check-Out,Dana Hopkins,phillipmcclure@example.net,924.340.6953x5171,344708611515548,2024-09-12 +City Hotel,0,106,2017,January,5,29,2,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,62,Transient-Party,84.78,0,0,Check-Out,Rachel Jones,derrick85@example.org,488-522-1317,6526361457196994,2024-09-30 +Resort Hotel,0,97,2017,June,24,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,53.09,0,0,Check-Out,Karen Morales DDS,dburch@example.org,(213)928-0001x9594,4526462278565,2024-08-14 +Resort Hotel,0,9,2017,August,32,9,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,196.0,179.0,64,Transient,83.27,0,0,Check-Out,Melissa Stephens,uolson@example.net,995-503-3467x057,6011416110562354,2024-09-17 +Resort Hotel,0,42,2017,January,2,1,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,232.9,0,1,Check-Out,Heather Woodard,davisnatalie@example.org,(641)640-2269x5620,3558345698131462,2025-03-27 +City Hotel,1,1,2017,July,30,28,0,4,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,B,K,0,No Deposit,8.0,179.0,0,Transient-Party,0.66,0,1,Canceled,Margaret Miller,mli@example.org,001-661-580-2882x398,2238866214533998,2026-01-10 +Resort Hotel,0,39,2017,May,21,25,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,130.56,1,1,Check-Out,Mary Kelly,melissa20@example.org,572.211.8318x5175,3509174873222676,2025-03-24 +City Hotel,1,22,2017,January,5,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,92.13,0,0,No-Show,Amanda Terrell,imoore@example.org,+1-672-304-8681x820,180082757385919,2025-05-30 +City Hotel,1,171,2017,April,14,7,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,75,Transient,63.5,0,0,Canceled,Jennifer Goodwin,dana90@example.net,(492)350-6983,4629063857470471,2026-02-23 +City Hotel,1,278,2017,April,15,9,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,82.23,0,0,Canceled,Jessica Smith,rachel62@example.com,245-668-6314x687,4145213045404339,2025-03-23 +City Hotel,1,174,2017,August,34,21,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,40,Transient,94.08,0,0,Canceled,Jorge Stone,robert22@example.org,001-311-351-6695x5392,3535761514150924,2024-10-19 +Resort Hotel,0,177,2017,March,10,5,3,5,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,E,A,0,No Deposit,14.0,179.0,0,Transient,252.0,1,0,Check-Out,Laura Griffin,myersronald@example.org,001-212-946-4880x788,4849229327544567,2026-03-16 +City Hotel,0,84,2017,January,5,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,107.47,0,0,Check-Out,Raymond Chapman,carolynduke@example.com,4774309839,2720455865649652,2026-03-04 +Resort Hotel,1,108,2017,November,47,19,2,7,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,324.0,179.0,0,Transient,83.92,0,0,Canceled,Haley Johnson,boydkeith@example.net,(582)610-2152,4714432152361915,2025-01-22 +City Hotel,0,4,2017,June,23,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,18.0,331.0,0,Transient,56.57,0,0,Check-Out,Jason Nixon,patrickmorris@example.net,+1-984-317-1932x25717,4684383701823369928,2025-09-25 +Resort Hotel,0,39,2017,January,2,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,238.0,179.0,0,Transient,90.4,0,1,Check-Out,Todd Thomas,bestalexis@example.org,250.964.1977x32036,30509971887959,2025-11-25 +Resort Hotel,0,149,2017,November,46,14,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,2,Refundable,244.0,223.0,0,Transient-Party,44.34,0,1,Check-Out,Jesse Clark,medwards@example.net,649-687-0378,4851372835852,2025-05-14 +Resort Hotel,0,46,2017,September,36,6,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,73.17,0,1,Check-Out,Mr. Jeffrey Horton,cameron42@example.org,(476)576-3141x319,6534319111835027,2024-11-06 +City Hotel,0,16,2017,April,16,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,331.0,0,Transient,103.73,0,3,Check-Out,Eric Patrick,nicolemoreno@example.org,(223)794-7800,4504023769836,2025-08-23 +City Hotel,0,14,2017,April,15,7,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,115.53,0,1,Check-Out,Samuel Wong,brandon45@example.org,7678156636,180079474743677,2024-07-23 +City Hotel,0,1,2017,July,28,12,2,0,3,0.0,0,SC,,Complementary,Direct,0,0,0,A,K,1,No Deposit,10.0,179.0,0,Transient,3.29,0,3,Check-Out,Carly Riggs,joanwright@example.org,280.610.9997x34829,4713967437868383,2024-12-27 +City Hotel,1,35,2017,March,9,1,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,100.25,0,0,Canceled,Christopher Moore,wyattdanielle@example.net,(405)773-2663x056,5251329807622061,2024-11-30 +Resort Hotel,0,1,2017,December,51,23,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,E,2,No Deposit,18.0,179.0,0,Transient,172.94,0,0,Check-Out,Tina Hall,qjohnson@example.com,001-697-722-3709x1442,213187686242643,2024-10-03 +City Hotel,0,59,2017,April,16,15,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,6.0,179.0,0,Transient,144.03,0,2,Check-Out,Cody Davidson,turnerkristin@example.org,+1-331-560-4960,5294578917803461,2025-12-20 +City Hotel,1,11,2017,November,48,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.6,0,2,No-Show,Allen Mendez,solomonalexander@example.com,907.772.6292,30169098634550,2024-09-22 +City Hotel,0,398,2017,February,7,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,180.11,0,1,Canceled,Kevin Price,caldwellgordon@example.net,7452328248,4448030100470,2024-06-10 +City Hotel,1,143,2017,February,7,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,82.36,0,0,Canceled,Christine Goodwin,jacqueline32@example.com,(557)969-9858,2687549674303880,2025-11-10 +City Hotel,0,13,2017,March,10,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,2.88,0,1,Check-Out,Amy Garcia,osoto@example.com,(351)908-9664,213105085878528,2025-09-28 +City Hotel,1,10,2017,September,38,21,2,3,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,A,A,0,No Deposit,14.0,183.0,0,Transient,90.93,0,0,Canceled,Chelsea Nguyen,qgomez@example.com,(788)555-1895,6011355807327509,2025-12-18 +City Hotel,1,146,2017,February,9,29,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,112.43,0,0,Canceled,Dennis Huffman,ibrown@example.com,+1-645-834-5238x521,4518073779543689,2024-05-08 +City Hotel,1,250,2017,March,11,12,2,5,2,0.0,0,HB,PRT,Complementary,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,0.0,0,0,Canceled,Margaret Harper,thomas35@example.com,611-405-5979,3528905460485037,2024-07-15 +City Hotel,0,18,2017,February,6,4,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,27.0,179.0,0,Transient,98.98,0,0,Check-Out,Laurie Bailey,angela14@example.com,(434)513-2426,6011031164047226,2026-03-26 +City Hotel,0,3,2017,December,51,20,1,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.75,0,2,Check-Out,Lisa Cervantes,whitepeter@example.com,(851)895-6545x6035,3577574178142205,2025-03-19 +Resort Hotel,0,43,2017,January,2,3,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,50.21,1,1,Check-Out,Elizabeth Mendez,morganfrances@example.net,997-839-9641,060454288329,2025-11-16 +City Hotel,1,313,2017,May,19,10,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,79.93,0,0,Canceled,Cesar Wilson,laurenray@example.org,+1-457-707-7949x12003,4499622837292847,2025-09-16 +Resort Hotel,0,256,2017,November,48,28,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,46.99,0,2,Check-Out,Clayton Steele,harold02@example.org,366.437.0216x98709,30139520979741,2025-08-16 +City Hotel,0,102,2017,March,12,23,0,1,2,2.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,225.56,0,0,Check-Out,Jennifer Taylor,brian13@example.com,001-966-371-7382x337,30596645170516,2024-05-19 +City Hotel,1,150,2017,February,7,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.72,0,1,Canceled,Cody Reid,danahudson@example.com,402.871.5133,3544757732017704,2024-05-18 +Resort Hotel,0,12,2017,June,23,4,0,3,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,171.58,1,1,Check-Out,Maria Cooke,thomasbond@example.net,001-801-487-3637,4667263468664,2025-02-01 +Resort Hotel,0,50,2017,November,45,6,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,I,0,No Deposit,12.0,179.0,0,Transient,252.0,0,2,Check-Out,Katherine Taylor,william47@example.com,642.308.6002x1912,4535456281451,2025-06-22 +Resort Hotel,0,0,2017,January,2,3,1,2,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,I,2,No Deposit,203.0,179.0,0,Transient,0.4,0,0,Check-Out,Jerry Brown,jasonwilkerson@example.net,(444)579-6882x4893,2235989715683329,2025-01-17 +City Hotel,0,49,2017,June,25,23,1,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,153.13,0,2,Check-Out,Adam Taylor,guerracarrie@example.net,+1-517-348-4874x1520,4408663773613,2025-05-17 +City Hotel,0,2,2017,January,2,7,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.89,0,0,Check-Out,Tracey Wagner,walkersamantha@example.net,575-848-8061x7473,38977030964758,2026-03-13 +City Hotel,1,43,2017,June,23,10,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,1.0,179.0,0,Transient-Party,63.04,0,0,Canceled,Michael Perry PhD,hernandezscott@example.net,(694)971-8344x99856,3503952053472567,2025-07-03 +City Hotel,0,96,2017,December,52,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,137.79,0,1,Check-Out,Bradley Johnson DDS,ashleycobb@example.com,(255)736-5556,4183631475930973,2026-01-19 +City Hotel,0,92,2017,March,13,29,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,A,0,No Deposit,15.0,179.0,0,Transient,142.98,0,2,Check-Out,Donald Medina,fcontreras@example.com,001-823-338-9251,4771606604017,2025-02-21 +Resort Hotel,0,25,2017,May,21,27,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,106.42,1,1,Check-Out,Jim Newton,christopherstevenson@example.com,706.283.1292,6588051447529538,2026-01-01 +Resort Hotel,0,49,2017,August,31,1,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,48.92,0,1,Check-Out,Krista Wilson,tonyajohnson@example.net,841.935.9070,213129926719915,2024-12-30 +Resort Hotel,0,95,2017,November,47,25,1,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,95.9,0,1,Check-Out,Reginald Morrow,ugates@example.net,351-952-5862,4872230179708417,2025-01-10 +City Hotel,1,151,2017,June,26,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.36,0,0,Canceled,Rodney Williams,carly00@example.net,3083781329,4646393219439692994,2024-06-11 +City Hotel,1,50,2017,April,14,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,A,0,Non Refund,16.0,179.0,0,Transient,154.65,0,0,Canceled,Kimberly Fritz,mary36@example.com,718-427-9840,4771322206998,2025-05-10 +Resort Hotel,0,39,2017,July,29,22,2,3,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,349.0,222.0,0,Transient,50.23,0,0,Check-Out,Ronald Potter,philiproberts@example.org,434.259.9865x9898,2707145697898919,2025-06-26 +Resort Hotel,0,276,2017,January,3,17,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,130.82,0,2,Check-Out,Zachary Cole,kaitlynelliott@example.com,+1-358-824-5503,30408524825428,2025-04-25 +City Hotel,0,4,2017,November,47,24,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,8.0,179.0,0,Transient,114.53,0,1,Check-Out,Robert Gonzales,kingeric@example.net,707.933.5998,4844805328951896,2025-05-27 +City Hotel,0,40,2017,June,25,21,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,101.83,0,1,Check-Out,Patricia Young PhD,welchsteven@example.org,+1-451-422-5376x9848,4561252602191106892,2024-06-04 +Resort Hotel,1,165,2017,May,20,15,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,255.0,179.0,75,Transient,51.98,0,0,Canceled,Heather Page,samantharosario@example.com,+1-541-304-2071x01563,2273464194439786,2026-03-02 +City Hotel,0,44,2017,November,48,30,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,231.1,0,1,Check-Out,Carol Taylor,luismurray@example.org,507.257.6449x32293,4250518597243583,2024-10-28 +Resort Hotel,1,143,2017,October,44,30,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,126.0,179.0,75,Transient,50.49,0,0,Canceled,Daniel Brown,udorsey@example.net,+1-274-823-2893x10498,4844213509171477,2024-07-17 +Resort Hotel,0,35,2017,June,22,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,45.19,0,1,Check-Out,Douglas Ryan,mrodriguez@example.org,001-544-806-3721,3531570838558702,2025-03-21 +City Hotel,0,96,2017,June,25,20,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,31.0,179.0,0,Contract,84.47,0,0,Check-Out,Michael Roberts,amberwatson@example.org,(715)892-8224x96382,4851964638313914585,2025-11-23 +Resort Hotel,0,0,2017,November,44,3,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,120.26,1,0,Check-Out,Scott Duke,williamsbradley@example.org,+1-571-569-9175x541,180088667502402,2025-11-15 +City Hotel,0,0,2017,September,39,24,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,0,No Deposit,14.0,210.0,0,Transient,93.88,0,1,Check-Out,Anna Estes,ilewis@example.com,3812511300,6011754473342638,2025-12-06 +Resort Hotel,0,3,2017,May,20,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Group,57.88,0,1,Check-Out,Tamara Riddle,ebrewer@example.com,001-658-399-1144x3424,4295051471292,2024-07-17 +Resort Hotel,1,240,2017,April,15,11,2,5,2,1.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,164.89,0,1,Canceled,Beth Cline,justin58@example.com,961-735-4663x90738,3597882771260076,2025-03-31 +City Hotel,0,5,2017,June,25,23,0,1,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,93.04,0,1,Check-Out,Michael Poole,mendozaangela@example.com,(356)419-1129x49040,676173459295,2024-05-21 +City Hotel,0,1,2017,June,23,4,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.28,0,1,Check-Out,Megan Burns,ppena@example.com,524.319.7502x8873,371916846315347,2024-12-10 +City Hotel,1,132,2017,February,6,4,1,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,143.0,179.0,0,Transient,95.62,0,0,Canceled,Debra Perry,linda33@example.org,945.949.8562x757,3594067890901023,2025-07-17 +City Hotel,1,387,2017,June,23,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient-Party,77.39,0,0,Canceled,Mark Beard,lori56@example.net,+1-778-832-1867x33726,3540696451466482,2026-01-29 +City Hotel,0,73,2017,October,42,20,0,2,3,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.27,0,1,Check-Out,Jose Ramirez,shawna15@example.com,+1-383-772-0045x16559,4899891065549790,2024-11-08 +City Hotel,0,96,2017,December,50,14,2,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,111.49,1,3,Check-Out,Jackie Clements,vnavarro@example.org,478-327-3350,4842543166932445,2025-07-04 +City Hotel,1,1,2017,February,8,22,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,P,0,No Deposit,14.0,169.0,0,Transient,7.51,0,0,No-Show,Aaron Schroeder,nedwards@example.com,921-472-1998x9823,347073644375833,2024-05-07 +City Hotel,0,38,2017,July,29,21,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,107.65,0,2,Check-Out,Monica Ellis,rothxavier@example.org,(242)982-3442,3597724407916442,2026-03-21 +City Hotel,0,0,2017,June,23,7,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.64,0,0,Check-Out,Heather Brown,rfoster@example.com,222-930-2530,4053499429665,2024-08-17 +Resort Hotel,0,293,2017,November,48,29,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,91.37,0,0,Check-Out,Claudia Jordan,jane95@example.net,(232)748-4444,370205140905040,2025-07-16 +City Hotel,0,8,2017,August,35,26,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.76,0,2,Check-Out,Derrick Clayton,amurphy@example.org,737-648-8705,4218888494038019,2025-06-02 +Resort Hotel,0,53,2017,November,46,11,0,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,90.13,0,3,Check-Out,Kenneth Knight,floyddanielle@example.org,400.557.2529x44930,5459743591107941,2025-08-31 +Resort Hotel,0,24,2017,March,11,9,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,242.0,179.0,0,Transient,81.04,0,1,Check-Out,Mr. Michael Williams,sethedwards@example.org,521.453.2823,676232308343,2026-02-03 +City Hotel,0,108,2017,March,10,4,1,4,2,1.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.92,0,1,Check-Out,Richard Stevens,hdoyle@example.com,7188616264,4791688735979855,2026-02-15 +City Hotel,1,41,2017,March,9,1,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.51,0,0,No-Show,Scott Alexander,christopherelliott@example.org,3985078721,341152429242206,2024-04-06 +City Hotel,1,99,2017,March,12,20,3,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,109.54,0,2,Canceled,Tyler Harris,markoconnor@example.com,+1-284-270-4022x7493,342897058067295,2024-07-04 +City Hotel,0,11,2017,March,10,5,1,1,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,78.0,179.0,0,Transient,100.66,0,0,Check-Out,Bonnie Santos,timothy95@example.net,001-538-929-5536x3157,180036854894801,2025-06-20 +City Hotel,1,319,2017,June,23,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.2,0,0,Canceled,Timothy Hill,shawnanderson@example.com,2385857726,4905866385586310,2025-08-22 +City Hotel,1,60,2017,January,4,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,103.66,0,0,Canceled,Danielle Watson,rgutierrez@example.org,236.806.3599,6011331903407081,2024-07-05 +Resort Hotel,0,132,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,41.56,0,0,Check-Out,Carol Sanders,douglas64@example.org,502.731.7508x105,4104443381933745,2025-01-29 +Resort Hotel,1,40,2017,October,43,23,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient,79.6,0,1,Canceled,Michael Young,lopezmeghan@example.org,(416)322-9652,676110518005,2025-02-10 +City Hotel,0,7,2017,January,2,6,1,2,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,180.91,0,0,Check-Out,Michele Smith,walkertommy@example.org,598-664-4713,4390539836330660620,2026-02-16 +City Hotel,1,141,2017,March,12,17,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,146.53,0,2,Canceled,Casey Perez,davidharvey@example.org,281-829-1686,378866526034721,2024-11-22 +Resort Hotel,0,5,2017,June,25,18,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,43.94,0,0,Check-Out,Alexandra Dominguez,danielle24@example.net,(653)961-3818,3546270329163681,2025-12-01 +City Hotel,1,89,2017,August,32,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,107.91,0,0,Canceled,Virginia Henderson,catherinemartin@example.net,267.977.1109x09332,6565139787200930,2026-02-02 +City Hotel,0,21,2017,June,25,19,0,2,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,63.0,0,Transient,63.55,0,0,Check-Out,Benjamin Reyes,antonio49@example.com,+1-762-357-3169x5628,3598485538616124,2025-04-19 +City Hotel,1,376,2017,June,25,19,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,17,Transient,62.68,0,0,Canceled,Ashley Edwards,angelajohnson@example.com,(891)958-2091x0036,4530492631236417431,2024-06-27 +Resort Hotel,0,156,2017,December,52,30,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,75,Transient-Party,78.92,0,0,Check-Out,Breanna Ayala,james08@example.com,580-382-7337x79979,4484400278248363,2025-11-07 +Resort Hotel,1,0,2017,December,52,27,2,4,2,2.0,0,BB,PRT,Complementary,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,130.08,0,2,Canceled,Brandi Haney,donnadouglas@example.com,001-858-793-6574x858,30317508528868,2024-07-05 +City Hotel,0,173,2017,November,48,26,2,4,2,1.0,0,BB,ESP,Direct,Direct,1,0,1,D,D,1,No Deposit,12.0,179.0,0,Transient,106.95,0,1,Check-Out,Joseph Smith,nellis@example.org,+1-573-925-7443,342112805461357,2025-02-21 +Resort Hotel,0,32,2017,December,50,12,2,5,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,243.0,179.0,0,Transient,46.3,1,0,Check-Out,Jessica Bowen,tapiasamuel@example.org,001-323-841-4293x991,30475692794256,2025-05-24 +Resort Hotel,1,18,2017,October,44,31,1,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,34.0,179.0,64,Transient,109.34,0,0,Check-Out,Brittany Jenkins,kevin66@example.com,001-986-421-1375x9648,4813071152758252584,2024-04-08 +City Hotel,0,2,2017,April,14,5,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,173.11,0,2,Check-Out,Shannon Miller,gwendolyn36@example.net,4673972384,30582661622556,2026-02-07 +Resort Hotel,0,0,2017,October,42,19,0,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,53.58,1,0,Check-Out,Paul Lawrence,frazierannette@example.com,326.495.4900x10380,375664086063310,2025-11-02 +Resort Hotel,0,4,2017,November,48,30,1,3,1,1.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,1,No Deposit,241.0,179.0,0,Transient,111.25,1,1,Check-Out,Victor Edwards,aprilwagner@example.net,492-944-6330,4989071941121244,2026-01-19 +Resort Hotel,0,372,2017,January,4,25,2,1,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,105.5,0,0,Canceled,Donald Miller,rebecca08@example.com,299.559.9274,4889890279745105,2025-02-27 +City Hotel,0,2,2017,November,46,16,2,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,4.91,0,1,Check-Out,Lindsay Lawson,beth56@example.org,292.813.2839,180003026258364,2025-10-01 +Resort Hotel,0,40,2017,December,50,14,0,2,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,128.43,0,3,Check-Out,Melissa Abbott,ysparks@example.com,001-784-300-5156x393,4907440063002943320,2025-05-08 +City Hotel,1,148,2017,January,5,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,135.8,0,0,Canceled,Elizabeth Holmes,jasongentry@example.org,303.599.4920,676268389357,2024-08-29 +Resort Hotel,0,100,2017,April,14,8,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,1,No Deposit,326.0,179.0,0,Transient-Party,36.05,0,0,Check-Out,Nicole Phillips,seth27@example.org,001-630-534-2289x95182,6503939415824976,2025-09-27 +City Hotel,0,14,2017,February,8,22,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,16.0,179.0,75,Transient,137.89,0,0,Check-Out,Steven Blevins,jennifer68@example.net,(856)650-9484,374594857000715,2025-06-18 +City Hotel,0,43,2017,July,30,28,1,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.12,0,0,Check-Out,Brian Porter MD,thomasbrown@example.net,001-355-769-9033x65453,6531174548765898,2025-04-20 +City Hotel,1,153,2017,April,16,18,1,3,2,2.0,0,BB,,Online TA,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Canceled,Vanessa Hatfield,taylor33@example.com,543.547.9756x4327,501814201064,2024-08-14 +City Hotel,0,64,2017,June,22,3,0,2,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,100.88,0,0,Check-Out,Bonnie Valencia,nancy66@example.com,(299)896-0432,213151128847310,2025-04-09 +City Hotel,0,267,2017,June,24,15,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Group,105.54,0,1,Check-Out,Holly Vega,williamscraig@example.com,812-717-0437,6011868670482961,2025-04-25 +Resort Hotel,0,135,2017,November,48,29,1,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,Refundable,17.0,222.0,0,Transient-Party,61.29,0,0,Check-Out,Tiffany Townsend,dmiller@example.com,9846337241,3534576328303456,2026-03-07 +City Hotel,0,271,2017,April,14,4,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,115.84,1,1,Check-Out,Austin Baker,jjackson@example.com,001-309-978-2769,4287681932773701,2024-10-14 +Resort Hotel,1,142,2017,November,48,28,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,63.63,0,0,Canceled,Antonio Mccormick,nbender@example.org,+1-916-642-0743x75177,639043684062,2026-01-17 +City Hotel,0,60,2017,June,23,8,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,87.47,0,0,Check-Out,Lori Mason,teresa94@example.org,(951)908-1658,342894995031591,2026-02-10 +Resort Hotel,0,107,2017,December,50,14,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,329.0,179.0,0,Transient,56.62,0,0,Check-Out,Michael Miller,erinhogan@example.net,519-367-4775,4211867557245247,2024-05-21 +City Hotel,1,58,2017,June,23,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,76.42,0,0,Canceled,Lisa Ramirez,christopher69@example.net,(327)797-0669x9955,6011814272682905,2024-12-29 +City Hotel,0,0,2017,July,28,10,0,1,1,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,5.29,0,0,Check-Out,Jorge Harris,robert13@example.net,803-828-9262x4753,4230654137578140,2025-05-07 +City Hotel,1,121,2017,February,5,3,0,1,2,0.0,0,BB,NOR,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient-Party,131.85,0,0,Canceled,Kimberly Myers,joshua88@example.org,(780)328-9461x4554,30297903719322,2025-12-27 +City Hotel,0,30,2017,May,21,23,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient-Party,66.53,0,0,Check-Out,Sandra Becker,mistystephens@example.net,475-359-5839,213110375164639,2025-01-06 +Resort Hotel,0,9,2017,October,41,13,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient,45.96,0,1,Check-Out,Michael Blair,martinezbeth@example.org,(970)495-6462x956,180093537324375,2024-12-29 +Resort Hotel,0,0,2017,December,50,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,219.0,0,Transient,49.46,0,0,Check-Out,Amy Miller,taylor91@example.org,608.655.4436,3581723841293986,2025-01-07 +Resort Hotel,0,160,2017,March,12,16,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,118.68,0,2,Check-Out,Jesse Lynch,troysnyder@example.org,001-937-847-9088,4693255441708074,2026-01-11 +City Hotel,0,9,2017,November,47,19,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,38.0,45.0,0,Transient,45.6,0,0,Check-Out,Patrick Yang,davisemily@example.org,+1-983-384-9169,4416368564184656770,2025-02-04 +City Hotel,1,42,2017,January,2,8,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,139.15,0,1,Canceled,Michael Miles,sarahjohnson@example.com,001-757-362-8948x0633,4320308698208859,2026-01-19 +Resort Hotel,1,207,2017,January,4,22,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,183.07,0,0,Canceled,Troy Mills,codyduran@example.org,001-986-826-4778x80936,3597817336699368,2024-04-28 +Resort Hotel,0,11,2017,March,13,23,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,125.61,1,1,Check-Out,Michelle Jackson,smitheric@example.net,(417)272-0023x19390,4544318157627010,2024-11-17 +City Hotel,1,196,2017,March,11,15,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.09,0,1,Canceled,Richard Adams,coxjavier@example.org,6146501624,2585191800560522,2024-06-23 +City Hotel,1,159,2017,February,8,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,104.28,0,0,Canceled,Patricia Johnson,lisafoster@example.net,9094037224,180052160799626,2024-11-08 +Resort Hotel,1,19,2017,January,4,22,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,138.7,0,2,Canceled,Denise Brown,erikacarter@example.org,424-530-5696x0580,4993366238945873,2026-02-04 +City Hotel,1,192,2017,February,6,8,2,6,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,Laura Jones,christopherwashington@example.org,8065799284,676153715427,2024-09-16 +City Hotel,0,100,2017,October,41,10,2,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,136.0,179.0,0,Transient-Party,92.6,0,0,Check-Out,Ian Porter,davidlarson@example.com,001-255-356-4226,36697938086221,2025-02-08 +Resort Hotel,0,126,2017,March,11,15,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,B,F,1,No Deposit,14.0,179.0,75,Transient-Party,150.81,1,3,Check-Out,Holly Scott,hlopez@example.org,959.670.1190x804,6011517486970640,2025-10-10 +Resort Hotel,0,275,2017,February,8,22,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.64,0,1,Check-Out,Kenneth Sharp,cassandra31@example.net,001-405-715-8488,4064456249314435,2025-02-23 +City Hotel,1,43,2017,March,10,5,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,91.39,0,0,Canceled,Jordan Williams,utucker@example.com,712.202.7258x11416,343907801051394,2025-11-23 +Resort Hotel,0,1,2017,September,38,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,13.0,45.0,0,Transient,43.95,0,0,Check-Out,Dana Ruiz,smithadam@example.org,001-965-673-1328x51552,3523610825995986,2025-05-17 +Resort Hotel,0,154,2017,December,51,19,2,2,2,1.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,C,1,No Deposit,378.0,179.0,0,Transient-Party,42.05,1,1,Check-Out,Chris Velazquez,beannicholas@example.com,+1-828-466-7719x0233,3544364415738944,2024-12-28 +Resort Hotel,0,153,2017,February,6,7,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,72.65,0,1,Check-Out,Kristen Sloan,lorithompson@example.com,+1-678-908-9707,3516196025042158,2024-03-27 +City Hotel,1,207,2017,April,14,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,121.21,0,1,Canceled,Jennifer Morris,alyssa43@example.net,(205)829-1775,372491135778331,2025-09-28 +City Hotel,0,77,2017,June,24,11,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,19.0,179.0,0,Transient,93.95,0,1,Check-Out,Nathan Nelson,ewilson@example.com,592.377.6984,676399526885,2025-12-22 +Resort Hotel,1,33,2017,July,29,16,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,45.56,0,1,Canceled,Jake Shaw,jennifer46@example.net,524-809-8604,213109019177122,2024-04-09 +Resort Hotel,1,284,2017,February,9,25,1,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,65.98,0,0,Canceled,Cassie Brock,wilsontiffany@example.org,(889)695-7041x18535,30158499806008,2025-09-25 +City Hotel,0,0,2017,November,45,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,97.02,0,2,Check-Out,Dr. Andrea Marshall,esmith@example.org,(531)664-2196,4833381986240868,2025-02-14 +City Hotel,0,44,2017,February,8,17,0,2,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,174.07,0,2,Check-Out,Ryan Murphy,rebeccaanthony@example.org,(510)387-5986x0786,4814104431209061,2025-06-11 +Resort Hotel,0,34,2017,March,13,27,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,123.4,0,1,Check-Out,Aimee Gonzalez,hansondiane@example.net,(440)657-9268,4788948433165040,2025-10-29 +City Hotel,1,0,2017,November,46,18,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,1,1,A,B,0,Non Refund,16.0,179.0,0,Transient,44.56,0,0,Canceled,Elizabeth Dean,callahanamy@example.net,737.951.6061x40351,180036133915989,2025-02-14 +Resort Hotel,0,13,2017,November,45,4,1,4,2,0.0,0,Undefined,GBR,Groups,Direct,0,0,0,A,C,1,No Deposit,322.0,179.0,0,Transient-Party,41.63,0,0,Check-Out,Kevin Snyder,justinreeves@example.net,600.597.4652,4055029439640330,2025-03-13 +City Hotel,0,2,2017,April,18,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,3.94,1,1,Check-Out,Christie Mccullough,whitejamie@example.org,683-711-4506x4533,3585626925935461,2024-04-11 +City Hotel,1,31,2017,January,3,16,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,297.0,179.0,0,Transient,44.99,0,0,Canceled,Danielle Smith,awade@example.org,(692)240-1385x98646,4827665175958498,2024-04-16 +City Hotel,0,20,2017,April,15,12,2,3,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,145.37,0,3,Check-Out,David Reed,michelle32@example.com,001-485-522-8248x743,4060483341947,2024-10-06 +City Hotel,1,0,2017,October,43,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,12.0,77.0,0,Transient-Party,45.33,0,0,No-Show,Sherry Tapia,paynedominic@example.net,(829)682-5995x51140,180018060139114,2025-11-11 +Resort Hotel,0,1,2017,January,4,26,2,7,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,C,0,No Deposit,363.0,179.0,0,Transient,218.86,0,1,Check-Out,Matthew Sweeney,jacob76@example.org,001-200-306-7947x19912,4646062079122905305,2024-05-02 +Resort Hotel,1,175,2017,June,23,3,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,87.46,0,0,Canceled,Ashley Moreno,dylan02@example.org,816-628-2055,4828223905475464641,2024-06-03 +Resort Hotel,0,0,2017,June,24,16,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,58.21,0,0,Check-Out,Johnathan Brown,danielkim@example.net,999-203-9709,36095000865111,2026-02-26 +City Hotel,1,48,2017,February,6,4,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,75.53,0,0,Canceled,Michelle Davis DVM,jessica28@example.net,992-721-0561x2199,30333118709335,2024-12-04 +City Hotel,0,392,2017,March,11,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,Kelly Haynes,garyhughes@example.net,(754)670-7883,4214491827708447110,2024-07-01 +Resort Hotel,0,0,2017,April,14,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,218.53,0,1,Check-Out,William Miller,garciakatherine@example.com,772-251-2120x865,4443428932943616,2025-08-21 +Resort Hotel,1,24,2017,April,15,14,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,237.0,179.0,0,Transient,87.42,0,0,Canceled,Casey Wilkins,hwagner@example.com,001-290-770-1943,6011110533121050,2025-01-22 +City Hotel,1,412,2017,May,21,22,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.6,0,0,Canceled,Keith Graham,vnorton@example.net,+1-884-371-6344x1513,5435027255109354,2024-12-21 +Resort Hotel,1,66,2017,April,16,14,0,1,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,252.0,1,0,Canceled,Cynthia Green,mdoyle@example.org,001-924-203-6012x782,4892086459563,2024-08-20 +City Hotel,1,28,2017,August,35,31,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,66.27,0,1,Check-Out,Robert Haynes,luiscook@example.net,+1-817-960-2402x635,36752038847525,2025-12-21 +City Hotel,0,15,2017,October,41,11,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.62,0,1,Check-Out,Emily Nelson,wbaxter@example.org,001-855-429-9100,4393055512325912,2024-12-20 +City Hotel,0,19,2017,July,29,16,0,2,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,105.06,0,1,Check-Out,Dale Chan,xramos@example.org,+1-916-496-7083x238,4084986876431,2025-07-01 +City Hotel,1,157,2017,February,8,19,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,167.0,179.0,0,Transient,136.23,0,0,Canceled,Brittney Martin,georgemendez@example.com,(808)634-0017x047,3505794738994336,2025-05-08 +City Hotel,0,144,2017,June,26,28,1,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,1,Refundable,11.0,223.0,0,Transient-Party,77.38,0,0,Check-Out,Jason Herrera,webblindsay@example.com,5034816060,4261312508561,2025-05-15 +City Hotel,0,103,2017,February,9,24,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.42,0,0,Canceled,Christine Parker,daniellejohnson@example.net,(812)444-3374x95688,4218416972374,2025-08-25 +Resort Hotel,0,117,2017,November,48,25,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,C,0,No Deposit,378.0,179.0,0,Transient,83.53,0,1,Check-Out,Bryan Moore,wardjames@example.net,934.870.7246x2599,4289775016190994,2024-12-18 +City Hotel,0,204,2017,April,15,10,1,2,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,157.32,0,3,Check-Out,Samantha Terry,kimberly05@example.org,262.505.5067x28236,341962315105071,2025-11-29 +City Hotel,1,39,2017,October,40,3,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.5,0,0,Canceled,Russell Murphy,umorris@example.org,423-939-1998x62770,213141584834910,2025-11-04 +Resort Hotel,0,152,2017,May,18,1,1,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Group,213.45,0,1,Check-Out,David Kelly,warren28@example.com,389-428-2313x197,180058321295164,2025-01-02 +City Hotel,0,15,2017,January,3,16,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.24,0,1,Check-Out,Megan Green,chickman@example.org,906.655.3351,180019833388194,2025-01-29 +Resort Hotel,0,191,2017,March,11,11,0,3,2,1.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,54.83,0,1,Check-Out,Amanda Sullivan MD,kimberlygordon@example.com,001-664-968-4671,4136520706967557,2025-04-12 +City Hotel,0,244,2017,May,20,16,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,112.45,0,1,Check-Out,Danielle Murray,dbishop@example.net,443-695-1617,3581476661718232,2024-11-29 +Resort Hotel,1,263,2017,April,14,4,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,54.93,0,0,Canceled,Brenda Smith,hansenjessica@example.org,001-805-339-4772x31333,2297727390006514,2024-09-09 +City Hotel,1,9,2017,March,10,4,0,2,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Transient,137.09,0,0,Canceled,Vickie Anderson,qlong@example.com,734-956-4867x1153,4723842492137,2024-04-20 +City Hotel,0,0,2017,November,46,18,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,1.82,0,1,Check-Out,Jacqueline Mccoy,morganwilliam@example.com,803.434.1604,3559373028741973,2026-01-21 +City Hotel,1,205,2017,April,16,19,2,4,2,0.0,0,BB,USA,Online TA,Undefined,0,0,0,B,A,0,No Deposit,11.0,179.0,0,Transient,250.52,0,0,No-Show,Lauren Green,jennifer01@example.com,001-407-909-5014,372097631501083,2024-09-28 +Resort Hotel,0,2,2017,December,51,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,136.4,0,2,Check-Out,Alison Brown,scottgibson@example.net,552-463-5405x70136,3511990399446010,2025-04-01 +City Hotel,0,14,2017,August,32,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient,0.6,0,1,Check-Out,Jill Anderson,usanchez@example.org,393-684-5715x966,6585926455754974,2026-02-21 +City Hotel,0,29,2017,March,12,23,1,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.87,0,2,Check-Out,Sandra Rivera,annettewilson@example.net,001-382-950-4616,3567049231907995,2024-04-22 +Resort Hotel,1,59,2017,January,2,12,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,238.0,179.0,0,Transient,142.16,0,1,Canceled,Joel Jackson,davidward@example.org,732-871-4711,4442800888291516,2024-07-05 +Resort Hotel,1,33,2017,November,45,7,2,3,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,49.06,0,1,Check-Out,Samantha Foster,bryanlee@example.org,306.490.6613,4114763046572085,2024-05-17 +City Hotel,0,45,2017,July,28,15,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,96.86,0,0,Check-Out,Michael Thompson,ywoodard@example.net,529-788-7466,3550686454015425,2025-07-27 +City Hotel,0,153,2017,November,47,22,0,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,75,Transient,95.11,0,0,Check-Out,Cody Ramirez,joneschristine@example.org,461-823-4611,30191930298147,2024-05-31 +City Hotel,0,19,2017,December,52,27,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.45,0,1,Check-Out,Amanda Harvey,anthony40@example.com,439.430.9065,4043243550392697,2025-08-07 +City Hotel,1,161,2017,November,45,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,108.04,0,0,Canceled,Edward Jenkins,caleb74@example.com,+1-330-809-4634,3582241842344467,2026-01-13 +City Hotel,0,112,2017,February,8,23,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,127.95,0,1,Check-Out,Amy Ramirez,ballsteven@example.net,001-355-696-1689,4573515979747652,2024-11-07 +City Hotel,0,6,2017,October,40,5,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,F,1,No Deposit,69.0,179.0,0,Transient,82.63,0,0,Check-Out,Curtis Wilkerson,wnelson@example.com,001-490-988-9921x2030,4888516230118055,2024-04-21 +City Hotel,1,1,2017,December,52,26,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,78.35,0,0,Canceled,Lydia Pham,jgaines@example.com,863.765.6756,6011992620987463,2025-09-03 +Resort Hotel,0,90,2017,November,44,3,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,94.27,0,1,Check-Out,Virginia Casey,crystaldavis@example.com,001-842-709-5822x75044,3545601194332285,2024-08-06 +City Hotel,0,94,2017,April,15,12,2,5,2,2.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,223.36,0,1,Check-Out,Joshua Washington,westdonna@example.org,001-667-301-6299x8858,6011776775691339,2025-05-09 +City Hotel,0,20,2017,March,10,4,0,1,1,0.0,0,BB,IRL,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,219.0,0,Transient,140.29,0,1,Check-Out,Kathryn Price,cynthia81@example.org,(758)449-1441x6860,4161370362921193,2024-06-12 +City Hotel,0,195,2017,February,7,14,1,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,103.92,0,0,Check-Out,Francis Robinson,rayrobin@example.org,(573)449-9850x308,4617546699107610,2024-09-03 +City Hotel,0,16,2017,January,4,25,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,207.13,0,1,Check-Out,Paula Brown,lori56@example.com,649-500-9154x221,4405486831701,2024-06-14 +Resort Hotel,0,1,2017,February,8,22,4,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,241.3,0,2,Check-Out,Kendra Wang DVM,amarshall@example.org,001-223-307-4874x534,36920285332232,2026-02-26 +Resort Hotel,1,44,2017,November,46,14,2,5,2,2.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,Ariel Sandoval,david96@example.net,7749902573,4066355044024653251,2025-09-22 +Resort Hotel,0,12,2017,November,47,19,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,82.13,1,3,Check-Out,Robert Stark,davisbenjamin@example.org,+1-428-704-6674x6493,4778450670142016,2025-09-04 +City Hotel,1,25,2017,July,27,5,2,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.33,0,0,No-Show,Zachary Robinson,colekirk@example.org,964-299-8742,060402984854,2025-06-06 +City Hotel,0,3,2017,June,24,10,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,0.45,0,0,Check-Out,Rebecca Kelly,dberg@example.org,989-272-3985,4107464558770436,2025-12-16 +City Hotel,0,211,2017,March,12,18,0,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.38,0,0,Check-Out,Sarah Thompson,nicolewade@example.net,(666)855-2488x5303,4757625409397,2025-02-15 +City Hotel,0,210,2017,June,24,13,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,92.12,0,3,Check-Out,Renee Wolfe,kingtracie@example.org,+1-767-530-4000,3532341411544090,2024-05-17 +City Hotel,1,2,2017,June,24,12,1,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,80.9,0,2,No-Show,Alyssa Haynes,shannon27@example.com,(356)473-7292x6876,4626775045684514546,2025-02-20 +City Hotel,1,124,2017,May,22,31,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,62,Transient,101.21,0,0,Canceled,Kristy Hart,marcuslopez@example.org,001-888-244-1425x33602,4187161315166906485,2024-04-30 +City Hotel,0,18,2017,April,15,9,2,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,207.43,0,2,Check-Out,William Keith,williamsonmichael@example.net,001-688-677-5787x359,2708402488950089,2025-08-29 +City Hotel,1,14,2017,February,8,21,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,165.89,1,2,Check-Out,Eric Henry Jr.,amandawarren@example.net,(834)728-5357x46206,676249146561,2024-06-10 +Resort Hotel,0,12,2017,September,38,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,12.0,179.0,0,Transient,51.37,1,1,Check-Out,Daniel Fox,xbowers@example.net,(273)259-6552,213129616385472,2026-02-02 +City Hotel,0,219,2017,February,6,7,1,2,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,149.61,0,3,Check-Out,Thomas Harris,dthompson@example.org,776-896-6671,38863183006771,2025-12-14 +Resort Hotel,0,0,2017,June,24,11,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,52.6,1,1,Check-Out,Mitchell Sellers,jasonhardy@example.net,+1-230-275-9257x97766,4738685590540,2024-09-20 +City Hotel,0,79,2017,February,8,22,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,236.0,179.0,0,Transient,119.54,0,1,Check-Out,Erica Johnson,osnow@example.org,001-702-773-1372x65125,4598624603190767,2026-01-24 +Resort Hotel,0,153,2017,November,46,13,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient-Party,42.43,0,1,Check-Out,Sylvia Schroeder,hollyscott@example.net,299.825.2340x2119,180062339555437,2025-11-28 +City Hotel,0,4,2017,October,43,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,1,No Deposit,15.0,77.0,0,Transient,53.59,0,0,Check-Out,Shannon Yu,barbaramorales@example.com,436-297-7944x7749,4846118165259,2025-08-10 +Resort Hotel,0,92,2017,February,6,10,2,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,1,E,A,0,No Deposit,247.0,179.0,0,Transient,116.79,0,2,Check-Out,Tom Foster,jennifermarsh@example.com,(303)818-2736x921,3526925650082016,2025-04-30 +City Hotel,0,72,2017,November,45,10,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,108.3,1,1,Check-Out,Eric Taylor,smitchell@example.com,001-277-410-8669x4793,36378700958992,2024-11-13 +Resort Hotel,0,0,2017,April,17,27,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,D,0,No Deposit,14.0,179.0,0,Transient,196.94,0,2,Check-Out,Travis Conner,ericawright@example.net,+1-739-427-8178,501888683510,2024-12-12 +Resort Hotel,0,0,2017,December,50,14,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,51.28,0,0,Check-Out,Marie Thompson,luisblake@example.net,986.390.3004x5129,213131287194852,2025-07-08 +Resort Hotel,0,13,2017,February,8,20,2,2,2,1.0,0,BB,NOR,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,229.74,1,1,Check-Out,Melissa Mcfarland,david39@example.org,001-267-916-1370x1811,4695717700381250226,2025-11-07 +Resort Hotel,0,54,2017,March,10,5,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,238.0,179.0,0,Transient,252.0,1,1,Check-Out,Courtney Chapman,zstanley@example.org,455.927.8451,30479439189945,2025-06-24 +City Hotel,1,157,2017,April,17,24,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,241.95,0,2,Canceled,Eric Barker,thomascook@example.org,001-610-353-8834x9877,4703628845394550,2025-02-07 +City Hotel,1,289,2017,December,52,28,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,42,Transient-Party,63.64,0,0,Canceled,Nicholas Rush,melodyjacobson@example.com,(867)497-8086x847,4745621765396982210,2024-04-27 +City Hotel,0,78,2017,December,49,7,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,82.73,0,0,Check-Out,Jenna Gamble,briangarcia@example.com,399-967-2334x61789,5113459430683582,2025-04-08 +City Hotel,0,4,2017,November,46,12,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.83,0,1,Check-Out,Amanda Guzman,johnchan@example.org,610.920.3786x4118,376895823197818,2025-03-06 +Resort Hotel,1,34,2017,June,24,13,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,238.0,179.0,0,Transient,50.48,0,2,Canceled,Tracy Walker,hayley21@example.com,971-879-9388x684,630434319905,2026-03-02 +City Hotel,0,15,2017,September,39,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,40.29,1,0,Check-Out,Taylor Taylor,qnorris@example.net,001-338-524-6987x16855,5424322444165950,2026-03-14 +City Hotel,1,48,2017,December,51,20,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,41,Transient,103.27,0,0,Canceled,Cynthia Haas,gregory63@example.com,327-773-1528,639043305437,2024-06-06 +Resort Hotel,0,1,2017,September,39,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,43.22,0,1,Check-Out,Stephen Davis,laurenrice@example.com,+1-504-636-1291x516,4773699282050778,2024-04-04 +Resort Hotel,0,369,2017,July,27,3,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient-Party,80.94,0,0,Check-Out,Margaret Tanner,olivialee@example.com,912-385-8913x08981,4025130262931300638,2024-11-03 +Resort Hotel,0,97,2017,October,41,7,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,254.0,179.0,0,Transient-Party,94.26,0,0,Check-Out,Derek Wright,campbelljoseph@example.com,659-587-2483,4402093910368539138,2025-06-03 +City Hotel,1,101,2017,June,22,1,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,Non Refund,14.0,179.0,16,Transient,111.25,0,0,Canceled,David Rodriguez,singhnicole@example.com,5673416712,3536649730609105,2025-12-20 +Resort Hotel,0,167,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,221.0,0,Transient-Party,81.64,0,0,Check-Out,James Oconnor,josephroberts@example.org,999.479.6887,3527857746040386,2025-10-03 +City Hotel,0,16,2017,February,9,28,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.61,1,1,Check-Out,Stacey Snyder,jonestanner@example.com,837-524-3675x235,6011012046461280,2025-10-02 +City Hotel,0,55,2017,October,40,5,0,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,41.0,0,0,Check-Out,Joshua Garcia,kelly95@example.com,210.789.7335x613,180072352731625,2024-06-21 +City Hotel,0,101,2017,August,35,25,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,109.08,0,2,Check-Out,Sean Curtis,garrett18@example.net,(247)919-5353,3503186929584558,2026-01-27 +Resort Hotel,0,144,2017,November,44,3,1,0,2,0.0,0,BB,POL,Groups,Corporate,0,0,0,A,C,1,Refundable,12.0,224.0,0,Transient-Party,80.36,0,0,Check-Out,Carla Jones,hayden46@example.org,621.587.1634x578,3595119623695965,2024-06-03 +City Hotel,0,12,2017,March,10,8,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,63.44,0,0,Check-Out,Elizabeth Flores,nolancharles@example.net,001-497-541-3531,6532336743634190,2024-10-22 +City Hotel,1,5,2017,October,42,17,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,B,1,No Deposit,13.0,179.0,0,Transient-Party,63.69,0,0,No-Show,Angela Jackson,martinezrenee@example.com,+1-946-392-9783x70124,180048231967051,2024-11-15 +Resort Hotel,0,230,2017,January,2,4,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Transient-Party,76.13,0,0,Check-Out,Nicholas Payne,lmay@example.com,3104383331,675987126595,2025-04-04 +City Hotel,1,82,2017,April,15,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,Non Refund,13.0,179.0,0,Transient,117.53,0,0,Canceled,Anna Wheeler,lroberts@example.net,001-879-874-4527,4198615848155,2025-07-20 +Resort Hotel,0,144,2017,September,36,4,2,5,1,0.0,0,BB,SWE,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,321.0,80.0,0,Transient,51.87,0,2,Check-Out,Karen Johnson,cthompson@example.net,(524)328-2376x6378,180012343702848,2024-11-17 +Resort Hotel,1,14,2017,August,31,1,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,109.1,0,0,Canceled,Carmen Preston,marcuspearson@example.net,806.667.1237,4655993121827860388,2024-12-04 +Resort Hotel,0,11,2017,January,2,2,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,130.19,0,1,Check-Out,Brian Harris,pbrooks@example.net,438.936.4548,3529348495569153,2026-02-02 +City Hotel,0,44,2017,June,23,6,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Contract,77.92,0,0,Check-Out,Michael Bowen,wardmelissa@example.org,695.948.1661,213180692406468,2024-07-06 +City Hotel,0,165,2017,April,15,12,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.03,0,1,Check-Out,Deborah Campbell,hstewart@example.com,001-710-282-9682x924,36234282140501,2026-02-24 +Resort Hotel,0,149,2017,April,17,26,4,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,53.63,0,1,Check-Out,Anthony Armstrong,tina18@example.org,001-447-721-5563,180048522022772,2024-06-03 +Resort Hotel,0,26,2017,June,23,8,1,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Group,61.98,0,0,Check-Out,Brittany Ward,timothy92@example.net,(458)688-5821,30418996107916,2025-02-08 +Resort Hotel,1,286,2017,November,48,28,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,1,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,74.23,0,0,Canceled,Edward Stanley,brandonrosario@example.net,2239814049,213192183438223,2026-03-13 +City Hotel,1,30,2017,May,20,19,2,5,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,252.0,0,3,Canceled,Christina Johnson,jordansingh@example.org,213.831.2568,3509767988436550,2025-11-07 +Resort Hotel,1,37,2017,August,32,6,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,248.0,179.0,0,Transient,83.08,0,0,Canceled,Edgar Miller,ramseychristopher@example.com,748.793.6594,3599618918269804,2026-03-15 +City Hotel,0,100,2017,December,52,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Contract,61.03,0,0,Check-Out,Elizabeth Sanders,ppetty@example.net,701.972.7853x9874,4809859902598857,2025-07-23 +City Hotel,0,33,2017,October,40,6,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,240.67,0,0,Check-Out,Matthew Davis MD,rnichols@example.com,664.214.9286,4650747523734003,2025-06-10 +Resort Hotel,1,144,2017,February,9,28,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,238.05,0,0,Canceled,Stephen Wood,kylegarner@example.net,481-301-2900,2284487501640447,2024-04-30 +City Hotel,1,61,2017,November,47,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,129.0,179.0,15,Transient,104.42,0,0,Canceled,Dennis Marshall,mccallcrystal@example.org,4792636690,372536423018921,2025-09-05 +City Hotel,1,139,2017,April,17,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,125.82,0,1,Canceled,Derrick Brown,vfisher@example.net,710-493-2821x25285,4853855368934697868,2026-03-10 +Resort Hotel,0,0,2017,September,37,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,1,No Deposit,14.0,67.0,0,Transient-Party,47.82,1,0,Check-Out,Mary Miller,bwilson@example.com,001-402-798-1352x8338,341662469455153,2025-06-21 +City Hotel,0,85,2017,March,13,26,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,76.62,1,2,Check-Out,Joshua Arellano,callen@example.com,878-267-9630x23598,501857906348,2025-10-01 +City Hotel,1,27,2017,April,16,16,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.6,0,2,Canceled,Kristen Randall,ibarradylan@example.org,4006046835,3590307713098787,2025-01-09 +City Hotel,0,48,2017,April,17,22,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.75,0,1,Check-Out,Jennifer Nichols,sharper@example.net,750-976-5233,3558921284869440,2024-11-28 +City Hotel,1,414,2017,June,23,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,101.71,0,0,Canceled,Karen Keith,cruzalbert@example.org,2198165092,4400675615135016746,2024-09-25 +City Hotel,0,129,2017,June,23,4,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,143.55,0,2,Check-Out,Blake Orr,samuel59@example.org,001-351-452-7012x740,30512745306959,2025-03-19 +Resort Hotel,0,148,2017,September,37,14,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,13.0,179.0,0,Transient,47.61,0,2,Check-Out,Kathryn Lester,rodriguezfred@example.org,+1-967-364-2495x476,4486256224215767,2024-10-28 +City Hotel,1,335,2017,May,20,16,1,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,59,Transient,99.28,0,0,Canceled,Megan Oliver,jessicalee@example.com,001-522-447-8221,30105153869517,2024-05-18 +City Hotel,0,18,2017,December,51,20,1,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.69,0,1,Check-Out,Peter Thompson,smithjonathan@example.org,(888)707-6129x270,4528335965890304963,2025-09-25 +City Hotel,1,14,2017,July,28,9,0,1,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,99.28,0,0,Canceled,Dr. Rhonda Martinez,reneecastillo@example.net,001-336-661-2112x37928,4198643637784137796,2024-07-27 +Resort Hotel,1,241,2017,July,28,10,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient,76.71,0,0,No-Show,William Graham,gmccormick@example.org,001-980-622-9835x874,3578969009108913,2026-03-01 +City Hotel,0,173,2017,March,10,5,2,2,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,91.87,0,1,Check-Out,Lori Flowers MD,danielthompson@example.net,001-541-724-0438x42883,4757494497181039357,2026-03-01 +City Hotel,1,115,2017,January,2,11,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.02,0,0,Canceled,Suzanne Jones,qoneal@example.net,001-711-458-2702x4528,4034872898809,2025-07-16 +City Hotel,1,46,2017,April,15,9,0,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,101.22,0,1,Canceled,James Nguyen,donald07@example.net,344.663.3211,675973042061,2025-09-28 +City Hotel,1,11,2017,October,43,21,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.86,0,1,Canceled,Jimmy Marks,nhines@example.net,301.217.2396x3190,2720955197108848,2024-12-18 +City Hotel,0,0,2017,April,14,6,0,2,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,91.28,0,1,Check-Out,Lisa Mills,qwagner@example.org,562.237.8556x712,4771451884476432342,2025-05-02 +Resort Hotel,1,128,2017,July,29,18,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,65.26,0,0,Canceled,Jason Hernandez,huynhdeborah@example.com,267-843-0212,213143698247658,2024-12-03 +City Hotel,1,260,2017,September,38,20,1,2,2,0.0,0,SC,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,159.05,0,0,Canceled,Olivia Ayers,ramirezjoseph@example.com,(432)867-3958x9483,4311061130917,2025-09-16 +Resort Hotel,0,2,2017,September,36,5,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,266.0,179.0,0,Transient,53.63,0,1,Check-Out,Kristine Garcia,esmith@example.org,564-412-6630x5968,6011650379216134,2025-05-11 +City Hotel,0,1,2017,January,2,7,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,G,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,Joseph Cooper,tjackson@example.net,723.631.7773x64933,6011364532426271,2025-06-05 +City Hotel,0,87,2017,February,6,8,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.25,0,1,Check-Out,James Washington,wjones@example.net,(881)875-5795x8780,4145663314942098,2025-09-30 +Resort Hotel,0,10,2017,May,20,12,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,107.45,0,2,Check-Out,Amanda Hill,gene59@example.net,866.409.6850x75663,180076489556755,2024-07-30 +City Hotel,1,382,2017,May,20,19,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,79.98,0,0,Canceled,Lee Steele,stephen57@example.net,738.284.1017,4470256088936175,2024-08-17 +City Hotel,0,444,2017,February,6,5,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,134.41,0,1,Check-Out,Steve Rivera,wlewis@example.com,001-249-456-6035x623,2356766652850357,2026-01-26 +City Hotel,1,8,2017,April,17,24,0,3,2,1.0,0,HB,ISR,Direct,Direct,0,0,0,L,E,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,No-Show,Patrick Mccall,brittanyjohnson@example.com,355-678-1794x63295,346935898029665,2025-06-20 +Resort Hotel,0,142,2017,November,44,3,1,3,1,0.0,0,Undefined,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,50.28,0,0,Check-Out,Alicia Roth,ewoods@example.net,+1-667-447-0237x56190,4681493567007930,2024-11-22 +City Hotel,0,3,2017,February,8,22,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,129.75,0,0,Check-Out,Douglas Vasquez,peterhamilton@example.com,746-524-1674x974,5588453084218882,2025-10-26 +Resort Hotel,1,101,2017,November,47,25,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,316.0,179.0,41,Transient,45.05,0,1,Check-Out,Annette Melton,jennifer10@example.com,001-360-348-3182,213113298034186,2025-08-05 +City Hotel,0,14,2017,April,16,16,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,138.67,0,2,Check-Out,William Ramos,catherineblair@example.net,+1-914-885-0618,4836349943586219770,2026-02-18 +Resort Hotel,0,32,2017,November,44,2,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,55.24,0,0,Check-Out,Debra Butler,stewartkelsey@example.org,644.906.0882,4880448332312139,2024-05-20 +Resort Hotel,0,103,2017,March,13,27,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,298.0,179.0,0,Transient-Party,136.41,0,0,Check-Out,Chelsea Lewis,hestermatthew@example.com,+1-492-422-9783x09917,30475031464389,2026-01-22 +Resort Hotel,1,380,2017,March,10,11,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,39.22,0,0,Canceled,Natalie Malone,baxteralyssa@example.net,001-993-998-9085x532,4082137281827157,2025-09-21 +City Hotel,0,35,2017,December,51,20,1,2,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,78.75,0,1,Check-Out,Samantha Robertson,ymontgomery@example.com,+1-477-605-5037x18196,180001834195091,2025-10-22 +City Hotel,0,13,2017,December,50,10,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,135.12,0,2,Check-Out,Eric Hunter,bondrobert@example.com,001-776-965-9053x497,501866087924,2026-03-04 +City Hotel,0,66,2017,May,18,1,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,144.06,0,1,Check-Out,Samuel Suarez,erica60@example.com,745-610-1598x455,3575932497116254,2024-07-14 +City Hotel,0,3,2017,November,47,19,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,79.41,0,1,Check-Out,Corey Whitaker,megan21@example.org,662-532-1791x40186,3570075712786413,2025-08-31 +City Hotel,0,3,2017,May,20,14,2,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,E,2,No Deposit,13.0,179.0,0,Transient,1.97,0,0,Check-Out,Danielle Bryant,masondavid@example.org,001-957-416-1702x972,180055212166983,2025-01-28 +City Hotel,1,50,2017,September,38,18,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,103.05,0,1,Canceled,Michele Hill,noahroberson@example.com,9294455469,4247880215619024,2025-09-29 +Resort Hotel,0,54,2017,November,47,22,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,E,0,No Deposit,244.0,179.0,0,Transient,50.93,0,3,Check-Out,Kathy Reid,foxnancy@example.org,(414)524-4839x41757,2289364243692041,2024-08-07 +City Hotel,1,109,2017,April,14,7,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient,111.71,0,1,Canceled,Andre Watson,michael40@example.net,6898612694,373974863235516,2025-01-19 +Resort Hotel,0,135,2017,April,14,7,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,223.0,0,Transient-Party,42.63,0,0,Check-Out,Cassandra Harrell,toni93@example.com,(451)573-7234x238,3582112646851702,2026-03-11 +City Hotel,0,100,2017,December,52,23,2,5,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,E,B,1,No Deposit,13.0,179.0,0,Transient,194.4,0,3,Check-Out,Hannah Martin,vbrooks@example.org,+1-892-556-5846,3546406128424946,2025-07-02 +Resort Hotel,1,261,2017,April,15,14,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,187.62,0,0,Canceled,Nicole Barker,danielle77@example.net,568.728.7425x9437,2698100951404004,2025-11-30 +Resort Hotel,0,241,2017,April,15,8,4,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,241.35,0,1,Check-Out,James Martin,benjamin76@example.net,001-618-915-8084,4323462615475930,2024-04-19 +City Hotel,0,28,2017,May,20,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient-Party,64.57,0,0,Check-Out,Traci Vincent,kiara57@example.org,(462)473-8724x88635,2269769467082733,2024-04-16 +City Hotel,0,53,2017,June,23,8,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,78.61,0,1,Check-Out,Megan Adams,qhutchinson@example.net,369-633-7536,2248718543143304,2024-10-25 +Resort Hotel,0,8,2017,May,19,13,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,180.0,179.0,0,Transient-Party,63.36,0,1,Check-Out,Alejandro Deleon,jessica25@example.org,426.699.5376,4713172170605502,2025-12-21 +City Hotel,0,11,2017,December,49,8,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,155.14,0,1,Check-Out,Alexa Buck,georgerivera@example.net,7916941229,4864104196709,2024-05-23 +Resort Hotel,0,4,2017,October,42,19,1,5,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,44.48,1,2,Check-Out,Lindsay Smith,robert90@example.org,603.448.9931x926,3567626470810848,2025-07-21 +Resort Hotel,1,192,2017,September,36,4,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,94.74,0,0,Canceled,Robert Torres,xtrujillo@example.org,+1-698-721-7449,2270044814164718,2025-07-17 +City Hotel,0,49,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,102.33,0,0,Check-Out,Maria Coleman,melissachapman@example.net,+1-886-373-9211x219,213148322313925,2024-07-05 +City Hotel,1,240,2017,February,7,15,0,3,2,0.0,0,SC,PRT,Offline TA/TO,Undefined,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,103.75,0,0,Canceled,Gregory King,christinehart@example.com,472.200.1029x27182,4634060724632,2025-01-07 +City Hotel,0,97,2017,April,16,22,2,4,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,109.43,0,0,Check-Out,Michael Holloway,natalie39@example.com,001-244-667-5075,6582867588836952,2024-10-25 +Resort Hotel,0,38,2017,June,24,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,320.0,179.0,0,Transient,45.89,0,0,Check-Out,Brian Hunt,lscott@example.net,(812)624-7141x1673,4011142932587719812,2024-04-13 +City Hotel,0,14,2017,March,12,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,87.73,0,1,Check-Out,Sarah Brooks,thomaslori@example.net,806-576-1461x17769,4000740825282,2025-08-18 +City Hotel,0,3,2017,May,18,5,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,97.86,0,1,Check-Out,Lisa Evans,joseph70@example.org,+1-711-409-8983x973,6011937786777828,2024-09-26 +Resort Hotel,0,26,2017,June,23,8,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,227.0,179.0,0,Transient-Party,77.3,0,0,Check-Out,Arthur Mcneil,katherine59@example.net,936.674.1304x504,3594123393442633,2025-01-21 +Resort Hotel,0,7,2017,December,51,17,2,2,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,165.0,179.0,0,Transient-Party,77.98,0,0,Check-Out,Shannon Green,pughjustin@example.com,001-342-543-8373x9007,2288708584845173,2025-02-22 +City Hotel,1,10,2017,March,11,9,0,1,1,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,2.46,0,0,Canceled,Stephanie Evans,terry53@example.net,(659)610-6183x55496,4713526063866,2024-09-19 +Resort Hotel,1,42,2017,March,13,27,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Canceled,Ralph Yoder,chad39@example.com,210.979.2359x551,344008071635609,2024-07-17 +City Hotel,0,31,2017,November,48,29,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,1,E,E,0,No Deposit,10.0,179.0,0,Transient,115.78,0,1,Check-Out,Rebekah Greene,vthornton@example.org,(454)457-0278,3507804222153527,2025-06-12 +City Hotel,0,17,2017,January,2,4,0,2,1,0.0,0,SC,PRT,Online TA,Direct,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,138.31,0,2,Check-Out,Melanie Griffith,robert42@example.net,447-662-2898,30243563459593,2024-09-19 +City Hotel,0,83,2017,February,7,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,142.75,0,1,Check-Out,Yolanda Green,badkins@example.com,(380)931-0846,4919229643470039,2024-09-08 +City Hotel,0,79,2017,February,6,6,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,139.65,0,2,Check-Out,James Johnson,dixondonald@example.com,(792)465-9938x788,3511381051312403,2025-01-24 +City Hotel,0,34,2017,April,15,8,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,239.0,179.0,0,Transient,217.73,0,1,Check-Out,Laura Lee,jamesmcclure@example.org,+1-918-389-6672,567269013502,2024-09-29 +Resort Hotel,0,20,2017,May,19,8,2,5,2,1.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,42.04,0,0,Check-Out,Courtney Nichols,rosetyrone@example.com,950.381.4635x80805,373553828671047,2024-09-26 +Resort Hotel,0,105,2017,November,48,26,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,104.77,0,0,Check-Out,Susan Powers,shaneboyd@example.net,(633)592-8298x11862,371912052254981,2025-04-21 +City Hotel,1,15,2017,April,15,8,0,4,2,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,235.62,0,1,Canceled,Sarah Pittman,mwinters@example.org,+1-701-218-0386,581153646442,2024-07-15 +Resort Hotel,0,13,2017,November,45,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,127.0,179.0,0,Transient,41.07,1,0,Check-Out,Catherine Davis,heatherwilliams@example.org,306.666.5575,3550539534183947,2025-01-02 +Resort Hotel,0,14,2017,September,37,10,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,D,D,1,No Deposit,240.0,179.0,0,Transient,47.64,1,2,Check-Out,David Stokes,castillolinda@example.com,001-523-481-4900x666,6526152678344301,2025-03-10 +City Hotel,0,0,2017,June,23,9,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,1,D,D,1,No Deposit,12.0,179.0,0,Transient,52.16,0,1,Check-Out,Catherine Frazier,riddlejames@example.net,(958)916-0223,347634271723502,2024-06-26 +City Hotel,1,30,2017,September,37,12,1,1,1,1.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,47.37,0,0,Canceled,Brandon Kelly,bruceochoa@example.com,001-494-450-5495,2720060321253717,2025-06-02 +City Hotel,1,110,2017,March,13,23,1,1,2,1.0,0,BB,NOR,Direct,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,206.47,0,0,Canceled,Elizabeth French,christopher43@example.com,(449)286-7942,2262313113621839,2025-07-17 +Resort Hotel,0,83,2017,July,30,28,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient-Party,77.99,0,0,Check-Out,David Carter,lbrown@example.net,(585)992-7751x309,4635964914906,2026-01-04 +City Hotel,1,291,2017,March,11,18,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,98.3,0,0,Canceled,Julie Delacruz,mccoysamantha@example.org,429.472.9140,4989658031699491,2024-06-06 +City Hotel,0,4,2017,June,23,6,2,4,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,176.26,0,2,Check-Out,Terry Jones,thomastran@example.org,(780)681-4635x50666,378924793305017,2024-12-16 +City Hotel,1,2,2017,April,14,4,0,4,2,0.0,0,SC,ITA,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,201.72,0,0,Canceled,Kathryn Dillon,gabriellejones@example.net,3793137057,4060097458787014129,2026-01-25 +Resort Hotel,0,173,2017,March,12,18,4,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,131.19,0,3,Check-Out,Edwin Brown,sarahwashington@example.net,001-432-372-3566x25783,38248167147637,2025-08-08 +Resort Hotel,0,87,2017,April,14,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,3,No Deposit,240.0,179.0,0,Transient-Party,108.91,1,1,Check-Out,Brenda Gonzalez,djimenez@example.com,001-468-244-5655x20133,501856603318,2025-05-13 +City Hotel,1,14,2017,August,31,2,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.32,0,0,Canceled,Keith Knox,aallen@example.com,(473)971-9402x071,213129456470541,2024-11-01 +City Hotel,1,0,2017,November,45,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,9.0,179.0,0,Transient,80.0,0,0,No-Show,Eugene Baldwin,wbennett@example.com,471.391.0164x6082,347090812918731,2025-02-15 +City Hotel,1,370,2017,June,25,19,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,101.67,0,0,Canceled,Katherine Welch,mark03@example.com,+1-992-872-6575x52932,4512494080585811,2026-03-15 +City Hotel,1,166,2017,June,26,30,1,0,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,98.0,0,0,Canceled,Mark Smith,austinlinda@example.net,333.302.2930x8485,5528583387394940,2025-09-03 +City Hotel,0,108,2017,December,52,26,0,4,2,0.0,0,HB,BEL,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,65,Transient-Party,84.17,0,0,Check-Out,Philip Jackson,james11@example.org,660-688-6216,30231742601748,2024-10-26 +Resort Hotel,1,6,2017,June,23,8,0,6,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,158.58,0,0,Canceled,Katherine Gallagher,patrickharris@example.com,001-720-527-8183x25244,567678090026,2025-02-10 +City Hotel,0,7,2017,October,43,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,1,No Deposit,13.0,64.0,0,Transient,40.16,0,1,Check-Out,Lucas Schultz,jamie08@example.net,872-968-2155,4301747684809,2026-01-05 +City Hotel,0,139,2017,December,2,30,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,160.76,0,0,Check-Out,Vincent Reyes,jameswright@example.net,+1-319-720-1248x4417,377357738469872,2025-11-11 +Resort Hotel,0,0,2017,March,10,8,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,33.0,179.0,0,Transient-Party,0.64,1,0,Check-Out,Curtis Watson,harriserika@example.org,743-496-1890x7831,3536374520716065,2025-11-05 +City Hotel,0,46,2017,May,18,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,73.0,179.0,0,Contract,61.64,0,2,Check-Out,Frank Whitaker,terri85@example.com,749.393.7269,213141701941150,2025-09-03 +City Hotel,1,113,2017,August,33,18,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,139.62,0,0,Canceled,Michael Sims,marshalldouglas@example.com,001-913-620-5853,5441655989174096,2024-06-05 +City Hotel,0,83,2017,October,43,24,0,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,125.69,0,1,Canceled,Michael Cooper,reynoldslauren@example.com,558.204.8276x42336,630475427955,2025-12-18 +Resort Hotel,1,154,2017,April,16,19,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,92.29,0,0,Canceled,James Chapman,cruzjuan@example.org,+1-714-972-0080x912,6571819273762525,2026-03-15 +City Hotel,0,1,2017,April,17,20,0,1,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,144.19,0,0,Check-Out,Rodney Evans,crystal14@example.com,578.521.0567,38380881117883,2025-12-25 +Resort Hotel,1,71,2017,April,14,2,2,4,3,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient-Party,229.98,0,0,Canceled,Nicholas Carlson,gkim@example.com,506.765.2567x05534,30429222247418,2024-12-31 +City Hotel,1,140,2017,March,9,1,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.05,0,1,Canceled,Stephen Cowan,anna34@example.net,756.550.2671,180082312419559,2026-02-15 +Resort Hotel,0,54,2017,March,13,23,0,2,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,E,E,0,No Deposit,243.0,179.0,75,Transient,192.23,0,1,Check-Out,Steven Howard,shawnkoch@example.net,001-345-357-4044x9927,348625511216058,2024-06-18 +City Hotel,0,116,2017,January,2,4,2,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,27.0,179.0,0,Transient-Party,60.21,0,1,Check-Out,Travis Hull,lwright@example.net,2836790879,3553404175402048,2024-12-20 +Resort Hotel,0,153,2017,November,44,4,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,G,2,Refundable,13.0,223.0,0,Transient-Party,60.72,0,0,Check-Out,Darryl Acosta,brian95@example.com,886-656-7385,3519939492074668,2024-07-07 +Resort Hotel,1,114,2017,August,32,5,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,128.18,0,1,Canceled,Nicholas Lawrence,michaelestrada@example.org,+1-388-700-1253x90532,4683026333323248017,2024-09-27 +Resort Hotel,0,56,2017,April,14,4,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,208.83,0,2,Check-Out,Jacob Santos,joyhampton@example.com,001-996-336-0402x451,3520101980925516,2024-04-24 +City Hotel,1,8,2017,July,27,5,0,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,138.75,0,1,Check-Out,Shawn Scott,shawntate@example.org,001-749-545-2831,346935153538442,2025-11-24 +City Hotel,0,192,2017,November,47,22,1,2,2,0.0,0,BB,BEL,Groups,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,63.41,1,0,Check-Out,Amber Vang,amy84@example.net,489.460.1052,30034865473717,2025-01-21 +City Hotel,0,41,2017,January,2,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient-Party,99.55,0,0,Check-Out,Martha Smith,vargaspamela@example.net,653.549.5875x674,4568893324949,2025-12-23 +Resort Hotel,0,0,2017,November,46,13,2,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,179.0,75,Transient-Party,61.96,1,3,Check-Out,Jennifer James,maria51@example.com,(332)925-0324x6778,4043824523589,2025-11-08 +Resort Hotel,0,153,2017,March,10,5,1,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,128.29,0,3,Check-Out,Kara Hernandez,colleen19@example.com,+1-532-626-5711x4187,213164845112702,2025-10-09 +Resort Hotel,0,0,2017,October,40,3,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient-Party,46.38,1,1,Check-Out,Lorraine Turner,mary64@example.com,001-677-578-4265x9798,6011029765916989,2024-09-30 +Resort Hotel,0,105,2017,October,43,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,78.0,179.0,0,Transient,81.79,0,1,Check-Out,Mary Nelson,uking@example.org,(320)517-1114x2308,180027018533328,2026-02-11 +City Hotel,0,65,2017,April,14,6,2,5,2,1.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,105.87,0,1,Check-Out,Breanna Rivas,makaylasmith@example.com,001-272-460-3463x1789,6011673641771488,2025-12-10 +City Hotel,1,36,2017,August,34,19,0,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,80.47,0,0,Canceled,Nathan Wilson,schmittgeoffrey@example.org,867.339.6369,4278772326441,2025-03-04 +City Hotel,0,105,2017,March,14,30,0,3,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,112.92,0,0,Check-Out,Brian Gonzalez,xsimpson@example.com,001-578-470-0174x5388,4399925014543242,2025-10-07 +City Hotel,1,73,2017,March,12,23,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,127.01,0,0,Canceled,Dennis Mills,tristan01@example.net,(519)374-0282,4614835537712209,2024-08-27 +City Hotel,1,169,2017,May,20,16,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.6,0,1,Canceled,Michael Phillips,mgill@example.net,(243)403-5901x8181,3593877006342065,2025-02-08 +Resort Hotel,1,149,2017,November,47,22,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient,111.16,0,0,Canceled,Jon Clark,kathy14@example.com,405-202-5381,345652479290662,2024-11-12 +City Hotel,0,38,2017,January,2,7,2,2,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,1,3,Check-Out,Erin Smith,vmcmillan@example.net,646-797-9559x3665,4893214947957444,2025-07-08 +City Hotel,0,268,2017,March,13,29,0,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,89.51,0,0,Check-Out,Susan Conley,rodneythomas@example.net,621-980-8595x44863,2252522069106924,2025-06-01 +City Hotel,1,145,2017,February,5,3,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,234.0,179.0,0,Transient,111.06,0,1,Canceled,Brittany Davis,rebecca28@example.net,383-229-5060,2717313258952875,2024-04-23 +Resort Hotel,1,0,2017,November,47,21,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,36.92,0,1,No-Show,Misty Garcia,brownhayley@example.net,+1-298-445-2761x988,6011440975896970,2025-06-25 +City Hotel,1,42,2017,June,24,13,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.28,0,0,Canceled,David Hinton,murrayrachel@example.org,727-243-4184x243,3559802950648525,2024-09-03 +City Hotel,0,83,2017,May,21,23,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.55,0,1,Check-Out,John Garcia,sallen@example.com,781-448-5396x831,3593535272455512,2026-02-17 +Resort Hotel,0,51,2017,March,10,2,2,5,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,235.6,0,2,Check-Out,Andrew Roberts,chambersdaniel@example.org,293-847-3725x773,3580335350404671,2025-02-10 +City Hotel,1,301,2017,April,16,17,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.69,0,0,Canceled,Emily Rodgers,elizabethsmith@example.com,285.856.1908,4192962470571069,2024-08-02 +Resort Hotel,0,9,2017,September,35,2,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,40.94,0,0,Check-Out,Peter Williams,lauriereese@example.com,442.858.7977,3592007941851191,2025-07-22 +Resort Hotel,0,19,2017,July,30,26,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,80.74,1,1,Check-Out,Mary Jackson,michael52@example.com,(457)662-2978,3584629124243308,2025-10-29 +City Hotel,0,0,2017,January,2,7,2,1,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,113.0,0,1,Check-Out,Jeffrey Howell,keith28@example.net,291.482.4553x72420,4775437510520022934,2025-08-22 +City Hotel,0,10,2017,January,2,3,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,163.42,0,2,Check-Out,Anna Briggs,mistywolf@example.com,+1-399-769-5280x70771,3556080391267147,2025-10-28 +Resort Hotel,0,2,2017,June,22,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,41.16,1,1,Check-Out,James Rivers,gmcdaniel@example.com,358.822.7935x62559,4927100020261640,2025-03-05 +City Hotel,0,1,2017,December,50,10,0,2,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,D,0,No Deposit,183.0,179.0,0,Transient,141.11,0,0,Check-Out,James Jefferson,chungerin@example.com,343-349-6709x73893,4814671383797442,2024-09-15 +City Hotel,0,164,2017,May,21,19,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,124.16,0,0,Check-Out,Mariah Robles,gmeyer@example.org,001-428-211-0180x13805,3558711251134500,2025-11-06 +Resort Hotel,0,28,2017,September,39,27,0,1,2,2.0,0,BB,DEU,Direct,Direct,0,0,0,G,C,2,No Deposit,13.0,179.0,0,Transient,88.29,1,3,Check-Out,Michael Brown,michael71@example.net,(435)372-4344x04890,30100754507855,2024-06-25 +City Hotel,1,20,2017,August,32,10,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,242.0,0,Transient,5.3,0,0,Canceled,Caitlin Perry,michael66@example.org,672.507.4472x276,4475395885967937829,2024-05-05 +Resort Hotel,0,9,2017,August,34,24,0,2,2,0.0,0,Undefined,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Contract,51.72,0,0,Check-Out,Rebekah Gregory,lperry@example.com,001-711-372-2837,346315832154962,2025-04-21 +City Hotel,1,0,2017,December,50,12,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,45.0,0,1,No-Show,James Howard,knightrobert@example.net,001-782-587-0485,6525945642089279,2024-12-13 +Resort Hotel,1,40,2017,March,13,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,63.12,0,0,Canceled,Michael Roberson,paulrussell@example.org,997.987.2619x69716,36742270049104,2024-04-17 +Resort Hotel,1,8,2017,March,11,14,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,243.83,0,0,Canceled,Bianca Knapp,ashley55@example.org,(641)918-4762x974,213118699783133,2024-08-28 +Resort Hotel,0,105,2017,June,24,14,1,0,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,82.08,0,0,Check-Out,Jason Williams,ewilson@example.org,001-291-361-7102x7630,2292881605536289,2025-03-17 +Resort Hotel,0,24,2017,March,10,8,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,3,No Deposit,246.0,179.0,0,Transient,178.69,1,1,Check-Out,Ernest Bush,brendaperry@example.org,001-557-930-4523x19134,4801957876646518,2024-08-26 +City Hotel,0,78,2017,August,33,17,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.65,0,1,Check-Out,Patricia Ray,davidescobar@example.org,874-867-6654x20986,30326308042160,2026-02-01 +City Hotel,0,2,2017,October,41,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,81.61,0,0,Check-Out,Vanessa Santiago,nathaniellawson@example.org,350-270-7318x1442,3557416874562134,2025-08-09 +City Hotel,1,102,2017,March,14,30,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,167.79,0,0,Canceled,Joseph Haynes,christopherthomas@example.net,(509)801-6744,4613071050139437,2025-05-11 +City Hotel,0,1,2017,April,17,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,15.0,179.0,0,Transient,78.83,0,0,Check-Out,Matthew Wright,cberger@example.net,001-819-735-3858x240,2680684157980032,2024-07-26 +City Hotel,1,27,2017,March,11,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,139.24,0,1,Canceled,Michael Cruz,angela69@example.com,+1-689-838-1352,4134831230986985,2025-04-05 +City Hotel,1,411,2017,May,21,21,1,3,2,0.0,0,FB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,Refundable,75.0,179.0,0,Transient,85.92,0,0,Canceled,Kristin Huerta,alicia98@example.net,(447)702-1770,3583507859163530,2026-01-17 +Resort Hotel,1,43,2017,October,42,16,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,221.11,0,0,Canceled,Mason Moore,fstevenson@example.net,283.469.7791,4948395950708,2025-01-06 +City Hotel,0,313,2017,April,15,10,0,4,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.83,0,0,Check-Out,Sarah Booth,dspears@example.com,+1-320-689-6958x25174,675978851219,2026-03-26 +Resort Hotel,1,36,2017,April,14,8,1,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,E,A,0,No Deposit,240.0,179.0,0,Transient,82.21,0,1,Canceled,John Allen,troywilliams@example.net,(359)725-3460x581,4450193115852972,2025-06-17 +City Hotel,0,435,2017,January,3,18,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,125.45,0,0,Check-Out,Amber Walker,paulgolden@example.org,(636)413-7753,3514407183891233,2025-03-29 +Resort Hotel,0,3,2017,April,14,4,2,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,Jennifer Young,kathleencervantes@example.net,659-512-5368x586,4651697550028283,2025-09-29 +City Hotel,0,0,2017,February,8,21,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.42,0,1,Check-Out,Robert West,hendersondean@example.org,211.945.9392,30537537494721,2025-11-28 +Resort Hotel,0,0,2017,January,2,4,0,2,1,0.0,0,SC,PRT,Corporate,TA/TO,1,0,0,A,I,1,No Deposit,308.0,179.0,0,Transient,0.36,0,0,Check-Out,Jillian Wilson,andersonjuan@example.net,208.639.5406x3516,4558180582366,2024-06-26 +Resort Hotel,0,230,2017,April,16,22,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,142.06,0,2,Check-Out,Matthew Garcia MD,rodriguezpeter@example.org,001-714-754-8303x8606,676256749778,2024-04-11 +Resort Hotel,1,0,2017,September,39,25,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,280.0,179.0,0,Group,39.07,0,0,Canceled,April Davis,duncanwayne@example.com,928-812-1840,4459351039434340,2025-06-19 +City Hotel,0,108,2017,May,22,31,0,3,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,134.69,0,1,Check-Out,Lisa Torres,stevenfleming@example.org,(573)890-4907x8243,4474477558740162478,2025-10-14 +City Hotel,1,43,2017,April,16,16,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,147.93,0,1,Canceled,Christine Powers,elizabeth36@example.org,560-863-0258,373448086011137,2026-03-12 +City Hotel,0,22,2017,September,38,16,1,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,2,No Deposit,245.0,179.0,0,Transient,172.06,0,1,Check-Out,Heidi Brown,lfrench@example.org,001-368-324-0638x3466,4520233043072750,2024-08-12 +Resort Hotel,0,167,2017,March,12,21,4,10,2,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient,128.05,0,2,Check-Out,Jesse Castro,gutierrezmichael@example.com,849.653.8767x9897,180075783406626,2025-04-30 +City Hotel,0,0,2017,July,27,6,1,0,1,0.0,0,SC,,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,1.57,0,0,Check-Out,Kara Sandoval,daniellegomez@example.com,233-912-5475x6080,3540862385339035,2025-08-10 +City Hotel,0,2,2017,June,24,17,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,17.0,75.0,0,Transient,48.25,0,0,Check-Out,Ashley Malone,peter42@example.net,+1-337-262-2414x198,4518239974179693433,2025-04-02 +City Hotel,0,34,2017,November,46,11,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.77,0,1,Check-Out,Glenn Gallegos,lauren04@example.org,001-225-807-8537x33502,3527624251715178,2024-10-08 +City Hotel,1,270,2017,May,19,9,4,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,234.17,0,0,Canceled,Dorothy Boyd,robinsonjulie@example.com,823.982.7814x6967,30545885575041,2025-05-25 +City Hotel,1,316,2017,May,19,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,0,Transient,125.95,0,0,Canceled,Amber Martin,andrewgoodwin@example.com,949-983-8648,4392768958046906,2025-09-28 +City Hotel,0,58,2017,March,10,9,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.16,0,0,Check-Out,Mitchell Griffith,jennatorres@example.net,001-438-612-9465x760,349534306502079,2024-03-30 +City Hotel,1,0,2017,August,32,9,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,4.83,0,0,No-Show,Levi Lopez,yclark@example.com,001-812-346-9025,3513044623642685,2025-05-13 +Resort Hotel,0,22,2017,August,32,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,238.0,179.0,0,Transient,84.37,0,1,Check-Out,Jenna Bryant,francesperez@example.com,(264)401-7489x09013,4486146028268,2024-06-24 +City Hotel,0,8,2017,April,14,5,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.57,1,2,Check-Out,Michelle Rodriguez,jmiller@example.net,+1-378-633-2067,2440153256620445,2025-07-12 +City Hotel,0,86,2017,August,33,13,2,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,26.0,179.0,0,Transient-Party,60.55,0,1,Check-Out,Timothy Monroe,alexandersanchez@example.net,(970)731-2869x13214,578298079885,2024-10-22 +City Hotel,0,1,2017,November,45,11,1,0,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,80.27,0,1,Check-Out,Patricia Hayes,mcdanielruben@example.net,(452)484-3863,30170726027902,2024-08-11 +City Hotel,0,30,2017,September,39,26,0,1,1,0.0,0,BB,,Groups,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,138.57,0,2,Check-Out,Tina Taylor,william62@example.net,(217)605-0757,4683908492321328,2024-08-20 +City Hotel,1,2,2017,November,45,8,0,2,3,1.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,223.59,0,1,Check-Out,Mr. Anthony Mcconnell PhD,hartjames@example.net,999.241.2642x8879,630443333491,2025-04-26 +City Hotel,0,101,2017,January,4,21,1,2,1,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,62,Transient-Party,72.01,0,0,Check-Out,Mr. Thomas Thompson,mckinneyclifford@example.org,(832)368-6679x016,2259827144768165,2024-12-03 +City Hotel,0,18,2017,April,18,28,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Check-Out,Monica Anderson,owenslaura@example.org,+1-614-976-2221,569064736063,2025-03-07 +City Hotel,0,2,2017,May,18,1,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,131.6,0,2,Check-Out,Kyle Andrade,danacoleman@example.com,+1-911-595-2665x33067,371645627058558,2025-02-18 +City Hotel,0,8,2017,April,14,5,2,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,217.51,0,1,Check-Out,Janice Petty,philipcortez@example.net,+1-454-947-5568x254,3598019626183166,2025-05-24 +City Hotel,1,112,2017,June,25,23,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,27.0,179.0,0,Transient,75.58,0,0,Canceled,Pamela Hill,timothy81@example.net,+1-671-685-5168x77001,4179068611831896,2024-06-14 +Resort Hotel,0,136,2017,December,52,30,1,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,130.95,0,3,Check-Out,Tracy Chavez,ericlynn@example.com,(764)880-3567x611,4222583175065177785,2024-11-10 +City Hotel,0,98,2017,February,6,8,0,1,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,85.92,0,3,Check-Out,Jason Graves,matthew33@example.net,805-387-3422x2538,4645467825245438,2025-07-14 +City Hotel,0,12,2017,March,9,3,1,2,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,10.0,179.0,0,Transient,209.38,1,0,Check-Out,Elizabeth Miles,tcarr@example.org,+1-381-573-1430x90206,4677866838234148119,2025-07-07 +Resort Hotel,0,89,2017,August,35,28,2,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,71.08,0,0,Check-Out,Michelle Walls,vanessa03@example.com,(991)424-8971x37388,371866427876128,2025-12-13 +Resort Hotel,0,62,2017,May,21,24,1,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,178.39,0,2,Check-Out,Christina Weber,jeffery31@example.net,300-324-3240x504,180023074975453,2026-02-07 +Resort Hotel,0,0,2017,January,4,23,1,0,1,0.0,0,BB,ESP,Complementary,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,94.77,0,0,Check-Out,Gregory Chambers,ericking@example.com,980.481.8137,180092071704711,2024-06-03 +City Hotel,1,68,2017,June,25,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,23,Transient-Party,65.89,0,0,No-Show,Miss Tina Gordon,meganwest@example.net,317-242-2654x885,6011393128001420,2025-01-23 +Resort Hotel,0,189,2017,December,50,15,0,3,2,0.0,0,HB,DEU,Direct,Direct,1,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,48.45,0,1,Check-Out,Erica Wilson,robert19@example.net,902-311-3340,341951455517633,2024-04-19 +Resort Hotel,0,72,2017,March,11,9,2,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Check-Out,John Duncan,brandon30@example.com,926-763-2759x348,4107216022755,2024-09-28 +Resort Hotel,1,0,2017,January,2,11,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,80.44,0,0,No-Show,Jennifer Adkins,jmason@example.org,(435)559-7879x963,566044026938,2025-09-18 +City Hotel,0,16,2017,March,11,11,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,181.0,0,Transient-Party,115.27,0,0,Check-Out,Donna Boone,iclarke@example.net,766.542.9742x24417,4840246084872584,2024-09-18 +City Hotel,1,137,2017,February,6,3,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,91.6,0,0,Canceled,Kelly Johnson,srivera@example.net,001-596-777-5362x1027,4327694519600704152,2026-03-20 +City Hotel,0,91,2017,June,26,28,2,3,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,11.0,179.0,0,Transient,84.14,0,2,Check-Out,Michael Gonzalez,laura91@example.net,+1-710-879-0247,6011493121346069,2024-11-09 +Resort Hotel,0,36,2017,November,46,14,0,1,1,1.0,0,HB,,Direct,Direct,0,0,0,A,C,1,No Deposit,246.0,179.0,0,Transient-Party,65.66,0,0,Check-Out,Candace Mitchell,ernest98@example.org,307.670.2147x4550,4351645014195,2025-09-04 +City Hotel,1,322,2017,December,51,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.53,0,1,Canceled,Ryan Vaughn,reginameadows@example.org,001-982-734-7993x1845,3589572258099895,2025-12-19 +City Hotel,1,92,2017,October,44,31,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.25,0,1,No-Show,Paul Johnson,david97@example.com,831-870-6783x6760,3595220630280104,2024-11-12 +City Hotel,1,248,2017,April,14,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,136.24,0,1,Canceled,Ashley Parrish,kgutierrez@example.org,279.292.8630x82539,060444064129,2025-01-08 +Resort Hotel,0,0,2017,October,41,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,17.0,243.0,0,Transient,48.21,0,0,Check-Out,Sharon Newton,ricardomiller@example.com,(443)416-7040x492,213125861392809,2025-02-04 +Resort Hotel,0,19,2017,January,3,19,1,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,34.0,179.0,0,Transient-Party,34.79,0,1,Check-Out,Cynthia Mueller,wgutierrez@example.org,406-966-0640x646,4077473355915793,2025-02-16 +City Hotel,0,31,2017,November,45,10,0,2,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,109.37,0,1,Check-Out,Donna Beck,susanwarner@example.com,986.263.8003x31375,3554594098156181,2024-04-17 +City Hotel,1,377,2017,February,8,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,40,Transient,88.84,0,0,Canceled,Jasmine Frye,francodiana@example.net,976.777.5831x312,213107093990881,2024-04-30 +Resort Hotel,0,400,2017,July,30,25,2,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,75,Transient-Party,87.41,0,0,Canceled,Emily Arnold,jeanette90@example.org,529-764-8939x88611,6011123280733803,2024-11-20 +City Hotel,0,1,2017,September,37,14,0,2,1,0.0,0,SC,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,88.86,0,1,Check-Out,David Oliver,anna49@example.com,343-940-5416x25580,3545845063120517,2024-10-28 +City Hotel,1,13,2017,May,21,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,103.52,0,0,Canceled,Sheila Greer,emilygarner@example.com,001-286-797-7288x736,4822229721498759,2024-04-15 +City Hotel,0,184,2017,January,5,29,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,137.79,0,1,Check-Out,Michele Holland,stephen66@example.org,710-435-3583,36072362032903,2025-06-05 +City Hotel,0,10,2017,November,45,10,2,4,2,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,56.87,0,1,Check-Out,Kimberly Morrison,samanthaherrera@example.com,880-500-9631x80098,502015285377,2025-06-07 +City Hotel,0,3,2017,April,16,17,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.64,0,1,Check-Out,Tracey Phillips,colleen00@example.net,716.265.9373,2291359241477102,2024-03-27 +City Hotel,1,74,2017,August,32,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,88.9,0,0,Canceled,Michael Lopez,terrybrooke@example.net,703-980-0619,3576606308448119,2025-09-18 +City Hotel,0,1,2017,October,42,16,2,1,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.43,0,2,Check-Out,Jose Bennett,ggarner@example.org,401.592.4418,2705634350539359,2026-01-16 +City Hotel,1,101,2017,June,24,11,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,91.27,0,0,No-Show,Justin Anderson,sophiaelliott@example.net,382-722-4715x515,4698966349898365937,2026-01-06 +Resort Hotel,0,141,2017,March,10,5,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient,127.31,0,1,Check-Out,Dawn Rivera,susan93@example.com,+1-828-254-8959x8711,3599247617416407,2024-06-19 +Resort Hotel,1,52,2017,November,44,2,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,50.18,0,0,Canceled,Brittney Hernandez,bradshawbeth@example.com,(513)686-8611,5516575415211363,2026-03-03 +Resort Hotel,0,148,2017,November,48,27,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient-Party,43.87,0,1,Check-Out,Anthony Randolph,mooresteve@example.com,001-297-452-7129x0424,3579234222898223,2024-10-22 +City Hotel,0,88,2017,February,8,24,0,2,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.7,0,1,Check-Out,Mary Henry,xrodriguez@example.com,546.219.8164x4337,341576033942282,2024-08-19 +City Hotel,0,73,2017,May,21,23,2,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,E,0,No Deposit,2.0,179.0,0,Transient-Party,66.27,0,0,Check-Out,Heather Bowers,robertthornton@example.com,+1-200-690-6299x139,180016138217128,2024-11-14 +City Hotel,0,143,2017,August,34,20,2,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,70.72,0,1,Canceled,Daniel White,carneysamuel@example.org,904-806-3314,180078200699559,2025-10-20 +Resort Hotel,1,42,2017,July,30,27,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,102.59,0,2,Canceled,Jonathan Perry,anthonyhodge@example.org,730.509.1646x1915,345120645123019,2026-03-23 +City Hotel,0,30,2017,November,47,22,0,1,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Group,86.38,0,0,Check-Out,Anna Walker,andreadunn@example.org,6897674631,3582605229035692,2025-03-14 +City Hotel,0,45,2017,March,11,13,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Contract,81.23,0,0,Check-Out,Gary Ward,alexanderdurham@example.net,001-523-662-1903x61654,4262715232700,2025-10-21 +City Hotel,0,396,2017,May,20,16,2,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.92,0,0,Check-Out,Paul Moreno,efoster@example.com,612-763-2623x763,4578193288199,2025-10-04 +Resort Hotel,1,364,2017,November,48,26,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,77.51,0,1,Canceled,Samantha Zavala MD,scottblackburn@example.org,001-462-963-5352,2279033547240698,2025-01-21 +Resort Hotel,0,24,2017,September,36,8,1,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,42.1,0,1,Check-Out,Jill Conway,xwalker@example.com,001-774-680-7666x096,4406970759186030,2026-03-12 +City Hotel,1,180,2017,April,17,22,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,84.37,0,0,Canceled,Lisa Haley,valeriebennett@example.com,(492)654-4951x764,379714679277995,2025-03-07 +City Hotel,1,4,2017,December,52,26,1,0,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,102.82,0,0,Canceled,Erica Moon,osmith@example.org,001-293-727-3848x87610,2711960111012937,2024-07-11 +City Hotel,0,2,2017,May,20,14,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,85.0,179.0,0,Group,99.9,0,0,Check-Out,Janice Fernandez,baileydonna@example.com,+1-548-327-0690x871,2223206781393632,2025-02-10 +City Hotel,1,297,2017,June,23,9,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,39.0,179.0,42,Transient,129.88,0,0,Canceled,Thomas Short,mtrujillo@example.net,001-897-628-5802x0820,377309594012858,2025-04-17 +Resort Hotel,0,22,2017,April,14,3,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,3,Check-Out,Robert Griffin,cburns@example.com,(302)788-3685x7860,3579119187330959,2024-08-22 +Resort Hotel,1,170,2017,March,13,25,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.39,0,0,Canceled,Steven Lee,peter73@example.net,001-880-943-9398x81869,6011126918604098,2025-07-16 +Resort Hotel,1,148,2017,March,13,23,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,48.05,0,1,Canceled,Tiffany Jackson,charlesking@example.net,204-446-4307x72078,6011415890193091,2024-08-03 +City Hotel,1,149,2017,December,51,17,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,27.0,179.0,0,Transient,62.75,0,1,Canceled,Kimberly Smith,garzajulia@example.com,+1-727-539-8099,370702766338613,2025-06-25 +City Hotel,1,22,2017,July,31,31,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,46.39,0,0,Canceled,Michael Ayala,vanessa88@example.com,574.976.9304x5105,38364378303487,2025-08-01 +City Hotel,1,40,2017,February,8,21,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,80.57,0,0,Canceled,Jessica Garcia,jenniferwilliams@example.com,+1-449-786-0054,4463785010933339042,2025-03-28 +Resort Hotel,0,38,2017,October,44,31,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,103.1,0,2,Check-Out,Michele Cherry,dferguson@example.org,288-968-9055,4695876495943420,2025-09-01 +City Hotel,1,152,2017,December,49,5,0,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,49.57,0,0,Canceled,Maria Case,jason12@example.net,688.543.9950x9181,3570947099295541,2024-06-26 +City Hotel,1,35,2017,February,9,25,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,110.62,0,0,Canceled,Brittany Stevens,robertokhan@example.org,202-965-2879x05973,4312652000887722,2024-12-26 +Resort Hotel,0,84,2017,December,49,4,2,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,238.0,179.0,0,Transient,103.05,1,1,Check-Out,Brandon Brown,joseph78@example.org,001-777-681-0881x3057,6011425027576498,2025-01-05 +Resort Hotel,0,154,2017,March,12,21,2,4,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,18.0,179.0,0,Transient,132.76,1,0,Check-Out,Kristin Andrews,elliottzachary@example.com,400-331-6996,4141735042994,2025-04-29 +City Hotel,0,373,2017,July,30,24,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,32.0,179.0,0,Contract,111.24,0,0,Check-Out,David Hughes,atkinsonkimberly@example.com,001-539-423-8165x1424,4475674384015233060,2024-08-23 +City Hotel,1,48,2017,December,52,26,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.84,0,2,Canceled,Jessica Smith,colliercharlene@example.com,+1-542-692-8406x453,4006486603406542198,2024-11-24 +Resort Hotel,0,208,2017,April,15,9,2,5,2,2.0,0,BB,GBR,Direct,TA/TO,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,165.97,0,2,Check-Out,Kimberly May,williamschad@example.net,(924)379-9419x735,6011053760006943,2025-10-14 +City Hotel,1,166,2017,December,49,4,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.58,0,2,Canceled,Nicole Richards,burchsara@example.com,+1-382-785-3323,5385220998802266,2025-08-05 +Resort Hotel,0,105,2017,June,23,7,1,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,80.57,0,1,Check-Out,Angel Reilly,aprilhurley@example.com,921-254-8789,4915746605785199,2024-05-14 +City Hotel,1,2,2017,October,42,14,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,67.0,0,Transient,192.21,0,1,No-Show,Richard Turner,walexander@example.net,874.567.4090x61435,501879810288,2025-04-07 +City Hotel,0,75,2017,September,37,10,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.25,0,1,Check-Out,Preston Kim,crystalchandler@example.com,708-223-2111,4623049321383792,2024-05-26 +City Hotel,1,132,2017,February,6,4,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,A,0,No Deposit,13.0,179.0,0,Transient,105.94,0,0,Canceled,Matthew Wells,meganmullins@example.org,924.686.1141x63555,378885863412803,2025-11-06 +City Hotel,1,113,2017,May,19,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,88.06,0,0,No-Show,Brandy Myers,spencerjoshua@example.org,945-774-7355,3593426747284465,2025-01-12 +Resort Hotel,1,28,2017,April,14,2,2,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Canceled,Kimberly Choi,andrewslouis@example.net,567.516.3447x7987,060487273512,2025-10-05 +City Hotel,0,3,2017,September,38,18,1,0,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,97.67,1,0,Check-Out,Michael Sloan,hjimenez@example.org,619-775-7530,4519116515821,2025-07-08 +Resort Hotel,0,42,2017,March,12,22,0,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,101.54,0,1,Check-Out,Monica Brooks,danielhaley@example.com,670.574.7131,3587325353363415,2024-10-06 +City Hotel,0,45,2017,December,51,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,1,No Deposit,29.0,179.0,0,Transient-Party,64.62,0,1,Check-Out,Kristen Peters,david84@example.net,001-469-926-1928,345023944804703,2025-03-11 +City Hotel,1,39,2017,January,2,3,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,217.0,0,Transient-Party,80.06,0,0,Canceled,Aaron Carlson,michaeljones@example.org,+1-993-607-5047x5709,4294514093649835,2024-11-06 +Resort Hotel,0,10,2017,May,21,26,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,65.15,0,0,Check-Out,Theresa Torres,gonzalezmichael@example.com,+1-514-317-4501x15959,180062558709145,2025-10-16 +City Hotel,1,418,2017,July,28,10,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,62,Transient,84.83,0,0,Canceled,Stephanie Cooper,lanegabriel@example.net,+1-657-619-7516,3593784031224088,2024-07-26 +Resort Hotel,0,0,2017,October,43,24,0,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,173.0,179.0,0,Transient,47.29,0,0,Check-Out,Matthew Hunt,bryan25@example.net,385.289.4439x762,4861677860575112,2025-10-24 +City Hotel,0,42,2017,May,20,15,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.44,0,0,Check-Out,Daniel Davenport,vhowell@example.net,797.348.5420x84813,343906623746777,2025-11-09 +Resort Hotel,0,86,2017,December,51,19,1,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,76.26,0,0,Check-Out,Christopher Marsh,chandlerjeremy@example.org,+1-704-877-1867x308,4816371647362127924,2025-02-11 +Resort Hotel,0,377,2017,May,20,16,2,6,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,2.0,179.0,0,Transient-Party,80.25,1,0,Check-Out,Sarah Randolph,angelamckinney@example.net,(362)539-2415,4975951879088612,2024-06-23 +City Hotel,0,12,2017,April,15,11,1,4,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,232.79,0,0,Check-Out,Julia Dunn MD,yarcher@example.com,701-674-9713x6412,676270540351,2025-02-21 +Resort Hotel,0,143,2017,April,17,23,2,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,242.0,179.0,0,Transient,215.47,0,0,Check-Out,Brett Swanson,chaneypaul@example.org,989-950-8164,4914784395039114,2025-01-11 +City Hotel,0,1,2017,October,40,6,0,1,1,0.0,0,SC,,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.71,0,1,Check-Out,Mr. Carl Rios,paula13@example.com,597.786.5179,180032665316191,2024-05-02 +City Hotel,1,13,2017,October,42,20,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.61,0,2,Canceled,Manuel Mccullough,hollandanne@example.com,001-525-927-4704x65717,4029463388616,2025-07-10 +City Hotel,1,420,2017,May,22,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.31,0,0,Canceled,Jerry Jensen,amandamitchell@example.net,315.478.7293x060,4412930634562450,2024-06-26 +City Hotel,0,109,2017,May,21,24,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,86.17,0,2,Check-Out,Kevin Cunningham,andrewgarcia@example.org,7935829635,4247236945804545,2024-05-09 +Resort Hotel,0,14,2017,January,4,26,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,228.01,1,0,Check-Out,Eugene Patterson,sallen@example.net,(458)378-8702,4874556705386,2025-01-23 +Resort Hotel,0,95,2017,November,47,24,2,2,1,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,1,No Deposit,378.0,220.0,0,Transient-Party,46.12,0,0,Check-Out,David Walker,cynthiasalas@example.com,(844)664-1616,5189648808932212,2026-02-01 +City Hotel,0,41,2017,September,36,6,1,2,1,0.0,0,BB,,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,136.07,0,0,Check-Out,Jessica Larsen,whitekaren@example.org,794-683-0741x39914,4590545598811,2024-08-02 +Resort Hotel,1,34,2017,February,9,25,0,9,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,239.02,0,1,Canceled,Nicholas Humphrey,nataliekennedy@example.com,001-822-389-7434x762,4286443790058878,2024-04-23 +City Hotel,0,41,2017,November,47,21,1,4,2,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,88.51,0,0,Check-Out,Ian Torres,anita85@example.org,471-339-6083,4151476804949775,2024-07-08 +City Hotel,1,315,2017,August,31,5,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.89,0,0,Canceled,Casey Obrien,jeffreycamacho@example.org,(262)724-1656x73868,30194649983504,2024-07-04 +City Hotel,0,10,2017,January,2,4,2,4,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,137.75,0,1,Check-Out,Shannon Taylor,dhicks@example.com,(510)562-1756x26923,30198753516083,2025-08-21 +City Hotel,0,365,2017,June,25,24,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,87.53,0,0,Check-Out,Deborah Mercado,zcalderon@example.com,001-231-224-6767x7379,3510426860101819,2024-03-30 +City Hotel,0,3,2017,July,27,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,1,No Deposit,15.0,65.0,0,Transient-Party,48.36,0,0,Check-Out,Bernard Smith,ijones@example.net,+1-384-538-4851x59698,341108377632095,2025-07-23 +City Hotel,1,201,2017,May,22,27,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,141.97,0,1,No-Show,Amanda Perkins,kathrynbaxter@example.org,(421)224-9543,4570182189684374,2025-03-03 +City Hotel,0,47,2017,October,41,12,1,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.28,0,0,Check-Out,Kevin Escobar,alyssahaas@example.com,225.736.1443,372260750729907,2026-03-23 +City Hotel,0,1,2017,November,48,29,1,4,1,0.0,0,BB,PRT,Online TA,Direct,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,41.88,0,0,Check-Out,Kimberly Lutz,linda40@example.com,558-695-2778,4058795913193635,2025-05-13 +City Hotel,1,96,2017,January,5,29,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,157.97,0,0,Canceled,Reginald Diaz,johnhuff@example.org,4464650463,3553303720000119,2025-09-10 +City Hotel,0,5,2017,September,36,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,106.85,0,1,Check-Out,Raymond Quinn,csmith@example.com,526.368.0866,180041654597091,2024-10-06 +City Hotel,1,84,2017,March,10,9,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,237.0,179.0,0,Transient,171.79,0,1,Canceled,John Dixon,prodriguez@example.org,(227)517-7674x662,4779144257147949,2025-09-01 +City Hotel,1,108,2017,August,35,27,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,96.01,0,0,Canceled,Jonathan Bates,katherine72@example.com,266-209-4469x78955,3509778815104451,2025-05-12 +Resort Hotel,0,53,2017,April,16,19,1,3,3,1.0,0,BB,ESP,Online TA,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,220.91,0,1,Check-Out,Renee Mendez,matthew71@example.org,879-362-6257x897,4285835608131337,2024-11-04 +City Hotel,1,77,2017,August,34,24,0,2,2,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,B,B,0,No Deposit,33.0,179.0,0,Transient-Party,78.18,0,0,No-Show,Jose Griffin,acampbell@example.com,+1-368-229-6898x1928,3596256080671284,2025-05-21 +City Hotel,0,17,2017,June,25,19,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.38,0,0,Check-Out,Travis Hopkins,helen14@example.com,271.476.8215x65886,4453995938112,2024-08-04 +City Hotel,0,90,2017,May,18,4,1,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Contract,154.98,0,2,Check-Out,Nancy Webb,shauncannon@example.com,(563)847-1411,4773159531955496873,2025-05-29 +City Hotel,0,23,2017,May,22,28,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.9,0,0,Check-Out,Daniel Freeman,zball@example.com,517.776.2601,30122893256988,2026-03-04 +City Hotel,1,53,2017,February,5,1,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,A,0,No Deposit,9.0,45.0,0,Group,2.56,0,2,Canceled,Jacob Williams,tonyamorris@example.net,884.717.0870x1450,4036564422782586,2025-09-15 +City Hotel,0,112,2017,July,27,5,2,5,2,0.0,0,BB,CHN,Groups,TA/TO,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,82.46,0,1,Check-Out,Terry Ward,mpena@example.net,+1-704-469-5755,6011945625962303,2024-07-06 +Resort Hotel,1,251,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Refundable,11.0,179.0,0,Transient,101.12,0,0,Canceled,Jesse Williams,mannlisa@example.com,(266)964-1557x0991,4337247266201789833,2025-08-13 +Resort Hotel,1,246,2017,March,9,4,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,193.73,0,0,Canceled,Mrs. Michele Boyd,gilldakota@example.org,+1-284-651-7438x818,372973617418924,2025-11-18 +Resort Hotel,0,277,2017,June,24,15,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,123.05,0,2,Check-Out,Sandy Baker,jill73@example.org,001-400-495-6394x453,4260214871320689,2025-08-11 +City Hotel,0,4,2017,April,15,10,0,4,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,3.04,0,0,Check-Out,Carrie Valdez,charles76@example.com,378-941-5166,213183155059253,2025-03-29 +City Hotel,0,11,2017,November,44,3,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,47.28,0,1,Check-Out,Matthew Houston,csnyder@example.net,(396)931-3643x962,38517847252698,2026-01-25 +Resort Hotel,0,14,2017,April,14,5,1,3,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,169.25,0,1,Check-Out,Jamie Solomon,brian68@example.org,(440)339-3272x7514,2720457501115577,2024-11-17 +City Hotel,0,157,2017,April,15,11,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,240.75,0,2,Check-Out,Heather Parrish,williamclark@example.org,454-278-1689x655,4306754054853,2025-09-19 +Resort Hotel,0,39,2017,August,32,8,1,2,2,1.0,0,Undefined,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,78.21,0,0,Check-Out,Mr. Larry Shaw,jonathonmorris@example.org,+1-462-307-6694,4663165474096733,2025-07-19 +Resort Hotel,0,149,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,40.0,223.0,0,Transient-Party,61.05,0,0,Check-Out,Christopher Jones,katherineflores@example.com,800.401.8894x757,4824931961813518,2024-10-22 +City Hotel,0,238,2017,June,24,14,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Group,82.29,0,0,Check-Out,Christine Lopez,wrightconnie@example.net,480-281-6360,6517720905829566,2025-05-11 +Resort Hotel,0,70,2017,August,35,29,1,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient,47.23,0,0,Check-Out,Mitchell Wilson,nicholas33@example.net,001-662-286-8604,574504941067,2026-01-26 +City Hotel,0,254,2017,October,43,25,0,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,16,Transient-Party,64.53,0,0,Check-Out,Robert Cortez,johnhanson@example.com,001-899-897-5706x1851,3587641193476559,2025-03-17 +Resort Hotel,0,245,2017,March,9,1,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Group,174.56,0,1,Check-Out,Mr. Daniel Martin,joshuamorris@example.org,(304)637-8815,4616333403573,2024-03-29 +City Hotel,0,97,2017,April,15,12,0,4,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,252.0,0,2,Check-Out,Alison Williams,chris57@example.net,908-782-6525,4261847434226,2025-12-24 +Resort Hotel,0,19,2017,May,21,21,2,3,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,79.0,179.0,0,Transient-Party,64.29,0,0,Check-Out,Candace Soto,richardnichols@example.org,+1-969-507-8239x44804,3538175657752585,2025-10-04 +City Hotel,0,0,2017,August,32,6,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.16,1,1,Check-Out,Kenneth Brown,lindaali@example.net,605-871-7985x753,2447428739347516,2025-11-01 +City Hotel,0,15,2017,July,28,14,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Group,84.84,0,2,Check-Out,Christopher Mullen,stevengray@example.net,743.215.2082,3540595073335622,2025-07-28 +City Hotel,1,326,2017,March,10,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,Non Refund,27.0,179.0,0,Transient,242.63,0,1,Canceled,Kristy Smith,tmejia@example.net,+1-429-982-5162x8167,2568264195397841,2024-12-27 +Resort Hotel,0,10,2017,December,50,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,221.0,0,Transient-Party,55.98,0,0,Check-Out,Mary Campbell,dcarpenter@example.net,+1-666-441-0012x834,30443187530163,2024-09-10 +City Hotel,1,101,2017,March,13,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.72,0,0,No-Show,Jerry Haney,timothy23@example.net,2737108370,4919519649517035,2025-08-24 +Resort Hotel,0,14,2017,March,12,23,3,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,193.31,0,2,Check-Out,Carolyn Greer,rjohnson@example.net,877.799.8519,3556785573286208,2024-04-19 +Resort Hotel,1,214,2017,April,15,13,1,5,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,215.09,0,0,Canceled,Rebecca Hoover,denise47@example.net,(984)945-4064,213112884590866,2025-11-26 +City Hotel,1,101,2017,June,24,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.0,0,0,Canceled,Matthew Baker,sgoodwin@example.org,(789)279-9032x38481,639043041990,2025-12-02 +City Hotel,0,2,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,1.43,0,0,Check-Out,Grace Chavez,krose@example.org,6013596935,503811398711,2025-09-13 +Resort Hotel,1,108,2017,April,17,22,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,238.0,179.0,0,Transient,252.0,0,0,No-Show,Crystal Cruz,hoganeric@example.net,001-589-832-0989,639014819812,2024-08-07 +City Hotel,0,1,2017,June,24,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,137.43,0,0,Check-Out,Dale Heath,christopher23@example.org,001-959-355-2366x26437,3565232893614495,2025-01-29 +Resort Hotel,0,265,2017,May,19,9,1,7,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,83.99,0,0,Check-Out,Jennifer Hernandez,camachokathryn@example.com,378-999-3703x87262,6011907684898885,2025-02-04 +City Hotel,1,5,2017,March,14,30,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.83,0,1,Canceled,John Mendez,michaeljennings@example.com,582.493.1448x79476,4037721768641601750,2026-01-29 +City Hotel,1,11,2017,March,10,9,1,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,137.95,0,1,Canceled,Richard Gordon,pruittmichael@example.com,272-560-4490x92522,630499042640,2024-09-16 +Resort Hotel,0,16,2017,June,24,14,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,2.79,0,0,Check-Out,John Anderson,joshua89@example.org,001-709-488-0253,2268170909416798,2025-02-19 +City Hotel,1,134,2017,February,9,25,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,145.98,0,0,Canceled,Samantha Prince,amber83@example.org,948.947.1244,340347212426120,2024-11-14 +City Hotel,0,89,2017,November,47,23,2,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.06,0,2,Check-Out,Marie Boyd,katie03@example.com,+1-272-768-5655,4690598884568973,2025-11-11 +City Hotel,1,310,2017,June,23,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.98,0,0,Canceled,Andrew Moreno,mwalker@example.org,001-828-643-0443x424,3506668322300770,2025-11-07 +Resort Hotel,0,2,2017,December,49,7,2,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,75,Transient,108.46,1,0,Check-Out,Robert Clarke,ryanlee@example.net,001-752-620-3948x05331,348847508961161,2026-01-14 +Resort Hotel,0,9,2017,November,45,8,0,2,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,97.75,1,1,Check-Out,Kevin Figueroa,monica04@example.com,778.526.2594,4283260546963,2024-10-02 +Resort Hotel,1,240,2017,March,13,24,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,228.32,0,0,Canceled,Melissa Davis,gward@example.com,+1-752-914-9579,3510405426301907,2024-06-21 +Resort Hotel,0,2,2017,June,23,7,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,203.89,0,1,Check-Out,John Hall,fpena@example.org,(276)702-4401x1432,3552439366153357,2025-05-28 +City Hotel,0,1,2017,August,32,10,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,E,0,No Deposit,170.0,331.0,0,Transient,65.57,0,1,Check-Out,Diane Mcdowell,kimberlyleon@example.org,001-648-680-3721x7887,4270042852116801803,2024-05-16 +City Hotel,1,244,2017,April,17,21,2,4,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,113.33,0,3,Canceled,Colin Fletcher,ithompson@example.com,250-956-8286,213124966335524,2026-01-22 +City Hotel,1,343,2017,November,46,17,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,48.53,0,0,Canceled,Laura Wilson,paul34@example.com,485-529-8675x542,6011703670223141,2025-05-19 +City Hotel,1,96,2017,January,2,8,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,141.0,179.0,0,Transient,98.56,0,0,Canceled,Matthew Watts,rwilliams@example.net,001-424-972-0817,6535922111116998,2025-06-29 +Resort Hotel,0,71,2017,December,50,12,1,3,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,2,No Deposit,91.0,179.0,0,Transient-Party,129.03,0,1,Check-Out,Jack Moore,jasonray@example.com,(852)458-9394x259,213118952069683,2025-09-29 +City Hotel,0,12,2017,May,22,27,2,0,3,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,136.56,0,0,Check-Out,Dawn Wyatt,mthompson@example.net,001-837-941-1121x39511,4425607432966043,2026-02-09 +Resort Hotel,1,146,2017,March,10,2,4,1,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,133.65,0,2,No-Show,Jacob Hill,randall36@example.org,474.397.6220,6011138855939205,2025-09-11 +Resort Hotel,0,3,2017,September,36,5,4,7,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,241.94,0,1,Check-Out,Nicole Gutierrez,sandersjohn@example.net,544-923-8993x47584,3566682226237647,2024-05-14 +City Hotel,1,51,2017,April,14,5,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,80.62,0,2,Canceled,Karen Wood,paul17@example.org,902-778-0620x922,375949216207493,2024-04-03 +City Hotel,0,153,2017,February,8,20,0,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,103.54,0,1,Check-Out,Dawn Parker,jponce@example.net,658-795-5230,30015815158466,2024-11-03 +Resort Hotel,0,138,2017,November,47,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,93.42,1,1,Check-Out,Michael Fitzgerald,youngjared@example.com,+1-814-624-6963x71099,213133971553765,2025-01-05 +Resort Hotel,0,3,2017,April,15,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,227.24,0,0,Check-Out,Mary Adkins,charlotte84@example.net,324-395-6881,4300703593618562,2024-06-12 +City Hotel,0,55,2017,April,18,30,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,9.0,179.0,0,Contract,124.64,0,2,Check-Out,Michael Martin,fcampbell@example.net,629-319-7426,4983303824608442224,2024-09-09 +City Hotel,1,17,2017,May,20,20,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,77.43,0,0,Canceled,James Morgan,hamiltonyolanda@example.com,517-223-4660,502050057004,2025-12-11 +City Hotel,0,0,2017,February,7,11,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,1.86,0,0,Check-Out,Melissa Mann,michelefrazier@example.org,001-301-231-7187,4333483998590630,2026-03-05 +City Hotel,0,20,2017,January,2,3,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,14.0,233.0,0,Transient,103.2,0,2,Check-Out,Vincent Smith,brownstephanie@example.org,363.213.4792,4990445989724,2024-07-18 +City Hotel,0,43,2017,November,47,22,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,62.0,179.0,0,Transient,104.2,0,0,Check-Out,Charles Frost,xjenkins@example.com,828.271.7185,376252197616546,2024-09-05 +City Hotel,0,255,2017,February,7,16,3,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.28,0,0,Check-Out,Austin Walker,wwhite@example.org,(271)948-9815x3201,4342301323989021,2024-05-24 +Resort Hotel,1,103,2017,September,39,26,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,138.4,0,0,Canceled,Andrew Cruz,michael54@example.org,+1-335-858-3106x21288,180090635518858,2025-12-09 +City Hotel,0,56,2017,May,19,8,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,77.56,0,0,Check-Out,Miss Kelly Dawson,karen85@example.com,001-294-504-9636x50882,180074927138401,2025-08-23 +City Hotel,0,166,2017,May,18,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.44,0,1,Check-Out,Theresa Wilkins,khernandez@example.com,818-860-9091,4234289677890388604,2025-07-24 +Resort Hotel,1,41,2017,August,33,16,0,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,100.82,0,1,Canceled,Jessica Harris,gallagherdalton@example.org,(365)208-5624x5553,36092091448147,2025-10-02 +City Hotel,1,42,2017,October,43,24,1,2,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.04,0,0,Canceled,Regina Mitchell,alison10@example.com,+1-504-929-8565x851,30227291520503,2025-11-17 +City Hotel,1,154,2017,February,8,22,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,111.11,0,0,Canceled,Kyle Black,vburgess@example.net,+1-472-575-4581x430,573089748434,2024-06-10 +Resort Hotel,0,11,2017,March,13,26,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,234.51,1,1,Check-Out,Christopher Johnson,whitepedro@example.org,001-945-799-9274x66216,372993618318584,2025-08-31 +City Hotel,1,132,2017,March,13,26,4,10,2,0.0,0,HB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,185.76,0,1,Canceled,Aaron Moore,robert01@example.com,(857)560-5878x917,2578028560059072,2025-12-26 +Resort Hotel,0,255,2017,April,17,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,65.06,0,0,Check-Out,Penny Gomez MD,cheyenne53@example.net,+1-702-296-4082x184,4411472443467408,2025-08-21 +City Hotel,0,19,2017,November,47,20,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,79.16,0,0,Check-Out,Kelly Mclaughlin,stoutjennifer@example.org,(945)499-6318x8718,30163256062514,2024-11-18 +City Hotel,1,184,2017,March,13,31,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,134.0,179.0,0,Transient,105.28,0,0,Canceled,Brandon Mitchell,joshua06@example.com,851.296.0958,6011964387820344,2025-09-24 +City Hotel,0,183,2017,November,46,16,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,97.5,0,0,Check-Out,Suzanne Bailey,sgardner@example.com,705-958-1479x12251,3550531288342837,2025-10-24 +Resort Hotel,0,48,2017,July,28,10,0,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,114.34,0,1,Check-Out,Destiny Obrien,orusso@example.org,338-209-1588x49028,4051130734849189432,2025-03-05 +Resort Hotel,0,123,2017,November,46,14,0,2,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,C,F,1,No Deposit,15.0,179.0,75,Transient-Party,167.88,1,3,Check-Out,Timothy Andrews,jordanbrian@example.org,711-609-7929x362,4821000950971659322,2026-02-07 +City Hotel,1,436,2017,February,8,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,42,Transient,73.89,0,0,Canceled,Jason Rodriguez,eric38@example.net,8402933732,4760201185431968,2026-02-22 +City Hotel,1,275,2017,June,24,14,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,138.0,179.0,0,Contract,62.33,0,0,Canceled,Edward Arroyo,michaelnewton@example.org,+1-708-828-7238,30428013448821,2024-05-13 +City Hotel,1,3,2017,August,34,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,63.9,0,0,Canceled,Tina Walter,ejones@example.net,001-756-265-4862x02636,6563384879446205,2025-06-18 +Resort Hotel,0,145,2017,November,48,30,1,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,Refundable,10.0,225.0,0,Transient-Party,41.77,0,0,Check-Out,Laura Benson,mcdanielkatelyn@example.net,6043891685,6011660101227465,2024-06-21 +City Hotel,0,16,2017,May,20,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,86.43,0,0,Check-Out,Kristine Carrillo,andrew30@example.com,(251)816-3993x19733,348564281107678,2026-03-10 +City Hotel,0,13,2017,May,18,6,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.83,0,1,Check-Out,Tonya Ellis,pittmanryan@example.org,793.497.7704x25199,3538042641010597,2025-05-04 +City Hotel,1,148,2017,June,23,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,87.41,0,1,Canceled,Kevin Johnson,amber33@example.net,001-603-706-9569,3592352089003951,2026-02-06 +City Hotel,0,20,2017,April,16,18,0,1,2,1.0,0,BB,NOR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,132.97,0,1,Check-Out,Austin Schultz,kimberlyporter@example.org,+1-374-714-5187x365,3577817174355796,2024-05-03 +City Hotel,1,364,2017,February,6,8,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,102.52,0,0,Canceled,Megan Hall MD,spencer55@example.com,454.234.5920x21348,4579998097348,2025-09-09 +Resort Hotel,0,265,2017,October,42,18,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,278.0,222.0,0,Transient-Party,48.52,0,1,Check-Out,Kelli Smith,jacksonsamantha@example.net,(246)433-8328,6527595048588016,2025-11-30 +City Hotel,1,143,2017,June,23,9,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.75,0,0,Canceled,Danielle Davis,kellychang@example.org,+1-973-553-9411,3570008225443602,2025-12-19 +City Hotel,0,45,2017,April,17,26,1,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,209.35,0,3,Check-Out,Samantha Jones,adamlogan@example.net,001-771-978-4587x58628,38275170058824,2024-11-24 +City Hotel,0,12,2017,November,48,25,2,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient-Party,137.72,1,1,Check-Out,Karen Gomez,kellydesiree@example.org,233-711-6478x961,3567168720180441,2025-03-06 +City Hotel,1,38,2017,January,3,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,74.0,179.0,41,Transient,83.75,0,0,Canceled,Debra Valentine,dillon76@example.net,260.274.3398,5490452603029348,2025-11-24 +City Hotel,1,15,2017,February,8,19,0,2,2,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,1,No Deposit,15.0,197.0,0,Transient,121.89,0,1,Canceled,Susan Porter,wilsonlisa@example.com,950.243.3159x998,4860916585893058,2024-11-09 +City Hotel,1,143,2017,August,31,2,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.76,0,2,Canceled,Nicolas Salas,cmartin@example.com,562-281-5933x688,30561581859068,2025-04-21 +Resort Hotel,1,51,2017,July,29,18,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,82.1,0,0,Canceled,Dale Wright,woodsjeremy@example.net,316-506-4166,3500480483303270,2025-12-06 +City Hotel,0,6,2017,December,49,9,0,2,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,113.47,0,1,Check-Out,Brittney Rodriguez,joshuahull@example.org,876-231-1979x21831,30463626818177,2024-09-06 +Resort Hotel,1,137,2017,April,16,21,4,1,2,1.0,0,BB,IRL,Online TA,Direct,0,0,0,E,F,0,No Deposit,244.0,179.0,0,Transient,224.86,0,1,Canceled,Megan Alvarado,paigephillips@example.org,787.645.3518x78638,4112250332607,2026-03-21 +City Hotel,0,52,2017,February,6,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,141.64,0,1,Check-Out,Pamela Weaver,lorettawatts@example.org,001-277-726-7950x35588,6508372560056555,2024-12-12 +Resort Hotel,0,218,2017,April,15,13,1,5,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,224.07,1,1,Check-Out,John Oliver,brandon27@example.com,632.955.7597,4687424150937724,2025-05-12 +City Hotel,1,38,2017,March,10,8,0,2,1,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,88.08,0,2,Canceled,William Prince PhD,ycervantes@example.org,(297)404-2202x4458,3502057081940519,2024-08-11 +City Hotel,1,150,2017,June,23,3,2,2,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,109.21,0,0,Check-Out,William Moon IV,williamcampbell@example.org,001-937-702-4024x187,4736656129957413,2024-04-14 +Resort Hotel,0,27,2017,June,25,22,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,48.07,0,1,Check-Out,Kenneth Brown,timothylong@example.com,001-328-868-6714,3584095319800874,2026-03-07 +City Hotel,1,97,2017,December,49,5,1,0,2,0.0,0,SC,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,125.05,0,0,Canceled,Karen Fernandez,caitlinvargas@example.org,001-768-301-5988,376057059246864,2024-04-27 +City Hotel,0,42,2017,December,2,31,1,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,68.0,179.0,0,Transient,127.7,0,0,Check-Out,Jennifer Parks,jo03@example.org,6112842526,6582151642792117,2025-11-15 +City Hotel,0,55,2017,November,45,7,1,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,125.41,0,2,Check-Out,William Wolfe,millsdanielle@example.org,717-495-8921x91759,4441780808622793549,2024-08-22 +Resort Hotel,0,107,2017,June,24,16,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient-Party,109.99,0,2,Check-Out,Michael Smith,angela32@example.net,346-920-9759,3519884419862714,2024-11-24 +Resort Hotel,1,28,2017,February,8,19,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,110.83,0,0,Canceled,Kevin Nguyen,robertsonlisa@example.com,766.940.0720x3225,630499924789,2024-04-23 +Resort Hotel,0,318,2017,June,25,23,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,163.0,179.0,61,Transient-Party,64.94,0,0,Check-Out,Debbie Dunn,molinajoseph@example.net,(382)785-9712,30155962054298,2025-08-20 +Resort Hotel,0,197,2017,November,47,22,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,11.0,222.0,0,Transient-Party,102.1,0,0,Check-Out,John Austin,vguerrero@example.net,985.750.4868x0498,4829867161695,2024-11-15 +City Hotel,1,50,2017,March,10,4,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,138.32,0,0,Canceled,Jonathan Clark,huffdavid@example.org,9949216921,502096563460,2024-05-04 +Resort Hotel,0,83,2017,August,31,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,87.26,1,1,Check-Out,Jacqueline Dickerson,stevenjackson@example.org,(379)977-1759x3006,4466728366025471,2025-11-04 +City Hotel,0,85,2017,July,28,14,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,81.21,0,1,Check-Out,Christopher Anderson,webbkeith@example.com,889.944.4517x0303,4620742454834812,2025-12-13 +City Hotel,1,9,2017,July,27,5,0,4,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,90.01,0,2,Canceled,Crystal Garcia,ashleyholt@example.com,239.311.5843,4965258351410,2025-11-20 +Resort Hotel,1,128,2017,March,13,26,0,4,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,53.67,0,1,Canceled,David Reynolds,washingtonjohn@example.net,913.648.7422,3505257644318354,2024-05-07 +City Hotel,0,142,2017,March,13,25,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,141.22,0,1,Check-Out,Charles Haley,johnsonjennifer@example.com,001-399-235-2414x39840,4950445415866218,2025-08-20 +City Hotel,0,323,2017,June,24,13,1,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.12,0,0,Check-Out,Robert Thompson,grice@example.net,988-807-4488x0192,3565476975967293,2024-10-23 +City Hotel,0,64,2017,February,8,18,1,1,1,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,90.47,0,3,Check-Out,Dr. Samuel Holmes DDS,rose86@example.com,678.462.8250,3539734097160038,2025-06-23 +City Hotel,1,174,2017,January,2,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,100.36,0,0,Canceled,Elizabeth Hart,ewebster@example.com,214-252-9999x143,4926829469248,2025-08-28 +City Hotel,1,46,2017,March,14,30,0,4,3,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,184.0,0,Transient,116.07,0,0,Canceled,Jennifer Vaughn,carol66@example.org,706-338-8698x475,2566972661074247,2025-02-12 +City Hotel,1,54,2017,April,14,4,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.1,0,2,Canceled,Robert Woods,ztaylor@example.com,265.761.4035x44060,2280720285606695,2025-07-31 +City Hotel,1,147,2017,February,8,23,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.59,0,0,Canceled,Joanna Cook,saundersmelissa@example.com,925.389.7486,213126076966908,2025-04-20 +City Hotel,0,47,2017,April,15,15,0,1,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,101.36,0,0,Check-Out,Justin Frederick,dale08@example.org,(910)569-8357,30212092997753,2025-10-13 +City Hotel,1,95,2017,January,2,9,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.7,0,1,Canceled,Alejandro Martinez,leezachary@example.org,001-578-634-1270,3508965526942649,2025-10-19 +City Hotel,0,0,2017,January,3,20,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,153.54,0,1,Check-Out,Tracey Gonzalez,michaelmathews@example.net,(873)707-1102x529,3543689078448030,2024-09-10 +Resort Hotel,0,381,2017,March,9,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,64.67,1,1,Check-Out,Mariah Thompson,adam39@example.org,238.673.3417x205,6011210807575872,2024-04-05 +City Hotel,1,410,2017,May,19,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,150.73,0,0,Canceled,Heather Nunez,daryl02@example.com,001-365-478-4666x2713,4859160364415,2025-08-18 +City Hotel,1,252,2017,March,10,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,97.23,0,0,Canceled,Dr. Steve James,timothy75@example.org,001-940-713-2653x733,6011071960036239,2024-09-30 +City Hotel,0,59,2017,April,14,4,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,118.6,0,0,Check-Out,Mark Thomas,sbarnes@example.net,6374523355,3544241606694658,2024-11-12 +City Hotel,0,9,2017,March,10,5,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.05,0,2,Check-Out,Robert Rogers,robinsonjoy@example.com,5866750193,4003310188891,2024-06-08 +City Hotel,1,15,2017,June,25,24,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.22,0,0,Canceled,Laura Sweeney,richardmills@example.com,736-859-1532x7639,4384323288579307,2025-10-30 +Resort Hotel,0,136,2017,April,17,22,4,10,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,217.28,0,1,Check-Out,Christopher Perez,edward81@example.org,+1-585-314-2370x48551,347183194843369,2024-12-10 +City Hotel,0,299,2017,May,18,2,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,107.65,0,0,Check-Out,Eddie Adams,john64@example.org,001-638-743-6611x3588,30498390228492,2024-12-11 +Resort Hotel,0,305,2017,September,39,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,C,1,No Deposit,317.0,179.0,0,Transient-Party,62.98,1,1,Check-Out,Denise Wallace,katelynrobinson@example.org,275.302.9759x9890,4672781949220473,2024-12-17 +Resort Hotel,1,6,2017,August,34,22,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,236.0,179.0,0,Transient,119.03,0,2,Canceled,Heidi Matthews,john52@example.net,718-519-5052,4772210774108578,2025-05-12 +Resort Hotel,0,11,2017,May,19,10,2,6,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,138.05,0,2,Check-Out,Jennifer White,pwilliams@example.net,001-208-921-0791x0877,2720093941514119,2024-05-05 +City Hotel,0,121,2017,July,27,6,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,217.18,1,0,Check-Out,Nicholas Stanley,jacob98@example.com,556-234-7372x8300,4306577370435944910,2025-03-27 +City Hotel,1,257,2017,February,8,20,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,No Deposit,3.0,212.0,0,Transient-Party,93.83,0,0,Canceled,Mercedes Miller,kellygrimes@example.org,(333)986-1602x22742,2713742296229421,2025-04-19 +City Hotel,1,263,2017,September,38,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,136.08,0,1,Canceled,Brian Brown,kinglisa@example.com,+1-527-471-0501,3504959756160505,2024-12-08 +Resort Hotel,0,4,2017,May,18,1,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,149.04,1,2,Check-Out,Kimberly Johnson,spencer54@example.net,(551)521-3830x833,503802134513,2026-01-13 +City Hotel,0,15,2017,August,33,13,0,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.0,0,1,Check-Out,Phillip Miller,pharris@example.com,462-726-4240x0174,6011731458383332,2024-11-15 +City Hotel,0,155,2017,November,47,18,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,K,0,No Deposit,22.0,179.0,0,Transient,103.62,0,0,Check-Out,Christopher Pena,wjohnson@example.net,+1-214-947-3833x367,4879385139103,2025-05-29 +City Hotel,0,0,2017,December,2,30,1,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,43.55,1,1,Check-Out,Ellen Wright,johnstonrobert@example.net,(628)909-9560x52440,4035833808065630,2024-12-26 +City Hotel,1,7,2017,September,38,16,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,126.79,0,0,Canceled,Mark Anderson,morrisonmichael@example.com,001-971-900-2757x89868,2453479862129776,2025-12-03 +City Hotel,0,159,2017,November,44,3,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,125.21,1,0,Check-Out,Alyssa Alvarado,bailey73@example.net,+1-511-864-9024,630460988482,2025-10-03 +Resort Hotel,0,3,2017,December,49,2,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,178.0,179.0,0,Transient-Party,107.97,0,1,Check-Out,Erika Alvarez,cdavis@example.net,(953)767-6307x2872,4820698300032,2025-12-17 +City Hotel,1,53,2017,April,18,27,2,5,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,11.0,179.0,0,Transient,249.76,0,1,Canceled,Kimberly Nelson,kerriking@example.com,831.282.9131x338,4337865628919185896,2024-08-07 +City Hotel,1,248,2017,January,4,20,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.21,0,0,Canceled,Wayne Wolfe,zharris@example.net,692.874.6222x254,4535178066412,2025-04-02 +City Hotel,0,1,2017,July,27,4,1,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,1,No Deposit,288.0,179.0,0,Transient,104.31,0,0,Check-Out,Kyle Welch,nielsenapril@example.net,+1-839-863-9266x9197,4094331833595893,2025-02-19 +City Hotel,1,390,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.39,0,0,Canceled,Kristy Mills,carterdaniel@example.net,630.624.1598,3573375482565824,2026-01-21 +Resort Hotel,0,1,2017,December,2,30,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,125.72,1,1,Check-Out,Emily Reed,uburch@example.com,001-867-994-8471,4644714000553941,2024-08-11 +Resort Hotel,0,53,2017,April,15,8,2,3,2,2.0,0,HB,ESP,Online TA,Direct,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,Regina Ramos,pamela07@example.net,(269)348-5648x309,30334160731623,2026-01-22 +Resort Hotel,0,147,2017,November,48,26,2,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,Refundable,13.0,223.0,0,Transient-Party,46.67,0,0,Check-Out,David Torres,lindahurst@example.net,750-764-0335x62640,6011198270157171,2025-04-14 +Resort Hotel,0,1,2017,April,17,25,1,3,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,H,H,0,No Deposit,250.0,179.0,0,Transient,209.83,0,0,Check-Out,Robert Charles,zstanley@example.org,814-295-7228x16059,4529372310203655,2025-09-05 +City Hotel,1,69,2017,February,8,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,142.45,0,0,Canceled,John Smith,kbenton@example.net,926-571-6977x81976,3533564818853660,2025-10-05 +City Hotel,0,21,2017,June,24,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,127.49,1,1,Check-Out,Theresa Woods,hugheswilliam@example.org,848-212-4795,38583108973117,2026-03-10 +City Hotel,1,3,2017,April,16,16,2,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.27,0,2,Canceled,Jeffrey Carter,robertparker@example.org,202-706-5157x20241,341882336176259,2024-09-20 +City Hotel,0,5,2017,February,7,14,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,177.9,0,1,Check-Out,Adam Brooks,johnsonamanda@example.com,762.863.9638,6561625202756799,2024-03-31 +Resort Hotel,1,94,2017,August,34,24,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Refundable,171.0,179.0,63,Transient,91.83,0,0,Canceled,Justin Foster,tbarajas@example.com,+1-305-236-2566x548,3519722343297955,2024-04-10 +City Hotel,0,102,2017,May,19,6,1,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,143.47,0,0,Check-Out,Omar Price,hfitzpatrick@example.org,917-807-8211,3589067799461860,2024-11-18 +Resort Hotel,1,141,2017,November,44,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,13.0,75.0,0,Transient,48.26,0,1,Canceled,Dennis Henderson,emurphy@example.net,739-296-0675x247,4975048210983069103,2025-05-06 +City Hotel,1,12,2017,July,29,19,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.22,0,1,Canceled,Phillip Kent,andreajones@example.org,412.997.2588x7132,3577499712581678,2024-04-12 +City Hotel,1,398,2017,April,17,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,101.34,0,0,Canceled,Melinda Mitchell,martintracy@example.net,(442)689-0056x741,3562691879864015,2024-06-10 +Resort Hotel,0,24,2017,December,49,3,1,6,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,101.14,0,0,Canceled,Rhonda Gutierrez,rhonda24@example.net,+1-230-850-4483x91730,378306169268195,2024-05-02 +Resort Hotel,1,92,2017,June,23,4,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,88.54,0,0,Canceled,Catherine Roberts,weberrichard@example.net,001-457-687-9704x1574,4563032204682935278,2024-09-03 +City Hotel,0,2,2017,January,2,5,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,127.56,1,2,Check-Out,Lisa Nelson,cory58@example.com,421.959.6682,6011095702569298,2025-07-25 +Resort Hotel,1,81,2017,January,3,14,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,313.0,179.0,0,Transient,79.2,0,0,Canceled,Chelsea Smith,james30@example.net,507.639.3707,180077666435276,2025-12-13 +Resort Hotel,1,250,2017,January,3,14,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,Refundable,12.0,179.0,0,Transient,48.28,1,1,Canceled,Joseph Lopez,jason63@example.org,+1-256-275-8499,4078271724942,2025-08-04 +City Hotel,0,2,2017,July,28,10,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,B,1,No Deposit,14.0,200.0,0,Transient-Party,62.99,0,1,Check-Out,Derrick Espinoza,miguel67@example.org,001-997-249-9375x792,676124707099,2024-04-20 +Resort Hotel,1,135,2017,August,32,5,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,39.66,0,0,Canceled,Crystal Hernandez,bunderwood@example.net,001-685-653-1665x043,3538100732802429,2025-01-17 +City Hotel,1,0,2017,April,15,7,2,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,331.0,0,Transient,5.25,0,0,Canceled,Glenn Collins DDS,jonathan14@example.net,+1-846-461-1771,4907228245462257,2025-12-07 +City Hotel,1,91,2017,August,34,25,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,95.05,0,0,Canceled,Mrs. Raven Rivera DVM,aaron04@example.org,502.448.2981,3525956771754739,2026-01-08 +Resort Hotel,0,19,2017,August,34,25,2,2,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,E,A,1,No Deposit,14.0,179.0,0,Transient,53.02,0,0,Check-Out,Amy Rowe,cwood@example.org,8274257522,4147892911616,2025-03-06 +Resort Hotel,0,3,2017,November,44,3,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,A,0,No Deposit,18.0,66.0,0,Transient,0.54,1,0,Check-Out,John Lee,kimcooley@example.org,954-883-1522x93011,4493408113911813,2025-11-21 +City Hotel,1,94,2017,November,46,11,0,3,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,132.94,0,0,Canceled,Ruth Clayton,xedwards@example.org,+1-351-445-0854,3568651990304659,2024-05-26 +City Hotel,0,209,2017,April,17,28,1,0,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,204.02,0,0,Canceled,Randy Wright,mmack@example.com,586-968-0015x6314,30207937609423,2024-07-16 +City Hotel,1,240,2017,April,16,21,2,1,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,77.06,0,0,Canceled,Jessica Rojas,breannawarren@example.org,501.743.8920x446,213134619511447,2024-08-13 +Resort Hotel,0,0,2017,October,43,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,18.0,71.0,0,Transient,39.46,0,0,Check-Out,Joel Wise,jessicagordon@example.com,+1-452-211-0179,3540565118427536,2025-06-27 +City Hotel,0,44,2017,December,52,24,1,0,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,128.22,0,2,Check-Out,Vickie Kennedy,eric34@example.com,570.757.7297x533,4392341528622729,2025-12-31 +City Hotel,0,3,2017,June,23,6,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,62.0,0,Transient,80.02,0,0,Check-Out,Emily Morris,vjohnston@example.net,(757)432-9460x12884,6560924772913182,2024-09-13 +Resort Hotel,1,29,2017,April,17,22,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,203.23,0,2,Canceled,Amanda Pineda,paulabrooks@example.net,001-296-993-3894x72697,570713996900,2026-01-20 +City Hotel,0,192,2017,January,4,22,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient-Party,105.97,0,0,Check-Out,Dawn Little,znorris@example.com,001-827-990-8733x381,6011432181009712,2025-12-22 +City Hotel,1,18,2017,September,39,25,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,123.17,0,0,Canceled,Stephen Boyer,uwelch@example.com,+1-350-578-3886x55899,3519340729451995,2025-09-02 +Resort Hotel,0,212,2017,April,15,8,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,243.0,179.0,0,Transient,221.06,1,2,Check-Out,Brian Chen,xoconnor@example.net,846-865-2289x75339,30043300507716,2025-10-07 +Resort Hotel,1,175,2017,November,48,29,1,3,3,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,223.0,0,Transient-Party,60.57,0,0,Canceled,Christopher Hill,shuff@example.net,9108256982,6591905448701104,2024-06-01 +City Hotel,0,25,2017,March,10,6,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,133.0,0,1,Check-Out,Richard Smith,stephaniewashington@example.org,001-499-971-4689x8963,373623686633619,2026-02-19 +City Hotel,0,106,2017,November,48,29,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,60.69,0,1,Check-Out,Richard Alvarez,francomarcus@example.net,654.205.5508x348,4931166386788157,2024-10-23 +Resort Hotel,0,91,2017,March,10,10,3,1,2,0.0,0,FB,NLD,Direct,Direct,0,0,0,E,E,2,No Deposit,252.0,179.0,0,Transient,166.55,0,1,Check-Out,Jacqueline Davis,michaelklein@example.org,662.689.9554,3558621319081090,2024-05-01 +City Hotel,0,111,2017,May,18,5,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,20.0,179.0,0,Transient,141.73,0,2,Check-Out,Brandon Montgomery,fsteele@example.com,392.489.7092x6898,639048823616,2024-09-02 +City Hotel,1,10,2017,August,35,30,1,1,3,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,K,2,No Deposit,10.0,179.0,0,Transient,0.18,0,0,Canceled,Yolanda Garrett,grantjames@example.com,+1-911-885-8853x39295,3592129280174090,2025-08-18 +Resort Hotel,0,37,2017,November,46,14,0,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,B,0,No Deposit,22.0,179.0,0,Transient-Party,80.4,0,0,Check-Out,Matthew Miles,tatedaniel@example.com,001-250-295-2563x080,30381714914957,2025-03-14 +City Hotel,0,51,2017,June,24,13,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,84.6,0,2,Check-Out,Beth Hall,jackiescott@example.org,8382107412,38964636692918,2025-08-14 +City Hotel,1,148,2017,June,24,13,1,4,2,1.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,138.83,0,0,Canceled,Dr. Nicole Trujillo,nicholas00@example.com,9914031280,4303020842901401,2024-11-18 +City Hotel,1,409,2017,January,4,26,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,91.92,0,0,Canceled,Corey Norris,harriscory@example.net,+1-694-247-4622x696,6555828347616609,2024-12-07 +City Hotel,1,231,2017,January,4,22,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,257.0,179.0,0,Transient,103.97,0,0,Canceled,Chad Roach,dbradford@example.com,763.686.3186x3455,4454744878523667,2025-09-05 +City Hotel,0,20,2017,November,45,4,1,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,84.98,0,1,Check-Out,Mr. Edward Terry,timothykey@example.com,906.207.8054x0712,4529319214660315380,2025-03-04 +City Hotel,1,158,2017,March,13,26,1,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,155.45,0,3,Canceled,Cody Bailey,ewingnicole@example.net,917-562-1588,36732098373786,2024-08-01 +City Hotel,1,269,2017,February,7,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient,51.02,0,0,Canceled,Denise Guerra,bgarcia@example.org,545-703-3152,4935414314339,2024-09-28 +City Hotel,1,351,2017,June,26,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,85.0,0,0,Canceled,Kristen Jones,albert42@example.net,(953)622-0812,675996942693,2025-07-23 +City Hotel,0,1,2017,August,31,4,0,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,238.0,0,Transient-Party,105.22,0,1,Check-Out,Edward Baker,umoore@example.net,+1-693-291-9001x128,4222693530127527,2024-11-15 +City Hotel,0,346,2017,January,4,23,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,89.48,0,2,Check-Out,Aaron Little,wattsjason@example.net,001-217-423-4467x79526,375382744310276,2024-07-28 +City Hotel,0,12,2017,March,12,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,222.0,0,Transient-Party,81.13,0,0,Check-Out,Cody Smith,tuckerjennifer@example.com,(281)654-2382x9196,2299087030443447,2024-07-01 +Resort Hotel,1,91,2017,November,45,11,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,14,Transient,61.92,0,0,Canceled,Patty Allen,ktaylor@example.com,001-719-381-7001,4243775529259433269,2024-10-31 +Resort Hotel,0,50,2017,April,16,17,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,H,1,No Deposit,16.0,179.0,0,Transient,214.88,0,3,Check-Out,Mary Ryan,thomasmichael@example.org,001-977-407-4434,3528995391778683,2024-08-15 +City Hotel,1,293,2017,May,19,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,86.99,0,0,Canceled,Joseph Jimenez,fostertracey@example.org,273-789-1455,3569659820863348,2024-11-28 +Resort Hotel,0,255,2017,April,17,22,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,D,G,1,No Deposit,10.0,179.0,0,Transient,201.87,0,0,Check-Out,Lisa Morris,floreskyle@example.com,(442)702-4464x28595,4267417878042908,2024-10-02 +City Hotel,0,54,2017,April,15,9,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,241.7,0,1,Check-Out,Ashley Mills,nina25@example.com,(492)742-0904,180018438438396,2025-11-08 +City Hotel,1,10,2017,December,51,17,0,4,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,106.76,0,1,Canceled,Russell Anderson,mckenziepatrick@example.com,+1-243-929-9137,3508464375734448,2025-04-24 +City Hotel,1,0,2017,April,14,4,0,1,2,0.0,0,HB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,4.0,179.0,0,Transient-Party,0.0,0,1,Canceled,Christina Washington,tinawilliams@example.org,622.744.1463x3278,501867854553,2026-01-22 +City Hotel,1,31,2017,June,24,12,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,1,0,A,A,0,Non Refund,37.0,179.0,0,Transient,82.89,0,0,Canceled,Kenneth Huff,zoliver@example.net,+1-730-450-6998x758,4509856412163266,2025-06-16 +City Hotel,0,18,2017,January,3,19,0,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,111.67,0,1,Check-Out,Kelly Miles,floreslaura@example.com,(272)249-2598x764,180052404799697,2024-12-12 +City Hotel,1,216,2017,May,21,27,2,10,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient-Party,103.31,0,0,Canceled,Jacob Obrien,alvaradojack@example.org,001-969-264-6901x64423,377223909062377,2024-04-22 +City Hotel,0,19,2017,November,45,6,0,1,2,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,93.47,0,1,Check-Out,Timothy Clark,jonathanmiles@example.com,941-955-1051,4154479555923,2026-02-19 +City Hotel,1,16,2017,July,29,22,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,80.0,179.0,42,Transient,137.93,0,0,Canceled,Steve Miller PhD,claytontaylor@example.net,278-361-2358x76626,180098955212762,2026-01-17 +Resort Hotel,0,0,2017,November,47,23,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,74.0,0,Transient,44.84,0,1,Check-Out,Justin Hurley,ochoajennifer@example.com,596-932-3625,4985108315120008,2025-12-02 +City Hotel,0,1,2017,November,47,22,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.28,0,0,Check-Out,Jacob Erickson,ugraham@example.com,263.507.0131x68897,180001895330793,2025-10-02 +City Hotel,1,5,2017,June,23,9,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.6,0,0,Canceled,Deborah Williams,nguyenjill@example.org,823.616.4958,4921387306304,2025-02-15 +Resort Hotel,0,35,2017,February,8,21,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,3.77,0,2,Canceled,Eric Blackburn,eric16@example.net,001-291-370-5803x07146,30169212268822,2025-01-10 +City Hotel,0,8,2017,April,15,9,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,228.63,1,0,Check-Out,Anne Hardy,jeffrey32@example.net,3993587244,502090537833,2024-07-16 +Resort Hotel,0,16,2017,December,51,22,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,187.96,0,0,Check-Out,Chelsey Fox,dmcintyre@example.net,+1-813-397-3031x0519,4423881846315,2026-02-16 +Resort Hotel,0,24,2017,May,19,11,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Contract,136.69,0,1,Check-Out,Mario White,diazpamela@example.org,001-646-491-0764x32631,4221936608277034,2025-04-04 +City Hotel,0,2,2017,January,3,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,139.67,0,3,Check-Out,Jennifer Garcia,mckayshawn@example.org,538-622-4429x515,6011086611810857,2026-02-07 +City Hotel,1,305,2017,May,20,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,172.81,0,0,Canceled,Heather Ellis,walkerkimberly@example.com,802-240-9752,4669724186502273,2025-01-15 +Resort Hotel,0,95,2017,March,10,8,0,10,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,93.43,1,1,Check-Out,Sonya Jackson,vphillips@example.com,001-566-954-3113x096,4035432721295273,2025-09-13 +Resort Hotel,0,2,2017,March,13,23,2,6,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,54.15,0,0,Check-Out,James Morgan,rileystewart@example.org,640.519.4228x5220,4050501978377214,2025-11-27 +City Hotel,0,31,2017,June,26,25,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,72.91,0,0,Check-Out,Zachary Ramos,vsmith@example.com,600.962.3050,5512159863418129,2025-09-26 +Resort Hotel,1,12,2017,April,15,14,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient-Party,85.47,0,0,Canceled,Ethan Frey,tina05@example.org,+1-627-873-4573,376827154896932,2024-09-23 +City Hotel,0,195,2017,March,12,22,0,1,1,0.0,0,BB,BEL,Direct,Corporate,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,108.08,1,0,Check-Out,Jacob Duran,barry68@example.com,+1-352-967-4998x83519,180073648407004,2026-02-10 +City Hotel,0,48,2017,November,48,25,1,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient,122.37,0,0,Check-Out,Nicholas Franklin,keith23@example.com,937.466.0625x937,38602966625278,2025-05-10 +City Hotel,1,98,2017,March,10,9,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,101.22,0,1,Canceled,Cindy Cannon,urios@example.net,857-244-1539x6608,675998095474,2025-08-23 +City Hotel,1,198,2017,April,17,23,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,Dawn Nixon,zcarlson@example.org,989-594-0185x1496,3578663930437000,2025-03-23 +City Hotel,1,422,2017,April,15,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,59.0,179.0,0,Transient,123.4,0,0,Canceled,James Barber,ryan06@example.net,(589)345-6189x1349,3524041609736207,2024-07-09 +Resort Hotel,1,27,2017,March,13,23,2,5,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,222.59,1,0,Canceled,Ms. Kelly Holder,matthewreed@example.com,001-467-755-0310x9388,4547561155728242,2026-03-12 +City Hotel,0,11,2017,August,32,5,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,254.0,0,Transient,61.64,0,0,Check-Out,Eric Walker,olsonkathleen@example.net,(337)897-3678x9880,5553979560338167,2024-10-27 +City Hotel,1,106,2017,December,51,20,2,2,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,Alison Short,xneal@example.org,(723)514-2112,3541132952182732,2025-10-09 +City Hotel,0,180,2017,April,17,22,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,252.0,1,1,Check-Out,Desiree Spencer,thomasmeyer@example.net,404-744-4072x111,342000379952804,2024-08-07 +Resort Hotel,0,0,2017,March,12,19,2,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,166.18,0,1,Check-Out,Tammy Moore,jeffery27@example.org,001-566-579-5611,6011635280157642,2026-03-03 +City Hotel,0,327,2017,January,3,13,0,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,100.22,0,0,Check-Out,Henry Taylor,kathy45@example.net,001-953-701-9363x395,676298727618,2025-05-10 +City Hotel,0,194,2017,January,3,18,1,2,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,175.72,0,0,Check-Out,Kevin Hall,caldwellclaudia@example.com,678.497.7612x7651,060468719533,2025-12-14 +Resort Hotel,0,0,2017,October,41,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,69.0,0,Transient,47.32,0,0,Check-Out,Anna Ross,hwatts@example.org,510-809-6900x4181,3519350023079319,2024-07-28 +Resort Hotel,0,21,2017,March,12,23,2,5,2,2.0,0,FB,POL,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,242.0,179.0,0,Contract,158.68,0,0,Check-Out,Morgan Cummings,robert16@example.com,(720)366-6102x01174,4737264807198324677,2025-08-06 +Resort Hotel,0,0,2017,November,45,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,1,No Deposit,17.0,179.0,0,Transient,3.37,0,0,Check-Out,Carrie Petersen,jjones@example.net,+1-888-293-4773x10110,3550285340828453,2025-06-27 +Resort Hotel,0,14,2017,March,9,2,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,181.21,1,2,Check-Out,Laura Velez,pcarrillo@example.org,2308859737,2705196079503082,2024-12-30 +Resort Hotel,0,35,2017,December,49,5,1,0,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,48.13,0,0,Check-Out,Elizabeth Cross,davidleonard@example.com,324-555-5195,376545518629290,2026-01-30 +Resort Hotel,0,37,2017,July,28,8,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,240.0,179.0,0,Transient,192.52,0,1,Check-Out,Angela Brown,rwilliams@example.net,001-222-726-6509x8017,3584756423295372,2025-03-17 +City Hotel,0,12,2017,December,2,31,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,140.93,0,1,Check-Out,Hannah Montoya,bairdaaron@example.com,(594)790-4578x84714,3525274904315117,2025-06-24 +Resort Hotel,0,13,2017,April,16,20,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,246.0,179.0,0,Transient,229.13,0,1,Check-Out,Sean Kane,jacksonjennifer@example.org,420-604-5158,060456846025,2025-04-08 +City Hotel,1,112,2017,May,20,17,1,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,108.96,0,0,Canceled,Matthew Guzman,bradley89@example.net,965.668.5869,4042765952425056,2024-11-18 +City Hotel,1,187,2017,November,47,20,2,3,1,1.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,77.14,0,0,Canceled,Richard Reyes,john48@example.net,830-327-8911x745,3595929739325434,2024-09-26 +Resort Hotel,0,0,2017,June,23,4,1,1,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,316.0,179.0,0,Transient-Party,52.16,0,0,Check-Out,Andrew Fernandez,pachecopatricia@example.net,+1-785-912-0540x4834,6567939783970578,2025-04-27 +Resort Hotel,1,260,2017,March,11,12,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient-Party,84.73,0,0,Canceled,Jonathan Walker,freemansara@example.org,(382)654-1321x46077,3578226570475928,2024-11-24 +City Hotel,0,16,2017,April,16,15,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Contract,126.32,0,2,Check-Out,Nicholas Long,lunaadriana@example.org,893.795.7847,30357258660891,2025-01-11 +Resort Hotel,1,200,2017,November,48,30,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,96.7,0,0,Canceled,Kurt Wagner,zachary99@example.org,5543767445,5143025868564968,2024-07-17 +City Hotel,0,23,2017,July,27,6,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,134.43,0,2,Check-Out,Dylan Foster,melissa80@example.net,986.678.2362,36804569293767,2026-01-16 +City Hotel,0,14,2017,November,45,7,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,102.25,0,2,Check-Out,Bradley Duncan,adamsjames@example.com,001-523-474-0517x1757,3562575235400137,2025-01-06 +Resort Hotel,1,162,2017,April,14,3,2,6,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,148.63,0,1,Canceled,James Miller,morganarthur@example.net,(483)261-3814,4516227180174431948,2025-03-13 +City Hotel,1,105,2017,December,51,19,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.23,0,2,No-Show,Patricia Anderson,nealpatricia@example.com,+1-402-787-3403x62756,3546184665654056,2024-04-03 +Resort Hotel,0,55,2017,April,16,18,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,239.0,179.0,0,Transient,208.98,1,2,Check-Out,Justin Freeman,tpollard@example.org,(624)729-3267,213114009051774,2025-03-31 +Resort Hotel,0,33,2017,September,36,4,0,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,56.71,0,0,Check-Out,Christina Gilbert,susan86@example.net,(308)926-0759,4903477633869664,2024-06-08 +City Hotel,0,13,2017,November,45,8,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,81.1,1,1,Check-Out,Danielle Jones,walterssuzanne@example.org,001-831-216-0124x03603,344941882055361,2025-08-03 +City Hotel,0,61,2017,March,12,22,2,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,229.84,0,1,Check-Out,Erica Glass,davisjacqueline@example.net,+1-627-981-5758,2522595060479155,2024-08-05 +Resort Hotel,0,5,2017,September,37,16,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,45.02,0,0,Check-Out,Michael Henderson,robert21@example.org,(852)581-0931x993,3539122829502075,2025-09-12 +City Hotel,0,12,2017,February,6,8,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,98.09,1,0,Check-Out,Frank Wheeler,rebecca76@example.com,(752)231-3358x626,3513841363864639,2025-11-04 +City Hotel,1,103,2017,February,7,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,157.0,179.0,0,Transient,141.74,0,0,Canceled,Eric Huerta,williamhernandez@example.net,385.204.4860,3544422183226417,2025-05-08 +City Hotel,0,41,2017,April,14,8,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient-Party,122.28,0,2,Check-Out,Wanda Ramos,ashlee36@example.org,463-329-0004,4294984722509755165,2025-05-04 +City Hotel,0,18,2017,February,6,4,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,169.0,213.0,0,Transient,94.42,0,0,Check-Out,Andrew Meyers,bryantlindsey@example.net,+1-498-793-9607x331,30482063669927,2024-08-30 +City Hotel,0,32,2017,October,43,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,85.35,0,0,Check-Out,James Todd,brenda59@example.org,(561)642-0621x40249,180058234238418,2026-02-23 +Resort Hotel,1,54,2017,November,45,10,1,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,40.44,0,1,Canceled,Ashley Brown,paulatkins@example.org,+1-321-771-1522x31284,060491060939,2024-03-31 +Resort Hotel,0,12,2017,February,9,28,1,2,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,83.7,0,1,Check-Out,Tammy Melton,sanchezchristian@example.com,+1-427-776-5592x5324,3553751213085163,2025-05-11 +Resort Hotel,0,250,2017,January,2,3,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,E,0,No Deposit,250.0,179.0,0,Transient,129.13,0,3,Check-Out,Alexis Benson,rwood@example.com,875-395-7624x929,4778409148092,2024-06-21 +Resort Hotel,0,72,2017,January,2,3,4,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,331.0,0,Transient,122.07,0,1,Check-Out,Jerry Johnson,hbaldwin@example.com,675.728.8281x70262,4729854039231966,2025-10-11 +City Hotel,0,11,2017,January,2,6,1,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,8.0,179.0,0,Transient,114.42,0,3,Check-Out,Joshua Harris,ggomez@example.net,+1-452-224-3167,4624542651668815,2026-03-24 +City Hotel,1,45,2017,May,20,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,86.22,0,0,Canceled,Deanna Webb,clarkjustin@example.net,+1-838-488-4610,4921268293266,2025-04-23 +City Hotel,0,35,2017,May,18,6,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,76.19,0,0,Check-Out,Brenda Hale,melissa43@example.net,(865)691-9406,30226882843290,2024-06-08 +Resort Hotel,0,32,2017,November,47,22,1,0,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,134.26,0,1,Check-Out,Kevin Alvarado,groberts@example.com,(750)755-6297,4436316040031,2024-10-15 +City Hotel,1,47,2017,April,14,2,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,139.35,0,1,Canceled,Christopher Campbell,michael86@example.org,001-333-784-1962,38162633833433,2024-06-29 +City Hotel,0,100,2017,December,50,10,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.03,0,1,Check-Out,Lisa Brown,james22@example.org,001-615-953-8846x9753,4906333609128980,2024-12-21 +City Hotel,0,102,2017,January,2,7,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,251.0,223.0,0,Transient-Party,63.59,0,0,Check-Out,Alejandra Price,ruizdylan@example.com,365.592.7661,213163146720288,2025-10-05 +City Hotel,0,51,2017,February,6,4,2,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.73,0,1,Check-Out,Samuel Keller,gcruz@example.org,676-915-8650,4179451094005206,2025-07-22 +City Hotel,1,165,2017,February,9,29,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,39,Transient-Party,83.27,0,0,Canceled,Alicia Dillon,ngarcia@example.net,8879284010,345666514154857,2024-08-23 +City Hotel,0,4,2017,March,11,16,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,0.0,0,1,Check-Out,Crystal James,lisa57@example.com,001-964-554-0560x2018,4721600758656517780,2024-09-08 +City Hotel,0,20,2017,June,23,4,1,2,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.4,0,2,Check-Out,Ariana Stewart,amy18@example.net,(785)565-8090,4359409176626564,2026-01-23 +City Hotel,1,18,2017,February,5,3,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.11,0,0,No-Show,Kim Lopez,wattsmelissa@example.org,905.234.6503x24030,502022718121,2025-09-03 +Resort Hotel,0,14,2017,May,19,6,1,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,46.02,0,1,Check-Out,Judith House,larrybrandt@example.net,001-530-988-5423x489,30506872831185,2026-03-05 +City Hotel,0,117,2017,September,39,25,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,98.51,0,1,Check-Out,David Moreno,miguelschultz@example.com,+1-763-689-5608x9736,2240337282536202,2025-11-26 +Resort Hotel,0,69,2017,April,15,9,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,204.82,1,1,Check-Out,James Moore,emmawells@example.net,274.360.1108x4399,4891136688078902,2026-01-26 +Resort Hotel,1,115,2017,August,33,18,1,3,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,238.0,179.0,0,Transient,79.45,0,0,Canceled,Harold Garrett,anne81@example.net,(235)287-5146x00253,4000025687140045,2025-06-30 +City Hotel,1,101,2017,April,16,15,0,1,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,221.48,0,0,Canceled,William Mason,alexissalazar@example.com,+1-758-640-3449x919,213190965411210,2024-05-29 +Resort Hotel,0,15,2017,December,2,30,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,47.1,1,2,Check-Out,Lori Johns,laustin@example.com,7176749503,4054012308146101,2025-08-30 +Resort Hotel,0,15,2017,April,14,2,2,3,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,123.15,1,2,Check-Out,Robin Johnson,dpatrick@example.com,392-453-0581x355,4618563374646092,2025-01-24 +Resort Hotel,0,19,2017,January,3,19,2,5,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,88.04,0,1,Check-Out,Diana Hernandez,dominicperry@example.org,+1-864-200-8938x75598,4439545316313,2025-04-05 +Resort Hotel,0,34,2017,March,10,5,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,244.0,179.0,0,Transient,115.59,0,1,Check-Out,Mary Miller,draketheodore@example.org,(466)943-0673x8750,503837602013,2025-02-12 +City Hotel,1,4,2017,March,12,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,64.97,0,0,No-Show,Tyler Salazar,david39@example.net,+1-373-962-1848,6011178149294314,2026-01-03 +City Hotel,0,152,2017,December,50,16,1,1,2,0.0,0,SC,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,98.07,0,0,Check-Out,Crystal Allen,tammy78@example.net,345.958.4891x166,6011427547009679,2026-01-15 +City Hotel,1,137,2017,August,32,3,2,4,2,0.0,0,Undefined,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,128.75,0,2,Canceled,Wesley Browning,martinsuzanne@example.org,347.642.2199,4788859160827351883,2024-09-28 +City Hotel,0,40,2017,February,6,7,0,3,1,0.0,0,BB,IRL,Online TA,GDS,0,0,0,A,A,3,No Deposit,85.0,179.0,0,Transient,107.18,0,0,Check-Out,Joshua Clark,millershawn@example.org,215.409.7071,4818606165774926,2024-10-06 +Resort Hotel,0,0,2017,March,12,25,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,206.9,1,1,Check-Out,Joshua Mcbride,fisheranne@example.com,+1-502-234-9250x9618,374310542622114,2025-02-20 +City Hotel,0,1,2017,September,36,5,1,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,34.87,1,2,Check-Out,Ellen Thornton,andersonpaul@example.net,586.428.9818,370052982103783,2025-11-18 +City Hotel,1,53,2017,November,48,29,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,196.62,0,2,Canceled,Brandy Forbes,joseph35@example.net,+1-540-307-8269,060409934936,2024-12-28 +Resort Hotel,0,1,2017,May,19,11,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,331.0,0,Transient-Party,50.46,0,1,Check-Out,Brianna Fitzpatrick,joshuamcknight@example.net,+1-832-541-9100x22591,2292047014958452,2024-06-10 +Resort Hotel,0,9,2017,July,30,25,0,2,2,0.0,0,FB,ESP,Offline TA/TO,Direct,0,0,0,F,D,1,No Deposit,243.0,179.0,0,Transient,130.58,0,2,Check-Out,Emily Grant,heather91@example.org,745.334.2105,30182539570085,2024-05-03 +City Hotel,0,0,2017,April,17,28,2,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient-Party,207.59,0,0,Check-Out,Bailey Stewart,jacoballen@example.net,498-931-0305,180011423438919,2025-09-19 +City Hotel,0,22,2017,September,38,18,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,73.0,0,Transient-Party,80.62,0,0,Check-Out,Monica Cannon,wilcoxryan@example.net,6345418440,4746572123101,2024-06-16 +City Hotel,0,7,2017,May,18,3,2,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Contract,136.77,0,2,Check-Out,Jennifer Jenkins,kburch@example.net,707.455.4055x58644,38967833574995,2024-10-19 +Resort Hotel,0,0,2017,November,47,23,2,2,2,0.0,0,BB,POL,Direct,Direct,0,0,0,E,G,0,No Deposit,17.0,179.0,0,Transient,227.55,1,0,Check-Out,Timothy Shannon,beasleyrobert@example.com,(346)850-7231x3419,3514334661866992,2024-11-10 +Resort Hotel,1,184,2017,April,15,12,1,6,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,237.21,0,0,Canceled,Denise Maxwell,thomas20@example.net,(788)544-8357,4835986424982103157,2025-12-17 +City Hotel,0,46,2017,July,31,29,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.62,0,1,Check-Out,Cody Farmer,millermonique@example.com,001-514-580-8102x623,4756878849616342616,2025-09-14 +City Hotel,0,0,2017,July,30,27,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,13.0,63.0,0,Transient-Party,80.35,0,1,Check-Out,Debra Bradley,arnoldwilliam@example.org,(296)919-3002,180075992310452,2025-08-02 +Resort Hotel,0,30,2017,April,14,3,3,7,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,80.0,179.0,0,Transient,232.5,0,3,Check-Out,David Mcdaniel,lmathis@example.com,+1-306-947-3958x008,3510004407249142,2024-07-23 +Resort Hotel,0,238,2017,March,11,15,4,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,218.41,0,2,Check-Out,Michael Woods,sparksdawn@example.com,641-817-0723x089,6011076685230363,2025-05-18 +Resort Hotel,0,252,2017,April,16,17,4,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,49.59,0,1,Check-Out,Lisa Joseph,ydawson@example.net,(662)598-1997x8835,676166627627,2024-12-11 +Resort Hotel,1,41,2017,May,19,10,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,55.84,0,1,No-Show,Samuel Henry,dawn34@example.org,517-265-0360x291,4938253090804,2024-11-14 +Resort Hotel,0,37,2017,January,2,10,0,7,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,113.07,0,0,Check-Out,Corey Johnson,markvargas@example.net,(612)871-9810x984,4533052690456,2024-04-23 +Resort Hotel,1,10,2017,November,48,28,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,44.91,0,0,Canceled,Alexis Nelson,dennisanderson@example.com,224-888-2652x34304,213111806193270,2024-06-16 +Resort Hotel,0,15,2017,February,8,21,2,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,105.56,1,2,Check-Out,Patrick Mcneil,lhayes@example.com,225.529.5691,4563749572890,2024-12-28 +Resort Hotel,0,37,2017,October,42,20,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,C,0,No Deposit,79.0,78.0,0,Transient-Party,55.25,0,1,Check-Out,Andrea Ho,cking@example.net,(324)715-4479x958,4529539379591085,2026-01-18 +Resort Hotel,1,396,2017,April,15,12,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,79.82,0,0,Canceled,Dr. Katherine Nguyen,brandon18@example.net,001-801-520-8389x211,38266231162606,2026-02-14 +City Hotel,0,3,2017,January,2,7,1,0,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,3.42,0,0,Check-Out,David Sullivan,jacob14@example.net,470-516-5418x384,3570682845662112,2025-07-04 +Resort Hotel,0,1,2017,June,24,10,0,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,251.0,179.0,0,Transient,45.27,0,0,Check-Out,Nicolas James,ryan03@example.net,+1-363-317-6197x3014,213110834013807,2025-05-02 +City Hotel,1,410,2017,April,14,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,74.37,0,0,Canceled,Logan Newton,olopez@example.net,709-849-8990,6513247106963758,2024-11-02 +Resort Hotel,1,207,2017,April,14,3,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,Kelly Liu,idawson@example.com,698.258.6490x7961,6554434963539406,2024-07-07 +City Hotel,0,4,2017,November,46,12,0,2,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,45.0,0,Transient,110.45,0,0,Check-Out,Kelly Hayes,gregory04@example.com,521-516-3340x166,060410237964,2025-12-08 +Resort Hotel,0,25,2017,January,2,4,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,I,0,No Deposit,36.0,179.0,0,Transient,0.0,0,1,Check-Out,Amanda Forbes,rachel98@example.org,939-633-7361,4934929454116644,2024-08-01 +Resort Hotel,1,11,2017,January,4,21,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,71.06,0,1,Canceled,Jennifer Moss,elizabeth94@example.com,789-598-3587x448,36206645620528,2024-06-26 +Resort Hotel,1,156,2017,February,8,21,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,165.01,0,0,Canceled,Kelli Mccoy,ybrown@example.net,624-917-5916,4270012726411382,2025-01-16 +City Hotel,0,0,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,14.0,165.0,0,Transient,137.09,0,0,Check-Out,Eddie Sanders,feliciathompson@example.com,+1-904-264-0014x9133,4766773653722,2026-02-17 +Resort Hotel,0,21,2017,July,28,12,0,2,1,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,43.13,0,0,Check-Out,Ronald Murray,davidfowler@example.org,001-347-726-2163,30012845681971,2026-02-20 +Resort Hotel,0,28,2017,June,23,8,1,5,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,C,1,No Deposit,307.0,179.0,0,Transient-Party,54.02,0,0,Check-Out,Louis Brown,lance16@example.net,876.615.7435x513,501862343024,2025-04-13 +City Hotel,0,1,2017,April,14,6,2,1,1,0.0,0,BB,PRT,Online TA,Direct,1,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,92.84,1,3,Check-Out,Brenda Gallegos,svargas@example.com,+1-430-616-9452x967,2222714765731157,2024-11-14 +City Hotel,0,20,2017,November,46,13,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,36.75,1,0,Check-Out,Nathan Wilson,hnewman@example.net,+1-434-870-1492x7910,180037018924021,2024-10-03 +City Hotel,0,2,2017,April,16,16,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,Teresa Horton,meyerkathleen@example.net,+1-874-528-9066x904,6011432587369884,2024-06-21 +Resort Hotel,0,38,2017,January,4,26,3,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,104.38,0,1,Check-Out,Jason Hayes,alewis@example.net,+1-964-330-4497x9697,3520698878866041,2025-06-07 +Resort Hotel,0,51,2017,November,45,7,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,81.66,0,1,Check-Out,Kevin Marquez,marksmolly@example.com,676-506-7001x28002,676133338258,2025-01-09 +City Hotel,0,94,2017,August,31,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.18,0,1,Check-Out,Jesse Wright,kimberly59@example.org,581-500-9825,2230411941505155,2025-02-04 +Resort Hotel,1,9,2017,February,8,24,1,2,2,2.0,0,BB,ESP,Online TA,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,188.77,0,0,Canceled,Susan Hogan,wilsonann@example.net,536-859-4702x8162,4032854627085537,2026-02-25 +Resort Hotel,0,0,2017,August,35,29,1,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,190.0,0,0,Check-Out,Becky Wilson,othompson@example.com,695-667-9971x46857,2720279605060495,2024-07-05 +City Hotel,0,154,2017,April,15,7,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.86,0,0,Check-Out,Jack Mills,millerjuan@example.org,428-482-5083x36780,3540442886857635,2025-12-02 +Resort Hotel,0,18,2017,June,26,26,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,31.0,179.0,0,Contract,76.26,0,2,Check-Out,Richard Hunt,bfreeman@example.org,935.458.7977x298,371641463552853,2024-04-06 +Resort Hotel,1,0,2017,September,36,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,I,0,No Deposit,195.0,179.0,0,Transient,1.56,0,1,Check-Out,Jamie James,gleonard@example.net,769-737-4686x39840,4991457618094,2025-03-09 +Resort Hotel,0,6,2017,August,33,17,2,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,290.0,179.0,0,Transient,1.87,0,1,Check-Out,Susan Cunningham,wware@example.com,372.585.8393,3512826737666373,2024-03-30 +Resort Hotel,1,151,2017,February,7,11,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,243.0,179.0,0,Transient,59.38,0,2,Canceled,Brittany Melton,kshelton@example.org,303-560-7377x1506,30167167732461,2026-02-20 +City Hotel,0,10,2017,July,29,17,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,8.0,179.0,0,Transient,98.36,0,1,Check-Out,Michael Barnes,ospencer@example.org,+1-580-564-9002x8807,213164404499870,2025-11-15 +City Hotel,0,3,2017,December,50,9,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,132.19,0,1,Check-Out,Randy Griffin,andrewpierce@example.net,+1-330-840-4794,376223507761314,2025-08-01 +Resort Hotel,0,47,2017,January,2,4,1,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,42.97,0,0,Check-Out,Autumn Anderson,johnsonanthony@example.net,523-565-2893,4349497633001197289,2025-12-29 +City Hotel,1,154,2017,March,13,26,1,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,9.0,179.0,0,Transient,85.02,0,0,Canceled,Marcus King,gregory66@example.net,+1-557-957-4458x25742,3534656332364213,2025-05-22 +City Hotel,0,22,2017,June,24,13,1,4,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,139.28,0,1,Check-Out,Scott Stephens,fosterluis@example.com,720.343.9345x303,30117174478269,2025-12-03 +City Hotel,1,259,2017,March,13,26,1,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,138.98,0,0,Canceled,Stephen Young,vmorris@example.org,001-746-287-8713,213143326846871,2025-10-09 +Resort Hotel,0,3,2017,January,2,5,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,94.04,0,1,Check-Out,Karen Ortiz,michelle09@example.net,385.543.3665,2228085289753009,2024-07-30 +City Hotel,0,3,2017,September,38,17,1,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,10.0,179.0,0,Transient,187.46,0,1,Check-Out,Kyle Sanchez,ogriffin@example.net,(409)766-7216,4495173316834870973,2024-11-05 +Resort Hotel,0,11,2017,August,34,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Group,49.3,0,1,Check-Out,Lisa Grant,beckalan@example.net,+1-268-257-8843x47585,4321057978220154,2025-06-26 +City Hotel,0,3,2017,February,9,26,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,92.63,0,1,Check-Out,Amber Hernandez,crystal58@example.net,761.805.7265x28461,4688207476779,2026-03-18 +City Hotel,1,317,2017,January,2,3,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,106.21,0,0,Canceled,Amanda Nash,rmccullough@example.org,843-991-0510x65688,676390339312,2025-05-07 +Resort Hotel,0,10,2017,July,28,9,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,53.53,1,1,Check-Out,Sara Evans,timothynunez@example.net,582.526.5599,3524270212779037,2025-05-11 +City Hotel,0,0,2017,November,48,29,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.81,0,1,Check-Out,Amber Butler,nancy96@example.com,229-293-1523,2260894400763105,2024-06-21 +Resort Hotel,0,201,2017,November,48,29,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,77.63,0,0,Check-Out,Michael Carr,jane29@example.com,916-665-2343x19465,30281725961866,2024-06-13 +Resort Hotel,0,18,2017,April,15,9,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Linda Cobb,melissadodson@example.com,+1-398-616-4846x243,370989432518476,2024-12-09 +Resort Hotel,0,141,2017,March,14,31,4,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,252.0,1,1,Check-Out,Jesse Riley,bryantbrenda@example.org,856.403.4114,346138414761487,2025-03-01 +City Hotel,0,51,2017,April,14,6,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Contract,79.92,0,2,Check-Out,Anna Evans,caleb34@example.org,(295)741-2809x493,30423277140487,2024-08-24 +City Hotel,1,368,2017,June,23,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,40,Transient,99.81,0,0,Canceled,James Jones,markblackburn@example.com,+1-353-340-0946x74804,5379359931758207,2024-12-31 +City Hotel,1,263,2017,January,3,14,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,113.21,0,0,Canceled,Joshua Carter,emma77@example.com,257-853-3951x5746,4791853106833750097,2025-04-26 +City Hotel,0,55,2017,November,45,7,2,2,2,1.0,0,BB,,Direct,Direct,0,0,0,A,K,1,No Deposit,13.0,179.0,0,Transient,123.01,0,2,Check-Out,Michael Hill,johnbowen@example.org,980.483.1246x530,4223054172094856,2025-04-27 +City Hotel,0,93,2017,September,39,27,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,55.4,0,1,Check-Out,Kelly Dominguez,xlloyd@example.com,001-629-995-5215x7231,4422544659312002,2024-12-24 +City Hotel,0,89,2017,October,41,11,2,3,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,87.22,0,0,Check-Out,Ashley Blair,nmorris@example.net,+1-955-759-6841x3892,4494159153796346,2025-05-28 +Resort Hotel,0,20,2017,December,52,29,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,52.17,0,0,Canceled,Victoria Webb,smithjeanne@example.net,(599)790-8569x2028,3598048426399821,2025-03-05 +City Hotel,0,69,2017,April,16,15,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,206.71,0,1,Check-Out,Taylor Andersen,qgreene@example.org,(587)367-5667,4693663164942707,2025-12-23 +City Hotel,0,83,2017,June,25,23,1,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,83.57,0,0,Check-Out,Lee Stewart,egaines@example.net,(384)217-1479x685,4202741807276198,2024-06-01 +Resort Hotel,0,42,2017,December,52,30,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,64.07,0,1,Check-Out,Whitney Gomez,michellejohnson@example.com,865.815.2035x083,2719512150737387,2024-07-10 +Resort Hotel,0,92,2017,June,26,27,1,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,268.0,179.0,0,Transient-Party,87.47,1,2,Check-Out,Justin Stone,bentleyvickie@example.net,3673844964,3520300140404178,2025-10-16 +Resort Hotel,1,122,2017,November,46,16,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,225.0,179.0,0,Transient,63.56,0,0,Canceled,Katherine White,olsonjoseph@example.com,458.392.7006,376559704100800,2025-10-25 +Resort Hotel,0,2,2017,November,48,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,1,No Deposit,242.0,179.0,0,Transient,136.73,0,1,Check-Out,Michelle Krause,aclay@example.net,+1-829-602-4507x624,6011343271803023,2025-03-17 +Resort Hotel,1,343,2017,March,13,28,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,243.0,179.0,0,Transient,43.24,0,1,Canceled,Alexander Garrett,rwall@example.com,599-681-5951x774,676129293731,2025-11-16 +Resort Hotel,0,165,2017,March,12,22,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,106.64,0,2,Check-Out,Ryan Marsh,laurahurst@example.net,5216970206,6504700206837331,2025-11-06 +Resort Hotel,1,175,2017,July,29,17,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Transient-Party,41.6,0,0,Check-Out,Mrs. Felicia Castro DDS,stevenskaren@example.org,832.934.8634x15213,3540949395221681,2025-05-19 +City Hotel,1,22,2017,January,4,25,2,2,2,1.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.58,0,2,Canceled,Curtis Campbell,kayla56@example.com,+1-541-671-4485x9071,2548298537239340,2025-10-18 +Resort Hotel,0,0,2017,November,44,3,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,47.59,1,2,Check-Out,Elizabeth Hunter,kimberlymoss@example.org,568-545-8616x24843,4702000473386,2025-10-15 +City Hotel,1,140,2017,May,21,21,1,0,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.66,0,0,Canceled,Aaron Jennings,michaelgonzalez@example.net,001-404-549-8189x581,373433476208881,2025-04-15 +City Hotel,1,415,2017,January,3,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,91.35,0,0,Canceled,Nathaniel Gilbert,jennifer55@example.net,001-286-973-9796x0086,2719369584848748,2026-02-26 +City Hotel,0,56,2017,June,23,6,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,161.61,0,0,Check-Out,Christopher Rivera,yluna@example.com,304.999.0332x63125,4998992948167,2025-09-15 +Resort Hotel,0,49,2017,May,18,5,3,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,250.0,179.0,0,Transient-Party,97.31,0,0,Check-Out,Michael Hendricks,lukesmith@example.net,769.283.6713x908,213162193739787,2024-07-25 +Resort Hotel,0,298,2017,November,44,1,2,5,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient,47.31,0,0,Check-Out,Maria Olson,reesedonna@example.org,654.424.0128x27315,5502177804767620,2026-01-10 +City Hotel,0,149,2017,May,18,1,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,132.95,0,1,Check-Out,Stephanie Herrera,deniseevans@example.com,925-288-7065,4418406139287525,2026-01-12 +City Hotel,0,2,2017,April,14,4,0,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,23.0,179.0,0,Transient,102.23,0,1,Check-Out,Richard Gutierrez,uadams@example.com,(644)352-0981,30141716411042,2025-06-17 +City Hotel,0,148,2017,April,16,22,1,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,Sandy Evans,whitenicholas@example.com,+1-754-380-5009,4069333599340929,2025-12-19 +City Hotel,0,52,2017,March,10,9,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,139.12,0,2,Check-Out,Emily Herrera,dianasantiago@example.org,(985)405-2935x41073,4502994006793155389,2025-02-08 +City Hotel,0,148,2017,May,18,3,0,2,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,26.0,179.0,0,Transient,44.33,0,1,Canceled,Michael Marsh,wiseralph@example.com,7886225746,6522866353793094,2025-08-20 +City Hotel,0,96,2017,April,17,27,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,161.11,0,0,Check-Out,Heather Montes,preston44@example.org,+1-648-206-3446x8023,4877807143919520,2025-03-05 +City Hotel,1,11,2017,January,4,27,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,234.91,0,0,Check-Out,Andre Terrell,aguilarbryce@example.net,302.667.2601x8803,4722798795476297656,2024-10-11 +City Hotel,1,152,2017,April,14,5,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Contract,64.11,0,2,Canceled,Sarah Duncan,phillip63@example.org,690-697-0782x48149,374971999370299,2025-06-11 +Resort Hotel,1,153,2017,April,14,5,1,2,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,115.68,1,0,Check-Out,Kurt Hancock,pearsonjames@example.org,611-964-9649,676271531441,2024-11-30 +City Hotel,0,41,2017,May,22,30,0,3,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,235.53,0,0,Check-Out,Michele Edwards,sparksbrian@example.net,+1-209-964-9654x59000,3552872129505549,2026-01-29 +City Hotel,0,54,2017,December,49,9,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,131.0,0,3,Check-Out,Jason Crawford,pricebrian@example.net,450.315.3484,676337621426,2025-03-19 +City Hotel,1,160,2017,April,14,1,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.3,0,2,Canceled,Jesse Sampson,zberg@example.net,389-978-3909x0907,5403303413079807,2024-08-16 +Resort Hotel,0,363,2017,December,51,19,2,5,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,73.22,0,1,Check-Out,Eric Rodriguez,pittsmary@example.net,5294028013,180090758847308,2026-03-08 +City Hotel,1,24,2017,April,16,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,100.95,0,0,Canceled,Paula Gentry,davisjoyce@example.com,980.591.1914x8837,4485943755370,2025-07-11 +Resort Hotel,1,232,2017,June,26,26,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,123.04,0,0,Canceled,Alexander Webb,morganwatts@example.com,(367)219-4955x682,4614041514917784,2025-06-21 +Resort Hotel,0,0,2017,January,2,8,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,17.0,179.0,0,Transient,63.14,0,0,Check-Out,Cheryl Mclean,cassandradiaz@example.org,(890)888-4038x75359,4217753623267080,2025-09-22 +City Hotel,1,8,2017,July,27,3,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,165.05,0,2,Check-Out,Kelly Rowe,kweeks@example.net,(535)946-7953,180070688865463,2024-09-05 +City Hotel,0,2,2017,April,16,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,221.51,0,1,Check-Out,Shane Short,beverly86@example.com,892.295.7405x7937,30232135383324,2024-10-14 +Resort Hotel,1,38,2017,April,17,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,118.98,0,1,Canceled,Megan Anderson,dharrison@example.com,(288)455-2980,675938008942,2025-12-03 +Resort Hotel,0,116,2017,November,45,8,2,5,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,357.0,179.0,0,Transient-Party,79.82,0,0,Check-Out,Julia Reeves,kenneth99@example.net,661-741-2258x048,376294112926618,2025-01-02 +Resort Hotel,1,47,2017,August,31,5,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,107.02,0,0,Canceled,April Randolph,wellsvalerie@example.net,001-611-305-5967x2878,2272559193592047,2025-06-17 +City Hotel,0,380,2017,June,23,8,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,94.45,0,0,Check-Out,Linda Miller,mlynch@example.org,456.878.8632x16239,30547303679439,2026-02-22 +City Hotel,1,63,2017,September,39,28,2,5,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.18,0,0,Canceled,Angel Meyer,kelly82@example.com,(672)444-4380x774,6557436678012535,2024-12-19 +City Hotel,0,11,2017,December,49,8,0,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.8,0,1,Check-Out,Emily Lane,williamsdavid@example.org,949-850-4794,2708947261004132,2024-04-29 +City Hotel,1,93,2017,November,48,29,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.36,0,2,Canceled,Steven Flores,kimberlybryan@example.org,841-450-7958x5326,6575227539640566,2026-03-19 +Resort Hotel,0,144,2017,November,48,29,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,67.93,0,0,Check-Out,Donald Flores,peterarmstrong@example.com,(928)871-6944x424,180059749315030,2026-01-21 +Resort Hotel,1,86,2017,March,11,9,1,3,2,1.0,0,BB,,Direct,Direct,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,252.0,1,0,Canceled,Bruce Hernandez,robert21@example.org,657.784.6113,4507763786018499880,2025-01-31 +City Hotel,0,15,2017,July,30,26,0,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,118.95,0,0,Check-Out,Adrian Dean,ichang@example.com,230-529-9903,6011047286009985,2025-12-29 +Resort Hotel,0,90,2017,January,4,23,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,41.51,0,0,Check-Out,Christine Bell,wardtimothy@example.net,001-472-309-5625x0575,501886363560,2024-07-28 +City Hotel,0,39,2017,November,48,25,0,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,97.7,0,2,Check-Out,Charles Bush,judyewing@example.net,897-542-1066x467,565505251225,2026-02-26 +Resort Hotel,0,3,2017,January,2,8,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,0,No Deposit,18.0,179.0,0,Transient,125.75,1,0,Check-Out,David Jones,gerald51@example.net,460.476.0694x202,4974926987951,2025-12-12 +City Hotel,0,29,2017,November,47,22,1,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,138.37,0,1,Check-Out,Gina Wallace,laura17@example.com,+1-958-685-2384x1649,3560804815689212,2024-10-28 +Resort Hotel,1,41,2017,April,16,16,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,139.02,0,2,Canceled,John Lowe,matthew92@example.org,240.518.0768x1301,6588491304059551,2024-09-07 +City Hotel,0,8,2017,July,27,8,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,188.0,179.0,0,Transient-Party,62.53,0,0,Check-Out,Anthony Simmons,heatherward@example.org,961-649-4923x61167,30133503944723,2025-08-19 +Resort Hotel,0,1,2017,November,44,3,1,0,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,16.0,45.0,0,Transient,5.04,0,0,Check-Out,Kyle Watkins,angela06@example.org,973.413.3411x702,3522392257548515,2026-03-19 +City Hotel,0,10,2017,February,6,8,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,170.06,0,1,Check-Out,Melissa Jensen,bowersedward@example.org,001-835-959-7328,4971563690015395,2024-07-12 +City Hotel,0,17,2017,April,15,8,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.12,0,2,Check-Out,Robert Marquez,charlenewalker@example.org,377-450-2483,30437490035456,2024-10-22 +City Hotel,1,0,2017,February,8,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,No-Show,Kim Beltran,stephanie87@example.net,5619559892,4999282935273265525,2025-02-23 +City Hotel,0,3,2017,May,21,24,2,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,213.91,0,0,Check-Out,Julie Anderson,ugarcia@example.org,001-475-922-3565x5151,4363775591983,2025-01-19 +City Hotel,1,165,2017,April,17,23,0,3,3,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,27.0,179.0,0,Transient,221.29,0,0,Canceled,Tamara Mcdonald,leah96@example.com,+1-654-810-6758x5883,3554393398697618,2025-01-12 +Resort Hotel,1,11,2017,July,31,29,2,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,298.0,179.0,0,Transient,43.35,0,0,Canceled,Michael Mckinney,aharding@example.net,(358)804-1911,579204639549,2025-04-01 +Resort Hotel,0,80,2017,June,24,10,1,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,83.52,0,0,Canceled,David Walker,melissa74@example.com,680.528.1259x54250,4690681663823,2025-09-27 +Resort Hotel,1,240,2017,March,13,25,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,241.0,179.0,0,Transient,169.67,0,1,Canceled,Lisa Durham,erica50@example.com,242-662-0471x4890,3528131531962215,2025-02-08 +Resort Hotel,0,33,2017,March,10,10,0,1,2,2.0,0,BB,IRL,Groups,TA/TO,0,0,0,C,C,0,No Deposit,169.0,179.0,0,Transient-Party,171.47,0,0,Check-Out,Michael Ortega,pennysanchez@example.org,001-247-895-3433,6011248494442493,2024-11-16 +City Hotel,0,94,2017,September,37,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,91.32,0,1,Canceled,Sonya Chavez,lutzstacy@example.net,(466)404-5236x9238,3535874325427876,2025-08-23 +City Hotel,0,258,2017,May,21,20,1,5,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,161.91,1,1,Check-Out,John Bell,foxbrandon@example.net,6508258028,4423589466830695,2024-12-02 +City Hotel,1,2,2017,December,49,3,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,D,D,0,No Deposit,13.0,179.0,0,Transient,151.53,0,1,No-Show,Christopher Tate,vstewart@example.com,001-883-805-3789x4098,676348682979,2025-04-11 +Resort Hotel,0,144,2017,April,15,14,4,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,123.04,0,1,Check-Out,Bethany Garcia,karen58@example.org,719.486.4864x66593,180084176914261,2024-05-06 +Resort Hotel,0,11,2017,December,2,30,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,51.85,1,2,Check-Out,Rebecca Nguyen,floresalex@example.org,985.271.2122,4474900827877,2024-11-14 +City Hotel,0,97,2017,June,25,18,2,4,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.63,0,0,Check-Out,Rebecca Patel,ftucker@example.com,519-523-5737,4606029335545967,2025-02-02 +Resort Hotel,1,36,2017,July,28,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,53.82,0,2,Canceled,Jason Oliver,victor19@example.org,(850)919-2271,4643980615892553068,2025-11-02 +Resort Hotel,0,31,2017,January,2,8,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,252.0,1,2,Check-Out,Valerie Reyes,xschmidt@example.net,+1-403-210-5371x8098,3599314666198391,2025-09-16 +City Hotel,0,2,2017,July,29,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,142.02,0,0,Check-Out,Robert Garza,ybennett@example.net,533-577-5312x84794,4295278336605876,2025-05-19 +City Hotel,1,7,2017,July,30,25,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,1.6,0,0,Canceled,Jessica Cobb,paul53@example.org,752-216-6444,503886464687,2025-06-08 +Resort Hotel,0,6,2017,November,47,23,1,2,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,C,1,Refundable,13.0,223.0,0,Transient-Party,41.46,1,0,Check-Out,Cynthia Bates,kevinwallace@example.com,+1-974-721-7878x3005,36553664839921,2025-05-20 +City Hotel,0,24,2017,February,5,3,0,1,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,179.65,0,0,Check-Out,Timothy Andrews,mdickson@example.com,(457)858-3649,4884034208221707,2024-05-16 +City Hotel,0,16,2017,December,52,26,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,136.51,0,2,Canceled,Mr. Joel Peters,ericgrimes@example.net,(881)706-3007x2182,30186253125802,2025-06-16 +City Hotel,0,93,2017,December,52,24,1,0,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.02,0,1,Check-Out,Casey Blanchard,kgillespie@example.net,853.682.1810,180045120337339,2025-12-25 +City Hotel,1,432,2017,May,22,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,103.54,0,0,Canceled,Brian Cervantes,jensencharles@example.org,(594)732-1474,4593260919683008,2024-12-21 +City Hotel,0,91,2017,March,14,30,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,244.54,0,2,Check-Out,Jamie Snyder,jefferyroberts@example.net,994-810-9758x776,502098057487,2025-04-19 +Resort Hotel,0,1,2017,September,38,22,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,55.98,0,1,Check-Out,Ann Montoya,usanchez@example.org,6874099935,4623432397294139566,2025-12-17 +Resort Hotel,0,246,2017,December,51,21,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,90.01,0,0,Check-Out,Stephanie Fields,tamara19@example.com,562.293.1770x772,4260200677123088,2024-04-10 +Resort Hotel,0,35,2017,January,3,13,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,41.53,1,0,No-Show,Charles Hernandez,florescynthia@example.com,+1-396-769-4162x03159,30044040393706,2024-06-02 +Resort Hotel,0,0,2017,September,36,7,2,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,16.0,222.0,0,Transient,39.36,0,0,Check-Out,Jean Lane,aanderson@example.org,731.243.0596x160,4777184032231867,2026-01-05 +Resort Hotel,0,43,2017,August,35,27,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,1,No Deposit,27.0,179.0,0,Transient-Party,114.65,0,1,Check-Out,Michael Stewart,plin@example.net,(203)351-8386x040,180043371315518,2024-04-10 +City Hotel,0,0,2017,June,25,23,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient-Party,82.05,0,2,Check-Out,Susan Torres,emartin@example.com,001-282-222-8328,4400934411866609,2024-10-05 +City Hotel,0,59,2017,May,20,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,117.74,0,0,Check-Out,Jessica Haas,stefanie77@example.org,(555)864-2458x1972,30064460335896,2024-10-17 +City Hotel,1,192,2017,February,7,14,4,2,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,Refundable,8.0,179.0,0,Transient,109.08,0,1,Canceled,Brandon Smith,kgray@example.net,924-522-2616,2284667100844793,2025-06-06 +Resort Hotel,0,149,2017,June,24,12,0,5,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,378.0,179.0,0,Transient,64.05,0,0,Check-Out,Mrs. Bethany Phillips,beverly98@example.org,666.705.3894,5413974277370892,2024-09-29 +Resort Hotel,0,143,2017,February,7,13,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,118.69,0,3,Check-Out,Joshua Brown,fpotter@example.net,(549)905-4132,4019232004622791,2025-03-28 +Resort Hotel,0,2,2017,September,36,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,L,H,1,No Deposit,15.0,179.0,0,Transient,55.56,1,1,Check-Out,Samantha Howard,pauldiaz@example.net,653-757-9539,4847947503072978,2024-08-14 +City Hotel,0,67,2017,May,19,12,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,212.39,0,1,Check-Out,Sharon Young,hbrewer@example.com,+1-759-528-1515x4736,4058035032334659477,2024-08-12 +Resort Hotel,0,0,2017,July,27,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,D,0,No Deposit,14.0,89.0,0,Contract,53.98,0,0,Check-Out,Jennifer Flores,gdrake@example.net,593-736-6520,639051983877,2024-08-13 +Resort Hotel,0,154,2017,April,15,7,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,G,3,No Deposit,244.0,179.0,0,Transient-Party,209.39,1,2,Check-Out,James Gardner,rebecca57@example.org,461-428-0543x913,6011810355147998,2025-03-23 +Resort Hotel,0,52,2017,August,32,9,4,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,96.58,0,1,Check-Out,Karen Lopez,danielwelch@example.net,(556)800-1014x547,5487968842072893,2024-05-02 +City Hotel,1,377,2017,February,9,26,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,87.76,0,0,Canceled,Tim Larsen,susan49@example.com,837-348-2623x298,2282400405240174,2025-04-09 +City Hotel,0,84,2017,November,46,16,2,0,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.47,0,2,Check-Out,Zachary Santiago,ellisonjohn@example.net,+1-389-418-6359,4754811723574,2024-10-10 +City Hotel,0,34,2017,September,37,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,304.0,222.0,0,Transient-Party,44.88,0,1,Check-Out,Benjamin Smith,herbert74@example.com,270-343-1240x214,3536982601489665,2026-03-02 +Resort Hotel,0,12,2017,February,8,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,240.0,179.0,0,Transient,44.76,1,1,Check-Out,Katelyn Kim,pwebb@example.com,001-349-721-4171x019,4026725702620646,2024-08-10 +City Hotel,1,148,2017,May,18,5,0,2,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,100.56,0,3,Canceled,Angela May MD,christopherwalker@example.com,802-524-8064x2048,4017704788185544,2025-03-29 +City Hotel,1,1,2017,October,42,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient,61.91,0,1,No-Show,Richard Munoz,ywallace@example.org,920.202.6839,6509125709057507,2025-04-17 +Resort Hotel,1,204,2017,November,46,13,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,205.42,0,1,Canceled,Christopher Hicks,reillykatelyn@example.net,2733495381,4644837614263,2024-06-10 +City Hotel,1,0,2017,December,52,26,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,331.0,0,Transient,79.76,0,0,No-Show,Joanna Kelly,frivera@example.net,761.815.0647,3500743250290446,2026-03-19 +Resort Hotel,1,8,2017,August,33,15,2,6,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,G,0,No Deposit,239.0,179.0,0,Transient,100.68,0,0,Canceled,Larry Lane,davidlopez@example.net,001-561-639-6110x7647,213153605491695,2025-06-14 +Resort Hotel,0,112,2017,August,32,5,2,7,3,0.0,0,FB,IRL,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,108.97,1,0,Check-Out,Cynthia Shaw,fowleranthony@example.org,6367184061,676361293027,2024-08-16 +Resort Hotel,1,289,2017,March,10,8,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,Refundable,12.0,179.0,0,Transient-Party,78.66,0,0,Canceled,Joshua Richardson,bridget54@example.com,560-408-1184x650,676284441406,2025-04-17 +Resort Hotel,0,1,2017,June,24,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,78.0,0,Transient,44.85,0,0,Check-Out,Laura Bush,kimnoah@example.net,6775261568,503844997877,2025-06-10 +City Hotel,0,102,2017,April,16,21,2,5,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,164.81,0,3,Check-Out,John Vaughn,justin59@example.org,+1-831-547-6846x38834,3589694475119676,2025-07-16 +City Hotel,0,32,2017,June,23,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,20.0,179.0,65,Transient-Party,68.97,0,0,Check-Out,Nicholas Terrell,joshuafrost@example.com,+1-501-388-4450x25284,3598879233507762,2024-11-30 +City Hotel,0,161,2017,October,43,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,50.14,0,0,Check-Out,Dr. Julie Miller,qmartinez@example.net,(795)443-1303,3575017785200224,2025-01-29 +City Hotel,0,62,2017,April,15,12,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,83.94,0,0,Check-Out,Ann Kennedy,igarcia@example.org,001-794-472-3900x67282,3523374382449743,2024-09-18 +Resort Hotel,0,37,2017,November,47,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,238.0,179.0,0,Transient,39.92,0,1,Check-Out,Toni Miller,johnware@example.org,442-333-1132x7734,4470922909440487,2025-11-11 +City Hotel,1,307,2017,July,27,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,0,Transient,95.94,0,0,Canceled,Rebecca Edwards,mrogers@example.com,469.479.7099x845,375432763153071,2025-09-02 +Resort Hotel,0,144,2017,April,17,23,2,4,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,200.66,0,0,Check-Out,Greg Osborne,nancyrichardson@example.com,7596798845,3531951348272481,2025-07-22 +City Hotel,0,107,2017,March,12,22,1,3,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,147.2,0,0,Check-Out,Jose Harrison,sarah98@example.org,(273)305-8163,30377536843564,2025-10-03 +City Hotel,0,46,2017,April,17,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,Jennifer Yu,kbright@example.net,+1-883-928-1595x7267,676168721055,2024-09-08 +City Hotel,0,12,2017,June,23,9,2,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,124.81,0,0,Check-Out,Donna Johnson,jessicawilson@example.com,001-498-676-0591x27972,3538600585014576,2026-03-17 +City Hotel,1,107,2017,February,8,19,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.59,0,2,Canceled,Nicole Acosta,foxann@example.net,(835)785-9321x09855,4445172097084,2024-06-21 +Resort Hotel,0,43,2017,March,12,22,2,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,1,No Deposit,16.0,179.0,0,Transient,232.95,1,3,Check-Out,Amy Kennedy,cynthia88@example.org,768.301.7829x2688,3582514910401371,2024-07-03 +Resort Hotel,0,16,2017,March,12,17,4,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,249.84,0,2,Check-Out,Anthony Mooney,djoyce@example.com,(951)496-5781x691,371073428646945,2025-08-12 +Resort Hotel,0,2,2017,November,48,27,1,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,10.0,179.0,0,Transient,103.39,0,1,Check-Out,Lori Mitchell,brandonfrederick@example.com,001-931-240-4153x54813,30085413499505,2025-02-16 +City Hotel,0,4,2017,November,46,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,14.0,60.0,0,Transient,48.16,0,0,Check-Out,Jonathan York,biancahess@example.net,(468)292-0058,4620369077466683897,2025-09-26 +Resort Hotel,1,154,2017,April,16,17,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,245.86,1,2,No-Show,Casey Campbell,mikaylabruce@example.com,+1-735-274-4181x469,630446372793,2025-07-02 +Resort Hotel,0,159,2017,November,48,29,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,45.08,0,0,Check-Out,Alexis Rodriguez,carrolldiane@example.com,314.915.8046x5721,379301287507631,2024-12-03 +City Hotel,0,165,2017,April,15,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,252.0,0,2,Check-Out,Kevin Hernandez,sarah00@example.net,(288)543-5979,4892468633215,2026-02-01 +City Hotel,0,0,2017,August,35,28,1,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,61.48,0,1,Check-Out,Robert Green,joshua50@example.com,(965)611-6998x607,4683344363457951,2026-01-11 +Resort Hotel,1,30,2017,August,31,4,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient-Party,90.74,0,0,Canceled,Kari Lloyd,carolinemoore@example.net,001-203-610-5953x25085,4395948730361,2024-08-23 +City Hotel,0,7,2017,January,2,11,2,1,1,0.0,0,BB,AUT,Aviation,Corporate,1,0,1,A,A,0,No Deposit,15.0,199.0,0,Transient-Party,88.81,0,0,Check-Out,Grace Miller,parksandre@example.com,+1-926-672-6966x82494,2231699291694665,2025-02-06 +Resort Hotel,1,137,2017,March,9,1,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,F,1,No Deposit,239.0,179.0,0,Transient,85.84,0,1,Canceled,Timothy Moore,jennifernorris@example.org,(692)259-7692x4658,4864486999336264,2025-07-27 +City Hotel,1,103,2017,August,33,12,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,220.28,0,1,Canceled,Wyatt Townsend II,ckelly@example.net,252.962.1204,3525687869299788,2025-08-26 +City Hotel,1,165,2017,May,20,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,42,Transient,106.98,0,0,Canceled,Mark Clark,michaelcruz@example.org,+1-344-737-1003,4326195516852966,2025-07-13 +City Hotel,0,304,2017,May,18,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,64.35,0,1,Canceled,Haley May,christine15@example.com,891.520.4080,346522438456820,2025-08-20 +Resort Hotel,0,15,2017,August,34,19,2,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,64.25,0,1,Check-Out,Audrey Jackson,dmartinez@example.com,563.415.8690x451,376556889211642,2024-07-19 +City Hotel,0,93,2017,August,32,5,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,113.01,0,0,Check-Out,Eric Reese,james87@example.org,+1-231-813-7183x483,2284097837099075,2026-02-04 +City Hotel,0,161,2017,March,11,9,2,3,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,30.0,179.0,0,Transient,230.68,0,0,Check-Out,Kim James,laurie58@example.org,001-337-601-2677x0794,503880305126,2024-09-18 +City Hotel,0,2,2017,September,36,6,2,1,1,0.0,0,BB,,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,50.32,0,0,Check-Out,Karen Thomas,glambert@example.net,001-228-624-8831x44682,180046831745711,2025-09-14 +Resort Hotel,1,137,2017,March,14,30,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,248.7,0,0,Canceled,Alexandra Ho,adrian55@example.org,2182079498,2720376890604563,2025-12-12 +Resort Hotel,1,171,2017,November,47,22,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,11.0,179.0,0,Transient,121.75,0,0,Canceled,Michael Nixon,diazjudith@example.com,+1-365-595-3479x5765,4320757029870561604,2025-11-05 +City Hotel,0,15,2017,June,23,6,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,1.97,1,1,Check-Out,Amanda Hardin,hthomas@example.org,+1-560-413-1321x070,30575899459296,2025-10-19 +City Hotel,1,1,2017,February,7,16,0,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,183.27,0,0,No-Show,Tina Reynolds,arthur70@example.com,672-371-2246x3948,3516221150360322,2025-11-19 +Resort Hotel,1,59,2017,November,45,8,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,125.45,0,0,Canceled,Shannon Rogers,salinasmelissa@example.com,+1-449-786-9350,4200185120898274,2026-01-26 +Resort Hotel,0,14,2017,September,39,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient-Party,50.53,0,1,Check-Out,Brett Pena,ewest@example.org,7145689773,3541156917549552,2024-07-12 +City Hotel,0,0,2017,August,33,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,65.17,0,0,Check-Out,Raymond Curry,stewartamy@example.net,+1-768-366-6961x70277,6011321728759428,2025-10-22 +City Hotel,1,304,2017,May,21,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.24,0,0,Canceled,Leah Lee,lharrington@example.com,807-924-8351,4570100908020439932,2025-07-14 +Resort Hotel,0,2,2017,September,38,16,1,0,2,0.0,0,BB,PRT,Aviation,TA/TO,1,1,1,A,I,0,No Deposit,10.0,258.0,0,Transient,41.42,0,0,Check-Out,Michael White,jeffrey98@example.org,001-601-803-7756x58695,5393076657161075,2025-05-12 +Resort Hotel,0,19,2017,August,34,25,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient-Party,82.76,0,1,Check-Out,Megan Decker,robertssusan@example.net,238.952.2197x6645,4125640409786,2025-09-27 +City Hotel,0,21,2017,November,48,29,0,4,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,151.05,0,3,Check-Out,Brent Garcia,kylewalker@example.org,490-664-5700,38380647973322,2025-02-07 +Resort Hotel,0,159,2017,November,46,12,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Transient-Party,125.39,1,1,Check-Out,Daniel Campbell,ballen@example.net,(929)456-6805x1194,38228194960236,2024-07-21 +Resort Hotel,1,0,2017,December,50,12,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,239.0,179.0,0,Transient,171.6,0,0,Canceled,Alexander Davis,ashleypoole@example.net,694-287-7612x68531,4660946763929715,2024-04-03 +City Hotel,1,95,2017,February,8,22,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.83,0,2,Canceled,Mary Houston,alyssa06@example.net,001-300-923-7673x605,5570039749238868,2026-01-14 +Resort Hotel,0,0,2017,November,46,14,1,5,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,F,1,No Deposit,15.0,179.0,75,Transient-Party,59.38,1,3,Check-Out,Margaret Erickson,frances83@example.com,836-644-5923,342538070115064,2024-09-24 +Resort Hotel,0,106,2017,April,14,3,1,1,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,81.35,0,0,Check-Out,Scott Anderson,hendersonfernando@example.net,001-897-398-5124,378813178869178,2025-07-21 +City Hotel,1,38,2017,June,23,9,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,75,Transient,104.51,0,0,Canceled,Stephanie Knight,qcoleman@example.com,001-525-359-5692x318,3510608451683921,2025-07-05 +City Hotel,0,10,2017,December,50,12,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,167.48,0,1,Check-Out,Stephanie Dominguez,villathomas@example.com,001-542-556-0351x837,2712671496601850,2025-02-13 +Resort Hotel,0,153,2017,August,32,8,1,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,74.48,0,0,Check-Out,John Mayer,anne73@example.net,+1-718-648-6061x504,213158009971606,2025-11-27 +Resort Hotel,0,44,2017,April,14,2,4,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,243.53,0,1,Check-Out,Tammy Hill,kelly05@example.net,874.639.0020x89140,3597610573497558,2025-08-16 +City Hotel,0,31,2017,July,27,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,84.59,1,2,Check-Out,Steven Carrillo,qolson@example.org,(564)224-9418x2754,4930264156074907,2025-02-28 +City Hotel,1,0,2017,December,52,26,0,4,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,5.14,0,0,Canceled,Christopher Jones,tiffany40@example.org,814.617.4715x749,3508792909529003,2025-04-04 +City Hotel,1,91,2017,December,50,12,0,2,2,2.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,F,F,1,No Deposit,7.0,179.0,0,Transient,182.28,0,1,Canceled,Janet Cook,haley89@example.net,223.466.1176x147,6504982154729674,2024-07-08 +City Hotel,1,18,2017,November,46,13,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,82.8,0,1,No-Show,Tyler Baker,johnsonamber@example.com,494.604.9861x117,213132769409339,2024-10-05 +Resort Hotel,0,2,2017,September,39,30,0,1,2,0.0,0,BB,ISR,Online TA,Direct,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,50.83,0,1,Check-Out,John Mcfarland,allison23@example.com,489.614.6534x619,578950586706,2025-01-20 +City Hotel,0,16,2017,October,41,7,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,68.79,0,0,Check-Out,Cassandra Vasquez,wgordon@example.com,7017202989,4029833082568,2025-12-11 +City Hotel,0,0,2017,March,10,10,0,2,2,0.0,0,SC,NLD,Offline TA/TO,TA/TO,0,0,0,A,K,1,No Deposit,11.0,179.0,0,Transient,0.14,0,0,Check-Out,Randy Robinson,csoto@example.net,001-548-617-2673x129,2720435453860424,2025-10-11 +City Hotel,0,3,2017,May,20,14,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,No Deposit,3.0,179.0,0,Transient-Party,240.49,0,0,Check-Out,Susan Baldwin,hernandezshelly@example.org,8472211745,4279008105849,2025-09-17 +City Hotel,0,17,2017,June,25,23,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,29.0,179.0,0,Contract,42.93,0,1,Check-Out,Benjamin Duncan,christopher07@example.net,(867)514-0620,060475897983,2024-12-24 +City Hotel,1,197,2017,April,16,14,2,4,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,136.85,0,3,No-Show,Jeremy Mosley,bethany16@example.com,678-564-8971,4048253432096551,2025-01-16 +City Hotel,0,134,2017,January,4,22,2,4,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,106.85,0,0,Check-Out,Martin Fitzpatrick,millsdavid@example.net,+1-266-300-9867x800,4891827249653064,2024-12-15 +Resort Hotel,1,102,2017,January,2,12,3,5,2,0.0,0,HB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,107.97,0,0,Canceled,Deborah Graves,millercynthia@example.net,930.734.9025,343866608355780,2024-12-22 +City Hotel,1,143,2017,June,23,5,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,101.88,0,1,Canceled,Laura Robertson,fcosta@example.org,708-619-3901,4009461305525658,2024-10-30 +Resort Hotel,0,33,2017,May,19,9,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Contract,81.85,0,0,Check-Out,Katherine Graham,allen47@example.net,001-505-762-6959x51975,36178128487149,2025-01-06 +City Hotel,1,102,2017,January,2,1,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,80.29,0,0,Canceled,Priscilla Floyd,brandon04@example.com,776-290-9415x8631,4936489473529622,2025-01-13 +City Hotel,1,314,2017,March,10,5,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient-Party,121.12,0,0,Canceled,April Finley,austin89@example.org,357.590.6224,4259989966393,2025-01-04 +City Hotel,0,142,2017,November,44,1,0,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,34.47,1,1,Check-Out,Karen Bradley,conniejohnson@example.net,001-829-742-8727,345566427141290,2024-05-07 +City Hotel,1,37,2017,December,52,30,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,40,Transient,91.55,0,0,Canceled,Heather Maldonado,mcintoshpatrick@example.net,314-202-0073,4671329446111851,2026-02-02 +City Hotel,1,94,2017,February,5,3,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,173.99,0,0,Canceled,Mark Benjamin,cindy56@example.net,(352)267-7676x3917,6011121193607304,2025-03-12 +City Hotel,0,33,2017,August,34,22,1,2,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,100.95,0,0,Check-Out,Joseph Woodward,jocelyn80@example.net,534-310-6286x4792,4064471324469558,2026-02-22 +City Hotel,0,18,2017,November,47,20,1,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,43.98,0,1,Check-Out,Joe Miranda,kristinalong@example.net,761.814.7882x4481,180027737565791,2024-12-14 +City Hotel,0,100,2017,December,51,23,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,1,No Deposit,14.0,179.0,0,Transient-Party,127.01,0,1,Check-Out,Cassandra Williams,richardfreeman@example.org,726-343-9694x591,4703153574015490,2025-03-21 +Resort Hotel,0,47,2017,July,30,22,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,89.52,1,1,Check-Out,Connor Dominguez,michael81@example.com,+1-316-613-1489x71955,4165494078260840083,2025-09-07 +City Hotel,0,59,2017,January,3,18,1,1,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,229.0,0,Transient-Party,84.06,0,0,Check-Out,Lydia Howard,warrenjeffrey@example.com,(823)801-3718x9327,4138533627026391995,2025-07-12 +Resort Hotel,0,4,2017,June,24,13,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient,45.5,1,0,Check-Out,Mark Moss,pattonkendra@example.net,(626)585-3074x401,4702053452101621,2025-05-16 +City Hotel,0,51,2017,July,30,25,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.68,0,2,Check-Out,Corey Cortez,jorgelucas@example.net,(764)246-9024x6664,3534577477509042,2025-12-12 +Resort Hotel,0,17,2017,November,48,30,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,1,Refundable,16.0,222.0,0,Transient-Party,31.19,1,0,Canceled,Katherine Brown,pmorales@example.net,(399)671-8933,213194044505919,2025-11-12 +City Hotel,0,22,2017,April,14,3,1,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.65,0,2,Check-Out,Elizabeth Ferguson,townsendjessica@example.com,823.552.4880x719,180076773359924,2024-05-28 +City Hotel,0,36,2017,April,15,9,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Check-Out,Joann Forbes,jason80@example.com,842-491-8516,4513333951820171,2025-07-03 +City Hotel,0,45,2017,November,47,19,0,2,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient,98.33,0,1,Check-Out,Anthony French,ksimpson@example.com,924-539-0815,30407121747241,2025-12-12 +City Hotel,0,1,2017,July,28,13,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.17,0,1,Check-Out,Bruce Roman,turnergrace@example.com,(648)431-9159,180031998468877,2024-03-27 +City Hotel,0,85,2017,June,23,9,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,76.66,0,1,Check-Out,Judy Gregory,rodgersbrent@example.net,001-968-494-5729,502019211601,2025-08-10 +City Hotel,1,318,2017,May,20,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,106.32,0,0,Canceled,Brittany Riley,fclark@example.org,001-760-371-8709x7528,341903652765341,2025-06-04 +Resort Hotel,0,14,2017,March,12,18,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,247.0,179.0,0,Transient,194.87,1,0,Check-Out,Amanda Thomas,claytara@example.net,001-632-790-9713x738,341817903825540,2025-12-15 +Resort Hotel,0,0,2017,June,23,9,2,1,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,D,D,0,No Deposit,16.0,68.0,0,Transient,51.72,1,0,Check-Out,Kaitlin Hardin,walkerandrew@example.net,534.635.8497x27791,501832266248,2024-09-07 +Resort Hotel,0,160,2017,February,9,24,0,2,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,134.83,0,1,Check-Out,Michael Anderson,noah12@example.net,(609)748-3261x676,6581596899365937,2025-09-26 +Resort Hotel,0,12,2017,September,36,5,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,98.43,1,1,Check-Out,Anthony Parker,diazcraig@example.com,(687)294-6857x67863,630482114059,2025-07-22 +City Hotel,0,7,2017,November,46,17,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,130.55,0,1,Check-Out,Joy Jackson,jose66@example.org,(482)490-9704x683,30120480557503,2025-07-29 +Resort Hotel,0,5,2017,August,31,4,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,82.6,0,1,Check-Out,Sabrina Rodriguez,scott12@example.com,235.394.7145x534,4808018706821673,2025-11-17 +City Hotel,0,15,2017,February,8,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,139.57,0,2,Check-Out,Robert Walker PhD,robertmartinez@example.com,2999866479,377192502870934,2024-06-13 +City Hotel,1,110,2017,February,6,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,128.83,0,0,Canceled,Robert Hendrix,xfoster@example.org,001-237-407-4348x750,4642325445006080,2025-06-14 +City Hotel,0,391,2017,May,22,30,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.1,0,0,Check-Out,Erika Daugherty,sarah94@example.com,001-680-496-5590,30528366752362,2024-07-23 +Resort Hotel,0,0,2017,August,32,8,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,2,No Deposit,244.0,179.0,0,Transient,110.2,0,2,Check-Out,Brenda Copeland,michael80@example.net,001-916-385-1635x7720,3515663351676199,2025-03-31 +City Hotel,0,113,2017,March,10,3,2,5,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,217.7,0,0,Check-Out,Pamela Watkins,owilson@example.net,+1-488-336-1645x6939,560932163515,2024-06-19 +City Hotel,0,87,2017,March,10,5,0,3,1,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.73,0,1,Check-Out,Bryan Thomas,christopherrogers@example.com,(311)299-5882x4278,374357684612627,2025-05-15 +Resort Hotel,0,72,2017,March,11,9,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,229.16,0,2,Check-Out,Michael Tran,cantubenjamin@example.com,+1-330-600-7537,060434383901,2024-07-09 +City Hotel,0,104,2017,June,23,6,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,82.36,0,0,Check-Out,Timothy Williams,patrickacevedo@example.org,(827)669-0362,676213603431,2024-11-13 +Resort Hotel,0,100,2017,November,45,7,1,5,2,0.0,0,FB,IRL,Groups,TA/TO,0,0,0,A,C,0,No Deposit,262.0,179.0,0,Transient-Party,39.07,0,0,Check-Out,Ryan Salazar,mary47@example.org,433-827-8855x749,4043448112751,2024-08-27 +City Hotel,0,13,2017,April,18,29,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,235.0,0,Transient,48.3,0,0,Check-Out,Alexis Tucker,qcook@example.com,001-727-277-3023x60316,4039424452472227,2025-12-14 +Resort Hotel,0,69,2017,June,24,16,2,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,C,0,No Deposit,101.0,331.0,0,Transient-Party,87.13,0,0,Check-Out,Christopher Davis,woodrussell@example.com,975.351.7399x20517,38134729481930,2026-02-06 +City Hotel,0,105,2017,August,33,16,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,14.0,179.0,0,Transient,51.78,0,1,Check-Out,Stacie Butler,evelyn82@example.net,688.274.9442x31811,5425738536061543,2025-04-27 +City Hotel,0,44,2017,September,39,26,2,2,1,0.0,0,BB,BRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.72,0,0,Check-Out,Patricia Schwartz,srodgers@example.net,+1-873-919-1975x6832,340810879615947,2025-05-03 +City Hotel,0,38,2017,August,33,19,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,63.97,0,1,Check-Out,Mark Mills,jonathan91@example.org,6458698763,3575207652864943,2024-11-19 +Resort Hotel,0,16,2017,September,36,6,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,46.4,0,3,Check-Out,Todd Bishop,qgrant@example.net,947-222-3030x85938,3514014824543064,2025-04-14 +Resort Hotel,0,57,2017,March,11,11,2,5,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,168.0,179.0,0,Transient,229.27,0,0,Check-Out,Christopher Porter,ipoole@example.org,(567)568-0203x472,4521463823076219126,2025-12-14 +City Hotel,0,15,2017,November,47,22,0,1,1,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,33.0,179.0,0,Transient-Party,109.28,0,0,Check-Out,Lori Patton,lisamorton@example.com,922-278-0810,4640806437854266,2025-05-12 +Resort Hotel,0,115,2017,March,10,9,0,6,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,37.48,0,0,Canceled,Aaron Young,brookegalvan@example.net,544.648.0773,3520997252215928,2025-03-16 +City Hotel,0,276,2017,May,19,6,1,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient-Party,78.28,0,0,Check-Out,Joseph Davis,larrythompson@example.com,(536)253-5968x568,3565729988656620,2025-10-10 +City Hotel,0,39,2017,December,50,14,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,110.02,0,1,Check-Out,Philip Fernandez,zsmith@example.com,(605)226-8667x656,3502844023534611,2024-12-05 +City Hotel,0,48,2017,July,30,24,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.6,0,1,Check-Out,Randy Hopkins,donna14@example.com,(400)693-0374x0063,6565324365005295,2025-09-18 +Resort Hotel,1,192,2017,March,12,19,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,104.14,0,0,Canceled,Cory Hogan,megan40@example.org,+1-948-640-3133x837,30322411794631,2026-03-05 +City Hotel,0,21,2017,October,40,4,1,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,78.36,0,1,Check-Out,Tracy Wells,mbenson@example.com,(784)828-5177,4741989947079877,2025-05-01 +City Hotel,0,150,2017,December,48,2,1,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,113.0,0,2,Check-Out,Michael Williams,justinnguyen@example.com,865-588-4691x81654,6572098544022972,2024-04-20 +City Hotel,0,1,2017,July,29,17,0,1,3,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,D,1,No Deposit,12.0,153.0,0,Transient,119.96,0,1,Check-Out,Dominique Hamilton,mmiller@example.org,(880)652-4579x5170,6564584923130296,2025-04-19 +City Hotel,1,12,2017,December,52,24,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,136.72,0,0,Canceled,Robert Chang,fcortez@example.org,001-552-476-1655,180083069481586,2026-02-28 +Resort Hotel,1,135,2017,November,45,10,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,237.0,179.0,0,Transient,73.4,0,0,Canceled,Patrick Buckley,sheila55@example.org,001-326-464-2651x9762,2705444509766162,2025-06-12 +Resort Hotel,1,94,2017,November,48,28,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,103.93,0,0,Canceled,Richard Washington,johnstonmichael@example.org,(963)850-5705x9178,6011519195987139,2025-05-19 +City Hotel,1,0,2017,October,43,27,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,62.0,0,Transient,63.38,0,0,No-Show,Steven Griffith,kendra75@example.org,(934)528-3323x83562,3575102833697157,2025-10-30 +City Hotel,0,3,2017,June,26,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,G,0,No Deposit,13.0,179.0,0,Transient-Party,54.66,0,3,Check-Out,Erika Gonzalez,richard88@example.net,211.891.8206x0454,4391946099644208,2025-02-17 +Resort Hotel,0,157,2017,March,11,9,2,5,1,1.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,C,0,No Deposit,109.0,179.0,0,Transient-Party,1.61,0,0,Check-Out,Erika Maxwell,dixonjoshua@example.net,001-382-430-1134x82655,348331101580538,2025-10-18 +City Hotel,0,10,2017,July,29,21,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Contract,63.19,0,1,Check-Out,Brent Rojas,heidigonzales@example.com,+1-978-334-8195,30398472386624,2025-01-16 +Resort Hotel,1,292,2017,June,24,11,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,98.05,0,0,Canceled,Jaime Walker,hernandezjacob@example.com,963-297-0903x5529,180028871698380,2025-01-30 +City Hotel,1,12,2017,September,39,26,1,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,1,0,L,D,2,No Deposit,10.0,179.0,0,Transient,65.67,1,3,Canceled,John Zamora,schwartzjack@example.net,+1-565-401-7727x338,30104178121707,2024-10-11 +City Hotel,1,338,2017,March,10,10,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,60.75,0,0,Canceled,Timothy Gibson,tracymayer@example.net,001-576-591-1318,213120816494800,2026-03-27 +City Hotel,0,12,2017,January,2,4,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,106.69,1,2,Check-Out,Chad Cortez,edwardharrison@example.com,(758)594-2783x8164,180024022218418,2025-04-11 +City Hotel,0,52,2017,February,8,21,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,128.44,0,1,Check-Out,Vanessa Harris,johnjohns@example.org,766.914.1801x3742,4947614406540829,2024-04-27 +City Hotel,0,4,2017,April,14,5,2,4,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,189.91,0,1,Check-Out,Michael Brown,uwest@example.com,716-671-4227,213130036486015,2024-06-30 +Resort Hotel,0,153,2017,April,15,8,1,5,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,189.72,0,0,Check-Out,Samuel Ellis,ncarter@example.com,709-659-7568,4200391707337607252,2025-02-07 +Resort Hotel,0,2,2017,April,16,22,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,45.0,0,Transient,84.31,0,0,Check-Out,Greg Tanner,carpentermegan@example.com,(606)667-1249,3574345053967609,2024-04-20 +Resort Hotel,0,21,2017,September,39,27,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,61.75,0,0,Check-Out,Rachel Little,dbowman@example.com,848.254.2098,4866932772992945995,2026-01-24 +Resort Hotel,0,23,2017,August,35,28,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient-Party,47.76,1,0,Check-Out,Carolyn Cordova,theresaroberts@example.net,001-478-648-3893,4598321823180427,2024-07-04 +Resort Hotel,0,0,2017,June,25,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,49.43,0,2,Check-Out,Angelica Vincent,kristinharris@example.com,(581)412-3629,4066239632232,2026-01-26 +Resort Hotel,0,100,2017,December,50,14,2,5,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient-Party,123.24,0,1,Check-Out,Zachary Vargas PhD,dana72@example.net,987.677.8731x35035,3573789623387999,2025-01-08 +City Hotel,0,0,2017,August,31,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,124.68,1,1,Check-Out,Nicholas Fitzgerald,qortiz@example.net,839.550.3978,630481562191,2024-10-09 +City Hotel,0,44,2017,February,7,11,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.0,0,1,Check-Out,Garrett Riley,browningmark@example.com,8408741988,344653262252191,2025-05-14 +City Hotel,1,1,2017,July,30,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,13.0,45.0,0,Transient,61.99,0,1,No-Show,Leslie Hernandez,pmerritt@example.net,518.236.7463,3576852325033845,2025-01-16 +Resort Hotel,1,16,2017,January,4,22,1,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,142.52,0,0,Canceled,Abigail Baird,kathrynjohnson@example.org,849.246.7027,3531848594205951,2024-07-12 +Resort Hotel,0,97,2017,October,43,24,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,22.0,179.0,0,Transient,83.65,0,2,Check-Out,John Mack,tmartinez@example.net,+1-867-204-8038x3430,501853654488,2025-06-07 +City Hotel,0,47,2017,March,13,30,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,108.64,0,0,Check-Out,Joseph Mendoza,nancywebb@example.net,255.264.1672,30574919100543,2025-01-30 +City Hotel,0,36,2017,February,8,22,1,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.18,0,1,Check-Out,Samantha Chavez,petersonkevin@example.org,(391)222-1898x03263,4377700128265065,2025-05-25 +Resort Hotel,0,4,2017,October,41,8,1,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,215.23,1,2,Check-Out,Justin Smith,jaimegarcia@example.com,838-880-8629,4697133971814826,2025-07-18 +City Hotel,0,5,2017,April,16,16,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,119.38,0,1,Check-Out,Tiffany Anderson,huntdaniel@example.com,(892)831-9122,3575217015514846,2025-09-12 +Resort Hotel,0,100,2017,December,51,23,0,2,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,C,0,No Deposit,324.0,179.0,0,Transient-Party,43.32,0,0,Check-Out,Matthew Davis,amber02@example.org,955.553.8373x579,4776225554303,2024-04-01 +City Hotel,0,53,2017,December,50,14,2,5,3,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,96.13,0,0,Check-Out,Eric Warner,dtaylor@example.org,768-593-9185x2147,36075035794288,2024-04-07 +City Hotel,0,1,2017,December,50,9,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,110.89,0,1,Check-Out,Nicole Johnson,vincentcopeland@example.net,+1-769-638-3038,4198679918932848972,2024-12-03 +City Hotel,0,208,2017,June,23,9,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,277.0,179.0,0,Transient-Party,79.04,1,1,Check-Out,Raymond Sawyer,stephanie11@example.com,728.895.9421x145,4051528804912152,2024-08-15 +City Hotel,1,378,2017,February,7,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Contract,80.79,0,0,Canceled,Richard Wood,kimberly39@example.com,297-480-4818,30130733621956,2024-10-26 +Resort Hotel,0,248,2017,December,50,13,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,H,C,1,No Deposit,245.0,179.0,0,Transient-Party,48.94,1,0,Check-Out,Mark Dalton,wardjohn@example.org,001-901-481-8140,2278428735575544,2025-03-08 +City Hotel,0,32,2017,August,31,5,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,26.0,179.0,0,Transient,103.63,0,1,Check-Out,Steven Cook,bethany10@example.net,001-248-983-1810,2407803861712075,2025-07-30 +City Hotel,1,147,2017,March,11,14,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,79.14,0,0,Canceled,Jeffery Nelson,ahampton@example.net,+1-205-873-7733x98714,6011374073055934,2025-01-08 +City Hotel,0,138,2017,February,8,22,1,3,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.63,0,0,Check-Out,Kimberly Norton,pmathis@example.net,498-743-2203,6583065333700339,2026-02-10 +City Hotel,0,337,2017,June,25,20,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient-Party,63.32,0,0,Check-Out,Angela Gilmore,sgomez@example.com,340-781-3727x7631,30266676332159,2025-11-12 +City Hotel,0,11,2017,January,4,24,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.06,0,1,Check-Out,Amy Dougherty,sampsonrobert@example.net,936-365-1306,6011869624975357,2025-09-30 +Resort Hotel,0,4,2017,September,36,5,1,3,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,35.48,0,0,Check-Out,Stacy Rodriguez,lisacollins@example.com,638.943.4631,4139463167612700,2025-03-02 +City Hotel,0,146,2017,May,20,15,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,114.32,0,1,Check-Out,Manuel Diaz,duanemclean@example.com,(612)240-6293x7895,4541077300626401,2025-07-19 +Resort Hotel,1,39,2017,August,34,26,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,65.52,0,0,Canceled,Justin Jones,littleandrea@example.net,377-679-3208x284,4405835284311901,2025-09-05 +City Hotel,0,9,2017,January,4,23,2,3,2,2.0,0,BB,DEU,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,Christine Zavala,mistyenglish@example.net,(395)484-7136x86436,38926579784069,2025-06-23 +City Hotel,1,112,2017,December,51,17,0,4,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,47.36,0,0,No-Show,Brian Mendoza,benderkimberly@example.com,511.373.1052x15627,4914498559979599,2024-05-07 +City Hotel,0,37,2017,May,20,14,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,93.98,0,1,Check-Out,Lauren Haley,mosesdavid@example.org,(934)829-9264,6564475953234969,2025-10-01 +City Hotel,0,2,2017,April,15,11,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,18.0,179.0,0,Transient,234.22,0,1,Check-Out,Patrick Perez,antonio57@example.net,+1-596-250-3018x5077,4878263447351798459,2024-11-28 +Resort Hotel,1,14,2017,November,47,21,1,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,134.0,179.0,0,Transient,123.36,0,0,Canceled,Derek Frazier,bleblanc@example.com,+1-955-397-7143x691,30192277279476,2025-07-24 +Resort Hotel,0,16,2017,November,48,26,0,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,200.24,1,1,Check-Out,Arthur Reed,jennawilkerson@example.org,391-520-4644x46274,341030200770605,2025-10-13 +City Hotel,0,259,2017,April,18,27,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,175.92,0,1,Check-Out,Mr. Bryan Mckinney,elliottcheryl@example.net,+1-797-946-6993x46490,4845923249502041305,2024-11-12 +Resort Hotel,0,108,2017,January,5,31,4,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,109.41,0,0,Check-Out,Kim Carter,ivan68@example.com,520-372-4863x11343,377753824881485,2024-10-01 +City Hotel,0,153,2017,February,8,18,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,32.0,179.0,0,Transient,219.82,1,0,Check-Out,Rebecca Dougherty,dcantu@example.net,820.716.0762,180052352388105,2025-07-05 +City Hotel,1,35,2017,August,34,23,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,9.0,179.0,0,Transient,50.67,0,0,No-Show,Teresa Jones,robertdavis@example.com,8649036840,4489660882228821,2024-09-04 +Resort Hotel,0,28,2017,June,24,10,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,81.61,0,0,Check-Out,Judith Miller,danielwilliams@example.org,(225)972-3121,30301468379256,2025-09-23 +Resort Hotel,1,0,2017,March,12,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,228.89,0,2,Canceled,Donna Frye,dduke@example.net,(264)827-2516,3597687309093638,2025-09-27 +City Hotel,1,100,2017,February,7,14,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,132.0,179.0,0,Transient,126.2,0,0,Canceled,Donald Terry,rmiller@example.org,677-216-5354x346,4780727808062909552,2025-06-15 +City Hotel,0,13,2017,October,41,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,39.32,1,1,Check-Out,Shaun Meyer DDS,leealejandro@example.org,871-581-8781x77097,2277133334997278,2024-10-19 +City Hotel,0,284,2017,April,16,14,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,117.57,0,1,Check-Out,Wayne Weaver,gentrymatthew@example.net,(392)637-3235,4952371823304260932,2025-01-05 +City Hotel,1,89,2017,January,4,20,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,163.97,0,0,Canceled,Gregory Wallace,ythompson@example.org,001-523-354-4324x08632,4128714111318684,2025-12-09 +City Hotel,0,51,2017,May,19,10,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,136.46,0,2,Check-Out,Dorothy Brown,lsmith@example.net,(382)568-8270x86502,4487564907522865,2024-05-11 +City Hotel,0,214,2017,June,23,5,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient-Party,112.24,0,1,Check-Out,Crystal Meza,travis85@example.net,(608)306-0831x74274,2720985997815144,2025-04-14 +City Hotel,0,3,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,94.33,0,0,Check-Out,Jennifer Cooper,thanson@example.net,(388)334-8426x2504,675974068743,2025-07-25 +City Hotel,1,394,2017,May,20,17,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.71,0,1,Canceled,Erin Watkins,bryanjackson@example.org,+1-455-565-7610,4710835740261732,2025-08-11 +City Hotel,1,159,2017,April,18,29,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,3.09,0,0,Canceled,Sarah Wallace,prestonsheila@example.org,869-509-0695x545,4031121535958741829,2024-12-25 +City Hotel,0,2,2017,September,37,13,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,53.55,0,1,Check-Out,Carlos Clarke,geraldandrews@example.net,452.852.6159,3566291509267105,2024-04-23 +City Hotel,0,128,2017,February,5,1,2,0,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.51,0,1,Check-Out,David Washington,tamaramurphy@example.org,210.456.2506x68036,4859422257232906819,2024-04-12 +City Hotel,0,155,2017,March,12,23,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,68.83,0,1,No-Show,Patricia Williams,phillipsemily@example.net,(251)263-5373x23429,4844398362373318,2025-04-15 +City Hotel,0,140,2017,February,6,8,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,239.0,179.0,0,Transient,117.9,0,1,Check-Out,Jesus Jackson,andreasampson@example.com,4478669459,30548951964115,2025-01-09 +Resort Hotel,1,101,2017,April,13,1,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,65.3,0,2,Canceled,Michelle Mitchell,xtownsend@example.com,508.373.0909x52336,4226367138505741,2026-02-25 +Resort Hotel,0,2,2017,January,4,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient,63.14,1,0,Check-Out,Sara Schwartz,daniellewagner@example.com,854-961-5225x551,3585398567571240,2025-12-31 +City Hotel,0,12,2017,November,44,3,1,3,2,0.0,0,BB,SWE,Complementary,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,91.4,1,1,Check-Out,Brittany Young,michael47@example.net,277-861-6480x42100,3563573041094474,2024-06-12 +City Hotel,0,13,2017,July,30,25,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,236.89,0,2,Check-Out,Eugene Martinez,brownlisa@example.net,(818)523-5863,30382398860193,2025-01-05 +City Hotel,0,36,2017,August,34,22,2,4,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,64,Transient-Party,76.78,0,0,Check-Out,Cody Hart,jilladams@example.com,001-787-489-3148x9044,4253995633964,2025-08-31 +City Hotel,0,24,2017,January,2,9,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,136.87,0,0,Check-Out,Evan Cooper,ricardobenitez@example.net,(666)245-7026x91480,676214233238,2025-10-30 +Resort Hotel,0,94,2017,March,13,30,3,4,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,E,A,2,No Deposit,15.0,179.0,0,Transient,49.55,1,0,Check-Out,Joshua Martin,timothybell@example.net,(541)727-3345x056,6011159166962082,2024-04-03 +City Hotel,0,25,2017,March,11,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,19.0,179.0,0,Contract,105.83,0,3,Check-Out,Thomas Sullivan,deborah45@example.net,484.476.2362,4135610370123867,2025-02-21 +City Hotel,0,147,2017,November,46,11,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.86,0,1,Check-Out,Mr. Jimmy Flores Jr.,amberward@example.org,+1-696-507-1357x96699,213167231038548,2024-05-12 +Resort Hotel,0,54,2017,June,25,20,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,262.0,179.0,0,Transient-Party,46.75,0,1,Check-Out,Vanessa Rivera,cadkins@example.net,869-951-3947x59434,4503105783954,2025-06-02 +City Hotel,1,49,2017,October,41,13,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.94,0,1,Canceled,Kara Roberts,dennisdarrell@example.org,287.837.1527x330,6011715234086384,2025-03-06 +City Hotel,0,32,2017,March,10,5,1,5,1,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,105.85,0,1,Check-Out,Veronica Berry,mccoychristian@example.org,(877)627-1135,4265080735457180,2025-11-25 +City Hotel,0,256,2017,April,15,10,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,237.93,0,0,Check-Out,Keith Meadows,victoria80@example.com,612.267.3650x7331,5140274696832121,2025-09-24 +City Hotel,0,0,2017,April,14,4,1,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,125.55,0,1,Check-Out,Michael Dennis,jasonrodriguez@example.com,349.400.6832x6202,4275200339090827,2024-04-27 +City Hotel,0,39,2017,March,9,2,2,5,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,9.0,179.0,0,Transient,134.23,1,1,Check-Out,Brenda Pierce,qcarpenter@example.org,709.508.6120,30347822004387,2024-12-24 +City Hotel,0,19,2017,May,19,7,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,83.09,0,0,Check-Out,James Randall,williamslarry@example.org,7655633536,676216588894,2025-10-26 +Resort Hotel,0,0,2017,November,46,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,73.0,0,Transient-Party,53.57,1,0,Check-Out,Brandon Brown,tannererica@example.org,5248186572,6011128141710387,2026-03-07 +Resort Hotel,0,0,2017,June,23,9,1,1,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,317.0,245.0,0,Transient-Party,40.68,0,0,Check-Out,Lauren Walker,jacob62@example.org,703-706-7509x9197,3509631475790897,2025-11-18 +City Hotel,1,168,2017,June,24,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,83.27,0,0,Canceled,Diana Johnson,kbrown@example.org,449-704-7663x90565,3541920671713625,2025-06-21 +Resort Hotel,0,2,2017,September,39,24,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,49.57,0,1,Check-Out,Jill Powers,fritzjulia@example.org,(463)259-0434,2279245876769580,2024-07-31 +Resort Hotel,0,0,2017,October,43,25,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,284.0,179.0,0,Transient-Party,74.31,0,0,Check-Out,Jorge Lee,oross@example.org,257.376.6130x306,4004696571700,2025-12-07 +City Hotel,0,2,2017,December,50,13,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient,0.62,0,1,Check-Out,Larry Harding,graykelly@example.net,001-656-477-3188,2265773445608480,2024-09-09 +City Hotel,0,18,2017,May,19,10,0,1,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,116.3,0,0,Check-Out,Heather Hernandez,jamessmith@example.com,001-724-678-9306x92905,4157294709942488,2024-11-18 +City Hotel,0,87,2017,December,49,7,1,2,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,85.82,0,0,Check-Out,Jaclyn Watson,vazquezdavid@example.net,+1-238-412-8582x94380,378992937946350,2025-11-14 +City Hotel,1,150,2017,March,13,29,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,113.82,0,0,Canceled,Gregory Madden,leslie40@example.com,712-260-3542x5859,180099679576193,2025-12-14 +Resort Hotel,0,45,2017,April,18,30,1,2,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,183.14,0,2,Check-Out,Anita Luna,munozdana@example.com,632-964-4739,2720411761672736,2025-02-19 +City Hotel,0,48,2017,November,46,13,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,66.56,0,1,Check-Out,Willie Lara,spencercarly@example.net,4977486531,4103621733471149,2025-12-24 +Resort Hotel,1,46,2017,October,41,14,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,286.0,179.0,0,Transient,47.75,0,1,No-Show,Robert Waller,smithmaria@example.com,(227)399-3662x548,2553110184376071,2026-02-23 +City Hotel,0,17,2017,December,51,19,0,2,2,0.0,0,BB,SWE,Online TA,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,110.16,0,1,Check-Out,Steven Taylor,zwise@example.org,+1-903-817-4870x4187,4309842745664,2025-09-08 +Resort Hotel,0,94,2017,December,52,26,2,2,2,0.0,0,HB,RUS,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,378.0,179.0,0,Transient,43.44,0,1,Check-Out,Angelica Clark,eric63@example.com,907.581.8065,639086458838,2025-03-12 +City Hotel,0,12,2017,March,13,28,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,217.37,0,0,Check-Out,Sean Hatfield,christopher63@example.com,581.743.5973,348770035802494,2026-02-25 +City Hotel,0,90,2017,March,10,4,1,2,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,28.0,331.0,0,Transient,92.75,0,0,Check-Out,Tyler Avila,josephallen@example.org,001-711-755-2415x7792,3569242080681039,2025-12-17 +City Hotel,0,62,2017,August,33,18,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,141.04,0,0,Check-Out,Jason Rocha,janetdrake@example.net,409.522.6658,5554239467132810,2025-12-07 +City Hotel,0,32,2017,July,29,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient,78.8,0,0,Check-Out,Justin Page,gmendoza@example.org,+1-381-244-9328x95579,4823303228283,2026-03-22 +City Hotel,0,0,2017,January,2,10,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,101.98,0,0,Check-Out,Breanna Lopez,vperry@example.com,733-878-5122x29593,30015763259746,2025-01-30 +Resort Hotel,0,85,2017,January,2,3,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,87.79,0,1,Check-Out,Julian Williams,jacksonbianca@example.org,860-805-6141x048,582361965384,2025-06-15 +City Hotel,1,55,2017,March,11,9,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,81.0,179.0,0,Transient,133.72,0,0,Canceled,Sandra Torres,nicole77@example.com,371-446-8472x89630,4938630726169066,2024-07-01 +City Hotel,0,1,2017,May,21,22,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.58,0,1,Check-Out,Julie Johnson,beckbethany@example.com,001-919-467-3971x2637,2259922339854092,2024-12-22 +City Hotel,0,33,2017,July,30,28,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,35.0,179.0,0,Contract,47.51,0,0,Check-Out,Dennis Blanchard,vmiller@example.org,330.914.0850x7085,3567864930652183,2024-12-19 +Resort Hotel,0,211,2017,March,12,23,2,3,2,0.0,0,FB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,29.0,179.0,0,Transient,227.13,0,0,Check-Out,Kaitlyn Valdez,davidcrawford@example.net,(775)516-1027x7988,30549636159485,2026-03-09 +City Hotel,1,48,2017,June,24,13,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.36,0,1,Canceled,Jennifer Vasquez,rbenson@example.com,996.419.3810,676179225898,2025-09-19 +City Hotel,0,2,2017,September,36,5,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,80.97,0,2,Check-Out,Danielle Wilson,phillipmartinez@example.net,001-983-267-9612x07959,180050527961814,2024-08-01 +City Hotel,1,151,2017,December,2,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,A,A,0,Non Refund,11.0,179.0,0,Transient,78.73,0,0,Canceled,Zachary Jones,hacevedo@example.net,+1-932-214-1818x439,3559533555875839,2025-09-16 +City Hotel,1,171,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,115.77,0,0,Canceled,Lauren Cunningham,moralesjessica@example.org,574-603-9722,4957090585465855,2025-10-27 +Resort Hotel,0,14,2017,November,48,29,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,101.16,0,0,Check-Out,Lori Alvarez,woodsdaniel@example.org,(415)443-8007,4532294187858488487,2025-02-12 +Resort Hotel,0,0,2017,November,47,23,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,E,0,No Deposit,17.0,75.0,0,Transient,49.81,0,0,Check-Out,Barbara Hunt,jonesfrancisco@example.com,865.779.8914,180077993010891,2024-08-26 +City Hotel,0,0,2017,July,28,10,0,2,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,30.0,179.0,0,Transient,0.88,0,0,Check-Out,Sarah Martin,moorejacqueline@example.net,(249)322-6042x17254,4575601315639239,2024-08-09 +City Hotel,0,38,2017,January,4,22,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,D,0,No Deposit,79.0,179.0,0,Transient,140.66,0,0,Check-Out,Francisco Johns,virginia46@example.com,886-412-7139x053,3514166143363788,2024-11-10 +City Hotel,0,50,2017,May,20,17,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,223.61,0,3,Check-Out,Christopher Nelson,charleschambers@example.org,(717)671-3538x99096,4087369959534165811,2025-12-25 +Resort Hotel,0,53,2017,August,33,18,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,81.94,0,0,Check-Out,Thomas Kelly,vjones@example.com,+1-569-862-9240x5807,6011461234462339,2025-05-08 +City Hotel,1,135,2017,January,5,31,0,2,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,194.0,0,Transient,112.61,0,0,Canceled,Joseph Mayer,christopher06@example.com,(361)318-7407x499,4707372909990203,2025-04-09 +Resort Hotel,1,140,2017,February,7,17,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,108.5,0,0,No-Show,Pamela White,kyle50@example.net,(653)590-1599x736,6557211844222601,2025-05-27 +City Hotel,1,11,2017,November,48,25,0,1,1,1.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,71.0,0,Transient,79.86,0,2,Canceled,Paul Stephens,thomas03@example.com,807-301-9295x05086,4657626109227502719,2025-06-26 +Resort Hotel,1,53,2017,August,34,24,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,64.25,0,1,Canceled,Samantha Cohen,orozcodebra@example.org,2917650493,3599414984273254,2025-01-30 +Resort Hotel,1,113,2017,April,14,6,2,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,87.93,0,1,No-Show,Michael Barker,fpowell@example.com,2445218512,4471849448608879,2025-11-17 +City Hotel,1,3,2017,January,4,24,0,2,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,210.0,179.0,0,Transient,139.34,0,0,Canceled,Kevin Morrow,hughesjamie@example.org,+1-662-465-3365x6436,2708133499447399,2025-12-28 +Resort Hotel,0,7,2017,November,44,4,0,3,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,313.0,179.0,0,Group,51.37,0,1,Check-Out,Joseph Watson,garciadavid@example.org,6755425523,2708153005364243,2025-05-14 +City Hotel,1,12,2017,July,27,5,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,6.0,179.0,0,Transient,87.88,0,0,Canceled,Mr. Thomas Garcia,mercedesortega@example.net,001-724-815-6880x728,3554125836419340,2026-03-20 +Resort Hotel,0,16,2017,August,32,8,0,1,2,1.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,175.0,179.0,0,Transient,89.69,1,0,Check-Out,Daniel Lopez,gibsonanthony@example.org,3072388950,213192662982428,2025-11-23 +City Hotel,0,0,2017,August,31,4,0,1,3,0.0,0,BB,PRT,Undefined,Direct,0,0,0,A,B,3,No Deposit,13.0,179.0,0,Transient-Party,91.74,0,0,Check-Out,Lisa Guerra,theodore65@example.com,+1-351-305-1193x14504,4313536819728,2024-12-20 +Resort Hotel,1,140,2017,January,5,31,4,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,A,0,No Deposit,162.0,179.0,0,Transient,120.08,0,0,Canceled,Kim Arnold,alexander19@example.org,+1-458-222-8258x5770,4910211863735829,2024-07-20 +City Hotel,0,392,2017,March,10,6,0,3,2,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,134.62,0,1,Check-Out,Ashley Stevens,kelly26@example.net,719.756.0528x562,3506614505855818,2024-12-13 +City Hotel,0,149,2017,March,12,22,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,Robert Mclean,mckinneymorgan@example.net,+1-981-436-6618x8009,38796956941420,2024-11-03 +City Hotel,1,416,2017,May,22,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,99.16,0,0,Canceled,Eric Cox,melissajones@example.com,859-555-2122x155,4285092147300964963,2026-03-22 +City Hotel,0,16,2017,November,47,23,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.89,1,1,Check-Out,Stacy Harper,jamie24@example.net,944-904-5684,4922558938743,2024-06-06 +City Hotel,0,30,2017,May,18,5,1,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,102.59,0,0,Check-Out,Gloria Mckinney,huffjon@example.com,862-969-1422x92710,4629315871440546,2025-11-10 +City Hotel,1,444,2017,April,18,29,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,111.44,0,0,Canceled,Robert Walker,natalie66@example.org,(675)558-3110x8123,3518061282277699,2026-02-09 +Resort Hotel,1,383,2017,December,50,14,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,129.22,1,0,Canceled,Brenda Perez,renee82@example.org,(736)345-1186,4606816523824463,2024-05-09 +City Hotel,0,98,2017,February,7,13,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,110.25,0,1,No-Show,Carlos Miller,stephaniebrown@example.com,260.580.7946x613,4428730002516729409,2025-04-23 +Resort Hotel,0,27,2017,October,44,28,2,1,3,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,227.3,1,1,Check-Out,Rachel Jones,david11@example.com,2358622135,3504203679761614,2024-05-02 +Resort Hotel,0,248,2017,January,2,4,0,5,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,246.0,179.0,0,Transient-Party,4.31,0,1,Check-Out,Nicole Williams,richard38@example.net,372-509-5876x012,6579588241357310,2025-07-09 +Resort Hotel,0,326,2017,April,15,11,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,246.0,179.0,0,Transient,198.0,0,0,Check-Out,Ricky Palmer,corey59@example.org,001-530-957-1519x593,3518637342574181,2024-12-04 +City Hotel,0,54,2017,June,24,10,1,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,121.07,0,0,Check-Out,Bryan King,joshuanorris@example.com,(951)733-8639,6011275119900621,2025-12-10 +Resort Hotel,0,145,2017,January,2,9,1,5,2,0.0,0,BB,BRA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,92.0,179.0,0,Transient,92.6,0,0,Check-Out,Michael Webster,dylan74@example.com,568-523-8573x1257,4626118104616339666,2025-03-03 +Resort Hotel,0,212,2017,April,15,6,1,2,2,1.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,C,1,No Deposit,15.0,179.0,0,Transient-Party,120.36,1,1,Check-Out,Tamara Harris,mark31@example.com,405-833-9902x659,343591921498493,2025-11-02 +City Hotel,0,42,2017,May,20,20,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,115.53,1,1,Check-Out,Cathy Bell,beverly50@example.com,(350)993-7300x1638,3590449213201584,2025-07-04 +Resort Hotel,0,15,2017,November,47,19,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,169.0,179.0,0,Transient,34.49,0,0,Check-Out,Ryan Mcmahon,maxwelldebbie@example.com,222.501.0328x3111,570613809724,2025-01-22 +City Hotel,1,9,2017,October,40,6,2,0,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,33.84,0,0,No-Show,Hannah Martin,davisnicole@example.com,+1-974-372-9564x694,6530896860521399,2025-07-13 +City Hotel,1,49,2017,October,42,16,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,97.54,0,0,Canceled,Monica Allen,velazquezdarlene@example.com,507.620.6102,348108968223562,2024-10-28 +Resort Hotel,0,0,2017,November,46,16,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,50.8,0,1,Check-Out,Annette Lane,ynewton@example.org,001-360-461-6483,378395165764067,2024-08-23 +City Hotel,1,249,2017,November,47,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,41,Transient,104.51,0,0,Canceled,Daniel Lee,shermanalexander@example.com,306.381.2587,676254856229,2026-03-12 +Resort Hotel,0,184,2017,May,22,29,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient,58.08,0,0,Check-Out,Steven Medina,fowleramanda@example.net,+1-302-652-7061x22606,341903783218921,2024-07-01 +City Hotel,0,12,2017,January,2,10,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,147.81,0,1,Check-Out,Annette Lewis,shawn60@example.org,001-324-558-6414x5823,3572018012303297,2025-09-11 +Resort Hotel,0,151,2017,February,8,19,4,3,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,142.91,0,3,Check-Out,Michelle Richardson,traceyhill@example.net,001-584-928-7333x077,4894464003781,2024-05-24 +City Hotel,0,29,2017,June,25,17,2,1,2,0.0,0,BB,BEL,Offline TA/TO,Direct,0,0,0,A,G,0,No Deposit,34.0,179.0,0,Transient-Party,90.08,0,0,Check-Out,Jessica Rosario,cynthia44@example.com,(234)774-7464x023,4689302414191707185,2024-08-16 +City Hotel,0,5,2017,April,14,4,1,0,2,0.0,0,SC,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,113.19,0,0,Check-Out,Henry Gray,mary33@example.com,(641)821-2428x359,346475686375855,2025-10-23 +City Hotel,1,203,2017,February,9,29,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,123.18,0,1,Canceled,Darren Rodriguez,nathanpena@example.net,806-901-4033,180037047473990,2026-03-25 +Resort Hotel,1,0,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,19.4,0,1,No-Show,Mrs. Ashley Taylor,wwright@example.net,(891)923-5791x00331,580896408219,2025-09-12 +City Hotel,0,94,2017,March,10,5,2,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.68,0,2,Check-Out,Michele Hawkins,qjohnson@example.com,001-959-706-2070x986,6011529132713795,2025-05-25 +Resort Hotel,1,2,2017,June,26,25,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,246.0,331.0,0,Transient,48.37,0,0,No-Show,Garrett Wilson,eric53@example.org,943-916-5855,30216868059193,2025-03-01 +City Hotel,0,11,2017,September,36,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.02,0,2,Check-Out,Kyle Collins,urobles@example.org,(744)881-6071x721,4704508974683,2025-01-15 +City Hotel,1,36,2017,August,32,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,63,Transient,63.04,0,0,Canceled,Jill Spencer,tonya93@example.com,(839)662-7954x93040,503823684488,2024-12-15 +City Hotel,0,43,2017,April,18,30,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,225.79,0,3,Check-Out,Scott Lopez,millerjulie@example.net,+1-571-802-7049,343241533558876,2024-08-14 +City Hotel,0,8,2017,November,45,11,1,1,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,133.41,0,0,Check-Out,Ryan Alvarez,christine89@example.net,+1-341-817-7449x40136,30419022598987,2025-02-03 +City Hotel,0,44,2017,February,5,1,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,251.02,0,2,Check-Out,Cassie Lutz,badams@example.net,2753991100,4156238870111747,2024-12-19 +Resort Hotel,1,257,2017,August,33,19,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,82.27,0,0,Canceled,Brian Kim DDS,gary05@example.net,(283)470-2562,5381214557160723,2025-05-21 +City Hotel,1,92,2017,April,17,27,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.93,0,0,Canceled,Charles Morales,antonio57@example.net,001-283-256-2043x895,3508743211963489,2024-04-19 +City Hotel,1,151,2017,February,6,8,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,137.33,0,0,Canceled,Ashley Schaefer,wayneschmidt@example.com,341-431-6587x12050,30039196435376,2025-03-02 +Resort Hotel,1,86,2017,August,32,7,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,309.0,179.0,0,Transient-Party,44.65,0,0,Canceled,Amy Hester,peterwagner@example.com,(232)671-3209,4638195382415891,2025-04-06 +Resort Hotel,0,20,2017,March,11,12,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,252.0,1,1,Check-Out,Kurt Ewing,joyceobrien@example.net,(361)929-6311x5697,3518667616533928,2025-10-22 +City Hotel,0,30,2017,January,2,8,0,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,213.0,185.0,0,Transient-Party,86.19,0,0,Check-Out,Ryan Hardy,keithsimmons@example.net,001-916-626-7821x456,3564165112186625,2026-02-06 +City Hotel,1,25,2017,January,2,1,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,208.04,0,0,Canceled,Micheal Perkins,davismichael@example.com,001-875-302-6158x618,4796539742918482,2025-10-06 +Resort Hotel,0,41,2017,January,2,1,1,2,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,C,0,No Deposit,313.0,179.0,0,Transient-Party,65.15,1,1,Check-Out,Richard Schneider,burnettjennifer@example.net,001-834-971-7613x7988,376147691741693,2025-02-28 +Resort Hotel,1,146,2017,November,48,25,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,75,Transient,51.89,0,1,Canceled,John Morrison,fthompson@example.net,349-359-7378x6265,639097328517,2024-07-22 +City Hotel,0,10,2017,November,47,24,1,2,1,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,166.67,0,0,Check-Out,John Ramirez,dixonamanda@example.net,599.663.9117x9238,6552449079750335,2025-12-25 +Resort Hotel,0,167,2017,November,46,12,2,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,157.0,179.0,0,Transient,64.12,0,0,Check-Out,Ashley King,longlauren@example.org,2258862638,30558611965584,2025-12-01 +Resort Hotel,1,225,2017,February,9,29,1,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,231.46,0,0,Canceled,Mark Taylor Jr.,hernandezelizabeth@example.org,+1-627-432-1087x377,4887985025046774,2026-03-17 +Resort Hotel,1,197,2017,January,3,15,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,104.36,0,1,Canceled,Barry Gregory,vzuniga@example.net,+1-244-835-6480x7894,3506994038997869,2024-05-25 +Resort Hotel,0,90,2017,September,36,8,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,122.19,1,3,Check-Out,Janet Shelton,nataliehernandez@example.org,(679)530-5796,2700302150058781,2025-06-27 +City Hotel,1,109,2017,January,2,11,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,78.7,0,0,Canceled,Marco Davis,johnmiller@example.com,+1-687-833-4622,5427361225196997,2025-03-03 +City Hotel,1,89,2017,November,48,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,97.52,0,0,Canceled,Paul Saunders,itucker@example.com,242-287-2231x304,180019849371895,2025-08-07 +Resort Hotel,0,99,2017,February,9,25,2,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,81.9,0,0,Check-Out,Christina Bates,summersjeanette@example.org,+1-751-529-4869x3504,6011930249619075,2025-11-29 +City Hotel,0,399,2017,September,38,19,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,80.6,0,1,Check-Out,Dennis Cooper PhD,sherri61@example.com,(540)835-2703x20361,6578842307424956,2024-08-09 +City Hotel,1,333,2017,May,20,15,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,64,Transient,74.34,0,0,Canceled,Tiffany Johnson,hannahlyons@example.com,(663)398-3842,3590913920007634,2024-06-25 +Resort Hotel,0,162,2017,November,44,1,2,5,2,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,47.87,1,0,Check-Out,Thomas Reyes,lopezkylie@example.com,(700)489-5413,3557063081308495,2024-04-06 +City Hotel,0,13,2017,November,46,13,0,2,2,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.46,0,1,Check-Out,James Stevens,mlopez@example.com,(322)989-8108x50009,213130224115913,2024-04-16 +City Hotel,0,0,2017,July,29,19,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.55,0,0,Check-Out,Justin Dalton,fhall@example.com,(357)394-1050x3197,3517621675246618,2025-05-10 +City Hotel,1,19,2017,August,33,13,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,79.86,0,0,Canceled,Michael Henry,rebekahgarcia@example.com,770-787-8223,6552252928115902,2025-07-05 +City Hotel,0,86,2017,June,24,11,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,Refundable,30.0,179.0,0,Transient,77.01,0,0,Check-Out,Mike Freeman,alexanderking@example.org,676-984-7675x0634,6574840544431424,2024-10-24 +Resort Hotel,0,101,2017,August,32,4,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,84.69,0,2,Check-Out,Michael Keller,ewheeler@example.com,9948442740,3536286911199976,2024-04-25 +Resort Hotel,1,18,2017,August,33,18,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Refundable,246.0,179.0,0,Transient,81.9,1,0,Canceled,Laura Alvarez,woodwilliam@example.org,(444)441-0619x20841,180054001478790,2026-03-11 +Resort Hotel,0,42,2017,December,52,27,0,4,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,2,No Deposit,250.0,179.0,0,Transient,252.0,0,1,Check-Out,Katie Myers,douglas05@example.net,(603)487-6738,3597734126061040,2025-04-15 +City Hotel,1,211,2017,April,15,10,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.26,0,0,Canceled,Wesley Jensen MD,elizabethbradford@example.com,001-318-446-1223,560499623133,2025-06-16 +City Hotel,1,57,2017,April,14,8,0,4,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,200.17,0,0,Check-Out,Erica Johnson,stephaniemckee@example.org,851-840-6534x0292,3530875211873912,2026-01-14 +City Hotel,0,17,2017,December,52,27,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,130.83,0,0,Check-Out,Russell Bailey,michael87@example.com,531.367.8504x3744,580042408998,2024-09-04 +City Hotel,0,48,2017,January,4,22,1,4,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient-Party,132.38,0,0,Check-Out,Alyssa Vance,randallpowers@example.org,001-997-254-2397x2801,345668541882922,2025-10-20 +Resort Hotel,0,34,2017,November,45,8,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,303.0,179.0,0,Transient-Party,37.0,0,0,Check-Out,Brent Reed,lclark@example.com,328-645-3115x87079,3595905340054167,2024-12-26 +City Hotel,0,2,2017,April,14,4,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,0,No Deposit,15.0,179.0,0,Transient,252.0,1,1,Check-Out,Gregory Stanley,hhernandez@example.net,+1-213-898-2981,4976386597560619,2025-09-03 +Resort Hotel,0,41,2017,August,32,8,0,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,238.0,179.0,0,Transient,87.93,0,1,Check-Out,Matthew Watkins,hendersonerin@example.org,2443159385,676167520367,2024-07-21 +City Hotel,0,19,2017,September,38,22,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,93.62,0,0,Check-Out,Ana Torres,brandymiller@example.com,914.696.9645x33715,6597043417053291,2024-04-12 +City Hotel,1,284,2017,May,19,13,2,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient,125.86,0,0,No-Show,Alejandro Nguyen,garciapamela@example.org,433.743.4118,2257524139886787,2025-10-31 +Resort Hotel,0,88,2017,August,35,27,1,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,64.54,0,0,Check-Out,Scott Bradley,dianawilliams@example.org,+1-214-486-4022x9483,4746598889602,2025-09-23 +City Hotel,1,13,2017,June,23,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,85.02,0,0,Canceled,Deborah Dominguez,xmurphy@example.net,+1-520-748-7287x4394,4317411731760707726,2025-11-30 +City Hotel,1,150,2017,July,27,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,21,Transient,83.61,0,0,Canceled,Victoria Gray,thompsonjorge@example.net,+1-262-913-1841,180061582828012,2024-11-03 +City Hotel,0,0,2017,July,29,20,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,230.0,0,Transient-Party,103.05,0,0,Check-Out,Kenneth Stokes,stephanie41@example.org,778-609-8865,4588285512670415421,2026-02-14 +City Hotel,0,25,2017,June,25,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,225.0,0,Transient,100.06,0,0,Check-Out,Michael Rogers,donalddaniel@example.org,573-823-4251,4915553131721981,2025-10-14 +Resort Hotel,0,54,2017,November,48,29,1,2,2,1.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,64.02,0,1,Check-Out,Pamela Morgan,melissaescobar@example.net,675-456-5173,4469121506500900157,2024-04-09 +Resort Hotel,0,0,2017,July,27,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,44.08,0,1,Check-Out,Heidi Graham,hfloyd@example.com,(720)661-9434x8520,30121374847281,2024-09-03 +City Hotel,0,18,2017,July,28,10,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,83.03,0,1,Check-Out,Ryan Cobb PhD,xbrown@example.net,608.554.1244x788,4169166442888,2025-08-18 +Resort Hotel,0,98,2017,November,45,7,0,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient-Party,143.0,0,0,Check-Out,Donna Williams,jamie13@example.com,5054073535,3505542940202539,2025-07-10 +Resort Hotel,0,4,2017,September,36,4,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,40.96,0,1,Check-Out,Jennifer Perez PhD,riggstheresa@example.net,344-492-9579x786,213133241065988,2024-04-01 +City Hotel,0,138,2017,March,10,4,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.85,0,1,Check-Out,Ryan Davis,nbenjamin@example.com,+1-760-803-4222,5582517083364933,2025-11-09 +City Hotel,1,21,2017,June,26,28,2,4,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.55,0,0,No-Show,Austin Solis,daviddodson@example.org,(846)577-5166,36948787459658,2025-09-22 +Resort Hotel,0,0,2017,June,24,11,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,281.0,179.0,0,Transient,82.92,0,2,Check-Out,Daniel Flynn,vcabrera@example.net,6316721162,379837285609275,2024-06-04 +City Hotel,0,283,2017,June,23,4,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,94.69,0,0,Check-Out,Elizabeth Brock,donaldbanks@example.net,(216)296-1760,4637516495408039,2026-01-17 +Resort Hotel,0,7,2017,September,37,13,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,E,0,No Deposit,246.0,179.0,0,Transient,105.52,0,0,Check-Out,Joshua Gonzalez,williamsonlisa@example.org,+1-840-283-9366x6662,4524835216097855,2025-08-25 +Resort Hotel,0,101,2017,June,23,3,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,176.0,179.0,0,Contract,64.86,0,1,Check-Out,Mario Chavez,gjones@example.net,695.758.8371x03558,4337413422972472,2025-11-20 +City Hotel,1,106,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,43.0,179.0,0,Transient,86.32,0,0,Canceled,Catherine Smith,charlescole@example.net,677.297.3417,3532032091352348,2026-03-22 +City Hotel,1,155,2017,June,23,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,62.09,0,0,Canceled,Shari Ray,joseph98@example.net,971-259-2912x135,4491994293635589,2024-10-26 +City Hotel,0,107,2017,January,5,29,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,88.58,0,0,Check-Out,Victor Harmon,ambergonzalez@example.net,232-808-0468x990,4593906206907563,2025-08-13 +City Hotel,0,62,2017,January,2,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,64.0,0,Transient-Party,92.88,0,3,Check-Out,Timothy Patel,tracey73@example.net,767-433-4598x40717,3558668222165262,2024-04-22 +City Hotel,0,15,2017,May,20,14,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,240.0,179.0,0,Transient,100.11,0,1,Check-Out,Patricia Hamilton,davislaura@example.com,476-793-8950x2005,3593893304783553,2025-12-27 +City Hotel,1,147,2017,December,51,17,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.75,0,1,Canceled,Lori Boyd,lambertbailey@example.com,(842)362-4586x1347,639053095761,2025-11-30 +City Hotel,0,77,2017,November,46,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,122.74,0,1,Check-Out,Charles Hernandez,kevindiaz@example.com,440-601-2880x14341,4681099358954385552,2025-10-20 +City Hotel,0,45,2017,January,3,18,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,143.09,0,1,Check-Out,Elizabeth Graham,gonzalestracy@example.org,(538)280-6772x243,377311443460205,2024-10-03 +Resort Hotel,1,91,2017,December,49,4,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,106.02,0,0,Canceled,Ronald Brown,floresjesse@example.com,(495)542-2310x1251,38537353314526,2024-10-17 +City Hotel,1,1,2017,June,25,22,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,103.73,0,2,Canceled,Jason Colon,debra88@example.org,470.479.0030,348577754454138,2025-12-22 +City Hotel,0,16,2017,June,23,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,65.56,0,1,Check-Out,Dawn Burke,sallyarnold@example.org,227-393-1663x241,5390803810352397,2025-01-08 +City Hotel,0,147,2017,November,48,28,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,104.14,0,2,Check-Out,Brian Lee,maxwellanthony@example.net,001-247-584-1523x58828,4099712515123064119,2025-04-07 +City Hotel,1,0,2017,August,32,3,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,331.0,0,Transient,4.38,0,0,Canceled,Ronald Marshall,annettereese@example.net,824-538-7017,4827106415265093232,2024-06-20 +Resort Hotel,0,91,2017,July,28,11,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,62.38,1,2,Check-Out,Jessica Lucas,brian28@example.com,440-527-8491,4587841521664065976,2024-10-05 +City Hotel,1,150,2017,February,6,3,0,2,2,0.0,0,HB,,Groups,Direct,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,118.01,0,0,Canceled,Christopher Taylor,jolson@example.org,772.797.4593,213168913365431,2025-02-03 +Resort Hotel,1,0,2017,January,2,9,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,323.0,179.0,0,Transient-Party,40.39,0,0,No-Show,Robert Hopkins,zachary53@example.com,8625942047,6011639059804202,2026-03-13 +City Hotel,0,18,2017,April,15,13,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,7.0,179.0,0,Transient,157.23,0,1,Check-Out,Samuel Stuart,gayronald@example.com,601.612.0514,2720279167880777,2025-04-19 +City Hotel,1,12,2017,February,5,1,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,7.0,179.0,0,Transient,205.89,0,0,Canceled,Mr. Scott Miller,morrismelissa@example.org,(377)488-5710,4325508083598518,2025-12-20 +Resort Hotel,0,141,2017,November,48,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,72.51,0,0,Check-Out,Sharon Lester,juliagriffin@example.org,739.278.6451x678,3518825563273332,2025-02-03 +City Hotel,0,11,2017,October,43,27,2,5,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,214.99,0,1,Check-Out,Jack Sandoval,rjenkins@example.com,(218)809-7013x150,503809856522,2025-06-29 +Resort Hotel,0,140,2017,April,14,4,3,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,252.0,179.0,0,Transient,249.28,0,0,Check-Out,Tony Ramsey,newmanelaine@example.com,(472)497-4127,3513507985954104,2025-01-20 +City Hotel,0,44,2017,December,49,5,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient,131.97,0,1,Check-Out,Brian Navarro,kathyhall@example.org,(934)223-2230,4749345613622,2025-08-10 +Resort Hotel,0,266,2017,April,17,21,2,5,2,1.0,0,HB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,218.1,0,1,Check-Out,Kelly Calderon,higginsheidi@example.org,001-912-668-2133x423,5305467903621045,2025-01-09 +Resort Hotel,1,379,2017,January,2,13,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,320.0,179.0,0,Transient-Party,72.67,0,0,Check-Out,Tara King,matthew30@example.net,001-836-822-3982x700,346965198505833,2024-09-24 +City Hotel,1,8,2017,August,34,23,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,189.04,0,0,Canceled,Cynthia Martinez,tracybarber@example.org,(494)939-7242,502041065181,2024-11-21 +City Hotel,0,34,2017,February,8,21,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,143.84,0,1,Check-Out,Erin Silva,gina37@example.com,001-434-462-9075,3501845566429409,2026-03-27 +Resort Hotel,0,57,2017,March,12,24,1,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,113.66,0,1,Check-Out,Paul Young,kaufmanalan@example.org,575.588.8714x365,4576461992477505,2025-04-09 +City Hotel,0,21,2017,March,13,26,2,3,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,221.63,0,1,Check-Out,Charles Thompson,parmstrong@example.org,679-870-3288x404,3575335811237014,2026-01-19 +City Hotel,0,2,2017,May,21,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,45.0,0,Transient-Party,63.15,0,0,Check-Out,Jessica King,perrylisa@example.net,(665)794-8367x920,3520715658883937,2024-10-06 +Resort Hotel,0,153,2017,December,49,4,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,3,No Deposit,244.0,179.0,0,Transient,155.61,0,2,Check-Out,Katherine Brooks,natashakemp@example.com,(812)810-7579x1882,4377082144093745599,2024-09-28 +Resort Hotel,0,10,2017,March,11,9,3,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,255.0,179.0,0,Transient,4.88,0,2,Check-Out,Emily Coleman,zachary07@example.org,+1-717-401-3635x30046,3580151577358131,2024-05-17 +Resort Hotel,0,157,2017,March,11,10,2,7,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,Tracey Suarez,myersmaria@example.com,(597)782-8075,3538280085734666,2025-04-08 +City Hotel,0,16,2017,August,32,6,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,87.78,0,1,Check-Out,Heidi Baldwin,david68@example.com,001-794-382-7168x21338,560011073817,2025-02-06 +City Hotel,0,11,2017,December,49,5,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,223.0,0,Transient,81.35,0,0,Check-Out,Alisha Rasmussen,xsanchez@example.com,(763)918-4983x4134,4945115492986951,2024-07-04 +City Hotel,1,20,2017,February,8,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.66,0,2,Check-Out,Sarah Bates,saunderssierra@example.org,5819775343,4331346268868048,2024-09-08 +Resort Hotel,0,95,2017,March,12,24,1,10,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,91.7,1,1,Check-Out,Melissa Mccormick,rogerspatricia@example.com,879-394-5530x9527,4177417252373191,2024-08-26 +Resort Hotel,0,7,2017,July,29,20,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,378.0,208.0,0,Transient,50.91,0,0,Check-Out,Juan Parker,hweber@example.org,+1-438-700-5634x74382,4654121200208197459,2025-11-14 +Resort Hotel,1,198,2017,November,46,16,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,45.53,0,0,Canceled,Heidi Burnett,olsenvalerie@example.net,001-297-685-4555,346610575709232,2024-11-30 +City Hotel,0,54,2017,April,17,24,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,173.45,0,2,Check-Out,Sean Mathews,howellthomas@example.net,858-279-0480,630426681114,2024-10-10 +City Hotel,1,103,2017,April,16,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,109.73,0,1,Canceled,Theodore Long,boonelee@example.net,001-467-292-4493x92318,30001587248875,2026-01-18 +City Hotel,1,139,2017,November,44,3,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.9,0,1,Canceled,Dawn Davis,alex81@example.net,590-646-8408x94094,4562062694304619505,2025-12-17 +City Hotel,1,189,2017,March,13,27,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,95.3,0,0,Canceled,Cynthia Clark,zryan@example.net,647.797.9782x6862,4782176345140019064,2025-05-01 +City Hotel,1,142,2017,February,9,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,142.0,179.0,0,Transient,166.56,0,0,Canceled,Sydney Welch,joshua65@example.net,531.540.9171x47270,3597172145420147,2024-06-25 +City Hotel,0,417,2017,January,4,21,1,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,137.26,0,1,Check-Out,Pamela Sullivan,vduarte@example.net,001-854-498-3533,30575612643101,2024-07-24 +City Hotel,1,18,2017,October,44,31,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.05,0,2,Canceled,Sean Morrow,hollowayseth@example.com,(996)577-5063,4954145386599,2024-05-07 +City Hotel,0,12,2017,January,3,18,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,141.71,1,1,Check-Out,Kaitlin Gutierrez,arthuredwards@example.org,001-425-554-9041x84586,2322284128013809,2025-12-22 +City Hotel,0,106,2017,January,4,25,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,130.02,0,0,Check-Out,Michelle Mcdowell,rebecca55@example.com,001-613-396-7743,6011864238610789,2024-04-21 +City Hotel,0,18,2017,July,27,3,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,88.98,0,2,Check-Out,Samantha Hale,rsalinas@example.org,+1-546-771-7016x4527,3513110425369734,2024-05-23 +City Hotel,0,1,2017,August,32,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Group,95.82,0,1,Check-Out,Heather Guzman,brandondaniel@example.net,(690)813-3436,4822960158496854,2024-11-16 +City Hotel,0,1,2017,September,36,5,0,2,1,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,124.85,1,1,Check-Out,Nancy Chavez,mlindsey@example.net,859-944-5004x0177,5302230417973291,2025-07-14 +City Hotel,0,20,2017,December,52,27,1,2,2,0.0,0,SC,ISR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,96.0,179.0,0,Transient-Party,0.47,0,0,Check-Out,Anthony May,austinpollard@example.org,(420)403-4994x115,4954598128472,2025-10-05 +City Hotel,0,170,2017,April,18,30,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.74,0,3,Check-Out,Rachel Taylor,nicoleshields@example.org,(244)508-4108x6724,4502074997747282,2025-11-28 +City Hotel,1,375,2017,July,28,14,0,3,3,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,92.79,0,0,Check-Out,Mark Edwards,morgan58@example.org,6549658787,343451941161011,2024-05-25 +City Hotel,0,25,2017,August,33,12,1,2,1,0.0,0,BB,NLD,Direct,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,102.59,0,0,Check-Out,Christopher Black,bmccoy@example.net,(385)319-3298x63273,4966800508839401,2024-05-11 +Resort Hotel,1,50,2017,February,6,7,3,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,88.23,0,0,Canceled,Sandra Hines,cameronkrista@example.com,+1-829-582-9883x8041,4798338967871951404,2024-06-01 +City Hotel,1,36,2017,November,44,3,2,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,233.82,0,1,Canceled,Melissa Sparks,hhoward@example.com,969.770.8632x956,3587560011229174,2026-01-29 +City Hotel,1,151,2017,April,15,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,128.45,0,2,Canceled,John Moss,cherryalexander@example.com,+1-849-431-9743,4810829316080658492,2024-06-12 +Resort Hotel,1,170,2017,November,47,24,2,5,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,B,0,No Deposit,16.0,179.0,0,Transient,175.24,0,0,Canceled,Michael Serrano,johnsonjennifer@example.com,814.917.2228x3048,4616167889112319,2025-07-29 +Resort Hotel,0,0,2017,August,31,4,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,225.0,0,Transient-Party,45.97,0,0,Check-Out,Christina Perry,johnathan76@example.net,001-882-488-5378x38149,3519903053461391,2025-03-08 +City Hotel,0,197,2017,June,25,23,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.97,0,0,Check-Out,Shawn Duffy,kennethfaulkner@example.com,940.321.6466,6011849176148645,2024-09-25 +Resort Hotel,0,145,2017,November,48,30,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,47.71,0,0,Check-Out,Courtney Vaughan,george60@example.com,+1-434-429-8624x829,4581679130320237,2026-03-08 +City Hotel,0,2,2017,June,24,14,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,52.29,0,0,Check-Out,Maria Sims,michelefoster@example.org,001-443-522-7115,30252300156503,2025-06-13 +City Hotel,0,1,2017,December,52,30,1,0,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,73.63,0,0,Check-Out,Valerie Gonzalez,scott01@example.org,001-657-281-4818x0205,3525374220191018,2026-02-26 +City Hotel,1,32,2017,December,49,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.65,0,0,Canceled,Caroline Morales,hortoncarrie@example.net,282-779-9140x41869,375266002350639,2025-07-01 +City Hotel,1,200,2017,May,19,11,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient,138.68,0,0,Canceled,David Davis,daviswilliam@example.org,(838)704-0045x5252,3570115745653881,2024-05-12 +Resort Hotel,0,40,2017,January,2,3,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,245.0,179.0,0,Transient,82.32,0,1,Check-Out,Travis Wilson,sparkspatrick@example.org,560-667-9268x883,5342170621475885,2025-01-19 +Resort Hotel,0,142,2017,March,13,31,2,6,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,198.21,0,2,Check-Out,Jessica Mora,brian15@example.net,001-858-909-6963x095,2229289959510645,2025-06-04 +City Hotel,1,46,2017,May,22,31,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,211.83,0,1,Canceled,Michael Wilson,carolyn43@example.org,(550)237-6478x913,676297596642,2024-05-24 +City Hotel,0,360,2017,January,4,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,112.25,0,0,Check-Out,Cheryl Atkins,shelby71@example.com,3742628691,379937031023498,2025-11-02 +Resort Hotel,1,59,2017,August,33,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,273.0,179.0,0,Transient,134.7,0,0,Canceled,Donna Snyder,charles64@example.com,306-883-5877x66316,6577950666141656,2025-07-11 +City Hotel,0,202,2017,April,15,9,2,5,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,Scott Greene,ugates@example.net,205-837-6704x151,4170485960485,2024-07-05 +City Hotel,0,8,2017,April,15,8,0,4,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,134.07,0,2,Check-Out,Diane Byrd MD,xhumphrey@example.org,525-620-6057,36186223991972,2024-10-16 +City Hotel,1,69,2017,April,15,12,2,5,2,2.0,0,HB,BEL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,142.4,0,0,Canceled,Charles Roberts,vazquezpatricia@example.org,001-712-814-8851x457,676332078325,2025-08-24 +Resort Hotel,0,58,2017,June,25,18,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,82.82,1,2,Check-Out,Luke Solomon,davidellis@example.com,3564073771,3592763330032542,2025-03-20 +City Hotel,0,43,2017,December,52,26,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.59,0,2,Check-Out,Michael Ellis,martinkyle@example.com,+1-342-605-1253x2206,676146293763,2024-04-03 +City Hotel,1,94,2017,February,7,14,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,67.0,179.0,0,Transient,62.15,0,0,Canceled,Casey Morris,gutierrezjonathan@example.com,+1-417-337-1442x14020,4386635505655026,2026-02-05 +City Hotel,0,8,2017,August,34,23,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,157.51,0,1,Check-Out,Melissa Reeves,noah64@example.com,001-902-783-4863x557,2664390251435168,2025-04-24 +Resort Hotel,0,0,2017,September,37,11,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,H,0,No Deposit,10.0,179.0,0,Transient-Party,46.13,0,0,Check-Out,Nancy Scott,johnparker@example.net,337-329-5412x521,4268846232026695,2026-01-04 +City Hotel,0,263,2017,June,23,8,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,33.0,179.0,0,Contract,64.1,0,2,Check-Out,Anthony Cook,jacobkline@example.org,001-669-573-6654x0800,30315716709841,2026-02-19 +Resort Hotel,0,45,2017,January,5,29,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,252.0,0,2,Canceled,Terry Barajas,chaselaura@example.com,265.226.8418x60539,30460591692280,2025-08-10 +City Hotel,0,108,2017,January,5,28,1,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient-Party,110.16,0,0,Check-Out,Tracy George,josephreese@example.net,+1-705-884-8136x956,4827777554868,2024-11-02 +City Hotel,1,243,2017,May,22,31,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,53.25,0,0,Canceled,Amber King,katrina92@example.net,566-363-3080x25437,4805871146568988,2025-07-17 +City Hotel,1,115,2017,April,14,1,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,147.0,179.0,0,Transient,105.47,0,0,No-Show,Elizabeth Foster,ugoodman@example.net,(876)498-7514x6460,4277507548956,2024-11-27 +City Hotel,0,0,2017,October,40,1,1,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,81.26,0,1,Check-Out,Walter Hansen,robbinsjoseph@example.com,810-848-2801x74546,503861651464,2025-09-28 +Resort Hotel,0,139,2017,December,50,9,2,5,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,129.99,1,1,Check-Out,Debbie Gordon,andrew09@example.net,(464)589-7301,3589016469699788,2024-07-06 +Resort Hotel,0,65,2017,May,19,10,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient-Party,75.66,0,0,Check-Out,Sherry Anderson,patrick84@example.com,001-519-895-6626x97955,502087573684,2025-12-09 +City Hotel,0,397,2017,April,14,6,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,161.73,0,1,Check-Out,Joseph Thomas,nicolepope@example.org,001-806-249-6219x76588,676320869982,2025-11-17 +City Hotel,0,5,2017,April,14,6,1,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,3.45,1,0,Check-Out,Andrew Anderson,ann87@example.net,001-981-925-1133x989,4455377264061635,2025-09-08 +City Hotel,1,104,2017,February,9,25,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.21,0,0,Canceled,Sandy Adkins,schneiderthomas@example.org,(270)894-1684,6531904467661946,2025-09-29 +City Hotel,1,17,2017,April,15,7,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,230.94,0,0,Canceled,Diane Mcdowell,osanders@example.net,+1-515-873-6356x19062,30110236541349,2025-10-02 +City Hotel,0,85,2017,May,22,29,0,1,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,75.75,0,1,Check-Out,Pam Baker,qbarnes@example.net,5063511680,4131890120820350740,2026-02-05 +City Hotel,1,168,2017,March,10,11,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,281.0,179.0,0,Transient-Party,101.91,0,0,Canceled,Steven Stewart,cschaefer@example.net,213-675-9261x264,4330618115452,2024-08-20 +City Hotel,0,89,2017,January,2,10,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,64,Transient,119.18,0,1,Check-Out,Pamela Hernandez DVM,morrisjoshua@example.org,3797820633,5439717428664477,2025-08-23 +City Hotel,0,17,2017,September,36,5,0,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,47.64,0,1,Check-Out,Rebecca Brown,daniel18@example.com,+1-306-579-2642x07121,3503568970583144,2025-07-02 +Resort Hotel,0,20,2017,June,23,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,47.59,0,0,Check-Out,David Johnson,hendersonmelanie@example.net,+1-587-612-7083x9715,3501698407640878,2025-07-07 +City Hotel,1,92,2017,February,8,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient,131.12,0,0,Canceled,Michael Graham,bparker@example.com,671.734.0839x75713,344084005071211,2024-04-11 +City Hotel,0,33,2017,November,48,28,2,2,2,0.0,0,BB,BEL,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient,48.12,1,0,Check-Out,Tammy Williams MD,zcoleman@example.org,(322)657-6500x744,3558262229648023,2025-12-28 +Resort Hotel,0,3,2017,March,11,10,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,64.63,0,1,Check-Out,Karina Vasquez,chapmancarolyn@example.com,(923)647-1905,4846693892286362,2026-03-18 +Resort Hotel,0,0,2017,November,46,13,0,1,1,0.0,0,SC,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,12.0,81.0,0,Transient,69.39,1,0,Check-Out,Sharon Martinez,oscarking@example.com,279-932-1544,4974204596219,2026-03-21 +City Hotel,1,422,2017,June,26,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.23,0,0,Canceled,Sean White,danielgraham@example.net,418-826-1998x905,589732883501,2026-02-13 +Resort Hotel,0,2,2017,December,2,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,114.17,1,2,Check-Out,Jordan Nelson,abruce@example.net,001-881-748-8710,3598810000920896,2025-06-22 +City Hotel,0,3,2017,February,8,18,0,1,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,2.41,0,3,Check-Out,Laurie Silva,robert75@example.net,001-862-551-4658x926,3512001533422542,2025-04-27 +City Hotel,1,0,2017,February,6,8,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,45.85,0,0,Canceled,Kelly Duncan,johnsonnicholas@example.net,877-371-8130,3522895682077553,2024-04-20 +City Hotel,1,151,2017,April,16,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,221.82,0,0,Canceled,Billy Tate,ngross@example.net,(312)868-3423,4342294681771752,2025-12-26 +City Hotel,0,94,2017,April,14,7,2,2,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,160.5,0,2,Check-Out,Stacy Johnson,qwashington@example.com,(200)458-7499x45311,30292015495721,2026-02-19 +City Hotel,0,10,2017,July,28,12,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,35.0,179.0,62,Transient-Party,86.02,0,0,Check-Out,Melanie Long,kristen77@example.org,001-603-366-8407,5381430463178837,2025-02-04 +City Hotel,1,141,2017,February,8,23,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,141.79,0,0,Canceled,Tiffany Hood,austin77@example.org,+1-983-387-7318x798,6574675986362145,2025-09-16 +Resort Hotel,1,8,2017,April,16,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,E,0,No Deposit,12.0,179.0,0,Contract,45.03,0,0,Canceled,Brad Rivas,tanyaferrell@example.net,313-227-8582,38207173198653,2024-10-08 +City Hotel,1,372,2017,June,24,12,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.44,0,0,Canceled,Jordan Moses,terrymichael@example.com,(426)812-6240x89260,213107741675819,2025-09-28 +Resort Hotel,0,1,2017,November,47,24,1,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,250.0,179.0,0,Transient,235.84,0,0,Check-Out,Abigail Booker,christine09@example.net,+1-724-598-7249x58069,38225231532010,2024-04-21 +City Hotel,1,408,2017,October,41,7,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,21,Transient,97.85,0,0,Canceled,Tiffany Nguyen,stephen52@example.com,5205331541,3563869858799548,2025-05-25 +City Hotel,1,47,2017,July,28,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,40,Transient,102.91,0,0,Canceled,Morgan Bernard,nholder@example.com,950.737.9703x54915,4183035142716859847,2025-08-11 +Resort Hotel,0,1,2017,April,16,14,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,12.0,179.0,0,Transient,252.0,1,1,Check-Out,Christine Williams,stephanie48@example.com,840-244-4537,4972429169379564,2025-08-18 +City Hotel,1,203,2017,April,16,19,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.51,0,0,Canceled,Erica Brown,matthew57@example.com,+1-306-477-3306x65562,6011071274741490,2024-10-26 +City Hotel,0,161,2017,March,12,20,1,3,2,0.0,0,BB,ITA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,154.82,0,0,Check-Out,Trevor James,vclark@example.net,(513)771-6403x2487,213196383748521,2025-06-17 +City Hotel,1,169,2017,June,25,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,101.24,0,0,Canceled,Christopher Hanna,teresa05@example.org,300.907.1169x174,573791960160,2025-02-18 +Resort Hotel,0,142,2017,March,10,9,0,2,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,141.0,179.0,0,Transient,104.24,0,0,Check-Out,Ann Phelps,stephanie07@example.org,961.748.7314x60104,4859602422034022,2024-06-01 +Resort Hotel,0,6,2017,November,46,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,0,No Deposit,17.0,193.0,0,Transient-Party,49.87,0,0,Check-Out,Richard Mitchell,emcfarland@example.org,753.514.3017x1106,565337471512,2024-09-09 +Resort Hotel,0,0,2017,July,29,17,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.13,1,2,Check-Out,Martha Martinez,thomasarmstrong@example.net,752.377.2828x97585,586129952006,2026-02-04 +City Hotel,1,421,2017,April,17,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.93,0,0,Canceled,Jeffrey Drake MD,tbrown@example.net,001-622-844-9488x7093,4286120803597059453,2024-05-14 +City Hotel,0,1,2017,June,24,13,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,K,0,No Deposit,15.0,46.0,0,Transient,0.0,0,0,Check-Out,Bonnie Wade,mckenzie26@example.com,844.884.6909x363,3566840736780890,2024-11-27 +Resort Hotel,0,126,2017,November,47,19,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,63.4,0,0,Check-Out,Kayla Burns,youngsara@example.net,(905)970-4278,676389385730,2025-03-08 +City Hotel,0,37,2017,November,47,20,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,106.87,0,0,Check-Out,Karen Hart,frenchjacob@example.com,001-311-527-8161x31688,4635236695260120,2024-08-11 +City Hotel,0,272,2017,April,14,4,1,0,2,2.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,29.0,179.0,0,Transient-Party,178.57,0,1,Check-Out,Peter Shepherd,tmaldonado@example.com,+1-490-217-8556x657,4855900792907,2024-12-06 +City Hotel,1,142,2017,August,31,3,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,169.39,0,0,Canceled,Jessica Simmons,darlenetownsend@example.com,4716208133,3585899840686481,2024-08-19 +City Hotel,0,59,2017,April,15,10,2,5,2,1.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,246.35,0,1,Check-Out,Glenn Ford,heatherwilliams@example.com,525-649-6013,6011608181181862,2025-03-07 +City Hotel,1,98,2017,October,42,15,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.88,0,0,Canceled,Michael Moore,bpham@example.com,+1-953-968-1909,4129733765803097,2024-09-28 +City Hotel,0,97,2017,March,11,15,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.34,0,1,Check-Out,Mark Warren IV,timothyharrell@example.com,(574)996-7194x71250,3520161592273432,2025-07-23 +City Hotel,0,0,2017,July,27,4,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,63.0,0,Transient-Party,64.18,1,1,Check-Out,Terry Woods,donald71@example.com,9099111653,4293278639823848,2025-06-21 +City Hotel,0,63,2017,April,15,7,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,223.96,0,1,Check-Out,Carl Leach,anne19@example.org,846-928-4061x63283,3598188926443305,2024-04-05 +City Hotel,0,17,2017,December,49,3,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.85,0,0,Check-Out,Kelly Phillips,rlee@example.com,357.329.8540x714,3547255117020739,2025-02-25 +City Hotel,0,256,2017,July,28,9,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,93.8,0,0,Check-Out,Billy Williams,andrew72@example.com,(621)852-9382x31410,38324040754921,2025-03-13 +City Hotel,1,20,2017,March,13,27,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,140.42,0,0,No-Show,Jeffery Davis,maxgarcia@example.net,+1-871-856-1220,379080785539227,2024-05-08 +City Hotel,0,91,2017,February,6,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,104.32,0,0,Check-Out,Laura King,baileychloe@example.net,001-871-755-5650x467,3579675268055351,2025-01-06 +Resort Hotel,1,92,2017,August,34,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.04,0,0,Canceled,Brad Gordon,castillowilliam@example.org,505-260-5723x64748,4131302602630876321,2026-01-20 +Resort Hotel,1,292,2017,September,37,12,2,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Matthew White,mendozabrandon@example.net,+1-729-307-6714x623,30100659173886,2026-01-04 +Resort Hotel,0,275,2017,May,19,12,4,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,99.98,0,0,Check-Out,James Miller,gonzalezkaren@example.net,782-322-4884,6561427768573779,2025-10-18 +City Hotel,1,154,2017,April,14,1,2,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,146.93,0,0,Canceled,Elizabeth Matthews,mallory90@example.org,+1-852-977-1131x517,375422037019034,2025-01-15 +Resort Hotel,0,44,2017,March,9,1,0,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,252.0,0,2,Check-Out,Michael Hanson,staceycastillo@example.org,482.535.5135x32759,346842125265809,2026-03-27 +Resort Hotel,0,0,2017,April,16,19,2,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,51.88,0,1,Check-Out,Vincent Savage,mariereynolds@example.net,(919)794-0380x978,36352959164131,2025-11-23 +City Hotel,0,50,2017,February,7,14,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,141.28,0,1,Canceled,Cody Burgess,katherineramirez@example.com,545-838-8528,3581525429076224,2026-01-12 +Resort Hotel,0,13,2017,August,35,31,2,7,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,3,No Deposit,248.0,179.0,0,Transient,49.44,0,0,Check-Out,Shelby Rodriguez,arnoldchristopher@example.com,(547)709-8636x7943,213160330818555,2024-11-05 +City Hotel,1,17,2017,March,10,5,2,0,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,241.44,0,0,No-Show,Abigail Wilson,rebecca91@example.org,+1-395-964-2231x4490,3557268159626153,2024-08-28 +City Hotel,0,102,2017,March,13,25,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,79.4,0,0,Check-Out,John Holt,ashleyturner@example.com,(925)380-3972,3564783723497452,2024-12-27 +Resort Hotel,0,1,2017,June,23,4,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Contract,42.81,1,1,Check-Out,Tracy Guzman,wrightvicki@example.net,+1-762-936-4956x917,4334772068164616643,2026-03-17 +City Hotel,1,61,2017,January,5,31,1,4,2,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,168.14,0,0,Canceled,Mr. William Ward,angelaholder@example.org,240.813.6622x06336,6011823664575791,2024-12-12 +Resort Hotel,1,22,2017,November,47,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,22.0,179.0,0,Transient,3.01,0,1,Canceled,Melissa Foster,ryan59@example.com,(902)275-9454x2533,4535033276633424,2025-04-08 +City Hotel,0,156,2017,September,36,3,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,204.39,1,3,Check-Out,Calvin Smith,maddendesiree@example.org,001-253-908-1695x78723,3503395776747586,2024-11-11 +Resort Hotel,0,15,2017,July,27,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,D,0,No Deposit,14.0,331.0,0,Transient,48.55,0,0,Check-Out,Alan Waller,margarethart@example.net,545-998-3051x2206,4391232979772219360,2024-05-12 +City Hotel,0,12,2017,October,43,23,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,73.66,0,3,Check-Out,Christine Wong,haneycarrie@example.com,3788159218,4864505854489940,2025-11-18 +Resort Hotel,0,52,2017,January,2,3,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,250.0,179.0,0,Transient,231.52,0,1,Check-Out,Jessica Garrett,pfrazier@example.net,+1-977-652-5746x415,3563615982429845,2025-09-30 +Resort Hotel,0,0,2017,June,24,17,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,28.0,179.0,0,Contract,42.44,0,0,Check-Out,Cheryl Turner,eric94@example.org,+1-708-566-3164,4512192250782707540,2024-12-25 +Resort Hotel,0,13,2017,November,46,12,1,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,60.96,0,0,Check-Out,John Johnson,jenniferhoward@example.net,636-710-3874x87164,3507255051842690,2025-12-06 +City Hotel,1,40,2017,August,35,30,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,75,Transient,64.17,0,0,Canceled,Christian Park,olivia88@example.com,(290)920-0533x1640,4692587938269868,2025-10-18 +City Hotel,0,22,2017,October,40,6,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,70.18,0,1,Check-Out,Kaitlyn Heath,uallen@example.com,001-865-789-1497,4005302740212235,2025-10-25 +Resort Hotel,0,2,2017,September,36,6,0,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,57.52,0,1,Check-Out,Christina Hudson,kirkpierce@example.com,+1-919-701-7499x38379,30451443846992,2025-03-01 +City Hotel,0,41,2017,January,4,21,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,49.85,0,1,Check-Out,Amber Smith,mossalec@example.net,408.747.0797x7004,3556166518349767,2024-12-23 +City Hotel,0,17,2017,October,44,29,0,1,1,1.0,0,BB,DEU,Groups,Corporate,0,0,0,A,K,1,No Deposit,10.0,76.0,0,Transient,79.48,1,1,Check-Out,Michelle Petty,morganwells@example.org,+1-627-569-5953x41074,38591995060468,2026-02-04 +City Hotel,1,1,2017,September,36,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,71.72,0,1,Canceled,Nancy Larson,cowanbarbara@example.org,6323081401,4394400689025,2025-12-11 +City Hotel,0,8,2017,January,4,21,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.92,0,2,Check-Out,Donna Freeman,cmoore@example.com,+1-264-722-3596,30105537552144,2025-07-05 +City Hotel,1,88,2017,January,5,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,83.08,0,0,Canceled,Mr. Logan Gregory,james67@example.net,696.424.8975,4238687914896048,2026-03-09 +City Hotel,0,0,2017,April,17,20,1,4,2,0.0,0,SC,,Direct,Direct,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,1.69,0,0,Check-Out,Katherine Klein,joshuawilkinson@example.net,+1-448-671-2634x267,2256940929291213,2025-01-02 +City Hotel,0,3,2017,May,18,6,2,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,132.95,0,0,Check-Out,Jennifer Stewart,emma83@example.net,871.540.8286,213155706271470,2025-03-31 +City Hotel,0,53,2017,March,14,30,0,4,2,2.0,0,SC,DEU,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,7.0,179.0,0,Transient,219.21,0,3,Check-Out,Steven Butler,jthomas@example.net,+1-218-392-9015x44014,4367048706831,2025-08-20 +Resort Hotel,0,162,2017,December,48,1,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,F,E,1,No Deposit,215.0,179.0,0,Transient,229.99,0,2,Check-Out,Johnny Mcmillan,ffarmer@example.net,325-503-0064x64173,2529300016658983,2025-12-02 +City Hotel,0,37,2017,December,51,22,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.45,0,0,Check-Out,Michael Smith,jessicahobbs@example.net,380-299-4567x26811,2260732230261744,2025-01-07 +City Hotel,0,11,2017,October,43,26,1,1,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.19,0,1,Check-Out,Corey Cooper,michelle12@example.net,714-351-7490x6463,3527142839254784,2024-10-03 +City Hotel,1,152,2017,December,2,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,22,Transient,106.88,0,0,Canceled,Daniel Stout,gramos@example.com,740-519-0848,3574761864200511,2025-05-08 +City Hotel,0,38,2017,November,45,7,0,1,1,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.48,0,1,Check-Out,Lance Kirby,yscott@example.net,+1-631-538-9557x179,344004668303701,2024-07-19 +Resort Hotel,0,31,2017,December,51,17,0,6,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,238.0,179.0,0,Transient,220.23,0,1,Check-Out,Bonnie Carter,fcalhoun@example.org,(255)432-3273x37918,4825152686395528050,2024-12-11 +Resort Hotel,0,0,2017,April,16,15,0,1,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,167.0,179.0,0,Transient,3.58,0,0,Check-Out,Toni Whitaker,andrew62@example.net,502-326-6528x26481,3536509566636426,2025-06-07 +City Hotel,1,243,2017,November,46,13,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,40,Transient,95.73,0,0,Canceled,Morgan Flynn,ycline@example.com,(724)830-4968,4704973410182462,2024-07-05 +City Hotel,0,0,2017,June,23,9,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.07,0,1,Check-Out,Sarah Howell,ian41@example.net,+1-744-813-2207x10842,4639123283598655,2025-03-21 +Resort Hotel,0,54,2017,April,14,5,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,323.0,179.0,0,Transient,51.82,0,0,Check-Out,Paul Estrada,todd18@example.org,(889)328-4881x590,4239178570563105,2024-09-27 +City Hotel,0,204,2017,April,17,24,2,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,139.87,0,1,Check-Out,Curtis Obrien,andrewsmith@example.org,001-629-622-1426,36964824876887,2024-11-03 +City Hotel,0,11,2017,April,14,2,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,124.29,1,3,Check-Out,Jason Chaney,stevenscurtis@example.org,001-976-541-7314x108,370099050120538,2025-04-16 +City Hotel,0,204,2017,December,49,6,0,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,219.99,0,1,Check-Out,Daniel Williams,brookeballard@example.org,661-588-4524x3452,30511996093696,2024-12-10 +Resort Hotel,0,14,2017,August,32,9,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,200.47,1,3,Check-Out,Stanley Kelly,stephenmcneil@example.org,(280)617-0838x7970,4751375158792241,2025-10-22 +City Hotel,0,62,2017,November,47,21,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,328.0,179.0,0,Transient,104.72,0,1,Check-Out,Ronald Kline,hdiaz@example.org,001-608-853-2175x751,4449779966518433,2025-10-12 +City Hotel,0,22,2017,November,45,5,1,2,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,93.29,0,2,Check-Out,Arthur Jordan,christine35@example.com,+1-754-960-7682x314,4502792037476782,2026-02-09 +City Hotel,0,3,2017,September,37,16,1,4,1,0.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,99.53,0,1,Check-Out,Barbara Walker,millerjason@example.org,(311)502-2514x46484,6011183550751620,2025-04-13 +Resort Hotel,1,210,2017,April,16,17,4,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,342.0,179.0,0,Transient-Party,243.06,0,0,Canceled,Gerald Kelly,stanleyanthony@example.org,001-826-697-1793x2858,6011166484308005,2024-07-05 +City Hotel,1,14,2017,July,29,21,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,62.96,0,0,Canceled,Shawn Adams,william56@example.com,(671)557-0163,4123046226908682712,2025-04-19 +Resort Hotel,1,202,2017,April,14,4,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,9.0,179.0,0,Transient-Party,252.0,0,1,Canceled,Michael Robertson,stephaniedavis@example.org,(965)611-2274x7319,4491073212927,2025-01-18 +Resort Hotel,1,284,2017,April,14,4,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,235.0,179.0,0,Transient,252.0,0,1,Canceled,Michelle House,cbrown@example.net,3627152738,3541534009692565,2025-11-07 +City Hotel,0,31,2017,November,45,4,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,89.16,0,1,Check-Out,Jim Skinner,benitezheather@example.com,469-454-5717x52614,4453936487377,2025-10-02 +Resort Hotel,0,0,2017,November,46,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,242.0,179.0,0,Transient,63.0,1,0,Check-Out,Brian Bishop,christophertapia@example.com,4794827307,180018875537338,2024-05-20 +Resort Hotel,0,12,2017,April,14,2,1,0,2,0.0,0,BB,GBR,Complementary,Direct,0,0,0,A,G,1,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,Theresa Colon,zlynn@example.com,001-607-805-3420x263,4469000927926549,2024-10-13 +Resort Hotel,0,3,2017,November,46,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,2,No Deposit,18.0,331.0,0,Transient,77.23,0,0,Check-Out,Brian Soto,adamacevedo@example.net,4703851941,4184726898149,2024-06-04 +City Hotel,0,60,2017,June,26,28,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,115.4,0,0,Check-Out,Susan Moore,nlewis@example.org,001-203-515-5383x16153,4665708644976975,2026-03-04 +City Hotel,1,2,2017,March,12,22,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,86.77,0,1,No-Show,Jeremy Hunter,qshepherd@example.org,6225377964,4795091710795647895,2026-03-26 +City Hotel,0,57,2017,February,6,3,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,124.42,0,3,Check-Out,Annette Holland,skinnernancy@example.org,+1-712-609-2371x703,3531525047910870,2024-10-25 +City Hotel,0,44,2017,April,14,4,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,B,0,No Deposit,13.0,179.0,0,Transient,212.7,1,0,Check-Out,Chad Allison,ariel62@example.org,807.219.9931x96407,5596879748143274,2025-06-22 +City Hotel,0,107,2017,May,21,22,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,113.76,0,2,Check-Out,Jason Mack,samanthamoore@example.net,850-304-3852,4008846313963605740,2024-06-29 +City Hotel,1,10,2017,August,32,12,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,A,1,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Canceled,Robert Peterson,alexis06@example.org,513-227-0439x179,5396119905844931,2025-08-16 +City Hotel,0,2,2017,June,23,5,0,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,78.49,0,0,Check-Out,Angela Watson,alexandriacook@example.net,923.311.0938,581738028199,2025-09-15 +Resort Hotel,0,0,2017,July,27,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,43.4,0,2,Check-Out,Heather Ortega,dhouse@example.org,(995)465-6359,2549565769619921,2025-07-09 +City Hotel,0,0,2017,November,47,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,63.0,0,Transient,66.6,0,0,Check-Out,Paul Fisher,melissa43@example.com,001-931-723-6892,676314003754,2024-12-21 +City Hotel,1,246,2017,July,30,25,1,4,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,215.0,0,Transient,81.01,0,0,Canceled,Robert Gutierrez,davenportmaria@example.org,(898)486-4714x94974,30077554673303,2026-02-19 +Resort Hotel,0,2,2017,September,36,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,249.0,179.0,0,Transient,53.3,1,1,Check-Out,Jimmy Phelps,greerjennifer@example.org,676.501.7943,3503841252631588,2025-11-30 +Resort Hotel,0,26,2017,April,15,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient-Party,238.55,0,1,Check-Out,Heidi Johnson,fryematthew@example.org,001-437-480-4890x72931,3559464249474773,2025-09-16 +City Hotel,0,37,2017,June,24,12,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,103.57,0,0,Check-Out,Adam Drake,julie11@example.net,668.535.1204x25634,3525936794266499,2025-06-07 +City Hotel,0,47,2017,February,5,2,1,0,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,2.28,0,1,Check-Out,Angela Edwards,cheryl60@example.org,001-212-816-9090x79396,3554581990019419,2024-11-22 +City Hotel,0,47,2017,April,14,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,198.66,0,0,Check-Out,Mrs. Amy Malone,xsullivan@example.org,001-882-487-0076x259,6555703102252173,2024-11-19 +City Hotel,1,403,2017,June,23,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,43,Transient,62.2,0,0,Canceled,Margaret Orr,laura77@example.net,349-626-1425,213108294077833,2026-03-15 +City Hotel,1,198,2017,April,15,8,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,224.08,0,0,Canceled,Mark Reeves,ubutler@example.com,+1-586-575-6836x3331,4502677995940343,2025-02-14 +City Hotel,1,100,2017,April,18,30,1,2,2,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.24,0,0,Canceled,Kelly Phillips,nicholas57@example.com,982.546.6093,4745235448897,2024-03-27 +City Hotel,0,7,2017,November,47,22,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.01,0,1,Check-Out,Michael Spencer,monroegary@example.com,001-328-820-1550x67520,343294199960191,2024-05-15 +Resort Hotel,0,33,2017,December,49,4,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,52.94,0,1,Check-Out,Patrick Blankenship,whancock@example.org,6328144654,5268718249083257,2026-03-25 +City Hotel,0,28,2017,December,49,4,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,B,D,1,No Deposit,13.0,179.0,0,Transient,140.14,0,1,Check-Out,Douglas Rose,qgarza@example.net,001-606-552-2720,3522447001969902,2025-05-09 +City Hotel,0,197,2017,February,7,16,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,86.67,0,1,Check-Out,Melody Griffin,xsherman@example.net,914.912.1455x66445,30214270742357,2024-09-19 +City Hotel,0,95,2017,February,8,21,0,2,2,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.66,0,1,Check-Out,Joshua Kramer,qmorgan@example.org,(600)780-5080,3592820739410388,2025-02-24 +Resort Hotel,0,9,2017,March,12,22,1,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,185.27,1,0,Check-Out,Melissa Barron,victorporter@example.org,+1-395-742-8523,3568490011651461,2025-11-26 +Resort Hotel,0,46,2017,May,22,28,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,245.0,179.0,0,Transient,252.0,1,2,Check-Out,Jennifer Gonzalez,anna16@example.org,+1-699-983-2242,341396517124087,2025-05-13 +Resort Hotel,0,140,2017,April,17,20,3,4,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,98.07,0,2,Check-Out,Andrew Cook,tamara01@example.net,286.966.1601,4429842452240803801,2026-03-20 +City Hotel,0,112,2017,December,49,7,1,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,157.94,0,3,Check-Out,Natalie Martinez,vlambert@example.com,+1-945-709-8549x915,6592473669765182,2025-05-26 +City Hotel,0,24,2017,January,3,14,1,2,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,169.46,0,3,Check-Out,Diane Davis DDS,kwilliams@example.com,(819)857-2178x9402,6011633944552530,2024-10-05 +Resort Hotel,0,35,2017,August,31,1,1,1,2,0.0,0,Undefined,PRT,Offline TA/TO,Corporate,0,0,0,A,I,1,No Deposit,321.0,331.0,0,Transient-Party,4.64,0,1,Check-Out,Nicole Moore,yrojas@example.com,+1-576-654-3885x38053,3589902501901813,2024-09-19 +Resort Hotel,1,194,2017,December,50,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,131.59,0,1,Canceled,Robert Vargas,bakerjessica@example.org,326.758.8276,344726784203916,2025-02-04 +Resort Hotel,0,4,2017,November,45,8,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,B,0,No Deposit,11.0,179.0,0,Transient,0.0,0,1,Check-Out,Raymond Barber,rebecca42@example.net,2889500299,4873364175246,2025-01-26 +City Hotel,0,161,2017,February,6,8,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.41,0,1,Check-Out,Mrs. Amy Watson,katie67@example.net,865.982.8072x735,4196759584160565,2024-10-12 +Resort Hotel,0,1,2017,September,36,2,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,43.74,1,2,Check-Out,Heather Williams,morenobruce@example.com,228-305-8869x1503,570280999725,2025-09-02 +City Hotel,0,106,2017,October,44,29,2,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,35.0,179.0,0,Contract,86.74,0,0,No-Show,Belinda Evans,brownlori@example.org,+1-937-512-8379x0002,371518664037860,2025-05-13 +City Hotel,0,24,2017,May,20,16,2,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,220.79,0,1,Check-Out,Jody Bird,qcaldwell@example.com,001-563-979-3589x4414,4222466917895898151,2024-10-22 +Resort Hotel,0,155,2017,April,15,11,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,96.03,0,1,Check-Out,Virginia Cunningham,robertking@example.net,(459)484-9419,4064000805399271,2025-06-25 +City Hotel,0,16,2017,September,37,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,K,1,No Deposit,10.0,179.0,0,Transient,94.94,0,1,Check-Out,Lori Ferguson,jwilliams@example.com,892.985.0274x94060,3590650680622968,2024-11-06 +Resort Hotel,1,342,2017,April,16,13,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,2,Non Refund,242.0,179.0,0,Transient,97.31,0,0,Canceled,Hayley Mitchell,jenkinsanna@example.net,001-383-470-3939x68767,4404043876262597,2025-04-02 +City Hotel,1,304,2017,January,5,31,1,2,2,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,146.31,0,0,Canceled,Michelle Chambers,phillipsmorgan@example.org,(237)939-2203,6527767915147321,2025-01-25 +City Hotel,0,9,2017,June,23,6,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.68,0,2,Check-Out,Kelly Wright,qdaugherty@example.net,(405)270-2660x790,3575508516472959,2025-04-25 +City Hotel,0,58,2017,May,21,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,105.38,0,1,Canceled,Kevin Carson,gonzalesalex@example.com,481.821.6049x018,30463180111258,2025-04-25 +City Hotel,0,0,2017,April,14,3,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,18.0,331.0,0,Transient,1.89,0,0,Check-Out,Brent Dawson,wintersjeffrey@example.com,900-339-9156x83434,6011242671089102,2025-10-01 +Resort Hotel,1,0,2017,October,41,12,1,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,241.0,179.0,0,Transient,43.27,0,0,Canceled,Angela Brown,omoore@example.net,+1-313-851-3959x27468,30157448552572,2025-06-09 +City Hotel,1,17,2017,March,9,1,0,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,97.66,0,0,Canceled,Karen Griffin,vmyers@example.org,(702)968-8371,2543374615490322,2025-12-12 +City Hotel,0,27,2017,June,25,19,1,2,2,0.0,0,SC,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,100.5,1,0,Check-Out,Joseph Chapman,edwardsdavid@example.com,340-469-2471,2241319090551937,2024-05-01 +City Hotel,0,392,2017,June,25,20,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,63.8,0,0,Check-Out,Jennifer Baker,morrisanthony@example.com,451.673.5957,30237687999302,2024-06-01 +City Hotel,1,11,2017,March,11,12,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.59,0,0,Canceled,Mr. Jeremiah Galvan MD,ssmith@example.com,001-849-237-6313x10855,180066598788498,2025-03-07 +Resort Hotel,1,154,2017,August,33,13,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,196.08,0,0,Canceled,Samantha Thomas,katherine18@example.org,999-717-6549x4177,4566453655628419,2024-09-14 +Resort Hotel,0,16,2017,February,9,25,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,327.0,179.0,0,Transient,132.03,0,0,Check-Out,Michael Anderson,nolanrita@example.net,+1-923-216-5864,375957877927747,2025-05-14 +Resort Hotel,1,0,2017,September,38,22,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,87.31,0,0,Canceled,Sharon Wilson,harold45@example.com,(660)516-8047,4285068977506,2025-09-02 +City Hotel,0,2,2017,August,34,21,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,210.37,1,0,Check-Out,John Francis,hkim@example.net,(594)268-0546x35415,4290226124058,2024-06-09 +City Hotel,0,20,2017,December,2,30,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,155.81,0,2,Check-Out,Jaclyn Crane,emccall@example.org,638-863-7725x39291,4983745708855927746,2024-05-23 +City Hotel,0,45,2017,December,52,23,1,3,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.47,0,2,Check-Out,Jennifer Martinez,ipatterson@example.net,+1-868-651-2673x908,2720448757723347,2025-07-02 +City Hotel,1,19,2017,April,17,27,1,3,2,0.0,0,SC,,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.95,0,0,Check-Out,Amanda Hernandez,munozerik@example.org,+1-238-537-4025x52840,4724325726534472435,2025-09-21 +Resort Hotel,1,14,2017,November,46,12,1,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,49.39,0,0,Canceled,William Turner,kevinlin@example.com,+1-753-324-4576x8833,4747262861083,2025-07-18 +Resort Hotel,1,0,2017,July,29,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,16.0,72.0,0,Transient,41.89,0,0,Canceled,Dr. Charles Lawrence,alexreid@example.org,(860)877-3866x7378,36729672238500,2025-10-20 +City Hotel,1,116,2017,March,9,1,0,2,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.56,0,1,Canceled,Steven Small,coxshaun@example.org,819.971.3209x232,340558377875642,2025-04-06 +City Hotel,0,11,2017,July,27,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,154.0,179.0,0,Transient-Party,64.67,0,0,Check-Out,Robert Burns,cindy83@example.org,922.776.7232x3290,4888864343992317,2025-01-01 +City Hotel,1,0,2017,April,14,6,0,4,2,0.0,0,BB,USA,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,91.12,0,1,Check-Out,Gregory Harrell,dmckay@example.com,+1-968-818-8195x57744,4446086499095829,2024-07-29 +City Hotel,0,126,2017,April,15,6,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,136.28,0,0,Check-Out,Kenneth Knight,woodarderica@example.org,001-596-219-0169x210,30476467200826,2024-12-20 +Resort Hotel,0,0,2017,November,45,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,241.0,179.0,0,Transient,54.97,1,2,Check-Out,Rachael Alvarez,gloriawilliams@example.net,+1-524-850-0496x870,3536729581533289,2024-06-23 +City Hotel,0,2,2017,April,16,17,2,5,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Canceled,Lisa Gill,lindsey76@example.net,001-816-822-2700x261,2260299866292815,2025-06-21 +City Hotel,0,48,2017,June,24,14,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,56.7,0,0,Check-Out,Julia Cole,davisemily@example.org,001-853-643-2950,4554732751160371873,2025-11-29 +City Hotel,0,25,2017,April,15,12,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.74,0,1,Check-Out,Sean Nguyen,karina20@example.net,(800)715-5166x0728,2710992915557529,2024-06-04 +Resort Hotel,1,4,2017,April,17,24,0,4,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,246.0,179.0,0,Transient,225.17,0,0,Canceled,Mary Ortiz,robertpaul@example.net,830.798.3664x16507,4139429589297604453,2024-07-31 +City Hotel,1,151,2017,February,5,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,102.85,0,0,Canceled,James Weaver,hernandeztravis@example.net,(473)685-7517x1452,630429525474,2026-01-10 +City Hotel,0,17,2017,April,14,5,1,4,2,1.0,0,BB,ISR,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,229.66,0,3,Check-Out,Stacy Fitzgerald,connermelissa@example.net,249-610-9053,4183234659399584,2026-02-02 +Resort Hotel,0,77,2017,March,10,6,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,126.17,0,0,Check-Out,Sharon Mann,jennifermoss@example.com,8045441817,2720397115608411,2024-07-27 +Resort Hotel,0,0,2017,April,17,22,0,1,2,1.0,0,Undefined,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,19.0,179.0,0,Transient-Party,2.2,1,0,Check-Out,Rebecca Zimmerman,stephenperez@example.com,508-537-0065x86892,3549319731693046,2025-06-21 +Resort Hotel,1,240,2017,February,9,25,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient,212.74,0,0,Canceled,Becky Hansen,christine91@example.com,992.406.3807x6969,4508562412864,2024-03-30 +City Hotel,0,43,2017,March,13,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.01,1,1,Check-Out,Luke Ray,myersrachel@example.org,+1-800-564-3842x823,2271934903265765,2024-08-12 +Resort Hotel,0,9,2017,November,47,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,204.0,0,Transient-Party,90.93,0,0,Check-Out,Kelly Lopez,jthornton@example.net,001-216-738-8887,3542063477555046,2025-04-16 +City Hotel,0,47,2017,June,24,13,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,52.67,0,2,Check-Out,Steven Martinez,wliu@example.net,(876)883-7354,6011752871196523,2024-12-20 +City Hotel,0,5,2017,June,24,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient,127.46,0,2,Check-Out,Catherine Smith,vbradshaw@example.org,001-714-725-5425,3561549923276993,2025-07-24 +Resort Hotel,1,262,2017,April,15,13,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,39.23,0,1,Canceled,Danielle Thornton,dchase@example.org,+1-499-628-5338x76575,4171887517269044,2024-05-28 +City Hotel,1,13,2017,February,8,23,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,121.08,0,1,Canceled,Jill Roman,john68@example.com,5835415858,213158947017819,2024-12-29 +Resort Hotel,0,3,2017,October,41,11,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,I,0,No Deposit,13.0,331.0,0,Transient,5.81,1,0,Check-Out,Jennifer Williams,sarapacheco@example.net,(760)255-3782x9159,4618843255707235467,2024-06-24 +City Hotel,1,43,2017,November,46,13,0,6,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,54.93,0,1,Canceled,Allison Kim,gregorymarks@example.com,216.727.8547x429,4709465690964524910,2025-11-06 +Resort Hotel,1,157,2017,November,48,26,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,47.03,0,0,Canceled,Scott Stewart,trujillovirginia@example.org,989.458.4295x2496,2537251406065638,2025-09-08 +Resort Hotel,0,1,2017,December,49,8,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,222.0,0,Transient-Party,52.72,0,0,Check-Out,Brian Garcia,bmendez@example.net,(596)519-1238x0508,371987223352591,2024-10-31 +City Hotel,1,26,2017,April,17,24,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,178.97,0,2,No-Show,Charles Scott,dhansen@example.org,304-225-8538x68351,213151876141445,2025-02-05 +City Hotel,0,1,2017,December,49,4,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient,89.69,0,0,Check-Out,Eric Russell,ipruitt@example.org,001-735-593-7563x8856,4785986561563470765,2024-07-08 +City Hotel,1,20,2017,April,15,12,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,232.82,0,2,Canceled,Lucas Nguyen,patricia00@example.net,+1-419-535-5642x92778,639027913834,2024-11-17 +Resort Hotel,0,92,2017,September,37,10,0,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,A,1,No Deposit,15.0,179.0,0,Transient,120.4,0,1,Check-Out,Anthony Price,kimmarcus@example.com,(581)931-4342x0424,675949551666,2025-06-09 +Resort Hotel,0,13,2017,September,36,4,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,E,E,1,No Deposit,11.0,179.0,0,Transient,79.28,0,0,Check-Out,Jason Nguyen,victoria39@example.org,(884)584-9000x60322,3514779724130978,2025-06-19 +Resort Hotel,1,115,2017,May,21,25,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,30.0,179.0,0,Transient-Party,130.39,0,0,Canceled,Ronald Martinez,avilajoshua@example.org,001-614-856-6252x82516,371859791299324,2025-12-15 +Resort Hotel,0,10,2017,June,22,3,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,53.59,0,2,Check-Out,Paul Willis,jacquelineedwards@example.net,001-953-701-9384x4047,6011101127458891,2025-11-17 +City Hotel,0,5,2017,May,19,8,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,239.0,179.0,0,Transient,141.51,0,0,Check-Out,Paul Cruz Jr.,ismith@example.net,752-456-6288,377947316331617,2025-08-10 +City Hotel,0,400,2017,May,18,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,42.39,0,1,Check-Out,John Russell,yclay@example.com,(830)921-6738x047,6011623919862766,2025-04-01 +Resort Hotel,0,89,2017,November,48,28,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient-Party,77.68,0,0,Check-Out,Mr. David Mercado,thomashanson@example.org,001-578-239-0183x8440,589171445101,2024-11-21 +City Hotel,0,84,2017,January,2,3,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.9,0,1,Check-Out,Victor Leonard,justin90@example.net,703-249-0225,2702167114694759,2025-07-06 +City Hotel,1,96,2017,December,52,26,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient,106.63,0,0,Canceled,Justin Glover,julie30@example.com,001-561-888-7223x5303,4332695894052719,2025-08-03 +City Hotel,0,17,2017,November,48,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,91.13,0,1,Check-Out,Jason Miller,fsmith@example.net,398.332.8916x6126,38382161946791,2026-01-06 +City Hotel,0,4,2017,June,25,18,0,1,1,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,92.75,0,3,Check-Out,Christina Faulkner,moorestanley@example.com,+1-682-649-3283x2557,2253830626578819,2025-10-11 +City Hotel,0,1,2017,March,12,16,1,0,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,3.98,0,0,Check-Out,William Casey,daniel30@example.net,456-893-5835x4103,4406606860833005234,2024-04-11 +City Hotel,0,12,2017,March,12,20,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,168.17,0,1,Check-Out,Jessica Buck,florescrystal@example.org,688.679.6611x301,3567749494647895,2025-08-03 +Resort Hotel,0,157,2017,December,50,12,0,5,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,236.0,179.0,0,Transient,236.62,0,1,Check-Out,Aaron Marshall,jacobsonamy@example.com,841-804-8689x0637,4912345181079,2025-04-15 +City Hotel,0,38,2017,April,17,25,1,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Contract,105.95,0,1,Check-Out,Donna Stanton,emurphy@example.org,544-989-0659,180087186915954,2026-01-01 +Resort Hotel,0,0,2017,September,38,18,0,1,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,241.0,179.0,0,Transient,198.71,0,2,Check-Out,Timothy Olson,weaverhector@example.com,+1-630-513-1057x169,4041069285778146,2024-04-03 +Resort Hotel,1,15,2017,March,13,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,239.0,179.0,0,Transient,221.38,0,0,Canceled,Sara James,reyeswilliam@example.net,001-618-956-8674,4363810520249940854,2025-04-28 +Resort Hotel,0,1,2017,March,13,27,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,76.06,0,1,Check-Out,Mark Richards,kristen72@example.com,486-421-8754x06570,6512371810755093,2025-07-15 +Resort Hotel,0,17,2017,December,49,8,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,102.94,1,1,Check-Out,Amber Stevenson,jeffrey05@example.net,858-352-7713x0597,4266509014022389,2024-12-22 +City Hotel,0,14,2017,November,47,18,0,3,1,0.0,0,BB,,Corporate,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,125.79,0,1,Check-Out,Elizabeth Foster,suzanneward@example.com,+1-301-455-1334,213188852357124,2024-10-06 +City Hotel,1,4,2017,January,3,18,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,160.42,0,2,Canceled,Charles Hawkins,rachel13@example.com,615.903.3777,4595286704116746725,2025-02-22 +Resort Hotel,0,7,2017,November,48,28,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,1,G,G,1,No Deposit,246.0,179.0,0,Transient,65.03,1,0,Check-Out,Jeffrey Bishop,johnnymiller@example.com,867-838-9600x0320,560442440932,2026-01-02 +Resort Hotel,1,96,2017,April,15,15,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,107.72,0,1,Canceled,Emily Fleming,xchambers@example.com,617.671.2280,4876495588146784363,2024-10-10 +Resort Hotel,0,1,2017,July,29,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,54.47,0,0,Check-Out,Dean Mullins,balldavid@example.net,(741)766-0729,3584847995811074,2025-12-08 +Resort Hotel,1,207,2017,April,17,28,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,138.4,0,1,Canceled,David Bird,wileycynthia@example.org,445.475.6834,340636280867334,2024-08-25 +City Hotel,0,166,2017,July,29,20,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,81.76,0,0,Check-Out,Joe Greene,howardchristopher@example.com,878.493.4843x333,4778307826587441929,2025-01-28 +City Hotel,0,21,2017,December,52,23,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,202.98,0,1,Check-Out,Michael Lucas,martineztammy@example.org,989-800-0190x938,3597681198911497,2025-04-14 +City Hotel,1,164,2017,April,17,23,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,75.0,179.0,0,Transient-Party,123.67,0,2,Canceled,John Valenzuela,cgreen@example.com,+1-714-573-3220x63399,503874252821,2024-06-10 +City Hotel,1,14,2017,November,47,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.75,0,2,Canceled,Jennifer Woodard,carlos69@example.net,510-234-5550x145,4826300351851751,2024-06-10 +Resort Hotel,0,1,2017,August,34,24,2,2,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,64.36,0,0,Check-Out,Pamela Medina,javieringram@example.com,+1-873-700-2290x07737,579830787415,2026-02-27 +City Hotel,1,213,2017,March,12,19,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,132.47,0,2,Canceled,Mariah Jones,jgraves@example.com,(750)944-6220x369,2639657439893746,2025-06-12 +City Hotel,0,173,2017,April,18,30,1,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.5,0,3,Check-Out,Ronnie Powers,shane87@example.net,001-453-280-2999x120,3566234645173167,2025-09-24 +City Hotel,1,398,2017,February,8,22,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,41,Transient,107.46,0,0,Canceled,Heather Hess,bobbywalls@example.net,(813)826-4011,4196022672766114609,2024-09-17 +City Hotel,0,34,2017,February,8,20,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,228.4,0,1,Check-Out,Heather Thompson,gregory39@example.org,(389)727-9308,6011102359284534,2024-11-09 +Resort Hotel,1,90,2017,June,23,9,2,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient-Party,101.68,0,0,Canceled,Melissa Smith,xirwin@example.com,250-378-6130x85850,4339876116140267,2024-06-22 +City Hotel,0,16,2017,August,31,3,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,98.32,0,1,Check-Out,Timothy Wallace,robertwilliams@example.org,+1-276-792-0990x72780,6011976716979799,2026-01-19 +City Hotel,1,149,2017,November,47,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,39,Transient,104.57,0,1,No-Show,Alejandro Campbell,kevinhess@example.org,(859)646-3089,676264624112,2024-08-01 +City Hotel,1,214,2017,April,14,4,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,131.2,0,1,Canceled,Heather Davis,thomaslynch@example.com,(796)724-3413x49992,6592035727138429,2024-12-14 +City Hotel,1,26,2017,April,16,16,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.6,0,1,Canceled,Elizabeth Robbins,taylorlawrence@example.org,495-595-2892x1672,374480217572983,2024-06-12 +City Hotel,0,0,2017,November,44,2,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.93,0,1,Check-Out,Johnny Cox,patriciaprice@example.com,702-587-9573x6375,676213255737,2025-02-04 +Resort Hotel,0,0,2017,November,46,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,50.34,1,1,Check-Out,Tanner Mann,ryanclark@example.com,(346)568-9676,3536238153832079,2025-09-12 +City Hotel,1,224,2017,June,23,7,2,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,62,Contract,49.13,0,0,Canceled,Craig Nicholson,erica31@example.net,(917)636-9654x03568,213176353301899,2024-09-12 +Resort Hotel,0,7,2017,January,2,7,1,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,2,No Deposit,244.0,179.0,0,Transient,1.05,0,1,Check-Out,Sergio Carroll,rachel59@example.com,001-529-212-9304x311,3566216936590696,2025-04-20 +City Hotel,1,96,2017,December,49,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,83.46,0,0,Canceled,Juan Keller MD,stephanie81@example.com,421-455-0017,4718861324982560,2025-06-29 +Resort Hotel,1,141,2017,February,8,22,4,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,A,2,No Deposit,242.0,179.0,0,Transient,129.97,0,0,Canceled,Krystal Jones,websterbrandy@example.org,866-641-8742x94880,3517440544177726,2025-09-13 +City Hotel,1,236,2017,February,9,28,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,117.7,0,0,No-Show,Austin Green,patrick31@example.net,+1-706-985-8069x8434,2398105138644102,2025-07-15 +City Hotel,0,8,2017,July,29,21,1,2,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient-Party,62.39,0,0,Check-Out,Crystal Mills,lwilliamson@example.com,+1-458-923-2471x146,4275082628151266,2026-03-23 +Resort Hotel,0,15,2017,February,6,7,1,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,239.0,179.0,0,Transient,138.87,0,1,Check-Out,Cheryl Gregory,pnorman@example.net,320.280.7948x3553,38093995847861,2025-12-28 +Resort Hotel,0,1,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,I,1,No Deposit,308.0,179.0,0,Transient,4.77,0,1,Check-Out,Melissa Patel MD,andersonalan@example.org,(866)512-8164x1320,2225935200893677,2025-01-29 +City Hotel,0,99,2017,August,33,14,2,4,2,0.0,0,FB,RUS,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,111.42,0,1,Check-Out,Jordan Pace,johnwalker@example.net,+1-258-579-2129x5916,3546122418735475,2024-10-27 +City Hotel,0,226,2017,February,7,16,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.12,0,1,Check-Out,Terri Williams,dalehudson@example.org,001-398-798-9052,630416983173,2024-12-05 +City Hotel,0,13,2017,May,18,4,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,3,No Deposit,8.0,179.0,0,Transient,147.87,0,0,Check-Out,Jessica Carney,markbishop@example.net,(357)741-9229,4991366276771322518,2026-02-10 +Resort Hotel,0,28,2017,August,35,30,0,2,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient-Party,112.76,0,2,Check-Out,Michael Owens,tylergreen@example.org,946.719.1987,375554657577006,2025-04-05 +City Hotel,0,50,2017,October,41,11,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,17,Transient,61.81,0,0,Check-Out,Peter Stephenson,john86@example.com,+1-827-335-6232,4246096551665070480,2024-11-29 +Resort Hotel,0,153,2017,June,25,21,2,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,11.0,223.0,0,Transient-Party,52.74,0,0,Check-Out,Donald Fisher,drobertson@example.org,4027703144,3549932448848008,2025-01-10 +City Hotel,0,15,2017,April,16,15,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.38,0,1,Check-Out,Aaron Lee,ypearson@example.org,001-810-311-0900x53709,501879624507,2026-02-19 +Resort Hotel,0,137,2017,July,26,1,2,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,126.28,0,0,Check-Out,Kenneth Johnson,stevenwoods@example.net,001-672-892-8832x29837,676246494535,2024-11-26 +Resort Hotel,1,3,2017,June,23,6,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,127.69,0,0,No-Show,Vanessa Coleman,mfarley@example.com,922-307-0731,4014879870665528528,2024-08-28 +City Hotel,0,86,2017,February,9,29,3,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,29.0,179.0,0,Group,52.04,0,0,Check-Out,David Martin,kellytasha@example.com,857.562.8379x6756,30278325715312,2024-05-21 +City Hotel,0,137,2017,October,43,22,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,45.0,0,Transient,56.09,1,1,Check-Out,Mark Davis,alyssacameron@example.net,001-276-337-3354x724,349481739312108,2024-06-06 +Resort Hotel,1,220,2017,November,47,23,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,61.07,0,0,No-Show,Robert Watkins,jamesandrade@example.org,391.759.9108x56886,3530495208615257,2024-12-10 +City Hotel,0,3,2017,November,48,27,0,2,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,K,0,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,Felicia Wright,mjohnson@example.net,(853)951-3592x076,30465110526687,2024-04-24 +City Hotel,1,38,2017,August,31,2,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,30.0,179.0,0,Transient,75.22,0,0,Canceled,David Peterson,kennethporter@example.net,+1-688-899-6842x758,3563737044092666,2025-07-01 +Resort Hotel,0,34,2017,June,24,17,2,0,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,48.91,0,0,Check-Out,Gavin Bauer,hcox@example.net,001-362-934-4962x27876,4135907458545452,2024-07-13 +City Hotel,0,139,2017,December,52,23,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,145.57,0,1,Check-Out,Patricia Harvey,ataylor@example.net,5576081091,4881852422671263,2024-09-26 +City Hotel,0,3,2017,April,14,5,0,3,2,0.0,0,HB,BEL,Groups,Undefined,0,0,0,L,L,0,No Deposit,187.0,179.0,0,Transient-Party,181.2,1,0,Check-Out,Lori Riley,zfranco@example.com,442.396.6431,566921731923,2026-03-10 +City Hotel,1,253,2017,April,16,19,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,16,Transient,84.56,0,0,Canceled,Antonio Johnson,williamsantos@example.com,285.918.2164x20009,4538308431801059,2025-04-05 +City Hotel,0,99,2017,March,9,2,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,101.29,0,0,Check-Out,Ryan Brown,ysmith@example.com,+1-286-397-2809x95781,4740251554615191,2025-10-22 +City Hotel,0,151,2017,June,23,5,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,42,Transient-Party,104.58,0,0,Check-Out,Thomas Ramos,hutchinsonerik@example.net,8359304847,503843337505,2024-09-28 +City Hotel,0,9,2017,October,42,14,2,0,1,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Group,71.56,0,1,Check-Out,Mark Jones,collinsmichelle@example.com,001-939-671-6479x909,30070966122373,2024-08-09 +City Hotel,1,142,2017,November,48,26,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,131.11,0,1,Canceled,Kristin Phillips,amyadams@example.com,(523)250-2913,572328827348,2026-03-03 +Resort Hotel,0,211,2017,April,15,10,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,129.3,0,2,Check-Out,Brendan Walton,hendersonkimberly@example.net,(939)529-1496,501858430223,2025-09-29 +Resort Hotel,1,3,2017,April,15,11,2,0,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,G,0,No Deposit,245.0,179.0,0,Transient,181.38,1,1,Canceled,Kyle Keller,kcarlson@example.net,310.760.0962,4687862491365260528,2025-07-04 +City Hotel,0,47,2017,April,16,17,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,237.0,179.0,0,Transient,64.85,0,1,Check-Out,James Pope,craig99@example.com,001-748-805-8691,3535799771618522,2026-02-08 +Resort Hotel,0,8,2017,June,24,12,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,242.0,179.0,0,Transient,57.62,0,1,Check-Out,Lisa Morgan,hsmith@example.org,693.886.5160,30212619132264,2024-06-27 +City Hotel,0,0,2017,August,34,25,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,23.0,179.0,0,Transient,108.64,0,1,Check-Out,Rachel Gibson,schmidtjoseph@example.net,001-412-390-6582,6523554771498962,2025-10-11 +City Hotel,0,19,2017,March,10,6,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,185.41,0,2,Canceled,Corey Garcia,williamsonrobin@example.com,735-991-6136,5374746657159674,2024-05-09 +City Hotel,1,344,2017,February,7,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.81,0,0,Canceled,Andrea Clarke,jonathan87@example.net,6599482929,30336295871232,2025-02-08 +City Hotel,0,53,2017,March,9,1,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.04,0,1,Check-Out,Kenneth Walsh,raymondlauren@example.com,+1-535-501-6939,675988908082,2024-10-18 +City Hotel,1,402,2017,May,19,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.85,0,0,Canceled,Jason Hardy,jamesbutler@example.com,+1-461-759-0726x6716,630461883658,2024-06-10 +City Hotel,0,3,2017,June,23,8,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.03,0,1,Check-Out,David Robles,dhardin@example.net,(226)465-7816x5745,2308424289366376,2025-09-21 +City Hotel,0,2,2017,August,33,14,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,100.08,1,1,Check-Out,Eric Graham,paulwhite@example.org,824.802.1019x23702,3592673784195218,2025-03-01 +Resort Hotel,0,92,2017,May,20,16,0,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,60.96,0,0,Check-Out,Nicole Collins,santiagowilliam@example.org,001-419-315-7265,30035435173182,2024-11-12 +City Hotel,1,27,2017,December,51,20,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,161.0,179.0,0,Transient,113.63,0,0,Canceled,Patricia Hernandez,vwarner@example.net,001-636-252-4394x356,5375047496752749,2025-03-29 +City Hotel,0,205,2017,May,21,24,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient-Party,105.05,0,1,Check-Out,Grant Wood,uevans@example.net,5657861584,4462633370541659,2025-10-11 +City Hotel,1,128,2017,January,4,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,111.66,0,0,Canceled,Kevin Gregory,treid@example.org,+1-514-891-8824,676156928217,2025-02-19 +Resort Hotel,0,0,2017,August,32,8,0,2,1,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,48.38,0,1,Check-Out,Jonathon Conley,schmidtjenny@example.org,001-475-380-0662x2771,3535488914714931,2025-06-21 +City Hotel,1,39,2017,May,21,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,107.11,0,0,No-Show,Jennifer Gonzalez,seanthompson@example.net,7208743210,4122550181380949,2024-12-06 +City Hotel,1,145,2017,November,47,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.57,0,1,Canceled,Terry Glover,janice37@example.org,+1-401-771-6454x411,38089485574056,2024-10-22 +City Hotel,0,0,2017,August,31,3,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,17.0,45.0,0,Transient,2.01,0,0,Check-Out,Michael Neal,robertmcdowell@example.net,473-484-1750,349244071546679,2024-07-15 +City Hotel,0,0,2017,June,26,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,25.0,179.0,0,Transient-Party,98.68,0,1,Check-Out,Ms. Erin Lane,fjohnson@example.com,483.411.6952x3593,4745975414927,2024-10-14 +City Hotel,0,157,2017,May,18,1,1,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,81.45,0,1,Check-Out,Lisa Barnes,tommy13@example.net,4903324007,4206706951569587,2024-06-08 +Resort Hotel,0,13,2017,November,48,29,1,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,45.9,0,3,Check-Out,Jesse Mccormick,egonzalez@example.com,(218)478-5427,4954515156759892237,2024-12-24 +Resort Hotel,0,92,2017,October,42,17,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,78.84,0,1,Canceled,Daniel Smith,teresawilson@example.com,2946557463,180010641009031,2025-12-23 +City Hotel,0,112,2017,May,20,16,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,63.72,0,1,Check-Out,David Hanson,paul24@example.com,001-733-516-8207x78527,3599095858370340,2024-11-08 +City Hotel,0,2,2017,April,14,4,0,1,2,0.0,0,BB,CHN,Online TA,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,113.81,0,1,Check-Out,Nicholas Cisneros,tammy43@example.org,(906)313-4192,4631377934866636676,2025-07-15 +City Hotel,0,147,2017,September,38,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,38.87,1,1,Check-Out,Patrick Harris,crawfordamy@example.com,639.774.5021,4249851877877,2026-03-09 +Resort Hotel,1,165,2017,November,48,30,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,61.52,0,1,Canceled,William Cox,jenniferwilliams@example.net,811.859.7497,6011481741209221,2025-11-25 +City Hotel,0,47,2017,August,34,22,2,1,2,1.0,0,BB,,Direct,Direct,0,0,0,E,F,1,No Deposit,15.0,179.0,0,Transient,79.15,0,1,Check-Out,Alvin Wilson,iortiz@example.org,439-713-2614x5509,4580754171248532941,2025-09-25 +City Hotel,0,2,2017,September,37,11,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,5.0,179.0,0,Transient,99.13,0,0,Check-Out,Cory Willis,mallory78@example.com,908-234-5129x195,4515740541829,2026-02-17 +City Hotel,0,402,2017,February,6,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient-Party,111.3,0,0,Canceled,Amanda Johnson,aking@example.org,+1-752-563-6274x225,3585957948214380,2024-12-23 +Resort Hotel,0,0,2017,September,38,19,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,45.34,0,2,Check-Out,Christopher Mcclure,scott46@example.com,001-563-750-2998,4580903642319920,2025-03-14 +City Hotel,1,155,2017,June,23,8,0,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,166.91,0,0,Canceled,Gina Spencer,darrylmendez@example.com,670-587-4765x28683,4461708418587,2025-04-29 +Resort Hotel,0,152,2017,June,25,16,2,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,81.42,0,0,Check-Out,Alex Cameron,megan52@example.com,(547)561-1434,4362832480158864,2025-12-28 +Resort Hotel,0,101,2017,January,4,26,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,C,0,No Deposit,15.0,179.0,0,Transient,168.39,0,0,Check-Out,Alisha Byrd,elizabeth42@example.com,650.868.9744,4060019953926,2025-11-06 +Resort Hotel,0,49,2017,February,6,3,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,244.3,0,0,Check-Out,Richard Rodriguez,anna66@example.com,+1-771-474-9095,213164991931608,2024-11-09 +Resort Hotel,1,303,2017,March,10,8,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,F,A,0,No Deposit,241.0,179.0,0,Transient-Party,194.35,0,0,Canceled,Elizabeth Allen,chelseaarmstrong@example.org,+1-980-271-7965x321,4987785921293804,2025-02-01 +Resort Hotel,0,134,2017,January,5,31,4,10,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,111.02,0,1,Check-Out,Mary Pugh,tmartin@example.com,001-811-677-8649,2236749071665057,2025-11-07 +City Hotel,0,2,2017,November,46,18,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.87,1,1,Check-Out,Yolanda Keith,cgilbert@example.com,001-765-988-9492x1475,4489574092566482588,2024-08-02 +Resort Hotel,0,143,2017,March,13,26,1,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,249.0,179.0,0,Transient,222.31,1,3,Check-Out,Ana Thomas,garciaveronica@example.com,8402992643,6011544963050902,2024-07-10 +City Hotel,1,84,2017,August,31,1,2,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,108.4,0,1,No-Show,Rebecca Lee,perezfrank@example.net,(358)455-2516,2675390984321351,2025-03-10 +Resort Hotel,0,70,2017,May,22,29,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,70.0,179.0,0,Transient,215.31,0,1,Check-Out,James Greene,angelalambert@example.net,001-554-601-7955,3520218686718159,2025-05-20 +Resort Hotel,1,93,2017,January,3,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,13.0,179.0,0,Transient-Party,3.95,0,1,No-Show,Dana Williams,veronicajensen@example.org,570.724.1052,4885225879738990,2025-03-27 +City Hotel,0,0,2017,January,5,27,2,0,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,136.59,0,1,Check-Out,Chelsea Nichols,wtaylor@example.net,+1-963-330-0374x172,5147126116543014,2025-02-06 +City Hotel,0,30,2017,June,25,22,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,40.55,0,0,Check-Out,Erin Brown,rodney86@example.org,377-480-9602x015,568524165848,2024-10-16 +Resort Hotel,0,13,2017,July,29,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,347.0,331.0,0,Transient-Party,62.59,0,0,Check-Out,Shelley York,fbarry@example.org,+1-487-804-7932x0024,4870981399387711,2025-05-15 +Resort Hotel,0,83,2017,November,48,29,1,4,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,C,2,Refundable,12.0,220.0,0,Transient-Party,69.12,0,0,Check-Out,Stacey Clark,michaelwatson@example.com,+1-536-932-6184x7606,676347267749,2024-11-25 +City Hotel,0,32,2017,July,28,9,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,135.73,0,2,Check-Out,John Alvarado,hansenlarry@example.com,321-483-5384,180028859897590,2025-04-10 +Resort Hotel,0,109,2017,April,16,22,2,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient-Party,130.05,0,1,Check-Out,Jordan Potter,mccarthymarissa@example.net,631.806.3815x180,6011611383589767,2024-10-07 +Resort Hotel,0,146,2017,April,16,22,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,G,E,0,No Deposit,247.0,179.0,0,Transient,134.74,1,0,Check-Out,Katrina Jimenez,robertcastillo@example.net,377.202.7002,30499733304446,2025-05-15 +City Hotel,0,55,2017,January,2,1,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,110.9,0,1,Check-Out,Frank Brooks,adam60@example.org,4588099826,4055206039887163764,2025-10-31 +City Hotel,0,6,2017,November,47,22,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,130.35,0,1,Check-Out,Michelle Simpson,hernandezronnie@example.com,(556)880-4285x03885,4540652338135996,2024-11-28 +Resort Hotel,0,217,2017,June,22,3,1,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,1,0,D,A,0,No Deposit,314.0,179.0,0,Contract,64.79,0,1,Check-Out,James Morse,cfields@example.net,317.665.3473x8352,502019915284,2026-03-08 +City Hotel,1,168,2017,April,15,10,1,2,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,171.63,0,1,No-Show,Amanda Robinson,mjones@example.org,+1-218-304-7188x3031,6572990638534187,2026-03-24 +City Hotel,1,147,2017,March,13,29,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient,123.27,0,1,Canceled,Scott Foster,smithcarla@example.com,727-847-0540,4847114005265531,2025-01-27 +City Hotel,0,16,2017,April,16,13,0,2,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,162.62,0,0,Check-Out,Stephen Duncan,qkelly@example.net,906.821.5446x479,4744635348495389,2025-03-30 +Resort Hotel,0,148,2017,November,46,12,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,62.21,0,1,Check-Out,Jacqueline Pierce,kyle43@example.org,485-774-3866,2703523742499905,2025-10-24 +Resort Hotel,1,48,2017,March,9,3,2,2,3,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,228.6,1,1,No-Show,Bradley Wallace,davisnicole@example.com,7285451818,3511177258785247,2024-08-20 +City Hotel,0,220,2017,June,24,10,2,3,2,0.0,0,BB,NOR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Transient-Party,94.03,0,0,Check-Out,Kevin Marshall,vanderson@example.com,712.943.8311x41009,4405392227960147,2024-11-02 +City Hotel,0,44,2017,December,52,28,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient-Party,84.69,0,1,Check-Out,Jessica Mcdonald,michelle20@example.net,429.941.9976x53048,4014809798191631,2025-11-04 +City Hotel,1,0,2017,June,23,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,H,0,No Deposit,15.0,179.0,0,Transient,2.11,0,0,Canceled,Robert Stewart,henry25@example.net,001-321-855-0396x801,4318753122429536,2025-11-13 +City Hotel,0,189,2017,April,15,9,2,5,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,65.47,0,0,Check-Out,Christopher Hall,mparks@example.org,+1-421-487-4064,30393648767468,2025-07-31 +City Hotel,0,15,2017,September,36,3,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,77.82,0,0,Check-Out,Heather Miller,mayala@example.org,4736556202,2337128146712830,2025-03-26 +City Hotel,0,7,2017,July,29,19,2,2,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.49,0,0,Check-Out,Kayla Schneider,jenkinsrandy@example.com,001-645-613-1989,4081006741049333,2025-01-12 +Resort Hotel,0,136,2017,November,48,30,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,1,Refundable,14.0,224.0,0,Transient-Party,32.01,0,0,Check-Out,Tammy Garcia,williamsseth@example.net,001-570-671-7302x15601,561095373586,2025-01-15 +City Hotel,1,376,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,127.51,0,0,Canceled,Andrew Gonzalez,epotter@example.org,001-776-459-8457x6210,503803745176,2025-04-21 +City Hotel,0,25,2017,December,49,6,2,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,140.37,0,1,Check-Out,Gary Turner,qdavis@example.com,5689106961,676186811201,2025-08-25 +Resort Hotel,1,135,2017,March,12,20,2,4,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,0,No Deposit,13.0,179.0,0,Transient,192.63,0,0,Canceled,Melinda Hill,fowlermichael@example.org,001-234-635-7110x23477,374157288262195,2024-11-22 +City Hotel,0,2,2017,August,32,10,1,4,2,0.0,0,BB,,Complementary,Direct,0,0,0,E,E,3,No Deposit,16.0,179.0,0,Transient,98.93,1,0,Check-Out,Yolanda Murillo,jnelson@example.com,429.302.3881x3937,3525225693517297,2025-01-31 +City Hotel,1,411,2017,April,16,18,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,75,Transient,83.47,0,0,Check-Out,Nancy Gaines,qodonnell@example.org,+1-376-632-2108,4429699913630178,2025-06-01 +City Hotel,0,0,2017,October,43,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,86.85,1,1,Check-Out,Elijah Short,marilyn46@example.com,309-630-6948x272,6011887688224025,2024-04-17 +City Hotel,0,113,2017,December,2,30,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,115.04,0,1,Check-Out,Jennifer Sullivan,samanthanunez@example.com,846.534.6277x14254,30533115724001,2025-12-01 +City Hotel,0,2,2017,June,23,5,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Group,91.66,0,1,Check-Out,Mary Kennedy,booneteresa@example.com,807.827.3125,213168580526554,2025-10-07 +City Hotel,1,85,2017,September,37,13,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.45,0,0,Canceled,Paige Hernandez,roneal@example.com,(714)569-5614x2660,3540781783874510,2024-12-13 +City Hotel,1,6,2017,August,34,23,0,1,3,0.0,0,SC,,Aviation,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,2.87,0,0,Canceled,Darrell Curry,millerrobert@example.org,592.803.3009,213169035707211,2024-04-07 +Resort Hotel,0,40,2017,August,34,25,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,240.0,179.0,0,Transient,136.86,1,2,Check-Out,Jose Hartman,jacqueline53@example.net,357-344-3428,38141070830649,2025-12-31 +City Hotel,1,147,2017,February,6,4,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,11.0,179.0,0,Transient,149.11,0,0,No-Show,Miranda Murray,mcooper@example.net,946.329.8201x07228,6591839675311867,2025-10-29 +City Hotel,0,40,2017,March,9,2,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,180.97,0,2,Check-Out,Emily Lopez,kleblanc@example.net,001-516-448-8789x8337,6540292044354923,2025-05-31 +Resort Hotel,0,96,2017,September,38,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,82.09,0,0,Check-Out,Melissa Clark,briancummings@example.net,6252353965,4704497782822646,2024-10-31 +City Hotel,1,432,2017,March,11,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,105.49,0,0,Canceled,Justin Brooks,nicole28@example.net,(378)865-6074,585639725142,2025-07-01 +Resort Hotel,1,44,2017,April,15,12,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,242.64,0,3,Canceled,Bethany Harding,kathrynwilliams@example.org,+1-681-313-4698,4975767265401447819,2025-03-19 +Resort Hotel,0,269,2017,October,40,6,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,145.0,179.0,0,Transient-Party,31.71,0,0,Check-Out,Robert Flowers,rmclean@example.net,+1-285-753-8931x750,4231619987732867948,2025-10-31 +Resort Hotel,1,104,2017,August,35,30,2,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,95.36,0,0,Canceled,Jason Jennings,andrewhopkins@example.net,(514)988-0193x94349,341815613504314,2024-10-15 +City Hotel,1,379,2017,March,11,15,2,2,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,19,Transient-Party,61.02,0,0,Canceled,Richard Medina,carriesimpson@example.net,534-843-9159,213183249010536,2024-07-08 +Resort Hotel,0,5,2017,November,46,12,2,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,27.58,1,1,Check-Out,Alexander Floyd,kenneth43@example.org,453.359.4645x7526,2261527519442034,2024-07-09 +Resort Hotel,0,117,2017,March,12,19,2,5,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,E,E,2,No Deposit,194.0,179.0,0,Transient-Party,118.85,0,0,Check-Out,Brittany Cisneros,brittanyparker@example.net,001-533-287-9602x04155,3586056525188189,2026-01-07 +City Hotel,0,409,2017,January,4,23,2,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.2,0,0,Check-Out,Mark Morrison,ffox@example.net,391-464-6312,180044630806131,2026-02-25 +Resort Hotel,1,30,2017,February,7,11,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,220.54,0,1,Canceled,Sharon Baird,natalie04@example.com,+1-433-710-9069,2274388536964004,2025-04-07 +Resort Hotel,0,0,2017,January,3,19,1,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,86.85,0,2,Check-Out,James Ferguson,oanderson@example.net,224-290-9218,3579932823371678,2026-03-24 +City Hotel,1,314,2017,January,4,22,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,83.35,0,0,Canceled,Brian Hudson,nball@example.com,+1-909-413-2531x12904,3596110852433946,2026-02-21 +City Hotel,1,6,2017,May,19,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Refundable,22.0,179.0,0,Contract,162.09,0,2,Canceled,Steven Davis,kristinmccormick@example.net,001-570-203-1851x32505,6567827987234026,2024-09-04 +Resort Hotel,0,0,2017,August,35,30,1,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,46.22,0,1,Check-Out,Juan Johnson,dorisphillips@example.net,446.658.5550,2259444376787390,2025-12-23 +City Hotel,1,148,2017,March,13,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,139.7,0,0,Canceled,Katherine Lopez,ortizcourtney@example.net,660.241.1037,675942581157,2024-10-19 +City Hotel,0,167,2017,November,48,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.29,0,1,Check-Out,Victor Campbell,johnsoncandace@example.com,+1-860-604-5126,6528079286854538,2026-01-15 +City Hotel,0,82,2017,August,35,30,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,120.1,0,1,Check-Out,Matthew Jones,kelly29@example.net,+1-778-644-3761x092,213140751382174,2025-12-20 +City Hotel,1,18,2017,August,34,22,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,A,0,No Deposit,11.0,179.0,0,Transient,164.82,0,0,Canceled,Joseph Jackson,bethwright@example.com,352-787-9148x8134,4639728604254679,2025-04-18 +City Hotel,1,147,2017,March,13,28,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,235.61,0,0,Canceled,Jennifer Moore,david28@example.org,891.992.9126x8471,676292029904,2025-09-25 +Resort Hotel,0,148,2017,April,17,24,2,10,2,1.0,0,FB,GBR,Direct,Direct,0,0,0,A,H,2,No Deposit,17.0,179.0,0,Transient,141.97,1,0,Check-Out,Joshua Mendoza,wkelly@example.net,410-307-9851,2464851997635488,2025-11-18 +City Hotel,0,207,2017,February,6,4,1,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.96,0,1,Check-Out,Troy Glenn,dmontes@example.org,+1-904-339-9692,4284600846540708506,2024-12-24 +City Hotel,0,57,2017,April,16,18,0,4,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,225.7,0,2,Check-Out,Daniel Reynolds,zachary10@example.com,569.734.3175x230,30209910910745,2025-12-07 +City Hotel,0,49,2017,June,23,8,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,140.8,0,1,Check-Out,Karen Munoz,terrence99@example.org,+1-526-602-4869x66357,639038351412,2025-07-30 +City Hotel,1,68,2017,November,47,19,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,61.73,0,0,Canceled,Laurie Shaw,katie84@example.org,001-562-532-1682x41975,3598321984921348,2025-02-19 +Resort Hotel,1,156,2017,April,16,17,3,5,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,148.92,0,0,Canceled,Desiree Smith,erika56@example.com,(584)709-3942,5552194198921910,2024-11-25 +City Hotel,0,196,2017,January,2,13,1,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,116.46,0,3,Check-Out,Austin Ross,curtisvictoria@example.org,3338365641,30352527480775,2024-03-27 +Resort Hotel,0,144,2017,April,16,19,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient,107.18,1,1,Check-Out,Kelly Kent,james44@example.org,(830)392-7078,4964762529835,2025-07-14 +Resort Hotel,0,156,2017,September,37,10,2,4,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient-Party,82.44,1,1,Check-Out,Julia Johnston,gholt@example.org,2088729242,376936052546836,2025-02-10 +City Hotel,0,12,2017,December,49,7,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,96.53,0,1,Check-Out,Donna Ibarra,ncastaneda@example.org,496.777.3923,4985873014805,2024-04-28 +Resort Hotel,1,252,2017,March,10,5,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,2,No Deposit,245.0,179.0,0,Transient,194.37,0,3,Canceled,Michael Dawson,brittanybishop@example.com,612-568-3317,503827645246,2025-02-19 +Resort Hotel,0,43,2017,December,50,9,1,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,132.01,0,0,Check-Out,Louis Patrick,marcuscole@example.net,7173199106,4612922676957795,2025-06-28 +City Hotel,1,144,2017,February,9,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,102.12,0,0,Canceled,David Yoder,melody90@example.net,001-474-958-0997x4164,213195537753981,2024-07-10 +Resort Hotel,0,29,2017,April,18,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,241.0,179.0,0,Transient,65.37,1,1,Check-Out,Judith Bartlett,sclark@example.net,405.859.3194,4559581179022500,2026-02-11 +Resort Hotel,0,155,2017,November,46,13,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,13.0,222.0,0,Transient-Party,82.0,0,0,Check-Out,Keith Long,moorefrank@example.net,9217812995,4764733342825,2025-03-22 +Resort Hotel,1,15,2017,September,36,3,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,125.17,0,1,Check-Out,Cynthia Harrell,bauerian@example.com,+1-990-501-6780,4061272491454248915,2024-08-21 +City Hotel,1,36,2017,January,2,3,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.56,0,0,Canceled,Mark Carter,codykeller@example.org,+1-256-323-8127x784,4512457938190639,2025-12-25 +City Hotel,0,152,2017,January,3,18,1,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,79.05,1,0,Check-Out,Melissa Bowen,jonathan78@example.net,(888)897-2748x5613,4135686408747919,2024-12-17 +Resort Hotel,0,2,2017,July,28,13,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,108.2,0,2,Check-Out,Johnny Riddle,katrinareid@example.com,(962)887-3448,180050764760895,2024-08-17 +Resort Hotel,0,161,2017,January,5,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,3,Refundable,15.0,222.0,0,Transient-Party,40.71,0,0,Check-Out,Whitney Jones,freemanmitchell@example.org,(919)782-1121,4144428478073796,2024-12-31 +City Hotel,1,14,2017,July,29,15,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.3,0,0,Canceled,Randall Nguyen,xjohnson@example.net,001-401-626-0253,30378769959739,2024-10-18 +Resort Hotel,0,246,2017,February,7,15,3,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,145.14,0,1,Check-Out,David Hunter,littlesarah@example.com,+1-240-459-9147,630488852306,2024-06-28 +City Hotel,0,44,2017,May,22,28,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,B,1,No Deposit,14.0,179.0,0,Transient-Party,169.48,0,0,Check-Out,Benjamin Neal,jacobsullivan@example.com,001-565-706-4823x7961,6011236943690598,2025-12-25 +City Hotel,1,413,2017,January,4,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,140.49,0,0,Canceled,Jane Reese,davidcook@example.org,882.861.8329x4111,377291567424973,2025-12-18 +City Hotel,1,13,2017,August,34,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,60,Transient,123.31,0,0,Canceled,Jennifer Smith,rosariotyler@example.net,(698)290-9495x1680,3557981442079713,2025-03-20 +City Hotel,0,48,2017,July,27,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,89.49,0,2,Check-Out,Thomas Murphy,scotttravis@example.com,(609)722-7728x663,4951586103723,2024-05-21 +Resort Hotel,1,143,2017,January,2,5,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,Refundable,12.0,222.0,0,Transient-Party,71.75,0,0,Canceled,Kari Jones,scottmiddleton@example.com,+1-630-604-7031x9416,6557845763681014,2025-11-14 +Resort Hotel,1,275,2017,August,32,10,2,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,45.81,0,0,Canceled,Dana Dodson,kalvarado@example.net,633-758-4246x708,30285606496066,2026-01-01 +City Hotel,1,23,2017,April,15,10,1,4,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.19,0,1,Canceled,Robert Skinner,christinehowell@example.org,8433737125,3572245179113314,2026-03-19 +City Hotel,0,160,2017,April,17,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,53.35,0,1,Check-Out,Albert Garcia,gknight@example.net,404-674-8531,502049513109,2024-11-17 +Resort Hotel,1,148,2017,March,11,15,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,254.0,179.0,0,Contract,62.38,0,0,Canceled,Joseph Myers,michael41@example.net,001-567-401-7881x354,373780157104122,2024-09-17 +Resort Hotel,0,176,2017,April,18,30,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,177.0,179.0,0,Transient,243.73,0,0,Check-Out,Phillip Byrd,tinarocha@example.com,981-726-4150,180038702664998,2024-11-15 +Resort Hotel,0,40,2017,November,48,29,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Group,51.57,0,1,Check-Out,Hunter Robinson,alisonross@example.org,(675)476-9120x13583,38147494336584,2024-12-21 +Resort Hotel,0,26,2017,November,47,22,1,3,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,E,1,No Deposit,18.0,179.0,75,Transient-Party,77.2,1,3,Check-Out,Michael Robinson,garcialinda@example.com,(798)426-9619,4765974834206,2025-10-12 +Resort Hotel,1,42,2017,August,31,3,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,74.43,0,0,Canceled,Sara Cain,stewartjennifer@example.com,945-487-2813x62276,4373944213183437,2025-04-04 +City Hotel,1,295,2017,March,9,3,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,209.31,0,0,Canceled,Michelle Prince,timothycampbell@example.net,890.454.1331x794,4871654134730751795,2025-03-12 +City Hotel,0,0,2017,October,43,21,1,2,3,1.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,154.79,0,0,Check-Out,Eric Williams,xrosario@example.net,283.963.6905,4050298991191694,2024-07-15 +City Hotel,0,15,2017,November,47,23,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.67,0,0,Check-Out,Raymond Wang,jessica33@example.org,614.841.2047,2221864575302847,2025-09-08 +City Hotel,0,393,2017,April,14,2,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.95,1,2,Check-Out,Jade Allen,xandrews@example.org,395.824.6632,378427961064960,2024-11-06 +City Hotel,0,10,2017,February,9,25,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,86.75,0,1,Check-Out,Javier Hays,mcguirejason@example.com,7383080736,30043569365335,2024-06-07 +Resort Hotel,1,108,2017,September,36,3,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,50.34,0,0,Canceled,Corey Caldwell,yrivera@example.org,733-227-4497,6578841561980083,2025-12-12 +City Hotel,1,34,2017,June,25,18,2,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,34.0,179.0,63,Transient,104.29,0,0,Canceled,Stephen Robles,dcurry@example.com,948-221-8809,371184938272005,2025-11-25 +City Hotel,1,147,2017,November,45,8,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,123.38,0,0,Canceled,Carol Jackson,crystal21@example.org,+1-414-837-3574x0012,4821012245627388749,2025-12-18 +Resort Hotel,1,94,2017,December,48,2,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,70.25,0,1,Canceled,Brian Murphy,hartmangeorge@example.net,230.401.9298,2272925910300313,2025-05-16 +Resort Hotel,1,190,2017,January,2,1,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Transient,128.64,0,0,Canceled,Chelsey Clark,nparker@example.net,+1-782-800-5508,4438403526409917,2025-10-15 +City Hotel,0,82,2017,December,51,19,2,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Contract,225.87,0,2,Check-Out,Teresa Martinez,pamela87@example.org,+1-418-475-9462x613,36466750996374,2025-07-29 +City Hotel,0,14,2017,June,23,4,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,0,Transient-Party,90.72,0,0,Check-Out,Howard Thompson,belldana@example.com,468-328-0816,372977293192919,2024-07-11 +Resort Hotel,0,25,2017,April,18,27,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Contract,130.44,1,1,Check-Out,Eugene Price,williampearson@example.net,630.602.7134x6253,213151734437787,2024-05-28 +Resort Hotel,0,52,2017,June,22,3,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,307.0,179.0,0,Transient-Party,94.06,0,0,Check-Out,Austin Briggs,nlee@example.net,466.852.0410,675917459561,2025-05-14 +Resort Hotel,0,76,2017,March,11,15,1,6,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,G,1,No Deposit,242.0,179.0,0,Transient,213.91,1,0,Check-Out,Jackie Jones,riverajason@example.com,503.530.7695x00872,30575163898385,2024-05-06 +City Hotel,1,409,2017,May,19,13,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Contract,106.35,0,0,Canceled,Eric George,nandersen@example.org,001-495-417-8801x431,341011831319210,2025-03-21 +City Hotel,0,17,2017,October,41,9,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.66,0,1,Check-Out,Mrs. Kimberly Mooney,rschultz@example.org,(488)719-8264,2603891572221041,2025-02-21 +City Hotel,0,0,2017,August,31,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,1,No Deposit,14.0,78.0,0,Transient,51.81,1,2,Check-Out,Carolyn Haley,ymitchell@example.com,726.824.4863x98771,4695918234157,2024-08-28 +City Hotel,0,212,2017,April,14,4,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,F,1,No Deposit,14.0,179.0,0,Transient,230.24,0,0,Check-Out,Vicki Horton,haroldbartlett@example.net,410-601-8035x67215,36489314087480,2025-09-18 +City Hotel,1,199,2017,May,20,13,2,0,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,0.18,0,0,Canceled,Valerie Benson,fstewart@example.org,8933835275,379853170234640,2024-09-30 +Resort Hotel,0,2,2017,May,19,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,50.15,0,0,Check-Out,Mark Henson,frank43@example.net,613.397.9672x770,4296177030910476,2025-05-08 +City Hotel,0,19,2017,December,50,12,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,120.15,0,0,Check-Out,Samuel Olson,qanderson@example.org,(556)724-8781,6011877111867284,2025-02-25 +City Hotel,0,13,2017,March,11,15,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,113.54,0,1,Check-Out,Lee Richards,mnguyen@example.org,001-572-356-3700x82512,4504491997625200068,2024-06-30 +City Hotel,0,92,2017,December,50,12,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.85,1,1,Check-Out,Martin Hall,collinsdebra@example.com,001-996-926-3365x3847,4893477961692086,2025-04-28 +City Hotel,0,54,2017,November,47,23,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.53,0,0,Check-Out,Virginia Hall,lisa19@example.net,836.823.4252,36572254596709,2025-07-29 +City Hotel,1,85,2017,October,43,26,0,2,2,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,50.18,0,1,Canceled,Stephanie Parker,ukeller@example.net,001-406-647-5325x5738,4289966511647238,2024-05-19 +City Hotel,0,21,2017,November,45,4,1,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,1,No Deposit,13.0,179.0,0,Transient,1.57,0,3,Check-Out,Nicole Harvey,qthompson@example.net,7797365289,581742822199,2025-08-18 +Resort Hotel,0,58,2017,December,49,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,249.0,0,Transient-Party,125.87,0,0,Check-Out,James Phillips,angelasmith@example.net,2598206337,38188878179661,2026-01-14 +City Hotel,0,3,2017,April,15,15,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,154.0,179.0,0,Group,62.7,0,1,Check-Out,Dan Johnson,katiegriffin@example.net,+1-979-510-4285x5798,3505727140007131,2025-05-04 +City Hotel,1,165,2017,March,12,20,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.13,0,0,Canceled,Linda Bautista,anthonyshannon@example.org,001-521-762-8230x880,4002180243505,2025-10-04 +Resort Hotel,0,1,2017,December,52,25,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,131.91,0,0,Check-Out,Erin Ramirez,arice@example.net,(898)687-1421x923,501858815688,2026-01-18 +City Hotel,0,10,2017,February,9,28,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,136.36,0,1,Check-Out,Paige Meyer,rbrown@example.org,(666)504-5894x5328,4317618405221606,2025-02-26 +Resort Hotel,1,48,2017,May,22,28,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,50.45,0,2,Canceled,Maria Roberts,michaellucas@example.org,(978)284-7154x159,370046331744594,2024-04-30 +City Hotel,1,418,2017,March,11,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.97,0,0,Canceled,Ryan Rivera,pacechristopher@example.net,+1-754-813-4530x4533,3540171706654225,2024-06-04 +City Hotel,1,274,2017,June,23,4,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,43,Transient-Party,95.42,0,0,Canceled,Joshua Knox,bchavez@example.com,(857)426-2562x65859,3517827395869346,2024-05-19 +City Hotel,1,21,2017,December,49,9,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.56,0,1,No-Show,Danielle Mcdaniel,beth44@example.net,+1-656-708-1085x78800,180096244386330,2024-07-23 +Resort Hotel,0,151,2017,December,51,22,2,5,2,1.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,373.0,179.0,0,Transient,95.45,0,3,Check-Out,Lisa James,robert19@example.com,001-888-393-4199,4425170066399486,2025-04-17 +Resort Hotel,0,118,2017,January,4,20,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,76.96,1,0,Canceled,Jeremy Smith,rchandler@example.com,464.643.2907x658,4431824556320863,2024-07-15 +City Hotel,0,4,2017,June,23,9,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,239.72,0,1,Check-Out,Andrea Lee,schmittjennifer@example.org,001-748-298-7749x854,4570484099815,2026-02-08 +City Hotel,1,424,2017,May,20,18,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,101.54,0,1,Check-Out,Brenda Harris,jimmy01@example.org,(478)614-4649x4599,4991800271372081286,2025-09-26 +City Hotel,0,3,2017,August,35,29,1,1,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,0.94,0,0,Check-Out,Kevin Guerra,philipwatson@example.com,+1-659-510-6153,4801724481052395,2024-08-19 +City Hotel,0,143,2017,November,47,25,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,139.85,0,1,Check-Out,Cynthia Miller,dbenson@example.com,266.971.2881,4792085162095,2026-01-14 +City Hotel,0,100,2017,October,40,5,1,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,71.69,0,1,Check-Out,Emily Griffith,xrichard@example.com,001-910-684-8241,4182232398399370741,2024-08-15 +Resort Hotel,0,0,2017,July,29,21,0,5,1,0.0,0,Undefined,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,200.0,72.0,0,Transient,44.04,0,0,Check-Out,Christopher Wright,julie32@example.net,(752)525-6629x5230,4663907851815577,2025-12-05 +City Hotel,1,220,2017,June,25,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,103.83,0,0,Canceled,Jerome Reid,tcastillo@example.org,4517327087,3544799893399679,2025-07-13 +City Hotel,0,89,2017,March,9,2,2,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,127.01,0,1,Check-Out,Richard Miller,morganryan@example.com,+1-446-762-2308x86158,4412628385794344,2024-07-25 +City Hotel,0,0,2017,April,14,5,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,197.77,0,0,Check-Out,Jennifer Jackson,sparkslaurie@example.org,9717333959,3513498134105360,2025-03-19 +Resort Hotel,0,20,2017,November,47,24,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,F,0,No Deposit,244.0,179.0,0,Transient,83.68,1,2,Check-Out,Jonathan Moss,johnsalazar@example.com,(335)679-6593,213143509474608,2025-10-31 +Resort Hotel,0,175,2017,April,16,14,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,239.0,179.0,0,Transient,252.0,0,3,Check-Out,Sally Leon,lhodges@example.org,+1-817-207-7574x093,30303389445547,2026-01-26 +City Hotel,0,89,2017,May,20,15,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,82.0,179.0,0,Contract,116.04,0,3,Check-Out,James Dickerson,jacqueline06@example.org,(442)701-1970,4760316922286262760,2024-09-17 +Resort Hotel,0,13,2017,November,47,25,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,234.0,179.0,0,Transient,97.59,0,1,Check-Out,Tammy Larson,vsampson@example.org,001-762-936-4063x86360,4490695763565406396,2024-04-23 +City Hotel,0,19,2017,July,30,24,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,B,0,No Deposit,14.0,246.0,0,Transient,53.04,0,0,Check-Out,Nicholas Scott,yrobinson@example.org,370-376-7031x0051,4610858977416572,2025-05-09 +City Hotel,0,7,2017,October,41,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient,125.99,0,1,Check-Out,Jesse Brooks,james42@example.net,+1-527-776-1386x72938,3599507442722976,2025-06-25 +City Hotel,1,102,2017,January,3,18,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,91.39,0,0,Canceled,Andrea Taylor,tapiajenna@example.org,+1-765-758-1284,3573100041526053,2025-01-26 +Resort Hotel,1,2,2017,August,35,30,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,244.0,179.0,0,Transient,63.25,0,0,Canceled,Christopher Lopez,mhernandez@example.org,9565353067,4115822961340,2024-11-05 +City Hotel,1,10,2017,September,39,23,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.05,0,1,Canceled,Jonathan Swanson,drodriguez@example.com,+1-641-810-7342,4823526051240050,2026-03-01 +City Hotel,1,358,2017,February,6,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,99.68,0,0,Canceled,Timothy Bentley DVM,garrisonbrent@example.com,001-741-417-1393x86308,6567661093866763,2024-05-28 +Resort Hotel,0,8,2017,August,35,29,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,316.0,179.0,0,Transient-Party,49.02,0,1,Check-Out,John Davidson,sandersbrian@example.com,001-859-329-8281x2281,4736484639179570,2025-08-22 +Resort Hotel,1,137,2017,February,9,26,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Jennifer Williams,kbrown@example.org,+1-982-733-2941x94600,4994990442723732,2024-04-01 +Resort Hotel,0,13,2017,March,12,16,3,5,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Group,108.42,1,1,Check-Out,Janice Cunningham,david79@example.net,381-357-7504,4422857396909,2024-05-01 +Resort Hotel,0,22,2017,June,23,8,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,62.0,0,Transient,43.79,0,0,Check-Out,Jeffrey Scott,bramos@example.net,+1-405-507-8312x692,347693480472236,2025-07-30 +City Hotel,0,2,2017,August,32,6,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,G,0,No Deposit,13.0,179.0,0,Transient,90.66,0,3,Check-Out,Miranda Hicks,daltonjohnston@example.com,001-566-387-2936,4497324464218698,2025-04-02 +City Hotel,0,62,2017,May,21,21,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,78.79,0,0,Check-Out,Michael Horton DDS,kramos@example.net,001-278-268-0888x8239,4895948612254433,2024-06-26 +City Hotel,0,14,2017,April,14,5,2,2,3,1.0,0,BB,ITA,Direct,Direct,0,0,0,C,A,1,No Deposit,11.0,179.0,0,Transient,162.78,0,3,Check-Out,Nancy Allen,jnunez@example.com,(522)938-9241x256,180081094209246,2025-01-01 +City Hotel,1,311,2017,August,31,5,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,65,Transient,64.29,0,0,Canceled,Robert Mccoy,christina12@example.org,976-526-6184x070,4424245937330059,2026-01-09 +Resort Hotel,1,31,2017,January,3,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,258.0,179.0,0,Transient-Party,74.84,0,0,Canceled,Melissa Brewer,andrewcaldwell@example.com,211.261.7413x527,6011715506538419,2025-02-26 +City Hotel,0,0,2017,November,44,4,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,102.3,0,1,Check-Out,Jesus Becker,jennifer79@example.net,578.603.2409x71628,4336002132490,2026-01-30 +City Hotel,0,22,2017,June,25,23,2,3,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.32,0,0,Check-Out,Lance Lynn,jonathanrobinson@example.com,854.280.0291x4672,377867881220229,2024-05-18 +City Hotel,0,36,2017,January,2,10,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,236.0,179.0,0,Transient,131.85,0,1,Check-Out,Alexandria Wise,vandersen@example.com,+1-486-501-6072,30136918103439,2025-10-04 +City Hotel,1,309,2017,June,24,17,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,63.24,0,0,Canceled,Sydney Sanders,cdavies@example.com,297.208.9520x98114,4727676776922800,2026-02-19 +Resort Hotel,0,20,2017,March,10,2,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,186.73,0,2,Check-Out,Stephanie Stone,sheilayoung@example.org,987-810-9126,676159514725,2024-09-25 +City Hotel,0,0,2017,August,34,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,E,0,No Deposit,13.0,45.0,0,Transient,51.48,0,0,Check-Out,Jay Gallegos,ubrown@example.com,581-382-8310,4152324623959782,2024-07-24 +City Hotel,0,50,2017,March,13,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,138.85,0,1,Check-Out,Eric Ponce,lolsen@example.com,001-639-381-0357,4397154852806,2024-04-17 +City Hotel,0,1,2017,April,17,28,2,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,238.14,1,0,Check-Out,Janet Parker,wilsonvirginia@example.org,(531)257-7073,4028681655334058652,2025-06-01 +Resort Hotel,0,39,2017,August,31,4,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,85.62,0,0,Check-Out,Shawn Luna,jchavez@example.net,392-287-2913,4188610549518172868,2025-07-16 +Resort Hotel,1,0,2017,October,42,18,1,0,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,183.0,179.0,0,Transient,32.94,0,0,No-Show,Mark Frank,jonesmark@example.com,816.530.9840,343273199841387,2024-09-19 +Resort Hotel,1,21,2017,August,34,19,1,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,58.38,0,1,No-Show,Charles Goodman,hillamanda@example.net,8935645885,3536577029684416,2024-10-23 +City Hotel,1,346,2017,January,3,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,129.97,0,0,Canceled,Jennifer Parker,staceygoodwin@example.com,540-378-8586x189,4442565386743785,2024-07-25 +City Hotel,0,148,2017,November,46,11,0,3,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,126.22,0,2,Check-Out,Dr. April Jones,sharon13@example.com,001-529-231-9826,4672095064957490,2024-11-16 +Resort Hotel,0,132,2017,June,23,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,29.0,179.0,75,Transient-Party,78.37,0,1,Check-Out,Kelly Pena,fishermark@example.net,859.394.0123,340770357206751,2024-11-18 +City Hotel,1,222,2017,November,45,8,1,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,39,Transient,85.52,0,0,Canceled,Carolyn Brooks,elizabeth23@example.net,(360)733-3979x05886,6011661656351346,2025-08-11 +City Hotel,0,179,2017,January,4,24,1,0,1,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,127.37,0,0,Check-Out,Christina White,brooksashley@example.net,(653)612-3415x77501,676139698945,2025-06-25 +City Hotel,1,49,2017,June,25,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,182.0,331.0,0,Transient,105.97,0,0,Canceled,Joanne Olsen,taylorryan@example.org,469-593-0771,379816711461725,2025-12-03 +Resort Hotel,0,7,2017,April,17,27,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,228.27,1,1,Check-Out,Anthony White,maciasmaria@example.org,(612)975-0924,5162088309718706,2026-03-21 +City Hotel,1,370,2017,January,5,31,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,64.22,0,0,Canceled,Deanna Barrera,daniel13@example.com,+1-237-722-7701x5590,4778005535742,2025-02-23 +Resort Hotel,0,0,2017,September,35,1,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,52.17,1,2,Check-Out,Mark Weber,johnsonraven@example.net,976.913.0816,630459277608,2025-07-07 +City Hotel,1,104,2017,February,5,2,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,117.34,0,0,Canceled,Carol Carter,torresjessica@example.com,+1-420-880-9649x27167,3512424324791786,2024-04-05 +City Hotel,0,10,2017,July,29,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,86.28,0,0,Check-Out,Donald Peterson,brian58@example.org,001-513-660-9539,6011129662646653,2024-11-15 +Resort Hotel,0,39,2017,June,22,2,2,5,2,2.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,195.15,0,3,Check-Out,Karen Chambers,corey39@example.com,+1-323-806-7946x733,675969066439,2024-09-13 +City Hotel,1,259,2017,February,7,15,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,240.0,179.0,0,Transient,142.68,0,0,Canceled,Antonio Walton,troycunningham@example.org,819.488.4661x3392,4550830809810,2025-08-01 +City Hotel,1,14,2017,January,4,24,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.99,0,1,Check-Out,Kevin Huerta,deangina@example.com,791.683.7895x26492,3572859521978487,2024-11-08 +Resort Hotel,0,53,2017,April,14,8,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,310.0,179.0,0,Transient,216.3,0,0,Check-Out,Joseph Smith,smithvincent@example.com,(925)424-1616x638,2700293197867625,2025-05-27 +City Hotel,0,151,2017,November,48,29,0,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,111.5,0,1,Check-Out,Victoria Juarez,davidsonmargaret@example.net,695.317.4518,4384558951921656363,2024-09-16 +City Hotel,0,37,2017,March,12,17,1,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,132.2,0,0,Check-Out,Kara Rogers,staffordmarissa@example.com,826.573.3441,4842907655610111,2025-02-25 +Resort Hotel,0,58,2017,May,19,10,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient-Party,110.7,0,1,Check-Out,Jacob Wu,pattersondanielle@example.net,989.326.5495x279,4953509144222,2024-03-31 +City Hotel,1,12,2017,March,9,1,2,1,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,3.62,0,1,Canceled,Dr. Teresa Ortega MD,edavis@example.com,+1-532-803-1331x03373,6535942522620982,2025-06-05 +Resort Hotel,0,12,2017,January,2,3,1,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,66.18,0,1,Check-Out,Henry Rivera,maryramirez@example.org,391-934-3169,36473509703044,2026-01-11 +Resort Hotel,0,25,2017,April,16,16,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,207.86,1,2,Check-Out,Jesus Hale,eoneal@example.org,239.388.3255,38964418470368,2024-06-08 +City Hotel,1,86,2017,July,31,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,75,Transient,104.84,0,0,Canceled,Stacy Taylor,petersonapril@example.com,485-728-7763,30388680987305,2025-04-12 +Resort Hotel,0,13,2017,June,23,9,0,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,134.93,0,3,Check-Out,Sheila Ramirez,joshuagregory@example.com,807.676.0132,371112525789735,2025-10-11 +City Hotel,1,162,2017,March,9,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient,111.97,0,0,Canceled,Robin Richardson,rwashington@example.net,811.949.0604,373873681972450,2024-11-28 +Resort Hotel,1,16,2017,July,27,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,237.0,179.0,0,Transient,113.92,0,2,Canceled,Mary Alvarez,jacqueline24@example.org,+1-732-336-7053x610,213136425198970,2025-10-15 +Resort Hotel,1,89,2017,January,2,2,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,249.83,0,0,Canceled,Cole Andersen,halljames@example.com,+1-351-634-9072x8255,2711745432940993,2025-06-15 +City Hotel,0,55,2017,November,47,22,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Group,108.43,0,1,Check-Out,Robin Smith,francisapril@example.com,(590)361-5339x9613,3575745049238768,2025-12-15 +City Hotel,0,369,2017,July,27,1,0,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,61,Transient-Party,86.35,0,0,Check-Out,Angel Aguirre,westbridget@example.net,525.533.9719x022,213148548706274,2025-07-11 +City Hotel,0,270,2017,March,10,5,2,3,2,1.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.58,0,1,Check-Out,Jeremy Lawson,jthompson@example.net,548.246.0060,180036636369387,2026-03-07 +Resort Hotel,1,3,2017,March,10,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,52.44,0,1,Canceled,Lonnie Miller,cheryl76@example.com,4869386499,3535924973075095,2024-09-06 +City Hotel,1,1,2017,March,12,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,9.0,67.0,0,Contract,65.47,0,2,Canceled,Timothy Galvan,bishopbrittany@example.com,+1-324-628-9818x560,341647472752456,2025-02-26 +City Hotel,1,161,2017,December,52,25,2,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,113.69,0,0,Canceled,Dr. Susan Navarro,howardcox@example.net,520-269-2565x291,4985757024102,2025-02-21 +City Hotel,0,19,2017,May,18,5,1,2,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,71.54,0,0,Check-Out,Cory Thomas,millerderek@example.com,(267)651-4726x789,373206253909156,2024-07-19 +City Hotel,0,94,2017,November,46,18,1,3,2,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,27.0,179.0,0,Transient,213.63,0,0,Check-Out,Laura Vincent,jasonrandolph@example.org,222-509-7688x481,213175848273838,2025-09-24 +City Hotel,0,2,2017,March,13,26,2,1,2,2.0,0,BB,FRA,Direct,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,135.1,0,0,Check-Out,Bethany Robles,scottwalton@example.net,817.618.0351,344843082085604,2025-10-19 +City Hotel,0,0,2017,October,44,28,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,38.58,0,0,Check-Out,Michael Dunn,ubrown@example.net,(946)553-3991x603,4785092250074911,2024-08-31 +City Hotel,0,18,2017,June,24,13,0,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,81.52,0,1,Check-Out,Carol Griffin,melissa26@example.net,001-910-925-1173x537,4844635649487290,2025-10-28 +City Hotel,1,58,2017,April,15,8,0,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,165.7,0,1,Canceled,Matthew Allen,jimmyhopkins@example.com,001-712-749-2085x554,4186750938337,2025-09-02 +Resort Hotel,1,49,2017,October,42,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,63.27,0,0,Canceled,Paul Keller,joseph44@example.net,5419810754,38559602534928,2025-07-25 +City Hotel,0,13,2017,April,14,5,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,88.88,0,3,Check-Out,Jeffrey Baldwin,christophermills@example.org,001-209-283-7832x198,2253921239968289,2025-06-08 +Resort Hotel,0,2,2017,February,7,14,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,B,0,No Deposit,13.0,179.0,0,Group,134.31,1,1,Check-Out,Timothy Orr,martinezdeborah@example.com,+1-537-438-0338x371,580210424405,2025-03-09 +City Hotel,0,23,2017,July,28,14,1,1,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,111.15,0,2,Check-Out,Connie Scott,rsullivan@example.org,290.233.2253x0491,6532805996310989,2024-09-07 +City Hotel,0,55,2017,December,52,23,0,1,1,0.0,0,BB,ESP,Corporate,Direct,0,0,0,A,A,2,No Deposit,13.0,221.0,0,Transient,117.69,1,0,Check-Out,Steven Martinez,molly13@example.net,+1-891-245-8230,4018671297144503,2025-07-28 +City Hotel,1,44,2017,July,27,4,2,1,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,129.56,0,1,Canceled,Joseph Swanson,toni32@example.org,(342)477-2594x7214,3503109770314859,2025-10-26 +City Hotel,0,104,2017,December,49,8,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,3,No Deposit,77.0,179.0,0,Transient,159.52,0,0,Check-Out,Michael Wiggins,gward@example.org,001-270-422-9572x86559,213119422205980,2025-11-28 +Resort Hotel,0,157,2017,February,8,19,3,7,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,371.0,179.0,75,Transient,139.06,0,1,Check-Out,Pamela Burke,dallen@example.com,367.916.8580x848,30265637935365,2024-10-19 +City Hotel,0,26,2017,April,16,16,1,2,1,0.0,0,BB,,Online TA,TA/TO,1,0,1,A,I,2,No Deposit,6.0,179.0,0,Transient,4.71,0,1,Check-Out,Jamie Love,lisahernandez@example.net,(386)645-5188,3565577070482474,2024-05-20 +Resort Hotel,0,17,2017,December,49,4,0,2,2,0.0,0,HB,,Groups,Direct,0,0,0,A,C,1,No Deposit,11.0,179.0,0,Transient-Party,62.67,1,1,Check-Out,Jane May,dylanyoung@example.net,+1-931-533-2829x11710,4008637139707098,2024-08-20 +City Hotel,0,48,2017,May,21,25,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,129.06,0,0,Check-Out,Savannah Stokes,codyharris@example.com,3559541398,213154029264486,2024-11-29 +City Hotel,1,35,2017,April,17,27,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,77.11,0,0,Canceled,Brian Miller,bmoody@example.com,646-442-1397,3592148873864974,2025-08-22 +Resort Hotel,0,95,2017,January,2,7,2,6,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,197.57,0,1,Check-Out,Patrick Pineda,amartin@example.com,558-588-2270x734,676390540711,2024-11-22 +Resort Hotel,1,154,2017,May,20,13,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,77.94,0,1,Canceled,Audrey Richardson,oliviabrooks@example.org,(972)822-0390,213182326668430,2026-01-07 +City Hotel,0,0,2017,January,2,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.62,0,1,Check-Out,Tiffany Ray,sfletcher@example.com,+1-572-754-4917x92280,30428214144351,2024-10-13 +City Hotel,0,21,2017,April,16,20,1,0,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.62,0,0,Check-Out,Antonio Nichols,jennifer04@example.net,001-814-358-6247x5740,38408471929621,2025-03-08 +Resort Hotel,1,92,2017,April,15,11,1,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,116.08,0,1,Canceled,Veronica Flores,christiecarter@example.com,(286)927-7564x34682,589154108189,2025-05-10 +Resort Hotel,0,19,2017,September,36,6,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,44.21,1,2,Check-Out,Michael Hogan,aprillopez@example.net,001-825-210-4346x8456,5380987525394802,2024-05-15 +City Hotel,0,9,2017,October,41,7,0,2,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.84,0,1,Check-Out,Lindsay Walker,adrienne29@example.org,+1-204-227-4998x61337,6546344208275420,2024-11-18 +City Hotel,0,279,2017,January,4,25,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,125.0,179.0,0,Transient,106.12,0,1,Check-Out,Joshua Murray,bjohnson@example.org,404-250-6736x324,5495493167302437,2024-08-17 +Resort Hotel,0,86,2017,September,38,19,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,134.0,179.0,0,Group,38.12,0,0,Check-Out,Tommy Hood,misty73@example.com,366.871.4820,4828735069027491585,2024-09-09 +City Hotel,0,12,2017,June,23,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Group,163.9,0,1,Check-Out,Mr. Kyle Thomas DDS,millsmichael@example.net,+1-557-662-8577x7381,4590907425673328,2024-09-08 +City Hotel,0,33,2017,June,26,27,1,0,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,155.73,0,2,Check-Out,Michele George,margarettaylor@example.org,364-527-1657,213195526162558,2026-02-21 +City Hotel,1,12,2017,April,16,17,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,115.92,0,2,Canceled,William Martinez,sharonbeck@example.com,+1-528-344-3827x8596,2264060932154199,2025-06-10 +Resort Hotel,0,0,2017,May,20,13,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,327.0,179.0,0,Transient,46.56,0,0,Check-Out,Michelle Mendoza DVM,bbrooks@example.org,448.227.6810x1498,30395982008904,2025-02-02 +Resort Hotel,0,0,2017,June,23,8,1,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Transient,167.82,0,0,Check-Out,Michael Bennett DVM,woodmelissa@example.net,(725)307-8956,375554879170200,2024-07-14 +City Hotel,0,3,2017,September,36,3,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,49.62,0,2,Check-Out,Ronald Clark,xburgess@example.org,+1-751-666-3425,4748202547535,2025-01-08 +City Hotel,0,3,2017,February,8,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,139.49,0,1,Check-Out,Rita Graves,katie47@example.com,994.517.0528,6501809523030117,2025-04-12 +Resort Hotel,0,19,2017,April,18,28,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,237.0,179.0,0,Transient,232.38,0,0,Check-Out,Sean White,katherine88@example.net,001-501-346-8212x43209,4936055612719472653,2025-03-31 +City Hotel,0,389,2017,February,8,21,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.12,0,0,Check-Out,Mr. William Hopkins,flewis@example.org,001-473-488-0222x786,346819667016642,2024-08-16 +Resort Hotel,0,3,2017,August,34,20,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,2,No Deposit,15.0,253.0,0,Transient,81.3,0,0,Check-Out,Wendy Kelley,vanessahuerta@example.net,+1-723-600-3191x026,4833806198784,2026-02-05 +City Hotel,0,13,2017,April,16,13,1,5,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.82,0,1,Check-Out,Michael Mooney,bsmith@example.net,(914)467-6164,180066203195394,2024-10-21 +Resort Hotel,0,91,2017,February,8,22,1,2,2,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient-Party,127.12,1,0,Check-Out,Jeanne Rose,john28@example.net,+1-953-393-8426x400,3570579259106992,2026-02-26 +Resort Hotel,0,320,2017,June,24,11,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,53.89,0,1,Check-Out,Michael Lee,yatesjanet@example.net,242.507.5256x363,6011490571192258,2025-09-11 +Resort Hotel,0,50,2017,July,27,1,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,109.5,0,0,Check-Out,Jennifer Anderson,traceymelton@example.com,806-821-3099,371373068374398,2025-04-13 +City Hotel,0,23,2017,February,6,7,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,173.12,0,2,Check-Out,Lauren Trujillo,shawn53@example.net,(329)506-3470,2705676089103452,2025-08-07 +City Hotel,0,163,2017,March,11,12,2,5,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,87.37,0,1,Check-Out,Michelle Ellis,yconner@example.com,(235)927-7642x6493,3524888355199182,2024-07-06 +City Hotel,0,98,2017,March,9,4,2,4,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,72.97,0,2,Check-Out,Chad Dominguez,martin25@example.com,932-597-5335,2249218618160159,2025-04-18 +Resort Hotel,0,152,2017,April,14,4,2,5,2,0.0,0,FB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,141.06,1,0,Check-Out,Charles Robinson,sheilahernandez@example.net,+1-561-705-0844x06844,5452022846169700,2025-06-26 +City Hotel,0,85,2017,January,4,22,2,1,2,2.0,0,BB,BRA,Online TA,Direct,0,0,0,F,G,0,No Deposit,13.0,179.0,0,Transient,113.55,1,3,Check-Out,Nancy Smith,kristeningram@example.com,708-368-3858,342207329491698,2025-07-17 +City Hotel,1,136,2017,April,15,9,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,147.19,0,1,Canceled,Laura Gregory,lauren29@example.net,(799)706-5001,30002775951213,2025-09-09 +City Hotel,0,0,2017,February,7,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,170.0,179.0,0,Transient,1.92,0,1,Check-Out,Brittany Clements MD,hmartinez@example.org,+1-792-888-6609,6011760049131256,2026-01-13 +Resort Hotel,0,2,2017,April,14,4,1,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient-Party,197.53,0,0,Check-Out,Tammy Davis,rjones@example.com,(859)883-4995,4291372260372316993,2025-06-24 +Resort Hotel,0,4,2017,November,44,2,0,1,1,0.0,0,HB,NLD,Online TA,TA/TO,1,0,0,E,I,1,No Deposit,242.0,179.0,0,Transient,0.0,0,1,Check-Out,Catherine Williams,moonryan@example.net,(837)724-3805x80376,4566198562647759429,2025-03-13 +Resort Hotel,0,206,2017,April,18,30,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,252.0,1,1,Check-Out,Miss Leslie Booker,cassiebaker@example.org,+1-507-283-4348x3834,565073120075,2025-11-18 +City Hotel,1,314,2017,April,14,8,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,97.35,0,0,Canceled,Jennifer Johnson,beandiane@example.net,571.325.8454,4545068563105,2026-02-15 +Resort Hotel,1,146,2017,November,46,17,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,239.0,179.0,0,Transient,39.91,0,1,Canceled,John Watts,aprilhernandez@example.org,001-637-542-0282x81088,4683178177153830,2025-07-06 +City Hotel,1,101,2017,January,3,16,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.68,0,0,Canceled,Marissa Bennett,jamesterri@example.net,+1-332-213-2131,4047635809044969,2024-10-31 +Resort Hotel,0,160,2017,November,45,8,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,88.62,1,1,Check-Out,Rebecca Barrett,ssmith@example.org,+1-375-727-8962x8847,4120329451867360,2025-08-30 +City Hotel,1,135,2017,August,35,29,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,63,Transient,63.35,0,0,Canceled,Sharon Santos,shunter@example.com,496.385.9421x72608,3593133577467240,2024-11-03 +City Hotel,1,414,2017,May,20,19,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,99.76,0,0,Canceled,Matthew Richardson,christensenjohn@example.net,259.912.9231,630408926636,2025-10-29 +City Hotel,0,58,2017,August,31,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,85.0,179.0,0,Transient-Party,73.36,1,0,Check-Out,Bradley Burns,cynthiaward@example.net,946.569.5617x18232,3584029160340342,2025-02-12 +City Hotel,0,30,2017,November,45,7,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,1,A,A,2,No Deposit,9.0,179.0,0,Transient,42.76,0,1,Check-Out,Katrina Johnson,denise62@example.com,+1-982-579-7413,6011766497799999,2025-06-29 +City Hotel,0,19,2017,December,52,27,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.95,0,1,Check-Out,Laura Hill,parkspatrick@example.com,677-206-7561,3518366242738361,2024-11-15 +Resort Hotel,0,37,2017,January,3,19,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,152.0,179.0,0,Transient-Party,76.81,0,1,Check-Out,Rebecca White,taylorluis@example.net,585-784-5211x2944,4021657787943541,2024-12-13 +Resort Hotel,0,0,2017,November,45,7,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,0,No Deposit,11.0,179.0,0,Transient,50.35,0,0,Check-Out,Mr. Jeffrey Duncan,byrdsherry@example.net,200-862-1748x819,6588508609443436,2025-01-01 +City Hotel,0,38,2017,June,24,13,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.9,0,1,Check-Out,Arthur Stout,hfarmer@example.org,3768045650,4310999450124,2025-08-22 +City Hotel,0,0,2017,September,35,1,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,73.18,0,0,Check-Out,Cathy Hess,wilkersonadam@example.org,685.973.1968,36180426136345,2025-10-22 +City Hotel,0,1,2017,April,17,24,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,235.33,0,2,Check-Out,Justin Herrera,caitlin23@example.net,001-508-714-5082x378,3554786715602445,2026-02-14 +Resort Hotel,1,290,2017,April,15,9,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Contract,163.8,0,1,Canceled,Katherine Stone,xjohnson@example.com,001-326-935-3256x58993,4061013868086,2026-03-11 +City Hotel,1,50,2017,January,3,17,1,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.5,0,0,Canceled,Michelle Tyler,romeromatthew@example.net,809.201.9134,639034919089,2024-07-29 +Resort Hotel,0,25,2017,January,2,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,47.68,1,2,Check-Out,Paul Sheppard,jose43@example.com,8362915542,346844839088303,2024-12-09 +City Hotel,1,291,2017,March,14,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,126.3,0,0,Canceled,Catherine George,kimberlypittman@example.org,(567)561-5181,4191809364058359,2024-11-13 +Resort Hotel,1,268,2017,January,3,14,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,0,Transient,133.59,0,0,Canceled,Justin Mcbride,ttrevino@example.net,304-534-7465,349451395324234,2025-06-08 +City Hotel,1,2,2017,April,17,28,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,227.86,0,1,Canceled,Carl Harris,achaney@example.org,363-681-2886,501802706041,2026-02-16 +City Hotel,1,167,2017,February,7,11,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.82,0,0,Canceled,Justin York,kimberlyjones@example.net,001-780-692-4898,2280700408483685,2025-08-10 +City Hotel,1,140,2017,January,5,29,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.15,0,1,Canceled,William Hunter,suttonwilliam@example.com,(274)499-8947x388,4584440972353,2024-08-18 +City Hotel,0,42,2017,November,47,20,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,107.25,0,2,Check-Out,Joshua Henderson,williamphillips@example.org,(944)740-8699x197,2242569207607415,2025-05-22 +City Hotel,1,394,2017,May,21,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,63.24,0,0,Canceled,April Turner,wisetonya@example.net,(256)777-9420x490,3591289341383238,2024-08-24 +City Hotel,0,203,2017,March,12,20,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,102.18,0,2,Check-Out,Kelly Patton,xrivera@example.com,001-744-744-0565,4988752753134992,2025-05-15 +City Hotel,1,0,2017,April,15,7,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,2,No Deposit,19.0,331.0,0,Transient,5.58,0,0,Canceled,Jill Ray,gregory81@example.net,001-919-371-7182x31300,6574367073477784,2025-07-24 +Resort Hotel,0,132,2017,February,9,25,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,178.98,0,1,Check-Out,Kelly Andersen,jonesalicia@example.net,001-652-277-8702x2685,4608556339236498,2025-07-02 +City Hotel,0,101,2017,November,47,19,1,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient-Party,80.21,0,0,Check-Out,Joshua Clark,kramirez@example.net,(477)823-4890,4414994084486444,2025-02-13 +City Hotel,0,12,2017,November,47,22,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,85.16,0,0,Check-Out,Robert Young,reevesheather@example.org,+1-821-781-9892x40778,4336324410042434039,2025-03-03 +City Hotel,1,63,2017,August,34,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient-Party,81.88,0,0,No-Show,Elijah Wall,martineztamara@example.com,+1-938-363-6458x95496,4168850563680022,2024-11-22 +City Hotel,0,246,2017,March,11,14,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient-Party,102.0,0,0,Check-Out,Lindsey Robinson,aparker@example.org,(508)390-6472x4221,503878791741,2024-10-06 +Resort Hotel,0,39,2017,April,17,23,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,166.99,0,1,Check-Out,Carl Dean,andersonjason@example.org,001-655-309-0230x750,676381465175,2026-03-22 +Resort Hotel,1,100,2017,January,5,28,4,4,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,101.03,0,0,Canceled,David James,burnsdaniel@example.org,(584)826-0408x99753,4697890380664783,2024-12-10 +City Hotel,0,369,2017,January,3,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,95.4,0,0,Check-Out,Jennifer Miller,gregory32@example.com,(398)996-4322x490,38742999551602,2025-03-28 +City Hotel,1,17,2017,November,47,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,86.26,0,0,Canceled,Jeffery Neal,alicia81@example.org,001-236-235-4704,676206375013,2025-05-29 +City Hotel,1,162,2017,April,14,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,246.3,0,0,Canceled,Andrea Oconnor,cheryl20@example.com,(339)428-2382x66462,30350226796160,2025-08-08 +City Hotel,0,49,2017,March,11,11,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,211.64,0,3,Check-Out,Melissa Lee MD,andrewgreen@example.com,+1-499-844-5078x490,502064534345,2025-06-23 +City Hotel,1,1,2017,March,10,6,0,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.92,0,0,No-Show,Samantha Jacobs,david72@example.com,(491)576-1214x300,563647475521,2025-02-28 +City Hotel,0,39,2017,January,3,14,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,125.93,0,1,Check-Out,Christian Riddle,tranashley@example.org,001-706-668-6238x1277,639062163774,2024-09-25 +City Hotel,1,300,2017,July,27,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,75,Transient,78.85,0,0,Canceled,Alexander Munoz,jeffrey00@example.org,508.882.4141,180035115985598,2025-11-13 +City Hotel,1,415,2017,June,23,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,92.46,0,0,Canceled,Caleb Rodriguez,lguzman@example.com,+1-998-579-0454x643,4496818769423326,2024-10-29 +City Hotel,1,106,2017,May,19,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,117.92,0,0,Canceled,Andrea Bowman,perezmichelle@example.org,616.874.7427x68551,4939389968574,2024-09-22 +City Hotel,0,2,2017,December,49,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,7.0,45.0,0,Transient-Party,63.23,0,1,Check-Out,Gavin Nelson,jamespearson@example.org,001-412-344-6580x868,3548551554979034,2024-10-06 +City Hotel,0,57,2017,May,18,5,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.68,0,0,Check-Out,Courtney Smith,elainefriedman@example.org,(513)552-6425x9154,6011472361279370,2024-06-20 +Resort Hotel,1,16,2017,July,30,27,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.61,0,1,Canceled,Wayne Gray,jeffersondenise@example.net,001-274-880-8770,2236475842444396,2025-09-03 +Resort Hotel,0,13,2017,May,19,9,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,71.0,179.0,0,Transient-Party,140.08,0,1,Check-Out,Timothy Thompson,walllarry@example.org,+1-818-943-4517x929,2295051798899392,2026-01-26 +City Hotel,0,1,2017,October,42,21,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,45.0,0,Transient,87.17,1,0,Check-Out,Elizabeth Nicholson,paul61@example.net,429.918.8443x766,4323692570758900,2024-04-23 +City Hotel,0,9,2017,November,46,11,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.06,0,1,Check-Out,Joseph Graves PhD,lisajohnson@example.com,428.864.0932x234,30307013078640,2024-10-31 +Resort Hotel,0,12,2017,November,45,8,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,131.07,0,1,Check-Out,Lisa Mosley,fthomas@example.org,413.822.4118x83245,345174655135926,2025-05-03 +City Hotel,1,342,2017,April,15,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,63.9,0,0,Canceled,Travis Price,chenjustin@example.org,662-884-0887x64749,180095247450481,2024-09-16 +Resort Hotel,1,40,2017,December,50,11,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,178.91,1,1,Canceled,Patrick Faulkner,hamiltonmegan@example.org,395-593-0069x85887,6011645462874013,2024-04-01 +City Hotel,0,13,2017,July,30,27,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,86.88,0,0,Check-Out,Linda Atkinson,jeremy35@example.org,211.318.4492x33655,38201456814060,2025-04-02 +Resort Hotel,0,89,2017,December,49,3,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,75.87,0,1,Check-Out,Cameron Smith,blevinsjennifer@example.com,(934)513-0167x250,180032859874682,2024-12-21 +City Hotel,0,15,2017,November,47,22,0,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,98.82,0,1,Check-Out,Brittney Martinez,markjones@example.com,+1-993-218-3651x5623,346552482295808,2024-06-09 +City Hotel,0,85,2017,November,48,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.46,1,1,Check-Out,Nicolas Brown,nicholas17@example.org,001-970-433-6922x494,3595212070250895,2025-10-15 +City Hotel,0,18,2017,November,45,4,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,54.47,0,1,Check-Out,Vanessa Zimmerman,johnsmichael@example.org,+1-765-501-8850,3503242229596774,2024-12-02 +City Hotel,0,20,2017,October,42,21,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,98.23,0,0,Check-Out,Lee Mann,craig32@example.org,(545)925-5362x280,4120578546306285,2024-10-24 +City Hotel,1,44,2017,June,23,9,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,164.39,0,0,Canceled,William Lindsey,dramos@example.net,(214)910-5872x542,4395062973230610472,2026-01-26 +City Hotel,0,1,2017,September,36,6,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,62.59,0,0,Check-Out,Desiree Patterson,kellysmith@example.com,533-489-2656x231,4853340536031598972,2026-02-16 +Resort Hotel,1,5,2017,April,17,26,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,252.0,1,0,No-Show,Sierra Cervantes,littlejames@example.net,001-601-450-4121x5068,3551170418105001,2025-03-16 +City Hotel,0,13,2017,July,28,8,0,4,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,1,No Deposit,14.0,206.0,0,Transient-Party,101.24,0,0,Check-Out,Scott Meza,pperry@example.org,001-814-395-1294x226,4795469562234805,2025-11-15 +City Hotel,0,2,2017,May,18,4,0,2,2,0.0,0,SC,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,101.19,0,0,Check-Out,Erik Davis,walkerpatrick@example.net,001-486-426-4059,4981862894117,2024-09-26 +City Hotel,0,13,2017,November,45,4,2,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,239.0,179.0,0,Transient,80.31,0,1,Check-Out,Nicholas Duffy,timothy33@example.net,(855)909-3488x27184,6562374671631139,2024-08-15 +City Hotel,0,95,2017,March,10,6,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,161.42,1,2,Check-Out,Anthony Paul,chapmanmorgan@example.org,2723729744,560327195916,2024-11-22 +City Hotel,0,11,2017,September,36,7,0,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,208.96,0,1,Check-Out,Katherine Baxter,johnsonangela@example.org,(716)610-6065,36431358419005,2025-03-29 +Resort Hotel,1,102,2017,March,10,5,1,0,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,98.64,0,0,Canceled,Jessica Romero,ythomas@example.com,5696422181,4978823261706753,2024-12-22 +Resort Hotel,1,168,2017,April,16,13,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Canceled,Karen Robertson,bradley46@example.net,405-597-0881,6541348228372112,2025-06-09 +Resort Hotel,1,112,2017,June,23,8,2,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,Non Refund,257.0,179.0,0,Transient-Party,93.89,0,0,Canceled,Dr. Melissa Sullivan DDS,deborahadams@example.com,+1-962-445-2761x0650,36809228622181,2024-09-22 +City Hotel,0,16,2017,June,26,29,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,0.0,0,0,Check-Out,Nichole Klein,hannakimberly@example.org,400.588.3993x44729,30421288933015,2025-04-22 +City Hotel,0,245,2017,May,21,26,1,2,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,105.44,0,0,Check-Out,Nicole Sanchez,kayla55@example.net,253.564.3861,38501962740653,2024-12-04 +Resort Hotel,0,11,2017,November,45,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,I,0,No Deposit,140.0,222.0,0,Transient-Party,54.76,0,0,Check-Out,Tiffany Morrow,paul42@example.org,(625)564-8368,502058157616,2025-10-24 +City Hotel,0,151,2017,November,48,25,1,2,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.07,0,1,Check-Out,Kelsey Lynch,shawkathryn@example.net,716.740.6129x4510,4019950934694784,2025-06-17 +City Hotel,0,82,2017,October,44,31,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,69.91,0,1,Check-Out,Traci Craig,taylorgary@example.org,777-857-5251,2348212654340254,2025-12-03 +Resort Hotel,1,167,2017,November,46,14,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,138.0,179.0,0,Transient,118.31,0,2,Canceled,Kelly Walker,gmadden@example.net,(561)882-2281x073,38351656666784,2024-04-05 +City Hotel,1,22,2017,November,45,7,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.46,0,2,No-Show,Ryan Palmer,sullivanalfred@example.net,333.339.1222x4627,4232368139284057178,2024-10-10 +Resort Hotel,0,62,2017,April,17,28,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,133.91,1,2,Check-Out,Jenny Gray,yorkkathy@example.org,200-971-7917,502050668248,2024-11-16 +Resort Hotel,0,77,2017,February,8,20,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,C,0,No Deposit,241.0,179.0,0,Transient,125.96,1,0,Check-Out,Brian Sloan,hcosta@example.net,+1-953-968-7028x897,213108950644017,2024-08-29 +Resort Hotel,0,1,2017,October,44,28,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,H,D,0,No Deposit,340.0,331.0,0,Transient,45.28,0,0,Check-Out,Joshua Miranda,peterberger@example.com,+1-776-475-0567x539,3571922010906202,2026-01-01 +City Hotel,1,65,2017,May,18,3,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,92.82,0,0,Canceled,Edwin Carter,leah46@example.org,645.703.6353x2438,2226268315405487,2024-07-25 +City Hotel,1,3,2017,September,36,2,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,237.73,0,1,Canceled,Oscar Carroll,qholland@example.org,511.463.7039x548,213113595467238,2024-06-13 +City Hotel,1,53,2017,March,9,2,0,4,2,0.0,0,HB,,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Transient,109.27,0,0,Canceled,Eric Fitzpatrick,victoria96@example.com,+1-449-923-6790x8211,5303822387773153,2024-05-04 +Resort Hotel,0,81,2017,December,52,31,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,2,No Deposit,36.0,179.0,0,Transient,108.98,0,0,Check-Out,Samantha Johnson,vmedina@example.net,(993)894-1462,6520996828700465,2024-05-13 +Resort Hotel,0,96,2017,March,12,23,2,10,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,133.62,1,0,Check-Out,Luke Freeman,kmueller@example.org,5283043066,4351323283356957,2025-06-20 +Resort Hotel,1,343,2017,April,15,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,69.26,0,0,Canceled,Luis Murphy,pamelascott@example.net,378.817.0314x5189,375821674533100,2024-06-08 +City Hotel,0,52,2017,February,6,4,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,132.05,1,2,Check-Out,Aaron Zamora,bmiller@example.org,+1-767-896-7132,4796548806909,2024-07-05 +Resort Hotel,0,32,2017,July,27,7,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,43.52,1,1,Check-Out,Henry Garcia,vlogan@example.org,(292)889-2371,180084986280242,2026-01-03 +City Hotel,1,159,2017,December,52,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,100.33,0,0,Canceled,Bradley Robertson Jr.,tony41@example.com,3392492583,630418802710,2025-09-05 +City Hotel,1,115,2017,January,5,31,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.01,0,0,Canceled,John Moore,kristen71@example.net,632.809.9807x1488,180087488742817,2024-11-01 +City Hotel,0,17,2017,December,50,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,222.0,0,Transient-Party,106.74,0,0,Check-Out,Courtney Foster,vpace@example.org,(606)912-4056x87609,343204421964796,2024-11-12 +City Hotel,1,163,2017,April,15,9,2,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,141.65,0,2,Canceled,Jeffrey White,boyermichael@example.com,923-706-5463x9609,4249436653934,2025-12-21 +City Hotel,0,212,2017,April,14,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,85.0,179.0,0,Transient-Party,216.38,0,3,Check-Out,Ashley Gonzales,alexis80@example.org,(755)321-4278,6587504180843418,2024-04-09 +City Hotel,0,0,2017,June,26,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,82.51,0,2,Check-Out,Candice Gomez,courtneyhurst@example.com,(959)400-7109,3515932835577939,2026-03-20 +Resort Hotel,0,45,2017,November,46,14,1,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,80.08,0,0,Check-Out,Ian Harrell,kevin35@example.com,241.273.6280x53243,38214552711817,2025-05-02 +City Hotel,0,158,2017,April,15,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,263.0,179.0,0,Transient-Party,114.53,0,0,Check-Out,Colton Williams,derek72@example.net,860-975-7196x8617,4262135826420,2025-06-10 +City Hotel,1,156,2017,August,31,3,2,3,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,85.36,0,0,No-Show,Patrick Santana,james10@example.net,9438913246,4002239197408788262,2025-10-11 +City Hotel,0,130,2017,January,3,19,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,91.72,0,1,Check-Out,Cristian Mendoza,cunninghamshelby@example.com,981-479-9489x95454,38541047739643,2024-12-06 +City Hotel,1,196,2017,February,8,17,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.92,0,1,Canceled,Deborah Fisher,brian81@example.com,001-653-714-1124x7887,4048273094491809,2025-06-09 +Resort Hotel,1,142,2017,December,51,20,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,93.37,0,0,Canceled,Rebecca Klein,cortega@example.org,367.623.7811x41115,583753428403,2024-07-02 +City Hotel,1,98,2017,April,17,23,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient-Party,116.88,0,1,No-Show,Phillip Macias,marybarnes@example.com,9638508786,567980577157,2024-06-24 +Resort Hotel,0,82,2017,December,52,30,2,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,76.0,179.0,0,Transient,54.85,0,0,Check-Out,Tammy Cameron,daniel06@example.org,595.235.5570x59339,4055145058855,2024-09-10 +City Hotel,0,67,2017,November,47,21,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,139.25,0,0,Check-Out,Brian Rodriguez,glennjackson@example.com,001-836-476-0783,4880312171534831337,2025-12-27 +City Hotel,0,36,2017,January,3,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient,132.77,0,1,Check-Out,Christopher Porter,donnamiller@example.com,+1-440-936-8346x916,6506774442549677,2025-02-18 +City Hotel,1,82,2017,January,3,18,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,181.0,0,Transient,90.61,0,0,Canceled,Cynthia Gregory,colejacob@example.org,908.331.2096,579652146393,2024-11-02 +City Hotel,0,160,2017,March,11,11,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,89.86,0,0,Check-Out,William Mclaughlin,solomonmichael@example.org,452-573-2619x411,5129983404608947,2025-02-13 +City Hotel,1,319,2017,February,6,5,0,6,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,12.0,179.0,0,Transient,139.12,0,0,Canceled,Dylan Tucker,rwood@example.org,(534)883-4527x06243,676281826138,2024-04-08 +City Hotel,0,38,2017,December,51,18,2,4,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,1,No Deposit,18.0,179.0,0,Transient,138.71,1,2,Check-Out,Danielle Hernandez,pricetiffany@example.com,001-653-833-9029x651,4917192386304637,2024-08-06 +Resort Hotel,1,284,2017,May,20,14,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,123.27,0,0,Canceled,Danielle Wang,bellandrea@example.net,(713)793-6216,36143643290451,2025-08-11 +City Hotel,0,214,2017,April,14,2,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,134.56,0,1,Check-Out,Wendy Wright,angelagriffin@example.net,663-290-3348x26452,6011028191516942,2025-09-21 +City Hotel,0,3,2017,July,28,10,0,1,1,0.0,0,SC,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,62.0,0,Transient-Party,79.08,0,0,Check-Out,Christina Mccarthy,jasonabbott@example.net,7574357379,4602553302573532,2024-11-21 +City Hotel,1,21,2017,February,9,29,0,2,1,1.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,20.0,179.0,0,Transient,129.18,0,0,Canceled,Meredith Shaw,gmontgomery@example.org,407.595.1527x098,180021488058221,2025-12-12 +City Hotel,0,23,2017,November,45,5,1,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,6.0,179.0,0,Transient,132.95,0,2,Check-Out,Willie Garza,lauriehenderson@example.net,207.373.5846x77576,4630153747519046,2025-08-13 +City Hotel,0,110,2017,November,45,4,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,108.14,0,1,Check-Out,Crystal Anderson,ryan12@example.org,586.778.2651x50589,343241393314055,2024-09-27 +City Hotel,1,104,2017,June,25,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,1.0,179.0,0,Transient,102.03,0,0,Canceled,William Hickman,rmitchell@example.net,9938971147,566752652222,2026-01-14 +City Hotel,1,189,2017,April,15,14,1,3,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,204.49,0,0,Canceled,Luis Davis,ecopeland@example.com,+1-668-645-4277x2214,3587363703425238,2025-02-08 +Resort Hotel,0,141,2017,June,23,3,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,45.34,0,0,Check-Out,Jason Torres,steven56@example.org,+1-438-574-7516x25471,180070139366772,2025-12-02 +City Hotel,0,5,2017,July,27,5,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,171.68,0,1,Check-Out,Crystal Rogers,rachel84@example.com,(789)499-8149,30395452805920,2024-07-28 +Resort Hotel,0,103,2017,August,34,24,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,75,Transient,52.27,0,1,Check-Out,Jordan Schneider,garnerchristian@example.com,+1-624-371-9604x176,3530697313961696,2025-01-19 +City Hotel,1,413,2017,May,18,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.26,0,0,Canceled,Derrick Ramirez,lauraclayton@example.net,217-600-0696x26855,3531746333607190,2025-08-05 +City Hotel,1,21,2017,January,3,14,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,168.02,0,1,Check-Out,Jason Flores,michaelandrade@example.net,610-916-7222x1665,3584748079587566,2024-06-18 +Resort Hotel,0,47,2017,August,33,17,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,52.52,0,3,Canceled,Andrew Williams,xavierwilson@example.org,464.965.8159x66849,213170678518600,2025-08-10 +Resort Hotel,0,0,2017,November,47,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,17.0,62.0,0,Transient,39.93,1,2,Check-Out,Christy Kennedy,courtney14@example.org,9567225470,3568282217336629,2024-04-03 +Resort Hotel,0,409,2017,December,50,10,2,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,99.58,0,0,Check-Out,Ashlee Lopez,marcuscook@example.org,001-283-852-5789,2250503542177197,2024-06-24 +City Hotel,0,1,2017,April,14,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,B,1,No Deposit,14.0,179.0,0,Transient,139.94,1,1,Check-Out,Heidi Torres,jacobschaefer@example.net,(525)695-8214x30866,4835164632014993056,2024-10-09 +City Hotel,1,14,2017,November,47,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,2,No Deposit,8.0,179.0,0,Transient,89.66,0,1,Canceled,Adam Arnold,krogers@example.org,774-327-9792,4437524767705027853,2025-08-19 +City Hotel,0,364,2017,December,52,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.94,0,0,Check-Out,Erin Figueroa,callahananna@example.net,+1-386-627-8629x158,30268632070881,2024-04-19 +City Hotel,1,444,2017,January,2,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,61.46,0,0,Canceled,Richard Rice,maxwelljacob@example.org,345.273.7442x7513,213194408994766,2025-09-16 +Resort Hotel,0,32,2017,November,44,3,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,171.92,0,1,Check-Out,Matthew Clark,hornmatthew@example.org,301-500-7163,2248980022861521,2025-08-31 +City Hotel,1,0,2017,November,47,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,99.63,0,1,Canceled,Stephen Anderson,aburns@example.net,313-556-7771,374433686151862,2025-03-16 +Resort Hotel,0,254,2017,June,25,20,1,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,148.39,0,1,Check-Out,Barbara Willis,lisaperez@example.net,820.842.8703,377560323742096,2024-05-18 +City Hotel,0,22,2017,April,17,23,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,41,Transient,79.56,0,0,Check-Out,Martha Lee,andrew67@example.com,732.866.2052,213144503444068,2025-02-15 +Resort Hotel,0,31,2017,November,45,8,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,180.59,0,2,Check-Out,Tammy Jones,svargas@example.net,(929)465-1539,180024573427228,2025-12-09 +Resort Hotel,0,75,2017,August,31,1,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,A,0,No Deposit,241.0,179.0,0,Transient,47.53,0,1,Check-Out,Grace Swanson,perkinsdeborah@example.net,706.715.9168x66128,5169731118192356,2025-09-29 +City Hotel,0,58,2017,June,23,8,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.56,0,1,Check-Out,Christina Le MD,murphymegan@example.org,+1-602-494-0628x98240,4657254499052190,2025-10-09 +City Hotel,1,2,2017,April,15,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,240.76,0,1,Canceled,Joshua King,wjohnson@example.com,(514)797-4634x975,343169421496422,2024-11-04 +Resort Hotel,0,0,2017,August,31,4,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,130.0,179.0,0,Transient,84.31,0,1,Check-Out,Sarah Meadows,teresa45@example.net,874.295.2525,676100513305,2024-08-21 +City Hotel,0,19,2017,June,24,17,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,80.08,0,1,Check-Out,Stephanie West,angel69@example.org,384.370.7117x63366,4166311976461330334,2025-06-09 +Resort Hotel,1,36,2017,April,16,14,0,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Canceled,Susan Jones,john76@example.com,(715)794-7284x129,3569357359047173,2025-11-21 +City Hotel,1,13,2017,August,32,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,113.19,0,1,Canceled,Timothy Gordon,andreatorres@example.org,730-601-9836x37600,4512047124237847,2025-05-22 +City Hotel,0,202,2017,April,14,3,1,5,2,2.0,0,HB,NOR,Direct,Direct,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,216.75,1,3,Check-Out,Kyle Horton,julie56@example.com,(551)460-9117x949,343360734544731,2025-05-12 +Resort Hotel,0,84,2017,April,16,16,1,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,222.0,0,Contract,62.98,0,0,Check-Out,Angel Knight,mfranklin@example.com,628.971.5955,4461890304502808,2025-10-28 +Resort Hotel,0,202,2017,April,15,12,2,2,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,222.56,0,3,Check-Out,Melissa Yang,annawhite@example.com,975-384-7019,4288297457528570451,2024-10-31 +Resort Hotel,1,222,2017,December,49,8,2,5,2,0.0,0,SC,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,92.93,0,0,Canceled,Michael Berg,frankalvarez@example.org,909-209-0433,2283971382801138,2026-03-15 +Resort Hotel,1,61,2017,March,14,30,4,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,176.64,0,0,Canceled,Carol Christensen,stacie70@example.org,(919)578-7282x1747,3577315510001869,2025-09-20 +City Hotel,0,34,2017,June,26,28,0,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,132.29,0,0,Check-Out,Richard Morales,duncanvanessa@example.com,001-936-876-1179x616,375664286094644,2025-06-03 +City Hotel,0,2,2017,February,5,3,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,121.47,0,0,Check-Out,Clinton Moore,usullivan@example.net,(971)557-1871x8201,501881761214,2025-05-31 +Resort Hotel,0,81,2017,November,45,9,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,92.0,179.0,0,Contract,44.4,0,1,Check-Out,Michael Suarez,bradshawjoseph@example.net,458.975.4596x1902,4247147344509369475,2025-05-10 +City Hotel,1,290,2017,March,12,24,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,101.18,0,0,Canceled,Joy Zimmerman,kylesmith@example.com,+1-734-367-4885x188,180061041410436,2025-06-18 +City Hotel,1,56,2017,July,27,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.77,0,0,Canceled,Elizabeth Robinson,oholmes@example.org,863.562.1379,4632815961429221,2025-04-23 +City Hotel,0,98,2017,December,52,23,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,89.01,1,1,Check-Out,Kristen Jackson,scruz@example.net,517-873-5556,675986422029,2024-08-14 +City Hotel,1,152,2017,January,2,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,37,Transient,116.65,0,0,Canceled,David Williams,davidsonkaitlyn@example.org,001-534-579-4403,213130629465905,2024-05-04 +Resort Hotel,0,43,2017,November,45,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,11.0,179.0,0,Transient,122.59,1,2,Check-Out,Stephen Ho,lisa19@example.org,(570)526-1376x10352,3576248691261476,2025-08-13 +City Hotel,0,47,2017,March,10,4,1,5,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.84,0,1,Check-Out,Richard Day,ksparks@example.net,290-572-9701,30121145582282,2024-04-07 +City Hotel,1,12,2017,February,8,23,1,4,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,137.98,0,1,Canceled,Rodney Nichols,jacob36@example.net,001-238-394-8037x36101,4016397738349863,2025-10-26 +City Hotel,1,0,2017,December,50,14,0,2,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,259.0,0,Transient,7.66,0,1,Canceled,Gregory Jacobs,scottdaniel@example.org,+1-762-326-0819x598,213125306146018,2024-12-28 +City Hotel,1,372,2017,June,23,7,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,17,Transient,61.65,0,0,Canceled,Bradley Thornton,cwright@example.org,767.466.7495x13498,30229766640915,2026-03-27 +Resort Hotel,0,213,2017,March,10,6,3,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,101.0,179.0,0,Transient,184.66,0,0,Check-Out,Miranda Ortiz,tarafox@example.com,832.437.7683x268,6011970033718386,2025-08-31 +City Hotel,0,20,2017,November,45,8,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,140.61,0,1,Check-Out,Erika Brown,justinlopez@example.net,294-461-1065,4270659285147,2025-03-07 +City Hotel,1,0,2017,April,16,21,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,252.0,0,1,No-Show,Samantha Robinson,zbaldwin@example.com,(872)269-6774x565,378139400075644,2024-12-13 +City Hotel,1,399,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,89.0,179.0,0,Transient,104.54,0,0,Canceled,Cassandra Bonilla,robertjones@example.net,735.463.4837,3594541386641020,2025-04-26 +City Hotel,0,103,2017,September,36,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,101.5,0,1,Check-Out,Veronica Osborne,steven20@example.com,736.299.7174,4493012509152907,2025-10-02 +City Hotel,0,33,2017,April,17,25,2,5,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,120.58,0,1,Check-Out,Ashley Reese,jonathanryan@example.org,835.371.7726,36629298515457,2025-01-22 +City Hotel,1,250,2017,April,14,5,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.62,0,1,Canceled,Matthew Berg,larry45@example.com,(246)522-0561x5998,639097091412,2024-11-10 +City Hotel,0,171,2017,March,9,1,2,1,2,0.0,0,HB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.47,0,1,Check-Out,Kristen Montoya,cpitts@example.org,652.530.3931x1026,4051016980122702693,2025-01-20 +Resort Hotel,0,86,2017,January,4,21,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,243.0,179.0,0,Contract,44.12,0,2,Check-Out,Derrick Perkins,pearsonkimberly@example.net,479-358-2522,6563144084996349,2025-04-25 +Resort Hotel,0,295,2017,June,26,27,2,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,38.38,0,1,Check-Out,Nicole Moore,brittany66@example.org,001-618-840-0252x0743,180091030361647,2025-07-24 +City Hotel,0,91,2017,February,7,15,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.54,0,2,Check-Out,Nicholas Richardson,bwalsh@example.org,981-586-8425x637,4206141467713406,2024-04-17 +City Hotel,0,46,2017,December,50,10,2,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.9,0,1,Check-Out,Anna White,jeffrey30@example.org,+1-880-752-8509,3510421552697331,2025-01-31 +City Hotel,1,324,2017,March,10,5,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,114.1,0,0,Canceled,Scott Lopez,amy57@example.net,(486)551-8902x4723,2463350306138814,2024-07-01 +Resort Hotel,0,3,2017,September,37,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,49.73,0,1,Check-Out,Nicholas Holland Jr.,sullivanrachel@example.org,387.576.9399x80682,6011650399702675,2025-03-25 +Resort Hotel,0,58,2017,September,37,15,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,46.11,0,3,Check-Out,Christopher Long,wulaura@example.com,(555)317-0915,379129238468987,2025-07-12 +City Hotel,1,1,2017,November,47,21,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,102.08,0,1,Canceled,Andrea Jones,romerochristine@example.net,(249)637-8085x0790,343625880012612,2024-10-10 +City Hotel,0,0,2017,March,10,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,3.0,67.0,0,Transient-Party,35.66,0,0,Check-Out,Terry Waller,juangould@example.net,001-215-472-2196x9381,377372157995604,2025-10-26 +City Hotel,0,109,2017,November,48,25,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,139.27,0,1,Check-Out,Joseph Acosta,angelacasey@example.com,502-951-8582,38308461672126,2025-01-17 +City Hotel,0,154,2017,November,47,23,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,61.67,0,1,Check-Out,Lindsey Gray,mcdonaldjose@example.com,+1-418-358-4678x427,4456804029401167041,2025-11-15 +City Hotel,0,1,2017,November,45,4,0,1,1,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,68.0,0,Transient,50.38,0,0,Check-Out,Ronald Hines,penningtonlisa@example.com,+1-379-782-5075x3208,3562857853830955,2025-09-06 +Resort Hotel,0,25,2017,October,40,2,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,137.0,179.0,0,Transient,37.54,0,0,Check-Out,Amanda Wright,kathrynhamilton@example.org,+1-837-734-0133x574,3579195884239750,2025-09-23 +Resort Hotel,0,10,2017,July,27,2,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,58.0,0,Transient-Party,41.37,0,0,Check-Out,Charles Burton,greenjames@example.org,765.220.5390,4785077239652481,2024-06-03 +Resort Hotel,0,7,2017,May,20,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,80.6,0,0,Check-Out,Vincent Rosario,leerhonda@example.org,558-204-7092x889,180019251992022,2024-06-01 +Resort Hotel,0,7,2017,November,48,29,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,E,F,0,No Deposit,16.0,179.0,0,Transient,93.14,1,0,Check-Out,Noah Morgan,abigailforbes@example.com,499-275-5951x21286,502040274537,2025-09-04 +City Hotel,0,162,2017,April,15,8,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,164.82,0,0,Check-Out,Christina Castillo,adam30@example.net,(254)920-0315,180068489664630,2024-09-16 +Resort Hotel,0,19,2017,January,3,18,1,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,136.14,0,0,Check-Out,Jill Martin,joshuarodriguez@example.org,201.556.1641x31848,213154494157033,2025-03-07 +City Hotel,0,19,2017,April,15,14,0,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,20.0,179.0,0,Transient-Party,130.55,0,0,Check-Out,Christopher Brown,amitchell@example.com,(382)214-2778,3591489840648145,2025-09-17 +City Hotel,1,164,2017,February,6,3,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,156.62,0,0,Canceled,Lori Martinez,jessicagonzalez@example.net,646.884.2516x83108,2239214930079914,2024-04-04 +City Hotel,0,14,2017,November,47,22,0,3,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,107.87,0,2,Check-Out,Ashley Phillips,gpeters@example.org,(364)523-2454x541,4435968221691,2025-06-07 +City Hotel,1,88,2017,December,51,19,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.97,0,1,Canceled,Sara Thomas,saraalvarez@example.org,645-542-2726x18328,213160235938474,2025-11-19 +Resort Hotel,0,117,2017,November,48,29,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,17.0,179.0,75,Transient-Party,72.41,1,3,Check-Out,Allison Simmons,cynthiapacheco@example.net,(699)885-1017x711,2315980112810014,2025-09-14 +City Hotel,0,0,2017,November,45,11,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.13,0,0,Check-Out,Matthew Perez,grantmichael@example.org,926.557.9372x187,38304095171684,2025-04-19 +Resort Hotel,0,2,2017,October,41,8,1,1,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient-Party,51.64,0,0,Check-Out,Janice Henson,michaelgordon@example.org,(895)208-4936x466,4655730754411642255,2024-12-25 +Resort Hotel,0,31,2017,August,31,5,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,77.64,0,2,Check-Out,Ashley Jackson,randolphchristopher@example.com,474-509-6662,501839927818,2025-05-04 +Resort Hotel,0,109,2017,September,38,17,0,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,C,1,No Deposit,11.0,179.0,0,Transient-Party,84.84,0,0,Check-Out,Brian Sosa,dbrown@example.net,362-997-9151x430,30412389826570,2026-03-19 +City Hotel,1,11,2017,October,40,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.61,0,0,Canceled,Luis Wilson,johncollins@example.net,001-978-886-0093x9161,180030832074834,2025-10-23 +City Hotel,0,14,2017,August,34,22,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,46.66,0,2,Check-Out,Tamara Huang,dmalone@example.com,806-449-5441,676272587400,2025-01-05 +City Hotel,1,105,2017,February,6,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,89.51,0,0,Canceled,Cassandra Moreno,mooretrevor@example.net,681.229.0421,30480467118319,2024-07-17 +City Hotel,1,0,2017,April,15,11,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,280.0,0,Transient,2.54,0,0,Canceled,Meghan Hernandez,kennedyrobert@example.net,501.474.8383x61281,4928630688966,2025-07-03 +City Hotel,0,26,2017,August,32,5,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.32,0,1,Check-Out,Elizabeth Roth,alyssa10@example.com,948.707.3046x374,676384053333,2026-01-02 +City Hotel,0,50,2017,May,21,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,F,1,No Deposit,171.0,179.0,0,Transient-Party,196.95,1,0,Check-Out,Brian Hendricks,wrightchristopher@example.com,243.357.6054,6011444465602500,2024-09-07 +City Hotel,1,44,2017,June,23,9,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,156.06,0,1,Canceled,Tasha Cochran,thompsonwilliam@example.org,(603)753-9433x841,371398637010777,2025-08-27 +City Hotel,0,17,2017,March,14,31,0,2,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,215.14,1,2,Check-Out,Angela Smith,olynch@example.net,(937)580-7451x59865,4883598583503213413,2025-10-26 +Resort Hotel,0,1,2017,October,41,14,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.67,0,0,Check-Out,Brittany Rios,rebecca93@example.org,879-498-5147,4349482205702,2024-06-26 +City Hotel,0,18,2017,December,52,23,0,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,114.26,0,3,Check-Out,James Griffith,tammymcguire@example.com,322-886-6516,3582303894280997,2024-09-05 +City Hotel,1,38,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,20,Transient,80.65,0,0,Canceled,Karen Jones,hillashley@example.org,(401)393-0636x03048,3555777715303281,2026-03-18 +Resort Hotel,0,25,2017,March,10,10,4,6,2,0.0,0,BB,IRL,Online TA,GDS,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,87.11,0,1,Check-Out,Tina Ramirez,john69@example.net,4239689918,3596126421125581,2025-05-17 +City Hotel,1,147,2017,January,4,21,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.79,0,1,Canceled,Zachary White,johnlevy@example.org,+1-775-479-0603x20991,3560886508250337,2024-04-23 +Resort Hotel,0,262,2017,April,14,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Contract,60.38,0,2,Check-Out,Francisco Coleman,gonzalescynthia@example.net,459-556-4609,4765257032762760,2024-12-20 +City Hotel,0,0,2017,August,32,5,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,101.51,0,1,Check-Out,Jennifer Leon,rgarcia@example.org,355.532.8228x64414,4513447991075347,2025-08-18 +Resort Hotel,0,28,2017,March,10,7,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,218.0,0,3,Check-Out,Robert Valdez,ryan23@example.org,001-346-669-5084,372579148773453,2025-09-06 +City Hotel,0,247,2017,May,19,10,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,84.04,0,0,Check-Out,Jason Crawford,bjimenez@example.org,+1-636-506-4380x9327,344211670878501,2024-07-24 +Resort Hotel,0,0,2017,September,39,23,1,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,D,D,0,No Deposit,182.0,179.0,0,Transient,47.82,0,0,Check-Out,Kim Underwood,paul01@example.com,(208)634-0030x830,6011926762126225,2025-08-16 +Resort Hotel,1,40,2017,February,5,2,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,244.91,0,2,Canceled,Kevin Fisher,allisonanna@example.org,001-609-789-5625x8944,503892643522,2025-05-02 +Resort Hotel,0,188,2017,December,51,22,2,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,138.9,0,2,Check-Out,Melissa Goodman,kenneth12@example.org,531-690-5599x81885,4776946929348970656,2025-09-15 +City Hotel,0,57,2017,April,14,2,1,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.96,0,0,Check-Out,Cynthia Smith,katherineanderson@example.net,748-359-0072x749,4450837536492,2025-10-05 +City Hotel,0,1,2017,April,16,15,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,45.0,0,Transient,252.0,0,1,Check-Out,Alicia Grant DVM,vparker@example.com,(296)708-4111x44074,4680860218663,2024-05-30 +City Hotel,0,307,2017,March,11,13,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,D,0,No Deposit,2.0,179.0,0,Transient-Party,175.98,1,0,Check-Out,Amy Bailey,jasonwest@example.net,(225)272-5913,38251025859922,2025-10-28 +City Hotel,1,10,2017,February,8,18,1,0,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient,0.0,0,0,Canceled,Sharon Fuentes,epark@example.org,7374529945,30184237530106,2025-09-01 +City Hotel,0,52,2017,February,6,3,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,223.91,0,2,Check-Out,Charles Castaneda,laurenstevens@example.com,353.526.2371x275,3554675693384839,2025-11-21 +City Hotel,1,189,2017,March,9,1,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,124.58,0,0,Canceled,Susan Sanchez,warnerterri@example.org,(895)384-1635x96795,2720501667875852,2025-01-14 +Resort Hotel,0,43,2017,January,4,22,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,134.85,0,1,Check-Out,Amy Taylor,danielle36@example.net,(910)590-1022x848,2582362490647506,2025-09-28 +City Hotel,0,24,2017,January,2,3,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,102.22,0,1,Check-Out,Michele Bennett,simmonskendra@example.com,3742837768,213136565108128,2026-01-06 +Resort Hotel,1,146,2017,April,16,14,1,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,249.63,0,0,Canceled,Vincent Watson,wolfebrittney@example.com,724.871.7356,3513936930618722,2025-08-05 +Resort Hotel,1,94,2017,December,49,8,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,46.89,0,0,No-Show,Mary Jones,susanperry@example.net,9882223516,4452601006499453,2024-09-04 +Resort Hotel,0,17,2017,September,35,2,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,252.0,1,1,Check-Out,Sheila Johnson,emmaalvarez@example.com,001-325-877-3475,38712006833954,2024-08-04 +City Hotel,1,97,2017,January,2,3,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,82.21,0,0,Canceled,Bob Jones,gnorman@example.com,597-723-7183,4987802090153,2025-11-20 +Resort Hotel,0,136,2017,April,14,5,1,7,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,223.2,0,0,Check-Out,Robin Hernandez,jeffrey77@example.com,(980)698-7691,373727131196328,2025-06-25 +City Hotel,0,0,2017,October,40,6,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,128.17,0,2,Check-Out,Patrick Adkins,xsmall@example.net,+1-470-465-2796x124,213134770735066,2025-05-10 +Resort Hotel,0,1,2017,August,32,8,0,2,1,0.0,0,Undefined,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,46.11,1,0,Check-Out,Elizabeth Jenkins,haileyhill@example.com,001-303-392-1016x148,213118011592113,2024-10-12 +City Hotel,1,184,2017,April,15,14,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Canceled,Richard Dominguez,robertnichols@example.net,269.245.2763x0965,213137050548455,2024-04-05 +Resort Hotel,1,152,2017,March,9,4,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,171.0,179.0,0,Transient-Party,103.2,0,0,Canceled,Christopher Ibarra,scottcollins@example.net,401-416-4581x7978,580059292814,2025-03-29 +Resort Hotel,0,97,2017,September,37,15,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Group,130.84,0,1,Check-Out,Paul Gordon,jamesharvey@example.com,001-341-640-6123,4034671547113589,2024-06-15 +City Hotel,0,0,2017,March,10,9,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,B,0,No Deposit,39.0,179.0,0,Transient-Party,107.54,0,0,Check-Out,Ronnie Frazier,campbelljoseph@example.com,001-324-413-0389x773,180055151310444,2024-12-10 +City Hotel,0,191,2017,May,18,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,83.19,0,0,Check-Out,Kristen Gallegos,whitemarissa@example.com,(750)707-5406x3122,4404677847515185,2026-02-12 +City Hotel,0,19,2017,November,47,19,1,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,116.07,1,3,Check-Out,Kathryn Fletcher,jbowman@example.org,+1-451-219-7263x1727,5593465944691812,2024-09-09 +City Hotel,0,201,2017,November,46,11,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.81,0,1,Check-Out,Christopher Dudley,lburnett@example.net,(455)219-4973x8636,4311708479030791774,2024-07-28 +Resort Hotel,0,0,2017,September,36,3,0,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,49.12,0,0,Check-Out,Vanessa Martinez,kristine98@example.net,(461)538-6725,4511384415461,2024-09-08 +City Hotel,0,243,2017,May,18,5,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,100.53,0,1,Check-Out,Manuel Robinson,gentrykatherine@example.net,687-204-5037,4063325446430490257,2025-06-27 +City Hotel,0,51,2017,December,52,27,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.63,0,1,Check-Out,Paul Hansen,estessamuel@example.com,647.563.3475,213115307672005,2026-03-16 +City Hotel,0,55,2017,July,28,11,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,81.22,0,1,Check-Out,Rose Mcdonald,kathrynchapman@example.org,431.269.6503,4623083176930222677,2025-02-23 +City Hotel,0,14,2017,June,24,12,2,1,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,190.0,0,Transient,107.78,0,0,Check-Out,Martin Wilcox,maryromero@example.net,627-400-0867x64369,372991200374940,2025-02-20 +City Hotel,0,113,2017,March,12,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.53,0,1,Check-Out,Robert Lucas,torrestravis@example.org,795-519-1106x89110,4301573070954759,2026-02-25 +City Hotel,0,23,2017,August,33,13,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,85.14,0,1,Check-Out,Brian Miller,samuelmcclain@example.net,7789301629,6547643677514014,2024-09-27 +City Hotel,0,14,2017,January,4,23,1,2,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,126.77,0,0,Check-Out,Sarah Johnson,huntnicholas@example.com,444.583.0755x8485,4520563614373645,2024-11-12 +City Hotel,1,51,2017,August,33,16,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,105.0,0,1,Canceled,Joshua Jones,smithrobert@example.org,738-970-4251,213108177374687,2025-08-07 +City Hotel,0,56,2017,May,18,1,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,146.77,0,2,Check-Out,Nicole Parker,ahardin@example.com,3976872235,4817687232391242,2024-10-06 +Resort Hotel,0,320,2017,March,10,4,4,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,86.34,0,1,Check-Out,Margaret Johnson,colleenclark@example.org,+1-309-726-5119x20453,3596882773932269,2025-03-07 +Resort Hotel,0,39,2017,June,23,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,52.97,0,1,Check-Out,William Cunningham,davidtorres@example.org,001-870-933-9004x645,4769785997217383490,2024-10-31 +Resort Hotel,1,85,2017,March,10,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,85.17,0,0,Canceled,Rachel Williams,lbauer@example.com,+1-297-554-6403,4018612283638,2024-05-27 +Resort Hotel,0,20,2017,November,46,15,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,53.98,0,0,Check-Out,Tony Smith,michaelwilliams@example.com,627.566.3975x998,30429674192419,2024-05-21 +Resort Hotel,0,2,2017,June,23,5,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,0,No Deposit,11.0,241.0,0,Transient,49.28,0,0,Check-Out,Douglas Sanders,shane55@example.com,(606)289-4790,675966172701,2024-06-29 +City Hotel,0,154,2017,February,5,1,2,1,1,1.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,A,1,No Deposit,164.0,179.0,0,Transient,113.07,0,0,Check-Out,Paul Swanson,adrienne32@example.net,287-373-7459x12021,4719441362977191,2025-11-09 +Resort Hotel,0,0,2017,June,23,8,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,247.0,179.0,0,Transient,2.77,1,0,Check-Out,Michele Davis,kaufmangina@example.net,491-268-7574x922,4066429579268954578,2025-05-05 +City Hotel,0,163,2017,June,26,27,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,89.46,0,0,Check-Out,Patrick Garcia,wcaldwell@example.org,7849416864,676380249158,2024-11-27 +Resort Hotel,1,265,2017,August,32,12,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,79.27,0,0,Canceled,Brittany Matthews,phillip55@example.com,466-472-9155x487,4209932935745940224,2025-06-17 +City Hotel,0,49,2017,May,21,24,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.66,0,1,Check-Out,Kevin Christian,alexandragarrett@example.com,267-437-5679x8475,4908226477100754199,2025-10-18 +City Hotel,1,31,2017,August,31,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,64.98,0,0,Canceled,Christian Ford,williamsrichard@example.org,362-516-5700x831,373192929480824,2025-09-14 +Resort Hotel,0,0,2017,October,41,10,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,172.0,179.0,0,Transient,47.71,0,0,Check-Out,Anna Higgins,hreilly@example.com,(372)523-1755,4660563555867878,2025-09-23 +City Hotel,1,58,2017,December,51,21,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,18,Transient-Party,63.94,0,0,Canceled,Rhonda Pena,kellerjames@example.org,982-276-7699x4170,4485529801655,2025-07-27 +City Hotel,0,36,2017,June,23,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,13.0,331.0,0,Transient,74.38,0,0,Check-Out,Candace Stuart,bgray@example.net,+1-563-897-6407x829,4403271110936228,2025-08-17 +City Hotel,0,38,2017,June,26,27,2,5,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,100.53,0,0,Check-Out,Monica Curtis,kellysteele@example.com,(971)434-0950x2641,4224414985267348,2024-10-26 +City Hotel,0,149,2017,March,13,28,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,103.25,0,2,Canceled,Gloria Floyd,fpark@example.net,789.469.6861,4066499984219300,2024-04-09 +City Hotel,1,46,2017,June,23,10,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,220.42,0,0,Canceled,Isaac Chase,carterjerry@example.net,3643232180,30063387850631,2024-05-06 +City Hotel,0,18,2017,December,52,26,1,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,138.49,0,1,Check-Out,Steven Schroeder,cdelacruz@example.com,(468)409-6486x0393,344918063335408,2024-12-10 +City Hotel,1,0,2017,December,49,8,1,3,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,97.29,0,0,Canceled,Daniel Bishop,ycook@example.com,549.672.7908,676371194181,2026-02-17 +Resort Hotel,0,104,2017,July,28,13,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,87.82,0,0,Check-Out,Christian Burton,phillip06@example.net,+1-670-580-4298x60203,6596640720919265,2025-07-26 +City Hotel,0,165,2017,March,9,2,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient-Party,129.43,0,2,Check-Out,Robert Thomas PhD,josephkey@example.com,523-330-5682x1102,630419057769,2025-09-09 +City Hotel,1,391,2017,May,20,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,103.42,0,0,Canceled,Tracy Harrington,watsonjoe@example.net,5388086919,4198532087670471335,2024-10-02 +City Hotel,0,22,2017,June,23,4,2,6,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Contract,97.07,0,0,Check-Out,Brandon Edwards,lisacollins@example.net,791-933-6402x2082,6011217721012957,2025-12-20 +Resort Hotel,1,0,2017,October,41,8,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,39.43,0,2,No-Show,Candice Ramirez,ychapman@example.net,+1-710-502-6231x267,5468006338240766,2024-10-07 +City Hotel,0,320,2017,March,12,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,121.3,0,1,Check-Out,Brandon White,paynekimberly@example.net,(924)687-8485x6128,2254136585926588,2025-03-08 +City Hotel,1,151,2017,December,51,19,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,101.61,0,0,Canceled,Deanna Kennedy,palmerkatherine@example.net,001-791-776-0663,30446478828402,2025-07-31 +City Hotel,0,323,2017,May,20,16,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.79,0,1,Check-Out,Shawn Santos,robertskeith@example.org,620-811-7389x921,4404104316159288,2025-12-14 +Resort Hotel,0,10,2017,August,34,22,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,87.51,1,1,Check-Out,Caleb Carroll,robertwalker@example.com,519-619-8391,4886746344058,2025-11-29 +City Hotel,0,35,2017,May,20,19,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.35,0,1,Check-Out,Scott Morales,ggreen@example.org,(631)553-0610,572076474079,2024-08-29 +City Hotel,0,3,2017,July,27,7,0,1,1,0.0,0,BB,RUS,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,63.0,0,Transient,63.71,0,1,Check-Out,Sylvia Anderson,kmartinez@example.org,001-823-412-0148x73544,180026326290746,2025-08-31 +City Hotel,0,149,2017,December,2,30,2,7,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,33.0,179.0,0,Transient,214.96,0,0,Check-Out,Ryan Crane,ksalazar@example.org,(797)840-1517x143,639004305442,2024-07-30 +Resort Hotel,0,154,2017,November,44,4,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,12.0,179.0,0,Transient-Party,40.03,0,0,Check-Out,Michael Hunter,natashaburke@example.net,(582)751-5408,4591479079662915,2024-11-18 +City Hotel,1,72,2017,April,14,4,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,252.0,0,1,Canceled,Shawn Fleming,kelly12@example.org,(630)814-5164x98767,4599347579846,2024-12-25 +City Hotel,1,165,2017,March,11,13,0,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,B,0,Non Refund,8.0,179.0,0,Transient,252.0,0,0,Canceled,Maria Figueroa,joshuahorn@example.com,247.399.0625x14593,4718177910144451,2024-05-24 +Resort Hotel,0,31,2017,March,13,27,1,3,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,224.68,1,3,Check-Out,Roberto Smith,marie99@example.net,548.882.4211x07028,6522896227497010,2024-10-02 +Resort Hotel,1,24,2017,December,51,18,2,2,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,1,No Deposit,14.0,331.0,0,Transient,4.37,0,0,Canceled,Donna Moore,gillespiethomas@example.com,695-763-3645,4404775665543352,2024-10-04 +City Hotel,1,160,2017,June,26,25,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,78.69,0,0,Canceled,Benjamin Price,whughes@example.net,8926431481,348855383453675,2024-12-07 +Resort Hotel,1,173,2017,April,16,19,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,L,2,No Deposit,302.0,179.0,0,Transient-Party,111.48,0,0,No-Show,Brandon Owens,panderson@example.org,316-625-1041x22774,3541955799552026,2025-09-09 +City Hotel,0,102,2017,December,49,4,2,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,129.48,0,2,Check-Out,Stephanie Marshall,adavidson@example.com,302-721-1081x1192,375452129191375,2024-06-17 +City Hotel,0,11,2017,May,21,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,132.14,1,1,Check-Out,Nicholas Lowery,mboyer@example.com,(800)709-1965,4574221964174759,2025-05-22 +City Hotel,1,0,2017,May,20,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,40.51,1,0,Canceled,Patricia Gonzalez,hollandmitchell@example.org,968-934-4789x712,30074821929972,2025-06-20 +Resort Hotel,1,4,2017,September,37,11,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,240.0,179.0,0,Transient,46.23,0,1,Canceled,Evan Davies,cory67@example.com,+1-967-827-1067x8853,36799829399588,2025-10-17 +Resort Hotel,0,89,2017,December,49,8,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient-Party,106.78,0,0,Check-Out,Dr. John Ramirez,fbest@example.net,+1-436-416-8846,342380547682461,2024-08-22 +City Hotel,1,98,2017,November,48,26,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,106.02,0,0,Canceled,Christopher Harrison,linda32@example.net,6764937745,4612406830312626,2025-07-28 +Resort Hotel,1,141,2017,March,10,5,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,101.92,0,1,Canceled,Erica Johnson,josephguzman@example.com,001-809-997-2365x8784,180022086096324,2025-04-16 +Resort Hotel,1,247,2017,February,8,21,2,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,76.0,179.0,0,Transient,91.99,0,1,Canceled,Jamie Mayer,taylorlawrence@example.com,+1-469-613-4082,4135427942099,2025-06-10 +Resort Hotel,0,157,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,36.75,0,0,Canceled,Jeffrey Kennedy,mark79@example.org,209-202-1136,4353330915416842,2024-06-17 +City Hotel,0,42,2017,December,48,2,0,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,101.24,0,0,Check-Out,Sean Cisneros,anthonyjacobs@example.com,278-983-8502x74094,375572037558181,2025-06-15 +Resort Hotel,0,199,2017,June,25,23,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,32.0,179.0,0,Contract,50.61,0,2,Check-Out,Debra Reid,elizabeth28@example.net,(404)776-5908,4948205353121017,2024-07-17 +City Hotel,0,108,2017,December,49,4,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,109.89,0,0,Check-Out,Benjamin Sullivan,rachel38@example.net,4668096467,3542241941470584,2024-06-24 +City Hotel,0,169,2017,November,47,18,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,147.75,0,3,Check-Out,Michael Savage,nicholaschapman@example.com,603.779.4174x55393,3508624390926622,2024-11-22 +City Hotel,0,202,2017,March,12,19,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.3,0,0,Check-Out,Mckenzie Green,stephanie36@example.com,491.443.3741x57281,30393181314462,2025-05-09 +City Hotel,1,67,2017,November,47,23,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Canceled,Anna Valenzuela,iadams@example.net,(647)987-4876x32942,2277828723282816,2024-10-30 +Resort Hotel,0,20,2017,April,14,3,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,237.0,179.0,0,Group,139.21,0,2,Check-Out,Paul Martin,mrandall@example.net,493-588-2796x3101,4038269544086357893,2024-04-25 +Resort Hotel,1,258,2017,March,12,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,127.44,0,0,Canceled,Jason Alvarez,amorrison@example.net,635-842-4955x9269,3529591767682390,2025-03-05 +Resort Hotel,0,52,2017,July,28,10,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,240.0,179.0,0,Transient,55.68,0,1,Check-Out,Caitlyn Horton,oholmes@example.net,001-546-383-3971,3559923224788648,2025-07-28 +City Hotel,1,156,2017,June,24,10,2,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,2,No Deposit,13.0,220.0,0,Transient,103.25,0,0,Check-Out,Michael Price,hatfieldkenneth@example.net,869-813-5881,4551224895654,2025-08-21 +City Hotel,0,0,2017,April,17,23,0,1,2,1.0,0,BB,USA,Direct,Direct,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient,223.74,0,2,Check-Out,Richard Harper,marcusjohnson@example.net,(798)718-4707x108,30293444444793,2026-01-02 +City Hotel,0,0,2017,November,47,23,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,D,I,0,No Deposit,378.0,179.0,0,Transient,98.2,0,2,Check-Out,Michael Jensen,chelsea44@example.com,(540)874-3486x791,4477196230027534919,2025-07-01 +City Hotel,0,89,2017,March,10,5,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,240.22,0,2,Check-Out,William Mcmillan,dramirez@example.org,841.962.7622,2717086949981343,2024-07-05 +City Hotel,0,0,2017,October,42,14,1,0,1,0.0,0,BB,ITA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,103.54,0,0,Check-Out,Nancy Stewart,ttaylor@example.com,001-399-911-6618x9831,3508888108155457,2024-09-07 +City Hotel,0,96,2017,August,34,24,2,2,2,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,75,Transient-Party,90.33,0,1,Check-Out,Jimmy Hernandez,jessica78@example.com,+1-441-404-3392x6086,4927515051940067086,2024-05-02 +Resort Hotel,0,96,2017,December,49,8,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,52.94,0,0,Check-Out,Ashley Cordova,brownmatthew@example.com,(878)287-0901x08163,340919773606561,2025-09-22 +City Hotel,1,19,2017,June,25,18,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,101.74,0,0,Canceled,Joseph Smith,andrearamirez@example.org,2522493835,6011447741588518,2025-09-21 +City Hotel,1,302,2017,March,10,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,80.32,0,0,No-Show,Ronnie Martinez,fstewart@example.net,382.215.8625,3577034856859166,2025-05-17 +City Hotel,1,15,2017,March,12,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.94,0,0,Canceled,Wayne Davis,cherylhuynh@example.com,932-215-5732,6593790960796833,2024-11-13 +City Hotel,0,2,2017,March,9,1,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,58.63,0,0,Check-Out,William Fisher,allenamy@example.net,001-970-271-4582x233,4065206527461576079,2026-01-29 +Resort Hotel,0,39,2017,May,18,3,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,87.53,0,1,Check-Out,Carol Gray,perezrobert@example.net,390.295.0807,2712081500699181,2024-12-10 +Resort Hotel,0,19,2017,May,22,29,1,3,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,174.79,0,1,Check-Out,Tristan Bonilla,loweandrew@example.net,759-955-9198,4650536242801,2024-06-10 +Resort Hotel,0,1,2017,November,46,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,1,No Deposit,9.0,179.0,0,Contract,65.45,0,2,Check-Out,Alexis Cervantes,amanda77@example.org,7376214082,370220466435084,2026-01-17 +City Hotel,1,30,2017,April,16,16,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,186.06,0,1,Canceled,Steven Shaw,ghoward@example.org,(706)241-9337x55215,4135865477764290,2024-12-28 +City Hotel,0,63,2017,May,20,15,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,174.04,0,1,Check-Out,Melissa Banks,maryburke@example.org,+1-727-371-3697x1984,3528473976316501,2025-08-27 +City Hotel,1,112,2017,January,4,23,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,95.99,0,0,Canceled,Jason Bell,phillip79@example.com,541.530.6336,30143542956059,2024-05-24 +City Hotel,0,0,2017,June,25,20,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.28,0,2,Check-Out,Kelly Hubbard,kerri63@example.org,001-763-804-4615,676181951770,2025-09-29 +Resort Hotel,1,249,2017,January,2,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,46.67,0,0,No-Show,Christopher Patterson,estrickland@example.net,570.327.7025,4611309288682163653,2024-06-27 +Resort Hotel,0,38,2017,September,38,22,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,51.09,0,2,Check-Out,Kurt Daniels,awhite@example.net,(328)497-6184x746,4628911260143,2025-01-09 +City Hotel,1,58,2017,February,9,29,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.21,0,0,Canceled,Ryan Barker,hnavarro@example.com,450.550.3609x361,4270067206462826,2025-06-26 +City Hotel,0,109,2017,October,43,23,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.29,0,1,Check-Out,Douglas Oliver,powelljesse@example.org,2179650128,4906423429471228951,2025-03-02 +City Hotel,0,262,2017,February,6,7,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,40,Transient,102.16,0,0,Check-Out,Shannon Cowan,iclark@example.org,+1-472-612-1227x64251,4633073541833665,2026-02-11 +City Hotel,1,13,2017,August,31,2,1,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,179.69,0,1,Canceled,Ashley Banks,alexgonzalez@example.net,(367)439-0413,3562965688400926,2025-11-26 +City Hotel,0,1,2017,October,41,13,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.04,0,1,Check-Out,Jennifer Crawford,randerson@example.net,(946)317-4696,6011566259163297,2024-03-29 +City Hotel,0,14,2017,January,4,25,2,2,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,87.28,0,1,Check-Out,Tammy Garcia,nturner@example.com,(703)356-9661x54622,6500023611498548,2025-08-20 +Resort Hotel,1,155,2017,March,12,17,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,244.29,0,2,Canceled,Kevin Johnson,zsanders@example.com,712-992-7565x7119,5247826275804474,2025-06-29 +City Hotel,1,69,2017,January,4,21,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,107.02,0,0,Canceled,Jason Walker,xchavez@example.com,+1-590-713-3506x78642,4676926933025893,2026-01-12 +Resort Hotel,1,83,2017,February,8,24,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,224.4,0,1,Canceled,James Gonzalez,phillipadams@example.org,+1-913-956-7877x142,2720105947947547,2026-02-05 +City Hotel,0,18,2017,May,20,15,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,238.0,179.0,0,Transient,131.72,1,1,Check-Out,Caleb Ponce,tammy54@example.org,807.515.7426,4680401404374964538,2026-01-02 +City Hotel,0,55,2017,April,15,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient-Party,98.51,0,1,Check-Out,Jennifer Hoover,danielmarshall@example.org,245-336-1051x381,36945330773064,2024-04-27 +City Hotel,0,209,2017,January,4,21,1,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,104.31,0,0,Check-Out,Natalie Smith,steindenise@example.org,451-463-4155x51234,3545013879021987,2025-07-21 +Resort Hotel,1,135,2017,April,15,10,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,272.0,179.0,0,Transient,207.09,0,0,Canceled,Danny Campbell,michellegilbert@example.com,001-764-328-9216,371581428028443,2024-07-13 +Resort Hotel,0,1,2017,October,43,27,0,3,1,1.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,163.0,179.0,0,Transient-Party,46.37,1,1,Check-Out,Deborah Roberson,amandastark@example.net,(705)607-4150x72389,4929230765576,2024-12-16 +City Hotel,1,195,2017,January,5,29,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,111.13,0,0,Canceled,Jennifer Allen,mackenziekelly@example.com,(687)458-2930,4591817927894158,2025-11-21 +City Hotel,1,192,2017,January,2,11,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,10.0,179.0,0,Transient,109.42,0,0,Canceled,Jennifer Smith,anthony56@example.net,001-207-510-3142x10653,502063652221,2025-04-13 +Resort Hotel,1,139,2017,February,5,1,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,240.0,179.0,0,Transient,228.89,0,0,Canceled,James Montoya,mmontgomery@example.org,+1-715-995-9603x844,4911151057225,2024-11-27 +Resort Hotel,1,397,2017,January,5,28,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,41,Transient,99.02,0,0,Canceled,Lindsay Rogers,hocarolyn@example.org,+1-605-758-9351x67500,4903029523439,2025-06-11 +City Hotel,0,3,2017,February,8,22,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,17.0,179.0,0,Transient,147.45,0,2,Check-Out,Wendy Allen,christopherescobar@example.org,(516)464-8734x32492,4137133880311604525,2024-09-06 +City Hotel,0,0,2017,April,16,19,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,122.45,0,3,Check-Out,Cheryl Newman,alexis41@example.com,(700)900-4636x714,6536207137273786,2024-07-06 +City Hotel,1,166,2017,April,17,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,130.0,0,0,Canceled,Rebecca Lane,smurphy@example.com,896.432.0677x15041,370133046952629,2024-12-01 +City Hotel,0,108,2017,January,2,4,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient,46.54,0,0,Canceled,Mark Madden,stevenholmes@example.org,(292)222-5539x8315,4720814602286218,2026-01-17 +City Hotel,1,46,2017,April,17,25,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,111.68,0,1,Canceled,Tanner Holmes,timothyolsen@example.net,976.531.2042x6285,4979053964426868,2025-07-29 +City Hotel,1,97,2017,February,8,22,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.13,0,0,Canceled,Brett Owen,lindaperez@example.com,356.284.6962x512,6525895538605144,2025-08-03 +Resort Hotel,0,14,2017,December,50,15,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Transient,91.58,0,0,Check-Out,Lynn Mueller,nmcmillan@example.com,(440)951-6243,2286867572438680,2025-01-30 +City Hotel,1,366,2017,January,2,3,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.36,0,1,Canceled,Lori Green,andrewarnold@example.com,001-219-459-3281x90466,4541647286728163,2024-03-30 +City Hotel,0,102,2017,July,28,9,1,2,2,0.0,0,SC,ISR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,86.27,0,0,Check-Out,Tiffany Harris,seth61@example.com,001-987-990-2314x9951,36604872116873,2025-06-01 +Resort Hotel,0,190,2017,January,4,22,0,7,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,325.0,179.0,0,Transient,75.93,0,1,Check-Out,Jeffrey Fuller,nicolerandall@example.net,(465)570-2316x283,6011347719299686,2025-10-13 +City Hotel,1,390,2017,January,3,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,85.82,0,0,Canceled,Alyssa Zimmerman,brian64@example.org,323-358-5208,4475490382159581,2025-02-25 +City Hotel,0,0,2017,July,27,3,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,2,No Deposit,16.0,179.0,0,Transient,146.36,0,0,Check-Out,Angela Reyes,lewisamanda@example.org,001-279-775-0758,4982286363746091950,2024-05-26 +Resort Hotel,0,0,2017,August,33,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,97.85,1,1,Check-Out,Bianca Chavez,qbarron@example.org,+1-997-435-8824x416,588418916296,2025-08-10 +Resort Hotel,0,22,2017,April,14,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient-Party,46.36,1,0,Check-Out,Heather Allen,irichardson@example.org,001-781-939-4053,568455095311,2024-08-13 +City Hotel,0,0,2017,November,46,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,1.74,0,0,Check-Out,Elizabeth Nichols,cynthia65@example.net,(725)274-2367,2702834461681438,2025-07-08 +City Hotel,1,287,2017,July,27,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,18,Transient,82.48,0,0,Canceled,Richard Hartman,juan12@example.net,(852)204-1979x757,3525998721464043,2025-04-15 +City Hotel,1,327,2017,May,19,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.08,0,2,Canceled,Mary Hill,robinsonkatherine@example.com,610-885-2819,3538375844618265,2025-12-18 +City Hotel,0,279,2017,November,45,8,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.82,0,1,Check-Out,Lori Little,lgibson@example.com,+1-359-440-2161x4370,2707902991803031,2024-07-25 +City Hotel,1,145,2017,August,32,6,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,112.06,0,0,Canceled,Ashley Stevens,kevin01@example.net,(369)852-5963x176,4075519484866067,2024-12-25 +City Hotel,0,54,2017,September,36,6,2,1,3,0.0,0,HB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,73.0,179.0,0,Transient,190.7,0,1,Check-Out,Ashley Campbell,janicedixon@example.net,841.248.3157x8152,370128853961614,2024-06-20 +City Hotel,0,159,2017,April,18,29,0,1,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,117.39,0,0,Check-Out,Anna Snyder,stafforderin@example.com,(644)690-0389x1079,6011809329745614,2024-06-18 +City Hotel,1,35,2017,November,46,14,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,87.77,0,0,Canceled,Ryan Myers,matthewochoa@example.com,(879)259-6147x7814,4948906353889,2025-08-18 +City Hotel,0,198,2017,March,12,24,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,129.33,0,0,Check-Out,Alex Jones DVM,matthewespinoza@example.com,(733)505-2179,6571535085212927,2026-02-22 +City Hotel,0,89,2017,February,8,21,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.72,0,0,Check-Out,Michael Brooks,mariapatel@example.com,001-922-207-7748x2125,4406359264367001926,2024-12-20 +City Hotel,1,1,2017,May,19,9,1,0,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,G,A,0,No Deposit,14.0,179.0,0,Transient,92.82,0,0,Canceled,Terry Stokes,crawfordveronica@example.org,(865)580-1748,639015534675,2025-10-16 +City Hotel,0,444,2017,May,19,9,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,105.71,0,0,Check-Out,Adam White,kimberlyduarte@example.com,378.853.9806x79248,343618621717623,2025-01-04 +City Hotel,1,287,2017,June,24,16,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,A,0,No Deposit,2.0,179.0,0,Contract,44.21,0,2,Canceled,Lisa Johnson,epope@example.org,(584)229-2391x22356,4913227442072838,2024-08-14 +City Hotel,1,61,2017,November,47,18,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,212.2,0,1,Canceled,Wendy Webb,kim74@example.net,+1-875-359-7906x380,343230898704423,2024-10-27 +City Hotel,1,256,2017,March,10,7,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.9,0,1,Canceled,Kimberly Moore,shawjill@example.org,433.591.1983x324,3503296237545181,2024-07-19 +City Hotel,0,19,2017,June,23,6,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,81.01,0,1,Check-Out,Tammy Lee,holly82@example.net,(688)631-2882x98320,4986393364508985,2025-02-16 +Resort Hotel,0,1,2017,January,2,4,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,353.0,179.0,0,Transient,79.91,1,0,Check-Out,Alexander Hunt,brett55@example.com,8838447448,4342873155715542146,2024-04-06 +Resort Hotel,1,31,2017,February,7,13,0,1,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,175.54,0,0,Canceled,Sean Wilson,ejoseph@example.org,+1-539-629-2671,4272377524757,2025-07-23 +City Hotel,1,148,2017,March,9,1,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,7.0,179.0,0,Transient,129.93,0,0,Canceled,Garrett Robinson,moralesandrew@example.net,581.848.4423x42238,3551232976728622,2025-06-04 +Resort Hotel,0,15,2017,May,19,10,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,108.61,0,0,No-Show,Teresa Adams,nrodriguez@example.net,700.936.9042x6050,2720855621360595,2025-03-04 +City Hotel,0,2,2017,October,40,1,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,46.43,0,1,Check-Out,Dr. Gregory Arnold,kelsey73@example.net,(351)668-4473,4318893638364080,2024-03-30 +City Hotel,0,286,2017,September,39,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,43.96,0,0,Check-Out,Patrick Simpson,pmoore@example.org,(982)657-0656x32003,4093419908817390,2025-08-17 +Resort Hotel,1,198,2017,January,5,30,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,Refundable,11.0,179.0,0,Transient-Party,60.46,0,0,Canceled,Jennifer Lee,davidnichols@example.com,(520)491-4790x815,4117454720285783,2025-02-21 +Resort Hotel,0,157,2017,March,12,22,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,242.0,179.0,0,Transient,108.09,0,2,Check-Out,Michael Clay,jeremy94@example.com,+1-409-522-7172x44223,4745772712510532,2025-06-02 +City Hotel,0,3,2017,January,2,4,1,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,124.99,0,0,Check-Out,James Silva,amywatts@example.com,(292)279-1600x533,4397552843552666670,2024-04-07 +City Hotel,0,11,2017,October,40,6,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.66,0,1,Check-Out,Emily Bauer,brownveronica@example.net,(456)230-2385x099,4214585217512373909,2025-03-21 +City Hotel,0,159,2017,April,17,23,1,2,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,102.73,0,0,Check-Out,Katherine Andrade,danielkelly@example.org,805-496-7880,3531164023276104,2025-04-30 +Resort Hotel,0,157,2017,January,4,20,0,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,172.0,179.0,0,Transient-Party,162.94,0,1,Check-Out,Paul Cabrera,pcastro@example.org,929-218-7734x22037,38890524273273,2025-09-27 +Resort Hotel,1,0,2017,April,15,8,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,I,1,No Deposit,243.0,179.0,0,Transient,3.02,0,1,Canceled,Lisa Patterson,gabrielle90@example.org,929.951.7076,347322146292107,2025-11-25 +Resort Hotel,1,217,2017,May,20,19,1,6,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,119.26,0,1,Canceled,Jacqueline Chen,katherinewalters@example.net,(895)577-0483x215,5221295998127870,2025-08-18 +City Hotel,0,1,2017,November,45,6,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,86.9,1,1,Check-Out,Christopher Johnson,sonyareese@example.org,(437)839-1266,2694587369094654,2025-12-27 +City Hotel,0,14,2017,May,20,15,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,87.64,1,0,Check-Out,Laurie Carter,vthomas@example.net,+1-690-672-6310x6815,30562971034411,2024-07-18 +City Hotel,0,31,2017,March,11,14,0,3,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,98.06,0,0,Check-Out,Maria Sanford,kayla55@example.net,+1-944-345-2376x46831,4130500860854,2026-01-22 +City Hotel,1,163,2017,April,16,19,2,4,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,190.86,0,2,Canceled,Allen White,gfuentes@example.com,(651)665-6534,4375460102413,2024-05-16 +City Hotel,1,145,2017,February,9,24,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.74,0,0,Canceled,Richard Howard,ywatson@example.com,2925301327,3588108551592475,2025-08-02 +Resort Hotel,0,3,2017,June,24,15,0,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,44.31,1,0,Check-Out,Matthew Watson,opayne@example.org,8073142447,180008648972581,2026-03-08 +City Hotel,0,104,2017,January,5,31,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,104.73,0,0,Check-Out,Barbara Flores,carriemejia@example.org,870.245.8659x244,4757286998662,2025-08-27 +City Hotel,0,101,2017,February,6,3,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,84.68,0,2,Check-Out,Gary Marshall,johnsonevelyn@example.org,(360)593-0482,6503063990693928,2024-11-27 +Resort Hotel,0,160,2017,November,48,30,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,75.52,0,0,Check-Out,Stephanie Hoffman,kathleen87@example.net,547.608.4748,3515537881598190,2024-07-11 +Resort Hotel,0,16,2017,September,35,1,0,3,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,H,1,Refundable,14.0,222.0,0,Transient-Party,61.94,0,0,Check-Out,Lance Rose,kristenmoreno@example.org,001-618-487-4747,180003657437972,2024-09-11 +City Hotel,0,51,2017,August,32,5,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,I,1,No Deposit,13.0,69.0,0,Transient,1.04,0,0,Check-Out,Donald Franklin,timothy83@example.net,(371)532-9089x84157,4971367874602239686,2025-03-08 +City Hotel,0,253,2017,May,21,27,2,3,2,2.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,164.26,0,3,Check-Out,Shannon Jones,astone@example.net,924-411-0588x8828,180029220426523,2025-03-17 +Resort Hotel,1,381,2017,May,21,23,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,80.37,0,0,Canceled,Jennifer Avila,hoffmananna@example.com,580-265-6676x840,3579374936498710,2025-05-18 +Resort Hotel,1,207,2017,March,12,17,3,7,2,1.0,0,BB,FRA,Direct,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,92.12,0,3,Canceled,Francisco Gonzalez,richard07@example.com,626-260-1834,4020886878952399,2024-06-04 +City Hotel,0,3,2017,December,51,22,1,0,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,48.0,0,0,Check-Out,Kathleen Mooney,misty25@example.net,+1-732-651-4502x090,30072391792259,2026-02-04 +Resort Hotel,0,0,2017,August,35,30,2,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,250.0,179.0,0,Transient,57.52,1,0,Check-Out,Caleb Jackson,abowman@example.org,(343)410-7014,502066692067,2024-08-17 +Resort Hotel,0,16,2017,July,29,19,2,7,2,0.0,0,BB,IRL,Groups,GDS,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,83.46,0,1,Check-Out,James Ray,sethcrosby@example.net,+1-478-209-7281x0906,4619926370753,2025-06-11 +City Hotel,0,0,2017,June,26,30,0,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,128.9,0,3,Check-Out,Mason Chase,ckelly@example.com,527.830.6344,4690019640776982,2025-02-14 +City Hotel,1,73,2017,April,14,2,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.36,0,0,Canceled,Susan Mitchell DVM,nortonandrea@example.org,001-929-890-3948x11129,4515488947645135811,2024-10-30 +City Hotel,1,109,2017,December,49,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,17,Transient,87.64,0,0,Canceled,Steven Hull,austinpeterson@example.net,307-720-5158x533,6543563110337878,2024-05-01 +Resort Hotel,0,0,2017,September,37,16,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,37.19,1,1,Check-Out,Matthew Jones,brandonmorales@example.net,219-544-6881x3010,378964200089432,2025-05-22 +Resort Hotel,0,33,2017,November,47,19,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,218.0,0,Transient,49.62,0,0,Check-Out,Robert Cummings,tannertina@example.org,5869899036,6011378535522787,2025-01-02 +City Hotel,0,29,2017,June,24,11,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.76,0,1,Check-Out,Paul Ross,chenmargaret@example.net,5368162235,639081543584,2024-05-28 +Resort Hotel,0,203,2017,April,14,2,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,289.0,179.0,0,Transient,180.35,0,2,Check-Out,Emily Salazar,timothy73@example.net,(229)739-9874x0802,340699408238135,2024-03-27 +Resort Hotel,1,149,2017,January,4,21,4,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,244.0,179.0,0,Transient,129.32,0,0,Canceled,Michael Gibson,blakeevans@example.com,+1-425-945-6847x9917,4649518628689572,2025-01-28 +Resort Hotel,1,3,2017,March,10,8,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,170.05,0,0,Canceled,Tracy Martinez,alexander73@example.net,001-880-427-2419x875,4993471888803636,2024-07-26 +City Hotel,0,1,2017,December,52,27,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,230.56,0,0,Check-Out,Luke Johnson,andrewschristopher@example.net,001-625-967-3421x42677,180016156451633,2025-10-10 +City Hotel,0,18,2017,June,24,9,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,83.39,0,0,Check-Out,Adam Garcia,martinezhenry@example.org,710-457-7308,4515866715450783,2025-10-13 +City Hotel,1,24,2017,January,4,24,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.03,0,3,Canceled,Michael Graham,lfreeman@example.net,730-655-8186x382,4108733171394979827,2024-12-29 +City Hotel,0,285,2017,May,19,11,2,3,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,99.82,0,0,Check-Out,Corey Barrera,mosschristine@example.net,765.897.5107,372992084366614,2024-03-29 +Resort Hotel,0,1,2017,April,14,5,4,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,242.53,0,0,Check-Out,Steven Mayo,sarah61@example.net,(269)422-6842,4634497666085090538,2024-11-01 +City Hotel,0,279,2017,March,12,22,0,3,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.88,0,0,Check-Out,Shawna Green,aperry@example.com,(413)960-5797,576218025699,2024-07-01 +City Hotel,0,5,2017,November,46,17,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,82.36,0,1,Check-Out,Ashley Valentine,bjones@example.com,5234729534,4099469845830539,2026-03-21 +City Hotel,1,38,2017,November,45,8,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.74,0,0,Canceled,Gary Salazar,michaelramos@example.com,(704)976-3944,4025505408446,2025-09-25 +Resort Hotel,1,41,2017,April,16,16,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,2,No Deposit,16.0,179.0,0,Transient,222.08,0,3,Check-Out,Debra Jackson,derek08@example.org,(882)961-8679,3545312142440028,2025-12-04 +City Hotel,0,21,2017,January,4,25,1,7,2,0.0,0,BB,DEU,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.7,0,3,Check-Out,Joe Martinez,mckayrachel@example.org,+1-227-325-9984x986,6011850374354324,2024-05-07 +Resort Hotel,0,34,2017,October,41,10,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,276.0,179.0,0,Transient,52.77,0,0,Check-Out,Nicole Barron,curtischarles@example.com,675.356.2217x1467,6582681035860998,2024-06-23 +Resort Hotel,1,94,2017,January,2,8,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,245.77,1,1,Canceled,Jennifer Griffin,reidalicia@example.org,+1-380-650-5838,4951680440617,2024-11-13 +Resort Hotel,0,141,2017,November,48,28,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,111.91,0,1,Check-Out,Joseph Lane,riveraveronica@example.org,(321)389-4179x5758,4982266495672165,2025-11-06 +Resort Hotel,0,92,2017,September,35,2,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,129.0,179.0,0,Transient,43.31,0,0,Check-Out,Vanessa Morris,combstravis@example.org,+1-563-869-0766,3540686484791006,2025-01-26 +City Hotel,1,100,2017,November,45,8,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.82,0,0,No-Show,Courtney Baker,twalter@example.net,573-327-1458,4115866599840,2024-04-03 +Resort Hotel,0,249,2017,May,18,5,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Contract,62.16,0,2,Check-Out,Bradley Hansen,jason08@example.com,+1-873-225-1454,6568842532486129,2025-12-31 +City Hotel,0,20,2017,February,8,22,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,117.0,0,2,Check-Out,Mary Moss,pratteddie@example.net,(607)964-9037x91894,4511133319700012,2024-11-25 +Resort Hotel,1,42,2017,September,36,8,1,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,242.0,179.0,0,Transient,46.46,0,1,Canceled,Blake Bonilla,colehenry@example.org,5707454821,6011768457405708,2024-08-30 +City Hotel,1,11,2017,February,7,10,0,1,2,0.0,0,BB,,Online TA,Direct,1,0,0,A,D,2,No Deposit,12.0,179.0,0,Transient,128.94,0,2,No-Show,Adam Robinson,melissaturner@example.net,+1-349-475-9935x38496,3525647716791858,2025-06-01 +City Hotel,0,51,2017,June,22,2,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,86.48,0,2,Check-Out,Chelsea Garcia,valerie71@example.org,001-355-359-2214x63287,571771500295,2024-04-12 +City Hotel,1,188,2017,March,10,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,102.12,0,2,Canceled,Kevin Rose,zwilliams@example.org,(525)498-3913x50832,3560357248568867,2025-01-27 +City Hotel,1,393,2017,February,7,16,1,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,114.11,0,0,Canceled,Paige Collins,pgibson@example.org,659.816.6107,4613694725000286,2025-02-10 +City Hotel,0,22,2017,November,47,22,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,0,Transient,104.93,0,1,Check-Out,Christian Wagner,hvelez@example.net,843-799-2061x1048,4446351651365885,2025-07-30 +Resort Hotel,1,16,2017,July,29,14,1,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,292.0,179.0,0,Transient,94.96,0,0,Check-Out,Colleen Cox,charlesmartinez@example.org,382.395.7877x5507,30246704548117,2024-09-28 +City Hotel,0,60,2017,May,20,17,0,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Contract,133.16,0,2,Check-Out,Shawna Palmer,browneugene@example.net,+1-902-455-0843x23449,4442102006598745176,2025-08-21 +Resort Hotel,0,88,2017,June,23,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,83.0,179.0,0,Transient,83.51,0,0,Check-Out,Chelsea Ramirez,gordonjonathan@example.net,955.256.7070x9161,574844455497,2024-04-02 +Resort Hotel,1,108,2017,January,2,3,1,6,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,134.78,0,1,Canceled,Eric Kane,barberdiana@example.com,+1-746-209-4567,4931621926523324,2025-04-19 +City Hotel,1,42,2017,May,21,24,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,126.8,0,1,Check-Out,Bridget Walter,navarrokatrina@example.com,+1-994-783-0133x9590,4381707655155,2024-08-12 +City Hotel,1,127,2017,September,39,27,1,2,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,D,A,0,Non Refund,38.0,179.0,0,Transient,178.02,0,0,Canceled,Cynthia Shannon,rlittle@example.com,211-883-2410x2464,340408801578398,2026-02-23 +Resort Hotel,0,8,2017,December,52,23,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,1,No Deposit,318.0,179.0,0,Transient,60.57,0,1,Check-Out,Allen Stanley,amber57@example.com,249.489.0419,6011833449196821,2025-01-23 +City Hotel,0,105,2017,January,2,3,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,94.77,0,0,Check-Out,Derek Mcintosh,owatkins@example.net,(811)990-2441x361,180026567329450,2025-01-09 +City Hotel,1,17,2017,August,32,6,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.47,0,0,Canceled,Jeffrey Hernandez,raymondmurray@example.net,(568)477-2078,3532915584917892,2024-06-20 +City Hotel,0,32,2017,June,26,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,90.87,0,1,Check-Out,Katie Brown,cynthia47@example.net,983-356-1161x7338,213142200808072,2024-09-04 +City Hotel,1,300,2017,July,27,1,1,4,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,60.01,0,0,Canceled,Brent Wong,bassandrew@example.net,001-418-838-7833,3542547773349880,2024-10-19 +Resort Hotel,1,405,2017,December,50,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,94.0,179.0,0,Transient,75.91,0,0,Canceled,Jenny Carter,juliadavid@example.net,476.837.7306x03617,630461898722,2024-10-09 +Resort Hotel,0,13,2017,September,36,4,1,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,61.91,1,1,Check-Out,Kirk Moreno,amber65@example.org,4472732752,5586080130759536,2024-07-26 +Resort Hotel,0,104,2017,December,49,8,4,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient,91.17,0,0,Check-Out,Jeffrey Maldonado DDS,kellimedina@example.com,001-750-297-4990,30084975630797,2026-03-22 +Resort Hotel,0,14,2017,April,17,21,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,10.0,179.0,0,Transient,246.85,0,2,Check-Out,Colleen Brown,mary34@example.org,001-787-507-9191,4359356144798971018,2024-07-19 +City Hotel,0,54,2017,March,11,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,238.0,179.0,0,Contract,109.29,0,1,Check-Out,Derek Jones,bakerlisa@example.org,252-445-4677x521,30295928740604,2025-12-10 +City Hotel,0,34,2017,March,9,4,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,148.0,179.0,0,Transient,126.71,0,1,Check-Out,Darrell Oliver,cobbmelinda@example.org,891-943-8020,38269978149315,2024-12-09 +City Hotel,0,58,2017,November,45,9,0,4,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,127.05,0,2,Check-Out,Jenna Garcia,moorestephanie@example.com,491-891-6091,502042304191,2024-05-31 +City Hotel,0,15,2017,June,24,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.14,0,1,Canceled,Sherry Adams,matthew75@example.org,+1-497-953-9532,587505079802,2025-12-20 +Resort Hotel,0,45,2017,July,27,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,42.63,0,1,Check-Out,Richard Bailey,yballard@example.net,5868582713,3536619086328154,2025-01-01 +Resort Hotel,0,2,2017,June,25,20,0,5,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,42.0,179.0,0,Transient-Party,110.7,0,0,Check-Out,Kyle Gross,fryjason@example.org,669.351.9491x9996,3502747209603383,2025-05-06 +Resort Hotel,1,304,2017,September,36,5,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,Non Refund,239.0,179.0,0,Transient,43.0,0,0,Canceled,Jonathan Graves,christopher72@example.net,001-991-559-7781x46589,2393959882033085,2025-08-28 +Resort Hotel,0,7,2017,June,23,4,0,1,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,37.9,0,0,Check-Out,Eric Knox,briancameron@example.com,950.770.0782x819,4446424095018533,2025-06-02 +Resort Hotel,0,16,2017,December,51,19,2,5,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,234.0,179.0,0,Contract,102.16,0,2,Check-Out,Ethan Jones,christophersolis@example.org,+1-592-330-4658x863,3514857032700581,2024-10-06 +Resort Hotel,0,2,2017,June,26,28,0,7,3,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,50.89,0,0,Check-Out,Steven Thomas,rfrye@example.org,(848)370-9720,3527032371626913,2024-10-19 +City Hotel,1,151,2017,April,17,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,89.04,0,0,Canceled,John Cook,stephensrebecca@example.net,+1-847-298-4312x64738,346197198948207,2026-01-14 +Resort Hotel,1,12,2017,March,13,23,2,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,109.9,0,1,Canceled,Dennis Jones,angela08@example.net,+1-212-261-8079,3557818526606658,2024-10-04 +City Hotel,0,36,2017,August,32,6,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,95.41,0,1,Check-Out,Sarah Wheeler,fgilmore@example.org,974.885.1017x516,213159376001423,2024-12-25 +City Hotel,0,13,2017,February,6,8,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient-Party,131.89,1,0,Check-Out,Lauren Freeman,kelseyshaw@example.com,+1-383-642-6903x59110,30586371255144,2026-03-12 +City Hotel,0,60,2017,April,18,30,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,141.82,0,1,Check-Out,Brian Fuentes,jacqueline30@example.com,452-803-8829,4058101400444137677,2025-03-31 +City Hotel,1,259,2017,July,31,30,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.93,0,1,Canceled,Wanda Conley,erin77@example.org,971-662-1304x40488,4238048980916691,2025-03-04 +City Hotel,0,0,2017,November,47,23,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.51,0,0,Check-Out,Carol Thomas,garciasean@example.net,(996)910-5991x2376,3552762450119814,2026-01-13 +City Hotel,0,2,2017,January,2,7,0,1,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.84,0,2,Check-Out,Eric Fitzgerald,ablack@example.net,(470)257-8655,2278997303650194,2024-09-19 +City Hotel,1,91,2017,June,24,10,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,61,Transient,79.54,0,0,Canceled,Nicholas Fritz,oconnellmelissa@example.com,248-737-4690x64764,6011830122607454,2024-10-11 +Resort Hotel,1,2,2017,September,36,5,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,144.0,179.0,0,Transient,37.73,0,1,No-Show,John Diaz,omccullough@example.com,+1-704-440-8336x921,2278867205640520,2024-09-09 +City Hotel,0,103,2017,June,22,1,2,5,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,114.85,0,1,Check-Out,Harold Mckinney,christopherhernandez@example.com,(606)544-1622x03468,581924047193,2024-05-07 +Resort Hotel,0,43,2017,April,16,17,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,65.41,1,0,Check-Out,Patricia Vincent,pharris@example.com,595.747.7160x48057,4808082073117,2024-05-05 +Resort Hotel,1,257,2017,April,15,12,1,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,184.44,0,1,Canceled,Linda Rodriguez,jonesshannon@example.org,+1-684-845-4812,4765693239446139594,2025-02-08 +Resort Hotel,0,0,2017,November,44,3,0,2,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,130.0,76.0,0,Transient,37.09,0,1,Check-Out,Monica Smith,hferguson@example.net,257-409-8272,213197555356671,2025-03-16 +City Hotel,1,414,2017,January,4,26,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient-Party,83.68,0,0,Canceled,Selena Hopkins,vhill@example.com,001-703-318-8135,3512278258013447,2024-06-15 +Resort Hotel,1,141,2017,April,16,16,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,241.0,179.0,0,Transient,211.83,1,0,Canceled,Jonathan Sanchez,carterolivia@example.com,4397098803,4609551411287,2025-11-08 +Resort Hotel,0,81,2017,November,47,25,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,49.43,1,1,Check-Out,Valerie Howard,ronald95@example.org,628-464-4494x7661,3556522862790800,2025-12-11 +City Hotel,0,1,2017,February,5,1,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,103.94,0,2,Check-Out,Cheryl Blevins,lcarter@example.com,685-379-3470x97512,4081117611810,2025-02-02 +City Hotel,0,44,2017,April,15,11,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Check-Out,Tracie Wiley,lonniewallace@example.com,+1-379-742-4509x2030,3536105163540184,2024-12-11 +City Hotel,0,60,2017,March,10,10,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,Stephanie Cole,zlove@example.org,(728)450-2471,4549388520885816604,2025-10-21 +Resort Hotel,0,116,2017,September,37,14,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,61.04,1,1,Check-Out,Kelsey Baker,christopher60@example.org,763.266.8709x8904,213129946104577,2025-06-13 +Resort Hotel,0,240,2017,January,3,16,1,2,2,1.0,0,BB,CHE,Groups,Direct,0,0,0,G,F,1,No Deposit,246.0,179.0,0,Transient-Party,95.67,0,0,Check-Out,Stacy Myers,terricurtis@example.net,+1-739-547-2076,3588578893044098,2025-09-04 +City Hotel,1,2,2017,May,19,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,B,0,No Deposit,15.0,45.0,0,Transient-Party,106.77,0,2,No-Show,Xavier Parker,bsingh@example.org,(889)922-2898x7832,4261141500912,2025-03-27 +City Hotel,1,186,2017,February,6,4,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,188.09,0,2,Canceled,Joseph Cooper,erica09@example.com,7364758813,3539235403731793,2024-10-25 +City Hotel,0,41,2017,December,50,9,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.3,0,1,Check-Out,Jessica Gibson,sheltonlaura@example.org,+1-759-207-6595,30405038748203,2025-02-02 +City Hotel,0,23,2017,May,20,14,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,96.81,1,1,Check-Out,Rebecca Roberts,dawn19@example.net,2956398497,180002537950295,2026-01-22 +Resort Hotel,0,2,2017,March,13,25,4,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,230.62,0,2,Check-Out,Kathryn Jennings,ochandler@example.net,703.440.5294x1914,3597207250963455,2025-10-04 +City Hotel,1,156,2017,February,9,25,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,134.0,179.0,0,Transient,120.08,0,0,Canceled,Chris Levy,donaldbrown@example.com,+1-870-882-0680x863,30110733194592,2025-12-09 +Resort Hotel,0,15,2017,August,33,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,158.75,1,1,Check-Out,Mary Torres,jbartlett@example.com,(713)413-0716,2706099402604230,2024-09-13 +City Hotel,0,394,2017,January,3,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,91.04,0,0,Check-Out,Robert Smith,fjones@example.com,556-705-6987,3585611091283318,2025-05-08 +City Hotel,1,157,2017,April,14,5,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,0,Transient,234.38,0,0,Canceled,Douglas Watkins,gloria33@example.net,+1-626-390-9014x89754,4909214651422,2025-10-05 +City Hotel,0,9,2017,August,35,29,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,85.26,0,1,Check-Out,Eric Jordan,christopher29@example.net,999-547-5633,6011362602798520,2026-03-01 +Resort Hotel,1,16,2017,August,34,22,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,169.77,0,0,Canceled,April King,hamiltonamy@example.net,923.356.9910,3599982843088428,2024-10-01 +Resort Hotel,0,201,2017,June,25,17,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,102.31,0,3,Check-Out,Douglas Trevino,floresheather@example.com,4723645629,4772128384942469979,2026-03-08 +City Hotel,1,58,2017,August,34,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient,87.51,0,1,No-Show,Patricia Moore,ybrown@example.org,(821)406-9437,4415885163771577287,2024-11-14 +Resort Hotel,0,85,2017,August,35,26,0,2,2,0.0,0,HB,DEU,Groups,Direct,0,0,0,A,A,1,No Deposit,343.0,179.0,0,Transient-Party,98.75,0,0,Check-Out,Devin Ferrell,wallerbarbara@example.org,504.764.8782x787,4775504811881306132,2024-10-23 +City Hotel,0,101,2017,March,10,10,0,2,3,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.95,0,1,Check-Out,Kevin Miller,shelly83@example.com,+1-865-482-3630,676389034155,2026-01-14 +City Hotel,1,262,2017,November,45,6,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,107.9,0,0,Canceled,John Gomez,joshuabradley@example.com,777.889.2838x812,4463354991663165,2025-07-30 +Resort Hotel,1,29,2017,April,16,19,2,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,L,F,0,Non Refund,12.0,179.0,0,Transient,214.28,0,0,Canceled,Mandy Henderson,marcrose@example.net,(231)416-5695,3554031981676686,2025-06-02 +City Hotel,0,41,2017,July,27,1,1,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,101.58,1,0,Check-Out,Annette Green,oramos@example.org,(367)896-9917,4415285845505930289,2025-08-08 +Resort Hotel,0,51,2017,August,31,4,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,236.0,179.0,0,Transient,84.27,0,3,Check-Out,Eric Elliott,tony44@example.org,001-546-894-8711x2567,4310437688590,2025-04-19 +Resort Hotel,0,185,2017,March,10,2,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,230.44,1,1,Check-Out,Erica Lane,jford@example.org,(577)843-5765,4486340094589251,2025-02-11 +Resort Hotel,0,1,2017,August,32,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,2.74,0,2,Check-Out,Christina Taylor,pmcgee@example.org,(318)835-9249,6011923198308030,2026-02-08 +Resort Hotel,1,0,2017,March,14,30,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,67.0,0,Transient,73.21,0,0,Canceled,Elizabeth Miller,tmitchell@example.org,+1-616-712-6681x82392,373139757979799,2025-02-12 +City Hotel,0,35,2017,October,42,17,1,2,3,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,74.91,1,0,Check-Out,Lori Gardner,donaldrice@example.net,564.792.2920x679,213144863564158,2026-03-06 +City Hotel,1,107,2017,October,42,19,1,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.03,0,1,Canceled,Shawn Kim,alexandra09@example.net,735.394.0539x8655,4431025038717989457,2024-10-20 +Resort Hotel,0,205,2017,February,5,1,4,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,143.04,0,1,Check-Out,Jeremy Edwards,brandyrogers@example.com,6616163894,3577520213975802,2025-11-28 +Resort Hotel,0,72,2017,January,2,7,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,155.93,0,1,Check-Out,Michelle Mcdonald,annlawrence@example.net,830-324-9372,30109668603437,2024-10-10 +City Hotel,0,2,2017,April,17,24,0,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,217.3,0,0,Check-Out,Jason Jenkins,michael82@example.com,(888)422-7532,36744644751621,2024-09-22 +City Hotel,1,160,2017,May,19,9,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,135.86,0,0,Canceled,Justin Bernard,samuelbullock@example.org,(912)405-6907x6476,4849893328116046,2025-06-06 +Resort Hotel,0,4,2017,June,24,16,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,197.0,179.0,0,Transient,45.41,0,0,Check-Out,Peter Gilbert,hensleyjacob@example.net,+1-524-254-8466x3084,4425010964691859,2025-11-09 +Resort Hotel,1,83,2017,August,32,8,1,2,2,2.0,0,BB,PRT,Groups,Direct,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,176.27,0,0,Canceled,David Hunt,andersonkayla@example.net,+1-213-421-4233x45375,372696550263102,2026-01-26 +Resort Hotel,0,11,2017,April,17,23,0,2,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,E,G,1,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,Joshua Cunningham,zlong@example.org,001-419-603-2441x332,4790366520759,2025-06-12 +City Hotel,0,1,2017,August,32,5,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,2.5,0,1,Check-Out,Pedro Long,adrian19@example.com,001-557-478-3379x37086,4214062672667643,2024-11-14 +Resort Hotel,1,17,2017,September,37,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,F,0,No Deposit,236.0,179.0,0,Transient,50.79,0,1,Canceled,Aaron Aguirre,jose76@example.com,001-488-352-4967,6581588660989508,2025-10-24 +Resort Hotel,1,41,2017,November,44,3,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,228.52,0,0,Canceled,Julia Brown,melissaanderson@example.com,413-820-8154,6546098721073858,2024-06-08 +City Hotel,0,45,2017,February,7,16,0,4,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.32,0,2,Check-Out,Ronald Santos,vblack@example.org,001-850-901-9684,3562360128773969,2024-09-28 +Resort Hotel,0,90,2017,January,2,1,4,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,I,0,No Deposit,240.0,179.0,0,Transient,88.21,1,2,Check-Out,Brent Roberts,ewatkins@example.com,575.961.6814,3557108414543845,2025-01-04 +City Hotel,0,145,2017,March,9,3,2,6,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,90.06,0,1,Check-Out,Mr. Antonio Yang,charles13@example.com,+1-554-474-0140x5254,060441200072,2025-05-28 +Resort Hotel,1,315,2017,July,28,11,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,63.58,0,0,Canceled,Nancy Brown,cristinaphillips@example.com,(235)909-2636x9036,4044557705491581596,2026-01-14 +City Hotel,0,1,2017,May,19,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,0.0,0,3,Check-Out,Charles Yang,ojohnson@example.com,463.903.2718x4383,38616016342627,2026-03-03 +City Hotel,0,12,2017,April,14,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,63.21,0,0,Check-Out,Danny Lowe PhD,garrettmichael@example.com,(807)208-6044x297,30225146791220,2026-02-24 +City Hotel,0,55,2017,September,38,19,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,42.14,0,2,Check-Out,Eric Hays,felicia80@example.com,546.711.7386,3507537707137652,2025-03-30 +City Hotel,1,385,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,40,Transient-Party,84.46,0,0,Canceled,John Watts,ibarnes@example.com,263-915-5930x41861,4149946198166361931,2024-06-11 +City Hotel,0,58,2017,May,21,21,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,113.02,0,1,Check-Out,Aaron Munoz,darin83@example.org,+1-367-328-0950x4837,4041803666351770,2024-08-25 +Resort Hotel,1,41,2017,April,14,4,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,202.46,0,2,Check-Out,Brent Harris,stephenwilliams@example.net,+1-629-406-3147x91439,675959741512,2025-05-31 +Resort Hotel,0,36,2017,April,14,1,3,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,335.0,179.0,0,Transient,206.73,0,0,Check-Out,Ross Wallace,jamesobrien@example.net,677-751-3824x44293,213159411735217,2025-02-04 +City Hotel,1,12,2017,February,6,4,0,2,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,93.21,0,2,Canceled,Bryan Sullivan,danarusso@example.org,462-266-5754x017,3573808605722708,2026-02-01 +City Hotel,0,16,2017,November,47,24,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.97,0,1,Check-Out,Dr. Sarah Payne,michael48@example.net,+1-444-303-0205x594,3586470486600449,2024-08-31 +Resort Hotel,1,150,2017,April,17,29,2,0,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,81.78,0,0,Canceled,Melanie Villarreal,hughesalexis@example.org,210-267-9433x2031,3570177670861426,2024-11-24 +Resort Hotel,1,1,2017,October,42,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,44.01,0,0,Canceled,Jessica Fields,lindsay41@example.com,001-465-623-2113x2304,30513950911699,2024-07-25 +City Hotel,0,26,2017,September,36,3,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,8.0,179.0,0,Transient,109.74,0,2,Check-Out,Robert Sandoval,wgraves@example.com,514-491-7179x2339,3542704441166507,2024-09-30 +City Hotel,1,211,2017,April,17,26,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient,82.4,0,2,No-Show,Patrick Payne,qrodriguez@example.org,001-753-658-1619x2036,4529592602951,2024-12-21 +City Hotel,0,0,2017,November,46,16,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,33.8,0,0,Check-Out,Dylan Contreras,newmanbeth@example.org,807-452-8911,4643024181597340,2026-02-16 +Resort Hotel,0,94,2017,November,46,12,2,4,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,134.0,179.0,0,Transient,111.03,0,0,Check-Out,Katherine Contreras,valdezkelly@example.com,(711)371-3223x3168,3540693989227999,2024-09-13 +City Hotel,0,196,2017,July,28,12,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.41,0,0,Check-Out,Michael Rodriguez,ashleyguerrero@example.org,+1-316-832-7154x92765,180024099139695,2025-11-23 +Resort Hotel,1,91,2017,April,14,3,0,3,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,251.0,179.0,0,Transient,170.37,0,0,Canceled,Jeffery Johnson,mariahunter@example.net,001-703-850-0869x74462,344751902261489,2025-02-17 +City Hotel,0,0,2017,September,38,22,1,2,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,57.01,1,0,Check-Out,Justin Smith,sheliaedwards@example.com,532-603-8435x40974,3591475759017604,2024-08-02 +City Hotel,0,28,2017,June,25,18,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,89.78,0,3,Check-Out,Matthew Barry,ann01@example.org,917-388-0071x9210,4832718664541300,2024-12-27 +City Hotel,1,5,2017,June,25,22,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,109.06,0,0,No-Show,Amanda Meadows,iwells@example.com,391-282-3860x420,30399515488609,2025-01-16 +City Hotel,0,394,2017,March,12,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,61.18,0,0,Check-Out,Julie Sharp,uterry@example.com,2698547394,3570056169647324,2025-06-26 +Resort Hotel,1,14,2017,June,24,12,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,232.0,179.0,0,Transient-Party,68.23,0,0,Canceled,William Howard,james90@example.net,964-681-8898,4733708738890262,2025-08-25 +City Hotel,0,147,2017,February,8,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,106.12,0,1,Check-Out,Kathy Bailey,maldonadojuan@example.com,415.377.2385,213171818793541,2025-09-01 +Resort Hotel,0,145,2017,May,18,1,1,0,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,F,1,Refundable,11.0,179.0,0,Transient-Party,80.84,0,1,Check-Out,Jeanette Brown,alexis80@example.net,629.910.6699,180086980615521,2025-05-05 +City Hotel,1,117,2017,March,13,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.01,0,0,Canceled,Heather Ball,anthonypham@example.net,393-277-7573x05962,4035928273392,2026-01-10 +City Hotel,1,393,2017,May,18,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,94.55,0,0,Canceled,Mike Buchanan,garrettreid@example.com,477-916-7263x324,3554252531151182,2025-07-09 +Resort Hotel,1,356,2017,September,37,16,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,313.0,179.0,0,Transient-Party,79.63,0,0,Canceled,Phillip Turner,maria99@example.com,(410)858-6830,6589778323597622,2024-09-17 +City Hotel,1,33,2017,December,49,5,1,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,24.0,179.0,0,Transient,154.58,0,1,No-Show,Thomas Brewer,angela40@example.org,001-701-555-5015x538,4089395510197197,2025-06-04 +City Hotel,1,20,2017,March,12,18,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.59,0,1,Canceled,John Hopkins,stevenking@example.org,893-548-6476,4388748458788,2024-11-07 +Resort Hotel,1,19,2017,April,14,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,49.05,0,1,Canceled,Tammy Rowe,jbowman@example.com,217-221-9158x792,6557763061748874,2025-11-05 +Resort Hotel,0,0,2017,March,9,4,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,125.33,1,1,Check-Out,Beverly Nguyen,aliciamcfarland@example.org,+1-668-372-6419,6511451877783757,2025-11-20 +Resort Hotel,1,46,2017,March,13,27,1,2,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,221.96,0,0,Canceled,Hannah Williamson,lflores@example.com,001-374-536-2712,3568166888337406,2025-09-14 +City Hotel,1,384,2017,January,4,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,106.88,0,0,Canceled,Andrew Christian,huertaangela@example.com,714.659.1932x2798,3538191668320858,2024-04-29 +City Hotel,1,51,2017,July,28,11,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,82.79,0,1,No-Show,Brent Rodriguez,caldwelldavid@example.net,366-212-1569,4586029523820,2025-07-30 +City Hotel,0,86,2017,December,51,19,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,271.0,230.0,0,Transient,100.76,0,0,Check-Out,Karen Wolf,smithjohn@example.org,+1-385-311-9766x4967,4498870507482,2024-12-17 +City Hotel,0,101,2017,April,14,8,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,216.0,0,0,Check-Out,Dr. Morgan Young,sarah78@example.org,001-361-740-0456,342792075542406,2025-01-03 +Resort Hotel,0,15,2017,December,49,4,1,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,133.18,0,2,Check-Out,Carrie Stafford,vgrimes@example.com,643.467.1528x326,2251027320186617,2024-05-16 +Resort Hotel,1,15,2017,October,42,18,1,0,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,331.0,0,Transient,30.36,0,0,Canceled,Jennifer Brown,kristirios@example.net,(892)426-6400x91417,630455443162,2025-11-16 +City Hotel,0,2,2017,November,46,11,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,45.0,0,Transient,115.12,0,0,Check-Out,Ashley Bradford,brentcampos@example.org,(663)720-1901x909,4475930502737,2025-02-08 +Resort Hotel,0,34,2017,January,4,21,1,1,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,177.03,1,0,Check-Out,Phillip Obrien,gibsonbryan@example.net,+1-667-865-9296x671,3586649797679180,2024-09-19 +City Hotel,0,33,2017,January,4,21,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient,78.74,0,0,Check-Out,Tammy Morris,lamroger@example.net,697.368.4574,6011804045010500,2024-12-10 +Resort Hotel,0,19,2017,September,36,5,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,43.52,0,0,Canceled,Jamie Zhang,sheilaharris@example.net,(751)573-0717,2254310550244208,2025-09-30 +City Hotel,0,48,2017,June,23,9,0,1,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,84.24,0,0,Check-Out,Christina King,pgray@example.com,(263)330-9800x265,30451308388676,2025-10-09 +City Hotel,0,58,2017,May,19,9,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,64.09,0,1,Check-Out,Dustin Harris,danieladams@example.com,+1-709-890-5589,6011195623532225,2024-11-17 +City Hotel,0,1,2017,July,27,5,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,98.85,0,0,Check-Out,Robert Stokes,cantrellvictoria@example.org,955.938.7214,4717152872896,2025-01-30 +City Hotel,0,15,2017,December,52,23,1,1,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.95,0,0,Canceled,Kevin Soto,xsmith@example.net,2082286390,3531238895659165,2026-01-31 +Resort Hotel,0,189,2017,August,31,1,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,240.0,179.0,0,Transient,52.88,0,2,Check-Out,Christina Patrick,shawnanderson@example.net,366.447.4682,3581589206496294,2026-02-07 +City Hotel,0,35,2017,September,36,9,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,124.8,0,0,Check-Out,Heather Russell,marieneal@example.com,(979)976-5301,4199154683671356,2026-03-23 +Resort Hotel,0,0,2017,December,52,23,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,1,A,A,0,No Deposit,77.0,179.0,0,Transient,50.96,1,1,Check-Out,Andrea Lopez,eileenortiz@example.com,7094345746,6011292949739152,2024-07-20 +City Hotel,0,55,2017,November,46,14,0,1,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,112.48,0,2,Check-Out,Susan May,kirkjackson@example.com,001-532-508-0256x133,4034393897348018,2024-09-03 +City Hotel,1,161,2017,July,29,19,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,81.01,0,0,Canceled,Ronnie Hudson MD,anitawise@example.net,001-765-376-1040x5871,4190882226178419,2025-08-10 +Resort Hotel,0,42,2017,April,15,14,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient-Party,132.29,0,1,Canceled,Luke Hansen,rnewman@example.net,001-639-723-4186x86742,4005624284837175562,2025-04-03 +Resort Hotel,0,32,2017,May,21,24,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,240.0,179.0,0,Contract,114.25,0,1,Check-Out,Austin Patterson,michael10@example.net,001-705-964-1650,3598346947565569,2024-11-30 +City Hotel,1,13,2017,March,13,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,142.44,0,0,Canceled,Benjamin Miller,kelseyfrancis@example.org,743-674-8322,6011461447628973,2025-12-03 +Resort Hotel,0,249,2017,April,15,9,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,156.57,1,1,Check-Out,Elizabeth Wilson,michael88@example.com,238-700-6946x66704,30324945011193,2025-02-01 +Resort Hotel,0,77,2017,December,51,19,2,6,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,70.59,1,0,Check-Out,Kyle Rivera,jbruce@example.net,001-771-388-6689x265,5539099339315138,2025-12-29 +City Hotel,1,119,2017,January,3,14,0,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.75,0,0,Canceled,Todd Nielsen,josepena@example.net,425.820.2366x1912,4991374614188268,2025-06-29 +City Hotel,1,10,2017,January,2,8,2,6,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.52,0,2,Canceled,Michael Jones,claychristopher@example.net,(998)382-6430x23721,5574761637802747,2025-10-25 +City Hotel,0,105,2017,December,49,8,0,1,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.98,0,2,Check-Out,Tracy Jones,bellsusan@example.net,(573)736-4722,2263596099553294,2025-01-30 +Resort Hotel,0,11,2017,September,35,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,47.0,0,2,Check-Out,Sarah Frederick,bdiaz@example.net,639.728.2883,4201287443417722,2025-12-24 +City Hotel,1,148,2017,March,10,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,106.58,0,0,Canceled,Jennifer Brown,brendamiller@example.net,001-238-476-0329x914,4210882428123250,2025-10-03 +City Hotel,1,149,2017,December,49,3,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.24,0,1,Canceled,Ashley Ruiz,hoopernancy@example.net,001-742-739-5289x66999,30486604429956,2026-03-27 +City Hotel,0,14,2017,February,8,21,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.3,1,1,Check-Out,Deborah Johnson,caleb79@example.com,213.524.3365x71673,3525508038449494,2025-05-24 +Resort Hotel,0,156,2017,May,21,25,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,136.0,179.0,0,Transient,64.05,0,0,Check-Out,Dean Cook,deniselopez@example.net,(473)831-7841,4700041214599689,2026-02-12 +City Hotel,0,42,2017,December,52,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.21,0,1,Check-Out,Brenda Payne,hillmelissa@example.net,2485591313,180032943628631,2026-03-16 +City Hotel,1,31,2017,April,15,15,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,6.0,179.0,0,Transient-Party,230.6,0,1,Canceled,Tammy Alvarado,pachecoanna@example.net,289.896.5599x76791,4358043019071075,2026-02-22 +Resort Hotel,1,0,2017,June,24,10,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,162.68,0,0,Canceled,Cynthia Jones,kennedyevan@example.com,(903)964-6009,3536415650064766,2025-06-27 +City Hotel,1,199,2017,August,32,5,0,4,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.39,0,0,Canceled,Sue Warner,krista48@example.net,735.864.4848x789,371728388771526,2024-07-25 +Resort Hotel,0,35,2017,July,27,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,275.0,179.0,0,Transient-Party,42.3,0,2,Check-Out,Amanda Zavala,qnelson@example.org,6398790645,5583271264600124,2024-05-28 +Resort Hotel,0,2,2017,September,39,23,0,2,3,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,240.65,1,3,Check-Out,Linda Salazar,johnstongrant@example.org,(809)264-8474x5156,6560842737182521,2024-08-25 +Resort Hotel,1,81,2017,April,15,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,112.78,0,1,Canceled,Juan Potts,ireed@example.org,001-709-277-5373x893,38993192374405,2024-03-30 +City Hotel,1,1,2017,July,27,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,47.87,0,1,No-Show,Andrew Johnson,bdouglas@example.org,001-857-586-4810x737,341596252719526,2024-06-22 +Resort Hotel,0,9,2017,December,49,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,104.46,1,1,Check-Out,Marie Reynolds,kellyleah@example.org,001-586-691-0057x9648,30158017086893,2025-12-29 +City Hotel,1,189,2017,December,49,8,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.99,0,1,Canceled,Samuel Mata,nmitchell@example.net,001-341-814-3376x6699,4053700924751,2025-06-03 +City Hotel,0,13,2017,June,23,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,14.0,45.0,0,Transient,54.05,0,2,Check-Out,Anthony Ayala,sean29@example.org,522.343.9762x397,30174344384000,2025-08-07 +City Hotel,1,11,2017,January,2,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,187.0,179.0,0,Transient,104.03,0,0,Canceled,Kimberly Dalton,maurice56@example.net,+1-911-750-2381x8446,4620737477936,2025-12-04 +City Hotel,0,108,2017,November,48,28,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,96.66,1,0,Check-Out,Nancy Tran,parkamy@example.com,434.704.4011,501868554046,2025-04-19 +Resort Hotel,0,94,2017,November,45,5,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,74.42,0,0,Check-Out,Ralph Dominguez,smithmatthew@example.net,2796691476,4090570370077625,2024-08-02 +Resort Hotel,1,2,2017,August,32,7,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,43.88,0,0,Canceled,Jeffery Taylor,andersonjason@example.org,+1-592-984-6178x80413,4204800573476449675,2024-08-28 +City Hotel,1,428,2017,June,23,4,2,4,1,0.0,0,BB,PRT,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.75,0,1,No-Show,Steven Haas,jane49@example.net,001-680-614-3555x095,4530877488192479,2024-08-28 +City Hotel,1,35,2017,April,15,14,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,98.41,0,0,Canceled,Cory Kim,kristen00@example.org,649-595-2598x64924,6512202729917765,2025-03-23 +City Hotel,0,3,2017,April,18,27,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,B,2,No Deposit,14.0,179.0,0,Transient,145.23,1,1,Check-Out,David Chapman,darren06@example.net,+1-292-529-3746x64875,676140231041,2025-11-06 +City Hotel,0,1,2017,August,34,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,118.83,0,2,Check-Out,Paul Beasley,tstrong@example.net,001-725-794-1405x759,3542277613959405,2025-10-23 +Resort Hotel,0,155,2017,March,12,23,4,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,124.25,0,2,Check-Out,Laura Ritter,kimberly09@example.com,+1-365-713-1280x151,4728952353706943,2025-09-12 +City Hotel,0,51,2017,June,25,20,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Contract,161.43,0,1,Check-Out,Nathan Hess,knorris@example.com,885.936.0384,345107311251323,2024-11-02 +Resort Hotel,1,52,2017,April,17,23,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,8.0,179.0,0,Transient-Party,252.0,0,1,Canceled,Cameron White,dwashington@example.com,(774)319-2465x941,060470021068,2025-11-14 +City Hotel,0,50,2017,November,46,13,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,102.11,0,0,Check-Out,Gregory Rios,stephaniekrueger@example.net,412.922.2909x57502,4946736926287796,2024-08-06 +Resort Hotel,0,18,2017,March,12,19,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,121.77,0,0,Check-Out,Eduardo Obrien,mathewanderson@example.net,001-819-675-6093x37732,4753704203739868916,2025-08-21 +City Hotel,0,87,2017,April,17,29,1,4,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,123.3,0,2,Check-Out,Bryan Jones,duffycody@example.net,786.729.7128x405,4903219778268951356,2025-12-12 +City Hotel,0,148,2017,December,51,17,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,83.78,0,0,Check-Out,Joshua Simpson,johnsonhannah@example.com,823-627-2970x278,3577528749206881,2026-02-22 +City Hotel,1,143,2017,April,16,19,0,3,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,252.0,0,2,Canceled,Heather Herman,josephstevens@example.net,001-513-931-6145,4256800112959,2024-09-23 +City Hotel,0,2,2017,November,47,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,92.97,0,1,Check-Out,Micheal Pugh,wagnerlori@example.org,471-855-8992x540,4555776607868672,2025-09-18 +City Hotel,1,307,2017,September,36,3,1,4,2,0.0,0,BB,PRT,Online TA,Corporate,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,72.29,0,0,Canceled,Eileen Valdez,gregoryeric@example.org,527-818-6414x5373,180004939571703,2024-04-09 +City Hotel,1,163,2017,March,11,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,148.41,0,2,Canceled,Debra Wolfe,kimberly97@example.com,860.620.4025x13457,060403082443,2026-02-02 +Resort Hotel,1,26,2017,April,15,9,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,186.92,0,0,Canceled,Amy Mccullough,xwright@example.com,+1-688-371-9919,4781400503802,2026-02-25 +City Hotel,0,245,2017,March,11,15,2,5,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.47,0,2,No-Show,Lisa Ramirez,sarahsweeney@example.com,301-745-0616,180062936524422,2024-08-18 +City Hotel,0,20,2017,December,51,19,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,27.0,179.0,0,Transient-Party,91.16,0,3,Check-Out,Chad Daugherty,susan55@example.com,3726919606,2720617658924838,2025-04-07 +Resort Hotel,0,0,2017,June,26,28,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,185.0,0,Transient,132.59,0,0,Check-Out,Patrick Clark,martingutierrez@example.com,394-282-2027x7544,6011757441948162,2025-04-06 +City Hotel,0,1,2017,May,21,21,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,A,0,No Deposit,12.0,45.0,0,Contract,136.3,0,0,Check-Out,Robert Thomas,xmcdowell@example.org,001-693-358-5227,3597601502134115,2026-03-14 +City Hotel,1,376,2017,August,35,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,94.46,0,0,Canceled,Melissa Santos,rgill@example.net,(947)319-9212x8185,6011522942557130,2025-09-24 +City Hotel,1,320,2017,December,2,31,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.23,0,0,Canceled,Brian Porter,qwarren@example.com,(231)503-0103x3997,4123309288906,2024-07-06 +Resort Hotel,1,148,2017,March,13,31,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,139.0,179.0,0,Transient,207.02,0,0,Canceled,Donald Cruz,nancy87@example.org,315-357-9536x42137,6514654937247021,2024-10-15 +City Hotel,0,106,2017,January,3,15,1,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,86.81,0,1,Check-Out,Angela Ramirez,bradybrown@example.com,001-856-899-7150x8407,3508102702717864,2024-09-29 +City Hotel,1,0,2017,December,50,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,48.25,0,0,No-Show,Kathleen Roy,jose45@example.org,+1-279-517-8374x643,30071251975251,2024-09-19 +City Hotel,1,53,2017,April,14,5,2,2,3,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,Andrew Harris,justinhowell@example.com,(272)330-0791x54606,4921332109982046,2024-05-20 +Resort Hotel,0,88,2017,March,11,12,1,5,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient,187.34,0,0,Check-Out,Jeffrey Williams,brendareid@example.net,648-227-2200x69787,4275202167621632,2025-12-01 +Resort Hotel,1,153,2017,September,36,5,2,3,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,D,1,Non Refund,28.0,179.0,0,Transient,32.94,0,0,Canceled,Joshua Bailey,keith04@example.org,001-408-264-6752x80754,4007682440807576,2025-03-06 +City Hotel,0,6,2017,December,49,8,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.44,0,0,Check-Out,Lee Barry,nathan56@example.org,742-996-9988,4238462033967157,2025-08-24 +Resort Hotel,0,0,2017,July,30,23,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,65.23,1,1,Check-Out,Susan Patrick,timothysimmons@example.com,+1-693-283-4138x1391,4956122294415,2024-10-26 +City Hotel,0,12,2017,September,37,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,300.0,179.0,0,Contract,88.36,0,1,Check-Out,Nicole Peterson,farrellalexandra@example.net,(245)768-1259x401,3582291900992327,2026-02-09 +City Hotel,0,51,2017,October,43,25,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,2,No Deposit,14.0,179.0,0,Transient,125.44,0,3,Check-Out,Jessica Patterson,mwong@example.net,388.329.7236,4493076909945509,2024-09-29 +City Hotel,0,17,2017,November,45,5,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,77.74,0,0,Check-Out,Nancy Brown,xfoley@example.net,+1-657-377-9512,3579416848435924,2025-03-03 +City Hotel,1,43,2017,July,29,15,1,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,55.5,0,0,Canceled,James Griffith,mark42@example.org,498.443.3982x1041,4313520962658,2024-07-23 +Resort Hotel,0,15,2017,October,41,13,2,5,2,0.0,0,HB,GBR,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,140.0,179.0,0,Transient,34.18,0,0,Check-Out,Shannon Hurley,ortegajohn@example.net,950-264-4234x168,5314220178931634,2025-09-09 +Resort Hotel,1,321,2017,June,23,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,77.5,0,0,Canceled,Kenneth Carroll,keithgilbert@example.net,(481)216-7502,676113464355,2025-08-11 +City Hotel,0,98,2017,December,2,30,0,4,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,102.55,0,2,Check-Out,Carla James,dboone@example.net,001-699-424-6076x26327,5128116431859222,2025-12-28 +Resort Hotel,0,1,2017,September,38,17,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,54.31,0,0,Check-Out,Tammy Anderson,milleradam@example.org,001-556-412-8539x3311,060481869679,2025-01-04 +Resort Hotel,0,29,2017,September,35,3,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,No Deposit,329.0,179.0,0,Transient-Party,48.09,1,1,Check-Out,Robert Tapia,yalexander@example.com,9088205810,36031682109684,2025-06-13 +City Hotel,0,154,2017,February,8,22,2,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,125.52,0,2,Check-Out,David Daniels,shelley36@example.org,+1-338-813-6029x196,3593663512079163,2024-10-05 +City Hotel,0,2,2017,May,21,20,2,0,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,3.32,0,0,Check-Out,James Gilbert,amy09@example.net,985-776-2472,3580384425414612,2025-03-14 +City Hotel,0,2,2017,August,34,21,1,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient,79.79,0,1,Check-Out,Matthew Patton,cassandra71@example.com,+1-381-290-8154x85003,6011032373042966,2025-07-20 +City Hotel,0,46,2017,November,46,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,77.0,179.0,0,Transient,110.51,0,0,Canceled,Lisa Martinez,gabrielleberry@example.com,+1-927-773-1640,4694181325634912388,2026-03-23 +Resort Hotel,0,157,2017,December,49,8,1,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,137.71,0,0,Check-Out,Erica Baker,mking@example.org,(663)640-0034x094,4266089568664280529,2024-05-24 +City Hotel,0,0,2017,June,25,22,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,62.14,0,0,Check-Out,Joel Gonzales,kimberly68@example.net,001-789-547-3197x8878,2387523866803810,2024-08-05 +City Hotel,0,41,2017,August,35,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,66.0,0,Transient-Party,85.88,0,0,Check-Out,Vincent Castillo,jenniferbutler@example.com,395.968.2371,4662550161680041,2025-10-13 +Resort Hotel,0,12,2017,May,20,13,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,17.0,179.0,0,Transient,113.51,1,0,Check-Out,Claudia Brown,haynesalicia@example.com,(576)239-5321x151,3558930237468010,2025-12-02 +Resort Hotel,0,10,2017,January,2,7,0,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,125.65,0,0,Check-Out,Destiny Bishop,ureyes@example.com,001-827-446-6499x89595,3597345699006880,2025-05-07 +City Hotel,0,1,2017,April,16,20,0,1,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,134.63,0,1,Check-Out,Austin White,fernandezjaime@example.net,375.214.3428x66192,3532736430299149,2025-11-21 +Resort Hotel,0,4,2017,January,2,2,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Group,47.26,0,1,Check-Out,Desiree Booth,kwalters@example.net,(799)757-2293,180006860864981,2026-02-15 +City Hotel,0,31,2017,July,30,26,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.85,0,1,Check-Out,Mark Thomas,steinsergio@example.net,736.905.3698,4563365183170,2025-01-28 +Resort Hotel,0,3,2017,March,10,6,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,239.0,179.0,0,Transient,106.55,0,1,Check-Out,Amber Wilson,bowmananthony@example.com,7433023854,30142571410442,2026-01-29 +City Hotel,1,107,2017,April,14,5,0,2,2,2.0,0,BB,ESP,Online TA,Direct,0,0,0,F,F,1,No Deposit,242.0,179.0,0,Transient,115.43,0,2,Canceled,Michael Valencia,elizabethanderson@example.com,281-281-4792x2160,3520213976480545,2024-04-10 +Resort Hotel,1,96,2017,August,32,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,Non Refund,27.0,179.0,0,Transient,83.6,0,0,Canceled,Amanda Love,woodheidi@example.com,001-600-337-7308x711,2447150083645135,2024-09-27 +City Hotel,1,44,2017,August,31,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,48.39,0,0,Canceled,Miguel Green,bryan84@example.com,(753)883-9746,4652929598294695,2025-09-26 +City Hotel,1,403,2017,April,15,8,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,170.92,0,0,Canceled,Michael Mathews,amanda76@example.net,(637)555-8220,4410839848675683417,2025-01-17 +Resort Hotel,0,102,2017,November,45,7,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,0,Transient-Party,40.99,0,1,Check-Out,Nathan Burke,nicholas12@example.com,536-248-3024x3909,4618035041958,2025-06-19 +Resort Hotel,0,44,2017,August,32,6,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,11.0,179.0,0,Transient,63.91,0,0,Check-Out,Billy Wallace,pereztyler@example.org,(427)634-7918x902,4002125246377334447,2024-10-16 +City Hotel,0,157,2017,March,13,23,2,3,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,169.97,0,0,Check-Out,Cynthia Nguyen,gcamacho@example.net,001-684-693-7077x4420,639064457885,2025-01-26 +Resort Hotel,1,14,2017,January,4,20,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,246.0,230.0,0,Transient,49.52,0,0,Canceled,Rodney Perry,michaelsellers@example.org,440-437-1037x9571,639032521291,2026-02-17 +Resort Hotel,0,0,2017,January,4,23,1,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,B,2,No Deposit,17.0,179.0,0,Transient,2.31,1,0,Check-Out,Sherri Thomas,jillhubbard@example.com,373-853-4581,4467022928326,2024-10-21 +Resort Hotel,0,0,2017,January,4,21,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,139.68,1,1,Check-Out,Richard Rogers,brandy23@example.org,(757)792-7081x06439,3506441674341002,2024-07-16 +Resort Hotel,0,14,2017,April,17,23,3,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,0,No Deposit,247.0,179.0,0,Transient,227.95,1,1,Check-Out,Matthew Ruiz,heather02@example.com,223-666-2374,501881949447,2024-09-03 +Resort Hotel,1,105,2017,November,47,23,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,107.31,0,0,Canceled,Lisa Martin,luis71@example.org,7699457571,4615148863141746425,2024-04-23 +City Hotel,0,45,2017,September,38,17,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.35,0,2,Check-Out,Timothy Buck,zchaney@example.net,001-570-306-9351x74126,342127752563674,2024-11-04 +Resort Hotel,0,10,2017,March,13,28,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,238.0,179.0,0,Transient,164.56,0,1,Check-Out,Lee Morton,nnelson@example.com,722.739.9512x83531,30440277013415,2025-11-15 +City Hotel,0,12,2017,October,42,17,1,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,72.2,0,1,Check-Out,Priscilla Romero,lozanojustin@example.org,575.715.4738x2484,213132953074527,2025-08-02 +City Hotel,0,15,2017,March,10,8,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,B,0,No Deposit,29.0,179.0,0,Contract,123.41,0,3,Check-Out,Hailey Lewis,fharris@example.net,207.623.1750x40128,4504570701853926,2024-07-28 +City Hotel,0,43,2017,September,37,13,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,29.0,45.0,0,Transient,116.73,1,2,Check-Out,Amanda Barber,moorecory@example.com,893.542.0517x7852,3508574266347181,2026-02-28 +Resort Hotel,0,17,2017,January,5,31,4,10,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,98.71,0,0,Check-Out,Zachary Miller,andersonjulia@example.org,330.723.5533x723,502082909875,2024-10-11 +City Hotel,0,2,2017,April,14,8,1,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,201.64,0,0,Check-Out,Timothy Walker,osmith@example.com,302.398.4150x9126,4980680906699,2024-09-06 +Resort Hotel,0,88,2017,November,46,16,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,41.95,0,3,Check-Out,Laura Kelley,shall@example.com,837.239.9201,4462266521499,2025-01-23 +Resort Hotel,0,99,2017,December,52,28,2,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,92.0,179.0,0,Transient,104.9,0,0,Check-Out,Nicholas Abbott,jaredfrazier@example.org,940-843-0445,342059695329907,2026-01-30 +City Hotel,0,13,2017,December,50,15,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,84.87,0,1,Check-Out,Amber Kennedy,debralevy@example.net,+1-223-623-2609x17310,6011509479201299,2025-05-08 +Resort Hotel,0,0,2017,November,47,24,0,1,1,0.0,0,BB,PRT,Groups,Direct,1,0,0,A,D,1,No Deposit,244.0,179.0,0,Transient,56.64,1,1,Check-Out,Jessica Adams,nwaller@example.org,(702)754-8297x461,4025983008460,2025-03-04 +Resort Hotel,0,24,2017,May,22,30,2,3,2,0.0,0,HB,AUT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,126.19,1,2,Check-Out,Eileen Sanchez,raymond16@example.net,+1-437-441-0301x1359,582230161728,2024-09-08 +City Hotel,1,49,2017,August,32,5,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,229.75,0,0,Canceled,Randall Cox,brittanykelley@example.com,215.595.7696x354,4803572801491647,2025-04-09 +Resort Hotel,1,153,2017,April,15,12,1,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Canceled,Paul Wilson,cainmark@example.org,(624)508-9623x0271,4360999399535425,2025-12-19 +City Hotel,1,423,2017,April,17,25,0,1,1,0.0,0,HB,,Groups,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,104.98,0,0,Canceled,Nicholas Beard,jennifer14@example.net,400-782-2450,348339544632527,2025-11-29 +City Hotel,0,21,2017,April,16,17,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.05,0,0,Check-Out,Harold Wagner,staceydickerson@example.org,+1-612-598-7384x451,3569455167596280,2025-09-01 +City Hotel,0,254,2017,January,2,3,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,76.23,0,0,Check-Out,Martha Jacobs,manderson@example.net,388-456-1697,4093282679780100,2024-06-01 +Resort Hotel,1,148,2017,December,50,9,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,73.5,0,1,Canceled,Jason Hudson,xleblanc@example.org,844-433-8285x4582,345802917184650,2025-06-07 +City Hotel,1,59,2017,November,47,22,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.0,0,2,Check-Out,Beth Medina,jessica48@example.com,215.488.2961x185,213153950018184,2025-03-27 +Resort Hotel,1,201,2017,November,48,30,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,221.0,0,Transient-Party,72.97,0,0,Canceled,Jennifer Richards,paulschultz@example.org,777-603-0544,4626441075012668,2025-09-21 +City Hotel,1,0,2017,March,11,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,133.36,0,0,Canceled,David Mitchell,matthewrios@example.org,6646512581,2720522235915285,2026-01-06 +Resort Hotel,0,0,2017,August,31,5,0,1,2,0.0,0,SC,PRT,Online TA,Corporate,0,0,0,A,I,0,No Deposit,243.0,179.0,0,Transient,1.79,0,1,Check-Out,Brad Fisher,jonathansnow@example.net,942-820-3404x01134,4538559455808,2025-04-19 +Resort Hotel,1,140,2017,April,14,4,4,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Canceled,Ms. Mackenzie Barton,leah30@example.com,(224)756-8781,503804715913,2024-11-11 +Resort Hotel,0,19,2017,March,12,24,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,77.0,0,Transient-Party,99.69,0,0,Check-Out,Sherri Smith,alivictoria@example.net,404-778-9439x2839,4627875008773855,2024-06-22 +City Hotel,1,42,2017,July,29,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.39,0,1,Canceled,Dennis Spencer,smithmichael@example.net,+1-238-370-3750x7727,4714663795502362,2024-11-23 +City Hotel,1,165,2017,November,47,21,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,88.18,0,0,Canceled,Natalie Martinez,thomassingleton@example.org,9914176263,675983550293,2024-09-17 +City Hotel,1,58,2017,February,8,19,0,4,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,E,0,No Deposit,171.0,179.0,0,Transient,136.73,0,0,Canceled,Jeffrey Vaughn,josephhunter@example.org,+1-700-310-9194x0936,377139271075989,2025-03-05 +City Hotel,0,92,2017,August,34,24,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,53.64,0,0,Check-Out,Brandi Camacho DVM,robert33@example.com,449.682.7349,3504862845998036,2025-03-15 +City Hotel,1,9,2017,December,49,4,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.74,0,1,Canceled,Heather Morales,stephanie63@example.net,264-639-9449x978,4898378861533389302,2025-11-10 +Resort Hotel,0,9,2017,July,30,25,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,H,D,0,No Deposit,314.0,179.0,0,Transient,123.42,0,0,Check-Out,Michelle Wilson,brittany18@example.org,+1-810-590-5654,3548368209846306,2025-10-28 +City Hotel,0,142,2017,November,46,13,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,71.62,0,0,Check-Out,Stephanie Vargas,nicole99@example.com,(341)299-6645x54367,581222249251,2026-02-06 +Resort Hotel,0,18,2017,April,14,5,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,208.13,0,0,Check-Out,Wendy Williams,alyssa69@example.net,670.817.7018x1234,2281703610624202,2024-05-29 +Resort Hotel,0,118,2017,February,6,8,3,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,163.93,1,0,Check-Out,Heather Cole,williamsmichael@example.com,(958)891-2387x1972,4312096726266679703,2024-10-31 +Resort Hotel,0,154,2017,March,11,15,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,178.0,179.0,0,Transient,77.58,0,0,Check-Out,Jerry Davenport,ndawson@example.org,+1-376-378-4123x156,3541651249491101,2025-12-13 +City Hotel,1,38,2017,October,41,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,48.61,0,0,Canceled,John Taylor,murrayteresa@example.org,+1-633-848-4637x004,347685040461568,2026-01-12 +City Hotel,0,106,2017,March,13,25,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,100.63,0,2,Check-Out,Ralph Hendricks,asoto@example.net,419-380-8156x439,180071550859642,2024-12-24 +City Hotel,0,7,2017,April,16,17,2,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,136.93,1,2,Check-Out,Angela Huang,alejandro47@example.com,292-813-3091,4100671028870,2025-04-09 +Resort Hotel,1,248,2017,January,5,31,0,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,111.01,0,1,Canceled,Jacqueline Banks,garcialindsay@example.org,374.568.0390x7561,4877919852415366,2024-07-28 +City Hotel,0,34,2017,June,23,4,2,1,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,59.91,1,0,Check-Out,Jeffrey Romero,robert65@example.com,790.740.6267x49174,3596839260177600,2025-04-18 +City Hotel,0,0,2017,November,45,10,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,94.81,0,1,Check-Out,Theresa Davis,brewermarcus@example.com,868-815-9576x9625,4560096192372680,2024-07-26 +City Hotel,1,159,2017,September,38,18,1,4,2,1.0,0,SC,BRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,96.43,0,0,Canceled,Glenn Elliott,vgrimes@example.net,+1-763-504-9661x80320,3502554586459268,2025-11-06 +Resort Hotel,0,11,2017,May,21,25,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,240.0,179.0,0,Transient,80.3,1,0,Check-Out,Lauren Anthony,frankjackson@example.org,001-606-249-0858x7941,4897387197931156,2025-01-11 +City Hotel,1,159,2017,March,12,21,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,77.76,0,1,Canceled,Frank Flores,kingandrew@example.com,8836024887,345714653708362,2024-04-04 +Resort Hotel,0,2,2017,December,49,6,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,0.0,0,0,Check-Out,Charles Cervantes,hannahandrews@example.org,(811)932-9883x3361,6011663226402781,2024-10-27 +Resort Hotel,1,11,2017,August,34,21,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,238.0,179.0,0,Transient,107.57,0,0,Canceled,Virginia Clark,ephelps@example.org,001-390-507-1177x5802,4336374340656491,2025-08-08 +Resort Hotel,0,30,2017,July,30,28,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,28.0,179.0,0,Transient-Party,80.19,0,0,Check-Out,Laura Gilbert,patrickallen@example.net,329-303-8069x513,379712191160848,2025-11-28 +City Hotel,0,53,2017,April,16,18,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Contract,101.22,1,0,Check-Out,Dustin Wilson,gilllaura@example.org,376-293-1103,4525633413873171,2026-02-20 +City Hotel,0,22,2017,May,22,28,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,69.0,0,Transient-Party,138.31,0,0,Check-Out,Jeffrey Mcclure,tina20@example.org,2263799357,4160636343136239,2025-08-12 +Resort Hotel,1,169,2017,February,9,26,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,304.0,179.0,0,Transient,45.24,0,0,Canceled,Thomas Zhang,jrodriguez@example.org,+1-876-231-9761x38690,4530264256283998,2025-04-26 +City Hotel,1,383,2017,June,22,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,101.57,0,0,Canceled,Tammy Estrada,angelashelton@example.org,374-629-0629,4959137726613048759,2025-05-02 +City Hotel,1,1,2017,October,40,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,56.93,0,1,No-Show,Daniel Roberson,aaron24@example.com,210-359-6254x49087,6500776056063818,2025-08-11 +Resort Hotel,0,15,2017,May,19,10,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,194.36,1,0,Check-Out,Alyssa Orr,derek49@example.org,488-748-0140x80991,4576177638982167,2024-09-23 +City Hotel,1,262,2017,January,2,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,139.0,179.0,0,Transient,105.62,0,0,Canceled,Kimberly Lloyd,justinjohnson@example.org,2372545058,346117939649047,2026-02-03 +City Hotel,0,212,2017,April,17,27,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,113.67,0,0,Canceled,Ronnie Johnson,kimbrown@example.org,555-655-1490,370029938512788,2024-07-04 +Resort Hotel,0,2,2017,April,17,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,46.0,0,1,Check-Out,Tom Duncan,leeseth@example.net,994.677.6463x7722,213181302536819,2024-08-23 +City Hotel,0,14,2017,August,32,3,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,7.0,179.0,0,Transient,133.12,0,2,Check-Out,Kelly Guerra,amypowers@example.com,317-676-3049x31531,4194737972627,2025-09-13 +Resort Hotel,0,18,2017,March,11,10,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,98.0,179.0,0,Transient-Party,2.16,0,0,Check-Out,Brian Mccarthy,masondavidson@example.com,823-631-7383,4967642230843221,2025-09-12 +City Hotel,0,387,2017,March,12,24,0,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.4,0,0,Check-Out,Jill Reynolds,kleinjesus@example.org,(585)551-5306,4775933565581164313,2025-12-08 +City Hotel,1,347,2017,May,20,18,2,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,32.0,179.0,0,Transient,87.79,0,0,Canceled,Sean Kaiser,cassandramcpherson@example.org,001-577-631-8093x3281,6011780272850257,2025-05-07 +City Hotel,1,253,2017,June,25,21,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,90.66,0,0,Canceled,Audrey Gomez,lbright@example.net,3389364251,4726619195908555,2024-06-08 +City Hotel,1,100,2017,October,43,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,64.95,0,0,Canceled,Ricky Luna,patricia84@example.com,+1-490-287-5777x7446,3544114571442298,2024-04-03 +City Hotel,0,19,2017,May,22,28,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,162.23,0,3,Check-Out,Jonathon Hill,smarsh@example.org,(309)301-0099x5850,5325125347234645,2024-10-28 +City Hotel,0,5,2017,July,30,25,2,2,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,105.62,0,0,Check-Out,Kayla Waters,xellis@example.org,232-227-6034x84788,4274030739127483638,2026-03-11 +Resort Hotel,0,37,2017,September,38,20,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,129.75,0,1,Check-Out,Emily Middleton,rjones@example.org,272-945-7126x772,5129836293307015,2024-11-27 +City Hotel,0,1,2017,September,36,2,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.71,0,2,Check-Out,Timothy Bauer,aaronmarshall@example.net,001-920-909-0154x6680,639009574117,2026-01-11 +Resort Hotel,0,3,2017,September,35,1,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,H,C,3,No Deposit,15.0,79.0,0,Transient-Party,55.13,1,1,Check-Out,Ryan Guerrero,myerspaula@example.org,+1-342-855-3961,4573800751879,2026-03-12 +Resort Hotel,0,140,2017,November,45,11,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Refundable,12.0,222.0,0,Transient-Party,97.93,0,0,Check-Out,Amanda Walters,fbrown@example.org,001-984-678-0405x72458,4424962509442,2025-02-16 +Resort Hotel,0,0,2017,June,26,24,4,6,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,45.2,1,1,Check-Out,Chad Bennett,griffithmatthew@example.com,001-419-864-5375x7394,4528765614661866086,2025-04-20 +City Hotel,0,88,2017,February,7,11,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.22,0,0,Check-Out,Megan Baker,robertburns@example.org,(310)599-5833x0539,180041779216783,2025-12-03 +City Hotel,1,422,2017,April,16,19,0,4,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,85.36,0,0,Canceled,Robert Gross,jlopez@example.com,517.659.9271x147,38505127624900,2024-11-20 +Resort Hotel,1,190,2017,March,9,2,2,6,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,246.08,0,0,No-Show,Craig Liu,lisa89@example.com,323-966-5942x3236,3544922378365151,2025-08-01 +City Hotel,0,100,2017,November,48,27,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,31.34,0,1,Check-Out,Shannon Curry,mhancock@example.net,001-689-761-4194x4664,180080428781417,2025-07-24 +Resort Hotel,0,0,2017,March,10,10,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,360.0,179.0,0,Transient,1.79,0,2,Check-Out,Austin Grant,hayleylee@example.net,770.275.2218,4201143669619917040,2024-05-24 +City Hotel,0,10,2017,May,20,16,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,237.0,179.0,0,Transient,133.73,1,1,Check-Out,Christopher Barnes,calebreynolds@example.net,001-432-906-5670,2281680109867668,2025-06-12 +Resort Hotel,0,9,2017,September,36,5,0,2,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,43.95,0,2,Check-Out,James Silva,gabrielfrey@example.net,476.314.9981,4461888645642622,2025-04-20 +City Hotel,0,148,2017,July,29,18,1,4,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,191.64,0,0,Check-Out,Kari Sandoval,jamesle@example.org,999.898.9088x3906,2579738114442298,2024-04-10 +Resort Hotel,0,49,2017,July,29,18,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,13.0,179.0,0,Transient-Party,47.62,0,0,Check-Out,Eric Hall,vincentreilly@example.org,001-272-470-6219x87161,36108322584433,2024-05-11 +Resort Hotel,0,101,2017,June,23,10,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,63.77,0,3,Check-Out,John Robles,jeffguzman@example.org,4144505149,676255312156,2025-04-03 +City Hotel,0,98,2017,March,12,20,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,15.0,179.0,43,Transient-Party,95.73,0,0,Check-Out,Howard Castillo,rthomas@example.org,001-789-521-4155x841,372812142100708,2025-10-16 +City Hotel,0,10,2017,November,47,22,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.34,0,2,Check-Out,Brian Ibarra,samantha01@example.com,774-870-5908,343107401297238,2025-09-01 +Resort Hotel,0,0,2017,July,30,25,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,9.0,331.0,0,Transient,50.57,0,0,Check-Out,Donna Montes,charles45@example.org,617-450-4658x4751,3530720358875892,2025-06-12 +City Hotel,1,259,2017,June,23,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,82.25,0,0,Canceled,Matthew Wilson,brittanymoore@example.com,(702)812-9907,341029663318324,2025-06-18 +City Hotel,1,49,2017,December,2,30,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.92,0,1,Canceled,Francis Wilson,bramos@example.net,462-265-7712,503844864192,2024-04-09 +City Hotel,0,2,2017,June,23,5,0,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,18.0,179.0,0,Transient,131.21,1,3,Check-Out,Michele Ayala,barbaraperez@example.net,001-770-302-8558x2323,6011513272604386,2024-05-09 +City Hotel,0,93,2017,March,10,5,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,206.49,0,1,Check-Out,Dr. John Jenkins,austin62@example.net,(801)690-3327x1766,6560805618985148,2024-05-29 +City Hotel,1,145,2017,November,44,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.1,0,0,Canceled,Earl Romero,jamesbest@example.com,363-342-3097,3543221245102264,2024-11-28 +City Hotel,0,18,2017,November,46,13,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,116.95,0,1,Check-Out,Rachel Brown,gomezjames@example.com,001-945-544-8808,4753894281797933,2025-10-15 +City Hotel,0,64,2017,June,25,19,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,80.01,0,0,Check-Out,Deborah Stewart,jaredboyd@example.net,001-761-226-1263x9833,349282003132283,2024-09-22 +Resort Hotel,0,106,2017,June,25,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,300.0,179.0,0,Transient-Party,65.14,1,0,Check-Out,Jeremy Ross,kristin19@example.org,993-467-7763x985,6578508341562289,2025-08-14 +City Hotel,0,375,2017,July,28,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,103.02,0,0,Check-Out,Debra Chandler,john09@example.net,(326)305-6141x89234,501897917461,2024-09-27 +City Hotel,0,30,2017,November,46,15,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.45,0,1,Check-Out,Robert Parker,matthew75@example.net,496-729-9284,36417407752793,2024-07-13 +City Hotel,1,1,2017,June,24,13,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.94,0,0,Canceled,Kenneth Jackson,brian25@example.com,3872639719,4157353487200616,2025-06-23 +City Hotel,0,158,2017,December,49,5,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,106.36,0,1,Check-Out,Mario Gould,jeffreyfigueroa@example.net,638.392.8079,3556599058214522,2024-11-16 +City Hotel,0,9,2017,February,8,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,106.47,0,3,Check-Out,Erin Jacobs,alexisolson@example.net,+1-571-502-4519x917,345705922574213,2025-03-13 +Resort Hotel,0,137,2017,February,7,16,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,134.76,0,2,Check-Out,Nathan Lang,esawyer@example.net,969-974-6279,4457212143095405,2025-05-22 +City Hotel,0,13,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.82,0,1,Check-Out,Michael Barr,tmorrison@example.net,+1-590-591-8249x06765,4109762271711290,2024-05-30 +Resort Hotel,0,7,2017,June,26,25,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,53.89,0,0,Check-Out,Kristen Pena,phillip74@example.com,(933)601-9965x7246,213130326464342,2025-04-19 +City Hotel,0,14,2017,November,47,21,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,1,No Deposit,27.0,179.0,0,Transient-Party,64.16,0,1,Check-Out,Heidi Gonzalez,gary91@example.com,+1-768-485-0162x61481,374345245932337,2024-08-22 +Resort Hotel,0,35,2017,February,7,12,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,223.36,0,0,Check-Out,Joseph Heath,jodyfinley@example.com,001-613-480-2251x750,4797923062324,2025-01-22 +City Hotel,1,42,2017,March,13,23,1,2,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,225.65,0,1,Canceled,Robert Lozano,blake69@example.org,(715)205-7445,4759633129462802066,2024-09-09 +City Hotel,1,65,2017,February,5,2,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.17,0,0,Canceled,Daniel Quinn,stephenmcmillan@example.net,+1-209-786-1918x80254,2290586418592724,2025-08-29 +Resort Hotel,1,30,2017,August,34,22,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,64.35,0,0,Canceled,Amanda Smith,francismason@example.org,777.790.5549x601,6011384395180963,2025-10-28 +Resort Hotel,1,318,2017,June,24,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,40.19,0,0,Canceled,Ashley Sanders,leah41@example.org,001-989-627-0588,5401977526856334,2025-09-26 +Resort Hotel,1,23,2017,August,31,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,64.12,0,0,Canceled,Mr. Eric Hall,mcclainmorgan@example.com,001-733-735-6559x48847,3537810928402047,2025-07-14 +City Hotel,0,209,2017,April,15,10,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.69,0,3,Check-Out,Danielle Nelson,tthompson@example.org,(441)432-6049x435,4265808669062091,2025-08-17 +City Hotel,0,61,2017,March,13,26,0,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,83.52,0,0,Check-Out,Richard Rios,robertorussell@example.com,405.961.1527,4886713932464638,2024-08-16 +City Hotel,1,415,2017,February,6,3,0,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,135.34,0,0,Canceled,Patrick Nelson,hartmansarah@example.com,738.220.2640x765,4254973644478,2024-12-31 +City Hotel,1,347,2017,May,20,18,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,62,Transient,98.64,0,0,Canceled,Benjamin Bowen,stevensonashley@example.com,298.258.7200,3546120365073858,2025-06-10 +City Hotel,0,36,2017,June,24,10,2,2,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,175.37,0,1,Check-Out,Jennifer Smith,mjohnson@example.com,(534)714-3235,30448229403782,2026-01-20 +Resort Hotel,0,33,2017,April,18,30,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,Lisa Hernandez,george45@example.org,(575)951-4203x383,2703731214365435,2025-09-14 +City Hotel,1,95,2017,March,10,5,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,3,Canceled,Rebecca Lee,andrewflores@example.net,+1-608-746-0936x758,4282759592426508,2025-09-15 +City Hotel,0,11,2017,June,23,5,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.3,0,0,Check-Out,Emily Morris,donaldrussell@example.org,001-376-994-1586x76511,213165062223510,2025-11-17 +Resort Hotel,0,14,2017,March,11,13,2,6,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,253.0,179.0,0,Transient,213.39,0,1,Check-Out,Allison Hill,vanessa40@example.net,818-612-9871,060453416848,2025-11-11 +City Hotel,0,0,2017,November,46,11,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,9.0,179.0,0,Contract,63.22,0,2,Check-Out,Dennis Douglas,timothyreed@example.net,(455)248-1244x322,38375760106759,2025-06-10 +City Hotel,0,42,2017,February,6,10,2,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.97,0,0,Check-Out,Eddie Davis,james10@example.net,001-687-975-4629x693,370642810130352,2024-12-20 +Resort Hotel,0,94,2017,November,45,7,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,1,No Deposit,306.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,Kristina Webb,rogersmegan@example.com,(715)308-4214,180052232968159,2025-07-02 +City Hotel,1,36,2017,June,23,9,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Contract,72.71,0,0,Canceled,Kim Sanchez,debrajohnson@example.net,2098735200,4448187059326782,2025-08-11 +Resort Hotel,1,229,2017,March,11,12,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Canceled,Jonathan Long,john12@example.org,933.288.7000,4771555298071138342,2024-07-12 +City Hotel,0,2,2017,September,37,12,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,95.82,0,1,Check-Out,Joshua Rodriguez,frank64@example.net,431-298-5045,213167652053430,2025-05-05 +City Hotel,0,0,2017,December,48,2,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,73.24,0,0,Check-Out,William Sanders,jcampbell@example.com,(661)987-4185x195,4900030287863856,2024-10-31 +City Hotel,1,155,2017,February,9,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,248.0,0,Transient,114.38,0,0,Canceled,Jacob Hart,grahamdebra@example.net,368-247-3375x0987,2265801721373998,2025-08-31 +City Hotel,1,395,2017,December,49,4,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,134.57,0,0,Canceled,Evelyn Pacheco,kroberts@example.net,228-583-2227x4772,3505530177001518,2024-04-11 +Resort Hotel,1,2,2017,April,15,12,2,2,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,F,C,0,No Deposit,245.0,179.0,0,Transient,198.64,0,2,Canceled,Anna Jackson,oburton@example.org,448.928.9911,676174594991,2026-01-08 +City Hotel,0,256,2017,April,16,15,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,231.54,0,2,Check-Out,Katherine Wright,vmcgrath@example.org,(697)922-4601x93084,4989131758359921,2024-06-11 +City Hotel,0,13,2017,November,48,29,1,1,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,112.24,0,1,Check-Out,Luis Wells,vwarren@example.org,001-909-845-2253x614,213180374182411,2025-07-08 +City Hotel,1,1,2017,January,3,16,1,3,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,84.03,0,2,Canceled,Lacey Hall,quinndaniel@example.com,+1-242-383-8883,30026734519282,2024-07-20 +City Hotel,0,265,2017,March,12,18,2,6,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,129.84,0,0,Check-Out,Darlene Collins,alexandra05@example.com,(743)434-7052x434,5227608463240362,2025-04-07 +City Hotel,1,89,2017,November,47,25,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,A,B,0,No Deposit,13.0,199.0,0,Transient-Party,101.29,0,0,Canceled,Chris Morris,sherri11@example.net,001-392-578-6321x185,4011886933325802084,2025-12-21 +Resort Hotel,0,0,2017,March,10,6,1,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,320.0,179.0,0,Transient,82.32,0,0,Check-Out,Jennifer Smith,lparker@example.net,+1-539-939-8343x7845,3577903741683033,2025-08-01 +City Hotel,0,249,2017,May,20,14,1,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.92,0,0,Check-Out,Nicole Norton,johnsonjonathan@example.org,683-244-8345x9961,4752101702855832,2025-05-28 +City Hotel,1,168,2017,February,5,1,2,2,3,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,152.83,0,1,Canceled,Emily Pearson,barrettkimberly@example.org,487.830.7210,4886891471728892,2025-04-14 +Resort Hotel,0,2,2017,July,27,7,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,1,No Deposit,15.0,207.0,0,Transient-Party,35.46,0,0,Check-Out,Michael Robertson,mjackson@example.net,+1-989-845-0675x505,3561679973826676,2025-07-30 +Resort Hotel,1,242,2017,February,8,22,4,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,113.91,0,1,Canceled,Wendy Miller,dennislinda@example.net,+1-653-244-3467,6578583101246118,2024-11-24 +City Hotel,1,227,2017,April,14,2,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,1,No Deposit,16.0,179.0,0,Transient-Party,223.27,0,0,Canceled,Michael Bennett,yvettecampbell@example.net,(322)659-6256,213118768590096,2024-04-12 +Resort Hotel,1,34,2017,January,4,22,1,4,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,133.83,0,1,Check-Out,Carla Goodman,allenrosario@example.com,568.562.4982x6775,4992879457090479464,2024-06-09 +City Hotel,1,91,2017,February,9,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,105.06,0,2,Canceled,Jeffrey Stanton,beasleychristopher@example.org,001-930-303-4464,2714909656863011,2025-12-30 +City Hotel,1,86,2017,August,34,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,141.0,179.0,0,Transient,53.01,0,0,Canceled,Jeff Jackson,ellisemily@example.com,+1-814-324-6474x0005,3597867706909541,2026-01-17 +City Hotel,0,13,2017,October,43,22,2,1,1,0.0,0,BB,BRA,Online TA,Direct,0,0,0,E,E,2,No Deposit,13.0,179.0,0,Transient,179.36,0,1,Check-Out,Katelyn Curry,charlesowen@example.com,(818)246-4870x7078,4007891562237310,2026-02-17 +City Hotel,0,1,2017,December,51,20,0,1,2,0.0,0,BB,NLD,Corporate,Direct,0,0,0,A,B,0,No Deposit,40.0,179.0,0,Transient,50.64,0,1,Check-Out,Jennifer Phillips,robinsonmichael@example.net,252.623.2962x34091,36034456762126,2026-03-21 +City Hotel,0,10,2017,June,24,11,0,2,2,0.0,0,SC,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.45,0,0,Canceled,Edward Weeks,cdunn@example.com,(323)288-5065x0943,3518319831116895,2025-09-02 +Resort Hotel,1,61,2017,April,17,25,2,4,3,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Kelly Gilbert,bsmith@example.com,(804)686-9357x2347,5537518976257362,2024-05-24 +Resort Hotel,0,17,2017,October,43,22,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,127.0,179.0,0,Transient,47.37,0,1,Check-Out,Matthew Thomas,deborah41@example.com,(590)809-4785x9911,3554758304295964,2025-08-08 +City Hotel,1,299,2017,September,39,27,0,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,106.85,0,0,Canceled,Christine Mendez,michaeljones@example.com,001-566-326-0933,2553142095289432,2025-09-26 +Resort Hotel,0,101,2017,August,32,6,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,284.0,179.0,0,Transient,53.62,0,0,Check-Out,Kelly King,knightdavid@example.net,336.912.3778x746,2716144474092761,2025-09-11 +City Hotel,0,50,2017,April,15,9,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.71,0,1,Check-Out,Timothy Ho,sarahwells@example.net,(424)597-9584,4209492799098918,2024-12-26 +City Hotel,0,4,2017,August,34,22,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.16,0,0,Check-Out,Sarah Taylor,calvinosborne@example.net,823.765.6754x30053,38871667417133,2025-02-24 +Resort Hotel,0,3,2017,September,35,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,238.0,179.0,0,Transient,43.49,1,1,Check-Out,Sandra Smith,vwilson@example.org,001-945-712-9772x48303,3523159430290839,2025-05-02 +Resort Hotel,0,396,2017,June,23,6,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,60,Transient-Party,62.4,0,2,Check-Out,Chris Jones,millerjenna@example.org,001-575-453-4121,503842035779,2025-03-19 +City Hotel,1,105,2017,March,14,30,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.62,0,0,Canceled,Emily Lopez,qmathis@example.org,001-891-940-3722x914,2550066244668720,2024-07-18 +City Hotel,1,141,2017,March,10,5,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,138.63,0,1,Canceled,Kimberly Rivera,christina41@example.org,856-558-6534,373681963398736,2025-01-25 +Resort Hotel,0,0,2017,September,36,6,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,2,No Deposit,16.0,179.0,0,Transient,204.71,0,1,Canceled,John Moore,agarcia@example.com,+1-828-798-2813x6833,4340105127132775,2026-02-17 +City Hotel,1,131,2017,October,44,31,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,104.56,0,1,Canceled,Justin Perez,welchstephanie@example.com,(380)984-7540,30546730044076,2024-09-28 +Resort Hotel,0,9,2017,December,52,23,1,2,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,222.0,0,Transient,138.61,0,0,Check-Out,Tanya Hill,staceybailey@example.org,(363)570-2731,3539271163936322,2025-04-07 +Resort Hotel,0,58,2017,October,44,31,1,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,252.0,1,3,Check-Out,Shawna Silva,crawfordvictor@example.org,649.759.6624x324,38835572234016,2025-05-22 +Resort Hotel,1,197,2017,March,10,3,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,242.0,179.0,0,Transient,129.26,0,1,Canceled,Marcus Powell,dustingonzales@example.com,001-267-576-1615,4822815775844281258,2025-10-15 +Resort Hotel,0,146,2017,November,48,28,1,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,Refundable,13.0,223.0,0,Transient-Party,36.98,0,0,Check-Out,Joshua Hopkins,gardnervanessa@example.com,852-919-7245,180077477124333,2025-12-19 +City Hotel,1,95,2017,November,44,3,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.31,0,1,Canceled,Christian Cross,kevinsmith@example.net,+1-210-968-1508x9217,5442431675842522,2025-09-11 +City Hotel,0,19,2017,January,3,18,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,171.07,0,1,Check-Out,Dennis Garcia,cball@example.net,6918604447,6596797094194386,2025-12-15 +Resort Hotel,0,35,2017,May,20,15,0,2,1,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,306.0,179.0,0,Transient-Party,77.19,0,0,Check-Out,Laurie Miranda,icraig@example.com,408-828-0810,4265881680644,2024-04-05 +Resort Hotel,1,47,2017,April,15,9,0,3,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,192.12,0,0,Canceled,Raymond Vargas,lisarussell@example.org,+1-426-269-9295x039,4804120135158,2026-01-07 +Resort Hotel,0,387,2017,June,25,18,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,143.0,222.0,0,Transient-Party,72.74,0,0,Check-Out,Robert Savage,livingstonbrandi@example.net,001-502-484-4313x20471,30011314916207,2025-11-30 +City Hotel,1,118,2017,March,13,30,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,135.74,0,0,Canceled,Kara Jackson,kimberlywhitaker@example.net,939-236-3647x692,4256192369142,2026-02-25 +City Hotel,0,51,2017,October,40,4,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.9,0,1,Check-Out,Virginia Davis,raymondjanet@example.com,001-860-942-5612x04717,343957404632884,2026-01-29 +City Hotel,0,19,2017,August,31,2,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.44,0,1,Canceled,Brianna Martin,johnsonbrooke@example.net,4335944540,4621841292292768,2024-05-29 +Resort Hotel,0,98,2017,July,27,4,2,2,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,241.0,0,Transient-Party,81.12,0,0,Check-Out,Erica Huang,martinjennifer@example.net,623.497.2821x8019,377727638365257,2026-03-24 +Resort Hotel,1,94,2017,April,17,23,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,219.56,1,0,No-Show,Jorge Gonzales,hdavid@example.net,+1-797-482-6381,180062833505615,2024-11-15 +City Hotel,0,92,2017,October,42,21,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,69.82,0,0,Check-Out,Erin Mason,dorothybruce@example.net,(888)520-4977,4070793410723495,2025-02-24 +City Hotel,1,391,2017,February,6,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,41,Transient,136.71,0,1,Canceled,Justin Bennett,zacharywest@example.com,401.436.8465x84106,060486971512,2024-05-02 +City Hotel,0,122,2017,April,15,9,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,23.0,179.0,0,Transient,109.65,0,2,Check-Out,John Collins,rogersbrittany@example.com,364.519.9119x087,4503391902128781,2024-11-26 +Resort Hotel,0,44,2017,March,11,9,1,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,235.18,1,0,Check-Out,Kerry Ware,laurenbaker@example.org,816.209.7305x114,676228041445,2024-12-30 +City Hotel,0,19,2017,March,10,9,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,G,0,No Deposit,7.0,179.0,0,Transient,129.17,0,0,Check-Out,Tina Dougherty,jasmine02@example.com,483.361.8595x978,4849044077439342,2024-07-04 +Resort Hotel,0,12,2017,October,42,18,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,44.86,0,0,Check-Out,Michelle Larsen,lgreen@example.com,512-274-9257x148,4924280658912,2025-12-10 +City Hotel,1,404,2017,September,37,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,44.08,0,0,Canceled,Katherine Mccormick,amandamckinney@example.net,904-245-6673x94197,30526013729478,2025-11-22 +City Hotel,1,168,2017,December,50,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,90.32,0,2,Canceled,Kristin Graham,rlarsen@example.net,912.772.7106,4609807975501110,2024-06-19 +Resort Hotel,0,98,2017,August,32,10,2,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,142.13,1,1,Check-Out,Alexander Diaz,kochbenjamin@example.org,378-271-2580,376034607791576,2025-05-26 +Resort Hotel,0,3,2017,September,35,1,1,0,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,258.0,179.0,0,Transient-Party,51.13,0,0,Check-Out,Michael Chandler,arianablair@example.net,8796145667,676114843722,2024-04-04 +Resort Hotel,1,145,2017,November,45,11,1,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,75,Transient,45.84,0,0,Canceled,Justin Cuevas,rhernandez@example.org,001-253-381-1595x76721,4874954390302,2025-09-21 +City Hotel,1,392,2017,February,9,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,86.0,179.0,0,Transient,80.23,0,1,Canceled,Janet White,fitzgeraldtrevor@example.com,996-320-6509,4457470549519279892,2025-03-09 +City Hotel,0,15,2017,January,2,1,0,1,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.09,0,0,Check-Out,Alexandra Ramos,elizabethgibson@example.net,(688)549-6405,3581668666448431,2024-12-03 +City Hotel,0,126,2017,November,48,26,0,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,79.13,0,1,Check-Out,Abigail Collins,smithaaron@example.net,350-968-9464,180091507189398,2025-12-15 +City Hotel,1,139,2017,April,17,26,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,L,0,No Deposit,9.0,179.0,0,Transient,211.04,0,1,Canceled,Jacob King,johnbrown@example.net,431.463.0627x4329,4843181779253757,2024-12-19 +City Hotel,0,0,2017,May,20,17,0,1,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,B,1,No Deposit,15.0,179.0,0,Transient,137.47,0,1,Check-Out,Lisa Johnson,cynthiamiller@example.net,4147536451,6011300159756467,2024-06-18 +City Hotel,0,1,2017,November,47,18,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,B,1,No Deposit,14.0,179.0,0,Transient,146.7,0,1,Check-Out,John Williams,jamesgill@example.com,736-544-4891x2478,3508166685554917,2024-05-09 +City Hotel,0,12,2017,January,5,28,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.15,0,0,Check-Out,Dawn Garrett,djohnston@example.net,9208926449,345497064286521,2024-07-23 +City Hotel,0,110,2017,July,27,1,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.11,0,2,Check-Out,Samantha Roy,emilymoody@example.com,2114046472,4746558269176382,2024-08-22 +Resort Hotel,0,2,2017,October,42,21,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,83.47,0,1,Check-Out,Yolanda Chen,poolepaul@example.org,9795559149,3572732716423702,2024-12-28 +City Hotel,0,192,2017,June,26,27,2,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,61.02,0,2,Check-Out,John Golden DDS,millermargaret@example.org,(229)616-5200,503828513864,2025-06-01 +City Hotel,0,39,2017,September,36,3,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,79.65,0,2,Check-Out,Amanda Johnson,jessica26@example.net,001-290-776-6704x2647,3598477269707107,2024-11-01 +Resort Hotel,0,103,2017,December,51,17,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,C,A,0,No Deposit,9.0,179.0,0,Transient,122.46,0,0,Check-Out,Brittany Fitzgerald,rbrown@example.net,(580)866-4002x18642,213155395667442,2026-01-11 +City Hotel,0,2,2017,April,18,30,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,B,1,No Deposit,13.0,179.0,0,Transient-Party,113.02,0,1,Check-Out,Bonnie Barnes,btapia@example.org,555-262-5422x6506,3581380401975187,2024-04-17 +City Hotel,0,50,2017,June,24,17,2,1,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,A,0,No Deposit,13.0,179.0,0,Group,81.64,0,1,Check-Out,Amy Walsh,rosalesandrew@example.com,441-767-2849x4535,5469817374824605,2025-01-15 +Resort Hotel,0,34,2017,December,50,13,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Group,44.77,0,1,Check-Out,Brent Stephens,nunezcolleen@example.net,(810)736-9162x88750,2345707436157481,2025-10-30 +City Hotel,0,150,2017,November,46,14,0,5,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,134.06,0,1,Check-Out,Mrs. Lisa Smith,dominiquepowers@example.com,+1-206-429-8592x32975,4794759217786824,2024-10-16 +Resort Hotel,0,51,2017,December,52,26,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,138.59,1,3,Check-Out,Sarah Stewart,nvillanueva@example.com,001-610-869-7436,583797648594,2024-11-02 +Resort Hotel,0,89,2017,August,35,27,0,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,313.0,179.0,0,Transient-Party,64.09,0,0,Check-Out,Susan Matthews,hamptonrobert@example.org,473.315.9683x240,4659378527186400474,2024-07-31 +City Hotel,0,11,2017,March,9,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,9.0,179.0,0,Contract,62.66,0,1,Check-Out,Kelli Shepard,lisalarson@example.com,+1-613-915-1519,180018501743722,2024-05-01 +City Hotel,1,98,2017,February,7,15,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.8,0,1,Canceled,Ryan Caldwell,myersjacqueline@example.net,428-281-0063x9399,4442510333230619,2024-05-09 +Resort Hotel,0,1,2017,January,4,22,2,6,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,357.0,179.0,0,Transient,92.63,0,1,Check-Out,Roger Mason,ypatterson@example.net,527-376-0234,3542069468245463,2025-06-21 +City Hotel,1,35,2017,February,7,10,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient,211.91,0,2,No-Show,Angela Ramos,michael80@example.net,(275)894-5113x436,6533350383633585,2025-10-15 +City Hotel,0,14,2017,October,43,26,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,52.0,0,Transient,84.12,0,0,Check-Out,Craig Wagner,morgansandra@example.net,5779131314,2274380981436729,2025-09-04 +Resort Hotel,0,23,2017,September,36,3,2,2,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,D,E,1,No Deposit,248.0,179.0,0,Transient,91.23,1,1,Check-Out,Paul Massey,kelleybradley@example.net,(932)756-3372x59266,568491644197,2025-05-01 +City Hotel,1,413,2017,December,52,27,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.62,0,2,Canceled,Donald Bell,michaelholt@example.net,9318510300,4786967493091922,2025-03-01 +City Hotel,1,2,2017,May,21,24,2,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,B,0,No Deposit,15.0,331.0,0,Transient-Party,50.57,0,1,No-Show,Keith Horton,belltheresa@example.com,420.200.7327x234,4344534600190543330,2025-06-28 +City Hotel,0,50,2017,December,49,4,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,144.6,0,2,Check-Out,Julie Wilson,treilly@example.org,309.451.2474,630466088071,2024-11-15 +City Hotel,0,20,2017,January,4,22,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.65,0,1,Check-Out,Nicholas Lopez,kimberly24@example.org,654.736.5426x9998,4160176673477648,2026-02-18 +Resort Hotel,0,1,2017,June,23,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,49.55,0,1,Check-Out,Tracy Wang,djones@example.com,7838737698,4928790382731,2025-07-25 +City Hotel,0,13,2017,November,48,26,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,207.9,0,2,Check-Out,Claudia Brooks,lyonscaitlyn@example.net,2926474010,3572897468400545,2026-02-05 +Resort Hotel,0,17,2017,April,17,20,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,180.21,0,1,Check-Out,Nathaniel Wright,alexanderchristopher@example.org,(820)721-5853,4733937205652780029,2024-12-16 +City Hotel,1,91,2017,November,46,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,L,2,No Deposit,14.0,179.0,0,Transient,3.14,0,0,Canceled,Maria Valenzuela,harmonrachel@example.net,843-659-2965x397,3543372405286957,2025-10-26 +City Hotel,1,43,2017,September,36,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,62.63,0,0,Canceled,Peter Anderson,robertboyd@example.net,(923)341-7439,2401842279969121,2026-01-24 +City Hotel,1,169,2017,January,2,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,41,Transient,111.43,0,0,Canceled,Michael Thompson,youngmary@example.org,361-614-3393,2286489200083562,2024-10-09 +City Hotel,1,160,2017,December,51,18,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,171.08,0,0,No-Show,Ethan Perez,kramos@example.net,+1-534-239-8388x53426,6550232319087276,2024-07-11 +Resort Hotel,0,2,2017,August,31,2,0,4,2,0.0,0,BB,POL,Offline TA/TO,Direct,0,0,0,E,A,2,No Deposit,245.0,179.0,0,Transient,87.57,0,2,Check-Out,Stephen Thompson,dicksonkatie@example.com,757-879-4090,2701717910747564,2024-07-18 +City Hotel,0,34,2017,July,30,25,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,102.92,0,1,Check-Out,Michael Baker,bcook@example.net,+1-603-371-3907x683,4413557965529243,2025-10-22 +City Hotel,0,108,2017,June,23,5,2,0,1,0.0,0,BB,BEL,Offline TA/TO,Direct,0,0,0,A,C,0,No Deposit,26.0,179.0,0,Transient-Party,62.64,0,1,Check-Out,Kenneth Bailey DDS,ramirezmargaret@example.com,(936)511-1369,4494069775452816,2025-12-25 +Resort Hotel,0,0,2017,June,25,23,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,45.81,1,1,Check-Out,Mark Decker,joangarcia@example.com,+1-406-719-0155,675920649380,2025-01-12 +Resort Hotel,0,24,2017,April,14,5,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Check-Out,Ruben Cruz,deanna22@example.net,(349)587-6748x85442,3588053388628672,2025-02-22 +Resort Hotel,0,34,2017,June,24,15,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient-Party,53.92,0,0,Check-Out,Christine Park,brian83@example.net,870-658-9536,4427540528459144,2024-11-02 +Resort Hotel,0,0,2017,September,35,1,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,55.89,0,1,Check-Out,Robert Hogan,mjohnson@example.net,(377)262-3050x305,38608829138565,2025-02-14 +City Hotel,1,0,2017,June,25,20,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.22,0,0,Canceled,Michael Gordon,lewistyler@example.net,3015025325,36116081432306,2025-12-13 +City Hotel,0,52,2017,September,38,22,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient-Party,107.88,0,1,Check-Out,Rebecca Davis,xramos@example.com,+1-963-331-7763x310,4114545097374994,2025-04-29 +City Hotel,1,341,2017,August,34,22,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,19,Transient,101.36,0,0,Canceled,Deanna Mcdonald,nlynn@example.com,+1-546-283-8819x02544,180033739722646,2024-07-25 +City Hotel,1,258,2017,June,24,15,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,58.37,0,0,Canceled,Brian Barrett,onealjohn@example.net,(921)973-9223x0651,4635335081976560,2025-09-19 +Resort Hotel,0,148,2017,March,11,13,2,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,112.21,0,2,Check-Out,Charles Willis,mmitchell@example.org,001-624-811-7038,3584516535937471,2025-10-22 +Resort Hotel,1,23,2017,July,29,20,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,237.0,179.0,0,Transient,51.89,0,1,Canceled,James Chapman,gsmith@example.org,+1-281-574-7914x5252,4248129882849368,2025-12-14 +Resort Hotel,1,224,2017,August,31,2,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,45.29,0,0,Canceled,Michael Soto,ellisbradley@example.net,293-341-3581,4799574526529064902,2024-07-31 +Resort Hotel,0,228,2017,November,48,30,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,2,Refundable,14.0,223.0,0,Transient-Party,82.63,0,0,Check-Out,Aimee Fisher,clarkamber@example.org,364.671.7944x059,4261540080059380,2024-12-02 +City Hotel,1,60,2017,May,20,15,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,131.05,0,0,Canceled,Matthew Garcia,smithcynthia@example.org,001-698-473-5552x2327,345696304676884,2024-11-03 +City Hotel,1,84,2017,April,14,2,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.31,0,1,Canceled,Elizabeth Owens,melaniescott@example.org,(832)842-2320x690,3515210353374421,2024-12-27 +City Hotel,0,12,2017,June,26,27,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.51,1,1,Check-Out,Alex Lamb,rsmith@example.net,3088509030,561919156365,2024-06-20 +Resort Hotel,0,38,2017,July,27,5,0,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,237.0,179.0,0,Transient,226.61,0,2,Canceled,Kenneth Graham,raymichael@example.net,+1-320-928-4185x4281,180062402444394,2024-03-30 +City Hotel,1,9,2017,February,8,23,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,252.0,0,2,No-Show,Roy King,daniel66@example.org,(869)692-7672,6544267144593428,2024-07-12 +City Hotel,0,9,2017,November,45,5,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,75.04,0,2,Check-Out,George Gregory,jimenezrandy@example.com,001-840-588-3695,2672383965078184,2025-12-28 +Resort Hotel,0,156,2017,April,16,15,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,Wesley Rich,paula04@example.org,771.844.1189,3599803468416795,2024-06-20 +City Hotel,0,4,2017,March,11,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,45.0,0,Transient,66.92,0,0,Check-Out,Stephanie Hunter,julie61@example.com,(593)800-5233x844,675983364513,2024-10-01 +City Hotel,1,0,2017,September,39,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,A,1,No Deposit,12.0,179.0,0,Transient,85.61,0,0,Canceled,Raymond Finley,davidjackson@example.com,834.681.4167,3577714401869501,2024-12-03 +City Hotel,1,386,2017,May,19,11,1,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,100.99,0,0,Canceled,Allen Hunt,ganderson@example.org,(907)686-4097x777,343337454263817,2024-12-13 +Resort Hotel,0,284,2017,December,52,25,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,77.76,1,1,Check-Out,Stacie Sanford,joseph02@example.net,414.822.7244x9119,213125129549042,2024-11-13 +Resort Hotel,1,154,2017,November,48,29,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,311.0,223.0,0,Transient-Party,42.17,0,0,Canceled,Christina Compton,lsmith@example.net,(630)881-3659,4557627433779237,2025-02-26 +City Hotel,0,102,2017,July,28,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,43,Transient-Party,65.18,0,0,Check-Out,Beverly Cook,melissa65@example.net,001-275-773-9540x927,6518250240895220,2025-07-16 +Resort Hotel,1,109,2017,December,52,29,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,135.51,0,1,Canceled,Tracy Parker,brenda18@example.net,641-271-6132,372818655946890,2024-07-03 +City Hotel,1,393,2017,January,2,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,117.75,0,0,Canceled,Rebecca Ellis,patrick86@example.com,(690)970-0242x4598,577274674438,2024-07-08 +City Hotel,1,15,2017,May,20,16,2,0,1,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,2.05,0,0,Canceled,Aaron Hernandez,melissabarnett@example.com,+1-450-763-1586,4820965131052,2025-11-30 +City Hotel,0,32,2017,August,35,29,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,146.99,0,2,Check-Out,Elizabeth Miller,michael91@example.net,001-932-933-1916x446,2700439322532713,2025-01-12 +City Hotel,0,203,2017,February,5,1,0,2,2,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.44,0,0,Check-Out,Dalton Davis,thompsonamber@example.net,(498)229-2406x5421,3505752533040028,2024-09-10 +Resort Hotel,0,97,2017,August,32,7,2,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,83.86,0,0,Check-Out,Michael Singleton,yjenkins@example.net,(485)633-3803,4656033277306569,2024-09-06 +Resort Hotel,0,2,2017,January,2,3,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,86.55,0,1,Check-Out,John Cooper,kevin33@example.net,+1-542-354-6629x99788,2718125002752248,2024-10-22 +City Hotel,1,140,2017,February,8,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,135.0,179.0,0,Transient,83.82,0,0,Canceled,Michael Hale,ymckee@example.net,(962)924-5860x4885,213147028412999,2026-01-06 +City Hotel,0,305,2017,April,18,30,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,147.75,0,0,Check-Out,Mary Guerra,olivermegan@example.net,+1-340-288-4351,180059960976668,2025-10-05 +City Hotel,0,32,2017,March,12,17,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,223.97,1,1,Check-Out,Pamela Davis,samuel37@example.net,+1-492-495-9895x679,4099240505168241,2025-02-09 +Resort Hotel,0,17,2017,November,45,5,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,42.48,1,2,Check-Out,Phillip Anderson,scott31@example.net,709.908.6600x5407,213154443074404,2025-04-13 +Resort Hotel,0,1,2017,December,50,9,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,219.0,179.0,0,Transient-Party,120.05,0,2,Check-Out,Stephanie Weiss,desireewhite@example.net,(427)296-1128x69222,4344643710924563880,2026-02-19 +City Hotel,1,194,2017,June,23,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,97.25,0,0,Canceled,Jessica Long,smithjustin@example.net,842.992.5778x9827,3522599430320840,2024-05-02 +City Hotel,1,88,2017,November,46,17,2,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,130.0,179.0,0,Transient,99.57,0,0,Canceled,John Yang,dawnmedina@example.com,707.740.6817x4063,501856768780,2024-09-26 +City Hotel,0,27,2017,June,25,20,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,120.74,0,2,Check-Out,Connie Franklin,melaniephillips@example.net,(945)924-1411,6583576947052370,2026-01-30 +City Hotel,1,158,2017,March,11,11,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.27,0,0,Canceled,Jackie Morgan,stewartkristine@example.org,+1-805-391-3618x56201,676356151271,2025-06-12 +City Hotel,0,14,2017,January,4,26,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.38,0,3,Check-Out,Lisa Walton,camposronald@example.com,845-716-7262,4087134431132,2024-07-21 +City Hotel,1,86,2017,September,39,26,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,84.02,0,0,Canceled,Maria Taylor,hooversarah@example.com,+1-661-463-5023x231,3580800435410985,2025-02-11 +Resort Hotel,1,2,2017,April,18,30,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,A,E,1,No Deposit,168.0,179.0,0,Group,2.77,0,0,Canceled,Daniel Graham,davisnicholas@example.com,(835)248-0149,2284158310142798,2025-06-20 +City Hotel,0,49,2017,July,30,24,0,4,1,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.95,0,3,Check-Out,Matthew Simmons,william97@example.net,001-214-747-8538,4156266784812936,2024-04-28 +City Hotel,1,374,2017,June,26,27,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,97.34,0,0,Canceled,James Nicholson,janiceanderson@example.com,+1-379-241-1332x83484,3554233739181866,2024-10-01 +Resort Hotel,0,3,2017,March,10,4,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,227.46,1,1,Check-Out,Tyler Fisher,iward@example.net,001-336-718-4820,4690511352894,2026-02-26 +Resort Hotel,0,97,2017,August,31,4,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,D,D,1,No Deposit,26.0,179.0,0,Transient-Party,66.11,0,0,Check-Out,Michael Flowers,angelarivera@example.net,(854)453-4262x57034,4648945444843946,2024-09-13 +Resort Hotel,1,154,2017,December,2,31,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,45.36,0,2,Canceled,Bradley Parks,burtonkevin@example.com,+1-582-844-6683x1211,4736221300013724,2025-04-15 +City Hotel,0,214,2017,April,16,14,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.27,0,2,Check-Out,Scott Lara,andrew39@example.net,001-331-242-7734,30104711987382,2025-07-02 +City Hotel,0,59,2017,December,51,17,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,8.0,179.0,0,Transient,116.01,0,2,Check-Out,Francis Andrews,mlee@example.net,534-621-3299x72679,30262088167564,2025-03-14 +City Hotel,0,14,2017,November,47,19,0,1,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,45.0,0,Transient,83.22,0,0,Check-Out,Jesse Tucker,nicholas69@example.org,(581)845-9310x02298,6556460023381131,2024-07-24 +Resort Hotel,0,3,2017,November,46,15,2,4,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,87.0,0,Transient,42.9,0,0,Check-Out,Jennifer Wise,duartekelly@example.net,4654181338,4671924780233323769,2024-05-11 +Resort Hotel,0,0,2017,June,23,5,1,0,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,G,E,0,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,David Walters,idavies@example.net,+1-644-892-4424x9198,3587406499144305,2024-04-13 +Resort Hotel,0,0,2017,August,32,8,0,2,2,0.0,0,Undefined,PRT,Complementary,Direct,0,0,0,A,C,0,No Deposit,333.0,179.0,0,Transient,47.35,0,1,Check-Out,Rebekah Cole,oleon@example.org,463.375.6261,30345557785683,2025-07-20 +Resort Hotel,1,44,2017,April,18,30,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Canceled,John Rogers,michellecooper@example.org,562.611.7864,4677649188933043854,2024-04-01 +City Hotel,0,12,2017,March,10,6,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,138.81,0,1,Check-Out,Holly Floyd,mendozasteven@example.net,577-828-7952x287,30406418001429,2025-04-24 +Resort Hotel,0,0,2017,April,14,2,2,6,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,237.46,0,3,Check-Out,Ms. Janet Leonard,williamsonlaura@example.net,879.723.0137,4371107149163079,2025-09-14 +Resort Hotel,0,18,2017,November,48,29,1,2,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient,103.6,1,1,Check-Out,George Villa,bblack@example.org,+1-822-625-3423,3538960759164460,2026-03-07 +Resort Hotel,0,27,2017,October,40,2,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,61.56,1,1,Check-Out,Christina Hess,bryan33@example.com,760-311-3235x0213,180050668322446,2024-08-22 +Resort Hotel,0,145,2017,November,44,3,1,2,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,61.81,0,0,Check-Out,Jordan Williams,chad98@example.org,(548)859-9027,561553375446,2025-12-16 +Resort Hotel,0,3,2017,December,50,12,2,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,129.8,0,1,Check-Out,Bryan Burns,michael18@example.org,267.408.6942x068,3505421127296137,2024-09-09 +Resort Hotel,0,3,2017,January,2,6,1,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient-Party,43.83,1,1,Check-Out,Stephen Parks,kimberlycastro@example.org,+1-782-587-1053x0316,630454914007,2024-10-28 +City Hotel,1,122,2017,March,13,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,184.88,0,0,Canceled,George Phillips,debra42@example.com,+1-733-512-1691x388,2715564693243484,2025-02-17 +Resort Hotel,0,2,2017,October,42,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,86.91,0,1,Check-Out,Kimberly White,ellisrobin@example.org,(608)988-4579,4219430655649,2024-07-26 +City Hotel,1,9,2017,August,32,11,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.45,0,0,Canceled,Alan Nguyen,brandongonzalez@example.com,8674050068,4126708404231663,2024-12-12 +City Hotel,0,10,2017,December,52,30,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,89.95,0,2,Check-Out,Linda Howard,santosleah@example.com,837.952.0906x413,4009386678127172,2025-11-08 +City Hotel,0,2,2017,October,40,3,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,83.81,0,1,Check-Out,Parker Wright,vwest@example.com,+1-897-954-0531x9409,30532133913380,2025-04-09 +Resort Hotel,0,196,2017,April,17,23,2,5,2,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,162.83,0,0,Canceled,Brandon Acosta,johnsonmanuel@example.net,001-649-559-3682,5186317535640398,2026-03-21 +Resort Hotel,0,13,2017,April,15,11,2,5,2,2.0,0,BB,POL,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,197.48,1,0,Check-Out,Jessica Hill,timothy60@example.net,831-880-2130x9256,3513986179310796,2025-05-27 +Resort Hotel,0,91,2017,December,51,22,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,105.45,1,0,Check-Out,Melissa Sanchez,philipchavez@example.org,001-231-574-4386x073,4048470198156,2025-12-12 +Resort Hotel,1,30,2017,August,31,1,2,4,2,0.0,0,HB,PRT,Groups,Corporate,0,1,0,A,E,0,No Deposit,243.0,179.0,0,Transient,65.17,0,1,Canceled,Sandy Oconnor,ljones@example.com,863-395-9118,2244331441280667,2025-11-06 +City Hotel,1,257,2017,June,24,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,38,Transient,61.74,0,0,Canceled,Judy Jones,wcampbell@example.org,248.833.2793x07830,3591011414582714,2024-10-18 +City Hotel,0,35,2017,July,27,8,2,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,24.0,179.0,0,Transient,133.16,0,1,Check-Out,Charles Davila,jnavarro@example.net,(453)635-6722x4383,3519056084682954,2025-05-30 +City Hotel,0,60,2017,August,34,26,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,121.27,0,1,Check-Out,Sonia Reyes,samuel14@example.net,6917116091,2361425554093011,2025-03-09 +Resort Hotel,1,279,2017,January,2,5,2,5,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,125.0,179.0,0,Transient,105.6,0,0,Canceled,Mrs. Tammy Curry,susanbaker@example.org,909.796.5431,4741067358236433,2025-12-27 +City Hotel,1,201,2017,November,46,11,2,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Refundable,1.0,179.0,0,Contract,62.55,0,0,Canceled,Alex Clements,vturner@example.org,205.277.6985,3596671373948415,2026-03-17 +City Hotel,0,5,2017,April,14,5,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,212.74,0,0,Check-Out,Matthew Andrade,srose@example.com,001-407-535-9007x401,676369508145,2024-08-03 +Resort Hotel,1,375,2017,February,5,3,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,302.0,179.0,0,Transient,71.22,0,0,Check-Out,Jessica Wilson,julie73@example.org,(866)349-2758x20636,3579524565282278,2025-08-22 +City Hotel,0,20,2017,December,51,17,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,115.51,1,1,Check-Out,Dean Turner,zjones@example.org,618.578.9465x2990,180031722119218,2026-01-01 +City Hotel,1,204,2017,March,10,8,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.92,0,0,Canceled,Sarah Sanchez,vasquezjonathan@example.org,(878)520-6175x69878,3532686925582816,2024-09-23 +City Hotel,0,1,2017,June,22,2,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,124.26,0,0,Check-Out,Jacqueline Kennedy,uparker@example.org,(970)872-4133x4453,30097186364782,2025-10-17 +Resort Hotel,0,143,2017,July,28,11,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,220.0,0,Transient-Party,70.83,0,0,Check-Out,Jessica Burgess,bryanbrianna@example.com,4775556229,4847773547591,2024-11-04 +City Hotel,0,92,2017,March,12,22,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.42,0,0,Check-Out,Destiny Powers,yrhodes@example.org,652.677.9758x8706,3585835173209228,2025-02-10 +City Hotel,1,65,2017,August,35,29,3,7,2,0.0,0,BB,PRT,Aviation,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient-Party,220.04,0,0,No-Show,Susan Gregory,sara62@example.com,+1-813-920-2375x587,30123683647402,2024-06-23 +City Hotel,1,3,2017,February,8,21,1,2,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,112.09,0,0,No-Show,Jason Smith,conniebrandt@example.com,(801)472-1982x1983,4128721509236543,2025-03-27 +City Hotel,1,43,2017,December,50,13,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,111.92,0,2,Canceled,Carlos Adams,vmendoza@example.com,565-576-8898,564135301005,2026-02-28 +City Hotel,0,354,2017,June,23,4,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Contract,104.23,0,0,Check-Out,Vanessa Flores,andersonkenneth@example.com,957.361.1821x059,6590154262929290,2024-07-20 +City Hotel,0,87,2017,August,32,10,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,106.45,0,1,Check-Out,Albert Nguyen,campbelldanny@example.org,238-725-5346x16950,180004518582485,2025-09-22 +City Hotel,0,3,2017,August,34,20,0,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,111.73,1,1,Check-Out,Dwayne Joseph,anelson@example.org,602-352-0457x947,180050699684087,2026-03-19 +Resort Hotel,1,255,2017,February,5,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,47.13,0,1,Canceled,Leah Walters,robertkelly@example.net,(736)617-2967x1784,4219109812474635703,2024-11-14 +Resort Hotel,1,41,2017,February,8,22,1,1,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,252.0,1,0,Check-Out,James Spears,lmaynard@example.net,+1-739-644-4772x433,3591229022976611,2025-02-18 +City Hotel,0,0,2017,November,48,29,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,84.86,0,1,Check-Out,Gilbert Reed,robinbennett@example.com,784-442-3902x879,4908335425567752,2026-03-23 +Resort Hotel,0,0,2017,October,42,21,1,1,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient,51.75,0,0,Check-Out,Joel Newton,xwhite@example.com,(373)569-8294x29897,4070030346801776,2026-03-13 +Resort Hotel,0,1,2017,July,29,19,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,83.0,0,Transient,37.89,0,0,Check-Out,Michael Chambers,emily40@example.org,903-735-9782x9842,2286655731679249,2025-10-21 +City Hotel,0,154,2017,April,15,12,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,145.71,0,1,Check-Out,Andrew Phelps,breanna89@example.org,(471)784-9620x299,375396237314231,2024-10-17 +Resort Hotel,0,190,2017,June,25,20,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,53.27,0,1,Check-Out,Lynn Hoffman,wward@example.com,001-783-346-9648,3539192637232249,2024-09-23 +City Hotel,1,42,2017,November,45,4,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,166.09,0,1,Canceled,Daniel Mercer,reginaldevans@example.org,001-939-530-2728x6027,180007032432491,2026-01-26 +Resort Hotel,0,1,2017,November,46,15,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,50.05,1,1,Check-Out,Edgar Stewart,ginachase@example.com,3548639998,6011285232756776,2025-03-23 +City Hotel,1,114,2017,February,8,23,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient,91.32,0,0,Canceled,Alyssa Weber,qjohnson@example.com,990-958-1133,4169861618461226,2024-08-20 +Resort Hotel,0,2,2017,September,36,4,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,48.43,0,1,Check-Out,Guy Reynolds,wglenn@example.net,230-210-4318x912,3521533347437125,2026-02-02 +City Hotel,1,67,2017,April,15,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.06,0,0,Canceled,Allison Mcpherson DDS,cherylgood@example.net,001-790-588-3759x70263,3503363928322310,2024-08-22 +Resort Hotel,1,291,2017,October,40,3,2,4,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,208.0,179.0,0,Transient,80.3,0,0,Canceled,David Morse Jr.,jonesanna@example.net,417.675.0139x6377,370671835699455,2025-12-29 +Resort Hotel,0,0,2017,October,40,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,244.0,179.0,0,Group,43.75,1,1,Check-Out,Sarah Davis,scruz@example.net,+1-365-607-3636,5454621025138440,2024-10-29 +Resort Hotel,0,10,2017,March,13,26,0,3,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient,223.79,0,0,Check-Out,Willie Duncan,marybrown@example.org,6723524082,3519611176281444,2025-09-10 +City Hotel,0,387,2017,June,25,23,2,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,107.47,0,0,Check-Out,Christopher Waters,rebecca28@example.com,(699)351-5353x38447,4877964798091,2025-12-11 +Resort Hotel,0,251,2017,December,50,11,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,54.81,0,2,Check-Out,Jennifer Ortiz,yorkmichael@example.net,684.417.7411,4336039404765372233,2025-09-28 +City Hotel,1,387,2017,January,4,24,2,2,2,0.0,0,HB,IRL,Groups,TA/TO,0,1,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,89.66,0,0,Canceled,Jennifer Greene,josephcompton@example.com,+1-287-273-8248x77532,2519575261418975,2025-11-23 +City Hotel,0,386,2017,January,4,26,1,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,115.51,0,0,Check-Out,Jack Garcia,angelmorrow@example.net,3717978147,4762422255928,2024-08-15 +City Hotel,0,39,2017,May,20,20,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,173.82,0,0,Check-Out,Toni Gill,proach@example.net,2778349025,375884370597886,2025-11-17 +City Hotel,1,270,2017,December,49,5,1,3,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.82,0,0,Canceled,Joseph Myers,lance24@example.org,(273)770-6854,377200509246998,2026-03-12 +Resort Hotel,0,23,2017,April,17,26,2,1,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,247.0,179.0,0,Transient,221.03,1,1,Check-Out,Kathleen Marshall,christinacowan@example.com,+1-444-645-5373x1332,343036008084204,2024-12-11 +City Hotel,1,94,2017,February,8,22,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,55.3,0,0,No-Show,Joanna Bradshaw,turnerroger@example.net,629-987-6535,569388918132,2025-05-06 +City Hotel,0,51,2017,May,19,10,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,123.92,0,3,Check-Out,Dylan Patel,opark@example.net,488-447-0821x776,639005544544,2024-08-22 +Resort Hotel,0,39,2017,September,35,2,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,44.34,0,1,Check-Out,John Jackson,ryanshannon@example.org,+1-271-758-1112x77107,6596859282097878,2025-03-10 +Resort Hotel,0,44,2017,May,20,16,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,310.0,179.0,0,Transient-Party,61.2,0,2,Check-Out,Janet Delgado,sharon27@example.org,814.362.8111x879,4515707314574,2025-06-22 +City Hotel,1,301,2017,February,5,3,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.3,0,0,Canceled,Jennifer Fields,scott71@example.org,+1-320-785-0102x643,30044976023392,2025-10-21 +City Hotel,1,16,2017,December,52,28,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.72,0,0,Canceled,Brenda Harvey,sean73@example.com,(750)287-0797x74854,3590045040438009,2024-10-26 +City Hotel,1,143,2017,February,8,18,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,42,Transient,131.23,0,0,Canceled,Ms. Monique Dougherty MD,petersonrichard@example.com,001-917-907-5934x94682,6011892322990536,2024-11-18 +City Hotel,0,134,2017,November,45,6,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient,154.09,0,1,Check-Out,Keith Kennedy,calvinburns@example.com,(354)451-8307x9365,4272340361292728,2025-11-09 +City Hotel,0,11,2017,July,31,30,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,89.55,0,0,Check-Out,Jacob Paul,pkirk@example.net,001-779-894-8544x625,4424614025542646,2025-04-14 +City Hotel,1,94,2017,January,4,25,1,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,127.51,0,1,No-Show,Martha Arnold,sgonzalez@example.org,+1-835-965-5824x30520,6011260657180596,2025-09-23 +Resort Hotel,0,4,2017,January,3,16,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,133.12,0,2,Check-Out,Sarah Martin,rebeccacarroll@example.org,337.333.8862,6011832578654139,2025-12-24 +City Hotel,0,2,2017,April,15,12,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,123.92,0,0,Check-Out,Shaun Thompson,xcoleman@example.net,655-669-1534,180059172326934,2024-10-14 +City Hotel,1,166,2017,February,5,1,2,3,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,10.0,179.0,0,Transient,92.83,0,0,Canceled,Tammy Morris,colemanlance@example.net,001-447-503-3730x52225,4575951021655569,2026-01-01 +Resort Hotel,0,0,2017,January,2,3,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,I,1,No Deposit,246.0,179.0,0,Transient,47.1,0,1,Check-Out,Steven Clark,iwilliamson@example.net,481-235-0568x2632,676370146455,2024-05-06 +Resort Hotel,0,0,2017,December,52,26,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,16.0,331.0,0,Transient,6.08,1,0,Check-Out,David Morrison,zmendoza@example.org,306.372.0007x816,4434729000606386,2025-03-17 +City Hotel,1,15,2017,March,9,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.66,0,0,Canceled,Rebecca Kaufman DDS,shawhenry@example.com,+1-409-348-3702x95212,2297570810206458,2025-03-17 +City Hotel,0,8,2017,August,32,7,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Group,43.08,0,0,Check-Out,Larry Rivera,davidsnyder@example.net,(492)614-6558x266,4183398708187520,2024-07-25 +City Hotel,1,119,2017,February,8,20,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.58,0,0,Canceled,Caitlin Ford,rgonzales@example.com,203.713.2823x924,374106803841637,2024-09-19 +City Hotel,1,0,2017,September,35,2,1,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,1,E,C,0,No Deposit,14.0,179.0,0,Transient,49.28,0,0,Canceled,Adriana Johnson,longscott@example.net,001-614-831-6491x3440,3592746394270702,2025-09-01 +Resort Hotel,1,48,2017,August,32,9,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,H,0,No Deposit,237.0,179.0,0,Transient,90.81,0,1,Canceled,Sharon Cowan,april95@example.com,941.886.9866,342676994520892,2025-01-07 +Resort Hotel,1,30,2017,August,31,2,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,56.18,0,1,Canceled,Andrea Butler,matthewherrera@example.net,944.652.8085,3546639657758843,2025-09-26 +City Hotel,0,11,2017,March,11,9,0,2,2,2.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,139.46,0,1,Check-Out,Mike Martinez,jamesstewart@example.org,324-776-8713,4053218703557719020,2025-11-29 +City Hotel,0,119,2017,March,11,10,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,242.83,0,1,Canceled,Maria Ferguson,zavalaanthony@example.net,001-807-962-9463,2671019188349918,2026-02-08 +City Hotel,0,4,2017,June,25,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,115.49,0,1,Check-Out,John Barber,kellyjones@example.com,527.222.9264x9868,4652981687636237,2025-12-31 +Resort Hotel,0,38,2017,May,19,12,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,91.06,0,1,Check-Out,James Short,johnadams@example.com,+1-385-506-7209x0119,3543208110412001,2025-06-16 +City Hotel,1,0,2017,March,10,5,0,1,3,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,E,K,0,No Deposit,11.0,179.0,0,Transient-Party,3.7,0,0,Canceled,Heidi Moran,wcollier@example.org,001-437-343-9924x830,3555463656502922,2025-05-18 +Resort Hotel,0,15,2017,May,18,5,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,57.85,0,2,Check-Out,Marie Patterson,reedleroy@example.org,7877870448,2720843543153603,2024-09-02 +Resort Hotel,0,6,2017,November,47,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,150.0,221.0,0,Transient,39.62,0,0,Check-Out,Charles Baker,stacygrant@example.net,+1-366-533-3874x699,180083801042837,2025-09-27 +City Hotel,1,144,2017,February,6,7,1,0,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,112.97,0,1,Canceled,Nicole Rodriguez,christopher19@example.org,3316584256,3599356574164957,2025-12-23 +Resort Hotel,0,42,2017,July,30,24,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,42.09,0,2,Check-Out,Jason Morgan,bcarson@example.com,(493)683-1159,4623514546808,2024-11-21 +City Hotel,0,30,2017,February,9,28,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,146.19,0,1,Check-Out,Rebecca Clark,qdelgado@example.net,601.359.8072x8547,376662410746310,2024-09-05 +City Hotel,0,37,2017,April,16,16,2,4,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,6.0,179.0,0,Transient,210.07,0,2,Check-Out,Martin Jones,margaretwilson@example.org,2978729713,30096343981835,2025-08-05 +Resort Hotel,1,303,2017,March,12,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,131.87,0,0,Canceled,Katherine Sanchez,twinters@example.com,+1-466-479-8126x7599,6011136504767993,2025-11-06 +Resort Hotel,1,34,2017,April,15,9,2,2,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,239.0,179.0,0,Transient,231.2,0,0,Canceled,Edward Wallace,angelalee@example.com,+1-671-860-8776x865,374816987493365,2026-01-12 +City Hotel,1,122,2017,March,12,19,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.89,0,0,No-Show,Melissa Carroll,michaelhuerta@example.org,(629)598-1815x82692,4352580001775,2024-08-18 +City Hotel,0,4,2017,April,15,6,1,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,Pam Hernandez,john21@example.org,+1-935-994-1090x837,502031525244,2024-09-02 +City Hotel,1,291,2017,June,23,4,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,92.49,0,0,Canceled,Daniel Wood,martinstacy@example.net,557-799-3968x33093,30448429534469,2025-04-25 +Resort Hotel,0,9,2017,November,47,23,1,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,61.73,1,1,Check-Out,Eddie Duffy,xhayes@example.net,729.561.0917,3518253254700929,2025-02-23 +City Hotel,0,6,2017,February,8,18,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.46,0,1,Check-Out,Mark Alvarez,carterbrianna@example.net,473.989.9308,4830720753659102,2024-10-03 +City Hotel,0,0,2017,May,19,11,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,84.69,0,0,Check-Out,Edward Manning,melinda77@example.org,(741)427-7815x75920,4980546772290704,2025-06-01 +Resort Hotel,0,29,2017,June,26,25,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,52.79,0,2,Check-Out,Bridget Carter,codyballard@example.org,8273902329,3541676453462175,2025-01-11 +City Hotel,0,55,2017,November,47,24,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,138.02,0,2,Check-Out,Mark Johnson,roy25@example.net,(851)303-1670,213197926925337,2024-08-08 +City Hotel,1,3,2017,April,15,14,0,1,3,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,208.92,0,0,Canceled,Eric Silva,jacobjones@example.com,001-889-807-8771x9858,30402635399381,2024-05-20 +City Hotel,0,2,2017,June,23,5,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,111.82,0,0,Check-Out,Nathan Mcgee,markwood@example.org,754-255-0595,378620048327042,2025-07-06 +Resort Hotel,1,95,2017,February,7,13,3,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,110.98,0,1,No-Show,Jennifer Montgomery MD,ngolden@example.net,976-557-8496,4689545526830282580,2026-03-18 +Resort Hotel,1,44,2017,July,30,27,1,0,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,106.71,0,1,Canceled,Christopher Farrell,samuelhamilton@example.com,001-568-272-8788x7464,3552395984961292,2025-05-19 +Resort Hotel,1,1,2017,April,17,23,0,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,15.0,179.0,0,Transient,229.55,0,0,Canceled,James Grimes,tonya44@example.net,318.894.0567x6477,373580173289869,2024-08-16 +Resort Hotel,0,152,2017,November,46,17,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient,46.08,0,1,Canceled,Mr. Joseph Thompson,johnsonrichard@example.org,951-733-5946,4442651423855868697,2024-11-05 +City Hotel,0,110,2017,November,48,26,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Contract,85.43,0,0,Check-Out,Alexis Arroyo,kristenvillarreal@example.org,(625)952-8752x8787,379099493663343,2025-04-29 +City Hotel,0,23,2017,May,19,11,2,3,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.17,0,1,Check-Out,Eric Walker,cynthiabennett@example.net,326.543.5347,3541349688537977,2024-11-13 +City Hotel,0,8,2017,December,52,24,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,135.19,0,2,Check-Out,Richard Mccormick,hillmikayla@example.net,691.951.1246x3531,6011239192660486,2025-01-17 +City Hotel,0,148,2017,April,17,25,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,30.0,179.0,0,Group,65.27,1,3,Check-Out,Heather Stevens,dylan92@example.org,2422499317,4155933070115743,2025-06-15 +Resort Hotel,0,159,2017,February,8,18,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,83.42,0,3,Check-Out,Susan Larsen,mendezgregory@example.com,833-881-5910,3555309181038355,2024-05-30 +City Hotel,0,0,2017,October,41,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,197.0,179.0,0,Transient,47.46,0,0,Check-Out,Rachel Warren,susan50@example.com,+1-944-481-1791,3537807593708062,2024-06-15 +City Hotel,1,63,2017,July,27,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.56,0,2,Canceled,Dale Beck,kweaver@example.org,4296275960,4671999398177106874,2025-12-08 +City Hotel,0,16,2017,May,21,20,0,3,1,0.0,0,BB,IRL,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,140.17,0,0,Check-Out,Brett Rivera,waynetaylor@example.org,(803)689-5207x812,38881249903609,2025-06-11 +Resort Hotel,1,45,2017,April,15,12,3,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,183.0,179.0,0,Contract,63.32,0,0,Canceled,Juan Nichols,taylorandrew@example.net,335.770.5189,6582932586973635,2026-01-13 +City Hotel,0,17,2017,October,44,28,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,78.36,0,3,Check-Out,Shelia Waller,jennifergilbert@example.org,001-279-723-1937x2907,3509633621609815,2026-02-23 +City Hotel,1,197,2017,March,10,9,1,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.26,0,0,Canceled,Keith Wright,garciapamela@example.net,+1-210-506-4185,4649247173255,2026-02-10 +Resort Hotel,0,105,2017,October,44,29,1,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,39.86,0,0,Check-Out,Patrick Norris,christy47@example.com,001-332-302-3786x30142,342688900064584,2024-10-11 +City Hotel,0,385,2017,June,23,6,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.11,0,0,Check-Out,Danielle Norris,hamiltonvanessa@example.org,273.948.8495x4098,630476229277,2025-12-04 +City Hotel,1,53,2017,February,6,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,129.36,0,1,Canceled,Andrew Lynch,phunt@example.org,952-641-0504,2241688682039968,2025-03-30 +Resort Hotel,1,47,2017,March,11,16,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,1,No Deposit,239.0,179.0,0,Transient,121.53,1,1,Canceled,Anna Lee,jessica00@example.com,910-775-0920x6860,675978537347,2024-04-30 +City Hotel,1,362,2017,March,10,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,81.76,0,0,Canceled,Amy Leach,molly80@example.org,(277)562-0090,3538912527957618,2024-10-13 +Resort Hotel,0,17,2017,July,30,23,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,50.68,0,0,Check-Out,Amy Perez,davidbooth@example.com,(968)802-7464x4918,2227464359184521,2024-09-26 +Resort Hotel,0,4,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,239.0,179.0,0,Contract,86.87,1,0,Check-Out,Lauren Marshall,samanthabutler@example.com,(675)861-8384,3586083777757958,2024-09-06 +City Hotel,1,415,2017,January,4,21,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,98.38,0,0,Canceled,Rachael Flores,lgreen@example.org,376.368.8639,4631567476285086620,2026-03-13 +Resort Hotel,0,38,2017,December,52,29,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,109.6,0,0,Check-Out,Christina Wilson,wilsonvalerie@example.com,(614)947-7520,180064198389429,2025-09-28 +City Hotel,1,96,2017,January,4,25,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,144.74,0,1,Canceled,Craig Daniels,christine92@example.net,+1-847-603-2426x44876,180089136321457,2024-04-08 +City Hotel,0,54,2017,April,13,1,2,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,121.76,0,0,Check-Out,John Hudson,blakethomas@example.net,868.936.2641x4124,4606486475441299598,2024-11-24 +Resort Hotel,1,282,2017,May,19,13,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,Non Refund,242.0,179.0,0,Transient-Party,212.11,0,0,Canceled,Shannon Rodriguez,carlsonmegan@example.net,(653)258-9389x9025,060454656749,2025-07-28 +Resort Hotel,1,31,2017,April,18,28,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,L,F,1,No Deposit,240.0,179.0,0,Transient,198.81,0,2,Canceled,Paula Lee,guzmancarl@example.com,937-589-4207x604,38331794655436,2026-01-11 +City Hotel,1,115,2017,January,5,29,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,83.65,0,1,No-Show,Lisa Bryant,cameron65@example.net,(626)474-5536x3182,4144153747605687,2025-05-01 +Resort Hotel,0,39,2017,August,31,1,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,183.0,179.0,0,Transient,168.24,0,0,Check-Out,Paul Guzman,andrewrandall@example.com,(980)455-2611x433,4549049056403,2024-10-04 +Resort Hotel,1,15,2017,April,16,17,2,1,2,2.0,0,BB,,Direct,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,216.67,0,0,Canceled,Christopher Hunter MD,amber36@example.org,952-590-6069x72582,180077454832841,2024-11-25 +City Hotel,0,8,2017,July,27,2,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,113.66,0,0,Check-Out,Elizabeth Camacho,wuvalerie@example.com,300-495-5150x913,4093518246512606703,2025-10-16 +City Hotel,0,12,2017,November,46,15,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,93.31,1,2,Check-Out,Donald Hoffman,rodriguezchristopher@example.net,7816380546,3525518324304493,2024-06-12 +City Hotel,0,6,2017,March,9,4,0,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,110.8,1,1,Check-Out,Jeremiah Rowland,veronicabutler@example.net,(926)795-7565,4811445864015424094,2025-09-01 +City Hotel,1,159,2017,March,12,22,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Contract,112.06,0,0,Canceled,Katherine Flores,mcarter@example.com,001-564-995-0185,4831715643806771,2024-06-05 +City Hotel,0,0,2017,December,52,26,1,2,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.12,0,2,Check-Out,Julie Martin,crystal34@example.net,976.537.9758,2703531349537282,2026-01-02 +City Hotel,1,18,2017,December,52,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,4.58,0,2,Canceled,Jeffrey Torres,dclark@example.org,001-552-879-4097x090,4435768290727268438,2024-03-30 +City Hotel,1,5,2017,May,19,9,2,3,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,108.3,0,0,Canceled,Jessica Little,hjohnson@example.com,(975)443-4539,3528619602491320,2026-01-01 +Resort Hotel,1,153,2017,August,32,9,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,230.99,0,2,Canceled,Catherine Maxwell,matthewbrock@example.org,379.695.8833x726,5476896238657931,2024-05-10 +Resort Hotel,1,260,2017,February,9,29,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,112.58,0,0,Canceled,Cindy Shaw,jeffrey56@example.net,(797)281-4637x0731,4196133135028373633,2026-01-24 +Resort Hotel,0,137,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,3,Refundable,13.0,222.0,0,Transient-Party,105.87,0,0,Check-Out,Joseph Garcia,sarabyrd@example.net,(918)920-9089x2427,4163832567858625233,2024-11-20 +Resort Hotel,0,55,2017,April,16,19,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,195.47,0,2,Check-Out,Leon Duncan,linkevin@example.net,+1-511-373-7123,4636181502638712714,2024-05-16 +Resort Hotel,0,1,2017,August,34,25,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,237.0,179.0,0,Transient,62.39,1,1,Check-Out,Christopher Miranda,awilliams@example.com,808.804.6199x05053,36667018509715,2024-04-19 +City Hotel,1,385,2017,October,44,31,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,86.43,0,0,Canceled,Sarah Bishop,marcus16@example.net,927-474-2152x2995,4479680343604123,2025-07-07 +Resort Hotel,0,47,2017,April,16,13,2,5,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,252.0,0,3,Check-Out,Tyler Zavala,frankcampbell@example.com,360-518-0211,4685268008764,2026-02-20 +City Hotel,1,159,2017,November,47,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Transient,115.0,0,0,Canceled,Rachel Chan,rsherman@example.com,548-623-6301x96425,4539167787480051,2025-12-24 +Resort Hotel,0,0,2017,December,51,23,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,85.3,0,1,Check-Out,Timothy Kennedy,millerdanielle@example.org,(277)856-3754,630436228559,2025-03-02 +City Hotel,0,160,2017,November,46,17,1,3,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,131.0,179.0,0,Transient-Party,77.7,0,0,Check-Out,Elizabeth Thomas,james10@example.org,424.863.4545x65146,30433508611024,2026-03-14 +City Hotel,1,329,2017,March,11,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.88,0,0,Canceled,Hector Mcgee,steelelisa@example.com,385-533-4412x57791,375751244193806,2026-01-17 +City Hotel,0,38,2017,June,23,10,2,4,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.44,0,0,Check-Out,Jeffery Long,balexander@example.net,808.764.0259x770,4604421804076,2024-06-20 +Resort Hotel,0,18,2017,September,36,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,45.22,0,0,Check-Out,Philip Powell,eric85@example.net,3856985941,502063523968,2024-11-08 +City Hotel,1,41,2017,February,8,22,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,163.2,0,1,Canceled,Heather Trujillo,tschmidt@example.org,001-652-773-1824x383,6524264368580953,2025-03-09 +City Hotel,1,113,2017,January,2,2,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.57,0,1,Canceled,Pamela Smith,heather39@example.com,821-516-4468x162,6538983210664715,2024-09-27 +City Hotel,0,86,2017,January,3,18,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,144.44,0,0,Check-Out,Christine Moran,brittanyjohnson@example.net,491.726.5785,213131405825940,2026-02-19 +City Hotel,0,155,2017,March,10,3,2,5,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.18,0,2,Check-Out,James Morris,markbuck@example.net,312.640.1117,4804470881393,2024-04-10 +Resort Hotel,1,280,2017,June,23,6,2,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,276.0,179.0,0,Transient-Party,39.39,0,0,Canceled,Erika Castro,timothy39@example.net,872.692.7618x93775,2239400888223758,2025-05-29 +Resort Hotel,0,1,2017,November,45,10,0,1,1,0.0,0,BB,ESP,Corporate,Direct,0,0,0,A,D,0,No Deposit,241.0,223.0,0,Transient,46.95,0,0,Check-Out,Daniel Shaw,leeandrew@example.com,(823)912-9993,4870095753399236,2025-10-13 +Resort Hotel,1,274,2017,April,15,12,2,6,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,65.55,0,1,Canceled,Ashley Sanchez,fharris@example.org,(269)373-1637x914,4325414928588565662,2026-01-05 +City Hotel,0,29,2017,March,13,23,2,5,2,1.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.84,0,1,Check-Out,John Griffith,richardsonandrea@example.net,(778)741-0467,675921400221,2024-10-10 +City Hotel,0,2,2017,April,15,12,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,2.56,0,1,Check-Out,Wesley Williams,sbradley@example.com,(231)935-1913x23642,374047499710944,2025-06-19 +City Hotel,0,16,2017,October,43,27,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,11.0,61.0,0,Transient-Party,64.99,0,0,Check-Out,Melissa Stout,jamie07@example.com,+1-324-306-4976x4773,3546020028925447,2025-07-13 +City Hotel,0,50,2017,January,4,22,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,62.41,0,0,Check-Out,Mr. Lawrence Brooks,evalentine@example.org,912.851.8119x988,4331496830643500,2025-08-03 +Resort Hotel,0,9,2017,November,48,26,1,1,1,1.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,1,No Deposit,243.0,179.0,0,Transient,40.73,1,2,Check-Out,Mark Hill,theresa95@example.net,+1-399-518-6243,6011062539660435,2025-09-03 +City Hotel,1,149,2017,March,9,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,109.13,0,0,Canceled,Thomas Rodriguez,glassalexis@example.org,372.216.7715x00921,4784481954976631,2026-01-02 +City Hotel,0,1,2017,October,43,21,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,30.0,179.0,0,Transient,74.16,0,0,Check-Out,Paul Nguyen,spencerjohn@example.net,593-883-9442,6011776641034169,2026-03-03 +Resort Hotel,0,2,2017,July,30,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,44.79,0,1,Check-Out,Jennifer Hernandez,cjones@example.org,001-871-242-5470x96760,3575435208726288,2024-08-21 +City Hotel,1,2,2017,December,50,15,1,1,1,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.18,0,0,Canceled,Edwin Gonzalez,donaldsonxavier@example.com,610-373-7996,4838264656519990,2026-01-30 +Resort Hotel,0,35,2017,August,32,6,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.96,0,1,Check-Out,David Armstrong,jessica12@example.net,(845)496-8982,213104091378060,2025-09-24 +Resort Hotel,1,62,2017,April,14,3,0,3,3,1.0,0,BB,ESP,Corporate,Direct,0,0,0,H,H,0,No Deposit,11.0,179.0,0,Transient-Party,237.82,1,3,Canceled,Debbie Schmidt,elizabethhunter@example.org,+1-279-756-3293,4901329035812457,2024-11-25 +City Hotel,0,148,2017,November,47,22,1,2,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,1,No Deposit,18.0,179.0,0,Transient,213.09,1,2,Check-Out,Alex Barton,baxterbrandi@example.net,001-481-621-1492,38724636065816,2026-03-05 +Resort Hotel,0,97,2017,August,33,18,0,2,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,314.0,179.0,0,Transient-Party,86.17,0,0,Check-Out,Richard Dawson,gabriel53@example.net,(399)481-1944,4415640116760533,2024-05-04 +Resort Hotel,0,12,2017,November,44,3,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,242.0,179.0,0,Transient,62.91,1,1,Check-Out,Scott Stein,xthomas@example.com,+1-684-672-0620x42517,4977515258700,2026-02-25 +City Hotel,0,2,2017,November,45,4,1,0,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,46.5,0,1,Check-Out,Stephen Lopez,nelsoncraig@example.org,963-768-9244x526,4789203144820776438,2025-11-30 +City Hotel,0,105,2017,July,28,11,0,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,127.0,179.0,23,Transient,79.05,0,0,Check-Out,Joel Cook,dbrown@example.net,938-333-4225x32041,180025163097297,2025-04-02 +City Hotel,1,200,2017,April,18,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,1,0,A,E,0,No Deposit,12.0,179.0,0,Transient,86.67,0,0,Canceled,Michele Scott,donnamartinez@example.org,6529490439,2297058037189319,2024-04-27 +City Hotel,1,44,2017,February,9,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,111.27,0,0,Canceled,Allison Wilson,daniel61@example.org,+1-998-628-8684x578,6567923651084712,2024-08-08 +City Hotel,0,29,2017,February,6,4,2,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,191.17,0,0,Check-Out,James Tucker,dyerkyle@example.org,(998)401-4813,36321386499048,2025-06-10 +City Hotel,0,9,2017,October,41,10,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,59.83,0,0,Check-Out,Joseph Durham,johnwarner@example.net,+1-932-290-0721x378,4688542199136997,2025-09-16 +Resort Hotel,1,43,2017,August,35,30,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,81.27,0,1,Canceled,Alexis Kim,wbrady@example.org,+1-231-639-8167x34351,3522564861341525,2024-09-17 +City Hotel,0,165,2017,March,13,29,1,3,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.49,0,1,Check-Out,Jonathan Yates,ili@example.org,001-348-474-1865x20835,213168180030031,2024-11-29 +Resort Hotel,0,162,2017,January,3,21,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,194.22,0,0,Check-Out,Katherine Andrews,ameyers@example.net,(626)288-0848,38798243854994,2025-01-21 +City Hotel,0,43,2017,March,13,30,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,104.81,0,0,Check-Out,Morgan Cunningham,zachary00@example.org,560-768-6423x48923,4429888056073367,2025-07-19 +City Hotel,1,408,2017,May,21,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.97,0,0,Canceled,Phyllis Schmidt,martinjamie@example.net,866.864.4314x18195,060445359502,2025-10-06 +City Hotel,1,122,2017,February,8,22,1,3,2,0.0,0,HB,CHN,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,125.18,0,0,Canceled,Sarah Miller,martinezshawn@example.com,466.564.1367x7268,3592822282650535,2025-05-30 +City Hotel,1,402,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.89,0,0,Canceled,Lisa Kaiser,tina67@example.org,+1-937-824-0655x9672,3512244855369855,2024-07-01 +City Hotel,0,18,2017,November,47,23,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,109.05,0,0,Check-Out,Pamela Jordan,jeffreyacosta@example.org,001-419-222-9954,30196586981052,2025-01-08 +City Hotel,0,16,2017,September,39,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,221.0,0,Transient,85.12,1,0,Check-Out,Jerry Gilmore,gwagner@example.com,001-688-737-9785,4995327575228,2024-03-29 +Resort Hotel,0,1,2017,August,31,3,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,47.12,0,0,Check-Out,Marie Jones,kylelong@example.org,+1-650-692-2306x36041,4579771658859029,2025-05-13 +City Hotel,0,114,2017,November,45,9,0,4,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,64.52,0,1,Check-Out,Gina Rose,lauriejohnson@example.com,001-420-704-3573,4719173391700183,2025-05-21 +City Hotel,0,47,2017,April,15,12,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,76.79,0,3,Check-Out,Samantha Reynolds,elaine05@example.org,763.792.2862,4501094952444387,2024-05-11 +City Hotel,1,41,2017,August,32,10,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,41,Transient-Party,64.42,0,1,Canceled,Kenneth Smith,cooperchristina@example.org,449.848.4135,3589756444624845,2024-08-13 +City Hotel,0,0,2017,August,31,4,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,20.0,331.0,0,Transient,4.76,1,0,Check-Out,Alicia Perez,evan16@example.net,(841)346-7411x81568,4855611019650896,2025-05-17 +City Hotel,1,161,2017,January,2,2,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,86.29,0,0,Canceled,David Walker,rayrivera@example.com,834-941-4399x72935,630408571911,2024-06-22 +City Hotel,0,3,2017,November,47,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,15.0,45.0,0,Transient,66.73,0,1,Check-Out,Erin Ellis,bwhite@example.net,(684)803-7141x79073,060441525015,2024-06-22 +City Hotel,1,350,2017,May,20,15,2,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,103.01,0,0,Canceled,Patricia Andrews,slopez@example.org,(233)888-8704,3590299923432429,2025-05-05 +City Hotel,1,199,2017,March,10,4,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.37,0,0,Canceled,Spencer Camacho,wallnathan@example.org,902-898-2177,676131521582,2024-05-23 +City Hotel,1,17,2017,April,14,5,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,27.0,179.0,0,Transient-Party,190.3,0,0,No-Show,Raymond Harris,joyce98@example.net,+1-556-744-7939x706,4176917262414489411,2025-10-11 +City Hotel,0,8,2017,April,17,23,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,202.13,0,2,Check-Out,Alexander Guzman,brooksmatthew@example.net,(260)664-0415x3659,30384460410030,2024-11-22 +City Hotel,1,11,2017,April,17,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.31,0,1,Canceled,Penny Fernandez,brittany52@example.net,+1-907-391-5425x189,213155325829807,2024-06-20 +Resort Hotel,0,27,2017,May,18,4,0,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,212.5,0,1,Check-Out,Erin Stewart,oscott@example.com,597-977-9299x6131,3534686016009883,2024-10-27 +Resort Hotel,0,35,2017,March,11,12,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,217.81,1,3,Check-Out,Daniel Turner,devinwebb@example.org,609-410-7562,3544502891379317,2024-09-09 +City Hotel,0,0,2017,September,38,17,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,45.77,0,2,Check-Out,Devin Mayer,donald87@example.net,750.424.9870x208,2707501557762001,2024-10-07 +City Hotel,1,9,2017,October,41,10,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,35.0,179.0,0,Transient,73.81,0,0,Canceled,Henry Taylor,ashleybrown@example.org,893.746.5641x221,4602401272546,2024-04-05 +Resort Hotel,0,67,2017,June,23,3,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,58.39,0,1,Check-Out,Jessica Flowers,vancechristina@example.net,736.630.9578,6011310874400382,2025-10-15 +City Hotel,0,11,2017,June,25,20,0,1,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.22,0,0,Check-Out,Jeremy Manning,yzhang@example.com,001-313-488-7030x53338,4041090977174,2025-04-05 +City Hotel,1,156,2017,January,2,4,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,135.97,0,0,Canceled,Jamie Griffin,valdezjohn@example.com,001-210-749-4032x4890,3520371332634104,2024-10-16 +City Hotel,0,0,2017,October,41,14,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient-Party,122.44,0,1,Check-Out,Daniel James,antoniogarrett@example.com,(925)661-2097x3321,2231806707490253,2024-08-18 +City Hotel,0,84,2017,July,27,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.27,0,1,Check-Out,Anna Thompson,huertajohn@example.com,5654756167,213124912463008,2025-11-10 +Resort Hotel,0,51,2017,November,44,3,1,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,327.0,179.0,0,Transient,45.83,0,1,Check-Out,Misty Martinez,susan62@example.net,(571)254-8411,4049328275450666,2026-02-22 +Resort Hotel,1,84,2017,July,28,6,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,80.0,179.0,0,Transient,118.35,0,0,Canceled,Barbara Burns,jeremy30@example.org,(333)329-5927,180007528178715,2024-11-20 +Resort Hotel,0,45,2017,November,47,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,161.0,179.0,0,Transient-Party,79.56,0,1,Check-Out,Nicole Stewart,melissa30@example.org,355-919-2509,371634414840535,2025-07-07 +Resort Hotel,0,208,2017,January,4,24,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,242.0,179.0,0,Transient,84.93,1,1,Check-Out,William Marsh,wilsoncameron@example.com,756-479-5173,4894418541217,2026-02-12 +Resort Hotel,0,0,2017,October,40,1,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,51.33,1,1,Check-Out,David Rodriguez,marissa21@example.com,525.673.1009x550,3521165582716002,2024-06-28 +City Hotel,1,38,2017,October,42,20,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.36,0,2,Canceled,Adam Lara,stevenmendoza@example.net,+1-402-880-9956x736,4761247621586682,2024-04-30 +Resort Hotel,0,28,2017,August,34,24,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,48.15,1,1,Check-Out,Scott Gomez,oconnellnathan@example.net,871-693-1516,6502146265179532,2024-07-08 +City Hotel,1,221,2017,February,6,6,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,91.39,0,0,Canceled,Sara Hamilton,joannesnow@example.com,9644133679,4191124296760118,2025-02-13 +City Hotel,0,17,2017,February,6,7,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,128.73,0,1,Check-Out,Elizabeth Key,dunlapdavid@example.org,+1-674-235-1131x90624,3535840591170003,2026-02-16 +Resort Hotel,0,105,2017,July,28,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,C,0,No Deposit,241.0,179.0,0,Contract,52.44,0,1,Check-Out,Mason Price,anna69@example.net,237-638-1783x727,3587419929515358,2024-11-26 +City Hotel,0,395,2017,March,12,18,0,2,1,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,115.42,0,1,Check-Out,Trevor Hill,vsalazar@example.net,272-810-1493x800,30313206588833,2025-10-27 +City Hotel,1,236,2017,June,26,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,95.95,0,0,Canceled,Erica Taylor,wdominguez@example.com,(706)257-0884x13610,4467539515411809274,2025-08-30 +Resort Hotel,0,42,2017,December,50,9,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,166.85,1,0,Check-Out,Justin Anderson,twong@example.org,(380)724-0195,3520183336991608,2025-09-29 +Resort Hotel,1,33,2017,April,15,9,2,5,2,2.0,0,HB,,Direct,Direct,0,0,0,G,G,1,No Deposit,251.0,179.0,0,Transient,111.67,1,0,Canceled,Michael Farmer,lewisalexis@example.com,791.494.6796x50637,340339583972675,2024-05-29 +City Hotel,0,15,2017,July,29,17,2,2,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,228.0,0,Transient,53.48,0,0,Check-Out,Robert Cline,nhartman@example.net,427-669-7210x65436,2234250044746258,2025-07-03 +City Hotel,1,152,2017,April,15,11,1,2,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.49,0,0,Canceled,Jacqueline Perry,shayes@example.com,434.550.4103x2934,6011867094155641,2024-04-30 +City Hotel,1,341,2017,March,11,13,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient-Party,101.3,0,0,Canceled,Christopher Mayer,klee@example.com,555.719.7687,6589875723986049,2024-08-25 +City Hotel,0,91,2017,November,44,3,1,3,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.69,0,3,Check-Out,Natalie Patrick,doughertyscott@example.org,001-903-958-1553x545,3548824806031627,2024-11-03 +Resort Hotel,1,358,2017,June,23,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,34.0,179.0,0,Transient,60.57,0,0,Canceled,Shawn Rodriguez,victor05@example.net,404-449-7985,4870530649032726924,2024-10-11 +City Hotel,1,157,2017,March,10,2,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Contract,108.87,0,0,Canceled,Jonathan Torres,daviddavis@example.org,(255)332-9089x669,6011192107918129,2025-05-11 +Resort Hotel,0,39,2017,January,5,28,1,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,82.0,179.0,0,Transient,140.91,0,0,Check-Out,Susan Baker,aolsen@example.net,(758)916-0554,4135168937113418,2025-11-22 +City Hotel,0,2,2017,January,2,5,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,162.5,0,1,Check-Out,Richard Rivera,douglas59@example.net,765-558-8679x787,4231652836077447,2024-07-18 +Resort Hotel,0,303,2017,March,10,8,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,101.47,0,0,Check-Out,Amanda Wiggins,joerobbins@example.org,592-609-7824x904,4232825763633007,2026-02-02 +City Hotel,0,1,2017,November,45,4,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient,2.08,0,0,Check-Out,Amber Bennett,kathrynmiller@example.com,001-835-602-2809,4508722405379685932,2025-09-08 +Resort Hotel,0,119,2017,January,2,9,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,55.09,0,0,Check-Out,Kelly Moore,jasonsullivan@example.org,586-736-7377,38525397526437,2026-02-15 +City Hotel,0,316,2017,June,22,2,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Contract,98.93,0,0,Check-Out,Steven Davis,vmercer@example.net,489-630-7090x0491,3549149695902004,2025-02-27 +City Hotel,0,205,2017,March,10,4,0,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,2,No Deposit,13.0,179.0,0,Transient,179.87,0,1,Check-Out,Ashley Alvarez DVM,tparker@example.com,528-304-8957,6011594472499629,2024-05-17 +Resort Hotel,0,0,2017,February,5,2,2,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,D,0,No Deposit,251.0,179.0,0,Transient,131.86,1,1,Check-Out,Kimberly Taylor,hwilliams@example.org,(497)492-2307x5265,3560855829996746,2025-10-26 +City Hotel,0,54,2017,January,2,1,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,165.0,0,Transient,119.54,0,0,Check-Out,Mallory Collins,priscilla11@example.com,+1-380-664-2043x3622,630499690364,2025-11-09 +City Hotel,1,201,2017,February,6,3,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.32,0,0,Canceled,Steven Anderson,dgardner@example.org,+1-940-869-8835x200,4494212693366342,2024-12-04 +City Hotel,0,91,2017,January,3,16,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.47,0,0,Check-Out,Holly Austin,brandimcintyre@example.com,472.403.2143x55519,4972032211639,2025-11-10 +City Hotel,0,12,2017,June,25,23,2,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,64.54,0,0,Check-Out,Karen Goodman,morrismiguel@example.net,567-426-3250,6552366750913687,2024-10-01 +Resort Hotel,0,186,2017,January,4,27,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,324.0,179.0,0,Transient-Party,95.27,1,0,Check-Out,Christina Robinson,zsmith@example.com,907-527-1809x84699,213112637080579,2024-09-05 +Resort Hotel,0,34,2017,April,18,30,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,102.45,0,2,Check-Out,Tom Perez,jasonberg@example.net,+1-982-880-2562x623,3592581541104631,2025-12-07 +City Hotel,1,208,2017,November,45,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,108.29,0,0,Canceled,Brandon Powell,matthew88@example.net,(496)655-8174,6011081829639214,2025-02-20 +City Hotel,0,110,2017,November,46,16,1,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,103.84,0,1,Check-Out,Ashley Perez,jennifer93@example.com,001-441-865-8634x4783,501885274818,2024-10-04 +Resort Hotel,1,339,2017,April,14,4,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,52.15,0,2,Canceled,Matthew Murphy,burnettsteven@example.net,+1-924-899-1443x01438,3577060988198041,2024-07-05 +City Hotel,1,59,2017,July,27,6,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.92,0,0,No-Show,Mary Meyer,breed@example.net,764.976.4390,180065875534781,2024-05-16 +City Hotel,0,11,2017,January,5,30,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.29,0,1,Check-Out,Sophia Wolf,kellyheather@example.net,545-992-3336x4190,676206734979,2024-12-18 +City Hotel,0,208,2017,May,19,8,2,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.87,0,0,Check-Out,Javier Stanley,jonestheresa@example.com,3304501061,2289665827528926,2025-02-26 +Resort Hotel,0,79,2017,January,4,25,3,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,130.26,1,1,Check-Out,Taylor Johnson,crystal40@example.org,+1-895-816-9781,180056876167382,2025-02-13 +Resort Hotel,0,48,2017,January,2,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,310.0,179.0,0,Transient,142.0,0,0,Check-Out,Janice Williams,jessicabryan@example.net,872-908-1722x2315,581050912822,2024-10-24 +City Hotel,1,159,2017,November,46,14,2,5,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,108.19,0,0,Canceled,Christopher Thomas,george43@example.com,723-828-1283x1844,4288860895694703,2025-11-05 +City Hotel,0,58,2017,June,26,24,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,154.75,0,0,Check-Out,Robert Martin,richardpatterson@example.org,001-942-358-2264,578563020119,2026-01-17 +City Hotel,0,444,2017,April,14,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,92.14,0,0,Check-Out,Kenneth Webb,kyle67@example.org,3717421718,4300208682281090,2025-02-24 +Resort Hotel,0,426,2017,December,51,19,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient-Party,102.48,0,0,Check-Out,Mark Montoya,ryancharles@example.org,(909)841-8184,4524339464039,2025-02-13 +City Hotel,1,311,2017,June,24,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,69.2,0,0,Canceled,Jodi Lewis,jodilove@example.net,(418)703-5306,4841596566299659,2025-02-05 +City Hotel,0,1,2017,January,2,4,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,101.98,0,3,Check-Out,Kimberly Wilson,kennethgriffin@example.com,253.336.5889x6621,3551646800276377,2024-07-12 +City Hotel,0,86,2017,August,32,5,1,3,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,93.26,0,1,Check-Out,Randy Bradshaw,hkim@example.net,842-574-7999,3585063483360272,2024-06-07 +City Hotel,1,0,2017,July,29,21,0,1,3,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,1,No Deposit,18.0,237.0,0,Transient,2.21,0,0,No-Show,Steven Scott,nicholas27@example.org,001-276-702-4932x8289,180045271667062,2024-04-01 +City Hotel,0,41,2017,July,27,5,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.48,0,2,Check-Out,Katherine Dunn,dawnbowman@example.net,444.730.4915x6087,4237165908413,2024-06-19 +City Hotel,0,150,2017,March,13,25,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,141.85,0,2,Check-Out,Mary Peterson,stewarttyler@example.com,955.604.4104x5242,3592983198470325,2025-10-27 +Resort Hotel,1,11,2017,November,44,2,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,42,Transient-Party,74.03,0,0,Canceled,Amy Diaz,weisskylie@example.com,+1-519-628-5545,675951142107,2024-07-17 +City Hotel,1,90,2017,July,31,30,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,80.89,0,0,No-Show,Traci Martinez,matthew79@example.com,001-499-272-9277x9954,36815480302917,2025-09-05 +City Hotel,1,161,2017,March,13,29,1,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,214.96,0,2,Canceled,Jim Rodriguez,ramseycarolyn@example.net,(559)449-5572,4520823790586844,2024-06-28 +City Hotel,1,18,2017,April,16,21,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,2,No Deposit,14.0,179.0,0,Transient,207.06,0,0,Canceled,Elizabeth Marks,alvarezscott@example.org,250-897-5324x24942,2445053763494224,2025-06-01 +Resort Hotel,0,10,2017,September,36,6,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,F,0,No Deposit,247.0,179.0,0,Transient,219.39,0,1,Check-Out,Jeffrey Joyce,crystal55@example.org,(557)373-5241,579797848408,2026-03-11 +Resort Hotel,0,135,2017,May,21,24,3,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,239.0,179.0,0,Transient,124.62,0,0,Check-Out,Sean Wagner,rittercharles@example.org,001-859-886-6674x6919,4811763186224,2024-07-01 +City Hotel,0,4,2017,July,29,18,2,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,225.67,0,0,Check-Out,Todd Lutz,parsonsjose@example.org,773.628.8862,4463850457054237,2025-01-14 +City Hotel,0,20,2017,April,14,5,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.84,0,0,Check-Out,Ryan Walker,wjackson@example.net,(402)334-2442,180017939736050,2025-08-18 +City Hotel,1,107,2017,March,13,25,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,227.0,179.0,0,Transient,131.35,0,0,Canceled,Nicholas Gomez,danielwhite@example.net,624.540.1472x222,675939444112,2024-04-14 +City Hotel,1,255,2017,May,20,16,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.44,0,1,Canceled,Brittany Heath,patrick24@example.org,+1-904-359-8181x5049,4446269674389,2024-04-22 +City Hotel,0,1,2017,April,15,13,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,214.01,0,1,Check-Out,Rebecca Cox,michael25@example.org,946.418.5724,2381908782248560,2024-09-03 +City Hotel,0,12,2017,July,30,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,53.0,0,Transient-Party,63.77,0,0,Check-Out,Travis Schmidt,oharrison@example.net,398.857.9420,4014930076471054090,2024-07-08 +Resort Hotel,1,130,2017,August,32,10,0,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,103.27,0,0,Canceled,Brett Martin,ryan26@example.com,715.599.1006,3597721305104634,2024-07-26 +City Hotel,1,406,2017,May,21,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,107.2,0,0,Canceled,Lisa Bridges,katherinecurry@example.org,+1-681-767-5289x77789,349130407249635,2025-11-04 +City Hotel,1,155,2017,November,48,25,2,5,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.52,0,1,No-Show,Brittany Dunlap,gparker@example.net,900-274-7164,6011864715231166,2025-06-10 +City Hotel,0,36,2017,June,26,29,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,108.24,0,1,Check-Out,Shannon Ramirez,kimberlyjohnson@example.org,541.742.4799,4520513266199840448,2024-10-29 +City Hotel,1,54,2017,December,52,28,0,1,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.57,0,0,Canceled,Tiffany Phillips,hilladam@example.com,(519)267-7559x49583,180063698410222,2025-05-01 +Resort Hotel,0,296,2017,March,10,2,0,7,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,133.31,1,1,Check-Out,Valerie English,kwilliams@example.com,+1-214-433-1875x357,38337591884921,2025-11-10 +City Hotel,0,110,2017,March,10,4,0,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.76,0,0,Canceled,Chad Hurley,eric01@example.net,(967)282-4434,4400171824675588,2025-05-23 +City Hotel,0,26,2017,November,44,3,1,0,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,203.0,0,Transient,46.86,0,0,Check-Out,David Peters,william60@example.net,+1-967-947-1695x68601,501805631253,2024-09-06 +Resort Hotel,0,44,2017,December,52,23,1,4,2,0.0,0,SC,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,110.86,1,1,Check-Out,Thomas Austin,ohayes@example.com,+1-850-977-4215,30068471071440,2026-01-14 +City Hotel,1,145,2017,April,16,15,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.49,0,2,Canceled,Amy Jenkins,nathanielbrown@example.org,598.252.6082,36508093048015,2025-08-04 +City Hotel,0,385,2017,June,24,13,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,106.7,0,0,Check-Out,Rodney Duran,terrinavarro@example.com,001-307-646-2926x406,4945322816648,2024-11-25 +City Hotel,1,19,2017,April,15,12,0,2,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,F,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Canceled,Tiffany Sanchez,nle@example.org,(442)414-6651,5586976044982405,2025-04-29 +City Hotel,1,7,2017,July,27,6,1,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,E,A,0,No Deposit,13.0,179.0,0,Transient-Party,80.62,0,0,Canceled,Maria Myers,brianoconnor@example.com,001-722-461-5769x6049,4535492967096395294,2024-05-02 +City Hotel,0,10,2017,September,39,28,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient,101.8,0,2,Check-Out,Ruben Jones,bobby96@example.net,(654)517-0940,060477803872,2025-03-17 +Resort Hotel,1,18,2017,March,12,21,3,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,143.54,0,0,Canceled,Desiree Stafford,nunezkayla@example.com,001-423-375-2319x5319,4859897867225594,2024-06-24 +Resort Hotel,0,135,2017,March,13,24,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,250.75,0,2,Check-Out,Patrick Blackburn,joseph52@example.org,001-906-984-2658x171,5155025067911528,2026-01-29 +City Hotel,0,244,2017,February,6,6,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient-Party,103.25,0,0,Check-Out,Jeremy Chambers,qwright@example.org,+1-380-753-0430x041,373512530924557,2025-10-13 +City Hotel,0,47,2017,December,49,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,238.0,0,Transient,49.53,0,1,Check-Out,Alexandra Wilson,whiteheadanthony@example.org,(295)580-6526x74976,3588731091837512,2025-03-25 +City Hotel,0,43,2017,February,6,4,0,4,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Contract,146.43,0,1,Check-Out,Brian Fuller,antoniohudson@example.com,+1-341-966-7201x70760,6011113766260728,2025-03-01 +City Hotel,0,8,2017,December,49,5,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,114.42,0,1,Check-Out,Matthew Evans,tfrancis@example.org,(241)902-8563,3547203647195522,2025-03-13 +Resort Hotel,0,85,2017,December,50,13,1,1,2,0.0,0,Undefined,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,4.4,0,0,Check-Out,Patrick Gibson,lthomas@example.org,334-668-2580,4217365487432161,2024-11-10 +City Hotel,0,206,2017,June,24,13,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,91.12,0,0,Check-Out,William Lozano,david75@example.org,566-277-2059,503836418361,2025-02-12 +Resort Hotel,0,39,2017,November,47,19,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,15.0,179.0,75,Transient-Party,130.31,1,3,Check-Out,Dillon Travis,ykennedy@example.org,(907)861-5611,3565673414486337,2025-01-08 +Resort Hotel,0,87,2017,June,24,10,4,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,85.88,0,0,Check-Out,Steven Rodriguez,hjohnson@example.com,(246)330-4483x847,3591009822099438,2024-12-01 +City Hotel,0,353,2017,June,24,15,0,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,68.72,0,0,Check-Out,Kevin Walter,jimmy43@example.com,754-789-0881,5360638052145844,2025-03-18 +City Hotel,0,275,2017,May,18,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,D,B,0,No Deposit,13.0,179.0,0,Contract,64.75,0,2,Check-Out,Rebecca Blake,harrysimpson@example.org,780.803.3428x046,3580556096066504,2024-10-02 +Resort Hotel,0,44,2017,December,52,23,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,378.0,179.0,0,Group,140.26,0,0,Check-Out,Brian Bright,jay07@example.com,809-440-5222x462,36932684736400,2025-09-23 +Resort Hotel,0,96,2017,September,36,6,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,81.0,179.0,0,Transient,45.8,0,1,Check-Out,Linda Cox,gabrielhoffman@example.com,926-675-3490x86013,4874027390388,2024-09-26 +City Hotel,1,15,2017,September,37,12,0,2,2,0.0,0,SC,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,41.78,0,0,Canceled,Mary Copeland,rita93@example.net,(987)301-1899,6564676700402060,2024-04-23 +Resort Hotel,1,31,2017,February,8,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,144.0,179.0,0,Transient,46.92,0,0,Canceled,Jennifer Little,stucker@example.org,001-207-619-6914,4484418635788913,2025-10-20 +Resort Hotel,0,37,2017,January,2,2,1,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,237.0,179.0,0,Transient,240.9,0,2,Check-Out,Diana Ramsey,fjohnson@example.com,364.955.0732,30522079785850,2024-08-30 +City Hotel,1,101,2017,April,17,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,223.78,0,0,No-Show,David Romero,hcontreras@example.com,217-631-2743x9810,4344925838474,2025-08-22 +City Hotel,1,96,2017,August,32,5,1,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.49,0,0,Canceled,Russell Bird,rebeccahines@example.net,3406973101,344330386783712,2025-03-19 +City Hotel,1,50,2017,October,40,6,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.06,0,0,Canceled,Brian Shaffer,wilsonbryce@example.org,+1-584-224-6901,3565821484955950,2024-04-24 +Resort Hotel,0,196,2017,January,4,22,0,10,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,245.0,179.0,0,Transient,108.49,0,1,Check-Out,Jon Garza,delgadogeorge@example.net,293.935.3412,6566558492866405,2025-03-09 +Resort Hotel,1,13,2017,March,13,27,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,170.16,0,0,Canceled,Ashley Norman,sierramoreno@example.com,211-232-8428x642,501890247452,2025-10-04 +City Hotel,0,10,2017,June,23,6,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.2,0,1,Check-Out,Kristina Monroe,earlowens@example.com,001-452-996-9206,3519873224846061,2025-02-15 +Resort Hotel,0,103,2017,August,34,26,0,4,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,43.38,0,0,Check-Out,Joseph Schaefer,nelsonlaura@example.org,234-481-3404x85455,4830225482844595,2025-11-05 +Resort Hotel,0,48,2017,May,19,11,1,2,2,0.0,0,BB,USA,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,244.0,179.0,0,Group,105.69,0,1,Check-Out,Kyle Garza,odelgado@example.org,(671)776-0146x214,060446818993,2024-11-09 +City Hotel,1,267,2017,April,15,11,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,1,0,E,E,0,No Deposit,13.0,179.0,0,Transient,85.91,0,0,Canceled,Tiffany Johnston,joshua96@example.net,(896)991-5914x0492,3501553820966204,2025-01-14 +City Hotel,0,4,2017,October,40,4,0,2,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.85,0,1,Check-Out,Phillip Ward,robert41@example.net,+1-495-300-6254x52531,639006329010,2024-08-12 +City Hotel,0,17,2017,December,51,20,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,137.46,0,1,Check-Out,Stephanie Fisher,robertfoster@example.net,+1-931-399-6432,5361826815005715,2026-01-08 +City Hotel,1,164,2017,February,9,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.85,0,0,Canceled,Patrick Reed,mark42@example.com,(781)469-0454,3502806860781928,2025-01-23 +City Hotel,0,96,2017,June,23,8,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,95.4,0,0,Check-Out,Sarah Berry,jameschapman@example.com,6887184674,36083968296834,2025-08-28 +Resort Hotel,0,100,2017,November,45,8,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,75,Transient,88.05,0,1,Check-Out,Teresa Li,andersonpamela@example.com,+1-884-210-7686x089,4306509427336170,2024-10-26 +Resort Hotel,1,146,2017,February,9,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,50.44,0,0,Canceled,Paula Caldwell,yjones@example.net,(266)863-2066x5956,676361600098,2025-09-24 +Resort Hotel,0,29,2017,April,18,30,1,1,2,2.0,0,BB,NOR,Online TA,Direct,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,232.9,0,0,Check-Out,Keith Johnson,collinselizabeth@example.org,(227)853-8363x559,2713374077982539,2024-11-29 +City Hotel,0,18,2017,April,17,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,221.62,0,3,Check-Out,Annette Knapp,hernandezcheryl@example.com,001-369-469-3610x017,4022532624989339,2024-09-24 +City Hotel,0,16,2017,July,28,11,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.22,0,1,Check-Out,Monica Atkinson,joseph19@example.net,506-260-7287x57548,4918553373120741,2024-09-14 +Resort Hotel,0,35,2017,August,31,1,0,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,64.77,0,1,Check-Out,Robert Cooper,toddjoseph@example.com,443-396-4151x4256,4625477514566,2025-07-02 +Resort Hotel,0,2,2017,June,22,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,C,1,No Deposit,14.0,331.0,0,Transient-Party,48.82,0,0,Check-Out,Danielle Griffin,kcamacho@example.net,001-909-634-4261,4632345161665613014,2024-11-13 +Resort Hotel,1,34,2017,October,42,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,246.0,81.0,0,Transient,48.82,0,1,Canceled,Jimmy Ritter,cellis@example.com,+1-242-288-2761x31750,4664463703034834,2025-12-15 +City Hotel,0,1,2017,November,44,4,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.04,0,0,Check-Out,Riley Clark,harrisrobert@example.org,6605050026,30529131066922,2025-06-07 +Resort Hotel,0,15,2017,July,28,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,190.0,69.0,0,Transient,44.68,0,0,Check-Out,Kimberly Morris,stacyroth@example.com,813.722.5570,3545770291575946,2026-03-23 +City Hotel,0,154,2017,March,9,2,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,96.89,0,0,Check-Out,Gregory Ochoa,xcontreras@example.com,6949094895,2296031413037973,2026-02-20 +City Hotel,0,401,2017,March,12,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.97,0,0,Check-Out,Shannon Cook,ismith@example.com,+1-826-344-8383x033,675906135669,2025-03-22 +Resort Hotel,1,322,2017,June,24,13,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,44.83,0,1,Canceled,Natalie Huff,millerbrittany@example.com,+1-892-451-9175x6431,2254949656232375,2025-11-18 +Resort Hotel,1,2,2017,June,23,6,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient,47.03,0,0,Canceled,Ronald Garcia,karen32@example.org,+1-848-523-8243x083,371580152223550,2025-10-07 +Resort Hotel,0,31,2017,February,6,4,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,114.82,0,1,Check-Out,Margaret Edwards,ewashington@example.org,+1-424-764-9339x934,3577489383437706,2024-05-15 +City Hotel,0,32,2017,April,15,9,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,77.73,0,1,Check-Out,Cody Reyes III,olsenwilliam@example.org,001-288-970-1407x3878,5262908494876374,2025-06-11 +City Hotel,1,170,2017,April,18,27,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,157.74,0,0,Canceled,Heather Shaffer,michaeldawson@example.net,831-874-7914,4643123952968822004,2025-04-30 +City Hotel,0,0,2017,September,39,24,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,190.0,0,Transient,40.57,1,1,Check-Out,Nicole Chung,lwhite@example.org,5074194617,4410145911766946,2024-12-17 +City Hotel,0,3,2017,March,14,30,2,2,2,0.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,131.04,0,1,Check-Out,Brian Perkins,icarlson@example.org,(698)679-6649x1260,30117717102111,2025-08-21 +City Hotel,0,50,2017,June,23,8,2,5,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient-Party,150.48,0,2,Check-Out,Melody Castro,nicolelawson@example.com,425.969.4470,4811283550952074,2025-08-23 +Resort Hotel,0,1,2017,June,25,23,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,63.93,1,0,Check-Out,Kimberly Sanders,amyjones@example.com,(380)501-4476x223,3520802465368862,2025-07-27 +Resort Hotel,0,37,2017,January,2,4,4,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,1,No Deposit,249.0,179.0,0,Transient,112.52,0,1,Check-Out,Christina Davis,krystal76@example.org,796.650.8480x198,344459924272803,2024-06-17 +City Hotel,0,24,2017,September,39,25,2,1,1,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.12,1,0,Check-Out,Sherri Sullivan,rsullivan@example.com,290-893-5962x2854,4148766671299676,2025-09-06 +City Hotel,0,51,2017,November,48,26,1,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,141.99,0,0,Check-Out,Mike Patel,ernestgreen@example.com,582.663.7352x7343,3512997935746430,2025-04-21 +City Hotel,1,31,2017,September,36,4,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.3,0,1,Canceled,Thomas Garcia,ryansmith@example.net,825.256.0302x0805,345559629983247,2025-07-27 +City Hotel,1,141,2017,February,9,24,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,134.16,0,2,Canceled,Robin Clay,jimmybates@example.org,(685)634-7174,676205890178,2025-07-01 +City Hotel,0,1,2017,November,45,6,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,K,0,No Deposit,18.0,179.0,0,Transient,6.4,0,0,Check-Out,Kelly Miller,jessicalang@example.com,291-628-5040x6188,630430671325,2025-01-25 +Resort Hotel,0,166,2017,March,10,4,1,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,1,3,Check-Out,Mrs. Amanda Kelley DDS,philipreid@example.com,717.686.1563x442,344993141625237,2024-12-16 +City Hotel,1,38,2017,September,36,3,2,4,3,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.91,0,0,Canceled,Johnny Whitaker,melissaperry@example.com,3609437822,4454434826280,2025-02-02 +City Hotel,1,4,2017,January,2,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,1,0,A,B,0,No Deposit,12.0,179.0,0,Transient,134.65,0,2,Canceled,Mrs. Courtney Wong,bnewman@example.net,+1-717-421-9305x9067,639015532422,2026-03-21 +Resort Hotel,0,47,2017,May,21,21,0,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,162.61,0,0,Check-Out,Adam Sanchez,olsonmike@example.com,666-373-4909x00477,213128429685169,2025-11-07 +Resort Hotel,1,240,2017,November,45,7,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,85.88,0,2,Canceled,Logan Massey,brentwilliams@example.org,(996)876-7817x6749,502013128884,2024-07-25 +City Hotel,0,1,2017,November,47,22,1,0,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,1,1,A,A,0,No Deposit,29.0,45.0,0,Group,82.34,0,0,Check-Out,Juan Carroll,alutz@example.net,001-579-576-8143x67363,4978346908710806,2026-01-01 +City Hotel,0,48,2017,May,21,26,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,104.39,0,2,Check-Out,Ryan Carpenter,heatherhopkins@example.org,641.689.2091,2627453888601358,2024-11-09 +City Hotel,0,170,2017,April,15,8,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.42,0,2,Check-Out,Stacy Werner,thomas09@example.org,+1-696-259-8711,3561516661857722,2025-04-17 +City Hotel,1,16,2017,December,49,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,106.95,0,0,Canceled,Michelle Holden,youngjeffrey@example.org,5022754187,2720911103905660,2025-09-15 +Resort Hotel,0,9,2017,July,31,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,58.53,1,1,Check-Out,Deborah Wood,douglas13@example.com,+1-855-784-6528,4540217962828702,2024-10-15 +City Hotel,0,18,2017,April,14,4,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,241.87,1,3,Check-Out,Taylor Flores,shannon27@example.net,758-341-9551,2258053564450454,2024-11-05 +Resort Hotel,1,237,2017,January,2,4,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,82.82,0,0,Canceled,Tyler Taylor,bethmccoy@example.net,520.313.5308x071,213194905067595,2024-10-07 +Resort Hotel,0,118,2017,January,4,21,3,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,251.0,179.0,0,Transient,111.5,1,0,Check-Out,Victoria Wright,tmayo@example.net,809.446.9269,36430877639648,2025-02-23 +Resort Hotel,0,0,2017,April,15,8,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,0,No Deposit,15.0,179.0,0,Transient,203.76,0,3,Check-Out,Betty Pollard,morgan54@example.org,3127028250,4840858859461086,2024-10-15 +City Hotel,0,52,2017,October,42,19,1,2,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,170.84,0,0,Check-Out,Katie Alvarez,vmorrow@example.org,+1-805-959-9697x37420,341249585440283,2026-02-18 +City Hotel,0,253,2017,March,10,3,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,104.59,0,0,Canceled,Robert Munoz,jessicahodges@example.com,001-735-312-7612x863,676147361619,2026-01-17 +City Hotel,0,90,2017,October,44,31,0,3,1,0.0,0,BB,DEU,Complementary,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,130.99,0,0,Check-Out,Michelle Newman,donaldparker@example.net,(514)705-5684x29628,213147409656875,2025-06-19 +City Hotel,1,11,2017,July,28,14,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.03,0,0,No-Show,Victoria Marshall,gthompson@example.org,(955)453-5539x697,060422753008,2025-01-22 +Resort Hotel,1,262,2017,April,16,19,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Canceled,Amy Montgomery,cheryl16@example.org,626.941.8183,3519522526633863,2025-04-28 +City Hotel,0,2,2017,December,51,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,95.87,0,0,Check-Out,Jeffrey Benton Jr.,lawrencewilliam@example.org,001-800-225-3946x895,4547227135965,2025-06-08 +City Hotel,0,22,2017,October,42,19,0,2,1,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,111.08,0,1,Check-Out,Kristin Brown,bakercolleen@example.org,001-689-253-8772x2428,589821654029,2025-11-01 +City Hotel,0,411,2017,June,23,8,0,1,1,1.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,126.8,0,0,Check-Out,Sean Hernandez,ccummings@example.org,908.401.6487x6150,3549268856904672,2024-09-12 +Resort Hotel,1,210,2017,May,21,23,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,87.97,0,0,Canceled,Ana Higgins,kimberly52@example.org,(689)977-4043x968,4714180605352759369,2026-01-27 +City Hotel,0,14,2017,November,47,23,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,99.24,0,2,Check-Out,Theresa Luna,qhoward@example.org,3316181309,30240113563270,2025-11-15 +City Hotel,0,1,2017,December,49,3,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,10.0,179.0,0,Transient,90.46,0,2,Check-Out,Katherine Padilla,zfreeman@example.org,001-951-843-0912x8692,36657515088446,2025-06-05 +Resort Hotel,0,10,2017,August,32,6,1,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,110.04,0,1,Check-Out,Victoria Lewis,jwhite@example.org,+1-814-353-5905x50424,4296300011864062,2025-09-28 +City Hotel,1,313,2017,March,12,18,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.69,0,0,Canceled,Joshua Leonard,wendy32@example.com,588.826.9602x6976,4564242371627439,2025-02-15 +City Hotel,0,17,2017,December,52,23,0,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.21,0,0,Check-Out,Kelly Liu,watersphilip@example.net,001-467-823-7478x4327,503836647746,2024-04-07 +Resort Hotel,0,106,2017,April,15,9,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,64.45,1,1,Check-Out,Brianna Ryan,kimberlylopez@example.com,701.659.8902x0136,4550800920043,2025-12-20 +City Hotel,1,179,2017,March,11,11,0,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,143.89,0,0,Canceled,Emily Smith,michael16@example.com,001-788-935-9159x63089,213198836026869,2025-07-22 +City Hotel,0,4,2017,December,49,6,1,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,128.7,0,0,Check-Out,Michelle Howard,hendersonamy@example.org,001-287-513-5055x207,4459655089997,2024-11-29 +City Hotel,1,159,2017,March,9,1,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,179.0,0,Transient-Party,61.43,0,0,Canceled,William Austin,martha51@example.org,7054483030,4116768873059039,2025-02-03 +Resort Hotel,1,94,2017,March,12,21,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,242.13,1,1,Canceled,Monica Oconnor,biancasimmons@example.net,+1-332-263-5644x3367,2247296788873829,2025-07-23 +City Hotel,0,39,2017,January,2,3,0,3,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,2.79,1,1,Check-Out,Kyle Blake,averystephanie@example.com,395-414-1848,378308776632284,2024-05-09 +City Hotel,0,107,2017,January,4,22,2,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,166.51,1,2,Check-Out,Christopher Banks,megan96@example.com,531-927-5575x679,4507978325779261220,2025-02-17 +City Hotel,0,8,2017,November,44,3,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,73.66,0,1,Check-Out,Bryan Davis DVM,rebecca71@example.net,001-970-666-6129x879,213103496114971,2025-05-19 +Resort Hotel,0,0,2017,November,48,26,1,2,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,1,A,I,1,No Deposit,12.0,331.0,0,Transient,1.37,0,0,Check-Out,Tiffany Hughes,huntjason@example.org,738.754.5999,377458653379748,2026-02-11 +City Hotel,0,15,2017,December,52,23,1,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient,82.24,1,1,Check-Out,Michael Taylor,chavezjames@example.net,001-379-265-1494x680,4394334586149,2024-10-14 +City Hotel,0,13,2017,July,29,20,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,110.85,0,1,Check-Out,Brendan Kelly,aguilarchristopher@example.com,567-545-7719x193,4633668481612399,2025-09-14 +City Hotel,0,10,2017,August,32,11,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.64,0,1,Check-Out,Sherry Porter,xrivera@example.org,883-548-8486,4632104673149116,2024-07-18 +Resort Hotel,1,84,2017,June,24,16,1,0,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient-Party,0.59,0,0,Canceled,James Perez,bpineda@example.net,+1-988-581-5037x8585,4541562311278177,2024-08-03 +Resort Hotel,1,180,2017,January,2,3,0,3,1,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient-Party,120.54,1,0,Check-Out,Miss Gina Walton,wendy16@example.com,001-484-454-3105x66624,6558971270982130,2025-08-09 +City Hotel,1,142,2017,August,31,4,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,63.67,0,0,Canceled,Alicia Obrien,xbanks@example.com,741.976.2081x920,4779479166592151,2024-04-28 +City Hotel,1,98,2017,March,10,11,1,1,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,198.62,0,0,Canceled,Mrs. Jacqueline Jackson,davidcandice@example.com,954.822.2425x01349,3569844580345385,2024-09-07 +City Hotel,1,166,2017,February,8,21,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,158.43,0,0,Canceled,Kendra Smith,vsullivan@example.org,001-932-928-6520x413,3552269001869566,2026-01-08 +City Hotel,0,2,2017,June,26,25,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,2.46,0,1,Check-Out,Alexander Stein,jameshill@example.com,001-250-630-5105,568736641685,2025-01-01 +City Hotel,1,40,2017,May,20,13,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.3,0,0,Canceled,Shannon Sosa,gina43@example.com,+1-597-472-5402x99829,3589517884386059,2025-07-09 +City Hotel,1,1,2017,January,2,6,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,1,No Deposit,15.0,45.0,0,Transient,-0.0,0,1,Canceled,Marc White,rojasjames@example.net,220.441.4591,3591900796360212,2025-09-12 +Resort Hotel,0,0,2017,July,31,30,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,107.0,331.0,0,Transient,44.55,0,0,Check-Out,Gregory Wiggins,terri49@example.org,848.897.5243x616,343921615064204,2025-08-04 +City Hotel,0,100,2017,April,15,10,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,122.26,0,2,Check-Out,Linda Berry,mmoore@example.org,(389)506-9683,6555118862180789,2024-04-21 +City Hotel,1,387,2017,June,23,8,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,75.99,0,0,Canceled,Michelle Hobbs,wmcdonald@example.com,4994878627,630496024377,2024-12-18 +City Hotel,0,53,2017,May,19,12,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,98.08,1,2,Check-Out,Charles Fuentes,dylan21@example.org,630-517-2373,4877631577026127,2025-08-25 +Resort Hotel,1,30,2017,February,9,28,1,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,84.56,0,0,Canceled,Andrew Medina,david19@example.com,421-420-6255x2801,30058407669771,2024-07-17 +City Hotel,1,41,2017,February,5,2,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,194.86,0,0,Canceled,Teresa Aguirre,teresadavis@example.net,310.590.5544x914,4309733013434382,2025-05-11 +City Hotel,1,87,2017,November,45,10,1,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.81,0,1,Canceled,Eddie Bailey,rangeljonathan@example.org,001-579-583-7427x915,4275924586481252,2025-09-01 +Resort Hotel,0,15,2017,September,36,3,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Check-Out,Joseph Mccullough,chavezcraig@example.net,830-833-4996x60875,6011883968592611,2024-04-11 +City Hotel,0,88,2017,January,2,8,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,95.73,0,1,Check-Out,Mr. Zachary Mora DVM,brittanydiaz@example.org,+1-225-656-1802x15839,180050371226389,2026-02-09 +City Hotel,0,14,2017,May,18,5,1,0,2,0.0,0,BB,CHN,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,87.18,0,2,Check-Out,Kimberly Price,alexis33@example.org,699-627-8938x31602,4187856455028128,2024-12-25 +City Hotel,0,0,2017,June,23,5,1,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.09,0,0,Check-Out,Bruce Spencer,tgarcia@example.com,474.811.1679x65243,2254387779056894,2024-06-28 +Resort Hotel,0,1,2017,May,21,22,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,D,0,No Deposit,13.0,179.0,0,Transient,120.96,0,2,Check-Out,Jacob Allen,jillmorris@example.org,443-446-7401x34287,3546123605425748,2025-07-24 +Resort Hotel,1,6,2017,March,10,10,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,138.8,0,2,Canceled,Chelsea Powell,debra34@example.org,622-961-1238,3527549580342925,2025-05-27 +Resort Hotel,0,18,2017,August,31,4,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,64.43,0,0,Check-Out,Thomas Morse,hortonsylvia@example.net,(599)790-1374x79324,4546420130914,2025-05-22 +Resort Hotel,0,148,2017,June,23,8,2,5,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,76.21,0,1,Check-Out,Susan Zimmerman,englishoscar@example.org,(534)686-2977,579408405887,2025-05-24 +City Hotel,1,267,2017,March,12,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,E,E,0,No Deposit,1.0,179.0,0,Transient-Party,220.79,0,1,Canceled,Annette Meyer,jose15@example.com,549.428.5063x606,3559696805928037,2025-08-14 +Resort Hotel,0,18,2017,September,39,27,1,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,59.09,0,1,Check-Out,Erica Rose,johnfowler@example.net,8532226577,4492160166594811,2024-04-08 +Resort Hotel,0,13,2017,September,36,3,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,246.0,179.0,0,Transient,42.36,0,1,Check-Out,Kim Long,mariorodriguez@example.com,596.648.7334x9291,4153407470573324917,2024-08-15 +City Hotel,0,3,2017,April,15,11,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,89.48,0,1,Check-Out,Christina Flores,hannahthomas@example.com,499-842-8870,3580914555798994,2024-08-15 +City Hotel,0,21,2017,April,18,30,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,207.76,0,1,Check-Out,Craig Raymond,ashleynewman@example.net,665.257.0917x41961,581373096261,2024-11-02 +Resort Hotel,1,278,2017,March,10,8,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,301.0,179.0,0,Transient,85.71,0,0,Canceled,Jeffrey Miller,matthew80@example.org,450-238-7247x548,342339559301139,2025-02-02 +City Hotel,0,19,2017,November,44,3,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.84,0,1,Check-Out,Brian Hoffman,michael18@example.com,(712)653-2407x4361,3524182715316904,2025-03-08 +Resort Hotel,0,34,2017,April,15,9,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,E,2,No Deposit,239.0,179.0,0,Transient,168.31,0,1,Check-Out,Elizabeth Gay,avilaelizabeth@example.net,(964)263-7172x678,213183596558178,2025-05-25 +City Hotel,0,1,2017,January,2,4,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,1,No Deposit,18.0,179.0,0,Transient,214.3,0,0,Check-Out,Patricia Hale,simmonsgregory@example.com,(970)870-3930x66274,3574454622110582,2025-02-20 +City Hotel,0,0,2017,November,47,22,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,43.0,179.0,0,Transient,91.92,0,0,Check-Out,Amanda Arroyo,danielturner@example.org,557.541.1020x86138,3530385340936309,2025-10-13 +Resort Hotel,0,8,2017,April,14,4,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,238.72,0,0,Check-Out,Kevin Mccullough,mmorgan@example.org,295.578.2503,30443555651344,2025-10-12 +Resort Hotel,1,13,2017,January,4,22,0,1,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,143.83,0,1,Canceled,Margaret Stevenson,orodriguez@example.com,+1-537-225-7840x9026,676110693873,2024-11-09 +City Hotel,0,31,2017,March,10,4,1,3,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,230.9,0,2,Check-Out,Amber Turner,yschwartz@example.org,3112370807,6544179411839261,2024-11-09 +City Hotel,0,21,2017,May,20,15,2,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.37,0,0,Check-Out,Victor Williams,agarcia@example.com,001-301-942-4316x34089,3512313645346661,2024-04-01 +Resort Hotel,0,63,2017,March,9,3,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,146.24,0,2,Check-Out,Shelly Rodgers,john70@example.com,659-918-5744x821,4394055322336553,2025-08-05 +Resort Hotel,0,165,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,12.0,224.0,0,Transient-Party,31.33,0,0,Check-Out,Cassandra Wood,patrickmiller@example.com,284-712-3804x272,4711929022274092667,2025-10-27 +City Hotel,0,14,2017,April,15,11,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.52,0,0,Check-Out,Susan Garcia,timothy69@example.com,8915422361,4857238945801,2024-11-19 +City Hotel,1,2,2017,September,39,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,15.0,331.0,0,Transient,50.68,0,0,Canceled,Stephanie Joseph,lindathompson@example.com,(443)251-5369x22115,4464002514630182,2024-12-28 +Resort Hotel,0,0,2017,January,3,20,1,0,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,344.0,195.0,0,Transient-Party,39.09,0,0,Check-Out,Dalton Clark,melissa69@example.com,001-682-974-8104x430,574697183329,2024-11-29 +Resort Hotel,1,105,2017,January,2,3,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,E,0,No Deposit,15.0,179.0,0,Transient,104.81,0,0,Canceled,Alexis Weeks,vanessasimmons@example.org,745.319.8442x58427,30380773797790,2025-04-06 +City Hotel,0,56,2017,June,25,19,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Transient-Party,84.65,0,1,Check-Out,Michael Glass,nelsonangela@example.org,001-849-611-7159x938,3550937820551522,2024-12-02 +City Hotel,1,341,2017,June,23,4,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,74.74,0,0,Canceled,David Cervantes,cameronavila@example.org,(963)566-2385x34021,4760205032738,2025-02-12 +Resort Hotel,0,29,2017,April,14,5,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,232.97,1,2,Check-Out,Victoria Benitez,joneal@example.net,963.650.2371x7821,3517249775716270,2024-05-22 +City Hotel,0,33,2017,October,41,13,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,71.85,0,0,Check-Out,Jacqueline Monroe,sedwards@example.net,(333)614-5321x580,3514133856477106,2024-11-23 +City Hotel,1,9,2017,April,16,14,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.42,0,0,Canceled,Charles Sanchez,fvaughn@example.com,+1-632-402-9697,6568813570232311,2025-02-27 +City Hotel,0,38,2017,June,26,27,2,1,2,1.0,0,BB,BRA,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,110.91,0,3,Check-Out,Sonia Henderson,onealnicole@example.net,(209)306-2013x35775,4944089518786,2024-05-06 +City Hotel,0,60,2017,November,46,17,2,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.48,0,1,Check-Out,Sharon Sims,daniellecooper@example.org,(549)636-9392x6852,346926019722692,2024-06-01 +City Hotel,1,185,2017,May,18,4,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,1,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,203.9,0,1,Canceled,Shawn Doyle,uvillegas@example.org,200.987.3128,4902432605668,2025-08-24 +City Hotel,0,348,2017,March,13,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.78,0,0,Check-Out,Michael Perry,peter16@example.org,(971)368-3502,213141224203526,2024-10-04 +Resort Hotel,0,111,2017,September,36,5,1,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,81.77,0,1,Check-Out,Donald Santana,janice84@example.org,(771)844-4550x56170,3503224386630133,2025-02-19 +Resort Hotel,1,20,2017,July,29,15,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,51.41,0,0,Canceled,Katherine Greene,carrieowens@example.com,806-582-8670x062,4947688436121339,2024-12-04 +City Hotel,0,30,2017,March,12,21,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,142.09,0,1,Check-Out,Jennifer Dominguez,wrogers@example.com,(960)613-0964x678,213136638097860,2024-06-18 +Resort Hotel,1,89,2017,April,17,26,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,113.19,0,2,Canceled,Matthew Walker,ocardenas@example.org,(824)824-2534,3587859228968412,2024-08-11 +Resort Hotel,1,80,2017,February,5,3,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,79.91,0,1,Canceled,Ashley Barrera,christopher25@example.net,001-997-781-1875x08167,4881320304969502,2024-12-27 +City Hotel,1,63,2017,July,31,31,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,88.04,0,0,Canceled,Clifford Murphy DVM,jensenphilip@example.com,533-524-5395,30077143206615,2025-03-07 +City Hotel,0,1,2017,September,36,3,1,0,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,92.98,0,1,Check-Out,Michael Arias,robinsonmark@example.com,001-721-429-1998x138,3560225390500451,2024-09-15 +Resort Hotel,0,299,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,245.0,0,Transient,41.07,0,1,Check-Out,Joshua Mitchell,williammills@example.org,(551)516-0764x717,180049180267345,2026-01-10 +Resort Hotel,0,0,2017,May,19,13,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,124.93,1,2,Check-Out,Ashley Wilson,shepardedgar@example.net,(636)485-1516,4250176335045511,2025-05-26 +Resort Hotel,0,6,2017,August,32,8,0,2,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,63.25,0,0,Check-Out,Stacey Clements,ntucker@example.com,6106491210,4090300147238627,2025-11-26 +Resort Hotel,0,9,2017,May,21,26,4,10,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,E,E,2,No Deposit,13.0,179.0,0,Transient,112.06,1,1,Check-Out,Kathleen Martinez,sarahnichols@example.net,568.638.5805x9093,4859916644433,2025-10-29 +City Hotel,0,14,2017,September,35,1,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,77.66,0,1,Check-Out,Julie Rodriguez MD,christina19@example.com,(971)305-0908,4369459153908277,2025-07-24 +Resort Hotel,0,0,2017,June,24,13,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,18.0,179.0,0,Transient,58.12,1,2,Check-Out,Cathy Farmer,gortiz@example.com,313.856.2754x243,4677149013964,2025-04-21 +Resort Hotel,0,27,2017,December,51,19,1,1,1,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,76.34,0,0,Check-Out,Dana Gilbert,qpadilla@example.net,325.340.4365,566866929763,2024-05-31 +Resort Hotel,0,44,2017,November,47,23,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,75,Transient,166.03,0,1,Check-Out,Charles Harper,donaldmarquez@example.net,+1-223-887-0150x2434,060487682290,2026-02-15 +City Hotel,1,55,2017,March,10,2,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,15.0,179.0,0,Transient,218.27,0,1,No-Show,Timothy Wang,jeremy63@example.com,279.918.5438x115,4796513104206240,2025-03-25 +Resort Hotel,0,29,2017,May,20,19,3,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,129.99,0,0,Check-Out,Daniel Stewart,fthompson@example.org,820-891-4189x6523,38854161221177,2026-03-20 +City Hotel,0,25,2017,April,16,13,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,131.05,0,1,Check-Out,Tiffany Peterson,murraydarrell@example.com,704.576.3398,180089644003423,2026-01-23 +Resort Hotel,0,42,2017,April,17,23,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,179.73,0,2,Check-Out,Tammy Bell,michelle59@example.com,001-640-575-6613x137,370527864798412,2024-03-27 +Resort Hotel,0,8,2017,April,17,23,0,2,3,1.0,0,SC,POL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,252.0,0,2,Check-Out,Mathew Myers,tiffany94@example.com,(860)303-4292,371007353527845,2024-08-24 +City Hotel,1,155,2017,August,33,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,39,Transient,85.32,0,0,Canceled,Edgar Brown,colemanashley@example.net,892-391-7529x896,3538821375784349,2024-06-02 +Resort Hotel,0,197,2017,November,46,13,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,12.0,222.0,0,Transient-Party,69.17,0,0,Check-Out,Cory Barrett,wayne29@example.com,001-885-502-8870x3373,6011206205963637,2024-11-26 +Resort Hotel,0,2,2017,November,47,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,2,No Deposit,13.0,179.0,0,Transient,65.63,1,0,Check-Out,Seth Jones,zyoung@example.org,(252)659-4696x03314,346766680298121,2024-09-04 +Resort Hotel,0,18,2017,November,44,2,0,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,F,0,No Deposit,337.0,179.0,0,Transient,42.26,0,2,Check-Out,Joseph Hawkins,hpadilla@example.com,+1-740-836-8419x2343,349518434371762,2025-09-02 +City Hotel,0,145,2017,November,45,6,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,10.0,179.0,0,Transient,101.92,0,1,Check-Out,Victor Brown,heather41@example.com,+1-739-707-5250x37776,6520235144910973,2024-10-31 +Resort Hotel,0,0,2017,April,16,17,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,242.0,179.0,0,Transient,132.78,1,2,Check-Out,Jennifer Ferguson,jaclynmack@example.com,6336666538,4007619050322,2024-12-30 +Resort Hotel,0,32,2017,December,51,20,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,241.0,179.0,0,Group,87.99,0,2,Check-Out,Carolyn Cantu,christopherprince@example.net,(562)215-4385,6502512600795235,2025-12-21 +City Hotel,0,100,2017,April,14,4,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,83.66,0,0,Check-Out,Charles Garcia,bakerrenee@example.com,418-387-1170x2339,30154952814035,2025-06-03 +Resort Hotel,1,2,2017,December,51,19,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,E,1,Non Refund,243.0,179.0,0,Transient-Party,78.42,0,0,No-Show,James Hart,kyle09@example.com,+1-453-970-3074,372751541198261,2025-06-02 +City Hotel,1,399,2017,April,15,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.16,0,0,Canceled,Patricia Wilson,jkirby@example.com,(928)780-9680,676356877172,2025-04-02 +City Hotel,0,50,2017,May,19,8,0,2,3,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,150.98,0,1,Check-Out,Mark Elliott,andreacrane@example.com,001-738-239-2632,4707711158727769871,2025-09-06 +City Hotel,0,34,2017,July,29,20,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,93.9,1,0,Check-Out,Matthew Bartlett,antonio05@example.org,+1-538-668-2760x93980,2274681880368602,2025-01-21 +City Hotel,0,89,2017,March,13,25,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,242.0,179.0,0,Transient,76.23,0,3,Check-Out,Maria Campbell,dfields@example.org,001-685-920-5736,4977267363232402,2024-06-15 +City Hotel,0,14,2017,September,36,6,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,L,0,No Deposit,10.0,179.0,0,Transient,45.86,0,0,Check-Out,Joanna Adkins,michealmccall@example.com,615.702.7322x2430,4129039663920,2026-03-13 +City Hotel,1,2,2017,March,10,9,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,2.16,0,0,Canceled,Lisa Reed,zpeck@example.org,+1-710-585-8582,30323624455614,2026-03-17 +Resort Hotel,0,37,2017,January,2,7,2,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,171.09,0,2,Check-Out,Jordan Calhoun MD,oconnellkristina@example.net,001-647-588-1847,4829186619069899,2026-02-06 +City Hotel,0,390,2017,April,14,7,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,69.59,0,0,Check-Out,Heather Thomas,mhudson@example.com,001-668-583-7626x5076,213155015214419,2025-02-15 +Resort Hotel,0,1,2017,November,45,7,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,37.98,0,1,Check-Out,Carrie Coffey,chase09@example.org,001-672-739-0270,3517505763144720,2025-06-25 +City Hotel,0,41,2017,January,2,7,0,2,2,0.0,0,BB,CHE,Online TA,Direct,0,0,0,A,H,0,No Deposit,246.0,179.0,0,Transient,87.15,1,1,Check-Out,Dr. Isabel Smith PhD,wpadilla@example.org,554-214-9116x8976,4159121682263360173,2025-07-28 +Resort Hotel,0,141,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,14.0,223.0,0,Transient-Party,92.85,0,0,Check-Out,Joe Page,andrew23@example.com,404-995-5831x929,4485950715184,2024-09-11 +City Hotel,0,100,2017,April,15,9,1,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,204.25,0,1,Check-Out,Crystal Morales,ugarcia@example.org,502.294.5784,2231920123080455,2025-05-23 +City Hotel,1,163,2017,March,9,2,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,C,E,0,No Deposit,31.0,179.0,0,Transient,223.52,0,0,Canceled,Heather Mcmahon,david17@example.org,001-294-221-6593x153,675934257378,2024-07-30 +Resort Hotel,0,52,2017,November,46,14,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,229.73,0,1,Check-Out,Jason Quinn,annataylor@example.net,2819197765,38950570711269,2024-09-13 +Resort Hotel,0,64,2017,March,10,4,4,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,303.0,179.0,0,Transient,139.3,0,1,Check-Out,James Cox,mackenziemiller@example.net,497-346-2942,6533790356851898,2026-01-16 +Resort Hotel,0,24,2017,July,28,12,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,53.32,1,1,Check-Out,James Cummings,christinesmith@example.net,001-675-790-3901x38412,372303134598380,2025-02-21 +City Hotel,1,11,2017,September,36,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,135.0,179.0,0,Transient,34.21,0,0,Canceled,Daniel Lee,bradley14@example.com,001-537-732-6377x3430,4092383311299318,2024-10-13 +City Hotel,1,0,2017,April,14,4,2,2,2,0.0,0,SC,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,0.0,0,1,Canceled,Shane Hopkins,rebecca72@example.net,744-637-7554x3706,4751194243896432,2025-06-26 +City Hotel,1,59,2017,June,24,12,2,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,115.42,0,1,Canceled,Stephanie Kelley,ericksonyvette@example.com,(295)296-1144x995,6011855474820462,2025-04-07 +Resort Hotel,0,28,2017,May,18,6,2,5,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,252.0,1,2,Check-Out,Jennifer Schneider,johngordon@example.net,(200)502-2585x6646,30504733206093,2025-12-28 +City Hotel,1,41,2017,March,9,3,1,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,113.86,0,1,Canceled,Charles Rodriguez,kingsusan@example.com,(487)870-5645,4254186865386801,2025-03-06 +Resort Hotel,0,136,2017,November,45,9,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,11.0,222.0,0,Transient-Party,71.69,0,0,Check-Out,Elizabeth Wall,timothy45@example.com,+1-778-424-9843x48816,3578360060310590,2025-08-02 +Resort Hotel,0,15,2017,June,24,15,2,1,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,75,Transient,129.21,0,3,Check-Out,Loretta Williams,justin63@example.org,807.273.4513x02562,5421046791650818,2025-06-18 +City Hotel,0,56,2017,April,17,26,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,163.12,1,0,Check-Out,Juan Moore,madelinesanchez@example.net,635.893.9944x09727,4114799664649011,2024-10-31 +Resort Hotel,1,39,2017,August,33,12,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,241.0,179.0,0,Transient,204.5,0,1,Canceled,Joseph White,nicole65@example.org,+1-249-853-3005,4993318821784300,2025-05-24 +Resort Hotel,0,118,2017,April,15,9,1,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,54.23,0,1,Check-Out,Michael Cruz,clarkkelly@example.org,+1-426-416-3593,373800158270290,2024-08-18 +Resort Hotel,0,36,2017,June,24,11,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient,54.18,1,0,Check-Out,Denise Reese,hansenkenneth@example.org,477.375.7636x0187,3574142257379032,2025-06-14 +Resort Hotel,1,15,2017,December,48,2,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,244.0,179.0,0,Transient,62.34,0,1,Canceled,Brittney Morales,wilsonlaura@example.com,(896)613-5799,370922296575670,2025-05-23 +City Hotel,0,153,2017,November,45,4,1,2,2,1.0,0,BB,BEL,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,64.07,0,1,Check-Out,Christina Jenkins,doris49@example.org,7062335578,30338239439878,2025-03-26 +Resort Hotel,0,102,2017,March,9,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,87.6,1,1,Check-Out,Sean Anderson,michaelgarner@example.org,889.344.9912,630484342948,2026-03-06 +City Hotel,0,3,2017,July,27,1,0,2,1,0.0,0,BB,CHE,Direct,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,117.61,0,1,Check-Out,Emily Fitzpatrick,sara17@example.net,4254488575,2366974698219060,2024-12-03 +City Hotel,0,64,2017,July,29,18,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,109.66,0,2,Check-Out,Nancy Liu,ostevenson@example.org,618.351.8619x571,30547448131106,2024-05-01 +Resort Hotel,0,1,2017,March,13,24,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,133.17,1,1,Check-Out,Rachel Miller,justinmcdaniel@example.org,479-345-3431x2302,4173287425786221,2026-02-12 +City Hotel,0,1,2017,January,2,11,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient-Party,80.19,0,1,Check-Out,Scott Brown,kruegerjade@example.com,(317)451-3592x468,213182003111662,2024-05-25 +City Hotel,0,154,2017,May,22,31,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,64,Transient-Party,63.01,0,0,Check-Out,Emily Winters,paynelisa@example.org,6954205917,5148707426415685,2025-09-15 +Resort Hotel,1,256,2017,March,13,28,3,7,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,296.0,179.0,0,Transient,103.79,0,0,Canceled,Chris Lewis,christopherreyes@example.org,+1-794-687-9655,375273006756365,2024-08-09 +Resort Hotel,0,38,2017,March,9,1,2,5,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,100.62,0,0,Check-Out,Heidi Blankenship,kortega@example.org,813.536.1391x1557,6596888454402145,2026-01-31 +City Hotel,0,26,2017,February,8,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,134.0,179.0,0,Transient,101.18,0,1,Check-Out,Sandra Alvarez,carlmcfarland@example.com,2658703261,30306543846278,2025-11-29 +Resort Hotel,1,47,2017,April,17,28,1,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,102.42,0,0,Canceled,Donna Garcia,leonarddoris@example.org,238.966.9326x928,3571150222013985,2025-08-12 +Resort Hotel,0,160,2017,November,48,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,53.61,0,0,Check-Out,Stephanie Hernandez,mooremolly@example.net,(622)698-1248,3521074853700481,2024-06-30 +City Hotel,0,112,2017,March,9,1,1,0,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,108.72,0,3,Check-Out,Joseph Montgomery,paigeosborn@example.net,7537536048,3509209247130815,2025-10-28 +Resort Hotel,1,106,2017,January,2,3,4,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,92.55,0,0,Canceled,Juan Harrison,xbrowning@example.net,(573)595-3874x64411,4630885053371,2026-03-05 +Resort Hotel,1,255,2017,March,11,13,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,240.0,179.0,0,Transient,129.66,0,1,Canceled,Miss Stephanie Cherry,laurensantiago@example.com,+1-473-369-1175x574,4628878345846,2024-05-18 +City Hotel,0,195,2017,May,21,26,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.07,0,0,Check-Out,Bridget Wallace,ufranklin@example.org,830.580.6864x035,6011883873613908,2025-01-01 +City Hotel,0,41,2017,December,50,12,2,5,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,138.68,0,0,Check-Out,Brandy James,rodney41@example.org,7774392476,2260927559470476,2024-12-31 +City Hotel,0,53,2017,May,21,23,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,106.35,0,0,Check-Out,Christopher Smith,michaelbrowning@example.com,001-453-386-3063x153,4087335292143,2024-08-07 +City Hotel,0,3,2017,November,45,7,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,136.75,0,0,Check-Out,Sabrina Galvan,alexandrawright@example.net,7199973791,676345457664,2024-06-29 +City Hotel,0,3,2017,May,18,1,0,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,139.23,0,3,Check-Out,Catherine Shannon,zmartin@example.org,488-725-9363x2805,30159182201275,2025-02-19 +Resort Hotel,0,0,2017,August,32,8,2,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,2,No Deposit,17.0,331.0,0,Transient,0.0,0,1,Check-Out,Theresa Knight,jessepark@example.net,+1-672-523-8513x2899,4229758884236119204,2024-12-07 +Resort Hotel,1,139,2017,August,31,4,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient,65.22,0,0,Canceled,Victoria Tanner,brianjones@example.net,479.962.8771,343908295432611,2024-11-27 +City Hotel,1,44,2017,September,35,1,0,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Transient,136.32,0,2,No-Show,Chad Evans,cindy45@example.org,+1-872-232-3216x7877,676225860805,2024-10-09 +Resort Hotel,0,254,2017,June,23,10,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.61,0,0,Check-Out,Chase Haney,guzmanandrew@example.org,(510)774-5414,374045402621349,2024-06-22 +City Hotel,0,151,2017,February,8,22,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,27.0,179.0,0,Transient,137.22,0,0,Check-Out,Maureen Nixon,katie28@example.com,001-217-346-3729x0992,4220069516019759920,2024-12-26 +City Hotel,1,246,2017,June,24,11,1,2,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,41,Transient-Party,73.11,0,0,Canceled,Michael Rush,christinayoung@example.net,(258)926-1056x6283,3570099459127631,2024-09-20 +City Hotel,0,102,2017,November,45,4,0,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,C,1,No Deposit,15.0,179.0,0,Transient,235.51,0,3,Check-Out,Larry Lloyd,johnsonmelissa@example.com,838.347.5840,676185029573,2024-07-29 +City Hotel,0,13,2017,April,15,7,1,1,2,2.0,0,BB,,Direct,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,233.91,0,0,Check-Out,Steven Butler,jeffreygillespie@example.org,+1-425-328-2252,3582933867550255,2024-04-16 +Resort Hotel,0,30,2017,November,45,7,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,54.31,0,1,Check-Out,Samuel Lee,ucruz@example.org,318-631-0442x38593,6011727487973879,2024-09-22 +City Hotel,1,105,2017,August,31,2,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.16,0,0,Canceled,Joseph Moon,amber02@example.net,440.675.9034x46721,6011081685277323,2026-02-16 +Resort Hotel,0,14,2017,November,47,18,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,110.42,0,3,Check-Out,Taylor Williams II,barbara68@example.net,+1-698-579-0171,675948033476,2025-05-21 +Resort Hotel,0,48,2017,March,14,30,1,5,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Check-Out,Jerry Hamilton,joegrant@example.net,+1-659-671-5869,379981473885071,2025-10-01 +City Hotel,0,78,2017,August,35,27,1,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,82.38,0,1,Check-Out,Paul Wolf,jenny20@example.org,+1-981-720-4319x80993,5292351566898956,2025-07-29 +City Hotel,1,149,2017,February,7,13,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,138.41,0,0,Canceled,Bobby Arnold,frazierdaniel@example.net,+1-688-455-2373x61802,3597343209298154,2025-09-06 +City Hotel,1,87,2017,December,51,16,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,244.4,0,1,Canceled,William Weber,erika44@example.net,+1-390-537-2321x031,2268170771505447,2025-11-08 +City Hotel,0,42,2017,June,23,4,2,2,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,73.0,179.0,0,Contract,67.49,0,0,Check-Out,Alicia James,travis20@example.com,001-795-252-6525,180087932217648,2025-02-09 +Resort Hotel,0,18,2017,April,14,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,136.87,0,1,Check-Out,Jamie Johnson,brian18@example.com,372.473.9416x87302,36086659154238,2024-05-31 +City Hotel,0,1,2017,January,2,2,1,5,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,I,0,No Deposit,12.0,179.0,0,Transient,1.77,0,1,Check-Out,Melissa Rogers,beltranerika@example.org,001-929-522-5755x52159,5168738683074068,2025-10-22 +City Hotel,0,20,2017,September,36,3,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,138.78,0,1,Check-Out,Sarah Mueller,sharpshannon@example.com,+1-855-950-8637,6011086048246600,2025-03-07 +City Hotel,1,157,2017,March,11,13,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,163.65,0,0,Canceled,Gordon Hahn,andersonkimberly@example.net,+1-369-541-1393x938,502045511503,2025-02-06 +Resort Hotel,0,178,2017,September,37,15,0,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,135.54,0,1,Canceled,Kristen Burns,audreyjohnson@example.org,702.320.7493x20053,4763156588073863438,2025-11-23 +City Hotel,1,46,2017,June,23,5,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.5,0,0,Canceled,Thomas Sellers,adamhill@example.net,498-242-2891x1912,213156830562586,2024-11-11 +City Hotel,0,38,2017,December,50,12,2,5,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,105.47,0,0,Check-Out,Melvin Flores,halltommy@example.net,790.978.3473x6462,6523708252986644,2024-06-25 +City Hotel,1,42,2017,June,23,9,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,62.04,0,0,Canceled,Ashley Cochran,brownedward@example.net,(693)822-2807x4022,4716932878157,2024-09-15 +Resort Hotel,0,54,2017,May,19,10,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,53.31,0,1,Check-Out,Ashley Jones,vjackson@example.com,(826)681-3246x974,6509960955268121,2024-07-07 +Resort Hotel,1,92,2017,April,16,17,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Christian Solis,victoria12@example.com,(749)483-8497x002,4740435973637825,2025-03-27 +City Hotel,1,46,2017,April,18,30,2,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,239.0,179.0,0,Transient-Party,193.25,0,1,Canceled,Sharon Smith,stevenschneider@example.com,(775)473-1335x49271,502020137381,2025-03-16 +Resort Hotel,0,40,2017,October,40,5,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,34.73,1,1,Check-Out,Robert Berg,pcarrillo@example.net,636.719.3681,4544715018951509539,2025-10-27 +City Hotel,0,29,2017,September,38,16,0,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,L,1,No Deposit,11.0,179.0,0,Transient,39.86,0,2,Check-Out,Brooke Sims,jaredjohnson@example.org,391-423-4335x796,5350189196126037,2024-06-28 +Resort Hotel,1,219,2017,November,47,19,1,5,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,2,No Deposit,13.0,179.0,75,Transient-Party,85.3,1,0,Canceled,Julia Marks,michaelowens@example.com,(275)613-4534,4507543280425016922,2025-08-15 +Resort Hotel,0,4,2017,November,44,3,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,B,E,1,No Deposit,16.0,179.0,0,Transient,44.05,0,2,Check-Out,Ashley Martinez,nhouston@example.net,622.561.5509x76128,4964738174999723,2024-07-08 +Resort Hotel,0,0,2017,June,23,6,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,88.0,179.0,0,Transient-Party,101.53,0,0,Check-Out,Christina Reese,davidmartin@example.com,532.515.7162x1699,4740315620605054,2025-01-25 +City Hotel,1,31,2017,September,39,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,11.0,179.0,0,Transient,80.19,0,0,Canceled,Brandon Bean,nmartin@example.org,+1-460-284-3170x34665,4118634191229100,2025-10-03 +City Hotel,0,11,2017,March,12,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Contract,132.54,0,2,Check-Out,Rickey Hall,michael58@example.org,(996)317-9273,180069312435933,2025-09-05 +City Hotel,0,171,2017,April,16,16,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,170.32,0,1,Check-Out,Bobby Flores,suzanne56@example.org,001-423-391-3043x112,180083009279678,2024-08-16 +City Hotel,1,0,2017,April,14,4,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,0.0,0,1,No-Show,Karen Gonzalez,carpentergeorge@example.net,001-985-946-8375x1537,6011546926308285,2025-11-14 +Resort Hotel,0,0,2017,April,14,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,B,1,No Deposit,17.0,179.0,0,Transient,218.07,1,1,Check-Out,Lisa Lopez MD,megan09@example.net,683-816-4074,6011504775980357,2024-09-02 +Resort Hotel,0,0,2017,April,15,8,4,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,131.11,0,0,Check-Out,Sharon Brown,nancy14@example.com,001-827-701-2680x6133,378803935395260,2025-07-01 +City Hotel,1,396,2017,June,26,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,63.18,0,0,Canceled,Aaron Thompson,samantha76@example.org,+1-550-475-1604x3625,4988229071800,2024-11-23 +City Hotel,0,19,2017,May,20,18,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,154.0,179.0,0,Transient-Party,108.2,0,0,Check-Out,Charles Weaver,thodges@example.org,332.857.0236x92385,564243455677,2025-05-30 +City Hotel,0,2,2017,June,25,20,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Contract,40.65,0,2,Check-Out,Melissa Warner,susan48@example.com,429.998.9857x562,4020850219324,2025-05-14 +City Hotel,0,53,2017,May,18,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,169.81,0,0,Check-Out,Cody Morris,fbrowning@example.com,(211)613-1448,4215891407826515,2024-07-07 +Resort Hotel,0,77,2017,December,2,31,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,61.61,1,1,Check-Out,Carla Reid DDS,qsilva@example.com,001-526-534-8142x1134,2298986136966105,2026-01-06 +Resort Hotel,0,153,2017,March,11,10,3,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,250.0,179.0,0,Transient,240.37,0,1,Check-Out,Katie Mitchell,atucker@example.com,+1-846-619-1289x891,3574988206895159,2026-01-04 +Resort Hotel,1,150,2017,November,47,22,1,3,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,83.12,0,0,Check-Out,Roger Moss,castromichelle@example.org,001-481-220-0033x893,4109625636395275,2025-08-24 +Resort Hotel,1,8,2017,June,23,3,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,51.69,0,1,Canceled,Mary Donaldson,umarshall@example.net,(208)375-2331x4082,4869072290332437,2024-04-20 +Resort Hotel,0,269,2017,March,11,14,1,4,2,1.0,0,BB,ESP,Groups,TA/TO,0,0,0,C,C,0,No Deposit,31.0,179.0,0,Transient-Party,47.46,0,0,Check-Out,Paul Brown,vmclean@example.org,001-381-946-6548,30282887613725,2024-06-19 +City Hotel,0,64,2017,March,10,3,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,86.73,0,1,Check-Out,Gregory Quinn,brooksdanielle@example.com,+1-759-393-8516x2861,180071398212665,2025-05-13 +City Hotel,1,92,2017,July,27,5,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.21,0,0,Canceled,Sabrina Miller,morganbridges@example.com,722-951-0558,4745744383296428,2024-06-24 +Resort Hotel,0,3,2017,March,10,9,1,0,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,147.0,179.0,0,Transient-Party,63.47,0,0,Check-Out,Michelle Smith,ksmith@example.com,+1-733-952-8046,4145994078634450,2024-04-20 +Resort Hotel,0,100,2017,January,2,11,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,29.0,179.0,0,Transient-Party,89.1,0,0,Check-Out,Anita Chapman,nicholas97@example.net,(921)799-7384x131,5109796559169570,2025-12-11 +Resort Hotel,0,63,2017,February,8,23,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,E,1,No Deposit,243.0,179.0,0,Transient,146.27,0,3,Check-Out,Heather Becker,brandon80@example.com,(390)967-8701,4388908643062,2025-01-26 +Resort Hotel,0,185,2017,June,26,25,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,43.31,0,0,Check-Out,Andrea Baker,arussell@example.net,001-788-795-3008x14636,3590987201887567,2025-01-07 +Resort Hotel,0,1,2017,March,10,9,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,0,No Deposit,250.0,179.0,0,Transient,133.5,1,0,Check-Out,Joanne Harmon,trobinson@example.org,+1-595-507-2466,4191842228499637926,2024-08-05 +City Hotel,0,30,2017,January,2,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.74,0,2,Check-Out,Mr. Phillip Edwards,anthony41@example.com,593.663.3344x38543,4724504807941818,2024-06-22 +City Hotel,0,34,2017,July,30,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,197.0,226.0,0,Transient-Party,80.99,0,0,Check-Out,Mrs. Laurie Williams MD,kathrynrivera@example.net,282-235-6562x5434,378635224290020,2024-04-17 +Resort Hotel,1,34,2017,March,12,18,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Canceled,Joel Mclean,anthonymendez@example.org,001-306-282-4059x125,4888314645872601221,2025-10-07 +City Hotel,1,112,2017,February,6,4,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,170.8,0,3,Canceled,Valerie Ford,gregory23@example.net,906.327.5244x0079,180097488471762,2024-11-14 +City Hotel,1,305,2017,May,21,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.55,0,0,Canceled,Jodi Thomas,thompsonlisa@example.net,(815)434-2151,4839087524900822,2024-07-22 +City Hotel,1,0,2017,April,14,4,0,1,2,2.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,131.79,0,1,No-Show,Jennifer Johnson,joseph62@example.com,+1-744-262-6277x4843,630472716186,2025-07-04 +City Hotel,0,2,2017,October,43,25,1,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.95,0,1,Check-Out,Eugene Fritz,usanchez@example.org,001-991-526-1110x86806,5226433821956380,2024-05-24 +City Hotel,0,158,2017,February,8,21,0,3,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,145.41,0,1,Check-Out,Jennifer Smith,william49@example.com,001-628-591-3683x06036,4154205263678410,2025-06-19 +City Hotel,0,81,2017,January,4,25,2,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,96.98,0,0,No-Show,Mary Thompson,edwardsconnor@example.net,+1-766-785-6220x8209,4706907548471978981,2025-02-24 +City Hotel,0,69,2017,August,35,29,2,1,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,9.0,179.0,0,Transient,89.83,0,1,Check-Out,Catherine Davis,joshua89@example.org,994.468.9960x456,4456358030862455,2025-07-24 +Resort Hotel,0,154,2017,April,18,29,4,7,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,369.0,179.0,0,Transient,240.01,0,1,Check-Out,Chris Rogers,jeffrey35@example.net,001-229-224-9789x9524,4132629856822993,2025-02-27 +Resort Hotel,0,141,2017,March,10,8,2,5,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,162.31,0,2,Canceled,James Torres,ashley99@example.org,815-318-0236,4387950908229264,2025-11-10 +Resort Hotel,0,26,2017,January,4,22,0,2,2,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,28.0,179.0,75,Transient-Party,167.24,0,1,Check-Out,Kirsten Perez,ogarza@example.com,940-707-6013x12479,30386426068026,2024-06-04 +City Hotel,1,150,2017,February,6,7,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,13.0,179.0,0,Transient,132.17,0,1,Canceled,Dr. Jeffrey Valentine,douglas87@example.net,883.275.8297,3573365648133807,2024-03-28 +City Hotel,1,156,2017,March,12,21,1,3,3,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,2,No Deposit,14.0,203.0,0,Transient,101.6,0,0,Canceled,Wayne Brown,christian09@example.net,001-622-794-0583x21528,4295270060496,2024-03-27 +City Hotel,1,85,2017,March,10,8,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,198.33,0,1,Canceled,Andrea Morris,joneschristopher@example.net,556-796-5120x1633,630484153642,2026-03-14 +City Hotel,1,207,2017,October,41,14,2,5,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,41.37,0,1,Canceled,Dylan Young,karen73@example.org,+1-986-634-5812x691,3530292413108925,2025-03-02 +City Hotel,1,21,2017,September,39,23,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.68,0,0,Canceled,Regina Butler,millerpatricia@example.com,307-245-0051,6508617917380441,2025-05-04 +City Hotel,0,42,2017,August,32,5,0,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,92.4,0,1,Check-Out,Eric Moore,jasonjefferson@example.net,+1-248-728-5704x4217,349012797445140,2025-10-31 +City Hotel,0,12,2017,January,4,22,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,182.0,0,Transient,114.28,0,1,Check-Out,Melinda Patterson,noblebrian@example.net,284-250-6053,6011301378474015,2024-11-06 +City Hotel,1,98,2017,February,8,21,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,118.18,0,0,Canceled,Carl Campbell,campbellwanda@example.com,6303145224,6011084347944611,2024-11-24 +City Hotel,1,35,2017,December,2,30,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.36,0,1,Canceled,Renee Shields,greid@example.net,001-342-555-1538x657,3592555947487030,2024-11-02 +Resort Hotel,1,257,2017,February,8,17,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,104.48,0,0,Canceled,Wesley Brown,ryoder@example.org,(556)376-6660x05946,4717713541248544450,2026-03-13 +City Hotel,0,252,2017,November,44,1,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,3.94,0,0,Check-Out,Jason Clark,bradfordmichael@example.com,+1-646-380-4646,213115987144408,2025-07-20 +Resort Hotel,0,36,2017,November,46,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,41.64,0,2,Check-Out,David Wiggins,kimberly34@example.net,+1-461-577-2620x741,676121214842,2024-12-31 +City Hotel,1,11,2017,March,11,17,0,1,2,0.0,0,SC,PRT,Aviation,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,115.25,0,0,Canceled,Thomas Kaufman,michael42@example.org,6423497791,3554803958939531,2025-07-13 +City Hotel,0,10,2017,December,51,23,1,3,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,82.42,0,2,Check-Out,Kristen Ray,moranfrank@example.net,+1-319-687-0782x10210,30323331147553,2024-12-15 +Resort Hotel,0,64,2017,March,13,27,2,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,247.0,179.0,0,Transient,252.0,1,2,Check-Out,Cory Martinez,lisa82@example.net,558.298.2171x37744,30405635985158,2024-10-20 +Resort Hotel,0,16,2017,June,23,7,1,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,94.4,0,0,Check-Out,Mark Maddox,kflores@example.org,7527029226,372004734252549,2024-06-08 +Resort Hotel,0,107,2017,November,47,23,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,185.0,179.0,0,Contract,78.67,0,2,Check-Out,Kevin Young,lpayne@example.com,001-381-516-6921x8732,503899363751,2024-08-03 +City Hotel,0,49,2017,November,47,22,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,47.79,0,1,Check-Out,Katherine Harrison,austin54@example.org,+1-426-371-5355,4387135490537,2025-09-30 +City Hotel,0,33,2017,January,4,22,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,154.86,0,0,Check-Out,Jorge Davis,victoria19@example.org,696.325.5814,3504636782927319,2026-03-05 +City Hotel,1,1,2017,September,38,17,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,300.0,179.0,0,Transient,41.19,0,0,Canceled,Loretta Miller,stephenconley@example.com,+1-452-542-8826,4764951634895801,2026-03-19 +City Hotel,1,412,2017,January,4,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,Non Refund,7.0,179.0,0,Transient,110.59,0,0,Canceled,Lance Macdonald DVM,haasmelissa@example.net,3536712934,343157274330905,2025-05-16 +City Hotel,0,316,2017,June,23,8,0,1,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.98,0,2,Check-Out,Jerry Waters,bsandoval@example.net,(254)305-1292x391,570223109085,2025-02-21 +Resort Hotel,1,129,2017,March,12,21,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,151.03,0,0,Canceled,Desiree Thomas,qdavis@example.com,+1-679-950-3160x4886,6548645549512901,2025-11-30 +City Hotel,0,1,2017,May,18,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,17.0,45.0,0,Transient,63.57,0,0,Check-Out,Amy Wright,daniel51@example.org,(295)372-9527x8291,375204781271411,2026-03-08 +Resort Hotel,0,12,2017,January,4,25,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,85.69,1,1,Check-Out,Erin Summers,kristin83@example.com,486.716.2684x82507,575978135938,2025-04-02 +City Hotel,1,249,2017,March,14,30,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.24,0,0,Canceled,Mr. Don Flores,tiffany59@example.com,3849985717,4953683380345,2025-05-06 +City Hotel,0,106,2017,April,15,12,0,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.96,0,0,Check-Out,Miss Kimberly Holloway,toddmclaughlin@example.net,307.448.1720x709,4328369234022651,2025-11-24 +Resort Hotel,0,1,2017,September,37,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,323.0,179.0,0,Transient,58.7,0,1,Check-Out,Tina Harper,iaguilar@example.org,001-500-512-0285x87470,180053894321026,2025-06-16 +Resort Hotel,0,247,2017,June,23,4,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,309.0,179.0,0,Transient,100.89,0,1,Check-Out,Nicholas Moss,qgeorge@example.org,(600)929-7896x928,4797511780581091,2024-08-21 +City Hotel,1,5,2017,April,17,25,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient-Party,121.87,0,1,Canceled,Robert Campbell,paul49@example.org,946.538.1839,30456984413565,2025-10-01 +City Hotel,1,19,2017,January,3,17,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.31,0,1,No-Show,Jenny Cardenas,htanner@example.net,363.563.1544,4930371678503,2025-01-22 +City Hotel,0,9,2017,June,25,21,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.84,0,0,Check-Out,Dean Thomas,tylermartinez@example.org,8697666524,501813524466,2025-06-28 +City Hotel,0,15,2017,December,50,10,2,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,133.76,0,0,Check-Out,Matthew Farmer,jennifergomez@example.org,409-792-0220,5472352784175682,2024-06-15 +City Hotel,0,4,2017,January,2,1,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,12.0,179.0,0,Transient,0.0,1,0,Check-Out,John Browning,anthonyhanson@example.com,487-886-5032x44967,4030786950916145278,2025-10-07 +Resort Hotel,0,274,2017,July,29,16,1,5,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,53.88,0,0,Check-Out,Mario Peters,victoria69@example.org,777.420.6762x75545,6011057964716074,2026-02-15 +City Hotel,1,98,2017,February,8,18,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.89,0,0,Canceled,Olivia Rodriguez,stephanie73@example.net,776-984-2880x289,2720903982190910,2025-08-30 +Resort Hotel,0,0,2017,April,14,8,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,246.19,1,0,Check-Out,Donald Mccarthy,carolyn38@example.com,(713)362-2949,6011056931831008,2025-07-12 +City Hotel,0,50,2017,March,10,6,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Contract,122.85,0,1,Check-Out,Christopher Anderson,egonzalez@example.com,514-536-3377x853,4113678645291585883,2025-05-31 +City Hotel,0,52,2017,October,42,17,0,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,119.15,0,1,Check-Out,Becky Parrish,brittany13@example.net,537-804-0380x104,4985944047452131,2024-04-16 +City Hotel,1,94,2017,December,50,12,1,4,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.77,0,0,Canceled,Jackie Stewart,hzamora@example.com,001-952-211-5889,2228506833593823,2025-12-11 +Resort Hotel,0,200,2017,January,4,21,0,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,134.57,0,0,Check-Out,Krista Fuller,rodriguezzachary@example.net,+1-890-596-7763,6011314504628958,2025-06-16 +City Hotel,0,97,2017,March,13,27,2,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,81.58,0,1,Check-Out,Jennifer Nguyen,wilsonjerry@example.com,001-962-551-6600x64292,2269317397286915,2025-03-19 +Resort Hotel,1,147,2017,April,18,30,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,233.33,0,0,Canceled,Amanda Campbell,natalie23@example.org,(220)962-7842,4894643836026813,2025-10-16 +City Hotel,0,388,2017,March,10,5,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,85.76,0,0,Check-Out,Laura Ware,adamsgarrett@example.org,(595)629-0090x1934,6011012743639485,2024-06-26 +Resort Hotel,0,15,2017,November,47,24,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,2,No Deposit,241.0,179.0,0,Transient,52.95,1,1,Check-Out,Mitchell Anderson,dsmith@example.org,+1-976-276-7287x3944,4806459521569,2025-09-03 +City Hotel,0,41,2017,April,15,8,1,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.85,0,1,Check-Out,Barry Hernandez,tracywashington@example.net,248-338-0736x2289,4228304307579995882,2024-12-13 +Resort Hotel,0,8,2017,August,31,3,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,39.9,0,0,Check-Out,Teresa Young,vallen@example.net,254-574-3298x6212,213163056767527,2025-03-02 +City Hotel,0,21,2017,December,2,30,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,152.97,0,2,Check-Out,Valerie Morgan,nmalone@example.net,5374005643,4715867432600,2024-08-12 +City Hotel,0,81,2017,May,19,9,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,26.0,179.0,0,Contract,84.07,0,0,Check-Out,Paul Vasquez,skinnerjenny@example.org,442.522.1629x10410,6011075811348065,2025-06-19 +City Hotel,0,38,2017,November,48,28,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,149.21,1,1,Check-Out,Kelly May,geraldwilliams@example.net,+1-413-256-8087x30538,348985782888435,2025-12-12 +City Hotel,1,84,2017,October,43,27,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,36.23,0,1,No-Show,Christopher Carson,herbertbrown@example.com,927.599.4626,213184835770293,2026-01-07 +City Hotel,0,79,2017,November,46,18,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,86.52,0,1,Check-Out,Joan Wilson,donna35@example.org,336.459.2398,676317979810,2024-09-28 +Resort Hotel,0,87,2017,January,2,7,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,I,0,No Deposit,307.0,268.0,0,Transient-Party,2.02,0,0,Check-Out,Debbie Allen,xrobertson@example.net,001-618-407-4100x209,4653181912801111872,2025-07-15 +City Hotel,1,118,2017,May,18,2,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,22,Transient,184.41,0,0,Canceled,Kristin Williams,perryjonathan@example.com,(284)487-2057x247,675986294576,2026-03-06 +City Hotel,0,0,2017,July,28,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,65,Transient-Party,107.11,0,0,Check-Out,Courtney Williams,wrodriguez@example.org,968.862.1403x8091,3503380906343639,2025-03-05 +City Hotel,0,50,2017,July,30,23,0,2,2,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,111.4,0,0,Check-Out,David Hernandez,teresa59@example.net,855.958.9479,639021641555,2024-10-28 +Resort Hotel,0,158,2017,December,51,19,1,4,2,1.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,122.38,0,0,Check-Out,Kathryn Morris,smithkimberly@example.net,214-457-1126x0877,4862697185792825511,2025-05-09 +Resort Hotel,1,18,2017,April,16,16,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,65.0,179.0,0,Transient,215.71,0,0,Canceled,Meagan Smith,williammartin@example.com,001-889-618-5033,6011368810975032,2025-08-28 +City Hotel,0,13,2017,November,45,8,1,4,2,1.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.24,0,1,Check-Out,Katherine Caldwell,jimenezjasmine@example.net,290.771.7150x028,2720180320004679,2025-11-29 +Resort Hotel,0,148,2017,March,9,4,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,28.0,179.0,0,Transient,121.83,0,0,Check-Out,Krista Williams,melissaglover@example.org,931.328.5018x284,3578772207966821,2024-11-09 +City Hotel,0,17,2017,June,22,2,1,1,1,0.0,0,SC,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,94.24,0,0,Check-Out,Christine Aguilar,rvasquez@example.org,001-421-597-4244x20570,4900024711977,2025-04-29 +City Hotel,0,388,2017,June,23,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,27.0,179.0,0,Transient-Party,62.69,0,0,Check-Out,Michael Perkins,austin05@example.net,956.320.1038x5183,377994920286704,2024-12-01 +Resort Hotel,1,76,2017,April,17,29,2,3,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,250.0,179.0,0,Transient,252.0,0,0,Canceled,Steven Martin,vberry@example.net,001-365-751-6443x47494,060471182612,2024-10-02 +City Hotel,0,48,2017,November,48,26,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.9,1,2,Check-Out,Joshua Herman,jimenezjeffrey@example.com,(473)284-4277x33253,502041697140,2025-01-10 +City Hotel,0,40,2017,February,7,13,0,4,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.66,0,2,Check-Out,Diana Hawkins,hallvincent@example.org,872.648.8414,6011172441226488,2026-01-20 +Resort Hotel,0,0,2017,June,23,9,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,221.0,0,Transient,52.82,1,3,Check-Out,Caitlin Harris,millernatalie@example.org,(492)264-2628x9438,6502860212043571,2025-03-08 +Resort Hotel,1,11,2017,March,10,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,15.0,331.0,0,Transient,45.46,0,0,Canceled,Felicia Murphy,jjensen@example.com,328.824.3435,3573680969977313,2025-06-27 +City Hotel,0,99,2017,June,23,8,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,66,Transient,110.07,0,0,Check-Out,Bryan Mitchell,richard11@example.com,922-489-4927x23996,4682968479978174693,2024-09-28 +Resort Hotel,0,6,2017,July,28,11,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,42.0,202.0,0,Transient-Party,79.73,0,0,Check-Out,Larry Curtis,dsmith@example.com,846-600-4045x899,373097173901146,2024-04-29 +Resort Hotel,1,409,2017,December,49,6,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,100.31,0,0,Canceled,Jennifer Lopez,bradleytaylor@example.org,309.781.7037x490,371391159515760,2025-02-25 +City Hotel,0,7,2017,June,24,12,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,72.12,0,0,Check-Out,Robert Newton,josephbryant@example.net,3628161175,2720372840253296,2024-11-09 +Resort Hotel,0,92,2017,December,50,12,0,10,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,85.96,0,1,Check-Out,Christina Hudson,ureynolds@example.net,001-633-407-3422x536,347481052704172,2025-05-28 +Resort Hotel,0,41,2017,April,14,5,2,6,2,1.0,0,BB,BRA,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,252.0,0,0,Check-Out,Sandra Craig,elizabeth36@example.org,001-607-536-3856x6978,6594641906627260,2025-01-01 +Resort Hotel,1,138,2017,October,43,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,60.4,0,1,Canceled,Sabrina Ward,darrenhorton@example.net,(830)800-5918x68059,503803457087,2025-01-04 +City Hotel,0,149,2017,February,5,1,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,30.0,179.0,0,Group,136.16,0,2,Check-Out,Mark Knight,bradley11@example.org,001-762-911-7251,630499453219,2024-05-02 +City Hotel,0,105,2017,November,45,5,1,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,121.89,0,2,Check-Out,Darlene Dixon,jonathan96@example.net,(243)455-4764x01163,4784595164244091831,2025-05-14 +Resort Hotel,1,46,2017,August,31,4,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Refundable,239.0,179.0,0,Transient,45.24,0,0,Canceled,Daniel White,anthony29@example.org,+1-334-251-3431x15001,30151145855545,2024-10-31 +City Hotel,0,45,2017,December,49,8,1,4,3,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,E,1,No Deposit,12.0,179.0,0,Transient,134.99,0,1,Check-Out,Jonathan Cortez,william99@example.com,001-559-910-7023x78544,213115844993237,2024-08-16 +Resort Hotel,0,152,2017,March,13,24,4,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,164.44,0,0,Check-Out,Judith Myers,joseph94@example.net,+1-252-261-1910x3889,4041284882777009,2024-04-30 +City Hotel,0,61,2017,April,15,9,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Group,202.26,0,1,Check-Out,Tammie Castillo,staylor@example.com,+1-521-297-7599x8230,213119799987830,2024-06-11 +Resort Hotel,0,134,2017,June,23,3,2,5,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,130.16,0,3,Check-Out,Rebecca Estrada,donnagallagher@example.com,001-718-925-2964x4641,5351032604940988,2026-02-05 +City Hotel,0,169,2017,April,18,28,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,8.0,179.0,0,Transient,213.8,0,2,Check-Out,Angela Rodriguez,tking@example.org,683.492.0493x1470,38125915619788,2024-04-06 +City Hotel,0,89,2017,March,10,8,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,134.82,0,1,Check-Out,Andre Williams,westmichael@example.org,(357)488-1502,4076580802912,2025-09-25 +Resort Hotel,0,3,2017,January,3,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,223.0,0,Transient,40.79,0,0,Check-Out,Donald Smith,brenda46@example.com,+1-616-920-1696x7534,3521734686178797,2024-10-25 +Resort Hotel,0,2,2017,June,23,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,248.0,0,Transient-Party,77.55,0,0,Check-Out,Nicholas Ali,salaskevin@example.com,(661)895-3172x361,30036551766338,2026-03-12 +City Hotel,1,277,2017,June,24,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,106.3,0,0,Canceled,Jacob Brewer,xbenson@example.com,638-292-0392x83681,503823259091,2026-03-02 +City Hotel,1,86,2017,February,9,29,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,81.92,0,0,Canceled,Natalie Watson,zachary45@example.org,781-996-3883x003,38819274236347,2024-10-18 +Resort Hotel,0,245,2017,January,2,4,2,3,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,D,C,1,No Deposit,316.0,179.0,0,Transient-Party,79.71,1,0,Check-Out,Matthew Evans,dennis88@example.net,(297)552-7634x867,4568826604881544,2025-03-23 +Resort Hotel,0,7,2017,August,35,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient,111.11,0,1,Check-Out,Bryan Thomas,uevans@example.org,(476)974-4475,342815334462700,2024-05-30 +Resort Hotel,0,10,2017,November,47,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,84.97,0,1,Check-Out,Timothy Lucero,pattywright@example.org,613-503-7915,180068466680591,2024-08-26 +Resort Hotel,1,147,2017,April,16,18,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,168.0,179.0,0,Transient,106.13,0,1,Canceled,Barbara Fields,shebert@example.org,+1-811-358-9087x411,3513829077303739,2025-09-17 +Resort Hotel,0,17,2017,January,4,22,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,242.0,0,Transient-Party,48.71,0,0,Check-Out,Rebecca Beard,youngcaitlin@example.org,+1-434-456-0317x13760,4621623862785391,2026-02-13 +Resort Hotel,0,13,2017,January,2,8,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,1,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,Carrie Rodriguez,nwarner@example.com,524-505-6464,30474093216597,2024-09-20 +City Hotel,1,174,2017,February,6,8,1,2,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,193.0,77.0,0,Transient,40.02,0,1,Canceled,Jordan Tanner,jorge39@example.org,584.399.5537,3537012400027232,2025-12-14 +City Hotel,1,88,2017,December,51,21,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.2,0,1,Canceled,Denise Johnson,iwashington@example.net,8215451865,30081113950400,2024-07-28 +City Hotel,1,72,2017,August,35,29,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.05,0,0,Canceled,Amy Holt,xrojas@example.com,001-252-904-6233x06422,676267338306,2025-12-28 +Resort Hotel,0,4,2017,April,16,19,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,17.0,179.0,0,Transient,252.0,1,1,Check-Out,James Bennett,frankwilson@example.com,(848)443-7579x288,3529057621703780,2025-01-02 +City Hotel,1,141,2017,March,13,26,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.4,0,3,No-Show,Jeffrey Owens,moranmelissa@example.net,001-734-855-7594x187,348554946673677,2025-01-28 +City Hotel,0,202,2017,May,19,10,0,2,1,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,134.53,0,1,Check-Out,Adam Merritt,joshuagarcia@example.com,+1-313-590-0077x48028,502080017143,2026-01-09 +Resort Hotel,0,2,2017,October,40,1,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,15.0,221.0,0,Transient,52.36,0,0,Check-Out,Tina Walter,otaylor@example.com,(451)608-3227x522,6590797969921489,2024-05-22 +City Hotel,0,238,2017,March,10,5,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,24.0,179.0,0,Contract,85.11,0,1,Check-Out,Michelle Harris,bradleyevans@example.org,5468314754,3510032219748613,2026-01-18 +City Hotel,0,62,2017,May,21,18,2,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient-Party,209.77,0,2,Check-Out,Michael Richmond,ereed@example.org,211.917.6021x7060,4579996515047274,2025-07-24 +City Hotel,1,149,2017,February,6,4,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.7,0,1,Canceled,Michael Patrick,chasejoel@example.org,329-858-4185x4878,3594263945914232,2025-04-22 +Resort Hotel,0,2,2017,May,18,6,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,127.55,0,0,Check-Out,Amanda Hart DVM,nhurley@example.org,671-706-1252x4178,5219508710280015,2024-06-22 +City Hotel,0,152,2017,October,42,18,0,3,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.0,0,0,Check-Out,Michele Conner,erik08@example.com,3438949142,180089870662777,2024-10-10 +Resort Hotel,0,202,2017,June,23,5,2,7,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,D,E,0,No Deposit,318.0,179.0,0,Transient,79.09,0,0,Check-Out,Natalie Mitchell,tammystevens@example.com,832.844.4285x0959,3558227007368920,2024-08-20 +Resort Hotel,1,88,2017,August,32,9,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,48.58,0,0,Canceled,Jacob Hoover,tararaymond@example.org,469-608-4671,3580002266088416,2024-08-09 +City Hotel,0,21,2017,December,49,5,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,179.86,0,1,Check-Out,Jacqueline Winters,rosejuan@example.com,761-306-0526x206,2280423336424065,2025-11-20 +City Hotel,1,133,2017,March,13,29,0,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,240.8,0,0,Canceled,Kimberly Flores,acostaangela@example.com,(746)384-7370,3581797110768571,2024-05-05 +City Hotel,0,51,2017,March,11,13,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,139.33,0,1,Check-Out,Jennifer Carpenter,roserhonda@example.net,231.332.3608x2119,3557532850494132,2025-07-11 +City Hotel,1,0,2017,March,11,10,2,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,0.87,0,0,Canceled,William Saunders,howard17@example.net,(808)574-1678,213172182511121,2026-02-03 +City Hotel,1,70,2017,May,19,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,104.26,0,0,Canceled,Michael Preston,justindeleon@example.org,001-581-821-9820x169,6588944821944911,2025-12-13 +City Hotel,0,48,2017,December,49,3,1,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.93,0,3,Check-Out,Jennifer Ali,mscott@example.net,790.420.3563x790,180078881909590,2025-10-18 +City Hotel,0,12,2017,April,16,16,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,252.0,0,1,Check-Out,David Taylor,matthew43@example.org,001-568-377-0179,676349837366,2025-04-28 +City Hotel,0,186,2017,March,10,4,2,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,86.97,0,1,Check-Out,Maria Hayes,anne71@example.net,001-946-520-7174x563,36331280622504,2025-08-25 +City Hotel,1,134,2017,November,45,6,2,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.92,0,1,Canceled,Melanie Preston,aanderson@example.com,+1-564-563-5479x093,060409851304,2025-03-26 +Resort Hotel,1,104,2017,April,17,24,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,84.24,0,1,Canceled,Thomas Mcgrath,poolemonica@example.net,+1-219-200-4369x6554,3543570437581234,2025-12-25 +Resort Hotel,1,62,2017,August,35,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,115.1,0,1,Canceled,Glenn Chen,jacobhernandez@example.org,+1-467-701-9696x6485,38253645447203,2024-11-03 +Resort Hotel,0,2,2017,January,4,22,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,135.99,0,1,Check-Out,Sarah Berry,glennchloe@example.org,(973)839-1197x69945,379173965209958,2024-11-15 +Resort Hotel,1,131,2017,March,12,20,2,10,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,240.83,0,0,Canceled,Rebecca Summers,ywalker@example.org,(852)492-0183,4307178727066,2024-08-18 +City Hotel,0,6,2017,October,43,28,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,16.0,331.0,0,Transient-Party,44.93,0,0,Check-Out,Rodney Gilmore,denniswong@example.org,720.272.1795x7425,4554777948045,2024-12-28 +City Hotel,1,99,2017,November,45,8,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,21.0,179.0,0,Transient,45.22,0,1,No-Show,Kimberly Stone DDS,khubbard@example.com,(748)530-2333,5118223516506553,2025-11-02 +City Hotel,1,275,2017,June,24,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,104.56,0,0,Canceled,Joshua Dunlap,timothy39@example.net,(482)985-3424x4551,4521657419592581861,2025-08-20 +Resort Hotel,1,54,2017,February,6,7,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,87.74,0,0,Canceled,Melinda French,livingstondavid@example.org,+1-248-561-9161x36641,3550266375321879,2024-11-02 +City Hotel,0,6,2017,September,39,27,0,2,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,87.79,0,1,Check-Out,Gabriel Copeland MD,bartlettgary@example.com,(300)631-5484x1454,180019643906250,2024-06-10 +City Hotel,0,93,2017,February,8,21,2,2,2,2.0,0,BB,ITA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,208.97,0,1,Check-Out,Kelly Weiss,emichael@example.org,001-974-251-7698x48570,5597329486833065,2026-01-18 +City Hotel,0,27,2017,November,48,29,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,27.0,179.0,0,Transient,84.12,0,1,Check-Out,Gregory Russell,kevinrodriguez@example.net,257.992.7030x8449,30387858469393,2024-12-01 +Resort Hotel,0,138,2017,January,5,27,2,2,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,85.73,1,1,Check-Out,Ashley Bowman,thomasmartin@example.com,(608)850-9263x6633,30584168529714,2025-01-24 +Resort Hotel,1,21,2017,August,35,30,2,4,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,11.0,179.0,0,Transient,64.62,0,2,Canceled,Ruben Woodard,denise52@example.org,983.793.5452x35654,180023768462644,2024-10-26 +City Hotel,1,41,2017,November,46,11,2,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,102.7,0,1,Canceled,Aaron Leon,lreyes@example.net,001-497-884-8843x69738,3501861918927420,2025-01-26 +Resort Hotel,0,1,2017,April,14,5,4,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,203.13,0,0,Check-Out,Ashley Thomas,kellylisa@example.net,+1-477-468-9254,503889341114,2024-11-23 +City Hotel,1,110,2017,March,10,5,1,2,2,2.0,0,Undefined,RUS,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,8.0,179.0,0,Transient,181.7,0,0,Canceled,Travis Allen,christophervilla@example.net,(477)634-1094x654,2631651135451345,2025-04-25 +City Hotel,1,0,2017,July,29,15,0,1,1,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,1.3,0,0,Canceled,Roger Weaver,ksnyder@example.com,830.841.7497x735,4317663165033320,2025-05-30 +Resort Hotel,1,244,2017,February,9,25,0,7,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,111.48,0,0,Canceled,Robert Johnson,simmonsmichael@example.org,+1-917-980-3999,4799440929024565,2025-02-21 +Resort Hotel,0,0,2017,January,2,12,0,2,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,E,G,0,No Deposit,246.0,179.0,0,Transient,121.32,1,0,Check-Out,Bryan Lopez,suarezbrandon@example.com,(356)638-0416x410,30040892075581,2024-06-10 +Resort Hotel,1,0,2017,March,9,2,0,1,3,0.0,0,SC,,Complementary,Corporate,0,1,0,P,P,0,No Deposit,249.0,331.0,0,Transient,5.43,0,0,Canceled,Andrea King,kenneth02@example.com,+1-844-549-9318,4983015936548,2024-04-28 +City Hotel,0,49,2017,April,18,30,2,0,2,1.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,83.81,0,1,Check-Out,Jennifer Howard,hprice@example.net,8219914656,180027226809635,2024-12-03 +City Hotel,1,18,2017,November,45,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,70.15,0,0,Canceled,Michael Evans,jeffreyprice@example.com,271-479-6070x5018,4408209724042897,2025-02-15 +Resort Hotel,1,36,2017,April,18,29,2,0,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,231.13,0,0,Canceled,Daniel Patterson,brichardson@example.org,925.797.3668,2233018978859228,2025-08-29 +Resort Hotel,0,31,2017,November,45,7,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,243.87,1,0,Check-Out,Karen Mendez,lewismichelle@example.net,656-471-0927x32480,30167708578787,2025-12-16 +City Hotel,0,0,2017,October,43,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Transient,36.54,1,1,Check-Out,John Johnson,thomas43@example.net,001-541-363-4345x7746,6011609167214420,2024-06-23 +Resort Hotel,0,52,2017,August,32,10,0,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,133.93,0,0,Check-Out,Andre Haynes,pchaney@example.net,+1-613-802-5547,180061934033626,2025-06-29 +City Hotel,0,136,2017,October,44,31,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.84,0,0,Check-Out,Janet Ryan,mia71@example.net,703-624-8182x03973,6554926325122532,2024-10-10 +Resort Hotel,1,76,2017,March,9,1,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,238.28,0,1,Canceled,Michael Oliver,laurie58@example.org,4058435279,4758448698042,2024-11-05 +Resort Hotel,1,136,2017,March,13,26,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,74.97,0,0,Canceled,Wesley Henry,dperez@example.org,(203)524-4751x630,30483352828802,2024-11-29 +Resort Hotel,0,38,2017,September,37,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,63.63,1,1,Check-Out,Andrew Freeman,thompsonlinda@example.net,+1-678-443-2235,2241658779939586,2026-01-20 +Resort Hotel,0,16,2017,November,46,16,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,1,No Deposit,141.0,179.0,0,Transient-Party,42.61,1,1,Check-Out,Karen Stephens,jameslee@example.com,(910)280-8293,4564175411374799202,2024-11-23 +Resort Hotel,0,1,2017,May,18,1,0,2,2,1.0,0,HB,PRT,Direct,Direct,0,0,1,A,A,2,No Deposit,249.0,179.0,0,Transient,215.32,1,2,Check-Out,Nathaniel Baldwin,markwilson@example.org,(841)596-2130,4597575490663608,2025-02-11 +Resort Hotel,0,34,2017,December,49,4,2,2,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,208.95,1,0,Check-Out,Jordan Curry,manningjamie@example.net,442-605-4105,374702741188311,2025-07-02 +Resort Hotel,0,83,2017,September,36,2,0,2,2,0.0,0,BB,,Offline TA/TO,Corporate,0,0,0,D,D,1,No Deposit,318.0,179.0,0,Transient-Party,78.91,0,0,Check-Out,William Johnson,brownoscar@example.org,+1-279-600-6822,6501882957427596,2025-02-13 +Resort Hotel,0,14,2017,April,18,30,4,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,238.72,1,1,Check-Out,Richard Bond,cjohnson@example.com,(699)753-9969x8090,4967153663110674,2025-05-16 +City Hotel,1,429,2017,February,8,22,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,38,Transient,107.75,0,0,Canceled,Jason Smith,jnunez@example.net,(221)613-4612x1542,4026507844653,2024-08-25 +City Hotel,0,1,2017,April,16,17,0,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,Scott Norman,ericamoore@example.org,340-441-3156x0913,2276438087599572,2024-05-02 +City Hotel,1,95,2017,June,25,23,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,9.0,179.0,0,Transient,87.91,0,0,Canceled,Jill Shaw,marksweeney@example.com,451-310-3499x85191,3523993993758034,2026-03-10 +City Hotel,1,145,2017,November,46,13,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,94.75,0,0,Canceled,Michael Price,stephanie47@example.com,+1-282-516-0879x99968,6552786628713177,2024-05-13 +City Hotel,0,43,2017,November,45,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,D,1,No Deposit,14.0,179.0,0,Transient,235.44,1,1,Check-Out,Martha Williams,lisareynolds@example.org,001-624-452-6988x9215,30588638630630,2025-10-24 +City Hotel,1,21,2017,May,18,1,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,99.99,0,0,Canceled,Melissa Henry,mitchell90@example.org,577.732.9641,4135131369501620984,2024-07-06 +City Hotel,0,19,2017,July,27,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.5,0,1,Check-Out,Elaine Martin,wmorgan@example.net,(853)304-3527x3158,3597888694320343,2025-06-04 +Resort Hotel,0,29,2017,June,23,5,0,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,46.66,1,0,Check-Out,Gary Rodriguez,eric37@example.org,001-904-952-3656,581427959159,2025-10-10 +City Hotel,0,83,2017,October,42,20,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient-Party,77.82,0,1,Check-Out,Ryan Gonzalez,samuel76@example.net,919.447.4473x36635,3502814313345812,2025-11-29 +City Hotel,0,2,2017,November,46,11,1,2,1,0.0,0,BB,,Online TA,Direct,1,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,77.86,0,1,Check-Out,Mr. Reginald Roman,garybuck@example.com,6994449409,3527708621996749,2024-12-12 +Resort Hotel,1,33,2017,April,14,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,10.0,179.0,0,Contract,233.71,0,0,Canceled,Patricia Williams,tjones@example.net,+1-226-516-1113x76923,4603724805715,2025-11-11 +City Hotel,0,10,2017,September,38,20,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,44.66,0,2,Check-Out,Gerald Vega,rchapman@example.com,001-549-405-4108x928,2670132872553587,2025-07-03 +City Hotel,0,55,2017,November,46,12,1,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,230.34,0,2,Check-Out,Crystal Wallace,sheila24@example.net,(932)380-8585x5519,3584625134956855,2024-12-30 +Resort Hotel,1,110,2017,March,12,19,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,234.0,179.0,0,Transient,196.97,0,0,Canceled,Susan Garcia,heatherward@example.com,673.995.5176x6329,3514475936502860,2024-12-28 +Resort Hotel,1,243,2017,February,6,7,1,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,85.08,0,0,Canceled,Patrick Potts,tara25@example.com,001-472-569-5532x8457,6011371716321004,2025-06-03 +City Hotel,0,181,2017,January,5,28,2,7,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.23,0,3,Check-Out,Jessica Richardson,ypatel@example.com,001-268-808-3549,374063743187771,2025-06-28 +City Hotel,1,15,2017,August,34,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,130.25,0,0,Canceled,Alicia Warren,timothywilliamson@example.net,+1-293-736-8556x142,3569192556301960,2025-11-29 +City Hotel,0,59,2017,December,52,27,2,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,142.09,0,0,Check-Out,Madison Rodriguez,pwilliams@example.org,534.508.6839,639001264188,2025-09-19 +City Hotel,0,155,2017,November,46,13,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.61,0,1,Check-Out,Douglas Grant,melissa89@example.com,+1-583-250-5550x033,2711915367727497,2025-05-19 +Resort Hotel,0,53,2017,May,18,1,0,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,246.03,0,3,Check-Out,Austin Baker,cesarpatterson@example.org,+1-427-839-4968x5571,4685313228946860510,2024-11-10 +City Hotel,1,45,2017,January,2,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,124.66,0,1,Canceled,Heather Morales,norman53@example.net,001-543-701-5033x4314,3548937930657412,2025-06-15 +Resort Hotel,0,159,2017,November,44,2,0,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,1,A,C,1,No Deposit,240.0,179.0,0,Transient-Party,47.73,0,0,Check-Out,Susan Hutchinson,jacob11@example.net,(319)259-8734x52622,3557141812971706,2025-02-23 +City Hotel,0,2,2017,December,50,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,218.0,0,Transient-Party,141.55,0,1,Check-Out,Christopher Hudson,joshua24@example.org,(631)971-4548x76264,3597588357369872,2024-03-31 +City Hotel,0,114,2017,April,17,20,2,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,171.34,0,2,Check-Out,Jill Barajas,reederica@example.com,(287)247-5672x69689,3527356605084551,2024-08-02 +City Hotel,0,9,2017,January,4,24,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.66,0,1,Check-Out,Dennis Jones,marymarshall@example.org,233-574-9737x814,2278229264876463,2026-03-20 +City Hotel,0,20,2017,September,36,7,0,4,2,2.0,0,SC,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,87.45,0,2,Check-Out,Charlene Gutierrez,bmonroe@example.net,001-880-631-9778x444,6011727377056629,2024-04-20 +City Hotel,0,97,2017,August,34,22,2,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient,138.12,0,0,Check-Out,Crystal Hernandez,matthewhiggins@example.com,001-269-613-7275x64614,4693876049493,2024-06-02 +Resort Hotel,1,141,2017,May,20,14,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,50.04,0,0,Canceled,Michael Smith,valerie36@example.com,(860)345-5148x1549,3549291796248695,2025-08-14 +City Hotel,1,276,2017,March,10,8,1,4,3,2.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,183.97,0,0,Canceled,Richard Rodriguez,jose87@example.com,8367977682,36293867602293,2026-03-24 +Resort Hotel,0,297,2017,November,44,3,1,2,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,175.0,179.0,0,Transient-Party,64.89,0,0,Check-Out,Lauren Smith,xandrews@example.net,+1-653-529-2861x3713,213139835388140,2024-10-15 +City Hotel,1,249,2017,April,14,3,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Contract,100.95,0,0,Canceled,Breanna Mccall,wgreen@example.net,001-963-685-6493x16370,4110578299398481,2025-09-12 +City Hotel,0,0,2017,April,15,8,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,180.89,0,0,Check-Out,Rebecca Lopez,sandra90@example.net,+1-258-835-8115x524,379470290064821,2026-01-05 +City Hotel,1,262,2017,February,8,21,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,140.7,0,1,Canceled,John Garcia,jason82@example.com,001-499-431-1766x54505,3530873662456410,2025-06-16 +Resort Hotel,0,165,2017,February,8,18,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,170.0,179.0,0,Transient-Party,107.66,0,0,Check-Out,Mark Weaver,richard49@example.com,+1-588-315-7444,4215141053444142,2024-10-03 +Resort Hotel,1,365,2017,March,12,18,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.03,0,0,Canceled,Brianna Martinez,bryan78@example.net,580.605.1344,4397564732568777,2025-11-04 +City Hotel,0,89,2017,January,3,14,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,124.1,0,0,Check-Out,Shannon Jones,esolomon@example.org,(347)924-2701,6011808970071205,2024-06-16 +City Hotel,0,40,2017,May,19,7,1,3,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,145.88,0,0,Check-Out,Victoria Knight,jesse81@example.com,335-694-8686,2228894678968221,2024-06-22 +Resort Hotel,0,21,2017,December,49,5,0,2,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,108.75,0,0,Check-Out,Paul Franco,danielsrichard@example.com,6965499505,4619457085937,2025-02-26 +City Hotel,0,36,2017,June,23,4,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,69.9,0,0,Check-Out,Darin Baker,nathan19@example.org,001-749-741-0355x862,213148534445473,2024-12-08 +City Hotel,1,59,2017,June,24,16,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.4,0,0,Canceled,Jeffrey Harrell,lindagutierrez@example.org,(992)762-6164,379333182795292,2025-11-08 +City Hotel,0,119,2017,January,2,3,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,144.16,0,2,Check-Out,Alyssa Powers,stevenjackson@example.com,+1-463-490-6766x270,5363618028071446,2025-06-02 +City Hotel,0,45,2017,August,33,19,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.12,0,0,Check-Out,Jeanette Obrien,smithalan@example.org,(406)572-8338x1551,6011708071018743,2024-07-17 +City Hotel,1,12,2017,October,42,18,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.96,0,0,Canceled,Nicole Anderson,miranda63@example.com,342-563-0082x8295,4139336427160704,2025-06-08 +City Hotel,0,143,2017,July,30,28,2,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.68,0,0,Check-Out,Rachel Oneal,solisanita@example.com,3758040731,3586523821764955,2025-03-31 +City Hotel,1,43,2017,April,15,12,0,1,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,9.0,179.0,0,Transient,162.91,0,0,Canceled,Nicole Moore,shaun53@example.org,814.871.5892,2321276832929313,2024-11-20 +City Hotel,0,41,2017,May,20,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,117.08,0,0,Check-Out,Donna Mejia,hartjohn@example.org,7909002373,3578745005950627,2025-08-16 +City Hotel,1,142,2017,February,9,29,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,133.79,0,2,Canceled,Andre Jones,gabriellasmith@example.com,+1-302-480-1289,2703208545987153,2025-11-07 +City Hotel,0,0,2017,September,36,3,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,D,1,No Deposit,15.0,179.0,0,Transient,48.53,0,0,Check-Out,Steven Thomas,lindsay41@example.net,463-598-8858x7378,213119384159258,2026-02-15 +City Hotel,1,36,2017,November,47,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,112.44,0,1,Canceled,Jaclyn Long,kmoore@example.net,780.816.1816x2111,570155476056,2024-09-28 +Resort Hotel,0,16,2017,June,24,15,0,1,1,0.0,0,Undefined,FRA,Groups,Direct,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient-Party,85.34,0,0,Check-Out,Robert Stark,chad03@example.com,843.705.5881x1463,4059681529866829084,2024-10-22 +Resort Hotel,0,98,2017,June,25,22,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,1,No Deposit,239.0,179.0,0,Transient,119.88,0,2,Check-Out,Joseph Murphy,amurphy@example.com,219-516-6714,36229059511843,2024-08-11 +Resort Hotel,0,15,2017,April,17,23,0,1,3,0.0,0,BB,,Direct,Direct,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient-Party,160.29,1,0,Check-Out,Travis Dixon,ericblair@example.net,(540)362-4702x66810,501812550645,2025-11-17 +City Hotel,0,14,2017,February,7,14,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,114.74,0,0,Check-Out,Seth Barker,bill17@example.org,001-449-449-6865x67004,4314811846006,2026-01-12 +City Hotel,0,14,2017,December,51,18,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,47.17,1,2,Check-Out,Tammy Jacobs,nicolechristensen@example.net,(983)568-3143x921,374181612506895,2024-11-29 +Resort Hotel,0,20,2017,May,19,11,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,110.15,1,1,Check-Out,Laura Harrison,djohnson@example.org,5555876821,4556265040842301528,2025-11-04 +City Hotel,1,13,2017,July,30,23,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,103.83,0,1,Canceled,John Peterson,robert79@example.org,732.363.1965x73323,6561754865807887,2025-06-09 +Resort Hotel,0,49,2017,April,14,8,2,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,191.86,1,1,Check-Out,Lynn King,salvarez@example.org,956-834-4748,30338085857538,2025-10-26 +Resort Hotel,1,2,2017,October,44,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,244.0,179.0,0,Transient,54.74,0,1,No-Show,Devon Roberts,orobinson@example.org,440-520-8578,213172410074447,2024-04-17 +City Hotel,0,12,2017,April,15,7,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,225.85,0,1,Check-Out,Emily Bullock,ypham@example.org,001-944-988-3751x8576,6590095418789064,2025-03-19 +City Hotel,1,132,2017,January,4,26,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,113.3,0,0,Canceled,Kylie Bailey,kreed@example.com,+1-274-641-7288x9587,4064014488528965,2024-07-03 +Resort Hotel,0,139,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,38.56,0,0,Check-Out,Roger Holmes,robert01@example.org,347.712.4834x4521,502095648189,2024-04-26 +Resort Hotel,0,151,2017,December,2,31,2,10,2,0.0,0,FB,POL,Offline TA/TO,TA/TO,0,0,0,D,G,0,No Deposit,244.0,179.0,0,Transient,86.08,0,0,Check-Out,Dennis Coleman,montesdana@example.net,857.480.3190,3553528241153985,2024-12-15 +City Hotel,0,59,2017,April,18,30,2,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,143.48,0,1,Check-Out,Patricia Zamora,druiz@example.org,(307)758-4442,4769783198013936837,2025-12-28 +Resort Hotel,1,159,2017,November,48,29,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,100.47,0,0,Canceled,Randy Phillips,gbrown@example.org,001-534-253-4524x996,2231783250541248,2024-08-18 +City Hotel,1,56,2017,April,16,16,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.09,0,1,Canceled,Heather Daniels,mitchelllowe@example.com,856-310-3797x62946,4227850747122445,2025-01-18 +City Hotel,1,0,2017,January,4,23,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.4,0,0,Canceled,Robert Perkins,emanning@example.net,+1-959-505-2445x6283,4231746882824197,2024-08-13 +Resort Hotel,1,94,2017,December,52,28,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,116.73,0,2,Canceled,Nathaniel Walter,grayaaron@example.com,206.849.5122x54497,4650401421068,2026-02-28 +City Hotel,1,25,2017,March,10,8,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,90.95,0,2,Canceled,Christine Tyler,lisawilliams@example.com,446.239.9818,4208371346532,2024-08-08 +Resort Hotel,1,17,2017,January,4,22,4,10,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,226.13,0,2,Canceled,Catherine Holland,calderoncraig@example.org,001-305-682-9173,3594227489852363,2024-04-20 +Resort Hotel,0,162,2017,April,15,11,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,247.37,1,1,Check-Out,David Washington III,davidwilson@example.net,001-736-450-3504x96929,180060651315976,2024-07-29 +Resort Hotel,1,160,2017,March,11,12,1,6,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,174.69,0,0,Canceled,Kimberly Thomas,ncastro@example.net,266.555.8073x75476,4047178717496327257,2025-02-01 +City Hotel,0,1,2017,May,20,14,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,167.94,0,1,Canceled,Dawn Levy,floresmegan@example.org,+1-530-345-6653,676163859736,2025-02-11 +City Hotel,1,396,2017,February,7,16,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient,97.41,0,0,Canceled,Victoria Smith,livingstonmarilyn@example.net,491-229-2853,3546483796198896,2025-01-15 +City Hotel,1,122,2017,April,15,12,2,4,2,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,90.51,0,1,Canceled,Timothy Reilly,grossashley@example.com,+1-812-713-1539,4933200970904537529,2024-11-19 +City Hotel,1,335,2017,May,19,10,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,1.0,179.0,0,Transient,61.06,0,0,Canceled,William Silva,smithpatrick@example.com,388-499-9045,4570537457450134830,2024-08-04 +City Hotel,0,33,2017,March,12,23,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient,137.88,0,0,Check-Out,Keith Gonzalez,egilbert@example.org,701-741-6790,38200897143402,2024-09-02 +City Hotel,1,33,2017,February,8,18,4,10,1,0.0,0,HB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,103.65,0,1,No-Show,Jeffrey Holden,robersondaniel@example.net,(407)590-5973x791,3547535244176672,2024-06-17 +Resort Hotel,1,1,2017,October,40,4,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,39.81,0,0,Canceled,Karen Hughes,christopher63@example.org,200-639-6361,3563905483500800,2025-09-13 +City Hotel,0,0,2017,October,43,25,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,215.0,0,Transient,47.32,0,0,Check-Out,Christopher Ward,juliacox@example.net,+1-434-516-6755x3633,4518487186782773,2025-07-28 +City Hotel,1,19,2017,December,52,24,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,101.29,0,0,Canceled,Amy Boone,iscott@example.net,001-471-585-6626x70519,180015667148001,2025-06-02 +City Hotel,1,159,2017,February,9,28,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,109.97,0,0,Canceled,Joshua Adams,william61@example.com,876-632-3850x999,6011944094934919,2025-10-21 +Resort Hotel,0,2,2017,October,42,19,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,46.66,0,0,Check-Out,Tammy Mcdaniel,ethomas@example.com,(980)485-3169,4792045685892621,2024-07-02 +Resort Hotel,0,15,2017,September,35,1,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,H,C,0,No Deposit,242.0,179.0,0,Transient-Party,77.97,0,1,Check-Out,Steven Knight,dilloneric@example.com,993-233-8168x08355,581613447043,2025-10-09 +Resort Hotel,1,161,2017,April,15,9,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,228.97,0,1,Canceled,George Weber,melissa96@example.com,510.573.8520,4721824878721622033,2024-04-28 +Resort Hotel,0,1,2017,February,6,4,0,1,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,130.83,0,1,Check-Out,Jeffrey Hall,barry24@example.net,217-835-7820x278,501838809918,2024-11-18 +City Hotel,1,306,2017,February,6,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,75,Transient-Party,62.11,0,0,Canceled,Laura Adams,rachelmiller@example.net,+1-933-497-8757,370291826029743,2026-01-23 +City Hotel,0,29,2017,January,4,21,2,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,129.52,0,0,Check-Out,Sara Hernandez,ruthbass@example.com,651.856.7466,213105433031796,2026-03-12 +City Hotel,1,98,2017,October,42,17,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.5,0,0,Canceled,Emily Robinson,riverasteven@example.com,8172063093,180071876687776,2025-01-10 +City Hotel,0,6,2017,October,43,25,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,106.42,0,0,Check-Out,Samantha Harris,aaron24@example.org,761-610-2174x8497,4977425764284345,2024-09-25 +Resort Hotel,1,91,2017,December,52,28,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient-Party,64.39,0,0,Canceled,Tiffany Davis,debra26@example.org,+1-305-612-3033x5251,3540757892887569,2025-09-23 +City Hotel,0,102,2017,December,48,1,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.43,0,2,Check-Out,Veronica Nelson,tammiewhite@example.org,+1-755-803-3985x82448,2240267833538755,2024-07-20 +City Hotel,0,40,2017,February,6,7,0,2,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,153.56,0,3,Check-Out,Mr. Ryan Walker,ssoto@example.net,200-314-1858x7157,4522756850707090,2025-04-23 +Resort Hotel,0,134,2017,March,12,17,2,7,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,136.95,0,0,Check-Out,Christopher Thompson,hjimenez@example.net,431-999-8308,3593274614736054,2024-03-28 +Resort Hotel,0,40,2017,November,46,16,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,40.57,0,0,Check-Out,Brian Allen,ericmoore@example.com,001-872-723-3135x73246,4819877599045469,2024-05-09 +City Hotel,0,18,2017,May,19,12,0,1,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.98,0,0,Check-Out,Kevin Greene,vaughnchristina@example.net,253.304.8004x1467,2583188697354482,2024-11-30 +City Hotel,0,22,2017,April,16,20,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,D,0,No Deposit,11.0,74.0,0,Transient-Party,136.39,0,1,Check-Out,Daniel Garcia,alexisrodriguez@example.net,3907160935,343796439790154,2025-02-18 +City Hotel,1,124,2017,February,9,25,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,101.25,0,0,Canceled,Micheal Ramos,ucole@example.com,(378)675-0439,213138878143107,2024-03-27 +City Hotel,0,24,2017,April,17,24,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,214.21,1,1,Check-Out,Janice Gilbert,kyle22@example.net,+1-284-467-2760,374943761174845,2025-04-18 +City Hotel,0,18,2017,July,28,11,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.12,0,0,Check-Out,Joshua Nelson,fspencer@example.org,(909)465-3939,4282833618135,2025-08-12 +Resort Hotel,0,144,2017,November,46,12,1,3,3,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,222.0,0,Transient-Party,36.03,0,0,Check-Out,Katherine Clarke,williamsmary@example.com,925-762-8427x8747,6510652497077865,2024-06-10 +Resort Hotel,0,105,2017,November,48,29,1,1,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,108.33,0,0,Check-Out,Erica Porter,shall@example.net,(766)681-4617x048,180051643460582,2025-03-06 +Resort Hotel,0,246,2017,December,49,4,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,123.84,0,1,Check-Out,Sara Obrien,cbutler@example.com,851.415.8791,6011265860480865,2025-02-20 +Resort Hotel,0,38,2017,January,4,23,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Group,95.28,0,0,Check-Out,Michael Burke,ashleyjohnson@example.org,952.804.2584x5214,3551485047259064,2025-07-18 +City Hotel,1,52,2017,February,9,25,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,134.52,0,1,Check-Out,Jamie French,tdougherty@example.net,726.632.6199x7013,4182422300485,2025-05-19 +City Hotel,0,0,2017,October,43,25,1,0,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,K,0,No Deposit,17.0,331.0,0,Transient,1.08,0,0,Check-Out,Ernest Sullivan,meadowsdana@example.com,262-573-1148,6551277926446844,2024-06-26 +Resort Hotel,0,93,2017,August,34,24,1,3,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,208.85,1,0,Check-Out,Earl Hall,amartinez@example.com,701-785-5297x954,2704929988219460,2025-06-05 +City Hotel,1,123,2017,February,9,28,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,41,Transient,110.77,0,0,Canceled,Julie Johnson,michelle58@example.com,+1-207-958-8376x30851,4773779378194746,2025-11-11 +City Hotel,0,0,2017,May,18,6,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,156.84,0,0,Check-Out,Dana Wolfe,regina57@example.com,+1-780-243-1454x945,348298210186277,2024-11-10 +Resort Hotel,1,19,2017,September,36,3,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,Non Refund,248.0,179.0,0,Transient,83.64,0,0,Canceled,Robert Price,sanchezlisa@example.net,771-925-7938,3577266718463528,2025-08-08 +Resort Hotel,0,15,2017,April,14,6,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,237.0,179.0,0,Transient,194.28,0,1,Check-Out,James Henry,mrodriguez@example.com,220-537-6367,3581312839844644,2025-11-19 +City Hotel,0,44,2017,November,46,16,2,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,1,A,D,0,No Deposit,12.0,179.0,0,Transient,115.37,1,1,Check-Out,Susan Davis,stevenfrancis@example.org,+1-279-863-4737x74295,6011347641578488,2024-06-21 +Resort Hotel,1,265,2017,March,12,17,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,63.7,0,2,Canceled,Darryl Richardson,adrianasweeney@example.org,(680)766-6988x19808,3599784931178453,2024-11-06 +Resort Hotel,1,5,2017,August,35,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,Refundable,242.0,179.0,0,Transient,54.64,0,0,Canceled,Karen Jackson DVM,sharonfrank@example.com,855-737-4007,3518114517745921,2025-05-28 +City Hotel,0,1,2017,December,49,6,1,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,1,No Deposit,16.0,179.0,0,Transient,1.06,0,0,Check-Out,Linda Patrick,usimmons@example.com,+1-334-413-6349,3513688405799715,2025-09-13 +Resort Hotel,0,277,2017,June,23,6,1,4,2,0.0,0,BB,SWE,Groups,Corporate,0,0,0,A,B,1,Refundable,12.0,222.0,0,Transient-Party,45.3,0,0,Check-Out,Veronica Diaz,david49@example.com,4987769418,341676833003390,2024-04-16 +City Hotel,1,14,2017,February,9,27,1,3,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.04,0,1,No-Show,Ann Moon,vbarker@example.net,+1-541-651-5681x91424,4981825407456222,2024-12-18 +Resort Hotel,0,0,2017,September,38,21,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,245.0,179.0,0,Transient,49.25,1,1,Check-Out,Michael Williams,deborah30@example.net,485-488-6863x3037,30208915647195,2025-08-18 +Resort Hotel,0,142,2017,July,28,14,0,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,46.0,0,2,Check-Out,Timothy Chavez,moorecraig@example.com,382-603-2237,30565703441374,2025-12-17 +Resort Hotel,0,15,2017,June,25,21,0,2,1,0.0,0,HB,RUS,Groups,Corporate,0,0,0,A,E,1,No Deposit,317.0,179.0,0,Transient-Party,99.77,0,0,Check-Out,Scott Ramirez,paulnguyen@example.net,(587)274-8816,2252886544304622,2024-07-02 +Resort Hotel,0,0,2017,October,41,12,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,48.41,0,1,Check-Out,Crystal Collins,michael38@example.net,001-702-673-9955,3524225523151045,2025-11-27 +City Hotel,1,29,2017,August,33,19,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,No Deposit,34.0,54.0,0,Transient-Party,86.95,0,1,No-Show,Crystal Davis,tonyalewis@example.org,921-801-6168,6531771101766245,2024-05-24 +City Hotel,0,15,2017,January,3,18,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.28,0,1,Check-Out,Matthew Mueller,kristine53@example.org,001-843-673-9184x945,4089206968793,2025-11-11 +City Hotel,1,10,2017,October,41,9,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,133.25,0,1,Canceled,Teresa Thompson,paul82@example.org,699.554.3921x860,4167350486018,2025-11-23 +City Hotel,0,172,2017,December,49,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,6.0,179.0,0,Transient,100.29,1,3,Check-Out,Teresa Jacobson,xcabrera@example.com,(245)782-6848,4282713645018,2024-04-04 +Resort Hotel,0,169,2017,March,10,2,4,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,252.0,0,1,Check-Out,Robert Gonzalez,kevin20@example.org,435-415-0113x279,4892780191293539,2024-10-22 +City Hotel,0,79,2017,May,18,5,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,96.48,0,1,Check-Out,Andrea Garcia,rodriguezjesse@example.net,(612)451-7283x357,5221937018288774,2025-10-30 +City Hotel,0,13,2017,April,15,9,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,A,1,No Deposit,14.0,175.0,39,Transient,123.83,0,1,Check-Out,Cassandra Martinez,efowler@example.net,987-215-1617x1483,6556565782953779,2025-08-21 +City Hotel,0,28,2017,June,25,21,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,68,Transient,87.95,0,0,Check-Out,Philip Cummings,mcculloughemily@example.com,423-580-5636x26555,4860178151479677,2024-05-05 +Resort Hotel,0,0,2017,January,2,1,0,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,243.0,179.0,0,Transient,47.14,0,1,Check-Out,Timothy Sanchez,garcialance@example.org,001-681-736-5904,4955957109388494,2024-07-31 +City Hotel,1,357,2017,January,3,18,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,117.89,0,0,Canceled,Scott Miranda,schaefermichael@example.net,978.999.5522x56180,373938142427665,2025-07-07 +Resort Hotel,0,1,2017,June,23,9,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,53.42,0,2,Check-Out,Alicia Wagner,fieldsmary@example.org,(946)689-8414,3526815957408495,2025-07-07 +City Hotel,0,92,2017,May,18,1,4,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,233.33,0,0,Check-Out,Chad Williams,gomezchelsea@example.org,226.490.8220x137,6011902365189373,2025-04-14 +Resort Hotel,0,2,2017,October,40,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,236.0,179.0,0,Transient,48.27,0,1,Check-Out,Carlos Hensley,wilsonamy@example.net,+1-497-278-5610x2657,3501527732185012,2025-04-17 +City Hotel,1,138,2017,December,51,19,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,131.0,179.0,0,Transient,82.79,0,0,Canceled,Laura Ramirez,kmorgan@example.org,382-628-7990x3177,4858344027573267,2024-06-29 +City Hotel,0,139,2017,January,4,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,12.0,179.0,0,Transient,121.92,0,2,Check-Out,Christopher Rodriguez,mharris@example.com,739-556-0867,30541217280996,2024-04-21 +Resort Hotel,0,12,2017,October,42,16,2,2,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,83.23,0,0,Check-Out,Mark Webster,andrew79@example.org,(321)908-8705x61707,213193829678149,2026-02-18 +City Hotel,1,110,2017,April,15,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,102.56,0,0,Canceled,James Smith,wigginsnathan@example.org,647.562.3959,4626260509383,2025-11-18 +City Hotel,0,46,2017,July,27,4,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.81,0,0,Check-Out,Robert Byrd,browndeanna@example.com,+1-889-440-5168x43476,4306504521524730,2025-01-05 +City Hotel,0,105,2017,June,24,13,2,5,3,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,86.73,0,1,Check-Out,Joshua Powell,jeffrey02@example.com,+1-887-814-1862,2299306021698607,2025-12-17 +Resort Hotel,0,3,2017,November,46,12,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,51.82,0,1,Check-Out,Tonya Harding,wperez@example.org,668-464-3005,3582653207923521,2025-02-16 +Resort Hotel,1,85,2017,August,34,23,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,133.0,179.0,0,Transient,54.13,0,0,Canceled,Larry Higgins,krogers@example.com,933.367.5379,370906598991594,2024-10-06 +City Hotel,0,28,2017,August,34,24,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,105.4,0,1,Check-Out,Nicole Mills,seangutierrez@example.org,836-629-0773x05221,676385858813,2025-03-15 +Resort Hotel,1,369,2017,February,7,11,0,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient-Party,115.22,0,0,Canceled,Jonathan Porter,flowersalicia@example.com,001-227-679-5635x4664,180011948532584,2025-02-26 +City Hotel,1,0,2017,March,9,2,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.26,0,2,Canceled,Christine Greene,sarahsavage@example.com,432-237-9245x7494,180000212389128,2025-12-09 +Resort Hotel,0,209,2017,June,26,24,2,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,82.0,179.0,0,Transient,106.38,0,0,Check-Out,Edwin Munoz,sdoyle@example.net,(261)544-8151,4187261425824609,2025-04-04 +Resort Hotel,0,8,2017,June,23,9,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Contract,49.55,0,0,Check-Out,James Brooks,millerjohn@example.net,001-465-642-1747x0046,5589039544490911,2025-03-02 +City Hotel,0,32,2017,December,52,27,0,1,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,313.0,179.0,0,Transient-Party,133.61,0,0,Check-Out,Craig Smith,ellisjeremy@example.net,+1-439-929-7877x9391,572668057555,2026-03-05 +City Hotel,0,73,2017,January,2,7,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Check-Out,Mark Thomas,rriddle@example.org,(899)983-3615,4416487762043981,2026-02-02 +Resort Hotel,0,31,2017,March,12,19,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,206.62,0,0,Check-Out,Rachel Curry,melissa26@example.net,297.287.8615,4953022484186430571,2025-09-23 +Resort Hotel,0,31,2017,May,20,17,0,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Transient,211.87,0,0,Check-Out,Elizabeth Sanchez,dennis30@example.com,001-791-382-5612x82955,6011544030791579,2025-12-27 +City Hotel,0,86,2017,December,50,11,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,10.0,179.0,0,Transient,117.51,0,0,Check-Out,Darren Gonzales,jessica14@example.org,(916)399-0673,30291839239901,2024-07-24 +Resort Hotel,1,24,2017,March,13,28,1,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,47.9,0,1,Canceled,Mr. John Khan,marthaluna@example.net,+1-575-445-6977x709,213184423774947,2024-12-29 +City Hotel,1,144,2017,February,8,23,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,39,Transient,90.05,0,0,Canceled,Jason Williams,gutierrezkevin@example.net,6207718253,3568792768933673,2026-01-24 +City Hotel,1,103,2017,February,7,14,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,146.79,0,2,Canceled,Stephanie Livingston,hannahbarber@example.com,+1-899-247-9783,3540040880345217,2026-01-25 +Resort Hotel,0,0,2017,June,24,12,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,169.0,179.0,0,Transient-Party,47.01,0,1,Check-Out,Anthony Marshall,monica58@example.com,525.960.0620x10466,345197872116783,2026-03-20 +City Hotel,0,87,2017,August,34,20,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Contract,106.1,0,1,Check-Out,Matthew Hamilton,jgreen@example.net,+1-691-365-0541x616,6011944046135490,2025-01-29 +City Hotel,1,359,2017,March,13,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.49,0,0,Canceled,Heather Hunt,tracy52@example.net,2332788014,3584101349641419,2026-02-28 +Resort Hotel,1,40,2017,February,6,8,3,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,131.25,0,3,Canceled,Timothy Melton,kowen@example.net,976-948-2202x7523,180095013350352,2024-12-05 +City Hotel,0,13,2017,November,45,10,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,124.94,0,1,Check-Out,Harold Lee,matthew97@example.net,301.419.7896x58872,6011243753280346,2024-10-31 +Resort Hotel,0,141,2017,March,9,3,0,3,2,0.0,0,HB,CN,Online TA,Direct,0,0,0,A,A,0,No Deposit,144.0,179.0,75,Transient,98.35,0,0,Check-Out,Carol Gay,jacobsalinas@example.com,7578379090,213188100719000,2024-11-10 +Resort Hotel,1,12,2017,July,28,9,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient,52.2,0,0,Canceled,Michael Nelson,heather04@example.org,880-789-3704,6523071462216579,2024-08-10 +City Hotel,0,4,2017,September,39,28,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,110.41,0,0,Check-Out,Daniel Meyer,smithdaniel@example.net,+1-238-873-6474x8917,4411326454001656702,2024-11-24 +City Hotel,1,167,2017,December,51,20,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,123.92,0,1,Canceled,Jamie Lindsey,wwilson@example.com,255.738.3479x8380,6573297826237949,2025-03-21 +Resort Hotel,1,50,2017,December,52,23,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Marc Mitchell,zrose@example.com,+1-364-400-2972x77990,3521911724958485,2026-01-24 +City Hotel,0,6,2017,August,35,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.58,0,2,Check-Out,Jose Martinez,jason05@example.com,001-676-716-5463,2287979835124574,2025-08-06 +Resort Hotel,0,0,2017,September,39,24,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,1,D,D,0,No Deposit,14.0,179.0,0,Group,49.08,0,0,Check-Out,John Gallagher,icruz@example.net,7384425796,4809958373200132,2025-11-21 +City Hotel,1,302,2017,March,11,13,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.29,0,0,Canceled,Richard Chandler,ywheeler@example.org,001-860-478-1328x7757,675971607964,2026-01-04 +Resort Hotel,0,59,2017,November,44,1,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,218.3,1,3,Check-Out,Andrea Donaldson,ashleysolis@example.net,846-660-4509,630481544678,2024-10-20 +City Hotel,0,14,2017,October,40,3,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,79.73,0,1,Check-Out,Jamie Guerrero,johnsonemily@example.org,001-366-936-8651x8638,2369311162844379,2024-08-27 +Resort Hotel,0,201,2017,March,9,2,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,132.96,1,1,Check-Out,Nathan Adams,joanna39@example.com,601.638.6037,6011137136870460,2025-01-20 +City Hotel,0,50,2017,February,6,4,1,3,1,0.0,0,BB,ITA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,106.3,0,0,Check-Out,Thomas Davis,michellewood@example.net,876.962.6989,6558366078662366,2024-08-15 +Resort Hotel,0,303,2017,September,37,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,378.0,179.0,0,Transient,42.73,0,1,Check-Out,James Williams,shawnshort@example.net,001-822-896-5048x858,3513301850363306,2024-05-20 +City Hotel,1,144,2017,September,38,17,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,69.94,0,0,Canceled,Troy Lee,danielmontoya@example.org,(724)612-1340x4544,30498788362564,2026-02-28 +Resort Hotel,1,158,2017,February,8,21,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,Non Refund,237.0,179.0,0,Transient,120.51,0,0,Canceled,Jennifer Mckenzie,michael70@example.org,(471)440-8368x437,676337289257,2026-02-18 +City Hotel,1,167,2017,June,22,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,17,Transient,100.65,0,0,Canceled,Joshua Scott,yvonnerojas@example.org,+1-281-416-4935,4711003514006341650,2026-03-04 +City Hotel,0,15,2017,January,3,18,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,12.0,331.0,0,Transient-Party,129.14,0,1,Check-Out,April Jones,wallacedavid@example.org,814-476-3419x082,3547050384364690,2024-07-01 +City Hotel,1,410,2017,March,12,22,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,91.74,0,0,Canceled,Deborah Webb,michaelgonzalez@example.org,001-680-354-9206x25921,30217767107190,2024-11-15 +City Hotel,1,362,2017,August,32,8,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,79.97,0,0,Canceled,John Zavala,marisa21@example.com,5043332875,4798077970671661,2024-05-10 +City Hotel,0,17,2017,April,14,4,1,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,248.0,0,1,Check-Out,Katherine Miller,morganbeth@example.com,796.889.5715x48193,502004159229,2024-05-21 +Resort Hotel,1,159,2017,April,15,11,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,109.55,0,0,Canceled,Steven Jensen,angelablackwell@example.com,(380)781-1425,3523782545343290,2024-10-01 +City Hotel,1,277,2017,March,12,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.66,0,0,Canceled,Sarah Sosa,elliscasey@example.com,824.442.4725,4079707556232505666,2025-01-05 +Resort Hotel,0,1,2017,January,3,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,241.0,179.0,0,Transient,63.14,1,1,Check-Out,Justin Small,michaelhorton@example.net,(598)270-1084x04820,213157125686791,2025-11-18 +Resort Hotel,0,1,2017,September,39,24,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient,46.32,0,0,Check-Out,Erin Ortega,durhamrobin@example.com,435-521-3565x3675,340938647325976,2024-04-29 +Resort Hotel,0,0,2017,September,38,17,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,40.0,179.0,0,Transient,51.73,0,0,Check-Out,Mary Conley,markmoore@example.com,+1-978-483-5661x401,341224655635591,2025-08-12 +City Hotel,0,444,2017,June,24,12,2,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.01,0,1,Check-Out,Melanie Drake,cherylhartman@example.org,512-269-5135x04740,348119000017953,2024-06-20 +City Hotel,0,1,2017,October,44,29,1,5,2,1.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,K,1,No Deposit,164.0,179.0,0,Transient,73.24,0,2,Check-Out,Danielle Briggs,melissajordan@example.org,411.313.2411x94949,639052901803,2025-04-01 +City Hotel,0,20,2017,March,12,23,1,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.15,0,1,Check-Out,Dillon Case,schneiderchristina@example.net,655.394.2051x168,372727227663711,2024-04-28 +Resort Hotel,0,0,2017,August,31,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,52.13,0,1,Check-Out,William Esparza,qguerrero@example.net,(320)963-5618x61189,4690710201447,2025-09-17 +City Hotel,0,11,2017,November,47,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,82.52,0,1,Check-Out,Kevin Solis,jgrant@example.net,+1-442-310-9156x440,180071749852052,2025-08-19 +Resort Hotel,0,144,2017,March,10,8,2,5,3,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,235.32,0,0,Check-Out,Roger Peters,golson@example.com,001-294-667-6986x115,6011255520702980,2025-07-23 +Resort Hotel,0,37,2017,July,28,11,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,61.93,0,0,Check-Out,Colleen Blanchard,randygonzales@example.org,6804413754,36504333719499,2025-03-06 +City Hotel,1,62,2017,April,14,7,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,112.66,0,1,No-Show,Christian Garcia,steelescott@example.net,221.914.3243,3590410228471901,2025-08-25 +City Hotel,0,168,2017,November,46,13,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,49.51,0,3,Check-Out,Heidi Newton,barry66@example.net,552.284.1415,4458074365939580,2024-12-02 +City Hotel,1,3,2017,July,27,2,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.76,0,0,Canceled,Gary Miller,suttondarlene@example.net,+1-878-330-0315x79103,30182419452628,2024-09-12 +Resort Hotel,1,3,2017,April,16,16,0,1,2,0.0,0,FB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,0.0,0,0,Canceled,John Hebert,tammy68@example.com,001-782-843-6614x130,3558169912260729,2025-09-24 +City Hotel,1,264,2017,April,16,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,109.1,0,0,Canceled,Erik Small,kelly64@example.net,217-323-9146,3555795696122579,2025-12-27 +City Hotel,0,37,2017,October,43,28,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,8.0,179.0,0,Transient,97.3,0,1,Check-Out,Robert Moore,jamiecannon@example.org,(774)694-1769x116,4103379207234,2026-01-13 +Resort Hotel,0,18,2017,May,18,5,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,314.0,179.0,0,Contract,55.34,0,0,Check-Out,Andre Pace,floreskatherine@example.net,5775615449,4587468537492409,2024-10-12 +Resort Hotel,0,267,2017,September,37,9,2,4,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,41.98,0,2,Check-Out,David Koch,larry02@example.com,3399232175,3582919178151420,2024-12-26 +City Hotel,1,150,2017,April,17,25,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,133.28,0,2,Canceled,Tyler Chapman MD,corywilliams@example.net,(724)607-0182x760,2702797617829229,2024-06-29 +Resort Hotel,0,46,2017,December,51,22,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,159.72,1,1,Check-Out,Donna Bishop,baldwinkaren@example.com,+1-600-665-7912x250,4449907218361,2025-08-29 +City Hotel,0,22,2017,July,30,24,2,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,E,A,0,No Deposit,13.0,331.0,18,Transient-Party,86.25,0,0,Check-Out,Christopher Murphy,geoffreycohen@example.net,(705)944-2962x5808,3575440889069933,2024-04-04 +City Hotel,1,403,2017,April,18,30,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,106.01,0,0,Canceled,Bradley Miller,piercemichelle@example.org,282.468.9721x295,4968382623417809,2024-10-20 +City Hotel,1,25,2017,August,31,4,1,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,B,K,1,No Deposit,13.0,179.0,0,Transient,2.72,0,0,Canceled,Alejandra Fernandez,pattersonmichael@example.org,939-859-9004,376054559853570,2024-12-10 +City Hotel,0,43,2017,November,47,21,0,1,1,0.0,0,BB,BEL,Online TA,Direct,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,97.08,0,1,Check-Out,Brandon Cordova PhD,heatherbrown@example.com,220-334-7551x72303,348291321553436,2025-07-06 +City Hotel,1,153,2017,November,48,29,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,9.0,179.0,0,Transient,97.94,0,0,Canceled,Wendy Smith,laurenrobertson@example.com,001-680-837-6187x819,3557186344766660,2026-01-20 +City Hotel,1,392,2017,February,7,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,111.53,0,1,Canceled,Casey Terrell,wongkelly@example.com,(346)667-9138x01148,567565425491,2025-03-26 +Resort Hotel,0,16,2017,April,17,25,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,252.0,1,0,Check-Out,Michael Serrano,stephanie43@example.org,992-760-3782,30597099123027,2025-02-08 +City Hotel,0,9,2017,August,35,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,104.75,0,1,Check-Out,Kenneth Williams,marshallkelly@example.com,+1-460-483-9179x32776,5413190198952383,2024-12-05 +City Hotel,1,11,2017,February,5,1,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.24,0,1,Canceled,Erin Williams,erojas@example.com,(349)579-1710x645,5315692996012053,2025-01-22 +Resort Hotel,0,90,2017,August,34,21,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient-Party,75.33,0,0,Check-Out,Virginia Mendez,wongkelly@example.com,7475706662,3568218775161223,2025-01-15 +City Hotel,1,251,2017,May,21,21,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,6.0,179.0,0,Transient,112.85,0,0,Canceled,Cheryl Jackson,mindy83@example.org,793.403.7535,4483429673508858546,2024-03-28 +Resort Hotel,1,159,2017,November,47,19,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,145.95,0,1,Canceled,Wyatt Rodriguez,wsanchez@example.org,357-450-9369x26940,4472260203669628,2025-03-31 +Resort Hotel,0,36,2017,March,13,27,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,111.3,1,2,Check-Out,Lisa Fox,jeffrey36@example.org,(314)733-8311x109,213156825115028,2025-05-17 +City Hotel,0,45,2017,February,6,10,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,139.0,179.0,0,Transient-Party,124.23,0,0,Check-Out,Diane Brown,cookjessica@example.com,001-871-603-0000x1807,6537669720892265,2024-12-04 +City Hotel,0,4,2017,April,18,30,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,204.21,0,2,Check-Out,Debbie Schneider,dpowell@example.com,+1-225-908-0512x0881,4522932243522007515,2024-12-21 +City Hotel,0,3,2017,May,18,6,1,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.07,0,2,Check-Out,Anne Obrien,lopezrebecca@example.com,360.828.5055x580,6011638985574806,2026-02-27 +Resort Hotel,0,357,2017,April,14,4,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,C,1,No Deposit,239.0,179.0,0,Contract,176.5,0,3,Check-Out,Amanda Phelps,bryantvanessa@example.com,(823)929-4676,30009412082997,2024-11-22 +Resort Hotel,0,5,2017,January,2,9,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,119.43,0,1,Check-Out,Melissa Patrick,ywilliams@example.net,796-515-4057x2374,213121317496617,2024-11-23 +Resort Hotel,0,197,2017,April,15,9,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,243.0,179.0,0,Transient,211.79,1,1,Check-Out,Jordan Carter,andrew52@example.com,001-512-308-0334x83338,6555774679395901,2024-06-15 +City Hotel,0,37,2017,August,33,16,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,110.92,0,1,Check-Out,Jennifer Roman,fryrobert@example.net,671.437.9498x1063,30591466250877,2025-08-17 +City Hotel,0,9,2017,June,26,29,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,64.68,0,1,Check-Out,William Parker,vwatson@example.org,(338)448-6089,213149190302289,2024-09-15 +City Hotel,0,407,2017,November,48,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,60.58,0,0,Check-Out,David Hernandez,paulspence@example.com,316.500.3048x743,4228037952466925817,2025-09-08 +City Hotel,0,97,2017,August,31,2,0,2,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.35,0,0,Check-Out,Bobby Matthews,michelle41@example.org,206.272.5548x1481,3589548123666761,2024-09-26 +City Hotel,0,3,2017,November,47,23,0,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,25.0,179.0,0,Transient,103.57,0,1,Check-Out,Brian Cole,alexis43@example.net,229-681-5802,5482061401008899,2025-01-13 +City Hotel,1,0,2017,August,32,5,0,2,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,8.0,179.0,0,Transient,114.34,0,1,Canceled,Benjamin Townsend,gmeyer@example.org,(494)956-2818,213120632967963,2025-01-23 +City Hotel,0,13,2017,April,14,3,2,7,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,136.0,179.0,40,Transient,90.0,0,1,Check-Out,Lauren Higgins,brandy60@example.org,(324)334-0458x3446,4437370267925529,2025-05-22 +City Hotel,0,9,2017,November,47,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,36.81,1,1,Check-Out,Bryan Newman,maciasandrea@example.net,(778)395-6753,3516095288561815,2026-01-10 +City Hotel,0,151,2017,March,12,25,0,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Transient,127.9,0,0,Check-Out,Kristen Matthews,adrianpalmer@example.org,001-212-580-8160,3570009003824252,2024-12-25 +City Hotel,1,214,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,99.52,0,0,Canceled,Christine Kennedy,hchen@example.net,974-564-9290x3505,3581001490491684,2025-09-02 +Resort Hotel,0,2,2017,October,41,9,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient-Party,44.35,0,0,Check-Out,Christopher Lee,vargasjennifer@example.net,001-784-280-3216x21597,5431845385208695,2025-05-14 +Resort Hotel,0,0,2017,September,37,12,0,1,3,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,45.24,0,1,Check-Out,Andre Farrell,thomasknight@example.net,230.424.2391,4097481007559352,2025-05-06 +Resort Hotel,0,136,2017,November,48,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,223.0,0,Transient-Party,97.01,1,0,Check-Out,Cody Jimenez,angelicachase@example.net,848.871.0485x6064,4671396659879169,2025-01-25 +City Hotel,0,0,2017,November,44,3,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,62.92,1,0,Check-Out,Jennifer Fletcher,ihutchinson@example.org,631.788.1912x6220,2456005613910516,2025-01-12 +City Hotel,0,58,2017,December,50,10,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,136.22,0,0,Check-Out,Casey Murphy,gcook@example.net,(245)832-4441,30478754521427,2024-11-11 +City Hotel,0,4,2017,April,16,17,0,2,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,232.94,1,1,Check-Out,Jennifer Edwards,marshallmichael@example.com,865-374-3319x06901,30597629853630,2025-12-15 +Resort Hotel,1,219,2017,April,15,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,72.91,0,0,Canceled,Lacey Graves,garciaanthony@example.net,238-706-1184x7107,676339627470,2024-05-04 +City Hotel,0,42,2017,July,27,6,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,8.0,179.0,0,Transient,83.71,0,1,Check-Out,Richard Best,rmarquez@example.com,923-303-7432x7531,2275312630197989,2025-08-10 +Resort Hotel,0,2,2017,November,47,22,1,1,1,0.0,0,Undefined,PRT,Corporate,Direct,0,0,0,A,A,2,No Deposit,191.0,331.0,0,Transient-Party,51.38,1,0,Check-Out,John Mcneil,davidanderson@example.net,215.837.1487x427,6520887670864048,2024-11-29 +City Hotel,1,331,2017,March,12,18,2,5,3,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,145.76,0,0,No-Show,Stephen Allen,cookgina@example.net,751-408-6547x15399,4615085221416796762,2024-09-27 +City Hotel,1,15,2017,February,8,20,2,3,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.4,0,1,Canceled,Tina Solomon,garyrodriguez@example.com,(449)633-1661x74149,3518454686189588,2024-10-22 +Resort Hotel,1,138,2017,March,14,30,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,2,No Deposit,241.0,179.0,0,Transient,252.0,0,3,Canceled,Jennifer Townsend,vrogers@example.org,(947)312-1233x66201,4803635978313686,2024-11-20 +Resort Hotel,1,110,2017,March,10,5,4,7,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,118.8,0,1,No-Show,Michelle Mcbride,mvaughan@example.org,409.919.3351x68976,675992596188,2025-12-28 +Resort Hotel,0,0,2017,November,44,2,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,131.0,179.0,0,Transient,51.41,0,0,Check-Out,Aaron Webb,christophermendez@example.com,882-418-8304x317,4968290490738258,2026-01-17 +City Hotel,1,49,2017,November,48,28,1,4,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,122.8,0,0,Canceled,Kathryn Clark,ashley13@example.com,5669126811,6011580018210612,2025-08-04 +Resort Hotel,0,50,2017,April,14,2,2,2,2,1.0,0,BB,FRA,Direct,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,216.33,1,1,Check-Out,Matthew Doyle,jennifermcguire@example.com,(773)617-9334x95037,2229970627637577,2025-08-22 +Resort Hotel,0,9,2017,March,14,30,1,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,38.0,179.0,0,Transient-Party,127.72,1,0,Check-Out,Kiara Preston,ymcbride@example.com,368.859.0148x452,213150153444381,2025-08-03 +City Hotel,1,220,2017,November,45,9,2,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,123.59,0,2,Canceled,Lisa Salazar MD,christina76@example.net,(812)323-2687x86220,30187623326146,2025-07-27 +City Hotel,0,25,2017,November,45,9,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,G,F,0,No Deposit,245.0,179.0,0,Transient,216.22,0,3,Check-Out,Rebecca Gibson,bryan82@example.com,313-316-4220x6917,3521363070895970,2024-10-30 +City Hotel,1,154,2017,January,2,1,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,189.0,179.0,0,Transient,125.96,0,0,Canceled,Kimberly Ryan,bmolina@example.net,5637040796,4539697639674815697,2024-04-12 +City Hotel,1,47,2017,April,16,15,1,4,2,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,164.97,0,2,Canceled,Amanda Cook,daniel39@example.org,+1-338-998-3334,2231882076956968,2025-05-24 +City Hotel,1,3,2017,June,24,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.19,0,2,Check-Out,Mark Conner,gjackson@example.com,(304)235-7140x173,3506052829505977,2025-01-09 +City Hotel,0,15,2017,August,34,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,3,No Deposit,13.0,179.0,0,Transient,125.58,1,1,Check-Out,Shawn Hickman,amanda36@example.org,630.641.4692x992,213162104760740,2024-11-22 +City Hotel,1,38,2017,July,29,18,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,E,E,2,No Deposit,9.0,179.0,0,Transient-Party,91.49,0,0,Canceled,Lisa Hall,oneillvalerie@example.org,001-601-267-4122x486,6597389975176374,2025-12-27 +City Hotel,1,378,2017,March,12,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,95.64,0,0,Canceled,Kevin Cole,david50@example.org,+1-639-942-5174x320,4912533564018116,2024-10-31 +Resort Hotel,0,157,2017,November,48,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,11.0,331.0,0,Transient-Party,39.79,0,1,Check-Out,Matthew Williams,justinsmith@example.com,(234)255-7387x42175,5131307928960731,2026-02-20 +City Hotel,1,417,2017,April,16,16,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,212.67,0,0,Canceled,Tanner King,victoria68@example.com,(868)596-6724x980,4457901362523,2024-09-11 +City Hotel,0,321,2017,January,4,25,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,80.72,0,0,Check-Out,Joseph Williams,sean46@example.net,+1-437-596-4564x121,501872509556,2025-01-23 +City Hotel,0,0,2017,May,19,10,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,B,0,No Deposit,12.0,179.0,0,Transient,64.2,1,0,Check-Out,Joann Sanders,kevin48@example.org,599.970.9887x03448,5242614962309063,2024-11-14 +City Hotel,0,0,2017,October,42,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,15.0,45.0,0,Transient,50.41,0,1,Check-Out,Tyler Lang,robertsonpamela@example.com,519-469-5941,4488933233226,2025-07-11 +Resort Hotel,0,20,2017,June,25,22,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,119.41,0,1,Check-Out,Robert Payne,christinagrant@example.org,630.793.3611x479,3551953349122397,2025-11-30 +City Hotel,0,41,2017,October,42,14,0,3,1,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,109.29,0,1,Check-Out,Jonathan Cisneros,changpatricia@example.com,+1-955-294-0841x810,2293503373555833,2024-09-11 +City Hotel,1,153,2017,February,7,10,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,119.73,0,1,Canceled,Margaret Torres,rmullen@example.org,+1-401-331-2607x34431,4919134484863989,2025-04-03 +Resort Hotel,0,48,2017,April,15,9,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,63.1,1,1,Check-Out,Amber Zhang,brian15@example.org,256-386-8385,4233911864901,2024-10-11 +City Hotel,0,19,2017,October,44,31,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,168.73,0,3,Check-Out,Matthew Roberts,kyleortega@example.com,(581)660-6360x777,373997154580936,2025-02-10 +City Hotel,0,13,2017,June,25,20,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,61.94,0,0,Check-Out,David Hays,gardnerelizabeth@example.com,+1-722-614-6704,370140257130399,2024-05-11 +City Hotel,1,257,2017,May,19,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.23,0,0,Canceled,Erin Gardner,bharvey@example.net,+1-544-708-4857x7826,501859440742,2024-04-22 +City Hotel,1,44,2017,February,8,22,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,111.41,0,1,Canceled,Michael Miller,amymccormick@example.com,816.224.0735,4684451543381321,2025-02-06 +City Hotel,1,25,2017,January,2,4,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,E,2,No Deposit,7.0,179.0,0,Transient,183.54,0,1,Canceled,Theresa Smith,fwilkerson@example.org,(859)572-8885x9738,3567310503663579,2024-08-09 +City Hotel,0,48,2017,March,14,30,2,5,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,G,D,0,No Deposit,181.0,179.0,0,Transient,132.06,0,3,Check-Out,Paul Scott,christopher53@example.net,954-282-7212x527,36115073337259,2024-04-27 +Resort Hotel,0,11,2017,August,31,4,1,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,231.07,0,1,Check-Out,Megan Perry,josephguerra@example.org,4397800162,562970871231,2025-04-20 +Resort Hotel,0,165,2017,December,51,20,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,218.25,1,1,Check-Out,Christina Martin,dwood@example.org,001-635-430-3545x7949,36768253066070,2025-11-07 +Resort Hotel,1,89,2017,February,8,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,104.21,0,0,Canceled,Timothy Collins,yfisher@example.com,822-258-8722x6540,4847721901750955632,2024-12-04 +City Hotel,0,2,2017,March,11,12,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,166.5,1,1,Check-Out,Kimberly Jones,tduran@example.org,+1-249-825-1589,6560416687654852,2024-06-28 +City Hotel,0,273,2017,March,11,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,62.36,0,1,Check-Out,Dr. Sarah Smith,omeyers@example.org,(338)848-3132,3512059539422007,2026-01-17 +Resort Hotel,1,297,2017,July,29,17,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,75.37,0,1,Canceled,Richard Bauer,patriciahall@example.com,7823756813,4981323200664416,2026-02-15 +City Hotel,0,107,2017,December,49,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient-Party,106.36,1,3,Check-Out,Traci Wilson,fwyatt@example.com,+1-906-293-0778x905,4957696723086,2024-11-18 +Resort Hotel,0,56,2017,December,49,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,49.07,1,1,Check-Out,Bryan Miranda,larry10@example.net,827-608-8179,3590751830586184,2026-01-31 +City Hotel,0,42,2017,December,51,23,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,121.07,0,1,Check-Out,Julie Martinez,james71@example.net,992-208-5140,3516936931892356,2025-05-05 +City Hotel,0,12,2017,November,45,7,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,141.49,0,2,Check-Out,Diana Miller,meyervalerie@example.org,250-228-3571,213167823964093,2025-04-11 +City Hotel,0,14,2017,February,7,17,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,104.4,0,2,Check-Out,Heather Hughes,robinsonsally@example.com,978-572-2728,4074319156312,2025-12-28 +City Hotel,0,16,2017,December,52,24,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,109.61,0,0,Check-Out,Tony Swanson,deanjohn@example.net,(619)497-7473x791,639004795022,2024-09-07 +Resort Hotel,0,42,2017,April,14,5,1,0,1,0.0,0,BB,,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,75.0,0,Transient,52.27,0,1,Check-Out,Lisa Montes,thomassutton@example.com,6278323923,180066910146318,2024-07-06 +Resort Hotel,0,53,2017,June,23,6,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,128.43,0,0,Check-Out,Wendy Martin,gracemccall@example.org,+1-330-883-8614x2900,676290463923,2024-04-09 +City Hotel,0,147,2017,February,5,2,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,107.22,0,1,Check-Out,Joseph Norris,christophersmith@example.com,678-560-4553x5302,3505878397306278,2024-06-24 +Resort Hotel,1,387,2017,June,25,21,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,173.0,179.0,0,Transient,60.83,0,0,Canceled,William Todd,bcampbell@example.net,(942)695-8175,6011010501141983,2025-12-09 +City Hotel,0,45,2017,May,20,18,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,100.48,0,2,Check-Out,Gerald Price,colin84@example.com,(553)383-3908x877,6011238925391187,2024-11-04 +Resort Hotel,0,0,2017,June,26,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Group,63.24,0,0,Check-Out,Ashley Hunt,pmoran@example.net,212-949-0424x9743,4859321704192446,2024-07-22 +City Hotel,0,107,2017,July,30,22,0,2,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,237.0,0,Transient-Party,112.6,0,1,Check-Out,Christy Lee,gfox@example.com,708.271.5599x4383,4836205783172908,2025-08-19 +Resort Hotel,0,29,2017,June,25,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,22.0,179.0,0,Transient-Party,80.96,0,0,Check-Out,Patricia Adkins,melissa79@example.net,7864115164,676184757323,2025-07-22 +City Hotel,0,0,2017,July,27,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,41.0,238.0,0,Transient-Party,43.53,0,0,Check-Out,Willie Perez,steven97@example.org,7832590879,180001682016571,2024-11-17 +City Hotel,1,108,2017,January,5,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,142.98,0,0,No-Show,Susan Snyder,cartercarol@example.com,(411)409-0993,4697214791750748753,2025-01-16 +Resort Hotel,0,0,2017,December,51,23,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,102.81,1,0,Check-Out,Jasmine Day,robert90@example.com,563-440-0060x9436,36037108752833,2025-07-03 +Resort Hotel,1,0,2017,October,43,25,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,194.0,179.0,0,Transient,42.99,0,0,Canceled,Andrew Chavez,laurenfowler@example.net,928-909-4982x37342,4174002943131,2024-12-14 +Resort Hotel,0,398,2017,May,20,20,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,83.12,0,0,Check-Out,Henry Huerta,cole83@example.org,(927)307-6774x26848,4470127276688767370,2025-02-02 +Resort Hotel,0,211,2017,May,19,6,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,310.0,179.0,0,Transient-Party,93.8,0,0,Check-Out,Mariah Perry,zlambert@example.com,387-603-4884x224,4747772113645,2024-09-26 +Resort Hotel,0,1,2017,July,29,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,59.0,0,Transient-Party,58.83,0,0,Check-Out,Tracy Atkins,qweaver@example.net,2316345388,6011461680947338,2025-12-27 +City Hotel,1,168,2017,December,52,30,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,104.45,0,0,Canceled,Ryan Wheeler,dustin03@example.org,+1-973-537-7674x7672,30247635270656,2026-01-30 +City Hotel,0,113,2017,April,17,26,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,A,1,No Deposit,15.0,179.0,0,Transient,136.7,0,3,Check-Out,Audrey Taylor,vcrosby@example.org,(810)271-8409x525,6011128840785847,2025-01-18 +City Hotel,1,259,2017,March,12,17,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.49,0,2,Canceled,Zachary Swanson MD,wendyhumphrey@example.org,+1-324-348-6146x5212,30198971250879,2024-10-26 +Resort Hotel,1,236,2017,January,5,31,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,275.0,179.0,0,Transient,110.52,0,0,Canceled,Amanda Conley,clayton42@example.org,+1-868-557-3242x78691,4948128815566,2024-08-24 +Resort Hotel,1,146,2017,August,35,26,3,4,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,48.79,0,0,Canceled,Eric Short,xcuevas@example.org,965.652.6833,2720455382263557,2025-08-29 +City Hotel,1,390,2017,March,13,23,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Transient-Party,138.49,0,0,Canceled,Scott Brown,jasonthompson@example.net,521.293.1653x709,30544631155174,2024-08-11 +City Hotel,1,0,2017,August,31,5,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,F,K,1,No Deposit,11.0,179.0,0,Transient,108.41,0,0,Canceled,Victor Taylor,caroline76@example.org,+1-276-252-6456,4028215573113126944,2025-12-13 +Resort Hotel,0,0,2017,December,51,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,16.0,240.0,0,Transient,38.82,0,0,Check-Out,James Hernandez,jennifermccoy@example.net,752-264-6514,4792920228952,2024-07-29 +City Hotel,1,167,2017,June,24,11,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.95,0,0,Canceled,Jason Jones,eroy@example.org,(634)689-5150,6011059423363712,2026-03-01 +Resort Hotel,0,49,2017,June,26,29,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,62.67,0,1,Check-Out,Angela Parker,kristin92@example.net,(288)460-2076,3524224771858898,2024-07-31 +City Hotel,1,215,2017,August,34,20,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,98.07,0,1,Canceled,Alexander Zavala,xbrown@example.com,393-813-4573,346169970567315,2024-11-26 +City Hotel,0,113,2017,March,10,4,2,4,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,G,F,2,No Deposit,14.0,179.0,0,Transient,120.0,0,3,Check-Out,Michael Kane,adriennecoleman@example.com,7749080936,4996917693174297,2025-08-06 +Resort Hotel,0,15,2017,March,9,3,1,7,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,242.73,1,3,Check-Out,Lindsey York,sjones@example.net,8562456628,371948049904098,2024-04-04 +Resort Hotel,0,25,2017,December,49,2,3,7,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,232.19,0,0,Check-Out,Brandon Baker,yjenkins@example.org,3403864538,675965262008,2024-05-13 +Resort Hotel,0,89,2017,February,6,4,2,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,114.41,0,1,Check-Out,Stephen White,dodsonshelby@example.org,(462)488-7536,30480610330936,2024-07-14 +Resort Hotel,0,27,2017,September,38,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,40.9,1,2,Check-Out,Robert Hall,kevin56@example.org,001-397-476-7849,3524247793447838,2026-02-01 +Resort Hotel,0,10,2017,April,17,24,4,7,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,229.02,0,3,Check-Out,Ryan Pierce,jennifer15@example.net,001-460-322-9961x3971,180056533708545,2025-02-13 +City Hotel,1,96,2017,January,4,24,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,111.55,0,0,Canceled,Shannon Cain,sarahhendricks@example.net,+1-616-542-8181x14473,4553473763027222509,2025-12-14 +Resort Hotel,0,123,2017,December,52,25,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,247.0,179.0,0,Transient-Party,107.1,0,3,Check-Out,Laura Vaughn,gabriellatorres@example.net,626.293.3151,5502941018332749,2024-09-04 +City Hotel,0,11,2017,October,41,11,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.49,0,1,Check-Out,Juan Evans,john12@example.org,(749)984-8161x44440,3501034688315453,2025-06-06 +City Hotel,1,260,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.62,0,1,Canceled,Nicole Williams,meyermartin@example.org,+1-247-478-2220x1127,347129781000046,2024-11-01 +City Hotel,1,244,2017,June,24,16,3,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,112.7,0,2,Canceled,Jennifer Barrett,brandon02@example.com,+1-644-327-6106x697,4777956721272884,2025-06-07 +City Hotel,0,46,2017,November,45,4,2,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.5,0,1,Check-Out,Anthony Jones,rowlandshannon@example.org,765-340-3743x82599,4347745350521,2024-06-24 +City Hotel,1,48,2017,July,27,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,121.78,0,1,Canceled,Leah Rodriguez,lmoran@example.org,001-372-727-4326,570340056714,2025-11-29 +Resort Hotel,0,1,2017,April,14,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,1,1,A,I,0,No Deposit,14.0,179.0,0,Transient-Party,4.37,0,0,Check-Out,John Ward,nsharp@example.org,001-493-263-4456x618,4840149356987988923,2024-05-05 +City Hotel,0,12,2017,November,47,23,0,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,83.15,0,1,Check-Out,Deborah Garza,kerryschultz@example.com,(409)307-4869x70267,4977630710675475856,2024-07-18 +City Hotel,0,3,2017,April,15,6,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,175.84,0,3,Check-Out,Rebecca Miller,carterconnie@example.org,260-690-7108x45789,30021784451932,2024-07-21 +Resort Hotel,0,149,2017,September,40,30,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,1,No Deposit,241.0,179.0,0,Transient,121.81,1,0,Check-Out,Matthew Carroll,zpitts@example.org,9745067568,374774723163893,2025-05-20 +City Hotel,0,0,2017,November,45,4,0,2,1,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,49.5,0,1,Check-Out,Lynn Smith,malonekristen@example.com,(540)495-9148x9383,4993517366276,2025-12-30 +City Hotel,1,0,2017,May,19,9,2,1,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,72.97,0,0,Canceled,Michael Jackson,jessica92@example.org,797-837-6822x766,349090185216265,2024-11-25 +City Hotel,0,0,2017,May,19,9,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,81.05,0,0,Check-Out,Sharon Hicks,ochoatroy@example.com,377.592.0285x3258,676336069296,2025-12-10 +Resort Hotel,0,162,2017,December,50,12,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,162.62,0,0,Check-Out,Abigail Mills MD,amber21@example.net,+1-994-940-1070x4051,4119633590914410,2024-08-25 +City Hotel,1,54,2017,February,6,4,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.17,0,3,Canceled,Paula Lopez,patricia75@example.org,2909182785,4652242543648167,2025-04-24 +City Hotel,1,47,2017,July,27,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,64,Transient,107.79,0,0,Canceled,Amy Clark,asutton@example.org,001-597-582-2971x20302,4021040512171695735,2025-11-21 +Resort Hotel,1,297,2017,March,11,15,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Contract,41.16,0,0,Canceled,Cheryl Rose,walkerjoshua@example.org,480-577-7587x411,379406384246296,2025-01-27 +Resort Hotel,0,1,2017,September,37,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,43.53,0,3,Check-Out,Jared Garza,brenda19@example.com,5474786676,676298123206,2025-03-30 +City Hotel,1,35,2017,January,4,24,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,130.94,0,0,Canceled,Donna Wright,christopher66@example.org,001-254-606-8283,36547486987694,2025-12-19 +Resort Hotel,1,130,2017,November,46,11,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,35.61,0,0,Canceled,Belinda Fisher,wdavis@example.com,251-472-4583,4550946094859316291,2025-08-29 +City Hotel,0,419,2017,May,20,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,94.04,0,0,Check-Out,Kathleen Levine,haysleslie@example.net,584.792.1430x6694,2618693401792041,2024-12-09 +City Hotel,0,36,2017,February,9,25,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.57,0,2,Check-Out,Corey King,bmaxwell@example.org,(715)851-8029,372851238251462,2024-06-12 +Resort Hotel,0,211,2017,April,16,18,2,5,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,231.65,1,2,Check-Out,Cody Davidson,scottwatson@example.com,(228)837-4006x41789,4220073262586,2025-03-17 +Resort Hotel,0,14,2017,November,47,23,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,17.0,222.0,0,Transient-Party,55.43,0,0,Check-Out,Michael Anderson,ddavis@example.org,(880)924-2428x03861,4862134108227428,2025-04-16 +City Hotel,0,192,2017,February,9,25,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,117.93,0,1,Check-Out,Zachary Mcgee,camerongarza@example.org,001-770-601-6906,4418699775203138063,2024-04-23 +City Hotel,0,2,2017,October,44,29,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,1,1,A,B,1,No Deposit,14.0,45.0,0,Transient,64.26,1,0,Check-Out,Melinda Anderson,vasquezjennifer@example.com,+1-986-371-2679x27043,5343073225925330,2025-08-02 +Resort Hotel,0,0,2017,September,38,22,1,0,2,0.0,0,BB,PRT,Corporate,Direct,1,1,1,A,A,0,No Deposit,14.0,179.0,0,Group,40.74,0,0,Check-Out,Tyler Andrews,wadekaren@example.com,(423)647-3101x3835,4240313621532,2025-11-18 +City Hotel,0,0,2017,September,38,22,1,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,235.88,0,0,Check-Out,Michelle Greer,smithgeorge@example.com,(909)386-2296,4833486994577,2025-07-04 +City Hotel,1,71,2017,April,14,5,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,200.68,0,0,Canceled,Brian Clark,vhampton@example.com,(775)390-3687x8560,180077511204893,2025-05-04 +City Hotel,1,23,2017,June,24,11,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,97.76,1,2,Canceled,Nathaniel Floyd,matthew78@example.com,001-673-582-2598,4941734831932056585,2024-10-17 +City Hotel,0,152,2017,March,10,8,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,2,Check-Out,Erika Jenkins,aaronmontes@example.org,+1-263-328-6999x93944,3543470675070406,2025-11-25 +City Hotel,1,98,2017,April,17,26,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,Melanie Ramos,wmason@example.org,001-627-992-0545x02361,4853510575557375963,2025-03-17 +City Hotel,1,7,2017,September,36,8,1,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,26.0,179.0,0,Transient,37.42,0,0,Canceled,Mark Clark,shuerta@example.com,435.345.7153x9955,4233544925728113,2025-11-22 +Resort Hotel,0,1,2017,September,35,1,0,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,D,0,No Deposit,13.0,331.0,0,Transient,218.79,0,0,Check-Out,Sergio Hodge,martha49@example.org,(290)763-0722,3561006006220679,2025-11-11 +City Hotel,0,9,2017,November,45,4,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.52,0,1,Check-Out,Katherine Avery,udaniels@example.com,(492)523-1035x4551,30229511215351,2026-02-27 +City Hotel,0,272,2017,June,23,9,2,6,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Contract,80.28,0,0,Check-Out,David Hamilton,mterry@example.net,001-400-465-1181x1033,4021264163688517,2024-09-13 +Resort Hotel,0,117,2017,June,23,6,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,32.0,179.0,0,Transient,201.97,1,0,Check-Out,Richard Bass,hollysmith@example.net,(537)453-3431,213112070078833,2024-09-22 +City Hotel,1,108,2017,February,6,5,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,136.99,0,1,Canceled,Kelly Harris,garretttran@example.com,262-393-6245,4995950115292430,2025-11-06 +City Hotel,1,58,2017,April,15,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,85.0,0,Transient,44.87,0,0,Canceled,Dustin Campbell,rjohnson@example.org,7273141647,3500752490009680,2025-10-23 +Resort Hotel,0,53,2017,April,13,1,4,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,214.16,0,1,Check-Out,Randy Kennedy,vrichardson@example.com,(718)627-8573x2948,502017666178,2024-11-23 +City Hotel,0,37,2017,July,28,10,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,11.0,179.0,0,Transient,64.83,0,1,Check-Out,Ana Gibson,kristi45@example.com,238-412-0580x80640,4416331645152991,2025-09-23 +Resort Hotel,0,18,2017,September,36,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,239.0,179.0,0,Transient,45.15,1,3,Check-Out,Danny Harris,neaton@example.org,001-209-260-3108x981,213119712170050,2025-12-14 +Resort Hotel,0,163,2017,February,9,27,0,3,3,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient,107.19,0,0,Check-Out,Sara Stuart,jorgeashley@example.com,(734)758-0442x58232,3513967273880397,2025-04-02 +City Hotel,0,173,2017,June,24,17,0,5,1,0.0,0,HB,PRT,Undefined,TA/TO,0,0,0,A,A,2,No Deposit,188.0,179.0,0,Contract,60.84,0,0,Check-Out,John Kim,andrewwagner@example.org,(462)344-0758x447,3559440141500097,2025-02-12 +City Hotel,1,156,2017,March,11,15,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,97.97,0,0,Canceled,Richard Brewer,edwardreed@example.com,+1-337-803-9202x48211,676229564742,2025-07-06 +City Hotel,0,15,2017,April,18,30,2,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,95.15,0,0,Check-Out,William Arnold,andrew12@example.org,8046704963,4370951124380,2025-03-20 +Resort Hotel,0,10,2017,June,23,9,4,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,144.46,0,1,Check-Out,Brianna Adams,wlong@example.org,551-991-5046,3520119956867884,2025-06-25 +Resort Hotel,0,1,2017,September,36,8,2,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,60.93,0,3,Check-Out,David Garcia,jessica09@example.com,(753)544-7363x9180,4533909380715,2024-09-08 +City Hotel,1,103,2017,January,3,19,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,169.95,0,1,No-Show,Kelli Collins,mitchell73@example.org,949.473.8978x165,180059729912541,2025-02-05 +City Hotel,0,46,2017,September,36,6,2,1,3,0.0,0,BB,BEL,Aviation,Corporate,0,0,0,D,E,0,No Deposit,14.0,45.0,0,Transient,3.98,0,0,Check-Out,Arthur Krueger,kayla26@example.com,631.814.9364x877,30323471998534,2024-07-15 +Resort Hotel,1,244,2017,June,25,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,254.0,179.0,0,Transient-Party,72.13,0,0,Canceled,Steven King,dustinsandoval@example.com,935.561.2858x113,4835115160601869,2024-11-28 +City Hotel,1,313,2017,May,18,4,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,77.06,0,0,Canceled,Tyler Velazquez,mpatterson@example.net,218-916-2504x309,4427443102748752,2025-11-25 +City Hotel,1,248,2017,March,9,1,3,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,27.0,179.0,0,Transient,106.01,0,0,Canceled,Laura Middleton,lindarasmussen@example.org,783-536-6126x5165,2271394965071637,2024-08-11 +City Hotel,0,143,2017,March,12,22,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,378.0,179.0,0,Contract,63.12,0,1,Check-Out,Lori Madden,dnixon@example.org,(702)816-9345,341872037917341,2025-12-05 +City Hotel,0,98,2017,June,24,12,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,88.52,0,0,Check-Out,Tyler Murphy,jonathanfox@example.net,686-777-2386x625,180067756128055,2025-05-13 +Resort Hotel,0,15,2017,June,23,3,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,150.73,0,0,Check-Out,Kristen Bradley,onelson@example.com,+1-522-899-7012x8558,6572631239925594,2024-11-10 +City Hotel,1,165,2017,November,45,4,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,19,Transient,101.94,0,0,Canceled,Corey Rodriguez,carlamassey@example.net,792-276-2337,3583453764282588,2024-07-12 +City Hotel,0,0,2017,February,6,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,54.52,0,0,Check-Out,Phillip King,qmorrison@example.net,398.598.2352x68040,3585372758767826,2024-06-13 +City Hotel,1,16,2017,February,7,15,0,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.5,0,1,Canceled,Laurie Fuller,katelynsalazar@example.org,479.546.6285x98340,4198695047345632920,2025-06-12 +Resort Hotel,0,48,2017,January,2,3,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,I,0,No Deposit,247.0,179.0,0,Transient,3.01,1,0,Check-Out,Toni Cunningham,williamramsey@example.net,960.577.2639,5515672334891671,2025-06-25 +Resort Hotel,0,83,2017,December,52,23,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,105.1,0,1,Check-Out,James Weber,jfuentes@example.net,(458)623-7547x3074,2233126837461472,2026-01-02 +Resort Hotel,1,11,2017,June,23,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,0,Refundable,244.0,179.0,0,Transient,2.22,0,1,Canceled,Erika Hodge,andreahogan@example.net,(329)457-7859,4954966704938,2024-12-16 +City Hotel,0,148,2017,December,50,11,0,1,1,0.0,0,BB,AUT,Corporate,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,112.82,0,1,Check-Out,Peter Patel,michaelmartinez@example.com,(341)739-9425,4747184410589,2025-04-29 +Resort Hotel,0,5,2017,April,16,21,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,167.22,0,3,Check-Out,Jeffrey Hart DDS,angelacortez@example.net,714-304-3000,4648807968262673655,2025-02-26 +Resort Hotel,0,1,2017,June,24,12,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,D,0,No Deposit,239.0,179.0,0,Transient-Party,47.36,0,1,Check-Out,Steven Hall,bartlettnicholas@example.org,001-679-735-2012x37785,30114508593863,2025-07-25 +City Hotel,0,22,2017,May,22,28,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,112.94,0,0,Check-Out,Christine Gutierrez,johnjohnson@example.net,(686)222-0350,4826576498395180064,2025-08-04 +Resort Hotel,0,3,2017,November,47,23,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,16.0,70.0,0,Transient-Party,44.01,0,0,Check-Out,Angel Becker DVM,timothyproctor@example.org,9499222671,30326524437277,2024-04-18 +City Hotel,0,59,2017,November,48,26,0,3,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,5.01,0,0,Check-Out,Chad Rojas,dean99@example.net,001-420-591-2596x518,4498317602060559,2025-10-19 +City Hotel,1,4,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,62.64,0,0,Canceled,Brent Scott,bennettzachary@example.net,+1-579-237-9397x5107,3561523392804791,2025-04-25 +Resort Hotel,0,58,2017,November,46,15,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,C,1,No Deposit,301.0,179.0,0,Transient-Party,62.36,0,0,Check-Out,Jennifer Esparza,mjohnson@example.org,(423)794-6619x52613,6584792664118794,2025-03-07 +City Hotel,1,59,2017,August,34,21,1,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,226.58,0,2,Canceled,Stacy Orozco,gregory95@example.org,818.437.8904,4189347439913393,2025-02-03 +City Hotel,0,156,2017,November,46,12,0,4,2,0.0,0,BB,AUT,Direct,TA/TO,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,127.44,0,1,Check-Out,Thomas Carr,uford@example.org,606.813.2204x0071,2720407688546300,2025-11-14 +Resort Hotel,0,16,2017,April,17,23,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Group,251.1,0,1,Check-Out,David George,bbates@example.org,859-597-3706,3553947446895705,2025-01-01 +City Hotel,0,89,2017,February,7,13,0,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,107.5,0,1,Check-Out,Teresa Allen,villanuevashannon@example.com,(892)287-1052,2261744122861027,2025-06-12 +City Hotel,0,49,2017,June,23,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,65,Transient,90.98,0,0,Check-Out,Donald Jackson,cfigueroa@example.net,(510)447-2685x3413,3526319974310362,2025-05-27 +Resort Hotel,0,162,2017,March,14,30,2,0,2,0.0,0,HB,CHE,Direct,TA/TO,0,0,0,C,F,0,No Deposit,245.0,179.0,0,Transient,252.0,0,1,Check-Out,Monica Howe,qnixon@example.net,770.656.6277x1487,676109824174,2025-09-07 +City Hotel,1,157,2017,February,6,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,104.76,0,0,Canceled,Willie Flynn PhD,jacquelineolson@example.net,001-539-298-1466x3366,4582552802580843,2026-03-02 +Resort Hotel,1,0,2017,April,14,6,0,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,252.0,1,1,Canceled,Jonathan Perez,lucerobrandon@example.net,001-453-307-9693,6563232282586077,2024-09-02 +City Hotel,1,401,2017,May,20,18,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.01,0,0,Canceled,April Horton,bbaker@example.net,641-964-9185x98806,6011548078712652,2025-06-28 +City Hotel,0,205,2017,March,10,4,2,5,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,96.46,0,0,Check-Out,Nicole Hawkins,jeffward@example.net,7605490831,345704366964360,2024-04-14 +Resort Hotel,0,2,2017,September,35,2,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,53.52,1,0,Check-Out,Patrick Hooper,qramirez@example.com,807.793.7697,4378358484697121,2025-02-02 +City Hotel,1,0,2017,August,34,24,0,2,3,0.0,0,SC,,Direct,Direct,0,0,0,E,K,1,No Deposit,17.0,67.0,0,Transient,3.79,0,0,Canceled,Mary Lee,theresataylor@example.org,801-461-9669x99870,30423402058273,2025-09-05 +Resort Hotel,0,179,2017,April,14,5,1,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Contract,46.43,0,2,Check-Out,Cynthia Williams,fletcherjohn@example.com,001-806-638-7473,4063076563430,2024-09-10 +City Hotel,1,380,2017,February,6,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,84.0,179.0,0,Transient,136.83,0,0,Canceled,Ronald Gonzalez,yjimenez@example.com,3472580643,376411374540990,2025-06-03 +City Hotel,1,2,2017,December,51,20,2,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.46,0,0,Check-Out,Antonio Cole,ricejoshua@example.net,001-390-732-3743x370,060478625837,2025-03-14 +City Hotel,0,51,2017,May,19,13,2,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,113.44,0,1,Check-Out,Amanda Swanson,mendezmadison@example.com,+1-673-726-2640x6249,4119539988054386354,2025-11-20 +Resort Hotel,1,40,2017,January,4,21,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,221.44,0,2,Canceled,Holly Sherman,lewisbetty@example.org,(416)945-0192,6011440974158224,2024-12-05 +City Hotel,0,31,2017,July,30,24,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,43.1,0,0,Check-Out,Sandy Reynolds,xallen@example.com,001-900-843-7704x743,2555619038483733,2025-09-01 +City Hotel,0,12,2017,July,30,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.69,0,1,Check-Out,Sandra Moore,josephpowell@example.org,+1-826-289-5715x92952,30391256801215,2024-05-19 +City Hotel,1,411,2017,April,14,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.0,0,0,Canceled,Christopher Johnson,thomas26@example.net,001-330-600-8494x45224,2604960591399374,2025-02-05 +Resort Hotel,0,0,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,56.0,0,Transient,39.39,0,1,Check-Out,Ryan Fisher,austin72@example.net,995.640.5561,4389461966764569189,2025-07-06 +City Hotel,0,4,2017,May,19,10,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Group,127.35,0,0,Check-Out,Christopher Jones,megan85@example.net,001-859-621-2339x41884,30244106886375,2025-02-27 +City Hotel,0,96,2017,June,24,12,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,44,Transient,92.3,0,0,Check-Out,Jeffrey Lyons,johnsonchristy@example.net,211.301.9683,180047518270296,2024-12-03 +Resort Hotel,0,3,2017,April,16,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,115.12,0,2,Check-Out,Miguel Reeves,rhamilton@example.net,423-674-3223x3087,4031674619072751,2024-07-01 +City Hotel,1,0,2017,October,43,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,13.0,247.0,0,Transient-Party,45.7,0,0,No-Show,Kiara Santana,kristendaugherty@example.net,821.745.0617x479,4667287406260,2024-11-04 +City Hotel,0,376,2017,March,11,13,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,63,Transient-Party,124.24,0,0,Check-Out,Tonya Richards,hannah51@example.com,538.380.8828,213142239788832,2025-04-16 +Resort Hotel,0,102,2017,March,10,5,4,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,94.86,0,1,Check-Out,Jesse Poole,collinskarla@example.net,4369613698,6560902077442719,2024-06-29 +City Hotel,1,160,2017,March,11,13,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.74,0,0,Canceled,Mary Lewis,melvinlawson@example.com,537.699.5837x80931,503878189581,2025-10-20 +Resort Hotel,0,1,2017,September,36,9,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,Refundable,242.0,179.0,0,Transient,44.68,1,2,Check-Out,Christopher Copeland,jeremiah45@example.org,(320)950-9460,4309991839774247,2025-05-12 +Resort Hotel,1,162,2017,January,5,30,2,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,79.22,0,0,Canceled,Ethan Obrien,nrandall@example.net,(427)576-5702x43002,3554165917089398,2025-04-23 +City Hotel,1,172,2017,February,8,18,1,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,133.31,0,1,No-Show,Rebecca Houston,dgarcia@example.com,(214)653-3855,6568756644952713,2026-01-02 +Resort Hotel,0,2,2017,March,9,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,56.47,0,1,Check-Out,Edward Barton,kgriffith@example.net,+1-393-857-2776x347,30597305292194,2025-06-23 +City Hotel,0,175,2017,March,13,23,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.79,1,2,Check-Out,Brandon Perkins,jbryant@example.org,001-960-530-4260,30576763442814,2025-03-31 +Resort Hotel,0,1,2017,August,31,1,2,2,2,0.0,0,BB,,Groups,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,75.64,0,1,Check-Out,Beth Brown,heidiparker@example.com,(793)284-1639x542,36200215100359,2024-11-14 +City Hotel,1,302,2017,March,12,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,94.31,0,0,Canceled,Kim Vincent,avilamario@example.org,001-927-243-1063,213105208080465,2024-11-19 +City Hotel,0,24,2017,November,47,22,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.55,0,1,Check-Out,Jennifer Banks,stephaniesmith@example.com,+1-218-350-6802,4411173524362696,2024-12-19 +Resort Hotel,0,202,2017,November,45,11,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,38.76,0,0,Check-Out,Ruth Brown,taylorkimberly@example.net,(215)573-2554x818,6526621838843246,2024-04-08 +City Hotel,0,101,2017,October,43,23,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,39,Transient-Party,124.88,0,1,Check-Out,Shawn Lindsey,chasethomas@example.com,369.376.7865x185,2254125104392901,2026-03-01 +Resort Hotel,0,140,2017,March,13,25,0,3,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,82.0,179.0,0,Transient-Party,86.34,0,0,Check-Out,Anthony Garrison,sgallagher@example.com,(916)929-4053x3986,3503312600455146,2024-09-25 +City Hotel,0,4,2017,November,47,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,1,No Deposit,14.0,66.0,0,Transient-Party,45.14,0,0,Check-Out,Angela Ryan,melissaholt@example.com,888-375-6013x6401,36239577235817,2024-08-15 +City Hotel,0,19,2017,November,47,18,2,1,1,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,188.79,0,1,Check-Out,Joseph Davis,kingjohn@example.net,(225)202-1748x61093,2299004833364712,2024-07-20 +City Hotel,0,55,2017,September,36,6,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,E,1,No Deposit,12.0,179.0,0,Transient,169.64,0,2,Check-Out,Joshua Clayton,rbanks@example.org,271-575-5806x115,4196373816775057,2024-07-25 +Resort Hotel,0,14,2017,November,47,23,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,193.0,179.0,0,Transient,80.63,0,0,Check-Out,John Massey,ariaszachary@example.org,+1-785-584-6843x81100,4337467077282736,2024-12-11 +City Hotel,0,35,2017,March,10,6,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,174.51,0,1,Check-Out,Richard Hale,kathleenblackwell@example.com,(911)906-5667x598,3561624847557370,2024-07-20 +City Hotel,0,27,2017,November,46,18,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,109.8,0,1,Check-Out,Charles Ramos,monica00@example.com,+1-495-488-5309x62097,4134885141114811586,2025-12-13 +Resort Hotel,1,145,2017,May,19,7,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,330.0,179.0,0,Transient,75.02,0,0,Canceled,Mark Miller,tapiamichael@example.com,508.242.0526x048,180016197223348,2024-05-23 +City Hotel,0,317,2017,May,19,7,0,3,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,204.86,0,1,Check-Out,Julia Maldonado,michelleenglish@example.org,(818)514-9363x12588,180003859414936,2025-11-02 +City Hotel,1,93,2017,March,9,2,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,241.0,179.0,0,Transient,64.7,0,0,No-Show,Gail Johnson MD,michellescott@example.com,001-431-666-3590x97259,4800635200537,2024-09-12 +City Hotel,0,106,2017,December,50,9,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,101.31,0,1,Check-Out,Maurice Johnson,nmorgan@example.org,001-444-427-0968x968,4416489403059,2024-03-31 +Resort Hotel,0,25,2017,March,10,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,136.46,1,1,Check-Out,Amanda Morris,codypaul@example.net,(873)812-7915,30317806504025,2025-07-28 +City Hotel,1,167,2017,November,45,8,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,39,Transient,109.74,0,0,Canceled,Rhonda Willis,joshua13@example.net,(893)349-3190,343671176553984,2026-01-05 +City Hotel,0,0,2017,June,25,21,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,45.76,0,0,Check-Out,Connor Benton,diana76@example.net,783.463.6504,4084300978211840,2025-10-30 +City Hotel,0,13,2017,June,24,16,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,86.11,0,1,Check-Out,Richard Ryan,jasonwilliams@example.net,(918)822-8637x84354,3596591198969919,2024-06-11 +City Hotel,1,169,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,106.36,0,0,Canceled,Richard Goodman,stewartbrandy@example.net,001-626-239-4691x790,4345126357029775,2025-10-11 +City Hotel,1,259,2017,March,12,20,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,80.56,0,0,Canceled,Michelle Mcneil,olsonmichael@example.net,972-570-7211x6228,6533939372837908,2025-12-01 +City Hotel,0,46,2017,October,42,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.98,1,0,Check-Out,Michael Norton,tharper@example.org,837.940.1937,6011918665212442,2024-11-08 +City Hotel,0,1,2017,May,21,22,2,2,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,169.0,179.0,0,Transient,162.41,0,1,Check-Out,Donna Carter,francolynn@example.org,4329265611,3520193143038139,2026-02-21 +City Hotel,1,308,2017,January,4,26,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,87.28,0,0,Canceled,Joshua Hernandez,pberger@example.org,906-715-9471x8587,375103335819735,2024-07-31 +City Hotel,0,42,2017,July,29,18,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,64.0,0,Transient-Party,97.61,0,0,Check-Out,Kimberly Mitchell,aprilwashington@example.org,646.597.7411,371663492893033,2024-11-04 +City Hotel,0,2,2017,May,18,5,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,3.49,1,0,Check-Out,Patricia Hernandez,brownmaria@example.org,448.515.3375x504,345173806776414,2024-10-29 +City Hotel,1,0,2017,April,14,4,0,1,3,0.0,0,BB,,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.45,0,0,No-Show,Donna Howell,mlane@example.org,001-279-269-9598x949,3522453798819391,2024-04-13 +City Hotel,0,35,2017,March,10,5,2,10,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,122.26,0,0,Check-Out,James Williams,chadedwards@example.net,+1-330-212-1750x252,4492272697470,2026-03-13 +City Hotel,1,18,2017,August,35,26,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,89.25,0,1,No-Show,Alexander Greene,zsmall@example.net,(724)720-1497,3543900900232389,2026-03-23 +City Hotel,0,46,2017,December,48,1,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,147.59,0,2,Check-Out,Dean Sanchez,ktaylor@example.org,536.950.3889x848,4346961182401889049,2024-07-09 +City Hotel,1,91,2017,February,8,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.56,0,1,Canceled,Glenn Ward,normanjacob@example.com,9385474134,4595524772110248198,2026-02-18 +City Hotel,1,18,2017,October,41,13,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,23.0,179.0,0,Transient,84.04,0,0,Canceled,Kendra Sullivan,wardcharles@example.com,001-550-998-6130x747,36575824307259,2025-03-21 +City Hotel,1,404,2017,October,44,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,101.24,0,1,Canceled,Cynthia Hernandez,floresmichelle@example.net,6248053315,180070534486951,2025-11-06 +City Hotel,0,13,2017,November,45,8,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,83.94,0,1,Check-Out,Darren Morris,julieduncan@example.org,+1-453-564-1237x635,3554946719346619,2024-04-12 +Resort Hotel,0,191,2017,September,36,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,239.0,179.0,0,Transient,108.22,1,1,Check-Out,Holly Underwood,sbrown@example.net,(255)969-5894x2462,639094362626,2025-11-22 +Resort Hotel,0,0,2017,November,47,22,1,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,57.52,1,1,Check-Out,Jaime Williams,julie89@example.com,527.658.2514,4772621198595887,2024-06-28 +Resort Hotel,0,51,2017,September,38,20,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,344.0,179.0,0,Transient,47.93,0,0,Check-Out,Lori Brown,joseph81@example.net,001-216-733-5018x83605,3589580020542852,2025-04-17 +Resort Hotel,0,13,2017,April,17,25,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,108.39,0,0,Check-Out,Jason Chase,joseph09@example.org,+1-935-773-6968x7274,30348982051994,2024-08-28 +Resort Hotel,1,260,2017,August,32,8,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,78.3,0,0,Canceled,Lisa Buchanan,tgomez@example.com,+1-948-676-1129,4944568507060,2025-09-27 +City Hotel,0,93,2017,December,50,12,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,87.55,0,2,Check-Out,Marcus Fields,deanjacob@example.com,625.458.8440,4864786624077,2024-11-23 +City Hotel,1,1,2017,September,37,10,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,1,No Deposit,13.0,199.0,0,Transient,65.72,0,0,Check-Out,Tammy Lopez,mcdanielnathan@example.net,(403)944-8387x1760,3502058136628463,2025-01-22 +Resort Hotel,0,49,2017,July,30,27,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,84.01,0,0,Check-Out,Derek Williams,etorres@example.org,+1-393-351-6413x171,3502765542315937,2026-01-12 +City Hotel,0,19,2017,April,16,15,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,234.0,179.0,0,Transient,91.23,0,1,Check-Out,James Davenport,raymond23@example.org,455.314.6329x14636,4826619314594376,2024-10-31 +City Hotel,0,17,2017,August,33,14,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,1.94,0,2,Check-Out,Justin Moreno,bassphilip@example.org,905.757.8262,503841993663,2025-10-23 +City Hotel,1,16,2017,August,35,24,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,A,2,No Deposit,12.0,179.0,41,Transient,86.89,0,1,No-Show,Mario Green,joseph61@example.com,+1-387-696-1931x562,2247551487759145,2025-03-23 +Resort Hotel,0,15,2017,August,31,5,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,70.0,0,Transient-Party,43.63,0,0,Check-Out,Cassandra Fry,trevinodillon@example.net,001-875-274-9925,30025108547176,2025-06-08 +City Hotel,1,217,2017,April,16,19,2,7,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.6,0,0,Canceled,Dr. Jose Gray DDS,sallywilliams@example.com,+1-537-751-4208x5967,6546693588273367,2025-06-30 +City Hotel,0,150,2017,March,11,9,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,B,2,No Deposit,14.0,179.0,0,Transient,106.8,0,3,Check-Out,Amy Adams,michele60@example.com,(266)543-1469,4528120404971,2024-10-11 +Resort Hotel,0,53,2017,September,37,14,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,44.64,0,1,Check-Out,Austin Horton,rollinschristina@example.net,(258)944-8435x88598,2287099199244957,2025-06-22 +City Hotel,0,28,2017,February,6,8,0,1,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,137.14,0,2,Check-Out,Elizabeth Jackson,dawn76@example.com,323-560-9858,4352734412751986424,2025-04-24 +City Hotel,0,0,2017,July,27,8,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,216.0,0,Transient,42.85,0,0,Check-Out,Maureen Cross,kmedina@example.org,001-233-349-3229x0608,343890605358738,2024-06-04 +Resort Hotel,1,64,2017,September,38,20,2,3,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,242.61,0,0,Canceled,Christopher Sanchez,pberry@example.net,+1-564-895-4638x221,213120668457442,2025-09-11 +City Hotel,0,23,2017,May,20,15,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,113.1,0,0,Check-Out,Mitchell Richardson,mcintoshkyle@example.com,619-298-0041,3510474548562291,2024-08-29 +City Hotel,1,92,2017,January,4,26,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,132.67,0,0,Canceled,Kelsey Lewis,stevenwalter@example.net,378.560.3998x3376,4465209604056959,2025-07-09 +City Hotel,0,144,2017,December,51,22,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,131.22,0,1,Check-Out,Richard Miller,bushmark@example.org,(979)715-0832x14310,376884441378919,2026-02-07 +City Hotel,0,209,2017,January,4,22,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,75.0,179.0,0,Transient,177.61,0,0,Check-Out,Samantha Carter,bensonkatie@example.net,795.777.4875,372445651536424,2025-07-11 +Resort Hotel,0,1,2017,August,31,3,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,48.67,1,1,Check-Out,Mrs. Heather Christensen,bmorton@example.net,425.298.2377x21490,36597010892845,2024-08-09 +City Hotel,1,200,2017,May,18,4,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,98.92,0,0,Canceled,Sharon Williams,johnsonstanley@example.com,001-738-728-8961x24216,6510108435914347,2025-08-31 +Resort Hotel,0,4,2017,October,40,3,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,G,0,No Deposit,245.0,179.0,0,Transient,58.64,1,2,Check-Out,Daryl Lowe,wjones@example.com,816-928-0095,3546441287089529,2024-07-14 +City Hotel,0,48,2017,August,32,6,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,110.04,0,2,Check-Out,Michael Carter,johnpearson@example.org,704-324-4313x4795,213149923251688,2025-07-29 +Resort Hotel,1,164,2017,March,13,24,1,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,242.0,179.0,0,Transient,180.8,0,0,Canceled,Susan Johnson,garcialisa@example.net,212.910.0082,344644131904492,2026-02-02 +City Hotel,0,99,2017,November,48,26,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,74.77,0,0,Check-Out,James Jenkins,andersondeborah@example.net,940-677-6217x651,30495612130720,2025-06-03 +City Hotel,0,89,2017,November,48,26,0,3,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,50.87,0,1,Check-Out,Dylan Johnston,jimmycole@example.net,489.447.5197x735,6011729825300674,2025-07-09 +City Hotel,1,142,2017,March,11,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,77.69,0,0,Canceled,Kathy Hull,pattonstacy@example.org,328-891-3513x30055,3512107586871996,2026-03-03 +City Hotel,1,97,2017,February,5,1,2,2,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,1,A,A,2,No Deposit,14.0,210.0,0,Transient,106.77,0,0,Canceled,Monica Richardson,salazartonya@example.org,512-873-3346x880,4678206523208185,2025-05-17 +City Hotel,1,159,2017,April,16,15,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,115.35,0,0,Canceled,Kathryn White,barajasmitchell@example.org,+1-292-992-9065x571,4043267881205246926,2025-03-25 +City Hotel,1,26,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,12.0,209.0,0,Transient,94.46,0,0,Canceled,Mrs. Valerie Owens,travismorse@example.org,001-869-615-4931x7489,6576411646091561,2025-08-08 +City Hotel,1,326,2017,February,9,29,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,136.56,0,0,Canceled,Amy Watts,kylerobinson@example.org,4527640055,3516335481341726,2025-08-25 +City Hotel,0,3,2017,March,9,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,143.29,0,2,Check-Out,Michael Brown,zacharybaker@example.org,4317096517,3565089853444481,2024-05-22 +City Hotel,1,90,2017,December,2,30,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.89,0,2,Canceled,Cynthia Hendricks,robert68@example.com,+1-272-583-6949x76524,36385420553391,2024-05-28 +City Hotel,0,11,2017,November,48,26,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.22,0,1,Check-Out,Phillip Kelly,chodges@example.net,273-775-8368x372,4123494552307661,2025-07-30 +City Hotel,0,3,2017,May,21,20,0,2,1,0.0,0,SC,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,82.02,0,0,Check-Out,Deanna Edwards,samantha00@example.org,(351)218-2809,4793178229270,2024-09-08 +Resort Hotel,0,23,2017,January,5,29,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,124.98,0,3,Check-Out,Jennifer Walker,rebecca95@example.net,972-941-8779x46411,3582756561911782,2025-12-25 +City Hotel,0,29,2017,February,7,16,2,2,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,73.89,0,1,Check-Out,Brian Davis,amymurphy@example.com,534-648-3518,213187131853051,2024-05-23 +Resort Hotel,0,144,2017,January,2,7,4,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,249.0,179.0,0,Transient,252.0,1,2,Check-Out,Kelsey Griffith,durhammelissa@example.com,320.890.0282x2405,180057524290097,2025-11-13 +City Hotel,1,17,2017,March,11,11,1,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.44,0,1,Canceled,Kimberly Obrien,gabriellearcher@example.net,697-264-2037x225,4451569615870961,2026-01-16 +City Hotel,0,10,2017,August,31,1,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,65.0,0,Transient,55.56,0,1,Check-Out,Kevin Mccoy,shawn18@example.net,995.357.1756x8787,3526726276676672,2025-01-28 +City Hotel,0,72,2017,July,28,9,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.66,0,2,Check-Out,Daniel Sullivan,alishawn@example.net,494.311.5824,3566400545703490,2025-09-05 +City Hotel,0,93,2017,August,35,27,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,116.67,0,1,Check-Out,Darius Khan,christine14@example.net,(329)575-0599,30110034639683,2025-09-30 +City Hotel,1,210,2017,April,17,21,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Contract,201.48,0,1,No-Show,Miranda Huber,baileykatherine@example.net,653-597-9294,342891875714627,2025-03-05 +City Hotel,1,2,2017,February,6,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,106.65,0,2,Check-Out,Lisa Wagner,friedmanjoseph@example.com,337.674.7256,4791248172668634,2024-04-26 +City Hotel,1,395,2017,May,19,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,182.69,0,0,Canceled,Erin Price,onealdiane@example.com,+1-716-637-1134,373398517665714,2024-05-13 +Resort Hotel,0,14,2017,September,36,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,220.74,0,1,Check-Out,Jonathan Russell,daniel10@example.org,780-973-0104x876,2321609822979965,2025-10-12 +City Hotel,1,109,2017,December,2,31,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.57,0,0,Canceled,Sharon Snow,asellers@example.org,7533563252,4208164762192,2024-08-02 +City Hotel,0,146,2017,April,16,17,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,227.0,75,Transient,106.5,0,0,Check-Out,Cody Hoover,imyers@example.net,587-916-5018,180067280167777,2025-09-30 +City Hotel,1,57,2017,March,11,14,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.55,0,3,Canceled,Alyssa Rodriguez PhD,kelly55@example.org,340-307-4331x30369,502056666550,2026-02-16 +City Hotel,0,10,2017,June,26,24,0,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.56,0,3,Check-Out,Carl Harper,zrobinson@example.com,(995)781-2978x958,4497914498708,2025-10-29 +City Hotel,1,111,2017,December,51,22,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,131.0,179.0,17,Transient,110.01,0,0,Canceled,Dana Bennett,mhamilton@example.net,001-770-245-2607,4436764198128875,2024-11-06 +City Hotel,0,0,2017,April,14,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,2.46,0,0,Check-Out,Michael Baker,christine02@example.net,001-258-201-5283x3116,213193602953743,2024-06-07 +Resort Hotel,0,47,2017,June,24,12,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,I,0,No Deposit,8.0,179.0,0,Transient,4.34,1,1,Check-Out,William Wilson,joshualivingston@example.org,001-216-928-5000,4085980718951125,2024-07-27 +City Hotel,0,13,2017,December,52,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,15.0,45.0,0,Transient,53.79,0,0,Check-Out,Jennifer Smith,patriciahoffman@example.com,865-746-8327x5009,30251963733541,2024-04-28 +City Hotel,0,22,2017,June,23,2,2,1,1,0.0,0,BB,CN,Direct,Direct,0,0,0,C,C,1,No Deposit,14.0,179.0,0,Group,49.1,0,0,Check-Out,Cindy Richardson,jackpatterson@example.com,650.596.9168x5642,060498812639,2024-09-05 +City Hotel,1,38,2017,April,18,30,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Transient,87.96,0,0,Canceled,Brandi Brown,christina18@example.net,(375)969-5096x0162,3566372933211990,2024-10-09 +City Hotel,1,190,2017,March,14,30,1,3,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,179.0,0,Transient-Party,101.79,0,0,Canceled,Benjamin Martinez,ydavis@example.org,262.437.3591,4079968537191,2026-01-20 +City Hotel,0,44,2017,June,23,5,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.59,0,2,Check-Out,Patricia Mitchell,richardjoseph@example.net,(260)283-8662x8467,349642604656412,2025-04-04 +City Hotel,0,196,2017,April,16,15,1,1,1,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,105.16,0,0,Check-Out,Courtney Sanders,hopkinskaren@example.org,+1-929-499-6762x26257,4428819868252729033,2025-04-07 +City Hotel,0,148,2017,June,22,2,0,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,98.28,0,2,Check-Out,Ryan Willis,barrettchristopher@example.org,(751)316-5975x00344,2262939106139866,2025-01-29 +City Hotel,0,15,2017,June,23,6,1,0,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,107.0,0,1,Check-Out,Jennifer Jackson,byrdjames@example.com,+1-715-631-8759x602,3549767377264391,2024-12-21 +City Hotel,1,268,2017,March,11,15,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,83.08,0,0,Canceled,Teresa Obrien,ochoasophia@example.org,(856)360-2335x07557,3582384076972726,2024-07-11 +Resort Hotel,0,53,2017,April,18,30,2,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,1,No Deposit,13.0,179.0,0,Transient-Party,84.56,0,0,Check-Out,Angel Hayes,toddroberts@example.org,(206)225-5658x828,30580348137600,2024-06-01 +City Hotel,1,104,2017,August,32,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.17,0,1,Canceled,Jason Davis,kristopher93@example.com,858-488-2991x762,585187411327,2025-11-23 +Resort Hotel,0,21,2017,January,2,8,4,10,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,89.3,0,1,Check-Out,Melissa Mathews,kaitlinperez@example.net,601-995-7702x440,213131923655274,2024-05-24 +Resort Hotel,0,136,2017,December,52,27,1,5,2,0.0,0,Undefined,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,61.84,0,0,Check-Out,Joseph Russell,olsonomar@example.net,001-829-496-7237x410,3598140015673599,2025-03-10 +City Hotel,0,179,2017,March,11,14,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.17,0,1,Check-Out,Sandra Mccoy,kgrant@example.com,869.904.6009x354,38423871534129,2024-07-24 +Resort Hotel,0,11,2017,April,14,4,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Contract,63.85,0,2,Check-Out,Gail Vasquez,elizabeth84@example.net,751.239.9105x0308,4505399668802661,2025-05-02 +Resort Hotel,0,14,2017,May,20,13,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,91.0,179.0,0,Transient-Party,96.01,0,0,Check-Out,Jeffrey Gibbs,davidwalters@example.com,2963917802,213110816374201,2025-08-10 +Resort Hotel,0,159,2017,April,17,24,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,G,0,No Deposit,250.0,179.0,0,Transient,46.47,0,1,Check-Out,Michael Wilson,htorres@example.com,988.847.5079x3316,213152173743768,2025-07-29 +City Hotel,0,13,2017,January,4,21,0,5,3,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,1.94,0,1,Check-Out,Richard Smith,sergio07@example.org,615-770-9306x668,4470554855818109,2024-05-24 +City Hotel,0,206,2017,May,20,16,0,2,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,86.0,179.0,0,Transient-Party,113.78,0,0,Check-Out,Corey Mooney,ohernandez@example.com,001-877-409-2916x295,4460165374507867,2025-03-18 +Resort Hotel,0,143,2017,March,11,11,2,5,3,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,203.3,0,3,Check-Out,Christina Myers,reesemichael@example.com,+1-673-744-7293x26608,30449824294857,2025-08-23 +City Hotel,0,2,2017,February,8,23,2,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.29,0,0,Check-Out,Anita Pitts,kwashington@example.org,254-832-0546x70387,4378887582571,2024-12-10 +Resort Hotel,0,0,2017,July,27,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,181.0,331.0,0,Transient-Party,51.25,0,1,Check-Out,Christian Bryant,pmartinez@example.net,+1-682-298-5764,3551066115838789,2025-09-07 +City Hotel,0,39,2017,March,11,14,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,45.0,0,Transient-Party,41.9,0,1,Check-Out,Patrick Garcia,jose51@example.org,515.863.9660,4126706492757,2025-09-02 +Resort Hotel,1,35,2017,April,15,12,1,3,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,216.3,0,3,Canceled,Daniel Merritt,harperjorge@example.com,417.542.5071,38940443208247,2025-09-20 +Resort Hotel,1,45,2017,August,33,15,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,88.61,0,0,Canceled,Robert Hicks,richardsstacy@example.org,+1-666-473-2714x59011,4332849091800863,2026-02-07 +Resort Hotel,0,46,2017,June,24,13,0,3,2,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,32.0,179.0,0,Transient-Party,47.54,0,0,Check-Out,Kenneth Washington,dan28@example.com,576-493-0979x007,3525445037835532,2025-08-04 +City Hotel,1,169,2017,April,16,17,2,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.68,0,1,Canceled,Jessica Hoffman,larryking@example.org,001-389-979-2270x0874,4901479442590376,2024-06-17 +City Hotel,0,11,2017,October,40,5,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.88,0,1,Check-Out,Lisa Riggs,fkirk@example.net,(261)794-0699,213193375846173,2026-03-01 +City Hotel,1,392,2017,March,10,5,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.33,0,0,Canceled,Donna Mccarty,pwilliams@example.net,001-825-897-9454x374,2240646572209845,2025-06-07 +City Hotel,0,4,2017,April,15,12,1,0,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,134.64,0,0,Check-Out,Eric Spencer,hking@example.com,986.731.2048x976,4344950022768602759,2025-06-19 +City Hotel,1,371,2017,November,47,24,1,0,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.75,0,0,Canceled,Victoria Deleon,mark37@example.net,373-839-0378x441,36032348024440,2024-12-17 +Resort Hotel,0,262,2017,June,23,5,2,5,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient-Party,56.24,1,0,Check-Out,David Roy,megan01@example.com,313-606-7512,6011110224551078,2024-07-14 +City Hotel,0,2,2017,April,15,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,115.13,0,1,Check-Out,Nancy Rice,raustin@example.com,284.397.0246,4759054096281,2025-05-29 +City Hotel,0,2,2017,October,43,22,0,2,1,0.0,0,BB,AUT,Direct,Corporate,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,117.42,0,1,Check-Out,Daniel Brewer,graysierra@example.org,953.745.2949,4413423887513,2024-06-09 +Resort Hotel,0,29,2017,July,27,1,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,128.53,1,0,Check-Out,Becky Garcia,nicole33@example.com,001-430-403-6380,4853009135540947,2025-12-17 +City Hotel,0,51,2017,September,37,10,1,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,1.04,0,0,Check-Out,Michael Smith,hhuang@example.com,+1-677-661-0026x04976,2235085797210261,2026-03-22 +City Hotel,0,20,2017,April,15,6,0,1,2,1.0,0,BB,ISR,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,Katie Kaiser,cummingschristopher@example.com,(656)553-7108x7424,4929579741220453225,2025-01-20 +City Hotel,0,29,2017,June,26,26,2,5,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Check-Out,Amy Roberts,sotowilliam@example.org,358-257-1694x52882,4807423436041,2025-05-13 +Resort Hotel,1,164,2017,August,34,23,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,61,Transient-Party,91.12,0,0,Canceled,Taylor Espinoza,tuckeraudrey@example.com,+1-353-393-1661,6011470584175771,2025-07-12 +Resort Hotel,0,151,2017,March,10,4,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient-Party,82.5,0,0,Check-Out,David Aguirre,sandovalkerry@example.com,703-282-2586,213109209469842,2024-12-03 +City Hotel,0,17,2017,April,17,25,2,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,238.53,1,1,Check-Out,Kyle Armstrong,collinsmichael@example.com,(980)713-9151x1101,30250855454463,2026-02-07 +City Hotel,1,88,2017,January,2,8,1,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,105.57,0,0,Canceled,Jennifer Weber,mark38@example.com,746.726.3970x24587,6011970128010749,2026-02-20 +Resort Hotel,0,41,2017,June,23,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,62.43,0,1,Check-Out,Sheila Douglas,patrickjohnson@example.com,469.927.1854x4001,4970416015133901781,2026-01-25 +City Hotel,1,293,2017,July,28,14,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,79.41,0,0,Canceled,Maria Malone,brookesimmons@example.org,916-948-4141,4061335109176493917,2024-08-18 +City Hotel,1,190,2017,February,7,12,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.89,0,2,Canceled,Megan Juarez,nicholsjohn@example.net,273-785-2926,4304465903859981,2025-01-12 +City Hotel,0,17,2017,January,2,3,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,202.0,0,Transient-Party,80.71,0,0,Check-Out,Ann Boyd,reyesamber@example.net,(710)297-4291x92364,370277576098293,2024-06-08 +City Hotel,0,108,2017,January,4,22,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,29.0,179.0,0,Transient,82.81,0,0,Check-Out,Richard Riley,miareeves@example.org,(912)258-8106x6991,3528605540619833,2024-04-29 +City Hotel,1,44,2017,May,19,13,0,2,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.9,0,0,Canceled,Laura Thomas,morrowcassandra@example.com,4626821977,379040877633304,2026-01-17 +City Hotel,1,386,2017,June,25,19,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,75,Transient-Party,69.51,0,1,Canceled,Elizabeth Barton,frenchjennifer@example.com,001-750-489-3698x9883,6011176636230460,2024-11-08 +City Hotel,0,17,2017,May,18,3,2,4,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,178.49,0,1,Check-Out,Laura Sparks,john03@example.org,001-927-531-3359,4577872066536167,2024-06-21 +City Hotel,0,39,2017,October,43,23,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,150.0,221.0,0,Transient-Party,73.24,0,0,Check-Out,Tiffany Zamora,grayaaron@example.com,001-842-485-8101x91477,2288098335015874,2025-04-29 +Resort Hotel,0,383,2017,May,19,11,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,52.31,0,0,Check-Out,Ryan Roman,craigchristina@example.net,001-889-638-0430x8328,4057072248431887987,2025-05-03 +City Hotel,0,0,2017,February,8,19,0,1,1,0.0,0,BB,RUS,Corporate,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,99.84,0,0,Check-Out,Richard Parsons,robersontimothy@example.org,(314)983-6395,30528482685157,2024-10-30 +City Hotel,1,121,2017,March,14,31,2,5,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,104.94,0,2,Canceled,Justin Yu,johnsontrevor@example.com,463-802-2243x94717,3503794434574053,2024-09-13 +Resort Hotel,0,155,2017,November,46,16,2,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,85.41,1,1,Check-Out,Marcus Johnson,jennifertaylor@example.com,(595)814-1410,30588962169270,2024-10-02 +City Hotel,0,64,2017,July,29,17,2,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,62,Transient,100.63,0,0,Check-Out,Brittney Bowman,gabrielcasey@example.org,(289)288-1167,6011799479476500,2024-07-07 +City Hotel,1,142,2017,November,45,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,75,Transient,123.05,0,1,Canceled,Jason Snow,uaustin@example.org,001-779-268-4153x6944,347551481627499,2024-08-27 +City Hotel,1,165,2017,April,18,27,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,240.0,179.0,0,Transient,185.37,0,0,Canceled,Carrie Lewis,mariah26@example.org,301.645.6109x255,4038501034239256,2025-06-07 +Resort Hotel,0,1,2017,September,35,1,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,15.0,179.0,0,Transient,49.1,1,1,Check-Out,Wendy Perez,brenda47@example.org,(519)683-8900x60855,213190618510848,2025-10-11 +Resort Hotel,0,102,2017,August,35,30,2,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,42.0,0,0,Check-Out,Erika Bates,jason22@example.com,9835597750,587757553868,2024-10-01 +City Hotel,0,194,2017,January,2,7,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.35,1,2,Check-Out,Marie Roach,jorge30@example.com,(868)748-1345x972,30408696707529,2024-09-24 +Resort Hotel,1,168,2017,May,19,6,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,111.71,0,2,Canceled,Mary Hoffman,susanelliott@example.org,001-323-943-9925x4493,4103200924485993957,2024-05-28 +City Hotel,0,17,2017,December,52,27,0,2,1,0.0,0,BB,POL,Aviation,TA/TO,0,0,0,A,B,1,No Deposit,12.0,45.0,0,Transient-Party,101.88,0,1,Check-Out,Robert Mitchell,megan13@example.net,808-431-2623x09760,346689475294321,2025-03-05 +Resort Hotel,0,441,2017,April,15,11,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,148.28,1,1,Check-Out,Gregory Russell,lisa96@example.com,427-391-9251x558,3515323183802667,2025-11-30 +City Hotel,0,292,2017,February,8,22,0,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient-Party,103.38,0,1,Check-Out,Vicki Barrera,robertschultz@example.org,455-372-0628x07386,213174813239155,2025-11-30 +City Hotel,0,426,2017,May,21,27,0,1,2,1.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.77,0,0,Check-Out,Jessica Johnson,bishopcindy@example.com,324-672-8512x99401,3599294831398813,2024-08-30 +City Hotel,0,163,2017,March,13,24,2,3,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,210.76,1,0,Check-Out,Rachel Sullivan,stuartkhan@example.net,(871)944-3425x60152,30280504000193,2025-05-12 +City Hotel,1,1,2017,February,6,8,2,5,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,Non Refund,14.0,193.0,0,Transient,110.03,0,0,Canceled,Kimberly Thomas,christopher31@example.com,+1-219-233-2731,6503710471855844,2024-06-12 +City Hotel,0,81,2017,August,34,22,2,1,2,2.0,0,BB,BRA,Direct,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,199.93,0,0,Check-Out,Anna Pierce,christopher19@example.net,887-594-0184,180025813581948,2025-08-22 +Resort Hotel,0,242,2017,June,25,22,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,55.79,0,0,Check-Out,Haley Mccoy,haynesryan@example.com,001-453-864-8887x63205,38581227764771,2025-06-26 +Resort Hotel,1,88,2017,August,31,2,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,235.0,179.0,0,Transient,228.13,0,1,Canceled,Claire Hoffman,jennifer25@example.com,659.926.7913x09956,4777796781651365,2025-10-13 +City Hotel,0,12,2017,December,52,23,2,3,2,0.0,0,Undefined,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,79.44,0,2,Check-Out,Annette Rivas,ronniewilliams@example.org,667-311-7515x28220,36129887198559,2025-02-15 +Resort Hotel,0,37,2017,May,19,9,4,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,213.57,0,1,Check-Out,Pamela Aguirre,garymeyer@example.org,881-575-6091x89476,6588596210815670,2026-02-25 +Resort Hotel,0,110,2017,November,46,12,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,13.0,179.0,75,Transient-Party,67.15,1,1,Check-Out,George Bradshaw,melissa99@example.org,428-450-6243,503885617111,2025-02-18 +Resort Hotel,1,291,2017,March,13,27,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,8.0,179.0,0,Transient,116.25,0,1,No-Show,Ryan Waters,sandra45@example.net,001-768-625-3266,676386234923,2025-01-24 +City Hotel,0,96,2017,November,45,7,1,0,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.97,0,1,Check-Out,Chase Matthews,ericbrown@example.com,001-704-584-4483,4695575910610,2024-07-20 +City Hotel,0,27,2017,January,2,7,1,3,2,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,90.31,0,2,Check-Out,Sarah Nelson,michelle52@example.net,954-807-1320x9411,213137632445048,2025-10-17 +City Hotel,0,20,2017,November,45,8,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient-Party,45.85,0,0,Check-Out,Sarah Wall,cindy75@example.com,(232)909-0878,5555078013413475,2025-04-15 +City Hotel,0,2,2017,April,17,23,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,85.86,0,0,Check-Out,Paul Smith,leroy28@example.net,001-258-281-5799x76052,3562129823281184,2024-08-07 +City Hotel,1,357,2017,September,37,11,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,82.56,0,0,Canceled,Kayla Burke,wanda38@example.org,761-377-6685x8425,3535630561589419,2025-05-29 +Resort Hotel,0,19,2017,August,32,10,0,3,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,1.34,0,0,Check-Out,Jean Murillo,bhenry@example.com,+1-993-513-1841,4273602453623571694,2024-08-20 +Resort Hotel,0,14,2017,June,23,9,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,323.0,179.0,0,Transient-Party,53.77,0,0,Check-Out,William Hughes,fbrown@example.net,270.466.1154,501805793459,2025-02-17 +Resort Hotel,1,338,2017,June,23,8,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,No Deposit,1.0,179.0,0,Transient-Party,91.54,0,0,Canceled,Brad Lee,millerdavid@example.org,618.938.1485,4396901651751102,2024-04-28 +City Hotel,1,322,2017,February,7,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Group,127.43,0,1,Canceled,Samantha Morrow,jeffreywolf@example.net,9919284878,503880804177,2025-08-04 +City Hotel,0,33,2017,June,24,12,4,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,64.98,0,0,Check-Out,Tony Brooks,nkelly@example.net,781-628-1137x43771,3518919513644229,2025-03-06 +City Hotel,0,45,2017,December,49,5,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.95,0,1,Check-Out,Matthew Miller,gregory44@example.net,410-359-2677,3511130115711948,2024-04-30 +City Hotel,0,149,2017,December,52,25,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,64.02,0,0,Check-Out,Angel Rojas,makaylarogers@example.net,+1-426-536-2352x76741,4984235276374679,2024-07-21 +City Hotel,0,21,2017,November,46,14,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,113.86,0,1,Check-Out,Jason Thompson,karen74@example.net,001-278-232-9876,4030887159485354,2025-06-03 +Resort Hotel,0,17,2017,August,32,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,48.96,0,1,Check-Out,Christina Aguilar,christineblackwell@example.org,+1-927-255-9467x267,347584669886629,2025-02-27 +City Hotel,0,34,2017,January,4,25,1,1,1,0.0,0,BB,CHN,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,91.21,0,0,Check-Out,Jason Thomas,michaelwatson@example.com,001-785-670-7478x0772,3531814557333230,2025-01-29 +City Hotel,0,44,2017,January,2,4,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,E,0,No Deposit,16.0,75.0,0,Transient,2.75,0,0,Check-Out,Connie Ramirez,barryvincent@example.com,(324)918-9065x841,4505777231070355,2024-11-08 +City Hotel,0,31,2017,August,31,5,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,123.55,0,2,Check-Out,Jon Ramos,sarahmorgan@example.org,934-323-9445x3242,6011343629425115,2025-04-20 +City Hotel,1,50,2017,February,7,12,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.51,0,1,Canceled,Christopher Klein,bryan34@example.com,+1-360-252-8825x191,4039666288463,2024-06-08 +City Hotel,1,10,2017,September,37,13,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.07,0,0,Canceled,Charles Powell,bdougherty@example.com,(317)903-6534x02742,4781582991783,2024-10-18 +Resort Hotel,1,139,2017,July,30,27,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,378.0,179.0,0,Transient,106.76,0,0,Canceled,Megan Carlson,teresascott@example.org,+1-255-225-2218x282,6504441286473750,2024-11-02 +City Hotel,0,242,2017,May,22,29,2,4,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,62,Transient-Party,93.04,0,0,Check-Out,Justin Davis,thomas56@example.org,368.528.8795,573540743040,2025-05-21 +City Hotel,1,169,2017,January,4,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,122.4,0,0,Canceled,Molly Mckenzie,gardnerelizabeth@example.org,+1-943-465-0376x9176,4198931258998,2026-01-04 +City Hotel,0,2,2017,August,35,31,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,72.37,0,0,Check-Out,Tammy Hendrix,owenlori@example.org,385.661.3250,675951205177,2025-07-02 +Resort Hotel,0,20,2017,June,25,20,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,E,E,1,No Deposit,378.0,74.0,0,Transient,45.81,0,0,Check-Out,Tara Jones,pamelabaldwin@example.org,908-398-1621,345332865828975,2025-06-24 +City Hotel,1,39,2017,July,29,19,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,208.0,0,Transient-Party,85.08,0,0,Canceled,Alison Zuniga,susan12@example.org,593.583.8298x27433,6512030600177666,2024-06-25 +City Hotel,0,153,2017,December,49,4,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,127.47,0,2,Check-Out,Deborah Waller,ocarlson@example.org,001-807-500-5204x77721,6563718307632573,2026-01-22 +Resort Hotel,0,0,2017,November,47,20,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,55.87,0,2,Check-Out,Jesse Davis,erickelly@example.com,001-310-628-5738x643,341246850098341,2024-09-30 +City Hotel,0,45,2017,July,28,14,2,5,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,107.9,0,1,Check-Out,Timothy Howard,greendavid@example.org,001-408-536-3178,4086357038020,2024-03-28 +Resort Hotel,0,99,2017,December,52,24,1,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Contract,78.89,0,1,Check-Out,Christina Moon,ofuentes@example.org,932-388-6392,4157224043962,2024-10-07 +Resort Hotel,1,15,2017,April,17,23,1,2,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,209.64,0,0,Canceled,John Ho,vmanning@example.org,725-567-9257x87491,30179932534767,2025-03-11 +City Hotel,0,204,2017,June,25,19,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,106.69,0,0,Check-Out,Daniel Ferrell,phillipsluis@example.com,001-805-620-6010,213148541527412,2024-07-19 +City Hotel,0,61,2017,June,24,13,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient-Party,119.63,0,2,Check-Out,Megan Miller,rogersbenjamin@example.com,+1-993-254-6936x3619,3570253433210472,2024-07-28 +City Hotel,0,17,2017,June,24,12,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.14,0,0,Check-Out,James Robinson,davenportphilip@example.net,837.731.6084x03459,4959860687802934,2025-11-05 +City Hotel,0,105,2017,January,4,21,1,3,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,126.75,0,1,Check-Out,Roger Petty,gsnyder@example.org,001-764-944-9958x340,3557351502622234,2025-06-17 +Resort Hotel,0,1,2017,October,43,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,240.0,179.0,0,Group,51.79,0,2,Check-Out,John Payne,sheltondanielle@example.net,690.420.9233x468,340194554269282,2026-03-02 +Resort Hotel,0,92,2017,November,45,8,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,96.56,1,0,Check-Out,Jamie Lee,clarkroberto@example.com,820.769.5701x111,6011411291538349,2025-10-23 +City Hotel,0,87,2017,June,25,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,65,Transient-Party,78.13,0,0,Check-Out,Steven Gardner,jamesthompson@example.net,001-940-874-5638x163,30472582000647,2025-10-16 +City Hotel,1,124,2017,February,7,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,41,Transient,146.06,0,0,Canceled,Kevin Barber,wlee@example.com,+1-332-456-6198x8479,5237980803502415,2026-03-03 +Resort Hotel,0,6,2017,May,18,6,2,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,88.0,179.0,0,Transient,54.26,0,0,Check-Out,Kenneth Williams,cbishop@example.org,001-307-966-5894x562,501884071777,2025-12-17 +City Hotel,1,135,2017,November,44,3,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,236.0,179.0,0,Transient,71.84,0,0,Canceled,Elizabeth Williams,jennifercarson@example.net,981-396-9270x5666,4584665753637,2025-08-31 +City Hotel,0,278,2017,June,24,12,2,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.24,0,0,Check-Out,Jessica Mitchell,christopherwalter@example.com,(376)946-8519,4881573678371792,2026-03-14 +Resort Hotel,0,218,2017,April,14,4,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Check-Out,Jesse Fleming,dmiller@example.org,001-777-979-6078x1413,4697031036347990,2025-04-25 +City Hotel,0,20,2017,April,17,23,0,1,2,1.0,0,SC,BEL,Online TA,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,118.76,0,1,Check-Out,Jennifer Ferguson,jameskelley@example.com,(939)272-5879,2522781827578808,2024-07-07 +City Hotel,1,186,2017,October,44,31,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,41.3,0,0,Canceled,Susan Figueroa,matthew27@example.net,+1-372-247-6879x3838,676111888126,2026-02-24 +City Hotel,1,380,2017,May,19,9,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,105.21,0,1,Canceled,Mr. Thomas Jones PhD,xkim@example.org,001-577-631-1496x0660,4858297172657345,2024-04-14 +Resort Hotel,0,288,2017,July,27,2,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,Refundable,2.0,222.0,0,Transient-Party,62.13,0,0,Check-Out,Sherry Shannon,lsmith@example.org,001-940-501-4792,502083609276,2025-10-19 +City Hotel,1,26,2017,April,16,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,63.35,0,1,Canceled,Samantha Garcia,ruben09@example.org,857.376.3331,3552149518375432,2025-04-21 +Resort Hotel,0,32,2017,October,40,4,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,126.0,179.0,0,Transient,38.3,0,0,Check-Out,Joseph Beltran,deankathleen@example.net,519-703-6716x029,346207478428893,2024-10-03 +City Hotel,0,41,2017,January,4,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient-Party,56.18,1,1,Check-Out,Joshua Navarro,fhicks@example.net,(233)625-1731x365,4460644369730858,2026-02-26 +City Hotel,1,101,2017,March,11,15,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.3,0,2,Canceled,Nicholas Obrien II,alexander86@example.com,309-305-0689x29646,30383739843815,2025-06-17 +City Hotel,0,3,2017,April,14,5,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.83,0,1,Check-Out,Ronald Baxter,mhudson@example.net,912-510-0087x20029,180040856699374,2025-08-20 +City Hotel,0,44,2017,May,21,23,1,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,188.58,1,1,Check-Out,Sherri Charles,elizabethsampson@example.net,216.769.9846,30208939380286,2024-04-28 +City Hotel,0,40,2017,May,22,31,1,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.17,0,0,Check-Out,Michael Flores,eatoncourtney@example.com,418-849-5894x835,30537806422775,2025-11-13 +Resort Hotel,0,40,2017,May,22,30,1,1,2,0.0,0,HB,SWE,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,207.66,0,0,Check-Out,Darryl Christensen,hnelson@example.org,001-302-435-5545,4969508764995075,2025-11-09 +City Hotel,0,0,2017,November,47,24,1,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,158.75,0,1,Check-Out,Allison Floyd,sylviamiller@example.net,(603)507-0659x3091,4977259214448,2024-09-06 +Resort Hotel,0,12,2017,March,10,4,2,5,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,140.33,0,1,Check-Out,Michelle Patterson,johnsonkeith@example.com,+1-744-529-4215x3338,060485757490,2024-09-10 +Resort Hotel,0,153,2017,March,13,23,4,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,145.67,0,0,Check-Out,Wendy Chavez,daniel58@example.com,(775)986-5591,563722483358,2025-03-19 +City Hotel,0,42,2017,July,27,4,0,1,2,0.0,0,SC,,Corporate,Corporate,0,0,0,D,D,2,No Deposit,10.0,212.0,0,Transient-Party,103.16,0,1,Check-Out,Jennifer Hurley,rachelmorse@example.org,643.960.0113x895,180047544902193,2025-08-13 +City Hotel,0,29,2017,February,7,16,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,110.9,0,1,Check-Out,Jared Chan,james27@example.org,883.765.4564x97577,562312559122,2025-12-13 +City Hotel,0,3,2017,May,18,2,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Contract,124.97,0,1,Check-Out,Ricky Diaz,williambriggs@example.net,001-672-349-3956x79971,4192542439841355,2026-02-18 +City Hotel,0,11,2017,September,37,13,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,253.0,179.0,0,Transient,112.17,0,1,Check-Out,Joshua Miller,bortiz@example.net,4385671257,2250808188060486,2026-03-03 +City Hotel,1,141,2017,February,8,23,1,5,2,0.0,0,BB,DEU,Online TA,Direct,0,0,0,E,E,2,No Deposit,10.0,179.0,0,Transient,224.4,0,1,Canceled,Catherine Soto,ilamb@example.com,386-961-4473x8147,4933466723839275593,2024-12-04 +Resort Hotel,0,49,2017,June,23,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,45.18,0,2,Check-Out,Christopher Gay,jason16@example.org,(259)749-4323,4126175334237692562,2025-06-21 +City Hotel,1,92,2017,December,51,17,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,109.59,0,0,No-Show,Mary Smith,brownemily@example.com,825.474.8228x218,4925517839381,2024-10-31 +Resort Hotel,0,39,2017,August,33,18,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,E,2,No Deposit,242.0,179.0,0,Transient,55.48,1,1,Check-Out,William Giles,michelle14@example.net,(383)712-4290,4666859476153511,2024-12-29 +City Hotel,1,146,2017,June,25,21,1,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,87.62,0,1,Canceled,Jennifer Hernandez,megan39@example.com,001-383-581-5393x466,2705319928200458,2025-11-04 +City Hotel,1,14,2017,April,15,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,137.55,0,0,Canceled,Matthew Giles,gabrielle43@example.org,394-575-7785,4751445595828091336,2025-02-21 +Resort Hotel,0,10,2017,January,3,20,4,7,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,346.0,179.0,0,Transient,103.21,0,2,Check-Out,Kenneth Murphy,morganscott@example.org,313-998-4041,6011243041785502,2024-08-13 +City Hotel,1,376,2017,July,29,18,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,151.0,179.0,0,Transient,62.96,0,0,Canceled,Jesus Wheeler,randolpherin@example.net,+1-371-468-0064x2120,3509221652576796,2026-01-06 +City Hotel,0,7,2017,June,26,24,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.27,0,0,Check-Out,Kevin Barton,stevenberry@example.org,405-950-6016x561,4016145586753963780,2025-06-14 +Resort Hotel,0,11,2017,October,43,26,1,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient-Party,51.8,0,1,Check-Out,Jeffrey Lynch,amy97@example.net,5585415548,6580473977541477,2025-02-18 +Resort Hotel,0,13,2017,April,18,30,2,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,245.0,179.0,0,Transient,220.01,0,3,Check-Out,Joshua Smith,vanessadillon@example.com,(245)669-8405,4380700081496165,2025-08-28 +City Hotel,0,4,2017,August,32,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,82.31,0,1,Check-Out,Steven Johnson,jonathanmartin@example.org,(794)843-5735x66168,38270726680163,2025-09-15 +City Hotel,0,3,2017,August,33,18,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,0.99,0,3,Check-Out,Andrew Jacobs,ashley52@example.net,(570)882-8823x05046,676251761190,2025-03-12 +Resort Hotel,1,143,2017,February,6,4,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,A,0,No Deposit,250.0,179.0,0,Transient,150.44,0,0,Canceled,Mary Daniels,jacksonjasmine@example.net,001-305-788-6562x7670,345566380166094,2025-07-31 +City Hotel,0,240,2017,April,15,10,0,1,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.17,0,2,Check-Out,Linda Holt,iwilliams@example.net,(911)650-7324,2685424661598128,2025-08-14 +City Hotel,1,265,2017,April,16,14,2,5,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,261.0,179.0,0,Contract,120.58,0,1,Canceled,Dorothy Anderson,shermanpaula@example.org,404-852-6580x29033,502071032440,2024-08-05 +City Hotel,1,83,2017,August,31,3,2,3,2,1.0,0,Undefined,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,178.32,0,2,Check-Out,Gail Moss,flemingbrandon@example.net,+1-657-658-4970,4894644887833610,2026-02-27 +City Hotel,1,0,2017,November,46,11,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,100.51,0,0,Check-Out,Lori Holland,stewartlauren@example.com,703-952-9589x774,372402510343898,2026-02-02 +Resort Hotel,0,0,2017,August,35,29,0,1,1,0.0,0,HB,PRT,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,27.0,179.0,0,Transient,78.37,0,0,Check-Out,Jesse Gardner,cartermichael@example.org,7857330182,347848656841560,2026-03-24 +City Hotel,1,98,2017,April,15,8,2,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,235.12,0,1,No-Show,Robert Durham,alexis13@example.net,+1-968-499-5984,4826601499480,2025-12-23 +City Hotel,1,155,2017,April,15,7,0,1,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.26,0,0,Canceled,Jessica Kelly,timothy42@example.net,800.398.6768,4321590172678,2024-05-12 +Resort Hotel,0,1,2017,June,23,7,1,1,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,52.31,0,0,Check-Out,Steven Morales,ystout@example.com,5275440650,6591319051459994,2025-11-30 +City Hotel,0,85,2017,November,45,8,1,0,1,0.0,0,SC,CHE,Online TA,GDS,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,110.4,0,0,Check-Out,Craig Hammond,charles22@example.com,001-437-851-4531x37144,213113294105071,2025-07-11 +City Hotel,0,16,2017,July,27,7,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,134.19,0,2,Check-Out,Allison Gilbert,shannon54@example.net,840.827.8681x26490,4071063446394998823,2025-10-14 +City Hotel,1,2,2017,April,16,14,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,H,A,0,No Deposit,14.0,178.0,0,Transient,110.34,0,0,Canceled,Richard Stuart,hollysingh@example.org,9319752342,375476550168271,2026-01-25 +Resort Hotel,1,141,2017,April,15,9,1,5,2,0.0,0,FB,PRT,Offline TA/TO,Direct,0,0,0,C,C,0,No Deposit,43.0,179.0,0,Transient,199.16,0,0,Canceled,Mark Mcpherson,matthew96@example.org,733.679.2232x512,4763679981494966,2025-09-12 +City Hotel,0,81,2017,April,14,4,0,1,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.36,0,2,Check-Out,Joseph Cruz Jr.,david08@example.org,(995)421-8927x210,348052715271393,2025-09-15 +Resort Hotel,0,1,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,45.73,0,0,Check-Out,Suzanne Wagner,ocampbell@example.com,219.595.9496,3507261754115491,2025-10-14 +City Hotel,0,56,2017,June,25,16,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,111.71,0,3,Check-Out,Brittany Flowers,michaelyoung@example.net,6022290997,4796555970937,2025-03-29 +Resort Hotel,1,32,2017,January,2,3,4,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Refundable,244.0,179.0,0,Transient,106.55,0,0,Canceled,Kenneth Snyder,vrice@example.net,6076493093,4492571620392339,2024-04-18 +City Hotel,0,155,2017,March,13,23,0,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,141.08,0,2,Check-Out,Rachel Patel,shannonli@example.com,336.332.3458,4228650079812012,2025-09-23 +Resort Hotel,0,407,2017,June,25,20,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,75,Transient-Party,86.8,0,0,Check-Out,April Schneider,andrewgarcia@example.net,308.213.2815x7186,2270432038152728,2024-12-07 +Resort Hotel,0,90,2017,February,6,7,2,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,62.0,0,2,Check-Out,Rebecca Wood,martinkristopher@example.com,001-996-534-2851x6126,3552396948151343,2025-02-01 +City Hotel,1,105,2017,March,12,21,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,40,Transient,77.89,0,0,Canceled,Sonya Alvarado,qmartinez@example.org,(777)569-6337,38022042125286,2025-10-14 +City Hotel,1,66,2017,April,15,11,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,240.95,0,0,Canceled,Nicole Price,jacobstracy@example.org,506-368-1648x4817,4506022663046147,2024-08-07 +City Hotel,0,424,2017,January,2,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,129.44,0,0,Check-Out,Evelyn Bryant,franklinmegan@example.net,(385)225-2087x593,4240859937378108,2025-08-27 +City Hotel,0,11,2017,June,23,6,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,102.49,0,1,Check-Out,Michael Jackson,lawsonemily@example.com,(291)621-3795,5423107855721883,2025-09-10 +City Hotel,1,1,2017,December,50,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,232.0,0,Transient,52.49,0,0,Check-Out,Casey Francis,guerragina@example.net,272.491.0959x6567,6011730918108073,2025-10-11 +City Hotel,1,105,2017,August,33,16,1,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,97.34,0,1,Canceled,Debra White,jonesmatthew@example.org,895.475.4621,4707792417541,2024-04-15 +City Hotel,1,40,2017,December,51,22,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,160.5,0,1,Canceled,Julia Long,davidbrown@example.net,248-435-9040x4448,4991187979576,2025-04-21 +City Hotel,0,4,2017,June,26,27,1,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,159.86,0,0,Check-Out,Ronald Carr,paula37@example.net,239.769.4130,4864188330034,2024-12-20 +Resort Hotel,0,146,2017,December,52,28,1,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,E,1,No Deposit,18.0,179.0,0,Transient,101.96,0,0,Check-Out,David Lynn,ysmith@example.org,001-778-377-7614x99716,3581477049335624,2025-11-28 +City Hotel,1,36,2017,April,17,29,2,5,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,D,C,0,No Deposit,74.0,179.0,0,Contract,208.85,0,0,Canceled,Nancy Bradford,rachael37@example.com,(231)615-5530x94680,2276671701922230,2024-10-01 +Resort Hotel,0,30,2017,May,18,5,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,45.82,0,1,Check-Out,Sandra Walker,andrea25@example.org,2049248120,371999441503376,2024-12-30 +Resort Hotel,0,29,2017,May,20,12,2,2,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Check-Out,Kimberly Valenzuela,imiller@example.org,+1-786-355-0344x5365,180011465284411,2026-02-12 +City Hotel,1,110,2017,April,16,21,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,259.0,179.0,0,Transient-Party,108.4,0,1,Canceled,Ashley Sullivan,morrisjohn@example.org,001-866-455-6251x55777,4646452424504053357,2025-06-30 +Resort Hotel,0,197,2017,November,45,6,2,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient,208.28,1,2,Check-Out,Michael Moon,gonzalezmisty@example.com,(485)240-5848x9814,4278801447085182,2024-11-24 +City Hotel,0,139,2017,November,46,12,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,118.48,0,1,Check-Out,Philip Bowen,zjohnston@example.com,765-911-8077x2504,578322969051,2024-06-21 +Resort Hotel,0,141,2017,March,11,16,1,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,240.0,179.0,0,Transient,53.12,0,1,Canceled,Cassandra Landry,sean41@example.org,+1-435-991-1460x0036,6011153281179821,2025-08-12 +Resort Hotel,0,39,2017,April,15,9,1,9,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,209.77,0,1,Check-Out,Wayne Jackson,chadgarcia@example.org,230-883-7414,30248264580142,2025-11-14 +City Hotel,0,108,2017,January,5,29,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.37,0,2,Check-Out,Connie Neal,ngordon@example.com,+1-221-912-6509x05746,3595895078016050,2024-04-07 +City Hotel,1,36,2017,April,14,2,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,144.81,0,2,Canceled,Lawrence Parks,eric66@example.org,4916727717,6540092587434862,2025-02-13 +City Hotel,0,12,2017,October,41,13,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,129.0,179.0,0,Transient,81.73,1,2,Check-Out,Scott Ayers,richardsonnicole@example.org,(281)892-5794,2704833979065504,2024-04-03 +City Hotel,1,18,2017,February,7,13,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.95,0,1,Canceled,Michael Wood,sheadawn@example.net,5896131837,6584567583328702,2025-04-27 +Resort Hotel,1,101,2017,November,44,2,0,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,1,0,A,I,0,Non Refund,244.0,179.0,0,Transient,70.26,0,0,Canceled,Matthew Stone,heather13@example.org,232-278-5217,4447909596598313,2024-11-04 +City Hotel,0,109,2017,December,52,30,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,23.0,179.0,0,Transient-Party,102.12,0,1,Check-Out,Tiffany Hansen,lori53@example.net,001-996-638-7457x1074,564313677374,2024-09-17 +Resort Hotel,0,31,2017,February,5,3,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,306.0,179.0,0,Transient,130.46,0,0,Check-Out,Frank Freeman,freynolds@example.org,(937)479-6766,342999826985947,2026-01-28 +City Hotel,0,14,2017,January,2,1,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.41,0,0,Check-Out,Samantha Walker,ttorres@example.org,932.766.3202x7734,6011621502760074,2024-06-17 +Resort Hotel,1,9,2017,June,22,1,1,1,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,78.33,0,2,Canceled,Mark Wilson,christopher45@example.org,+1-341-926-2276,2271165589047710,2024-05-28 +Resort Hotel,1,155,2017,March,14,31,0,3,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,G,0,No Deposit,15.0,179.0,0,Transient,124.86,0,1,Canceled,Kayla Ray,zacharyfowler@example.org,+1-910-365-6748x4500,4414737323293174,2025-05-31 +Resort Hotel,0,28,2017,September,36,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,63.41,1,1,Check-Out,Ashley Olson,nicolemcdaniel@example.com,357.368.0748,4418366500217706974,2026-02-05 +City Hotel,1,18,2017,December,50,9,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.93,0,1,Canceled,Mr. Joseph Bush,jessica97@example.net,8234680868,4007898701183586,2025-04-27 +Resort Hotel,0,140,2017,November,48,30,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,179.0,0,Transient-Party,78.71,0,0,Check-Out,Debra Johnson,jennifercarlson@example.com,+1-697-361-5743x562,3584020921346777,2025-02-17 +City Hotel,0,10,2017,October,41,11,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,74.0,0,Transient,88.07,0,0,Check-Out,Christine Parker,teresa75@example.net,+1-690-705-2104x5067,30093522387686,2024-05-10 +Resort Hotel,0,155,2017,November,48,30,2,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,1,Refundable,12.0,222.0,0,Transient-Party,69.32,0,0,Check-Out,Jesse Murphy,yolandawalker@example.org,+1-427-442-9457,2223904510720907,2025-07-24 +Resort Hotel,0,0,2017,July,29,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,52.92,0,0,Check-Out,Brian Daniel,caldwelltyler@example.net,458.620.2410x0635,4432768891271290,2025-09-20 +Resort Hotel,1,90,2017,November,47,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,44.29,0,1,Canceled,Stephen Roth,bphillips@example.com,682-973-7105x2837,30548644455307,2024-05-21 +City Hotel,0,6,2017,July,28,13,0,4,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,82.4,0,1,Check-Out,Ryan Warren,thomassarah@example.net,(717)769-4170x216,36387993865103,2024-12-19 +Resort Hotel,0,1,2017,October,41,13,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,38.29,0,1,Check-Out,Jeffery York,morrisblake@example.com,001-847-534-5528x533,4804510052091616,2025-11-30 +Resort Hotel,0,15,2017,October,44,28,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,C,0,No Deposit,8.0,179.0,0,Transient-Party,62.08,0,1,Check-Out,Tyler Baker,tina83@example.org,+1-741-384-7066x34984,4620442324093497,2024-09-10 +Resort Hotel,0,41,2017,April,17,23,0,1,1,1.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,120.51,0,0,Check-Out,Melissa Schneider,awu@example.org,(438)604-0707x93695,6599120546329723,2025-08-10 +City Hotel,0,95,2017,November,48,26,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,102.56,0,0,Check-Out,Trevor Sparks,fgonzalez@example.net,(441)513-1615,180096363618273,2024-10-09 +City Hotel,0,61,2017,April,15,9,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,110.05,0,1,Check-Out,Hector Bryant,benjamindebra@example.net,(825)606-7655x0334,2716277871662875,2024-08-21 +City Hotel,0,105,2017,July,27,5,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.7,0,0,Check-Out,Theresa Martinez,kingmichelle@example.net,218.435.2678x00206,3571876439714250,2024-12-08 +City Hotel,1,80,2017,July,27,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,21,Transient,60.2,0,0,Canceled,Kaitlyn Brown,david96@example.org,001-501-958-8290,36617212885122,2025-11-24 +Resort Hotel,0,251,2017,April,18,28,1,2,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,F,C,0,No Deposit,245.0,179.0,0,Transient,215.38,0,0,Check-Out,Bonnie Woods,kmichael@example.com,794-400-8215x1272,213180342171629,2025-01-29 +City Hotel,1,19,2017,December,49,5,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,173.32,0,0,Canceled,Carlos Kirk,jessicalopez@example.com,(234)767-3384x559,4054850597309903739,2025-11-22 +City Hotel,0,184,2017,January,2,7,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,143.26,0,1,Check-Out,Selena Bailey,gabrielle43@example.com,729.324.1764x42445,38346055122025,2025-03-05 +City Hotel,0,3,2017,November,45,4,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,2.57,0,1,Check-Out,Chad Rivera,pbarnes@example.com,2358886315,4477960627718977,2025-05-19 +City Hotel,1,143,2017,February,9,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,141.39,0,0,Canceled,Rhonda Patterson,tmendoza@example.com,(366)963-8261,6580817190293268,2024-05-08 +Resort Hotel,1,238,2017,March,10,5,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,166.89,0,0,Canceled,Frederick Mejia,lsoto@example.com,+1-422-817-8631x13011,3561415921180233,2024-11-16 +City Hotel,0,4,2017,April,15,10,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,135.15,1,0,Check-Out,Rebecca Cole,afletcher@example.org,5329206387,180094221851210,2025-08-18 +City Hotel,1,11,2017,January,2,4,1,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.85,0,0,Canceled,Edwin Jackson,jamieanderson@example.net,(505)364-7592,4635694928429310,2025-09-28 +City Hotel,0,157,2017,January,2,3,1,2,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.32,0,0,Check-Out,George Rogers DDS,lisagallegos@example.org,+1-761-407-6801x235,4029208260808058,2025-09-12 +City Hotel,0,141,2017,March,10,8,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,89.88,0,0,Check-Out,Kimberly Morgan,daniellebutler@example.com,(905)911-3731x77015,30052029084402,2024-05-19 +City Hotel,0,150,2017,February,9,26,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,90.04,0,0,Check-Out,Tracey Hogan,morrisonpaul@example.com,(482)272-1049,4217830219006914,2025-08-28 +City Hotel,0,48,2017,March,12,22,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.38,0,2,Check-Out,Micheal Austin,cindy85@example.org,+1-998-361-5951,4317981099165,2025-09-30 +City Hotel,1,57,2017,November,48,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.85,0,0,Canceled,Carl Rubio,jessica56@example.org,+1-377-918-1643x58891,4883168697637410,2025-07-24 +City Hotel,1,44,2017,May,20,17,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,118.39,0,0,Canceled,Tracy Burnett,ystevenson@example.org,280-927-4468x82059,6593586355576420,2024-04-02 +Resort Hotel,0,43,2017,July,28,14,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.02,0,0,Check-Out,Gary Taylor,brandy52@example.com,+1-832-799-9434,346447294838475,2025-12-01 +Resort Hotel,0,289,2017,July,30,28,2,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,64.14,0,0,Check-Out,Sonya Williams,fuenteszachary@example.org,558-423-7271,3508596279509697,2025-05-30 +City Hotel,0,11,2017,February,6,4,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.49,0,1,Check-Out,Jacqueline Hall,taraellis@example.com,+1-771-347-7877x1037,4608858831084446,2024-06-29 +City Hotel,1,207,2017,March,13,23,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,207.1,0,0,Canceled,Crystal Mullen,xjones@example.org,+1-869-696-1938x0783,502034938618,2025-04-13 +City Hotel,0,35,2017,November,45,7,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,76.0,221.0,0,Transient-Party,63.13,0,0,Check-Out,Shawn Ware,cunninghamomar@example.org,+1-661-528-1785x975,4354185730816,2025-04-06 +City Hotel,0,49,2017,May,19,10,0,1,2,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,11.0,45.0,0,Transient-Party,129.79,0,0,Check-Out,Rebecca Oneill,christina93@example.org,780-692-9186x456,2269032249696894,2026-03-05 +City Hotel,0,12,2017,February,8,21,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,111.98,0,0,Check-Out,Aaron Morgan,stephanie78@example.net,(852)568-2021,4905781176250887,2025-04-06 +Resort Hotel,0,1,2017,April,14,5,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,0.0,0,2,Check-Out,Damon Schultz,pruittwilliam@example.org,001-509-390-6576x224,5163637520772881,2024-12-09 +City Hotel,1,198,2017,October,42,16,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,62.17,0,0,Canceled,Catherine Garcia,mcarroll@example.org,576-767-0965x9758,5218095806817901,2025-09-17 +City Hotel,1,3,2017,October,44,31,0,4,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,43.12,0,0,Canceled,Samuel Warren,justingoodman@example.com,367.972.9730x96449,576094068946,2025-06-15 +Resort Hotel,0,32,2017,June,24,13,3,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,G,0,No Deposit,316.0,179.0,0,Transient,126.51,0,1,Check-Out,Kevin Carney,millerbrandon@example.com,749-661-8540,4580038615461,2025-03-15 +Resort Hotel,0,44,2017,December,49,8,2,5,3,0.0,0,HB,IRL,Direct,Direct,0,0,0,D,D,1,No Deposit,245.0,179.0,0,Transient,62.89,0,1,Check-Out,Jonathan Jefferson DVM,angelcameron@example.org,(691)218-8323x75448,4005225617770524,2026-01-12 +Resort Hotel,1,162,2017,September,39,26,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,236.0,179.0,0,Transient,60.29,0,1,Canceled,Jerry Walsh,morgangarrett@example.com,001-958-765-5753x2725,6528771948077009,2025-09-04 +City Hotel,0,13,2017,April,17,24,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,229.13,0,2,Check-Out,Travis Day,jacqueline12@example.net,992.704.5222x7794,6536917982454071,2024-11-14 +Resort Hotel,1,2,2017,August,34,23,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,84.45,0,1,Check-Out,Aaron Diaz,tinajohnson@example.org,001-489-744-2664,4820847296759301250,2024-06-07 +City Hotel,0,53,2017,November,46,11,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,44.53,0,2,Check-Out,Nancy Jackson,jamesclarke@example.org,(814)454-1394,060489553770,2025-09-29 +City Hotel,1,26,2017,January,3,14,2,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient-Party,139.46,0,0,Canceled,Daniel Benjamin,jill23@example.org,+1-543-861-0637x587,6580043777721247,2025-02-28 +Resort Hotel,0,104,2017,February,8,22,4,7,2,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,290.0,179.0,75,Transient,140.29,0,0,Check-Out,Renee Thompson,carlos13@example.net,882.958.2619,4621730780469675030,2025-02-17 +Resort Hotel,0,9,2017,September,39,24,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,133.0,179.0,0,Transient,41.3,0,0,Check-Out,Rose Mclaughlin,ehines@example.org,001-548-997-5731x23384,3537631631907910,2024-09-05 +City Hotel,0,1,2017,April,15,11,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,94.03,0,1,Check-Out,Arthur Gonzalez,cguzman@example.net,349.749.0684x9210,4367775142929,2024-06-19 +City Hotel,0,109,2017,August,34,20,0,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,64,Transient-Party,106.33,0,0,Check-Out,Ryan Smith,cprice@example.net,+1-776-939-3372x853,3505431476741112,2025-07-17 +Resort Hotel,0,0,2017,September,39,25,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,39.85,1,1,Check-Out,Brandon Bennett,johnsmith@example.net,(588)225-5879x90577,675919100684,2025-08-28 +City Hotel,0,38,2017,January,2,1,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,228.01,0,2,Check-Out,Brandon Sanchez,ian96@example.com,+1-376-802-9592x75020,30301768559599,2024-05-03 +Resort Hotel,0,145,2017,August,35,28,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,54.36,0,1,Check-Out,Christopher Robbins,dalton44@example.net,706-690-7159,4250839626581366248,2025-01-02 +Resort Hotel,0,81,2017,December,51,18,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,50.98,1,2,Check-Out,Alexander Martin,rmorgan@example.org,+1-412-889-5667x67202,4260697441847351335,2026-01-12 +Resort Hotel,0,0,2017,June,26,25,2,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,108.45,0,1,Check-Out,Joseph Miller,villanuevaeric@example.org,(899)267-0162x437,4961670372456,2025-11-12 +City Hotel,1,50,2017,May,19,11,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,153.43,0,1,Canceled,Richard Yoder,trose@example.net,602-744-6933x66879,6011949346703509,2026-02-02 +City Hotel,0,1,2017,October,43,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,11.0,52.0,0,Transient,64.49,1,0,Check-Out,Frank Francis,lisa91@example.net,001-475-743-6040x637,4192852409246901,2024-12-21 +City Hotel,0,1,2017,January,2,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,45.0,0,Transient,50.06,0,1,Check-Out,Mark Webb,lthomas@example.net,411-825-5361x2318,3517223460876095,2025-06-18 +City Hotel,1,107,2017,December,51,18,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,113.7,0,0,Canceled,Scott Mcmahon,brownalejandro@example.org,001-936-668-3528x360,4342609699648918,2024-11-17 +City Hotel,0,107,2017,April,15,10,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,144.77,0,0,Check-Out,Luke Dixon,john39@example.org,934.248.8156,4552480805588230299,2024-07-10 +City Hotel,0,13,2017,July,31,30,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,42.0,199.0,0,Transient-Party,62.05,0,0,Check-Out,Mckenzie Chavez,rachel98@example.org,(586)954-7117x697,180058659304323,2024-10-03 +Resort Hotel,0,151,2017,November,47,24,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,221.0,0,Transient-Party,42.01,0,0,Check-Out,Kristen Blair,haynescynthia@example.net,430-249-5104,6568348169099318,2024-06-20 +Resort Hotel,0,40,2017,November,48,25,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,126.29,0,3,Check-Out,Joshua White,mwright@example.org,596.729.2870x81858,630431314248,2026-03-05 +City Hotel,0,100,2017,February,9,28,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.6,0,2,Check-Out,Bryan Harrison,wendy74@example.net,939-474-1517,060412482048,2025-02-24 +City Hotel,1,24,2017,May,19,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,133.46,0,0,Canceled,Michael Gonzalez,brian44@example.org,999.872.3821x983,2709132514152975,2025-01-11 +Resort Hotel,1,152,2017,April,14,5,3,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,109.62,0,1,Canceled,Monica Frost,scottpetersen@example.net,001-646-533-5254,4666518211416,2024-07-14 +City Hotel,0,28,2017,December,51,20,0,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,247.97,0,3,Check-Out,Tracy Frye,ashleyeaton@example.org,9926684730,6503708872554982,2024-08-01 +City Hotel,1,426,2017,May,19,12,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,104.49,0,1,Canceled,Erika Thompson,jasmincampbell@example.net,+1-983-224-9793x2738,3529811099821031,2024-12-11 +City Hotel,0,4,2017,April,16,13,1,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,134.79,0,1,Check-Out,Latasha Mendez,kathleen16@example.org,(735)765-9937,4135889866441963,2024-09-05 +City Hotel,0,17,2017,August,32,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,85.75,0,1,Check-Out,Sierra Moses,rvargas@example.com,+1-619-324-4556x13285,6509564018527844,2025-05-31 +Resort Hotel,1,64,2017,August,34,26,2,4,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,85.49,0,0,Canceled,Rebecca Sandoval,joshuabrown@example.net,298.341.6062,38977282956684,2025-06-18 +City Hotel,0,174,2017,January,5,28,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.06,0,1,Check-Out,Margaret Young,tina16@example.org,(575)905-4780,3599226859210751,2024-04-26 +Resort Hotel,1,354,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,279.0,179.0,0,Transient,73.64,0,0,Canceled,Cynthia Jackson,johngarcia@example.com,001-243-639-5706x8044,579216066772,2026-01-27 +City Hotel,1,17,2017,August,34,23,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,75,Transient-Party,83.11,0,0,Canceled,Michaela Sanchez,wernerjill@example.com,(391)331-9115x0252,341664913581477,2025-03-17 +City Hotel,1,394,2017,January,2,5,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,147.51,0,0,Canceled,Stephanie Harris,charles37@example.com,774-921-4731x9694,4293162185913445,2025-12-06 +City Hotel,0,3,2017,March,12,16,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,154.5,0,0,Check-Out,Elizabeth Butler,gregoryfarrell@example.com,7548736530,4680702951164573,2025-10-25 +City Hotel,0,281,2017,April,15,14,2,5,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,107.8,0,1,Check-Out,Matthew Mclaughlin PhD,david52@example.com,+1-292-434-2666x61952,639066176939,2024-11-10 +City Hotel,0,50,2017,March,11,16,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,136.58,0,1,Check-Out,Robert Roberts,aliciamiller@example.com,661-625-8566x1469,4445557107924017570,2025-07-04 +Resort Hotel,1,289,2017,June,22,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,A,0,Non Refund,12.0,179.0,0,Transient,80.21,0,0,Canceled,Laura Green,leslieholmes@example.org,223-759-5367x9654,3501283508123734,2025-06-29 +Resort Hotel,0,1,2017,October,40,7,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,E,0,No Deposit,14.0,331.0,0,Transient,0.0,0,1,Check-Out,Robert Hampton,xcampbell@example.com,655-856-5200,4143090452028682,2025-03-15 +Resort Hotel,0,2,2017,June,26,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,42.43,0,0,Check-Out,Molly White,gjenkins@example.com,588.586.7138x08082,4914720389457292,2025-06-05 +City Hotel,0,1,2017,September,38,21,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.85,0,1,Check-Out,Roger Valencia,mrodriguez@example.org,001-540-288-7612x443,180087027844751,2024-12-21 +City Hotel,0,85,2017,September,36,2,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,102.78,0,2,Check-Out,Cody Thompson,sparkscraig@example.org,619.583.7617,4489850749287272,2024-08-25 +Resort Hotel,0,92,2017,August,34,20,1,4,2,0.0,0,Undefined,SWE,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,187.0,179.0,0,Transient-Party,61.18,0,1,Check-Out,Anthony Wright,marilynbanks@example.com,(381)657-7845x538,180068863334214,2024-06-02 +Resort Hotel,0,15,2017,January,2,11,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,91.95,0,2,Check-Out,Julie Rose,gina18@example.com,276-391-1157x96235,3529985122548363,2024-09-07 +City Hotel,0,1,2017,January,2,3,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,94.75,0,0,Canceled,Mr. John Woodard MD,sextonmargaret@example.org,480.639.0686,3543656579944718,2025-08-28 +City Hotel,0,12,2017,April,15,9,2,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,163.92,0,0,Check-Out,Kristin Herman,mitchellbrandon@example.org,+1-659-228-4731x34461,4354721293638016,2024-09-04 +City Hotel,0,24,2017,May,20,14,0,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.84,0,0,Check-Out,Chase Burnett,john59@example.com,286.772.6707x5501,4890064293712106,2024-08-28 +City Hotel,1,243,2017,June,25,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,59,Transient,60.65,0,0,Canceled,Annette Mcguire,williamsmith@example.com,911-404-9039x4605,4029623615882923,2025-02-07 +City Hotel,0,55,2017,February,6,7,2,2,2,0.0,0,BB,BEL,Online TA,GDS,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,119.8,0,0,Check-Out,Richard Roy,medinamelinda@example.net,+1-294-900-1254x38655,6011492838229998,2024-08-27 +City Hotel,1,43,2017,June,24,13,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,81.25,0,0,Canceled,Carrie Ware,matthewperez@example.org,(609)577-4326x479,3529910699236192,2026-03-13 +City Hotel,0,82,2017,November,45,7,2,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,70.0,179.0,0,Transient,73.22,0,0,Check-Out,Julian Obrien,ysimpson@example.com,853.400.5567x274,4305618578503578,2025-01-21 +City Hotel,1,79,2017,November,46,18,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,73.14,0,0,Canceled,Stacey Stone,thomascody@example.net,412-953-0496x6021,348883964184907,2025-06-30 +City Hotel,0,159,2017,April,15,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,114.52,0,0,Check-Out,Laura Bailey,stevenkemp@example.net,001-757-643-1000x2883,4751491188672,2024-12-25 +City Hotel,0,0,2017,July,27,7,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,78.74,0,2,Check-Out,Patrick Bush,monica87@example.org,3925975376,2702602554121558,2025-05-27 +City Hotel,1,429,2017,May,19,9,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,102.07,0,0,Canceled,Jose Lopez,nashjames@example.net,924.287.6681,2285900646204274,2024-06-19 +Resort Hotel,0,5,2017,April,17,29,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,202.5,1,0,Check-Out,Jennifer Brown,kylecaldwell@example.com,6749077463,30021373275999,2024-09-19 +City Hotel,1,241,2017,February,6,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,103.49,0,0,Canceled,Nicole Bright,baileychristopher@example.net,866-462-5078,3552839004891450,2025-01-24 +Resort Hotel,0,12,2017,March,10,4,2,1,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,213.02,0,2,Check-Out,Christina Ramirez,thomas08@example.org,(383)407-6375,3547940859505134,2026-02-11 +Resort Hotel,1,15,2017,March,10,10,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,81.59,0,0,Canceled,Thomas Brewer,whitneymartin@example.org,776-616-5889,676224210978,2026-01-12 +City Hotel,1,309,2017,March,10,9,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,86.07,0,0,Canceled,Sarah Berry,danielmiller@example.com,(601)516-6080,3595934007101319,2024-11-01 +City Hotel,1,302,2017,March,10,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,93.13,0,0,Canceled,Austin Conley,larryblackwell@example.org,001-255-371-2010,374183675666715,2025-09-24 +City Hotel,1,17,2017,May,18,3,0,6,2,0.0,0,BB,,Online TA,GDS,0,0,0,D,D,0,No Deposit,179.0,179.0,0,Transient,103.95,0,0,Canceled,Daniel Luna,joann04@example.com,001-774-683-3190x6961,503892474753,2026-03-23 +Resort Hotel,0,0,2017,September,38,22,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,50.09,1,2,Check-Out,Sharon Johnson,patrick78@example.net,+1-431-381-1065x686,3580277203878273,2026-01-20 +Resort Hotel,0,232,2017,December,50,11,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,378.0,179.0,0,Contract,49.45,0,0,Canceled,Kenneth Maxwell,dwayne59@example.com,(535)852-5529x069,4636735254993574,2024-09-19 +City Hotel,0,86,2017,May,22,28,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient-Party,94.34,0,0,Check-Out,Laurie Bailey,kevinfrederick@example.org,533-961-4391,3563175541459031,2024-11-18 +City Hotel,0,2,2017,May,19,6,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.14,0,2,Check-Out,Eric Woods,spearsbrittany@example.com,(495)241-6084,378558544778385,2025-03-23 +City Hotel,1,145,2017,April,16,16,0,4,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,95.73,0,1,Canceled,Nancy Lee,johnward@example.org,310-979-4259x8654,373447061461580,2024-09-26 +City Hotel,0,90,2017,June,26,30,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.03,0,0,Check-Out,Christina Smith,dalton51@example.net,356.514.8558x66929,6524427245304547,2025-05-13 +Resort Hotel,0,27,2017,May,19,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,H,1,No Deposit,99.0,179.0,0,Transient-Party,49.75,0,2,Check-Out,John Clark,gonzalezbradley@example.org,959.520.4385x30960,30540641473342,2024-08-02 +City Hotel,0,340,2017,February,5,1,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,64,Transient-Party,78.98,0,0,Check-Out,Anna Ponce,yparsons@example.org,(485)591-7653,6527097099494392,2025-03-05 +City Hotel,0,267,2017,November,45,7,2,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,135.0,179.0,0,Transient-Party,81.28,0,1,Check-Out,Anthony Hernandez,ssmith@example.org,+1-253-203-2106x988,345080035711189,2024-05-17 +Resort Hotel,0,59,2017,November,47,22,2,5,3,0.0,0,BB,,Corporate,Corporate,0,0,0,D,E,0,No Deposit,14.0,218.0,0,Transient,50.93,0,0,Check-Out,Daniel Wilson,zjennings@example.net,7909171503,3542734991517155,2025-03-06 +City Hotel,1,13,2017,August,32,6,2,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,65.53,0,0,Canceled,Melody Stevens,melissa48@example.net,878.310.6042x667,3564239870324551,2024-06-01 +City Hotel,1,161,2017,February,6,7,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,38,Transient,110.98,0,0,Canceled,Matthew Brown,lauradickson@example.net,001-771-593-4002x92342,676129768989,2026-02-01 +City Hotel,0,107,2017,March,11,10,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.93,0,3,Check-Out,Nichole Davis,tmartinez@example.net,(324)848-3876,30431219275717,2025-02-03 +Resort Hotel,0,14,2017,April,16,14,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,C,E,0,No Deposit,245.0,179.0,0,Transient,237.48,0,3,Check-Out,James Anderson,huntamanda@example.net,001-545-270-1588x99259,4779272015084946,2026-03-16 +City Hotel,1,40,2017,November,46,13,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,2,No Deposit,8.0,179.0,0,Transient,95.47,0,1,No-Show,Bryan Griffith,omunoz@example.com,872.374.6142x24774,4404321376797115959,2025-11-08 +City Hotel,0,34,2017,November,45,5,1,1,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,98.62,0,2,Check-Out,Nathan Stanley,penny05@example.com,210.909.7765,4263273589176,2024-11-04 +Resort Hotel,0,109,2017,October,41,7,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,24.0,179.0,0,Transient-Party,37.47,0,0,Check-Out,Olivia Randolph,tthomas@example.com,555.402.8219x1051,3576216138348024,2025-05-24 +City Hotel,1,23,2017,April,14,4,1,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,65.58,0,0,Canceled,Marcus Blair,yjackson@example.org,+1-979-848-4517x72408,4160502839358,2025-10-20 +City Hotel,0,41,2017,May,19,9,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient-Party,96.4,0,1,Check-Out,Kenneth Reynolds,pcastaneda@example.com,001-476-261-8056x3576,2714132922621481,2025-10-31 +City Hotel,0,220,2017,April,16,13,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,247.0,179.0,0,Transient-Party,103.28,0,1,Check-Out,Joshua Guerrero,anthonystanton@example.org,001-462-845-8097x5314,3507071358165994,2024-04-27 +City Hotel,0,190,2017,June,24,14,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,63.68,0,1,Check-Out,Shawn Shepherd,qsmith@example.com,(527)865-2151x096,4675887541814667,2024-05-24 +Resort Hotel,0,49,2017,February,6,3,2,6,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,129.51,0,3,Check-Out,Ashley Duran,stephanie72@example.org,588.412.7644x3165,4061706980956676,2025-05-31 +City Hotel,0,371,2017,June,26,27,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,86.17,0,0,Check-Out,Brian Mitchell,shannonanthony@example.com,(813)390-5666x56008,3559564303168730,2026-03-06 +City Hotel,1,21,2017,April,17,20,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,134.84,0,1,Canceled,Melanie Garrett,halepeter@example.net,5529920274,4702112970881,2025-10-31 +Resort Hotel,0,10,2017,June,24,12,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,74.92,1,0,Check-Out,George Smith,csanchez@example.org,+1-217-993-7151x25105,4039834023566365340,2025-07-29 +City Hotel,0,141,2017,December,51,22,2,2,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,217.22,0,1,Check-Out,Vicki Hernandez,wolfelaura@example.net,574-491-9707,180063374884864,2025-12-02 +City Hotel,0,37,2017,November,46,18,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,52.15,0,2,Check-Out,Carl Larsen,meganpalmer@example.com,6499822835,213196548070407,2024-11-27 +City Hotel,0,12,2017,March,12,22,2,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,141.22,0,2,Check-Out,Mercedes Richardson,romankevin@example.org,(794)890-4083,4673737194134,2025-08-14 +Resort Hotel,1,209,2017,April,15,10,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,127.56,0,0,Canceled,Mikayla Franco,heather12@example.com,+1-281-472-0771x882,3525743022068014,2025-02-25 +City Hotel,0,2,2017,November,47,24,1,1,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,112.16,1,1,Check-Out,Patrick Rios,paul56@example.net,853.248.7266x0486,3549242124361619,2024-12-04 +City Hotel,0,14,2017,February,5,1,0,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,137.37,0,1,Check-Out,Cindy Estrada,craig65@example.com,769-510-3309,213190256854599,2025-11-08 +City Hotel,1,19,2017,March,11,12,0,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,175.86,0,1,Canceled,Bethany Neal,gbarnes@example.com,001-278-416-9697x882,3589289339038277,2026-02-22 +City Hotel,1,294,2017,July,30,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,98.11,0,0,Canceled,Alan Davis DVM,hmejia@example.org,504-746-4126,6011383716203678,2025-03-11 +City Hotel,1,205,2017,February,8,21,0,5,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,110.91,0,2,Canceled,Donald Coleman,taylorsharon@example.org,743-461-9406x307,4616889584492628894,2024-10-19 +City Hotel,0,15,2017,March,12,22,0,1,2,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,129.83,0,0,Check-Out,Gabriel Richardson,boyddiane@example.net,870-598-8658,213134309962207,2024-11-25 +Resort Hotel,0,199,2017,November,48,30,1,3,2,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,D,3,Refundable,13.0,222.0,75,Transient-Party,62.28,0,0,Check-Out,Thomas Lewis,connie93@example.com,(264)666-6282,345766711643494,2024-09-05 +City Hotel,0,8,2017,October,43,23,1,3,1,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.04,1,1,Check-Out,Todd Beasley,lhenry@example.org,(305)429-8963x9292,4033443182826300,2024-06-21 +City Hotel,0,0,2017,April,14,4,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.58,0,0,Check-Out,Allison Branch,uwhite@example.com,(233)711-7965x456,4003545112237857,2025-10-15 +Resort Hotel,0,116,2017,August,34,20,1,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient-Party,63.74,1,0,Check-Out,Jenny Cox,michaelfisher@example.com,001-956-590-3731x4800,342650792189549,2026-01-17 +Resort Hotel,1,1,2017,January,3,16,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,49.42,0,0,No-Show,David Simpson,dawsonruth@example.org,767-968-2859x156,344248151303278,2025-06-03 +Resort Hotel,1,94,2017,February,9,29,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Refundable,11.0,179.0,0,Transient-Party,95.52,0,0,Canceled,Kyle Brown,michaelsummers@example.net,418.467.6335,4436130037036622,2025-08-21 +Resort Hotel,1,86,2017,February,9,28,1,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,246.0,179.0,0,Transient,114.91,0,0,Canceled,Tracey Reynolds,amanda86@example.org,(904)569-9687x279,6011167220590013,2025-07-20 +City Hotel,0,2,2017,May,21,21,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.39,0,1,Check-Out,Alison Perez,qchambers@example.net,544.275.7299,630484482546,2024-11-13 +City Hotel,0,64,2017,December,52,27,1,0,2,0.0,0,SC,AUT,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.6,0,0,Check-Out,Douglas Santos,karenfuentes@example.org,(257)569-2172x5675,340335362047010,2024-10-12 +Resort Hotel,1,293,2017,April,16,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,131.77,0,1,Canceled,Grace Green,stephanie29@example.net,+1-643-562-8570x7852,6011331947595446,2025-01-10 +City Hotel,0,72,2017,November,46,15,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.41,0,2,Check-Out,Samantha Cohen,nfernandez@example.org,380.553.9561,3571841519788632,2025-10-11 +Resort Hotel,1,49,2017,May,18,5,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient-Party,82.37,0,1,Canceled,Courtney Page,vazquezaaron@example.net,2253915542,6598828872424899,2025-01-18 +City Hotel,0,7,2017,August,33,17,2,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,110.93,0,3,Check-Out,David Martinez,jefferyaguilar@example.net,(216)995-6735,502039649533,2024-09-17 +City Hotel,0,57,2017,April,18,30,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,106.77,0,0,Check-Out,Susan Sullivan,alecsmith@example.org,473.490.3789x72887,4051683579879506,2024-05-22 +City Hotel,0,13,2017,February,7,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,105.73,0,1,Check-Out,Thomas Bowman MD,wrightsarah@example.com,+1-432-619-7666,180013701184207,2024-11-14 +City Hotel,1,165,2017,June,24,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,99.56,0,0,Canceled,Elizabeth Brown,angela90@example.org,674-722-8302,6011423475235196,2025-09-07 +Resort Hotel,1,8,2017,September,36,8,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient,39.67,0,0,Canceled,Michael Bolton,bobby56@example.com,(632)673-3626x91585,501817758011,2024-09-07 +Resort Hotel,0,21,2017,April,18,27,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,202.93,1,0,Check-Out,Jeffery Thompson,hernandezmichael@example.net,8974794911,3588042518564154,2025-12-26 +Resort Hotel,0,114,2017,November,48,29,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,43.46,0,0,Check-Out,John Rodriguez,vjohnson@example.net,2469349750,639054464446,2024-04-21 +City Hotel,0,39,2017,July,28,10,0,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,11.0,66.0,0,Transient-Party,72.56,0,1,Check-Out,Danielle Hamilton,bishopcheryl@example.org,712-855-1204,180015154048151,2024-08-12 +Resort Hotel,0,221,2017,June,23,9,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,189.0,179.0,0,Group,39.62,0,1,Check-Out,Justin Hammond,kmoss@example.org,600-550-7020x2252,3503144384419794,2025-03-17 +City Hotel,1,103,2017,March,9,3,1,1,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,132.69,0,1,Canceled,Kayla Williams,peter69@example.org,382.872.0724,4264780295427686,2026-02-06 +City Hotel,0,17,2017,May,21,21,1,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,65.65,0,2,Check-Out,Thomas Sparks,blackjames@example.net,339.712.3894,379131898250879,2024-05-18 +City Hotel,1,47,2017,April,14,4,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,9.0,179.0,0,Transient,251.65,0,1,Canceled,Ashlee Ross,hibarra@example.net,8212915805,4569315612899937,2025-07-16 +Resort Hotel,0,0,2017,October,43,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,53.95,0,1,Check-Out,Ann Martin,omarortiz@example.com,+1-315-293-5769x43856,4976207212484581,2025-04-24 +City Hotel,1,11,2017,September,39,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Group,83.85,0,1,Canceled,Kimberly Black,gutierrezjames@example.com,(717)633-0720x67097,30004750799351,2024-07-06 +City Hotel,1,50,2017,February,9,25,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,8.0,179.0,0,Transient,148.18,0,3,Canceled,Meagan West,dmcclure@example.net,222-930-3946,5559009854064669,2025-08-28 +City Hotel,0,144,2017,March,13,28,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,128.12,0,0,Check-Out,Andre Cortez,mflores@example.com,(534)259-5587x2011,4176972017416,2024-11-03 +City Hotel,0,369,2017,May,19,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,112.38,1,0,Check-Out,Michele Ford,sarah26@example.net,224-340-7646x89262,30469029621506,2025-06-10 +City Hotel,0,78,2017,September,38,18,1,2,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,C,2,No Deposit,11.0,179.0,0,Transient,42.16,1,2,Check-Out,Andrew Chavez,howardjoseph@example.net,+1-755-564-6147x5584,4234025009887511,2026-01-04 +City Hotel,1,10,2017,November,48,29,2,0,2,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,2,No Deposit,13.0,233.0,0,Transient,47.88,0,2,Check-Out,Joel Perez,ibuckley@example.net,+1-297-282-9086x4985,340751700265751,2025-02-27 +City Hotel,0,13,2017,June,25,23,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.74,1,2,Check-Out,Anthony Berg,powersjoseph@example.net,+1-436-571-3061x615,6519330311596193,2024-06-01 +Resort Hotel,0,14,2017,October,44,28,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,62.55,0,0,Check-Out,Joseph Hill,jonathancollier@example.com,+1-566-643-6289x48402,2720519489122659,2025-01-14 +Resort Hotel,0,45,2017,November,46,15,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,241.0,179.0,0,Transient,45.79,0,0,Check-Out,Robert Thompson,cjohnson@example.net,6338324275,4847793982703117,2026-01-03 +Resort Hotel,1,231,2017,April,16,13,2,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,3,Canceled,Allison Cunningham,vmorgan@example.org,325-979-5335,378258418587224,2025-03-22 +City Hotel,0,105,2017,February,6,7,0,2,2,0.0,0,BB,ISR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,114.07,0,0,Check-Out,Joseph Rice,russell44@example.net,6864544530,503817525770,2026-03-10 +Resort Hotel,0,1,2017,August,33,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,51.25,1,1,Check-Out,Jeffery Jordan,stephensstephanie@example.net,001-421-356-6979x7501,6564975890608266,2026-01-07 +City Hotel,1,212,2017,April,16,16,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.42,0,2,Canceled,Allen Martinez,lramos@example.net,339-715-9873,213108441455320,2024-11-15 +City Hotel,1,0,2017,December,52,23,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,16.0,185.0,0,Transient,87.69,0,1,Canceled,Cristian Lambert,michelle13@example.net,+1-300-790-4425x5725,345016109933143,2025-08-01 +Resort Hotel,0,186,2017,June,23,6,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,3,Refundable,12.0,222.0,0,Transient-Party,74.11,0,0,Check-Out,Christina Powell,morajames@example.com,+1-492-871-2597,36799897317181,2026-03-27 +City Hotel,0,111,2017,December,51,20,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,112.47,0,1,Check-Out,Tamara Gonzales,gonzalesjoshua@example.net,204.710.0175x21605,6534858174309537,2024-12-07 +City Hotel,0,151,2017,April,17,25,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,134.76,0,0,Check-Out,Jeffrey Long,evansgary@example.org,(816)400-3522x825,3585950045860411,2024-07-11 +City Hotel,0,100,2017,August,31,2,2,1,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,75.69,0,0,Check-Out,Angela Richards,joshuahanson@example.net,390.906.7215x66287,4502243513316746,2024-10-25 +City Hotel,0,0,2017,June,23,5,0,1,1,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,0.0,0,0,Check-Out,Sandra Lyons,jason28@example.net,5296939791,6541403616520721,2025-02-21 +City Hotel,0,3,2017,April,14,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,14.0,64.0,0,Transient,0.0,0,0,Check-Out,Andrew Whitney,wallslance@example.com,585-478-1577x472,502096799080,2026-01-12 +Resort Hotel,0,100,2017,January,4,24,1,2,2,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,G,G,3,No Deposit,15.0,179.0,0,Transient,113.69,1,3,Check-Out,Jeffery Collins,ethompson@example.net,+1-469-861-1679x01892,30121531144952,2025-09-26 +City Hotel,1,40,2017,July,28,11,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,Refundable,10.0,179.0,0,Transient,91.86,0,1,Canceled,Kevin Fischer,mmcdaniel@example.com,(473)593-9264x98590,4627197345339,2025-04-29 +Resort Hotel,0,42,2017,April,16,18,0,4,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,146.16,0,2,Check-Out,Amber Chapman,lmcintosh@example.org,(579)548-5143x3552,3527115141303564,2026-03-11 +Resort Hotel,0,2,2017,April,16,18,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,2,No Deposit,16.0,83.0,0,Transient,46.75,0,0,Check-Out,Becky King,ealvarado@example.org,7019361906,30424849173535,2024-07-31 +City Hotel,0,92,2017,June,26,24,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,63.66,0,0,Check-Out,Matthew Richards,brandonguerrero@example.org,437.503.7550,2337010663110772,2025-05-12 +Resort Hotel,1,8,2017,August,31,2,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,214.4,0,0,Canceled,Teresa Jones,kevinfrank@example.com,+1-693-378-2518,340948857887813,2024-08-30 +Resort Hotel,0,2,2017,May,20,14,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,92.23,0,0,Check-Out,Nicole Hodge,srios@example.org,806-848-3826x8160,180017241569264,2024-11-08 +City Hotel,1,36,2017,February,8,22,2,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.6,0,1,Canceled,Debra Smith,marybray@example.org,(525)398-3925x82414,4596009851497579235,2024-11-01 +Resort Hotel,1,56,2017,October,44,29,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,242.0,179.0,0,Transient,49.42,0,1,No-Show,Zachary Jones,kenneth96@example.net,8316295314,3573511986286877,2024-09-05 +City Hotel,0,0,2017,October,43,26,0,1,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,204.88,0,0,Check-Out,Amanda Bishop,dgarcia@example.net,(953)397-3846x059,4146540821941236,2024-04-30 +Resort Hotel,0,0,2017,October,43,25,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,A,A,0,No Deposit,143.0,179.0,0,Transient,37.97,0,0,Check-Out,Rhonda Evans,brianorr@example.net,(575)639-4747x9459,4706648240127337,2025-03-13 +Resort Hotel,1,165,2017,June,22,2,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,84.94,0,1,Canceled,Samantha Noble,berrycharles@example.net,001-323-845-9314x13962,4664824947102937,2024-04-25 +Resort Hotel,0,71,2017,June,26,25,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,113.27,0,1,Check-Out,Larry Fritz,randy61@example.com,(318)313-8972x31960,3589980106848548,2025-11-16 +Resort Hotel,1,143,2017,April,17,23,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,242.94,0,3,Canceled,Maria Gonzalez,carlsonnathan@example.org,+1-239-574-0114x093,4508648021648,2024-10-16 +City Hotel,1,274,2017,April,14,4,0,1,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,95.98,0,1,Canceled,Melinda Cervantes,lewismary@example.com,9602660327,180093776077551,2024-09-24 +Resort Hotel,0,79,2017,May,20,19,2,1,1,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,2.16,0,1,Check-Out,Justin Carter,lucassteele@example.org,989-998-9513x0376,4744063593626543,2024-11-14 +City Hotel,1,46,2017,February,9,26,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient-Party,129.87,0,0,Canceled,James Garcia,brownwendy@example.net,592.301.7503x852,4907338040461154,2025-02-11 +Resort Hotel,0,32,2017,August,33,17,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient-Party,102.45,0,0,Check-Out,Dustin Williams,thomasanthony@example.com,001-665-706-5375x870,4356565770130,2025-05-30 +Resort Hotel,0,30,2017,August,34,20,0,2,1,0.0,0,BB,ITA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,169.0,243.0,0,Transient,76.24,0,0,Check-Out,Derek Hall,nathaniel00@example.com,796-213-1372,213146780739615,2025-06-04 +City Hotel,1,6,2017,December,2,31,2,0,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,1,No Deposit,14.0,187.0,0,Transient,108.98,0,0,No-Show,Frank White,joshua56@example.com,(765)835-8818,30474774087242,2025-03-31 +City Hotel,0,41,2017,July,30,28,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,80.38,0,1,Check-Out,Tracy Santiago,blakesolomon@example.net,707-789-5318,4262620952298939517,2025-07-22 +Resort Hotel,1,170,2017,March,10,8,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.05,0,1,Canceled,Lauren Barr,fkemp@example.com,+1-784-782-9463x754,6574724460909912,2025-08-06 +Resort Hotel,1,144,2017,April,17,26,3,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,Jill Smith DDS,lmoore@example.org,351.475.7415x9091,4078857132270,2024-08-31 +Resort Hotel,0,152,2017,May,20,16,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,9.0,179.0,0,Transient,250.43,1,3,Check-Out,Carmen Jordan,danielflores@example.net,262-398-0614,4841974978354794,2025-04-22 +City Hotel,0,12,2017,June,25,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,231.0,0,Transient-Party,86.04,0,0,Check-Out,Mary Johnson DDS,lynnhoffman@example.net,(585)930-3417,3558095582900494,2025-11-22 +City Hotel,0,49,2017,July,29,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.07,0,0,Check-Out,Sally Fernandez,floresstephen@example.org,5919236358,180012540939656,2024-06-15 +City Hotel,0,0,2017,October,43,25,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,B,0,No Deposit,11.0,59.0,0,Transient,78.31,0,2,Check-Out,Brandon Brown,dawnfletcher@example.net,+1-434-555-6467x7492,6011189785669651,2025-09-05 +City Hotel,0,42,2017,October,43,25,1,3,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,211.0,0,Transient-Party,108.43,0,0,Check-Out,Maurice Johnson,levyelizabeth@example.org,539-615-1037,3588707158789820,2025-06-05 +City Hotel,1,193,2017,March,11,9,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,H,2,No Deposit,10.0,179.0,0,Transient,112.33,0,2,Check-Out,Lori Davis,powersjay@example.net,001-521-337-3328,180022711337739,2024-05-31 +Resort Hotel,0,148,2017,November,44,1,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,161.0,179.0,0,Transient-Party,46.54,0,2,Check-Out,Taylor Acevedo,april93@example.org,385.769.9892x5870,30400260902974,2025-09-16 +City Hotel,0,0,2017,December,50,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,60.0,0,Transient,50.86,0,1,Check-Out,Cynthia Cohen,deborahvance@example.com,858-741-2736x5474,180064249070366,2024-11-28 +Resort Hotel,0,179,2017,March,11,16,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,214.81,0,0,Check-Out,Laura Larson,robert79@example.com,781.268.2054x3620,3537478475374512,2025-04-16 +Resort Hotel,0,14,2017,January,4,25,2,0,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,331.0,0,Transient,42.32,0,0,Check-Out,Penny West,ihughes@example.com,290-813-8630,3595963542031327,2025-07-22 +City Hotel,0,12,2017,January,2,6,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,105.49,0,2,Check-Out,Brian Daugherty,mariahramirez@example.com,712-347-8537x24928,6011159042723047,2024-05-27 +Resort Hotel,0,180,2017,May,18,2,1,3,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,197.74,0,1,Check-Out,Monica Medina,eric89@example.net,817-310-9123,180083403266800,2025-02-08 +City Hotel,1,66,2017,September,38,19,2,5,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,78.58,0,0,Canceled,Tracey Reilly,clayscott@example.com,(734)206-6176x18214,36627300160965,2024-05-17 +Resort Hotel,0,23,2017,March,10,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,98.99,0,1,Check-Out,Robin York,samuel58@example.com,498-539-5454x163,3527932157008337,2025-01-11 +Resort Hotel,0,235,2017,June,23,5,1,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,47.99,0,2,Check-Out,Tanya Shannon,zdunn@example.com,001-824-576-4894x55817,2720243223237810,2025-05-06 +Resort Hotel,0,165,2017,August,32,9,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,173.0,179.0,0,Transient-Party,65.51,0,1,Check-Out,Charles Chang,christopher92@example.com,+1-376-832-8752x380,4008144035000850,2025-03-02 +Resort Hotel,1,257,2017,September,38,20,2,5,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,3,No Deposit,174.0,179.0,0,Transient-Party,44.32,0,0,Canceled,Spencer Kelly,shaneallen@example.com,461-715-5702x14166,3519238684681418,2024-09-19 +Resort Hotel,0,143,2017,November,48,29,1,3,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,101.31,1,0,Check-Out,Tammy Duncan,melaniejensen@example.net,+1-285-939-8794x56878,4209359187898,2024-07-12 +City Hotel,0,1,2017,April,16,20,0,1,2,1.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,1,No Deposit,2.0,179.0,0,Transient-Party,60.21,0,0,Check-Out,Jonathon Kim,christopher52@example.org,253.532.1157x144,564119109051,2025-08-07 +Resort Hotel,0,42,2017,March,11,16,1,5,2,0.0,0,Undefined,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient-Party,49.72,0,3,Check-Out,Christopher Cain,nhester@example.com,408.939.2135,374979108358675,2024-08-08 +Resort Hotel,0,155,2017,February,9,25,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,47.07,0,2,Check-Out,Anthony Wells,millersteven@example.net,956-263-1160,4971109050142146,2024-12-27 +City Hotel,1,440,2017,April,14,5,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,206.96,0,0,Canceled,Brandon Kirby,oallen@example.org,+1-257-219-2957x470,3559449847361605,2024-05-27 +City Hotel,0,89,2017,December,2,30,0,2,2,1.0,0,BB,NLD,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,137.88,0,3,Check-Out,Jamie Miller,justin77@example.com,001-251-346-4240x6005,3506881002313563,2024-12-21 +City Hotel,0,258,2017,January,2,8,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,98.73,0,0,Check-Out,Anna Wong,sean63@example.net,5006153148,371428697850612,2024-08-10 +City Hotel,0,37,2017,November,48,29,1,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,127.87,0,1,Check-Out,Christopher Macdonald,ehopkins@example.org,303-892-8292,4229041952996,2024-09-22 +City Hotel,0,68,2017,October,40,1,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,84.16,0,2,Check-Out,Leslie Moody,carlosherrera@example.org,001-493-557-5760x242,3566908603186630,2024-05-10 +City Hotel,1,14,2017,October,41,7,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,71.53,0,0,Canceled,Jessica Mckee,ktucker@example.com,8325476422,2249362058087132,2025-09-13 +City Hotel,0,2,2017,May,21,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,45.0,0,Transient-Party,0.74,0,0,Check-Out,Nicholas Myers,goldenelizabeth@example.net,593.512.0897,213174268408016,2025-04-26 +City Hotel,0,105,2017,January,4,22,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.11,0,0,Check-Out,Meagan Charles,tkim@example.com,378.705.1725x605,3531241072273586,2025-03-18 +City Hotel,0,253,2017,June,23,8,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,68.2,0,0,Check-Out,Amber Williams,stephanierivera@example.net,961.412.9329x559,4375267353508,2026-01-14 +City Hotel,1,294,2017,August,31,1,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.65,0,0,Canceled,Micheal Green,ortegamaureen@example.com,001-317-703-5398,4020173671114208,2025-11-11 +Resort Hotel,0,12,2017,September,36,4,1,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,3,No Deposit,240.0,179.0,0,Transient,41.97,0,1,Check-Out,Rachel Henderson,richard21@example.com,001-716-289-9766x824,30526767020736,2024-06-25 +Resort Hotel,0,22,2017,October,42,18,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,0,A,D,0,No Deposit,9.0,179.0,0,Group,43.03,0,1,Check-Out,Andrew Lam,joserussell@example.org,337.814.4713,3560021318768621,2025-05-23 +Resort Hotel,1,200,2017,April,14,2,1,0,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,284.0,179.0,0,Transient-Party,85.12,0,0,Canceled,Cassandra Mitchell,xmathews@example.org,+1-675-528-6652,6532522028009915,2024-08-02 +City Hotel,1,412,2017,May,20,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,12.0,179.0,0,Transient,69.53,0,0,Canceled,Melissa Grant,jesse21@example.com,823-528-8157x222,30388557885087,2025-03-28 +City Hotel,1,93,2017,May,21,22,1,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Contract,175.39,0,3,Canceled,James Rodriguez,rhodesjesus@example.net,001-641-678-7848x60954,4152949815158,2025-08-17 +City Hotel,0,367,2017,June,23,4,2,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,94.66,0,0,Check-Out,Lauren Trevino,courtneyshaw@example.com,001-475-955-3075,3534091940924903,2024-08-07 +City Hotel,0,19,2017,November,48,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,1,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,65.75,1,0,Check-Out,Margaret White,schmidtmariah@example.com,458.309.1819x158,341582582573551,2025-08-15 +City Hotel,0,159,2017,November,46,14,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,132.98,0,2,Check-Out,Stacey Howe,gedwards@example.net,545-411-4048x357,4912736861630430,2025-05-04 +City Hotel,0,0,2017,January,4,22,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,29.0,45.0,0,Transient-Party,2.78,0,0,Check-Out,Diane Bishop,samuel60@example.org,757.716.2846x8915,213182010117181,2024-11-02 +Resort Hotel,1,93,2017,August,32,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,10.0,179.0,0,Transient,81.84,0,0,Canceled,David Baker,xsmith@example.net,001-882-929-2500x5527,4802241840359,2024-04-25 +City Hotel,0,107,2017,April,15,10,0,5,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,B,B,2,No Deposit,13.0,179.0,0,Transient,109.85,0,1,Check-Out,Allison Chavez,ashley96@example.com,2176693915,575373643486,2024-11-25 +City Hotel,1,117,2017,November,47,21,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,125.0,179.0,0,Transient,61.3,0,0,Canceled,Austin Smith,rodriguezphyllis@example.net,001-889-785-9239x499,6510713567602162,2024-07-22 +City Hotel,1,239,2017,June,26,25,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient,127.78,0,0,No-Show,Ashley Thomas,mike22@example.com,356.457.0642x9220,4486260659039,2025-05-24 +Resort Hotel,0,3,2017,December,51,22,2,0,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,80.87,0,0,Check-Out,Mrs. Olivia Petersen,christian24@example.com,(633)673-6660,675958101478,2025-12-06 +City Hotel,1,19,2017,October,40,3,2,3,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.14,0,0,Canceled,Joshua Martinez,matthew95@example.net,001-890-568-0480x5106,060459004283,2025-06-01 +City Hotel,0,18,2017,July,30,25,0,1,1,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,D,B,1,No Deposit,13.0,179.0,0,Transient-Party,133.77,0,0,Check-Out,Laura Clarke,yhoffman@example.org,309.201.9333,2282004018918364,2024-12-19 +Resort Hotel,0,15,2017,January,5,27,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,3,No Deposit,248.0,179.0,0,Transient,136.92,0,0,Check-Out,Joseph Patel,danny83@example.org,582-556-8131x50836,3566731813771045,2024-12-11 +Resort Hotel,0,14,2017,May,18,1,1,4,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,163.6,1,0,Check-Out,Lisa Beard,shepardhector@example.com,879-759-6724x016,30474586011281,2025-08-27 +City Hotel,0,149,2017,September,38,20,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,50.17,0,0,Check-Out,David Mendoza,millerdenise@example.net,(243)637-6074x7344,376568827312440,2024-07-18 +City Hotel,1,46,2017,May,18,2,1,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.84,0,2,Canceled,Nicole Wallace DDS,brownchristopher@example.com,+1-987-272-9552x548,341101106006228,2024-07-02 +City Hotel,1,47,2017,August,31,3,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,91.0,0,0,No-Show,Marcus Brown,johnsonkathy@example.net,(216)644-0078,060428907244,2024-09-26 +City Hotel,1,88,2017,July,27,4,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,E,2,No Deposit,13.0,179.0,0,Transient,80.71,0,0,No-Show,Daniel Gallegos,scott55@example.com,875-202-3309x0857,6509635145384356,2025-12-20 +Resort Hotel,1,165,2017,November,46,11,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,79.53,0,1,Canceled,Nicole Hardy,pcohen@example.com,596.888.4197,589055912655,2024-05-04 +City Hotel,0,313,2017,April,14,5,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Group,103.64,0,0,Check-Out,Pedro Greene,edwardwhite@example.net,001-747-367-2297x7320,343178354313942,2025-05-03 +Resort Hotel,0,0,2017,October,43,29,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,43.35,1,0,Check-Out,Yvette Marks,lopezvirginia@example.net,470-685-0371x63244,4129566439066489,2024-05-29 +City Hotel,0,144,2017,March,11,12,2,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,123.07,0,1,Check-Out,Ashley Lewis,piercemadeline@example.org,538-524-9937x0426,4776276322407032,2024-11-18 +Resort Hotel,1,117,2017,December,49,9,1,7,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,E,E,0,No Deposit,199.0,179.0,0,Transient,135.57,0,0,Canceled,Stephanie Peterson,zmyers@example.net,289.513.4501x272,4122808700508999635,2026-01-11 +City Hotel,1,33,2017,April,15,8,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,167.14,0,0,Canceled,Mrs. Dawn Hawkins,cindy35@example.net,+1-970-616-4830x1092,4157508901717873061,2026-03-18 +City Hotel,1,80,2017,January,2,7,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.52,0,0,Canceled,Gary Greer,warrenpeter@example.net,779-925-1306,340517109172942,2025-09-11 +City Hotel,1,71,2017,January,2,7,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,Non Refund,11.0,179.0,0,Transient,241.45,0,0,Canceled,Christopher Knox,kclark@example.com,(509)348-6690x021,5221102562824504,2025-04-30 +City Hotel,1,313,2017,June,22,1,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,109.54,0,0,Canceled,Eric Thomas,william56@example.org,(471)318-3885,6587383526003916,2025-07-14 +City Hotel,0,32,2017,August,35,30,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,120.42,0,3,Check-Out,Brent Stewart,prodriguez@example.org,+1-958-672-4573x0351,373070622260059,2025-07-20 +City Hotel,1,20,2017,June,23,8,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,102.2,0,1,Canceled,Corey Roberts,jbrown@example.com,001-344-401-6549x0923,30128621439242,2026-01-12 +Resort Hotel,0,199,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient-Party,60.78,1,0,Check-Out,Keith Morales,philip98@example.com,8004526647,4088721814995,2025-04-17 +City Hotel,0,149,2017,December,50,10,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,95.92,0,0,Check-Out,Perry Washington,anne90@example.net,001-870-450-4585,3571807206149354,2025-03-28 +City Hotel,1,120,2017,February,6,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,75,Transient,78.36,0,0,Canceled,Nicole Barton,graysarah@example.org,001-403-708-8249x0487,4604503700154250,2025-09-09 +City Hotel,0,117,2017,June,25,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,71.0,0,Transient,82.39,0,0,Check-Out,David Medina,tanner30@example.com,978.626.6752x32554,4464124492036891,2024-07-15 +City Hotel,0,372,2017,June,23,9,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,80.2,0,0,Check-Out,Lydia Payne,sandrasimmons@example.com,001-974-490-9794x05914,377913365243947,2025-03-19 +City Hotel,0,61,2017,November,48,26,2,3,2,1.0,0,BB,AUT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,84.47,1,0,Check-Out,Monica Cline,wayne89@example.net,719-599-1386x74716,4092671877465822,2024-07-16 +City Hotel,0,94,2017,March,9,4,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,28.0,179.0,0,Contract,126.69,0,1,Check-Out,Juan Davis,rthompson@example.com,001-880-985-9041x95573,3544981716567399,2025-05-09 +Resort Hotel,0,3,2017,September,39,26,0,2,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,5.72,1,0,Check-Out,Devin Black,paul31@example.org,580-718-6071,4796934022597208051,2024-11-20 +City Hotel,0,41,2017,July,28,11,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,28.0,179.0,0,Transient,96.6,0,0,Check-Out,Rachel Franco DDS,laura09@example.org,001-820-447-7229x757,36670123116558,2025-06-29 +City Hotel,0,99,2017,November,45,7,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,96.38,0,1,Check-Out,Lori Valentine,ptorres@example.net,(745)858-3998,3561435791511366,2025-06-06 +City Hotel,0,91,2017,March,13,30,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,113.22,0,0,Canceled,Lisa Ryan,chapmanchristopher@example.org,819-213-3926x4268,4508435860610291,2024-07-02 +Resort Hotel,1,4,2017,September,36,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,101.24,0,0,Canceled,Danielle Hester,devonwhite@example.org,223-798-9914x348,4765486591533094,2025-10-19 +City Hotel,0,50,2017,September,37,10,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.93,0,1,Check-Out,Luke Alexander,diana28@example.com,351-256-5843x884,676266475315,2025-02-12 +City Hotel,0,106,2017,June,23,8,1,2,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,94.49,1,0,Check-Out,Jane Edwards,clarkwilliam@example.org,(254)408-7674x599,3503708101534059,2025-10-20 +City Hotel,0,10,2017,February,8,20,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.63,0,0,Check-Out,Ann Peterson,kelly16@example.net,502.645.6225x926,4628092075416322,2024-11-16 +Resort Hotel,0,20,2017,June,24,11,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,2,No Deposit,17.0,201.0,0,Transient,80.46,0,0,Check-Out,Erik Keller,frederick37@example.org,+1-971-855-1345x180,3537369180745817,2024-08-08 +City Hotel,0,0,2017,June,23,8,1,4,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient,102.56,0,0,Canceled,Louis Bowen,mirandamichele@example.com,477-796-8000,213152603370851,2025-06-26 +City Hotel,0,0,2017,January,5,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,139.2,0,2,Check-Out,Amy Mcdaniel,ealvarez@example.net,(822)666-4979,4726090957982,2025-10-11 +Resort Hotel,0,1,2017,June,23,9,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,17.0,179.0,0,Transient,41.74,1,0,Check-Out,Isaiah Terry,potterjamie@example.org,001-824-265-9645,4654558475174684,2025-09-09 +City Hotel,0,8,2017,August,34,26,1,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.83,0,1,Check-Out,Michael Bell,pjohnson@example.com,2152581556,6525255383858258,2024-12-06 +Resort Hotel,0,16,2017,June,22,2,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,48.22,0,1,Check-Out,Blake Vega,shicks@example.org,790.366.9969x5782,3507398439994401,2024-05-17 +City Hotel,0,4,2017,August,32,5,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,144.42,0,1,Check-Out,Ronnie Medina,ronaldfriedman@example.net,434.291.6853,4625584903306918,2024-10-21 +Resort Hotel,1,9,2017,November,44,3,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,47.82,0,2,Canceled,Rhonda Clark,robert31@example.org,521.841.6885x88376,4087056590842845,2024-10-31 +Resort Hotel,0,151,2017,April,17,26,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,209.44,0,1,Check-Out,Jason Fletcher,donaldjoyce@example.net,001-972-935-3172x13110,4348408442373,2025-05-14 +City Hotel,0,7,2017,December,50,9,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,17.0,223.0,0,Transient,44.39,1,1,Check-Out,Jose Green,lisa37@example.net,4136910134,4839888200628037,2025-01-24 +City Hotel,0,17,2017,February,7,16,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,129.14,0,0,No-Show,Anthony Washington,ebenjamin@example.org,846.202.3824x52236,4880617744584507031,2026-02-10 +City Hotel,0,7,2017,June,23,5,2,1,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Contract,135.08,1,0,Check-Out,Kristopher Curtis,burgessamy@example.net,+1-505-255-5379x48969,6585683584890969,2025-03-10 +City Hotel,1,83,2017,October,43,25,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,223.0,0,Transient,79.82,0,0,Canceled,Chad Moreno,chrishenderson@example.net,368-282-1680x81465,4489142032123338447,2025-08-10 +City Hotel,0,56,2017,July,30,28,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,80.92,0,1,Check-Out,Cassidy Carter,kathleen99@example.com,567-982-2297,4046337979686387,2025-05-24 +Resort Hotel,0,139,2017,February,6,4,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,38.68,0,0,Check-Out,James Grimes,dillonharris@example.org,467.443.6651,4579466704734037784,2025-07-06 +City Hotel,1,2,2017,November,46,14,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,76.27,0,0,Canceled,Natalie Hawkins,hernandezstephanie@example.com,(606)468-4457x344,373899748640004,2025-06-01 +City Hotel,1,97,2017,August,35,30,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,127.0,179.0,0,Transient,91.14,0,2,Canceled,Jonathan Williams,jilljackson@example.org,536-871-7018,4699604873856766,2025-05-01 +City Hotel,0,22,2017,April,16,18,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,236.0,179.0,0,Transient,252.0,0,1,Check-Out,Deborah Smith,woodsdavid@example.org,(266)809-6839x0147,348847657157991,2025-03-20 +City Hotel,0,157,2017,December,52,26,1,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,8.0,179.0,0,Transient,148.44,0,1,Check-Out,Emily Henderson,sandratate@example.com,001-588-739-0320x374,341922143371931,2024-11-02 +City Hotel,0,31,2017,November,47,24,1,2,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,3,No Deposit,15.0,179.0,0,Transient,110.55,0,0,Check-Out,Peter Morgan,alvaradoshannon@example.org,994.482.4667,3516956272413299,2024-08-09 +Resort Hotel,0,80,2017,November,44,2,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Group,52.6,0,0,Check-Out,Laura Patton,njimenez@example.net,+1-529-777-4183x5254,4752468007160060663,2025-10-18 +City Hotel,1,217,2017,May,22,31,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,75,Transient-Party,135.56,0,0,Canceled,Francis Walker,meaganevans@example.net,270.699.8109x29712,4908595082471800,2024-09-14 +City Hotel,0,5,2017,October,42,14,2,0,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,40.79,0,3,Check-Out,Renee Johnson,kevin75@example.net,(651)772-3537x094,6504371562679137,2025-07-17 +City Hotel,0,58,2017,June,25,24,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,124.75,0,2,Check-Out,Scott Wood,ojones@example.org,(653)928-4873,30207656856650,2026-01-20 +City Hotel,1,171,2017,June,24,10,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,250.0,0,Transient,51.94,0,0,Canceled,Sherri Logan,lindsey68@example.com,938-424-5250x705,6526207249373252,2025-06-27 +Resort Hotel,1,276,2017,March,13,28,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Canceled,Cathy Barnes,davewilliams@example.com,+1-981-522-1552,6011768382066815,2025-11-12 +City Hotel,1,143,2017,April,16,15,1,4,2,0.0,0,SC,BRA,Direct,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,206.2,0,0,Canceled,Amy Sanders,paulphillips@example.net,(611)295-6915x95918,345902289203086,2024-08-05 +Resort Hotel,0,1,2017,December,51,19,1,2,2,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,0,No Deposit,15.0,331.0,0,Transient,0.0,0,0,Check-Out,Lee Perez,kmercado@example.com,001-585-827-0458x49286,213145675037747,2025-06-03 +City Hotel,0,37,2017,November,47,24,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,79.21,1,1,Check-Out,Michael Leonard,xrice@example.net,2436047583,4894469531334066,2024-12-01 +City Hotel,0,9,2017,June,23,4,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,34.0,179.0,0,Transient,136.09,0,0,Check-Out,Cody Thompson,jeanneaguirre@example.net,001-586-362-7177x860,4845804386922,2025-10-09 +Resort Hotel,1,9,2017,November,47,20,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,141.0,179.0,0,Transient,81.34,0,0,No-Show,Victor Yates,leemichael@example.net,365.642.3777x9376,180044594469934,2025-07-13 +Resort Hotel,1,49,2017,April,16,19,2,5,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,202.09,0,1,Canceled,Stanley Benson,wesley72@example.com,+1-568-723-3504x2424,6011866605033446,2025-12-09 +City Hotel,0,402,2017,March,12,18,1,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,127.2,0,0,Check-Out,James Gallagher,erinneal@example.com,781-459-9444,30060716720782,2024-08-26 +Resort Hotel,0,47,2017,December,50,12,2,5,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,136.75,0,3,Check-Out,Jeanette Garcia,austin27@example.net,+1-334-597-6585x014,3531990132538400,2024-07-15 +City Hotel,1,108,2017,May,19,10,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,63,Transient-Party,82.62,0,0,Canceled,Michael Garcia,obrienpaul@example.org,200-961-8266x568,213163272849919,2025-07-19 +Resort Hotel,0,0,2017,August,32,7,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,64.31,1,1,Check-Out,William Gordon,reesegilbert@example.net,(710)262-8574x759,30079539596989,2025-06-28 +City Hotel,0,93,2017,July,28,9,2,5,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,34.0,179.0,0,Transient-Party,102.89,0,0,Check-Out,Kim Holmes,holsen@example.net,532-852-6023x352,4464615626236827591,2025-05-30 +City Hotel,0,1,2017,December,51,20,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,22.0,179.0,0,Transient,142.23,0,2,Check-Out,Anthony Hodges,burnsryan@example.com,(830)467-5354,4259177741960724,2024-07-01 +Resort Hotel,0,83,2017,August,33,19,0,5,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,314.0,179.0,0,Transient-Party,87.62,0,0,Check-Out,Alexis Wells,ashley70@example.com,8338190166,370741342220325,2024-11-03 +City Hotel,0,94,2017,December,49,5,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,86.61,0,2,Check-Out,Jennifer Dawson,beth90@example.net,001-257-464-9791,213126735805380,2025-09-17 +City Hotel,0,146,2017,November,46,13,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.66,0,1,Check-Out,Bethany Baxter MD,hartrichard@example.net,(410)756-3254x293,30486876481628,2025-08-19 +Resort Hotel,0,266,2017,April,16,21,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,51.81,0,1,Check-Out,Teresa Wallace,jeffrey35@example.com,001-645-751-3108,3503004323847259,2025-09-19 +City Hotel,1,97,2017,August,32,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,145.0,179.0,0,Transient-Party,80.84,0,0,No-Show,Alexis Pham,jacobcook@example.org,432.396.2510x8661,4329140683826853,2025-12-20 +City Hotel,1,101,2017,December,52,24,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,230.53,0,1,Check-Out,Zachary Ortiz,charlesjones@example.org,(209)667-6323,3542136838652981,2025-04-24 +Resort Hotel,0,1,2017,November,44,3,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Group,3.5,0,2,Check-Out,Christopher Burnett,csmith@example.org,001-999-240-8979x7747,3585374306685153,2025-02-24 +Resort Hotel,1,264,2017,July,30,27,2,5,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,41.0,179.0,0,Transient,52.77,0,0,Canceled,Nicholas Calhoun,medinadonald@example.org,+1-861-731-6818x326,4268600869267894,2024-10-28 +Resort Hotel,0,59,2017,April,15,6,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,33.0,179.0,0,Contract,206.71,0,0,Check-Out,Joseph Perez,howarddavid@example.org,+1-556-949-9702x3865,4543052861254,2026-01-21 +City Hotel,1,97,2017,October,43,25,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,13.0,45.0,0,Transient,64.4,0,0,Canceled,Karen Perez,weaverjimmy@example.net,(621)784-5863,4387867087896558,2026-01-27 +City Hotel,0,52,2017,November,46,13,1,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,105.86,0,0,Check-Out,Kevin Cruz,patrick08@example.net,929-686-5866x7687,5578231188959805,2024-11-25 +City Hotel,0,20,2017,March,10,5,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Contract,135.89,0,3,Check-Out,Amber Spencer,carterpatrick@example.com,001-365-757-6558,3503583833648752,2024-05-02 +Resort Hotel,0,0,2017,October,43,21,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,43.56,1,0,Check-Out,Madison Richardson,houstonalexis@example.org,796-513-2438,4661454046052164,2025-12-21 +City Hotel,0,94,2017,March,11,16,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.8,0,0,Check-Out,Jose Collins,theodore82@example.com,(600)854-4963x417,4808926389638,2024-04-22 +Resort Hotel,0,77,2017,January,2,2,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,103.2,1,1,Check-Out,Justin Potter,ksummers@example.net,2975663025,36961232503178,2025-03-16 +City Hotel,0,0,2017,September,38,21,0,2,3,0.0,0,BB,BRA,Direct,Direct,0,0,0,H,D,0,No Deposit,10.0,179.0,0,Transient,48.1,0,1,Check-Out,Sherry Cox,mackrebecca@example.org,(586)461-9410x147,3599444140781833,2026-01-24 +City Hotel,1,44,2017,April,15,11,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,132.02,0,0,Canceled,Tiffany Williams,gibbsrobert@example.org,001-828-581-1826x343,6532291091702547,2025-02-11 +City Hotel,0,4,2017,October,43,26,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,81.24,0,2,Check-Out,Jessica Torres,orobertson@example.net,+1-836-958-9804x373,372641785208027,2026-01-02 +Resort Hotel,0,97,2017,January,2,1,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,378.0,179.0,0,Transient,138.94,0,2,Check-Out,Matthew Morgan,steven60@example.org,001-618-611-0015,213118159877672,2024-04-25 +City Hotel,1,82,2017,December,50,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,134.0,179.0,42,Transient,141.1,0,0,Canceled,Craig Beard,mvaughan@example.org,979.862.9690x6858,6011881415326724,2024-08-06 +City Hotel,1,74,2017,January,3,19,2,3,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,137.68,0,3,Canceled,Tony Moore,wsmith@example.org,581-454-6329,2720992617044931,2024-04-05 +City Hotel,1,15,2017,March,12,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,83.43,0,0,Canceled,Jillian Carrillo,haleyyoder@example.com,001-658-784-7607x99837,3577692223870768,2024-09-19 +Resort Hotel,0,236,2017,January,3,14,0,4,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,283.0,179.0,0,Transient-Party,50.23,0,0,Check-Out,Nancy Rowland,longtammy@example.org,001-474-768-3336,4050080183230,2025-05-12 +City Hotel,1,14,2017,October,43,24,2,2,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,160.0,179.0,0,Transient,35.31,0,0,Canceled,Lisa Ochoa,judymueller@example.org,3106052474,4696421471925042686,2025-12-18 +Resort Hotel,1,258,2017,December,2,30,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,11.0,179.0,0,Transient,98.62,0,0,Canceled,Jeffrey Ayala,eric41@example.net,689-211-7823,5543504435568518,2024-08-24 +City Hotel,0,8,2017,January,5,28,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,22.0,179.0,0,Transient,135.03,0,2,Check-Out,Dana Carter,qfranklin@example.net,(821)593-3596x17153,4660991635910,2024-10-25 +Resort Hotel,0,48,2017,January,2,8,2,5,1,0.0,0,BB,NLD,Corporate,Direct,0,0,0,A,A,1,No Deposit,342.0,222.0,0,Transient-Party,49.45,0,0,Check-Out,Natalie Burns,ryan46@example.net,001-998-649-2522x1040,373996600170821,2024-08-26 +Resort Hotel,0,42,2017,June,23,5,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,46.27,1,2,Check-Out,Sean Peters,zgray@example.net,220.767.0040,6553912302831163,2025-09-16 +Resort Hotel,0,38,2017,May,18,5,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,46.28,0,0,Check-Out,Christopher Jones,robert14@example.org,(997)707-7858,370768874915303,2024-12-21 +Resort Hotel,0,12,2017,March,13,25,1,4,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,133.32,1,0,Check-Out,Miguel Pena,alan00@example.net,234.567.7047,3549973581096336,2024-05-21 +Resort Hotel,1,110,2017,October,40,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Contract,49.65,0,0,No-Show,Ryan Lawson,lewisshelley@example.com,+1-968-692-0973x04764,6011867967453131,2026-02-26 +City Hotel,0,422,2017,May,19,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,160.58,0,0,Check-Out,David Williams,james84@example.com,(980)633-5573x732,4322353722796030,2024-09-26 +City Hotel,1,186,2017,January,4,26,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,82.67,0,0,No-Show,Mark Johnson,smiththomas@example.net,646.812.0032x094,5260348703402252,2024-12-13 +City Hotel,0,406,2017,March,10,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,18,Transient,87.5,0,0,Check-Out,Rebecca Perez,jameswhite@example.com,689.750.0288x033,4584842106378,2025-06-17 +City Hotel,1,85,2017,December,49,4,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,65,Transient,95.15,0,0,No-Show,Kathryn Thomas,jeffreysimmons@example.org,591-764-2567x3601,2221925079974454,2025-06-24 +Resort Hotel,0,150,2017,November,48,26,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,220.0,0,Transient-Party,84.36,0,0,Check-Out,Crystal Abbott,monicaclark@example.org,336.530.6041x50024,676368718489,2025-06-17 +Resort Hotel,0,90,2017,December,49,8,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,138.8,1,1,Check-Out,Alexandra Hodge,mark15@example.com,(305)469-1191x360,2401783596873630,2025-07-11 +City Hotel,1,158,2017,February,7,10,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,241.0,179.0,0,Transient,136.16,0,0,Canceled,Rachel Yang,ruizrichard@example.com,(727)530-1667x3822,2534206490909326,2024-08-28 +City Hotel,0,33,2017,April,17,27,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,238.13,0,1,Check-Out,Michelle Sanders,blutz@example.org,6552528405,3542936035143720,2025-09-27 +City Hotel,0,30,2017,February,8,19,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,7.0,179.0,0,Transient,162.93,0,0,Check-Out,Dustin Stein,halebrent@example.org,373-373-1760x3648,3510106216438608,2024-11-24 +City Hotel,0,1,2017,May,21,23,0,1,1,0.0,0,BB,CN,Direct,Direct,0,0,0,A,G,0,No Deposit,184.0,179.0,0,Transient,226.34,0,3,Check-Out,Haley Jackson,carmen18@example.com,580-430-5802,4746319037290652,2025-09-13 +City Hotel,1,105,2017,August,32,5,0,2,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,75,Transient,87.52,0,2,No-Show,Thomas Moses,dawnadams@example.net,756.703.5682,4786788271075535,2025-07-02 +Resort Hotel,0,1,2017,January,2,4,1,0,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,90.64,1,2,Check-Out,Jeffrey Petersen,cindygarrett@example.org,001-418-598-5399,213110862500493,2026-01-12 +City Hotel,0,29,2017,April,15,12,2,2,2,0.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,141.21,0,1,Check-Out,Joseph Ward,william91@example.com,377.516.4375,676247036194,2024-10-09 +City Hotel,1,160,2017,August,32,7,2,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient-Party,87.33,0,0,No-Show,Lance Robinson,andersontara@example.net,821.601.3953x848,676307947926,2025-09-21 +City Hotel,0,24,2017,June,25,20,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,270.0,179.0,0,Transient,103.71,0,2,Check-Out,Kristen Smith,ostuart@example.org,001-620-429-0842x913,2609967039328217,2025-04-13 +City Hotel,1,139,2017,October,41,9,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,124.0,0,0,No-Show,Nicole Mcbride,tara55@example.net,001-250-440-6584x4360,6557682001199875,2025-01-14 +Resort Hotel,0,144,2017,March,10,4,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,127.36,0,0,Check-Out,Daisy Larson,wongwesley@example.com,773.933.1002,371070061938878,2024-10-17 +Resort Hotel,0,155,2017,November,48,25,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,101.95,0,1,No-Show,Jesus Shaw,dbarton@example.com,001-881-574-2496x3233,3562636489473996,2025-07-09 +Resort Hotel,1,46,2017,December,51,20,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient-Party,50.36,0,1,Canceled,Shelly Moss,arroyojason@example.net,795-822-3499x3672,503806656180,2024-06-20 +City Hotel,1,444,2017,January,2,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,8.0,179.0,0,Transient,133.53,0,0,Canceled,Laura Coleman,jillarnold@example.org,001-857-825-2942,630470706759,2024-07-17 +City Hotel,0,0,2017,August,34,23,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,83.04,0,1,Check-Out,Kayla Moore,vbrown@example.net,+1-724-981-8211x031,4852318987634040104,2025-12-24 +City Hotel,0,44,2017,July,27,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,78.73,0,0,Check-Out,Melissa Brown,joshua68@example.net,2883203782,180044135082071,2025-05-11 +Resort Hotel,0,3,2017,November,47,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,42.84,1,1,Check-Out,Emily Riley MD,allen38@example.org,001-263-712-5908x281,4322334805300,2026-03-11 +City Hotel,0,15,2017,November,46,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,62.41,0,1,Check-Out,Donald Cole,williamespinoza@example.net,(436)363-0078x27349,4144458042018217,2024-06-06 +City Hotel,0,265,2017,November,45,10,2,2,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,105.71,0,1,Check-Out,James Johnson,melissa84@example.org,912-602-7150,3501557017490993,2025-11-10 +Resort Hotel,0,17,2017,May,19,9,2,5,3,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,129.39,0,1,Check-Out,Nicholas George,eugenepowell@example.com,928.413.0880,4504967818923800,2024-10-13 +City Hotel,0,36,2017,May,19,9,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.07,1,1,Check-Out,Jane King,shawn17@example.com,824.373.9523x167,3516036630839178,2024-12-14 +City Hotel,0,61,2017,April,16,16,1,1,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,144.52,0,1,Check-Out,Tanner Decker,jeremyharrell@example.net,(569)917-8663,3586340795853726,2025-08-15 +City Hotel,0,172,2017,February,6,7,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.78,0,0,Check-Out,Leslie Martin,jonesrobert@example.org,921-624-3249x19349,5518134676758130,2024-11-12 +City Hotel,0,21,2017,April,17,26,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,109.15,0,2,Check-Out,Keith Garcia,swilliams@example.net,001-978-708-6238,4050789685807272,2025-01-25 +City Hotel,1,135,2017,September,37,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,G,1,No Deposit,8.0,179.0,0,Transient,111.63,0,1,Canceled,Victoria Keller,emiller@example.net,8474807830,2388489102329144,2025-02-06 +Resort Hotel,0,0,2017,January,2,8,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,41.11,0,1,Check-Out,Mr. Robert Acevedo MD,christianjohnson@example.org,001-263-597-8416x609,4655867223207467,2025-01-22 +City Hotel,0,40,2017,January,2,8,0,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,103.43,0,0,Check-Out,Ms. Kayla Williams,pmartin@example.com,+1-641-519-8162x503,6011051741078221,2024-07-13 +City Hotel,1,99,2017,November,45,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,72.39,0,0,Canceled,Tammy Jackson,xedwards@example.net,001-614-291-4370,3532213136420908,2025-04-24 +City Hotel,1,96,2017,December,2,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,133.18,0,0,Canceled,Robert Smith,hamiltonandrew@example.org,+1-484-826-7804x04102,4169693416500194583,2025-08-06 +City Hotel,1,61,2017,February,6,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,103.42,0,0,Canceled,Stephen Smith,yjensen@example.org,993-597-3144,6011273074915312,2025-07-20 +City Hotel,1,3,2017,January,4,22,1,0,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,14.0,331.0,0,Transient,64.74,0,0,Canceled,Jasmin Hamilton,patrick11@example.net,(209)965-2782x98510,2478691575452078,2026-01-07 +Resort Hotel,1,96,2017,July,28,10,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,1,0,G,F,0,No Deposit,239.0,179.0,0,Transient,52.9,0,3,Canceled,Thomas Romero,andreaanderson@example.org,(553)364-4816x3935,4931412445269365707,2024-11-04 +City Hotel,1,154,2017,January,2,7,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,103.49,0,0,Canceled,Megan Grant,benitezlawrence@example.com,+1-585-551-2114x79972,4693696914931471,2025-08-14 +City Hotel,0,1,2017,May,20,19,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,51.61,0,0,Check-Out,Karen Hughes,jeffrey83@example.org,857.554.2281x528,4014612246592,2025-09-26 +Resort Hotel,0,147,2017,November,48,29,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,Refundable,12.0,222.0,0,Transient-Party,65.68,0,0,Check-Out,Bradley Phillips,mmorris@example.net,998-533-3592,4110973885596,2025-03-20 +City Hotel,0,43,2017,April,14,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Group,215.5,0,2,Check-Out,Robert Roberts,qgonzalez@example.net,574.833.7690,4223813975327,2025-06-13 +City Hotel,1,79,2017,June,25,22,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,23,Transient,96.28,0,0,Canceled,Cynthia Tran,waltervargas@example.net,(304)995-4286x4043,4274644233483704793,2025-09-13 +Resort Hotel,1,16,2017,February,6,10,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,12.0,65.0,0,Transient,106.82,0,2,Canceled,Marie Davidson,blackrichard@example.net,802.209.3848x98794,6011241942362660,2024-05-19 +City Hotel,0,19,2017,August,34,20,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,85.19,0,2,Check-Out,Jordan Williams,zflores@example.net,+1-456-773-7275x351,4834248944917607,2024-08-06 +City Hotel,0,33,2017,May,18,5,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,71.0,179.0,0,Contract,105.72,0,1,Check-Out,Mr. Paul Chase,urobinson@example.net,930-683-1640x940,676315749611,2025-08-13 +City Hotel,1,283,2017,February,7,14,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,94.17,0,0,Canceled,Chloe Parker,lauren64@example.net,714.391.3593x45641,6592388489828822,2024-07-18 +City Hotel,1,12,2017,November,48,25,1,0,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,91.31,0,1,Canceled,Leah Collier,geraldperry@example.net,001-314-537-9457x33201,3501211788682947,2025-01-08 +City Hotel,1,13,2017,October,42,15,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.03,0,0,Canceled,Amanda Gonzalez,matthewcooper@example.org,437-575-7165x787,213176628900426,2024-11-03 +City Hotel,1,253,2017,June,22,2,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,83.0,179.0,0,Transient,97.96,0,0,Canceled,Alice Conley,smithlauren@example.com,959.287.6430,4760994221237,2025-12-24 +Resort Hotel,0,16,2017,April,17,24,1,5,2,1.0,0,HB,AUT,Direct,Direct,0,0,1,E,I,3,No Deposit,14.0,179.0,75,Transient-Party,167.22,1,3,Check-Out,Clarence Wood,beckjean@example.com,(611)470-2731x46575,584510087110,2024-06-25 +Resort Hotel,0,142,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,43.74,0,2,Check-Out,Terri Cisneros,richard34@example.net,682-865-5397,6561644751763585,2024-08-13 +City Hotel,1,3,2017,April,17,25,0,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.5,0,0,Canceled,Jessica Jones,christina08@example.net,001-419-521-3175x30161,36015185525413,2024-12-09 +Resort Hotel,0,3,2017,March,12,24,3,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,101.03,0,0,Check-Out,Michael Graham,megan48@example.net,001-851-307-5086x045,376511051985820,2024-07-12 +Resort Hotel,0,16,2017,September,39,30,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,132.91,0,1,Check-Out,Mary Henderson,samanthaenglish@example.org,(383)498-9185,6011632947565655,2025-12-06 +Resort Hotel,0,45,2017,March,10,4,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,252.0,0,1,Check-Out,Adam Holland,khardy@example.com,283-548-8490x305,4366876208095090461,2026-03-20 +Resort Hotel,1,35,2017,August,33,16,1,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,181.0,179.0,0,Transient,90.64,0,0,Canceled,Elizabeth Miller,nhunter@example.com,001-659-696-5085x058,4610825114817715,2024-08-16 +City Hotel,0,159,2017,October,42,17,0,2,3,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.68,0,2,Check-Out,Ryan Kaiser,crawfordmary@example.net,+1-295-985-4896x81178,2237085394063400,2025-11-25 +Resort Hotel,0,34,2017,May,19,6,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,239.0,179.0,0,Transient,204.26,1,1,Check-Out,Douglas Morton,devinbernard@example.org,271-864-6666x301,38990680600572,2024-05-18 +Resort Hotel,0,29,2017,November,47,25,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,48.24,1,1,Check-Out,Ashlee Mendez,hughesthomas@example.com,738.621.2545x69388,3525347305463403,2026-02-04 +Resort Hotel,1,292,2017,April,15,13,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,88.19,0,0,Canceled,Leslie Barton,hwade@example.org,570-714-2554x92301,503825843306,2025-06-12 +Resort Hotel,0,14,2017,September,36,4,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,240.0,179.0,0,Transient,123.82,1,0,Check-Out,Joseph Smith,justinthompson@example.com,(655)997-5788x684,4406559600567603,2024-07-06 +Resort Hotel,0,0,2017,September,40,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,C,2,No Deposit,18.0,73.0,0,Transient,44.93,1,0,Check-Out,Paige Jordan,samueljimenez@example.com,(807)494-9706,30121839851423,2024-11-16 +City Hotel,0,200,2017,March,11,12,1,2,2,2.0,0,BB,FRA,Direct,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,241.51,0,1,Check-Out,Elizabeth Taylor,qsherman@example.org,+1-815-269-2215x45784,180077140837204,2025-05-01 +City Hotel,0,20,2017,November,45,8,2,1,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,172.18,0,2,Check-Out,Latoya Howell,esims@example.net,(754)402-9016,4143300811850209,2024-11-07 +City Hotel,0,48,2017,June,23,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,61,Transient-Party,109.99,0,0,Check-Out,Lawrence Glover,danielle00@example.org,001-991-494-2278,6576711561747356,2024-11-05 +Resort Hotel,1,100,2017,January,4,23,1,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,109.94,0,0,Check-Out,Kimberly Grant,waltonnancy@example.org,601.873.7531,30026657846530,2025-02-05 +City Hotel,1,37,2017,January,4,21,2,5,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,98.97,0,0,Canceled,Madison Wilson,johnbass@example.net,001-418-810-7777x834,4046139722245382538,2025-03-28 +Resort Hotel,0,47,2017,March,13,29,3,5,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,H,2,No Deposit,242.0,179.0,0,Transient,233.54,1,0,Check-Out,Melanie Davidson,jenniferhill@example.net,001-803-865-4618x3637,348615974451896,2025-10-22 +City Hotel,1,3,2017,June,24,13,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,61.0,0,Transient,166.06,0,2,No-Show,Angel Johnson,scottalan@example.org,001-473-556-3951x66266,30095186143818,2025-03-01 +City Hotel,0,1,2017,March,13,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,119.21,0,0,Check-Out,Jessica Cox,marytownsend@example.net,001-951-350-6460x333,4195103455383470,2024-05-28 +Resort Hotel,0,147,2017,April,17,24,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,252.0,1,3,Check-Out,Laura Mosley,danielguerrero@example.net,+1-854-451-6507x7781,4485332996343128,2024-04-09 +City Hotel,0,17,2017,November,48,29,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,40.74,0,0,Check-Out,Kurt Martinez,carpentersteven@example.com,437.747.5256,4129974573258,2024-08-04 +Resort Hotel,1,53,2017,March,13,26,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,238.0,179.0,0,Transient,93.83,0,0,Canceled,Brandi Ibarra,josephwright@example.com,001-463-943-8207,4414232417581890,2024-10-02 +Resort Hotel,1,3,2017,November,47,22,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,91.98,0,0,Canceled,Heather Sweeney,usampson@example.com,665-422-7225x69923,30560414105863,2025-12-31 +City Hotel,1,388,2017,June,26,30,1,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,59,Transient,107.35,0,0,Canceled,Laura Guerra,holmessamantha@example.com,977.485.9001x25260,30002339703720,2026-01-28 +City Hotel,0,0,2017,April,15,9,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,18.0,179.0,0,Transient,94.64,0,0,Check-Out,Adrian Levine,ghoffman@example.com,(520)667-7102x0119,4501611719140642,2024-10-12 +City Hotel,0,246,2017,February,6,7,1,2,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,88.6,0,0,Check-Out,Abigail Acevedo,jamiesanders@example.com,+1-791-460-6929x8517,30272941047622,2025-11-22 +City Hotel,0,1,2017,November,48,26,1,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,98.12,0,1,Check-Out,Isabella Taylor,ccollins@example.net,(838)776-0737x06852,4468857803378,2025-06-01 +City Hotel,1,141,2017,February,8,18,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,113.16,0,0,Canceled,Joel Rogers,cartersteven@example.net,378.213.8612x999,4235205346683034,2024-04-28 +Resort Hotel,0,8,2017,September,36,4,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,E,2,No Deposit,168.0,179.0,0,Transient,54.06,1,1,Check-Out,Tyler Murray,morrisonheidi@example.net,+1-480-469-8640,3563965118373494,2025-08-13 +Resort Hotel,0,0,2017,July,27,3,1,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,81.0,0,Transient,43.52,0,1,Check-Out,Michael Lambert,glennkristina@example.org,+1-835-313-4010x73019,4309174203514,2026-01-16 +City Hotel,1,0,2017,January,3,18,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,18.0,331.0,0,Transient,3.09,0,0,Canceled,Edward Guzman,meganbennett@example.com,001-912-556-5865x4711,213103004672338,2024-09-30 +City Hotel,1,0,2017,August,32,9,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,80.94,0,1,Check-Out,Anne Chambers,knightamanda@example.net,+1-252-966-8050x657,4330279889254,2024-06-05 +City Hotel,1,29,2017,March,13,29,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.51,0,0,Canceled,Kristen Ramirez,estephens@example.org,226-712-2815,180030234485703,2025-04-02 +City Hotel,1,316,2017,March,11,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,130.0,179.0,0,Contract,63.39,0,0,Canceled,Leslie Case,rpowell@example.net,(977)295-0172x390,3573019195018172,2025-10-23 +City Hotel,0,0,2017,November,47,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,80.28,0,1,Check-Out,Christopher Thomas,cruzmegan@example.net,(874)674-4181,4754729486945102,2024-09-26 +City Hotel,0,109,2017,May,21,26,2,4,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient-Party,229.82,1,3,Check-Out,Felicia Matthews,jessicaspence@example.com,(741)762-1928,4832113131264,2026-03-14 +City Hotel,0,254,2017,June,24,13,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,33.0,179.0,0,Transient-Party,73.99,0,0,Check-Out,Robert Keith,leonardwayne@example.net,+1-514-269-8030x32113,5296179730185950,2024-05-06 +Resort Hotel,1,329,2017,April,17,25,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,86.0,179.0,0,Transient-Party,124.09,0,2,Canceled,Deborah Simon,yhorton@example.com,322.746.7788,4339693916700,2025-04-07 +City Hotel,1,191,2017,January,2,11,3,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,76.47,0,0,Canceled,Carlos Morrow,ymora@example.com,691-717-8069,30018570697876,2024-11-19 +Resort Hotel,0,10,2017,November,45,8,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,52.07,0,1,Check-Out,Edward Tucker,mwatson@example.com,(396)288-1248x346,348877966961692,2025-06-12 +Resort Hotel,0,9,2017,May,19,10,1,3,1,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,Emma Chan,ualvarado@example.net,+1-343-844-1967x83326,4230818884396,2025-11-21 +City Hotel,0,86,2017,December,49,4,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,118.0,179.0,0,Transient,63.87,0,1,Check-Out,Ryan Thomas,ehenry@example.org,+1-898-465-2510x4030,3527402690974155,2025-01-26 +City Hotel,0,52,2017,February,8,19,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,D,0,No Deposit,11.0,179.0,0,Transient,131.63,0,3,Check-Out,Holly Rivas,williamssteven@example.org,712.668.2894x41718,675926447276,2025-10-10 +Resort Hotel,0,6,2017,September,37,11,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,99.26,1,2,Check-Out,Alicia Navarro,mwarren@example.net,(343)394-3852x2073,2296565184319243,2025-04-14 +Resort Hotel,0,148,2017,March,12,16,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,224.11,1,1,Check-Out,James Schaefer,kimberlyyoung@example.org,+1-564-988-0165x984,3552794282308554,2024-05-16 +City Hotel,0,58,2017,April,18,30,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,66.09,0,1,Check-Out,Jennifer Sampson,joshuabarton@example.net,206.322.3031x333,4929163160911301225,2025-11-08 +City Hotel,1,419,2017,May,21,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,81.46,0,0,Canceled,Daniel Taylor,housejennifer@example.com,001-611-728-8734x7106,6011408610678277,2024-11-09 +City Hotel,1,155,2017,August,35,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.65,0,0,Canceled,Julie Thompson,zhart@example.com,001-234-800-0936,30114629812820,2025-04-07 +City Hotel,1,1,2017,August,31,1,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,49.85,0,2,Check-Out,Justin Murphy,pwilliams@example.net,736-233-4228x30184,2251228256507616,2025-10-10 +Resort Hotel,1,30,2017,March,13,28,0,4,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,A,2,No Deposit,240.0,179.0,0,Transient,135.06,0,0,Canceled,Rachel Smith,jose60@example.net,678.660.2489x6914,676108519916,2025-03-17 +City Hotel,0,47,2017,July,28,13,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,127.0,0,0,Check-Out,Joseph Dougherty,eric73@example.org,(340)427-4079x810,4460502595374089443,2024-10-17 +City Hotel,1,102,2017,May,20,14,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,Non Refund,90.0,179.0,0,Transient,94.25,0,0,Canceled,Catherine Barker,wrightaaron@example.com,+1-749-821-0397x1075,377411141970073,2025-06-13 +City Hotel,1,34,2017,January,3,16,4,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,Non Refund,36.0,179.0,0,Transient-Party,163.63,0,0,Canceled,Cynthia Taylor,lbecker@example.org,733.487.1801,6592984646540175,2024-12-17 +City Hotel,1,104,2017,March,9,3,1,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,42,Transient-Party,131.04,0,0,Canceled,James Peck,birdtonya@example.net,219-574-8202,4488809936843512,2024-03-31 +City Hotel,1,92,2017,February,9,26,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.61,0,2,Canceled,Rebecca Brooks,briannamontoya@example.com,7779431817,377416113495322,2025-02-14 +City Hotel,0,139,2017,February,8,24,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.07,0,1,Check-Out,Mr. Gregory Hart,wsanders@example.org,001-953-908-9839x91753,4186016957860939,2024-07-04 +City Hotel,1,148,2017,February,9,28,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,25.0,179.0,40,Transient,107.19,0,0,Canceled,Tiffany Davis,huntamanda@example.com,(231)442-8758x6583,676384953698,2024-07-04 +City Hotel,0,56,2017,July,28,13,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.63,0,0,Check-Out,Vanessa Bishop,gonzalesjessica@example.net,(261)421-3341,3561985396048545,2025-09-07 +Resort Hotel,0,38,2017,March,13,29,0,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,I,0,No Deposit,241.0,179.0,0,Transient,2.28,0,1,Check-Out,Stacey Rodriguez,wallemily@example.net,895-356-5160x732,4502337373956,2026-02-13 +City Hotel,0,1,2017,January,2,11,1,1,1,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,A,D,0,No Deposit,14.0,139.0,0,Transient,92.33,0,1,Check-Out,Angelica Lopez,butlerjacob@example.net,(412)576-6774,346288670204043,2025-03-13 +City Hotel,1,113,2017,February,8,18,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,113.06,0,0,Canceled,Spencer Manning,reedjulian@example.com,001-704-541-2307,30486243649071,2025-03-26 +Resort Hotel,0,42,2017,May,19,9,3,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,299.0,179.0,0,Transient,133.89,0,1,Check-Out,Robert Bauer,colleen97@example.com,885-638-5560,6011927909253542,2026-02-16 +City Hotel,0,0,2017,January,4,22,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,13.0,204.0,0,Transient,77.01,0,2,Check-Out,Keith Gonzalez,ismith@example.com,(554)596-2731x87212,4744540327648460064,2024-04-12 +City Hotel,0,11,2017,July,30,23,0,1,2,0.0,0,SC,FRA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient-Party,67.17,0,0,Check-Out,Benjamin Jordan,hfreeman@example.net,709.674.4662x6951,676272240547,2024-07-15 +City Hotel,1,2,2017,April,15,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,B,B,0,No Deposit,17.0,45.0,0,Transient-Party,82.12,0,1,Canceled,Adrian Krueger,kwebster@example.com,+1-758-813-7344x85638,2576957219306397,2024-06-11 +City Hotel,1,96,2017,May,20,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,62.73,0,0,Canceled,Michael Travis,maria63@example.com,(215)905-7338,180095891415657,2026-02-07 +Resort Hotel,0,141,2017,December,51,22,1,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,102.89,0,0,Check-Out,Jonathan Glover,robertogreer@example.net,655-683-6778,4073110211637948,2024-10-14 +Resort Hotel,1,82,2017,February,5,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,55.88,0,0,Canceled,Erin Carter,bookerjohn@example.com,915.699.5895,582797102917,2024-11-18 +Resort Hotel,0,13,2017,December,52,30,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,128.68,1,0,Check-Out,Brenda Bradley,crystalchan@example.com,001-280-910-3621x0365,341921624171687,2024-10-27 +Resort Hotel,0,0,2017,November,46,16,2,2,1,0.0,0,SC,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,11.0,74.0,0,Transient,44.61,0,0,Check-Out,Kevin Berry,awhite@example.net,5583357649,4048848132480953,2025-09-10 +City Hotel,1,95,2017,August,33,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,39,Transient,82.46,0,0,Canceled,Jennifer Anderson,qmartin@example.com,404-621-4579,30386882248732,2026-02-20 +City Hotel,1,0,2017,April,14,4,0,2,2,2.0,0,BB,ITA,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,194.73,0,3,Canceled,Tyler Miranda,millerjennifer@example.org,001-349-893-9712x678,4090927335924,2025-08-29 +City Hotel,0,38,2017,March,12,18,1,0,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,136.95,0,2,Check-Out,Nicholas Chung,watsonmelissa@example.com,(624)973-5833x274,3507813506907995,2024-11-26 +Resort Hotel,0,203,2017,June,23,3,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,99.17,0,0,Check-Out,Kayla Thomas,rbrown@example.net,001-571-502-2818x34213,180083496965607,2025-08-23 +City Hotel,0,240,2017,June,23,8,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.97,0,1,Check-Out,Robert Shepherd,dixondavid@example.org,451.387.9323x0720,3519275306910502,2024-11-14 +Resort Hotel,0,64,2017,March,11,17,3,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,E,1,No Deposit,239.0,179.0,0,Transient,115.17,0,1,Check-Out,Steven Swanson,adamsmatthew@example.net,310.471.8984x24973,30324106822107,2026-02-26 +City Hotel,1,19,2017,March,10,5,2,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,109.53,0,0,Canceled,David Williams,jenniferwilliams@example.org,+1-912-514-2788x1732,30489355587170,2025-01-15 +City Hotel,1,3,2017,February,6,3,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,131.08,0,1,No-Show,Justin Bishop,hernandezchristian@example.org,486-618-1966x79980,3593405661410850,2025-03-22 +City Hotel,0,173,2017,November,44,3,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.02,0,1,Check-Out,Clifford Mcdonald,cjohnson@example.org,728.239.5063,675904189460,2025-11-27 +Resort Hotel,0,148,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,221.0,0,Transient-Party,63.07,0,0,Check-Out,Wesley Bowers,paul17@example.org,(564)457-9488,4186176532147069,2025-04-05 +Resort Hotel,1,32,2017,April,16,18,4,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,B,1,No Deposit,241.0,179.0,0,Transient,196.6,0,0,Canceled,Jessica Warren,christopher74@example.org,(705)520-8385x255,4183122110471,2025-06-25 +City Hotel,0,93,2017,October,43,22,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,85.08,0,2,Check-Out,Dana Savage,rickey55@example.com,449-902-8409x6423,3580613234693606,2025-09-11 +City Hotel,1,280,2017,May,20,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,83.0,179.0,18,Transient,109.01,0,0,Canceled,Joseph Sullivan,christopher23@example.org,783.420.3427x156,6554709624454974,2025-02-09 +City Hotel,1,245,2017,June,23,4,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,29.0,179.0,0,Contract,62.04,0,2,Canceled,Joshua Williams,michael16@example.com,801.766.8003,4782500538310249,2024-12-24 +City Hotel,0,117,2017,March,13,25,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,1,No Deposit,1.0,179.0,0,Transient-Party,62.27,0,0,Check-Out,Cory Kelley,baileyrobert@example.org,668-925-6314,371254337478972,2024-11-26 +Resort Hotel,0,147,2017,March,10,6,2,2,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient,121.63,0,0,Check-Out,Whitney Macdonald DVM,vaughnpatrick@example.org,941.361.3827,3547690995145770,2024-03-31 +City Hotel,0,38,2017,June,24,16,1,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,76.36,0,0,Check-Out,Kimberly Ponce,gespinoza@example.com,001-887-831-0883x9682,4815574593563761,2026-03-17 +City Hotel,1,0,2017,November,46,16,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,107.99,0,0,Canceled,Darren Morse,andrew74@example.com,392.206.7097x4952,4346711056806629296,2024-06-03 +City Hotel,1,34,2017,June,25,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,99.38,0,0,Canceled,Lydia Horn,marklam@example.com,409-867-2914,3523508304516390,2025-10-31 +Resort Hotel,1,19,2017,September,39,24,0,2,2,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,41.64,0,1,Canceled,Chad Williams,brownashley@example.com,864.623.8717,4792597010697596,2025-08-29 +Resort Hotel,0,7,2017,August,32,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,133.0,179.0,0,Transient,53.92,0,1,Check-Out,Jeremy Wallace,jerry47@example.org,225.702.2723x084,4688622772679,2025-12-07 +City Hotel,0,15,2017,September,37,9,2,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,109.39,0,0,Check-Out,Anthony Ward,ncurtis@example.com,508-708-7225,3516916325978649,2025-10-23 +Resort Hotel,0,160,2017,April,15,9,3,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,G,A,2,No Deposit,247.0,179.0,0,Transient,52.34,0,0,Check-Out,Heather Diaz,owashington@example.org,754-446-4664x57000,4568852167149874149,2025-05-02 +City Hotel,1,17,2017,October,43,23,2,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,38.3,0,0,Canceled,Daniel White,josephparker@example.com,9575728477,30312691238722,2025-02-23 +City Hotel,1,13,2017,October,42,18,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,134.88,0,0,No-Show,Linda Fernandez,joshuachase@example.net,001-767-682-8940x6041,4697981535143615794,2025-04-09 +Resort Hotel,0,44,2017,June,25,21,2,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,270.0,179.0,0,Group,51.82,0,1,Check-Out,Ralph Rodriguez,lhill@example.org,001-710-735-9621,630462939764,2025-12-16 +City Hotel,1,1,2017,February,8,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,118.4,0,0,Canceled,Michael Cross DDS,jason09@example.org,5396952418,5109018366222884,2025-06-09 +Resort Hotel,1,178,2017,February,6,4,1,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,243.39,0,0,Canceled,Stacy Garcia,james51@example.net,727-208-0214x718,3539725503214385,2024-08-19 +Resort Hotel,1,242,2017,June,23,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,70.88,0,0,Canceled,Brett Maxwell,benjamin63@example.net,001-395-238-4196x7165,2235500421546849,2024-06-03 +City Hotel,1,101,2017,April,15,9,1,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,138.48,0,1,Canceled,Anna Andersen,carolynscott@example.net,403.968.2155x33767,3576457535474134,2024-05-11 +City Hotel,0,8,2017,January,4,25,1,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.23,0,3,Check-Out,Gary Phillips,xcox@example.org,001-598-291-6950x003,213158081470196,2026-03-08 +Resort Hotel,1,49,2017,August,34,25,2,4,2,0.0,0,BB,,Groups,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,49.63,0,1,Canceled,Melanie Brown,samanthamiller@example.org,+1-432-432-4359x42957,30257483036810,2025-06-11 +City Hotel,1,84,2017,March,10,4,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.02,0,1,Canceled,Carol Johnson,christine91@example.org,+1-594-505-7488x96633,2296291853065294,2026-02-28 +City Hotel,0,41,2017,November,46,14,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,129.34,0,1,Check-Out,Jacqueline Hall,xcannon@example.com,(548)258-0389x40859,38727832393544,2024-08-21 +City Hotel,1,324,2017,January,3,18,0,2,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,80.07,0,1,Canceled,Tara Hale,tammybaker@example.com,+1-992-564-2560x91458,4764102557940295,2024-06-18 +City Hotel,0,38,2017,January,2,3,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.27,0,1,Check-Out,Christopher Smith,quinnann@example.net,995-614-7618x041,4900742240424,2024-12-12 +City Hotel,0,14,2017,May,20,16,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,134.13,0,0,Check-Out,Chad Kim,deborahcox@example.net,001-209-602-2895x141,6011791076682481,2024-04-22 +City Hotel,0,90,2017,March,14,30,2,2,2,2.0,0,BB,ITA,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,237.03,0,0,Check-Out,Riley Knight,chaneymichele@example.org,8485620210,2505809778787986,2024-11-08 +City Hotel,0,16,2017,March,12,20,0,3,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,3,No Deposit,320.0,179.0,0,Transient,206.81,0,1,Check-Out,Amy Moore,donnameyers@example.com,817.469.2672x1363,4941235328037,2025-11-04 +City Hotel,0,41,2017,November,46,14,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,76.33,0,1,Check-Out,Robert Ellison,louisbarajas@example.org,(999)819-5780x1834,4694325971742915,2024-08-12 +City Hotel,0,13,2017,March,11,13,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.14,0,1,Check-Out,Brian Lewis,vward@example.org,(874)507-7811x1072,2276379105024310,2025-07-26 +City Hotel,0,49,2017,June,23,9,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.03,1,1,Check-Out,Catherine Johns,haasmichelle@example.net,(725)449-4503,180079349916250,2024-10-28 +City Hotel,0,264,2017,June,25,22,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,83.47,1,0,Check-Out,Mary Parks,jeanetteirwin@example.net,001-222-258-7352,060426374728,2025-08-28 +City Hotel,0,19,2017,January,4,21,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,158.8,0,0,Check-Out,Mark Williamson,taylorkayla@example.org,574.281.6854,3573111462105186,2025-03-14 +City Hotel,1,95,2017,December,52,28,0,1,1,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,4.27,0,0,Canceled,Douglas Blanchard,stephensonronald@example.org,957.866.4939x17929,4995003650911897342,2024-06-06 +City Hotel,0,53,2017,February,8,20,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,143.55,0,1,Check-Out,Phillip Padilla PhD,huntrhonda@example.net,974.353.7932,501815463390,2024-07-15 +Resort Hotel,0,19,2017,January,2,10,4,7,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,113.23,0,0,Check-Out,Juan Galvan,josephwilson@example.com,001-967-726-2977,30557480725889,2024-10-27 +City Hotel,0,47,2017,July,27,6,0,4,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient-Party,62.73,0,2,Check-Out,Leslie Diaz,snyderricardo@example.net,6467669999,6545692240296668,2025-12-11 +City Hotel,1,152,2017,June,22,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,94.15,0,0,Canceled,David Potter,nsmith@example.org,275-250-9356,180099381480627,2025-07-16 +City Hotel,0,3,2017,July,27,4,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,34.0,179.0,0,Transient,81.85,0,0,Check-Out,Adam Long,kennedychloe@example.org,530.989.7290,349137592080386,2024-12-07 +City Hotel,1,15,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,Non Refund,143.0,179.0,0,Transient,97.26,0,0,Canceled,Lisa Booker,jeremybird@example.com,(587)365-0388,501813498638,2025-01-16 +City Hotel,0,4,2017,July,28,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,105.57,0,1,Check-Out,Alexandria Vaughn,wrightjason@example.org,(452)732-8384x935,6011000730647884,2024-05-01 +City Hotel,0,95,2017,April,14,2,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.76,0,1,Check-Out,April Bailey,bullockjohn@example.com,904-502-3672x166,2425112102869829,2025-12-04 +Resort Hotel,0,153,2017,November,45,5,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,Refundable,13.0,223.0,0,Transient-Party,86.34,0,0,Check-Out,Sherry Patterson,jenniferdaniels@example.com,(810)941-2505x435,3580898206414327,2024-11-17 +City Hotel,0,2,2017,June,24,15,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,88.28,0,0,Check-Out,Melissa Wolf,jenniferjarvis@example.net,001-572-299-8547x234,4001304847977,2025-01-11 +City Hotel,1,75,2017,March,10,2,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,128.08,0,0,Canceled,Joshua Sims,wisejennifer@example.net,001-821-340-3209x576,2367693376160896,2025-08-29 +City Hotel,0,102,2017,December,52,24,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Contract,101.5,0,1,Check-Out,Tina Mooney,andrewsdale@example.com,5908696711,3578067374991862,2024-11-05 +Resort Hotel,0,16,2017,November,44,3,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,50.61,0,1,Check-Out,Luis Mcclain,bdavis@example.net,419-355-6284x167,4007927410323280,2024-06-24 +Resort Hotel,0,56,2017,May,18,2,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,88.98,0,1,Check-Out,Heather Wolf,amandabishop@example.org,+1-776-427-4782x1947,30104543216141,2025-11-23 +Resort Hotel,1,212,2017,March,12,20,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,B,A,0,No Deposit,1.0,179.0,0,Transient,104.2,0,0,Canceled,James Bradley,herreradavid@example.com,3298100181,4957739893121366,2025-07-13 +Resort Hotel,0,201,2017,April,17,29,1,2,3,1.0,0,HB,CHE,Direct,Direct,0,0,0,H,H,2,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Check-Out,Isaiah Jones,gkelley@example.com,682.872.3882x9113,5119410451705659,2026-03-10 +Resort Hotel,1,19,2017,February,9,25,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,250.48,1,1,Canceled,Victor Hudson,nicholasharper@example.org,001-235-716-8520,561799024899,2025-07-13 +City Hotel,1,106,2017,March,11,14,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.06,0,0,Canceled,Maria Sanders,alexandracastaneda@example.com,(745)636-2812x26311,5444284461460035,2025-07-25 +City Hotel,0,191,2017,April,15,13,1,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,128.64,0,0,Check-Out,Thomas Holloway,jhumphrey@example.net,+1-997-330-3955x29641,4252915480701164,2024-08-12 +Resort Hotel,0,0,2017,August,31,5,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,E,2,No Deposit,248.0,179.0,0,Transient,53.44,1,1,Check-Out,Joshua Love,jefftaylor@example.org,741.576.0832,4331533017408206,2026-03-11 +City Hotel,1,160,2017,April,16,14,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,133.29,0,0,Canceled,Andrew Dominguez,eric63@example.com,333-781-2343,3590513842114557,2024-12-19 +City Hotel,0,28,2017,April,15,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,172.23,0,3,Check-Out,John Adams,philipreese@example.org,(413)894-0891,5531525890494407,2024-06-23 +City Hotel,1,255,2017,February,6,4,0,2,3,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,30.0,179.0,0,Transient-Party,127.11,0,1,Canceled,Michelle Huber,john45@example.org,(351)340-3301,4155023050504593,2024-11-10 +Resort Hotel,0,49,2017,January,2,1,0,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,41.56,0,0,Check-Out,Laura Roberts,ipugh@example.com,001-271-382-7021x25840,4798749400206082,2025-02-12 +City Hotel,0,6,2017,September,38,23,0,3,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,110.26,0,1,Check-Out,Tracey Brooks,areed@example.com,7922589399,4371377648184,2025-12-29 +City Hotel,0,37,2017,July,28,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,52.0,206.0,0,Transient-Party,56.24,0,0,Check-Out,Aaron Henry,steven17@example.com,+1-950-903-8278x74260,30040665005567,2024-06-09 +City Hotel,1,154,2017,February,8,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,134.0,179.0,0,Transient,107.73,0,0,Canceled,Ryan Moore,jason41@example.org,001-754-584-8728x14538,213107842414621,2026-02-20 +Resort Hotel,0,32,2017,June,23,8,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,49.78,0,2,Check-Out,Daniel Chen,stephen40@example.com,4914821897,30346120308656,2024-06-04 +City Hotel,0,40,2017,February,9,29,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,162.24,0,2,Check-Out,Angel Lewis,ian53@example.org,+1-473-469-2122,6011073374077817,2025-07-23 +City Hotel,0,158,2017,November,48,27,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,184.56,0,2,Check-Out,David Nolan,crystaladams@example.com,001-740-671-0166x3929,2222976834042813,2025-06-08 +City Hotel,0,61,2017,August,33,18,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.92,0,0,Check-Out,Brian Medina,joshuabrooks@example.net,+1-423-820-3249,6011939883899281,2026-01-21 +City Hotel,0,1,2017,June,25,21,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,H,E,0,No Deposit,16.0,179.0,0,Transient,242.31,0,0,Check-Out,Antonio Lopez,luis08@example.net,+1-738-455-3819x11767,6558870087361613,2024-04-03 +Resort Hotel,1,187,2017,March,10,4,4,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,237.0,179.0,0,Transient,137.15,0,1,Canceled,Michaela Hernandez,zwebb@example.com,(846)675-4642x548,4883620690859877568,2024-12-29 +City Hotel,0,1,2017,February,6,6,4,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,224.11,0,1,Check-Out,Elizabeth Chase,itaylor@example.org,001-477-259-5102x7769,3524694998549076,2024-11-03 +City Hotel,1,391,2017,July,27,5,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.7,0,0,Canceled,Omar Johnson,elizabeth06@example.com,290.671.2021x5093,4392292132966954,2026-03-03 +City Hotel,0,61,2017,May,20,18,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.22,0,1,Check-Out,Steven Fisher,michaelreeves@example.org,+1-900-412-6661,4079476254263,2024-05-12 +City Hotel,1,20,2017,August,31,3,2,2,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,14.0,331.0,0,Transient,110.23,0,0,Canceled,Heather Smith,lmcmillan@example.org,497.960.8171x2114,2277953008369888,2024-06-01 +City Hotel,1,90,2017,January,4,25,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,137.7,0,0,Canceled,Kimberly Mcintyre,james77@example.org,+1-866-348-7864x69432,372558907879420,2024-04-03 +Resort Hotel,0,136,2017,January,2,5,0,7,1,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,H,1,No Deposit,332.0,179.0,0,Transient,135.26,0,2,Check-Out,Dana Hernandez,cheyenne48@example.com,+1-610-922-9398,36182218404071,2024-10-24 +City Hotel,0,4,2017,October,43,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.46,0,2,Check-Out,Anita Long,juanwright@example.org,+1-832-961-5683x8106,3537341856304492,2024-07-31 +City Hotel,0,2,2017,September,37,15,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,67.0,0,Transient,87.28,1,0,Canceled,Chad Pennington,lwilson@example.net,+1-354-766-1557,4538976060095915541,2025-02-03 +City Hotel,0,4,2017,April,16,15,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,221.0,0,Transient,51.12,0,0,Check-Out,Michael Rosario,adamwalton@example.net,001-384-689-3349x9764,2252173753848338,2024-05-08 +City Hotel,0,132,2017,May,20,20,2,0,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,98.78,0,0,Check-Out,Joyce Webster,jessicadalton@example.net,(446)345-6392x854,30073671543685,2024-11-26 +City Hotel,1,306,2017,March,13,30,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,78.41,0,0,Canceled,Kristie Hendrix MD,hicksandrew@example.com,(670)887-8869,4759096586281472,2024-04-01 +Resort Hotel,1,85,2017,April,16,19,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient-Party,214.94,0,0,Canceled,Shannon Miller,wheelerwyatt@example.org,786-822-4189x90887,2243939827515976,2025-06-10 +City Hotel,0,1,2017,June,23,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,1,No Deposit,16.0,179.0,0,Transient,2.34,1,0,Check-Out,Linda Henderson,whitneycarpenter@example.org,646.439.1599x0166,4457264934057461740,2024-03-28 +City Hotel,1,96,2017,March,13,31,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.73,0,2,Canceled,Anthony Ashley,gregory10@example.net,743.420.9678,3569199097498866,2026-03-19 +City Hotel,1,165,2017,December,52,29,1,4,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,115.25,0,1,Canceled,Michael Khan,katrina35@example.net,688-791-1480x3016,36899712561110,2024-05-31 +Resort Hotel,1,34,2017,February,8,23,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,89.48,0,0,Canceled,Stacey Thomas,travis13@example.org,236-273-1614x2417,4621438321793765,2026-03-24 +City Hotel,1,150,2017,August,34,23,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,30.0,179.0,75,Transient,109.39,0,0,Canceled,Joseph Jones,tracyosborne@example.org,001-713-673-2423x380,213114506864299,2025-06-03 +City Hotel,0,394,2017,May,22,31,0,2,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,128.0,179.0,0,Transient-Party,110.39,0,2,Check-Out,John Johnson,jacksonchristopher@example.org,(783)767-4846x50852,4814420800445833,2024-09-30 +Resort Hotel,0,131,2017,January,2,2,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,136.14,0,0,Check-Out,April Wallace,garyharper@example.org,264.538.2644x77776,5337868509017219,2024-10-12 +City Hotel,1,45,2017,July,28,12,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,63,Transient-Party,51.87,0,0,Canceled,Gregory Martin,mary99@example.net,001-856-241-6657x1263,5580097637090914,2025-07-29 +Resort Hotel,0,89,2017,March,13,27,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,81.99,0,2,Check-Out,Krista White,masonsalazar@example.net,758-859-7607x3538,4316523375561865734,2024-11-12 +City Hotel,1,53,2017,November,46,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,65.11,0,0,Canceled,Tyler Garcia,sarah26@example.org,(902)956-8734x993,180087627309601,2025-03-05 +City Hotel,1,18,2017,September,39,26,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,59.52,0,0,Canceled,Molly Jackson,gregoryjackson@example.org,001-973-920-9813,3532832737877412,2025-01-20 +City Hotel,0,374,2017,January,2,1,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,45.0,0,Transient,107.81,0,0,Check-Out,Thomas Floyd,foleytaylor@example.net,868-494-5084x791,3555616781583618,2024-11-02 +Resort Hotel,1,93,2017,February,6,6,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,208.0,179.0,0,Transient,48.86,0,1,Canceled,Susan Sharp,smithtimothy@example.net,+1-218-897-2819x62951,6546305061695848,2025-07-13 +City Hotel,1,399,2017,June,24,11,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,77.54,0,0,Canceled,Krystal Hamilton,henrykristin@example.org,695-761-4189,4716184118259133,2025-11-15 +City Hotel,1,38,2017,November,45,9,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,97.5,0,1,Canceled,Kathy Lewis,jweaver@example.com,3307424338,36458633156649,2024-09-26 +City Hotel,1,201,2017,January,3,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,109.87,0,3,Canceled,Joshua Miller,gsmith@example.net,2827277872,4890025830562676,2025-03-11 +Resort Hotel,0,144,2017,March,12,23,2,6,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,130.66,0,1,Check-Out,Emily Brady,lydia20@example.net,8113140533,30407660128449,2026-01-28 +Resort Hotel,0,1,2017,November,47,22,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,14.0,331.0,0,Transient,58.61,0,0,Check-Out,Julie Padilla,dave51@example.org,001-450-974-4201x788,4533959403393429,2025-08-07 +City Hotel,0,12,2017,December,50,12,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,96.3,0,1,Check-Out,Justin Williams,debbiedixon@example.com,3386765202,348078710604437,2025-02-18 +City Hotel,1,414,2017,April,17,24,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,109.1,0,0,No-Show,Willie Morgan,smithashley@example.net,207.569.7911x5903,36833098243456,2025-05-15 +Resort Hotel,0,107,2017,October,42,14,1,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,14.0,179.0,0,Transient-Party,60.59,0,0,Check-Out,Joseph Stokes,slevy@example.net,001-555-432-0888x91379,639007086692,2026-01-16 +City Hotel,0,43,2017,March,12,17,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.15,0,1,Check-Out,Cindy Kelley,samantha17@example.org,(872)468-7001x583,4152634880548486,2025-06-18 +City Hotel,1,83,2017,January,4,22,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,78.85,0,0,Canceled,Tommy Romero,victoria03@example.com,+1-304-363-8062x0275,4037860874740,2025-05-06 +City Hotel,1,111,2017,January,2,11,1,1,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,142.18,0,2,No-Show,Stephanie Lara,marissa87@example.org,7548973416,4446117630872808,2025-06-30 +City Hotel,1,290,2017,January,5,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,0,Transient,85.41,0,0,Canceled,Tyrone Collins,wmartinez@example.net,400.528.8936x0374,3583408110916263,2024-09-11 +City Hotel,0,143,2017,November,45,8,1,3,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,75.77,0,1,Check-Out,Brendan Palmer,fischerdustin@example.net,983.818.4352,213109948040094,2025-10-27 +Resort Hotel,0,45,2017,April,16,14,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,241.0,179.0,0,Transient,240.53,0,1,Check-Out,Paul Martin,hhunter@example.net,001-811-676-2340x8263,4047388548690201,2025-02-04 +City Hotel,0,4,2017,February,7,16,0,1,1,0.0,0,BB,USA,Aviation,Corporate,0,0,0,D,D,1,No Deposit,13.0,173.0,0,Transient,120.74,0,0,Check-Out,Juan Gilbert,josephperez@example.org,521-697-2143x57243,4304013577178,2024-12-29 +City Hotel,1,221,2017,March,12,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Canceled,Lori Roberson,qweaver@example.com,001-311-200-4553,348924360309605,2025-12-15 +City Hotel,1,113,2017,June,22,1,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,18,Transient-Party,102.68,0,0,Canceled,Matthew Moore,tjones@example.net,969.992.3427x34810,3523527275525362,2024-04-17 +City Hotel,0,146,2017,April,16,17,1,2,1,2.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,79.0,179.0,0,Transient,100.49,0,0,Check-Out,Donald Freeman,lisadennis@example.net,(659)665-2292,6011892496308697,2025-11-12 +City Hotel,0,14,2017,November,46,11,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,91.31,0,2,Check-Out,Daniel Anderson,emily95@example.com,001-850-851-9490x00253,4830180069394076981,2026-02-06 +City Hotel,1,105,2017,February,6,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,104.89,0,0,Canceled,Kelly Rodriguez,frenchkevin@example.net,974-449-3285x54569,2309476895150825,2024-08-07 +City Hotel,0,7,2017,February,7,14,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.45,0,0,Check-Out,Troy Ward,dwilliams@example.org,546-781-1924x3706,30038102383027,2025-06-12 +City Hotel,0,18,2017,January,2,8,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,50.48,0,1,Check-Out,Christina Smith,harmonjanet@example.org,902.890.3695x2205,4683597786682218468,2024-12-05 +City Hotel,1,444,2017,June,25,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,60,Transient,96.49,0,0,Canceled,Mark Smith,michaelrobinson@example.org,332.375.3097x5790,4472470806423956,2025-11-06 +City Hotel,1,46,2017,February,8,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,108.95,0,0,Canceled,Daniel Williams,claire17@example.org,+1-582-613-4012x07768,2297539052840571,2025-12-23 +City Hotel,1,9,2017,February,5,3,0,10,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,106.05,0,0,Canceled,Melissa Robinson,josephrosario@example.net,001-898-572-5378x225,676385545832,2024-10-30 +City Hotel,1,14,2017,March,11,14,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,172.52,0,0,No-Show,Mitchell Jimenez,watsonamanda@example.net,(487)230-1160x692,30358695781878,2025-05-29 +Resort Hotel,0,92,2017,April,17,20,2,10,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,77.0,179.0,0,Transient,83.36,0,3,Check-Out,Bethany Liu,hfisher@example.net,001-357-326-3032x8231,6537111431257371,2025-10-04 +Resort Hotel,0,0,2017,September,36,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,41.63,0,1,Check-Out,Mitchell Williams,elizabeth87@example.org,759.853.2331x725,502002147044,2025-07-23 +City Hotel,0,12,2017,February,8,23,1,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,116.03,1,0,Check-Out,Bianca Davis,vrodriguez@example.com,448-917-8200x715,6011981035596837,2025-09-26 +Resort Hotel,1,103,2017,March,10,7,3,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient,78.69,0,0,Canceled,Anthony King,michelemurillo@example.org,315-293-8757,4605825856539429308,2026-02-05 +Resort Hotel,1,53,2017,October,40,5,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,1.64,0,0,Canceled,Michael Summers,cheryl91@example.net,212.959.1021x3959,6011851915604839,2025-08-12 +Resort Hotel,0,17,2017,April,14,4,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,251.76,1,1,Check-Out,Ricky Hall,jessicahughes@example.net,892-563-5157x485,4420910222384665,2025-12-06 +City Hotel,0,1,2017,March,12,22,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,2,No Deposit,12.0,179.0,0,Transient,3.87,0,0,Check-Out,Joyce Kelly,david33@example.com,(667)988-6190x5217,180055459969396,2025-02-11 +Resort Hotel,0,154,2017,July,28,14,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.86,0,2,Check-Out,Anne Medina,jhenderson@example.org,(615)720-9321x71226,2499163508326535,2025-08-13 +City Hotel,0,55,2017,April,17,20,0,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,136.45,0,2,Check-Out,Benjamin Johnson,jeffrey37@example.com,001-439-235-0291x766,30206156890649,2024-06-13 +Resort Hotel,0,114,2017,April,16,18,2,5,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,C,0,No Deposit,170.0,179.0,0,Transient-Party,150.22,0,0,Check-Out,Kyle Perry,esparzajulie@example.net,240-740-6751x51509,6011482121275048,2024-09-12 +Resort Hotel,0,34,2017,August,33,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,58.1,0,2,Check-Out,Melissa Newton,knightbrian@example.org,001-476-423-2109x47128,4627774041677510350,2024-08-19 +City Hotel,1,63,2017,November,47,22,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,139.55,0,2,Canceled,James Franklin,smithrobert@example.net,(367)330-8409x672,4437994169787,2026-01-07 +City Hotel,0,96,2017,June,25,21,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,82.71,0,0,Check-Out,Caitlin Curry,howardmonroe@example.org,+1-606-997-0809x90813,502051598477,2024-11-13 +Resort Hotel,0,152,2017,November,48,27,1,2,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,13.0,224.0,0,Transient-Party,40.85,0,0,Check-Out,Barbara Glover,patrickmejia@example.net,235.229.0156x2993,6552226313356750,2026-01-21 +Resort Hotel,0,17,2017,March,13,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,199.79,1,2,Check-Out,Ryan Harmon,christopher89@example.net,+1-515-205-1798x912,4928825463613860,2025-05-25 +Resort Hotel,1,384,2017,April,16,16,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,69.0,179.0,0,Transient-Party,169.95,0,1,Canceled,Andrea Hughes,maytony@example.net,6306560848,213139772240536,2024-10-13 +City Hotel,0,3,2017,December,52,26,1,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,104.11,0,1,Check-Out,Keith Solis,michele17@example.net,+1-930-587-4506x206,2243753428492562,2026-03-10 +City Hotel,0,0,2017,July,28,9,1,0,1,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,1.54,0,0,Check-Out,Bryan Tucker,reedmonique@example.com,(730)598-0944x261,3549801956558103,2025-03-30 +City Hotel,0,1,2017,April,14,6,1,1,2,0.0,0,BB,PRT,Groups,Undefined,0,0,0,A,B,0,No Deposit,25.0,179.0,0,Transient-Party,0.88,0,0,Check-Out,Holly Grant,staffordrachel@example.com,930-530-9847,4051007252851907,2024-04-21 +City Hotel,1,153,2017,March,13,30,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,128.75,0,0,No-Show,Ryan Skinner,carrie48@example.net,+1-301-888-8483,568929623961,2024-11-08 +Resort Hotel,0,142,2017,March,13,27,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,82.16,0,1,Canceled,Julia Mullins,anthonycowan@example.net,001-470-932-5683x74994,213124287572474,2025-06-15 +City Hotel,1,0,2017,November,47,25,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,5.12,0,0,Canceled,Janet Graves,brandon09@example.org,(253)442-7225x890,4875282596674901,2025-05-29 +City Hotel,0,5,2017,June,23,6,0,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.64,0,0,Check-Out,Angela Hunt,blanchardrobert@example.com,(318)829-0576,180024773402328,2024-08-19 +Resort Hotel,1,336,2017,September,39,25,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,52.85,0,1,Canceled,Isaiah Turner,faustin@example.net,690-717-3789,345242252168986,2025-11-17 +Resort Hotel,0,0,2017,March,10,10,1,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,108.91,1,2,Check-Out,Phillip Scott,jacobmata@example.org,001-682-417-8105x179,6571415324298450,2026-01-06 +Resort Hotel,0,10,2017,June,23,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,81.73,0,0,Check-Out,Jessica Reynolds,sandersbrianna@example.org,+1-420-256-7042x76883,2720822588541047,2024-10-16 +Resort Hotel,0,5,2017,September,37,13,2,10,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,81.1,0,3,Check-Out,Melinda Jacobs,slloyd@example.org,001-528-403-0880x04422,6589324875951246,2024-10-30 +City Hotel,0,12,2017,June,23,9,0,3,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Group,78.32,0,1,Check-Out,Danny Butler,jasminegriffin@example.org,+1-485-934-1189,6559396469227122,2024-09-22 +City Hotel,0,27,2017,December,52,26,2,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,181.42,0,2,Check-Out,Matthew Bennett,anne99@example.org,241.757.0061,4086276001612,2025-05-25 +City Hotel,1,11,2017,October,41,8,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,79.66,0,0,Canceled,Carl Jackson,hramirez@example.org,602.960.3244x70521,4339891485041053,2025-01-04 +Resort Hotel,1,240,2017,June,23,9,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,No Deposit,183.0,179.0,0,Transient-Party,44.7,0,0,Canceled,Stephen Wilson,bennettdaniel@example.net,(298)533-2821x17574,4417934376552843358,2024-06-12 +Resort Hotel,0,0,2017,June,23,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,52.57,0,1,Check-Out,Charles Robinson,alexandernicholas@example.org,(904)526-3241x37749,4035445813099288,2024-04-11 +Resort Hotel,1,241,2017,April,15,6,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,241.0,179.0,0,Transient,137.28,0,2,No-Show,Chad Poole,ballardvictoria@example.net,001-396-778-1159x8191,4051977010049616755,2024-07-07 +Resort Hotel,0,9,2017,December,48,1,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Check-Out,Matthew Dominguez,mariajohnson@example.com,235-633-9444x44962,6538531804250829,2025-02-24 +City Hotel,0,44,2017,March,10,4,1,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.34,0,2,Check-Out,Christian Shelton,jason74@example.net,517.403.4390x3785,3591610528010544,2024-11-22 +Resort Hotel,0,15,2017,November,44,4,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,48.13,0,1,Check-Out,Makayla Friedman,michael58@example.org,001-378-522-9189,2280732308077309,2024-05-17 +City Hotel,0,54,2017,January,2,4,0,3,2,0.0,0,HB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,166.22,0,0,Check-Out,Katherine Downs,christopherdiaz@example.net,001-259-743-7464x364,6011351250877751,2026-01-31 +Resort Hotel,0,139,2017,November,48,29,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,221.0,75,Transient-Party,92.92,0,0,Check-Out,Lisa Singh,tcruz@example.com,593.359.9051x171,4888519223494807783,2026-03-01 +Resort Hotel,0,52,2017,January,4,26,0,2,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient-Party,63.79,0,1,Check-Out,Brittany Allen,nicole34@example.com,(748)542-4838x86597,180035644617639,2024-05-23 +City Hotel,0,1,2017,January,4,22,1,0,3,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,C,0,No Deposit,13.0,45.0,0,Transient,0.0,0,1,Check-Out,Robert Miller,mcguirekayla@example.com,7336371471,3592469266224265,2025-11-19 +City Hotel,0,18,2017,December,51,19,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,125.51,0,0,Check-Out,Melanie Baker,smithcourtney@example.net,+1-862-313-8916x974,3538123931823350,2024-12-06 +Resort Hotel,1,396,2017,December,50,10,0,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,41.96,0,0,Canceled,Gerald Allen,tholder@example.net,348-353-6792x890,4031342628100415,2025-04-19 +City Hotel,0,121,2017,March,10,5,2,4,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.69,0,0,Check-Out,Vincent Hays,gregorymiller@example.com,001-814-570-9354x5418,4166105791708570,2024-11-26 +City Hotel,0,0,2017,November,46,17,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,B,0,No Deposit,26.0,222.0,0,Transient-Party,63.24,0,1,Check-Out,Valerie Lopez,fullerjeffery@example.com,639.957.4721,4015657484747938,2024-08-30 +Resort Hotel,0,19,2017,October,41,11,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,199.24,1,0,Check-Out,Anthony Schmidt,marshallrodney@example.org,+1-370-676-0881x61688,572231351329,2025-01-16 +City Hotel,0,16,2017,March,12,20,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.54,0,1,Check-Out,Dean Harris,markhardin@example.net,531.566.4137x30522,4719272810325027963,2025-11-10 +City Hotel,1,91,2017,October,40,5,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,109.53,0,1,Canceled,Rhonda Allen,millerjoy@example.net,620-772-6234x11239,4480863124616694786,2024-07-27 +City Hotel,0,12,2017,January,2,3,1,0,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.45,0,1,Check-Out,Ruben Charles,martinscott@example.com,292.751.1638,5250435078434010,2025-07-11 +City Hotel,1,24,2017,August,35,31,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,142.66,0,1,No-Show,Jennifer Brooks,andrademelissa@example.net,+1-458-951-9203,4606496147766877,2024-07-28 +City Hotel,0,37,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,132.0,179.0,0,Transient-Party,81.96,0,0,Check-Out,Jacqueline Owens,colewesley@example.com,372.933.8417x35445,6564725530156709,2026-02-15 +City Hotel,0,21,2017,April,14,4,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,247.84,0,2,Check-Out,Sydney Elliott,david67@example.com,(620)711-5561,6011022587067263,2024-11-29 +City Hotel,0,165,2017,April,16,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,102.69,0,1,Check-Out,Gary Chavez,brownmolly@example.org,(578)227-5986x0689,2720894867179856,2025-05-29 +Resort Hotel,0,3,2017,April,14,6,0,2,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,10.0,179.0,0,Transient,234.45,1,0,Check-Out,Stephanie Salinas,charlene65@example.com,6732872237,6544080249491434,2026-02-13 +City Hotel,1,1,2017,October,43,23,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.75,0,1,Canceled,Raymond Valenzuela,whitejonathan@example.com,(280)348-2420,4929454502924771,2025-09-27 +City Hotel,1,16,2017,January,2,11,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,Non Refund,17.0,331.0,0,Transient,47.15,0,0,Canceled,Theresa Ward,laura79@example.net,001-456-375-3957x515,4023894639606,2024-06-10 +Resort Hotel,0,135,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,126.38,0,0,Check-Out,Jacob Kennedy,christopher61@example.com,001-359-854-5470,3550991085043535,2024-07-12 +Resort Hotel,1,107,2017,March,11,9,4,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,2,Canceled,Jenna Velazquez,wallercarl@example.net,001-906-528-7886x55671,38185207064507,2026-01-22 +Resort Hotel,0,0,2017,January,2,4,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,Kathryn Rivers,anthony90@example.com,001-943-312-2007x393,4646051069003445,2024-12-10 +Resort Hotel,0,12,2017,August,34,20,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,310.0,179.0,0,Transient-Party,42.21,0,0,Check-Out,Daniel Ramirez,sarah44@example.net,406-876-7857x18440,2264911963754382,2024-12-18 +City Hotel,1,0,2017,January,2,11,1,0,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,0.87,0,0,Canceled,Greg Wood,vjackson@example.com,(564)243-3072x696,6011937246300823,2025-03-20 +City Hotel,0,8,2017,December,52,27,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,305.0,179.0,0,Transient-Party,39.91,1,1,Check-Out,Susan Armstrong,mariafisher@example.org,694.960.5210x217,4293219664437,2024-10-29 +Resort Hotel,0,13,2017,November,44,2,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,131.0,179.0,0,Transient-Party,0.28,1,1,Check-Out,Taylor Stark,zvelasquez@example.net,+1-300-988-9876x739,4065505407248098796,2025-06-19 +Resort Hotel,0,20,2017,June,24,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient-Party,63.33,0,1,Check-Out,Brandon Peterson,lauracherry@example.net,001-978-714-9666x16961,370779693618606,2024-05-08 +Resort Hotel,0,0,2017,May,18,1,3,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,239.0,179.0,0,Transient,113.26,0,1,Check-Out,Linda Morris,ellisrichard@example.net,+1-549-343-5331x366,3560326847055741,2024-12-21 +City Hotel,0,41,2017,January,4,22,1,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.0,0,2,Check-Out,Laura Sanders,stucker@example.org,+1-708-474-3499x8581,564184456528,2024-07-22 +City Hotel,0,46,2017,February,6,7,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Group,103.54,0,0,Check-Out,Catherine Castaneda,dawn20@example.org,576-200-9269,4169322702411379,2024-07-15 +City Hotel,0,40,2017,November,47,19,2,1,1,1.0,0,BB,,Direct,Direct,0,1,1,B,D,0,No Deposit,14.0,179.0,0,Contract,65.03,0,2,Check-Out,Jesse Pollard,monroekatie@example.com,001-305-664-0239x28919,501801249878,2024-04-26 +City Hotel,0,99,2017,September,36,4,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.23,1,1,Check-Out,Jacob Love,wsmith@example.net,+1-367-464-7655x383,377383861052673,2025-11-18 +City Hotel,0,35,2017,December,49,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,119.89,0,1,Check-Out,Mrs. Janice Fitzpatrick,garciadavid@example.com,(554)384-6952,213151417731332,2025-01-30 +Resort Hotel,0,140,2017,November,44,3,1,3,1,0.0,0,BB,NLD,Groups,Direct,0,0,0,D,D,2,Refundable,12.0,222.0,0,Transient-Party,62.67,0,0,Check-Out,Zachary Mckay,flynnsamuel@example.org,562.381.4159,4434323181985593,2025-03-07 +City Hotel,0,144,2017,January,4,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.07,0,1,Check-Out,Lauren Wright,cwalker@example.net,(338)780-9899x1761,30547485619021,2025-07-14 +City Hotel,1,0,2017,November,48,29,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,63.0,0,Transient,42.86,0,1,No-Show,Teresa Velasquez,dmoss@example.org,+1-886-525-8308x695,36739571894949,2025-10-02 +City Hotel,1,156,2017,November,45,8,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,20.0,179.0,0,Transient,99.13,0,2,No-Show,Eugene Parker,victoriastevens@example.com,550.849.1546,30580058703138,2024-07-14 +City Hotel,0,96,2017,April,15,8,2,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Amy Knight,mjackson@example.net,989-402-5825,3599938648431841,2026-03-16 +City Hotel,1,101,2017,November,47,22,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.37,0,1,Check-Out,Randy Perez,michaelmckee@example.org,001-212-786-3297x198,2225605222542459,2025-11-24 +Resort Hotel,1,246,2017,March,10,6,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.32,0,0,Canceled,Melanie Smith,murraycrystal@example.com,8424358657,180069876499119,2024-12-10 +City Hotel,0,160,2017,November,45,5,2,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,I,0,No Deposit,13.0,179.0,0,Transient,93.24,0,0,Check-Out,Melissa Martinez,michelecooper@example.net,490-363-6590x9300,4782074757878012355,2025-03-23 +City Hotel,0,57,2017,May,21,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.21,0,0,Check-Out,Samantha Gillespie,masseyjames@example.com,001-506-823-3838,4149562833266965578,2025-02-08 +Resort Hotel,0,84,2017,March,11,13,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,250.0,179.0,0,Transient,143.27,1,0,Check-Out,Bryan Richardson,leediana@example.com,+1-561-474-9406x558,575877663386,2025-03-31 +Resort Hotel,0,13,2017,May,21,24,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,243.0,179.0,0,Transient,173.42,1,2,Check-Out,Anna Cantu,mandyknapp@example.org,275-539-7387x209,30092157693129,2025-08-05 +Resort Hotel,1,37,2017,November,47,21,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,46.88,0,1,Canceled,Christopher Cox,powersvanessa@example.net,340.614.4362x3564,4450157476022,2025-06-16 +Resort Hotel,0,143,2017,November,47,19,1,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,17.0,222.0,0,Transient,89.68,0,2,Check-Out,Diana Kemp,jasonlucas@example.org,(252)648-6846x9138,2580559360080070,2024-11-30 +Resort Hotel,0,78,2017,March,10,7,2,6,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,238.72,0,2,Check-Out,Taylor Salinas,williamsmark@example.net,653.884.6788x674,348909231146880,2024-11-24 +City Hotel,0,1,2017,March,10,9,2,3,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient-Party,128.81,0,1,Check-Out,Ryan Santos,bradleygreer@example.net,(643)855-0097x28358,3557307927159038,2026-01-14 +City Hotel,0,2,2017,July,30,23,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,42.09,0,0,Check-Out,Amber Crawford,truiz@example.org,(653)661-7338x224,4554820269977,2026-03-15 +City Hotel,1,60,2017,December,51,21,2,0,3,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,8.0,179.0,0,Transient,169.88,0,0,Canceled,Carla Wong,xdavis@example.net,752.652.1580,4243009226930790,2025-12-28 +City Hotel,0,107,2017,July,30,29,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.08,0,0,Check-Out,Allison Rice,jeffrey11@example.com,9216675912,36066783032195,2024-11-24 +Resort Hotel,0,46,2017,November,48,26,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,89.48,0,1,Check-Out,Sheri Hoover,gphillips@example.org,243.748.5315x808,4221399666237715,2025-03-27 +City Hotel,0,91,2017,May,18,2,2,2,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.8,0,0,Check-Out,Jeremy Chavez,melissa28@example.com,454-793-7690,676159706602,2026-01-14 +City Hotel,0,182,2017,June,25,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,72.55,0,0,Check-Out,Jennifer Nguyen,james18@example.com,589-791-0697,4376123950217768,2025-06-17 +City Hotel,0,11,2017,August,34,26,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,97.78,0,2,Check-Out,John Rodriguez,johnroberts@example.org,(392)625-8776x85860,060416489858,2024-05-19 +Resort Hotel,1,38,2017,April,15,8,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,240.0,179.0,0,Transient,4.76,0,2,Canceled,Maria Williams,cooperlori@example.net,001-915-302-8290,344395586590233,2025-02-28 +City Hotel,0,2,2017,November,47,22,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,112.33,0,0,Check-Out,Melody Ochoa,hking@example.com,(411)561-0735,5120011597437863,2026-01-07 +City Hotel,1,1,2017,January,3,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,13.0,179.0,0,Transient,80.36,0,0,Canceled,Tara Brown,grayjames@example.net,397-969-4489,4670214997845183,2025-09-10 +Resort Hotel,0,29,2017,November,44,1,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,307.0,179.0,0,Transient,49.43,0,1,Check-Out,Holly Banks,jenniferclark@example.org,+1-275-855-1551,36246413089373,2025-12-13 +City Hotel,0,162,2017,March,13,29,2,1,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,197.32,0,1,Check-Out,Amber Johnson,codychang@example.net,960.869.1239x173,4786252937669,2025-07-02 +Resort Hotel,0,2,2017,August,32,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,D,0,No Deposit,13.0,65.0,0,Transient,52.74,0,1,Check-Out,Scott Thompson,owenscody@example.org,6772646777,3548572610005127,2025-10-25 +City Hotel,0,16,2017,November,48,26,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,1,Refundable,11.0,223.0,0,Transient-Party,84.36,0,1,Check-Out,Eric Flores,deckermadison@example.com,+1-872-944-8802x7087,2615871922952582,2026-02-15 +City Hotel,1,172,2017,December,49,8,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.05,0,0,Canceled,Theresa Wilson,tracy12@example.com,583-299-1043,30382320789627,2025-06-06 +City Hotel,1,287,2017,April,14,2,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,215.15,0,2,Canceled,Eric Ponce,whiteamy@example.org,517.661.0228,060460787827,2025-12-07 +City Hotel,1,244,2017,February,8,17,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,128.38,0,0,Canceled,Becky Sellers,kellybond@example.org,+1-498-838-5234x3856,3506000429208021,2026-02-20 +Resort Hotel,0,0,2017,October,43,26,0,3,1,0.0,0,BB,PRT,Online TA,Corporate,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,45.19,0,1,Check-Out,Kendra Burton,eandrews@example.net,+1-586-234-6145,30260742442217,2024-09-02 +Resort Hotel,1,19,2017,March,10,4,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,221.9,1,1,Canceled,Wyatt Kerr,joseph55@example.com,(634)457-7477,3559631223737280,2026-01-27 +City Hotel,0,3,2017,November,48,26,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,97.91,0,1,Check-Out,Craig Dean,ldoyle@example.net,550-969-7171x912,6011748018210391,2024-12-28 +Resort Hotel,0,87,2017,February,8,18,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,302.0,179.0,0,Transient-Party,125.51,0,2,Check-Out,Christian Rowe,mhernandez@example.com,518.371.1054,568986030845,2025-09-09 +Resort Hotel,1,51,2017,August,32,5,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,86.85,1,1,Canceled,Nathan Burke,gwhitaker@example.com,001-222-897-7881x5898,3557047631528876,2025-01-13 +City Hotel,0,17,2017,March,13,27,0,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,235.73,0,1,Check-Out,Nicholas Chase,bradybradley@example.com,738.599.9959,3555340846908021,2025-10-21 +City Hotel,0,203,2017,April,15,11,1,0,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,210.0,0,Transient,209.34,0,0,Check-Out,Hailey Ball,hannah74@example.org,635.531.1340x76109,4314452881483560,2024-09-26 +City Hotel,1,149,2017,June,24,12,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,83.43,0,0,Canceled,Heather Barry,wpeterson@example.net,+1-532-587-3063x435,4573534837085,2025-01-28 +City Hotel,0,13,2017,October,41,11,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,81.71,0,0,Check-Out,Cindy Young,jaredsmith@example.org,+1-302-305-6861x64450,4637443335604,2025-03-20 +Resort Hotel,1,143,2017,November,47,25,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,239.0,179.0,75,Transient-Party,102.02,0,0,Canceled,Mark Townsend,kellythompson@example.org,(527)659-7280x81403,4711074175022065170,2024-08-21 +City Hotel,0,25,2017,June,23,3,1,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.05,0,1,Check-Out,Michael Lee,ydavis@example.com,418-660-7486x367,3540467825451836,2024-10-14 +Resort Hotel,1,39,2017,August,32,12,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,127.65,0,1,Canceled,Lisa Smith,vanessabates@example.org,5352322252,3544348088297957,2024-04-19 +City Hotel,1,55,2017,April,14,2,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,228.22,0,1,No-Show,John Steele,sabrina99@example.net,451.620.3745,4064737557040191026,2026-03-24 +City Hotel,0,19,2017,April,16,16,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Check-Out,Sandra Casey,ksims@example.org,620-603-9490,4980017604029699278,2025-03-19 +Resort Hotel,0,147,2017,November,47,23,1,3,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,C,0,Refundable,15.0,222.0,0,Transient-Party,78.33,0,0,Check-Out,Darrell Simmons,jonesdennis@example.net,775-757-2229x97712,4080769689785,2025-11-03 +Resort Hotel,0,6,2017,August,35,29,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,64.17,0,0,Check-Out,Valerie Harrison,scottkirk@example.net,800.572.3531x8751,346608178840958,2024-11-02 +City Hotel,0,21,2017,March,11,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,222.0,0,Transient-Party,107.9,0,0,Check-Out,Anthony Cherry,jessicafisher@example.com,(670)983-9469x4499,4368940107859624770,2025-04-13 +Resort Hotel,1,257,2017,May,21,21,2,5,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,2.12,0,0,Canceled,Cody Lawson,imccoy@example.org,577-510-4205,3503524663127897,2025-05-08 +City Hotel,0,153,2017,February,7,15,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.9,0,1,Check-Out,Barbara Wagner,lunaclarence@example.net,343.856.1357,3503030854407932,2025-12-19 +City Hotel,0,34,2017,June,26,26,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,82.21,0,0,Check-Out,Scott James,charlesmiller@example.net,001-606-829-0088x5197,4814045059411830253,2025-11-09 +City Hotel,0,47,2017,April,16,17,0,3,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,237.0,179.0,0,Transient,109.67,0,3,Check-Out,John Moore,johnsonerin@example.com,850.226.2196,3562825790400737,2024-12-09 +Resort Hotel,0,13,2017,November,48,29,1,2,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,243.0,179.0,0,Transient,105.14,1,1,Check-Out,Matthew Farley,vjohnson@example.org,978.750.0502x442,4304447409647607,2024-07-13 +City Hotel,0,22,2017,March,13,24,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,142.19,0,2,Check-Out,Mrs. Tonya Byrd,collinsmatthew@example.com,+1-825-530-2146,4140711871057274,2024-05-11 +City Hotel,1,357,2017,January,4,23,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,110.75,0,0,Canceled,Catherine Davis,znichols@example.net,6343786556,3566536623541250,2025-08-27 +City Hotel,0,93,2017,March,11,10,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,1,D,E,0,No Deposit,28.0,179.0,75,Transient-Party,89.56,0,1,Check-Out,Mary Wilkinson,christopher38@example.net,(596)535-0314x109,6552544252704529,2025-02-04 +City Hotel,0,40,2017,June,26,27,2,0,2,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,A,0,No Deposit,281.0,179.0,0,Transient-Party,85.63,0,1,Check-Out,Michael Baker,jason22@example.com,614-401-3050x46727,6011278292366065,2025-03-07 +Resort Hotel,1,153,2017,December,49,5,1,3,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,101.32,0,0,Canceled,Peggy Mendoza,margaretbullock@example.net,001-531-911-0168,6011663796754280,2025-07-01 +City Hotel,1,97,2017,June,23,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient,62.11,0,0,Canceled,Paul Anderson,jacksonkristina@example.org,208.500.3146x84625,4224300049024397,2025-07-12 +City Hotel,1,141,2017,February,7,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,19,Transient,118.14,0,0,Canceled,Wayne Robinson,joseph88@example.org,+1-456-375-9243x114,502027791479,2025-09-24 +City Hotel,0,0,2017,September,35,1,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,43.65,1,1,Check-Out,Brittany Farley,amejia@example.net,+1-819-356-3762x6508,4744953385065230790,2025-09-16 +City Hotel,0,214,2017,March,12,21,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,139.46,0,1,Check-Out,Katie Walters,ekelly@example.com,(210)729-3781x97980,4308537383059880,2024-04-28 +City Hotel,0,105,2017,August,31,3,2,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,80.2,0,2,Check-Out,Dorothy Osborn,larry95@example.net,001-722-465-3974x624,2279358108960289,2024-04-16 +City Hotel,1,377,2017,June,25,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,79.51,0,0,Canceled,William Hodge,angelagarcia@example.com,980.736.7146,4701518570945380844,2025-06-30 +City Hotel,0,1,2017,September,36,4,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,87.75,0,1,Check-Out,Michelle Ortega,kathrynmartin@example.net,481.448.9363x617,3526608454156240,2025-07-15 +Resort Hotel,0,413,2017,September,38,17,1,4,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,2,No Deposit,30.0,179.0,0,Transient-Party,37.65,0,1,Check-Out,Shannon White,matthew34@example.com,273.722.8096x7240,4527167732432525884,2025-01-31 +City Hotel,0,175,2017,May,20,16,2,5,1,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,165.87,0,2,Check-Out,Jennifer Bennett,brandi11@example.com,+1-520-778-1911x5330,4267908113683774769,2025-10-30 +City Hotel,0,49,2017,February,8,24,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,108.29,0,3,Check-Out,Lisa Kaiser,acostajoseph@example.com,(493)915-4724x92640,676365325544,2024-07-16 +Resort Hotel,1,12,2017,November,45,10,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,46.53,0,1,No-Show,Matthew Mccullough,grantdustin@example.org,(828)577-6395x39821,6011072922882413,2025-05-16 +Resort Hotel,0,0,2017,September,36,9,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,360.0,179.0,0,Transient-Party,78.97,0,0,Check-Out,Steven Tyler,erika94@example.com,001-652-357-2033x751,4020276278730,2025-06-03 +City Hotel,0,1,2017,September,36,6,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,G,0,No Deposit,13.0,45.0,0,Transient,0.69,0,1,Check-Out,Robert Jones,qmccormick@example.com,3077124210,4861866248922648752,2024-04-18 +Resort Hotel,1,149,2017,July,29,17,2,1,1,0.0,0,BB,PRT,Complementary,Direct,0,1,1,E,E,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Canceled,Kim Nelson,alicia69@example.net,2445796657,4626472924701,2025-04-26 +Resort Hotel,0,10,2017,March,13,24,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,252.0,0,0,Canceled,Katherine Garcia,kevin51@example.net,888-795-2251x28504,378853544616473,2024-11-23 +City Hotel,1,389,2017,February,8,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,101.85,0,0,Canceled,John Stewart,gregory57@example.org,3225087643,343539269706324,2025-03-20 +City Hotel,0,38,2017,June,22,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,160.7,0,1,Check-Out,Tiffany Barton,scottnicolas@example.org,7615075363,30156766515666,2024-10-17 +Resort Hotel,1,321,2017,April,16,17,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient-Party,129.54,0,1,Canceled,Erica Smith,mbrown@example.net,490-995-6534,5283563811753536,2025-06-30 +City Hotel,1,18,2017,December,51,23,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.77,0,0,Canceled,Colleen Cruz,nelsonrebecca@example.org,(764)724-7633x879,675937993805,2025-07-16 +City Hotel,1,44,2017,May,19,12,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,E,0,No Deposit,10.0,179.0,75,Contract,94.93,0,0,Canceled,Anthony Mueller,spowell@example.net,(429)787-7842,4958090333288145,2026-03-07 +City Hotel,0,1,2017,March,14,30,1,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,Crystal Clayton,xwilson@example.org,431.884.5242,180042944995442,2024-07-17 +Resort Hotel,0,190,2017,March,10,8,0,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,202.37,1,2,Check-Out,Jacob Brown,jessicabell@example.com,4909846501,3578456283591782,2025-11-03 +City Hotel,1,412,2017,April,16,15,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,87.59,0,0,Canceled,Rachel Williams,jodi25@example.net,(772)459-8296,3595910710826137,2025-10-15 +Resort Hotel,0,1,2017,November,48,26,2,2,2,1.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,114.4,1,0,Check-Out,Keith Lloyd,huffscott@example.org,+1-742-632-1765x722,30257061328365,2024-09-03 +City Hotel,1,422,2017,February,8,18,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,90.22,0,0,Canceled,Mary Richardson,cbauer@example.net,001-872-460-7785,3583985209392472,2025-10-08 +City Hotel,0,20,2017,April,15,10,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,214.74,0,0,Check-Out,Nathan Jones,brianoliver@example.net,456-945-7760x65418,4857520030728989150,2025-10-07 +City Hotel,0,2,2017,September,36,2,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,43.48,0,1,Check-Out,Tamara Peterson,phoffman@example.net,+1-742-840-3500x4452,4209686145336738,2024-10-09 +Resort Hotel,0,175,2017,November,45,6,2,5,1,0.0,0,BB,SWE,Groups,Corporate,0,0,0,A,E,0,Refundable,12.0,222.0,0,Transient-Party,83.11,0,0,Check-Out,Alan Mahoney,jonathanhansen@example.org,(794)758-7041x9498,4106211906904246,2026-02-02 +City Hotel,0,19,2017,November,47,22,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,G,A,0,No Deposit,12.0,179.0,0,Transient,81.05,0,3,Check-Out,Nathan Vargas,kleinmatthew@example.org,912.927.6644,3504149524703543,2024-09-18 +City Hotel,0,243,2017,June,22,3,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,79.0,179.0,0,Contract,54.46,0,1,Check-Out,Frank Payne,montoyachristopher@example.net,(989)341-5575,3572490840512219,2025-01-11 +Resort Hotel,1,307,2017,March,9,1,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,160.52,0,0,Canceled,Cody Woods,anamoore@example.net,281-457-8095,4643681045242772204,2025-03-24 +City Hotel,1,34,2017,February,8,18,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.41,0,1,Canceled,Chad King,hicksjennifer@example.net,(885)797-3697x47549,3593064428939675,2025-11-05 +Resort Hotel,1,264,2017,February,5,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,Non Refund,10.0,179.0,0,Transient,129.42,0,0,Canceled,Christopher Smith,alexander39@example.net,+1-929-588-8808x9842,4136873927634,2025-05-01 +Resort Hotel,1,292,2017,August,33,16,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient-Party,112.99,0,0,Canceled,Marissa Davis,amanda55@example.org,4009259967,30204519326898,2025-10-17 +City Hotel,0,0,2017,September,38,18,0,2,1,1.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,53.21,0,0,Check-Out,Ann Parker,benjamin81@example.com,(292)691-1037,3522665458612135,2026-03-18 +City Hotel,0,150,2017,November,44,3,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient,107.85,0,2,Check-Out,Laura Walton,cohenjoseph@example.org,+1-204-964-0457x9938,213132197513553,2025-12-31 +Resort Hotel,0,204,2017,September,36,4,0,3,1,2.0,0,BB,IRL,Direct,Direct,0,0,0,G,G,2,No Deposit,248.0,179.0,0,Transient,81.21,1,0,Check-Out,Travis Powell,vcosta@example.com,001-307-917-8514x1406,3549214711611235,2026-02-05 +City Hotel,1,172,2017,June,26,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,185.92,0,0,Canceled,Maria Sullivan,emartin@example.net,542-954-8727,4532395683384443,2024-09-26 +City Hotel,1,423,2017,May,18,6,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.36,0,0,Canceled,Kelly Lewis,rhowe@example.com,+1-625-724-7380x6973,3587444158163209,2025-07-08 +City Hotel,1,13,2017,April,15,9,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,0,No Deposit,8.0,179.0,0,Transient,237.47,0,1,Canceled,John Webb,kylemeyers@example.org,001-615-419-9583x06374,4115841468602793,2024-04-17 +City Hotel,0,22,2017,September,37,14,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.06,0,1,Check-Out,Lance Townsend,joseph56@example.com,(561)236-8477x155,4335147599985,2025-01-25 +Resort Hotel,0,8,2017,November,48,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,62.49,0,3,Check-Out,Matthew Leonard,fletchermichele@example.net,690-922-3381x621,213139076065084,2025-11-07 +City Hotel,0,27,2017,November,46,15,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,239.0,179.0,0,Transient,98.9,0,2,Check-Out,Tyler Dominguez,pcooper@example.org,837.542.1473x034,3511448962740418,2024-10-04 +Resort Hotel,1,304,2017,July,29,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,E,D,0,No Deposit,10.0,179.0,75,Contract,92.72,0,1,Canceled,Kimberly Alvarez,phillipspaul@example.org,792-971-8339,4133207077357237,2025-11-28 +Resort Hotel,0,46,2017,December,49,2,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,78.0,1,3,Check-Out,Heather Pittman,amymorris@example.com,5594397132,4667615336114,2025-11-13 +City Hotel,0,44,2017,February,7,13,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,93.1,0,2,Check-Out,Teresa Cohen,lauren12@example.net,846.956.0051x3145,4330991880328490,2025-10-29 +City Hotel,0,53,2017,October,41,10,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.62,0,2,Check-Out,Melissa Parker,donaldsolomon@example.net,851.403.2297x510,213191075502369,2025-08-10 +City Hotel,0,20,2017,March,10,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.92,0,2,Check-Out,Brandon Carrillo,anita31@example.org,358-302-3607x72059,4347865380183,2024-08-06 +Resort Hotel,0,9,2017,January,4,21,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.71,1,2,Check-Out,Colin Mckay,moyernancy@example.org,242-254-7796,6593133937273950,2024-05-27 +City Hotel,1,145,2017,October,42,18,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,108.85,0,0,Canceled,Rachel Walsh,spencerabigail@example.net,(571)752-0906,180061892590740,2024-08-24 +City Hotel,0,16,2017,May,22,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,101.4,0,3,Check-Out,Caleb Williams,andrewknight@example.org,217-390-3568x46934,583063704212,2025-03-24 +City Hotel,0,13,2017,June,26,27,0,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,86.0,0,0,Check-Out,Benjamin Wilkinson,edwardwilliams@example.net,(777)299-8537,4043605221721696,2025-09-13 +City Hotel,1,159,2017,August,35,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,13,Transient,84.3,0,0,Canceled,Katelyn Gray,natalie76@example.com,901.243.0139,4513104981111,2025-08-18 +Resort Hotel,0,20,2017,August,32,12,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient-Party,44.02,0,0,Check-Out,Kristine Bryant DVM,zwilliams@example.net,8763357028,4588419108761607916,2026-01-15 +Resort Hotel,0,159,2017,June,26,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,77.38,0,0,Check-Out,Michael Smith,mharrell@example.net,293.216.9886x7897,4439838605546007,2025-02-01 +Resort Hotel,0,200,2017,April,14,5,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,62.12,0,3,Check-Out,Justin Foster,angelagray@example.com,001-870-311-5777x66060,5340115255825881,2026-03-03 +City Hotel,1,90,2017,August,32,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,75,Transient-Party,62.62,0,0,Canceled,Maurice Graham,rroberts@example.org,757-238-0695x3817,3574435976408565,2024-10-04 +Resort Hotel,0,26,2017,October,42,18,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,316.0,179.0,0,Transient,47.05,0,1,Check-Out,Kenneth Watkins,georgevanessa@example.com,7945266384,3542125890224722,2024-07-27 +City Hotel,0,80,2017,November,47,22,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,80.38,0,2,Check-Out,Stacey Davis,swalker@example.com,269-395-0823,4319742551491983,2024-08-03 +City Hotel,0,96,2017,May,18,2,2,4,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,26.0,179.0,0,Transient,225.7,0,1,Check-Out,Janice Bailey,qlopez@example.net,001-465-516-2078,4833351843921810,2024-03-31 +City Hotel,0,47,2017,June,25,18,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,1,No Deposit,10.0,63.0,0,Transient-Party,89.62,0,0,Check-Out,Amanda Hodge,brittany12@example.org,867.539.5284x15996,5568546231163192,2025-03-13 +City Hotel,0,95,2017,December,51,19,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.16,0,1,Check-Out,Jason Gomez,michaelrangel@example.org,001-994-809-1864x2753,5285461393288484,2025-11-03 +Resort Hotel,1,1,2017,March,11,12,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,1.86,0,0,Canceled,Julie Johnson,martinjeffrey@example.net,975-408-3148,6011296608263529,2025-01-30 +Resort Hotel,0,174,2017,April,14,4,0,7,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,3,No Deposit,247.0,179.0,0,Transient,93.29,0,3,Check-Out,Vanessa Cunningham,ryangreen@example.com,001-343-215-5867x7524,376745746995691,2024-04-29 +City Hotel,1,52,2017,June,22,1,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.41,0,1,Canceled,Tonya Alexander,stevensimmons@example.net,939.463.3250,374072752414638,2024-11-29 +City Hotel,1,367,2017,January,5,31,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,121.21,0,0,Canceled,Mark Santos,ruth44@example.org,(467)226-8260x716,4163365760998427819,2025-05-30 +City Hotel,1,16,2017,August,32,8,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,89.89,0,0,Canceled,Michael Walker,crystaladams@example.org,+1-874-751-2878x62633,213156515734435,2024-09-18 +City Hotel,0,1,2017,January,4,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,2,No Deposit,240.0,179.0,0,Group,106.98,0,2,Canceled,Michael Watkins,davidharvey@example.com,(956)866-3922x9165,5394508354871548,2025-02-14 +City Hotel,0,329,2017,February,7,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,125.99,0,0,Check-Out,Cassidy Bailey,stephanie72@example.org,619-435-9972,4278969050309,2025-12-30 +City Hotel,1,96,2017,February,6,8,1,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,245.4,0,0,Canceled,Christopher Gutierrez,nicholas32@example.org,594-336-8153,36454434899537,2025-05-29 +Resort Hotel,1,47,2017,July,27,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,47.33,0,0,Canceled,Elijah Archer,vcochran@example.net,800.795.6886,4556599863939173691,2025-04-08 +City Hotel,0,42,2017,June,23,9,1,0,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,92.67,1,0,Check-Out,Lisa Hendricks,natasha55@example.org,318.893.7220x9000,4250643704866,2025-09-07 +Resort Hotel,0,145,2017,December,51,18,2,0,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,106.6,1,0,Check-Out,Kristin Hudson,paulmiddleton@example.com,810-282-8408x16982,3579518124960663,2024-07-06 +City Hotel,1,1,2017,February,7,13,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.85,0,0,Canceled,James Livingston,alexander83@example.net,250.864.2394x594,3560375404989016,2025-11-04 +City Hotel,1,102,2017,June,25,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,19,Transient,129.64,0,0,Canceled,Jeffrey Evans,kbrown@example.org,7919619655,4977020489196,2025-02-13 +City Hotel,0,55,2017,May,20,15,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.75,0,0,Check-Out,Dennis Santana,kimberly93@example.net,+1-489-767-9277,4015076292536272939,2024-06-21 +City Hotel,0,54,2017,May,20,14,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,212.61,1,1,Check-Out,Nichole Parker,lauramckenzie@example.net,(692)867-1872x04659,503844830243,2026-02-11 +Resort Hotel,0,16,2017,April,18,27,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient-Party,127.07,0,0,Check-Out,Benjamin Mosley,gwalter@example.net,+1-703-896-4063x016,2718711458000602,2024-10-29 +Resort Hotel,0,179,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,13.0,222.0,0,Transient-Party,31.46,0,0,Check-Out,Jennifer Reilly,garciaricardo@example.net,+1-638-254-6922x0966,676232292539,2025-04-16 +City Hotel,0,37,2017,October,40,3,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.48,0,0,Check-Out,Nicole Sanchez,shelia28@example.com,+1-577-513-5251,3559903705039000,2026-03-25 +City Hotel,0,248,2017,February,9,28,0,4,2,0.0,0,BB,POL,Direct,Direct,0,0,0,E,E,2,No Deposit,13.0,179.0,0,Transient,138.45,0,1,Check-Out,Shannon Hill,stephanie30@example.com,932.809.4226x2629,374050990436092,2025-09-22 +Resort Hotel,0,1,2017,July,27,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,46.2,1,1,Check-Out,Darrell Ibarra,donnafrancis@example.com,+1-427-344-2472,376864579758751,2025-10-29 +City Hotel,0,32,2017,February,6,4,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,121.1,0,2,Check-Out,Deborah Fox,frymiranda@example.org,552-423-5916x41954,3523210440326426,2024-06-21 +City Hotel,0,87,2017,September,35,1,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,89.54,1,0,Check-Out,Mary Hoffman,ocalderon@example.net,767-942-4848,3507571253387668,2025-10-08 +Resort Hotel,0,164,2017,December,51,22,4,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,75,Transient,252.0,1,1,Check-Out,Anthony Murphy,osmith@example.org,001-548-293-1282x847,30155312308782,2024-09-09 +Resort Hotel,0,20,2017,April,18,30,1,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,225.9,1,1,Check-Out,Larry Woods,tbarr@example.org,3736324837,180077178113965,2025-08-23 +Resort Hotel,0,3,2017,May,18,1,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,204.06,0,2,Check-Out,Virginia Caldwell,williamstiffany@example.net,917-508-0235x611,4482749346368054,2024-08-18 +City Hotel,1,18,2017,June,26,29,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,45.45,0,1,Canceled,Patricia Boyd,brian94@example.org,5653052310,6596870191094153,2026-03-24 +City Hotel,0,0,2017,March,12,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,121.42,1,0,Check-Out,Debra Wright,ohudson@example.net,930.433.2836x1481,4045032615240548,2025-07-25 +City Hotel,0,53,2017,June,24,15,0,2,1,0.0,0,BB,RUS,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,80.0,0,Transient-Party,99.78,0,1,Check-Out,Adam Shannon,jwells@example.net,(659)304-3824x23523,5107364811048462,2024-05-11 +Resort Hotel,0,145,2017,September,36,3,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,243.0,179.0,0,Transient,84.61,0,1,Check-Out,Betty Vazquez,williamsjose@example.com,4985104957,4020660587728261,2024-08-17 +Resort Hotel,0,357,2017,February,6,7,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,91.23,0,0,Check-Out,John Williams,mayskelsey@example.org,(434)870-9570x28872,2270373271873994,2024-06-12 +Resort Hotel,0,236,2017,April,15,6,4,10,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,250.0,179.0,0,Transient,169.79,1,2,Check-Out,Steven Stone,michelle24@example.net,(598)554-2656,4218671108312420717,2025-08-23 +City Hotel,0,50,2017,August,34,21,1,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,118.63,0,0,Check-Out,Mark Mueller,omills@example.org,431-212-8085x47075,5532417882752944,2025-11-25 +Resort Hotel,1,35,2017,October,44,28,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,45.1,0,0,Canceled,John Richards,daniel47@example.org,269-709-8513,4421626727851250,2025-08-14 +Resort Hotel,0,62,2017,May,18,2,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,214.67,0,1,Check-Out,Beth Sanchez,adam88@example.com,+1-315-584-9716,4681658444230,2025-08-27 +Resort Hotel,1,0,2017,August,32,9,0,1,3,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,8.71,0,0,Canceled,Donald Reynolds,wbriggs@example.com,(582)403-9663x45316,4688624906928104,2024-09-23 +City Hotel,1,358,2017,December,52,24,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,65.24,0,0,Canceled,Timothy Hernandez,morrisshelly@example.net,491-925-5882,2688377729092921,2024-09-01 +City Hotel,0,2,2017,September,39,25,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,E,0,No Deposit,14.0,45.0,0,Group,55.94,0,0,Check-Out,Lacey Morrow,denniswilson@example.net,855-443-5068x267,377410960261705,2024-09-22 +City Hotel,1,382,2017,June,24,13,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,106.79,0,0,Canceled,Omar Kelly,stephentate@example.org,+1-551-378-4862x54808,6011469933308802,2025-02-11 +Resort Hotel,0,164,2017,March,10,6,2,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,234.26,1,0,Check-Out,Brian Gross,sandersalexandra@example.net,497-409-1538x8223,36123713088878,2025-05-04 +City Hotel,0,107,2017,April,16,15,3,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,115.85,0,1,Check-Out,Scott Lin,parkertim@example.com,901.301.2553x7195,4177221827316,2024-04-22 +Resort Hotel,0,1,2017,November,46,17,4,2,2,0.0,0,FB,PRT,Direct,GDS,0,0,0,E,E,0,No Deposit,39.0,179.0,0,Transient,65.27,1,0,Check-Out,Linda Lee,jerrynorman@example.net,(500)402-4007x1690,30590287770287,2024-08-12 +Resort Hotel,0,151,2017,March,10,5,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,63.96,0,0,Check-Out,Lori Franco,thomas91@example.com,+1-490-923-1700,3564820941025515,2024-04-02 +City Hotel,0,156,2017,November,48,26,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,75,Transient,56.75,0,0,Canceled,Kristi Jordan,mckeedestiny@example.net,216-795-8524x6044,6589622654763215,2025-09-27 +Resort Hotel,0,0,2017,April,17,23,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient-Party,64.21,0,1,Check-Out,Tammy Lynch,katiewu@example.com,718-407-8586,6531670737873310,2024-12-30 +City Hotel,1,115,2017,December,51,19,1,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,132.71,0,0,Check-Out,Debbie Ward,tannerblackburn@example.com,559-971-8961,180078635570383,2025-06-26 +City Hotel,0,101,2017,November,47,19,2,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,113.3,0,1,Check-Out,David Murphy,dunderwood@example.com,(299)877-0401,2264144489584642,2026-03-03 +Resort Hotel,0,13,2017,September,36,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,239.0,179.0,0,Transient,55.13,0,1,Check-Out,Bradley Walker,hamiltonjohn@example.com,436.950.3567x24431,4131023474937386,2025-06-28 +City Hotel,0,19,2017,June,25,17,0,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,158.5,0,1,Check-Out,Jacqueline Dyer,samantha67@example.net,8108480458,4589498757854242,2024-11-20 +Resort Hotel,0,0,2017,April,15,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,E,0,No Deposit,17.0,66.0,0,Transient-Party,108.88,0,0,Check-Out,Clifford Poole,margaret37@example.org,429.794.2977x578,6011631814062614,2025-03-27 +City Hotel,1,102,2017,May,20,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,71.93,0,0,Canceled,Michael Taylor,zphillips@example.org,614-934-9987x521,3538812226859745,2024-07-19 +City Hotel,0,48,2017,December,52,23,1,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,219.24,0,1,Check-Out,Chloe Ellis,davisrichard@example.net,+1-321-480-2153x4725,4453750173388889,2024-09-17 +City Hotel,0,160,2017,February,8,19,0,1,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,102.48,0,0,Check-Out,Jason Douglas,briana52@example.com,531-638-6503,4622731097827596,2025-09-02 +City Hotel,0,54,2017,November,47,18,1,3,1,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,105.33,0,1,Check-Out,David Hayes,whiteheaddavid@example.net,001-663-563-6399x660,3509126206563341,2025-03-28 +City Hotel,0,0,2017,April,15,14,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,219.64,0,1,Check-Out,Kathy Steele,jturner@example.org,542.758.5911,3546436926093148,2024-10-17 +City Hotel,0,429,2017,June,26,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.4,0,0,Check-Out,Jennifer Underwood,richard34@example.net,9983420619,675943368455,2024-12-09 +Resort Hotel,1,144,2017,October,40,3,4,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,181.0,179.0,0,Transient,81.21,0,0,Canceled,Amanda Moody,glenmiller@example.org,001-229-282-0049x7004,3503946026944298,2025-12-11 +Resort Hotel,0,11,2017,November,44,1,2,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,No Deposit,317.0,179.0,0,Transient,41.99,1,0,Check-Out,Marilyn Page DVM,johnsondiane@example.net,893.365.6541,676250370001,2025-06-18 +Resort Hotel,0,42,2017,August,32,6,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,100.4,0,1,Check-Out,Diana Mullins,heatherglover@example.net,240-361-5577x538,5196587377574701,2024-11-06 +City Hotel,1,11,2017,October,44,29,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.2,0,0,Canceled,Brittany Ballard,nelsonbrian@example.org,(271)885-2198x103,4409270232589,2024-06-22 +City Hotel,0,107,2017,February,8,22,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,32.0,179.0,0,Transient,3.86,0,0,Check-Out,Matthew Freeman,brandonmiller@example.com,575.324.5276x56465,349826211148604,2024-09-26 +City Hotel,0,20,2017,January,2,8,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,160.66,0,2,Check-Out,Amy Baker,taylor81@example.com,+1-840-307-4862x0514,4835106316685,2025-03-07 +City Hotel,0,49,2017,December,50,16,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,114.48,0,0,Check-Out,Elizabeth Skinner MD,gcarroll@example.net,8535276549,180022304457019,2025-09-23 +Resort Hotel,0,2,2017,July,29,13,1,5,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,1,No Deposit,12.0,191.0,0,Transient,50.99,1,1,Check-Out,Riley Davenport,olivia38@example.org,001-427-393-5108x06327,060491037325,2025-06-24 +Resort Hotel,0,10,2017,June,25,21,1,2,1,0.0,0,Undefined,,Groups,Corporate,0,0,0,A,A,0,No Deposit,323.0,179.0,0,Transient-Party,52.6,0,0,Check-Out,Carla Briggs,joannethompson@example.com,+1-552-838-0036,2242483266408394,2024-09-29 +Resort Hotel,0,248,2017,April,18,28,0,5,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,103.4,0,0,Check-Out,Diana Myers,josechan@example.net,588-920-7305,5135182787925570,2024-10-25 +City Hotel,1,144,2017,November,47,19,1,3,2,0.0,0,BB,PRT,Groups,Undefined,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,135.01,0,0,Canceled,Paul Blair,hicksanthony@example.com,001-576-627-2603x807,676299894995,2025-09-30 +City Hotel,1,324,2017,March,13,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,138.7,0,0,Canceled,Olivia Gonzalez,richardssteven@example.net,(843)321-7351,639023725687,2024-07-26 +City Hotel,0,13,2017,May,19,9,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.38,0,1,Check-Out,Xavier Hanson,shane36@example.net,434.261.3163x948,3528385804631028,2024-06-23 +City Hotel,0,0,2017,November,48,28,1,3,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,116.55,0,1,Check-Out,Chad Taylor,frank42@example.net,+1-407-938-0884x8738,378487541868132,2025-07-25 +City Hotel,0,52,2017,April,16,20,2,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,237.4,0,3,Check-Out,William Lewis,erika02@example.com,+1-258-579-5591x10720,3584743683856960,2025-07-15 +Resort Hotel,0,0,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,112.67,1,0,Check-Out,Crystal Robinson,sotomadison@example.net,817.353.7975x8961,4953958193476452,2025-03-12 +City Hotel,1,256,2017,April,17,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,93.92,0,0,Canceled,John Jones,raymond69@example.net,001-904-338-4624x99217,630495699237,2026-01-25 +Resort Hotel,0,13,2017,August,31,2,0,6,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,231.72,0,1,Check-Out,Meagan Patterson,sandrasmith@example.net,(698)752-2597,4279304418157105,2025-09-02 +City Hotel,0,38,2017,January,2,7,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.61,0,0,Check-Out,Timothy Smith,ashleyhernandez@example.org,699-336-4577x6787,4814566758208092,2025-12-24 +City Hotel,0,11,2017,May,19,9,1,4,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.42,0,1,Check-Out,Brenda Mendoza,cortezalexandra@example.com,930-879-7389x918,3584837492928653,2024-09-06 +City Hotel,0,35,2017,July,29,18,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,41,Transient,86.86,0,0,Check-Out,Nicole Edwards,hicksrobert@example.net,(371)711-5494x7028,2290392092775622,2025-06-16 +Resort Hotel,0,10,2017,November,48,26,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,222.0,0,Transient,42.47,0,0,Check-Out,Amy Ramirez,jareddickson@example.net,(292)283-6944x852,3548882956369569,2025-03-28 +City Hotel,1,7,2017,July,29,19,1,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,82.58,0,1,Canceled,Anthony David,michael97@example.com,+1-504-743-1622,36631436290183,2024-04-28 +Resort Hotel,0,4,2017,January,4,20,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,47.12,1,0,Check-Out,David Perkins,dunnashley@example.net,(978)502-8907x2345,371109031419625,2024-04-01 +Resort Hotel,0,23,2017,November,46,15,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,51.42,0,0,Check-Out,Rose Jackson,wattsstephanie@example.net,+1-486-983-3071x49450,3553147351483742,2025-08-06 +Resort Hotel,0,149,2017,January,2,4,4,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,63.54,0,0,Check-Out,Devin Hardin,pedro98@example.org,2312427404,4463729427614991,2025-01-07 +Resort Hotel,0,13,2017,February,6,7,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,1,G,G,1,No Deposit,240.0,179.0,0,Transient,112.75,1,3,Check-Out,Amber Fernandez,angelaramirez@example.org,6513046124,341514779435476,2025-08-31 +City Hotel,1,158,2017,May,18,1,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,242.61,0,0,Canceled,Travis Marsh,aholmes@example.net,516.573.2167x832,377028893098539,2025-03-14 +City Hotel,0,11,2017,August,33,16,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,55.0,0,0,Check-Out,Rebecca Lowery,donnaarnold@example.net,+1-773-881-0057x7718,180038041016066,2025-08-26 +Resort Hotel,1,155,2017,February,7,12,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,168.08,0,0,Canceled,Jesse Martin,christine41@example.net,707-936-6559x429,2720188999773094,2024-05-25 +City Hotel,1,248,2017,August,32,7,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.89,0,0,Canceled,Robert Carter,lindsey79@example.org,+1-811-918-7462,3551275655616550,2025-02-12 +City Hotel,1,185,2017,June,24,13,1,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.99,0,1,Canceled,Amy Olsen,justin51@example.com,2148202916,4800430054664944,2024-07-05 +City Hotel,0,8,2017,March,9,1,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,6.0,179.0,0,Transient,142.78,0,1,Check-Out,Sydney Green,paulaschultz@example.org,(524)900-7319,560226514548,2025-02-11 +Resort Hotel,0,42,2017,January,2,8,4,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,221.77,0,2,Check-Out,Julia Parsons,bshannon@example.com,001-848-497-9187,4070907597382863,2024-11-12 +City Hotel,0,10,2017,October,44,29,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,154.0,179.0,0,Transient,63.98,0,3,Check-Out,Thomas May,huangkayla@example.org,+1-567-448-6937x9150,4154143606320657,2025-12-18 +City Hotel,1,192,2017,April,14,2,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,176.48,0,0,Canceled,Erica Green,francesthomas@example.net,762.924.9617x13989,4006876486971743377,2026-01-22 +City Hotel,0,4,2017,July,28,11,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,44.81,0,3,Check-Out,Richard Burke,smithdana@example.net,340.227.1927x239,3515247363643163,2025-06-17 +Resort Hotel,0,4,2017,September,38,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,E,G,0,No Deposit,237.0,179.0,0,Transient,93.82,0,1,Check-Out,Tammy Williams,aherrera@example.net,655-489-4388x08591,3561759152285371,2025-01-17 +City Hotel,0,50,2017,April,15,9,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,96.08,0,0,Check-Out,Joshua Herrera,jcross@example.org,367.805.1112,375589963403802,2025-10-10 +City Hotel,0,0,2017,April,15,9,1,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,1,Check-Out,Brittany Byrd,robert53@example.org,001-651-200-5842,503806523950,2024-08-19 +City Hotel,0,18,2017,November,47,21,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,74.0,179.0,19,Transient-Party,74.89,0,0,Check-Out,Gina Brennan,edwardcisneros@example.org,915-825-6654x08097,346663175819075,2024-11-16 +City Hotel,0,0,2017,January,2,4,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.25,0,1,Check-Out,Christopher George,williegarcia@example.net,(526)827-9339x2595,675981166399,2025-06-01 +Resort Hotel,0,33,2017,February,6,8,2,4,3,1.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,252.0,0,0,Check-Out,Lauren Watts,harrisstephanie@example.net,676.870.3108x610,4631900662305533974,2024-09-05 +City Hotel,0,14,2017,May,18,4,2,3,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,D,D,0,No Deposit,152.0,179.0,0,Transient,136.74,0,0,Check-Out,Peter Campbell,kimstein@example.net,417.458.6264x82000,4493302064573551979,2024-10-13 +Resort Hotel,0,8,2017,June,24,15,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Contract,49.25,0,1,Check-Out,Jonathon Stevenson,jeremysimpson@example.org,308.820.4577x73221,4612976062388791,2025-08-26 +City Hotel,1,14,2017,December,50,9,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,130.76,0,0,Canceled,Karla Burton,jonathon41@example.com,688.641.5792x793,3596723333856558,2025-09-17 +Resort Hotel,0,64,2017,December,49,6,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,85.0,179.0,0,Transient-Party,62.62,0,0,Check-Out,Randy Jones,blackangela@example.net,001-332-543-4500x0956,4501027601914731,2025-05-12 +City Hotel,0,17,2017,June,22,1,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,45.0,0,Transient,114.24,0,0,Check-Out,Carlos Miller,kingamy@example.net,001-280-580-7892x95672,180036849660424,2025-08-28 +City Hotel,1,111,2017,November,46,15,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,118.67,0,0,Canceled,Joseph Church,amber22@example.org,(678)287-0135x50728,4218801467486125624,2026-02-21 +City Hotel,0,0,2017,November,46,14,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,100.88,0,1,Check-Out,Michael Haas,davidshaw@example.net,001-345-222-6993x3418,4289665677982526,2024-10-07 +Resort Hotel,0,110,2017,April,16,20,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient-Party,252.0,1,3,Check-Out,Renee Newton,roger61@example.net,+1-502-425-4466x866,6516836993922286,2024-09-11 +City Hotel,0,60,2017,December,52,25,1,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,118.85,0,2,Check-Out,Thomas Daugherty,gmiller@example.net,585-256-4568x9425,4793453057527126377,2026-03-04 +Resort Hotel,0,53,2017,August,33,17,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,238.0,179.0,0,Transient,61.49,1,3,Check-Out,Scott Roy,mirandaricardo@example.org,(690)482-3453x21917,4643316912362,2025-03-05 +City Hotel,0,43,2017,August,34,25,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,181.0,179.0,0,Transient,77.79,0,0,Check-Out,Mr. Robert Cantu,allenjeremy@example.net,001-839-947-4267x71768,3501370587646840,2026-03-21 +Resort Hotel,0,15,2017,April,17,24,0,2,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,222.9,1,3,Check-Out,Heather Matthews,jennifer21@example.com,820.677.4239,502032987294,2025-06-05 +City Hotel,0,96,2017,January,3,19,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.84,0,2,Check-Out,Darlene Kelly,ebony44@example.com,(237)784-1630,6578643050034541,2024-08-02 +City Hotel,0,2,2017,January,2,11,1,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,144.97,0,0,Check-Out,Nancy Merritt,ericjohnson@example.org,001-466-493-7965x389,345133753849424,2025-09-02 +City Hotel,0,2,2017,June,23,3,1,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,45.0,0,Transient,60.13,0,1,Check-Out,Brian Thompson,veronica99@example.com,001-842-614-8585x218,30408926787804,2025-10-05 +City Hotel,1,143,2017,August,34,24,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,A,0,Non Refund,12.0,179.0,60,Transient,217.75,0,0,Canceled,Theresa Goodman,kelsey22@example.net,(644)606-0282x23032,3517213219838314,2024-10-04 +City Hotel,0,12,2017,March,13,25,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,2.79,0,1,Check-Out,Justin White,christina73@example.org,320.784.6424,3554845824474086,2026-02-26 +Resort Hotel,1,116,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,D,0,No Deposit,34.0,179.0,75,Transient-Party,92.13,1,1,No-Show,Scott Hernandez,travisrobertson@example.com,(459)545-2071x3801,4283063523200812,2024-04-30 +City Hotel,0,0,2017,June,23,6,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,135.88,0,0,Check-Out,Christopher Shelton,warrenkrista@example.com,4765447007,180080219239963,2025-05-13 +City Hotel,1,313,2017,January,4,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,102.2,0,0,Canceled,Debbie Koch,melanie20@example.org,+1-991-519-4949x26739,4427297162961808,2025-06-04 +Resort Hotel,1,43,2017,January,4,21,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,233.0,179.0,75,Transient,88.09,0,0,Canceled,Tyler Stout,phopkins@example.net,3028986919,4142359327711,2025-12-31 +City Hotel,0,9,2017,January,5,29,1,4,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,105.25,0,1,Check-Out,April Ryan,aarontapia@example.com,425-532-8651,4648577783460691,2024-04-06 +City Hotel,0,2,2017,March,10,4,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,186.66,1,1,Check-Out,William Phillips,stephaniefrancis@example.com,969.701.3901x98738,344315602948140,2025-10-10 +City Hotel,1,13,2017,January,4,22,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.07,0,1,Canceled,Taylor Smith,ghodges@example.com,(643)749-0878,3568354780335260,2025-01-29 +City Hotel,0,28,2017,July,27,3,0,2,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,92.09,0,0,Check-Out,Kelly Romero,fconway@example.net,(413)955-8012x8043,4889292905910077204,2024-09-04 +City Hotel,1,0,2017,July,27,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,75.0,0,Transient,83.35,0,0,No-Show,Erin Nelson,taylor33@example.org,3648694303,3598806738361379,2025-11-01 +City Hotel,0,15,2017,January,4,26,1,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.77,0,1,Check-Out,Christopher Dalton,wendy83@example.com,7302247214,3536802296212794,2024-07-28 +City Hotel,0,259,2017,January,2,2,1,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,61.79,0,1,Check-Out,Jamie Romero,lopezamanda@example.net,+1-514-906-5001x7747,372435982644039,2026-03-01 +Resort Hotel,0,2,2017,October,42,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,43.83,0,1,Check-Out,Logan Golden,kimberly05@example.com,927.882.3269,5304593801055050,2025-05-04 +Resort Hotel,0,95,2017,February,8,18,1,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,253.0,179.0,0,Transient,49.29,0,0,Check-Out,Michael Crawford,erika76@example.org,230.736.8351,372070642675808,2024-10-22 +Resort Hotel,0,95,2017,June,26,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,235.0,179.0,0,Transient,55.28,0,1,Check-Out,Stephanie Sanders,stevenrodgers@example.net,4546810548,2710063070254474,2024-03-27 +City Hotel,1,317,2017,June,23,8,1,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.79,0,0,Canceled,Christine Meza,hernandezerica@example.org,(297)941-8178x10698,6574307329074001,2025-05-20 +City Hotel,0,0,2017,January,3,19,0,1,1,0.0,0,BB,PRT,Corporate,GDS,0,0,0,A,A,0,No Deposit,197.0,244.0,0,Transient,112.59,0,0,Check-Out,Emily Hall,zjacobs@example.org,(410)932-9353x47254,180047961394809,2024-11-19 +Resort Hotel,0,191,2017,April,16,15,1,5,2,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,122.16,1,0,Check-Out,Thomas Wells,amber99@example.com,945-464-6814,6510749227352855,2025-05-16 +City Hotel,0,16,2017,July,31,31,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient,94.68,1,0,Check-Out,Caitlin Howard,ernestsandoval@example.com,587-977-7437x239,6565579748394688,2024-10-05 +Resort Hotel,0,9,2017,January,2,4,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,75.37,0,2,Check-Out,Jason Blackwell,ronald73@example.com,(687)279-8857,30441616687398,2024-05-06 +City Hotel,0,152,2017,March,10,9,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.0,0,0,Check-Out,Bradley Pacheco,brianalvarez@example.net,001-786-771-3709x10049,4190401053785,2024-11-29 +Resort Hotel,1,309,2017,August,31,4,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,77.0,0,1,Canceled,Matthew Armstrong,brownsean@example.net,+1-285-831-3126x296,6582429157140876,2024-10-11 +Resort Hotel,0,0,2017,June,23,10,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,63.98,0,0,Check-Out,Brittany Mitchell,mason67@example.com,(440)903-9701,4784077362281717295,2024-06-30 +Resort Hotel,0,3,2017,August,31,5,1,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,237.0,179.0,0,Transient,46.24,0,1,Check-Out,Thomas Friedman,timothy51@example.org,001-927-454-2884,4794369931096,2025-11-25 +City Hotel,1,264,2017,July,31,31,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.6,0,0,Canceled,Colleen Hernandez,tchavez@example.com,563.717.3704x5788,213119609921516,2024-08-25 +City Hotel,0,15,2017,January,2,8,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.8,0,1,Check-Out,Peter Haynes,heather98@example.net,805-787-9035x0450,213146764151860,2025-05-08 +Resort Hotel,0,145,2017,November,48,30,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,C,3,Refundable,14.0,221.0,0,Transient-Party,60.55,1,0,Check-Out,Jeffrey Ford,floydtravis@example.org,(510)470-9109x385,6011834609404468,2024-10-31 +City Hotel,1,110,2017,March,10,4,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,236.34,0,0,Canceled,Brittany Ortiz,ffreeman@example.net,940-777-6497,341470302887800,2026-02-11 +City Hotel,0,203,2017,January,4,22,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,129.31,0,2,Check-Out,Miranda Beck,younglisa@example.com,860.725.6748,4225106905070757,2025-01-16 +Resort Hotel,0,78,2017,March,10,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,10.0,179.0,0,Transient,206.09,0,2,Check-Out,Amanda Bennett,jefferyrhodes@example.org,298-454-0496x07141,5438892834467509,2024-07-02 +City Hotel,1,8,2017,November,48,25,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,98.17,0,1,Canceled,David Robertson,castrojeffrey@example.org,7382745930,3552051630123510,2025-08-14 +Resort Hotel,1,252,2017,February,8,19,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,310.0,179.0,0,Transient,126.12,0,0,Canceled,Kristen Davis,htrujillo@example.com,546.711.9695,342624106450798,2025-08-12 +Resort Hotel,0,7,2017,November,47,25,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,81.0,179.0,0,Transient,95.87,0,0,Check-Out,Brian Pena,kristy03@example.net,001-234-570-8972x00773,4095323478707,2026-03-05 +City Hotel,0,3,2017,June,25,20,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,98.89,0,0,Check-Out,Amanda Nelson,brianlarsen@example.net,406-884-5027x1285,2304594057096951,2025-12-31 +City Hotel,0,155,2017,June,23,3,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,G,0,No Deposit,10.0,179.0,0,Transient,129.55,0,0,Check-Out,Sarah Bush,leemike@example.org,944-905-8205,4002595670636009,2024-05-24 +Resort Hotel,1,161,2017,November,45,11,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,307.0,179.0,0,Transient,49.9,0,1,Canceled,Robert Miller,serranojohn@example.net,001-669-329-4288x203,4298495230613,2025-05-07 +City Hotel,0,113,2017,November,47,23,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,75,Transient-Party,106.33,0,0,Check-Out,Anna Poole,danielhuynh@example.net,(569)850-5825,2273180309694616,2025-08-29 +Resort Hotel,0,48,2017,March,12,22,0,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,Jacqueline Phillips,laura04@example.net,001-630-867-7983x2187,6509146361226545,2024-10-25 +Resort Hotel,0,15,2017,January,2,1,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,49.9,0,2,Check-Out,Sophia Dawson,wiseamber@example.net,9715683027,3546026541129615,2024-12-31 +City Hotel,1,37,2017,June,25,21,1,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,95.0,0,2,No-Show,Sheila Stephens,annette97@example.org,+1-644-792-4863,30292143846803,2025-06-09 +Resort Hotel,1,128,2017,March,11,15,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,222.48,0,0,Canceled,Wendy Evans,heathermay@example.org,624.930.5887,5488006256505121,2024-11-08 +City Hotel,1,295,2017,March,13,23,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,72.54,0,0,Canceled,Phillip Rodriguez,nfox@example.net,001-948-239-6448x2486,30089411665257,2024-11-07 +City Hotel,0,61,2017,May,22,31,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,122.86,0,0,Check-Out,Justin Brown,rebeccayoung@example.net,696.502.2270x198,4474370915723,2024-10-20 +City Hotel,1,319,2017,April,15,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.48,0,0,Canceled,Eric Anderson,kclark@example.org,(588)867-4810,2281384541025320,2024-10-18 +Resort Hotel,0,149,2017,November,44,4,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Transient-Party,38.84,0,0,Check-Out,April Norton,barnesanthony@example.com,545.760.2732,30570126822002,2024-04-05 +City Hotel,1,388,2017,May,19,10,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,104.77,0,0,Canceled,Timothy Sexton,mhoffman@example.org,856-718-8250,4769542361310760,2026-02-06 +City Hotel,1,156,2017,February,6,4,1,4,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,175.0,0,Transient,133.04,0,0,Canceled,Mr. John Decker MD,amyyork@example.net,001-425-998-2879x2412,340525893028352,2026-01-13 +Resort Hotel,1,308,2017,January,2,7,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient-Party,89.05,0,0,Canceled,Tina Little,gentrykaren@example.net,001-346-783-1328x94038,4286110276981774809,2025-10-03 +City Hotel,0,36,2017,May,21,21,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.83,0,0,Check-Out,Seth Curry,dcastillo@example.net,(495)372-6540x560,4401508525007935,2024-06-02 +Resort Hotel,0,94,2017,February,6,4,0,2,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,248.0,179.0,0,Transient,173.57,0,2,Check-Out,Barbara Graham,ihale@example.net,457-787-4361x60413,4054121944525576,2025-12-27 +Resort Hotel,0,90,2017,January,5,31,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,140.0,179.0,0,Transient-Party,129.58,0,0,Check-Out,Edward White,qbradford@example.com,(250)213-8164x210,6576424151745109,2024-06-19 +City Hotel,1,143,2017,March,14,30,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,252.0,0,0,No-Show,Michelle Graham,brenda18@example.com,6716866695,373168584457190,2025-06-04 +City Hotel,0,17,2017,April,15,13,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,133.84,0,3,Check-Out,Benjamin White,williamsmatthew@example.net,5259183382,4816632829496922,2024-11-14 +City Hotel,0,8,2017,June,22,3,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,31.0,179.0,0,Contract,62.04,0,0,Check-Out,Austin Mitchell,scottbonilla@example.com,683-448-9816,30592053095816,2024-12-10 +City Hotel,0,19,2017,June,26,25,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,47.4,0,0,Check-Out,Kim Flynn,pamela30@example.net,842.361.7638,4325049670720396563,2024-12-21 +City Hotel,1,18,2017,January,4,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,106.3,0,0,Canceled,Nicholas Pace,braunjulie@example.net,8292015938,4456737621906963,2025-02-16 +City Hotel,1,101,2017,November,45,4,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.77,0,1,Canceled,Laura Atkins,gtaylor@example.com,001-366-461-2694x413,060419218361,2024-09-08 +City Hotel,1,98,2017,January,2,8,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,85.4,0,0,Canceled,Ann Huffman,melissasmith@example.org,(790)381-6481x24492,4287374575604512,2025-09-08 +Resort Hotel,1,32,2017,April,15,9,3,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,240.89,0,0,Canceled,Roger Sullivan,zpennington@example.org,001-515-744-3944x875,6011334944313524,2025-05-09 +City Hotel,0,10,2017,January,4,21,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,134.78,0,0,Check-Out,Vanessa Ramirez,xvazquez@example.org,001-706-889-6591x6517,5483771367601763,2024-05-18 +Resort Hotel,0,182,2017,January,5,29,2,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,82.75,0,0,Check-Out,Anne Martin,mcdanielmegan@example.org,3456539862,4708687411257703,2025-12-25 +Resort Hotel,0,126,2017,February,8,21,2,3,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,2,No Deposit,251.0,179.0,0,Transient,220.26,0,1,Check-Out,Ashley Dunn,uosborne@example.net,001-633-346-1079x318,4206084951604873,2025-05-04 +City Hotel,1,321,2017,April,14,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.78,0,0,Canceled,Shaun Henderson,johngrimes@example.net,642-895-1501x99948,4170019445353846,2025-10-17 +City Hotel,1,151,2017,April,14,6,3,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,93.8,0,0,Canceled,Michael Jackson,jeffrey16@example.com,001-852-442-8134x53372,6011851436208532,2024-10-28 +City Hotel,1,408,2017,February,9,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,109.33,0,0,Canceled,Aaron Mayer,amberbutler@example.com,(393)970-4213,3560121585807217,2026-02-25 +City Hotel,0,83,2017,February,5,2,2,2,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.36,0,1,Check-Out,Kimberly Lee,laura72@example.com,(431)993-9456,2276824679679684,2024-07-15 +City Hotel,0,91,2017,December,50,15,1,3,2,1.0,0,BB,CHN,Direct,Direct,0,0,0,G,D,0,No Deposit,14.0,179.0,0,Transient,177.52,0,3,Check-Out,Shane Smith,powens@example.net,(914)281-3343,2224959952179680,2025-02-12 +Resort Hotel,1,20,2017,March,12,22,1,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Erin White,richard53@example.net,001-298-326-3924x9526,180049608947205,2024-11-25 +City Hotel,0,120,2017,March,10,7,1,2,2,0.0,0,BB,,Complementary,Undefined,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,Joseph Young,stephanie57@example.com,243-410-2303,38240096416399,2025-03-22 +City Hotel,0,0,2017,June,25,17,2,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,69.0,0,Transient,52.63,0,0,Check-Out,Taylor Tran,austinlaura@example.org,+1-773-349-7914x557,6011046496602209,2024-06-22 +City Hotel,1,93,2017,August,34,24,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.54,0,0,Canceled,Jason Patrick,hannah86@example.net,287.395.0160x4144,4681017254874854,2025-04-22 +City Hotel,0,9,2017,November,48,27,1,0,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.37,0,2,Check-Out,Richard Saunders,sdavis@example.com,532.262.1203x9355,180026795266722,2025-07-28 +Resort Hotel,0,2,2017,November,47,19,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,80.22,0,0,Check-Out,Jerry Ferguson,nkramer@example.org,620.218.1362x10079,341690675849901,2024-09-14 +City Hotel,1,356,2017,May,19,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,42,Transient,100.3,0,0,Canceled,Rodney Avila,hinestimothy@example.org,+1-570-979-8922,3510540924069380,2025-07-21 +City Hotel,0,100,2017,January,4,25,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,133.64,0,0,Check-Out,Shannon Thompson,umack@example.org,(589)500-4620x32696,4531963483267126897,2025-12-08 +City Hotel,0,96,2017,October,43,26,2,5,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,129.22,0,0,Check-Out,Stacy Macias,sloanveronica@example.org,(910)906-4785x520,30439084162183,2025-10-07 +Resort Hotel,1,13,2017,April,14,5,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Canceled,Stephanie Nunez,caseyandrew@example.com,(297)916-8862,4172121713795381,2025-04-05 +Resort Hotel,0,1,2017,March,10,8,2,0,2,0.0,0,Undefined,PRT,Direct,Direct,1,0,0,F,I,1,No Deposit,14.0,179.0,0,Transient,2.37,0,1,Check-Out,Christina Olsen,hfernandez@example.net,+1-950-664-4696x6146,4092592548943986419,2025-05-16 +Resort Hotel,0,9,2017,August,32,9,3,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,127.95,1,0,Check-Out,Paul Wagner,jessicaharris@example.net,2609086238,375461763315570,2025-05-15 +Resort Hotel,0,0,2017,October,42,15,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,98.56,1,2,Check-Out,Sophia Richmond,chad87@example.net,468-717-9414x9195,2710907920812867,2025-10-03 +City Hotel,1,24,2017,June,26,27,2,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.35,0,0,No-Show,Nicole Tate,clarkisaac@example.com,715.944.0082x915,30093579150797,2026-03-02 +Resort Hotel,0,99,2017,January,2,5,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,237.0,179.0,0,Transient,198.99,0,1,Check-Out,Jesse Wright,quinnchristopher@example.org,485.555.1737,6551849982162901,2025-06-01 +City Hotel,0,52,2017,April,17,26,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,111.69,0,1,Check-Out,Traci Rodriguez,colleenhernandez@example.com,(927)872-1789,213170686864822,2024-05-20 +Resort Hotel,0,44,2017,December,51,21,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,108.32,1,0,Check-Out,Cheryl Beck,deborah54@example.net,001-977-296-4465x940,4894320891848718,2025-09-12 +Resort Hotel,0,18,2017,July,29,21,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,120.16,0,3,Check-Out,Christina Perez,jessica44@example.com,+1-408-213-3176,30521867048307,2025-07-15 +City Hotel,1,2,2017,September,39,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,117.49,0,0,Canceled,Annette Fernandez,scottmcintyre@example.net,6475203979,4018450657553417,2025-01-12 +City Hotel,0,18,2017,November,48,29,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,0.0,0,0,Check-Out,Tricia Bailey,kellyrobles@example.net,001-779-369-6756x0153,180021025961473,2025-05-28 +City Hotel,0,1,2017,October,43,24,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,46.31,0,2,Check-Out,Omar Chandler,enielsen@example.com,255.944.7689,4718239872370,2025-12-09 +Resort Hotel,0,139,2017,January,2,13,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,127.18,1,0,Check-Out,John Erickson,andrew68@example.com,(806)746-1391,2262370470577764,2024-08-20 +City Hotel,1,96,2017,October,41,13,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Contract,41.39,0,2,No-Show,Teresa Smith,kcarroll@example.net,+1-253-907-9535x266,6575983113958846,2024-07-02 +Resort Hotel,0,41,2017,September,36,8,1,2,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,1,No Deposit,249.0,179.0,0,Transient,53.48,1,0,Check-Out,Karen Cruz,david06@example.org,001-335-506-9931x322,4420988266518281,2024-04-20 +City Hotel,0,199,2017,April,15,8,0,5,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,85.74,0,0,Check-Out,Jenny Soto,thomaslynch@example.net,(344)309-9043x98247,4792805019583901,2025-05-09 +City Hotel,1,64,2017,March,9,2,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,170.51,0,2,Canceled,Kevin Smith,jamesbennett@example.net,+1-424-885-9239x402,4386568319082107894,2024-04-05 +City Hotel,1,6,2017,October,42,16,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,118.5,0,1,No-Show,Kimberly Garcia,loganle@example.org,+1-884-772-8116x817,213119942182404,2024-09-08 +City Hotel,1,52,2017,April,16,15,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.56,0,0,Canceled,Deborah Townsend,stephensapril@example.com,873.478.1483x25657,30413804123619,2025-11-18 +Resort Hotel,0,1,2017,January,3,17,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,0,No Deposit,245.0,179.0,0,Transient,107.34,1,1,Check-Out,Julie Wallace,greenegregory@example.org,245.844.6595x47755,4939713762305,2026-01-15 +Resort Hotel,0,2,2017,August,33,13,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,302.0,179.0,0,Transient,52.15,0,1,Check-Out,Joe Gordon,staceybender@example.com,(261)440-4485,3587824005595903,2024-07-04 +Resort Hotel,1,138,2017,July,29,16,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,305.0,179.0,0,Transient,104.32,0,0,Canceled,Wayne Barnes,leslierocha@example.net,001-315-945-0308x9233,4953083901195,2026-02-17 +City Hotel,0,54,2017,April,17,21,0,2,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,A,1,No Deposit,12.0,197.0,0,Transient,135.97,0,0,Check-Out,Maria Weaver,diaztimothy@example.org,505-310-8603,4426345233756,2025-11-06 +City Hotel,0,7,2017,October,40,5,0,2,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,12.0,222.0,0,Transient-Party,67.16,0,0,Check-Out,Matthew Thompson,susanprice@example.org,001-657-648-2801x055,3551386896433943,2025-12-22 +City Hotel,0,3,2017,March,12,24,1,3,3,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,101.05,0,1,Check-Out,Wanda Short,katelyn19@example.org,+1-247-217-1474x2656,4326177344574,2025-05-09 +Resort Hotel,0,144,2017,December,51,19,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.99,0,0,Check-Out,James Richardson,logananderson@example.net,6913937256,6507932128049284,2025-09-30 +Resort Hotel,0,275,2017,May,21,25,2,4,2,0.0,0,FB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,87.91,0,0,Check-Out,Jennifer Cruz,kelly72@example.net,869.276.0254,3576250191314516,2025-06-09 +City Hotel,1,49,2017,February,7,13,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.06,0,0,Canceled,Sergio Andrews,nicoleporter@example.org,510-912-7777x296,4362083861946930190,2026-01-17 +Resort Hotel,1,115,2017,December,50,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,80.17,0,0,Canceled,Franklin Harris,camachomichael@example.net,001-316-629-9697x24735,4615954195886293,2025-04-04 +City Hotel,0,12,2017,September,38,22,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,134.65,0,1,Check-Out,Leslie Vance,brianbaker@example.org,001-907-872-6711x84605,4307802646484,2025-07-26 +City Hotel,0,18,2017,October,41,12,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,87.38,0,1,Check-Out,Gabriel Guzman,hartchad@example.org,+1-835-774-9016x26888,4209869527013,2025-02-21 +Resort Hotel,1,18,2017,December,52,25,1,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,63.94,0,0,Canceled,Lori Smith,hernandeztimothy@example.net,001-396-691-2394x30172,4606215993908,2024-05-17 +Resort Hotel,1,123,2017,April,17,23,4,6,2,1.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,212.34,0,2,No-Show,Edward Taylor,bbarrett@example.net,386-760-8370x4304,3591346111519910,2024-11-30 +Resort Hotel,0,0,2017,January,2,8,1,0,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,0.24,0,2,No-Show,Alison Adams,bpalmer@example.org,868-304-8629,4788006814996,2025-08-11 +City Hotel,0,48,2017,December,48,1,2,2,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,138.73,0,1,Check-Out,Phillip Jenkins,henrycandice@example.com,001-610-676-6330x16119,3584495164032575,2025-09-04 +City Hotel,0,23,2017,March,11,12,1,1,1,1.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,136.09,0,0,Check-Out,Yolanda Brown,gilbertjason@example.com,(214)356-1722x19681,4507546937836294532,2025-11-18 +City Hotel,1,20,2017,March,10,4,2,5,2,0.0,0,SC,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.05,0,0,Canceled,Malik Washington,christopher76@example.net,+1-989-536-6847,347437992913851,2024-08-02 +Resort Hotel,0,293,2017,June,26,26,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,240.0,179.0,0,Transient,149.7,1,1,Check-Out,Kristen Larson,alyssa41@example.net,001-360-401-2228,180034134404970,2025-08-27 +Resort Hotel,0,15,2017,November,46,12,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,153.0,179.0,0,Transient-Party,43.64,1,0,Check-Out,Michael Scott,nsimpson@example.org,+1-398-403-7571x603,2702947542726566,2024-04-30 +Resort Hotel,0,0,2017,November,45,10,0,2,2,0.0,0,HB,PRT,Direct,Direct,1,0,1,E,I,0,No Deposit,14.0,179.0,0,Transient,0.0,1,1,Check-Out,Luke Duncan,lisa19@example.org,663.681.3984,3558832916345107,2025-08-08 +City Hotel,0,4,2017,August,32,9,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,35.0,179.0,0,Transient,75.57,0,1,Check-Out,Bernard Hicks,hickstina@example.net,001-413-982-4883,36336469581280,2024-12-04 +Resort Hotel,0,3,2017,April,15,10,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,241.0,179.0,0,Transient,223.27,0,0,Check-Out,Rebecca Boone,ybell@example.net,229-258-6614,6550963190568816,2024-12-11 +Resort Hotel,1,0,2017,April,14,4,1,0,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,46.96,0,2,Canceled,Joel Roberts,christopher94@example.org,+1-267-796-1588x3243,2276275232759895,2024-08-20 +Resort Hotel,0,1,2017,November,47,19,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,82.99,0,1,Check-Out,Tony Cooper,sharon84@example.net,747-527-6302,2249340853531082,2024-05-28 +City Hotel,0,10,2017,November,47,22,0,3,1,0.0,0,BB,POL,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,75.66,0,1,Check-Out,Kevin Stokes,cynthia93@example.net,699.265.4799x4262,4499615755961740,2024-08-09 +Resort Hotel,0,12,2017,November,48,30,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,143.91,0,2,Check-Out,James Frank,brian10@example.com,7167879674,3526639873407070,2025-05-04 +City Hotel,0,57,2017,May,20,18,0,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,98.88,0,1,Check-Out,Deborah Stewart,michelle87@example.net,(495)571-1527,2294475803256796,2025-11-10 +City Hotel,0,14,2017,January,3,19,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,0.0,1,2,Check-Out,Carol Bowman,vmartin@example.com,001-972-842-9420x40853,180009634922432,2024-12-01 +Resort Hotel,0,140,2017,February,6,3,2,7,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,295.0,179.0,0,Transient,132.62,0,3,Check-Out,Sheri Murphy,brandon25@example.net,435-587-8254,3561595695644736,2024-08-10 +City Hotel,1,213,2017,March,10,7,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,82.99,0,0,Canceled,Russell Downs,patriciacain@example.net,827-762-8265x0953,4406704603286096,2025-07-19 +Resort Hotel,1,59,2017,March,11,11,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,192.92,0,2,Canceled,Charles Ellis,olivialopez@example.com,6153317901,4716838180267007,2025-06-30 +City Hotel,0,12,2017,February,9,25,2,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Group,132.4,0,1,Check-Out,Dylan Guzman,nathanbeard@example.net,388-238-1095x6231,4168817539621,2025-08-25 +City Hotel,1,217,2017,August,32,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,75,Transient-Party,64.59,0,0,Canceled,Ryan White,sarah03@example.net,945.921.5765x3076,4539563554582204,2025-05-25 +Resort Hotel,0,47,2017,May,18,1,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,211.92,0,1,Check-Out,Dawn Meyer,chavezlogan@example.org,+1-855-493-3292,4540810904561512,2026-01-02 +City Hotel,0,85,2017,January,2,12,0,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,76.97,0,0,Check-Out,April Wiley,john67@example.com,999.736.5513x7976,3512617026190948,2024-11-16 +Resort Hotel,0,1,2017,April,16,15,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,1,H,I,1,No Deposit,11.0,179.0,0,Transient,2.46,0,0,Check-Out,Cheryl Wade,johnbrooks@example.net,2244185192,6558430067833808,2026-02-12 +Resort Hotel,0,32,2017,March,11,12,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,238.0,179.0,0,Transient,113.7,1,3,Check-Out,John Estrada,kmeyer@example.org,(600)753-2657x45916,3543597472598757,2025-10-22 +Resort Hotel,0,10,2017,September,37,11,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Group,53.58,0,1,Check-Out,Cynthia Larson,fflores@example.com,001-649-416-2343x2177,4381765226978335,2025-04-26 +Resort Hotel,0,78,2017,November,47,22,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Transient,74.28,0,0,Check-Out,Roy Paul,amymorales@example.org,001-596-655-5687x48680,343174443524805,2024-11-07 +City Hotel,1,5,2017,September,36,3,0,4,1,1.0,0,BB,,Direct,Direct,0,0,0,A,D,1,No Deposit,14.0,179.0,0,Transient,124.7,0,1,Canceled,Gregory Joyce,nfischer@example.com,001-850-584-5733x6776,4333341376919468,2024-08-03 +City Hotel,0,112,2017,November,45,7,1,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,92.24,0,1,Check-Out,Chase Choi,lynchbeth@example.org,494.895.2079,4179628886085401,2025-02-20 +City Hotel,0,16,2017,December,52,23,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.83,0,0,Check-Out,Suzanne Williams,uclark@example.org,2153723398,4127837223696684988,2025-03-11 +City Hotel,0,38,2017,June,25,18,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.17,0,1,Check-Out,Michael Cortez,christinaramsey@example.com,340.811.5120,4917753519381311,2025-12-24 +City Hotel,1,46,2017,November,47,23,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,121.14,0,0,Canceled,Jennifer Vargas,ahill@example.org,261-934-4771x5064,213175792269253,2025-01-21 +City Hotel,0,40,2017,June,23,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,120.26,0,0,Check-Out,Linda Newman,ojones@example.net,215-345-4795x251,3527742556836307,2024-11-26 +City Hotel,1,3,2017,October,40,7,1,1,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,50.78,0,0,Canceled,Walter Howard,kevin02@example.net,210.312.2524x136,213108707136580,2025-01-19 +City Hotel,0,104,2017,June,23,5,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,106.91,0,0,Check-Out,Justin Saunders,durhamcheryl@example.com,+1-245-769-2764x00634,347429392957521,2024-08-23 +Resort Hotel,0,15,2017,March,13,24,4,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,85.52,0,1,Check-Out,Jeffrey Weaver,andrew58@example.com,5957761065,4418422452193,2025-05-18 +City Hotel,0,16,2017,January,2,2,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,228.0,0,Transient,48.21,0,0,Check-Out,Wanda Reynolds,chad49@example.org,5792609367,3517635693780226,2024-09-27 +Resort Hotel,0,155,2017,February,8,18,4,10,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,118.08,0,1,Check-Out,Kathryn Castillo,amandahood@example.net,433.564.2495,060402790897,2025-05-09 +City Hotel,1,14,2017,June,23,9,2,2,2,0.0,0,SC,PRT,Corporate,Direct,0,0,0,A,A,0,Non Refund,94.0,179.0,0,Transient,110.87,0,0,Canceled,Alicia Wilson,ijohnson@example.org,+1-535-780-6049,676349872876,2025-06-12 +City Hotel,0,107,2017,July,30,24,1,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,46.67,0,0,Check-Out,Jason Day,theresaorr@example.org,(534)347-7840,3531986973898093,2024-07-30 +City Hotel,1,58,2017,August,33,17,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.67,0,1,No-Show,Brian Christensen,gmejia@example.net,655.229.3692x1898,213120750207416,2026-03-03 +Resort Hotel,1,180,2017,January,3,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,39.49,0,2,Canceled,Stephen Martinez,nlopez@example.org,604-634-5075x59024,5536981993161630,2025-07-29 +Resort Hotel,0,11,2017,April,14,5,0,3,2,1.0,0,HB,,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,204.64,0,2,Check-Out,Thomas Turner,belljon@example.org,645.571.6850,676386589383,2025-08-12 +Resort Hotel,0,117,2017,March,9,1,2,5,2,1.0,0,HB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,230.4,0,1,Check-Out,Bonnie Larson,ysmith@example.com,001-694-609-6793,4421547161433993,2025-11-01 +Resort Hotel,1,258,2017,March,10,2,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,K,0,No Deposit,10.0,179.0,0,Transient,226.5,0,0,Canceled,John Ortega,matthewwolfe@example.com,001-557-835-8848x7507,4837877842987382,2024-11-03 +Resort Hotel,0,87,2017,November,45,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,27.0,179.0,0,Transient-Party,32.88,0,0,Check-Out,Kristin Hickman,catherine17@example.org,525-794-5489x4650,30483916444781,2024-04-07 +Resort Hotel,1,148,2017,November,48,29,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,62.09,0,0,Canceled,Jacqueline Turner,enoble@example.org,(969)661-7173x3676,372338741923019,2024-11-26 +Resort Hotel,0,12,2017,February,6,7,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,132.26,0,2,Check-Out,Charles Strickland,mark31@example.com,542.925.4335x7745,345613085307480,2024-10-29 +City Hotel,0,1,2017,December,49,5,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,68.0,0,Transient,49.61,0,0,Check-Out,Thomas Carr,zfleming@example.org,(586)748-9219x09141,3589204751790826,2024-12-06 +City Hotel,1,198,2017,April,16,14,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,232.08,0,2,Canceled,John Stewart,robertwilliams@example.net,001-783-865-7990x9160,6512748786134306,2024-11-17 +City Hotel,1,407,2017,January,3,14,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,110.63,0,0,Canceled,Christopher Mcmillan,vward@example.net,994-357-9510,2565762296459397,2026-01-02 +Resort Hotel,0,94,2017,October,43,24,2,5,1,0.0,0,Undefined,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,61.93,0,0,Check-Out,Lee Rivera,james79@example.net,(380)493-5853x816,4194098637273816,2025-09-03 +City Hotel,1,14,2017,November,46,16,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.22,0,1,No-Show,Mark Keller,ggamble@example.org,001-277-692-1577x5981,30004003909526,2025-02-02 +Resort Hotel,0,15,2017,March,10,5,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,141.52,0,1,Check-Out,Allen Porter,gdawson@example.net,+1-888-578-9870x8528,4788791194834689,2025-10-25 +Resort Hotel,1,187,2017,March,13,26,3,6,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,236.0,179.0,0,Transient,137.98,0,2,Canceled,Mr. Joshua Cohen,hansonmark@example.org,646.541.6916x2545,4593412327119741,2025-01-25 +City Hotel,0,0,2017,October,43,24,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,A,K,0,No Deposit,14.0,331.0,0,Transient,0.25,0,0,Check-Out,Kyle Burke,tmitchell@example.net,(406)283-7198x3755,3547508018699286,2025-12-28 +City Hotel,1,309,2017,June,26,27,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,2.0,179.0,0,Transient-Party,62.55,0,0,Canceled,Brent Holloway,llee@example.org,(484)736-5169x10737,3560987886399652,2026-02-18 +City Hotel,0,159,2017,March,13,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,167.56,0,0,Check-Out,Danny Smith,gbowman@example.com,392-823-9735x18711,4896226299139097,2024-03-28 +City Hotel,0,47,2017,January,2,1,2,7,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,108.04,0,1,Check-Out,Tracy Roberts,louis47@example.net,(656)487-0403x0680,6521107981570419,2025-10-27 +City Hotel,0,97,2017,November,45,7,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.11,0,2,Check-Out,Colleen Martin,cjohnson@example.net,982-705-7600,4586787242320022,2025-11-28 +City Hotel,1,0,2017,November,48,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Transient,106.29,0,0,No-Show,Stephanie Brown,joan88@example.net,4085426683,3566966502862982,2025-06-18 +Resort Hotel,0,27,2017,August,32,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,241.0,179.0,0,Transient,73.06,0,2,Check-Out,Jennifer Barrett,larrymoody@example.com,(360)208-7898,2254354981685886,2025-02-06 +City Hotel,1,255,2017,March,13,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,82.98,0,2,No-Show,Tara Jones,karen32@example.com,001-274-663-6324x4499,580753304279,2024-06-18 +City Hotel,0,48,2017,June,24,11,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,107.87,0,2,Check-Out,Kaitlyn Leblanc,kyle15@example.com,635.576.3230,6011083261271894,2024-12-30 +Resort Hotel,1,39,2017,July,28,13,0,4,2,0.0,0,BB,ITA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,39.0,331.0,0,Transient,80.52,0,0,Canceled,Madeline Ford,edward70@example.org,001-618-666-6214x44912,4842949016171038632,2025-07-30 +City Hotel,1,160,2017,April,16,14,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.73,0,1,Canceled,Raymond Herrera,lisa62@example.com,+1-596-926-4962x5996,3566225206445382,2024-10-27 +City Hotel,1,23,2017,December,50,9,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,97.06,0,0,Canceled,Danielle Reed,nbarron@example.net,001-357-362-7865x3785,3559205647887425,2024-10-23 +City Hotel,1,15,2017,October,41,11,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.98,0,1,Canceled,Michael Spencer,fernandezlynn@example.org,001-995-758-8602x30229,180060917397396,2025-11-08 +City Hotel,0,2,2017,October,43,25,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.95,0,1,Check-Out,Kevin Torres,lbenitez@example.org,001-261-329-8753,213169511100774,2024-09-16 +City Hotel,0,55,2017,June,26,29,0,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,82.73,0,2,Check-Out,Hannah Marquez,williamsmark@example.com,(663)753-5610,213146157487350,2025-12-15 +City Hotel,1,3,2017,April,16,19,0,2,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,118.34,0,1,No-Show,Jared Madden,lisahenderson@example.com,637-486-0147,4230954770169,2025-06-16 +City Hotel,0,94,2017,January,5,31,2,4,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.34,0,1,Check-Out,Jacob Miller,rwilliams@example.com,001-338-262-4991x813,4546141479552478,2024-11-20 +Resort Hotel,0,9,2017,May,19,7,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,46.2,0,0,Check-Out,George Williams,anne32@example.org,402-705-4754,372271616148356,2025-10-06 +City Hotel,0,104,2017,November,46,17,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.98,0,1,Check-Out,Amber Parker,scook@example.net,806.730.0856,4720061554640030,2024-09-01 +City Hotel,0,92,2017,April,14,5,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,146.55,0,1,Check-Out,Jerome Parker,zacharyharris@example.org,001-656-384-2077x81550,4346982104110113,2025-09-07 +City Hotel,1,20,2017,January,4,22,2,1,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,88.01,0,0,Canceled,Phillip Fowler,desireebaker@example.org,368.719.0381,3567881243252568,2025-06-18 +City Hotel,0,10,2017,October,41,14,0,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.01,0,1,Check-Out,Charles Gonzales,michaelmitchell@example.com,994-433-3909,4501434124403,2025-10-24 +Resort Hotel,0,104,2017,November,48,28,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,89.28,0,3,Check-Out,Natalie Oconnor,walterboyle@example.net,001-242-681-7966x770,343832822435519,2025-01-22 +Resort Hotel,1,222,2017,December,48,1,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,238.0,179.0,0,Transient,84.87,0,0,Canceled,Richard Murray,julieeverett@example.com,240-261-8585x953,2239858482857331,2025-10-07 +City Hotel,0,15,2017,August,32,5,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Group,108.93,0,1,Check-Out,Eric Shaffer,ngraham@example.com,(524)866-6769,3580553475733333,2024-08-23 +Resort Hotel,0,12,2017,September,36,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,G,0,No Deposit,167.0,179.0,0,Group,43.82,0,1,Check-Out,Christina Roberts,sbishop@example.org,334-959-4591x43624,342355610028826,2025-08-25 +Resort Hotel,0,84,2017,January,4,25,1,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,46.45,0,2,Check-Out,Christina Cook,bradleyandrew@example.net,(245)596-0650x4843,4114114852850183,2024-10-30 +City Hotel,1,108,2017,March,10,9,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,127.62,0,0,Canceled,Joseph Walker Jr.,smithandrew@example.org,969.812.6956x14282,180046762800790,2025-02-22 +Resort Hotel,0,65,2017,November,48,26,1,2,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,107.48,1,1,Check-Out,Bradley Cobb,fross@example.com,+1-885-332-9038,2490969584923667,2024-09-14 +Resort Hotel,0,32,2017,April,16,19,0,4,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,9.0,179.0,0,Transient-Party,2.69,0,0,Check-Out,Cynthia Newman,romerowilliam@example.com,754-606-2956,4074596538001678,2025-08-23 +Resort Hotel,1,90,2017,January,5,31,2,3,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,1,Canceled,Veronica Simmons,kyle99@example.org,426-552-9160x89790,213122866270833,2025-05-24 +City Hotel,1,23,2017,September,37,12,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,36.16,0,1,Canceled,John Nichols,jdudley@example.com,676-370-9001x9179,4979098718656364024,2025-02-08 +Resort Hotel,1,192,2017,July,28,13,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,50.82,0,0,Canceled,Thomas Jones,wosborne@example.org,+1-429-606-1570x3670,4815623454417,2024-05-17 +Resort Hotel,0,8,2017,May,21,21,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,D,D,1,No Deposit,239.0,179.0,0,Contract,65.49,0,1,Check-Out,Karen Alvarez,michellelynch@example.com,001-823-363-8293x47971,4602078779377,2026-03-18 +City Hotel,0,2,2017,January,2,8,0,1,1,0.0,0,BB,ESP,Corporate,Direct,0,0,0,A,A,3,No Deposit,373.0,227.0,0,Transient-Party,92.04,0,0,Check-Out,Ronald Graham,michaelchang@example.org,5426558688,3541089650235701,2024-08-21 +City Hotel,0,364,2017,June,23,9,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,118.93,0,0,Check-Out,Arthur White,lisaberry@example.com,5425665773,180069346269571,2024-12-19 +City Hotel,0,45,2017,April,14,5,2,5,3,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,124.05,0,2,Check-Out,Eric Murphy,miguelbryant@example.net,001-870-469-1538x423,6511555484817665,2025-10-26 +City Hotel,0,99,2017,June,25,18,1,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.49,1,2,Check-Out,Tammy Daniel,theresajones@example.net,001-369-285-1958x5657,6561773907859128,2024-04-04 +City Hotel,1,131,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,99.87,0,0,No-Show,Dr. Jose Garcia,vlin@example.com,754.993.6354,213108145917104,2025-06-30 +City Hotel,0,136,2017,March,13,27,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,134.92,0,0,Check-Out,Ashley Coleman,bennettkeith@example.net,+1-888-573-2607,30243824842728,2025-05-30 +City Hotel,1,146,2017,November,47,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,126.1,0,0,Canceled,Eduardo Booth,jasonjohnson@example.net,445-650-3424x898,4652201817873927,2026-01-29 +Resort Hotel,0,159,2017,January,3,16,1,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,135.0,179.0,0,Transient-Party,114.87,0,0,Check-Out,Nicholas Ramos MD,gallagherthomas@example.net,713-622-8553,213165873645810,2024-04-08 +City Hotel,0,3,2017,September,39,24,0,1,1,0.0,0,BB,,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,141.2,0,1,Check-Out,Robert Chapman,wilsonsteven@example.com,(919)756-9727x09124,213162471476391,2025-09-02 +Resort Hotel,1,267,2017,May,20,15,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,76.44,0,0,No-Show,Eric Clark,randy83@example.com,001-913-444-0883x0703,4352921962180,2025-09-28 +Resort Hotel,1,153,2017,August,33,19,2,4,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,G,0,No Deposit,238.0,179.0,0,Transient-Party,48.51,0,1,Canceled,Kevin Johnston,hbaker@example.com,001-539-698-1597x3195,213118195067296,2025-10-17 +City Hotel,1,88,2017,January,4,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,103.1,0,0,Canceled,Lori Jordan,albert83@example.org,+1-856-617-3789,30407815838058,2025-10-20 +City Hotel,0,0,2017,September,36,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,70.0,0,Transient,46.98,0,2,Check-Out,Gloria Lynch,susanwalker@example.com,(516)805-4882,4109059333713233757,2026-01-12 +City Hotel,0,130,2017,March,13,31,1,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,136.24,0,2,Check-Out,Rachel Norris,josephjimenez@example.org,8222998327,3517683339545827,2025-09-15 +City Hotel,0,9,2017,July,30,23,1,1,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,39.77,0,0,Check-Out,Joseph Spencer,hoodjustin@example.net,+1-618-666-2002x9793,4078449354344077732,2024-06-25 +Resort Hotel,0,0,2017,March,12,23,3,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,109.34,1,2,Check-Out,Kenneth Schmidt,francotammy@example.org,(560)210-9531x7285,2275428846708151,2025-04-25 +Resort Hotel,1,100,2017,December,52,24,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,54.77,0,0,Canceled,Timothy Fletcher,tbailey@example.org,001-257-493-0336x22088,3542570495234180,2025-03-27 +City Hotel,1,13,2017,July,28,13,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,238.0,0,Contract,82.01,0,0,Canceled,Michael Fernandez,uramirez@example.net,877.954.0470x65713,5286096385998333,2025-11-05 +Resort Hotel,0,16,2017,April,14,5,2,5,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,315.0,179.0,0,Transient,161.42,0,1,Check-Out,Joseph Conway,hneal@example.net,633-286-7591x2063,3506509826075148,2025-06-08 +City Hotel,1,148,2017,March,10,6,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient,100.52,0,0,Canceled,Edward Hill,samanthalopez@example.net,572-968-3571x5076,4365377872976,2024-09-10 +City Hotel,1,325,2017,May,19,7,0,4,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,76.65,0,1,Canceled,Paula Evans,mcraig@example.net,449-397-6581,3575965057691399,2024-11-02 +City Hotel,1,16,2017,March,12,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.84,0,0,Canceled,Stephanie Santiago,seanlong@example.org,207.719.7837,6527464943495415,2025-11-15 +City Hotel,1,343,2017,March,12,25,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,111.06,0,0,Canceled,Lauren Kim,heather63@example.com,996-442-2111,630474100553,2024-05-06 +City Hotel,0,18,2017,April,14,4,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,3,No Deposit,12.0,179.0,0,Transient,50.44,0,0,Check-Out,Sherri Colon,sandra01@example.org,660.836.7590x41471,3546522890236225,2025-11-07 +City Hotel,1,235,2017,June,26,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,81.0,179.0,0,Transient,95.26,0,0,Canceled,Erin Mckinney,sandovalemily@example.net,(824)434-4120x3288,6502713879430484,2024-11-22 +Resort Hotel,0,152,2017,March,9,3,4,10,2,0.0,0,BB,CN,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,53.86,0,1,Check-Out,Joseph Dougherty,bakererica@example.net,340.940.1295x82023,4581596099253813,2025-03-07 +Resort Hotel,0,0,2017,April,17,24,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,18.0,179.0,0,Transient,106.38,1,0,Check-Out,Sarah Williams,david35@example.net,451-859-1579x74807,342000442798937,2024-09-26 +City Hotel,0,10,2017,April,15,9,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,231.79,0,0,Check-Out,Jeremy Silva,joel01@example.net,+1-911-677-9664x0497,4919938725822853095,2025-12-21 +Resort Hotel,0,1,2017,December,50,11,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,224.0,0,Transient,49.75,0,3,Check-Out,Lisa Prince,kdiaz@example.net,746-948-9951,4765775372868939,2024-11-04 +City Hotel,1,111,2017,June,24,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.83,0,0,Canceled,Sara Wilkins,ybrown@example.net,001-716-762-9999x156,213174545191286,2025-01-18 +City Hotel,0,51,2017,December,52,26,0,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,146.1,0,2,No-Show,Joshua Fowler,tara59@example.net,256.714.6792x614,372606849728385,2026-03-14 +Resort Hotel,0,41,2017,April,15,11,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,89.16,0,1,Check-Out,Jodi Miller,greendylan@example.org,001-318-482-7000x3612,3572984840701806,2026-02-17 +Resort Hotel,0,2,2017,July,27,5,0,2,1,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient,40.79,1,0,Check-Out,Garrett Carpenter,taylordanielle@example.org,(398)819-6870x511,375086761932066,2024-04-17 +Resort Hotel,0,6,2017,April,14,4,4,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,183.32,1,2,Check-Out,Vincent Schaefer,csmith@example.org,(388)272-8095,4388264763614006517,2026-02-21 +City Hotel,1,168,2017,November,47,19,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,96.76,0,2,Canceled,Rachel Norton,maryreid@example.org,001-502-804-9119x5771,6517141123650538,2025-08-20 +Resort Hotel,0,65,2017,April,16,14,2,4,3,1.0,0,HB,CHE,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Check-Out,Jon Russo,sherri12@example.org,+1-268-949-3231x201,376323404398614,2024-09-07 +City Hotel,1,32,2017,June,23,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,125.61,0,1,Canceled,Jeanne Mills,johnsonrichard@example.com,001-947-374-8784x21309,4788520251864143,2026-01-15 +City Hotel,1,137,2017,February,6,8,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,169.67,0,2,Canceled,Nicholas Little,fgomez@example.org,(316)839-7698,4211917544141312,2025-08-25 +City Hotel,1,2,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,63.0,0,Transient-Party,80.76,0,0,No-Show,Jonathan Walton,foxandrea@example.com,(733)544-1825,4677494688681682,2024-08-25 +City Hotel,1,2,2017,April,17,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,D,0,No Deposit,16.0,179.0,0,Transient,174.97,0,0,Canceled,Ashley Miller,gregory56@example.net,563-731-0312x336,38335568044180,2024-06-03 +City Hotel,0,26,2017,November,45,8,2,0,1,0.0,0,BB,BRA,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,8.0,179.0,0,Transient,63.82,0,2,Check-Out,William Vasquez,lhess@example.org,278.347.7259x08902,36480795457771,2025-11-10 +City Hotel,0,19,2017,July,27,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,81.53,0,1,Check-Out,Denise Hendricks,cisnerosdawn@example.com,308.708.9337x601,6011743670554145,2025-01-30 +Resort Hotel,0,40,2017,May,21,27,2,4,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,158.97,1,3,Check-Out,Stacy Johnson,lindsay71@example.org,4418691098,2270679830114237,2025-07-31 +Resort Hotel,0,162,2017,March,10,2,2,5,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,141.23,1,3,Check-Out,Mary Delacruz,tabitha67@example.org,221.221.1443x04218,4578012516913893,2026-01-16 +Resort Hotel,0,154,2017,November,48,30,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,61.62,0,0,Check-Out,Laura Singleton,christinewolfe@example.net,+1-835-944-3732x62528,060461489738,2025-03-31 +Resort Hotel,0,2,2017,May,18,1,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,223.12,0,1,Check-Out,Jill Ray,cwebster@example.com,001-504-788-2661x39663,30363462803160,2024-03-30 +City Hotel,1,281,2017,May,22,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,112.32,0,0,Canceled,Charles Hensley,whitakerjohn@example.net,(335)634-4813x43504,4425113316263276,2025-10-21 +City Hotel,1,97,2017,March,12,19,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,113.62,0,0,Canceled,Lauren Walker,pthomas@example.com,(575)727-1286x8725,3533041075481816,2025-05-14 +City Hotel,0,48,2017,August,33,16,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.08,0,2,Check-Out,Ann Calderon,staceychen@example.net,(841)539-3573x090,4437986709610666,2025-01-07 +Resort Hotel,0,151,2017,January,3,14,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,113.12,1,3,Check-Out,Jonathan Potter,christopher52@example.org,001-358-303-5550x6886,4347996380904,2024-12-18 +Resort Hotel,0,55,2017,June,25,19,1,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,346.0,179.0,0,Transient,84.31,0,1,Check-Out,Julie Curry,steven00@example.com,001-612-601-1609,4007267295690544197,2026-03-11 +City Hotel,0,4,2017,April,15,8,1,0,2,0.0,0,SC,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,174.73,0,0,Check-Out,Maureen Lee,heidimcdaniel@example.com,001-263-787-3737,6571394671246836,2025-07-07 +Resort Hotel,0,93,2017,October,43,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,14.0,223.0,0,Transient-Party,46.44,0,1,Check-Out,Alicia Garner,panderson@example.org,913-226-3459,3542259121058326,2025-08-23 +City Hotel,0,1,2017,December,52,26,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.28,0,1,Check-Out,David Silva,matthew82@example.com,314-649-4942x63597,4738226770411,2025-12-05 +Resort Hotel,0,8,2017,November,45,8,1,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,318.0,179.0,0,Transient-Party,45.9,0,0,Check-Out,Tyler Patel,jason32@example.net,001-727-377-5951,341688805495413,2025-05-14 +City Hotel,0,154,2017,April,15,14,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.81,0,0,Check-Out,Victoria Parker,kfarmer@example.org,920.459.9853,4207359679941156,2026-01-22 +Resort Hotel,1,12,2017,August,35,30,0,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Emily Martinez,brian34@example.net,751-280-9864,4037118587915856143,2024-06-03 +Resort Hotel,1,60,2017,April,17,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,177.0,179.0,0,Transient,112.82,0,0,Canceled,Amanda Brown,stanleyvalenzuela@example.net,611-814-3199x8098,6559468905112307,2026-02-21 +Resort Hotel,0,3,2017,November,44,3,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,D,0,No Deposit,14.0,45.0,0,Transient,62.47,1,0,Check-Out,Samantha Salinas,paulahall@example.org,+1-579-680-9162x0231,3504061129947633,2024-12-31 +City Hotel,0,13,2017,June,22,1,1,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,69.31,0,0,Check-Out,Michelle Williams,greenstacy@example.com,001-402-749-4009x1309,562804561578,2024-05-27 +City Hotel,0,97,2017,November,46,14,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,78.91,0,0,Check-Out,Shawn Evans,xwebb@example.org,321-920-3279x8037,2710049434379388,2025-05-11 +City Hotel,1,375,2017,May,19,10,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,78.78,0,0,Canceled,Christine Jones,alyssabauer@example.com,001-348-556-2341x9835,4580115119598304,2025-05-29 +Resort Hotel,0,108,2017,December,51,23,0,1,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,C,0,No Deposit,303.0,179.0,0,Transient-Party,2.35,1,0,Check-Out,Michael Buchanan,rachel18@example.com,520-900-8434,30003854794995,2024-05-15 +Resort Hotel,0,150,2017,March,10,10,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,259.0,179.0,0,Transient,108.72,0,0,Check-Out,James Morales DVM,bryanrichards@example.org,+1-674-375-7146x182,3596355834916845,2025-04-26 +City Hotel,1,103,2017,April,14,2,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,210.2,0,1,Canceled,Michael Hicks,cervantesdavid@example.org,900.928.2423x50232,3564616217862973,2026-03-25 +City Hotel,1,258,2017,January,3,13,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,48.46,0,0,Canceled,Laura Clark,katelyn33@example.org,001-425-955-1263x765,38547197183755,2025-03-25 +City Hotel,1,392,2017,September,36,2,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,37.0,179.0,0,Transient,85.3,0,0,Canceled,Luke Bush,kathryn98@example.org,406-694-3579x536,4084121720216493,2026-02-21 +City Hotel,1,2,2017,March,14,30,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,1,No-Show,Kimberly Cantrell,loriwilliams@example.net,994.795.8081x944,3529800771716544,2024-08-29 +Resort Hotel,0,56,2017,October,42,16,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Group,252.0,0,3,Check-Out,Sarah Jordan,dterry@example.net,265.601.8084x7387,6011946633156607,2024-10-28 +City Hotel,1,376,2017,December,50,14,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.82,0,0,Canceled,Tyler Cole,zwiley@example.net,635.684.1284x09819,060466127341,2024-04-04 +City Hotel,0,18,2017,June,26,26,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.62,0,3,Check-Out,Matthew Valencia,elizabeth65@example.com,547-222-2964x888,349557955423669,2025-08-27 +City Hotel,0,56,2017,April,15,10,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.51,0,0,Check-Out,Cynthia Freeman,eric52@example.com,739-535-0327,4053917979136143,2024-05-18 +City Hotel,1,2,2017,January,4,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.56,0,2,Canceled,Gregory Wiley,wprice@example.com,001-650-782-0214x0965,180057521913683,2024-07-24 +City Hotel,0,393,2017,June,23,4,2,5,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,101.01,0,0,Check-Out,Dylan Long,michael64@example.com,(645)951-0380x73702,3583212943895581,2025-04-21 +Resort Hotel,1,191,2017,November,48,30,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,221.0,0,Transient-Party,42.62,0,0,Canceled,Amanda Anderson,bonniesnyder@example.com,(979)848-5956,676136429245,2024-07-15 +City Hotel,0,2,2017,September,38,22,1,2,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,63.0,0,Transient,43.82,0,3,Check-Out,Cynthia Tucker,millerjason@example.com,668.673.2244x788,4781182955963718,2024-08-14 +City Hotel,1,8,2017,August,34,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,109.13,0,0,Canceled,Scott Stephens,jeansummers@example.com,(696)573-0820x31306,585856335252,2025-09-15 +City Hotel,1,202,2017,November,44,3,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,77.06,0,1,Canceled,Ralph Gray,devin22@example.org,327-222-3556x4605,6542704379882433,2024-10-27 +City Hotel,0,21,2017,June,23,5,0,2,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,90.81,0,0,Check-Out,Thomas Phillips,ncruz@example.com,945.737.6553x92753,213115537698085,2024-12-03 +Resort Hotel,0,21,2017,August,34,21,0,3,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,1,No Deposit,14.0,237.0,0,Transient,34.46,0,0,Check-Out,Jamie Scott,jamesconner@example.com,+1-215-246-3803x73328,4095581658056019944,2025-04-28 +City Hotel,1,251,2017,May,18,5,2,5,2,0.0,0,HB,SWE,Groups,TA/TO,0,0,0,A,A,0,Non Refund,316.0,179.0,62,Transient-Party,83.81,0,0,Canceled,Michael Gutierrez,sjones@example.org,232.274.2180,4732670739464805,2025-01-08 +Resort Hotel,0,15,2017,February,5,2,1,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,1,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,65.56,0,1,Check-Out,Brian Kidd,simonjackie@example.net,001-280-243-5169x52277,30242498801531,2024-07-25 +City Hotel,0,191,2017,March,9,1,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,78.93,0,0,Check-Out,Travis Walters,stephen77@example.net,759.709.9322x38306,3528857327476941,2024-07-26 +City Hotel,1,52,2017,July,30,25,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,125.4,0,1,No-Show,Joseph Meyers,davidking@example.com,001-631-371-4976x69030,501881296492,2026-01-24 +Resort Hotel,0,187,2017,April,18,30,2,5,2,0.0,0,HB,,Groups,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient-Party,133.48,0,0,Check-Out,Jennifer Baker,zacharydawson@example.org,822-863-6229,3579416037665604,2025-10-31 +Resort Hotel,0,136,2017,March,10,5,1,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,90.12,1,3,Check-Out,Tracey Johnson,othomas@example.org,001-973-484-8762x1378,630422262323,2024-08-22 +City Hotel,1,44,2017,November,47,23,0,3,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,109.51,0,0,Canceled,Kimberly Taylor,wmorgan@example.org,740.793.2611x1327,3506746597019869,2024-04-18 +City Hotel,0,41,2017,June,25,23,0,1,1,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,64.9,0,0,Check-Out,Alejandra Thomas,jessicagonzalez@example.com,(791)823-6927,373803123606697,2026-02-07 +Resort Hotel,0,39,2017,May,22,29,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,238.0,179.0,0,Transient,122.13,0,1,Check-Out,Jay Peck,pmcgrath@example.com,327.334.5869x29853,4717456583187781645,2025-06-16 +City Hotel,0,28,2017,July,27,6,2,6,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,114.27,0,0,Check-Out,Ashley Schultz,bryanschroeder@example.com,680-317-7885,30262425430980,2025-12-06 +Resort Hotel,0,71,2017,April,15,12,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,240.0,179.0,0,Transient,56.06,1,1,Check-Out,Jody Rice,tiffany58@example.org,5543516100,2281454161825984,2026-02-23 +City Hotel,0,149,2017,April,15,9,2,4,2,2.0,0,HB,GBR,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,Leslie Bauer,bkhan@example.com,985.627.8920x4905,4247778996887,2024-07-15 +City Hotel,0,83,2017,August,31,3,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,A,1,No Deposit,1.0,179.0,0,Transient-Party,72.96,0,0,Check-Out,Laura Andrews,sandra69@example.net,+1-244-788-8098x02932,4369637187349663,2025-02-08 +City Hotel,0,37,2017,March,12,19,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,27.0,179.0,0,Transient,95.36,0,0,Check-Out,Jon Green,reeddana@example.net,276-629-2783,4702908132666766,2025-07-14 +Resort Hotel,1,149,2017,March,12,19,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,179.0,0,Transient-Party,105.38,0,0,Canceled,Sylvia Dalton,brobinson@example.net,488-503-6545x880,3559227482208087,2024-09-20 +City Hotel,1,15,2017,September,37,13,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,43.04,0,2,Canceled,Melissa Smith,jennifermullins@example.com,(405)925-7887x6760,2711656558162132,2024-11-26 +City Hotel,0,100,2017,August,32,4,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,D,1,No Deposit,30.0,179.0,0,Transient-Party,84.03,0,1,Check-Out,Jonathan Gallagher,gillespieelizabeth@example.net,001-631-499-1644x4724,4966844777532389021,2025-03-18 +City Hotel,0,46,2017,April,14,4,2,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,143.76,0,3,Check-Out,Louis Gibson,dana29@example.net,3359021931,4592724099843,2025-02-07 +City Hotel,0,7,2017,April,14,4,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,84.98,0,1,Check-Out,Francisco Woodward,rickymcdonald@example.org,823-670-4009x302,30388805712760,2024-05-26 +City Hotel,1,367,2017,March,13,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient,62.02,0,0,Canceled,Michael Guerra,stevensandrew@example.com,+1-870-334-0621,180006075391895,2025-08-28 +Resort Hotel,0,1,2017,November,48,28,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,12.0,223.0,0,Transient-Party,44.03,0,0,Check-Out,Kimberly Orozco,garciajennifer@example.com,001-829-911-4192x208,4188194511338568471,2025-01-31 +City Hotel,0,27,2017,August,35,28,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,90.95,0,1,Check-Out,John Chavez,linda07@example.com,+1-392-823-4890x71819,060469912350,2025-01-30 +Resort Hotel,0,25,2017,June,24,11,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,85.0,179.0,0,Contract,50.21,0,0,Check-Out,Alison Faulkner,hartrichard@example.net,001-985-419-3230x374,3596701553576809,2025-10-01 +Resort Hotel,1,114,2017,August,31,2,1,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient-Party,90.63,1,0,Canceled,Toni Galloway,fblackwell@example.com,578-438-8687x388,213144799771182,2024-04-30 +City Hotel,0,2,2017,April,15,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,64.77,0,3,Check-Out,Nina Combs,browncharles@example.net,(447)677-7684x3980,6514174041688879,2024-06-04 +City Hotel,0,100,2017,January,4,22,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,129.86,1,2,Check-Out,Patricia Cannon,lbass@example.com,001-728-830-3749,4366538057691999,2024-09-22 +City Hotel,0,37,2017,July,27,7,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.44,0,1,Check-Out,Eric Clark,colonjessica@example.com,(508)256-0670x09109,180095063732665,2024-10-22 +City Hotel,1,405,2017,June,25,18,0,3,1,0.0,0,BB,,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,85.54,0,0,Canceled,Kelly Brown,darlenekelly@example.com,(910)878-5850,377072083429419,2025-06-03 +City Hotel,0,59,2017,January,2,10,1,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,112.27,0,1,Check-Out,Joshua Ramos DDS,deborahgreen@example.org,229.464.6382,4369506913298561,2026-02-05 +Resort Hotel,0,8,2017,May,22,30,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,F,A,0,No Deposit,236.0,179.0,0,Transient-Party,199.32,1,1,Check-Out,Courtney Young,owilliams@example.org,262.391.4365x0353,4569645039666026,2024-11-16 +Resort Hotel,1,149,2017,April,14,4,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,209.39,0,0,Canceled,Philip Cole,powellkayla@example.com,531-583-3909,4129583066094543427,2025-01-20 +City Hotel,1,42,2017,August,35,27,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.99,0,0,No-Show,Anna Love,vbishop@example.com,(740)650-7735,4179887203138406,2024-08-17 +City Hotel,0,330,2017,May,21,21,2,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,167.74,0,1,Check-Out,Lisa Rodriguez,matthewhernandez@example.com,+1-483-297-0271,3578402265159867,2024-04-13 +City Hotel,0,13,2017,June,23,4,2,1,1,0.0,0,BB,PRT,Aviation,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,177.14,0,0,Check-Out,Cheryl Petersen,jessicarowe@example.net,470.803.4223,346994158266178,2025-07-10 +City Hotel,0,156,2017,April,14,6,2,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,207.2,0,1,Check-Out,Tracy Lopez,jennifer19@example.net,975.948.3641,5394084707358625,2024-07-19 +City Hotel,0,8,2017,July,28,9,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,88.29,0,1,Check-Out,Casey Baker,schwartzelizabeth@example.org,001-233-642-0101x368,3521332752334228,2024-05-07 +Resort Hotel,0,147,2017,April,17,20,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,253.0,179.0,0,Transient,240.3,0,0,Check-Out,Andrew Green,cmccarthy@example.net,714.547.2790x328,6586237882580647,2026-03-21 +Resort Hotel,0,58,2017,December,49,9,0,2,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,D,0,No Deposit,311.0,179.0,0,Transient-Party,64.45,0,0,Check-Out,Carolyn Kane,iharrington@example.com,805-212-1127x2589,3519824838333293,2025-03-14 +City Hotel,0,97,2017,August,34,25,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.87,0,1,Check-Out,Lisa Ramsey,idiaz@example.org,(468)777-3574x53154,30563422992926,2024-12-15 +Resort Hotel,0,12,2017,November,48,26,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,240.0,179.0,0,Transient,252.0,1,2,Check-Out,Joel Smith,johnjohnson@example.org,(519)325-3610x76337,3566479799954082,2025-10-05 +City Hotel,0,39,2017,November,45,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,98.88,0,1,Check-Out,Andrea Brown,william90@example.com,208-504-0884x4542,3511554737569709,2026-02-20 +Resort Hotel,0,106,2017,December,52,30,0,2,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,78.98,0,0,Check-Out,Melissa Combs,zmarquez@example.org,001-991-590-8976x8242,30306248755071,2024-10-18 +Resort Hotel,0,153,2017,November,46,12,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,239.0,179.0,0,Transient,55.49,0,1,Canceled,Karl Moore,ramoskimberly@example.org,(333)324-9331x8861,4138835057468,2026-02-01 +City Hotel,0,372,2017,March,12,23,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,130.69,0,0,Check-Out,Richard Larsen,lucasjoshua@example.com,001-639-211-8485x5944,3522811852502775,2025-12-01 +Resort Hotel,1,150,2017,April,16,17,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,115.56,0,0,Canceled,Amy Webb,kellijones@example.org,(271)754-8098,2465421147957114,2024-06-26 +Resort Hotel,0,45,2017,February,8,19,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,140.91,1,1,Check-Out,Annette Walters,ugill@example.com,+1-961-451-9231x4436,2693682032928015,2025-01-21 +Resort Hotel,0,48,2017,October,44,30,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,303.0,179.0,0,Transient,50.97,0,1,Check-Out,Paul Stephens,pearsonashley@example.com,001-663-717-3274x49719,4986745522132,2025-09-15 +Resort Hotel,0,1,2017,April,14,2,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,0,No Deposit,13.0,179.0,0,Transient,133.79,1,1,Check-Out,Kevin Moss,michaelfleming@example.com,(829)687-6362x66315,4637226620539944,2025-05-16 +City Hotel,0,57,2017,June,24,15,2,2,1,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.02,0,1,Check-Out,Patrick Bird,michael31@example.net,259-350-7515x1536,2542893136503306,2025-01-01 +City Hotel,1,12,2017,September,37,16,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,41.02,0,2,Canceled,Laura Harris,walkercody@example.com,7416840669,30018719716462,2024-06-22 +City Hotel,1,213,2017,May,21,24,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,Non Refund,11.0,179.0,0,Transient-Party,110.21,0,0,Canceled,Blake Crawford,rachel09@example.net,950-651-8965x9132,4366277657645150,2025-08-31 +City Hotel,0,2,2017,November,47,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,50.79,1,1,Check-Out,Charles Roberts,glee@example.org,+1-252-830-3906x80264,639097000140,2026-02-17 +City Hotel,0,157,2017,April,16,22,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.0,0,0,Check-Out,Steve Brewer,denise05@example.com,8493650669,4788447371857813465,2024-08-24 +City Hotel,1,279,2017,June,26,24,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,218.0,0,Group,86.36,0,0,Canceled,Jason Rodriguez,colemelissa@example.com,001-581-601-6823,3593104614943998,2025-04-01 +Resort Hotel,0,43,2017,May,19,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,21.0,179.0,0,Transient-Party,121.88,0,0,Check-Out,Amber Lee,jrodriguez@example.net,001-372-704-2265x31658,375297370230186,2024-05-13 +Resort Hotel,0,46,2017,January,2,10,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,241.0,179.0,0,Transient,127.64,0,1,Check-Out,Jeffrey Watts,oholt@example.net,+1-732-322-9153x2543,4603977648556114538,2025-06-30 +Resort Hotel,1,83,2017,July,29,19,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient-Party,77.82,0,0,Check-Out,John Hernandez,james81@example.org,001-645-429-3261,589814924538,2024-09-10 +City Hotel,1,209,2017,February,6,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,100.89,0,0,Canceled,Michael Jackson,phillipsmason@example.org,263.910.8089,4445650766543166,2026-03-01 +City Hotel,1,13,2017,November,46,17,1,2,1,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,14,Transient,110.26,0,0,No-Show,Brittany Johnson,angela07@example.org,716-304-1142,379219648393667,2024-12-13 +City Hotel,1,60,2017,February,7,14,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,103.87,0,2,Canceled,Peggy Young,cardenasscott@example.net,801-292-0118x31661,4086049342238009,2025-03-14 +City Hotel,1,103,2017,April,14,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,44,Transient,113.7,0,0,Canceled,Jennifer Taylor,jessica58@example.com,700.339.7855x1169,4928742645535342730,2024-11-18 +Resort Hotel,0,178,2017,November,46,18,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,32.0,179.0,19,Transient-Party,39.47,0,0,No-Show,Christina Mullen,amanda02@example.org,(728)861-1124,213137407904328,2025-07-14 +Resort Hotel,0,1,2017,December,51,17,2,4,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,259.0,179.0,0,Transient-Party,50.63,0,0,Check-Out,Alexandra Marshall,scottwebb@example.com,980-688-0022x20068,36299765736703,2025-07-05 +Resort Hotel,1,141,2017,March,11,11,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,237.0,179.0,0,Transient,52.95,0,0,Canceled,Amanda Davis,andersonangela@example.org,001-595-219-2624x3776,4779602923513,2025-02-17 +City Hotel,1,352,2017,November,46,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,188.0,179.0,0,Transient,102.15,0,0,Canceled,Gavin Yates,ftodd@example.org,678-355-9404x747,4851952515956567975,2024-10-17 +City Hotel,0,51,2017,June,23,4,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,30.0,179.0,0,Transient-Party,159.27,0,0,Check-Out,Allison Murray,gregory93@example.net,+1-961-389-1344,4637787698008997,2025-05-18 +City Hotel,1,311,2017,April,14,4,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Contract,72.46,0,0,Canceled,Ann Goodwin,jonathan45@example.org,+1-418-546-5031x8618,213175552462957,2025-06-19 +Resort Hotel,1,158,2017,July,27,2,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,97.07,0,0,Canceled,Jerry Martin,sullivantracy@example.net,(966)946-2286x65575,4988613917425140,2024-12-19 +City Hotel,1,13,2017,January,4,25,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.44,0,1,Canceled,Joshua James,cameronflowers@example.net,(279)619-0299,4149756376245755971,2024-08-21 +City Hotel,1,193,2017,February,8,20,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,84.15,0,1,Canceled,Jordan Wilkerson,alexisclark@example.com,001-205-370-3259x42599,180070915210467,2025-08-28 +Resort Hotel,0,47,2017,April,15,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,99.45,0,1,Check-Out,Kathleen Lopez,james71@example.org,804.700.7763,341250660512491,2024-04-15 +Resort Hotel,0,0,2017,March,11,11,0,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,134.81,0,1,Check-Out,Rodney Stewart,gary75@example.com,631.268.3963x151,213134799982004,2024-06-17 +Resort Hotel,1,46,2017,September,35,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,236.0,179.0,0,Transient,58.28,0,1,Canceled,Patricia Paul,lisastevens@example.org,(954)499-2875x933,4839217512985418854,2025-12-18 +Resort Hotel,1,85,2017,August,32,8,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,177.0,179.0,0,Transient,75.53,0,0,Canceled,Yvonne Rodriguez,jason49@example.com,2058396393,630420147492,2026-01-15 +City Hotel,1,187,2017,November,48,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.49,0,0,Canceled,Robert Brandt,tiffanyodom@example.com,(735)239-5872,3519638943775234,2026-02-17 +City Hotel,0,18,2017,July,29,22,1,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,63.0,0,Transient,75.61,0,0,Check-Out,Aaron Scott,gabrielhurst@example.org,4668299453,213136928175921,2025-12-15 +Resort Hotel,0,71,2017,April,17,23,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,123.32,1,1,Check-Out,Anthony Good,anthony27@example.com,001-544-459-2582x237,4097373671058,2025-09-04 +City Hotel,0,212,2017,May,18,3,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient-Party,109.57,0,0,Check-Out,Olivia Carter,debra90@example.org,+1-378-945-1181x3541,3521011865537642,2025-03-28 +Resort Hotel,1,254,2017,April,17,24,2,6,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Stephanie White,aprilvasquez@example.org,+1-894-309-7727x07375,376839180690627,2025-02-28 +City Hotel,0,3,2017,January,5,29,0,1,2,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,111.23,1,0,Check-Out,Matthew Smith,saraheaton@example.com,(801)332-5299x794,372522944210999,2025-03-08 +City Hotel,0,98,2017,February,8,19,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient,197.45,0,1,Check-Out,Daniel Matthews,thobbs@example.com,(821)621-5114x7482,5403670413214018,2026-02-04 +City Hotel,0,16,2017,November,45,4,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,9.0,179.0,0,Transient,79.06,0,1,Check-Out,Brenda Oconnor,donald21@example.net,369.585.5522x0968,3593147081330231,2025-05-08 +Resort Hotel,0,41,2017,March,11,12,4,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,245.67,1,1,Check-Out,Monica Aguilar,tiffanysolomon@example.org,+1-403-289-3146x8312,3526882502957210,2026-02-01 +City Hotel,1,23,2017,August,32,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,106.42,0,0,Canceled,Rodney Salinas,alexander23@example.net,870-791-7511x2445,4628443370851863,2025-09-15 +Resort Hotel,0,0,2017,April,16,20,0,2,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,L,C,2,No Deposit,16.0,179.0,0,Transient,205.1,0,1,Check-Out,Christopher Jensen,dean03@example.org,+1-368-404-5336,4458615699494464326,2025-02-17 +City Hotel,0,15,2017,June,25,23,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Group,79.95,0,0,Check-Out,Clayton May,jdavidson@example.com,(392)617-2354,4664291919987119,2024-11-07 +Resort Hotel,1,10,2017,March,10,9,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,H,1,No Deposit,242.0,179.0,0,Transient,137.69,0,0,Canceled,Brandon Leblanc,samantha35@example.org,001-731-221-3629x79157,501859626985,2026-02-20 +City Hotel,1,161,2017,February,8,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.18,0,0,Canceled,Blake Owens,martinezlee@example.net,(981)924-4963,180031557610968,2024-11-20 +City Hotel,1,247,2017,June,26,26,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,42,Transient,103.6,0,0,Canceled,Michelle Johnson,mallen@example.com,+1-214-627-7663,4157491635722,2024-12-14 +Resort Hotel,0,23,2017,December,50,13,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,10.0,179.0,0,Transient,102.37,1,0,Check-Out,Brandi Gould,rperry@example.net,946-515-5067x99006,4257865973392,2024-09-26 +City Hotel,1,74,2017,November,48,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,103.51,0,0,Canceled,Heather Fernandez,richardmorgan@example.com,(519)826-0360,6011618823276137,2025-03-03 +City Hotel,0,13,2017,October,43,21,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.02,0,3,Check-Out,Andrew Rodriguez,christina99@example.com,959.659.7124,4735865121447650,2026-03-26 +Resort Hotel,0,18,2017,August,35,27,2,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,139.44,1,0,Check-Out,Ashley Friedman,melissa13@example.net,234.463.6196x20863,2720109051140378,2024-05-30 +City Hotel,0,95,2017,December,50,11,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,115.74,0,1,Check-Out,Tammy Davis,kelly55@example.org,980-761-8716x97472,4646720296470,2024-09-15 +Resort Hotel,1,83,2017,March,13,30,1,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,127.58,0,0,Canceled,Kimberly Sullivan,candacejimenez@example.org,(707)473-7688,36513248351520,2024-11-06 +Resort Hotel,0,17,2017,May,22,30,2,5,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient-Party,189.73,0,0,Check-Out,Donna Obrien,lcastaneda@example.com,001-445-834-1330x944,3538347271246043,2026-03-27 +City Hotel,0,16,2017,April,17,24,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,12.0,243.0,0,Transient,157.34,0,0,Check-Out,Jennifer Mendoza,amberdavis@example.net,+1-879-657-2690,3537965995971504,2024-09-13 +City Hotel,0,2,2017,June,24,12,1,2,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,90.31,0,0,Check-Out,Shawn Hooper,arodriguez@example.com,001-579-914-8541,4995731861248,2025-06-18 +City Hotel,0,135,2017,November,48,28,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.74,0,0,Check-Out,Beth Ford,johnevans@example.net,+1-445-488-2085x9511,6507000000493788,2025-01-30 +City Hotel,0,156,2017,February,9,25,1,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient,184.7,0,2,Check-Out,Dr. Kathryn Adams DDS,morrisonconnor@example.com,(548)601-8226x24333,676235562334,2026-01-13 +City Hotel,0,14,2017,March,12,24,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient-Party,210.87,0,0,Check-Out,Paul Gonzales,graygerald@example.net,(989)525-6481,2672540105472722,2026-03-17 +City Hotel,0,102,2017,November,48,29,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,162.28,0,1,Check-Out,Vanessa Davila,wbryant@example.com,(443)568-7194,378934741484244,2024-05-21 +City Hotel,0,3,2017,April,17,24,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,171.51,0,0,Check-Out,Andrew Carter,elizabeth11@example.net,894-682-6099x1425,3566191716011678,2024-10-10 +City Hotel,0,29,2017,February,5,1,1,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,194.51,0,1,Check-Out,Bianca Kim,nicole65@example.net,(649)517-7750x922,503852674764,2024-12-11 +City Hotel,1,62,2017,June,22,2,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,A,0,Non Refund,28.0,179.0,0,Contract,107.28,0,1,Canceled,Jamie Mclaughlin,vanessa65@example.org,+1-930-902-6387x95652,503852318107,2024-07-15 +City Hotel,1,99,2017,December,49,3,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.2,0,1,Canceled,Taylor Mack,sarahcoleman@example.net,+1-657-705-1101,6011549258572635,2024-07-19 +City Hotel,1,17,2017,August,35,31,0,4,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.45,1,2,Canceled,Christina Franklin,theresa07@example.com,(621)433-9437x7509,3594666801479480,2025-01-01 +City Hotel,1,18,2017,January,4,21,0,1,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,102.25,0,0,Canceled,Bethany Gonzalez,michaelgonzalez@example.org,001-942-294-2521,4449342864712,2024-05-20 +City Hotel,0,19,2017,February,9,26,0,2,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,105.79,0,0,Check-Out,David Fernandez,sharon62@example.net,430-449-0153x59447,3524890252300665,2025-12-25 +City Hotel,1,107,2017,February,9,28,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,139.63,0,0,Canceled,Debra Blackburn,jeffreyestrada@example.com,(717)913-8657x274,639088989731,2024-10-08 +City Hotel,1,242,2017,April,15,13,0,7,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,74.0,179.0,0,Transient,110.85,0,0,Canceled,Christopher Walker,gsingleton@example.com,(875)948-2856x02628,4303407087127802,2025-07-19 +City Hotel,1,6,2017,August,31,2,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,1,0,E,E,0,No Deposit,183.0,179.0,0,Transient,51.95,0,2,No-Show,Jennifer Hill,ericcisneros@example.org,(801)440-6968x62750,4738496649417442,2026-01-22 +City Hotel,0,33,2017,June,25,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,61.55,0,0,Check-Out,Miguel Smith,wheelervanessa@example.com,650-520-5511,3576041809110747,2025-05-03 +City Hotel,0,159,2017,January,3,19,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,Non Refund,244.0,179.0,0,Transient,141.0,0,0,Check-Out,Christopher Paul,kjohnson@example.com,619.692.9482x425,30091034167620,2024-11-29 +City Hotel,1,416,2017,February,8,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,113.97,0,0,Canceled,Todd Hernandez Jr.,vortiz@example.com,+1-974-450-8249x560,4035622252837413555,2025-10-13 +Resort Hotel,0,2,2017,April,15,9,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,189.08,1,0,Check-Out,April Clark,rmiller@example.net,812.947.8793,3523647614424208,2026-03-12 +City Hotel,1,41,2017,April,14,7,0,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,74.2,0,0,Canceled,Antonio Smith,jerrymorse@example.com,+1-266-302-6029x4825,3563846095041280,2025-03-15 +Resort Hotel,0,0,2017,September,36,2,1,0,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,44.38,1,0,Check-Out,Danielle Carter,collinstodd@example.net,578-913-9233x209,4536238612682,2025-07-16 +City Hotel,1,344,2017,April,17,23,1,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.81,0,0,Canceled,Jennifer Allen,vperkins@example.org,001-805-871-6356x968,502085247646,2026-02-18 +City Hotel,1,336,2017,March,13,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.72,0,0,Canceled,Aaron Black,nathanmartin@example.net,+1-452-870-4052x393,3582717525442702,2024-06-06 +City Hotel,0,144,2017,March,12,22,0,3,3,1.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,133.69,0,2,Check-Out,Paula Kidd,aguirredawn@example.org,836-654-7455x63416,30143752622268,2024-08-09 +City Hotel,1,145,2017,January,5,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,43,Transient,105.93,0,0,Canceled,Bryan Yates,wsosa@example.com,(220)731-2800,349144256823259,2025-06-15 +City Hotel,1,152,2017,February,8,19,1,0,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,110.82,0,1,Canceled,Troy Jefferson,christiestone@example.org,800.446.8277,2555415890900611,2026-01-23 +City Hotel,1,109,2017,January,4,24,2,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,7.0,179.0,0,Transient,221.09,0,2,Canceled,Paul Burton,hodgeschristopher@example.com,001-491-679-7438x69624,340211686053036,2024-06-26 +Resort Hotel,0,0,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,56.82,1,1,Check-Out,Brenda Simpson,qwest@example.com,001-282-620-1759x84751,3580218881944888,2025-12-13 +City Hotel,0,29,2017,December,52,23,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,87.88,0,1,Check-Out,Natalie Perkins,bwarren@example.net,(625)583-1017x01423,060426064253,2025-04-03 +City Hotel,0,29,2017,June,23,8,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Contract,78.4,0,0,Check-Out,Patricia Acosta,agonzalez@example.com,583-870-3447,501826355585,2024-05-16 +City Hotel,1,321,2017,March,11,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,111.88,0,0,Canceled,Lisa Price,pateltheresa@example.com,576.925.2881x6210,4180318834809709,2024-06-03 +Resort Hotel,1,34,2017,December,50,12,0,2,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,Morgan Evans,john18@example.org,774.624.8399x70438,6553110407416424,2024-12-11 +City Hotel,0,17,2017,March,13,27,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.87,0,2,Check-Out,Tiffany Bender DVM,fmullins@example.net,8634928490,4121617271455986259,2025-01-10 +City Hotel,0,147,2017,November,45,5,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.13,0,1,Check-Out,Karen Scott,gordonkathryn@example.net,001-651-695-8476x66655,6011723710849952,2024-04-02 +Resort Hotel,0,14,2017,January,2,7,4,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,378.0,179.0,0,Transient,111.97,1,0,Check-Out,Anthony Morse,reevesmatthew@example.net,001-613-900-8560x454,4951154280041464,2025-02-23 +City Hotel,0,40,2017,January,2,4,1,3,2,0.0,0,SC,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,110.9,0,3,Check-Out,Valerie Robertson,badams@example.com,982.537.4113x5796,3542370965558733,2024-07-30 +City Hotel,0,84,2017,August,34,26,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,122.88,1,0,Check-Out,Danielle Wilson,chris19@example.net,(837)239-9935x59544,4146769541338536,2024-12-09 +City Hotel,0,16,2017,October,44,31,0,2,1,0.0,0,SC,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,88.66,0,0,Check-Out,Ruben Benton,jennifer98@example.net,520.244.3043,6011676431987412,2025-02-22 +Resort Hotel,0,33,2017,May,21,24,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,105.39,1,1,Check-Out,Brendan Khan,diane11@example.com,736-492-2002x58221,4728094280259942,2024-10-08 +City Hotel,0,10,2017,September,37,13,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,3.62,0,0,Check-Out,Matthew Peters,gary14@example.org,601.208.1558x661,375214886831969,2024-04-28 +City Hotel,0,92,2017,July,30,21,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.56,0,1,Check-Out,David Mason,patriciacollins@example.com,001-414-774-0426x10341,213157731943180,2025-06-23 +City Hotel,0,111,2017,February,7,13,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,264.0,179.0,0,Transient-Party,99.17,0,0,Check-Out,Tonya Parker,christopher22@example.net,8517038133,30562525839430,2025-09-03 +Resort Hotel,1,0,2017,April,15,11,2,0,2,0.0,0,HB,PRT,Complementary,Direct,0,0,0,A,G,0,No Deposit,246.0,179.0,0,Transient,0.0,1,0,Canceled,Chelsea Green,melissa89@example.net,431-384-2956,2451043212653869,2025-06-16 +City Hotel,0,11,2017,June,23,5,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,76.0,179.0,0,Transient-Party,73.71,0,0,Check-Out,Alexandria Cox,debrajohnson@example.org,+1-916-242-6062x51776,340585858876047,2024-07-11 +City Hotel,1,438,2017,February,9,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,252.0,0,0,Canceled,David Gutierrez,paulmichael@example.net,+1-636-696-0426,639090345872,2025-03-14 +Resort Hotel,0,0,2017,May,18,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,64.83,1,1,Check-Out,Frank Harding,jeffrey18@example.net,(608)498-8747x6277,4714471430936,2025-12-03 +City Hotel,1,95,2017,January,2,11,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,211.88,0,2,No-Show,Danielle Perkins,johnsonlarry@example.net,(940)561-3843x002,6011070685606714,2025-11-05 +City Hotel,0,1,2017,March,12,17,0,1,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,219.47,0,1,Check-Out,Sharon Reynolds,jonathanjohnson@example.org,317-287-9009,4673701448602137,2025-06-01 +City Hotel,0,10,2017,November,47,21,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Group,116.87,0,1,Check-Out,Anthony Brown,amberhoward@example.net,(302)982-5140x3648,378738971825624,2024-12-20 +City Hotel,1,82,2017,December,51,20,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,10.0,179.0,0,Transient,77.7,0,0,Canceled,Stanley Le,zsantana@example.org,355.295.3770x43152,30414245802191,2025-07-14 +City Hotel,1,157,2017,January,4,22,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,90.0,0,0,Canceled,Michelle Ryan,pearsonbrian@example.org,6127907913,342011228412569,2024-09-01 +Resort Hotel,1,290,2017,March,12,19,3,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,A,0,No Deposit,236.0,179.0,0,Contract,136.5,0,1,Canceled,Jonathon Knapp,spencersamuel@example.org,4076631882,374987635920933,2024-10-10 +City Hotel,1,38,2017,April,14,5,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.29,0,0,Canceled,Kayla Carlson,sarah29@example.com,(917)234-9094x09541,4876425423808818264,2024-12-25 +City Hotel,1,95,2017,February,5,1,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,165.0,179.0,0,Transient,80.18,0,0,No-Show,Tracy Hernandez,ngeorge@example.com,(999)673-6926,373881553137474,2025-03-24 +City Hotel,1,7,2017,December,51,22,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.3,0,0,Canceled,Brenda Schmidt,emily64@example.org,+1-393-778-1122,180071691311495,2024-08-20 +Resort Hotel,0,28,2017,September,36,8,4,3,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,70.72,0,2,Check-Out,Andrea Baker,jeffreyward@example.net,001-203-950-4528x53582,4070181790334465,2025-06-27 +City Hotel,0,5,2017,April,14,2,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,211.49,0,0,Check-Out,Chad Perez,lindsey87@example.com,(418)764-1902x103,180004356492821,2024-10-22 +City Hotel,1,20,2017,August,31,2,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,21.0,179.0,0,Transient-Party,111.67,0,0,Canceled,Mandy Lee,medinalauren@example.com,001-936-946-2512x124,4497233379497977448,2026-01-23 +City Hotel,0,0,2017,January,2,11,2,4,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,D,D,0,No Deposit,44.0,179.0,0,Group,105.26,0,0,Check-Out,Trevor Walker,charles21@example.org,(757)941-7815x18857,3524401727497316,2025-04-23 +City Hotel,0,191,2017,August,35,30,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,140.15,0,1,Check-Out,Alicia Phillips MD,juangray@example.com,(362)408-9759x86476,3536884604221956,2025-11-11 +City Hotel,0,16,2017,November,46,13,0,2,2,0.0,0,BB,PRT,Online TA,Corporate,1,0,1,A,A,1,No Deposit,14.0,223.0,0,Transient-Party,40.65,1,1,Check-Out,Raymond Clements,katherinewilliams@example.com,8875783209,374998686074561,2025-12-26 +City Hotel,0,1,2017,September,37,16,0,1,1,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,51.82,0,1,Check-Out,Evelyn Dunn,stevenperez@example.org,(707)243-8768x1082,213148277313375,2024-09-02 +Resort Hotel,0,0,2017,August,31,3,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,293.0,179.0,0,Transient,47.52,0,2,Check-Out,Teresa Fuller,ynelson@example.org,+1-617-245-8190x3297,675914615249,2025-04-27 +City Hotel,0,14,2017,August,32,9,2,1,1,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,89.08,0,2,Check-Out,Vanessa Reed,pdavis@example.net,001-385-796-7262x128,4660271865175009260,2026-03-03 +City Hotel,1,165,2017,February,8,23,3,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,116.01,0,0,Canceled,Max Mcclain,ubrown@example.com,+1-888-411-9658x945,2718519817987405,2025-01-15 +City Hotel,0,155,2017,June,24,15,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,30.0,179.0,0,Transient-Party,153.62,0,0,Check-Out,Andres Marshall,woodardryan@example.net,812.618.9145,30087314705907,2026-02-16 +Resort Hotel,0,146,2017,November,44,3,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Group,44.04,0,0,Check-Out,Anthony Simmons,tyler54@example.net,(639)332-2207,675918082495,2025-05-22 +Resort Hotel,1,92,2017,August,31,4,2,4,2,0.0,0,Undefined,BRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,175.0,179.0,0,Transient,81.79,0,0,Canceled,Bradley Hoffman,vmaynard@example.org,706.370.1321,3578344728102433,2026-02-09 +Resort Hotel,1,11,2017,October,43,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,63.14,0,0,Canceled,Judy Johnson,hscott@example.com,001-346-834-6393x02532,5186841459163533,2025-07-23 +City Hotel,1,159,2017,December,52,27,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,138.11,0,2,Canceled,Nichole Thompson,rberry@example.net,001-471-986-6329x446,2235800436890228,2025-08-01 +Resort Hotel,0,7,2017,June,23,6,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,43.0,179.0,0,Group,123.82,0,1,Check-Out,Mrs. Nancy Schaefer,traceyconner@example.net,313.627.0948x10259,4559520370925079,2024-07-31 +Resort Hotel,1,85,2017,March,11,12,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,236.31,0,0,Canceled,Gregory Martinez,richard01@example.com,+1-415-816-8887x821,346541687869764,2024-11-18 +City Hotel,1,353,2017,October,40,1,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,105.59,0,1,Canceled,Deborah Patel,jgordon@example.com,+1-470-246-3795x388,060426635284,2024-07-11 +Resort Hotel,1,191,2017,January,2,6,1,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,214.62,0,0,Canceled,Jonathan Jordan,cpetty@example.net,+1-264-902-2163x721,4039557070403874,2025-08-04 +City Hotel,0,2,2017,October,43,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,B,0,No Deposit,14.0,69.0,0,Transient-Party,65.09,0,1,Check-Out,Courtney Briggs,jerry24@example.net,3786067670,180036291254254,2025-05-17 +City Hotel,0,17,2017,December,50,15,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,105.09,0,3,Check-Out,Susan Molina,zmiranda@example.org,503.697.0693x051,2720767194397732,2024-07-03 +Resort Hotel,1,0,2017,March,10,4,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,242.82,0,0,No-Show,Nicholas Arellano,blakemay@example.org,507.582.7991,4204064738414174641,2025-08-28 +City Hotel,1,23,2017,July,28,13,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,D,D,0,No Deposit,11.0,183.0,0,Transient,145.42,0,1,No-Show,Christopher Thomas,daviddennis@example.org,+1-434-963-3061x38334,3578178034323063,2025-02-16 +Resort Hotel,1,32,2017,August,34,25,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,110.9,1,1,Canceled,William Christian,ojoyce@example.com,6983077485,4864797833802604,2024-07-30 +Resort Hotel,0,9,2017,December,49,9,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,119.14,1,1,Check-Out,Roger Johnson,ykoch@example.com,+1-923-828-1815x103,2235125972140279,2024-12-19 +City Hotel,1,243,2017,October,43,27,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,No Deposit,78.0,179.0,0,Contract,116.84,0,2,Canceled,Faith Smith,michellefranco@example.net,+1-288-814-1015,676333509708,2025-08-09 +City Hotel,1,35,2017,August,34,20,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.02,0,2,Canceled,Dr. Mario Harris DDS,michellenichols@example.com,719.742.6689,30028205412666,2025-12-11 +City Hotel,0,16,2017,October,40,4,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,109.3,0,2,Check-Out,Chase Young MD,craigshannon@example.com,986.449.4501x979,4670726882060935129,2025-10-19 +City Hotel,0,12,2017,August,34,25,0,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.62,1,1,Check-Out,John Ortiz,piercemarc@example.net,(771)909-9747x895,4016486332542337391,2025-06-22 +City Hotel,0,29,2017,December,49,4,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,139.76,0,1,Check-Out,Todd Sherman,bryantstephanie@example.org,863-870-3927,3547855504670481,2025-06-01 +City Hotel,0,2,2017,May,19,11,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.94,0,0,Check-Out,Beth Ellis,benjamincopeland@example.com,001-756-442-3987x644,3502961361109390,2024-05-27 +City Hotel,1,0,2017,May,19,11,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,217.71,0,1,No-Show,Jennifer Hatfield,mark56@example.com,(646)210-7842,6011375210153516,2024-09-16 +City Hotel,0,16,2017,August,35,31,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,29.0,179.0,0,Transient,88.09,0,1,Check-Out,Sarah Padilla,hannahcurry@example.org,+1-432-777-8797x078,4299279944904608,2025-06-10 +Resort Hotel,0,41,2017,September,36,7,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,235.17,0,1,Check-Out,Gregory Hale,tlee@example.net,001-549-758-4325x32503,347687251105520,2024-10-05 +City Hotel,0,16,2017,January,2,5,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,213.0,0,Transient,85.24,0,0,Check-Out,Christian Anderson,clarkchristine@example.net,360.914.9963x75087,4922920422207668,2026-01-29 +City Hotel,0,91,2017,February,6,9,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,143.91,0,1,Check-Out,Dr. Lisa Ramos,nicoleclark@example.org,+1-313-764-3194x29099,6011512642376279,2025-08-12 +City Hotel,0,7,2017,January,2,8,2,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,186.79,0,1,Check-Out,Dr. Jessica Chase MD,tammy21@example.org,(570)952-4794,4587081486889101,2025-09-19 +Resort Hotel,1,266,2017,November,44,1,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,83.67,0,1,Canceled,Kara Gallegos,travisbrady@example.net,265-352-4425,371963754381317,2024-04-14 +City Hotel,0,1,2017,March,10,3,1,2,1,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,130.75,0,0,Check-Out,Laura Fowler,rebeccaturner@example.net,3095596731,060477536548,2024-05-26 +City Hotel,1,48,2017,August,34,23,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,90.32,0,2,No-Show,Andrew Proctor,thart@example.net,(849)853-6600x1482,2466987739347541,2024-04-11 +City Hotel,0,19,2017,November,45,4,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,79.48,0,1,Check-Out,Jordan Mason,tyronewilliams@example.org,854-906-0736x095,3573859311101729,2025-03-04 +City Hotel,0,8,2017,September,35,2,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,10.0,179.0,0,Transient,99.37,0,0,Check-Out,Mr. Charles Young,jesserogers@example.com,213.369.3991x47893,4725425331407093,2025-06-26 +City Hotel,1,141,2017,November,45,7,0,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,82.72,0,1,Canceled,Robin Parker,jodysoto@example.net,654-342-2819x91809,213135077193412,2024-08-15 +Resort Hotel,0,87,2017,November,45,7,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,135.87,0,1,Check-Out,Jason Stevenson,carla12@example.net,001-453-489-9180x2016,5222402595590513,2025-06-25 +Resort Hotel,1,13,2017,February,7,11,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,125.89,0,0,No-Show,Christian Rodriguez,brittanyfrazier@example.org,+1-291-589-3891x2003,4796855818952217115,2025-12-09 +City Hotel,0,71,2017,December,2,31,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.0,0,1,Check-Out,Richard Reynolds,pamelajones@example.org,+1-589-365-3286x539,6011786226073797,2025-07-03 +City Hotel,1,88,2017,November,48,28,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,32.5,0,0,Canceled,Oscar Kelly,ssmith@example.com,(541)514-8889,4103836573357106982,2025-06-15 +City Hotel,0,169,2017,February,8,21,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,133.07,0,1,Check-Out,Kenneth Jackson,tkhan@example.org,538-564-3490,30493743918642,2025-08-02 +City Hotel,0,22,2017,June,24,13,0,1,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.84,0,3,Check-Out,Mary Hill,brandon74@example.net,349-985-5715,213184989991141,2024-07-02 +Resort Hotel,1,89,2017,March,10,7,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,238.0,179.0,0,Transient,194.12,0,0,Canceled,Robert Miranda,schaeferchristopher@example.org,437-208-8886,4902382520701,2026-01-23 +Resort Hotel,0,100,2017,December,52,26,1,0,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,274.0,179.0,0,Transient-Party,90.06,0,0,Check-Out,Michael Snyder,amandagonzalez@example.com,(975)505-3360,676355861169,2025-08-20 +City Hotel,1,21,2017,June,24,14,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,D,0,No Deposit,100.0,59.0,0,Transient,78.46,0,0,Canceled,Joshua Schmidt,ngoodman@example.org,(862)798-6699,6514086792001575,2024-04-22 +Resort Hotel,0,5,2017,December,52,24,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,130.0,179.0,0,Transient,62.7,1,1,Check-Out,Aaron Barnett,kendrahoffman@example.org,+1-780-885-4726x624,30264916582931,2024-11-07 +Resort Hotel,0,8,2017,November,44,4,2,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,240.0,179.0,0,Transient,0.6,0,2,Check-Out,Darin Byrd,anawatts@example.net,680.322.1169x1669,4885116300634960178,2025-04-04 +City Hotel,0,209,2017,March,13,26,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,115.34,0,2,Check-Out,Kathryn Shields,sheilahart@example.org,5755884337,4312044451300878,2024-07-13 +City Hotel,1,99,2017,December,2,30,2,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,153.46,0,0,Canceled,Misty Rice,vbrady@example.org,(920)620-0378,4997304902382939,2025-02-28 +City Hotel,0,46,2017,April,15,8,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,249.63,0,2,Check-Out,Robert Herrera,ujones@example.org,+1-713-384-8280x7364,3552669139170961,2024-04-12 +Resort Hotel,0,11,2017,April,14,2,4,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,Jennifer Cline MD,victor61@example.net,743-398-6766,346830033501100,2025-09-16 +City Hotel,1,381,2017,June,24,17,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,74.23,0,0,Canceled,Rose Kaiser,nicole61@example.net,+1-844-485-5220,4447545876103,2025-06-22 +City Hotel,0,160,2017,April,17,24,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,9.0,179.0,0,Transient,213.57,0,0,Check-Out,Christopher Humphrey,amanda81@example.net,001-704-277-2661x78640,30476428972604,2025-09-17 +Resort Hotel,0,0,2017,March,9,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,21.0,179.0,0,Transient,2.94,0,1,Check-Out,Matthew Ramirez,smithholly@example.net,(377)315-7578x954,2513209614118878,2024-06-21 +City Hotel,1,16,2017,April,14,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,219.0,0,Transient-Party,43.69,0,0,Canceled,Charlotte Roy,doris29@example.org,+1-487-440-6019x3635,4630763958998,2025-12-24 +Resort Hotel,0,88,2017,March,12,16,1,2,2,0.0,0,FB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient-Party,104.1,0,1,Check-Out,James Collins,sarahbrown@example.net,452.855.1387,213168629721901,2025-08-09 +Resort Hotel,0,14,2017,November,47,23,1,2,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,225.5,1,0,Check-Out,Kelsey Smith,lpaul@example.net,(364)557-3584x5301,3510022129940681,2024-03-31 +City Hotel,0,101,2017,December,49,8,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,106.52,0,2,Check-Out,Kathleen Garcia,jennifer89@example.org,(533)816-7947x70768,6587115246610814,2025-07-07 +Resort Hotel,0,4,2017,September,39,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,37.28,1,1,Check-Out,Shelia Cruz,bobbyknox@example.org,001-766-984-6519x2221,180047932175279,2024-06-30 +City Hotel,0,2,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,109.43,0,0,Check-Out,Mrs. Amy Hale,sellerstimothy@example.org,382-386-2899x3582,675944545887,2025-10-06 +City Hotel,1,14,2017,March,12,21,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.02,0,1,Canceled,Jeremy Clayton,jessicathomas@example.net,972.692.3485x17118,4758911907200806,2024-07-11 +City Hotel,0,55,2017,March,12,16,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.06,0,1,Check-Out,Susan Williams,vevans@example.com,364.842.0865,3541647374950465,2024-12-01 +Resort Hotel,1,62,2017,March,11,13,2,4,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,239.0,179.0,0,Transient,207.55,0,2,Canceled,Donald Mays,laurendavis@example.com,495.770.8010x596,4786160596979,2026-01-22 +Resort Hotel,1,21,2017,March,12,24,0,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,Thomas Wells,david88@example.org,+1-300-264-7150x544,6011684512067153,2024-11-23 +Resort Hotel,0,10,2017,June,25,21,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,113.13,0,0,Check-Out,Brian Vaughn,kathleen44@example.org,+1-779-903-5421x77165,581011855011,2025-11-07 +Resort Hotel,0,48,2017,June,23,5,1,5,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,99.0,222.0,0,Transient,89.83,0,0,Check-Out,Leah Owens,john42@example.com,001-660-448-6264x211,4308970906254,2026-01-30 +City Hotel,1,253,2017,May,18,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,159.03,0,0,Canceled,Jennifer Norman,christopher78@example.com,(959)541-2304,36669290442375,2025-05-09 +City Hotel,0,166,2017,June,25,22,2,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,101.89,1,0,Check-Out,Mark Hughes,thomas70@example.org,460-236-7654x534,378429996848037,2024-07-05 +City Hotel,1,99,2017,January,2,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,81.4,0,0,Canceled,Paige Case,brandyhunter@example.net,001-302-271-4665x75881,4181478804634864,2026-03-25 +Resort Hotel,0,1,2017,September,38,19,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,11.0,179.0,0,Transient-Party,48.47,0,1,Check-Out,Lisa Potter,christophermorrison@example.com,571.292.4426,3589338457506068,2024-11-03 +City Hotel,0,0,2017,January,2,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,248.0,0,Transient,48.68,0,0,Check-Out,Jordan Garcia,mdurham@example.org,370-865-6711,3502420920283766,2025-10-20 +City Hotel,1,365,2017,June,25,20,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,120.45,0,0,Canceled,Sarah Fields,carterjohn@example.net,970.236.0621x91767,6597102788280923,2025-09-30 +City Hotel,0,378,2017,March,12,19,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,74.19,0,0,Check-Out,Erin Diaz,thammond@example.org,6533134494,3595929504188546,2026-03-08 +City Hotel,1,0,2017,December,49,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.15,0,1,No-Show,Bryan Harris,taramccullough@example.org,001-562-928-8165x96054,3548663196020315,2024-05-16 +City Hotel,0,48,2017,November,44,2,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Contract,105.55,0,0,Check-Out,Danny Moreno,tonyaturner@example.com,704.555.0964x2326,2255218399236765,2024-12-09 +City Hotel,1,255,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,111.12,0,0,Canceled,Alison Livingston,morrisgloria@example.org,388-875-8534x1524,5355687223442744,2024-11-06 +Resort Hotel,0,43,2017,June,24,12,2,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,254.0,179.0,0,Transient-Party,82.79,0,0,Check-Out,Megan Hood,brownnicholas@example.org,4412884838,4861861253981351095,2025-10-20 +City Hotel,0,34,2017,February,5,3,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.65,0,1,Check-Out,April Taylor,sfranco@example.com,001-461-376-0533x5082,5595024231007790,2024-11-28 +City Hotel,1,102,2017,March,11,11,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,G,0,No Deposit,242.0,179.0,0,Transient,85.93,1,0,Canceled,Philip Espinoza,bautistataylor@example.com,(645)429-6544,2464472572344568,2025-05-02 +Resort Hotel,0,0,2017,August,35,30,1,3,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,54.9,0,1,Check-Out,Tony Rodriguez,iflowers@example.net,7563706246,3537158390978908,2025-10-01 +City Hotel,1,196,2017,February,6,4,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,145.95,0,1,Canceled,Michael Rodriguez,emiller@example.com,367-638-8568x679,30082842691620,2024-05-19 +City Hotel,0,54,2017,June,24,16,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,63,Transient-Party,79.21,0,0,Check-Out,Vanessa Moore,kmiles@example.com,+1-663-456-2300,676298796753,2025-05-13 +Resort Hotel,0,144,2017,March,10,5,0,3,2,1.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,109.41,0,0,Check-Out,Megan Koch,jennifersmith@example.org,751.920.6274,3512608702092896,2025-02-07 +Resort Hotel,0,2,2017,August,31,5,1,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,64.24,0,1,Check-Out,Victoria King,trichardson@example.net,520.827.9113x42631,4847162781348,2025-03-01 +City Hotel,1,398,2017,January,3,19,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,100.28,0,0,Canceled,Bryan Gonzalez MD,brownclayton@example.com,(908)428-6054,4612856556792148,2025-01-02 +City Hotel,0,101,2017,January,3,19,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.65,0,1,Check-Out,Jermaine Barnes,williamsanthony@example.net,(427)977-2634,4203407685321746607,2024-12-27 +City Hotel,0,13,2017,November,45,9,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,13.0,179.0,0,Transient,100.52,0,1,Check-Out,Stephanie Smith,mauricevargas@example.org,664.804.9695x9571,377135056490815,2024-10-07 +City Hotel,0,17,2017,July,30,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,B,B,1,No Deposit,15.0,79.0,0,Transient-Party,89.68,0,3,Check-Out,Kimberly Nunez,brandoncooper@example.org,984.283.0975,213157288724959,2025-07-13 +Resort Hotel,0,93,2017,November,47,24,0,2,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,A,E,1,No Deposit,15.0,179.0,0,Transient,51.82,0,2,Canceled,Holly Bell,kgutierrez@example.com,(631)478-9783x56392,5308649348618317,2026-01-09 +City Hotel,1,23,2017,December,50,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,Non Refund,12.0,179.0,0,Transient,143.03,0,0,Canceled,Kathryn Smith,floresedwin@example.net,001-713-887-4116,3588724927580836,2025-01-23 +City Hotel,1,38,2017,April,14,2,0,3,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,155.25,0,2,Canceled,Maureen Carter,gallowaykyle@example.com,3895051049,6546815274806826,2026-02-20 +Resort Hotel,0,32,2017,June,25,17,1,0,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,91.82,0,0,Check-Out,Brandy Walter,hollowayjoshua@example.net,726-676-1297,213130073951418,2025-03-05 +City Hotel,1,10,2017,December,49,4,1,0,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.2,0,0,Canceled,Carla Holloway,brooksbradley@example.com,762.603.6356,4759461287978,2025-08-06 +City Hotel,1,144,2017,February,8,19,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,114.34,0,1,Canceled,Andrew Holder,dominique17@example.net,001-422-849-0509x600,4823614088866384,2024-06-21 +City Hotel,0,12,2017,November,46,11,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,89.09,0,2,Check-Out,Pamela Arnold,rochadavid@example.org,+1-351-521-2308x0196,2289760991443513,2025-02-12 +City Hotel,1,0,2017,July,27,5,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,331.0,0,Transient,2.83,0,0,Canceled,Debbie Estrada,timothy08@example.com,001-466-952-2837x969,4735496698795097,2025-08-03 +Resort Hotel,0,77,2017,August,35,30,1,3,2,0.0,0,Undefined,ESP,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,90.13,0,0,Check-Out,Robert Fleming,irivera@example.com,4298711687,4466264636052525,2025-02-09 +Resort Hotel,0,53,2017,June,26,24,0,5,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,14.0,179.0,0,Transient-Party,59.23,0,0,Check-Out,Jeffrey Vaughn,eugenewiggins@example.net,3339287462,3573595962689261,2025-02-16 +Resort Hotel,1,31,2017,April,16,14,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,96.66,0,0,Canceled,Samuel Rocha,kenneth33@example.net,+1-927-814-0168x01380,5439765210849418,2026-02-15 +Resort Hotel,0,17,2017,September,39,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,46.74,0,1,Check-Out,Paul Rich,marcpearson@example.org,501.467.1007x0954,4228665779446,2026-03-20 +Resort Hotel,0,51,2017,April,14,5,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient-Party,217.81,1,2,Check-Out,Frank Fitzgerald,browntimothy@example.com,+1-759-941-2270,344689702375200,2025-05-13 +City Hotel,0,324,2017,February,7,17,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,244.0,179.0,0,Transient-Party,119.48,0,0,Check-Out,Stephanie Colon,johnsonjohn@example.org,+1-573-646-5554,4216562954143300131,2024-10-26 +City Hotel,1,113,2017,November,44,4,2,5,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,75,Transient,104.24,0,0,Canceled,Aaron Pennington,amy35@example.org,551-857-9438,3509378055396774,2025-03-24 +Resort Hotel,0,82,2017,January,3,17,0,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,132.01,0,1,Check-Out,Jack Krause,tthompson@example.net,565-424-8703x9542,4131191212390745,2026-02-07 +City Hotel,0,0,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,149.24,1,2,Check-Out,Mariah Wang,harmonmarissa@example.com,(217)921-8396,2701157117094587,2025-01-23 +City Hotel,1,201,2017,May,18,5,2,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,98.66,0,0,Canceled,Brooke Allison,gmerritt@example.net,001-683-568-3348x5000,213155828437371,2026-02-17 +City Hotel,0,51,2017,December,49,5,2,5,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,378.0,179.0,0,Transient,92.63,0,0,Check-Out,Melissa Harvey,garycarney@example.org,+1-350-255-9364x5702,180037491904284,2024-12-31 +City Hotel,0,114,2017,May,19,10,2,4,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,107.9,0,0,Check-Out,Laura Roberts,cody14@example.org,001-258-220-3062,4462786425014609,2025-06-28 +City Hotel,0,3,2017,May,18,1,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,142.01,0,1,Check-Out,Kathy Robinson,mary34@example.net,+1-825-273-2912x5629,374073069136971,2025-11-21 +City Hotel,1,149,2017,February,9,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,146.8,0,0,Canceled,Thomas Rodgers,espinozadeborah@example.net,386-803-2817x09429,630464302649,2026-01-14 +City Hotel,1,174,2017,April,18,30,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.7,0,0,Canceled,Rhonda Cervantes,marysummers@example.net,001-294-549-9516x499,180075047862382,2024-08-11 +City Hotel,0,14,2017,April,14,4,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.29,0,0,Canceled,Darryl Hernandez,shaun46@example.net,(972)588-4406x191,371316417584662,2025-08-23 +City Hotel,1,202,2017,May,20,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,71.8,0,0,Canceled,Benjamin Alvarez,jennifer33@example.org,749.975.5064x6486,3529695438889571,2025-11-12 +City Hotel,0,10,2017,March,13,25,1,3,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,162.99,0,2,Check-Out,Robert Pierce,lisa30@example.net,734.265.5287x10434,5260160753547864,2026-02-06 +City Hotel,0,38,2017,November,48,26,2,5,3,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,177.05,0,2,Check-Out,Earl Marquez,amy18@example.org,+1-202-404-5961x5176,6011793016924510,2024-09-03 +City Hotel,0,52,2017,January,2,7,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,167.87,0,1,Check-Out,Michael Walls,elaine53@example.com,+1-496-624-3517,4056397245571745116,2024-05-23 +City Hotel,0,40,2017,December,52,30,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.44,0,2,Check-Out,Crystal Pierce,bondrussell@example.net,(272)821-5606x55553,676303735408,2026-01-31 +Resort Hotel,0,34,2017,December,50,9,0,3,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,C,1,No Deposit,41.0,179.0,0,Transient-Party,106.12,0,0,Check-Out,Gabriel Wilkins,michaelmassey@example.net,001-848-915-9665x4638,3591843925476634,2026-02-21 +City Hotel,0,0,2017,October,41,15,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,248.0,0,Transient-Party,64.5,0,0,Check-Out,Desiree Jimenez,grosscandace@example.net,432.838.4093x53635,2707047012935667,2025-07-23 +City Hotel,0,84,2017,January,2,4,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.35,0,1,Check-Out,Wyatt Henry,cheryl94@example.org,927.596.5895x465,4448502910633723,2025-07-08 +City Hotel,0,0,2017,August,32,5,0,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,94.14,0,1,Check-Out,Lauren Coleman,pdonovan@example.org,001-908-389-5137x27486,3539786713811758,2025-08-13 +Resort Hotel,0,80,2017,August,31,1,2,2,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,35.0,179.0,0,Transient,86.44,0,0,Check-Out,Erica Wright,thompsonveronica@example.net,462-633-4740x96120,3589471377056094,2025-12-02 +City Hotel,0,7,2017,November,47,21,0,1,3,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,172.0,0,Transient,135.79,0,0,Check-Out,Patrick Rocha,heidijames@example.com,(257)226-7120x6154,5395450624960232,2024-10-09 +City Hotel,0,47,2017,January,2,7,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,106.4,0,2,Check-Out,Joshua Jones,richard85@example.net,001-557-452-8319x8784,30448180496452,2025-01-02 +City Hotel,0,14,2017,January,2,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,138.1,1,0,Check-Out,Johnathan Aguirre,foleypatricia@example.org,630.513.5974,3537237310236728,2024-08-31 +Resort Hotel,0,12,2017,November,47,22,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,134.0,179.0,0,Transient-Party,46.41,0,0,Check-Out,Kevin Hubbard,brooksamy@example.com,513.317.7271x8452,6011967765725845,2025-03-08 +City Hotel,0,43,2017,June,24,12,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,100.42,0,1,Check-Out,Mr. Jack Moore PhD,rmckay@example.net,9233678193,3559561678394289,2024-05-07 +Resort Hotel,1,147,2017,April,14,5,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,243.0,179.0,0,Transient,62.38,0,0,Canceled,Pamela Burnett,shannonwood@example.org,(480)894-0572x188,4225589292677856,2026-02-04 +City Hotel,1,155,2017,February,9,28,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.16,0,1,Canceled,Darren Reyes,stephaniepaul@example.com,7325724875,6564220559664940,2024-07-08 +City Hotel,0,51,2017,November,45,4,1,1,2,0.0,0,BB,AUT,Direct,TA/TO,0,0,1,A,A,1,No Deposit,13.0,179.0,0,Transient,38.25,0,1,Check-Out,Richard Graham,charles35@example.net,001-249-259-1366x95319,4951649877109897,2025-11-18 +City Hotel,0,11,2017,October,42,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,40.56,0,0,Check-Out,Wanda Ingram,scottdaniel@example.org,767-582-7311x20150,30516715071717,2024-06-14 +City Hotel,0,4,2017,May,18,4,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,73.0,0,Transient-Party,62.8,0,0,Check-Out,Joel Thomas,wilsonjoseph@example.net,+1-267-346-0019,6566887937746892,2024-06-21 +Resort Hotel,0,27,2017,May,19,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient-Party,90.63,1,1,Check-Out,Jeremy Johnson,glawrence@example.org,(850)974-6807x48829,060408136715,2025-04-27 +City Hotel,1,23,2017,April,15,8,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,111.03,0,3,Canceled,Ronald Marshall,andrew77@example.org,001-882-700-9938x2567,4658358461233434755,2025-09-04 +City Hotel,1,42,2017,October,42,18,0,5,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.45,0,0,Canceled,Robert Fischer,gwelch@example.net,+1-298-605-8546x56492,4722303151264584,2025-04-16 +Resort Hotel,1,187,2017,March,12,16,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient-Party,39.86,0,0,Canceled,Dr. Paul Olson,hoffmanlinda@example.org,001-775-739-2423x777,4445875182431,2025-02-09 +City Hotel,0,100,2017,June,23,8,0,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,109.7,0,0,Check-Out,Cindy Tucker,dickersonscott@example.org,759-476-9398x642,630416698805,2024-10-27 +City Hotel,0,99,2017,January,2,2,0,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,99.77,0,1,Check-Out,Darren Smith,marisa96@example.org,588-810-2428,4512535711585743,2026-02-22 +Resort Hotel,0,145,2017,December,51,20,2,3,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,84.96,1,3,Check-Out,Jeremy Nicholson,codyhoward@example.net,330-994-4046,213194749180869,2024-04-06 +Resort Hotel,0,164,2017,February,9,25,4,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,250.0,179.0,0,Transient,151.56,0,1,Check-Out,Kathy Nguyen,melissahartman@example.com,963.277.3975,2585086420074625,2025-01-03 +City Hotel,0,6,2017,October,43,25,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.06,0,2,Check-Out,Christopher Williams,cristianhendrix@example.org,303-905-0627x6600,5287858108334404,2025-01-01 +Resort Hotel,0,31,2017,January,5,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,343.0,179.0,0,Transient,134.55,0,2,Check-Out,Evelyn Townsend,lgarcia@example.net,001-588-697-6651x2409,6011870592595318,2025-12-15 +Resort Hotel,1,34,2017,March,12,24,1,2,2,0.0,0,BB,NLD,Online TA,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,108.34,0,0,Canceled,Joseph Zavala,jonathanjohnson@example.net,001-422-313-7148x52817,3553591194812569,2024-09-20 +City Hotel,1,152,2017,November,47,21,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,25.0,179.0,40,Transient,103.8,0,0,Canceled,Charlene Black,johnsonlawrence@example.org,(705)608-3302,4974960071829,2025-01-15 +City Hotel,1,0,2017,July,27,2,0,2,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,259.0,0,Transient,0.0,0,0,Canceled,Angel Butler,vcombs@example.net,+1-663-655-7307,3552535482871481,2026-01-06 +City Hotel,0,11,2017,September,36,5,0,2,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,218.22,0,1,Check-Out,Adam Delgado,patelmatthew@example.net,916-764-8048,6011751623611946,2024-05-13 +City Hotel,1,431,2017,November,45,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,63.85,0,0,Canceled,Daniel Mendoza,lopezann@example.net,(588)611-0962x27336,30069721751278,2024-07-19 +Resort Hotel,0,13,2017,May,20,18,1,1,2,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,196.81,1,0,Check-Out,Ruben Clark,alexander89@example.com,837.411.4519x294,36225925825888,2025-01-29 +City Hotel,0,109,2017,January,4,26,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,9.0,179.0,0,Group,131.19,0,2,Check-Out,Nicholas Rasmussen,tina78@example.net,637-783-6907,4922642826592517,2024-06-28 +City Hotel,0,49,2017,February,5,1,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.79,0,2,Check-Out,Jason Taylor,molly35@example.org,001-670-892-6620x632,2484957036928457,2024-11-17 +City Hotel,0,50,2017,June,24,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,61.57,0,1,Check-Out,Claudia Rice,zimmermanernest@example.com,841.457.5177,4684090004802530,2024-09-03 +City Hotel,0,83,2017,December,52,27,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.67,0,1,Check-Out,Sara Lawson,howard49@example.org,+1-433-606-7271x4077,213105328854435,2025-11-19 +Resort Hotel,0,0,2017,January,4,24,1,10,2,0.0,0,BB,USA,Direct,TA/TO,0,0,0,D,C,0,No Deposit,248.0,179.0,0,Transient,105.7,1,0,Check-Out,Michael Johnson,charles34@example.com,(584)208-4945x51675,676254141408,2026-02-13 +City Hotel,0,4,2017,March,10,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,85.85,0,2,Check-Out,Thomas Mills,lmcdonald@example.org,+1-544-339-2854x28653,4400910106970628493,2024-06-30 +Resort Hotel,1,145,2017,February,8,23,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,91.23,0,1,No-Show,Michael Thompson,aday@example.net,001-582-279-5475x6176,676248549427,2025-04-23 +City Hotel,0,34,2017,February,7,15,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,145.79,0,0,Check-Out,Penny Waters,christinegarrison@example.org,+1-858-278-1031x98363,180018859789970,2024-04-27 +City Hotel,0,152,2017,March,11,14,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,91.74,0,3,Check-Out,Gregory Johnson,reedmaria@example.com,001-728-904-8458x339,4353372622185435,2024-09-20 +City Hotel,1,300,2017,April,18,27,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient-Party,54.93,0,0,Canceled,Sandra Ingram,qsmith@example.com,(993)674-9596x0399,3507289278185229,2025-08-23 +Resort Hotel,0,168,2017,May,20,16,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,77.7,1,0,Check-Out,Kenneth Harmon,jillianhall@example.com,+1-976-492-0963x4742,370496319291003,2025-08-21 +City Hotel,0,16,2017,December,2,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,66.0,0,Transient,39.71,0,1,Check-Out,Erin Nash,johnnelson@example.org,2115536101,4688111882636962883,2025-05-05 +City Hotel,0,16,2017,June,23,7,0,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,83.81,0,3,Check-Out,David Smith,rebecca88@example.org,001-756-628-6771,344625872272561,2024-09-19 +Resort Hotel,0,39,2017,July,29,16,0,7,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,103.1,0,2,Check-Out,Matthew Morris,sblack@example.com,+1-512-386-5673x853,38515414196900,2026-02-05 +Resort Hotel,1,0,2017,January,2,2,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,250.0,331.0,0,Transient,5.36,0,0,Canceled,Norman Porter,johnvasquez@example.org,577.622.6303,6568912910401691,2024-05-26 +City Hotel,0,136,2017,November,47,18,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,44.61,0,1,Check-Out,Kathryn Morgan,villegascrystal@example.org,7734735838,4763129200928220,2025-01-16 +Resort Hotel,0,83,2017,December,52,23,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,17.0,331.0,0,Transient-Party,86.05,1,0,Check-Out,Jeffrey Jones,chelseaperez@example.org,001-440-762-4514x806,3576874442625121,2026-02-03 +City Hotel,1,159,2017,April,14,5,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,111.38,0,1,Canceled,Alyssa Guerra,gardnerkrystal@example.org,(724)586-2359x390,348074240595120,2024-10-03 +City Hotel,0,100,2017,August,34,20,1,2,3,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,105.32,0,1,Canceled,Bridget White,catherinejones@example.net,971-340-0964x74341,4874432054801,2025-01-31 +City Hotel,1,146,2017,March,10,6,1,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,131.13,0,0,Canceled,James Hood,alexander55@example.net,777.832.5135,4916906401643656364,2025-04-21 +City Hotel,0,160,2017,February,9,29,0,3,2,0.0,0,BB,CHE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,87.75,0,0,Check-Out,Daniel Brown,bmedina@example.org,765-267-7938x762,4727444514370355859,2026-01-25 +City Hotel,0,65,2017,August,35,30,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,10.0,179.0,0,Transient-Party,120.26,0,1,Check-Out,Tony Thomas,christianrebecca@example.com,206.413.7842x7629,4970819098260,2024-04-15 +City Hotel,0,41,2017,April,16,18,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,100.64,0,2,Check-Out,Philip Huff,jodi43@example.org,972.735.9967,3519276366140659,2025-02-13 +Resort Hotel,0,112,2017,November,47,25,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,59.16,1,0,Check-Out,Marilyn Henry,jason47@example.com,343.263.9429,4821471917765184288,2025-09-30 +City Hotel,1,161,2017,February,8,21,0,6,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,41,Transient,81.67,0,0,Canceled,Tracy Rodriguez,andrew82@example.org,(669)290-0926x0053,347272161230740,2025-03-03 +City Hotel,0,0,2017,November,48,29,2,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,245.87,0,0,Check-Out,Richard Moore,allisonferguson@example.org,(902)309-4723x11662,4255684738624,2026-01-29 +Resort Hotel,0,6,2017,December,52,30,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,106.64,1,2,Check-Out,Jacqueline Roberts,dmiller@example.net,(509)491-8212x94616,6011422895170330,2025-09-23 +City Hotel,1,158,2017,January,3,15,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,62.28,0,0,Canceled,Jennifer Tran,perkinsmark@example.net,774-905-0502,213180815911162,2024-10-16 +City Hotel,0,390,2017,April,18,30,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,224.77,0,0,Check-Out,Christopher Garcia,henrykylie@example.org,448.446.1599x7340,4349480763299233,2024-09-24 +Resort Hotel,0,51,2017,April,17,23,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,241.0,179.0,0,Transient,195.36,0,0,Check-Out,Kenneth Clark,ymartinez@example.org,001-930-638-9227x32138,3581419198354956,2024-12-28 +Resort Hotel,1,8,2017,August,35,29,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,242.0,179.0,0,Transient,108.25,0,0,Canceled,Cassidy Johnson,matthew28@example.com,001-430-765-5921,36211593240527,2024-09-24 +Resort Hotel,1,32,2017,September,37,11,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,47.1,0,0,Canceled,Jason Woodward,abriggs@example.org,626-574-8217,180018414383228,2024-10-14 +Resort Hotel,0,148,2017,April,17,26,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,239.0,179.0,0,Transient,224.69,0,1,Check-Out,Krista Davis,nthompson@example.org,+1-637-217-6471,4806520490161960,2025-05-05 +City Hotel,0,2,2017,January,2,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,16.0,45.0,0,Transient,145.47,0,0,Check-Out,Deborah Gregory,aliciaduran@example.org,467-619-7354x11005,5210012049850530,2024-12-07 +City Hotel,1,52,2017,October,43,25,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,80.24,0,0,Canceled,Ronald Brown,nbrown@example.com,367.854.7985,2245685821139028,2025-06-07 +City Hotel,0,55,2017,November,48,28,2,2,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,132.68,0,2,Check-Out,Sheena Hayes,nancytaylor@example.net,(258)231-1747,4782278344211758,2025-03-24 +City Hotel,0,11,2017,November,44,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,93.38,0,1,Check-Out,Olivia Dorsey,anthony65@example.com,(365)652-3090,5351844924980407,2025-03-16 +Resort Hotel,0,18,2017,November,45,10,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,92.34,0,1,Check-Out,Angela Bradshaw,christina45@example.net,373.877.9881x557,3511774431684188,2025-08-15 +Resort Hotel,0,89,2017,January,2,2,0,3,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,242.79,0,0,Check-Out,Richard Beasley,martinjennifer@example.org,6079147956,30018523845648,2024-07-18 +Resort Hotel,0,1,2017,June,23,5,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,48.04,0,0,Check-Out,Teresa Carter,johnsoncory@example.com,7793117057,2226662845956607,2025-02-26 +City Hotel,1,245,2017,February,6,3,0,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.06,0,2,Canceled,Cody Conley,jennifer05@example.net,+1-706-263-8902,342060039868642,2024-08-07 +Resort Hotel,0,14,2017,June,24,11,2,7,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,161.0,179.0,0,Transient,194.48,1,1,Check-Out,Thomas Bennett,kingdonna@example.net,+1-963-491-7555x282,4288607865760,2024-10-11 +City Hotel,0,191,2017,June,26,27,2,2,2,2.0,0,BB,CHE,Online TA,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,100.57,0,0,No-Show,Brian Stokes,thomasfreeman@example.com,+1-856-562-3905x2328,502098569408,2025-11-07 +Resort Hotel,0,84,2017,January,4,25,1,4,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Check-Out,Donald Wallace,willisjonathon@example.com,001-202-979-6151x152,4831200301215912,2025-07-30 +City Hotel,0,21,2017,May,20,14,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,172.54,0,1,Check-Out,Sydney Smith,iriddle@example.net,(580)266-5425x319,3591563050264072,2024-08-08 +Resort Hotel,1,27,2017,April,14,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,1.0,179.0,0,Transient,126.64,0,0,Canceled,Justin Figueroa,bowenmargaret@example.org,884-608-5041x73587,180045820790209,2026-01-12 +Resort Hotel,1,19,2017,October,40,5,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,62.74,0,0,Canceled,Erika Brown,katherine62@example.org,(294)585-2591x445,4482555613292160,2025-04-27 +City Hotel,1,318,2017,February,6,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,40,Transient,123.14,0,0,Canceled,Lisa Salazar,tara13@example.org,+1-797-758-5307x5035,4183277418224,2026-01-29 +Resort Hotel,0,19,2017,April,16,20,1,1,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,163.0,179.0,0,Transient,161.85,0,1,Check-Out,Mrs. Melissa Robinson,jorge33@example.com,402-988-9837,377842344880505,2024-09-08 +City Hotel,0,11,2017,April,16,17,1,3,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,119.51,0,2,Check-Out,Bethany Haynes,jacksonkatrina@example.com,773-725-2342x97817,3598512608270365,2024-04-13 +Resort Hotel,0,254,2017,March,9,1,1,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,44.54,0,0,Check-Out,Katherine Weaver MD,kari63@example.com,3462123103,3505729954171581,2024-05-23 +Resort Hotel,0,36,2017,March,10,7,4,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,241.2,0,2,Check-Out,Bailey Hughes,valenzueladanny@example.net,+1-300-264-8330x78550,372902257183902,2024-09-23 +City Hotel,0,3,2017,October,40,6,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,B,0,No Deposit,16.0,179.0,0,Transient,105.64,0,0,Check-Out,Anthony Proctor,steven71@example.net,001-543-558-8184x493,4628387904619959,2025-08-22 +Resort Hotel,1,101,2017,January,2,10,2,10,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,176.96,0,1,Check-Out,Jessica Martinez,burgessrose@example.net,8198525083,36668832236105,2024-12-15 +Resort Hotel,1,17,2017,September,38,20,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,214.58,0,1,Canceled,Jason Foster,douglasstanley@example.org,+1-925-873-3645x8218,3557136793398572,2025-05-07 +Resort Hotel,0,134,2017,March,10,5,3,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,1,No Deposit,46.0,179.0,0,Transient,107.39,0,0,Check-Out,Christopher Roy,igutierrez@example.net,578-234-4093x83522,6011552822471961,2025-07-11 +City Hotel,0,21,2017,November,46,11,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,72.88,0,1,Check-Out,Elizabeth Rowland,jacqueline41@example.net,3715238998,3595129760931669,2025-08-08 +City Hotel,0,375,2017,June,25,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,62,Transient-Party,110.96,0,0,Check-Out,Deborah Curry,huntmegan@example.org,001-694-968-8859x5690,2289641780480660,2024-06-30 +City Hotel,0,2,2017,July,28,10,2,2,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.43,0,1,Check-Out,Allison Sharp,qramirez@example.com,001-328-212-5200,348604049054596,2025-02-23 +City Hotel,1,186,2017,April,17,23,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,170.21,0,2,Check-Out,Kimberly Turner,nathan59@example.net,001-284-954-3541x2895,579936760464,2025-11-15 +City Hotel,0,13,2017,October,44,31,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,A,3,No Deposit,9.0,179.0,0,Transient-Party,117.29,0,1,Check-Out,Paul Chaney,wendysmith@example.com,(369)641-1605x06199,30568542096896,2025-07-25 +City Hotel,1,158,2017,January,2,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,42,Transient,104.35,0,0,Canceled,Sarah Smith,tonyaalvarez@example.net,884-379-6198,4590038929380218,2025-11-30 +City Hotel,0,189,2017,January,4,23,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,43,Transient,91.18,0,0,Check-Out,Adam Espinoza,robertbradford@example.org,543-401-7762x697,343167407872525,2025-02-01 +City Hotel,0,16,2017,May,19,9,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.31,0,0,Check-Out,Tyler Richard,katelyn37@example.org,(592)999-3012,4522212226905,2025-05-25 +Resort Hotel,0,28,2017,May,18,6,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,33.0,179.0,0,Transient,142.48,1,2,Check-Out,Carol Ingram,coreylong@example.org,8423974539,4497777313362662,2024-06-26 +Resort Hotel,0,0,2017,December,51,22,0,4,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,252.0,0,0,Check-Out,Paula Blackburn,dbrown@example.net,(911)436-4100x80299,6011477638599237,2024-07-24 +Resort Hotel,1,98,2017,April,17,23,2,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,61.16,0,0,Canceled,Cynthia Johnson,alyssa04@example.org,379-708-9111x6223,4333180015332,2024-12-09 +City Hotel,1,418,2017,February,6,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,110.58,0,1,Canceled,Kenneth Johnson,probinson@example.org,511-230-3830,30324358317178,2024-04-27 +City Hotel,0,101,2017,February,9,28,1,0,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient-Party,100.8,0,0,Check-Out,Steven Bailey,thompsonmichael@example.com,+1-547-332-1664,30480383089941,2025-10-01 +City Hotel,0,51,2017,September,36,4,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,252.0,1,3,Check-Out,Daniel Smith,qcampbell@example.net,(344)582-1278x85414,4755518514410405534,2025-03-04 +City Hotel,0,29,2017,January,3,19,0,1,1,0.0,0,BB,AUT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,181.0,0,Transient,129.41,0,0,Check-Out,Hunter Williams,carrie66@example.com,001-775-745-3700x37227,30204505612772,2025-04-17 +Resort Hotel,0,162,2017,March,11,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,15.0,179.0,0,Transient,49.45,1,0,Check-Out,Susan Trujillo,markthomas@example.com,673.340.2490,370644686242717,2025-09-19 +Resort Hotel,0,12,2017,November,48,29,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,85.66,1,1,Check-Out,William Wilson,meyerkenneth@example.org,+1-482-322-1306x0396,30213600361342,2024-05-28 +Resort Hotel,0,131,2017,June,25,23,2,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,288.0,179.0,0,Transient,77.51,0,0,Canceled,Courtney Morgan,xballard@example.org,3212900014,2277396534613322,2025-10-15 +Resort Hotel,0,216,2017,November,45,7,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,44.48,0,1,Check-Out,Mitchell Merritt,kathyparks@example.org,(437)220-5967x192,5104120334484870,2025-02-08 +City Hotel,0,428,2017,September,39,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,77.03,1,0,Check-Out,Jared Gordon,renee96@example.com,+1-853-930-1528x9908,6011535627507584,2025-01-18 +Resort Hotel,0,0,2017,September,37,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,45.82,0,1,Check-Out,Kristina Neal,mtrujillo@example.org,+1-443-573-5460,4528341600271160,2026-02-12 +City Hotel,0,169,2017,February,9,25,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.18,0,0,Canceled,Cory Parsons,jeffery56@example.org,453.338.3874,5525714385141404,2024-05-04 +City Hotel,1,148,2017,October,44,31,2,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,7.0,179.0,0,Transient,108.59,0,0,Canceled,Christopher Horn,harmonkelly@example.net,936-674-8658x7485,2256694790322322,2025-06-27 +City Hotel,1,149,2017,July,29,18,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,159.0,179.0,41,Transient,119.86,0,1,Canceled,Christopher Simmons,aanderson@example.com,(925)579-9976x10904,6011927953175260,2024-11-18 +Resort Hotel,0,21,2017,February,6,7,4,7,2,0.0,0,BB,GBR,Online TA,GDS,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Check-Out,Joshua Reed,blevinsamanda@example.net,+1-303-647-8309x11218,4384396758793,2024-09-15 +City Hotel,0,45,2017,April,14,2,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,177.29,0,3,Check-Out,Kimberly Brewer,sarahnavarro@example.org,577.229.1632,213172986382406,2024-12-21 +City Hotel,0,29,2017,September,37,15,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,90.96,0,1,Check-Out,Ronald Kramer,clarkcameron@example.org,3034188907,30125836385350,2025-03-20 +Resort Hotel,0,0,2017,September,36,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,35.58,0,1,Check-Out,Ann Hobbs,ohughes@example.org,528-576-0847x22329,30545010305694,2024-11-10 +Resort Hotel,0,19,2017,September,37,15,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,170.0,179.0,0,Group,36.78,0,1,Check-Out,Richard Potter,daviddoyle@example.com,882.565.3632,2708431661311983,2026-02-04 +Resort Hotel,0,11,2017,April,17,20,2,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,236.91,1,1,Check-Out,Terry Carr,ltravis@example.com,+1-538-275-2376x6614,4398304652734516,2025-02-15 +City Hotel,0,112,2017,June,26,29,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,103.38,0,0,Check-Out,Tiffany Wilson,evanstommy@example.net,(667)308-1406,213104885401938,2025-03-22 +Resort Hotel,0,163,2017,September,37,15,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,87.72,1,0,Check-Out,Jon Gonzalez,andrewramirez@example.org,(216)352-5784,180040099435909,2024-04-29 +City Hotel,1,202,2017,April,15,7,0,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,215.66,0,0,Canceled,Mr. Jacob Moore,terriramos@example.com,8729096056,213136082618724,2025-10-29 +City Hotel,1,112,2017,July,28,8,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,88.33,0,0,Canceled,Janet Larson,sgeorge@example.com,+1-482-552-4185x2369,4311949641273988842,2024-08-12 +City Hotel,0,13,2017,June,24,14,2,0,1,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,A,E,0,No Deposit,182.0,179.0,0,Transient,44.5,0,0,Check-Out,Margaret Knight,stevehernandez@example.com,+1-538-920-3685,6011669579791449,2025-03-04 +Resort Hotel,0,32,2017,August,35,31,1,4,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,90.54,0,0,Check-Out,Gloria Odom,barbarabarrett@example.org,+1-519-204-6584x348,348086855567830,2025-01-16 +City Hotel,1,204,2017,January,3,14,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,90.78,0,0,Canceled,Casey Foster,cwalker@example.com,755.709.5748,180039697833663,2024-07-30 +Resort Hotel,0,199,2017,May,20,14,2,6,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,88.0,179.0,0,Transient,110.23,0,1,Check-Out,Daryl Olson,jaredrobinson@example.net,001-632-601-0316,4441962244864904927,2024-03-27 +City Hotel,0,11,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,82.23,0,1,Check-Out,James Raymond,wellstracy@example.org,(882)583-1047,3541943428590161,2026-03-04 +Resort Hotel,0,10,2017,November,44,3,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,84.88,0,1,Check-Out,Denise Flores,michelle39@example.org,(739)230-9284x11656,4962678906946230576,2024-06-01 +Resort Hotel,1,152,2017,September,38,21,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,12.0,179.0,0,Transient,126.25,0,0,Canceled,Katie Hardin,rodriguezstacy@example.net,240-798-1138x30216,4924361764592602586,2025-11-13 +City Hotel,1,321,2017,March,14,30,2,9,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,Refundable,8.0,179.0,0,Contract,106.99,0,0,Canceled,Brian Bullock,harmondonald@example.net,779-881-7413,213165203239557,2025-10-02 +City Hotel,1,1,2017,November,46,18,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,65.0,0,Transient,86.14,0,0,No-Show,Stefanie Simmons,vkim@example.net,(531)514-4777x080,180058659767396,2024-12-20 +Resort Hotel,0,4,2017,August,31,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,244.0,179.0,0,Transient,52.37,1,1,Check-Out,Randall Johnson,mcfarlandmichael@example.net,001-345-594-1981x346,4765972807006280,2026-02-13 +City Hotel,0,90,2017,February,8,21,2,0,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient-Party,87.63,0,0,Check-Out,Brooke Harmon,tlewis@example.com,(226)762-8685,4864289512769742,2026-02-20 +Resort Hotel,0,0,2017,June,25,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,52.03,0,0,Check-Out,Debra Baxter,linda00@example.net,(557)714-1308x888,4956975274215666190,2024-11-23 +City Hotel,0,16,2017,January,4,22,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,137.97,0,1,Check-Out,Corey Thornton,shane47@example.net,001-300-265-8347x5669,2491565591994367,2024-12-30 +City Hotel,1,320,2017,February,6,3,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,120.05,0,0,Canceled,Michael Dalton,brendafarrell@example.com,447.711.7173x60299,30335722496605,2025-04-28 +Resort Hotel,0,2,2017,April,14,2,3,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,54.68,0,2,Check-Out,Evan Nelson,hughesrobert@example.org,+1-840-348-0205x3419,4761628836100098,2026-01-25 +City Hotel,1,13,2017,March,12,18,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,95.66,0,0,Canceled,Brenda Perkins,stephensashley@example.org,5444839701,4267785434628604,2024-06-19 +City Hotel,0,163,2017,May,18,3,2,7,1,0.0,0,BB,SWE,Online TA,GDS,0,0,0,D,A,0,No Deposit,174.0,179.0,0,Transient,133.75,0,0,Check-Out,David Skinner,yfernandez@example.org,(870)293-3420,213129518258579,2024-11-17 +Resort Hotel,1,45,2017,September,39,24,2,3,2,1.0,0,BB,POL,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,235.02,0,0,Canceled,Jessica Lowery,foconnor@example.com,520-690-2058,4038796731440159261,2025-06-18 +City Hotel,0,31,2017,September,39,26,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,165.0,179.0,0,Transient,112.44,0,2,Check-Out,Charles Owens,yhall@example.com,(381)246-4122,4865977905000853292,2025-02-25 +City Hotel,0,89,2017,August,32,5,1,3,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,244.0,179.0,0,Transient,109.97,0,1,Check-Out,Jacqueline Figueroa,michelleanderson@example.org,(331)963-7542x5993,348753852441950,2024-12-12 +City Hotel,1,1,2017,September,38,17,1,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,40.84,0,1,No-Show,Brittany Davis,ysmith@example.com,3846512519,3586992697997892,2025-07-10 +City Hotel,1,268,2017,March,12,20,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.99,0,0,Canceled,Michelle King,micheal40@example.net,846-893-8536x062,375410438510222,2024-09-16 +City Hotel,0,209,2017,June,25,17,0,2,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.82,0,1,Check-Out,Erica Huynh,danny38@example.org,001-322-458-0015x218,6011417054394614,2024-05-19 +Resort Hotel,1,26,2017,November,48,26,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,41,Transient,75.61,0,0,Check-Out,Leslie Fitzgerald,davisstephen@example.org,745-549-9614x04841,3562466285123821,2025-05-13 +Resort Hotel,0,0,2017,June,23,4,2,5,1,0.0,0,HB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,49.46,0,1,Check-Out,Elizabeth Daniels,adamduke@example.net,001-700-233-7692x9449,6011544361120463,2024-04-11 +City Hotel,1,417,2017,May,18,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,126.75,0,0,Canceled,Jeffrey Walters PhD,fharper@example.com,(595)588-7997x2242,675967947523,2025-01-08 +City Hotel,0,309,2017,March,9,1,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.03,0,0,Check-Out,Daniel Young,hmartinez@example.org,+1-378-602-3003x995,213155399210611,2025-01-03 +City Hotel,1,161,2017,April,16,16,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,81.75,0,0,Canceled,Kevin Grant,robert16@example.com,3782886814,4424300015631363,2025-05-05 +Resort Hotel,0,2,2017,July,29,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,332.0,61.0,0,Transient-Party,51.32,0,0,Check-Out,Hunter Williamson,billy28@example.net,988.468.7239x04427,5577377267223687,2024-12-27 +City Hotel,0,9,2017,June,26,24,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,113.63,0,0,Check-Out,Gerald Moran,andersonsandra@example.org,783-467-3713,213161557894923,2024-05-12 +Resort Hotel,0,50,2017,December,52,24,1,0,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,241.0,179.0,0,Transient,154.51,0,0,Check-Out,Toni Hill,georgemaynard@example.net,376-410-5882x13644,6595658000339450,2024-04-03 +City Hotel,0,34,2017,July,28,12,2,2,2,0.0,0,SC,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,83.03,0,0,Check-Out,Felicia Gordon,kelly66@example.org,001-844-388-7288,4257767024765,2025-02-22 +City Hotel,0,5,2017,September,36,5,2,3,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,105.09,0,1,Check-Out,Nancy Moreno,enguyen@example.net,341-615-0271,4855765945135891,2025-10-03 +City Hotel,0,9,2017,June,24,8,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,218.77,0,2,Check-Out,Kimberly Kaufman,anna66@example.org,345.316.1440x01539,30479663640027,2025-06-03 +City Hotel,1,6,2017,December,52,27,2,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,225.12,0,0,No-Show,Jeffrey Leon,fkelly@example.org,413.830.0129x929,630465753717,2025-08-16 +Resort Hotel,1,43,2017,November,44,2,1,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,162.66,0,0,Canceled,Richard Smith,rebecca88@example.org,588.401.7349,213190320026398,2024-06-03 +City Hotel,1,202,2017,May,20,13,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,109.77,0,0,Canceled,Jennifer Martinez,karenthompson@example.net,738.437.6552x242,3512599831988346,2025-04-24 +City Hotel,1,89,2017,April,13,1,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,76.39,0,0,Check-Out,Carol Torres,anthony91@example.org,001-959-706-9365x2677,213124483808722,2024-07-05 +Resort Hotel,0,27,2017,December,52,23,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,266.0,179.0,0,Transient,109.97,0,0,Check-Out,Richard Golden,ewu@example.com,320.692.2669,4927014419188,2024-09-18 +City Hotel,0,11,2017,February,9,26,2,2,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,144.35,0,1,Check-Out,Angela Richards,kmiranda@example.net,499-927-1805,4731723793854945856,2025-05-26 +Resort Hotel,0,2,2017,October,42,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,235.0,0,Transient-Party,43.44,1,1,Check-Out,Christopher White,seth42@example.com,(483)648-8499x0842,376881671714565,2025-10-31 +Resort Hotel,0,62,2017,November,48,27,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,1,No Deposit,239.0,179.0,0,Transient,44.28,1,1,Check-Out,Paul Ferguson,marybradley@example.com,(402)269-4755,341577034185152,2025-04-23 +Resort Hotel,1,254,2017,November,46,15,4,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,137.93,1,0,Canceled,Robert Peck,sheltonerin@example.com,001-466-309-8558x012,349656856247928,2024-07-19 +City Hotel,0,81,2017,November,47,24,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,36.0,179.0,42,Transient-Party,79.58,0,1,Check-Out,Peter Zhang,sharpsarah@example.com,001-739-658-2484x592,30486195952234,2025-01-12 +City Hotel,1,311,2017,May,20,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,80.2,0,0,Canceled,Juan Lopez,wmoore@example.net,(888)872-2686x2618,501815185449,2025-10-22 +City Hotel,0,48,2017,April,14,4,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,137.71,0,1,Check-Out,Shirley Lucas,ryancharles@example.com,621-903-0541x77400,3570294012283498,2025-05-08 +City Hotel,0,137,2017,November,46,13,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,118.04,0,1,Check-Out,Tracy Mcguire,lindsay96@example.com,929.751.3888,630416461931,2025-09-20 +City Hotel,1,51,2017,July,30,21,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.47,0,0,Canceled,Donald Roberts,rachel18@example.net,(253)811-8293x87338,676326957302,2026-02-20 +City Hotel,0,16,2017,January,3,16,2,0,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,84.23,0,1,Canceled,Linda French,milesrobert@example.org,730.418.1974x24537,6501848197737318,2025-10-14 +Resort Hotel,0,67,2017,November,47,23,2,5,2,1.0,0,HB,AUT,Direct,Direct,1,0,1,E,F,1,No Deposit,18.0,179.0,75,Transient-Party,102.35,1,3,Check-Out,Mary Foster,thall@example.org,+1-239-240-6128x386,4901215481287882,2025-06-03 +City Hotel,1,46,2017,April,15,9,4,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,115.15,0,3,Canceled,Jill Taylor,johnsonchristian@example.com,+1-262-897-5967,4965566924894693768,2024-04-13 +Resort Hotel,1,114,2017,March,11,10,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,327.0,179.0,0,Transient,104.78,0,0,No-Show,Dennis Guerra,yharrison@example.net,689.349.0494x068,6011651857771574,2025-01-21 +City Hotel,1,15,2017,November,46,11,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Canceled,Ryan Mccarty,williamsethan@example.org,(289)905-3878,3511388224966213,2025-08-08 +Resort Hotel,1,161,2017,November,46,16,2,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,78.99,0,0,Canceled,Cory Jones,haleyjordan@example.org,001-321-631-4573,2304699132249234,2025-05-22 +Resort Hotel,0,22,2017,April,14,5,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,3,No Deposit,238.0,179.0,0,Transient,252.0,1,1,Check-Out,Maria Smith,williamtaylor@example.com,+1-802-947-8275x564,36184739895688,2025-06-09 +Resort Hotel,0,14,2017,November,45,4,2,2,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,48.05,0,3,Check-Out,Benjamin Mclaughlin,henry09@example.com,+1-205-355-8850x650,4620030308853,2024-06-09 +City Hotel,0,0,2017,September,39,27,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,45.52,0,1,Check-Out,Daniel Wood,martinjordan@example.com,565.357.8375,5530005401126708,2024-04-25 +City Hotel,1,33,2017,November,45,11,2,3,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,46.21,0,1,Canceled,Manuel Taylor,olopez@example.org,001-307-215-1252x0875,2282163588262361,2025-07-04 +City Hotel,1,88,2017,March,10,5,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,231.02,0,1,Canceled,John Miller,joyceshannon@example.org,+1-327-226-6192x2283,676384261555,2025-07-30 +City Hotel,0,45,2017,December,50,12,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.94,0,1,Check-Out,Janet Smith,jonathan09@example.com,872.701.1831x54120,4284486101038032,2025-12-05 +Resort Hotel,1,325,2017,March,11,17,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,1,No Deposit,167.0,179.0,0,Transient-Party,106.07,0,0,Canceled,Vincent Huynh,millerjaime@example.com,528.684.6989,4875496906363506,2024-06-12 +Resort Hotel,0,29,2017,March,10,6,0,3,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,260.0,179.0,0,Transient-Party,78.64,0,1,Check-Out,John Johnson,jose25@example.net,(608)988-4205,4920495020242468408,2026-02-06 +City Hotel,0,6,2017,December,49,8,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,11.0,179.0,0,Transient,89.87,0,0,Check-Out,James Mclean,connor65@example.com,001-353-679-6539,3587872198405794,2024-12-15 +City Hotel,0,88,2017,December,48,2,2,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,113.8,0,1,Check-Out,Sandra Brown,robertcharles@example.com,995-310-7424x7157,4258463095475944,2024-08-15 +Resort Hotel,0,34,2017,July,28,9,0,2,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,1,No Deposit,244.0,272.0,0,Transient-Party,43.36,0,1,Check-Out,Sheila Myers,poolediana@example.org,001-491-746-5120x387,4745023868392568,2024-07-16 +Resort Hotel,1,7,2017,January,4,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,137.31,0,3,No-Show,Joseph Ayers,nhernandez@example.com,(886)353-5418,2398577151541193,2025-03-21 +Resort Hotel,1,315,2017,March,10,4,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,169.0,179.0,0,Transient-Party,49.82,1,1,Canceled,Kenneth Perez,erica72@example.org,001-361-566-2825x2077,3580962194469121,2025-11-02 +City Hotel,0,2,2017,January,2,2,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,225.0,0,Transient-Party,105.73,0,0,Check-Out,Devon Davis,jennifergarcia@example.net,+1-865-754-8874x481,4583932314470726,2026-03-09 +Resort Hotel,0,92,2017,March,12,19,2,2,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,1,No Deposit,250.0,179.0,0,Transient,237.71,1,1,Check-Out,Mary Mathews,melissasullivan@example.com,532-881-9684x027,340718217388954,2024-05-28 +City Hotel,1,251,2017,September,36,4,0,2,1,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,A,0,Non Refund,12.0,45.0,0,Transient-Party,62.86,0,0,Canceled,Christine Dillon,lisadixon@example.com,781.349.1125,180057963716982,2025-01-28 +City Hotel,0,47,2017,September,37,13,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,99.85,0,1,Check-Out,Jason Smith,shawn99@example.org,001-879-294-8749x3575,4925974910811702,2025-11-17 +City Hotel,1,90,2017,February,8,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.33,0,0,Canceled,Lisa Campbell,uharper@example.net,(482)502-1995x127,4887851369286,2024-09-08 +Resort Hotel,0,45,2017,May,18,2,2,5,3,1.0,0,BB,,Direct,TA/TO,0,0,0,H,H,0,No Deposit,189.0,179.0,0,Transient,200.3,0,0,Check-Out,Jeffrey Taylor,arnolddavid@example.com,550.758.5411x431,4374070690511608,2026-01-09 +City Hotel,0,51,2017,May,21,25,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient-Party,106.18,0,1,Check-Out,Brett Bailey,brownkevin@example.org,527-464-5071x4149,2279076357569193,2025-01-04 +City Hotel,0,51,2017,June,23,8,2,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,218.84,0,0,Check-Out,Donna Sexton,gdavis@example.org,001-658-472-6655x69480,2251196800224030,2025-07-07 +City Hotel,0,56,2017,May,20,16,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.19,0,0,Check-Out,Christopher Harrison,iking@example.net,992-299-5200x381,30009455636337,2026-01-26 +Resort Hotel,0,158,2017,June,26,27,2,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,140.62,0,3,Check-Out,Kelly Woods,mcdowellpaul@example.net,+1-459-801-5827x85499,4855350985503850,2025-05-30 +Resort Hotel,0,147,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,78.2,0,0,Check-Out,Thomas Johnson,irobertson@example.org,352-225-6042x5106,675912628160,2024-09-16 +City Hotel,0,48,2017,April,16,19,0,2,2,0.0,0,HB,DEU,Groups,Corporate,0,0,0,A,D,1,No Deposit,30.0,179.0,0,Transient-Party,126.46,0,0,Check-Out,Christine King,carolthomas@example.com,+1-641-925-0856x0383,4244372393500070,2025-12-26 +City Hotel,0,125,2017,April,15,12,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,110.43,0,2,Check-Out,Marcus Williams,cwilliamson@example.com,494-831-0030x25502,180080044102394,2024-12-27 +City Hotel,1,90,2017,October,43,22,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.11,0,0,Canceled,Jeffrey Jones,suzanneweaver@example.com,001-984-247-0580x358,6011671910549676,2024-11-20 +City Hotel,0,47,2017,April,16,20,1,1,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,133.58,0,1,Check-Out,Gerald Hunt,charles89@example.com,229.700.8798x5835,6560752355552584,2024-12-04 +City Hotel,0,12,2017,January,4,21,2,0,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,B,0,No Deposit,11.0,45.0,0,Transient-Party,65.51,0,2,Check-Out,Zachary Huff,jessicaking@example.org,391-550-4959,4567667182739147,2024-05-07 +City Hotel,0,8,2017,November,47,23,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,11.0,45.0,0,Transient,133.32,0,0,Check-Out,Luis Lopez V,ddavidson@example.org,9966292349,4443437950492386211,2025-03-20 +Resort Hotel,0,140,2017,March,10,3,4,5,3,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,236.0,179.0,0,Transient,246.28,1,2,Check-Out,Stephen Mitchell,ydennis@example.com,001-813-457-2949,6560354390446441,2024-07-16 +City Hotel,0,57,2017,April,14,6,1,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,117.17,0,1,Check-Out,Eric Ingram,jessepalmer@example.org,+1-460-701-0577x32764,30191359591477,2025-12-12 +City Hotel,0,33,2017,November,46,11,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,11.0,179.0,0,Transient,46.1,0,1,Check-Out,Jon Robinson,rebecca43@example.org,+1-966-924-2162x6280,676276433486,2026-03-23 +City Hotel,0,161,2017,April,14,5,1,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,221.25,0,3,Check-Out,Richard Flynn,pdaniel@example.net,001-263-881-9486,562940503492,2025-06-06 +City Hotel,0,142,2017,January,2,10,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.28,0,2,Check-Out,Jasmine Scott,cynthia10@example.com,212-744-7559x98520,30118917300950,2025-04-06 +City Hotel,0,43,2017,January,4,22,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.49,0,0,Check-Out,Yolanda Martin,sherrycervantes@example.org,001-712-409-3951,30545638270817,2026-03-07 +City Hotel,0,255,2017,June,24,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Group,122.25,0,1,Check-Out,Patricia Wood,englishheather@example.net,001-474-350-4167x313,3515365771888152,2025-05-15 +City Hotel,0,11,2017,June,26,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Group,116.97,0,0,Check-Out,Ryan Taylor,ydiaz@example.org,835-290-7018,349771806457509,2026-02-06 +Resort Hotel,0,158,2017,November,48,30,1,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,222.0,0,Transient-Party,38.22,0,0,Check-Out,Amanda Watts,sheilagreen@example.com,531.483.8681x24998,374823225495665,2024-05-17 +City Hotel,1,345,2017,March,13,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,129.51,0,0,Canceled,Jose Gross,gilbertkenneth@example.org,(922)272-6815x99956,4937425197850000,2026-01-26 +City Hotel,0,281,2017,January,3,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,84.85,0,1,Canceled,Matthew Krause,brownjustin@example.net,(648)223-4619,676301839111,2026-01-26 +City Hotel,0,54,2017,May,18,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,44.06,0,0,Check-Out,Gerald Mason,randy57@example.org,399-763-0288,3559110086181217,2025-12-24 +City Hotel,0,162,2017,May,21,26,1,3,2,1.0,0,SC,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,239.81,0,1,Check-Out,Stephen Olson,jacquelinemiller@example.net,+1-234-665-7683,3532209384495550,2024-07-18 +City Hotel,1,149,2017,April,16,17,1,5,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,224.98,0,1,Canceled,Carrie Myers,daniel61@example.com,+1-477-475-1508x4855,4815676418917753240,2025-05-16 +City Hotel,0,0,2017,December,52,29,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,286.0,0,Transient-Party,5.51,0,0,Check-Out,Frank Lawrence,michellethompson@example.org,+1-536-515-1409x7928,4094636930582499,2025-06-09 +City Hotel,0,4,2017,April,14,8,0,1,1,0.0,0,BB,GBR,Direct,Direct,1,0,0,D,B,1,No Deposit,16.0,45.0,0,Transient-Party,148.59,0,1,Check-Out,Robert Perkins,darrellperkins@example.net,+1-473-434-5956x78295,213142048595170,2024-09-01 +City Hotel,0,209,2017,June,23,9,2,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,164.64,1,3,Check-Out,Joseph Green,johnnywells@example.net,937.771.0628,4786685208254011,2025-03-02 +City Hotel,1,16,2017,July,30,25,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,331.0,0,Transient,54.17,0,0,Canceled,Eric Mathis,dewing@example.com,906-973-2077x88396,4485482040028239772,2024-08-27 +Resort Hotel,0,30,2017,June,23,7,0,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,D,0,No Deposit,166.0,179.0,0,Transient-Party,76.57,1,0,Check-Out,Nancy Carter,perezdana@example.org,397-284-2500x94404,36974037721747,2025-12-25 +Resort Hotel,0,45,2017,April,17,25,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,206.92,0,0,Check-Out,Tyler Mills,williamsmartin@example.com,891-468-7805x834,30177167383140,2025-09-21 +City Hotel,0,84,2017,December,50,12,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,C,G,1,No Deposit,32.0,179.0,0,Transient,0.24,0,3,Check-Out,Jim Foster,david72@example.com,001-790-343-6045,4772386682684651143,2024-06-25 +Resort Hotel,0,8,2017,April,14,8,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,238.0,179.0,0,Transient,133.12,1,1,Check-Out,Joshua Hayes,josephmyers@example.com,001-704-359-9998x72802,30417325088128,2025-06-26 +City Hotel,0,21,2017,February,6,9,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,178.73,0,0,Check-Out,Savannah Johns,jose32@example.com,(996)801-3246,2296745312122178,2024-04-20 +Resort Hotel,1,24,2017,August,35,30,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,104.22,0,0,Canceled,Jason Mcdonald,jennifersmith@example.net,+1-706-692-4799,577870896302,2026-01-23 +City Hotel,0,0,2017,February,7,11,2,0,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,K,1,No Deposit,9.0,179.0,0,Transient,3.08,0,0,Check-Out,Jasmine Hall,brockmartha@example.org,5647021374,4195877021384191,2024-06-07 +City Hotel,1,124,2017,January,2,6,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,18.0,179.0,0,Transient,108.76,0,0,Canceled,Rhonda Oconnell,davidgordon@example.org,800-371-5796x71281,4738769522485300,2024-10-16 +City Hotel,1,372,2017,January,4,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,109.73,0,0,Canceled,Matthew Khan,duanehubbard@example.org,5466019781,3530943069627630,2024-04-20 +Resort Hotel,0,0,2017,September,36,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient-Party,47.2,0,0,Check-Out,Jake Holmes,qjohnson@example.com,001-415-416-6446,347089483894361,2025-11-10 +Resort Hotel,0,64,2017,November,46,14,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,51.47,0,1,Check-Out,Amanda Brown,robinsonwhitney@example.com,416.489.2293x068,6011823465831674,2025-11-22 +City Hotel,1,15,2017,June,26,29,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,63.96,0,1,No-Show,Tim Jackson,crawfordchristine@example.org,7143842413,6597434315020732,2025-11-01 +Resort Hotel,1,46,2017,April,14,5,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,239.0,179.0,0,Transient,200.35,0,1,Canceled,Alexandra Holmes,ortizwilliam@example.org,251.847.6077x1813,30523387118503,2024-12-03 +City Hotel,0,17,2017,June,23,9,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,221.0,0,Transient-Party,64.13,0,0,Check-Out,Michael Santos,matthew29@example.com,828.882.6704x077,4967865510900893734,2025-06-05 +City Hotel,1,55,2017,February,6,5,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient-Party,135.7,0,0,No-Show,Janice Roberts,mendezemily@example.org,272.828.9352x25910,3525853904933829,2024-10-09 +City Hotel,1,40,2017,November,45,8,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,127.0,179.0,0,Transient,106.04,0,1,Canceled,Jason Khan,mason67@example.net,494.289.3403x266,6561866012782159,2025-08-27 +City Hotel,0,2,2017,June,24,10,0,1,2,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,172.0,0,Transient-Party,103.75,0,0,Check-Out,Steven Perez,davidstrong@example.org,205-529-8261x675,6011112171585836,2025-09-18 +City Hotel,0,15,2017,June,24,11,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,62.05,0,2,Check-Out,Derek Coleman,thomascoleman@example.net,001-828-786-8333x4760,4646385949711582543,2024-04-15 +City Hotel,0,139,2017,August,32,7,2,4,2,1.0,0,Undefined,,Online TA,TA/TO,0,0,0,G,A,1,No Deposit,10.0,179.0,0,Transient,111.26,0,2,Check-Out,Christine Sanders,amanda76@example.com,(332)836-7798x1701,213135164720358,2025-03-15 +City Hotel,1,444,2017,February,7,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,104.58,0,0,Canceled,Mary Johnson,vdavila@example.org,640-593-8307x640,585925990020,2026-01-14 +Resort Hotel,0,60,2017,April,18,27,2,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,1,0,Check-Out,Michael Clay,alyssabrown@example.com,(896)999-5213x47988,180015440159721,2024-05-13 +City Hotel,0,34,2017,June,22,3,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,50.42,0,0,Check-Out,Timothy White,sarah21@example.org,696-780-4380x41147,4410566851793697060,2025-11-19 +City Hotel,0,39,2017,November,47,21,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,85.61,0,1,Check-Out,Jason Mathews,hortoncandice@example.com,+1-394-650-7674x485,6011448856719773,2025-03-23 +City Hotel,0,159,2017,February,8,24,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,145.23,0,3,Check-Out,Maria Parsons,christiangates@example.com,9452013389,4473928224454522,2025-02-18 +Resort Hotel,0,44,2017,April,15,10,2,2,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,99.22,1,0,Check-Out,Patricia Hayes,elamb@example.net,584-757-9166x7050,4520493671231678,2025-06-02 +Resort Hotel,0,142,2017,December,49,9,2,6,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,84.94,0,1,Check-Out,Jessica Robinson,christina13@example.com,+1-633-454-3088x3641,213139061207089,2024-10-04 +City Hotel,0,3,2017,December,50,9,1,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.36,0,2,Check-Out,Megan Stokes,wilsonsophia@example.org,+1-235-958-2636,3501933974448961,2024-05-01 +City Hotel,0,54,2017,April,15,9,2,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,121.43,0,1,Check-Out,John Harris,crystalcohen@example.net,937-332-6031,4648052480758359,2024-07-18 +City Hotel,1,400,2017,July,27,1,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,121.97,0,0,Canceled,Eric Li,smithgary@example.org,821.828.3190x637,3503579182251347,2024-12-03 +City Hotel,0,95,2017,February,5,3,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,167.44,0,0,Check-Out,Melissa Oneill,courtney47@example.net,672-415-0018,4578329437652453,2025-02-27 +City Hotel,0,47,2017,September,35,1,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,122.58,0,1,Check-Out,Karen Ross,wflores@example.com,+1-611-577-4988x37252,4957171003301,2024-06-08 +City Hotel,0,0,2017,March,12,20,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,104.89,0,2,Check-Out,Emily Gamble,bradley85@example.com,001-585-472-9030x825,213169973108406,2025-06-13 +Resort Hotel,0,49,2017,November,47,21,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,1,No Deposit,238.0,179.0,0,Transient,50.1,1,1,Check-Out,Alex Lambert,amber59@example.net,4235858160,4529561476357756,2026-02-13 +City Hotel,1,208,2017,April,14,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,38.37,0,0,Canceled,Charles Poole,hughesbrent@example.org,001-515-794-3091x94968,30210178442496,2025-11-25 +City Hotel,1,144,2017,June,23,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,0,Transient,63.85,0,0,Canceled,Amy Wong,irobertson@example.net,391.429.2358x5293,4082290595007362785,2024-11-23 +City Hotel,0,33,2017,December,51,16,1,0,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient-Party,35.9,0,1,Check-Out,Pamela Hubbard,christy84@example.com,(767)607-2197x049,4488293348309,2026-03-12 +Resort Hotel,0,11,2017,November,48,29,2,2,1,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,101.38,0,0,Check-Out,Jennifer Cummings,fosterdustin@example.com,8414094424,5286641480430045,2024-10-18 +City Hotel,1,416,2017,December,50,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,62.55,0,0,Canceled,James Lopez,duncanmichael@example.com,(936)395-9481,3503300263996118,2024-08-09 +City Hotel,1,83,2017,July,28,9,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,96.76,0,0,Canceled,Benjamin Hines,reeddawn@example.org,(830)760-4069,676232851151,2024-10-02 +City Hotel,1,264,2017,September,37,9,0,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,0,No Deposit,2.0,251.0,0,Transient-Party,49.59,0,0,Check-Out,Tonya Kemp,lopezaaron@example.com,+1-800-926-0663x7361,3573618890229784,2024-10-06 +City Hotel,1,46,2017,April,15,8,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.6,0,0,Check-Out,Corey Pacheco,djimenez@example.net,248.749.2286x479,30251123745666,2026-01-28 +Resort Hotel,1,4,2017,March,12,19,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,Pamela Hicks,riveraandrew@example.net,(429)603-6799x64266,4775893586282,2024-05-25 +City Hotel,0,0,2017,November,48,26,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,16.0,221.0,0,Transient,49.54,1,0,Check-Out,Megan Knight,jamieashley@example.com,(634)214-6346x47347,346105474459831,2025-04-13 +Resort Hotel,0,2,2017,June,23,9,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,165.18,0,1,Check-Out,Caitlin Wilson,jbrown@example.net,001-917-222-9744x2409,30076357315500,2024-05-23 +City Hotel,0,12,2017,September,39,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,229.0,0,Transient,97.86,0,0,Check-Out,Michael Church,wlane@example.org,001-758-202-2211x332,3558137389962028,2024-05-16 +Resort Hotel,0,48,2017,February,7,10,2,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,Patricia Hall,craig27@example.net,864-832-0331x8896,4440758728131304,2024-04-01 +Resort Hotel,0,10,2017,November,47,20,0,1,2,1.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,78.76,0,0,Check-Out,Omar Weeks,cobbdouglas@example.org,622.392.4698x3983,060426826156,2024-09-16 +Resort Hotel,1,110,2017,June,25,17,3,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,110.43,0,0,Canceled,Samantha Parker,donaldhoward@example.net,7873211398,4765578597782822,2024-04-15 +City Hotel,1,64,2017,February,6,3,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.33,0,1,Canceled,Jared Carter,kaylee04@example.org,349-470-8998x50119,4096288990047292601,2024-08-07 +Resort Hotel,0,57,2017,March,10,2,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,134.65,0,1,Check-Out,Mitchell Garza,rthompson@example.org,(566)666-1611,4042853040655,2025-07-10 +City Hotel,1,14,2017,February,9,26,0,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,177.57,0,0,Canceled,Mary Compton,coltonpowers@example.org,(275)569-9088,4394977501629889097,2025-02-04 +Resort Hotel,0,52,2017,March,13,26,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,237.99,1,1,Check-Out,Ray Rosario,garnerkathryn@example.com,(940)957-7205,3519982657969199,2025-01-30 +City Hotel,1,12,2017,November,48,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,85.38,0,1,Canceled,William Guzman,denise48@example.com,+1-780-830-5032x5934,4509728203783,2024-09-20 +Resort Hotel,0,0,2017,October,43,26,1,2,3,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,206.35,1,0,Check-Out,Douglas Hampton,thomaskenneth@example.com,(350)838-0851,30590138448455,2024-07-21 +City Hotel,0,260,2017,June,23,8,1,2,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,100.23,0,0,Canceled,Jennifer Johnson,smithhayley@example.com,533.821.3289x494,4695860486682817,2025-11-23 +City Hotel,0,38,2017,December,51,22,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,126.73,0,2,Check-Out,Christopher Jensen,beardtroy@example.org,001-338-659-4241x838,3579753236686043,2025-08-16 +Resort Hotel,0,2,2017,October,40,6,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Contract,47.41,0,1,Check-Out,Jessica Smith,lwashington@example.net,384.874.0960,4546197922099657,2025-04-27 +City Hotel,0,15,2017,September,37,15,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.33,0,2,Check-Out,Lawrence Martin,nhall@example.net,(431)983-6474x62198,4654954049250,2025-04-18 +Resort Hotel,0,134,2017,November,46,17,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,A,0,No Deposit,17.0,179.0,0,Transient,95.03,1,0,Check-Out,Mrs. Susan Newton MD,shelby46@example.org,399-740-9106,560363670236,2025-10-01 +City Hotel,0,15,2017,September,36,5,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,195.39,0,3,Check-Out,Robin Terry,flee@example.org,(713)243-2588x03232,4850404033107089234,2024-10-10 +Resort Hotel,0,229,2017,June,23,8,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Contract,90.41,0,1,Check-Out,Melissa Short,parkerjohn@example.org,(852)920-1892x81115,4190627029016492,2024-11-09 +Resort Hotel,0,35,2017,December,50,16,0,3,2,0.0,0,HB,FRA,Groups,Direct,0,0,0,A,A,3,No Deposit,245.0,179.0,0,Transient-Party,103.74,0,1,Check-Out,Nathaniel Rodriguez,albert40@example.org,(968)430-9925x79972,340478672444483,2025-06-26 +City Hotel,1,1,2017,September,37,11,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,1,0,A,A,0,No Deposit,15.0,189.0,0,Transient,109.93,0,0,Canceled,Scott Smith,charlespeters@example.com,(223)621-9538x0892,3560678003477519,2025-03-30 +Resort Hotel,0,302,2017,August,32,10,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,45.13,1,2,Check-Out,Tiffany Nelson,rachelavila@example.org,938.624.7698,2708273350578948,2025-04-15 +Resort Hotel,1,396,2017,October,42,17,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.51,0,0,Canceled,Brian Ware,vjones@example.com,339-964-3977,4992840838853371590,2024-06-17 +City Hotel,1,92,2017,February,5,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.41,0,0,Canceled,Sharon Blake,millercarol@example.com,3037119404,4579304441654463,2025-10-14 +Resort Hotel,0,239,2017,March,11,13,0,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,259.0,179.0,0,Contract,127.43,0,0,Check-Out,Ashley Santos,christophermoore@example.com,+1-803-381-2511x6404,3551639675467064,2024-06-11 +City Hotel,0,10,2017,November,47,18,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.39,0,2,Check-Out,Raymond Mccall,cpatterson@example.com,893.249.8184x53523,6578789732521551,2024-10-16 +Resort Hotel,0,110,2017,December,52,24,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,107.49,0,0,Check-Out,Stephanie Valdez,ncarter@example.net,(973)861-1819x104,5287113710546221,2025-01-09 +City Hotel,0,12,2017,November,44,3,1,3,2,1.0,0,BB,POL,Direct,Direct,0,0,0,B,A,0,No Deposit,12.0,179.0,0,Transient,123.21,0,0,Check-Out,Aaron Ayers,patrickclark@example.org,+1-435-688-4261x8775,4133637673560679,2025-04-19 +Resort Hotel,0,33,2017,January,3,19,4,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,131.47,1,1,Check-Out,Ashley Brown,carrollalexandra@example.org,(874)667-4084x9658,4945240844471064876,2026-03-27 +City Hotel,0,1,2017,June,25,20,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,D,0,No Deposit,10.0,62.0,0,Group,3.38,0,1,Check-Out,Brittney Mccoy,wromero@example.org,258.300.2659x6849,4036058523234,2025-02-04 +City Hotel,0,15,2017,December,50,12,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.22,0,1,Check-Out,Shawn Harris,hensonrachel@example.net,3058582385,5434395060394904,2026-01-06 +City Hotel,0,29,2017,July,27,5,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,74.15,0,0,Check-Out,Kimberly Holmes,wattsthomas@example.org,285.726.1937,4538272360167710,2025-03-08 +City Hotel,0,401,2017,March,13,29,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,104.64,0,1,Check-Out,Tonya Jones,avilaomar@example.net,(761)595-0081x15428,30324272461763,2024-04-10 +City Hotel,0,62,2017,December,49,8,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.62,0,0,Check-Out,Chris Martin,dandrade@example.net,+1-806-756-5905x671,6507778436015743,2025-06-02 +City Hotel,1,135,2017,October,42,21,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.75,0,0,Canceled,Krista Curtis,thomasunderwood@example.net,3412492876,213101120417976,2025-10-11 +City Hotel,1,18,2017,October,43,23,0,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.42,0,0,Canceled,Sandra Kirby,josephprice@example.net,764-716-3952x940,4872280608474263,2024-08-19 +City Hotel,0,39,2017,December,51,19,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,24.0,179.0,0,Transient,104.26,0,1,Check-Out,Travis Guerrero,christophercosta@example.com,947-720-9810x239,4765974705999566,2025-08-28 +Resort Hotel,0,1,2017,August,34,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,E,1,No Deposit,17.0,179.0,0,Transient,56.29,1,1,Check-Out,Charles Romero,eric08@example.net,(565)623-0654,3585833105863873,2026-02-25 +City Hotel,0,94,2017,February,9,26,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,140.24,0,0,Check-Out,Gina Cunningham,johnayala@example.net,911-819-6838,675972731599,2025-05-12 +City Hotel,1,156,2017,April,17,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,110.24,0,2,Canceled,Julie Hill,claudiaflowers@example.com,001-713-243-7396x663,30027752785888,2024-06-10 +Resort Hotel,1,254,2017,August,35,30,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,87.67,0,1,Canceled,Joshua Henderson,terri77@example.org,(267)399-8317x13544,4768090512763,2025-02-18 +City Hotel,0,45,2017,November,47,18,2,5,1,0.0,0,BB,ITA,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.13,0,0,Check-Out,Ashley Greene,johnmoore@example.net,001-999-565-5534x644,4789185126539111,2026-02-16 +City Hotel,0,12,2017,November,46,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,71.96,0,0,Check-Out,Shannon Jackson,cassandrabanks@example.org,(738)727-2239,3585383265162559,2025-07-28 +Resort Hotel,0,59,2017,September,38,18,0,1,1,0.0,0,HB,POL,Groups,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,38.05,0,2,Check-Out,James Smith,devonvaughan@example.com,(918)526-3775,4587948567428811,2024-11-19 +Resort Hotel,0,21,2017,November,44,3,2,4,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,12.0,231.0,0,Transient,63.45,0,0,Check-Out,Casey Smith,holmesgina@example.net,+1-691-613-3948x224,6011823228793286,2025-10-25 +City Hotel,0,98,2017,August,32,9,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,137.74,1,1,Check-Out,Joy Reid,richard56@example.net,301.925.6000,4483183572621,2025-01-29 +City Hotel,1,374,2017,May,19,9,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,38,Transient,97.82,0,0,Canceled,Wendy Fisher,rhondaking@example.com,(401)468-6797,213199796892852,2025-02-17 +Resort Hotel,0,114,2017,October,40,6,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,62.91,0,0,Check-Out,Sonya Ramirez,bradshawjennifer@example.com,865.485.2180x8324,374634851461511,2025-02-12 +City Hotel,1,186,2017,April,14,2,1,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,233.91,0,3,Canceled,Robert James,elizabeth26@example.org,(534)294-9676x1899,3535297054584263,2025-11-11 +City Hotel,1,33,2017,January,3,14,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,109.63,0,0,Canceled,Maria Cook,gdoyle@example.org,963-667-8652,4999314854804796,2024-12-29 +City Hotel,0,61,2017,July,30,23,2,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,79.0,179.0,0,Transient,102.95,0,0,Check-Out,Samantha Washington,tammy81@example.org,527-880-6358x898,4875441215228057,2025-08-05 +City Hotel,0,4,2017,June,25,22,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,0,No Deposit,18.0,45.0,0,Transient,0.37,0,0,Check-Out,Christopher Fitzgerald,ann02@example.com,425-469-7466,377468714913369,2024-07-27 +City Hotel,0,54,2017,November,45,6,1,5,2,0.0,0,BB,,Aviation,Corporate,0,0,0,D,A,0,No Deposit,13.0,168.0,0,Transient,57.49,0,0,Check-Out,Matthew Barrett,mjackson@example.com,+1-889-649-3446x7015,4924174076968013,2024-11-11 +City Hotel,0,12,2017,January,4,26,1,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,184.54,1,1,Check-Out,Matthew Brooks,thomas04@example.net,2793409668,060484684745,2024-06-11 +City Hotel,0,97,2017,December,48,1,0,3,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,76.0,179.0,0,Transient-Party,97.67,0,1,Check-Out,Albert Davis,brian24@example.org,+1-612-980-8201x8038,373750947488077,2025-08-11 +Resort Hotel,1,220,2017,March,11,12,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,172.0,179.0,0,Transient,132.27,0,0,Canceled,Tina Ellis,dwayne65@example.com,+1-828-232-8453x4398,3582644947781162,2025-08-13 +Resort Hotel,0,83,2017,November,44,4,1,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,32.0,179.0,0,Transient-Party,79.24,0,0,Check-Out,Clayton Blankenship,robertopitts@example.org,866-775-0799x227,3506257057013962,2025-08-05 +City Hotel,0,1,2017,April,15,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,63.96,0,1,Check-Out,Jennifer Velasquez,richard30@example.net,001-398-831-6189,342880277273266,2024-10-15 +City Hotel,0,37,2017,June,22,1,2,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,31.0,179.0,0,Transient,78.96,0,0,Check-Out,Danielle Bennett,gonzaleskevin@example.com,959-595-1959,4254286357446,2025-10-26 +Resort Hotel,0,39,2017,January,2,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,123.31,0,2,Check-Out,April Hull,abonilla@example.com,+1-788-245-2955x05528,6011403372155531,2024-09-11 +Resort Hotel,0,3,2017,January,2,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,1,No Deposit,15.0,331.0,0,Transient,50.26,1,0,Check-Out,James Anderson,charlesrobinson@example.net,845.847.7858x01838,2716943099052146,2025-09-01 +City Hotel,1,338,2017,May,19,13,1,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,102.23,0,0,Canceled,Melissa Williams,nsherman@example.com,+1-964-559-8118x67612,378490516184840,2025-02-23 +City Hotel,1,400,2017,January,2,1,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,44,Transient,90.6,0,0,Canceled,Michael Coleman,tim69@example.org,2575164080,340767830845098,2024-08-02 +City Hotel,0,12,2017,April,14,5,2,0,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,G,0,No Deposit,11.0,179.0,0,Transient,156.22,0,1,Check-Out,Angela Patel,ekennedy@example.org,701.415.0491x2542,3562343797635206,2026-02-13 +Resort Hotel,1,219,2017,April,16,18,2,4,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,8.0,179.0,0,Transient,207.98,0,0,Canceled,Jacob David,kelsey24@example.org,(203)346-0137,4959431622834794,2024-05-19 +City Hotel,1,403,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,105.39,0,2,Canceled,Tricia Russo,yhicks@example.net,555-215-2763x73692,213194301536565,2025-02-27 +Resort Hotel,0,1,2017,August,33,16,1,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,1,No Deposit,15.0,179.0,0,Transient,0.0,1,3,Check-Out,Denise Wiley,thompsonamber@example.com,286.649.4523,502078899874,2024-05-23 +City Hotel,1,405,2017,December,51,22,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,85.64,0,0,Canceled,Bridget Bell,ytownsend@example.org,+1-360-814-9673x750,373628126547766,2024-09-09 +City Hotel,0,267,2017,June,23,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,11.0,221.0,0,Transient-Party,63.28,0,1,Canceled,Jodi Jimenez,karenwagner@example.com,+1-253-879-0507x075,3522158608798301,2025-09-05 +City Hotel,1,51,2017,April,16,16,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.66,0,1,Canceled,Destiny Joseph,mooremary@example.net,001-357-681-4320x03036,5240430743980425,2026-01-29 +Resort Hotel,0,11,2017,July,29,21,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,76.02,0,0,Check-Out,Zachary Yu,kwest@example.net,982-982-9292x88224,6011261929822676,2024-08-03 +City Hotel,0,3,2017,March,9,1,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,246.25,0,3,Check-Out,Andrew Powell,donna81@example.net,302-713-9024,4118937202139016899,2024-12-05 +Resort Hotel,0,30,2017,January,4,21,2,0,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,D,C,0,No Deposit,378.0,179.0,0,Transient-Party,44.58,0,1,Check-Out,Reginald Cordova,heather06@example.net,264-611-8465x68575,4259842554154,2025-11-28 +Resort Hotel,0,30,2017,March,11,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,115.07,1,1,Check-Out,Kevin Anderson,thompsonstephen@example.com,308.359.1394x0507,3504274170573816,2026-01-19 +City Hotel,0,95,2017,December,52,24,1,2,3,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,162.68,0,0,Check-Out,Latasha Washington,cummingskelly@example.org,286-841-0645,38358298145358,2026-03-22 +City Hotel,0,85,2017,January,4,24,2,3,3,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.91,0,1,Check-Out,Stacy Stein,mkennedy@example.org,534.202.9474,4854369403528,2024-06-01 +Resort Hotel,0,47,2017,October,41,10,0,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,I,1,No Deposit,325.0,179.0,0,Transient-Party,62.22,0,0,Check-Out,Anthony Scott,kylie68@example.com,875.867.7507x67663,4966391833785,2026-03-04 +Resort Hotel,1,18,2017,September,36,3,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,35.26,0,1,Canceled,Jasmine Martin,johnsonmelissa@example.com,4227459110,180046639689129,2024-09-29 +City Hotel,1,25,2017,December,51,17,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,7.0,179.0,0,Transient,173.08,0,1,Canceled,Manuel Smith,yjones@example.com,+1-561-650-1535,2231570588053768,2024-04-17 +Resort Hotel,0,239,2017,January,4,21,0,3,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,44.4,0,0,Check-Out,Benjamin Chavez,ogilbert@example.net,(895)201-6111,376128335748344,2026-02-09 +City Hotel,0,159,2017,April,16,19,1,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient-Party,132.32,0,1,Check-Out,Lauren Thompson,estafford@example.org,001-760-618-1467x661,3511425031644680,2025-10-11 +Resort Hotel,1,48,2017,March,12,24,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,205.78,0,0,No-Show,Jamie Galloway,rogersdaniel@example.org,001-522-413-2212x600,6560361380335880,2025-12-03 +Resort Hotel,0,3,2017,November,45,8,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,128.0,179.0,0,Transient-Party,74.24,0,0,Check-Out,Theresa Sandoval,danielwalter@example.com,745-277-3466x93135,503830940642,2025-05-08 +City Hotel,1,204,2017,May,20,17,2,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,77.7,0,0,Canceled,Thomas Morrison,amiranda@example.org,001-379-871-1340,180044843387317,2024-09-27 +City Hotel,0,48,2017,July,29,16,0,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,104.51,0,2,Check-Out,Kimberly Lewis,ybautista@example.org,+1-328-584-9577x90678,4076547781455553678,2024-12-29 +Resort Hotel,1,87,2017,July,27,3,1,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,207.64,0,2,Canceled,Morgan Grimes,dyeredward@example.org,(470)338-6922,4964206072015342185,2024-05-14 +Resort Hotel,0,11,2017,January,4,25,0,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,225.99,1,1,Check-Out,Jose Mckinney,omarvasquez@example.org,+1-330-271-6857,4371894309658,2025-05-29 +City Hotel,1,150,2017,May,19,10,2,5,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,137.77,0,0,Canceled,Cody Hendricks,pwatson@example.net,001-309-902-5820x1483,374365798097296,2025-12-14 +City Hotel,0,90,2017,May,20,13,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.58,0,0,Check-Out,Eric Wright,clarkthomas@example.net,576-402-4876,3591857462110794,2025-04-22 +City Hotel,0,304,2017,March,9,4,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,128.69,0,2,Check-Out,Amber Meza,sierra23@example.com,441-957-2032x26254,4599610511252,2026-01-14 +Resort Hotel,0,39,2017,January,3,17,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,223.63,0,0,Check-Out,Stephanie Li,michelle51@example.org,7873472380,3586728702975691,2025-07-25 +Resort Hotel,0,12,2017,November,45,11,0,1,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,A,K,0,No Deposit,15.0,168.0,0,Transient-Party,56.96,0,0,Check-Out,Curtis Rice,collinsamy@example.net,9867437944,2716550325473549,2024-09-27 +City Hotel,0,49,2017,April,16,15,0,1,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.38,0,2,Check-Out,Phillip Miller,jrobinson@example.com,001-933-798-1713x1019,4465053780414636,2025-06-08 +City Hotel,0,162,2017,March,10,10,1,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient-Party,156.62,0,0,Check-Out,Jennifer Johnson DVM,devin05@example.org,(687)636-0545x828,4254660156034288,2026-02-12 +City Hotel,0,37,2017,February,8,18,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.04,0,2,Check-Out,Anthony Werner,ramirezleslie@example.org,(388)866-3437,213113100902927,2024-03-28 +City Hotel,0,33,2017,October,43,23,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,58.0,0,Transient-Party,83.55,0,0,Check-Out,Tara Thomas,oconnordawn@example.com,514.223.5161x93542,3531478548579051,2025-12-30 +City Hotel,0,3,2017,April,14,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,201.97,1,1,Check-Out,Nicole Jones,brookswilliam@example.net,9728179863,4797941157924006,2025-11-30 +Resort Hotel,0,106,2017,April,16,15,2,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,217.13,1,1,Check-Out,Natalie Stanley,ashley43@example.net,001-972-708-3024x43516,4747640739556085,2025-02-02 +City Hotel,0,20,2017,April,14,7,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,127.49,0,0,Check-Out,Shelby Simon,rogersalisha@example.net,001-768-717-3580,3543034403512301,2026-02-14 +Resort Hotel,0,41,2017,August,35,26,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,238.0,179.0,0,Transient,41.73,0,1,Check-Out,Claudia Wilson,frankarroyo@example.com,+1-253-654-4412x2906,3566256104770217,2025-02-02 +Resort Hotel,0,1,2017,June,23,5,2,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,79.0,0,Transient,51.86,1,0,Check-Out,Robert Simpson,jacksondaniel@example.net,+1-235-820-8819x2463,180005875911977,2026-03-02 +City Hotel,1,141,2017,June,25,19,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,75,Transient,40.85,0,0,Canceled,Mark Stephens,qpowell@example.org,699.661.7061x46428,3547722176562802,2024-11-17 +City Hotel,0,37,2017,June,22,2,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,168.44,0,1,Check-Out,Kevin Fernandez,lisalynch@example.net,937-267-6984,3578212534728412,2024-10-16 +Resort Hotel,0,0,2017,November,46,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,247.0,233.0,0,Transient,49.03,0,0,Check-Out,Sandra Reyes,aliciaphelps@example.com,644-376-0166x659,2260085426372928,2024-05-06 +City Hotel,0,51,2017,January,4,25,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,300.0,226.0,0,Transient-Party,43.23,0,0,Check-Out,Richard Case,bbarr@example.net,+1-781-614-8387x406,2297615313956933,2025-10-07 +City Hotel,0,109,2017,February,9,26,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient-Party,82.65,0,1,Check-Out,Terry Rivera,serranotimothy@example.org,001-988-578-1600x781,30255645796115,2026-01-22 +Resort Hotel,0,148,2017,April,17,22,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,E,2,No Deposit,175.0,179.0,0,Transient,202.59,0,1,Check-Out,Mariah Brown,vickie83@example.com,+1-201-692-3839x7306,340121759544599,2026-02-20 +City Hotel,1,44,2017,August,33,17,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,61,Transient,84.07,0,0,Canceled,George Hall,yangcasey@example.org,001-680-830-3717x45512,630493722460,2024-09-02 +City Hotel,0,85,2017,June,23,9,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.06,0,0,Check-Out,Kari Simmons,jeffreygray@example.net,455.371.3959,374678675664925,2024-04-03 +Resort Hotel,1,43,2017,June,24,13,2,5,2,2.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,10.0,179.0,0,Transient,117.25,0,0,Canceled,Rebecca Dean,justin34@example.com,001-713-725-0896x8001,30036314406529,2025-08-27 +City Hotel,1,19,2017,June,23,4,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.67,0,1,Canceled,Taylor Morales,jeremy34@example.net,(462)784-3713,577956231903,2025-06-03 +City Hotel,0,170,2017,March,11,15,0,1,1,1.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.31,0,1,Check-Out,Laura Davila,russellbender@example.net,643-311-2132x237,4992228409251351,2026-02-13 +City Hotel,1,163,2017,February,9,25,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,133.58,0,0,Canceled,Tammy Werner,lisa66@example.net,+1-342-778-3186x984,4087225001032326,2025-02-12 +Resort Hotel,0,318,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,42.22,0,0,Check-Out,William Wood,rodriguezmark@example.com,+1-483-698-0366,6011071636822780,2025-06-09 +City Hotel,1,271,2017,February,6,10,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,107.05,0,3,Canceled,Sherry Miller,ehart@example.com,001-662-473-9400x35463,503810926165,2024-05-26 +City Hotel,0,188,2017,January,4,22,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,183.83,1,1,Check-Out,Danielle Mcconnell,carlsonpatrick@example.net,+1-834-843-3033x74308,3596847204240566,2024-06-12 +City Hotel,0,0,2017,July,27,4,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,11.0,208.0,0,Transient-Party,43.84,0,0,Check-Out,Jason Garcia,woodwilliam@example.com,398.650.0774x5451,6011376169272521,2025-04-27 +Resort Hotel,0,0,2017,June,23,8,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,347.0,179.0,0,Transient,53.41,0,0,Check-Out,Laura Spence,xjohnson@example.net,001-514-523-3602x12814,4379644528779911,2024-12-17 +Resort Hotel,0,0,2017,June,24,10,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,205.68,0,1,Canceled,Phillip Herman,ruizamy@example.net,001-680-296-3420x988,4764338254326909622,2025-09-22 +City Hotel,0,15,2017,July,27,6,2,5,2,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,142.04,0,1,Check-Out,Patricia Atkinson,scastaneda@example.net,001-675-991-6992x81701,3524142680566511,2024-12-01 +Resort Hotel,1,232,2017,September,36,3,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,44.68,0,0,Canceled,David Ayers,cperez@example.com,718.278.3096,6502727870285465,2026-03-27 +City Hotel,0,78,2017,August,35,30,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient,111.33,0,2,Check-Out,Bryan Martin II,hernandezcarmen@example.net,+1-556-245-4921x45158,4160990522680,2025-07-05 +City Hotel,0,58,2017,November,47,21,0,2,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,100.62,1,1,Check-Out,Cory Guerrero,shirleyorr@example.org,(819)258-8850x4274,4081981192392,2025-02-15 +City Hotel,0,56,2017,March,10,8,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,133.5,0,2,Check-Out,Jared Smith,rodriguezbriana@example.net,001-423-323-7273,2269465950227840,2025-09-07 +City Hotel,1,58,2017,January,2,11,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,108.14,0,0,Canceled,Jon Day Jr.,lweber@example.com,(961)651-2123,4798568478580792,2025-02-01 +Resort Hotel,0,41,2017,January,2,6,2,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,291.0,179.0,75,Transient-Party,101.53,0,0,Check-Out,Hannah Perez MD,ylarsen@example.org,001-982-719-8837,4719996732367308,2024-07-20 +City Hotel,0,10,2017,July,28,10,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,132.0,179.0,0,Transient,47.88,0,2,Check-Out,Mary Church,alvareznancy@example.net,(293)250-1677x10768,6591738869336955,2025-12-03 +City Hotel,1,111,2017,January,2,5,2,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,13.0,179.0,0,Transient,213.03,0,0,Check-Out,Gavin Howell,ledwards@example.net,001-279-774-7747x5823,503878171894,2024-06-02 +City Hotel,1,0,2017,January,3,16,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,95.52,0,0,Check-Out,Linda Jones,james86@example.net,001-615-305-7161x9435,378865338037146,2024-10-09 +Resort Hotel,0,14,2017,September,36,2,1,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,45.25,0,1,Check-Out,John Clark,margaret38@example.org,(213)500-2205,4696888755543559,2026-02-23 +City Hotel,0,4,2017,March,10,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.39,0,1,Check-Out,Edward White,randrade@example.org,916-600-0072,2674158995115455,2025-03-08 +Resort Hotel,0,86,2017,November,46,18,4,7,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,128.68,0,2,Check-Out,Zachary Hill,nathaniel95@example.com,780-829-7114x07100,4784198870974918,2024-08-30 +Resort Hotel,0,18,2017,October,40,6,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,131.0,179.0,0,Contract,62.04,1,0,Check-Out,Joshua Smith,egonzalez@example.com,561.336.2270x6672,4553147422675564219,2026-03-06 +City Hotel,0,58,2017,May,19,9,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,65.43,0,0,Check-Out,Jeffrey Wallace,klove@example.net,390-580-9112x01671,4786068550752942,2025-06-27 +Resort Hotel,1,5,2017,August,32,9,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,79.0,179.0,0,Contract,105.36,0,0,Canceled,Jennifer Anderson,hday@example.org,(909)474-2496x699,3510849272562767,2024-10-01 +City Hotel,0,144,2017,April,17,23,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,143.56,0,0,Check-Out,William Leblanc,sarah13@example.net,235-232-1526,349122352637989,2025-12-01 +City Hotel,1,36,2017,April,14,4,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,179.4,0,2,Canceled,Melissa Ruiz,martinezkristine@example.org,+1-782-628-1959x4127,4599345905613,2024-12-05 +City Hotel,1,158,2017,December,52,23,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,134.85,0,1,Canceled,Richard Franklin,kristasalas@example.com,393-376-7540x79974,3523072019076513,2025-08-29 +City Hotel,0,20,2017,July,30,24,1,4,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,81.29,0,0,Check-Out,Lori Madden,brookedavis@example.net,836-276-1489,3571688598230642,2026-03-06 +City Hotel,0,25,2017,June,25,23,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,45.0,0,Transient-Party,51.5,0,0,Check-Out,Sarah Proctor,kimberly73@example.net,+1-715-823-3289,4965301453917816297,2024-04-17 +City Hotel,1,15,2017,October,42,20,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,72.55,0,1,Canceled,Michael Woodward,dlong@example.net,944-276-5632x6415,4610704786883955838,2024-12-01 +City Hotel,0,76,2017,December,2,30,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,39.0,193.0,0,Transient,64.75,0,0,Check-Out,Joshua Reed,arichardson@example.com,3695387957,373287721168310,2026-01-20 +City Hotel,0,67,2017,May,19,8,0,2,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,E,A,1,No Deposit,14.0,179.0,0,Transient,130.52,0,0,Check-Out,James Bonilla,yrodriguez@example.org,+1-405-816-3359x812,374949302262973,2024-04-12 +City Hotel,0,17,2017,January,4,23,2,1,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,136.3,0,1,Check-Out,Robert Grant,okelly@example.com,001-977-210-8800,3514621726454008,2025-05-09 +Resort Hotel,0,12,2017,November,47,25,1,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,124.55,1,0,Check-Out,Aaron Reed,carpenterdaniel@example.net,(422)235-8356,2563914963221939,2024-04-10 +City Hotel,1,18,2017,September,37,13,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,12.0,75.0,0,Transient,38.08,0,0,Canceled,Monica Morton,wbarton@example.org,221-903-9816x549,6589771554242026,2025-09-25 +City Hotel,0,414,2017,June,26,25,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,107.76,0,0,Check-Out,Russell Green,laraleslie@example.org,586.953.9354x2341,374769556468294,2025-11-16 +City Hotel,0,51,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,222.0,0,Transient-Party,61.6,0,2,Check-Out,Lisa Caldwell,lori06@example.org,338.779.5256x5609,4480829314087,2025-07-29 +City Hotel,1,99,2017,February,9,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,65,Transient,104.53,0,0,Canceled,Melvin Weeks,davidchapman@example.com,+1-337-331-4719,30477391019977,2024-10-16 +City Hotel,0,26,2017,June,25,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,240.0,0,Transient-Party,61.92,0,0,Check-Out,John Kennedy,ryanperry@example.com,(981)476-2669,3552992859778783,2025-06-16 +City Hotel,0,15,2017,December,50,9,2,5,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.17,0,2,Check-Out,Adam Sanchez,xmartin@example.com,+1-933-536-3920x3847,30322553824253,2026-02-27 +Resort Hotel,1,46,2017,March,10,9,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,64.49,0,2,Canceled,Alexandria Collins,jasonpacheco@example.org,001-370-762-5428,3506366924259615,2024-09-02 +City Hotel,0,94,2017,April,15,9,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Contract,247.99,0,0,Check-Out,Autumn Hill,fnielsen@example.org,5977417700,2439422289512132,2024-06-04 +City Hotel,0,0,2017,June,24,11,1,1,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,104.67,0,0,Check-Out,Philip Munoz,cunninghamlaura@example.org,425.827.4084,4701917700280604,2024-06-25 +City Hotel,0,20,2017,November,45,4,0,2,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,146.66,0,1,Check-Out,Kimberly Thompson,james98@example.org,786-733-3666,213188324751557,2024-12-27 +City Hotel,1,35,2017,January,3,18,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,E,0,Non Refund,273.0,179.0,18,Transient,111.97,0,0,Canceled,Allison Clark,paigewilliams@example.com,(811)957-7862x5533,4983406650184502,2025-02-19 +Resort Hotel,0,18,2017,November,46,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,220.0,0,Transient-Party,78.39,0,0,Check-Out,Randy Wang,dmoore@example.org,7929812968,3595501337217170,2025-09-20 +Resort Hotel,0,150,2017,December,50,10,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,252.0,1,3,Check-Out,Amanda Palmer,tammy91@example.net,898-986-7557x01703,4057937414664615140,2025-08-06 +Resort Hotel,0,3,2017,April,15,6,4,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,E,0,No Deposit,250.0,179.0,0,Transient,137.2,0,3,Check-Out,Kimberly Ross,jennifer70@example.org,910.580.9947,213129284056546,2026-01-28 +City Hotel,0,10,2017,August,31,2,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,E,0,No Deposit,1.0,179.0,64,Transient-Party,63.62,0,0,Check-Out,Lori Steele,christinearroyo@example.org,(423)354-6134,676113346610,2024-05-07 +City Hotel,0,46,2017,December,49,5,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.08,0,0,Check-Out,Jeremy Fernandez,gina41@example.com,(581)904-0426,180039584426639,2025-07-14 +City Hotel,0,85,2017,December,49,3,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.4,0,2,Check-Out,Frank Franklin,paul71@example.com,725.367.2492x9285,4947359326602040,2026-01-17 +City Hotel,0,153,2017,November,47,20,1,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,61.52,0,1,Check-Out,Wesley Reyes,smithdanielle@example.net,+1-850-675-6120x47686,630499758906,2025-09-01 +Resort Hotel,0,155,2017,May,21,22,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,326.0,179.0,0,Transient,89.1,0,0,Check-Out,Michelle Clark,kreed@example.net,001-858-890-1377,2284337302922314,2025-03-21 +Resort Hotel,0,0,2017,July,29,18,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,240.0,179.0,0,Transient,53.91,0,1,Check-Out,David Le,rebecca00@example.com,604-899-3289x262,3591283135831197,2026-01-27 +City Hotel,0,15,2017,December,51,18,1,2,1,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.51,0,1,Check-Out,Anthony Lee,nicholas86@example.net,3127340099,6513164340874784,2024-05-24 +Resort Hotel,0,16,2017,November,44,1,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,187.0,179.0,0,Transient,82.24,0,0,Check-Out,Mrs. Sarah Gordon,christine22@example.org,3286266218,3561437864084081,2025-02-06 +City Hotel,0,1,2017,December,48,1,1,0,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,D,D,1,No Deposit,9.0,66.0,0,Transient,113.44,0,1,Check-Out,Amy Mack,smithpaul@example.com,+1-543-648-2564x99710,4389942155709,2024-05-15 +City Hotel,1,350,2017,March,13,29,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,104.72,0,0,Canceled,Andrew Cortez,tlucas@example.net,506.708.5292,4703297046638,2024-05-09 +City Hotel,0,136,2017,January,5,31,2,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,79.0,179.0,0,Transient,98.02,0,1,Check-Out,Karen Novak,phillipsderek@example.org,(991)316-6792,4456172431157,2024-09-29 +Resort Hotel,0,28,2017,July,30,26,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,41.65,1,1,Check-Out,Amanda Shelton,romeroshelby@example.org,001-259-514-1296,30508040151298,2025-11-12 +City Hotel,1,17,2017,October,42,14,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.13,0,0,Canceled,Michael Davis,sierra06@example.net,524-541-0115x448,2640288151504993,2024-06-01 +City Hotel,0,49,2017,May,19,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,129.1,0,2,Check-Out,Samantha Soto,lcharles@example.org,(302)204-7707,36769310751167,2024-08-12 +City Hotel,1,99,2017,October,42,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.45,0,1,Canceled,Sharon Miller,ujohnson@example.com,(579)403-9853x7798,630430358501,2025-10-30 +Resort Hotel,0,1,2017,January,2,4,4,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,245.0,179.0,0,Transient,137.33,0,0,Check-Out,Scott Thomas,ewarren@example.net,337-606-0362,4001752344188,2024-05-21 +Resort Hotel,0,38,2017,April,14,8,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,C,2,No Deposit,244.0,179.0,0,Transient,97.0,0,1,Check-Out,Brett Rogers,haleylinda@example.net,798.905.2922x9549,3504310335511620,2025-05-14 +City Hotel,0,304,2017,May,21,27,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,E,0,No Deposit,1.0,179.0,0,Transient-Party,66.36,0,0,Check-Out,George Williams,lloydcheryl@example.org,635.762.3932,4942713330891152,2025-09-08 +City Hotel,0,48,2017,April,16,14,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,138.07,1,0,Check-Out,James Lopez,millerryan@example.org,366.938.7221,5266093995592519,2025-03-27 +Resort Hotel,0,18,2017,February,9,27,2,4,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,102.91,0,1,Check-Out,Kirk Powell,joebaker@example.net,609-683-0758x331,4924448591346288173,2025-02-02 +Resort Hotel,0,253,2017,November,48,29,1,4,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,13.0,221.0,0,Transient-Party,39.52,0,0,Check-Out,Jesse Sutton,william65@example.net,(764)560-5909x522,4807746869146873,2024-06-22 +City Hotel,0,20,2017,June,23,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,100.24,0,1,Check-Out,Bridget Edwards DDS,adkinsemily@example.net,770.863.0938x08957,6011777230966977,2024-09-18 +City Hotel,0,52,2017,June,26,29,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,67,Transient-Party,78.24,0,0,Check-Out,Adam Woods,russellrobert@example.net,502.827.0394x5964,346580534051721,2024-10-28 +City Hotel,0,14,2017,May,20,14,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,121.83,0,1,Check-Out,Michael Phillips,deckerrobert@example.com,+1-346-407-8935x4258,4073191567322053,2024-04-10 +City Hotel,0,169,2017,January,2,4,0,2,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,110.8,0,1,Canceled,Tina Brown,garymoyer@example.org,9828132913,5105295397179010,2025-08-31 +City Hotel,0,24,2017,March,13,26,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.42,0,2,Check-Out,Stephanie Barton,rboyer@example.org,8878098501,6011488728167819,2025-12-21 +City Hotel,1,128,2017,February,6,6,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,223.73,0,2,Check-Out,Stephanie Miller,craighodge@example.net,334-280-8908x3105,4107135101181566,2024-12-09 +Resort Hotel,1,253,2017,March,12,23,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,245.0,179.0,0,Transient,110.8,0,2,No-Show,Donna Reese,angel96@example.org,351-910-6100,4603538035803651,2025-04-25 +City Hotel,1,41,2017,June,23,5,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,87.36,0,0,Canceled,Laura Daniel,todd34@example.net,(660)549-1913x21545,4069079436078,2024-09-09 +City Hotel,0,44,2017,October,41,10,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,1,D,D,0,No Deposit,37.0,331.0,0,Transient,0.0,0,1,Check-Out,Jennifer Sparks,nealrandy@example.net,655.473.1221,3591659410478798,2024-05-11 +City Hotel,1,15,2017,December,52,25,0,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.01,0,1,Canceled,Yolanda Anderson,jordanwallace@example.org,(225)414-0881,6011402121388245,2025-04-13 +City Hotel,0,78,2017,January,3,16,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,167.88,0,2,Check-Out,David Warner,tknight@example.org,+1-378-957-4215x920,4752113438915426,2024-08-01 +City Hotel,1,28,2017,April,15,11,1,1,2,2.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,171.86,0,1,Canceled,Tammy Cox,larry17@example.com,264-376-4255x07165,4810944710671638,2024-06-09 +City Hotel,1,53,2017,January,4,20,1,3,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,50.45,0,0,Canceled,Brenda Cruz,ypatterson@example.org,001-705-886-7058x0941,376289043147821,2024-10-15 +Resort Hotel,0,19,2017,September,39,26,2,5,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,274.0,179.0,0,Contract,81.3,0,1,Check-Out,Elizabeth Anderson,olopez@example.org,870-918-6650,3507583898984379,2024-05-18 +City Hotel,1,401,2017,April,14,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,84.39,0,0,Canceled,Mr. Jerry Robinson,brandywhite@example.com,+1-636-590-1453x5916,38386328183305,2025-05-26 +City Hotel,0,20,2017,December,52,27,0,1,2,1.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Transient-Party,113.8,1,0,Check-Out,James Rivera,wilsonemma@example.net,+1-421-619-8630x85629,373778044377802,2025-08-24 +City Hotel,1,167,2017,February,9,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,88.58,0,0,Canceled,Jennifer Williams,fpatrick@example.org,(436)588-2615,375012217835240,2025-07-08 +Resort Hotel,0,11,2017,April,14,8,1,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,180.0,179.0,0,Transient-Party,209.36,0,0,Check-Out,Jeffrey Smith,dennisgarcia@example.com,001-734-230-1201x284,4509311863696,2026-02-24 +City Hotel,1,92,2017,October,41,13,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,64,Transient,84.55,0,0,No-Show,Nicholas Eaton,beltranstephen@example.com,917.672.8592x09252,346589210300641,2025-06-19 +City Hotel,1,40,2017,January,5,31,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,139.97,0,0,Canceled,Mark Adams,sgregory@example.com,(345)333-6280,2257217252747155,2026-02-22 +City Hotel,0,5,2017,November,46,11,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,40.55,0,1,Check-Out,Joshua Martinez,danielchristine@example.net,(346)677-4337x756,3537645410448557,2025-08-28 +Resort Hotel,0,50,2017,June,24,14,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Contract,55.04,0,1,Check-Out,Laurie Vargas,sarahbrown@example.org,001-222-601-8290,3575971040275605,2025-12-03 +City Hotel,0,13,2017,February,8,18,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,149.91,0,2,Check-Out,Amy Yang DDS,matthew81@example.com,(282)990-9160x73974,4760497921662953,2025-08-18 +Resort Hotel,0,154,2017,October,43,24,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,42.01,0,0,Check-Out,Chad Franklin,mmonroe@example.org,(520)592-8824x0307,676225783379,2024-07-15 +Resort Hotel,1,161,2017,January,3,20,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,223.0,0,Transient-Party,60.68,0,0,Canceled,Michael Saunders,alecanderson@example.org,387.831.6776x21058,180065603781191,2024-04-03 +City Hotel,1,305,2017,May,20,13,1,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,68.29,0,0,Canceled,Jacob Mcdonald,benjaminmichael@example.org,+1-887-607-0721x63520,4625504982361097,2024-12-14 +Resort Hotel,0,125,2017,November,48,26,0,5,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient-Party,68.54,1,3,Check-Out,Crystal Rodriguez,ernest31@example.org,+1-677-486-3401,4566532481383446,2025-01-22 +City Hotel,0,64,2017,April,18,28,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,136.53,1,3,Check-Out,Chelsea Long,wwiley@example.com,001-612-575-3233x985,4577224878996025,2026-03-25 +City Hotel,0,51,2017,May,22,27,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient-Party,134.67,0,1,Check-Out,Mitchell Jordan,llivingston@example.com,360.211.4097x127,4113743355883977,2025-05-08 +City Hotel,0,0,2017,June,24,13,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,99.73,0,2,Check-Out,Walter Bailey,mooreperry@example.com,230.826.5582x41408,6519189332153560,2024-10-22 +Resort Hotel,1,0,2017,April,18,29,0,4,1,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,52.83,0,1,Canceled,Katherine Phillips,lyonssusan@example.net,(277)809-4933,2718972169412078,2025-09-27 +City Hotel,0,9,2017,August,35,27,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,50.16,0,0,Check-Out,Robert Jarvis,david19@example.com,001-215-431-1247x44343,060464539968,2025-09-02 +Resort Hotel,1,14,2017,March,13,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,128.7,1,1,Canceled,Breanna Flores,erikbaker@example.org,(314)621-8514x4419,639049940864,2026-03-24 +City Hotel,0,143,2017,January,3,15,1,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,109.49,0,2,Check-Out,Tonya Campbell,jonathan40@example.net,687.935.3042x2824,060464809064,2025-04-16 +Resort Hotel,0,0,2017,April,14,5,1,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,C,0,No Deposit,18.0,179.0,0,Transient,252.0,1,0,Check-Out,Gary Palmer,freynolds@example.com,(850)829-4624,4878029374285898,2025-01-03 +Resort Hotel,0,0,2017,October,40,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,47.25,0,0,Check-Out,Alan Hoffman,heathertaylor@example.net,208-507-6156,4505956717837350,2025-04-18 +City Hotel,1,173,2017,February,9,29,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,147.37,0,0,Canceled,Linda Bailey,swilcox@example.net,001-583-241-4504x360,30467711619184,2024-05-12 +Resort Hotel,0,43,2017,April,16,18,2,10,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,113.16,0,1,Check-Out,Daniel Mercado,lori61@example.net,207.545.9780,4278809037958817,2025-03-28 +City Hotel,0,2,2017,April,15,10,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,K,0,No Deposit,10.0,45.0,0,Transient,1.28,0,1,Check-Out,Pamela Sanders,kaitlyncastro@example.com,476.743.1715x052,4905473439545950341,2025-03-26 +City Hotel,1,205,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Contract,110.64,0,1,Canceled,Sean Harper,haley14@example.org,3542726097,3592706469174403,2025-05-04 +Resort Hotel,0,48,2017,June,24,13,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,75.0,179.0,0,Transient,102.28,0,0,Check-Out,Brittany Snyder,lindapope@example.net,+1-878-441-4770,344356307009416,2025-01-23 +City Hotel,0,2,2017,August,35,27,2,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,E,2,No Deposit,16.0,179.0,0,Transient,1.35,1,1,Check-Out,Ethan Russell Jr.,wjackson@example.com,(715)681-1232x23644,2233647401999944,2024-05-07 +City Hotel,1,161,2017,April,14,2,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,10.0,179.0,0,Contract,252.0,0,3,Canceled,Jennifer Cochran,chanchris@example.org,+1-777-482-3012x353,4442978100265155917,2025-09-27 +Resort Hotel,0,30,2017,August,32,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,53.81,0,2,Check-Out,Emily Henderson,rosebenjamin@example.com,792-214-9514x827,4652195630681741,2026-03-04 +City Hotel,1,35,2017,January,4,23,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,178.97,0,0,Canceled,Edward Shields,mortonshannon@example.net,(441)608-8643x04967,4669099027557,2024-08-15 +City Hotel,0,1,2017,May,19,11,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,11.0,156.0,0,Transient,88.18,0,0,Check-Out,Javier Dorsey,foxsamantha@example.org,(320)602-2559,4183479388486422,2025-12-14 +Resort Hotel,0,92,2017,April,15,7,0,1,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,131.61,0,3,Check-Out,Craig Marsh,jeffrey84@example.com,(627)794-4446x85175,4433032913497089,2025-12-26 +City Hotel,0,3,2017,May,22,27,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,50.4,0,1,Check-Out,Jonathan Johnson,edwardbaker@example.org,001-566-567-4334,30264998514273,2025-05-20 +Resort Hotel,1,13,2017,June,23,2,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,E,0,No Deposit,249.0,179.0,0,Transient,130.64,0,2,No-Show,Cristian Smith,steven36@example.com,397.960.9812x97752,213133385259850,2024-07-18 +Resort Hotel,1,251,2017,March,13,26,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,96.6,0,0,Canceled,Michael Walters,betty57@example.org,(726)966-8585x926,4442641746527644960,2025-11-01 +City Hotel,1,101,2017,June,26,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,63.43,0,0,Canceled,Jonathan Davis,yluna@example.com,+1-621-381-7216x02766,180092807356737,2025-10-24 +City Hotel,0,249,2017,April,14,4,2,5,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,223.38,0,0,Check-Out,Gregory Alexander,carolynlyons@example.net,7052852683,180023834288015,2024-12-13 +City Hotel,0,403,2017,May,21,24,1,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,80.71,0,0,Check-Out,Carl Scott,vreese@example.net,001-571-510-9983x795,2408868964764298,2024-04-07 +City Hotel,1,97,2017,February,9,29,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.58,0,0,Canceled,David Nguyen,mosleypamela@example.org,587.256.2479x458,343215675443105,2024-11-24 +City Hotel,0,134,2017,February,6,7,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,133.9,0,2,Check-Out,Derek Mckinney,fthomas@example.net,542.941.7419x09936,2264631035491843,2025-03-24 +Resort Hotel,0,86,2017,November,45,11,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,221.0,0,Transient-Party,39.28,0,0,Check-Out,Monique Diaz,timothywhite@example.com,(713)333-8198x00778,4701745627579593061,2024-12-22 +Resort Hotel,1,39,2017,April,17,25,3,7,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,17.0,179.0,0,Transient,196.0,0,0,Canceled,Robert Benson,reyeschristopher@example.net,860-208-7770x92049,3582854464015882,2025-10-05 +City Hotel,0,0,2017,April,14,7,2,0,3,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,115.48,0,1,Check-Out,Mrs. Amy Sharp,fwhite@example.org,+1-724-640-1128x282,5133041352963915,2024-06-15 +City Hotel,0,1,2017,March,10,9,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,86.64,0,0,Check-Out,Timothy Miller,dustincarter@example.org,(753)828-3567,3544951248570823,2025-10-27 +Resort Hotel,0,39,2017,January,4,22,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,D,0,No Deposit,40.0,179.0,0,Transient,65.88,1,0,Check-Out,Kelly Johnston,robertdavis@example.net,+1-945-221-0805x427,213167593874480,2026-03-16 +Resort Hotel,1,95,2017,April,15,13,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,B,0,No Deposit,15.0,179.0,0,Transient-Party,46.12,0,2,Canceled,Vincent Zuniga,alexanderclark@example.org,001-745-496-7516x00459,378566034794119,2024-09-20 +Resort Hotel,0,150,2017,March,10,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,84.09,0,0,Check-Out,Jennifer Lewis,durantamara@example.net,410.850.0265x949,2710258648417856,2025-04-27 +Resort Hotel,0,8,2017,September,36,5,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Check-Out,Stephen Spencer,torresjeremy@example.org,876.826.9682x6997,379021973481921,2026-01-28 +Resort Hotel,1,108,2017,March,11,9,2,7,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,143.55,0,0,Canceled,Frank Lawson,amandadecker@example.com,534.755.5793x58520,3576221178390696,2025-07-01 +City Hotel,1,14,2017,March,11,11,2,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,219.23,0,2,Canceled,Michael Stevens,caseylaurie@example.org,(692)648-9034x007,3543947750942252,2024-10-19 +City Hotel,0,21,2017,June,24,15,1,1,3,0.0,0,BB,NLD,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.36,0,0,Check-Out,Adriana Parks,byrdjasmine@example.net,6009672865,30062152673004,2025-12-22 +Resort Hotel,1,4,2017,January,3,15,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,211.0,179.0,0,Transient,137.76,0,1,Canceled,Cody Sanchez,jerryolson@example.org,+1-609-656-4931x904,30119207794365,2024-08-20 +City Hotel,0,25,2017,January,4,25,2,1,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,Karen Wells,hallsteven@example.net,+1-305-650-0103x4393,3559100877719697,2024-06-14 +City Hotel,0,13,2017,December,50,9,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,147.69,0,1,Check-Out,Kimberly Sanchez,hvelasquez@example.com,659-681-0413,4285370817846290882,2026-02-25 +Resort Hotel,0,4,2017,April,16,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,252.0,1,1,Check-Out,Martin Elliott,vjones@example.org,846.783.3298x877,213118513216880,2025-05-27 +City Hotel,1,25,2017,May,21,22,0,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.83,0,0,Canceled,Larry Reynolds,donald38@example.com,727-585-5133x423,180047807611028,2024-12-04 +City Hotel,0,41,2017,November,47,22,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.02,0,1,Check-Out,Colton Roth,bgordon@example.net,001-311-341-0063x828,375414408172419,2025-01-29 +Resort Hotel,1,419,2017,January,5,29,1,3,2,0.0,0,BB,CN,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,221.0,0,Transient-Party,93.83,0,0,Canceled,Lindsey Mendoza,smithsheena@example.net,+1-336-835-8612x668,3553425523963928,2026-01-20 +City Hotel,0,4,2017,August,31,5,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,100.53,1,1,Check-Out,Brandi Cunningham,sjensen@example.org,280.344.6340x7141,3564555196693696,2024-05-08 +Resort Hotel,1,11,2017,June,23,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,54.92,0,0,Canceled,Donna Williams,vwalter@example.org,597-748-9169x7605,4246728705083,2026-01-15 +Resort Hotel,0,109,2017,December,50,9,2,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,G,1,No Deposit,242.0,179.0,0,Transient,164.05,0,2,Check-Out,Tammy Morris,xmoreno@example.org,890.590.8616,30227453385109,2024-08-06 +City Hotel,1,202,2017,February,9,26,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,134.67,0,0,Canceled,Robin Donovan,john99@example.org,949.788.4368,213161616569029,2024-11-10 +Resort Hotel,0,53,2017,April,18,27,0,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,244.0,179.0,0,Transient,214.9,0,2,Check-Out,Julia Williamson,rosemorris@example.com,(936)497-6493x9996,2259845031660766,2024-09-19 +City Hotel,0,140,2017,February,7,15,2,5,1,0.0,0,BB,CHE,Online TA,GDS,0,0,0,D,D,0,No Deposit,187.0,179.0,0,Transient,187.31,0,0,Check-Out,Chelsea Martin,perezmichelle@example.com,243-291-0389,4292202363622763,2025-11-29 +City Hotel,0,2,2017,August,31,5,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,David Fitzpatrick,john51@example.net,(444)472-0374x974,6011847335015085,2024-09-10 +Resort Hotel,0,0,2017,August,33,14,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,E,1,No Deposit,245.0,179.0,0,Transient,37.87,0,1,Check-Out,Nathan Dillon,johnny23@example.org,+1-622-489-2990x5828,30050441454344,2025-11-13 +City Hotel,0,92,2017,May,18,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.72,0,0,Check-Out,Amber Allen,jonathan25@example.net,+1-983-490-3346x6238,4148790503439482,2025-09-12 +City Hotel,0,60,2017,December,52,25,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.36,0,1,Check-Out,Kenneth King,laura10@example.net,+1-510-350-0382x776,4287790613650250,2024-11-05 +City Hotel,0,100,2017,December,52,27,1,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,92.47,0,0,Check-Out,Ana Jensen MD,cynthiagarcia@example.org,+1-233-274-9569x86972,180009732348571,2024-06-01 +Resort Hotel,0,74,2017,January,2,2,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,127.0,179.0,0,Transient,79.39,0,1,Check-Out,Kelli Carter,mcclainelizabeth@example.com,(705)317-2780x42923,180084310509944,2024-07-12 +City Hotel,0,13,2017,July,29,21,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.2,0,2,Check-Out,Edward Keller,john59@example.net,001-244-634-3827x076,3502017693447360,2026-02-20 +City Hotel,1,54,2017,November,45,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,87.1,0,2,Canceled,Kelly Preston,zmitchell@example.net,536.423.0973x97854,4746216213090569,2025-02-03 +Resort Hotel,0,23,2017,October,43,24,2,2,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,167.0,179.0,0,Transient,61.37,1,0,Check-Out,Michael Rivera,hansenshane@example.org,(790)624-5911x50335,501893717113,2025-11-06 +Resort Hotel,1,8,2017,December,2,30,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,103.83,0,0,Canceled,Bradley Cameron,john77@example.com,781.688.2562x5402,3563877497695167,2025-05-08 +Resort Hotel,0,2,2017,November,46,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,42.94,0,0,Check-Out,Beth Price,sonyablake@example.net,+1-983-248-6812,4848795930005,2024-09-07 +Resort Hotel,0,0,2017,July,27,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,44.98,0,1,Check-Out,Jessica Graham,garnerlaura@example.net,455.399.9716x308,4706721532044054,2026-03-13 +Resort Hotel,0,172,2017,November,48,30,2,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,222.0,0,Transient-Party,69.45,0,0,Check-Out,Lisa Harris,miguelanderson@example.com,703-415-0995x24894,4203281550114176787,2025-09-23 +City Hotel,0,265,2017,April,14,3,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,127.62,0,1,Canceled,Becky Smith,mortonjennifer@example.org,(766)776-9660,4657270373100335,2024-11-30 +City Hotel,0,90,2017,May,19,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,67.43,0,1,Check-Out,Rachel Rollins,mcguireedward@example.net,(402)768-7076x201,213193109647384,2024-07-12 +City Hotel,1,137,2017,October,42,20,0,4,1,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,109.39,0,0,Canceled,Christopher Ayala,sscott@example.com,001-458-810-7128,4950470662165189,2025-07-05 +City Hotel,1,443,2017,January,2,8,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,97.56,0,0,Canceled,Mario Maxwell,christophercastro@example.org,913-864-2121,4622657591654,2025-01-11 +Resort Hotel,0,277,2017,November,46,14,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,1,Refundable,13.0,222.0,0,Transient-Party,81.81,0,0,Check-Out,Katherine Mcdonald,erica16@example.com,9919595312,6522782099245622,2025-11-30 +Resort Hotel,0,6,2017,June,23,9,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,50.87,0,0,Check-Out,Todd Perry,reevesandrew@example.org,(477)394-5318x031,4088020855232554,2025-01-10 +Resort Hotel,0,17,2017,June,26,27,0,2,1,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,E,E,2,No Deposit,299.0,179.0,0,Transient-Party,80.82,0,1,Check-Out,Melissa Johnson,rebecca51@example.net,(202)895-3952,5104032947747819,2025-07-29 +City Hotel,0,7,2017,May,20,15,1,2,1,0.0,0,BB,IRL,Online TA,GDS,0,0,0,A,A,1,No Deposit,171.0,179.0,0,Transient,114.36,0,0,Check-Out,Timothy Blair,kroberts@example.org,238-385-6459x4673,4652041269793938,2025-10-15 +City Hotel,0,0,2017,April,14,5,0,3,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,51.03,0,2,Check-Out,Robert Smith,karajames@example.com,8568117852,4565173589290871160,2024-10-28 +City Hotel,0,49,2017,August,31,2,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.84,0,1,Check-Out,Amy Gray,hornshirley@example.org,236-491-1888x636,3556786949983932,2025-10-12 +City Hotel,1,190,2017,March,10,5,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,A,0,No Deposit,12.0,179.0,0,Transient,123.36,0,0,Canceled,Lucas Jackson,mendozajoseph@example.net,+1-498-706-2967x2119,378598463585890,2025-01-19 +City Hotel,0,36,2017,November,48,25,1,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,89.64,0,2,Check-Out,Elizabeth Mccoy,frank52@example.com,(877)647-4849,349228342826754,2025-12-13 +City Hotel,0,1,2017,January,4,22,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.19,0,0,Check-Out,Roger Bowman,dbridges@example.org,001-931-513-5011x74733,4379812636920,2025-10-15 +Resort Hotel,0,1,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,15.0,68.0,0,Transient,51.06,0,1,Check-Out,Elizabeth Brown,bryanespinoza@example.net,001-812-574-7895,370282510515154,2024-12-26 +City Hotel,0,0,2017,November,48,26,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,75.72,0,0,Check-Out,Debra Leonard,mallory73@example.net,532-903-6252,4522583056337,2024-12-21 +City Hotel,0,37,2017,April,15,10,1,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,134.74,0,0,Check-Out,Kara Blake,townsendtimothy@example.org,282.810.2397x29991,30236446971362,2024-05-29 +City Hotel,0,93,2017,March,10,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.62,0,3,Check-Out,Jessica Fisher,amanda98@example.org,+1-558-491-3177x503,4704100222750915870,2025-11-16 +Resort Hotel,0,143,2017,December,50,12,2,3,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.64,0,1,Check-Out,Timothy Wilkinson,jessicastuart@example.com,(846)870-4183x4900,567054883614,2026-01-20 +City Hotel,0,163,2017,March,12,20,2,3,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,131.96,0,0,Check-Out,Christopher Cameron,ruth13@example.org,+1-269-466-2672x06426,3557503384963793,2025-01-13 +Resort Hotel,1,240,2017,September,39,24,1,4,2,0.0,0,HB,GBR,Offline TA/TO,Corporate,0,0,0,A,D,0,Non Refund,179.0,179.0,0,Transient,108.16,0,0,Canceled,Jared Ballard,chadbaldwin@example.com,001-823-994-1479x1132,502093812019,2026-02-03 +City Hotel,0,5,2017,April,16,15,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,252.0,0,3,Check-Out,Heather Bradford,rebecca32@example.org,600.987.8274,4155372050755,2024-05-15 +City Hotel,0,42,2017,May,18,5,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.64,0,0,Check-Out,Jennifer Moses,joshuabradley@example.com,283.313.9016,564422497839,2024-07-03 +City Hotel,1,86,2017,December,51,19,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.68,0,0,Canceled,Jason Jones,david97@example.net,+1-305-581-8730x6272,30543221421277,2025-03-30 +City Hotel,0,0,2017,March,13,26,1,1,1,0.0,0,BB,PRT,Direct,Direct,1,1,1,A,B,0,No Deposit,15.0,179.0,0,Transient,3.57,1,0,Check-Out,Debra Larson,dianecrawford@example.com,2455221451,4603458273622665,2025-10-12 +Resort Hotel,0,45,2017,April,17,24,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,201.81,1,1,Check-Out,Christine Mills,whogan@example.org,3127799965,3507793741999462,2024-11-12 +City Hotel,0,191,2017,December,51,17,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,45.7,0,0,Check-Out,Kevin Carrillo,jerry97@example.org,325.847.0015,3550370058176707,2024-09-21 +Resort Hotel,0,177,2017,June,24,12,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,178.0,179.0,0,Group,76.61,0,1,Check-Out,Nicole Roberson,donald16@example.net,(497)414-6798,676350586829,2025-10-26 +Resort Hotel,0,147,2017,December,49,8,0,2,3,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,133.39,0,0,Check-Out,Sarah George,sstewart@example.com,494-249-7632,38499236721650,2025-05-05 +City Hotel,0,115,2017,March,12,23,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,107.9,0,0,Check-Out,Kyle Mccarthy,jessica92@example.net,802-215-9253,6510356991540374,2025-10-05 +Resort Hotel,0,1,2017,December,50,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,85.69,0,1,Check-Out,Kevin Oliver,andrew34@example.com,720.367.3717x783,3595406496911888,2025-05-26 +Resort Hotel,1,49,2017,December,50,14,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,64.76,0,1,Canceled,Erik Delacruz,zwalls@example.com,001-608-889-5837x112,4414669204893629948,2024-10-14 +Resort Hotel,1,124,2017,November,44,3,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,134.0,179.0,41,Transient,86.36,0,1,Canceled,Rebecca Clark,heather40@example.com,851.785.2567x129,4731943129128541,2024-10-15 +Resort Hotel,0,14,2017,January,2,8,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,213.85,0,1,Check-Out,Patricia Kim,mholmes@example.net,(745)905-9077,501817173724,2026-01-01 +City Hotel,1,257,2017,November,48,29,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,89.21,0,0,Canceled,Carlos Walker,edward32@example.net,(235)511-2655x603,4119133276836,2024-10-04 +City Hotel,1,170,2017,December,2,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,114.93,0,0,Canceled,Stephanie Garcia,randyhall@example.net,001-957-469-2495x7425,38665168740088,2025-12-14 +Resort Hotel,1,154,2017,March,10,4,2,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,8.0,179.0,0,Transient,159.13,0,0,Canceled,Nathan Willis,jonesdeborah@example.net,301-568-3418,4909833670477871827,2025-10-28 +City Hotel,1,179,2017,January,5,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,28.0,179.0,0,Transient,99.59,0,0,Canceled,Kimberly Curtis,pthompson@example.org,+1-987-396-4401x785,342825616940588,2024-09-16 +City Hotel,0,191,2017,November,48,25,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.68,0,2,Check-Out,Susan Rivera,jessicamora@example.org,229-472-1762,4831491255362453417,2024-06-28 +City Hotel,0,137,2017,November,45,8,2,0,3,1.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,16.0,275.0,0,Transient,3.25,0,0,Check-Out,Timothy Perez,patricktammy@example.net,966-249-6328x95982,346692643754572,2025-01-05 +Resort Hotel,1,166,2017,January,5,27,1,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,111.14,0,1,No-Show,Michael White,seth23@example.net,001-695-458-8614,564245213066,2024-10-29 +City Hotel,1,21,2017,September,38,21,1,1,2,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,94.29,0,0,Canceled,Patrick Huerta,aestrada@example.net,+1-965-521-5546x193,6530081160468753,2024-11-07 +City Hotel,0,33,2017,November,47,18,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,41.22,0,2,Check-Out,Brenda Lee,joneslori@example.org,310-660-0946,4600632826060685093,2025-02-20 +City Hotel,0,57,2017,January,3,15,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,1,1,Check-Out,Kiara Sexton,hensonjohn@example.net,623-565-9908x7772,344078586943707,2025-11-07 +Resort Hotel,1,63,2017,May,19,11,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,108.49,0,1,Canceled,Elizabeth Serrano,dbyrd@example.net,(764)527-5507x516,4957234800164795294,2025-07-03 +City Hotel,0,37,2017,June,24,13,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,23.0,179.0,0,Transient-Party,105.97,0,0,Check-Out,Candice Sanders,iwatkins@example.org,+1-468-727-4950x551,4621772148524958313,2026-01-01 +Resort Hotel,0,0,2017,October,41,7,1,0,2,1.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,38.11,0,0,Check-Out,Jonathan Vasquez,julie18@example.com,3922776869,4210426355104,2024-10-17 +Resort Hotel,0,159,2017,May,20,16,2,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,209.6,0,0,Check-Out,Patricia Fox,phillipstroy@example.com,9025962408,4355832244841937,2024-07-31 +Resort Hotel,0,144,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,223.0,0,Transient-Party,76.69,0,0,Check-Out,Betty Cole,michaelyoung@example.org,(649)471-1863x1420,3531884055528466,2024-08-02 +Resort Hotel,1,281,2017,December,50,12,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,125.0,179.0,0,Transient-Party,130.35,0,0,Canceled,Mariah Brown,brenda41@example.com,(398)594-9700x810,347101982321281,2025-10-23 +Resort Hotel,0,166,2017,November,44,3,0,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,37.1,1,0,Check-Out,Valerie Roberts,ianbird@example.com,899-825-0783,2712756942088008,2025-11-18 +Resort Hotel,0,209,2017,March,11,17,4,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,132.34,0,1,Check-Out,Anthony Terry,richard33@example.com,+1-779-266-2229x2971,3559475351606986,2026-01-10 +City Hotel,0,14,2017,January,4,24,2,3,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,229.0,0,Transient,104.31,0,0,Check-Out,Mrs. Miranda Johnston,qpetersen@example.org,(693)826-5737,3537896822438773,2024-12-13 +City Hotel,0,38,2017,November,47,22,1,1,1,0.0,0,BB,BEL,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,7.0,179.0,0,Contract,43.95,0,1,Check-Out,Eric Adkins,jeffreythomas@example.net,+1-612-706-6944x017,2257174888152666,2024-04-08 +City Hotel,0,136,2017,May,21,24,2,1,2,0.0,0,BB,ITA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient-Party,111.47,0,2,Check-Out,Kimberly Kane,jimenezaudrey@example.org,001-882-240-1243,30049040891658,2026-01-10 +City Hotel,1,280,2017,January,2,4,0,10,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,101.17,0,0,Canceled,Alexander Shelton,wilsonangela@example.net,001-521-629-8809x34758,4675730232918241,2025-04-27 +Resort Hotel,0,301,2017,March,10,4,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,105.93,0,0,Check-Out,Melissa Hanson,wrightlisa@example.com,(215)356-4222x8563,3555241072406062,2025-01-30 +Resort Hotel,0,0,2017,April,17,22,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient,216.84,0,2,Check-Out,Rebecca Lee,smithshawn@example.net,465.418.8877x50982,5425163505031791,2024-10-19 +City Hotel,0,2,2017,January,4,22,0,1,3,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,174.81,0,2,Check-Out,Dana Smith,belldanielle@example.org,(644)742-7702x82280,180020041130188,2024-04-06 +Resort Hotel,0,158,2017,October,43,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,235.17,1,0,Check-Out,Tamara Moore,steve96@example.net,+1-461-300-9236x727,6011745226057085,2024-05-11 +City Hotel,0,3,2017,September,36,5,2,1,1,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,61.73,0,0,Check-Out,Bryan Franco,ericksonnicholas@example.org,+1-721-608-6444x2545,4389907709968084,2025-09-25 +City Hotel,0,1,2017,May,21,20,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,52.15,0,0,Check-Out,Spencer Butler,austinscott@example.net,263.313.9590,2247882063833800,2026-02-28 +Resort Hotel,1,264,2017,June,26,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Contract,54.76,0,2,Canceled,Casey Garcia,gpowell@example.net,(835)701-9962,3599567518573778,2024-11-27 +City Hotel,0,0,2017,March,13,30,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,2,No Deposit,13.0,179.0,0,Transient,252.0,0,0,Check-Out,Steven Oconnor,jessica34@example.net,528-679-3764,379103854853145,2025-04-14 +Resort Hotel,1,98,2017,May,20,16,4,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,46.49,0,0,Canceled,Jennifer Ramirez,rlindsey@example.com,+1-281-595-9665x910,4992641428161049,2024-05-05 +Resort Hotel,0,110,2017,November,46,11,2,5,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,245.0,179.0,75,Transient-Party,60.08,1,1,Check-Out,Dr. Travis Morris DDS,cherylgreen@example.org,439-809-5125,4877738693041805654,2025-06-16 +City Hotel,0,16,2017,June,24,10,1,2,1,0.0,0,HB,,Aviation,Corporate,0,0,0,A,A,1,No Deposit,198.0,197.0,0,Transient-Party,109.03,0,0,Check-Out,Johnny Garcia,oclark@example.org,(202)712-2907,30562910482002,2025-05-11 +Resort Hotel,0,50,2017,November,45,9,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,224.57,0,3,Check-Out,Dawn Jordan,walkeradam@example.com,(313)853-1723x9570,2566824167728208,2025-12-23 +Resort Hotel,0,31,2017,December,51,19,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,111.65,0,1,Check-Out,Anthony Mills,jamesrichard@example.org,440-772-5288x2860,4735646145212318083,2024-12-17 +City Hotel,1,305,2017,April,15,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.68,0,0,Canceled,Richard Perry,justinpearson@example.com,001-535-677-8146x0308,371787106048765,2024-11-06 +City Hotel,1,85,2017,January,3,15,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.88,0,1,Canceled,Brandi Vega,julieguerra@example.org,589.327.3774x1076,2222099522961374,2024-04-15 +Resort Hotel,0,48,2017,November,44,4,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,144.55,0,1,Check-Out,Jason Gomez,cynthiaaguirre@example.org,8083541768,4593109048758407,2025-10-05 +City Hotel,0,48,2017,June,23,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,82.13,0,2,Check-Out,Christian Snow,alexander01@example.org,+1-984-959-4597x529,30028893078043,2025-06-06 +City Hotel,0,11,2017,April,16,20,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.06,1,1,Check-Out,Debbie Carrillo,brianaanderson@example.com,550-217-2717,4651070547281763,2025-11-03 +City Hotel,0,168,2017,May,18,3,0,2,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,78.89,1,0,Check-Out,Kaitlyn Phillips,nicholsjessica@example.com,6635893951,4895839518027975,2025-10-08 +City Hotel,0,357,2017,July,27,6,0,4,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,32.0,179.0,0,Transient,80.14,0,1,Check-Out,Ryan Harris,turnermichael@example.com,001-398-875-3723,30266384170230,2025-05-29 +City Hotel,0,194,2017,April,14,4,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,167.75,0,0,Check-Out,Susan Bolton,shannonsnyder@example.net,767.604.6004,36999588867607,2025-05-07 +City Hotel,0,47,2017,August,33,19,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,66.33,0,2,Check-Out,Reginald Copeland,katie37@example.org,(277)971-9081,3573208259927671,2024-11-26 +City Hotel,0,136,2017,March,13,27,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,163.65,0,1,Check-Out,Sharon Cross,fpadilla@example.com,(929)544-4387,38403639095324,2025-05-31 +City Hotel,1,94,2017,February,6,3,1,3,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,189.36,0,1,Canceled,Tyler Russell,nathanielallen@example.com,6557820669,6011328322004929,2024-06-29 +Resort Hotel,0,95,2017,December,52,25,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,3.88,1,1,Check-Out,Marcus Patrick,judy62@example.org,001-567-839-7116x120,4999384838416025,2025-01-31 +Resort Hotel,0,279,2017,March,13,30,0,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,236.72,1,2,Check-Out,Thomas Hunt,erinwilkerson@example.com,787-362-4776x2704,373888534665770,2024-10-24 +Resort Hotel,0,2,2017,November,45,4,1,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,C,1,No Deposit,19.0,179.0,0,Transient,142.65,1,0,Check-Out,Christopher Salinas,zhines@example.com,(834)228-0534x5442,3577384336203323,2024-06-27 +Resort Hotel,0,41,2017,November,47,18,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,46.63,0,2,Check-Out,Anthony Carr,browntony@example.net,(610)771-2201,3592355884799749,2024-07-31 +City Hotel,0,85,2017,January,2,1,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,88.45,0,1,Check-Out,Amanda Franklin,johnstonrobin@example.org,+1-940-367-4527x06915,6011933026748331,2025-09-18 +City Hotel,0,98,2017,July,27,5,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.31,1,0,Check-Out,Nicole Lewis,oscarobrien@example.com,(674)541-7166,3582615523788292,2024-10-08 +City Hotel,0,1,2017,December,52,24,0,1,3,0.0,0,BB,,Corporate,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,146.48,0,1,Check-Out,Alexandria Carrillo,woodkenneth@example.net,(595)255-0952x5121,4669018143403695,2024-04-08 +Resort Hotel,0,45,2017,November,46,11,0,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,112.99,0,0,Check-Out,Samantha Alvarez,cindy40@example.org,589-474-3411,3580763582335738,2026-03-26 +City Hotel,0,2,2017,July,30,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,103.52,0,1,Check-Out,Dr. Roberto Johnston,stephanie96@example.com,+1-250-909-6931x5972,4195317592748292,2024-07-06 +City Hotel,1,153,2017,November,47,22,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,80.31,0,0,Canceled,Dr. George Hernandez,qsmith@example.com,+1-843-613-2728x807,6011985423719737,2024-12-24 +City Hotel,0,1,2017,January,2,7,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,C,0,No Deposit,14.0,179.0,0,Transient,0.0,0,1,Check-Out,Daniel Price,joseph49@example.com,(752)520-9497,4195389924253,2025-06-15 +City Hotel,0,51,2017,June,22,3,0,2,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,105.52,0,2,Check-Out,Adam Stewart,kgarner@example.com,737.950.5647,6011458186596320,2025-05-08 +City Hotel,1,37,2017,September,39,26,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,97.09,0,2,Canceled,Daniel Molina,bward@example.org,337.306.8115x7332,676342387153,2024-11-26 +Resort Hotel,0,53,2017,March,10,10,4,10,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,343.0,179.0,75,Contract,222.99,0,1,Check-Out,Michael Evans,johnsmith@example.org,(995)783-1286x87414,378778738548788,2024-09-17 +City Hotel,0,205,2017,April,15,9,1,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,142.4,1,3,Check-Out,Victoria Berry,dennis90@example.com,525.557.1592x093,4364890572809,2025-08-25 +Resort Hotel,0,2,2017,September,39,23,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,43.77,0,2,Check-Out,Mr. Daniel King Jr.,fullermichael@example.com,(541)362-1376,639075875935,2025-03-01 +City Hotel,1,92,2017,February,7,14,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,37,Transient,100.3,0,0,Canceled,Ronald Juarez,tmartin@example.com,5118358271,4747001882777371651,2025-09-08 +Resort Hotel,1,5,2017,August,35,26,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,234.0,179.0,0,Transient,60.62,0,1,Canceled,Matthew Reynolds,andrewhernandez@example.org,001-989-215-7199x62137,6556023598264171,2024-12-10 +City Hotel,0,21,2017,December,52,27,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.45,0,2,Check-Out,Luis Nelson,ltaylor@example.org,952.366.4958x39863,4105899675125018,2025-06-02 +Resort Hotel,0,15,2017,January,4,26,1,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,103.53,0,2,Check-Out,Rhonda Williams,jeffrey22@example.org,804-905-1483,4025507979614812,2024-12-20 +City Hotel,1,89,2017,August,32,8,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,17,Transient,88.12,0,0,Canceled,Brandon Pruitt,kennethhancock@example.org,667.300.1766x19132,4302460738716645449,2024-11-01 +City Hotel,0,0,2017,April,15,10,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,0.0,0,0,Check-Out,Pamela Cook,steven87@example.org,(804)490-6139x571,371676061603070,2025-01-23 +Resort Hotel,0,1,2017,May,18,5,1,2,1,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,64.6,0,0,Check-Out,Ryan Smith,daniel37@example.org,2197700192,4383884267627987557,2025-12-04 +City Hotel,1,39,2017,February,7,10,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.06,0,3,Canceled,Erik Williams,benjaminwarner@example.org,+1-668-457-3793x3872,340389167913645,2024-12-16 +City Hotel,0,26,2017,August,31,1,0,3,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,13.0,179.0,0,Transient,3.53,0,1,Check-Out,Patrick Ortega,trevor36@example.net,+1-910-820-1823x467,30493511391063,2025-12-29 +Resort Hotel,1,27,2017,February,5,1,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Joseph Stevens,masonsteven@example.net,+1-796-395-7788x5821,630453554689,2024-09-05 +City Hotel,1,444,2017,February,8,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,75,Transient-Party,63.74,0,0,Canceled,Tina Wilson,lpalmer@example.com,(736)745-8994,4800616167763924497,2025-11-30 +Resort Hotel,1,1,2017,October,40,2,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,41.41,0,0,Canceled,Jose Coleman,juliebooth@example.com,001-806-562-0800x003,4423378425720357,2025-04-06 +Resort Hotel,0,26,2017,August,31,4,4,5,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,194.51,0,1,Check-Out,Terry Mills,manuelflores@example.org,001-399-311-6568x9128,4102416409606404,2026-01-14 +City Hotel,1,0,2017,June,23,8,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,62,Transient,80.18,0,0,Canceled,Aaron Boyd,mario99@example.com,508-503-3025x77774,630488179072,2024-09-18 +City Hotel,1,399,2017,March,14,30,3,6,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,85.56,0,1,Canceled,Sara Flores,edwardsdaniel@example.com,+1-260-697-1171x5258,2718888416666334,2025-08-19 +City Hotel,0,48,2017,March,14,30,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,Shelly Horton,robertbrown@example.org,+1-734-375-8128x11336,213121825881235,2025-10-05 +City Hotel,0,88,2017,March,14,30,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,75.77,0,0,No-Show,Destiny Duncan,smartinez@example.org,001-991-261-2987,2266512617251326,2025-07-11 +City Hotel,0,245,2017,February,7,13,0,3,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,129.32,0,1,Check-Out,Matthew Robinson,rollinswilliam@example.net,695-531-7142,30407492006987,2024-08-09 +Resort Hotel,1,256,2017,July,31,31,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,188.45,0,0,Canceled,Jessica Doyle,bcross@example.com,7795150857,30530105711071,2024-10-27 +Resort Hotel,0,43,2017,August,32,9,2,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,75,Transient,77.57,0,0,Check-Out,Joshua Moran,hebertkenneth@example.net,4098559274,4676376830025,2025-10-07 +City Hotel,0,41,2017,August,31,2,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,175.99,0,2,No-Show,Carol Fisher,michaelmorton@example.net,242.378.7466x66677,676348098242,2025-09-20 +Resort Hotel,1,18,2017,July,28,13,2,2,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,326.0,179.0,0,Transient,75.64,0,0,Canceled,Dr. Daniel Sweeney,bradleyerica@example.net,440-879-5317x82800,4231583144551596842,2024-06-27 +City Hotel,1,61,2017,May,20,13,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,157.82,0,2,Canceled,Michael Cruz,johncrawford@example.net,454-507-4052x72353,3550831276704927,2025-02-26 +Resort Hotel,0,20,2017,July,27,6,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Contract,44.4,0,0,Check-Out,Kevin Sandoval,dberry@example.org,001-891-385-3412x11398,3516519213514698,2025-10-27 +Resort Hotel,0,18,2017,June,23,10,0,3,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,D,2,No Deposit,13.0,73.0,0,Transient,46.81,0,0,Check-Out,Melanie Watson,stephanie08@example.net,001-764-919-3829x53061,4749425702949,2024-11-13 +City Hotel,1,11,2017,August,34,19,1,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,12.0,179.0,62,Transient,84.63,0,2,No-Show,Ms. Stephanie Duran,parrishjames@example.com,+1-260-914-6508x84955,4543243460764584,2025-04-10 +Resort Hotel,0,89,2017,June,23,5,1,4,2,2.0,0,BB,SWE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,194.99,0,0,Check-Out,Jonathan Phillips,martin50@example.net,2265849255,3592381045737295,2025-08-08 +City Hotel,0,0,2017,April,15,10,2,6,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,210.61,0,2,Check-Out,James Cox,penny29@example.com,352-385-0902x793,4713941379617696145,2024-09-14 +Resort Hotel,1,13,2017,March,11,15,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,248.0,179.0,0,Transient,42.71,0,1,Canceled,Erik Dean,john04@example.com,597.998.0977x49846,379990924414050,2026-02-25 +City Hotel,0,18,2017,November,46,14,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,2.61,0,0,Check-Out,Allison Fisher,dswanson@example.net,594-488-2140x88890,4536582655101212,2025-10-31 +Resort Hotel,0,1,2017,December,49,4,2,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,E,1,No Deposit,13.0,179.0,0,Transient,0.0,0,1,Check-Out,Casey Hardy,stacey68@example.org,296-279-3835x766,4311788611488,2025-03-15 +City Hotel,0,13,2017,November,45,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,114.13,0,1,Check-Out,John Cole,brian18@example.org,385.274.7450x6989,3573970980695659,2024-06-21 +Resort Hotel,0,11,2017,December,51,17,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,I,1,No Deposit,16.0,179.0,0,Transient,2.01,1,0,Check-Out,Lauren Hooper,kyle02@example.com,245-752-8859x20557,4576704546972277,2024-12-01 +City Hotel,0,52,2017,July,27,5,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,212.0,179.0,0,Transient,77.5,0,2,Check-Out,Crystal Shelton,michael70@example.org,512.311.3747x94137,5154411145910677,2025-04-08 +City Hotel,0,125,2017,March,9,1,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,10.0,223.0,0,Transient-Party,84.95,0,0,Check-Out,Amanda Hess,gregory95@example.org,001-345-601-1622x1260,3567122657565082,2024-09-20 +Resort Hotel,1,19,2017,August,31,1,1,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,62.99,0,0,Canceled,Jessica Holloway,crystalpatterson@example.org,718.644.6118x6195,213123624465848,2024-11-03 +City Hotel,0,115,2017,February,6,8,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,8.0,179.0,0,Transient,142.75,0,1,Check-Out,Michelle Burton,tstephens@example.org,9995598760,503881221637,2025-10-05 +Resort Hotel,1,11,2017,December,52,26,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,170.0,179.0,0,Transient,45.2,0,0,Check-Out,Michael Arnold,nancymartinez@example.com,+1-626-834-0169,4992627968368776824,2024-12-22 +City Hotel,1,3,2017,April,16,13,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,175.18,0,1,Canceled,Victoria Carpenter,kenneth98@example.org,478-636-6882x16309,501886395307,2024-07-27 +City Hotel,1,405,2017,April,16,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,145.54,0,0,Canceled,Andrea Moody,paul65@example.org,(915)355-4886,502007856243,2026-02-07 +City Hotel,0,199,2017,September,36,9,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Group,242.88,0,1,Check-Out,Erik Harris,cynthia30@example.net,965-527-5432,4517194401270061240,2024-11-29 +City Hotel,1,64,2017,November,46,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,11.0,179.0,0,Transient,98.63,0,0,Canceled,Virginia Johns,bjenkins@example.org,438.328.7102x972,4055193253789472,2025-12-23 +Resort Hotel,0,259,2017,March,10,5,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,81.03,0,1,Check-Out,Lori Williams,carrie66@example.org,815.430.9943,180052515771569,2025-04-05 +Resort Hotel,1,147,2017,June,26,25,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,Non Refund,1.0,179.0,0,Contract,60.15,0,0,Canceled,Daniel Palmer,julia77@example.org,623-593-0351,2426641947150440,2025-04-06 +City Hotel,0,48,2017,July,30,25,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,131.36,0,1,Check-Out,Austin Snyder,greenmatthew@example.com,001-316-338-0823,213161710403794,2025-12-11 +City Hotel,0,36,2017,February,8,19,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.7,0,1,Check-Out,Kevin Wood,robertlopez@example.org,(632)330-0981,342629752660970,2024-08-19 +City Hotel,1,406,2017,March,11,11,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,106.04,0,0,Canceled,Dr. Lori Jackson,christopherarcher@example.org,001-469-887-8184x5567,4978810552664,2024-12-15 +City Hotel,1,2,2017,May,20,13,1,0,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,142.52,0,0,No-Show,Christine Baker,wolfegina@example.net,001-273-808-7692x2798,060471137145,2024-11-01 +Resort Hotel,0,1,2017,February,6,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,248.0,179.0,0,Transient,121.56,1,3,Check-Out,Jennifer Warren,petersdavid@example.org,462.886.1122x9219,4064062212483056,2025-04-19 +City Hotel,0,96,2017,April,14,2,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,245.16,0,1,Check-Out,Tina Jennings,amyruiz@example.net,001-245-251-5688,6576281955309593,2025-05-18 +City Hotel,0,91,2017,April,15,12,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,2,No Deposit,16.0,179.0,0,Transient-Party,109.48,1,0,Check-Out,Chris Wheeler,beasleystacey@example.net,475-976-8096,2234436795310184,2025-05-03 +City Hotel,1,403,2017,August,31,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,75,Transient,64.02,0,0,Canceled,Catherine Walls,jpatton@example.net,875-227-9032x91991,2221849729785872,2024-05-03 +City Hotel,1,143,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,82.4,0,0,Canceled,Lindsey Chen,trevinohayley@example.net,901.838.5601x586,30507150706628,2024-04-24 +City Hotel,0,10,2017,December,49,5,2,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,2,No Deposit,13.0,182.0,0,Transient,92.24,0,1,Check-Out,Brandon Johns,sstark@example.com,529-309-5902x3057,502059366752,2024-06-23 +City Hotel,0,21,2017,November,45,8,1,1,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,106.61,0,0,Check-Out,Brittney Bradley,gpugh@example.net,(957)754-3354x70534,3539653518559463,2024-06-03 +Resort Hotel,0,5,2017,June,23,9,0,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,143.95,1,0,Check-Out,Kelly Hughes,sarah31@example.com,8886386249,6555850445522257,2025-08-29 +Resort Hotel,0,12,2017,September,37,13,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,1,No Deposit,329.0,64.0,0,Transient,45.38,0,1,Check-Out,Pamela Dixon,antonio83@example.org,+1-321-530-7952x8185,503850403596,2025-02-17 +Resort Hotel,0,15,2017,May,18,6,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,B,D,0,No Deposit,13.0,179.0,0,Transient,57.29,1,1,Check-Out,Robert Banks,becktracy@example.com,595.286.8770x565,4603677450501455,2025-02-18 +City Hotel,0,0,2017,November,47,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,1,No Deposit,14.0,237.0,0,Transient,103.37,0,0,Check-Out,Thomas Hughes DDS,rodriguezroberta@example.org,001-795-447-0439x69229,30505974585335,2025-04-07 +Resort Hotel,0,154,2017,April,17,22,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient-Party,46.99,0,0,Check-Out,Amanda Wilson,kevin93@example.com,(393)722-8030x5133,343374522674683,2024-12-25 +Resort Hotel,0,2,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient-Party,52.37,0,1,Check-Out,Carlos Castillo,hmccarty@example.net,617.954.4165,6592371521742292,2026-02-14 +City Hotel,0,0,2017,May,19,9,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,206.86,0,1,Check-Out,Justin Hughes,timothy38@example.com,815-740-2315,4253633867233946,2024-12-21 +City Hotel,1,44,2017,April,14,7,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,139.46,0,0,Canceled,Crystal Hill,brittanycabrera@example.com,447-272-7180x552,180036596623427,2026-02-25 +City Hotel,0,3,2017,October,41,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,0,No Deposit,13.0,179.0,0,Transient,86.03,0,1,Check-Out,Mary Atkinson,tiffanygriffith@example.org,(503)974-9282x96930,2720001484658805,2024-05-15 +Resort Hotel,1,6,2017,July,29,15,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,45.78,0,1,Canceled,Lisa Gibson,fuentesmatthew@example.org,(236)504-8368x2140,4413480863747850,2026-01-16 +Resort Hotel,0,82,2017,January,2,3,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,48.86,1,0,Check-Out,Miguel Williams,adriana96@example.org,(440)416-0074x21932,060448522429,2025-12-30 +Resort Hotel,0,19,2017,March,13,25,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient-Party,252.0,1,1,Check-Out,Joe Mendez PhD,johnsonian@example.org,514-617-5462,6011745734876281,2024-05-26 +City Hotel,0,10,2017,November,44,3,1,1,1,0.0,0,BB,FRA,Aviation,Direct,0,0,0,D,D,0,No Deposit,14.0,158.0,0,Transient-Party,117.82,0,0,Check-Out,Sharon Barajas,martindaniel@example.net,887-975-1627,4555214623172259,2025-01-09 +City Hotel,1,168,2017,February,8,19,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.92,0,0,Canceled,Hector Griffin,noahherrera@example.com,+1-635-345-4409x72804,3532430938164894,2025-11-27 +City Hotel,0,1,2017,February,5,1,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,29.0,179.0,0,Group,1.64,0,1,Check-Out,Jessica Singh,brucetravis@example.net,637-510-0764x75883,379528122787594,2024-08-25 +City Hotel,0,98,2017,November,45,10,1,2,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,107.89,0,1,Check-Out,Sara Barrett,marcus55@example.com,(217)854-4161x904,6011373483302563,2025-06-26 +City Hotel,1,0,2017,April,14,5,1,0,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,0.0,0,1,Canceled,Ariel Murphy,reedconnie@example.org,920-890-0001x224,4138843926683301106,2024-06-05 +City Hotel,1,93,2017,December,50,14,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,71.0,179.0,0,Transient,88.72,0,0,Canceled,Melanie Saunders,ycharles@example.org,001-243-937-1831x9068,639031346427,2026-01-18 +City Hotel,0,12,2017,April,15,12,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,139.98,0,1,Check-Out,Taylor Howard,erik62@example.com,+1-555-873-1378x5624,4197272197129127556,2024-09-22 +Resort Hotel,0,1,2017,November,45,10,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,41.73,0,1,Check-Out,Kelly Williamson,jeremy77@example.net,001-530-247-8142x34591,5296632135056002,2026-03-07 +Resort Hotel,0,63,2017,September,36,3,2,5,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,55.56,0,0,Check-Out,Nancy Black,wilcoxcrystal@example.net,456.329.0936x918,30038365823065,2025-01-31 +City Hotel,0,151,2017,November,44,3,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,107.54,0,1,Check-Out,Diana Williams,millerwalter@example.org,646-497-9758x26453,4328570050292477284,2026-03-20 +City Hotel,0,5,2017,November,46,17,1,2,1,0.0,0,SC,CHE,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,98.92,0,0,Check-Out,Jordan Clark,dawnlong@example.com,236.293.5552x125,676226996616,2025-11-19 +City Hotel,0,24,2017,February,9,25,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,102.93,0,1,Check-Out,Emily Parker,harrismarc@example.net,785.593.7325x96984,4085219391472970,2025-09-07 +Resort Hotel,0,11,2017,June,23,9,1,6,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,82.3,0,0,Check-Out,Mr. Thomas Garcia,hgreen@example.net,919.604.8991,503807380533,2024-06-09 +Resort Hotel,0,34,2017,May,19,9,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,53.42,0,0,Check-Out,Darrell Wong,sherry42@example.com,898-428-0261,6011789517511772,2024-06-13 +City Hotel,0,8,2017,March,13,23,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,110.15,0,0,Check-Out,Anthony Morales,travisgarner@example.org,+1-768-948-8480x5499,4980500700611804,2024-09-18 +Resort Hotel,0,45,2017,February,8,19,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,108.62,0,1,Check-Out,Ashley Burton MD,lfreeman@example.org,001-853-414-0976x66309,2638694844777280,2025-11-01 +City Hotel,0,18,2017,June,26,24,0,4,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,0,No Deposit,273.0,179.0,0,Transient-Party,109.85,0,0,Check-Out,Kimberly Jones,coxjerry@example.org,961-810-0426x24601,30155391757685,2025-08-31 +City Hotel,0,4,2017,April,17,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,1,No Deposit,248.0,179.0,0,Transient,199.29,1,2,Check-Out,Mark Johns,robert63@example.org,001-728-842-9549,4493756695303,2025-05-11 +City Hotel,0,20,2017,November,48,25,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,9.0,179.0,0,Transient,137.19,0,2,Check-Out,Jeremy Brown,qgonzalez@example.org,001-335-700-3734x852,6560588173391833,2025-09-09 +Resort Hotel,0,15,2017,February,8,23,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Group,252.0,1,2,Check-Out,Crystal Beltran,amy91@example.net,360-683-2298x48466,6011366649614905,2025-09-27 +Resort Hotel,0,39,2017,September,38,22,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,48.6,0,0,Check-Out,Lori Howard,johnsonmariah@example.org,+1-647-907-0530x48652,345035798474201,2025-02-03 +City Hotel,1,3,2017,September,38,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,79.29,0,1,No-Show,Deborah Cherry,jacksongregory@example.org,001-990-645-5257x740,503805111914,2025-06-18 +Resort Hotel,0,113,2017,November,46,11,1,1,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient,50.96,0,1,Check-Out,Elaine Herman,shanebennett@example.org,001-955-340-1256,3560534657015180,2025-01-10 +City Hotel,0,0,2017,September,37,11,0,2,2,1.0,0,BB,PRT,Direct,Direct,1,0,0,C,L,1,No Deposit,17.0,179.0,0,Transient,45.63,0,1,Check-Out,Sabrina Henderson DVM,iali@example.com,2395877879,180042792873089,2025-03-12 +City Hotel,1,208,2017,February,7,15,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,83.56,0,0,Canceled,Robin Jones,tiffany78@example.com,001-809-490-1079x3051,2290872329922808,2024-07-20 +City Hotel,0,47,2017,September,38,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,E,E,1,No Deposit,12.0,179.0,0,Transient,93.93,0,1,Check-Out,Chad Flores,kenneth12@example.net,273.340.6985x331,4217565470230,2024-08-11 +City Hotel,1,101,2017,February,8,23,1,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,84.9,0,0,No-Show,Jonathan Stanley,walter21@example.com,446-471-3310x90377,3533542998514229,2025-10-02 +Resort Hotel,0,16,2017,November,45,5,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,146.0,179.0,0,Transient,37.97,1,0,Check-Out,Heather Duffy,wendytucker@example.net,230.481.3664x368,3564249181624755,2024-05-10 +Resort Hotel,0,50,2017,September,40,30,1,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,235.96,1,1,Check-Out,Michael Moore,christianmckinney@example.com,(793)223-4992x019,3594600935333123,2025-05-30 +City Hotel,1,302,2017,July,28,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,41,Transient,97.44,0,0,Canceled,Maureen Bates,hopkinsolivia@example.com,709.438.0307,4596110976886,2026-01-06 +City Hotel,0,52,2017,December,51,20,2,2,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,97.57,0,1,Check-Out,Jordan Nixon,harristimothy@example.com,+1-946-818-1437x146,180058468905179,2024-12-14 +Resort Hotel,1,18,2017,November,48,25,1,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Christine Johnson,mccoyalicia@example.com,442.724.9411,30487819222988,2024-12-14 +City Hotel,0,444,2017,March,12,19,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,83.77,0,1,Check-Out,Ann Hansen,chenpatrick@example.org,001-710-993-7727x6324,180000923338752,2026-01-20 +City Hotel,1,25,2017,January,2,9,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.94,0,0,Canceled,Mary Day,shannonwheeler@example.org,001-284-443-2379x9944,180095698898352,2024-09-08 +Resort Hotel,1,8,2017,August,31,4,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,237.0,179.0,0,Transient,131.25,0,2,Canceled,Cristina Thompson MD,michael50@example.net,001-318-314-4917x8812,180092327451828,2025-09-05 +Resort Hotel,0,151,2017,May,22,30,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,301.0,179.0,0,Transient-Party,47.88,0,1,Check-Out,Nancy Jones,wallen@example.org,992.811.0184,3572696731290398,2024-06-10 +Resort Hotel,0,17,2017,August,34,23,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,16.0,215.0,0,Transient-Party,83.29,0,0,Check-Out,Patrick Medina,patriciamorrison@example.net,569-735-1491,4054051245134275,2024-08-26 +Resort Hotel,0,97,2017,February,8,22,4,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,91.96,0,2,Check-Out,Rebecca Johnson,gwilliams@example.org,001-253-918-9611x204,5414462002385335,2025-08-21 +City Hotel,1,281,2017,February,8,22,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,6.0,179.0,0,Transient,131.3,0,0,Canceled,Daniel Carter,maureen98@example.com,001-590-470-9706,4635081282695043,2024-11-03 +Resort Hotel,0,38,2017,November,45,8,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,236.0,179.0,0,Transient,90.7,0,0,Check-Out,John Scott,tylercarter@example.com,926.567.4900,180047921121680,2025-09-24 +Resort Hotel,0,99,2017,March,13,23,1,4,2,1.0,0,BB,CN,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient-Party,132.01,1,0,Check-Out,Bryan Paul,joshuabrowning@example.com,742.570.3339x17986,4431946135411838,2025-09-05 +City Hotel,0,0,2017,June,23,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,4.78,1,0,Check-Out,Kimberly Santos,lindaphillips@example.com,(795)386-4422,4645876674478322,2025-08-14 +City Hotel,1,40,2017,December,52,23,2,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.61,0,1,Canceled,Katelyn Yang,bscott@example.com,877.708.1537x60482,4500860229937150,2025-05-04 +City Hotel,0,2,2017,July,31,31,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,0.0,0,0,Check-Out,Lisa Coleman,wrightchristopher@example.org,(884)571-3331,4134402444817,2024-10-25 +City Hotel,0,3,2017,November,47,22,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,53.05,0,0,Check-Out,George Vaughan,david21@example.net,+1-225-904-0993x06738,4614164469597755,2024-09-30 +Resort Hotel,1,85,2017,August,34,23,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,45.67,0,0,Canceled,Angela Beck,bellkarla@example.com,353-523-1456x3970,4769813660022046,2024-07-27 +City Hotel,1,58,2017,August,32,12,0,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,105.67,0,1,No-Show,Juan Brewer,martinronald@example.net,(316)699-3729,370681996709019,2025-03-22 +City Hotel,0,3,2017,April,15,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,140.12,0,0,Check-Out,Stephanie Garcia,gcruz@example.net,410-259-9504x353,4439153401140330292,2025-06-04 +City Hotel,0,2,2017,April,15,13,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,117.37,0,1,Check-Out,Elizabeth Hill,jesseyoung@example.com,+1-476-420-6317,6011445455223975,2025-11-22 +City Hotel,1,39,2017,September,36,3,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,79.93,0,0,Canceled,Michael Brown,jonesdiane@example.com,(712)747-0772x3570,3564938334047530,2025-08-24 +City Hotel,0,5,2017,June,23,5,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,195.17,0,0,Check-Out,Ruth Harris,geraldcortez@example.net,571-443-3597x804,379738984116705,2025-02-16 +City Hotel,1,11,2017,April,17,29,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,A,E,0,No Deposit,9.0,179.0,0,Transient,116.96,0,0,Canceled,Mr. Alexander Davies,michael03@example.org,247-787-0794x896,4328211200440,2025-09-24 +Resort Hotel,0,16,2017,July,29,16,0,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,D,E,0,No Deposit,14.0,84.0,0,Transient,41.03,0,1,Check-Out,Michelle Martinez,qmorales@example.org,(674)262-9908x3334,3595379700849105,2024-12-09 +City Hotel,1,196,2017,March,12,20,2,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.13,0,0,Canceled,Matthew Shea,cardenaslori@example.net,001-864-646-8838x66291,3567927546658736,2024-05-08 +Resort Hotel,1,246,2017,March,13,25,3,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,45.98,0,1,Canceled,Patricia Johnson,mariaramirez@example.org,+1-487-272-2283x645,4583014020271985,2025-11-20 +City Hotel,0,3,2017,August,34,21,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,50.78,0,1,Check-Out,Vernon Walters,glopez@example.org,723.618.3226,4264475238710930,2025-10-22 +City Hotel,0,361,2017,June,23,4,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.13,0,0,Check-Out,Nicole Andrews,christian23@example.com,445-269-1742,371383501483391,2025-01-09 +Resort Hotel,0,1,2017,October,40,5,0,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,I,1,No Deposit,242.0,179.0,0,Transient-Party,1.65,1,1,Check-Out,Janice Fuentes,samuel45@example.net,356-911-3791x37993,4234108873269774,2024-06-11 +Resort Hotel,0,88,2017,January,4,26,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,Steven Perry,victoria51@example.com,(662)938-2291,3594762247777320,2025-01-16 +City Hotel,1,43,2017,November,46,15,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,37.0,179.0,43,Transient,62.71,0,0,Canceled,Bryce Francis,katherinelee@example.org,+1-556-686-3421x72337,4192096075862522370,2025-04-05 +City Hotel,0,157,2017,February,8,23,0,1,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,137.76,0,0,Check-Out,Jennifer Cisneros MD,qmorgan@example.net,754.955.3870x781,503841805503,2025-01-25 +Resort Hotel,0,27,2017,December,49,4,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,197.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,Nicole Herman MD,cmyers@example.net,(633)401-1559x674,2701141454719097,2025-10-20 +City Hotel,0,2,2017,May,21,18,2,1,1,0.0,0,SC,BEL,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,108.31,0,0,Check-Out,Tammy Taylor,mullennathan@example.net,001-783-520-2474x21153,4819364315544018,2025-05-26 +City Hotel,1,37,2017,June,23,4,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,4.0,179.0,0,Contract,93.89,0,0,Canceled,Bethany Frazier,fishersarah@example.com,607-340-7443,575460110852,2026-03-05 +City Hotel,1,200,2017,June,24,13,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,156.1,0,3,Check-Out,Debra Chapman,cynthia17@example.org,995.547.2183,4165274387715019730,2025-03-21 +City Hotel,1,63,2017,June,26,28,2,2,2,0.0,0,HB,DEU,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.97,0,1,Canceled,Steven Clark,eking@example.org,+1-858-323-4954x935,30373469947027,2024-10-31 +City Hotel,0,189,2017,February,7,12,4,2,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.63,0,0,Check-Out,Jay Walker,hbrown@example.com,+1-699-411-9222,6514772682178645,2025-07-02 +City Hotel,0,1,2017,August,32,8,1,1,1,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,C,0,No Deposit,14.0,45.0,0,Transient,0.0,0,0,Check-Out,Hunter Yang,torrestimothy@example.org,626-243-5728,639038722455,2025-10-08 +City Hotel,0,1,2017,April,15,12,2,2,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,112.05,0,0,Check-Out,Sean Mendez,lisamartinez@example.net,001-952-860-9969x95776,4892652248239849674,2025-05-11 +City Hotel,0,39,2017,November,48,26,1,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,99.02,0,2,Check-Out,Mark Hill,mark19@example.com,001-834-319-0865x527,30497464075128,2024-04-30 +City Hotel,1,115,2017,August,35,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,64.0,0,0,Canceled,Donald Johnson,christopher44@example.org,001-885-328-0700x014,4256094508205941,2025-06-14 +Resort Hotel,0,102,2017,June,23,5,1,2,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,106.81,1,1,Check-Out,David Garrison,caseyjoseph@example.org,685-919-5926,4526698802613172,2025-08-10 +Resort Hotel,1,78,2017,December,51,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,90.71,0,0,Canceled,Eric Foster,stonejessica@example.net,+1-243-552-2762x3710,3525611978075152,2025-11-21 +City Hotel,0,147,2017,April,15,11,0,2,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,217.83,0,3,Check-Out,Stephen Taylor,ortegacatherine@example.org,593-584-0661x99140,377757592735187,2025-06-27 +Resort Hotel,1,323,2017,May,18,2,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,109.37,0,0,Canceled,Robin Rodriguez,harringtonnancy@example.net,001-991-470-2609x5874,4797350525561997,2026-03-04 +Resort Hotel,1,297,2017,May,19,7,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,112.3,0,0,Canceled,John Anderson,ssteele@example.net,001-722-651-3500x78733,3590481148470398,2025-11-13 +Resort Hotel,0,2,2017,June,23,5,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,58.2,0,2,Check-Out,Keith Casey,valenciachristina@example.net,+1-925-517-7398,4405364497290018,2024-09-09 +Resort Hotel,0,13,2017,April,16,21,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,3,No Deposit,13.0,179.0,0,Transient,162.76,0,2,Check-Out,Tanner James,kmurphy@example.net,963.366.5574,4797151787339423,2024-10-31 +Resort Hotel,0,78,2017,January,3,17,0,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,53.4,0,0,Check-Out,Frances Aguilar,perezdaniel@example.com,(867)346-1397,4922807758943493667,2025-07-14 +City Hotel,0,0,2017,August,32,8,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,2.3,0,1,Check-Out,Clayton Jennings,brayelizabeth@example.net,4816548656,30487381271637,2024-06-10 +Resort Hotel,0,62,2017,April,14,3,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,170.97,0,3,Check-Out,Stanley Cain,estone@example.com,001-619-283-8359x519,4783862459826234,2025-02-21 +Resort Hotel,0,153,2017,November,48,30,1,3,1,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,3,Refundable,12.0,223.0,0,Transient-Party,35.96,0,1,Check-Out,Andrew Robinson,sodonnell@example.net,692.330.3621,4403175675828,2024-04-24 +City Hotel,1,17,2017,March,11,14,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,180.61,0,2,Check-Out,Rebecca Olsen,hendersontodd@example.com,001-276-272-7285,213113890376340,2025-09-05 +City Hotel,0,53,2017,July,30,28,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Group,64.7,0,1,Check-Out,William Paul,ryan09@example.net,6627627012,4782770159794456,2026-03-06 +City Hotel,1,60,2017,January,3,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,312.0,179.0,0,Transient-Party,107.52,0,1,No-Show,Arthur Bowen,zjordan@example.net,557.325.5478x83820,375864547108841,2025-04-10 +City Hotel,0,34,2017,July,27,7,2,3,2,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,74.42,0,0,Check-Out,Timothy Schmitt,david68@example.org,001-964-434-5202x904,2706687829957395,2025-07-16 +City Hotel,1,1,2017,March,13,30,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,142.0,179.0,0,Transient-Party,159.87,0,0,No-Show,Tammy Scott,harrisangela@example.com,+1-244-667-7715x98689,340724596960595,2025-06-14 +City Hotel,0,15,2017,April,17,21,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.07,0,0,Check-Out,Karen White,dianadiaz@example.net,537.861.2770x5297,3548161479478375,2025-05-07 +Resort Hotel,0,64,2017,April,14,3,2,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,192.15,1,1,Check-Out,Crystal Smith,lindsey15@example.com,(839)640-3683,38904864281463,2025-01-13 +City Hotel,0,160,2017,March,10,5,1,0,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Contract,103.12,0,1,Check-Out,David Hall,estradashelby@example.com,(730)415-9392,6579865658982685,2025-07-03 +Resort Hotel,0,0,2017,November,47,25,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,A,0,No Deposit,37.0,179.0,0,Transient-Party,45.17,0,1,Check-Out,Isaiah Gray,christopher88@example.net,975-285-1020,3566172913241714,2025-02-14 +Resort Hotel,0,98,2017,June,25,18,0,2,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,310.0,179.0,0,Transient-Party,88.53,0,1,Check-Out,Angela Parks,millererika@example.com,+1-632-967-3755x87989,30372900227833,2025-06-29 +Resort Hotel,0,281,2017,March,9,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Contract,63.31,0,1,Check-Out,Ronald Hernandez,ggonzalez@example.org,(979)788-8949x7800,4283665926965559,2025-05-10 +Resort Hotel,1,40,2017,January,3,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,223.0,0,Transient,88.09,0,0,Canceled,Dean Harrington,darryl49@example.com,530-207-9572x116,4470530779185064,2026-01-18 +City Hotel,1,21,2017,April,15,12,1,1,1,0.0,0,BB,PRT,Corporate,Undefined,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,139.87,0,1,No-Show,Jose Lawrence,dchavez@example.net,001-717-832-4200x433,583665979287,2025-11-19 +City Hotel,1,261,2017,April,14,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,169.83,0,1,Canceled,Arthur Golden,dominguezoscar@example.com,470-371-3546x312,36231146485213,2024-07-07 +City Hotel,0,11,2017,April,17,26,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.45,0,2,Check-Out,Adrian Morris,andrew31@example.org,598.383.6272x4315,6011922191388650,2025-12-13 +City Hotel,0,3,2017,April,16,16,0,2,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,62.86,0,1,Check-Out,Jon Graham,tamara68@example.org,+1-750-245-5484x4763,6011773307876496,2024-12-23 +City Hotel,0,60,2017,March,11,11,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,Cory Hale,wmatthews@example.com,001-252-575-5103,4363707792854849,2024-06-14 +Resort Hotel,1,279,2017,November,47,22,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,135.0,179.0,0,Transient,62.72,0,0,Canceled,Kathryn Brown,sheppardlisa@example.net,974-765-9317x282,375293428734527,2025-09-12 +City Hotel,0,1,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,14.0,45.0,0,Group,86.32,0,1,Check-Out,Kimberly Hanna,steven01@example.com,+1-558-895-4123x894,2707938857922960,2025-07-30 +City Hotel,1,23,2017,March,10,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.05,0,0,Canceled,Daniel Miller,michael22@example.net,+1-626-904-8362,4794442545630010,2025-02-06 +City Hotel,0,2,2017,September,36,5,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,221.58,0,3,Check-Out,Austin Perez,nicole02@example.org,001-907-728-6660x4142,4267620710351,2025-08-15 +City Hotel,0,6,2017,November,45,6,0,1,2,0.0,0,BB,PRT,Undefined,Corporate,1,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient-Party,1.46,0,0,Check-Out,Mr. Mark Landry,istokes@example.net,(627)971-1392,4339347716985,2024-06-29 +Resort Hotel,0,0,2017,June,23,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,2.59,0,0,Check-Out,Robert Jones,bradleymedina@example.com,001-878-374-4612,3521042377615642,2025-03-03 +Resort Hotel,1,46,2017,June,26,25,0,1,2,0.0,0,HB,SWE,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,217.62,0,0,Canceled,Andrew Powers,dlong@example.com,458-283-3050x90369,4725967611169,2026-03-11 +Resort Hotel,0,1,2017,June,23,3,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,52.92,0,0,Check-Out,Erica Turner,berrynancy@example.org,(889)391-3603x881,502036441405,2024-10-31 +Resort Hotel,1,9,2017,August,31,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.15,0,0,Canceled,Jesse Brown,kthomas@example.org,267.694.2200x4574,4847874392335,2025-01-23 +Resort Hotel,0,47,2017,September,36,9,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,43.93,0,1,Check-Out,Marissa Smith,michaelavery@example.net,520-924-6074x6130,30433308774295,2024-04-28 +City Hotel,1,2,2017,September,35,2,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,85.95,0,0,Canceled,Samantha Douglas,james62@example.org,325-829-1404x43774,3595697001810207,2024-05-10 +City Hotel,1,219,2017,January,2,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.06,0,0,Canceled,Robert Jones,ramseyandrea@example.com,+1-647-634-8930x880,4012332719228368,2026-03-22 +Resort Hotel,0,11,2017,July,28,13,2,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,331.0,0,Transient-Party,51.16,0,0,Check-Out,Cassidy Paul,howardwallace@example.com,8834410492,38567869588735,2025-04-17 +City Hotel,0,0,2017,July,30,23,1,1,2,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,85.56,0,0,Check-Out,Andrew Lopez,laurawilliams@example.com,+1-768-391-1191x85677,639066355061,2025-03-01 +City Hotel,0,28,2017,February,8,20,2,4,2,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,179.71,0,1,Check-Out,Tyler Reynolds,rrichardson@example.net,001-840-362-3256x798,4899820177195,2024-10-24 +City Hotel,0,43,2017,November,46,12,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,93.22,0,0,Check-Out,Matthew Dunlap,coxbarbara@example.org,+1-341-395-2588,3512273968731271,2025-08-20 +Resort Hotel,1,142,2017,August,31,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,238.0,179.0,0,Transient,65.02,0,1,Canceled,Alicia Nguyen,allenmario@example.org,001-827-425-7678x5997,3571260887286444,2025-12-15 +City Hotel,0,58,2017,June,24,12,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,233.0,0,Transient-Party,94.42,0,0,Canceled,Carol Yang,xrowe@example.net,001-989-744-1235x9067,4774507863929428,2024-03-30 +City Hotel,0,5,2017,August,32,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,B,1,No Deposit,244.0,179.0,0,Transient,97.89,0,1,Check-Out,Richard Johnson,vaughankatrina@example.net,(638)482-3921x46468,6549713511484670,2024-09-27 +Resort Hotel,0,61,2017,January,3,13,1,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Check-Out,Andrew Edwards,adammorales@example.org,001-976-400-6505,180050496639334,2025-05-18 +Resort Hotel,0,16,2017,November,46,11,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,318.0,179.0,0,Transient-Party,3.89,0,1,Check-Out,Parker Knight,zachary70@example.com,+1-913-319-3009x132,6011436887643393,2025-11-09 +City Hotel,1,199,2017,January,2,3,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,96.23,0,0,Canceled,William Morales,lfreeman@example.com,536.331.6540x9872,6556954243867069,2024-08-15 +City Hotel,0,12,2017,November,48,25,1,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.39,0,1,Check-Out,Christine Singh,seanharvey@example.org,+1-823-957-1510,4966191131399652,2025-05-31 +Resort Hotel,0,0,2017,August,31,4,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,60.9,1,0,Check-Out,Chad Taylor,pattersonstacey@example.org,823-849-9892x3526,3584905301852917,2024-07-05 +City Hotel,0,95,2017,January,2,10,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.83,0,1,Check-Out,William Hall,hbenson@example.org,(825)360-5367x86973,346487367084326,2025-03-24 +City Hotel,1,151,2017,May,20,14,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,97.81,0,0,Canceled,Bianca Ortega,adamsrenee@example.org,001-345-787-5184x37491,348142943849126,2024-04-07 +City Hotel,0,22,2017,April,16,20,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient,82.43,0,2,Check-Out,James Pena,jacksonjessica@example.net,001-379-303-9158x827,3562019319832667,2024-09-01 +Resort Hotel,0,19,2017,January,2,2,1,3,2,0.0,0,Undefined,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,85.72,1,1,Check-Out,Matthew Austin,veronicalane@example.net,631-951-3101x4057,6529889080839892,2025-08-08 +Resort Hotel,1,2,2017,June,26,28,3,2,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,131.6,0,0,Canceled,Bernard Chang,jsmith@example.com,(529)924-0955x1910,4550918479007,2025-06-20 +City Hotel,0,5,2017,April,17,25,2,4,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,252.0,0,0,Check-Out,Eric Walker,ewilliams@example.com,(403)523-0899,180085350268085,2024-11-07 +Resort Hotel,0,15,2017,April,14,4,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,14.0,179.0,0,Transient,124.33,0,1,Check-Out,Darren Thompson,patriciaevans@example.org,(581)263-9862x4932,6536894069074587,2024-04-12 +Resort Hotel,0,3,2017,April,18,30,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,223.52,1,2,Check-Out,James Dudley,justin10@example.org,698-287-1256,3506014066343165,2025-10-12 +Resort Hotel,0,8,2017,May,20,15,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,41.84,1,0,Check-Out,Brooke Quinn,lisadavis@example.org,790.980.2148x27797,3542157013789653,2025-10-17 +City Hotel,0,1,2017,September,37,16,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,63.0,0,Transient,85.72,0,1,Check-Out,Ronnie Jenkins,qruiz@example.org,796.637.9159,4276079196208972,2025-04-20 +City Hotel,0,12,2017,March,13,30,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,198.76,0,0,Check-Out,Cameron Torres,chapmanyolanda@example.com,001-223-461-9257x5014,30195118988411,2024-09-09 +City Hotel,1,404,2017,February,8,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,127.56,0,0,Canceled,Elizabeth Brock,dylan09@example.net,650-916-7577,2243224379818155,2026-01-18 +City Hotel,0,11,2017,June,24,10,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,79.99,1,0,Check-Out,Jessica Smith,danielhuffman@example.org,8196819326,3561204558647148,2025-05-31 +City Hotel,1,107,2017,January,4,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,94.71,0,2,Canceled,Jose Jordan,youngjoshua@example.org,938.513.7654x9104,345888296024500,2026-01-05 +Resort Hotel,1,4,2017,June,22,1,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,308.0,179.0,0,Transient,50.14,0,1,Canceled,Patrick Blair,igarcia@example.net,(692)633-7702,6011006532318814,2024-04-19 +Resort Hotel,0,108,2017,November,46,12,1,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient-Party,95.43,1,0,Check-Out,Heather Kim,nicolerandolph@example.net,694-686-0811,3589755871880417,2025-01-21 +Resort Hotel,0,43,2017,March,11,15,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,G,1,No Deposit,240.0,179.0,0,Transient,221.98,0,2,Check-Out,Michael Weber,michael82@example.com,+1-978-890-2901,2575561321254924,2025-01-12 +City Hotel,1,431,2017,December,52,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,99.28,0,0,Canceled,Dana Stanley,gina98@example.net,+1-383-507-9127x041,349693857924312,2026-01-01 +Resort Hotel,0,40,2017,September,35,2,0,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,239.0,179.0,0,Transient,49.58,0,1,Check-Out,Lori Thompson,jstone@example.org,511-589-8161,213114011990126,2026-01-04 +City Hotel,0,34,2017,December,49,5,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,60.84,0,0,Check-Out,David Sullivan,jramirez@example.net,001-607-757-0491,4655846655923,2024-08-20 +City Hotel,1,2,2017,January,2,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,139.34,0,0,No-Show,Felicia Thompson,robert74@example.net,+1-948-666-8197x376,213176444090824,2024-11-21 +Resort Hotel,1,42,2017,April,14,4,3,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,239.0,179.0,0,Transient,52.47,0,0,Canceled,Tyler Watson,georgejackson@example.net,8632701408,180087884966325,2025-08-01 +City Hotel,0,64,2017,April,15,12,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,137.22,0,0,Check-Out,Ryan Adams,qwaller@example.org,+1-677-812-8591x1958,3586682119699123,2024-04-29 +City Hotel,1,273,2017,June,23,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,105.71,0,0,Canceled,Jeanette Moore,alan64@example.com,001-659-479-9411,3589545764841356,2025-04-24 +Resort Hotel,0,173,2017,January,5,31,4,10,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,312.0,179.0,0,Transient-Party,0.63,0,0,Check-Out,Shelia Dixon,huynhwendy@example.net,363.230.7146,5153565099814788,2025-07-10 +City Hotel,0,12,2017,July,30,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,27.0,179.0,0,Transient-Party,105.27,0,0,Check-Out,Jennifer Evans,ycarter@example.com,835-264-5462,4860484567318693,2025-01-30 +City Hotel,1,311,2017,May,19,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,91.01,0,0,Canceled,Richard Wood,robin66@example.org,542-391-8499x1108,2297097911547531,2026-03-24 +Resort Hotel,0,56,2017,March,11,9,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,236.01,1,2,Check-Out,Samuel Wolfe,josephjohnson@example.org,+1-553-291-5857,4565666214372,2025-07-17 +Resort Hotel,1,92,2017,October,41,13,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,140.0,179.0,0,Transient,41.34,0,0,Canceled,Shawn Waters,zbarnett@example.org,839-225-7611,4254316644331584,2024-09-15 +City Hotel,1,12,2017,June,26,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,64,Transient-Party,62.48,0,0,Check-Out,Tammy Long,laurennelson@example.org,(581)847-4284x9685,574116790456,2025-11-10 +Resort Hotel,1,251,2017,March,9,2,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,179.0,179.0,0,Transient,95.25,0,0,Canceled,Mary Morgan,garciarobert@example.com,589.832.5217x95969,566372526111,2025-02-06 +City Hotel,0,14,2017,December,52,27,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.24,0,0,Check-Out,Melissa Lyons,gwhite@example.org,416.465.8112x293,30283798672610,2025-05-08 +City Hotel,0,25,2017,September,36,4,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,63.05,0,1,Check-Out,Philip Gilmore,ubishop@example.org,(401)491-7705x561,4315651847604834,2025-01-06 +Resort Hotel,0,10,2017,February,8,21,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,240.0,179.0,0,Transient,201.14,1,0,Check-Out,Stacy Adkins,fgross@example.com,920.726.3661,3568475765555919,2024-08-12 +Resort Hotel,0,155,2017,January,4,22,1,0,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,123.0,0,0,Check-Out,Dale Bartlett,taylor02@example.org,001-935-693-0560x2367,3508942998796175,2024-06-18 +Resort Hotel,0,98,2017,August,31,3,2,6,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Transient,177.03,0,1,Check-Out,Jasmine Bradshaw,ylee@example.com,001-997-682-3332,180062172792840,2024-12-18 +City Hotel,0,39,2017,June,24,11,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,191.52,0,1,Check-Out,Brian Wells,trujillosamantha@example.org,+1-741-429-6647x719,2279311043810606,2026-03-15 +City Hotel,1,163,2017,December,52,29,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.86,0,0,Canceled,Jimmy Newman,jonathan29@example.com,+1-893-279-6264x455,4641464543218643,2025-11-27 +Resort Hotel,0,194,2017,November,48,29,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,1,Refundable,139.0,179.0,0,Transient-Party,77.31,0,0,Check-Out,Tiffany Mcgee,adam56@example.net,744-473-4205x6795,2280281473523648,2024-04-25 +City Hotel,1,44,2017,July,27,5,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,44.35,0,2,Canceled,Courtney Nelson,kmitchell@example.com,001-481-201-1443x228,4880028328671399,2025-07-19 +City Hotel,1,109,2017,November,45,9,1,1,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,62.9,0,0,Canceled,Donna Dunn,zimmermantravis@example.com,437-324-6498x747,3516698254396726,2024-03-28 +Resort Hotel,0,2,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient-Party,61.9,0,0,Check-Out,Jessica Barnett,isolomon@example.com,272.847.6268,6011904793800910,2024-11-20 +City Hotel,0,3,2017,June,23,8,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.47,0,0,Check-Out,Richard Long,carloshensley@example.net,001-279-694-4231x1324,4757959303208973,2025-03-27 +City Hotel,0,10,2017,November,48,29,1,1,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,100.19,0,1,Check-Out,Elizabeth Ruiz,djohnson@example.com,(615)805-1807,3520754045472633,2024-09-06 +City Hotel,0,45,2017,November,45,8,1,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,125.3,0,1,Check-Out,Lisa Goodwin,paul03@example.com,919.916.6612,4385021309472,2025-11-21 +Resort Hotel,0,0,2017,September,39,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,49.4,0,0,Check-Out,Rachel Jones,sarah57@example.org,(789)821-1900x66705,6011268297744697,2025-01-28 +City Hotel,0,0,2017,August,33,17,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,G,0,No Deposit,9.0,179.0,0,Transient,82.09,0,1,Check-Out,Scott Nunez,estradaerin@example.org,293-709-4288x933,6011661717951613,2025-08-22 +City Hotel,1,105,2017,December,49,4,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,112.95,0,0,Canceled,Ashley Prince,holly14@example.org,675.663.8866x16186,6011697652318400,2025-11-13 +City Hotel,1,160,2017,November,44,1,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.34,0,2,Canceled,Christina Murray,garciaangel@example.net,4827998057,3510837985590407,2025-07-12 +City Hotel,1,54,2017,September,36,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,120.71,0,0,Canceled,Alexander Drake,boyertammy@example.net,(521)659-7965,4089817969859837,2025-01-23 +City Hotel,0,16,2017,October,43,28,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.51,0,1,Check-Out,James Ruiz,mnicholson@example.org,(445)881-5705x8026,180043906367364,2025-11-14 +Resort Hotel,0,7,2017,September,38,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,17.0,68.0,0,Transient,47.01,0,0,Check-Out,Ronald Smith,simpsonjames@example.org,684-694-8769x31709,4581315515462516438,2025-04-08 +Resort Hotel,0,20,2017,October,43,25,0,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,32.0,179.0,0,Transient-Party,63.23,0,0,Check-Out,Joshua Henderson,gerald13@example.net,+1-853-823-4873x3504,4238867315980910,2025-08-02 +Resort Hotel,1,146,2017,October,43,25,3,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,177.01,0,2,Canceled,Mr. Michael Peters,douglas70@example.com,001-740-448-9869x903,6559107208624226,2025-02-01 +City Hotel,0,80,2017,March,12,23,1,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.1,0,3,Check-Out,Nicholas Berry,elizabeth92@example.org,(370)270-9185x77141,676374392964,2024-05-13 +City Hotel,0,2,2017,May,18,1,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,A,1,No Deposit,12.0,179.0,0,Transient,175.76,0,2,Check-Out,William Werner,leonardwallace@example.org,001-925-741-8377x43869,2299759118803516,2024-05-21 +Resort Hotel,1,65,2017,November,48,27,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,G,1,No Deposit,240.0,179.0,0,Transient,90.9,0,3,Canceled,Craig Tate,sramsey@example.org,283-980-9835,180047801383269,2026-01-11 +City Hotel,1,140,2017,November,44,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,18,Transient,66.26,0,1,Canceled,Jessica White,ramirezwalter@example.net,744.258.1835x9852,4624273092009886,2024-09-24 +Resort Hotel,1,35,2017,August,33,16,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,237.0,179.0,0,Transient,236.4,0,0,Canceled,Sara Goodman,lynn41@example.com,5553734608,2250458428112232,2024-06-17 +Resort Hotel,1,166,2017,May,21,22,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,91.9,0,1,Canceled,Mackenzie Price DDS,danabuchanan@example.net,275.505.4686x8003,3563158462242982,2025-07-12 +City Hotel,0,9,2017,November,44,3,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,95.7,0,1,Check-Out,Jared Stark,roy66@example.org,001-937-663-3035x6639,4340275374896,2025-08-14 +City Hotel,1,103,2017,January,4,26,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,112.71,0,1,No-Show,Brian Taylor,gmiller@example.org,502-435-0434,6011568469015630,2025-10-03 +City Hotel,1,95,2017,April,15,13,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.31,0,0,Canceled,Shannon Chapman,taylorsamantha@example.com,+1-516-655-2973x54332,4822514692813870660,2024-11-03 +City Hotel,0,392,2017,January,2,8,0,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,127.09,0,0,Check-Out,Alexandra Foster,johnvilla@example.com,576.255.3527x4605,4824343486403363,2025-10-24 +City Hotel,1,95,2017,October,40,5,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,16,Transient,81.89,0,1,No-Show,Kathy Ortega,dana97@example.net,443-837-6197x5540,213176684109649,2024-07-20 +City Hotel,0,50,2017,June,24,13,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.5,0,1,Check-Out,Ashley May DDS,carla56@example.com,785.773.5029x904,4816769438721348,2024-05-31 +City Hotel,0,110,2017,June,23,7,2,1,2,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,3.0,179.0,0,Transient-Party,121.66,0,0,Check-Out,Edgar Stevens,robert66@example.com,672.961.8620x40769,379980833880152,2025-07-31 +City Hotel,0,9,2017,April,15,9,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,188.87,0,1,Canceled,Jocelyn Chambers,csanders@example.com,(232)910-2529,373440701821255,2026-01-22 +City Hotel,1,298,2017,June,23,4,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,66.06,0,2,Check-Out,Stephen Walker,robinsonjacqueline@example.org,6623656827,3574414375325126,2024-05-09 +City Hotel,1,60,2017,August,34,25,2,1,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,25.0,179.0,0,Transient-Party,114.23,0,0,No-Show,Kyle Johnson,wstark@example.net,(211)817-5313x30207,2276433557403207,2025-10-04 +Resort Hotel,1,270,2017,July,28,9,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,137.0,179.0,0,Transient,97.04,0,0,Canceled,Ashley Bell,regina32@example.com,9176245562,4559215315327529,2026-02-18 +City Hotel,0,38,2017,June,24,13,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,98.91,0,0,Check-Out,Alyssa Morales,evanhenderson@example.net,769.377.3847x78901,4673487593026013,2024-06-30 +Resort Hotel,0,134,2017,June,24,12,2,3,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,79.0,0,3,Check-Out,Latoya Nelson,julia32@example.net,317.775.2399,4945195042186380571,2026-01-07 +City Hotel,1,1,2017,November,46,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,16.0,331.0,0,Transient,85.37,0,0,Canceled,Pam Miller,jennifer42@example.org,526.297.2346x50040,180079178771479,2025-01-15 +City Hotel,0,2,2017,September,36,8,1,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,62.42,0,1,Check-Out,Dillon Nelson,raymond00@example.com,(627)664-1650,3574658512959235,2026-03-25 +City Hotel,0,32,2017,November,44,1,2,1,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,E,0,No Deposit,182.0,179.0,0,Transient,98.13,0,0,Check-Out,Maxwell Whitaker,leslieoliver@example.org,+1-832-743-4061x125,4311537833919514,2025-12-10 +City Hotel,0,61,2017,August,35,28,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.86,1,2,Check-Out,Christine Jennings,megan19@example.net,(267)341-6659,2232262772365401,2024-08-03 +Resort Hotel,1,50,2017,April,17,22,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,205.58,0,1,Canceled,Ashlee Williams,robertojones@example.com,(211)833-4685x69459,2286996947425088,2025-09-15 +City Hotel,1,38,2017,April,14,5,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,206.8,0,0,Canceled,Rebecca Baker,uperkins@example.net,576-532-6488,4324366462869,2024-08-05 +Resort Hotel,0,104,2017,January,4,21,2,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,378.0,179.0,0,Transient,40.9,0,1,Check-Out,Tina Hancock,herrerajeremy@example.com,+1-204-325-1504x7085,4494672743821605410,2025-10-20 +City Hotel,0,2,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,55.12,0,0,Check-Out,Daniel Jones III,james79@example.org,+1-829-481-7341x00565,373461865138872,2026-01-11 +Resort Hotel,1,53,2017,October,42,18,0,2,2,0.0,0,BB,AUT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,40.14,0,1,Canceled,Ashley Smith,floresveronica@example.org,224.273.1424x5983,2238181181239326,2024-10-30 +Resort Hotel,0,270,2017,November,46,13,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,145.0,179.0,0,Transient,81.37,0,0,Check-Out,Matthew Garza,christopher80@example.com,001-727-867-8146,572832600587,2024-10-26 +City Hotel,0,143,2017,February,8,18,4,10,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,43,Transient,92.78,0,2,Check-Out,Patricia Williams,barry95@example.org,001-522-375-9124x4332,30050206488768,2024-05-21 +Resort Hotel,0,10,2017,September,36,2,0,2,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,240.68,0,0,Check-Out,Steven Martin,yolandanelson@example.com,(244)684-4826x894,348706833400966,2025-10-13 +City Hotel,1,314,2017,March,10,10,1,2,2,0.0,0,HB,CHE,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,228.71,0,0,Canceled,Brittany Hoffman,clarkrussell@example.com,878.712.7625x27111,349413482863052,2025-10-03 +City Hotel,0,1,2017,September,39,24,1,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,77.5,0,1,Check-Out,Sarah Frost,martinezholly@example.com,398-284-2407,6011029272689400,2025-01-18 +City Hotel,0,17,2017,October,43,21,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.99,0,0,Check-Out,Joshua Johnson,tanyahernandez@example.org,711-420-8394x0228,30053210648039,2025-04-09 +City Hotel,0,37,2017,May,18,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,1.64,1,0,Check-Out,Sherri Guzman,brenda03@example.org,001-256-567-8313x1644,4066407690822,2025-01-12 +Resort Hotel,0,2,2017,December,49,8,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,0.61,0,0,Check-Out,Charles Blevins,laurawolfe@example.org,001-558-877-3550,3557119483144126,2025-06-04 +Resort Hotel,0,167,2017,March,12,19,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,240.0,179.0,0,Transient-Party,252.0,0,2,Check-Out,Deanna Woodard,matthew95@example.net,3449580474,4812677427566604,2025-11-28 +Resort Hotel,0,0,2017,September,36,6,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,39.2,0,1,Check-Out,Elizabeth Green,ashley24@example.org,001-415-340-0829,4726067151250743892,2025-01-22 +City Hotel,1,22,2017,January,4,24,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.65,0,0,Canceled,Anthony Flores,zrodriguez@example.com,(245)777-6846x742,639095850900,2025-06-28 +City Hotel,1,23,2017,October,40,3,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,35.0,179.0,0,Transient,83.0,0,0,No-Show,Antonio Woods,regina36@example.org,(809)988-2201x860,213199576603305,2024-04-10 +City Hotel,0,181,2017,January,3,18,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,140.25,0,1,Check-Out,Mrs. Sara Hebert,gardnerdaniel@example.com,615.249.5932,2227075416343072,2025-03-13 +Resort Hotel,0,3,2017,November,45,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,16.0,221.0,0,Transient-Party,47.98,0,0,Check-Out,Thomas Reyes,harrisamy@example.net,+1-399-939-4091,30014875334547,2025-07-11 +Resort Hotel,0,29,2017,May,20,17,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,115.25,0,2,Check-Out,Richard Garcia,edwardkelly@example.net,(352)845-1609x69330,5151486626192337,2026-03-17 +City Hotel,0,63,2017,July,31,31,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.74,0,2,Check-Out,Angelica Simpson,randywalter@example.com,+1-421-725-3930x7345,4884642377448972173,2024-12-03 +City Hotel,0,8,2017,November,47,22,0,1,2,1.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,79.0,179.0,63,Transient-Party,111.32,0,1,Check-Out,Chad Thornton,harrisoneric@example.org,566.724.8050,4182630070228553296,2025-05-10 +Resort Hotel,0,0,2017,November,44,3,1,0,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,I,3,No Deposit,188.0,179.0,0,Transient,0.0,1,0,Check-Out,Emily Abbott,tmorgan@example.net,+1-695-360-5635x30600,3540418088352245,2025-04-10 +City Hotel,0,38,2017,November,45,7,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.18,0,1,Check-Out,Chad Escobar,baxtercory@example.com,001-406-364-9508x4910,3579934740679878,2025-04-01 +City Hotel,0,3,2017,June,22,3,1,1,2,1.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,210.03,0,0,Check-Out,April Arellano,ltran@example.com,265.418.0659x4954,4947862610115942360,2024-08-30 +Resort Hotel,0,97,2017,January,2,3,2,5,2,0.0,0,Undefined,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,86.39,0,0,Check-Out,Regina Davis,wilsonjimmy@example.org,+1-691-957-5347x0205,180030373960045,2024-06-24 +Resort Hotel,0,1,2017,November,44,2,1,1,1,0.0,0,BB,ESP,Direct,Corporate,1,0,1,A,A,0,No Deposit,12.0,223.0,0,Transient-Party,47.57,1,1,Check-Out,Casey Ferguson,davidclark@example.com,001-749-554-7676x580,566677742074,2024-12-07 +Resort Hotel,0,17,2017,November,44,1,1,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,111.0,1,1,Check-Out,Elizabeth Taylor,bob35@example.com,001-481-985-5743,2700575187758289,2024-04-20 +City Hotel,0,16,2017,October,41,11,0,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,77.25,0,1,Check-Out,Mr. Raymond Lawson,omcintosh@example.org,+1-834-242-4313x98719,180063698977873,2024-12-03 +City Hotel,0,2,2017,June,24,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,48.1,0,0,Check-Out,Karen Hicks,elizabethhernandez@example.org,741.867.5226x6267,060433695966,2026-02-15 +City Hotel,0,2,2017,November,45,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,17.0,45.0,0,Transient,49.15,0,0,Check-Out,Edward Patterson DDS,cordovapriscilla@example.org,734-699-3354x0208,2271670779782604,2024-10-15 +City Hotel,0,11,2017,April,16,20,0,1,3,0.0,0,BB,PRT,Corporate,Direct,1,0,1,L,A,0,No Deposit,11.0,45.0,0,Group,2.94,0,1,Check-Out,Richard Miller,james66@example.net,+1-864-267-5138x53439,4047265461859023,2025-05-23 +City Hotel,0,98,2017,March,13,31,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,168.37,0,1,Check-Out,Kathryn Mendez,manderson@example.org,590-707-9176x734,630424174237,2025-05-05 +Resort Hotel,0,13,2017,November,45,10,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,39.2,0,0,Check-Out,William Martinez,sandratrujillo@example.org,(290)998-1458,4082520897529066999,2024-11-23 +City Hotel,0,67,2017,November,47,25,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,87.44,1,1,Check-Out,Donna Wright,cookbrittany@example.com,001-686-590-1635x835,3570621483899198,2025-11-22 +City Hotel,1,395,2017,May,20,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,43.89,0,0,Canceled,Gregory Wiley,hinesaaron@example.com,345.896.7674x2554,4838210570590385,2024-10-04 +City Hotel,1,0,2017,April,17,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,116.18,0,0,No-Show,David Mora,sluna@example.org,355-385-8272,4134354099173496,2025-02-24 +Resort Hotel,1,149,2017,February,5,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,238.0,179.0,0,Transient,91.95,0,2,Canceled,Anthony Carlson,coopertricia@example.com,+1-301-275-6099x25250,6556202355993095,2024-10-27 +Resort Hotel,0,88,2017,April,14,7,0,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,238.0,179.0,0,Transient,146.22,0,3,Check-Out,Matthew Price,jonathan75@example.org,+1-905-615-0727x200,4098805495322,2025-05-12 +Resort Hotel,1,40,2017,September,35,3,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,50.14,0,3,Canceled,David Cooper,ronaldbrown@example.com,(606)845-4259x465,213111701099408,2024-07-21 +Resort Hotel,0,33,2017,January,4,21,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,78.8,1,1,Check-Out,Frank Todd,zachary33@example.com,(238)444-6914x0127,180052762534223,2025-12-23 +Resort Hotel,0,5,2017,October,44,28,0,3,1,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,E,A,1,No Deposit,241.0,179.0,0,Transient-Party,44.78,0,1,Check-Out,Eric Jones Jr.,jasonbenson@example.com,001-228-626-7626x0022,379854714925925,2024-11-27 +Resort Hotel,0,98,2017,August,33,17,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,81.0,179.0,64,Transient,110.48,0,0,Check-Out,John Stokes,bryan75@example.org,8228241958,3580558779776490,2024-09-19 +City Hotel,0,2,2017,March,13,30,0,1,2,0.0,0,BB,ITA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,82.34,0,1,Check-Out,Julie Daniels,nunezshane@example.com,432-765-4388x603,4229414166490012994,2024-08-02 +City Hotel,0,94,2017,December,49,4,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,108.99,0,1,Check-Out,Desiree Fox,jrichardson@example.com,2789368673,2711089021025001,2025-12-23 +Resort Hotel,0,1,2017,February,8,22,0,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Transient,232.71,1,0,Check-Out,Jessica Munoz,jose38@example.com,(658)476-3097,676212385170,2026-03-19 +Resort Hotel,0,92,2017,December,52,27,1,3,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,E,E,0,No Deposit,87.0,179.0,40,Transient-Party,80.0,0,0,Check-Out,Vicki Harper,mdavis@example.net,935.900.3425x0991,630476529270,2025-12-18 +Resort Hotel,0,49,2017,May,20,14,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,48.49,0,1,Check-Out,Mrs. Ashley Mooney,katrina79@example.org,(212)320-0033x924,4943623129705855824,2025-02-03 +City Hotel,0,45,2017,June,22,2,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Group,108.99,0,2,Check-Out,Gina Hayes,adam30@example.net,884.453.8535x392,3574018325651794,2025-11-13 +City Hotel,0,50,2017,February,9,26,1,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,10.0,179.0,0,Transient,241.51,1,3,Check-Out,Sylvia Clark,olsondavid@example.com,001-285-920-6512x1400,676187564486,2025-04-02 +City Hotel,0,14,2017,April,17,23,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,242.91,0,2,Check-Out,Jonathan Tanner,paul36@example.com,806.351.0237,4804832089096609092,2026-01-26 +City Hotel,0,35,2017,October,43,25,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.06,0,1,Check-Out,Cathy Little,gramos@example.org,001-808-891-7758,4197380178797636,2024-05-11 +Resort Hotel,0,41,2017,December,50,15,2,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,104.76,1,2,Check-Out,Christopher Powell,sgoodman@example.net,001-232-338-1221,30563354440969,2025-02-22 +City Hotel,0,259,2017,June,26,26,2,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,61,Transient-Party,124.8,0,0,Check-Out,Heidi Richardson,iwright@example.net,+1-985-342-7796,4483101662629419275,2025-05-07 +City Hotel,1,50,2017,March,11,11,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.78,0,1,Canceled,Shane Alvarez,fcook@example.org,(442)819-1698x32400,5526534053471704,2026-01-10 +Resort Hotel,1,275,2017,March,12,24,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,107.96,0,1,Canceled,Angela Trevino,barnetthunter@example.com,710.963.4410x12112,180099343517789,2025-09-08 +City Hotel,1,98,2017,August,34,24,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,117.64,0,0,Canceled,Denise Combs,melaniehoward@example.net,+1-378-472-5026,4156445865280613105,2025-12-19 +Resort Hotel,1,136,2017,November,48,25,1,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,227.83,1,0,Canceled,Robert Hicks,paulaperez@example.com,+1-789-634-9261x01381,4791972274209829,2025-04-11 +Resort Hotel,0,19,2017,November,45,11,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,65.15,0,1,Check-Out,Jennifer White,rachelduke@example.net,213.250.7725x19824,347124338179435,2024-07-15 +Resort Hotel,1,0,2017,November,47,19,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,C,2,No Deposit,16.0,248.0,0,Transient,43.11,1,0,No-Show,Michael Wallace,reneepatel@example.net,+1-416-289-0217,2306101106285490,2024-05-19 +Resort Hotel,0,197,2017,November,46,14,1,2,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,D,D,3,Refundable,13.0,224.0,0,Transient-Party,61.97,1,1,Check-Out,Sherri Smith,macknicole@example.com,(377)816-0787,180055750677037,2024-04-17 +City Hotel,0,3,2017,November,44,3,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.05,0,1,Check-Out,Robin Ortiz,dsmith@example.org,001-464-774-3958,3576597390714437,2025-07-28 +City Hotel,0,2,2017,March,13,30,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Contract,105.21,0,1,Check-Out,Megan Mcneil,dcampbell@example.com,001-651-979-2870x08163,2544735215749441,2024-09-15 +Resort Hotel,0,2,2017,March,12,16,3,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,2,No Deposit,247.0,179.0,0,Transient,133.89,0,1,Check-Out,Ariel Taylor,cruzamy@example.org,+1-773-305-7856x078,341770863842304,2024-10-15 +City Hotel,0,3,2017,October,44,29,1,1,2,0.0,0,SC,GBR,Direct,Direct,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,77.32,0,0,Check-Out,John Jackson,matthewmills@example.org,+1-657-736-2283x4434,6011016241047794,2025-10-09 +City Hotel,0,13,2017,November,46,12,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,191.18,0,1,Check-Out,Ashley Bell,josephreese@example.org,329-447-6987,4795632273358375,2024-08-15 +Resort Hotel,0,35,2017,January,3,17,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,348.0,179.0,0,Transient,57.0,0,1,Check-Out,Candace Perez,pamelahampton@example.com,494-837-0361x52478,4843372320127693084,2025-03-12 +City Hotel,0,3,2017,July,27,1,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.62,0,1,Check-Out,Catherine Hawkins,jason93@example.net,900.909.8800x66519,30088262301111,2025-01-03 +City Hotel,0,0,2017,April,14,5,0,4,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,160.11,0,0,Check-Out,Joshua Ruiz,elizabethvelasquez@example.net,(756)559-3170x032,213184400752429,2026-03-15 +Resort Hotel,1,191,2017,April,15,12,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,83.42,0,1,Canceled,Kelly Howard,sjohnson@example.org,238-509-0229,30147972551587,2026-03-19 +City Hotel,0,10,2017,August,34,25,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.03,0,0,Check-Out,Linda Johnson,tgonzalez@example.org,+1-753-634-8078x511,3547230515235155,2025-01-20 +City Hotel,0,2,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,44.28,0,1,Check-Out,Andrew Potter,christinegreene@example.net,712-844-7872x79943,213184691722941,2025-07-28 +City Hotel,1,151,2017,January,5,31,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,114.47,0,0,Canceled,Larry Wilson,thomas87@example.com,(922)970-0828x8738,36116156885321,2024-08-27 +City Hotel,0,15,2017,November,47,23,1,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.98,1,1,Check-Out,Richard Bush,kristy56@example.net,(845)395-3790,4338656715725341,2025-12-23 +City Hotel,1,2,2017,April,15,14,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,107.72,0,0,No-Show,Hannah Johnson,heathelizabeth@example.net,3508339253,30528669639373,2025-07-30 +City Hotel,0,21,2017,November,46,16,0,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,148.87,0,0,Check-Out,Patricia Lee,ygordon@example.com,2123104986,2281387753298600,2025-07-01 +City Hotel,1,393,2017,September,38,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,102.99,0,0,Canceled,Terri Pennington,thomasmckenzie@example.com,(224)478-7809,4984549275777777,2025-03-02 +Resort Hotel,0,13,2017,February,8,22,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,110.48,0,1,Check-Out,Marvin Vargas,weissgregory@example.net,541.735.6763x9907,4409869166271,2024-05-17 +City Hotel,1,123,2017,March,10,5,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,95.79,0,0,Canceled,Adrienne Noble,sphillips@example.net,001-668-450-5763x02353,2298605078788414,2025-02-10 +City Hotel,1,7,2017,September,36,3,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,29.69,0,0,Canceled,Mark Boyle,stevenmartinez@example.net,001-332-700-5967x6929,4243850892317550,2024-04-11 +Resort Hotel,0,81,2017,August,31,4,2,5,2,0.0,0,FB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,75,Transient,64.88,0,0,Check-Out,John Hooper,cassandra19@example.net,+1-244-854-7913,4997529490274581,2024-10-18 +City Hotel,1,47,2017,September,37,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.78,0,0,Canceled,Julie Allen,daniel36@example.com,(830)764-3105x890,4575706426785985,2026-03-02 +Resort Hotel,0,0,2017,November,45,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,1,No Deposit,15.0,179.0,0,Transient,42.49,1,2,Check-Out,Joshua York,erin72@example.net,(889)256-1403x8912,3595781777705062,2025-12-29 +Resort Hotel,1,35,2017,June,24,12,0,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,117.53,0,1,Canceled,Eric Howell,wilsonwayne@example.com,575.893.7807x2067,4641125791795,2025-06-02 +City Hotel,0,4,2017,April,15,10,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.76,0,0,Check-Out,Michelle Rivera,bradley14@example.com,768-516-8403,2570725739927109,2024-06-28 +City Hotel,0,14,2017,January,3,14,1,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,181.0,0,Transient-Party,113.8,0,1,Check-Out,Louis Savage,hawkinstammy@example.org,(676)639-7031,4587502978468943578,2026-03-10 +City Hotel,1,160,2017,June,23,5,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,109.37,0,0,Canceled,Philip Hodges,prodriguez@example.org,(613)203-9289,4939793950531,2025-08-06 +Resort Hotel,0,195,2017,March,10,7,4,7,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,321.0,179.0,0,Transient,83.88,0,0,Check-Out,Matthew Roberts,william82@example.net,621-568-1331,3558109540761326,2024-07-12 +Resort Hotel,0,29,2017,June,25,22,2,3,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,E,G,0,No Deposit,35.0,179.0,0,Transient-Party,81.81,0,0,Check-Out,Rebecca Roberts,grace27@example.org,790.758.7800,4455794486530272,2024-09-24 +City Hotel,0,0,2017,September,37,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,110.77,1,1,Check-Out,Betty Johnson,bakermark@example.org,665.425.5446x263,4803777636352779,2024-08-06 +Resort Hotel,0,91,2017,December,49,4,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,128.46,0,0,Check-Out,Jordan Peters,saracamacho@example.net,+1-724-303-7927x53424,4950291550718438,2024-11-26 +City Hotel,0,1,2017,October,41,8,1,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.92,0,2,Check-Out,Alison Walker,darrell17@example.com,493.828.0867,4661194016320,2024-09-29 +City Hotel,0,26,2017,November,47,18,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient,94.82,0,1,Check-Out,William Hansen,lisa56@example.net,(225)832-3858x820,30522420588201,2025-02-09 +Resort Hotel,1,155,2017,February,7,10,2,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,169.18,0,2,Canceled,Allison Cowan,petermartinez@example.net,9778223309,4981773239238,2026-02-06 +City Hotel,1,154,2017,January,4,25,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,123.55,0,0,Canceled,Kevin Wilson,kristenharrison@example.com,(878)318-4331,2710912325392622,2025-07-03 +Resort Hotel,1,13,2017,February,7,16,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,115.7,0,1,No-Show,Daniel Guerrero,kwilliams@example.org,638-431-0755,30490234707591,2025-04-17 +Resort Hotel,0,101,2017,March,12,19,2,2,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,1,No Deposit,320.0,179.0,0,Transient-Party,63.32,1,1,Check-Out,Michelle King,pgallagher@example.net,001-455-357-2399,060479965539,2025-09-04 +City Hotel,1,14,2017,July,28,13,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.41,0,1,Check-Out,Cynthia Le,michaelbennett@example.net,840-320-0795x288,4981718813303,2026-03-06 +Resort Hotel,0,45,2017,February,8,22,1,0,1,0.0,0,BB,RUS,Online TA,Direct,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,134.77,1,0,Check-Out,Alexis Olsen,danielhuber@example.org,615-626-4436x0511,6011557612659360,2025-12-17 +City Hotel,1,32,2017,March,10,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.0,0,2,Canceled,Tina Melendez,tiffanyriggs@example.net,(209)442-7480x944,6011619126738104,2024-10-05 +Resort Hotel,0,31,2017,December,52,30,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,E,0,No Deposit,17.0,179.0,0,Transient,244.18,1,1,Check-Out,Leslie Torres,deleonteresa@example.net,(293)446-0714x667,3523838140829081,2024-08-18 +City Hotel,0,92,2017,August,31,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,83.78,0,0,Check-Out,Kimberly Ramirez,ndowns@example.net,574-525-0481,30290959976128,2024-04-01 +Resort Hotel,1,310,2017,July,28,9,2,5,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient-Party,64.38,0,2,Canceled,Nancy Flowers,christopher62@example.net,+1-846-635-3050x569,30213319662139,2024-05-15 +City Hotel,0,16,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,129.22,0,0,Check-Out,Jessica Walsh,nicholas40@example.com,(551)441-1751,6011413096127948,2025-06-14 +Resort Hotel,0,0,2017,September,38,22,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,1.94,1,0,Check-Out,Heather Hernandez,william72@example.org,001-755-651-8073x171,4736724809756,2024-10-20 +City Hotel,0,304,2017,October,44,31,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,81.27,0,2,Check-Out,Kimberly Smith,caitlin99@example.net,+1-930-490-4611x8558,4388774522593627,2025-11-07 +City Hotel,0,66,2017,May,19,9,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,120.2,0,1,Check-Out,Anthony Rivera,kimberly52@example.org,+1-980-277-5418,2228109903848076,2025-03-28 +Resort Hotel,0,17,2017,November,48,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,E,F,0,No Deposit,15.0,76.0,0,Transient-Party,56.2,0,1,Check-Out,David Avila,cherylolson@example.org,3182065266,4258068906404029164,2024-10-28 +City Hotel,0,1,2017,November,46,17,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.39,0,1,Check-Out,Steven Miller,michaelrichards@example.net,666-371-5561,3542002343512310,2024-12-21 +City Hotel,1,18,2017,November,48,29,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,82.46,0,0,Check-Out,Jeremy Davis,michael55@example.com,001-364-557-4257x1726,4865197015796523820,2024-11-06 +City Hotel,0,154,2017,June,25,20,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.76,0,0,Check-Out,Matthew Jones,ericjohnson@example.com,889-664-4613x907,4349832746595,2024-06-12 +City Hotel,1,102,2017,November,48,29,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,144.78,0,1,Canceled,Kristen Taylor,ymahoney@example.net,830.971.3815,4712690222008996,2025-01-01 +City Hotel,0,13,2017,August,32,5,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,83.57,0,1,Check-Out,Alex Ramirez,lopezwilliam@example.net,(435)961-9251,3557113475357911,2026-03-06 +City Hotel,1,276,2017,April,15,15,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,61.93,0,0,Canceled,James Austin,pwest@example.net,5679217076,3529837416416460,2025-10-27 +Resort Hotel,0,72,2017,January,2,9,2,2,2,0.0,0,BB,CN,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,45.84,0,1,Check-Out,Sarah Phillips,erica37@example.org,217.566.6552,379041277293442,2024-09-14 +City Hotel,0,141,2017,December,51,19,1,2,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,108.47,0,2,Check-Out,Raymond Porter,jfrancis@example.org,001-423-836-1645x80599,4113359516934,2024-11-01 +City Hotel,1,298,2017,February,8,21,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,131.91,0,0,Canceled,Erica Walter,smithcharles@example.org,630-253-6232x19903,3503133284036006,2024-11-24 +City Hotel,1,102,2017,December,51,17,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.94,0,1,Canceled,Douglas Lopez,tammy57@example.com,649-214-7541x406,4975417416885159321,2024-11-23 +City Hotel,0,107,2017,December,49,6,2,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,57.73,0,2,Check-Out,Stephanie Thompson,davidhenson@example.net,(262)965-6603,4782197397742629910,2024-10-17 +City Hotel,1,208,2017,February,9,29,2,5,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,77.6,0,0,Canceled,Aaron Johnson,longrobert@example.org,(404)888-0043x105,4908461115134988961,2026-02-21 +Resort Hotel,0,0,2017,April,15,10,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,42.31,0,0,Check-Out,Michael Parker,hannah74@example.net,+1-370-369-1418,4700573526960,2026-01-24 +City Hotel,0,57,2017,March,13,24,0,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,A,1,No Deposit,10.0,179.0,0,Transient,139.05,0,1,Check-Out,Gloria Dunlap,sharris@example.com,001-721-290-8125x34694,4156715951249181,2025-09-28 +City Hotel,0,142,2017,November,46,15,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.53,0,1,Check-Out,Brian Nichols,youngallen@example.com,413.969.1538x687,4224015523709,2025-05-20 +City Hotel,1,61,2017,June,25,21,1,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,29.0,179.0,0,Transient-Party,99.02,0,0,Canceled,Douglas Frye,hsanchez@example.com,(911)956-7395,30162219584648,2025-10-19 +City Hotel,0,3,2017,April,15,9,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,168.53,0,0,Check-Out,Janet Flowers,andersoncourtney@example.com,712.523.1258x25568,2705948478855574,2025-07-23 +City Hotel,1,147,2017,February,7,13,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,127.76,0,1,Canceled,Jamie Martin,beckermatthew@example.net,681-441-7220x3564,30441571923846,2024-05-20 +Resort Hotel,1,262,2017,May,20,16,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,105.35,0,0,Canceled,Jesse Allen,rebecca05@example.org,001-649-573-8631x5101,2224285321957519,2025-04-21 +City Hotel,0,79,2017,February,8,20,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,108.42,0,0,Check-Out,Connie Thomas,schmidtandrea@example.com,300-788-9257x85063,3594969942293806,2024-05-27 +City Hotel,0,41,2017,December,49,7,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.23,0,0,Check-Out,Megan Carter,ian88@example.net,860.530.8733,4324316185676353251,2025-12-13 +Resort Hotel,0,1,2017,November,47,22,1,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,14.0,179.0,75,Transient-Party,110.21,1,3,Check-Out,Daniel Miller,hmyers@example.com,750.781.4696,676328136608,2025-08-08 +City Hotel,1,198,2017,May,20,11,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,226.8,0,0,Canceled,Tammy Taylor,steventanner@example.org,208-314-6633x217,6510126984233125,2024-11-18 +City Hotel,0,38,2017,April,15,8,0,3,2,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,93.13,0,1,Check-Out,Angel Smith,sanchezkelly@example.org,719.527.8050,4095181943230,2025-01-17 +Resort Hotel,0,2,2017,January,2,3,0,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient,51.5,0,1,Canceled,Lisa Long,michelle82@example.net,665.767.1071x1393,4905744588100702,2025-03-09 +City Hotel,0,102,2017,October,41,7,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,60.93,0,1,Check-Out,Melissa Greene,pjohnson@example.com,001-917-247-9398x91876,30359657704544,2025-06-04 +City Hotel,1,19,2017,June,24,14,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,197.06,0,1,No-Show,Brett Phillips,woodsbrianna@example.com,506-627-2764,4453297115948,2024-08-02 +Resort Hotel,0,33,2017,December,51,20,2,3,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,Non Refund,319.0,179.0,0,Transient,55.09,0,0,Check-Out,Charles Anderson,ascott@example.org,893.263.2314x55228,4053095034280436,2025-12-06 +Resort Hotel,0,2,2017,June,25,20,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,244.0,179.0,0,Transient,61.7,0,1,Check-Out,Jason Weaver,rwilliams@example.net,685.497.4962,30097100798743,2024-05-13 +City Hotel,0,56,2017,July,27,3,1,0,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,105.78,0,0,Check-Out,Susan Howard,brent71@example.net,+1-354-600-6866,6011663843246108,2025-01-06 +Resort Hotel,1,42,2017,July,29,19,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,50.52,0,0,Canceled,Christopher Sullivan,erinperez@example.com,563.349.3895x85247,6011346644176795,2024-07-05 +Resort Hotel,0,1,2017,March,11,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,251.0,179.0,0,Transient,212.94,0,0,Check-Out,Karen Mooney,urodriguez@example.com,001-288-913-9279x197,676218430095,2024-04-23 +City Hotel,0,105,2017,May,19,10,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.63,0,0,Check-Out,Daniel Martinez,ian40@example.org,963-824-6879x731,6011462032845774,2025-10-03 +City Hotel,0,0,2017,June,26,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,9.0,45.0,0,Transient,85.23,0,0,Check-Out,Andrew Lewis,rcastro@example.net,+1-825-511-9817,676103391642,2026-03-05 +Resort Hotel,0,1,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,B,0,No Deposit,17.0,179.0,0,Transient,85.46,0,0,Check-Out,Laurie Porter,briancox@example.org,6487444068,4251798810666021,2024-04-14 +Resort Hotel,0,43,2017,November,48,29,0,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,3,No Deposit,378.0,179.0,0,Transient,82.33,0,1,Check-Out,Richard Nicholson,perezanthony@example.net,(757)230-5785x74275,342007791192653,2024-06-17 +City Hotel,1,158,2017,March,13,27,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,120.23,0,0,No-Show,Chris Butler,brookelee@example.org,227.526.4548x4376,4841392534018037,2025-11-08 +City Hotel,0,33,2017,January,2,1,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,9.0,179.0,0,Transient,107.3,0,1,Check-Out,Amber Ray,uwalsh@example.net,524.824.7971x559,4678602824369319839,2025-09-16 +City Hotel,0,14,2017,June,26,27,0,2,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,D,0,No Deposit,74.0,179.0,0,Transient,119.29,0,0,Check-Out,Christine Montgomery,gomezdavid@example.org,206-974-4187x674,30493711525437,2026-03-24 +City Hotel,1,1,2017,September,38,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,1,No Deposit,15.0,85.0,0,Transient-Party,103.53,0,1,Canceled,John Munoz Jr.,mark08@example.net,402.382.9689x885,4164747603029877,2024-11-11 +City Hotel,1,177,2017,February,9,25,0,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,165.8,0,0,Canceled,Catherine Perkins,zjohnson@example.com,4475569597,4324249506755119176,2025-10-12 +City Hotel,0,323,2017,June,23,4,0,3,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,90.07,0,0,Check-Out,Brett Thomas,strongmichele@example.com,819.592.4280x03355,3581488991354075,2026-01-22 +Resort Hotel,0,135,2017,November,46,14,1,3,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,85.12,0,0,Check-Out,Jamie Robbins,dreyes@example.org,(424)603-5163,3542458849089213,2025-07-09 +Resort Hotel,0,281,2017,November,44,4,1,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Transient-Party,43.98,0,0,Check-Out,Johnathan Palmer,cruzalejandro@example.org,(430)648-9134x07244,4221296593396939,2025-08-30 +Resort Hotel,0,17,2017,June,24,16,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,303.0,179.0,0,Transient-Party,50.87,0,0,Check-Out,Wayne Parker,jennifer06@example.com,(777)550-4099x2794,372934274019421,2024-06-27 +City Hotel,0,214,2017,April,17,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,110.18,0,2,Check-Out,Lauren Howell,kellychristopher@example.org,487-332-6253,3522656888385640,2024-12-04 +City Hotel,1,117,2017,February,7,12,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,119.6,0,1,Canceled,Crystal Mitchell,andreahill@example.net,942.698.8038,4991364267540469,2025-01-27 +City Hotel,0,38,2017,February,6,7,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,245.0,179.0,0,Transient,49.06,0,1,Check-Out,Monica Madden,hopkinsjessica@example.org,6865182594,6011190582812890,2025-01-26 +Resort Hotel,0,0,2017,November,46,15,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,I,1,No Deposit,242.0,179.0,0,Transient,51.36,0,1,Check-Out,David Rivers,roliver@example.org,+1-700-252-6690x309,180090041266282,2025-03-05 +City Hotel,0,13,2017,October,44,31,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,131.31,1,2,Check-Out,Julie Moon,manuelgarcia@example.org,387-844-6076,4776881371193706116,2025-07-24 +City Hotel,0,23,2017,June,25,23,2,1,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,167.77,0,0,Check-Out,Angela Rivera,michellehamilton@example.com,484-369-6459,4113240644531,2024-09-24 +Resort Hotel,0,231,2017,March,10,11,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient-Party,63.48,0,0,Check-Out,Nicholas Massey,eric41@example.org,(528)211-1683x44746,4376210707295,2025-11-02 +City Hotel,1,392,2017,April,15,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient,133.43,0,0,Canceled,Richard Wilson,sarahmiller@example.net,531-358-5565,6011462233665740,2025-01-29 +City Hotel,1,13,2017,June,24,10,1,0,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.4,0,0,Canceled,Peter Gonzalez,taylorjessica@example.net,614-648-3350,4492805998451453,2024-09-26 +City Hotel,1,388,2017,February,5,1,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,64.0,179.0,0,Transient,103.77,0,0,Canceled,Susan Mora,morgancruz@example.net,+1-638-863-8476x49229,564672432825,2024-08-14 +City Hotel,0,38,2017,June,25,17,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.07,0,2,Check-Out,Valerie Patterson,markfields@example.com,+1-592-451-0852x009,3573126291500530,2024-05-21 +City Hotel,0,28,2017,July,30,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,88.67,0,0,Check-Out,Jeffrey Brown,amandaatkinson@example.net,001-553-896-8291,4217746857891,2024-10-20 +Resort Hotel,0,1,2017,November,45,5,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,E,C,0,No Deposit,11.0,179.0,0,Transient,51.03,0,1,Check-Out,John Kemp,ifrench@example.com,001-880-998-7949x268,4635171444754,2025-08-02 +City Hotel,1,42,2017,June,24,12,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,40,Transient,81.67,0,0,Canceled,Calvin Bowers,ajohnson@example.net,335-776-1755x045,6011727014850186,2024-12-03 +City Hotel,0,39,2017,September,36,3,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.16,0,1,Check-Out,Brandon Graves,mark68@example.net,738-427-7542,36727119558118,2024-06-11 +Resort Hotel,0,31,2017,November,45,9,1,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,45.05,1,0,Check-Out,Joshua Russell,scott93@example.org,001-980-938-1898x5928,4966091571594,2025-11-28 +Resort Hotel,0,159,2017,December,50,12,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,1,Refundable,135.0,179.0,0,Transient-Party,52.2,0,1,Check-Out,Nathan Brown,travis96@example.com,610-795-5101,3527509890929480,2025-12-28 +City Hotel,1,21,2017,November,44,1,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,85.56,0,1,Canceled,Benjamin Wilson,whitecrystal@example.net,435.888.0994,4941863073012,2025-04-21 +Resort Hotel,0,16,2017,April,14,2,1,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,252.0,1,1,Check-Out,Joshua Ho,monica94@example.net,405-324-3425,4326462925988,2025-05-25 +City Hotel,0,0,2017,January,3,18,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,2.92,0,0,Check-Out,Mark Woods,adampearson@example.net,281.325.8184,30322970660355,2024-10-18 +Resort Hotel,0,40,2017,May,19,12,2,5,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,95.9,0,0,Check-Out,George Taylor,mark84@example.com,(980)887-6116,3580709288667049,2026-03-11 +City Hotel,1,444,2017,May,22,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.94,0,0,Canceled,John Ryan,mossgary@example.org,(364)689-1266x21458,30033726743813,2025-05-18 +City Hotel,1,274,2017,April,14,4,2,5,2,2.0,0,HB,CHE,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,127.76,0,2,Canceled,Andrea Taylor,castillonancy@example.org,+1-453-325-8533x389,2720532849492134,2025-11-12 +City Hotel,1,411,2017,March,10,2,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,84.84,0,0,Canceled,Kellie Mitchell,diana50@example.net,616.754.6029x31442,2272897667480558,2024-08-17 +City Hotel,0,16,2017,February,7,11,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,177.83,0,1,Check-Out,Jennifer Buck,angelasmith@example.org,474.605.9520x351,3580903564832886,2025-10-18 +Resort Hotel,0,86,2017,December,51,16,0,1,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,110.05,1,0,Check-Out,Dustin Hernandez,romerosean@example.net,220.293.8317x036,3515617029193813,2024-12-31 +Resort Hotel,0,0,2017,November,48,29,1,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,0,No Deposit,17.0,179.0,0,Transient,0.87,0,0,Check-Out,Alex Johnson,johnsoncharles@example.net,+1-323-532-3902x6298,3587487594591616,2025-11-08 +City Hotel,1,200,2017,September,37,15,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,62.34,0,1,Check-Out,Jody Rogers,nealkatelyn@example.com,+1-707-432-1446x70476,676106457465,2025-09-08 +City Hotel,0,18,2017,June,23,1,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,141.73,0,0,Check-Out,Laura Medina,rodriguezbradley@example.com,459.223.9489,4532465449822157645,2025-03-02 +City Hotel,0,89,2017,March,11,17,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,90.54,0,0,Check-Out,Brittany Sanchez,romerodawn@example.com,606.767.4968,373303178601768,2025-05-04 +City Hotel,0,1,2017,August,34,23,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.74,0,2,Check-Out,Christine Green,jonathan32@example.com,+1-928-759-6629x60013,3594676285628296,2026-02-03 +City Hotel,1,284,2017,April,17,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,115.92,0,0,Canceled,Matthew Shaw,fharrison@example.net,483-401-6383x8621,3557506706022495,2025-01-20 +Resort Hotel,0,30,2017,April,17,22,1,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,3,No Deposit,244.0,179.0,0,Transient,249.66,0,3,Check-Out,Lonnie Martinez,hartkristen@example.org,001-555-867-5224x6759,4363503763458,2024-04-12 +City Hotel,0,21,2017,November,45,6,1,1,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,143.95,0,1,Check-Out,Vincent Reeves,smithjoseph@example.net,(259)881-5331x808,3526693507323377,2024-07-29 +City Hotel,1,11,2017,June,24,10,2,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,139.2,0,0,Canceled,Matthew Harris,richardvillanueva@example.net,307.349.3408,4950277813184591,2025-08-30 +City Hotel,1,338,2017,April,15,14,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.56,0,0,Canceled,Jennifer Hudson,chadpeterson@example.org,+1-540-675-6394x7568,4923105424009101,2026-01-15 +City Hotel,0,1,2017,February,8,19,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,40.0,67.0,0,Transient,96.72,0,0,Check-Out,Gina Clark,linda20@example.org,(897)538-4149x005,3550533759903550,2024-07-03 +City Hotel,0,2,2017,June,24,12,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,0.0,0,1,Check-Out,Amanda Garcia,patelwilliam@example.net,(361)396-5263x309,6514467227473920,2025-10-14 +Resort Hotel,0,89,2017,December,51,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,82.06,1,0,Check-Out,Seth Olsen,tmay@example.net,9275865798,3555668944766150,2024-04-28 +City Hotel,0,91,2017,May,19,6,2,5,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.01,0,3,Check-Out,Carla Patterson,parkerstephen@example.com,609-560-8085x603,3595667683736939,2024-10-04 +Resort Hotel,0,163,2017,November,48,28,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,Refundable,312.0,223.0,0,Transient-Party,61.02,0,0,Check-Out,Jeffrey Glenn,ernesthunter@example.com,667.536.8167x179,580177024701,2024-06-16 +City Hotel,1,105,2017,March,11,13,2,3,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.48,0,0,Canceled,Shelby Wood,umccormick@example.net,001-917-815-1404x303,4228007846921164,2025-12-04 +City Hotel,1,26,2017,September,37,17,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,39.76,0,0,Canceled,Katherine Holder,christiancampos@example.net,238-959-3736x762,30596381673749,2026-03-15 +Resort Hotel,0,29,2017,July,29,16,2,0,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,H,A,0,No Deposit,14.0,179.0,0,Transient-Party,85.26,0,0,Check-Out,Gregory Rivers,michaelherrera@example.org,(668)444-0124,2278684585581657,2025-04-08 +City Hotel,0,21,2017,April,17,23,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,92.74,0,0,Check-Out,Katherine Davenport,griffithtravis@example.org,001-248-496-1703x57657,3592873108935881,2024-06-11 +City Hotel,0,4,2017,September,38,22,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,113.04,1,1,Check-Out,Emily Potter,tbutler@example.org,5788655501,4105076413078102,2024-12-12 +City Hotel,0,339,2017,March,10,9,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.04,0,0,Check-Out,Vanessa Green,youngsusan@example.com,(851)800-8569x6080,3570306666354472,2024-04-12 +City Hotel,1,93,2017,February,9,25,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,213.97,0,0,Canceled,Edward Simmons,christophersmith@example.org,838-877-5504,345333346049991,2025-07-16 +Resort Hotel,0,0,2017,July,29,21,1,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,48.98,0,1,Check-Out,Robert Lane,hannah37@example.net,+1-687-367-3658x35876,4329174605197440,2026-01-10 +City Hotel,1,314,2017,June,24,11,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,163.0,179.0,0,Transient,106.99,0,0,Canceled,Sandra Smith,michele93@example.org,3089103569,371298982134067,2024-06-27 +City Hotel,0,10,2017,February,9,24,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,A,2,No Deposit,13.0,179.0,0,Transient,252.0,0,1,Check-Out,Charles Smith,sheila51@example.net,233.592.3172x044,4346643423659988,2025-12-09 +City Hotel,0,1,2017,September,36,2,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,86.91,0,2,Check-Out,Carl Bradley,elizabeth49@example.com,593.374.6823,4972736904794779546,2025-08-06 +City Hotel,1,76,2017,April,14,4,0,3,2,0.0,0,SC,,Direct,Direct,0,0,0,B,A,0,No Deposit,11.0,179.0,0,Transient,140.81,0,0,Canceled,Joseph Cook,becktroy@example.com,001-483-840-4739,180056789029927,2026-03-07 +City Hotel,0,96,2017,December,52,30,1,1,2,0.0,0,BB,SWE,Direct,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,5.59,0,3,Check-Out,Robert Brown,ltaylor@example.com,475.540.9589x66179,501848487051,2024-11-16 +City Hotel,0,22,2017,January,2,8,1,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,3.67,0,1,Check-Out,Cameron West,garciatanya@example.org,453.976.0906,4914773726747966,2024-10-01 +Resort Hotel,0,105,2017,December,50,12,0,2,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,C,1,No Deposit,144.0,179.0,0,Transient-Party,106.77,0,0,Check-Out,Johnathan Harper,shermankaitlyn@example.org,830-228-8350x43322,060499777377,2025-04-04 +Resort Hotel,0,2,2017,November,44,2,2,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,63.27,1,2,Check-Out,Francisco Johnson,xgray@example.net,7779966667,4974280691850,2026-02-20 +City Hotel,0,10,2017,January,2,3,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.56,0,1,Check-Out,Richard Scott,nguyentiffany@example.net,001-850-225-4915x7723,3573407107323428,2024-07-21 +Resort Hotel,0,97,2017,November,45,7,2,2,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,78.62,0,0,Check-Out,Sharon Jones,patricia87@example.org,+1-695-306-2501x293,2667649294381623,2025-11-29 +City Hotel,1,29,2017,July,27,3,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,84.18,0,0,Canceled,Elizabeth Melton,douglas37@example.com,+1-660-442-6343x07237,3550176346542505,2025-11-20 +Resort Hotel,0,40,2017,May,20,18,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,174.0,179.0,0,Contract,111.41,0,1,Check-Out,Stephanie Lopez,awatkins@example.com,942.347.4766x835,4204138627041,2024-07-09 +City Hotel,0,65,2017,November,47,22,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient-Party,166.97,0,2,Check-Out,Eileen Snyder,davidbrooks@example.com,001-353-514-2455,3593719743947147,2026-02-04 +Resort Hotel,0,192,2017,March,14,30,0,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,81.0,179.0,0,Transient-Party,122.62,0,0,Check-Out,Shannon Donovan,freyes@example.org,+1-512-775-1938x4584,4319187303324311987,2026-03-11 +City Hotel,1,48,2017,November,44,3,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,77.18,0,0,Canceled,Monica Smith,amyharrison@example.com,381.585.4487,38248210627379,2025-10-21 +City Hotel,0,23,2017,November,48,27,2,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,12.0,222.0,0,Transient,62.86,0,0,Check-Out,Valerie Sharp,jasonjohnson@example.com,704-768-3318x763,3502636943214344,2025-11-22 +City Hotel,1,41,2017,November,47,22,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.53,0,2,No-Show,Shawn Brooks,daughertydarrell@example.net,001-414-528-4157x75723,30220521977023,2024-04-29 +City Hotel,1,0,2017,April,17,25,2,1,2,1.0,0,BB,PRT,Direct,Undefined,0,1,0,B,B,1,No Deposit,9.0,179.0,0,Transient,218.93,0,0,Canceled,Doris Rios,ywhite@example.net,480.906.4400x8728,588003885153,2025-04-27 +City Hotel,1,315,2017,February,6,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,78.07,0,0,Canceled,Dalton Santos,xboyd@example.net,(270)329-4398,6501525980303314,2024-12-02 +Resort Hotel,0,47,2017,November,44,1,2,5,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,53.42,0,1,Check-Out,Anna Chavez,timbaker@example.net,001-793-894-4119x042,4482748094974295,2024-11-03 +Resort Hotel,1,50,2017,June,26,26,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,0,Contract,77.34,0,0,Canceled,Theresa Mercer,valdezjoseph@example.com,7248182715,3531253120569097,2026-01-05 +City Hotel,1,197,2017,April,15,12,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,162.8,0,0,Canceled,David Wallace,joanna44@example.com,+1-449-929-3805x34435,379451507696969,2026-03-22 +City Hotel,1,147,2017,November,44,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,169.93,0,0,Canceled,Brittney Brown,mccoycrystal@example.net,520-512-5881,4687528049785910,2024-11-01 +Resort Hotel,0,0,2017,January,2,6,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Group,197.57,0,0,Check-Out,Michele Stewart,hosborn@example.net,7787529056,4793588298261,2025-12-10 +Resort Hotel,0,1,2017,September,37,16,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,222.0,0,Transient,51.92,0,3,Check-Out,Jennifer Ross,sharon99@example.org,+1-304-506-5518x03363,3547339617294489,2024-09-19 +City Hotel,1,112,2017,May,22,26,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,156.0,179.0,0,Transient,120.76,0,0,Canceled,Alexandra Gonzalez,chadjones@example.net,865-719-4933,180062607671627,2025-08-12 +City Hotel,1,0,2017,July,28,13,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,2.49,0,0,Canceled,Megan Allison,jacobjohnson@example.com,001-920-836-1854,378188920990188,2025-06-06 +Resort Hotel,0,3,2017,April,15,10,0,1,1,2.0,0,BB,USA,Direct,Direct,0,0,0,G,G,0,No Deposit,252.0,179.0,0,Transient,173.23,1,0,Check-Out,Rhonda Simmons,david79@example.com,001-545-850-5678x4491,4538097832581127,2025-05-08 +Resort Hotel,0,104,2017,April,15,9,2,5,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,192.91,0,1,Check-Out,Austin Taylor,kevinvazquez@example.com,(357)573-3752,2446157471865754,2025-07-03 +Resort Hotel,0,18,2017,April,16,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,253.0,179.0,0,Transient-Party,62.82,0,0,Check-Out,Brittany Underwood,wking@example.net,592-762-8183,6011376910197787,2024-05-09 +Resort Hotel,1,41,2017,March,13,27,1,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,214.3,0,0,Canceled,Stephanie Cortez,campbellrobert@example.com,(574)717-0290x17530,2278451003887516,2025-02-25 +City Hotel,1,134,2017,March,10,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.76,0,1,Canceled,Kathy Adams,gateskyle@example.net,230-952-7080,4740502892412802,2025-10-05 +Resort Hotel,1,239,2017,January,2,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,107.89,0,2,Canceled,David Oconnell,wendy16@example.org,+1-701-763-4729x0531,3509949494979204,2026-03-22 +Resort Hotel,0,0,2017,April,15,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,52.51,0,0,Check-Out,Christine Mullins,colemandonna@example.net,582-725-2964,36809678930175,2024-07-02 +Resort Hotel,0,14,2017,November,47,24,1,3,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Check-Out,Jerry Johnston,state@example.org,327-435-5676x573,4422123345198354717,2025-04-18 +City Hotel,0,10,2017,October,43,22,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,137.0,179.0,0,Transient-Party,79.22,0,0,Check-Out,Richard Jackson,dbrown@example.org,(720)867-2517x2641,376489710278798,2025-12-20 +City Hotel,0,30,2017,May,21,21,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,152.0,179.0,0,Transient,129.01,0,1,Check-Out,Kimberly Sullivan,scottsmith@example.com,(757)271-2505,3542430880831555,2024-05-07 +City Hotel,0,44,2017,June,24,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,1,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,123.02,0,0,Check-Out,Margaret Terry,lauren12@example.net,+1-667-571-3335x535,4777055847981,2025-09-21 +Resort Hotel,1,287,2017,April,17,24,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,Samuel Bowman,simmonsmorgan@example.com,671-895-3472,213183031789438,2026-01-28 +City Hotel,1,49,2017,April,18,29,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.35,0,2,Canceled,Thomas Macdonald,brooksemily@example.net,001-531-584-1805x4871,4113574676489,2024-12-18 +City Hotel,0,17,2017,September,36,9,2,1,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,H,2,No Deposit,15.0,179.0,0,Transient,43.75,1,0,Check-Out,Linda Johnson,steeleamanda@example.com,907-557-3130x05103,180013845482608,2026-03-27 +City Hotel,1,15,2017,November,46,11,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.09,0,1,Canceled,Dr. Diana Espinoza,awatkins@example.org,209-502-4593x749,379865160113113,2025-04-09 +City Hotel,1,13,2017,August,35,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient,46.99,0,0,No-Show,Sean Thomas,burtonbrett@example.net,001-470-778-5221x0234,4109055524941,2025-01-11 +Resort Hotel,0,145,2017,February,5,2,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,151.61,0,2,Check-Out,Pamela Davis,gonzalesdonald@example.org,(219)605-3086x866,4656321851387463,2025-12-17 +Resort Hotel,0,89,2017,December,51,19,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,49.81,0,0,Check-Out,Cindy Williams,woodsjimmy@example.net,+1-476-389-3662x9748,213129380044107,2025-05-11 +City Hotel,1,50,2017,August,34,24,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,220.0,0,Transient,129.49,0,0,No-Show,Stacy Smith,jpitts@example.org,(994)760-8809x80463,4262101972642962,2026-02-23 +Resort Hotel,0,29,2017,May,18,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,90.0,179.0,0,Transient-Party,86.51,1,1,Check-Out,Gary Myers,bdavenport@example.com,001-639-433-9465x850,4119926431465,2025-01-09 +Resort Hotel,0,52,2017,June,24,14,0,2,2,0.0,0,FB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,84.0,179.0,0,Transient-Party,110.51,0,0,Check-Out,Richard Schmidt,nperez@example.com,3404636607,4379512101233,2024-04-24 +Resort Hotel,0,24,2017,May,19,9,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,250.84,0,2,Check-Out,Michelle Brown,fbeltran@example.net,+1-578-713-7036x05446,4547849117912,2026-02-05 +City Hotel,0,26,2017,June,24,11,0,10,2,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient-Party,123.48,0,0,Check-Out,Claire Warren,jennifer08@example.com,(463)538-5606x5369,4278595871545055,2024-12-23 +City Hotel,0,52,2017,December,52,25,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.48,0,1,Check-Out,Margaret Chandler,katherine91@example.net,291-731-0802,4514056531245846,2024-10-08 +City Hotel,1,15,2017,July,27,3,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,106.12,0,0,Canceled,David Jones,hannah51@example.com,614.756.4561x56707,4108364692637328,2025-03-14 +City Hotel,1,1,2017,January,2,10,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,134.18,0,1,Canceled,Dillon Brown,lfrench@example.org,+1-707-486-2287x01155,2276427086300454,2024-07-02 +City Hotel,0,16,2017,April,14,4,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,207.3,0,2,Check-Out,Steven Morgan,thomascameron@example.net,001-470-593-7789x926,180021706449194,2025-09-15 +City Hotel,0,100,2017,January,2,10,0,3,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,102.5,0,0,Check-Out,Sandra Lee,donald17@example.org,454.297.0600,675991776609,2025-03-11 +City Hotel,0,11,2017,January,4,21,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient-Party,109.52,1,1,Check-Out,Ashley Robertson,qruiz@example.net,952-267-8183x436,180020255170573,2024-04-06 +Resort Hotel,0,16,2017,December,48,2,2,2,2,0.0,0,Undefined,IRL,Groups,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,99.75,0,0,Check-Out,Eric Flores,swagner@example.net,908-834-4726,569586464533,2025-08-29 +Resort Hotel,0,2,2017,December,50,10,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,D,0,No Deposit,10.0,179.0,0,Transient,62.61,1,0,Check-Out,Christina Weber,btaylor@example.org,836-399-5477x99490,6011644716378715,2024-11-06 +Resort Hotel,0,7,2017,August,31,2,3,1,1,0.0,0,Undefined,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,221.0,0,Transient,42.26,0,0,Check-Out,Thomas Black,pscott@example.com,001-865-734-6249x71068,180016150947545,2026-01-09 +City Hotel,1,57,2017,October,41,9,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.94,0,0,Canceled,Douglas Rodriguez,steven33@example.org,+1-879-742-2701x576,180034577650899,2025-11-30 +City Hotel,1,42,2017,April,18,30,0,4,2,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,239.25,0,1,Canceled,Joanne Baker,angela96@example.org,(261)609-3253x5473,30371289919887,2025-07-18 +City Hotel,0,1,2017,November,48,28,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,133.08,0,0,Check-Out,Timothy Johnson,angela13@example.org,001-680-631-6738x57110,2703346507422353,2025-06-04 +City Hotel,1,320,2017,April,18,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,164.57,0,0,Canceled,Rachel Sandoval,torrestanya@example.org,001-731-611-2480x57118,180038836702425,2025-09-02 +City Hotel,0,49,2017,March,13,28,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,146.0,0,2,Check-Out,Larry Benson,xjohns@example.net,366.486.4643,6561745373577400,2024-05-16 +City Hotel,0,25,2017,August,31,4,2,5,3,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,94.36,0,2,Check-Out,Christina Miles,qbradley@example.com,282.202.6443,3502143916094928,2024-12-14 +City Hotel,0,168,2017,February,7,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Group,98.06,0,0,Check-Out,Brian Black,stephanieschneider@example.net,777-632-9056x1447,213105214994634,2024-08-23 +Resort Hotel,0,9,2017,October,41,11,2,2,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,C,0,No Deposit,306.0,179.0,0,Transient,39.84,0,1,Check-Out,William Holmes,adrianhawkins@example.org,6889972147,6589547808293522,2025-09-16 +Resort Hotel,0,1,2017,June,23,3,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,77.18,1,0,Check-Out,Bradley Duncan,kschwartz@example.com,+1-362-391-2278x1830,3522726602249628,2025-01-01 +Resort Hotel,0,156,2017,November,48,29,1,3,2,0.0,0,BB,CN,Groups,Corporate,0,0,0,A,A,1,Refundable,11.0,223.0,0,Transient-Party,43.09,0,0,Check-Out,Janice Kelly,campbellroy@example.org,(290)216-0554x57571,4524324779805,2025-12-08 +Resort Hotel,0,141,2017,April,16,16,0,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,250.0,179.0,0,Transient,198.25,1,0,Check-Out,Kelly Beck,francoaustin@example.net,001-438-503-6467x08641,30417329394084,2025-10-19 +Resort Hotel,0,138,2017,December,52,23,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,111.43,0,2,Check-Out,Austin Kane,armstrongjulia@example.org,886-352-4374,6011654319068795,2025-03-16 +City Hotel,0,14,2017,October,41,11,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,1,A,C,1,No Deposit,14.0,54.0,0,Transient,49.03,0,0,Check-Out,Sharon Cook,ndavis@example.org,6093440904,6503227223339886,2025-08-01 +Resort Hotel,1,132,2017,November,45,7,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,Refundable,237.0,179.0,0,Transient,38.41,0,1,Canceled,Christine Lopez,audreyweaver@example.com,7167883058,675987862199,2025-02-10 +Resort Hotel,0,1,2017,June,25,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,47.0,0,Transient-Party,40.2,0,0,Check-Out,Joshua Chapman,whitneyritter@example.org,299.641.4159x46283,4580313420371,2025-08-28 +City Hotel,1,55,2017,December,49,4,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,1,D,D,0,Non Refund,275.0,179.0,0,Transient,45.72,0,0,Canceled,Jeremiah Hernandez,michael18@example.org,472.663.0515,4968973297123499,2026-02-11 +City Hotel,0,1,2017,February,7,10,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,Non Refund,12.0,179.0,0,Transient-Party,119.86,0,0,Check-Out,Jacob Allen,dhansen@example.org,626-743-9952x811,4923262438069017,2025-05-30 +City Hotel,1,91,2017,October,43,23,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.44,0,0,Canceled,Matthew Townsend,tturner@example.org,830-780-6129x9885,371166545024119,2025-04-17 +City Hotel,1,259,2017,October,42,19,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,64.27,0,1,No-Show,Diane Hughes,llucas@example.com,001-665-781-6501,3597227426684769,2026-01-12 +City Hotel,0,9,2017,January,4,26,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,81.9,0,1,Check-Out,Anna Whitehead,mitchellkatherine@example.net,9196623216,3540010780438495,2025-03-09 +City Hotel,1,158,2017,February,9,25,0,3,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,G,2,No Deposit,28.0,179.0,0,Transient,112.49,0,0,Canceled,Frances Williams,hgolden@example.net,001-336-476-8613,060482858937,2025-04-24 +City Hotel,1,189,2017,February,7,13,0,4,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.19,0,1,Canceled,Kimberly Adams,andersonbryan@example.net,(808)664-3820x852,5531486262368507,2025-08-04 +Resort Hotel,0,51,2017,May,19,11,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient-Party,90.47,0,0,Check-Out,Joshua Jacobs,carlmiller@example.net,+1-335-662-0179x6244,3563398928460105,2026-02-04 +City Hotel,1,171,2017,November,47,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,101.56,0,1,Canceled,Robert Frank,krystallewis@example.com,367.454.5319x6872,4949682086365617,2025-11-23 +City Hotel,0,16,2017,October,40,6,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,81.71,0,1,Check-Out,Richard Peterson,andrevega@example.org,364.530.0632x93425,5480289577877902,2025-06-21 +City Hotel,0,307,2017,April,17,24,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,62.74,0,1,Check-Out,Roger White,debramontoya@example.net,(475)821-2410x10020,213199153294171,2025-02-01 +Resort Hotel,1,372,2017,December,51,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,45.16,0,1,Canceled,Jessica Castro,sguzman@example.com,(230)478-8073x161,5265600210645871,2024-12-26 +City Hotel,0,6,2017,July,30,28,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,86.89,0,1,Check-Out,Dawn Jones,vperez@example.com,203.479.3537x1280,5568400222352572,2024-12-28 +City Hotel,1,136,2017,August,31,2,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,132.85,0,0,No-Show,Parker Brown,ryan41@example.org,7772925356,6514539978856758,2025-09-05 +City Hotel,0,152,2017,August,32,5,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.4,0,0,Check-Out,Shaun Wood,mitchell07@example.org,001-791-303-6880x8825,3546672366406818,2024-10-07 +Resort Hotel,1,94,2017,August,35,30,1,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,63.34,0,0,Canceled,Brian Allen,chelsea40@example.org,(418)232-3004x0032,213136733229194,2024-10-23 +City Hotel,1,53,2017,December,50,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.64,0,2,Canceled,Julie Lee,lcruz@example.com,(823)672-4086x89076,4588544541881313,2025-06-09 +City Hotel,0,10,2017,October,42,17,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,90.83,0,0,Check-Out,Kimberly Elliott,leejoel@example.org,454.428.3982x310,3504764329844555,2024-08-29 +City Hotel,1,144,2017,February,8,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.15,0,0,Canceled,Stephen Kirby,jessica52@example.net,325-283-9278x574,4019546358041,2024-12-30 +Resort Hotel,0,49,2017,May,18,3,0,2,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,144.53,1,1,Check-Out,Pamela Walker,mackenziemorris@example.net,+1-471-584-6109x941,4094576249795657,2024-08-14 +City Hotel,0,104,2017,April,15,9,1,4,1,1.0,0,BB,GBR,Online TA,Direct,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,142.28,0,2,No-Show,Sarah Clements,lisa28@example.com,422-955-4832x5142,3565807860082352,2025-07-19 +Resort Hotel,0,15,2017,January,2,4,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,30.0,179.0,0,Transient,76.32,1,0,Check-Out,Julie Gillespie,greenpatricia@example.com,474-452-6147x568,4851222283162,2025-07-07 +City Hotel,0,1,2017,May,21,18,0,1,3,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,10.0,156.0,0,Transient,171.37,0,0,Check-Out,Audrey Koch,dylanibarra@example.net,696.580.5161,4978345569456352,2024-07-25 +City Hotel,1,233,2017,March,10,5,1,0,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,121.87,0,0,Canceled,Brenda Anderson,pgates@example.org,765.809.9816x31805,4732670245885469,2025-05-13 +Resort Hotel,1,239,2017,August,33,15,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,236.0,179.0,0,Contract,116.86,0,2,Canceled,Marissa Dorsey,sarahlewis@example.com,371-285-7344x040,6011561688306583,2025-04-15 +City Hotel,1,44,2017,March,10,5,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,134.37,0,0,Canceled,Richard Brown,ogarcia@example.org,001-271-880-0258,676231451920,2025-10-12 +Resort Hotel,0,12,2017,August,35,30,1,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,81.48,0,0,Check-Out,Bradley Jones,milleremily@example.net,(684)249-7887x99581,6506341573943127,2026-02-08 +City Hotel,0,13,2017,June,24,10,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,221.0,0,Transient,114.63,1,1,Check-Out,Michelle Ramirez,travismcmahon@example.net,258-393-1726x9352,4573186869725,2025-02-23 +Resort Hotel,0,200,2017,May,19,6,1,6,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,126.3,0,2,Check-Out,Michael Burns,sharrison@example.net,995-653-0561,6011275844971376,2024-10-08 +City Hotel,1,33,2017,December,49,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,129.03,0,2,Canceled,Tracey Bailey,huntjulia@example.org,(399)843-4276x948,6548492524472490,2024-09-02 +City Hotel,1,313,2017,February,6,5,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,Non Refund,14.0,179.0,0,Transient,112.63,0,0,Canceled,Sarah Holt,judithwood@example.net,4959908393,4190235182146187,2025-11-04 +City Hotel,0,104,2017,April,17,28,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,John Todd,jodyhernandez@example.org,291.511.9697x53043,6504021505027734,2024-08-03 +Resort Hotel,0,108,2017,December,49,8,1,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,83.02,0,0,Check-Out,Rachel Berger,garciabrenda@example.net,001-828-557-2157,3505058540383009,2024-06-13 +City Hotel,0,2,2017,December,52,27,1,2,1,0.0,0,BB,BEL,Aviation,Corporate,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,117.85,0,0,Check-Out,Megan Aguilar,elainewilliams@example.com,+1-485-231-2170x35578,6011831415723313,2024-08-27 +City Hotel,0,0,2017,November,46,11,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient,47.19,0,1,Check-Out,James Mckinney,nicoleclark@example.net,274-805-5943,349373149585235,2026-01-24 +Resort Hotel,1,2,2017,November,46,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,F,0,No Deposit,239.0,179.0,0,Transient,50.24,0,2,Canceled,Raymond Powell,lopezlinda@example.net,549-855-0797x3193,501864481954,2024-08-27 +City Hotel,0,4,2017,January,4,24,1,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,109.69,0,1,Check-Out,Edward Lawson,mccoycatherine@example.com,841-982-8858x07082,6525974687366996,2025-07-18 +City Hotel,0,0,2017,November,45,11,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,43.2,0,1,Check-Out,Jamie Bond,martinmichele@example.net,6704619872,346209421132838,2024-06-10 +City Hotel,0,203,2017,April,14,5,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,3,No Deposit,14.0,179.0,0,Transient,225.65,0,0,Check-Out,Richard Smith,annarussell@example.net,(616)215-5728x11792,3532332599133756,2024-12-04 +City Hotel,1,200,2017,May,18,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,100.18,0,0,Canceled,Holly Martin,gardnerjoseph@example.org,688.379.3808x246,3554653207228172,2026-03-06 +City Hotel,1,323,2017,March,12,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.38,0,0,Canceled,Diane Taylor,sandra86@example.org,818.951.3217,060485440154,2025-04-10 +Resort Hotel,1,78,2017,September,37,11,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,52.23,0,1,Canceled,Melanie Diaz,nicolewood@example.net,342.407.8548,30408775641367,2025-04-23 +City Hotel,0,0,2017,April,16,20,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,171.0,0,1,No-Show,Lori Krueger,coxamy@example.com,(873)489-4080,4836623175798553,2024-08-27 +City Hotel,1,0,2017,April,14,5,0,2,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,49.4,0,1,Canceled,Ryan Riley,lhopkins@example.com,+1-796-495-3820x780,060466029075,2025-03-07 +Resort Hotel,0,148,2017,March,12,16,2,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,240.0,179.0,0,Transient,176.83,0,0,Check-Out,Dana Hanson,ellisangela@example.net,788.290.4113x36253,3512066609262973,2025-06-30 +City Hotel,1,25,2017,August,31,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.7,0,1,Canceled,Alex Steele,whitejustin@example.com,207-548-8034,3518008805880277,2025-07-07 +City Hotel,0,166,2017,May,19,11,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,108.3,0,0,Check-Out,David Williams,eric35@example.net,817.970.5202,4996566794257988,2024-11-20 +Resort Hotel,0,127,2017,August,33,19,2,5,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,92.46,0,2,Check-Out,Johnathan Davidson,rnelson@example.org,(458)754-4285,4889148135199,2024-09-22 +City Hotel,1,125,2017,December,51,20,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,111.22,0,0,Canceled,Terry Murphy,ginaruiz@example.org,7235764249,4272025732799333,2025-07-14 +City Hotel,1,166,2017,January,5,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,109.25,0,0,Canceled,Anne Jones,aguirrerebecca@example.com,001-641-434-1880x9171,3567998459267583,2024-10-13 +City Hotel,1,145,2017,March,13,30,2,6,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,10.0,179.0,0,Transient,132.32,0,0,Canceled,Susan Barnes,lauramcfarland@example.net,+1-983-937-5264x70917,6577239619551603,2025-01-18 +City Hotel,0,12,2017,November,47,23,0,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,89.21,0,1,Check-Out,Andrew Morales,angela80@example.org,+1-506-879-7531x101,3569501820519225,2026-02-08 +City Hotel,1,198,2017,June,23,7,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,82.06,0,0,Canceled,Michelle Caldwell,steven89@example.net,232-431-0824,3530286433329560,2024-09-27 +Resort Hotel,1,27,2017,May,21,24,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,249.63,0,0,Canceled,Susan Harper,mallorylee@example.net,+1-407-238-0660x103,676259806930,2024-05-29 +City Hotel,0,1,2017,January,2,11,0,1,1,0.0,0,BB,USA,Corporate,Corporate,1,0,1,D,D,0,No Deposit,12.0,45.0,0,Transient,63.47,0,2,Check-Out,Tamara Harris,rogerscindy@example.com,773-246-9044,4365991694970089,2025-05-19 +City Hotel,0,64,2017,March,13,24,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.61,0,1,Check-Out,Jordan Reeves,hbutler@example.net,+1-852-273-1751,3506653718945115,2026-03-26 +City Hotel,0,19,2017,March,12,25,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,228.59,0,1,Check-Out,Steven Greene,nelsonkimberly@example.com,466.494.9696x1439,4756693175241810691,2025-12-23 +Resort Hotel,0,26,2017,December,51,22,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,106.71,0,3,Check-Out,Kelly Kennedy,paige45@example.org,+1-823-373-1797x64376,4204849104538,2025-11-13 +City Hotel,0,211,2017,February,5,2,2,7,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,E,1,No Deposit,72.0,179.0,0,Transient,139.48,0,0,Check-Out,David Sanchez,mgibson@example.net,5347634661,3591132288881543,2024-11-20 +Resort Hotel,0,304,2017,April,15,11,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,308.0,179.0,0,Transient-Party,183.56,0,1,Check-Out,Kathy Gutierrez,rebeccalee@example.com,+1-303-979-7533,30391781370223,2025-05-09 +City Hotel,1,4,2017,April,14,6,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.27,0,1,No-Show,Sarah Shelton,faith08@example.net,+1-603-986-1678x1766,180032132732723,2026-02-04 +City Hotel,0,9,2017,April,15,8,0,2,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,235.65,0,2,Check-Out,Christopher Mcdowell,jonesthomas@example.net,457-714-9931,3513559034105428,2025-12-05 +City Hotel,1,275,2017,March,10,11,2,5,2,0.0,0,BB,ITA,Groups,TA/TO,0,1,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,62.94,0,1,Canceled,Zachary Simpson,frussell@example.net,712.692.9231x10926,4382385006031848,2025-10-20 +City Hotel,0,2,2017,July,30,23,2,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,85.56,1,3,Check-Out,Matthew Henderson,kevin66@example.com,590.227.6782x3476,502056005569,2024-07-08 +City Hotel,0,23,2017,June,23,9,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,G,0,No Deposit,62.0,179.0,0,Transient,136.25,0,1,Check-Out,Joseph Collins,sarah08@example.net,412-833-5708x232,4516524997625551,2025-07-10 +City Hotel,1,57,2017,March,13,27,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,223.07,0,1,Canceled,Deborah Small,thomas07@example.org,457.748.9765,373613524813754,2024-04-23 +City Hotel,0,0,2017,June,24,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,45.0,42,Transient,53.88,0,0,Check-Out,Virginia Jimenez,qwilson@example.org,+1-663-304-6227x768,4774265874387800000,2024-10-29 +City Hotel,0,1,2017,August,34,21,1,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,125.86,0,1,Check-Out,Aaron Cochran,garrettlewis@example.net,826.302.5526,30459880878568,2025-08-03 +City Hotel,1,4,2017,March,12,22,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.29,0,1,Canceled,Morgan Barrett,patricia96@example.org,908-255-3063,5427361237150966,2024-10-07 +Resort Hotel,0,15,2017,November,47,22,1,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,77.89,0,1,Check-Out,James Williams,hdorsey@example.com,625.886.6606,4500777465517506,2024-10-27 +City Hotel,0,17,2017,April,16,13,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.06,0,1,Check-Out,Paul Tyler,glenn95@example.org,303.855.1036,4015719236042305,2025-02-28 +City Hotel,0,36,2017,January,2,3,0,1,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.56,0,1,Check-Out,Kevin Hansen,keith60@example.net,(701)929-2530,375727404356631,2025-04-04 +Resort Hotel,0,136,2017,March,9,1,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,3,No Deposit,248.0,179.0,0,Transient,4.53,0,1,Check-Out,Daniel Thomas,amanda48@example.net,261.509.0190,4877794087087643270,2024-08-03 +City Hotel,1,185,2017,February,7,11,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,227.23,0,1,Canceled,Jennifer Pearson,ecortez@example.net,386-695-4956,372232709415029,2026-01-26 +Resort Hotel,0,12,2017,July,29,20,0,3,2,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,37.29,0,0,Check-Out,Sherry Horton,simpsonmarcus@example.net,6382951510,2697009031760874,2025-02-10 +City Hotel,0,21,2017,February,7,15,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.14,0,1,Check-Out,David Roach,scott82@example.com,946.638.5349,4820381298489448,2025-09-15 +City Hotel,1,375,2017,June,23,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.35,0,0,Canceled,Susan James,laurageorge@example.net,+1-584-992-4364x30082,4720192736079480,2024-07-29 +City Hotel,1,169,2017,April,15,12,2,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.04,0,0,Canceled,Sandra Gonzalez,reidrhonda@example.net,566-855-2741,2509056246353977,2025-02-24 +City Hotel,1,115,2017,March,9,3,2,5,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,75,Transient-Party,103.09,0,0,Canceled,Terry Brown,ohahn@example.net,(403)271-9528x942,4297325975290946,2026-01-26 +City Hotel,0,51,2017,September,38,18,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.45,1,0,Check-Out,Anthony Hoover,walkermichael@example.net,680-947-0605x873,36045857521101,2025-05-05 +Resort Hotel,0,311,2017,June,23,4,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,C,1,No Deposit,309.0,179.0,0,Transient-Party,62.22,0,0,Check-Out,Andrea Ramos,marshalljoshua@example.com,(941)433-0850x709,2242991683670412,2024-07-01 +City Hotel,1,141,2017,March,9,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,B,B,0,No Deposit,169.0,179.0,0,Transient-Party,116.16,0,1,Canceled,Aaron Shepard,jason40@example.net,+1-209-607-8899,346481856268714,2024-04-28 +Resort Hotel,1,248,2017,August,31,1,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,65.04,0,0,Canceled,Kim Williams,vbrown@example.com,(327)816-4075,3513794375328665,2025-09-21 +City Hotel,1,150,2017,March,12,20,1,2,1,0.0,0,BB,PRT,Online TA,Undefined,0,1,0,B,E,0,No Deposit,11.0,179.0,0,Transient,127.44,0,0,No-Show,Vickie Hall,rodriguezterri@example.org,8058179296,3522505068235697,2025-07-02 +City Hotel,0,150,2017,February,9,24,0,2,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,174.02,0,0,Check-Out,Diana Rogers,jamesdickson@example.com,+1-762-521-8846,4649164728336754,2025-10-05 +City Hotel,1,10,2017,July,27,2,0,2,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,10.0,204.0,0,Transient-Party,110.61,0,0,No-Show,Lindsay White,julieholden@example.com,+1-505-678-6419x7011,4733056886395,2024-12-08 +City Hotel,1,104,2017,November,47,18,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,49.93,0,2,Canceled,Lisa Hall,theresatucker@example.com,+1-318-327-6216x7645,379054290947902,2024-04-16 +Resort Hotel,1,48,2017,August,31,2,2,1,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,59.44,0,1,Canceled,Michelle Schultz,gdominguez@example.net,5972133314,4330798362759,2024-08-05 +City Hotel,0,284,2017,June,25,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.14,0,2,Check-Out,Brandon Townsend,jimmy40@example.org,596.379.5481x024,4762534001863990,2024-10-15 +City Hotel,0,199,2017,January,4,23,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.99,0,0,Check-Out,Joseph Day,rkline@example.org,(616)456-2979,4104954158156120,2024-11-16 +Resort Hotel,0,97,2017,April,18,30,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,203.22,0,1,Check-Out,Rita Taylor,riveraabigail@example.com,(965)929-8600x541,6592926700107631,2025-10-24 +Resort Hotel,0,16,2017,February,9,25,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,175.83,0,1,Check-Out,Mark Meyer,patrickorr@example.org,001-280-443-0325x23583,4030764195627,2026-03-20 +City Hotel,0,17,2017,July,31,29,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.56,0,0,Check-Out,William Juarez,williamsjacqueline@example.net,001-240-488-8152x39390,4623301859935,2024-11-08 +Resort Hotel,0,44,2017,November,44,3,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Contract,109.93,0,2,Check-Out,Jimmy Terry,terry88@example.com,738.207.5563,4485976292226,2025-05-20 +Resort Hotel,0,57,2017,June,26,26,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,129.55,0,3,Check-Out,Jimmy Smith,cthomas@example.com,001-492-353-9335,30541295254178,2025-07-18 +Resort Hotel,1,2,2017,April,14,5,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,250.0,179.0,0,Transient,252.0,1,0,Canceled,Mitchell Jones,dennis11@example.net,511-471-5626,4892188827584,2025-02-28 +Resort Hotel,0,162,2017,September,36,6,2,2,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,2,No Deposit,260.0,179.0,0,Transient,37.83,0,0,Check-Out,Yolanda Johnson,glong@example.org,(529)383-3968,676395656025,2026-03-25 +Resort Hotel,0,6,2017,November,46,18,2,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,343.0,179.0,0,Transient,54.42,1,1,Check-Out,Joshua Lewis,omartin@example.net,001-415-698-7246,3566575743549819,2025-07-25 +City Hotel,0,77,2017,December,49,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.86,0,1,Check-Out,Dana Atkins,brandon88@example.org,(640)967-8358,3565290111050751,2026-02-19 +Resort Hotel,0,4,2017,July,28,10,0,2,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,103.16,0,0,Check-Out,Timothy Jacobs,annette74@example.org,682-327-2631,36300818488845,2024-05-29 +Resort Hotel,0,25,2017,March,13,23,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,38.0,179.0,0,Contract,79.48,0,0,Check-Out,Donna Taylor,underwoodhaley@example.org,001-644-893-8975x974,4080111964401590,2024-11-20 +Resort Hotel,0,20,2017,May,20,20,1,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,136.61,0,0,Check-Out,Victoria Burgess,wmiller@example.net,+1-427-320-1254,3522157711413808,2024-12-31 +Resort Hotel,0,104,2017,June,25,23,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,148.0,179.0,64,Transient-Party,83.63,0,0,Check-Out,Jay Hall,hamptonkaren@example.net,(792)644-8819x29177,4029596500397589,2025-01-22 +City Hotel,0,1,2017,April,16,20,0,1,2,0.0,0,SC,PRT,Complementary,Corporate,0,1,0,B,K,0,No Deposit,8.0,45.0,0,Transient-Party,5.02,0,2,Check-Out,Dr. Heather Johnson PhD,alicia88@example.org,457-594-4940x1672,4678594246272365396,2024-11-03 +City Hotel,0,1,2017,December,51,17,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,147.0,179.0,0,Transient,2.06,0,0,Check-Out,John Mendoza,operry@example.com,001-692-238-0162x79592,3508015455685924,2025-06-11 +Resort Hotel,0,47,2017,December,51,22,1,2,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,C,1,No Deposit,13.0,179.0,0,Transient,97.37,1,1,Check-Out,Katrina Mendoza,laurabaker@example.org,001-389-375-7388x513,36784718437004,2026-03-08 +City Hotel,1,35,2017,December,49,9,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,162.0,179.0,0,Transient,40.24,0,0,No-Show,Beth Schmidt,sean18@example.net,666-734-4550x859,180019944111261,2025-08-26 +Resort Hotel,0,33,2017,November,45,4,2,5,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Transient,49.34,0,0,Check-Out,Claire Mcintosh,wwalsh@example.org,(528)388-5075,3507979280618775,2025-08-06 +City Hotel,1,62,2017,December,50,14,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,114.63,0,3,Canceled,Joseph Ortega,vicki73@example.com,(734)228-2604,30421260494945,2026-03-09 +Resort Hotel,1,93,2017,January,4,22,1,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,Non Refund,241.0,179.0,0,Transient,94.86,0,0,Canceled,Brandon Pena,marvin14@example.net,2718859219,343330053310121,2026-02-18 +City Hotel,1,264,2017,January,5,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,109.18,0,0,Canceled,Rachel Martin,qlopez@example.net,(411)269-7431,180071911516048,2026-03-15 +Resort Hotel,1,139,2017,March,11,13,0,6,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,138.57,0,1,Canceled,Carolyn Moore,mlarson@example.org,815-283-1886x15420,3523433065727138,2025-02-24 +City Hotel,0,9,2017,April,17,27,2,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,9.0,179.0,0,Transient,187.06,0,1,Check-Out,Jeffrey Robertson,ramosdavid@example.org,(667)288-0729x23237,4708066156583,2024-05-04 +Resort Hotel,0,0,2017,October,41,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,293.0,179.0,0,Transient,49.83,1,0,Check-Out,Alexandra Lyons,gramos@example.net,812-548-7155,30186547250234,2024-10-16 +Resort Hotel,1,93,2017,March,10,8,0,1,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,243.36,1,0,Check-Out,Mason Miller,jenniferrivera@example.com,301.651.6673x16821,676366949300,2025-05-15 +Resort Hotel,0,4,2017,November,44,2,2,5,2,0.0,0,HB,AUT,Groups,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,0,Transient-Party,59.08,1,3,Check-Out,Robert Jackson,mariahgonzales@example.net,+1-619-628-1839x9600,2295024352213177,2025-07-20 +Resort Hotel,0,153,2017,March,11,9,4,5,2,0.0,0,BB,IRL,Offline TA/TO,GDS,0,0,0,E,E,1,No Deposit,184.0,179.0,0,Transient,134.45,0,1,Check-Out,Margaret Lowe,shayes@example.org,+1-472-311-0725x706,6529980751417066,2024-12-02 +Resort Hotel,0,17,2017,August,34,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Contract,66.75,0,2,Check-Out,Tracy Smith,erica45@example.net,6458363952,378960741641822,2025-10-22 +City Hotel,1,157,2017,February,7,10,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.63,0,0,Canceled,Kevin Stokes,zmiller@example.com,+1-276-954-5307,6584295751970267,2026-03-10 +Resort Hotel,0,0,2017,June,24,16,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient-Party,48.04,0,0,Check-Out,Ashley Morris,edwardrichardson@example.org,001-844-899-3251x61642,344997028950097,2024-04-18 +Resort Hotel,1,26,2017,January,4,23,1,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,101.71,0,0,Canceled,Karen Hernandez,gallen@example.com,001-903-804-1495x00931,4691395310555883,2025-07-04 +City Hotel,0,24,2017,December,49,2,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,68.0,0,Transient-Party,107.38,1,0,Check-Out,Larry Crawford,vflores@example.com,746.579.7274x40392,4326081576407972732,2025-12-22 +City Hotel,0,2,2017,July,28,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,54.53,0,1,Check-Out,Joshua Lopez,benjamin04@example.org,+1-236-488-7580x5458,180067319952066,2024-10-01 +City Hotel,0,201,2017,April,15,9,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,140.4,0,1,Check-Out,Tina Patel,trujillotiffany@example.net,(843)448-2531x04190,6011058977188947,2025-10-25 +Resort Hotel,0,170,2017,April,16,18,4,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,138.79,0,1,Check-Out,Thomas Sellers,hgarza@example.net,001-565-349-7879x12289,4535127251297,2024-10-25 +City Hotel,0,409,2017,June,24,15,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,110.74,0,1,Check-Out,Donna Mejia,stephen01@example.net,001-284-859-3194x6330,3534965595011290,2024-09-25 +City Hotel,1,0,2017,April,18,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,240.0,179.0,0,Transient,251.44,0,3,Canceled,Travis Hughes,qmoran@example.com,(214)848-7187x941,372956540138867,2025-05-06 +City Hotel,0,96,2017,October,42,15,2,2,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,75.09,0,0,Check-Out,Mr. Kenneth Ashley,larmstrong@example.net,746.921.0803x674,4816342973293084786,2024-09-20 +Resort Hotel,1,24,2017,July,30,25,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,170.0,179.0,0,Transient,85.2,0,0,Canceled,Tyler Roy,trevormedina@example.org,215.657.9577x83116,349990145911394,2024-10-15 +Resort Hotel,1,147,2017,February,9,26,3,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,85.05,0,1,No-Show,Heather Davis,clittle@example.net,787-255-2792,4322525416487,2025-12-17 +City Hotel,0,23,2017,December,52,27,2,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,149.74,0,2,No-Show,Angela Wilson,mperkins@example.org,696.679.0047x88201,3501466387403349,2025-05-26 +City Hotel,1,434,2017,February,7,13,1,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,97.0,0,0,Canceled,Kelly Williams,ifitzgerald@example.net,247.594.6319,4659943819820,2025-01-08 +City Hotel,0,124,2017,October,42,20,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient-Party,103.36,0,1,Check-Out,Heather Williams,lisaporter@example.net,+1-551-674-8646x2673,6561602379103238,2025-05-28 +City Hotel,0,9,2017,June,24,13,0,3,2,0.0,0,BB,CN,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.25,1,0,Check-Out,Catherine Nelson,staceylyons@example.net,001-385-335-3326x16702,5514873851135796,2025-07-12 +City Hotel,0,277,2017,February,6,6,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,87.76,0,0,Check-Out,Catherine Gould,hobbsdaniel@example.org,301.905.1302,4323972474274589475,2026-03-24 +City Hotel,0,13,2017,September,36,3,2,2,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,70.99,0,1,Check-Out,Stacy Bailey,rsuarez@example.org,525.851.4923,3575393017347863,2025-07-23 +City Hotel,0,16,2017,December,50,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Transient,130.73,0,0,Check-Out,Anthony Hall,christophercook@example.net,249.768.1010x696,4864322343696162,2024-05-31 +Resort Hotel,1,195,2017,February,9,26,4,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,239.0,179.0,0,Transient,114.35,0,0,Canceled,Charles Gonzalez,jennifermann@example.com,6617225584,4366081010945314328,2025-07-01 +City Hotel,1,46,2017,June,25,19,1,1,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,79.39,0,0,Canceled,Nicholas Hernandez,qolson@example.com,597-624-9590,373144916451029,2025-11-02 +City Hotel,0,40,2017,November,47,24,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,K,1,No Deposit,13.0,331.0,0,Transient-Party,36.91,0,0,Check-Out,Amy Hunter,mvazquez@example.net,953.478.5591,501819638096,2024-04-03 +Resort Hotel,0,1,2017,September,37,14,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,57.61,1,0,Check-Out,Amanda Hill,duanenewman@example.net,+1-274-307-0686x500,3577653934049225,2024-03-29 +City Hotel,0,16,2017,June,25,20,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.46,0,1,Check-Out,Tracy Morales,andrew46@example.com,717.654.9979x3906,4353339954926146951,2024-05-06 +City Hotel,0,11,2017,December,50,14,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.01,0,2,Check-Out,Haley Cowan,vincent80@example.com,+1-652-460-7824x0119,4847992692145,2025-07-07 +City Hotel,0,143,2017,May,21,26,0,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,D,A,0,No Deposit,14.0,179.0,0,Transient,136.95,0,0,Check-Out,Samuel Russell,jose42@example.org,001-456-501-7319,3561826671437914,2024-08-28 +Resort Hotel,0,35,2017,August,31,4,1,2,1,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,114.37,0,1,Check-Out,Bryan Castro,andersonvirginia@example.net,806-521-3210x421,4699677660826,2024-09-19 +City Hotel,0,174,2017,March,14,30,2,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,231.87,0,1,Check-Out,Stephen Smith,jeffreyyates@example.org,604-892-6307x477,4701563153084067,2026-03-10 +City Hotel,0,444,2017,May,21,20,0,5,3,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,29.0,179.0,0,Transient-Party,104.99,0,0,Check-Out,Margaret Smith,gglenn@example.com,806-462-3898x4363,4826761312993208,2025-10-30 +City Hotel,1,277,2017,June,22,3,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,99.63,0,0,Canceled,Dennis Thompson,melissamitchell@example.net,(759)638-5768x463,3591234468774835,2025-06-18 +City Hotel,1,257,2017,April,14,8,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,209.22,1,0,Canceled,Michael Taylor,mccormickjohn@example.net,(823)485-7918x683,30561671976699,2025-11-02 +City Hotel,0,4,2017,April,14,5,2,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,237.68,0,1,Check-Out,Laura Cox,lcline@example.net,001-782-906-1720x7203,4298017692201251,2025-04-24 +City Hotel,0,89,2017,February,9,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.01,0,2,Check-Out,Ricky Reid,cathy88@example.com,001-304-563-4413x374,5296534802630525,2026-03-07 +City Hotel,1,374,2017,January,2,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.42,0,1,Canceled,Melissa Nguyen DVM,pattonlaura@example.com,001-506-345-6549x34417,4244659693652571,2025-07-22 +City Hotel,0,11,2017,November,46,12,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,100.32,0,0,Check-Out,Renee Farmer,ostewart@example.net,(261)612-2352x122,2566231347960430,2024-08-01 +Resort Hotel,1,47,2017,November,45,7,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,62.82,0,0,Canceled,Tracy Woodward,jesus75@example.org,360.942.4922x45477,180050147306374,2025-03-23 +Resort Hotel,0,2,2017,November,46,13,0,1,1,0.0,0,HB,PRT,Direct,Corporate,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,53.04,1,1,Check-Out,Jason Waters,savannahsmith@example.org,884-312-7433x8234,4981008795839588047,2024-12-29 +City Hotel,0,13,2017,February,8,17,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,105.01,0,1,Check-Out,Anthony James DVM,hollowaylouis@example.net,994.992.2684x5729,6011349340254528,2024-08-02 +City Hotel,1,126,2017,December,49,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,116.99,0,0,Canceled,Heidi Torres,riveraadam@example.org,405-340-0456,180085028712670,2024-07-27 +Resort Hotel,0,1,2017,April,18,30,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,57.59,0,1,Check-Out,Colleen Rivera,josephpearson@example.org,001-767-398-4636x65225,3550676530788657,2025-12-20 +City Hotel,1,40,2017,November,48,25,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,12.0,179.0,0,Transient,116.45,0,2,Canceled,James Patterson,danielleshea@example.org,513.432.2604,6515600400683365,2024-10-05 +City Hotel,0,0,2017,November,47,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,13.0,74.0,0,Transient-Party,54.84,0,0,Check-Out,Kimberly Carson,kimberlydaniel@example.org,989-348-3633x5970,345005483371046,2025-03-15 +City Hotel,1,207,2017,June,24,12,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,79.88,0,0,Canceled,Shane Gonzalez,bferguson@example.org,001-969-682-5073x37613,2225617212848101,2024-04-04 +Resort Hotel,0,252,2017,March,13,26,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,240.73,0,1,Check-Out,Debra Gonzalez,amedina@example.net,(859)644-5681x6420,213189982641395,2024-03-30 +City Hotel,1,142,2017,February,6,8,1,4,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,112.14,0,0,Canceled,Patrick Perez,jramirez@example.net,822-597-1254x23979,4071996697082167,2024-07-01 +City Hotel,0,145,2017,December,52,27,2,3,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,87.91,0,0,Check-Out,Heather Payne,annrosales@example.com,+1-347-798-5684,502064566800,2025-07-14 +Resort Hotel,0,364,2017,March,9,4,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,44.38,0,1,Check-Out,Christopher Butler,benjamin93@example.org,3575393976,630487715629,2026-02-03 +City Hotel,0,2,2017,December,51,21,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.09,0,1,Check-Out,Jeffrey Myers V,johnsonjasmine@example.net,+1-607-606-5592x52670,340456424217126,2024-05-28 +City Hotel,0,26,2017,January,4,24,1,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,176.14,0,1,Check-Out,Christian Valencia,dominiquesolis@example.com,388.904.6164,6011099239841709,2026-01-17 +City Hotel,0,68,2017,May,18,4,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.12,0,1,Check-Out,Kaitlyn Warren,erin91@example.org,(272)603-0793,38134903752882,2025-07-06 +Resort Hotel,0,2,2017,September,36,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,10.0,179.0,0,Group,55.25,0,1,Check-Out,Jordan Lynch,burtonmegan@example.org,502.299.7169,2239931447736708,2025-03-08 +Resort Hotel,0,48,2017,May,18,1,1,5,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,191.45,0,1,Check-Out,Raymond Santos,louis70@example.com,720-799-3297x944,4360136095659403,2025-10-10 +City Hotel,1,146,2017,March,10,5,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,111.1,0,2,No-Show,Lisa Robinson,rileyrick@example.org,001-887-601-4816x415,180052630115502,2024-03-28 +City Hotel,1,82,2017,March,10,6,1,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,85.44,0,1,Canceled,Darlene Sanchez,ghill@example.com,406.263.2516x6768,180017872021965,2025-07-30 +City Hotel,0,62,2017,April,17,22,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,B,G,1,No Deposit,14.0,179.0,0,Transient,153.36,0,1,Canceled,Jessica Harper,donaldsondavid@example.org,(786)595-2368,2720806362951159,2025-05-26 +City Hotel,1,316,2017,June,22,1,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,0,Transient,104.61,0,0,Canceled,Joseph Kelly,georgerodriguez@example.net,+1-428-417-5221,4562003366895221,2024-12-22 +City Hotel,1,152,2017,July,28,14,1,4,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,111.17,0,0,Canceled,Rachel Flores,julieray@example.org,(708)364-0462,30034788020454,2025-02-03 +City Hotel,1,152,2017,April,14,4,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,244.0,0,0,Canceled,Zachary Johnson,johnsonjohn@example.org,5126152220,3552406392700196,2024-05-13 +City Hotel,0,0,2017,October,43,26,0,1,2,0.0,0,BB,,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,47.05,0,0,Check-Out,Derrick Ford,jennifermolina@example.org,7619395882,585959782616,2024-07-03 +City Hotel,1,34,2017,June,24,15,0,3,2,0.0,0,SC,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.77,0,0,Canceled,Alejandra Ellis,ashleywalsh@example.org,228-798-6304,4772034788299025551,2025-11-24 +City Hotel,1,309,2017,February,7,18,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,108.27,0,0,Canceled,Thomas Chang,sara81@example.com,499-647-8764,630494660289,2025-06-02 +City Hotel,1,51,2017,March,10,4,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.91,0,0,Canceled,Latoya Terry,troystewart@example.org,001-559-509-8699,4992233897408,2024-03-31 +Resort Hotel,0,1,2017,January,3,16,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,D,1,No Deposit,241.0,179.0,0,Transient,53.4,0,1,Check-Out,Thomas Burns,coryadams@example.net,579.905.6784,6549480297360769,2025-01-13 +Resort Hotel,0,1,2017,September,39,24,2,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,42.61,0,1,Check-Out,William Edwards,longchristopher@example.net,(509)725-8156,4229746271612421,2024-04-12 +City Hotel,0,8,2017,January,4,26,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.37,0,1,Check-Out,Tammy Estrada,greenemelanie@example.com,+1-620-948-5017,4704996587092906010,2025-10-19 +Resort Hotel,0,166,2017,November,45,4,1,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,54.03,0,0,Check-Out,Abigail Hart,feliciamaynard@example.org,3522163621,180023793425624,2025-07-26 +City Hotel,0,0,2017,March,12,24,0,1,1,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient-Party,73.34,0,1,Check-Out,Javier Rogers,cheryl84@example.net,(437)647-8860,30181186321891,2024-04-22 +City Hotel,1,105,2017,October,40,5,2,0,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,96.24,0,1,Canceled,Ashley Johnson MD,lisachase@example.net,966-498-0527,3502890922305983,2024-07-19 +City Hotel,0,210,2017,April,15,12,2,1,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,212.56,0,2,Check-Out,Abigail Riddle,lindseysarah@example.org,905.620.9488x52339,4036401321021073,2024-04-09 +Resort Hotel,0,11,2017,January,2,10,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,D,1,No Deposit,14.0,179.0,0,Transient,64.54,1,0,No-Show,Cody Hart,mary94@example.net,001-706-669-2889,2281276853994129,2024-08-10 +Resort Hotel,0,145,2017,May,21,24,2,0,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,1,0,L,A,0,No Deposit,13.0,179.0,0,Transient,53.48,0,0,Canceled,Greg Dyer,weberashley@example.net,905.755.3406,4861994700251,2024-12-07 +City Hotel,0,49,2017,June,24,17,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.23,0,1,Check-Out,John Baker,washingtonjohn@example.net,669-486-8231x801,6011087804635093,2024-03-30 +Resort Hotel,0,78,2017,January,4,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,130.0,179.0,0,Transient-Party,106.21,0,2,Check-Out,Megan Hall,wheelerdiana@example.org,861-602-6708,4369018123757,2025-09-22 +City Hotel,1,90,2017,February,7,13,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,86.04,0,0,Canceled,John Garrison,baileylaurie@example.org,401-472-8942x2544,4561366662157591,2025-11-04 +City Hotel,1,1,2017,October,43,22,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,83.06,0,1,Canceled,Chelsea Salinas,cervanteshannah@example.org,(500)986-4358x282,4832180478269935,2026-02-23 +City Hotel,0,96,2017,November,48,25,0,5,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,D,A,0,No Deposit,308.0,179.0,21,Transient-Party,103.23,0,0,Check-Out,Ashlee Thomas,contrerasdaniel@example.org,001-412-906-4256x5663,345659793830891,2025-11-24 +City Hotel,1,3,2017,November,47,18,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,98.7,0,0,Canceled,Laura Hill,emily88@example.org,+1-621-323-0386,213170362155982,2025-03-11 +Resort Hotel,1,290,2017,March,10,4,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,240.0,179.0,0,Transient,131.35,0,1,Canceled,Jennifer Lopez,russellelizabeth@example.com,001-446-650-9395x2003,3501976928976025,2024-09-09 +Resort Hotel,0,9,2017,August,34,23,2,5,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,85.36,1,2,Check-Out,Dennis Arnold,deborahjohnson@example.org,+1-646-689-0356x1884,503800210125,2025-11-19 +Resort Hotel,0,0,2017,October,41,10,0,2,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,11.0,331.0,0,Transient-Party,39.95,1,0,Check-Out,Jamie White,crystalthornton@example.org,680-229-6320,30514676014271,2025-08-19 +Resort Hotel,1,255,2017,April,15,9,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,196.0,179.0,0,Transient,93.78,0,0,Canceled,Ashley Williams,jwang@example.net,263-256-2183x79470,4562948366503037,2025-02-12 +City Hotel,0,21,2017,June,23,9,1,2,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,1,No Deposit,37.0,222.0,0,Transient-Party,65.33,0,0,Check-Out,Danny Lee,chelseaanderson@example.net,938-462-2006x581,375960207898794,2024-10-31 +City Hotel,1,105,2017,June,23,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,61.36,0,0,Canceled,Hayley Carter,brettlutz@example.com,001-859-860-7282x26909,4677654721052037414,2026-01-15 +Resort Hotel,0,41,2017,April,17,26,0,2,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,214.18,1,3,Check-Out,Debbie Sherman,sbell@example.net,+1-552-918-1048x728,6562452057406944,2025-02-08 +City Hotel,0,99,2017,November,47,19,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.12,0,0,Check-Out,Rebecca Colon,gmontgomery@example.com,538.757.9435x586,501815614653,2025-09-21 +Resort Hotel,0,224,2017,March,11,14,4,5,2,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,137.2,0,1,Check-Out,Lauren Nguyen,eshah@example.org,(435)617-0601x65285,4069217917585606,2026-03-27 +City Hotel,0,14,2017,May,20,14,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,285.0,179.0,0,Transient,211.63,1,2,Check-Out,Max Leblanc,nroth@example.com,6812578051,502007110930,2025-12-25 +City Hotel,1,41,2017,October,43,26,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.71,0,0,Canceled,Hunter Campos,janet13@example.org,649.388.6081x118,4259452147191543917,2024-11-07 +Resort Hotel,0,0,2017,April,15,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,204.07,0,1,Check-Out,Jesse Johnson,tiffany72@example.com,(292)349-6917x092,213163020151733,2025-10-03 +City Hotel,0,11,2017,January,5,29,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,154.67,0,2,Check-Out,Brandy Lopez,johnburgess@example.com,001-677-263-8233x507,4110447742092,2025-10-31 +Resort Hotel,1,155,2017,March,9,3,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,75,Transient-Party,62.62,0,0,Canceled,Jennifer Gonzalez,dshaffer@example.net,001-887-949-2349x310,630462579842,2025-08-23 +City Hotel,0,8,2017,January,2,7,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,77.0,179.0,0,Transient,126.53,0,0,Check-Out,James Cuevas,allenhawkins@example.net,878-268-9032x628,676312101337,2024-08-01 +City Hotel,1,114,2017,June,26,28,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,121.23,0,1,No-Show,Brandon Stewart,bmaynard@example.org,+1-642-836-2512x69783,502040563145,2024-05-12 +City Hotel,0,219,2017,June,22,3,2,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,B,1,No Deposit,14.0,179.0,0,Transient-Party,110.81,0,1,Check-Out,Victor Ball,sheribryan@example.net,001-885-701-7811x026,4768227832967874,2024-10-07 +City Hotel,0,3,2017,November,47,22,1,1,2,2.0,0,BB,PRT,Direct,Direct,1,0,1,F,F,0,No Deposit,16.0,179.0,0,Transient,111.75,1,1,Check-Out,Nicole Juarez,lorithomas@example.net,001-548-413-9777,4687994566073669952,2025-11-14 +City Hotel,0,42,2017,May,22,28,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Check-Out,Brian Mullins,keith40@example.org,360-881-4496x8199,213105618909329,2024-10-10 +City Hotel,0,20,2017,April,17,24,2,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,E,2,No Deposit,15.0,179.0,0,Transient-Party,201.45,0,0,Check-Out,David Wilson,bchristensen@example.com,+1-751-429-4201x0254,4634969281532483,2025-05-04 +City Hotel,1,155,2017,May,21,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,68.0,179.0,0,Transient-Party,133.55,0,0,Canceled,Mary Myers,luis01@example.com,001-921-911-2454x3829,4815889990596273768,2026-01-15 +City Hotel,0,31,2017,March,11,9,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,234.43,0,2,Check-Out,Marc Brown,igoodman@example.org,+1-591-415-9671x212,343535293739182,2026-02-02 +City Hotel,0,13,2017,August,31,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,174.0,179.0,0,Group,63.86,0,2,Check-Out,Angela Collier,laura48@example.org,262-609-8697x00872,30017072080870,2025-09-08 +Resort Hotel,1,46,2017,August,33,18,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,127.15,0,1,Canceled,Richard Young,russellkelly@example.net,+1-363-306-8272x73234,2279736653858695,2024-11-04 +City Hotel,0,50,2017,January,4,26,0,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,110.03,0,0,Check-Out,Gabriella Jones,jasminedunn@example.com,332.737.7329,4224270533411842755,2025-10-07 +City Hotel,1,96,2017,August,35,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,99.81,0,0,Canceled,Teresa Collins,vdaugherty@example.net,887-218-7243x38790,6596109052358088,2026-03-02 +City Hotel,1,46,2017,May,21,21,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,216.03,0,0,Check-Out,Gary Gilbert,xturner@example.com,328-591-8870x03619,2288949898217218,2026-01-09 +Resort Hotel,0,11,2017,June,26,24,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,91.61,0,1,Check-Out,Brenda Nicholson,bridgesdustin@example.org,(230)357-8406x201,4572748938846924,2025-06-12 +Resort Hotel,0,23,2017,November,47,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,2.3,0,1,Check-Out,Michele Barnes,ricardopalmer@example.com,(724)855-3352x474,4130939635141,2025-10-16 +Resort Hotel,0,102,2017,February,8,22,2,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,309.0,179.0,19,Transient-Party,88.08,0,0,Check-Out,Robert Meza,jeffreybest@example.com,444.616.3909x2500,6011759229515510,2025-01-06 +City Hotel,1,96,2017,February,6,4,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.96,0,1,Canceled,Cindy Harrington,jamesevans@example.org,214.822.3576x994,2288971311099007,2024-12-23 +City Hotel,1,443,2017,April,16,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,104.04,0,0,Canceled,Kiara Hawkins,carrdevon@example.net,+1-906-519-2873,676131288075,2025-08-08 +Resort Hotel,1,152,2017,March,10,7,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,34.0,179.0,0,Transient,78.3,0,0,Canceled,Elizabeth Cooper,pwagner@example.org,216-894-5321x2753,38125194575495,2024-07-20 +Resort Hotel,0,2,2017,January,4,23,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,113.97,0,1,Check-Out,Mary Santos,davidzavala@example.org,+1-792-798-1518x5634,372060487254082,2025-09-22 +Resort Hotel,1,107,2017,March,9,2,2,5,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,E,A,0,Non Refund,284.0,179.0,0,Transient-Party,78.41,0,0,Canceled,Jacob Cabrera,gordongrace@example.org,666-204-1947x291,6505703569721430,2025-07-21 +Resort Hotel,1,248,2017,March,12,24,4,5,3,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,D,D,0,No Deposit,240.0,179.0,0,Transient,183.28,0,0,Canceled,Jacob Trevino,ricardo59@example.net,+1-870-379-6520,180022022619999,2025-12-08 +City Hotel,0,275,2017,June,24,17,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,31.0,234.0,0,Transient-Party,64.14,0,0,Check-Out,Christopher Bowen,hendrixjonathan@example.org,855.404.7639x631,5564269655263133,2024-08-24 +Resort Hotel,1,11,2017,October,42,17,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,E,1,No Deposit,14.0,81.0,0,Transient,47.57,0,3,Canceled,David Ruiz,amanda56@example.com,(245)896-3782,38617953591853,2024-05-02 +Resort Hotel,0,3,2017,June,26,28,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,61.81,0,3,Check-Out,Jessica Owens,christian74@example.net,001-466-372-5519x211,5282739431779256,2026-01-29 +Resort Hotel,1,9,2017,July,28,13,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,13.0,331.0,0,Transient,64.37,0,0,Canceled,Amy Higgins,kimberlytownsend@example.org,3006840305,4805640581896,2024-11-27 +Resort Hotel,0,1,2017,July,29,20,4,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,F,C,0,No Deposit,241.0,179.0,0,Transient,170.76,0,2,Check-Out,Alexander Mitchell,vanessa44@example.net,(361)989-0845x55317,3583028075321208,2025-06-29 +City Hotel,0,6,2017,October,40,6,1,0,1,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,A,A,1,No Deposit,16.0,331.0,0,Transient-Party,0.0,0,0,Check-Out,Steven Boyd,karismith@example.com,755-232-4198x7047,38826418352567,2025-07-07 +Resort Hotel,0,23,2017,January,2,8,1,4,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,135.67,0,3,Check-Out,Maria Wright,luke49@example.org,663-719-3150x493,4472924821732163,2025-12-14 +City Hotel,0,100,2017,October,43,24,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,82.19,0,1,Check-Out,Jacqueline Herman,karenclark@example.org,6655024828,6583197601548049,2025-02-09 +Resort Hotel,1,323,2017,February,7,13,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,64,Transient-Party,87.58,0,0,Canceled,Andrew Delgado,koneal@example.com,866.750.2864x57036,2223515254165917,2026-02-26 +City Hotel,1,0,2017,March,9,4,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,137.01,0,0,No-Show,William Webb,rebecca22@example.net,917.507.3199,345090727552155,2025-12-07 +Resort Hotel,0,17,2017,January,5,27,2,2,3,0.0,0,BB,BEL,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,124.55,0,1,Check-Out,Marvin Flores,donaldreid@example.com,(405)270-0693x533,180067749243474,2024-07-14 +City Hotel,0,38,2017,February,7,16,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.64,0,1,Check-Out,Michael Wilson,sfritz@example.org,483.760.6082,4783398615187138,2024-07-21 +Resort Hotel,1,37,2017,March,12,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Julie Martinez,mclements@example.com,9299506586,4225068698055363,2024-06-25 +Resort Hotel,1,153,2017,December,49,6,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,Non Refund,15.0,217.0,0,Transient,118.08,0,0,Canceled,Toni Lamb,adamramirez@example.com,001-683-989-8508x4258,501821927271,2025-01-07 +City Hotel,0,12,2017,November,48,26,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Contract,95.68,0,2,Check-Out,Cindy Martin,andrew47@example.net,241.283.8928,4715380554814354,2025-09-24 +City Hotel,1,114,2017,September,35,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,104.27,0,0,Canceled,Jeffery Jennings,emckinney@example.com,001-478-806-4370x343,4568750946596323,2025-06-17 +Resort Hotel,1,53,2017,July,28,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,85.58,0,1,Canceled,Anthony Gordon,amydecker@example.net,(315)424-2222x035,6011741533049923,2025-07-02 +City Hotel,1,48,2017,December,2,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.38,0,0,Canceled,Luke Moore,smithjennifer@example.com,001-540-615-4144x6627,4624315628001,2024-09-17 +Resort Hotel,0,249,2017,May,19,10,2,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,32.0,179.0,0,Transient,120.3,1,0,Check-Out,Danielle Bradley,michaelmartin@example.org,7845022250,3546190877030902,2024-11-14 +Resort Hotel,0,85,2017,August,34,22,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,53.54,0,2,Check-Out,Frank Robinson,patrick31@example.org,001-755-363-0944,4675111839547727,2024-04-21 +Resort Hotel,0,228,2017,August,34,23,0,1,2,0.0,0,Undefined,ESP,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,79.3,1,0,Check-Out,Richard Wilson,ygood@example.com,241-408-6189,6011773312184761,2025-09-30 +Resort Hotel,0,84,2017,August,35,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient,49.89,0,2,Check-Out,Chad Palmer,peter63@example.org,868.366.4460,4868770734834485,2025-10-18 +Resort Hotel,0,232,2017,May,21,27,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,312.0,179.0,0,Contract,51.14,0,2,Check-Out,Aaron Schneider,donovankenneth@example.net,001-898-293-6512x968,6527215296236412,2026-02-20 +City Hotel,1,11,2017,December,52,26,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,114.1,0,0,Canceled,Kurt Montgomery,jamescarpenter@example.org,237.537.5090x0253,30077396387302,2024-12-31 +Resort Hotel,0,6,2017,November,45,9,2,3,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,48.3,0,0,Check-Out,Jacqueline Gonzalez,baileylynn@example.org,982-883-1076x145,30216010331409,2025-06-07 +City Hotel,1,99,2017,November,45,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,85.0,179.0,0,Transient,41.95,0,0,Canceled,Evan Smith,oestrada@example.com,520.640.7490,586253026718,2025-04-17 +Resort Hotel,1,64,2017,March,12,21,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,208.51,0,2,Check-Out,Abigail Parsons MD,jennifer94@example.org,(829)678-5543,4379969344945010,2026-03-02 +Resort Hotel,0,41,2017,August,34,23,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,146.19,0,1,Check-Out,Dana Snyder,sarah73@example.com,895.546.2257x3962,30491236608134,2025-07-17 +Resort Hotel,0,16,2017,June,23,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,50.29,0,1,Check-Out,Stacy Garner,hannahlee@example.net,(675)965-5907x0667,4465988249207289,2024-11-21 +City Hotel,1,242,2017,March,10,5,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,235.57,0,0,Canceled,Gregory Brown,xburnett@example.com,633-775-5584,3588420340895972,2025-02-25 +City Hotel,0,92,2017,November,46,15,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,D,D,1,No Deposit,24.0,179.0,0,Transient,114.25,0,1,Check-Out,Kathryn Chavez,ggreen@example.net,398-371-1367x5255,4744317564297902,2024-04-01 +City Hotel,0,3,2017,November,45,5,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,80.66,0,1,Check-Out,David Maxwell,bmartinez@example.com,415.942.7946x30846,4844453335603,2024-12-14 +City Hotel,0,22,2017,November,48,25,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.04,1,1,Check-Out,Larry Higgins,wmcdaniel@example.com,(379)495-0377,5146276868668716,2024-04-15 +City Hotel,1,46,2017,June,23,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,118.68,0,0,Canceled,Jason Norris,amorales@example.com,3222839165,213152198735070,2024-05-12 +Resort Hotel,0,14,2017,November,46,14,0,1,1,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,B,1,No Deposit,12.0,210.0,0,Transient-Party,45.3,0,0,Check-Out,Elizabeth Jones,johnhoward@example.net,331.740.5953,38566960191993,2024-05-31 +City Hotel,1,15,2017,May,18,4,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,102.29,0,0,Canceled,Brianna Mccormick,hwilson@example.org,+1-271-945-9151x1501,4421313292384228390,2024-06-29 +Resort Hotel,1,25,2017,April,18,27,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,160.17,0,0,Canceled,Anne Jones,hendersonmadison@example.com,001-876-359-5588,6011329878354247,2025-06-26 +City Hotel,0,89,2017,June,25,23,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,73.11,0,0,Check-Out,Joshua Anderson,ngreene@example.org,(437)909-2189,4706592260873907630,2026-01-13 +City Hotel,0,419,2017,April,14,6,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,113.53,0,1,Check-Out,Anthony Christensen,patricia62@example.org,001-411-841-8918x955,4504179538673058930,2025-07-08 +City Hotel,1,48,2017,November,46,18,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,42,Transient-Party,90.79,0,1,No-Show,David Brooks,justin69@example.org,001-328-233-3672x53061,4038520511285426,2025-05-24 +Resort Hotel,0,140,2017,March,10,3,0,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,I,2,No Deposit,242.0,179.0,0,Transient,55.64,0,1,Check-Out,Eric Hernandez,christopher62@example.net,3243710797,3515991378918561,2024-06-12 +City Hotel,1,94,2017,August,32,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,20,Transient,60.89,0,0,Canceled,Joseph Payne,yvettegeorge@example.com,236-573-8836,4769860690659974,2024-07-01 +City Hotel,0,3,2017,March,10,10,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,215.24,1,0,Check-Out,David Johnson,swest@example.org,001-771-274-5259x51116,3594614695162846,2024-12-28 +Resort Hotel,0,29,2017,November,48,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,44.41,0,1,Check-Out,Christina Simon,odoyle@example.net,001-961-912-4670x43599,676292656011,2026-01-24 +Resort Hotel,0,16,2017,April,14,5,0,1,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient-Party,208.71,0,1,Check-Out,Megan Mills,robertshepard@example.org,(530)350-9872,180075080102563,2025-05-20 +City Hotel,1,0,2017,October,42,16,0,2,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.28,0,0,Canceled,Mandy Walker,sosastacy@example.com,(615)654-1486,3518306709351423,2026-02-17 +Resort Hotel,0,64,2017,February,6,5,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,231.93,0,1,Check-Out,Cynthia Cunningham,rreyes@example.org,697.360.4465,2303915565377818,2024-05-12 +Resort Hotel,1,51,2017,August,32,9,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,90.17,0,0,Canceled,Angelica Mays,jason50@example.org,780-763-8773x687,4126927299415816542,2024-11-21 +City Hotel,1,113,2017,March,12,19,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,119.19,0,2,Canceled,David James,sarah16@example.net,001-715-596-8113x0792,4652045866708,2024-12-09 +Resort Hotel,0,2,2017,April,14,2,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,E,1,No Deposit,14.0,179.0,0,Transient,198.69,0,0,Check-Out,Paul Watkins,samantha98@example.net,+1-342-345-7463x0967,4199070330327392,2025-10-22 +City Hotel,1,411,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,134.97,0,0,Canceled,John Olson,burtonphilip@example.net,(608)266-5925,060422509871,2025-11-30 +City Hotel,0,0,2017,September,39,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,163.03,0,0,Check-Out,Alexander Anderson,patrick87@example.com,001-671-674-2842x815,4352201180595928,2024-06-07 +City Hotel,1,107,2017,January,2,2,0,2,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.58,0,0,Check-Out,Mitchell Deleon,sheppardelizabeth@example.com,916.580.3287,4060172607136692716,2025-07-15 +Resort Hotel,0,9,2017,March,10,6,2,10,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,107.09,0,0,Check-Out,Susan Bryant,twinters@example.com,940-631-2666,4467815614736253709,2024-10-13 +Resort Hotel,0,7,2017,November,47,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,30.0,179.0,0,Transient-Party,36.81,0,0,Check-Out,Derrick Diaz,harrisnicholas@example.org,850.805.6009,6542053883114838,2024-09-27 +City Hotel,0,14,2017,March,13,29,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,170.34,1,0,Check-Out,Rebecca Lambert,nicoleanderson@example.com,001-769-591-3434x47894,340794925489178,2025-04-17 +Resort Hotel,0,19,2017,May,19,11,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,125.85,0,0,Check-Out,Erica White,fwhite@example.org,981.487.1646x067,4783861418399164341,2024-05-13 +Resort Hotel,0,9,2017,June,24,12,2,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,209.63,1,0,Check-Out,Joseph Miller,christopherwalker@example.com,001-505-497-8461,2241703429336484,2025-08-28 +City Hotel,1,15,2017,April,15,6,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,115.26,0,2,Canceled,Richard Molina,tina67@example.org,3112623168,4578924735336,2024-10-23 +Resort Hotel,0,46,2017,November,48,29,4,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,75,Transient,120.23,0,1,Check-Out,Rebecca Torres,grayerin@example.org,4848787961,30233489709189,2024-07-07 +City Hotel,1,17,2017,October,43,22,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.74,0,0,Canceled,Jack Jacobs,fleach@example.net,+1-630-440-6797,6011039918022924,2025-12-22 +City Hotel,1,23,2017,April,17,20,0,4,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,D,E,1,No Deposit,12.0,179.0,0,Transient-Party,172.27,0,0,Canceled,James Morgan,ytodd@example.net,(600)719-3049x032,4048427024745,2024-06-15 +Resort Hotel,0,110,2017,July,27,6,2,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,82.04,0,0,Check-Out,Lindsay Chavez,robertmarquez@example.com,001-784-711-7920x69451,3573991884493454,2025-10-13 +City Hotel,1,385,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,79.78,0,1,Canceled,Mr. Jeremy Cohen Jr.,benderstephen@example.com,(274)957-5489x4705,376499946578127,2025-11-06 +Resort Hotel,0,0,2017,August,35,30,2,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,136.65,0,1,Check-Out,Kathryn Perry,zgomez@example.net,001-539-939-9996,2245385311685958,2025-09-27 +City Hotel,0,15,2017,April,14,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,139.79,0,0,Check-Out,Jeffery Richards,afuller@example.com,001-248-644-8921x30656,6500954132946914,2026-03-22 +Resort Hotel,0,19,2017,December,52,27,0,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,135.75,1,1,Check-Out,Chad Morales,hursteric@example.org,248.528.1401x313,30519906108017,2024-05-29 +City Hotel,1,404,2017,March,11,13,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.07,0,0,Canceled,Tammy Alexander,lisascott@example.net,952-926-1282,180094939715319,2025-01-01 +Resort Hotel,0,51,2017,March,10,8,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,118.95,0,1,Check-Out,Alexander Cox,lisa57@example.org,(786)466-3437,3578935587165724,2025-05-17 +Resort Hotel,0,0,2017,September,35,2,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,47.98,1,1,Check-Out,Brett Stephens,hannah91@example.com,+1-429-399-9399x16896,4459253620114416,2026-01-31 +City Hotel,1,153,2017,August,32,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,213.19,0,0,Canceled,Karen Mitchell,tnelson@example.org,8435823886,3503226570928082,2024-09-26 +City Hotel,0,47,2017,July,27,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,73.58,0,1,Check-Out,Carol Taylor DDS,zdavis@example.net,001-781-641-0704,4663897427099828420,2025-10-01 +Resort Hotel,1,0,2017,January,2,12,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,1,No Deposit,244.0,179.0,0,Transient,1.46,0,1,No-Show,Pam Roberts,johnsoncaitlin@example.com,001-342-718-5384x54890,3514372627535327,2026-03-03 +City Hotel,1,67,2017,April,16,20,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,99.78,0,0,Canceled,Benjamin Phillips,ehunt@example.net,384-906-6412x560,2665040738813110,2024-08-07 +Resort Hotel,0,159,2017,November,45,5,1,3,2,1.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,224.0,75,Transient-Party,38.49,0,0,Check-Out,James Snyder,jameslittle@example.org,+1-486-400-2895x049,3591927928772543,2025-12-21 +City Hotel,0,18,2017,August,35,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,51.57,0,1,Check-Out,Daniel Phillips,ocooley@example.net,633.388.9552,30271752523564,2025-07-03 +City Hotel,1,413,2017,April,16,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.72,0,0,Canceled,Andrea Bryant,kaitlynbell@example.com,+1-710-205-4964x1287,4423297430586654,2024-05-05 +City Hotel,1,53,2017,February,8,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,126.95,0,0,Canceled,Melinda Thompson,msmith@example.org,(458)707-5456,30331075526122,2024-10-14 +City Hotel,0,305,2017,June,24,17,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,101.74,0,0,Check-Out,Jade Phillips,patelmark@example.net,5243209265,563685822105,2025-09-19 +Resort Hotel,0,166,2017,November,48,28,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,223.0,0,Transient-Party,28.83,0,0,Check-Out,Kyle Mooney,amycruz@example.com,001-950-844-2530,4596607278630,2026-01-03 +City Hotel,0,9,2017,December,49,4,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,94.5,0,1,Check-Out,Christine Leblanc,tnorris@example.net,+1-963-211-2953,4690364616846090,2026-02-03 +City Hotel,0,10,2017,January,5,31,1,1,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,0,No Deposit,281.0,227.0,0,Transient-Party,83.54,0,0,Check-Out,Alexander Wright,robert91@example.org,+1-769-887-2362,4941157868507718,2025-08-09 +Resort Hotel,0,144,2017,June,23,6,2,5,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,378.0,179.0,0,Transient,85.19,0,3,Check-Out,Joshua Cunningham,kirbyalexander@example.net,+1-220-741-2042x753,2260847556112618,2025-11-23 +Resort Hotel,0,7,2017,December,52,26,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,51.86,0,0,Check-Out,Stephanie Mcintosh,hbaxter@example.com,246-202-1277,213149422874535,2024-05-02 +City Hotel,1,200,2017,May,22,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.59,0,0,Canceled,Juan Chan,angelarios@example.org,+1-396-484-7710x60644,2287259101945667,2025-02-11 +City Hotel,1,157,2017,October,44,31,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,72.6,0,0,Canceled,Allen Weaver,brian44@example.org,(574)610-1323x8790,2255408290842643,2024-05-15 +Resort Hotel,0,43,2017,April,15,12,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,243.5,1,3,Check-Out,Mr. Martin Morales,zjones@example.net,338-686-4578x011,676182908332,2026-02-22 +Resort Hotel,1,77,2017,March,12,20,3,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,267.0,179.0,0,Transient,220.79,0,0,Canceled,Ryan Cannon,harrisadam@example.org,001-925-893-6980x729,4504848736225058,2024-10-04 +City Hotel,1,101,2017,February,7,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Refundable,10.0,179.0,0,Transient,81.68,0,0,Canceled,Catherine Crane,justin53@example.net,(606)466-7204,3546786766578917,2024-09-26 +City Hotel,1,322,2017,April,17,24,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,63.25,0,1,Canceled,Michelle Gould,zdavis@example.org,4604315644,4664247171928,2025-02-04 +City Hotel,0,13,2017,November,46,14,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,99.91,0,1,Check-Out,Mathew Olson,kristen08@example.net,(484)481-6182x50181,2238097183012554,2025-01-30 +City Hotel,1,141,2017,April,18,30,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,135.74,0,1,Canceled,Gary Walker,edwardsdenise@example.com,+1-798-439-1116x24979,4390926810632,2024-07-21 +City Hotel,0,106,2017,February,6,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,129.87,0,0,Check-Out,Terry Williams,tward@example.com,430-343-0380x8051,5592763198343200,2024-07-25 +Resort Hotel,0,16,2017,January,3,19,1,0,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,1,No Deposit,153.0,59.0,0,Transient,96.05,0,0,Check-Out,Melissa Riley,jacksonkathryn@example.org,(535)333-4271x6871,4764322703940996140,2025-03-04 +Resort Hotel,0,158,2017,November,44,2,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,76.39,0,1,Check-Out,Jesse Anderson,njones@example.net,001-796-619-5023,3592897541261936,2024-06-14 +City Hotel,1,318,2017,February,8,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Transient,107.55,0,0,Canceled,John Stone,stephenbarker@example.com,+1-811-243-6073x3005,3567112707461184,2025-02-07 +Resort Hotel,0,55,2017,December,50,9,2,5,1,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,378.0,179.0,0,Transient,108.05,0,0,Check-Out,Joshua Griffin,katelyn44@example.com,(462)971-6095x09220,6507192738434844,2024-05-16 +City Hotel,0,3,2017,April,14,8,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,182.87,0,0,Check-Out,Virginia Morales,petersonjessica@example.org,001-334-500-7037,6011076500001106,2025-11-16 +City Hotel,0,184,2017,June,22,3,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.86,0,0,Check-Out,Ronald Cook,nixonbrittany@example.net,+1-269-667-0183x16646,2594005215814010,2025-02-02 +Resort Hotel,0,0,2017,January,3,19,1,0,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,322.0,179.0,0,Group,47.29,0,1,Check-Out,Louis Tyler,david14@example.net,001-823-861-1927x41198,4145771759235991756,2024-08-07 +Resort Hotel,0,368,2017,February,6,10,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,63.18,0,1,Check-Out,Mary Wall,laura78@example.org,594-699-4340x841,4350657510412865817,2024-05-24 +Resort Hotel,1,8,2017,August,32,9,0,4,2,2.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,144.04,0,0,Canceled,Dustin Mendez,micheal66@example.org,+1-890-574-9026x340,344845198749320,2026-02-26 +Resort Hotel,0,26,2017,January,5,30,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,172.78,0,0,Check-Out,Amy Martin,wlewis@example.org,(983)635-1499,6011920205679098,2025-11-22 +Resort Hotel,0,4,2017,March,10,4,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,8.0,179.0,0,Transient,212.25,1,0,Check-Out,Ashley Martinez,zacharymiller@example.org,(542)618-2949x7222,3547370158461237,2024-11-20 +City Hotel,0,15,2017,February,8,24,0,1,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.84,1,0,Check-Out,Scott Gibbs,bwilliamson@example.org,+1-593-475-5343x3600,4617720830097,2025-04-09 +City Hotel,0,0,2017,March,10,4,2,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,D,0,No Deposit,12.0,179.0,0,Transient,3.17,0,1,Check-Out,Heather Rojas DDS,mcphersonjohn@example.org,+1-638-822-3435x24096,676395038315,2026-01-15 +Resort Hotel,0,9,2017,December,2,30,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,134.92,0,3,Check-Out,Ashley Shepard,randy36@example.net,001-946-379-1469x5425,213116105917014,2025-03-29 +City Hotel,0,0,2017,August,31,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Group,87.06,0,0,Check-Out,Jessica Vasquez,seth01@example.com,+1-875-272-6005x63070,4794384421381302395,2024-12-03 +City Hotel,0,13,2017,April,15,8,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,220.74,0,2,Check-Out,Melinda Rosario,skinnerjohn@example.org,(724)909-5120,584854684860,2024-10-14 +City Hotel,1,57,2017,April,15,9,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,249.19,0,2,No-Show,Jennifer Sanchez,carneyross@example.net,(502)519-2835x1988,4819761920150534680,2024-05-10 +City Hotel,0,42,2017,August,35,31,0,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,85.64,0,1,Check-Out,Christina Davis DDS,jamesmorris@example.org,437-449-7906x9248,4709497569413986,2025-04-03 +Resort Hotel,0,1,2017,September,38,24,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,313.0,179.0,0,Transient,56.18,0,1,Check-Out,Mrs. Heather Meyers,farrelljose@example.org,+1-630-281-5386x48004,3508188659944007,2025-09-20 +Resort Hotel,0,1,2017,December,49,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,70.0,0,Transient,46.98,0,0,Check-Out,Nicole Garcia,mikegriffin@example.org,(681)834-0182,4795399211441392944,2025-01-05 +City Hotel,1,263,2017,April,17,26,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.55,0,1,Canceled,Lisa Robinson,prestonmarcus@example.com,001-259-478-4711,6011129247569909,2024-07-19 +Resort Hotel,1,391,2017,June,24,15,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,109.04,0,0,Canceled,Katie Davis,lorirobinson@example.net,395-268-2644x00331,4289998448497098,2025-10-28 +Resort Hotel,0,16,2017,April,16,17,4,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,232.84,0,2,Check-Out,Christine Farrell,gsmith@example.org,682-384-5468x71439,344657265815938,2025-06-10 +City Hotel,0,1,2017,January,3,19,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,106.13,0,0,Check-Out,Mariah Eaton,ymiranda@example.net,946.737.2715x483,4581969308545867,2026-03-26 +Resort Hotel,0,101,2017,November,48,25,1,4,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,130.26,0,1,Check-Out,Joseph Gould,qjohnson@example.com,583.956.9196,344412137085140,2025-01-09 +City Hotel,0,65,2017,July,27,2,2,4,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,78.81,1,0,Canceled,Ashley Clark,scollins@example.com,534-414-2884x984,6011194472361521,2025-07-01 +Resort Hotel,0,352,2017,June,23,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,133.0,179.0,0,Contract,64.91,0,1,Check-Out,Kathryn Simmons,pamelalowe@example.org,356.834.9726x85279,2720954845868374,2024-08-09 +City Hotel,0,2,2017,June,23,3,1,0,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,0.0,0,0,Check-Out,Colin Vega Jr.,lsanders@example.net,839.806.6500x849,5323409840614483,2025-02-14 +City Hotel,1,299,2017,February,6,5,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient,47.03,0,0,Canceled,Robert Vazquez,woodsalexis@example.net,(200)944-9536x2387,3508516531709653,2024-09-16 +City Hotel,0,223,2017,June,24,11,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,28.0,179.0,0,Contract,62.91,0,0,Check-Out,Bryan Monroe,kwilliams@example.com,280-516-7995x553,6579392974052937,2026-03-24 +City Hotel,0,114,2017,December,51,16,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,133.63,0,0,Check-Out,Louis Rose,otorres@example.net,280.740.7728,3521597793922807,2025-09-06 +City Hotel,0,11,2017,May,20,16,1,2,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,172.67,0,1,Check-Out,Andrew Abbott,tonya93@example.com,(631)593-7395x55696,3531234422905353,2025-05-30 +City Hotel,1,418,2017,March,9,3,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.41,0,0,Canceled,Lance Brown,stephanie71@example.com,001-695-284-8300,3566339877714305,2024-12-30 +City Hotel,1,9,2017,January,4,25,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,128.02,0,0,Canceled,Christopher Howard,bentleymichael@example.net,770.399.6881,060456242308,2026-01-30 +City Hotel,1,144,2017,April,18,30,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,131.53,0,0,Canceled,Jose Cook,yclark@example.org,+1-471-953-4674,30172576008362,2025-01-09 +Resort Hotel,1,37,2017,October,41,9,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,81.35,0,0,Canceled,Michael Mckee,fshelton@example.org,262.982.2780,30044650379672,2025-10-21 +City Hotel,0,12,2017,June,23,9,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,78.69,0,0,Check-Out,Cynthia Harper,anthonygina@example.org,731.486.1552x9703,30498796862944,2024-07-29 +City Hotel,1,140,2017,December,2,30,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,40,Transient,104.25,0,0,Canceled,Olivia Martinez,whiteandrew@example.com,001-854-371-2189x1272,2278912601495721,2024-12-17 +City Hotel,0,45,2017,June,23,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,83.88,0,0,Check-Out,Mr. Nicholas Munoz,gmoore@example.com,(290)462-1280,6582411873891008,2025-06-24 +City Hotel,0,0,2017,October,44,28,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,101.19,0,0,Check-Out,Thomas Waters,cperez@example.net,496-978-1863x038,3563561405959093,2024-04-17 +Resort Hotel,0,22,2017,September,36,6,1,2,2,2.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,193.25,0,0,Check-Out,Ashley Stokes,jenkinstiffany@example.org,(490)367-4883x26145,4576058484642678538,2025-03-18 +Resort Hotel,0,91,2017,April,15,15,2,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,L,A,1,No Deposit,16.0,179.0,0,Transient-Party,230.91,0,0,Check-Out,Kyle Singh,anthony42@example.org,001-989-819-7386x03363,180067879743210,2024-09-13 +Resort Hotel,1,14,2017,August,31,1,2,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,79.93,0,0,Canceled,Spencer Jones,uthomas@example.net,662-633-0494x80044,630457742546,2026-01-14 +Resort Hotel,0,46,2017,January,3,17,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,97.97,0,0,Check-Out,Vicki Fry,jessica04@example.org,831-321-5429x369,4394282777179,2025-02-25 +City Hotel,0,45,2017,June,23,5,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.42,0,2,Check-Out,Johnny Fisher,patricia85@example.org,(575)649-2717x8138,4154353900625,2025-07-24 +Resort Hotel,0,0,2017,June,26,27,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,73.0,179.0,0,Transient,45.63,1,1,Check-Out,Timothy Fuentes,hopkinsalicia@example.net,(655)575-2427x5863,4773145821940434,2025-03-16 +City Hotel,0,47,2017,February,8,18,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient-Party,103.84,0,1,Check-Out,Michelle Sullivan MD,brendajones@example.org,709-487-5686x62333,4544922108833534,2025-09-23 +Resort Hotel,0,0,2017,September,39,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,110.62,1,1,Check-Out,Jennifer Duncan,kristine67@example.net,259-775-1821x99724,576561179267,2025-10-17 +City Hotel,0,1,2017,November,47,24,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,123.3,0,1,Check-Out,David Summers,allison33@example.net,001-660-228-0867,3512363955533135,2025-06-18 +Resort Hotel,0,125,2017,March,14,30,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,G,2,Refundable,13.0,222.0,0,Transient-Party,64.07,0,0,Check-Out,Kristen Flores,paul76@example.net,6156750422,6011524472864779,2025-08-15 +Resort Hotel,0,1,2017,September,39,29,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,197.62,0,2,Check-Out,James Parsons,nschmidt@example.org,254.689.5274x6740,3584831838637979,2025-01-20 +City Hotel,0,2,2017,June,26,28,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.44,0,1,Check-Out,Alexa Ingram,riddlejodi@example.org,(441)642-9770,375320816470081,2024-04-16 +Resort Hotel,0,141,2017,March,12,17,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,139.58,0,2,Check-Out,James Stanley,gsmith@example.com,715-363-2408,630437171840,2026-02-04 +Resort Hotel,1,271,2017,February,6,8,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,220.37,0,1,Canceled,Tyler Williams,broberts@example.com,5904471567,4741388910684179,2025-01-12 +City Hotel,1,8,2017,April,15,13,1,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,B,0,No Deposit,11.0,179.0,0,Transient-Party,100.0,0,1,No-Show,Melissa Torres,williampeterson@example.net,498.328.6843x94608,3593071728926823,2024-07-17 +City Hotel,1,412,2017,March,10,4,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,45.38,0,2,Canceled,Lauren Marshall,nathanhayes@example.com,+1-943-494-8608x758,4354887868914,2024-08-24 +City Hotel,0,42,2017,April,16,18,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.58,0,1,Check-Out,Suzanne Johnson,rachel55@example.com,303-208-5035x39414,3566709990818433,2025-10-17 +City Hotel,1,100,2017,January,4,21,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,87.24,0,1,Canceled,Miss Sharon Park,angelarichardson@example.net,379-761-0253x974,3571949117773151,2025-08-14 +City Hotel,1,237,2017,April,14,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,75.61,0,0,Canceled,Mark Mcclain,lfuller@example.org,248-452-0685x0021,3506227490005560,2024-04-06 +City Hotel,0,19,2017,January,3,14,2,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient-Party,95.61,0,0,Check-Out,Tracy Frost,perkinsjesus@example.net,001-949-650-7622x358,3588370934520819,2025-10-17 +City Hotel,0,104,2017,December,2,30,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,225.0,0,2,Check-Out,Jordan Jones,baileyjuan@example.com,+1-536-715-5142x251,4816079200512653236,2026-02-25 +Resort Hotel,1,12,2017,April,14,3,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,Victor Ruiz,julie98@example.org,(484)396-0557,503838520271,2024-08-10 +City Hotel,1,29,2017,January,3,16,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.35,0,0,Canceled,Jodi Mendoza,wileyadriana@example.com,(911)678-7692x6296,630441381450,2026-02-26 +City Hotel,0,24,2017,November,45,8,0,3,2,0.0,0,HB,NLD,Groups,Direct,0,0,0,A,F,2,No Deposit,86.0,179.0,0,Transient,132.16,0,0,Check-Out,John Perez,lozanoanthony@example.net,767-418-4862,6011579174083789,2024-08-01 +Resort Hotel,1,18,2017,September,35,2,1,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,100.1,0,1,Canceled,Adam Gillespie,trichardson@example.org,+1-324-272-4200x699,6596516286876828,2024-12-19 +Resort Hotel,0,38,2017,November,47,25,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,42,Transient-Party,80.74,0,0,Check-Out,Matthew Lucas,donnaacosta@example.net,893.745.9787x86225,3559600912954530,2025-05-06 +City Hotel,1,389,2017,January,4,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,85.83,0,0,Canceled,Theresa Davis,katie76@example.org,(308)460-9403x6105,180011736710848,2025-06-29 +City Hotel,0,4,2017,November,47,24,0,3,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,119.19,1,0,Check-Out,Sherry Franco,hensleyjanet@example.org,(972)537-8103x8065,3558787419699915,2026-02-22 +City Hotel,1,196,2017,March,10,8,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.22,0,0,Canceled,Robert Jenkins,gwilliams@example.org,671.935.0529,4223027682487,2024-05-23 +City Hotel,0,284,2017,June,23,9,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,84.12,0,2,Check-Out,Cathy Young,vchristensen@example.com,(748)631-3066x0750,4918869462944,2024-04-17 +City Hotel,0,161,2017,May,18,2,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.58,0,1,Check-Out,Steven Davis,crystal38@example.net,709.461.9582x497,6525223638073198,2024-11-28 +City Hotel,1,102,2017,January,2,9,4,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,76.78,0,0,Canceled,Mariah Collins,melendezmichael@example.com,+1-487-900-0990x523,4484907069997461,2025-12-28 +City Hotel,0,1,2017,January,4,21,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,93.33,0,0,Check-Out,Edward Stanton,johnathantyler@example.net,(483)414-6492x6514,4168312107441312,2025-05-07 +City Hotel,0,89,2017,May,18,3,1,2,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,108.28,0,2,Check-Out,Debra Caldwell,boylehaley@example.com,6809739776,4376054458981035475,2025-03-10 +City Hotel,1,199,2017,May,18,1,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,203.0,0,Transient,110.13,0,0,Canceled,Brooke Ramirez,scottlisa@example.com,861.600.0307x9125,213185770236604,2024-11-25 +Resort Hotel,0,6,2017,January,5,28,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,108.65,0,1,Check-Out,Nicole Smith,coopergina@example.net,+1-703-521-9213x59218,4554806566680783,2025-01-29 +City Hotel,0,26,2017,August,32,6,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,81.95,0,0,Check-Out,Jessica Bell,john29@example.org,664-966-3014x1340,574511760914,2024-08-29 +City Hotel,0,211,2017,February,8,18,0,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient,68.47,0,0,Check-Out,Ann Barnett,xavier49@example.org,+1-340-745-4650x761,4404027481745831,2024-04-27 +Resort Hotel,0,209,2017,April,17,20,3,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,242.0,179.0,0,Transient,123.55,0,2,Check-Out,Mary Whitney,amy87@example.com,001-371-972-3366x1439,060492696079,2025-08-15 +Resort Hotel,0,0,2017,June,26,28,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient-Party,76.89,0,1,Check-Out,Donald Salazar,ashley18@example.net,257.485.0151x40296,4746309304313,2024-10-05 +City Hotel,0,5,2017,April,15,10,2,2,2,1.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,137.76,0,1,Check-Out,Ashley Simpson,connorjoseph@example.com,001-375-554-8973x5769,4027186072393877,2024-05-09 +Resort Hotel,1,41,2017,August,33,13,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,0,No Deposit,246.0,179.0,0,Transient,194.33,0,0,Canceled,Joshua Mann,hprice@example.com,+1-528-915-9047,4391796346260481837,2024-11-01 +City Hotel,0,155,2017,December,52,26,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,87.76,0,1,Check-Out,Julie Flores,leah18@example.com,813-292-0887x6268,4725616770622,2024-06-06 +City Hotel,1,87,2017,August,31,1,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,43.07,0,1,Canceled,Brandi Roberson,cruzjessica@example.org,+1-888-589-8888x5464,4693034594606381713,2025-06-23 +City Hotel,1,91,2017,November,45,11,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,86.0,0,0,Canceled,Melinda Hanson DDS,dale78@example.net,631-497-4746x6848,3512547227208910,2024-10-27 +City Hotel,0,24,2017,August,32,9,2,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,12.0,179.0,0,Transient,104.36,0,3,Check-Out,Janice Jones,xhines@example.net,001-210-758-8554x6170,6011020860462599,2025-03-09 +Resort Hotel,0,14,2017,June,25,19,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.6,0,0,Check-Out,Penny Johnson,johnsonrichard@example.org,2942049310,3589878356359283,2025-10-14 +City Hotel,0,107,2017,May,20,18,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,2.0,45.0,0,Transient-Party,65.07,0,0,Check-Out,James Jensen,robertthompson@example.com,(322)295-9488x9446,4596284555184250,2024-04-07 +Resort Hotel,0,2,2017,September,38,20,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,2,No Deposit,17.0,179.0,0,Transient,49.14,0,0,Check-Out,Kenneth Branch,crobinson@example.org,803.370.6327,30514674732486,2025-01-09 +City Hotel,0,2,2017,March,13,25,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,134.31,0,0,Check-Out,Tyler Allen,rebecca78@example.net,(707)939-2685x403,180073953012837,2026-03-03 +City Hotel,0,6,2017,November,47,18,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,74.5,0,2,Check-Out,James Aguilar,orogers@example.com,858.779.2281,586275961348,2024-08-10 +Resort Hotel,0,46,2017,June,22,2,1,3,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,E,E,2,No Deposit,206.0,179.0,0,Transient,197.99,1,3,Check-Out,Jessica Thompson,aarnold@example.com,8865313007,4582951285362184,2025-09-03 +Resort Hotel,0,0,2017,October,43,24,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,52.11,0,0,Check-Out,Gregory Hall,bvalenzuela@example.org,936.511.8757,6011923557108179,2025-12-07 +Resort Hotel,0,0,2017,September,36,3,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,45.54,0,0,Check-Out,Keith Davis,samanthagrimes@example.org,(816)781-6462,373966507257138,2025-05-24 +City Hotel,0,65,2017,June,23,10,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,65,Transient,79.96,0,0,Check-Out,Rodney Patton,joshuahoffman@example.org,+1-846-559-8972x9702,4657601414934531939,2026-01-17 +City Hotel,1,2,2017,March,9,4,2,4,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,69.63,0,1,Canceled,Michael Houston,nichole79@example.net,001-838-833-2988x66905,3557702896756576,2025-05-24 +City Hotel,0,14,2017,November,48,26,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,99.11,0,1,Check-Out,Rachel Torres,rachel18@example.net,927.850.5314x17442,4313186427228,2026-03-02 +Resort Hotel,1,266,2017,April,16,20,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,108.41,0,0,Canceled,Mark Hernandez,carl96@example.net,+1-253-567-2651x097,4950609975844,2024-10-13 +City Hotel,0,44,2017,October,43,25,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,169.0,179.0,0,Transient,40.53,0,0,Check-Out,Jeff Thompson,hannahcastillo@example.com,+1-675-901-3274,3540442603212106,2025-02-17 +City Hotel,0,2,2017,January,2,1,1,1,1,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,141.45,0,1,Check-Out,Debra Lee,kristinehardin@example.net,738-343-3341x60251,4459327527109925,2024-07-12 +Resort Hotel,1,18,2017,March,13,25,3,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,65.78,0,1,Canceled,Megan Ryan,dixonruth@example.com,8598279122,6525845292531507,2025-02-26 +City Hotel,0,51,2017,November,46,17,2,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,135.12,0,2,Check-Out,David Clark,johnsonbrittany@example.org,486-647-1923,6011456009611870,2025-10-08 +City Hotel,1,150,2017,November,47,20,1,3,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,70.79,0,1,Canceled,Todd Rojas,jamesvaughn@example.net,772.455.1555x62239,6011495087986135,2024-05-18 +City Hotel,1,251,2017,April,16,18,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,199.61,0,1,Canceled,Steven King,hilljean@example.org,621.667.7260x581,3544723600134013,2025-03-16 +City Hotel,1,13,2017,June,24,11,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.61,0,2,Canceled,Jeffrey Stokes,sandrabuchanan@example.org,(402)292-1023x14048,4804881552856,2025-12-28 +Resort Hotel,0,20,2017,March,10,8,4,7,2,0.0,0,BB,GBR,Online TA,GDS,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,239.99,0,1,Check-Out,Casey Wright,josephhale@example.com,6344413246,5491650817666156,2024-09-12 +Resort Hotel,0,9,2017,December,49,5,2,2,2,0.0,0,BB,,Complementary,Direct,1,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,100.78,0,1,Check-Out,Janet Oliver,susan11@example.com,7865167332,3577408916918560,2025-04-22 +Resort Hotel,1,179,2017,June,24,16,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,A,2,No Deposit,239.0,179.0,0,Transient,72.29,0,0,Canceled,Gary Smith,mauricemyers@example.net,553.460.5779x376,3505992215679863,2024-09-01 +City Hotel,1,146,2017,October,42,21,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,72.9,0,0,Canceled,Gerald Wall,gpugh@example.com,7153599760,2291277584761009,2025-06-23 +City Hotel,1,14,2017,June,26,26,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,105.8,0,2,Canceled,Hannah Dickson,wilsonelizabeth@example.com,832.954.3205x945,30548684044441,2025-06-21 +Resort Hotel,1,16,2017,January,3,18,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,G,1,No Deposit,243.0,179.0,0,Transient,177.71,0,0,Canceled,Madeline Boyle,howens@example.com,4074862116,2254108981527013,2025-10-09 +Resort Hotel,0,7,2017,March,9,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,234.81,1,1,Check-Out,Virginia Lynch,darrenstewart@example.org,+1-411-315-1518x73243,3578488690510295,2025-01-14 +Resort Hotel,0,186,2017,November,48,29,1,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,3,Refundable,14.0,222.0,0,Transient-Party,40.52,0,1,Check-Out,Tammy Bridges,wheelerrichard@example.net,+1-325-300-1893x17171,4633408388873243100,2025-10-08 +City Hotel,1,40,2017,July,27,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,105.43,0,0,Canceled,Danielle Simmons,zdixon@example.org,(508)958-8556,5101253515967430,2026-03-22 +City Hotel,0,18,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,95.53,0,1,Check-Out,Shelly Henderson,stoneaudrey@example.net,+1-365-216-2324x056,3510703037897176,2024-10-11 +Resort Hotel,1,93,2017,February,5,2,1,6,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,52.08,0,1,Canceled,Frank Davis,angelicaparks@example.com,933-217-4343x128,2272359647440566,2026-01-21 +City Hotel,0,0,2017,November,47,21,1,2,1,0.0,0,BB,,Corporate,TA/TO,0,0,1,A,D,0,No Deposit,9.0,179.0,0,Transient,40.86,1,0,Check-Out,Jennifer Williams,benjamin26@example.net,8234698892,3559410243760600,2025-08-12 +City Hotel,0,1,2017,July,28,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,39.0,231.0,0,Transient-Party,78.74,0,0,Check-Out,Robert Mills,barnettolivia@example.org,9362213296,30394619911051,2025-05-30 +City Hotel,0,25,2017,February,5,1,1,1,1,0.0,0,SC,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,142.82,0,0,Check-Out,Philip Yates,dorothy89@example.com,967.636.1900x90643,213183608846082,2026-03-16 +Resort Hotel,0,43,2017,May,22,26,2,6,2,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,182.0,179.0,0,Transient,111.92,0,3,Check-Out,Chad Romero,cynthia35@example.net,708.941.5378x41663,4572142201087145,2026-01-19 +City Hotel,0,2,2017,February,7,14,0,2,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,153.29,0,1,Check-Out,Timothy Odom,bruce85@example.net,433.277.2442x7318,213193338442227,2025-09-02 +City Hotel,1,21,2017,May,22,29,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient-Party,106.33,0,0,Canceled,Lisa Morales,erik04@example.net,(513)317-5985,30457388952216,2026-01-30 +City Hotel,0,51,2017,March,11,9,0,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.62,0,2,Check-Out,Victor Jordan,courtney92@example.net,(843)349-0574x3285,4668090065860231194,2025-09-29 +City Hotel,0,51,2017,December,49,5,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,108.46,0,0,Check-Out,Lisa Scott,dprice@example.net,+1-842-818-7879x4469,676299597382,2025-03-05 +City Hotel,0,47,2017,November,46,13,0,3,1,0.0,0,BB,BEL,Aviation,Corporate,1,0,0,A,A,0,No Deposit,11.0,171.0,0,Transient,114.65,0,1,Check-Out,Michael Ellis,ryan53@example.net,595-870-2579,36357639816083,2025-11-05 +City Hotel,0,15,2017,May,21,25,0,1,2,0.0,0,FB,ESP,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,122.65,1,2,Check-Out,Maria Brennan,hortiz@example.org,+1-665-627-4874,213127989430495,2025-06-14 +City Hotel,0,116,2017,May,19,10,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,242.37,0,2,Check-Out,Jessica Williams,tara39@example.org,+1-215-221-4815x9047,4315822592808926,2025-01-12 +Resort Hotel,0,30,2017,March,12,18,1,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,316.0,179.0,0,Transient-Party,130.74,0,0,Check-Out,Lisa Odonnell,lisa33@example.com,(942)206-3593x8676,3532003812370273,2024-08-21 +Resort Hotel,0,90,2017,March,13,30,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,F,0,No Deposit,243.0,179.0,0,Transient,102.95,0,0,Check-Out,Victor Lewis,jacobthompson@example.com,001-868-962-9987,4669535310795496210,2025-06-07 +City Hotel,0,1,2017,June,23,5,1,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,87.0,179.0,0,Transient-Party,76.21,0,0,Check-Out,Rebecca Tapia,mary81@example.net,(925)505-8502x92299,2239806771840807,2025-01-04 +City Hotel,1,160,2017,December,49,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.63,0,1,Canceled,Joan Rogers,kyle89@example.org,001-824-895-6208,38139577871967,2024-09-10 +City Hotel,0,17,2017,December,52,26,2,1,1,0.0,0,BB,RUS,Direct,Direct,0,0,0,D,B,1,No Deposit,9.0,179.0,0,Transient-Party,112.37,0,2,Check-Out,Mr. Jeffrey Nguyen,andrewphillips@example.com,741-329-4865,4155472273935,2024-06-29 +City Hotel,0,26,2017,June,23,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,74.0,0,Transient,42.09,0,0,Check-Out,Angela Luna,michaelperkins@example.net,852-902-7406,180089830377607,2025-01-24 +City Hotel,1,444,2017,May,21,21,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,101.19,0,0,Canceled,Alejandro Davis,christopheralvarez@example.net,275.622.7335x29485,4409634716116723,2024-10-04 +Resort Hotel,0,0,2017,October,40,2,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,H,0,No Deposit,17.0,67.0,0,Transient,35.93,0,0,Check-Out,Eduardo Hart DDS,qmontoya@example.net,7233997202,4274879168534673,2026-01-07 +Resort Hotel,1,17,2017,October,43,24,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Canceled,Duane Clark,jennifer29@example.com,(224)420-9932,2260042815799161,2024-12-15 +City Hotel,0,187,2017,January,4,24,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,85.27,1,1,Check-Out,Lisa Bowman,shafferalexander@example.com,001-217-237-1886x2966,2246642401384366,2024-07-27 +City Hotel,1,52,2017,April,18,30,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,226.16,0,1,Canceled,Jose Smith,emilydixon@example.org,(414)567-6697x846,2462695691620359,2024-09-24 +Resort Hotel,0,9,2017,July,28,12,1,4,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,209.71,0,2,Check-Out,Tammy Nguyen,wilsonbrandon@example.org,+1-711-321-8051x174,503895193624,2025-02-15 +City Hotel,1,140,2017,May,19,10,4,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.21,0,0,Canceled,Maria Harrington,ronald52@example.org,876.527.7339,30596799375226,2025-09-13 +City Hotel,1,2,2017,September,39,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,44.6,0,0,Check-Out,Michael Gibbs,monicagomez@example.org,+1-615-377-2913x9354,4848353962722204,2025-11-17 +Resort Hotel,0,33,2017,July,27,3,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,81.5,0,1,Check-Out,Greg Williams,kelly76@example.org,001-444-529-5120,6568709549274808,2025-10-08 +Resort Hotel,0,105,2017,May,20,15,2,0,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,146.89,0,1,Check-Out,Nicole Baker,jenniferhardin@example.com,+1-441-922-7463x3560,180077731773404,2024-10-30 +City Hotel,1,405,2017,November,46,11,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,98.13,0,0,Canceled,Justin Jones,qmclean@example.com,(438)741-1129,344434112075599,2024-09-29 +City Hotel,0,24,2017,April,15,13,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,224.68,1,1,Check-Out,Kimberly Jackson,okeith@example.com,702.613.5582,4219327866010,2025-03-20 +City Hotel,1,277,2017,April,14,5,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,174.0,0,1,No-Show,Jeremy Turner,mbrown@example.com,+1-580-347-9817x3412,3523943743982756,2026-03-08 +Resort Hotel,0,89,2017,November,46,16,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,264.0,179.0,0,Transient-Party,42.91,0,0,Check-Out,Carlos Brown,gonzalescarlos@example.org,+1-649-259-2474x202,3536373397870088,2024-04-19 +City Hotel,0,5,2017,November,48,25,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,78.0,0,Transient,51.21,0,0,Check-Out,Shannon Ryan,teresa57@example.com,001-747-802-5860x11639,3591124197411256,2025-06-18 +City Hotel,0,60,2017,April,14,5,2,5,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Transient,109.22,1,0,Check-Out,Yvonne Patterson,rebekahbeard@example.net,+1-898-382-9029x77757,4469748349493510,2025-10-12 +City Hotel,1,16,2017,April,15,10,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,B,0,No Deposit,9.0,179.0,0,Transient,252.0,0,0,Canceled,James Rivas,tonyarowe@example.com,474-605-9143,6531987078305862,2026-02-10 +City Hotel,0,0,2017,December,52,26,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,127.98,0,0,Check-Out,Rachel Soto,gwendolyn71@example.org,001-710-412-7816x521,3514839095341255,2025-05-21 +Resort Hotel,0,103,2017,January,4,27,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,303.0,179.0,75,Transient-Party,79.63,0,0,Check-Out,Danielle Lucas,eholland@example.net,(988)391-1317,30095854794397,2024-11-11 +City Hotel,0,165,2017,March,14,31,1,4,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,215.02,0,0,Check-Out,Olivia Russell,melissa69@example.org,314.936.0635x01916,676162682048,2024-05-23 +Resort Hotel,0,7,2017,January,5,27,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,149.84,1,2,Check-Out,Amber Cruz,robbinsthomas@example.net,631-787-6735,30011615639763,2025-12-24 +City Hotel,1,18,2017,February,7,10,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.66,0,1,Canceled,Gregory Smith,masontony@example.com,477-333-3990x4978,373038859195207,2024-08-30 +City Hotel,1,165,2017,March,12,16,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,139.42,0,0,Canceled,Alison Miller,wardbrittany@example.org,438.906.7083,213171353012752,2024-04-20 +City Hotel,1,96,2017,February,6,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,80.98,0,0,Canceled,Jessica Lane,mtaylor@example.org,3409730817,3581625588857644,2026-02-03 +Resort Hotel,0,159,2017,November,48,30,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,12.0,222.0,0,Transient-Party,68.25,0,0,Check-Out,Angela Drake,dholmes@example.net,001-483-520-0579x025,180037696883630,2025-09-16 +City Hotel,0,103,2017,April,15,13,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.99,0,1,Check-Out,April Carter,xjones@example.com,001-968-863-9993x7460,502078198061,2024-12-11 +City Hotel,0,42,2017,May,19,12,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,129.09,0,2,No-Show,Shannon Hernandez,cooperrichard@example.org,532.651.0807x1685,4345311112096495538,2024-08-21 +Resort Hotel,0,102,2017,February,9,29,4,7,2,1.0,0,BB,CN,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,242.65,0,0,Check-Out,Michelle Stevens,smithbrandon@example.org,+1-626-752-2558x36323,3506816982779771,2024-11-07 +City Hotel,0,83,2017,April,14,5,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.89,0,1,Check-Out,Olivia Williams,rebecca19@example.com,(318)880-2944x52603,3545806525502866,2026-02-25 +City Hotel,0,50,2017,July,27,6,0,4,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,82.83,0,0,Check-Out,Garrett Thomas,hamiltonmark@example.com,972-328-2324,4662991085313502150,2025-08-02 +City Hotel,0,93,2017,January,2,10,2,3,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,32.0,179.0,0,Transient,127.8,0,0,Check-Out,Nicole Lewis,linda00@example.org,842.235.9873x172,36707064505637,2024-08-20 +City Hotel,1,409,2017,June,23,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,107.39,0,0,Canceled,Douglas Fuller,idorsey@example.com,7764617241,4081403840996342,2024-03-28 +City Hotel,0,136,2017,November,45,7,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,0.71,0,2,Check-Out,Jordan Harper,howekevin@example.org,(307)378-8796,3532399113149394,2025-09-06 +City Hotel,1,137,2017,May,19,6,2,2,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,225.63,0,2,Canceled,Michelle Hall,brownkristy@example.com,+1-218-381-0834,676139619321,2024-08-22 +City Hotel,0,81,2017,August,32,6,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,51.08,0,2,Check-Out,Megan Hernandez,glenn78@example.org,001-538-534-6105x001,4831714244377837716,2025-08-21 +Resort Hotel,0,2,2017,October,42,19,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,57.63,0,1,Check-Out,Jeremiah Fisher,bduke@example.org,001-447-755-8958x09568,4452015638991,2025-02-15 +City Hotel,0,67,2017,February,5,1,4,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,2,No Deposit,378.0,179.0,0,Transient,136.09,1,2,Check-Out,Ryan Barrera,danieldillon@example.com,371-569-2192,2655642714858167,2025-10-25 +Resort Hotel,0,13,2017,March,12,20,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,132.91,0,1,Check-Out,Daniel Martinez,fsmith@example.org,+1-441-366-0534x1061,30269045717522,2024-11-13 +City Hotel,0,45,2017,October,43,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,75.78,0,0,Check-Out,Douglas Howard,vjennings@example.com,001-687-697-5372x4246,4448558902117059,2024-12-19 +City Hotel,1,374,2017,March,10,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,82.28,0,0,Canceled,Jeffrey Leonard,smckee@example.org,+1-465-307-0207x45738,340795301875476,2025-08-09 +City Hotel,0,6,2017,August,34,26,1,3,1,0.0,0,Undefined,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,116.48,0,2,Check-Out,Jasmine Hahn,richardchapman@example.org,+1-238-827-0836,3566965806183400,2025-06-16 +City Hotel,0,6,2017,October,43,22,0,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.87,0,1,Check-Out,Erik Williams,ganderson@example.org,712.699.1769,38520953223842,2025-10-21 +City Hotel,1,151,2017,January,5,31,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,38,Transient,102.41,0,0,Canceled,Susan Melendez,donald14@example.net,(815)311-3914,503875566211,2026-01-28 +Resort Hotel,0,294,2017,April,16,19,4,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient,143.93,0,0,Check-Out,Robin Baker,bkim@example.org,001-727-244-5041x39831,340949660810364,2025-04-09 +Resort Hotel,0,144,2017,April,15,9,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,360.0,179.0,0,Transient,132.74,0,1,Check-Out,Raymond Brooks III,gkey@example.org,(474)970-2531x436,3512972697638588,2024-08-20 +Resort Hotel,1,20,2017,May,18,3,2,5,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,F,E,0,No Deposit,243.0,179.0,0,Transient,99.62,0,0,Canceled,David Mitchell,piercejames@example.net,967.386.3058,213190167963133,2025-05-06 +City Hotel,1,96,2017,November,45,7,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,105.38,0,0,Canceled,Felicia Matthews,iwatts@example.com,5513193332,3506179899040807,2024-09-06 +City Hotel,0,0,2017,November,47,23,0,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.09,0,2,Check-Out,Jill Stevens,michaeljones@example.net,971.697.4077x87335,213149814155287,2025-07-20 +City Hotel,1,405,2017,May,18,4,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,84.65,0,0,Canceled,Roger Johnson,sara26@example.org,9022471297,6570311674368806,2024-11-06 +Resort Hotel,0,34,2017,July,28,9,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Contract,52.13,0,2,Check-Out,Cynthia Price,ukerr@example.com,557-751-7467x125,6011189177139206,2025-12-28 +City Hotel,0,169,2017,April,15,9,0,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.02,0,2,Check-Out,John Johnson,hwarren@example.net,001-518-400-1262x3623,4889423160326,2025-04-04 +City Hotel,0,52,2017,April,15,10,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,108.49,0,1,Check-Out,Alison Delacruz,kennethjennings@example.org,4514253445,30123219355967,2024-07-10 +Resort Hotel,0,35,2017,March,11,13,4,4,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,233.03,1,2,Check-Out,Henry Parker,uferguson@example.org,505.808.0735,370069870696538,2026-03-06 +City Hotel,1,15,2017,February,6,7,0,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.38,0,2,Canceled,Curtis Davis,ashleyfrench@example.org,+1-849-435-7853,3550889652007265,2025-05-29 +Resort Hotel,0,36,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,96.76,1,0,Check-Out,John Clark,kathleenspencer@example.org,(631)629-5019,6011719256422923,2024-10-08 +City Hotel,0,0,2017,November,47,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,43.55,0,1,Check-Out,Amy Chapman,christinepadilla@example.com,001-718-824-7519x837,4621496133025,2025-03-23 +City Hotel,0,0,2017,June,26,30,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,90.0,179.0,0,Transient,120.18,0,0,Check-Out,Maria Williams,kevin38@example.com,430-432-2580,4423678904499965717,2024-05-17 +City Hotel,0,13,2017,February,6,4,0,2,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,167.08,0,0,Check-Out,Nancy Hogan,watsonluis@example.com,(465)924-3960x051,2458200308999571,2026-03-19 +City Hotel,0,92,2017,January,5,29,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,112.7,0,0,Check-Out,Howard Hunter,roblesmatthew@example.com,405-676-6381,3583658359704396,2024-07-25 +City Hotel,1,402,2017,January,2,10,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,39.69,0,0,Canceled,Dylan Baker,mmorris@example.org,205.757.8293,4790062417488232,2025-08-20 +City Hotel,0,13,2017,July,27,5,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Group,61.53,0,2,Check-Out,William Mcbride,tina36@example.net,855-342-7667x6296,4115892642109965,2024-07-01 +Resort Hotel,0,93,2017,November,46,16,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,79.32,0,1,Check-Out,Jenny Sanchez,burnettaustin@example.org,(492)886-1458x00623,30339182274676,2024-06-09 +City Hotel,1,95,2017,February,8,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,128.78,0,0,No-Show,Suzanne Hancock,brandy14@example.net,(546)531-9459x62486,4631285989455725406,2025-02-09 +City Hotel,0,98,2017,January,3,14,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient-Party,104.56,0,0,Check-Out,Jason Riggs,smithterry@example.org,+1-891-730-8916x54855,180068249366096,2025-01-29 +City Hotel,0,22,2017,November,45,5,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,161.54,0,1,Check-Out,Suzanne Lambert,dcardenas@example.net,001-540-738-1653x00993,4849560372449,2024-12-23 +Resort Hotel,0,372,2017,May,20,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,89.4,0,0,Check-Out,Tyler Green,wsimpson@example.net,(565)349-2046,3500825072243305,2025-12-23 +City Hotel,1,39,2017,July,27,6,1,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.83,0,0,Canceled,Zachary Doyle,haleyherman@example.org,(337)445-2717,6522506671643510,2025-12-03 +Resort Hotel,0,14,2017,February,6,3,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,E,C,0,No Deposit,241.0,179.0,0,Transient,45.7,0,1,Check-Out,Noah Briggs,martha54@example.com,484-550-3610,4189527836271,2025-10-08 +Resort Hotel,0,102,2017,April,14,4,2,10,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,223.03,0,2,Canceled,Nicole Ward,iobrien@example.com,904-803-3861x3675,4943031945600,2025-05-29 +City Hotel,0,21,2017,June,26,26,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.63,0,2,Check-Out,Blake Norris,jerry37@example.org,536.254.6712x138,4377414178077,2024-12-10 +Resort Hotel,1,155,2017,November,47,22,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,53.44,0,0,Canceled,Latoya Fitzgerald,ravensweeney@example.net,(599)443-9335,4363422753531,2024-05-26 +Resort Hotel,0,0,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,69.0,0,Transient-Party,56.17,0,1,Check-Out,Wendy Miller,james24@example.com,001-297-975-0839x799,3546993142000075,2024-07-19 +City Hotel,1,408,2017,March,9,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,76.86,0,0,Canceled,Stephen Shaw,ashley71@example.org,001-544-758-5819x661,30125138805105,2025-01-15 +City Hotel,0,368,2017,May,18,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient-Party,79.46,0,0,Check-Out,Jo Hickman,nicholasvargas@example.org,001-906-425-8171x999,213182832847767,2025-11-05 +City Hotel,0,10,2017,April,16,14,1,2,3,1.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,216.82,0,0,Check-Out,Billy Cross,debra36@example.net,001-790-879-9429x44105,4413930399253351,2025-10-04 +Resort Hotel,0,2,2017,October,43,23,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,40.4,1,2,Check-Out,Jeffery Davis,sandrawilliams@example.net,001-709-812-0923x33109,501806442437,2025-05-17 +City Hotel,1,198,2017,October,43,24,0,2,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,111.8,0,0,Canceled,Maria Dixon,frankvickie@example.net,(958)512-2589,4383965687755002,2024-04-25 +Resort Hotel,0,4,2017,April,14,4,1,0,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,234.0,179.0,0,Transient,106.85,0,1,Check-Out,Diana Murray,joe40@example.org,632.909.5170,213108141660989,2025-03-27 +City Hotel,1,309,2017,June,24,13,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,A,2,Refundable,76.0,179.0,0,Transient-Party,120.14,0,0,Canceled,Jennifer Curtis,gpruitt@example.net,+1-464-274-8628x6987,373714045777559,2025-01-08 +Resort Hotel,0,21,2017,December,49,7,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient,74.75,0,0,Check-Out,Janet Mcclure,joel97@example.org,(423)589-4259x3621,213132763573155,2025-09-20 +City Hotel,1,207,2017,April,16,20,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,134.75,0,0,Canceled,Alexis Watson,calvarado@example.org,001-876-825-3210x35661,579223474944,2025-02-10 +City Hotel,0,364,2017,June,25,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,76.34,1,1,Check-Out,Jared Spence,veronicasnyder@example.net,894-372-0007x26209,374159488596570,2026-01-01 +Resort Hotel,1,248,2017,June,26,30,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,269.0,179.0,0,Contract,63.12,0,3,Canceled,Alice May,jwhitaker@example.org,001-782-706-9446x1039,4801432705598454,2024-12-09 +City Hotel,1,273,2017,June,22,1,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,88.66,0,0,Canceled,Nathan Miles,fcopeland@example.com,(440)875-8335,4544138732075292876,2024-11-17 +Resort Hotel,0,14,2017,November,48,28,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,223.0,0,Transient-Party,63.36,0,0,Check-Out,April White,josejones@example.com,927.781.4906x323,30106143673001,2024-09-22 +Resort Hotel,0,32,2017,December,51,19,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,378.0,179.0,0,Transient,54.2,0,0,Check-Out,Kathleen Odonnell,danielvelez@example.com,488.926.9283,4376488511124864,2025-06-19 +City Hotel,0,18,2017,October,40,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,63.0,0,Transient,62.3,0,0,Check-Out,Emily Massey,kimberly94@example.org,(293)985-2037x231,340851904740516,2025-04-01 +Resort Hotel,0,136,2017,March,10,7,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,2,No Deposit,17.0,179.0,0,Transient,252.0,1,0,Check-Out,Lisa Henderson,benjamin51@example.com,(657)247-0021,4762939145504097,2024-05-31 +Resort Hotel,0,131,2017,February,8,22,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,245.0,179.0,0,Transient,138.16,0,1,Check-Out,Andrea Brown,cassie60@example.org,434-570-2244x7836,379380464689883,2024-05-25 +City Hotel,0,48,2017,March,13,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,104.03,0,1,Check-Out,Shawn Patel,robert27@example.org,+1-528-350-0253,501896325252,2025-12-10 +Resort Hotel,0,91,2017,October,43,23,1,5,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,273.0,179.0,0,Transient,36.36,0,1,Check-Out,Eric Parker,qjones@example.com,001-633-316-1097x720,3532322022360472,2024-09-01 +City Hotel,0,136,2017,November,48,25,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,91.53,0,1,Check-Out,Cindy Garza,brownkelli@example.org,+1-460-750-8427x9956,4323079676443,2024-10-22 +City Hotel,0,131,2017,March,12,21,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,83.6,0,1,Check-Out,Jesse Yang,ndrake@example.net,552.823.8659x688,3502665350075682,2025-09-03 +Resort Hotel,0,246,2017,June,24,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,295.0,179.0,0,Transient-Party,41.43,0,2,Check-Out,Dean Evans,john28@example.org,833-730-7262x822,180040800773648,2025-12-10 +City Hotel,1,8,2017,January,4,24,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,246.0,179.0,0,Transient,0.87,0,1,Canceled,Carl Lopez,vwebb@example.com,919.559.2900x7717,2397146062160864,2024-12-08 +City Hotel,0,268,2017,June,23,8,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,E,D,0,No Deposit,29.0,179.0,0,Contract,62.57,0,0,Check-Out,Diane Smith,grantangela@example.com,(920)700-3886,213168475091177,2025-11-03 +City Hotel,0,16,2017,November,47,22,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,105.31,0,2,Check-Out,Shelly Jackson,xray@example.net,001-341-433-2130,373508586344831,2025-06-25 +City Hotel,0,0,2017,September,36,8,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,75.18,0,0,Check-Out,Rachel Castillo,charlesbecker@example.org,437-734-5948,3571495861153844,2025-02-08 +Resort Hotel,0,11,2017,February,8,22,0,1,2,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient-Party,136.05,0,0,Check-Out,Hunter Miller,joan45@example.net,881-434-4107,4728954290195347,2025-04-06 +Resort Hotel,1,98,2017,August,32,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,128.08,0,1,Canceled,Melanie Fischer,fisherjason@example.org,(956)673-3209x51292,6578272628776001,2024-09-26 +Resort Hotel,1,13,2017,March,14,30,0,10,2,0.0,0,HB,CHE,Online TA,GDS,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,144.74,0,0,Canceled,Eric Camacho,aprilyoung@example.com,001-232-384-0959x0596,2270251377797053,2025-10-14 +City Hotel,1,147,2017,December,51,16,1,4,1,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,133.68,1,0,Canceled,Eric Harris DVM,williamsspencer@example.org,001-737-909-2478x102,4696035512495477824,2025-02-07 +Resort Hotel,0,86,2017,October,43,27,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,Non Refund,93.0,179.0,0,Transient,46.59,0,0,Canceled,Angela Craig,iarnold@example.net,884.223.8082x45727,30471409137491,2025-09-14 +City Hotel,1,205,2017,February,5,3,2,7,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,94.45,0,0,Canceled,Henry Brooks,fcross@example.org,627.434.2299x54604,30472509265422,2026-02-19 +City Hotel,1,205,2017,January,3,13,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.02,0,2,Canceled,Tony Barnes,omorrow@example.net,851-323-8809,4182120427234,2026-02-10 +City Hotel,1,54,2017,July,28,10,1,1,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.05,0,1,Canceled,Robert Bailey,brettgonzales@example.net,(222)321-5407,4451640352241623,2025-01-21 +City Hotel,1,18,2017,April,18,30,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,245.65,0,0,Canceled,Taylor Parsons,maria86@example.net,401-911-4228x6124,375223574406323,2025-07-08 +Resort Hotel,1,20,2017,September,39,27,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,1,No Deposit,240.0,179.0,0,Transient,45.52,0,1,Canceled,Christopher Wilson,graymichele@example.com,+1-306-861-4936x074,4610538724921880,2024-11-27 +City Hotel,0,2,2017,October,44,29,0,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,64.02,0,1,Check-Out,Erin Mcdowell,pauljames@example.org,+1-619-741-7978x55671,375856716170743,2025-07-16 +City Hotel,0,0,2017,June,25,24,0,2,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.89,0,1,Check-Out,Amy Ray,oconnorchristine@example.org,466-331-0549,213135419070617,2025-03-17 +City Hotel,0,32,2017,January,5,29,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.76,0,1,Check-Out,Stephen Leon,andrewcarter@example.org,356-824-2697x49664,4215548451328380,2025-10-15 +Resort Hotel,0,55,2017,June,25,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,333.0,179.0,0,Transient-Party,64.06,1,1,Check-Out,Christopher Bolton,fisherronnie@example.org,6316147883,4604827595056456,2024-07-12 +City Hotel,0,36,2017,March,10,5,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,132.42,0,0,Check-Out,Erin Aguirre,robertmiller@example.net,(791)485-2851x719,30259659446484,2026-03-05 +City Hotel,0,1,2017,September,37,13,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,50.64,0,2,Check-Out,Valerie Rodriguez,jennifer02@example.net,(733)284-4287x6161,4957936319102133717,2026-02-13 +City Hotel,0,157,2017,April,14,6,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,6.0,179.0,0,Transient,132.74,0,2,Check-Out,Peter Thompson,candiceharris@example.net,794-215-1523,6011792715150948,2024-08-30 +City Hotel,0,36,2017,November,46,15,2,2,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,99.95,0,1,Check-Out,Terri Davis,thompsonlarry@example.net,708.297.0473x912,4538408474042,2024-07-25 +Resort Hotel,0,20,2017,April,14,4,2,6,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,208.17,0,1,Check-Out,Joseph Blevins,marthacannon@example.org,943.788.2170,3536044250395980,2025-05-26 +City Hotel,0,52,2017,June,26,24,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,108.73,0,0,Check-Out,Steven Cannon,charlesrodriguez@example.org,7512633635,30158678667346,2024-12-31 +City Hotel,1,139,2017,September,38,19,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.07,0,0,Canceled,Wendy Horne,juliastewart@example.net,6476140056,4471207750099734,2026-03-14 +Resort Hotel,0,1,2017,June,25,20,3,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,19.0,179.0,0,Transient,126.24,1,0,Check-Out,David Cruz,gravesscott@example.org,001-351-860-3772x28683,180055123483527,2024-08-09 +City Hotel,0,54,2017,November,46,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,210.0,0,Transient,52.99,0,0,Check-Out,Michael Hendrix,michaelschmidt@example.com,6454191850,38272101141423,2024-06-02 +City Hotel,0,99,2017,May,21,21,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,23.0,179.0,0,Contract,48.99,0,1,Check-Out,Thomas Garcia,tiffanyschmidt@example.org,4076062494,4063630727694403700,2025-10-15 +City Hotel,1,155,2017,November,46,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,110.87,0,0,Canceled,Jacqueline Ford,andrevaughn@example.org,(719)287-3318,3555830939285469,2024-04-06 +City Hotel,1,156,2017,August,35,30,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.61,0,0,Canceled,Vanessa Boone,devon00@example.org,001-888-446-3645x597,4265312019818,2026-01-29 +Resort Hotel,0,59,2017,April,17,24,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Check-Out,Nancy Garcia,ryandaniel@example.org,+1-635-819-7620,4354421984255556,2024-05-13 +Resort Hotel,0,146,2017,November,46,16,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,224.0,0,Transient-Party,37.45,0,1,Check-Out,Ernest Kennedy,samanthacastillo@example.net,426.719.0722x1382,3559164611864615,2026-02-01 +Resort Hotel,1,15,2017,January,2,3,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,45.35,0,1,Canceled,Brandon Miller,michaelcharles@example.org,890-360-6404x54949,374736957936328,2026-02-13 +City Hotel,0,9,2017,February,9,26,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,214.01,0,2,Check-Out,Anita Wright,christopherbaker@example.org,894-747-0029,3502825179018079,2025-04-07 +City Hotel,0,376,2017,January,3,17,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,221.0,0,Transient-Party,76.95,0,0,Check-Out,Martin Cox,ibell@example.org,(629)882-1623,4222756030108,2025-05-14 +City Hotel,1,147,2017,March,12,21,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,110.42,0,0,Canceled,Tiffany Flores,jonesscott@example.net,(849)456-8756,4649801826470,2024-06-17 +City Hotel,1,158,2017,February,7,15,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,116.77,0,0,Canceled,Anthony Parker,marvin05@example.net,420.857.2272,6011829086834021,2026-01-16 +City Hotel,0,74,2017,September,36,3,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,72.44,0,2,Check-Out,Jeremy Miller,johnsonsamantha@example.org,001-538-376-2670x1021,4102533233832917903,2026-02-13 +City Hotel,1,385,2017,February,8,22,1,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,97.75,0,0,Canceled,Stephanie Jensen,franklinjennifer@example.org,001-502-550-4022x8595,6011741789927186,2025-11-30 +City Hotel,0,36,2017,May,21,25,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,83.65,0,1,Check-Out,Jennifer Austin,william85@example.net,(965)933-6725x9581,566394674428,2025-08-08 +Resort Hotel,0,145,2017,January,5,31,3,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,3,No Deposit,237.0,179.0,0,Transient,252.0,0,2,Check-Out,Randy Flores,millerheather@example.com,(777)927-1160,4439367033590,2025-09-01 +Resort Hotel,0,21,2017,April,14,6,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,49.43,1,0,Check-Out,Ryan Reynolds,beckkevin@example.org,+1-325-454-2857x3441,6011869869897936,2024-07-23 +City Hotel,0,8,2017,July,28,9,1,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,87.3,0,1,Check-Out,Elizabeth Travis,jessicacooper@example.org,4314422173,376327605581456,2025-05-24 +Resort Hotel,0,96,2017,October,43,28,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,307.0,179.0,0,Group,39.48,0,1,Check-Out,Richard Harmon,cherryrebecca@example.com,650-538-2658x1609,347472459413806,2025-06-06 +City Hotel,0,3,2017,December,50,10,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,108.5,1,0,Check-Out,Kevin Thomas,brian82@example.com,343-414-8025,4396519814980,2025-04-16 +Resort Hotel,0,52,2017,August,34,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,295.0,179.0,0,Transient-Party,75.7,0,0,Check-Out,Shannon Harper,mpham@example.net,575-951-2631x99938,4810110411863,2024-04-23 +Resort Hotel,0,41,2017,November,44,3,1,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,I,1,No Deposit,244.0,179.0,0,Transient,3.13,0,1,Check-Out,Anthony Parker,chapmanjohn@example.org,352-445-3571x670,4248374112507,2024-05-19 +Resort Hotel,0,143,2017,November,48,28,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,76.16,0,0,Check-Out,Luke Gross,gjensen@example.com,+1-801-545-7016x47002,4587415442815851,2024-05-01 +Resort Hotel,0,26,2017,November,46,14,2,2,2,1.0,0,HB,AUT,Direct,TA/TO,1,0,1,E,F,1,No Deposit,13.0,179.0,75,Transient-Party,164.45,1,3,Check-Out,Jason Garcia,trevorbarry@example.org,242-403-3243,6011413335200993,2025-07-14 +City Hotel,0,15,2017,November,47,21,1,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,83.13,0,2,Check-Out,Janet Davidson,johnsonmitchell@example.com,854.516.9720,4140160439386,2024-04-20 +City Hotel,1,325,2017,April,15,10,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,105.49,0,0,Canceled,Anna Brown,scottjanet@example.net,(249)723-2051x76368,3592778281386366,2025-01-28 +Resort Hotel,1,103,2017,June,26,27,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,Non Refund,87.0,179.0,0,Transient,86.73,0,0,Canceled,Sara Park,frenchlouis@example.com,(375)657-4837x40584,370252134165397,2025-08-17 +City Hotel,1,9,2017,June,24,8,2,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.26,0,0,Canceled,Brandi Beck,williamsmichael@example.org,(529)902-9258,340945741083971,2025-09-02 +City Hotel,0,153,2017,February,8,19,0,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,1,No Deposit,35.0,179.0,0,Transient-Party,234.52,0,0,Check-Out,Patrick Sullivan,amber35@example.net,422-476-6909x98941,3566866589944663,2025-02-16 +City Hotel,1,3,2017,June,25,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,225.0,0,Transient,162.26,0,0,No-Show,Roger Buckley,velasqueztaylor@example.org,612-559-2106,2238015488140193,2024-09-26 +City Hotel,0,16,2017,April,15,13,0,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.13,0,0,Check-Out,Bradley Cochran,tmcgee@example.com,271-878-6650,2704649489466531,2024-07-10 +Resort Hotel,1,83,2017,January,2,8,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,116.91,0,2,No-Show,Mark Jackson,gomezkathy@example.net,6789441871,4930327181743,2025-09-14 +Resort Hotel,0,37,2017,July,27,7,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,245.0,0,Transient,50.98,0,0,Check-Out,Sara Carroll,shellyguerrero@example.com,615.695.9680x916,630462925474,2024-04-15 +City Hotel,0,34,2017,June,22,2,0,3,2,0.0,0,BB,NOR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,45.68,0,2,Check-Out,Charles Rice,zmorgan@example.net,+1-967-397-0955,4182392013027,2025-06-01 +Resort Hotel,0,0,2017,September,39,26,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,25.0,179.0,0,Transient,41.59,0,0,Check-Out,Kathleen Marsh,englishandrea@example.com,504.968.6696x882,30503328510406,2024-10-07 +Resort Hotel,1,237,2017,October,40,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,176.0,179.0,0,Transient,76.54,0,0,Canceled,Nichole Smith,plee@example.com,892-373-1180x91717,3548514276799585,2024-10-01 +Resort Hotel,0,35,2017,August,34,26,2,5,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,D,H,1,No Deposit,240.0,179.0,0,Transient,106.31,0,2,Check-Out,Brenda Marsh,megan58@example.com,515.311.6569x4924,3548315666764340,2024-05-06 +City Hotel,0,4,2017,March,12,21,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,2,No Deposit,17.0,231.0,0,Transient,160.43,0,2,Check-Out,Taylor Schultz,garcianathan@example.com,001-466-523-7175x6816,3542320415515361,2024-10-15 +City Hotel,1,379,2017,May,21,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,268.0,179.0,0,Transient,61.74,0,0,Canceled,Peter Arnold MD,bmiller@example.com,592.449.0997x502,5126526528351945,2024-04-02 +Resort Hotel,0,238,2017,May,18,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,Refundable,2.0,179.0,0,Contract,62.76,0,1,Check-Out,Brooke Johnson,bward@example.com,+1-747-734-9335,3584923242035104,2025-09-17 +City Hotel,0,90,2017,March,11,16,0,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,162.59,0,1,Check-Out,Mary Durham,valeriemurray@example.org,213-855-0512,4889119586064913,2026-01-15 +City Hotel,0,15,2017,March,10,2,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,141.29,0,2,Check-Out,Gerald Snyder,cgarcia@example.com,+1-661-308-5111x33929,586380048197,2024-10-03 +City Hotel,1,162,2017,April,15,11,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,64.98,0,0,Canceled,Robert Hawkins,kimberlyjohnson@example.org,665.372.0502x00852,4698326600766023213,2025-01-30 +Resort Hotel,0,12,2017,February,7,14,0,3,2,0.0,0,Undefined,CN,Groups,TA/TO,0,0,0,A,C,0,No Deposit,295.0,179.0,0,Transient-Party,82.49,0,0,Check-Out,Brianna Bailey,tclark@example.net,992-204-0675x9061,6530320736511567,2025-05-16 +Resort Hotel,1,39,2017,November,47,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,45.75,0,0,Canceled,Cody Love,jim68@example.org,401-688-1594x2150,3564911277415030,2024-04-12 +City Hotel,1,46,2017,December,49,5,2,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,106.54,0,0,Canceled,Michael Hunt,morrismaria@example.com,+1-575-865-4521,4989941064745823,2025-01-16 +City Hotel,1,84,2017,July,28,14,1,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,39,Transient,85.2,0,0,Canceled,Maria Mccarthy,smithsteven@example.net,001-272-575-8032,4043963382065356050,2025-04-30 +City Hotel,1,34,2017,February,9,25,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,133.92,0,1,Canceled,Mark Black,bwu@example.net,001-269-405-9116,676211588162,2026-03-04 +Resort Hotel,0,32,2017,November,47,22,1,5,1,0.0,0,HB,GBR,Groups,Corporate,0,0,0,D,D,0,No Deposit,316.0,179.0,0,Transient-Party,44.79,1,0,Check-Out,James Roberts,brownabigail@example.org,800-808-0138x57400,2611010138259391,2025-03-28 +Resort Hotel,0,8,2017,December,51,22,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,119.64,1,1,Check-Out,Rick Decker,jennifer55@example.org,995.942.1601,4248805059236576,2025-07-05 +Resort Hotel,1,27,2017,August,34,26,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Canceled,Jason Howard,hevans@example.org,001-873-775-2902x63730,6558441024708330,2025-01-13 +City Hotel,0,93,2017,March,10,9,0,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,125.01,0,0,Check-Out,John Hayes,kevin43@example.net,(562)917-0477x5817,180023967311774,2025-08-23 +Resort Hotel,0,1,2017,November,45,10,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,1,0,1,A,I,0,No Deposit,243.0,331.0,0,Transient,2.47,0,1,Check-Out,Melissa Lawson,juan92@example.com,474.235.4971,30260727505210,2026-02-04 +City Hotel,1,104,2017,April,15,9,0,3,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient,109.5,0,0,Canceled,Mitchell Johnson,xthompson@example.org,916-884-4147,4698189559239215,2025-07-06 +Resort Hotel,0,7,2017,November,48,27,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,46.95,0,2,Check-Out,Madison Stanton,cody81@example.net,8579129806,348209753534005,2026-03-27 +City Hotel,1,1,2017,August,31,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.94,0,1,Canceled,Erin Myers,amandamclean@example.org,001-434-869-0628x975,2264828538574360,2025-06-12 +City Hotel,0,1,2017,March,12,21,0,1,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,Christina Davis,robin94@example.org,377-355-0587x123,213109630154930,2024-06-05 +Resort Hotel,0,23,2017,April,15,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,F,C,0,No Deposit,12.0,179.0,0,Transient,241.45,0,1,Check-Out,Mark Gomez,sabrina29@example.net,001-552-947-1562x6439,4377266214231189,2025-01-03 +City Hotel,1,23,2017,February,9,26,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,112.3,0,2,Canceled,Connie Hansen,stevenruiz@example.net,801-457-1126x6437,5247311395836441,2024-06-09 +Resort Hotel,0,308,2017,November,45,7,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,42.59,0,0,Check-Out,Tammy Ramos,xdavis@example.net,001-452-721-1392x7316,36395812587824,2024-08-07 +City Hotel,1,19,2017,December,52,24,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.4,0,2,Canceled,Hannah Terry,zwilson@example.com,470-395-8820,639044789738,2025-12-04 +City Hotel,1,26,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,49.59,0,3,Canceled,Lisa Gallegos,brownjamie@example.org,310-831-8637x55924,2714027712616644,2024-11-12 +Resort Hotel,0,44,2017,December,50,12,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,262.0,179.0,0,Transient,59.83,1,0,Check-Out,James Haley,lynnbenitez@example.net,+1-611-557-2489x0104,30427771398046,2024-09-30 +City Hotel,0,3,2017,September,36,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,0,No Deposit,243.0,179.0,0,Transient-Party,53.0,0,1,Check-Out,Carl Pennington,emason@example.net,+1-237-888-1223x492,30272436514110,2024-11-23 +City Hotel,0,1,2017,December,2,31,0,4,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient-Party,119.21,1,0,Check-Out,Allison Davis,ybarrett@example.com,+1-234-365-4916,583317311582,2025-07-15 +City Hotel,1,230,2017,January,2,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,77.45,0,0,Canceled,Nicholas Lee,ashleyallen@example.net,853-354-6589,6557787098109735,2025-09-17 +Resort Hotel,1,101,2017,April,15,14,2,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,214.32,0,0,Canceled,Thomas Olson,livingstonshannon@example.com,(644)637-3201,3593496547347515,2025-08-15 +City Hotel,0,32,2017,April,16,22,0,2,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient-Party,143.94,0,1,Check-Out,Mary West,lorispencer@example.org,834-844-6169x234,3569834310507743,2025-08-25 +Resort Hotel,0,266,2017,June,24,12,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,315.0,179.0,0,Transient-Party,85.15,0,0,Check-Out,Nicole Gilbert,obrienadam@example.com,470.958.9268x4886,4389093882403486,2025-09-27 +City Hotel,0,87,2017,December,52,29,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,108.68,0,3,Check-Out,Alan Murphy,cynthiajohnson@example.com,001-523-381-5375x8871,3545237826281069,2025-01-08 +Resort Hotel,0,248,2017,March,13,26,4,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,147.7,0,2,Check-Out,Monica Vincent,qbush@example.com,+1-522-722-3296,36256821824089,2024-07-22 +City Hotel,0,3,2017,December,50,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,239.0,179.0,0,Transient,105.39,1,1,Check-Out,Rebecca Hubbard,cookrobin@example.org,752.965.7146,676215252260,2025-08-25 +Resort Hotel,1,57,2017,August,31,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,41.65,0,0,Canceled,Kristin Sampson,bblack@example.org,3372674124,5265496601620189,2025-12-25 +City Hotel,0,4,2017,February,7,13,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,70.0,179.0,0,Transient,100.36,0,0,Check-Out,Elizabeth Lawrence,joyce28@example.net,816.540.0910,36317820327571,2025-06-07 +City Hotel,0,13,2017,October,43,25,0,1,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.86,0,1,Check-Out,Debbie Lamb,ogonzalez@example.net,829-543-9063,3538538756032383,2025-07-21 +City Hotel,0,48,2017,June,26,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,47.85,0,1,Check-Out,Tina Hall,anthony04@example.org,5668406665,4979561226136,2024-04-19 +City Hotel,0,34,2017,August,34,24,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,235.0,179.0,0,Transient,106.94,0,2,Check-Out,Justin Chapman,thompsonjoseph@example.org,001-739-570-0193,4607097809024719,2025-05-25 +City Hotel,0,14,2017,November,44,1,0,4,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,111.04,1,0,Check-Out,Tina Ortiz,xfaulkner@example.org,661.862.2406x936,4530402765426,2024-10-27 +City Hotel,1,39,2017,June,26,26,1,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,159.1,0,0,Canceled,Anthony Elliott,iwest@example.org,(278)583-9654x084,344238152953510,2025-04-03 +Resort Hotel,0,22,2017,December,49,5,2,1,1,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,16.0,227.0,0,Transient-Party,38.62,0,0,Check-Out,Beth Cross,chudson@example.org,001-316-201-3086x1821,30145542492985,2025-11-01 +City Hotel,0,3,2017,May,19,13,0,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,85.78,0,0,Check-Out,Robert Scott MD,carrollalexis@example.org,001-851-739-7668,6516875014008329,2025-03-31 +City Hotel,0,55,2017,November,47,25,0,3,1,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,89.59,0,0,Check-Out,Robin Rice,kathleenwilson@example.net,(671)461-3176,6011453407760086,2025-03-28 +City Hotel,1,161,2017,March,12,22,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,86.73,0,1,Canceled,Sandra Rivera,markcharles@example.net,9445038059,4851068755976,2025-10-20 +City Hotel,0,1,2017,October,40,6,1,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,86.95,0,2,Check-Out,Brittany Macdonald,bcampbell@example.com,415-781-5856,4989717270950749369,2026-01-05 +City Hotel,0,52,2017,November,46,12,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,232.0,0,2,Check-Out,Matthew Bates,joyce50@example.org,+1-958-450-7098,3536971384924030,2025-11-19 +City Hotel,0,304,2017,May,21,26,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,1,No Deposit,1.0,179.0,0,Transient-Party,61.24,0,0,Check-Out,Shelia Moore,christopherdeleon@example.net,+1-548-989-6035,4446761114658983,2024-06-05 +City Hotel,0,33,2017,January,2,6,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.64,0,0,Check-Out,Michelle Santana,jenna71@example.com,+1-762-349-0100x08440,180048006208913,2025-07-25 +City Hotel,0,3,2017,December,52,24,1,1,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,221.68,0,2,Check-Out,Ashley Robinson,nhoward@example.com,421.686.0648x075,2625496231913980,2024-12-28 +Resort Hotel,0,8,2017,August,32,5,2,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,55.02,0,1,Check-Out,Daniel Kim,morrisjillian@example.org,001-289-600-1346x92404,4907278599784,2024-06-11 +Resort Hotel,0,287,2017,November,45,6,2,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,63.04,0,0,Check-Out,Grace Nichols,washingtonangela@example.org,830-645-4742x4328,4469039815635788,2025-06-13 +Resort Hotel,0,13,2017,December,52,30,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,131.46,0,2,Check-Out,Tom Henderson,ryanthomas@example.org,+1-852-608-2192x3232,3505128511053749,2024-09-01 +City Hotel,0,22,2017,September,38,20,1,2,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,D,G,0,No Deposit,163.0,179.0,0,Transient,167.02,0,0,Check-Out,Margaret Shaw,thomasdrew@example.org,(673)742-2541,4174084784189,2025-03-11 +City Hotel,0,9,2017,December,49,4,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,254.0,0,Group,109.18,0,0,Check-Out,Jennifer Nguyen,lindsay62@example.org,909-827-5563,4827610180739698268,2025-05-29 +City Hotel,0,192,2017,March,9,1,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,Karen Adams,rhopkins@example.com,402-360-8869x203,4494897178988840,2026-01-29 +City Hotel,1,414,2017,April,14,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,40,Transient,95.01,0,0,Canceled,Gabriel Andrews,tarmstrong@example.com,001-565-559-5372,2616876875563673,2025-06-16 +City Hotel,0,51,2017,November,45,8,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,105.72,0,2,Check-Out,Bobby Howard,erin18@example.com,001-227-435-0804x652,4964993994652321,2025-11-15 +City Hotel,0,0,2017,June,25,19,1,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,62.35,0,0,Check-Out,Timothy Morris,btaylor@example.org,(345)471-5129x837,564738414767,2025-01-28 +City Hotel,0,0,2017,February,8,21,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.9,0,2,Check-Out,Richard Rivera,datkinson@example.org,207-339-0620,3560956460048092,2025-05-09 +Resort Hotel,0,39,2017,October,40,3,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,83.74,0,1,Canceled,Tammy Graves,ycooper@example.net,5469471599,341345018055019,2025-11-07 +City Hotel,0,54,2017,March,12,22,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,134.12,1,1,Check-Out,Joshua Ellis III,plang@example.net,335.247.1981x321,4566135354294,2025-08-23 +Resort Hotel,0,8,2017,April,15,9,1,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,205.26,0,2,Check-Out,Amy Fields,bridget23@example.org,(241)709-0443x605,371476443853554,2024-05-23 +Resort Hotel,0,0,2017,November,47,22,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,0,No Deposit,16.0,247.0,0,Transient,49.22,0,0,Check-Out,Janice Clay,daniel08@example.org,001-425-582-8959x57980,4900300089874,2026-02-23 +Resort Hotel,0,173,2017,March,11,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,124.91,0,2,Check-Out,Jessica Morris,fhunt@example.org,+1-419-463-4050x831,4153234165913577,2025-04-20 +Resort Hotel,0,16,2017,September,37,13,4,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,56.77,0,1,Check-Out,Paul Wilson,megan19@example.org,230.946.5722,676233432092,2025-11-11 +Resort Hotel,0,1,2017,December,52,27,1,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,249.0,179.0,0,Transient,177.35,1,0,Check-Out,Katherine Scott,heatherortiz@example.net,404-422-5590x172,3516156492697819,2025-04-29 +Resort Hotel,0,202,2017,April,15,14,4,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,90.0,179.0,0,Transient-Party,191.39,0,1,Check-Out,Louis Kelly,webbrobert@example.net,+1-408-472-9548x663,3500604590809149,2026-03-19 +City Hotel,0,122,2017,February,6,5,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,119.74,0,2,Check-Out,Randall Osborne,foxwilliam@example.org,001-679-215-9812,36571834928242,2024-08-27 +Resort Hotel,0,29,2017,November,47,19,0,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,127.21,0,1,Check-Out,Stephen Carr,bflowers@example.com,658-521-3307,4561810177972176,2025-06-30 +Resort Hotel,1,92,2017,February,6,6,4,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,108.93,0,1,Canceled,Kyle Young,santosshannon@example.org,484.799.7296x961,4826744021025606444,2026-03-23 +City Hotel,0,12,2017,April,14,3,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.01,0,2,Check-Out,Susan Williams,matthew07@example.com,655.352.3885,3557265824690010,2025-08-17 +City Hotel,0,2,2017,June,24,13,1,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.71,0,1,Check-Out,Heather Gordon,ashley91@example.net,+1-773-937-5020,3509101641576091,2025-01-08 +Resort Hotel,0,59,2017,October,44,31,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,161.0,179.0,0,Transient,44.14,0,0,Check-Out,Russell Foster,kfrye@example.com,885.606.9522,2259760620465172,2025-07-23 +City Hotel,0,48,2017,February,8,23,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.95,0,1,Check-Out,Andrew Blake,stephanie83@example.com,561.655.3684,30232704357675,2025-05-22 +City Hotel,0,149,2017,January,4,23,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,320.0,237.0,0,Transient-Party,173.11,0,0,Check-Out,John Fowler,kurt40@example.org,001-245-862-5009,30081456297245,2025-10-31 +City Hotel,0,2,2017,July,29,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,16.0,222.0,0,Transient,42.31,0,0,Check-Out,Douglas Martinez,gwendolyn59@example.net,7585088915,4121817928654793723,2024-04-09 +Resort Hotel,0,42,2017,December,52,23,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,14.0,179.0,0,Transient-Party,106.89,1,0,Check-Out,Joshua Mcgee,brownstephen@example.org,403-616-9462x90208,3575429860683549,2024-08-28 +City Hotel,0,85,2017,February,8,22,2,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,I,1,No Deposit,37.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,Matthew Jackson,bedwards@example.com,903-316-3782,180090020193788,2024-05-30 +Resort Hotel,0,31,2017,March,12,23,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,97.82,1,1,Check-Out,Juan Bradley,lawrenceperkins@example.org,651-911-8669,3537533811206156,2025-05-02 +City Hotel,0,373,2017,March,10,7,0,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,96.53,0,0,Check-Out,Dawn Pena,ryankathleen@example.org,+1-570-923-8791x34112,3559646603210708,2024-12-20 +City Hotel,0,0,2017,July,30,27,2,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,260.0,179.0,0,Transient,50.32,0,0,Check-Out,Bradley Schultz,brucemcdonald@example.net,001-305-905-8752x788,4121822245833,2026-01-24 +City Hotel,0,15,2017,November,46,17,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,134.12,0,3,Check-Out,Amanda Smith,angelacohen@example.com,(208)749-2637x1478,2227634084737633,2024-04-24 +City Hotel,1,4,2017,February,7,16,2,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,242.72,0,0,Canceled,Thomas Spencer,jesus01@example.org,6242695651,213185298659352,2024-10-22 +Resort Hotel,0,60,2017,November,46,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,241.0,179.0,0,Transient,78.66,0,2,Check-Out,Scott Harrell,tamaraburnett@example.net,(218)458-6705,4766359095223,2025-08-17 +City Hotel,0,444,2017,March,9,4,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,80.72,0,0,Check-Out,David Norton,aliciastevens@example.org,+1-909-596-3701x124,5567610976527184,2025-03-26 +City Hotel,0,94,2017,November,47,21,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,111.12,0,2,Check-Out,Jennifer Burgess,josemora@example.com,608.338.8498x77454,30555637125771,2024-10-23 +City Hotel,0,22,2017,May,19,7,1,1,2,1.0,0,BB,ITA,Aviation,Direct,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,109.58,0,2,Check-Out,Gregory Green,ashleykimberly@example.org,8774404031,2222417812057226,2025-12-14 +Resort Hotel,0,51,2017,November,45,7,1,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,C,1,No Deposit,162.0,179.0,0,Transient,132.51,0,2,Check-Out,Alan Sanchez,lisa77@example.net,215.997.4499x73262,6011724681519681,2025-10-02 +Resort Hotel,0,168,2017,November,45,5,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,59.82,0,0,Check-Out,James Gilbert,owilliams@example.org,689-647-6394,3519661400165483,2025-04-20 +Resort Hotel,0,44,2017,March,11,12,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,190.0,179.0,0,Transient,85.58,0,1,Check-Out,Scott Velazquez,reevesamanda@example.com,+1-853-953-6043x17446,3543845958362069,2025-01-31 +Resort Hotel,0,255,2017,May,18,6,0,2,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,126.98,0,1,Check-Out,Jennifer Graves,josegonzalez@example.org,760.293.3244x507,3544934001449708,2025-07-09 +Resort Hotel,0,331,2017,June,24,15,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,277.0,179.0,0,Transient,74.49,0,0,Check-Out,Anthony Cook II,karen18@example.org,(339)757-6425x49964,4961789896660273480,2026-01-03 +City Hotel,1,95,2017,August,35,31,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,110.18,0,1,Canceled,Sarah Evans,lrogers@example.com,663-831-0987x4948,639040006442,2024-08-06 +Resort Hotel,0,20,2017,June,24,10,1,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Group,54.54,1,1,Check-Out,Ashley Vazquez,holtrichard@example.com,(706)836-3085x60544,4388870952507536237,2026-01-02 +City Hotel,0,145,2017,March,10,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,131.44,0,1,Check-Out,Samantha Bailey,bhenderson@example.com,394-388-7598,675901210343,2024-11-23 +City Hotel,0,7,2017,November,45,4,1,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.12,0,1,Check-Out,Mark Vega,qdiaz@example.org,891-269-7232x11548,4426689528964057,2024-09-07 +Resort Hotel,1,27,2017,January,2,12,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,378.0,179.0,0,Transient,105.23,0,0,Canceled,Holly Williams,isaiah91@example.net,575-489-1093x0503,4280934232452915,2025-06-02 +City Hotel,0,2,2017,February,6,10,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,106.59,0,1,Check-Out,Dr. Tiffany Booker,lewisscott@example.net,404.794.3097,36192286424398,2025-09-13 +City Hotel,1,137,2017,August,31,2,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.14,0,0,Canceled,Sarah Banks,tlee@example.com,001-402-991-5559x13905,060493620433,2026-01-15 +City Hotel,0,55,2017,May,21,23,2,2,2,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,148.44,0,1,Check-Out,Kristin Valencia,esimpson@example.org,316-536-8466x0739,5165568098175140,2024-10-04 +City Hotel,0,136,2017,November,47,22,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,112.37,1,1,Check-Out,Jordan Baxter,parkkevin@example.net,+1-310-786-6286x817,3533341929561742,2026-02-08 +City Hotel,0,152,2017,April,17,24,1,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,113.62,0,1,Check-Out,Ann Moore,treynolds@example.org,4543485126,4590188516992048,2025-04-09 +City Hotel,0,1,2017,April,17,25,0,5,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,G,0,No Deposit,42.0,205.0,0,Transient,107.59,0,0,Check-Out,David Dunlap,michael21@example.net,689-437-8099x313,3556901998667233,2025-05-03 +Resort Hotel,1,272,2017,March,11,12,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Transient,62.71,0,0,Canceled,John Hunt,susancherry@example.net,(393)982-6808,6518316011568666,2025-04-13 +City Hotel,1,302,2017,June,24,13,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,1.0,179.0,0,Transient-Party,110.61,0,0,Canceled,James Griffin,wrighttina@example.net,837-214-8171x595,4794088366981899,2025-02-20 +City Hotel,1,54,2017,November,47,22,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,109.68,0,0,Canceled,Sandra Guerra,leahpitts@example.org,+1-796-404-5691x669,2241153535064010,2025-04-22 +City Hotel,0,19,2017,June,24,12,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,164.75,0,1,Check-Out,Angela Harrington,kristinshaw@example.net,001-786-732-2960x21724,676314954600,2025-02-15 +City Hotel,0,4,2017,April,15,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,A,A,1,No Deposit,11.0,45.0,0,Group,1.33,0,1,Check-Out,Laura Garcia,uhamilton@example.org,001-959-270-5560x44731,3516970558007071,2024-09-24 +Resort Hotel,0,81,2017,August,31,3,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,125.79,0,2,Check-Out,Joy Brooks,kimsimpson@example.org,220.954.4155x518,675957922593,2024-06-17 +City Hotel,0,413,2017,April,15,13,2,2,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,104.06,0,0,Check-Out,Kenneth Watts,lewismichael@example.net,9124847771,4796035269381600,2025-02-20 +City Hotel,0,35,2017,July,28,10,0,3,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,23,Transient,176.1,0,0,Check-Out,Ricky Munoz,jacobgutierrez@example.net,001-474-711-3513x908,4934111291358423744,2025-01-02 +Resort Hotel,1,111,2017,November,45,10,1,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,259.0,179.0,0,Transient-Party,47.4,0,0,Canceled,Daniel Garcia,lori49@example.org,2074110043,346740614671588,2025-06-10 +City Hotel,0,36,2017,November,47,23,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,90.7,0,1,Check-Out,Lisa Thompson,bcastro@example.com,730-238-4221,3511900330645927,2024-10-15 +City Hotel,0,86,2017,August,35,27,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,113.58,0,2,Check-Out,Olivia Holmes,framirez@example.org,(675)260-5244,4760674208934,2025-05-02 +City Hotel,0,59,2017,June,23,4,2,1,2,2.0,0,BB,ESP,Direct,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,155.53,0,0,Check-Out,Mary Alvarez,susanrivera@example.org,(215)639-9221,30359977863194,2026-03-14 +City Hotel,1,9,2017,October,43,24,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,43.56,0,0,Canceled,Jeffrey Gray,stephanie54@example.net,246.520.2598,3583707673073945,2026-02-26 +City Hotel,0,128,2017,February,5,1,2,4,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.95,0,1,Check-Out,Steven Olson,efernandez@example.org,4097963673,30421085371096,2025-04-25 +City Hotel,0,76,2017,November,45,5,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.92,0,0,Check-Out,Eric Salazar,cmcdaniel@example.com,+1-247-366-2536x212,213192838377495,2025-05-10 +City Hotel,1,93,2017,August,31,2,4,4,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.46,0,1,Canceled,Michelle Fowler,gillespiegrant@example.net,(408)964-9336,180081265801953,2025-08-19 +City Hotel,0,3,2017,May,22,29,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.52,0,1,Check-Out,William Reynolds,mendozadaniel@example.org,(208)650-5657,3502922223370307,2024-09-29 +City Hotel,1,0,2017,December,52,27,0,3,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.71,0,1,Check-Out,Johnathan Rogers,lholden@example.com,664-837-6066x6972,213186667790414,2024-12-07 +City Hotel,1,135,2017,February,6,7,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,102.55,0,0,Canceled,Justin Sampson,kyle83@example.net,798.395.2296,4417738759991182462,2025-01-16 +City Hotel,1,159,2017,July,30,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,63.02,0,0,Canceled,Sandra Baker,llewis@example.com,001-874-214-4078x20901,565546864051,2025-02-18 +City Hotel,0,49,2017,August,34,24,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,116.45,0,2,Check-Out,Stephanie Tucker,awilliams@example.com,001-923-428-9461x53539,377269707926040,2025-03-17 +Resort Hotel,0,106,2017,July,28,12,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,28.0,179.0,75,Transient-Party,132.8,0,0,Check-Out,Melissa Evans,brendabarrett@example.com,590.837.2688,4590745834411538,2024-09-15 +City Hotel,0,4,2017,April,15,9,2,0,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,167.88,0,2,Check-Out,Daniel Wheeler,sheila47@example.org,808-855-1714,180037655575797,2025-07-21 +City Hotel,0,32,2017,April,17,20,2,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,77.25,0,0,Check-Out,Zachary Beck,brandonalexander@example.org,3373400644,630415290174,2026-03-21 +Resort Hotel,0,155,2017,December,48,1,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,270.0,179.0,0,Transient-Party,51.02,0,1,Check-Out,Travis Schneider,ipeters@example.org,578.230.7188x05123,4034378962670529,2025-12-17 +City Hotel,0,22,2017,August,34,22,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,238.0,179.0,0,Transient,62.14,1,2,Check-Out,Scott Miranda,lconner@example.com,754-634-8394x753,3547326544969549,2026-02-12 +City Hotel,0,426,2017,March,12,23,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,77.06,0,0,Check-Out,Deborah Alvarado,johnwalters@example.com,001-488-795-4063x44128,180050866041616,2025-08-06 +Resort Hotel,0,22,2017,May,21,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,H,0,No Deposit,244.0,179.0,0,Transient,50.43,0,0,Check-Out,Mary Benson,emyers@example.com,(562)646-1241x77762,6525627195481505,2024-07-18 +City Hotel,1,106,2017,January,2,3,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,99.38,0,1,Canceled,Mr. Tommy Mcdonald,davidhanson@example.net,(489)765-1926x876,4986307784059419759,2025-12-28 +City Hotel,1,165,2017,May,19,7,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.86,0,0,Canceled,Jennifer Garcia,beckypierce@example.net,207-532-5002x1736,2485171842804899,2025-08-09 +City Hotel,1,92,2017,October,42,18,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.07,0,1,Canceled,Matthew Simon,catherine05@example.net,431.942.5145x269,180013138926055,2025-10-01 +Resort Hotel,0,96,2017,July,30,28,1,7,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,84.81,0,2,Check-Out,Brandon Ferguson PhD,shelly94@example.net,001-691-960-2663x47908,3540563308141843,2024-12-03 +City Hotel,0,21,2017,April,15,14,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,112.02,0,1,Check-Out,Daniel Ortega,joshuamckenzie@example.net,702.448.6012,4826051927218930,2025-03-06 +City Hotel,1,49,2017,April,15,9,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.03,0,0,Canceled,Scott Herrera,jonesallison@example.org,3455670263,502026010129,2025-07-28 +City Hotel,0,10,2017,June,23,5,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,157.42,0,0,Check-Out,Hannah Smith,jessicamorales@example.org,(944)713-5393x15896,3590011009700664,2025-05-29 +City Hotel,0,37,2017,July,30,25,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.47,0,1,Check-Out,Nicole Floyd,hendersonkaren@example.net,282-241-2205x714,4328550144111543774,2025-11-17 +City Hotel,0,0,2017,May,19,7,2,0,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,Katelyn Harper,amberbaker@example.org,001-997-231-9489x6738,3525379041309111,2024-11-21 +City Hotel,0,50,2017,April,13,1,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,83.0,179.0,0,Transient-Party,220.36,0,0,Check-Out,Heidi Mason,johnsonhannah@example.org,429-834-3906,30520925102916,2025-10-27 +Resort Hotel,1,0,2017,July,30,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,52.23,0,0,Canceled,Jennifer Moore,ratkinson@example.com,+1-248-590-5130,503832763323,2025-05-21 +Resort Hotel,0,12,2017,August,34,21,2,2,1,0.0,0,Undefined,,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,86.0,179.0,0,Transient,113.82,0,1,Check-Out,Kiara Stout,chadwatson@example.net,001-898-971-2099,3585173158466633,2024-05-19 +Resort Hotel,0,97,2017,November,45,8,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,47.56,0,1,Check-Out,Autumn Lee,derrickbrown@example.org,(998)947-4683x5927,6514973396003299,2025-04-28 +Resort Hotel,0,33,2017,March,11,9,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,53.99,0,1,Check-Out,Daniel Fitzgerald,brandon46@example.com,+1-931-777-8597x6769,3540341526876320,2024-05-17 +City Hotel,0,203,2017,February,6,7,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,144.33,0,2,No-Show,Margaret Wallace,veronica90@example.org,3074032843,3563924667918191,2024-11-26 +City Hotel,0,12,2017,May,19,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,104.08,0,2,Check-Out,John King,kreed@example.com,2836653621,374253806631852,2024-06-03 +City Hotel,1,245,2017,April,14,5,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,216.18,0,0,Canceled,Yolanda Wallace,halealan@example.com,768.202.9080,213185871264224,2025-03-14 +City Hotel,1,302,2017,November,46,13,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,18,Transient,81.32,0,0,Canceled,Dawn Werner,michael49@example.net,001-291-388-7608x9743,3571425069702506,2025-04-18 +Resort Hotel,0,309,2017,September,36,5,0,4,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,53.52,0,1,Check-Out,Katherine Pacheco,markkelley@example.com,001-789-701-4416x635,3536678222803306,2025-02-02 +City Hotel,1,165,2017,April,18,30,3,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,144.42,0,0,Canceled,Danielle Carter,hernandezthomas@example.com,757.306.3199x24238,3516109960615136,2025-08-23 +Resort Hotel,0,7,2017,June,23,9,1,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,167.8,1,0,Check-Out,Michelle Armstrong,joneslaura@example.com,237-834-6838x10293,30320412610012,2025-07-20 +City Hotel,1,18,2017,December,51,22,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.66,0,0,Canceled,Kelly Robinson DVM,jamesjohns@example.com,494.739.2849x170,4681731018205052,2024-05-03 +City Hotel,0,156,2017,March,11,16,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,63.11,0,0,Check-Out,Randall Johnson,dorothyallen@example.net,212-820-5531x773,378796748223614,2026-01-07 +City Hotel,0,12,2017,December,52,28,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,109.71,0,3,Check-Out,Connor Summers,brookeodonnell@example.org,529-856-3908,30292953613806,2025-10-17 +Resort Hotel,0,2,2017,August,35,30,0,2,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,E,E,3,No Deposit,240.0,179.0,0,Transient,104.67,1,3,Check-Out,Blake Bailey,grosschristopher@example.net,+1-791-794-3516x120,36718095664509,2024-05-13 +City Hotel,0,87,2017,November,46,11,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.41,0,2,Check-Out,Mary Williams,pramirez@example.org,412-421-6869x3624,180010244578085,2025-12-20 +Resort Hotel,0,32,2017,May,19,8,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,118.43,1,2,Check-Out,Paul Bentley,pattonjohnathan@example.org,(466)782-2192x36106,374520196156587,2025-05-11 +Resort Hotel,0,36,2017,November,48,25,2,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,58.8,0,1,Check-Out,Richard Nelson,umartin@example.net,639.637.9588x134,342646132321917,2024-10-09 +City Hotel,0,11,2017,June,26,27,1,2,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.44,0,0,Check-Out,Joshua Haynes,jason37@example.com,775-713-7139x372,4263196598718,2025-08-01 +Resort Hotel,0,31,2017,September,36,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,238.0,179.0,0,Transient,225.03,1,1,Check-Out,Joseph Edwards,kruegercrystal@example.org,277.831.8022,2496028605577616,2026-02-08 +City Hotel,1,167,2017,April,16,17,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,108.25,0,0,Canceled,Steven Moore,nicholas29@example.com,(865)300-4593x42079,581231509158,2026-02-27 +City Hotel,1,223,2017,February,7,14,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,20,Transient,103.65,0,0,Canceled,Holly Cochran,rebecca47@example.org,549.358.4786,3504942738283090,2025-11-18 +City Hotel,1,164,2017,January,5,27,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,129.8,0,0,Canceled,Joshua Moody,ericcoleman@example.com,835-543-7655x85478,4763922231743653,2025-02-22 +Resort Hotel,0,2,2017,November,46,15,1,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,2.11,1,0,Check-Out,Jill Rhodes,walterwright@example.org,(627)455-8631,4215518248413951,2024-09-11 +Resort Hotel,0,48,2017,August,35,29,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,63.0,0,Transient,53.46,0,1,Check-Out,Craig Patterson,kevinyoung@example.net,446.948.1141,3531428684678951,2025-08-25 +City Hotel,1,33,2017,November,46,17,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.95,0,0,Canceled,Mrs. Megan Kelly DDS,rwilliams@example.net,001-335-443-1006x562,4426549214121361982,2024-03-28 +City Hotel,0,10,2017,May,21,23,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,93.66,1,0,Check-Out,John Gibson,henryhernandez@example.com,+1-503-550-9661x66870,378413857840044,2026-01-15 +Resort Hotel,0,99,2017,August,31,4,2,5,2,0.0,0,Undefined,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,121.95,0,1,Check-Out,Joshua Nelson,nicholas75@example.net,+1-394-977-9313,347264808076396,2024-12-24 +City Hotel,1,58,2017,February,8,19,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.01,0,0,Canceled,Daniel Owen,kevinnelson@example.org,514.337.0629x5333,3562409274701132,2025-06-05 +City Hotel,0,19,2017,June,25,17,1,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,118.65,0,0,Check-Out,Nicole Salazar,nrobinson@example.net,667.367.9028x23697,5552096227326062,2025-01-11 +City Hotel,0,11,2017,April,15,9,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,183.79,0,3,Check-Out,Colton Munoz,simonzachary@example.org,2197506606,6011996367908525,2026-01-04 +City Hotel,1,158,2017,March,12,22,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.49,0,0,Canceled,Emily Vasquez,keithkent@example.net,001-652-321-2414x6684,5481942090064056,2024-09-08 +City Hotel,0,165,2017,February,9,26,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,127.66,0,1,Check-Out,Lucas Reynolds,joshuaburnett@example.org,(793)593-0231,4846102588597256,2024-06-22 +City Hotel,0,137,2017,December,51,22,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,108.18,0,1,Check-Out,Tammy Edwards,wzavala@example.net,+1-778-738-3822x06568,6546156228862593,2024-06-18 +City Hotel,0,18,2017,November,45,8,2,2,3,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,187.2,0,3,Check-Out,Monica Gutierrez,iwood@example.net,267.540.4372x0768,4459608527867637433,2025-01-02 +Resort Hotel,0,55,2017,April,17,24,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,115.0,0,3,Check-Out,Stacey Sampson,edwardhodges@example.org,491-438-3056,2270375972747773,2025-03-01 +City Hotel,1,83,2017,June,23,4,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,17,Transient,102.79,0,0,Canceled,Victor Gonzalez,ntate@example.net,+1-963-719-6246x319,3541643453077320,2026-01-05 +City Hotel,0,20,2017,May,20,18,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.31,0,0,Check-Out,Valerie Contreras,rothlori@example.net,903-758-9441,3500308876741998,2024-08-22 +City Hotel,1,393,2017,May,19,6,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,165.0,179.0,0,Transient,108.45,0,0,Canceled,Suzanne Nunez,cherylrussell@example.com,491.528.9429x24168,5240503363032576,2025-07-31 +City Hotel,1,403,2017,March,9,1,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,106.23,0,0,Canceled,Jackson Fuller,maria45@example.com,9948260834,4010262853505,2025-03-08 +City Hotel,1,307,2017,April,17,28,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,97.22,0,0,Canceled,Kristina Hernandez,kayla94@example.com,649.651.9787,30286817734154,2025-06-14 +City Hotel,1,38,2017,December,50,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient,175.56,0,0,Canceled,Kayla Mccann,jessica29@example.net,912-415-9718x785,3539684859854148,2024-10-10 +Resort Hotel,1,38,2017,January,2,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,137.97,0,2,Canceled,Travis Caldwell,fmorse@example.org,(355)646-0018x333,36444368480800,2025-06-12 +Resort Hotel,1,36,2017,December,49,4,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,16.0,179.0,0,Transient,83.99,0,3,Canceled,Nicholas Pacheco,khart@example.org,8218530662,501815324808,2026-03-21 +Resort Hotel,0,23,2017,December,2,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,91.2,0,1,Check-Out,Michelle Marsh,theresaking@example.org,5457692442,3525982652143446,2025-07-26 +Resort Hotel,1,27,2017,March,11,9,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,108.92,0,0,Canceled,Jonathon Gallagher,toddgomez@example.net,(916)458-3415x0089,30084469757684,2025-08-15 +Resort Hotel,0,152,2017,November,47,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,239.0,179.0,0,Transient,100.79,1,2,Check-Out,Todd Garcia,olittle@example.com,666.994.1272,4445597619690985,2025-08-05 +Resort Hotel,0,37,2017,March,9,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,63.85,1,1,Check-Out,Megan Krueger,christopher93@example.org,771-206-8516,3589342180170622,2025-12-09 +Resort Hotel,1,0,2017,June,23,5,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,43.76,0,0,Canceled,Carol Baker,hancocktheresa@example.com,001-486-348-0661x89283,180044765485743,2025-04-18 +City Hotel,0,30,2017,April,15,9,0,1,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,2,No Deposit,14.0,179.0,0,Transient,252.0,0,3,Check-Out,Erica Moore,danielheath@example.com,5756360305,582224130424,2024-10-24 +Resort Hotel,1,208,2017,February,8,22,1,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,0,Non Refund,243.0,179.0,0,Transient,111.77,0,0,Canceled,Thomas Richards,michael69@example.com,(504)983-6926,4442533577039007680,2024-10-25 +Resort Hotel,0,169,2017,November,46,16,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,27.0,179.0,75,Transient,85.9,0,0,Check-Out,Kimberly Shaffer,clozano@example.org,8002075609,3506225173536133,2026-01-02 +City Hotel,0,136,2017,April,16,19,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,140.43,0,1,Check-Out,Gary Montgomery,tim71@example.com,726-257-1470,4271816288982,2026-03-26 +City Hotel,0,174,2017,April,16,14,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,135.29,0,0,Check-Out,William Blake,pearsonjeffrey@example.org,316-332-2312,4665156265957,2024-05-13 +City Hotel,1,122,2017,October,41,10,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.48,0,1,No-Show,Dennis Soto,jessefoster@example.net,+1-615-228-0421,4759114014076,2024-08-14 +Resort Hotel,0,145,2017,November,48,30,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,1,Refundable,11.0,223.0,0,Transient-Party,101.3,0,0,Check-Out,Jaime Lewis,matthew13@example.com,+1-847-847-2261,3552733529500011,2025-10-15 +City Hotel,0,0,2017,May,20,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,98.91,0,0,Check-Out,Robert Ramirez,daniel03@example.net,337-714-7956,3578272483735743,2024-12-07 +City Hotel,0,239,2017,January,2,6,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,80.0,179.0,22,Transient-Party,134.66,0,0,Check-Out,Ashley Davis,christopher37@example.org,001-543-760-9322,630459101188,2025-03-30 +City Hotel,0,2,2017,April,14,4,0,1,1,1.0,0,BB,PRT,Undefined,Direct,0,0,0,B,A,1,No Deposit,18.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,Kim Horn,andrewstanley@example.net,001-286-943-6949x991,5522597062998524,2024-12-31 +City Hotel,0,96,2017,January,4,22,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,105.52,0,0,Check-Out,Grace Lewis,davidmiller@example.com,498-480-5412,2298647150835994,2024-10-02 +Resort Hotel,0,294,2017,May,20,15,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient-Party,159.13,0,1,Check-Out,Chelsea Burch,tamarafernandez@example.org,243-938-7004,4136740201938795439,2025-05-22 +Resort Hotel,0,21,2017,November,47,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,79.85,1,2,Check-Out,Brianna Harris,crystalhampton@example.org,+1-200-906-0618,3563973738377655,2025-02-22 +Resort Hotel,1,154,2017,April,17,25,1,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,2,No Deposit,15.0,179.0,0,Transient,231.51,0,0,Canceled,Maria Garcia,oryan@example.net,7957000671,3540202896444240,2024-12-17 +City Hotel,1,2,2017,December,52,24,2,2,3,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,163.0,0,Transient,132.68,0,1,Canceled,Jill Bean,afisher@example.com,218-222-0770x79780,2701797856260954,2025-10-02 +City Hotel,1,14,2017,January,2,11,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.0,0,0,Canceled,Eric Garcia,weberteresa@example.com,709-495-6592,4766076501503,2024-08-23 +City Hotel,0,102,2017,October,43,27,0,2,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,96.34,0,1,Check-Out,Diana Crawford,mlang@example.net,606-256-9086,4665478363752367,2025-05-10 +City Hotel,1,95,2017,September,39,26,2,1,2,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.78,0,0,Canceled,James Taylor,bedwards@example.net,(629)779-0421,4093327314124899,2025-08-20 +City Hotel,0,107,2017,December,52,26,1,0,1,0.0,0,SC,ESP,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.8,0,0,Canceled,Benjamin Stanley,johnstoncolleen@example.com,001-534-644-2875x0986,213163579830380,2024-04-07 +Resort Hotel,0,2,2017,August,33,16,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,43.43,1,1,Check-Out,David Adams,millerandrew@example.net,(546)891-3534,6539318528785168,2024-11-24 +Resort Hotel,0,122,2017,November,44,3,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,12.0,179.0,75,Transient-Party,61.17,1,3,Check-Out,Brent Lopez,bonnie38@example.org,+1-860-928-3096,30134594505605,2024-09-05 +City Hotel,0,9,2017,April,17,26,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Group,43.87,0,0,Check-Out,Daniel Price,alexis93@example.org,526-517-0988,3587893022136439,2024-12-16 +City Hotel,0,63,2017,January,2,11,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.45,0,1,Check-Out,Jordan Johns,iwood@example.net,+1-488-661-3394x003,6011594915505636,2024-05-17 +Resort Hotel,1,143,2017,March,11,14,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient,135.74,0,0,Canceled,Eddie Velez,gobrien@example.net,609.242.4059,3561757081893695,2025-03-09 +City Hotel,0,99,2017,April,14,4,2,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,2,No Deposit,12.0,179.0,0,Transient,243.66,0,0,Check-Out,Kenneth Esparza,rlee@example.net,799.800.4313,4864223013736298,2025-05-28 +Resort Hotel,1,100,2017,January,2,10,1,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,240.0,179.0,0,Transient-Party,52.35,0,1,Canceled,Karen Rodriguez,brianhowe@example.org,721.559.4724x8927,4557992344226615,2025-10-07 +City Hotel,0,44,2017,December,52,26,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,141.65,0,3,Check-Out,Patricia Bennett,abbottmary@example.org,434.756.3307x35160,30464759819388,2024-11-27 +City Hotel,0,0,2017,April,15,10,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Check-Out,Jacqueline Webb,georgeburke@example.com,001-794-967-9017x976,36820488328831,2024-10-30 +Resort Hotel,0,152,2017,December,52,28,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,49.02,0,0,Check-Out,Melissa Jones,petersendoris@example.com,(382)525-3747x39131,30138948854973,2025-08-20 +City Hotel,1,24,2017,June,24,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,178.26,0,0,Canceled,Tyler Porter,rparker@example.org,514.599.2628,060478983632,2024-12-15 +City Hotel,0,7,2017,August,32,9,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,140.34,0,1,Check-Out,Joshua Singleton,morganvirginia@example.com,+1-871-290-8289x02358,4081860365441350867,2025-08-02 +Resort Hotel,0,93,2017,April,14,3,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,10.0,179.0,0,Transient,232.81,1,0,Check-Out,Anthony Evans,maria46@example.com,001-408-739-7125,180012951618997,2024-05-23 +City Hotel,0,36,2017,June,25,20,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.0,0,2,Check-Out,Robin Walker,jamesperry@example.com,621-561-2175x680,4278862170818165,2024-11-06 +Resort Hotel,0,8,2017,November,45,7,0,3,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,42.02,0,0,Check-Out,Ronald Martin,bhoffman@example.net,334.568.0408,213164336664302,2024-06-14 +City Hotel,0,4,2017,April,15,9,1,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,170.13,1,0,Check-Out,Martha Flynn,williamsalexis@example.com,(654)590-6440x4843,4556317764816,2025-07-14 +Resort Hotel,0,169,2017,March,12,24,4,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,110.79,0,1,Check-Out,Jeffrey Evans,lsmith@example.org,(727)961-0053x7377,38710168796720,2025-01-20 +Resort Hotel,0,63,2017,March,10,5,4,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,239.72,0,0,Check-Out,Angela Johnson,awilliams@example.net,2938318311,4696793131092091,2025-01-21 +Resort Hotel,1,48,2017,August,34,23,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,20,Transient,46.62,0,0,Check-Out,Melinda Hall,michele39@example.org,001-828-238-1403,6596930456936942,2024-06-08 +Resort Hotel,1,178,2017,August,32,9,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,3,Non Refund,244.0,179.0,0,Transient,70.46,0,2,Check-Out,Jasmine Buck,heatheradams@example.com,555-755-4438x29840,676321076009,2024-08-18 +City Hotel,0,1,2017,December,50,9,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,116.05,0,1,Check-Out,Laura Sanford,davidblackwell@example.org,8604411834,36087349658976,2025-07-06 +City Hotel,0,145,2017,February,6,8,1,1,1,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient,129.09,0,0,Check-Out,Nicole Brewer,jason88@example.net,906-998-5278,371515317573101,2024-04-15 +Resort Hotel,0,0,2017,September,36,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,34.58,1,0,Check-Out,Carlos Olsen,craigmartin@example.net,828-569-1298,4627198535896,2024-05-09 +Resort Hotel,1,206,2017,March,13,23,4,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,218.57,0,0,Canceled,Dr. Linda Fleming MD,collinsnatalie@example.com,(541)573-7840,3514269971289800,2026-02-13 +City Hotel,0,9,2017,April,16,19,0,4,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,112.67,0,1,Check-Out,Scott Hansen,wesleywhitaker@example.org,001-642-814-4365x933,676201984553,2025-09-20 +Resort Hotel,1,46,2017,April,15,12,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,80.8,0,0,Canceled,James Gardner,joanmartinez@example.org,+1-642-493-8375x656,676275420476,2025-11-14 +City Hotel,0,44,2017,June,26,27,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,122.14,0,0,Check-Out,Julie Smith,smithtara@example.com,(791)844-6826x2124,502066367736,2024-07-03 +City Hotel,0,382,2017,January,2,8,1,4,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.12,0,0,Check-Out,Bruce Rivera,julierandall@example.net,7427424562,6537064589367056,2024-12-13 +Resort Hotel,1,379,2017,April,14,4,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,50.11,0,0,Canceled,Kyle Walsh,jenniferjackson@example.org,(790)615-7209x2346,4939592827146006,2026-02-13 +City Hotel,1,246,2017,March,10,6,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,95.04,0,0,Canceled,Charles Baxter,williamstammy@example.org,434-636-8442,3513791150712998,2025-12-22 +City Hotel,1,28,2017,October,42,17,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,61.5,0,0,Canceled,Jennifer Smith,melendezteresa@example.net,+1-423-685-5977x21640,30099884771201,2025-02-02 +City Hotel,0,0,2017,October,41,11,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,189.0,179.0,0,Transient-Party,45.07,0,0,Check-Out,Jay Moss,tmorton@example.net,904-626-5370x2964,30355850627466,2025-08-01 +City Hotel,1,106,2017,April,15,12,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.31,0,0,Canceled,Krista Hicks,srhodes@example.net,+1-329-882-8163x2234,4441077665355101890,2024-12-29 +City Hotel,0,0,2017,November,47,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,H,0,No Deposit,15.0,45.0,0,Transient,49.79,1,0,Check-Out,Donald Smith,hollyperkins@example.net,+1-621-874-5705x310,30503524984942,2024-08-19 +Resort Hotel,1,58,2017,February,8,23,4,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,249.96,0,1,Canceled,Tanya Hall,zbass@example.com,741-463-2399x99863,4029755399464945722,2026-01-24 +City Hotel,0,36,2017,January,5,29,1,0,2,0.0,0,SC,ISR,Online TA,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,92.22,0,0,Check-Out,Isabel Hall,curtisjohnson@example.net,(837)428-9645x8186,38603979310478,2026-03-23 +Resort Hotel,0,0,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,53.61,0,0,Check-Out,Elizabeth Fleming,matthew19@example.net,001-555-606-6424x28086,3598636882253514,2025-11-25 +City Hotel,0,290,2017,June,25,19,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Contract,64.1,1,2,Check-Out,Angela Russell,donald36@example.com,330-820-5966x243,346597357627445,2024-04-20 +Resort Hotel,0,93,2017,April,16,19,2,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,242.86,0,2,Check-Out,Stephen Nguyen,frankmiller@example.com,+1-350-287-2983x08163,4219346854596012877,2024-04-24 +City Hotel,1,34,2017,November,48,29,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.7,0,1,Canceled,Eric Hull,dawnreed@example.com,(595)748-1023x6522,4855346157885430,2024-11-08 +City Hotel,0,19,2017,March,12,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,63.25,0,2,Check-Out,Daniel Vaughn,mshepherd@example.org,658.333.3057,3574251251446273,2025-06-16 +Resort Hotel,0,97,2017,August,35,27,2,1,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,50.2,0,0,Check-Out,Alexander Martin,theresaellis@example.com,+1-560-820-7682,502058726899,2025-06-02 +City Hotel,1,37,2017,November,45,7,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.26,0,2,Canceled,Anthony Morton,perkinsjoshua@example.com,639.481.9805,213149044809034,2024-08-04 +City Hotel,1,147,2017,January,5,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,139.0,179.0,0,Transient,33.88,0,0,Canceled,Thomas Sanchez,xavier17@example.net,+1-648-488-8209x00578,4641396208599406,2025-11-06 +City Hotel,1,403,2017,April,14,5,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,221.27,0,0,Canceled,Gary Palmer,julie36@example.org,2889857758,213134915669725,2024-09-26 +City Hotel,0,186,2017,January,4,20,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,219.2,0,0,Check-Out,Michelle Knight,sanderssamuel@example.net,740.760.7938x796,6524805819592144,2024-09-27 +Resort Hotel,0,18,2017,April,18,27,0,3,1,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,131.66,0,1,Check-Out,Daniel Morton,yshah@example.net,+1-954-400-9149,4298836306888503387,2026-02-06 +Resort Hotel,1,202,2017,March,13,26,4,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,236.0,179.0,0,Transient,252.0,0,2,Canceled,Jordan Vasquez,bwalker@example.com,752-911-9092,30019431248214,2025-03-11 +Resort Hotel,1,186,2017,February,8,19,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,100.77,1,1,Canceled,Scott Lyons Jr.,stevenhernandez@example.net,2197354267,342440774927334,2024-06-01 +Resort Hotel,1,58,2017,March,11,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,283.0,179.0,0,Transient,47.47,0,0,No-Show,Jonathan Solomon,timothy84@example.net,+1-290-742-6106x646,4912540211860675,2026-03-10 +City Hotel,0,47,2017,April,16,13,3,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,190.43,0,0,Check-Out,Elizabeth Anderson,richardgreene@example.com,677.929.4154x09769,347776832926346,2024-09-14 +City Hotel,1,398,2017,February,8,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,165.0,179.0,0,Transient,121.05,0,0,Canceled,Melissa Smith,garciajason@example.net,001-671-231-1922,4219540256856521,2024-11-21 +Resort Hotel,0,14,2017,January,2,3,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,181.37,1,2,Check-Out,James Fernandez,smithashley@example.com,735-273-9168x54583,340186138423021,2024-08-05 +Resort Hotel,0,69,2017,March,13,24,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,E,E,0,No Deposit,240.0,179.0,0,Transient,67.64,0,1,Check-Out,Mark Peters,glenchambers@example.org,4013354258,3521614173238611,2025-12-09 +City Hotel,1,45,2017,December,49,5,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,86.58,0,0,Canceled,David Cruz,alyssa23@example.com,(482)302-5223x78590,3515948388342000,2025-05-24 +City Hotel,0,2,2017,December,49,5,0,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.65,0,1,Check-Out,Peter Chavez,dianeperez@example.com,+1-718-837-0274x67315,4824432660057,2024-11-07 +Resort Hotel,1,3,2017,December,49,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,98.35,0,1,No-Show,Judith Glenn,douglasturner@example.org,(294)341-3787x78343,180063956748180,2024-10-25 +City Hotel,1,20,2017,February,9,29,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,143.06,0,0,Canceled,Antonio Hughes,greenjoshua@example.org,212-974-3032x151,2264686290073488,2024-12-21 +City Hotel,0,16,2017,January,2,1,0,3,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,139.24,0,1,Check-Out,Frederick Finley,patriciacox@example.com,+1-762-511-7238x82937,4094001410900,2024-10-03 +Resort Hotel,0,4,2017,November,44,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,3.44,0,1,Check-Out,Tara Lloyd,kari76@example.org,001-460-729-8787x680,3583030404292191,2025-05-27 +Resort Hotel,0,16,2017,July,30,24,1,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,77.02,0,0,Check-Out,Mark Wilkinson,orodriguez@example.org,001-879-518-6702x0916,4906018355042218,2024-07-01 +City Hotel,0,9,2017,February,8,21,2,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,A,1,No Deposit,12.0,179.0,0,Transient,144.2,0,1,Check-Out,Margaret Kennedy,tonya74@example.org,4406970598,4349915051131937,2025-08-22 +City Hotel,1,3,2017,December,52,26,1,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.33,0,2,Canceled,Darren Thompson,gerald08@example.com,9024795533,578239507606,2024-12-08 +City Hotel,0,25,2017,July,29,21,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,128.43,0,2,Check-Out,Jennifer Poole,wandaherrera@example.net,001-836-627-2326,4678181571569843121,2024-11-03 +Resort Hotel,0,14,2017,August,32,9,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,142.06,0,1,Check-Out,Felicia Fischer,helenbradley@example.org,236.933.1069x1989,344551466619134,2025-09-12 +Resort Hotel,1,157,2017,December,49,5,1,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,93.87,0,0,Canceled,Dr. Zachary Peterson DDS,grahamrobert@example.com,(437)294-1356x9813,4467012044318783,2025-11-14 +City Hotel,1,4,2017,April,15,9,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,214.05,0,0,Canceled,Douglas Ferguson,aarroyo@example.org,431-230-3570x063,2278421613449874,2025-12-20 +City Hotel,0,38,2017,December,52,25,0,3,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.11,0,1,Check-Out,Eric Marks,uortega@example.net,001-649-811-5244x23086,344000841122968,2025-02-13 +Resort Hotel,1,1,2017,December,50,14,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient,44.86,0,0,Canceled,Robert Anthony,jcarter@example.com,+1-654-370-9299x643,6011174220166083,2025-11-25 +Resort Hotel,1,48,2017,April,14,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,212.11,0,0,No-Show,Wanda Hughes,sotocurtis@example.com,612.844.6223x1267,213152921191799,2025-04-07 +City Hotel,0,71,2017,September,36,4,2,5,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.14,0,1,Check-Out,Sarah Martin,rwilson@example.com,(846)686-8307x65465,4084510418079025,2024-12-21 +City Hotel,0,78,2017,September,39,28,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,86.96,0,1,Canceled,Kristopher Allison,jmorse@example.com,+1-665-953-8599x4836,4378764745664996461,2025-01-26 +City Hotel,0,16,2017,April,15,9,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.3,0,1,Check-Out,Heather Riley,tgray@example.com,276.566.0196,6549255547337696,2025-01-23 +City Hotel,1,51,2017,December,49,8,1,5,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,117.24,0,0,Canceled,Rebekah Gutierrez,samantharichardson@example.net,596-726-7304x5179,4495952018400348007,2025-04-05 +City Hotel,1,83,2017,November,47,21,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.44,0,1,Check-Out,Brian Webb,whitestephanie@example.com,471.788.7513,4820442433576,2024-07-04 +Resort Hotel,1,254,2017,March,9,1,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,79.43,0,0,Canceled,Kaitlyn Parker MD,awolfe@example.net,+1-459-835-1057x38695,6570349254424532,2025-09-28 +Resort Hotel,0,2,2017,September,39,27,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,221.0,0,Transient-Party,43.2,1,2,Check-Out,Patrick Barnes,victoria82@example.com,001-851-478-0307,4068431343823470,2025-08-10 +Resort Hotel,0,33,2017,November,46,13,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,55.47,0,1,Check-Out,Jorge Tyler,linda76@example.org,001-558-419-3361x1944,4659828367333,2025-10-15 +City Hotel,0,16,2017,November,46,11,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,50.1,0,1,Check-Out,James Ray,kenneth78@example.org,001-809-797-3496x3482,4567011420886750,2026-01-05 +City Hotel,0,14,2017,October,43,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,48.25,1,1,Check-Out,George Harding,williamsjames@example.net,001-507-686-3664x94019,4152566205261,2025-07-27 +City Hotel,0,54,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,60.45,0,1,Check-Out,Olivia Carpenter,xhunt@example.org,844.877.3589x37822,30041983231331,2024-06-07 +City Hotel,1,257,2017,March,11,11,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,137.48,0,0,Canceled,Deanna Jennings,youngdavid@example.com,7942673523,3586288491622590,2025-05-17 +City Hotel,0,0,2017,March,11,9,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,215.0,0,1,No-Show,Hannah Butler,nataliewilliams@example.com,(795)533-9325x314,349420098342512,2025-07-26 +City Hotel,0,11,2017,March,13,27,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.94,0,1,Check-Out,Jamie Lawrence,oadkins@example.com,(856)900-0783x27125,676325476411,2024-12-22 +City Hotel,0,181,2017,January,2,1,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,234.07,0,2,Check-Out,Tammy Finley,carlvasquez@example.org,(356)581-8531,675903559994,2024-12-27 +Resort Hotel,0,41,2017,August,31,4,0,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,54.62,0,1,Check-Out,Jennifer Robinson,lisa72@example.com,+1-327-845-5391x64131,3504695748203280,2025-01-05 +City Hotel,0,127,2017,July,27,5,0,1,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,81.01,0,0,Check-Out,Jason Kelley,jgibson@example.org,659-771-1749x118,180099753847494,2024-05-10 +Resort Hotel,0,0,2017,January,2,4,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,232.0,0,Transient,39.51,0,0,Check-Out,Randall Ramos,romanbrandon@example.net,728-581-6133,3548221426083908,2025-09-29 +City Hotel,0,3,2017,September,36,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,120.79,0,0,Check-Out,Jesus Carlson,leejoseph@example.org,001-319-748-7212,3595941920470804,2024-09-01 +Resort Hotel,0,12,2017,April,14,4,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,C,C,1,No Deposit,312.0,179.0,0,Transient-Party,63.48,0,0,Check-Out,Peter Harris,knapptodd@example.net,+1-419-713-0313x992,4826199542588706917,2025-05-03 +City Hotel,0,161,2017,July,27,4,0,3,2,0.0,0,BB,IRL,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,85.03,0,1,Check-Out,Samantha Thomas,bowendana@example.org,785.994.4679x0727,4354328899765944,2024-09-23 +Resort Hotel,1,49,2017,July,31,29,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,83.84,0,0,Canceled,John White,larsennicole@example.org,+1-559-726-2751x3373,4556735558499142,2024-08-04 +City Hotel,0,153,2017,November,47,24,2,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient-Party,187.13,0,0,Check-Out,Olivia Wallace,wayneparker@example.net,+1-999-204-4948x6303,4076558664210042557,2024-07-26 +City Hotel,1,0,2017,July,28,10,1,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,A,2,No Deposit,12.0,45.0,0,Transient,89.15,0,0,Canceled,Angela Potts,mitchell06@example.org,+1-264-972-9577x739,4267357254175973,2025-07-21 +City Hotel,1,247,2017,August,33,13,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,79.49,0,0,Canceled,Virginia Martinez,hmartinez@example.org,897.958.5681x19751,4025305351323877987,2024-07-11 +Resort Hotel,0,2,2017,September,37,15,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,16.0,179.0,0,Transient,242.47,1,1,Check-Out,Jennifer Lopez,mgonzalez@example.net,+1-629-745-7166x579,3580457604437719,2025-02-19 +Resort Hotel,0,12,2017,July,27,6,2,3,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,58.83,0,1,Check-Out,Jennifer Rasmussen,justin80@example.com,(391)205-5299x799,4325777142727,2025-02-23 +Resort Hotel,0,247,2017,December,49,4,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,101.13,0,0,Check-Out,Carol Harris,ucole@example.com,+1-302-903-3970x794,180077334174174,2025-05-20 +City Hotel,1,9,2017,April,15,10,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,220.3,0,0,Canceled,Michael Parsons,janice62@example.net,686-497-3224x18395,213189021289768,2024-06-22 +Resort Hotel,0,255,2017,May,19,11,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,82.66,0,1,Check-Out,Charles Jensen,ortegatheresa@example.net,314.529.0564,3575784615303706,2025-03-10 +Resort Hotel,0,146,2017,March,12,22,0,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,172.0,179.0,0,Transient-Party,134.36,1,0,Check-Out,Darlene Gray,zmorris@example.com,805-892-7311,30378113465110,2024-09-21 +City Hotel,0,54,2017,July,29,21,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient-Party,88.08,0,1,Check-Out,Robin Preston,andersonrichard@example.com,+1-915-995-1330,30235828447793,2024-07-11 +City Hotel,0,36,2017,March,10,4,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,103.81,0,1,Check-Out,Tiffany Gray,erandall@example.org,+1-226-789-0944x7539,4064609518329214827,2024-06-27 +Resort Hotel,0,94,2017,March,10,4,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,77.6,0,0,Check-Out,Mrs. Cristina Stark,frank14@example.org,(685)377-6552,5429054110536108,2025-10-10 +Resort Hotel,0,107,2017,November,47,21,0,1,2,0.0,0,FB,POL,Groups,TA/TO,0,0,0,A,A,2,No Deposit,135.0,179.0,0,Transient-Party,77.86,0,0,Check-Out,Gregg Anderson,drew87@example.com,392-668-8683,4471697275963,2024-07-29 +Resort Hotel,0,148,2017,November,47,23,1,3,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,1,Refundable,11.0,222.0,63,Transient-Party,70.63,0,0,Check-Out,Joshua Myers,xsalinas@example.org,(576)720-7102x57676,4160292362715071,2026-03-19 +Resort Hotel,0,195,2017,April,14,5,2,5,2,0.0,0,FB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,48.8,1,0,Check-Out,Linda Davis,bradleymatthew@example.com,484-864-3162x9447,30144602964900,2024-10-19 +City Hotel,1,13,2017,October,42,17,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.48,0,0,Canceled,Dana Baldwin,russellcarla@example.com,(751)377-6867,4514345691484133,2025-02-04 +Resort Hotel,1,15,2017,April,17,23,1,1,2,2.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,61.51,0,0,Canceled,Richard Hensley,qross@example.org,592.236.2992x29007,4693648625552864,2024-06-22 +City Hotel,0,46,2017,November,44,3,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.76,0,0,Check-Out,Joseph Clayton,lopezpaige@example.com,001-833-677-9541x925,4293990569995,2024-10-20 +City Hotel,0,59,2017,April,14,5,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,89.76,0,1,Check-Out,Joseph Chan,taradelgado@example.com,251-346-7857x50486,2272072860650080,2025-07-31 +City Hotel,0,23,2017,October,43,25,2,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,83.56,0,0,Check-Out,Brian Nixon,stuarteric@example.org,001-874-700-9302x1515,4191978005836,2025-06-26 +City Hotel,0,213,2017,September,38,16,0,3,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,98.38,0,1,Check-Out,Pamela Meyer,drowland@example.org,+1-835-730-1090,4778503360048768,2025-05-25 +City Hotel,1,12,2017,June,24,15,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,116.34,0,2,No-Show,Christopher Bell,sotoantonio@example.org,533-601-1462x50842,4658535725912242,2025-02-07 +City Hotel,1,109,2017,October,43,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,100.44,0,0,No-Show,Charles Pham,zyoung@example.com,318.257.4075x3324,4972121580548014,2024-10-13 +City Hotel,0,37,2017,July,30,23,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.69,0,1,Check-Out,William Ortiz,allenryan@example.net,+1-250-860-0927x392,377901158301550,2025-10-04 +Resort Hotel,0,0,2017,October,43,24,0,2,3,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,1,No Deposit,182.0,179.0,0,Transient,47.23,0,1,Check-Out,Tracy Diaz PhD,cgraham@example.net,+1-709-675-7877x4621,3507073595301606,2025-09-21 +Resort Hotel,1,184,2017,April,14,5,4,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,154.5,0,0,Canceled,Scott Bean,adamspatrick@example.com,(542)764-4451,4145432282924474,2026-03-09 +City Hotel,0,55,2017,December,50,12,0,3,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,142.87,0,1,Check-Out,Marcia Griffin,williamsmatthew@example.org,+1-741-657-7831x42860,676120006165,2025-02-06 +City Hotel,1,41,2017,March,14,30,2,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,236.11,0,1,No-Show,Michael Williams,silvajoshua@example.org,641-770-3107x28108,4755386506744269,2025-09-06 +Resort Hotel,0,32,2017,August,35,26,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,243.0,179.0,0,Transient,72.97,0,0,Check-Out,Tiffany Jackson,joseph91@example.net,792.429.8993,180027593095016,2025-08-18 +City Hotel,1,18,2017,November,46,14,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,95.17,0,0,Canceled,Benjamin Castillo,nmiller@example.org,+1-314-742-4291x00246,3554143918768716,2024-07-20 +Resort Hotel,0,28,2017,August,32,7,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,73.24,0,0,Check-Out,Anna Novak,kristygonzales@example.net,(988)204-4235x0428,30475540233127,2026-03-20 +City Hotel,0,138,2017,December,2,30,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.49,0,1,Check-Out,Kristin Brandt,robertthompson@example.com,(373)546-5475x922,374914953046091,2025-11-19 +City Hotel,1,111,2017,January,5,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,103.7,0,0,Canceled,Tiffany Rowe,samantha74@example.org,812-723-0121x2706,30375123678625,2025-08-28 +Resort Hotel,0,14,2017,April,14,4,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,201.83,1,1,Check-Out,Kimberly Kennedy,jennifer08@example.net,529.813.2241,375707726043497,2025-11-10 +City Hotel,1,169,2017,April,15,12,2,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,134.73,0,0,No-Show,Karen Gillespie,hamiltonangel@example.com,202-714-6132,180061996062711,2025-07-23 +City Hotel,0,20,2017,October,43,25,1,2,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,9.0,179.0,0,Transient,201.54,0,1,Check-Out,Christina Salinas,josephperkins@example.org,(411)463-9887,2273294110607673,2024-04-11 +City Hotel,1,58,2017,August,34,24,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.4,0,0,Canceled,Robert Shaffer,fwiley@example.com,374-887-1315,6524116178619506,2025-01-14 +Resort Hotel,0,8,2017,June,26,27,2,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Group,61.61,0,2,Check-Out,Rebecca Thompson,davidhickman@example.org,001-214-920-0520x1931,4090111967979482158,2024-12-09 +City Hotel,1,40,2017,January,3,19,0,5,3,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,1,No Deposit,15.0,184.0,0,Transient,178.22,0,1,No-Show,Kara Estrada,nicholascarter@example.org,001-658-597-0477x85600,3588638759454318,2025-12-27 +Resort Hotel,0,18,2017,November,47,22,1,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,42.74,0,1,Check-Out,Eric Simmons,adamsjeffrey@example.org,8872861030,2290568136286375,2025-04-27 +City Hotel,1,22,2017,April,18,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,231.69,0,1,No-Show,Philip Weaver,rscott@example.com,001-255-987-4991x893,502053484742,2024-05-31 +City Hotel,0,193,2017,May,21,24,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,100.07,0,0,Check-Out,Kaitlin Smith,sullivanbrenda@example.com,641-618-5206,4902616214250619,2025-02-25 +City Hotel,1,16,2017,October,43,24,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.86,0,1,Canceled,Andrew Rose,ylozano@example.com,(287)300-7269x052,4305799997492500,2025-07-13 +City Hotel,1,91,2017,December,49,9,0,3,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,G,C,0,No Deposit,80.0,179.0,0,Transient,101.59,0,0,No-Show,Michael Hernandez,cynthiaortiz@example.org,+1-913-913-7892x402,30264623488430,2024-12-05 +Resort Hotel,0,1,2017,July,27,5,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,3,No Deposit,178.0,67.0,0,Transient-Party,44.99,0,0,Check-Out,Michael Cross,tiffany91@example.com,(312)282-2082x89664,4800262912565637665,2025-11-20 +City Hotel,1,2,2017,January,4,28,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,331.0,0,Transient,99.61,0,0,Canceled,April Cummings,powens@example.org,506.792.1772x68150,30076018395883,2025-04-01 +City Hotel,1,84,2017,February,6,4,0,4,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.56,0,0,Canceled,Edward Valentine Jr.,lvazquez@example.com,001-869-724-4868,38846790230447,2026-01-09 +City Hotel,0,15,2017,January,2,3,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,65.39,0,0,Check-Out,Jonathan Taylor,gonzalesheather@example.net,001-984-530-5627x982,3562714871481081,2024-12-01 +City Hotel,1,159,2017,May,19,11,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,167.18,0,0,Canceled,Andrea Oneill,hendersonelizabeth@example.net,337-626-4792x04900,4310381411642771,2025-10-21 +Resort Hotel,1,151,2017,January,2,1,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,C,0,Non Refund,174.0,179.0,0,Transient,138.02,0,0,Canceled,Jason Baxter,taylorscott@example.org,001-536-304-2351x57873,4889347255538288311,2025-11-30 +City Hotel,0,0,2017,March,13,26,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,2.84,0,1,Check-Out,Patrick Chan,sjohnson@example.net,587-374-2865x812,3539251486133856,2024-11-17 +City Hotel,1,1,2017,April,17,23,1,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,107.06,0,0,Canceled,Jared Becker,stephaniebaker@example.net,001-346-889-3641x5861,374721950735752,2024-09-07 +City Hotel,0,19,2017,June,25,20,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,141.11,0,1,Check-Out,Donald Bryan,ejones@example.org,(363)461-3270,180054488743831,2024-09-03 +Resort Hotel,0,13,2017,November,46,16,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,16.0,75.0,0,Transient,35.33,0,1,Check-Out,Nathan Brown,mfreeman@example.com,557-498-3585x271,501843209161,2025-11-20 +City Hotel,0,0,2017,June,22,1,0,1,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,95.08,0,0,Check-Out,Pamela Carter,antonio00@example.org,485.764.3801x376,4399598072142585,2025-08-21 +City Hotel,0,1,2017,April,17,23,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,134.77,0,2,Check-Out,Teresa Lopez,sheltonjulie@example.net,688-363-0292x9656,213157902611632,2026-01-23 +City Hotel,0,50,2017,November,45,5,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,239.0,0,Transient,108.71,0,0,Check-Out,Walter Romero,whull@example.net,974.684.5955x48956,30569035570025,2024-09-30 +City Hotel,1,94,2017,December,2,31,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.9,0,0,Canceled,Steven Barker II,pturner@example.com,(453)281-1392x076,3596832605415405,2024-10-07 +Resort Hotel,0,0,2017,August,31,3,2,1,2,0.0,0,HB,PRT,Direct,Direct,1,1,1,A,E,0,No Deposit,245.0,179.0,0,Transient,54.56,0,1,Check-Out,Maria Simmons,curtishannah@example.com,001-939-652-6189x65074,4952607166442,2024-07-01 +City Hotel,1,260,2017,July,27,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,84.9,0,0,Canceled,Sharon Rogers,millermatthew@example.org,(328)948-6646,38502199762007,2025-03-23 +City Hotel,0,2,2017,September,39,27,1,1,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,123.37,0,1,Check-Out,Brittany Taylor,lancejenkins@example.com,543-786-3337x141,379304971730766,2024-11-05 +Resort Hotel,0,145,2017,February,8,20,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,109.19,0,2,Check-Out,Mr. Matthew Peterson,wbright@example.org,864.752.5503,4980353028148350,2025-12-01 +City Hotel,1,88,2017,January,2,2,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,G,B,0,No Deposit,15.0,179.0,0,Transient,117.13,0,0,Canceled,Lisa Stevens,meghanjones@example.org,556.654.7543,6011662470044869,2025-06-19 +City Hotel,0,7,2017,February,5,3,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,113.82,0,1,No-Show,Andrew Rodriguez,thompsonrebecca@example.com,001-643-635-4934x18635,4338385436778490442,2025-04-25 +City Hotel,0,12,2017,November,45,6,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,223.0,0,Transient-Party,65.05,0,0,Check-Out,Lee Boone,samanthahess@example.net,+1-951-283-7440x26344,3534022895865791,2025-01-28 +City Hotel,0,400,2017,May,21,26,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,107.24,0,0,Check-Out,Mr. Luis Bell,victor69@example.com,986.669.6494,30105382798461,2025-09-08 +City Hotel,0,86,2017,April,16,19,1,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,205.58,0,0,Check-Out,Amber Allison,olivia36@example.net,001-908-682-2729,3589558470046392,2024-07-06 +City Hotel,0,10,2017,August,32,9,2,5,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,51.03,0,1,Check-Out,Nathaniel Gomez,lawsonrachel@example.net,9408006663,4540970049490447,2024-11-24 +City Hotel,0,58,2017,March,10,4,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,201.64,0,2,Check-Out,Michael Montes,davidsonjoseph@example.com,+1-611-515-8660x329,565462914252,2025-06-05 +Resort Hotel,0,131,2017,April,18,30,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,239.0,179.0,0,Transient,243.22,0,1,Check-Out,Aaron Adams,rebekahjennings@example.org,001-347-657-5809,4402687099006,2025-02-16 +City Hotel,1,2,2017,March,10,8,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,B,E,0,No Deposit,14.0,179.0,0,Group,112.81,0,0,Canceled,Christina Woods,mcgeedeborah@example.com,(799)575-5807,30364468391598,2025-12-28 +City Hotel,0,0,2017,November,47,22,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,9.0,179.0,0,Transient,93.98,0,1,Check-Out,Christopher Blankenship,cherylgriffin@example.com,757.494.6126x3542,30161244990119,2025-05-20 +Resort Hotel,0,17,2017,January,4,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,95.16,0,0,Check-Out,Vincent Welch,garciadaniel@example.org,6644483107,4932143623783,2025-06-05 +City Hotel,1,30,2017,November,47,24,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,44.43,0,2,Canceled,Frank Martinez,spencemichael@example.net,651.744.6949x180,676317117866,2025-07-24 +City Hotel,1,1,2017,November,47,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,235.47,0,2,Canceled,Daniel Munoz,carlos36@example.net,4193341507,4062270448964899553,2024-08-07 +Resort Hotel,0,1,2017,November,45,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,I,0,No Deposit,243.0,179.0,0,Transient,1.59,1,1,Check-Out,Douglas Martin,nicholaswyatt@example.net,001-690-699-0529x93587,4459275940872035,2026-03-05 +Resort Hotel,0,15,2017,January,4,25,1,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,252.0,1,1,Check-Out,Richard Cook,christopherwalker@example.net,428-487-3126x54732,2269198105825180,2025-02-20 +City Hotel,0,19,2017,June,23,5,0,2,1,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,111.53,0,2,Check-Out,Elizabeth Villarreal,brenda60@example.com,530-409-0787,4639401453646607,2024-08-14 +Resort Hotel,1,13,2017,October,44,31,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,129.41,0,0,Canceled,Tracey Melendez MD,ballernest@example.com,+1-985-873-6467,4463518138595,2024-05-01 +Resort Hotel,0,30,2017,May,20,18,0,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,57.79,0,1,Check-Out,Samantha Aguilar,daniellawrence@example.org,202.251.4739,5582323220375969,2024-04-26 +City Hotel,0,21,2017,October,43,21,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,127.98,0,0,Check-Out,Carlos Burke,frank29@example.org,+1-314-256-3666,4590271412449087639,2025-09-17 +City Hotel,0,93,2017,November,45,11,2,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient,78.35,0,0,Check-Out,Kimberly Steele,lynnlarry@example.org,312-546-7916,3503401628296531,2025-10-12 +City Hotel,0,13,2017,May,20,13,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.42,0,2,Check-Out,Matthew Farley,christophercox@example.com,(890)836-3460,6559193678702940,2025-03-15 +Resort Hotel,1,94,2017,December,49,4,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient,84.99,0,0,Canceled,Suzanne Luna,lroth@example.net,+1-740-260-6032x87600,3575644036129157,2025-05-30 +City Hotel,1,49,2017,July,27,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,77.07,0,0,Canceled,Thomas Hamilton,asoto@example.com,324-623-3993x5340,6598402278362580,2026-03-14 +City Hotel,0,36,2017,October,40,2,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,62.83,0,1,Check-Out,Karen Macias,christianatkins@example.org,6877443954,30378120470202,2025-10-03 +City Hotel,0,16,2017,April,14,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,65.22,0,3,Check-Out,Corey Torres,grayaustin@example.org,922.355.7840,4864903667591293,2025-02-10 +Resort Hotel,0,11,2017,October,44,29,2,1,2,0.0,0,BB,,Corporate,Direct,0,0,0,D,D,0,No Deposit,181.0,222.0,0,Transient,48.19,0,0,Check-Out,Grace Torres,monica43@example.net,891-320-9796x484,3589800513839247,2025-08-22 +City Hotel,0,2,2017,October,43,27,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,176.16,0,0,Check-Out,Kelly Martin,rebeccahill@example.net,212-226-2188x10299,4714204322875884680,2025-07-04 +Resort Hotel,0,199,2017,November,44,4,1,5,2,1.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,80.98,0,0,Check-Out,Jamie Woods,noblemary@example.net,980-505-7275x46685,6011569589740537,2025-04-07 +City Hotel,0,416,2017,July,30,23,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.14,0,1,Check-Out,Jared Dawson,amandahorton@example.net,+1-874-941-8081x679,4685038922740,2025-11-23 +City Hotel,1,158,2017,January,2,12,0,3,3,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,64.0,179.0,0,Transient-Party,136.05,0,0,Canceled,Steven Delacruz,james07@example.com,813.871.1125x6688,6538207079003108,2024-07-09 +Resort Hotel,1,1,2017,December,51,22,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,82.55,0,0,Canceled,Sandy Austin,bakervictoria@example.com,(457)656-3699x7700,4280783412269,2024-06-15 +Resort Hotel,1,0,2017,August,31,4,1,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,378.0,179.0,0,Transient-Party,37.95,0,0,Canceled,Pamela Perez,lwhitaker@example.com,001-591-472-7881x41034,180046686992715,2025-06-15 +City Hotel,0,13,2017,January,4,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,105.67,0,0,Check-Out,Maria Davidson,adamsmith@example.org,6876208670,4045525984781836,2024-05-18 +City Hotel,1,107,2017,May,22,30,0,4,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,11.0,179.0,75,Transient,120.37,0,1,No-Show,John Lin,whitakercraig@example.net,+1-713-924-2373x463,3567415338892242,2025-09-29 +City Hotel,0,5,2017,April,16,14,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,1,3,Check-Out,Lori Le,xbrown@example.com,(914)807-2341,5135807397015285,2025-11-10 +City Hotel,1,156,2017,December,2,30,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.87,0,0,Canceled,Alexandra Jones,dylanduncan@example.com,(967)996-0901x051,4025668202024,2024-11-14 +City Hotel,1,130,2017,March,13,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,116.47,0,0,Canceled,Karen Woods,millernicholas@example.net,001-936-827-5125x1160,180070811347660,2025-06-30 +City Hotel,0,397,2017,November,45,10,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,116.16,1,0,Check-Out,Shawn Sullivan,millerrobert@example.org,(889)200-7351x21291,060451797504,2025-07-20 +City Hotel,0,4,2017,November,44,3,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,83.48,0,1,Check-Out,Tracy Whitaker,kallen@example.net,001-263-626-8201x705,4108398371613473,2025-03-06 +Resort Hotel,1,15,2017,August,32,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,150.0,179.0,0,Transient,66.37,0,0,Canceled,Dennis Moore,briggssteven@example.com,7323056921,6514229707578572,2024-10-17 +City Hotel,1,409,2017,May,18,4,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.95,0,0,Canceled,Jason Greene,gibsonedward@example.net,4667843555,4282536072760576,2025-10-25 +City Hotel,0,16,2017,June,23,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,101.64,0,0,Check-Out,Philip Robbins,jordanrebecca@example.com,001-545-463-5895,3571897349145468,2025-05-25 +City Hotel,1,105,2017,January,2,4,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,125.41,0,1,Canceled,Ronald Villegas,beckronald@example.com,(459)813-8865x2249,38158108196512,2024-06-22 +Resort Hotel,0,39,2017,August,31,1,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,55.96,0,1,Check-Out,Meghan Hernandez,joshuamosley@example.org,001-304-266-6294,502030333806,2024-05-30 +Resort Hotel,1,139,2017,December,52,26,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,76.66,0,0,Check-Out,Tony Wilson,yatesryan@example.com,+1-998-333-1021x61492,213128999597927,2025-12-06 +Resort Hotel,0,27,2017,April,17,20,1,1,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,251.0,179.0,0,Transient,202.28,0,3,Check-Out,Robert Foster,jenkinsshawn@example.com,(835)241-0845x563,4057622117588100004,2024-12-26 +City Hotel,1,212,2017,February,5,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,105.01,0,0,Canceled,Deanna Choi,rstewart@example.net,001-242-657-8049x763,36519321857028,2024-06-08 +City Hotel,1,333,2017,May,18,4,0,3,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,A,1,No Deposit,13.0,179.0,0,Transient-Party,128.53,0,2,Canceled,Kenneth French,jonathon31@example.net,001-542-941-4487x84794,30015444712212,2025-03-30 +City Hotel,1,77,2017,September,36,3,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.81,0,1,Canceled,Madison Boyd,edavis@example.net,(272)752-7530x684,4767225298383736,2025-12-21 +City Hotel,1,157,2017,June,23,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,100.86,0,0,Canceled,Leroy Walker,hgarza@example.com,7008439747,6582198065873114,2025-11-12 +Resort Hotel,1,42,2017,March,12,16,0,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Transient-Party,78.67,0,0,Canceled,Lisa Mercer,denisewilson@example.com,301-441-2146,630455751838,2024-04-26 +City Hotel,1,155,2017,March,11,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,124.0,0,0,Canceled,Robert Martin,ashleyallen@example.org,4572347187,3590178696091234,2026-02-10 +City Hotel,1,1,2017,September,37,14,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,100.39,0,0,Canceled,Marcia Flowers,erica49@example.org,844.863.4468,4100112699499814,2025-05-16 +City Hotel,0,3,2017,September,37,16,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,76.8,0,1,Check-Out,Maria Morris,rebeccaadams@example.net,5722099694,502073534484,2024-07-25 +Resort Hotel,0,150,2017,March,9,3,4,10,2,0.0,0,HB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,339.0,179.0,0,Transient,210.06,0,0,Check-Out,Jason Steele,gmorales@example.com,001-874-988-1781x47362,3552004705483640,2024-11-16 +City Hotel,1,417,2017,June,24,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.71,0,0,Canceled,Rebecca Miller,hparsons@example.net,241.441.3090x444,3595782886265295,2024-06-30 +City Hotel,0,14,2017,November,47,23,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,74.0,179.0,0,Transient,106.91,1,0,Check-Out,Scott Smith,steven01@example.org,+1-207-605-1740,4400724535241952587,2024-11-11 +Resort Hotel,0,18,2017,June,24,14,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,197.0,60.0,0,Transient-Party,55.98,0,0,Check-Out,Jeffrey Durham,brianbridges@example.com,2432705136,38800531462397,2025-11-14 +City Hotel,1,10,2017,June,24,14,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,0,A,A,0,No Deposit,10.0,243.0,0,Contract,49.61,0,2,Canceled,Julie Chan,scottsloan@example.com,(835)857-3295,5460937361903060,2025-11-25 +Resort Hotel,1,38,2017,October,42,18,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,52.38,0,1,No-Show,Adam Cortez,qmorris@example.com,618.383.4441x630,2289952726271927,2024-05-12 +City Hotel,1,88,2017,August,34,26,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.59,0,0,Canceled,Justin Andrews,franklintracie@example.com,918.567.5979x90474,30396945136980,2024-03-27 +Resort Hotel,1,155,2017,February,8,22,2,2,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,222.45,1,1,Canceled,Makayla Reynolds,cmartin@example.org,(537)776-3941x29420,372552027220193,2025-03-07 +Resort Hotel,0,42,2017,June,23,5,1,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,61,Transient-Party,79.13,0,0,Check-Out,Jennifer Hancock,chad38@example.com,3699334085,2720611625822233,2024-08-20 +City Hotel,0,2,2017,February,8,22,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,149.91,0,2,Check-Out,Elizabeth Hayes,charles67@example.net,261-711-0947x40955,3566739928134488,2025-01-04 +Resort Hotel,0,10,2017,April,17,26,2,1,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,227.26,1,0,Check-Out,Ryan Thornton MD,deborahhernandez@example.com,001-315-497-8004,3587529339268883,2025-07-07 +Resort Hotel,0,359,2017,January,2,3,1,1,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient-Party,86.93,0,0,Check-Out,Amy Morse,melvinlawrence@example.net,3979493558,3592060384992576,2025-07-24 +City Hotel,0,137,2017,February,5,2,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,153.8,0,1,Check-Out,David Morales,sandersjames@example.net,(250)366-7417,2500158061297047,2025-05-12 +Resort Hotel,0,58,2017,September,38,18,1,1,3,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,61.18,1,0,Check-Out,Charles Thornton Jr.,davidingram@example.net,888-582-6308,3530204353277370,2025-07-15 +Resort Hotel,0,135,2017,April,16,15,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,142.7,0,1,Check-Out,Trevor Shepherd,charles00@example.net,840.337.7398,4773954376024,2025-12-03 +Resort Hotel,0,63,2017,April,15,10,2,5,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,315.0,179.0,0,Transient,152.15,0,1,Check-Out,Kenneth Howell,thompsonmichelle@example.net,6553838020,6567687575792805,2024-11-14 +City Hotel,0,42,2017,July,28,14,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,90.42,0,1,Check-Out,David Andrews,tonyabriggs@example.net,+1-237-412-6259x50688,4080222140595885330,2025-02-05 +Resort Hotel,0,109,2017,February,7,15,1,3,2,0.0,0,Undefined,IRL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,38.0,179.0,0,Transient-Party,107.25,0,0,Check-Out,Destiny Nash,rdavis@example.org,320.534.9206x090,503880710358,2025-12-20 +City Hotel,0,0,2017,August,35,27,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,121.51,0,2,Check-Out,Megan Grimes,smithnicole@example.net,+1-585-287-2381x464,3500256066408078,2024-12-29 +City Hotel,0,399,2017,January,2,4,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,137.84,0,0,Check-Out,Melissa Thompson,gibsonmindy@example.org,7725215373,4822163035125404,2024-05-25 +City Hotel,0,251,2017,March,11,14,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,223.57,0,3,Check-Out,Michael Cook,englishchristopher@example.org,952-394-6069,675908073124,2024-10-06 +Resort Hotel,0,29,2017,August,35,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,47.63,0,1,Check-Out,Ronald Mckenzie,jennifer93@example.net,246-412-4103x47280,4002577606934,2024-07-16 +City Hotel,0,162,2017,November,45,8,2,2,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.97,0,1,Check-Out,Daniel Smith,mfranklin@example.com,5739712849,213142402267135,2026-01-10 +City Hotel,1,9,2017,January,5,31,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.81,0,2,Canceled,Mr. David Villanueva,aimeeturner@example.org,576-638-3336,341082014367235,2025-12-11 +City Hotel,0,40,2017,May,22,31,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,87.3,0,1,Check-Out,Amber Odom,jessica68@example.org,(491)780-6044,4017310116496,2025-05-27 +City Hotel,0,15,2017,July,31,29,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.92,0,0,Check-Out,Brian White,mcruz@example.net,001-695-264-0524x4989,4129376498089269,2025-10-17 +City Hotel,1,111,2017,November,44,2,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,35.32,0,0,Canceled,John King,smithmichelle@example.org,974-306-3387,4461084212462707,2024-09-19 +Resort Hotel,0,1,2017,December,52,24,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,132.42,1,1,Check-Out,Kimberly Lee,xgonzalez@example.net,9104413215,2297248826360649,2025-05-04 +City Hotel,1,44,2017,April,14,4,1,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,223.06,0,0,Canceled,Brooke Allen,timothy08@example.org,839-727-9507x0769,3547311630296734,2026-03-14 +City Hotel,1,257,2017,August,33,14,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.19,0,0,Canceled,Frederick Jones,bryce80@example.net,250-679-5961,2720682830781035,2025-08-11 +Resort Hotel,0,18,2017,June,25,24,2,5,2,0.0,0,FB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,282.0,179.0,0,Transient-Party,54.6,0,0,Check-Out,David Anderson,isimpson@example.org,934-210-6544x36677,4155220544697153,2026-03-21 +Resort Hotel,0,139,2017,August,31,3,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,113.69,1,1,Check-Out,Allen Erickson,kellifox@example.com,6617709383,213102886644902,2024-05-10 +City Hotel,1,165,2017,January,2,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,111.84,0,0,Canceled,Herbert Ferguson,robertsmary@example.com,850-435-0889,4282822723769368,2025-11-19 +City Hotel,1,378,2017,June,24,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,39,Transient,103.97,0,0,Canceled,Dr. Tyler Adams DVM,xbaker@example.com,(678)585-6467,180017106477991,2024-07-16 +City Hotel,0,31,2017,January,2,3,1,0,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,164.45,0,1,Check-Out,Christian Woodard,shane31@example.org,001-654-980-3804x1635,584821345710,2026-03-26 +City Hotel,0,15,2017,March,10,2,0,3,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Check-Out,Megan Shah,peckvictoria@example.com,954-629-2602x717,4989960627147087,2024-06-19 +Resort Hotel,0,253,2017,June,25,23,3,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,228.0,179.0,0,Contract,62.82,0,0,Check-Out,Benjamin Wheeler,lcollins@example.com,001-324-896-4034x76515,213122828323001,2025-06-18 +Resort Hotel,0,209,2017,March,10,5,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,237.0,179.0,0,Transient,239.31,0,1,Check-Out,Robert Foley,sean14@example.net,+1-606-438-0938x5029,2287112701988399,2026-03-22 +City Hotel,0,149,2017,February,8,19,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,40.0,179.0,0,Transient,168.31,0,0,Check-Out,David Owen,thompsonnathan@example.org,001-809-696-9753x70701,4647722880873,2025-09-24 +City Hotel,0,14,2017,April,16,15,0,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,132.4,0,2,Check-Out,John Black,sheltonmichael@example.net,(451)241-2445x6808,344417655093392,2025-06-04 +City Hotel,0,12,2017,May,20,14,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,172.0,179.0,0,Transient,111.57,0,3,Check-Out,Sarah Short,rbradley@example.com,001-247-234-0035x39321,2430884667729183,2025-10-22 +Resort Hotel,0,60,2017,May,20,14,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,48.36,0,1,Check-Out,Stacey Berger,alec58@example.net,+1-404-752-7362,4597853513860,2024-07-26 +City Hotel,0,32,2017,July,27,4,2,2,2,0.0,0,HB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,106.59,0,1,Check-Out,Patrick Daniel,afuentes@example.net,(659)924-9088,676170078148,2025-06-08 +Resort Hotel,1,91,2017,August,35,31,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient-Party,137.8,0,0,Canceled,Tyler Huynh,sara27@example.org,001-787-429-9148x4538,4363680772074,2025-10-17 +City Hotel,1,430,2017,May,22,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.89,0,0,Canceled,Lisa Baxter,jonathan28@example.org,(747)304-8190,4935645372360705,2026-02-28 +City Hotel,1,147,2017,January,2,7,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,100.85,0,0,No-Show,Michael Garrison,joshuali@example.org,669.648.7788x893,379129167267384,2025-09-10 +City Hotel,0,39,2017,July,27,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,83.82,0,1,Check-Out,Jon Martinez,antonioboyd@example.net,001-384-914-4424,4870863642999,2024-04-16 +City Hotel,0,0,2017,September,39,23,2,3,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,164.32,0,1,Check-Out,Jessica Hall,taylornicole@example.net,001-342-716-6197,3545276972648036,2025-05-24 +Resort Hotel,0,12,2017,December,51,22,1,1,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,3,No Deposit,245.0,179.0,0,Transient,183.36,1,0,Check-Out,Lynn Anderson,james71@example.net,610.346.2292,4292482338189483944,2025-06-25 +City Hotel,1,253,2017,August,35,31,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,19,Transient,111.25,0,0,Canceled,David Larsen,tonya10@example.org,+1-289-409-1638x210,6568845920594974,2025-12-26 +City Hotel,0,8,2017,July,29,20,1,2,3,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,73.67,1,0,Check-Out,Patrick Anderson,ashleywilson@example.net,985.373.6771x7415,6011197795379922,2024-06-17 +City Hotel,0,146,2017,April,18,29,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient,232.83,0,1,Check-Out,Megan Salas,emilylawrence@example.org,(279)966-9956x972,6011667297353518,2026-02-10 +City Hotel,1,11,2017,March,10,5,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient,0.0,0,1,Canceled,Stephanie Moran,billy77@example.net,3047380855,586994471405,2025-06-12 +City Hotel,0,0,2017,January,4,25,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,138.65,0,2,Check-Out,Carlos Sawyer,claire19@example.org,328.329.6530x0657,3550237091227385,2024-10-07 +Resort Hotel,0,3,2017,October,42,21,1,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,35.73,0,0,Check-Out,Jeffrey Jones,donaldknight@example.org,(688)932-2165x5875,2379161907682263,2025-02-21 +Resort Hotel,1,46,2017,August,32,5,0,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,75.6,0,0,Canceled,Christian Edwards,smithjennifer@example.net,487.708.8261,3512155725327289,2025-06-16 +City Hotel,1,84,2017,January,2,4,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,20,Transient,101.59,0,0,Canceled,Janice Stokes,zjohnson@example.org,310.259.5901x1806,4213681998303,2024-07-11 +City Hotel,1,245,2017,April,17,23,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,219.76,0,1,Canceled,Jennifer Griffin,cindy16@example.net,314-937-2317x29661,2291996103185313,2025-03-17 +City Hotel,1,10,2017,January,4,24,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,140.05,0,1,No-Show,Elizabeth Jennings,lauragriffith@example.net,279-488-0782,4543988187400124,2024-05-18 +City Hotel,0,27,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,39.0,179.0,0,Transient,115.75,1,1,Check-Out,Jenny Durham,jford@example.net,415.844.7506x309,4717699553314878,2025-03-10 +City Hotel,0,19,2017,March,10,8,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,B,K,0,No Deposit,8.0,179.0,0,Transient,131.19,0,0,Check-Out,Natasha Watkins,ynelson@example.com,(304)310-5191x757,38789596256580,2025-10-25 +City Hotel,1,263,2017,April,17,25,2,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,69.63,0,1,Canceled,Blake Mitchell,robinneal@example.com,8719642925,344667936427823,2025-07-24 +City Hotel,0,36,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.12,0,0,Check-Out,Morgan Atkinson,davidcannon@example.com,(384)557-0840x87081,4890064435837,2025-11-03 +City Hotel,1,84,2017,January,4,24,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,111.68,0,0,Canceled,Lindsay Washington,charleswillis@example.net,4906688988,4034055899743083069,2025-10-31 +City Hotel,1,333,2017,December,52,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,81.01,0,0,Canceled,Kathryn Garcia,timothyfloyd@example.net,(805)994-0581x31509,373151391625118,2025-08-01 +City Hotel,1,85,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,85.33,0,0,Canceled,Amanda Lloyd,sullivanwilliam@example.com,+1-486-280-7652x615,3562848402136663,2025-03-16 +City Hotel,1,75,2017,August,32,5,0,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.54,0,0,Canceled,Mary Cruz,iroberts@example.com,4547834582,4772009709385933,2024-10-09 +City Hotel,0,0,2017,January,4,25,1,1,2,0.0,0,SC,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,87.96,0,0,Check-Out,Joseph Russell,kevinstanley@example.com,001-997-372-9674x28427,2222293363748871,2025-09-30 +City Hotel,0,145,2017,January,3,18,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,89.63,0,0,Check-Out,Michelle Gross,ericadiaz@example.net,765-982-7308,2715200312094632,2024-08-14 +City Hotel,0,3,2017,April,15,8,0,2,1,0.0,0,BB,ESP,Direct,GDS,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,99.73,0,0,Check-Out,Robert Gomez,flee@example.org,555-928-2613x0839,4099146881694298,2024-12-02 +City Hotel,0,175,2017,January,5,28,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,76.52,0,0,Check-Out,Kyle Kaiser,michaelchandler@example.org,(732)646-2053,3512622727604056,2024-11-24 +Resort Hotel,0,2,2017,August,32,9,0,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,2,No Deposit,14.0,178.0,0,Transient,64.75,0,0,Check-Out,Mary Reyes,anna74@example.com,(371)880-2172x2821,180046139535566,2025-06-22 +City Hotel,0,27,2017,November,46,12,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.29,0,1,Check-Out,Olivia Herrera MD,sleon@example.com,265.865.4172x937,6011468297877881,2024-04-17 +City Hotel,1,25,2017,February,8,22,4,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.88,0,2,Canceled,Joseph Smith,davidmartin@example.net,3916577252,6011558180708142,2025-10-19 +City Hotel,0,47,2017,May,22,28,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,214.47,0,2,Check-Out,Michelle Moore,marksnathaniel@example.com,+1-460-759-9777x53399,213119326735264,2025-01-27 +City Hotel,0,48,2017,April,15,10,0,2,2,1.0,0,BB,BRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,204.87,0,1,Check-Out,Mark Spencer,harrisvincent@example.org,420.238.8664x27606,345259516279086,2024-10-13 +City Hotel,1,306,2017,December,52,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,60.87,0,0,Canceled,Terri Roberts,tiffanyhardy@example.net,001-635-225-1916x248,3559332737080164,2025-12-19 +Resort Hotel,0,0,2017,August,31,5,1,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,E,0,No Deposit,28.0,179.0,0,Transient,74.45,0,1,Check-Out,Corey Clark,ericksontina@example.org,373-801-0721x8860,3580105681489042,2025-10-11 +City Hotel,0,285,2017,May,21,21,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Contract,112.98,0,2,Check-Out,Albert Black,paul74@example.org,6038456062,3555803794579219,2024-04-24 +City Hotel,0,420,2017,June,22,1,2,5,2,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,92.02,0,0,Check-Out,Michelle Johnson,xanderson@example.net,+1-266-245-2572x5380,36890627993092,2024-10-05 +Resort Hotel,1,203,2017,January,2,9,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,238.0,179.0,0,Transient,48.72,0,1,Canceled,Amber Ross,changdaniel@example.com,+1-354-798-8810,30014504431136,2026-03-05 +Resort Hotel,0,0,2017,October,41,8,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,136.0,179.0,0,Transient,41.19,0,1,Check-Out,Stephen Wolf,fgarcia@example.net,+1-996-362-2431,3572793277103752,2026-01-19 +Resort Hotel,1,137,2017,May,22,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,106.75,0,0,Canceled,Virginia Watson,fernandezjonathan@example.org,+1-687-501-4280x47593,6011843486859843,2024-11-30 +City Hotel,0,3,2017,June,25,23,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,101.03,0,1,Check-Out,Hannah Campbell,sarah27@example.com,+1-233-710-4075x7597,6537778686332651,2024-11-09 +City Hotel,0,34,2017,November,48,25,1,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,98.61,0,0,Check-Out,Jennifer Snow,jonesjessica@example.org,(846)526-2871,2704278794922747,2024-10-15 +Resort Hotel,0,0,2017,November,48,26,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,39.0,179.0,0,Transient,106.44,0,0,Check-Out,John Elliott,amorris@example.com,428.719.0533,2223385895827931,2026-02-11 +City Hotel,1,17,2017,December,52,27,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,118.09,0,2,Canceled,Jamie Robertson,tanyacoleman@example.org,9156806740,4832119849211127,2024-10-15 +Resort Hotel,1,32,2017,May,21,21,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,Non Refund,240.0,179.0,0,Transient,112.01,0,0,Canceled,Jaime Oneill,austinbrown@example.com,285-823-4077x80450,4716923987269172,2026-01-15 +City Hotel,1,0,2017,October,40,3,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.81,0,0,Canceled,John Garcia,kimfranco@example.org,+1-389-348-9467x24705,4585049218979955,2025-05-16 +City Hotel,1,18,2017,July,27,3,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.33,0,0,Canceled,Hector Williams,gjackson@example.org,(916)246-4248,3500961148770557,2024-08-06 +Resort Hotel,0,57,2017,February,7,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,E,E,1,No Deposit,241.0,179.0,0,Transient,51.04,0,1,Check-Out,Rebecca Nicholson,fhart@example.org,408-817-8242x0603,3540838378301265,2026-03-04 +City Hotel,1,256,2017,March,12,17,1,6,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,8.0,179.0,0,Transient,99.95,0,0,Canceled,Eric Howe,lewisthomas@example.com,423.897.0649x151,4367624157214798,2025-09-29 +City Hotel,0,18,2017,November,47,25,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,88.03,0,1,Check-Out,Anthony Garrett,wdavis@example.net,753.592.4242,4034783550718349816,2025-06-30 +City Hotel,0,2,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,69.0,0,Transient-Party,66.09,0,0,Check-Out,Kevin Thomas,hellis@example.net,+1-797-275-8980x9392,3563935625057435,2024-08-05 +Resort Hotel,1,2,2017,October,43,25,1,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,11.0,83.0,0,Transient,47.24,0,1,No-Show,Brandy Moreno,blawrence@example.net,308.598.6030x580,4510488743671200,2025-04-21 +City Hotel,0,85,2017,June,23,8,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,64,Transient-Party,79.51,0,0,Check-Out,Jessica Chang,ywarren@example.org,373.870.7334,376389604390784,2024-08-17 +City Hotel,0,1,2017,January,2,13,2,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,57.55,1,0,Check-Out,Randy Warner,gjames@example.com,(988)557-4137,3588739594194281,2024-11-22 +City Hotel,0,2,2017,September,39,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,14.0,179.0,0,Transient,145.05,0,0,Check-Out,Mr. Michael Garcia,hamiltonamy@example.com,380-658-5438x314,4993685322799222478,2025-04-12 +City Hotel,1,299,2017,May,18,6,0,2,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,155.33,0,3,No-Show,Justin Rodriguez DDS,beverly00@example.com,629.241.0351x8555,38173164735624,2026-01-29 +City Hotel,1,191,2017,April,16,15,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,225.07,0,1,Canceled,Ashley Campbell,sarahmayo@example.org,(328)813-7294x681,4511483879148536,2025-10-16 +City Hotel,0,41,2017,January,2,3,0,1,1,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,101.69,0,2,Check-Out,Mr. Samuel Thomas,shannoncontreras@example.org,435-448-1199x28828,4818929186802300109,2024-03-27 +Resort Hotel,0,18,2017,January,3,17,2,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,281.0,179.0,0,Contract,46.76,0,1,Check-Out,Brenda Brooks,caindavid@example.net,728-626-3236,4581330813663,2025-04-13 +Resort Hotel,1,16,2017,September,37,15,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,241.0,179.0,0,Transient,42.13,0,1,Canceled,Gabrielle Johnson,bpreston@example.net,(640)640-9370x847,3597123360947389,2026-03-19 +Resort Hotel,1,4,2017,February,8,22,2,2,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,2,Canceled,Glenn Lawrence,dwebster@example.org,3825025135,377634798518545,2025-02-10 +Resort Hotel,0,32,2017,July,28,10,2,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,49.31,0,0,Check-Out,Wyatt Cortez,popethomas@example.com,5669763108,2720421608311869,2024-10-11 +Resort Hotel,0,1,2017,January,4,21,3,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,91.06,1,1,Check-Out,Laurie Pierce,angelagreen@example.com,268.741.9937x04393,30400202349441,2024-10-28 +City Hotel,1,198,2017,December,52,23,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,74.31,0,2,Canceled,Ryan Morales,vstone@example.org,(351)256-3450,213159603827145,2025-10-11 +City Hotel,0,12,2017,April,14,6,2,1,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,244.88,0,1,Check-Out,Joseph Mendoza,rporter@example.org,+1-952-801-4284,4256193437782879,2025-09-03 +Resort Hotel,0,13,2017,August,32,8,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient-Party,63.51,0,1,Check-Out,Brent Lewis,kevin51@example.org,9064774834,4619730013326,2024-06-01 +City Hotel,0,22,2017,April,14,4,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient-Party,141.66,0,1,Check-Out,Ricky Campbell,russelldavid@example.com,982.720.7590x727,4172426807835328,2024-10-26 +City Hotel,1,15,2017,April,14,2,2,2,2,1.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,142.47,0,0,Canceled,Patricia Brown,ewalter@example.org,961-770-1028x16617,2705679813935561,2025-05-17 +City Hotel,1,186,2017,April,15,12,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient,248.5,0,3,Canceled,Bobby Walker,nelsonchristine@example.net,487-351-7243x180,4283356727595841,2024-04-20 +Resort Hotel,0,96,2017,July,27,4,0,2,2,0.0,0,BB,RUS,Groups,TA/TO,0,0,0,A,A,0,No Deposit,142.0,179.0,0,Transient-Party,74.75,0,0,Check-Out,Eric Giles,swebb@example.net,518.647.7840x30634,6508878996794296,2025-04-21 +City Hotel,0,93,2017,January,2,1,2,4,2,2.0,0,BB,,Online TA,Direct,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,252.0,1,1,Check-Out,Mrs. Valerie Ramirez,alicia92@example.com,876.843.8726x1359,4950682812501796,2025-01-27 +Resort Hotel,1,192,2017,August,32,5,2,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,46.35,0,2,Canceled,Keith Nixon,kaufmandustin@example.com,216.549.4000,6572669220688052,2024-10-26 +Resort Hotel,0,12,2017,April,14,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,62.48,0,1,Check-Out,William Gutierrez,jasonriggs@example.net,555-923-7403x28333,4756006649999435,2024-09-10 +Resort Hotel,0,58,2017,November,45,7,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,90.4,1,0,Check-Out,Jose Crawford,garzapaige@example.net,+1-907-683-4020x009,3513784263328125,2025-04-24 +City Hotel,1,292,2017,April,15,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient-Party,72.62,0,0,Canceled,Brett Obrien,robertfisher@example.com,972-443-7468x19834,4856530812516931,2024-08-27 +City Hotel,0,9,2017,June,24,14,1,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,67,Transient-Party,62.93,0,0,Check-Out,Charles Moore,davidjones@example.net,8092316651,4607115086388720,2025-10-11 +City Hotel,1,105,2017,December,51,21,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.33,0,0,Canceled,Lynn Brown,jasminemyers@example.org,485.339.0332x3160,36276640211797,2026-01-08 +City Hotel,0,10,2017,January,2,3,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.83,0,3,Check-Out,David Anderson,cummingsallison@example.org,+1-938-899-9033x54959,213193979019037,2024-05-15 +City Hotel,0,86,2017,March,13,31,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,16.0,179.0,0,Transient,139.37,0,3,Check-Out,Donna Watson,yfreeman@example.net,309-870-1130,4298687610617216,2025-12-14 +Resort Hotel,1,258,2017,December,52,30,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,263.0,179.0,0,Transient-Party,59.33,0,0,Canceled,Jocelyn Charles,james98@example.net,640.932.7797,4541398318056289692,2025-07-17 +City Hotel,0,28,2017,June,23,8,2,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,194.0,0,Transient,114.39,0,0,Check-Out,Cathy Miller,tiffanypatterson@example.net,669-272-5522x013,3504882811313754,2025-03-02 +City Hotel,0,52,2017,May,21,27,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,146.9,0,3,Check-Out,Justin Williams,zperez@example.org,234.646.7278x35017,4735596295631452,2025-10-09 +Resort Hotel,0,149,2017,June,26,25,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,223.0,0,Transient-Party,62.55,0,0,Check-Out,Thomas Rosales,twebster@example.org,001-958-393-0095x65336,4651296967047372,2025-10-21 +City Hotel,1,148,2017,February,9,28,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,106.93,0,0,Canceled,Scott Khan,xguerrero@example.com,(726)759-2687x3105,060478300852,2024-11-08 +Resort Hotel,1,142,2017,March,9,3,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,112.58,0,3,Canceled,Benjamin Powell,flewis@example.com,919-388-0204x520,2244578104130775,2024-08-18 +City Hotel,0,1,2017,December,52,27,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,129.48,1,1,Check-Out,Joshua Wilson,loripeterson@example.org,(887)581-5539x589,5508440109228977,2024-07-22 +City Hotel,1,51,2017,June,24,14,2,2,2,1.0,0,BB,USA,Direct,Direct,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient,213.29,0,0,Canceled,Kent Freeman,rleonard@example.com,(486)627-9807,346111225759354,2024-12-03 +City Hotel,1,375,2017,January,4,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,211.05,0,0,Canceled,Patricia Tucker,justincuevas@example.com,694-978-4257,30300038321038,2025-12-03 +Resort Hotel,1,314,2017,May,19,10,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,167.0,179.0,0,Transient-Party,60.67,0,0,Canceled,Lauren James,gravesrachel@example.com,001-358-790-3254x885,6584936632009748,2025-12-16 +City Hotel,0,20,2017,December,51,20,0,2,2,0.0,0,BB,BEL,Direct,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,135.52,1,1,Check-Out,Bradley Taylor,katrinawashington@example.com,+1-301-916-2187,4611176149151426,2024-06-24 +City Hotel,1,150,2017,February,8,19,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,63.0,179.0,0,Transient,170.5,0,2,Canceled,Frank Arnold,timothy48@example.com,+1-251-328-5727x94977,4618650148405986,2026-01-21 +City Hotel,1,118,2017,May,19,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,101.16,0,0,Canceled,Shannon Turner,davidsonpatrick@example.org,(681)699-3809x6952,4386815483795537,2025-01-25 +Resort Hotel,0,18,2017,February,7,14,1,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,146.22,1,1,Check-Out,Charles Lloyd,christopherjohnson@example.com,(314)952-0266,4904836296169359513,2025-04-05 +City Hotel,0,96,2017,February,7,15,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,105.09,0,2,Check-Out,Justin King,cbuck@example.net,+1-465-528-2923,4397594940301844,2025-09-03 +City Hotel,0,101,2017,May,21,24,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.44,0,2,Check-Out,Jenna Ramsey,chloevalencia@example.org,001-313-650-3049,2363517012805297,2025-11-04 +City Hotel,0,15,2017,May,20,17,1,3,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,E,0,No Deposit,1.0,179.0,0,Transient-Party,64.38,0,0,Check-Out,Joel Murray,matthew35@example.com,844-784-2353x81018,4704140379739423,2025-01-11 +Resort Hotel,0,141,2017,February,8,18,3,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,245.0,179.0,0,Transient,108.52,0,1,Check-Out,Andrew Hahn,burkebrett@example.net,+1-497-542-9239x933,180029306287666,2025-08-20 +Resort Hotel,0,54,2017,September,36,7,1,2,1,0.0,0,BB,DEU,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,49.14,1,1,Check-Out,Shelby Gentry,laura06@example.net,(503)524-8363x2670,3533838534089530,2025-11-09 +City Hotel,0,21,2017,June,26,28,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.42,0,0,Check-Out,Christian Shelton,brownroy@example.com,9877809174,340034586062893,2026-03-23 +Resort Hotel,0,43,2017,September,39,23,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,3,No Deposit,32.0,179.0,0,Transient-Party,34.08,0,1,Check-Out,Robin Mora,glenda36@example.org,869.397.5454,4006367938258,2024-12-27 +City Hotel,0,111,2017,November,47,25,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,111.34,0,0,Check-Out,Lindsey Wright,russellpetty@example.com,935-618-7028x0416,376425074418091,2024-09-19 +City Hotel,0,29,2017,August,34,20,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,84.69,0,2,Check-Out,Abigail Miller,andrew43@example.org,+1-756-607-2811x0229,4269808181535523640,2024-09-18 +Resort Hotel,0,0,2017,December,49,7,1,5,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,223.0,0,Transient,49.0,0,0,Check-Out,Timothy French,jennifersmith@example.org,(890)465-0904x578,3589299889674785,2024-05-07 +Resort Hotel,0,32,2017,October,44,28,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,166.0,179.0,0,Transient,41.75,0,3,Check-Out,Laura Garner,ycastro@example.net,001-418-732-3470x01644,30356064577802,2026-01-31 +Resort Hotel,1,147,2017,August,35,30,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,99.6,0,1,Canceled,Robin Brock,justinbrown@example.net,+1-935-444-8231x474,3533123892329400,2024-10-22 +Resort Hotel,1,48,2017,June,25,22,0,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,298.0,179.0,0,Transient-Party,61.34,0,1,Canceled,Morgan Boone,stephaniecervantes@example.net,901.346.6505,30139198968885,2024-11-19 +City Hotel,1,408,2017,December,51,18,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,102.94,0,0,Canceled,Matthew Greene,jennifer87@example.net,001-335-410-9618x97014,30238337389647,2024-08-17 +Resort Hotel,0,262,2017,February,6,8,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,103.97,0,1,Check-Out,Molly Ortiz,salinasjason@example.org,001-780-262-6709,30466436115239,2026-03-15 +City Hotel,1,417,2017,May,18,4,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,80.75,0,0,Canceled,Paula Roberts,elittle@example.org,001-768-983-5695x47292,4292285176277776,2025-05-22 +City Hotel,0,0,2017,July,27,6,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,3.23,0,0,Check-Out,Connie Miller,nicholas00@example.com,001-991-311-4463x3098,676363208593,2025-05-21 +City Hotel,1,0,2017,September,37,9,0,1,3,0.0,0,BB,,Direct,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,48.73,0,1,Canceled,Perry Black,gdavid@example.com,836.256.9958x862,4946880585930,2025-05-19 +Resort Hotel,0,52,2017,April,14,8,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,345.0,179.0,0,Transient,226.62,1,2,Check-Out,Scott Bond,usimpson@example.net,(470)990-8632,6011218090786916,2024-12-04 +City Hotel,1,417,2017,October,42,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.32,0,0,Canceled,Emily Rush,justinjohnson@example.net,518.904.1934x6606,4296509151972025891,2025-06-22 +Resort Hotel,0,16,2017,October,40,1,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,Brady Padilla,gmiles@example.com,+1-690-349-6142x00409,30506770866663,2024-06-12 +Resort Hotel,0,1,2017,May,22,31,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,48.37,0,1,Check-Out,Mark Wallace,vanessa07@example.com,993-580-9730x4518,580518408142,2024-12-22 +City Hotel,0,60,2017,June,26,27,1,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.81,0,2,Check-Out,April Collins,qbonilla@example.com,463.615.9709x4822,4557108551006240,2025-05-29 +Resort Hotel,0,2,2017,November,44,3,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,230.0,0,Transient,51.23,1,1,Check-Out,Isaac Smith,xgarrett@example.net,5149640248,3534075649834216,2026-02-12 +City Hotel,0,5,2017,January,4,23,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,3.65,0,0,Check-Out,Rebecca Roman,codypeters@example.org,7787997203,4294697219916467,2025-12-07 +Resort Hotel,0,0,2017,August,32,10,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,52.36,0,0,Check-Out,Jody Phillips,rcollins@example.net,7465807502,341593429893300,2026-01-31 +City Hotel,0,4,2017,August,31,4,1,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,2.04,1,1,Check-Out,Judy Lewis,mathewskatie@example.com,2296412553,374468782647322,2024-04-13 +Resort Hotel,1,19,2017,March,14,30,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,241.0,179.0,0,Transient,141.0,0,2,Check-Out,Brian Pacheco,kelly51@example.net,406.291.9069,2702914080433542,2025-08-24 +City Hotel,1,158,2017,February,6,3,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.61,0,0,Canceled,Thomas Nelson,josephmegan@example.org,589-808-8796x8834,4757521578225858,2025-01-30 +City Hotel,1,304,2017,February,9,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,84.49,0,0,Canceled,Travis Hernandez,davidsonjeanette@example.org,6595139732,6011921475777992,2025-06-01 +City Hotel,0,2,2017,April,15,9,1,0,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,B,G,0,No Deposit,15.0,179.0,0,Transient,211.79,1,3,Check-Out,William Greene,vmaldonado@example.net,905.729.5438x4220,4445498091407607192,2025-02-25 +City Hotel,0,3,2017,September,37,14,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,217.19,0,1,Check-Out,Jordan Adams,mvasquez@example.net,001-782-392-4119x70653,2263071370769092,2025-06-24 +City Hotel,0,29,2017,April,18,30,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,218.74,0,0,Check-Out,Scott Pineda,roberttaylor@example.org,(339)417-4552,4262857340536869,2025-05-15 +Resort Hotel,1,2,2017,September,36,6,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,145.6,0,1,Canceled,Luke Carpenter,rachel17@example.net,254-510-4224x70494,3566242459031017,2024-12-28 +City Hotel,1,104,2017,August,34,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,274.0,179.0,0,Transient-Party,84.4,0,0,No-Show,Kelly Smith,sweeneyalexandra@example.net,938-930-8238x57975,4329645656652,2025-06-04 +Resort Hotel,0,20,2017,January,4,22,1,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,108.22,0,0,Check-Out,Danielle Rodriguez,medinajanet@example.com,659.659.9230x695,2296807396504620,2026-02-17 +City Hotel,0,106,2017,April,18,30,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,130.47,0,2,No-Show,Paul Duarte,suzanne86@example.org,269-547-3016x23374,180057065604763,2025-09-21 +Resort Hotel,0,9,2017,April,14,4,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,173.87,0,2,Check-Out,Cody Mccoy,richard21@example.net,+1-464-505-6159x61384,3593797568868226,2025-09-27 +City Hotel,0,1,2017,August,35,30,0,2,2,0.0,0,BB,,Complementary,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,0.0,0,0,Check-Out,Andrea Bass,abbottjeffrey@example.net,484.999.6038x7509,343494546324154,2025-10-25 +City Hotel,0,39,2017,August,34,25,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,81.0,179.0,0,Transient,84.89,0,0,Check-Out,Christopher Blake,wmedina@example.com,(732)696-2528,4394829270563826,2026-02-28 +City Hotel,1,0,2017,April,14,1,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,246.49,0,0,Canceled,David Jones,fhill@example.org,330-377-9437,180059194602072,2024-06-12 +City Hotel,0,59,2017,November,45,8,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,92.73,0,1,Check-Out,Amber Burns,jenniferkennedy@example.com,649.449.3351,503873935756,2025-10-31 +City Hotel,1,147,2017,January,5,31,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,180.56,0,0,Canceled,Dana Jennings,gregoryjoseph@example.com,001-727-685-0064x47828,4741163435692092,2026-02-06 +City Hotel,0,17,2017,November,48,29,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,73.29,0,1,Check-Out,Alexander Ferguson,ryanannette@example.net,001-265-248-2369x29084,630472196009,2025-06-29 +City Hotel,1,35,2017,August,32,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.31,0,0,Canceled,Gary Russell,perezcarrie@example.com,(439)455-6984,3547389632722311,2024-04-02 +City Hotel,0,46,2017,December,2,30,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,45.0,0,Transient,105.01,0,0,Check-Out,Frank Foster,fernandezwilliam@example.com,001-789-559-8378x4729,374767068215294,2026-01-13 +City Hotel,0,41,2017,November,45,7,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,93.0,0,2,Check-Out,Dylan Brown,jennifermeyer@example.net,+1-274-809-5764x43742,213191234493427,2025-03-28 +City Hotel,0,195,2017,November,46,15,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,141.31,0,1,Check-Out,Trevor Ross,logangraves@example.net,4128825786,4158199318058,2025-05-21 +Resort Hotel,1,119,2017,August,35,30,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,58.41,0,0,Canceled,Sherri Gray,lgarcia@example.com,(718)216-7898,3555160200089626,2024-06-03 +Resort Hotel,0,3,2017,September,37,9,0,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,Non Refund,351.0,179.0,0,Transient,50.75,0,0,Check-Out,Lauren Stone,willissandra@example.net,203-913-2822x200,4160829375706,2024-05-01 +City Hotel,1,444,2017,May,19,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,61.43,0,0,Canceled,David Jones,acostasarah@example.org,+1-863-982-5448x65944,4836317893337097,2025-03-28 +Resort Hotel,0,32,2017,June,23,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient,87.37,0,2,Check-Out,Matthew Sullivan,matthewrios@example.com,(597)701-5024x717,4476755834181485,2025-02-02 +City Hotel,0,14,2017,August,33,18,2,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,8.0,179.0,0,Transient,139.08,0,3,Check-Out,William Morse,stephanielewis@example.org,757.736.3459x360,6011452140719797,2026-03-07 +City Hotel,0,3,2017,June,23,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,61.0,0,Transient,49.65,0,0,Check-Out,John Molina,david66@example.com,246-480-0339,6011222750304499,2025-04-29 +Resort Hotel,0,17,2017,April,17,24,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,14.0,179.0,0,Transient,252.0,1,0,Check-Out,Travis Hubbard,stephaniewilliams@example.net,783.640.8855,4751733677169384,2024-12-21 +Resort Hotel,1,156,2017,March,10,2,3,5,2,1.0,0,HB,CN,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Check-Out,John Andrews,philip09@example.org,001-349-606-0442,2294049263859165,2024-12-13 +City Hotel,0,152,2017,April,14,2,1,2,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,226.12,0,1,Check-Out,Craig Harris,zacharyrivera@example.com,001-991-735-6661x346,30139186374211,2025-04-22 +Resort Hotel,0,10,2017,August,34,25,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,188.0,179.0,0,Transient,82.93,0,0,Check-Out,Amanda Rose MD,joneschris@example.org,(335)810-4171x20141,675997596340,2024-09-24 +Resort Hotel,0,40,2017,August,31,4,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,91.81,0,0,Check-Out,Jessica Berry,anthonyhoward@example.org,001-536-653-0929x549,377060186593579,2024-07-15 +City Hotel,0,3,2017,October,42,17,1,1,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,202.84,1,0,Check-Out,Sandra Haney,vrich@example.com,5414385245,4561891798687344,2025-12-17 +City Hotel,0,1,2017,June,23,5,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.72,0,2,Check-Out,Alexander Weeks,jennifer77@example.net,001-784-635-3882,676394116971,2025-06-05 +City Hotel,1,59,2017,June,23,7,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,122.24,0,0,Canceled,Edward Duffy,brewercalvin@example.org,001-863-910-0305x707,4635679456469275,2025-05-12 +Resort Hotel,0,23,2017,March,10,5,2,1,1,0.0,0,FB,PRT,Offline TA/TO,Undefined,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,0.0,0,1,Check-Out,Felicia Vargas,samantha28@example.net,785-868-4996x802,6011654348696186,2024-05-28 +Resort Hotel,0,48,2017,August,31,3,1,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,276.0,179.0,0,Transient-Party,62.57,0,0,Check-Out,Darren Hall,usullivan@example.com,(838)995-0521,30248262468407,2025-07-15 +City Hotel,0,3,2017,March,12,17,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,239.34,0,2,Check-Out,Elizabeth Cunningham,drakemichelle@example.org,+1-227-371-2802x415,4528270657207444445,2025-05-28 +City Hotel,0,54,2017,June,24,11,0,2,2,1.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,134.73,0,0,Check-Out,Michael Peterson,sarah52@example.com,001-611-457-0361,6011710812390167,2024-07-04 +Resort Hotel,1,23,2017,January,3,17,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient-Party,56.41,0,1,Check-Out,Crystal Duke,rogersnatalie@example.net,956-984-4153,4903821078061,2025-12-07 +Resort Hotel,0,47,2017,August,32,6,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,107.99,0,2,Check-Out,Michael Cardenas,marie64@example.org,987-835-5962x8097,3541193052441543,2024-08-29 +City Hotel,1,16,2017,April,14,1,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,129.39,0,0,No-Show,Heather Meadows,toddbriggs@example.net,(572)566-7714x53167,3557425034395905,2026-03-02 +Resort Hotel,0,0,2017,June,26,27,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,2,No Deposit,15.0,179.0,0,Transient,162.3,0,0,Check-Out,Nicole Collins,garciagary@example.org,7862101209,4816712459069,2024-08-05 +City Hotel,0,9,2017,June,24,15,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,80.12,0,0,Check-Out,Laurie White,jose86@example.org,+1-748-868-8586x75390,6577775595521193,2025-10-03 +City Hotel,0,9,2017,August,31,4,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,9.0,179.0,0,Transient,76.68,0,3,Check-Out,Veronica Lewis,chenderson@example.org,355.902.1320x682,4810677315770,2024-09-24 +City Hotel,1,252,2017,April,15,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,102.92,0,0,No-Show,Brian Singh,michael85@example.net,236.915.0306,3569477652001667,2026-01-31 +City Hotel,0,394,2017,January,5,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,29.0,179.0,0,Transient-Party,110.36,0,1,Check-Out,Ronald Young,zmurphy@example.org,622.404.4250x503,4508810603313340290,2024-12-16 +Resort Hotel,1,46,2017,April,16,17,1,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,Cindy Bradley MD,zreed@example.com,705.295.2445,4376943183365839285,2024-04-24 +City Hotel,1,47,2017,November,48,26,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.98,0,0,Canceled,Thomas Nelson,morrowmichael@example.org,380-753-4911x91602,374456409500404,2025-01-05 +City Hotel,1,116,2017,November,48,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,16,Transient,77.98,0,0,Canceled,Nathan Hickman Jr.,justin32@example.net,5752070086,581295261050,2025-10-12 +City Hotel,0,33,2017,July,27,6,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.64,0,0,Check-Out,Kristin Bailey,pagerachel@example.org,(605)829-0944,30587802638155,2025-12-25 +Resort Hotel,0,22,2017,July,29,16,0,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,301.0,179.0,0,Transient,44.8,0,1,Check-Out,Shannon Booker,simmonsjennifer@example.net,+1-375-525-5400x238,4843845291338029,2024-11-17 +Resort Hotel,1,149,2017,February,9,29,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,196.6,0,2,Canceled,Marc Glenn,rthompson@example.org,(528)850-4907x7650,6011319294924947,2024-08-12 +City Hotel,1,313,2017,October,40,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,85.12,0,0,Canceled,Jasmine Chavez,jessica61@example.org,976.705.6836,30126825947309,2024-11-12 +City Hotel,0,5,2017,December,51,17,1,1,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,8.0,179.0,0,Transient,147.48,0,1,Check-Out,Michael Ritter,ydavis@example.org,467.862.7902x7977,503881200672,2024-11-30 +Resort Hotel,0,3,2017,June,26,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,66.0,0,Transient,49.18,0,0,Check-Out,Denise Gonzalez,orradrian@example.com,222.578.2465x832,676245501397,2025-04-22 +City Hotel,0,11,2017,March,13,27,1,2,2,0.0,0,BB,ITA,Online TA,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,162.39,0,2,Check-Out,Phillip Lowery,courtney92@example.org,(634)750-3855,4932072596774530877,2024-07-11 +City Hotel,0,13,2017,June,23,5,0,1,1,0.0,0,SC,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,192.0,331.0,0,Transient,92.12,0,0,Check-Out,Timothy Jordan,wandaharvey@example.net,(362)962-1418x76283,4470614332807099,2026-02-09 +City Hotel,0,13,2017,June,23,6,0,1,2,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.44,0,1,Check-Out,Justin Garcia,sjohnson@example.net,915.785.8468x573,4502757983086,2025-12-29 +City Hotel,1,266,2017,March,13,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,103.03,0,0,Canceled,Samantha Ford,rowens@example.com,217.682.4022x614,4896747896775356336,2025-12-23 +Resort Hotel,0,134,2017,January,2,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,241.0,179.0,0,Transient,44.73,0,1,Check-Out,Stanley Martinez,xfrost@example.com,484-560-9485,4378181245308269131,2025-02-04 +Resort Hotel,0,148,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,225.0,0,Transient-Party,39.78,0,0,Check-Out,Alexander Terry,paul39@example.net,(461)614-5232x516,3596528806280396,2025-08-21 +City Hotel,0,84,2017,August,31,2,2,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,66.61,1,0,Check-Out,Lisa Michael,tyler46@example.net,(487)815-8577,4738874660259937,2024-07-01 +City Hotel,0,85,2017,August,35,30,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,93.32,0,1,Check-Out,Dennis Turner,doylemary@example.com,609-909-2830x73718,180096147095970,2024-04-03 +Resort Hotel,0,14,2017,October,43,26,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,224.0,0,Transient,44.76,0,0,Check-Out,Kevin Benson,christine09@example.com,3727253075,3548683423533864,2024-06-10 +City Hotel,0,227,2017,March,12,22,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,136.2,1,0,Check-Out,Brian Phillips,guzmanandrea@example.org,+1-248-557-0532,3549156201840503,2025-05-07 +Resort Hotel,1,366,2017,June,26,28,1,3,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,2,Refundable,29.0,222.0,0,Transient-Party,62.97,0,0,Check-Out,Maria Ward,candace05@example.com,001-643-457-8009x0415,4718483116268,2024-05-09 +City Hotel,1,355,2017,February,7,13,0,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,123.07,0,0,Canceled,Shane Greene,farrelllori@example.com,555-798-1380x9673,676183845749,2025-04-04 +City Hotel,0,47,2017,December,50,9,2,5,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,105.1,0,2,Check-Out,Matthew Alvarez,iduran@example.net,+1-477-480-1385,3501639043550196,2024-08-13 +Resort Hotel,0,174,2017,December,49,5,1,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient-Party,112.14,0,1,Check-Out,Annette Weaver,jessica03@example.org,2985819579,584941850276,2025-03-07 +City Hotel,0,258,2017,April,14,3,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,100.13,0,1,Check-Out,Troy Aguilar,melissa08@example.com,806.409.6455x899,6569980543492881,2024-06-30 +City Hotel,1,5,2017,September,36,8,0,3,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,71.43,0,0,Canceled,Frank Munoz,allenaaron@example.org,+1-428-937-3979x666,6508599666122796,2024-06-11 +Resort Hotel,1,9,2017,October,43,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,46.1,0,1,No-Show,Amy Johnson,robert76@example.net,539-615-8356,4164663247102634,2024-07-28 +City Hotel,1,12,2017,October,40,5,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.45,0,2,Canceled,Jean Brown,jspencer@example.com,001-709-453-7455x72841,2560554086706458,2024-07-02 +City Hotel,1,397,2017,January,3,18,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,72.61,0,0,Canceled,Bobby Mullen,colemankelly@example.org,9836759982,630431430028,2024-08-31 +Resort Hotel,1,20,2017,February,8,17,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,213.58,0,3,Canceled,Mary Brady,terrellcindy@example.org,(947)355-5300x82529,2240532857017923,2026-02-16 +City Hotel,0,0,2017,April,16,20,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,13.0,179.0,0,Transient,206.79,0,1,Check-Out,Gabriel Jones,harrisoneric@example.net,525.295.6844x31388,2720057596970744,2024-05-07 +City Hotel,0,9,2017,March,9,1,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,144.24,0,1,Check-Out,Kevin Lee,lsimpson@example.com,858.297.8114x180,347298536876149,2025-07-05 +City Hotel,0,12,2017,March,12,23,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,125.44,1,2,Check-Out,David Wise,michael57@example.org,(952)465-0550x02445,676280915486,2024-11-17 +Resort Hotel,0,4,2017,February,5,1,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,314.0,179.0,0,Transient,67.26,0,0,Check-Out,Kayla Taylor,jonathanmcneil@example.net,378-835-6825x5164,4143999601398703480,2025-07-12 +City Hotel,0,358,2017,March,10,7,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,113.93,0,1,Check-Out,David Williams,gonzalesnicole@example.net,477.826.0745x956,180000562817959,2025-12-18 +Resort Hotel,0,0,2017,October,40,1,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,F,3,No Deposit,16.0,179.0,0,Transient,48.69,1,0,Check-Out,Kayla Rios,browndenise@example.com,951.960.9107,5510883741631015,2025-10-10 +City Hotel,1,43,2017,August,33,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,65.48,0,0,Canceled,Scott Wade,coconnell@example.com,(466)844-7395,180012582193147,2024-11-05 +City Hotel,1,2,2017,February,6,6,1,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,219.11,0,0,Canceled,Kenneth Williams,denisemaynard@example.net,(577)779-7954,4744983962969,2025-06-25 +City Hotel,0,34,2017,May,19,8,1,0,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,147.67,0,0,Check-Out,Tiffany Gentry,mary43@example.net,9696460049,4515856437903,2025-12-24 +City Hotel,1,111,2017,January,2,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,16.0,228.0,0,Transient,83.78,0,0,Canceled,Sarah Woods,xmitchell@example.org,+1-258-672-4072x0534,4572888688322427,2024-09-02 +City Hotel,0,52,2017,April,14,5,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,106.85,0,1,Check-Out,Timothy Jones,jclark@example.com,558.526.0746,213106881750259,2024-07-29 +City Hotel,1,42,2017,November,48,28,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,133.69,0,0,Check-Out,Dennis Martinez,annevillarreal@example.net,970-665-2808x4655,4617478411244531,2025-08-18 +Resort Hotel,0,92,2017,December,51,18,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,238.0,179.0,0,Transient,64.49,0,1,Check-Out,Terry Owens,williamgriffith@example.com,981.878.4219,4250869295370768,2025-05-28 +City Hotel,1,159,2017,December,51,21,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,175.12,0,3,Canceled,Lori Gutierrez,johnathancraig@example.org,+1-633-746-4468x1288,3530284819345763,2025-09-10 +City Hotel,1,162,2017,February,9,24,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,10.0,179.0,0,Transient,242.7,0,0,Canceled,Heidi Stewart,derrick64@example.org,(673)845-3404x7630,4935111187628676458,2024-05-29 +Resort Hotel,0,14,2017,April,15,9,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,16.0,179.0,0,Transient,203.73,1,0,Check-Out,Larry Martinez,dgomez@example.com,(679)604-6980,501881190646,2025-09-13 +City Hotel,0,41,2017,June,24,17,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,174.63,0,1,Check-Out,William Payne,jason30@example.com,606-781-2501x87902,4147711438262758,2024-09-30 +City Hotel,0,73,2017,February,8,23,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,133.11,0,1,Check-Out,Alisha Lewis,bruce69@example.com,001-788-342-2568x0585,375779588706057,2026-03-13 +City Hotel,1,179,2017,February,7,16,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,235.83,0,0,Canceled,Nicholas Sanders,cory82@example.com,343.939.3134,571326852027,2025-09-30 +City Hotel,0,44,2017,October,44,31,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,95.61,0,2,Check-Out,John Brown,stephenmorgan@example.org,784.715.9553x952,6011234589971638,2025-08-05 +City Hotel,0,11,2017,June,25,23,0,1,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,47.41,0,0,Check-Out,Vanessa Walker,benjaminperkins@example.net,6757426336,30157851731028,2024-03-29 +City Hotel,0,3,2017,November,47,22,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,11.0,61.0,0,Transient,43.37,1,2,Check-Out,Colton Green,patriciamoore@example.org,796-976-4990,6011224721780153,2025-08-16 +Resort Hotel,1,151,2017,December,50,11,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,105.95,0,1,Canceled,Mark Lawson,wellsdavid@example.com,001-408-481-7461x38789,36972919127892,2026-03-22 +City Hotel,0,15,2017,December,50,10,1,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,132.86,0,3,Check-Out,Collin Gentry,royhenry@example.org,755.299.6874,3551869580890270,2024-08-21 +Resort Hotel,0,49,2017,November,47,22,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,C,0,No Deposit,11.0,179.0,0,Transient-Party,113.07,0,0,Check-Out,Andrea Abbott,kleon@example.org,2949906000,6574643265756981,2026-03-05 +City Hotel,1,304,2017,February,5,3,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,101.61,0,0,Canceled,Adrian Sanchez,petersoncurtis@example.net,(486)453-2597x50398,36678605373639,2025-04-23 +Resort Hotel,0,0,2017,August,33,12,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient,53.06,0,0,Check-Out,Kenneth Jones,lorireese@example.org,693-327-7315x7292,4440234808193143,2024-10-05 +City Hotel,1,21,2017,March,10,2,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,139.3,1,1,Canceled,Crystal White,lsmith@example.com,491.225.5434,4445337300761906,2024-05-21 +City Hotel,0,143,2017,January,4,22,1,1,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,168.91,0,1,Check-Out,Richard Ferguson,harrisonmichelle@example.net,+1-600-791-8539,4137233840948124,2026-01-04 +City Hotel,0,13,2017,June,24,16,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,83.29,0,0,Check-Out,Madison Morales,michael31@example.org,5325745338,180072609590840,2025-07-31 +City Hotel,0,0,2017,April,14,4,2,1,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient,116.09,0,1,Check-Out,Brian James,crystalcarroll@example.com,001-393-842-9986,060406918890,2024-11-07 +City Hotel,1,162,2017,June,24,13,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,99.0,0,0,Canceled,Julia Green,mlee@example.com,206-200-9096,3593168109191348,2026-01-02 +Resort Hotel,1,82,2017,August,32,12,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient-Party,63.81,0,0,Canceled,Latoya Singleton,tayloralbert@example.com,(645)267-2667x836,6011896073511516,2025-10-09 +Resort Hotel,0,1,2017,November,45,11,1,5,3,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,56.92,0,1,Check-Out,Cody Lopez,nicholas74@example.com,+1-952-204-2452x80714,3509861193036568,2025-08-20 +City Hotel,0,12,2017,June,24,13,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,143.0,0,Transient,95.69,0,0,Check-Out,Pamela Scott,stevengriffith@example.org,869-640-7621x9185,3519150079383346,2024-11-19 +Resort Hotel,0,56,2017,March,12,17,2,4,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,129.27,0,0,Check-Out,Diana Ali,jking@example.org,(633)350-0784x79916,4285146464318152,2025-05-31 +City Hotel,0,137,2017,March,10,5,1,2,2,1.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,141.79,0,0,Check-Out,Nicole Patterson,robert85@example.org,001-245-213-8423x21799,6510992379347444,2024-07-25 +City Hotel,1,205,2017,February,9,25,2,7,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.26,0,1,Canceled,Kimberly Hunter,mjohnson@example.org,(712)455-5371,4795796491414,2025-08-02 +City Hotel,1,129,2017,April,15,12,1,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,101.44,0,1,Canceled,Stacey Jones,bryceharvey@example.org,568-787-2090,3543132721267408,2026-03-12 +Resort Hotel,0,139,2017,December,2,30,1,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,143.16,1,2,Check-Out,Courtney Williams,joseph38@example.org,+1-737-698-1899x96723,6011481767072818,2025-02-27 +City Hotel,1,91,2017,August,33,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,321.0,179.0,0,Transient,41.54,0,0,Canceled,Larry Stone,martin40@example.org,9298500777,213129631789146,2025-06-22 +City Hotel,0,0,2017,January,4,26,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,101.72,0,1,Check-Out,Jonathan Miller,thomasnelson@example.com,+1-329-302-5923x754,213193641462938,2025-01-19 +City Hotel,0,45,2017,December,51,21,4,3,2,0.0,0,BB,AUT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,137.96,0,1,Check-Out,Michael Wheeler,ryan22@example.com,001-904-313-4238,213195506048082,2024-05-12 +City Hotel,0,312,2017,April,17,23,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.6,0,0,Check-Out,Melissa Wise,ashley27@example.org,727-432-2912x6213,4317125632889532267,2025-05-01 +City Hotel,1,151,2017,March,12,22,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,231.28,0,1,Canceled,Melissa Jackson,theresasmith@example.com,9006599006,4348228288590946,2024-08-08 +City Hotel,0,26,2017,November,47,22,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.46,0,2,Check-Out,Mr. Leonard Jackson,christian14@example.net,486.724.2030x074,3536608981438903,2025-02-20 +City Hotel,1,409,2017,April,16,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,109.66,0,0,Canceled,Brent Hernandez,qmartin@example.net,+1-610-298-9829,6011526627065350,2024-12-11 +City Hotel,0,15,2017,May,18,5,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,177.29,0,2,Check-Out,Deborah Price,mromero@example.org,543-752-8324,38837378159207,2024-11-25 +City Hotel,0,7,2017,March,11,15,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,83.61,0,2,Check-Out,Christopher Gutierrez,marcus81@example.org,(876)834-7230,3586203503974178,2024-09-18 +City Hotel,1,100,2017,January,2,3,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,88.13,0,0,Canceled,Tracy Foster,bullockryan@example.org,001-685-287-8449x8161,501831356412,2025-06-01 +City Hotel,1,304,2017,May,18,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.11,0,0,Canceled,Charles Nguyen,heather09@example.net,926-392-9362,6545022477374188,2024-11-30 +City Hotel,1,90,2017,July,27,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,79.75,0,0,Canceled,Joseph Smith,jessicaweaver@example.com,001-370-877-6515,3520350359836941,2025-11-02 +City Hotel,1,284,2017,November,44,1,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,83.28,0,0,Canceled,Haley Harvey,jonesduane@example.com,(529)675-2599x357,376964529921705,2024-12-17 +City Hotel,0,92,2017,June,23,9,0,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,75,Transient-Party,86.83,0,0,Check-Out,Katherine Hammond,pateljoseph@example.com,961-718-1745x1928,3554247299910753,2025-07-11 +City Hotel,0,11,2017,January,2,7,0,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient-Party,81.8,0,0,Check-Out,Tracy Hogan,jonathon00@example.org,523.532.1894x422,3512981544555556,2025-03-12 +Resort Hotel,1,11,2017,January,4,25,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient,79.3,0,0,Canceled,Ronald Davila,jon31@example.net,944-283-2538x01541,3522514050877375,2024-08-11 +Resort Hotel,0,12,2017,August,34,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,235.0,179.0,0,Transient,103.05,1,1,Check-Out,Emily Reed,davidmarquez@example.com,001-881-726-2045x27429,4673782764211322578,2025-05-10 +City Hotel,1,39,2017,January,5,28,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.14,0,1,Canceled,Maria Thomas,brandy23@example.org,(809)946-0909x200,180042707285999,2025-10-09 +City Hotel,0,101,2017,March,13,25,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,13.0,179.0,0,Transient,230.98,0,1,Check-Out,Debra Miller,omartin@example.com,+1-261-987-5244,38641301422546,2026-02-09 +City Hotel,0,245,2017,June,24,10,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,123.87,0,1,Check-Out,Michael Huerta,morgan38@example.net,(925)454-3160,4476505930540187,2024-07-25 +City Hotel,0,91,2017,December,49,3,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,204.0,0,Transient,74.34,0,0,Check-Out,Joy Robinson,kevincoleman@example.com,001-972-211-4497,6517875621615556,2024-06-28 +City Hotel,0,0,2017,April,16,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,16.0,45.0,0,Transient,52.65,0,1,Check-Out,Brittany Kelly,isaac32@example.com,950-964-1820x30660,4207425003179159,2025-08-30 +Resort Hotel,0,145,2017,November,45,8,2,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,E,C,2,Refundable,14.0,222.0,0,Transient-Party,61.62,0,0,Check-Out,Julie Jordan,jessicaalvarez@example.com,001-293-829-3609x5593,3526108124118811,2024-05-05 +City Hotel,0,48,2017,February,9,25,0,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,113.17,0,3,Check-Out,Jacob Peters,ericjenkins@example.com,+1-309-741-4590x255,213171918162746,2025-10-05 +City Hotel,1,20,2017,March,13,31,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.61,0,0,Canceled,Caitlyn Clark,jamesamy@example.org,6154660396,2488706619260739,2025-07-19 +City Hotel,0,19,2017,January,3,16,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.34,0,3,Check-Out,Kimberly Ward,david54@example.net,(651)569-9615,371580818355275,2025-04-25 +Resort Hotel,0,157,2017,March,10,2,1,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,224.03,0,0,Check-Out,Amanda Gould,ctaylor@example.com,(716)944-7122,371696066240926,2026-01-13 +City Hotel,0,2,2017,April,15,10,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,148.15,0,1,Check-Out,Laura Martin,jeremy55@example.com,+1-989-956-3276x0604,3552529049384021,2026-03-10 +City Hotel,1,16,2017,March,9,1,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,2.79,0,1,No-Show,Mark Taylor,traci91@example.net,671-520-0709x2142,6539651159084240,2025-09-03 +Resort Hotel,1,12,2017,October,40,6,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Tyrone Roberson,robinsonjoseph@example.com,200-703-9784x35192,4484278371942899305,2026-02-19 +City Hotel,0,0,2017,January,4,23,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.0,0,0,Check-Out,Brian Barron,joshua99@example.com,(873)345-3662x49255,3522879643308778,2025-12-17 +City Hotel,1,10,2017,May,20,14,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,174.04,0,1,No-Show,Kelly Harris,jason91@example.org,+1-876-373-9948x596,4234985349753302893,2024-12-27 +City Hotel,0,13,2017,June,22,1,1,0,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,130.7,0,0,Check-Out,Jeremy Moran,walkerbrian@example.net,+1-833-693-4587x55485,4276488980014724302,2024-09-22 +City Hotel,0,12,2017,April,17,20,0,3,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,199.39,0,0,Check-Out,Dr. Donna Bailey,dustinhuff@example.org,+1-911-944-6466x2914,579707365428,2024-06-24 +City Hotel,1,188,2017,April,17,27,2,4,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.49,0,0,Canceled,John Smith,danielconley@example.com,690.888.3797x71811,3510248056949938,2025-04-08 +City Hotel,0,6,2017,September,37,11,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,45.0,0,Transient,57.43,0,0,Check-Out,Sarah Pierce,orozcorebecca@example.net,681-915-9059,6011575558143207,2025-03-10 +Resort Hotel,0,143,2017,January,5,30,0,9,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,221.0,0,Transient-Party,78.28,0,0,Check-Out,John Gallegos,wbarnes@example.org,345.316.8351x733,6011110821345262,2025-07-09 +Resort Hotel,0,3,2017,August,32,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,50.25,1,1,Check-Out,Michael Moore,rclark@example.org,402.503.4401x683,30199631229907,2025-03-24 +Resort Hotel,0,267,2017,December,50,9,2,1,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,103.85,0,0,Check-Out,Jessica Barron,hernandezdana@example.net,5217573618,372338411660693,2025-08-21 +Resort Hotel,0,1,2017,June,22,3,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,34.73,0,0,Check-Out,Erika Moore,jefferydavis@example.com,903.487.7857,060499127078,2026-03-22 +City Hotel,0,0,2017,January,3,14,2,0,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,107.38,0,2,Check-Out,Erin Rivera,sarah28@example.org,708.904.2483x9121,4815949883265,2024-06-08 +Resort Hotel,0,2,2017,November,46,14,1,0,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,43.71,1,0,Check-Out,Alicia Krueger,riddlerebecca@example.com,+1-401-947-1326,5248797720640228,2025-06-05 +City Hotel,1,144,2017,January,3,19,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,88.54,0,0,No-Show,Amanda Wilson,ajones@example.com,+1-330-710-9434x8995,4072335821344855,2024-04-21 +City Hotel,1,287,2017,May,22,27,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.06,0,0,Canceled,Joshua Scott,alexandra04@example.org,2832888822,2265389026814817,2025-05-23 +City Hotel,0,0,2017,June,22,3,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,126.42,0,1,Check-Out,Jeffrey Thompson,brownsarah@example.com,272-477-6623x116,213186396109928,2024-06-11 +City Hotel,0,2,2017,March,13,28,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,108.3,0,1,Check-Out,Alexandria Barnes,privera@example.org,466-656-2870,3525805262522461,2024-07-20 +Resort Hotel,0,36,2017,January,2,8,3,3,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,245.0,179.0,0,Transient,219.96,0,2,Check-Out,Brandy Allen MD,melinda93@example.com,+1-498-352-0674x097,4523038356053839360,2025-08-07 +Resort Hotel,0,50,2017,April,15,13,0,5,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,10.0,179.0,0,Transient,223.32,1,2,Check-Out,Kendra Smith,dustinliu@example.org,(647)553-5710,347268034469937,2025-08-17 +City Hotel,0,60,2017,November,45,8,1,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.53,0,1,Check-Out,Mckenzie Vega,paulayala@example.net,001-499-390-1987x755,3584563574762980,2026-02-08 +City Hotel,1,193,2017,April,14,4,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,224.47,0,0,Canceled,Margaret Gonzalez,joseph46@example.com,001-421-856-3399x430,630425479601,2025-07-21 +Resort Hotel,0,0,2017,August,32,9,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,1,No Deposit,272.0,179.0,0,Transient-Party,46.1,0,1,Check-Out,Robert Andrews,alexisturner@example.net,001-535-789-1414x0759,180000489936189,2024-05-01 +City Hotel,1,55,2017,November,48,29,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,108.34,0,2,Canceled,Dr. Brenda Frye,brett32@example.com,450-294-0590,4425304727113123,2025-06-03 +City Hotel,1,19,2017,April,18,29,2,4,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.14,0,0,Canceled,Larry Pitts,aburke@example.org,571-949-4939,4685192814372633871,2025-07-17 +City Hotel,0,13,2017,August,34,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,230.0,0,Transient-Party,90.6,0,0,Check-Out,Connie Henderson,meltonrachel@example.org,266-798-6286,30356657870572,2025-10-12 +City Hotel,0,0,2017,October,44,31,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,81.49,0,0,Check-Out,Jessica Cruz,xobrien@example.org,410-870-0171x52768,3517467958925019,2024-08-29 +City Hotel,1,373,2017,February,5,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,80.73,0,0,Canceled,Monica Torres,sandrawilliams@example.net,290.781.7290x7100,36951481744508,2025-08-04 +City Hotel,0,105,2017,April,14,3,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,62,Transient,121.74,0,0,Check-Out,Scott King,cbutler@example.org,+1-779-920-3924x8155,3529339021496714,2024-06-30 +City Hotel,0,0,2017,January,2,7,1,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,D,0,No Deposit,13.0,179.0,0,Transient,50.78,0,1,Check-Out,David Hahn,kristina70@example.org,629.222.1731x13512,4058020011967453,2024-12-27 +Resort Hotel,0,13,2017,June,26,30,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,223.0,0,Transient,46.22,1,0,Check-Out,Jeffrey Baker,kendrasmith@example.net,(452)674-8158,213132440855181,2024-05-23 +Resort Hotel,0,1,2017,June,23,8,1,2,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,E,0,No Deposit,15.0,45.0,0,Transient,0.0,0,0,Check-Out,Andre Payne,brandon58@example.net,(219)218-9914,502071005677,2026-02-27 +Resort Hotel,1,48,2017,October,43,23,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,173.54,0,1,Canceled,Nicholas Tran,davidmendoza@example.net,+1-919-264-6293x8823,3508498893000320,2025-11-23 +City Hotel,0,2,2017,October,41,10,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,42,Transient,45.82,0,1,Check-Out,Nicholas Davis,william99@example.org,+1-428-519-3892x2578,503889666130,2025-08-19 +Resort Hotel,1,28,2017,August,31,4,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.21,0,1,Canceled,Charles Dougherty,simpsonnatalie@example.net,001-431-364-6106x0466,180010844306929,2024-06-24 +Resort Hotel,0,9,2017,August,34,21,1,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,239.0,179.0,0,Transient,81.24,1,2,Check-Out,Carolyn Smith,qwagner@example.com,9097877347,4855466049909906833,2025-08-26 +Resort Hotel,1,227,2017,June,24,10,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,53.82,0,0,Canceled,Brendan Howard,joshuamurillo@example.org,(347)998-5347x705,2364865414703241,2025-09-27 +City Hotel,1,18,2017,October,41,13,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.21,0,0,Canceled,Albert Bishop,slozano@example.com,(521)960-7608x404,4388979817741734379,2025-01-14 +City Hotel,1,86,2017,December,52,26,2,7,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,223.36,0,1,Canceled,Lisa Good,abryant@example.net,710.264.2845x90493,4124888134792,2025-01-14 +Resort Hotel,1,143,2017,August,32,10,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,24.0,179.0,0,Transient,52.91,0,0,No-Show,Nicholas Mejia,nancypreston@example.org,001-437-498-9875x9357,3576357806935948,2024-12-01 +City Hotel,0,20,2017,April,16,13,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.53,1,1,Check-Out,Russell Erickson,zknight@example.com,231.712.0745x80261,213105574651923,2024-09-15 +City Hotel,0,20,2017,December,2,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,114.03,0,0,Check-Out,Michael Horton,angelawilliams@example.com,7266273875,2633624637537422,2025-09-11 +City Hotel,0,55,2017,May,19,7,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,110.22,0,2,Check-Out,Ricky Tran,tibarra@example.net,+1-958-759-6129x121,4111913346482963,2024-12-19 +City Hotel,0,154,2017,May,20,19,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,111.04,0,1,Check-Out,Jonathan Kelley,gabrielle50@example.org,001-434-213-2613x84558,630443052133,2024-09-06 +City Hotel,1,141,2017,February,6,4,1,2,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,175.83,0,0,Canceled,Miss Makayla Young,jamesrogers@example.net,(304)407-7941x966,376196799936176,2024-11-24 +Resort Hotel,1,103,2017,January,5,31,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,126.24,0,1,Canceled,Natalie Blevins,susangonzalez@example.net,867-851-0104x72639,2716496809918940,2025-07-01 +City Hotel,0,127,2017,November,48,29,0,3,2,1.0,0,BB,ITA,Online TA,Direct,1,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,106.35,0,2,Check-Out,Elizabeth Carney,terri97@example.org,565.492.1503x3047,4939068869630,2025-02-22 +City Hotel,1,400,2017,March,11,18,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,101.47,0,0,Canceled,Gerald Berg,kevingraham@example.com,518.936.2384x47958,501862783484,2025-02-12 +City Hotel,1,165,2017,February,9,29,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,134.06,0,0,Canceled,Jackson Ingram,claudialowe@example.com,599.739.1610x94902,30495056383959,2025-06-08 +Resort Hotel,0,3,2017,November,48,29,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,1,No Deposit,245.0,223.0,0,Transient,49.46,0,1,Check-Out,Thomas Parsons,kyle48@example.com,001-737-829-9717x7477,567356621977,2025-12-18 +Resort Hotel,0,4,2017,April,14,3,2,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,G,G,1,No Deposit,15.0,179.0,0,Transient,1.57,1,0,Check-Out,Emma Jennings,oalexander@example.com,2517669161,4221137712834352,2024-07-24 +Resort Hotel,0,3,2017,September,37,13,1,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,H,1,No Deposit,13.0,222.0,0,Transient-Party,43.82,1,0,Check-Out,Julie Padilla,ashley94@example.org,(306)642-0162x4411,6011712954870394,2025-05-24 +Resort Hotel,0,23,2017,February,8,23,1,1,3,1.0,0,BB,,Online TA,Direct,0,0,0,H,H,2,No Deposit,246.0,179.0,0,Transient,249.05,0,0,Check-Out,Cassandra Williams,nicholastodd@example.org,(687)583-8537,3508193957583747,2026-03-16 +Resort Hotel,0,184,2017,August,34,25,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,57.2,0,1,Check-Out,Jeremy Schmidt,willisjames@example.org,(431)300-0557x01072,30260599880840,2024-09-04 +Resort Hotel,0,14,2017,March,11,12,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,0.57,0,0,Check-Out,David Scott,sgeorge@example.com,+1-864-533-5529x462,639086018228,2024-07-11 +Resort Hotel,0,183,2017,January,4,22,2,0,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,41.38,0,0,Check-Out,Rebekah Ferguson,alvarezmichael@example.com,+1-980-265-0951x23770,4672337510293420851,2024-08-24 +Resort Hotel,1,93,2017,March,13,25,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,237.0,179.0,0,Contract,65.07,0,2,Canceled,Adriana Malone,lisaconley@example.org,+1-255-817-6726x2863,4708398720361,2025-12-22 +Resort Hotel,0,123,2017,March,11,11,1,3,2,2.0,0,BB,FRA,Groups,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,126.4,0,0,Check-Out,Russell Reynolds,simskathryn@example.com,(919)547-8414x6994,3547799680904928,2024-06-02 +City Hotel,1,246,2017,March,13,23,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,165.33,0,0,Canceled,Sarah Collins,dillon50@example.org,(772)390-1892,38049185296178,2024-10-28 +City Hotel,1,400,2017,November,48,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,0,Transient,93.64,0,0,Canceled,Cassandra Frey,brentjohnston@example.com,779-992-0717,5498031333025479,2025-09-16 +City Hotel,1,158,2017,November,46,17,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,76.17,0,0,Canceled,Tyler Murphy,tammyalvarez@example.com,851-551-1914x65112,30209898648325,2025-10-15 +City Hotel,0,2,2017,December,49,9,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,103.04,0,1,Check-Out,Elizabeth Simon,batesthomas@example.net,293.947.6648,4311660996564303912,2025-08-15 +City Hotel,1,312,2017,July,28,13,1,3,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.87,0,0,Canceled,Catherine Nguyen,mbrown@example.org,(724)258-4438x50875,4186116565154,2024-04-29 +City Hotel,1,194,2017,April,14,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.58,0,1,Canceled,Kristy Ramos,nicolewilson@example.net,001-941-781-5092,38679490830517,2024-04-19 +Resort Hotel,0,38,2017,November,47,19,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,156.0,179.0,0,Transient,63.38,0,1,Check-Out,Kyle Haas,nancy83@example.net,+1-308-653-5704x502,4745439287457925,2024-07-19 +City Hotel,0,13,2017,August,31,4,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,10.0,179.0,0,Transient,58.83,0,1,Check-Out,Michael Glover,mclark@example.net,999-560-5233x7202,4370780789050837142,2026-03-02 +Resort Hotel,0,93,2017,March,11,12,2,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,217.86,1,1,Check-Out,Rebecca Walker DDS,williamcooper@example.net,909.708.8328,30132417552762,2025-09-22 +City Hotel,1,125,2017,April,14,2,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,87.27,0,0,Canceled,Julie Mata,rmarshall@example.org,429-299-3665,4575995224117327767,2024-04-25 +City Hotel,1,10,2017,August,33,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,40,Transient,102.01,0,0,Canceled,David Wang,gjohnson@example.net,001-749-492-4233x800,180097283368155,2024-11-16 +Resort Hotel,1,15,2017,January,2,3,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,78.71,0,2,No-Show,Anita Price,johntaylor@example.net,9607100443,4486470840532436,2024-06-13 +City Hotel,0,392,2017,May,21,27,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.83,0,0,Check-Out,Veronica Sweeney,randolphscott@example.com,(395)427-4895,4976959040506833,2026-01-19 +City Hotel,1,248,2017,January,3,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.66,0,0,Canceled,Laura Buck,hamiltonmelissa@example.net,472-801-9044x0424,344944809166014,2025-10-06 +Resort Hotel,0,4,2017,December,50,12,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,90.97,0,1,Check-Out,Peter Humphrey,jennifer71@example.net,001-430-566-8944x08409,4898188682766620282,2025-02-01 +Resort Hotel,0,3,2017,March,13,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,215.17,1,2,Check-Out,Tracey White,craigpeter@example.net,691-843-7358x4868,180031958051531,2025-12-12 +City Hotel,0,58,2017,June,24,16,0,2,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,186.0,61.0,0,Transient-Party,96.71,0,0,Check-Out,Christina Fletcher,charles31@example.net,255.575.8517,2259352977454502,2024-04-16 +City Hotel,0,422,2017,March,13,23,0,1,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,107.73,0,0,Check-Out,Jamie Smith,blackwelljoshua@example.net,(959)866-0345,639074800777,2025-08-14 +City Hotel,0,39,2017,March,10,10,0,1,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,140.22,0,1,Check-Out,Denise Reynolds,mwest@example.org,515.274.2178x2317,6011609624111474,2025-09-06 +City Hotel,0,0,2017,January,3,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,11.0,179.0,0,Transient,172.89,0,1,Check-Out,Beverly Romero,zking@example.net,+1-471-942-9028x91176,4780342357812650970,2025-06-27 +City Hotel,0,108,2017,November,45,11,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Contract,74.91,0,0,Check-Out,Kelli Williamson,isingh@example.com,(986)573-3943,560883571310,2024-10-25 +City Hotel,0,45,2017,June,25,19,1,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,79.47,0,1,Check-Out,Michael Mccall,paul10@example.net,001-836-520-4847,4531643048887,2025-10-29 +City Hotel,0,0,2017,November,44,4,1,2,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,191.33,0,1,Check-Out,Steven Yang,wdunn@example.org,657.583.0176,4575981108274,2025-10-04 +City Hotel,0,44,2017,June,25,21,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,237.0,179.0,0,Transient,159.14,0,2,Check-Out,Monica Armstrong,shannonatkinson@example.com,951.297.1926x71403,4968323786368945091,2026-02-24 +City Hotel,0,201,2017,July,27,7,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,90.48,0,1,Check-Out,Karen Henson,ruizmark@example.com,863.715.8424x81742,3542705012822097,2025-02-17 +Resort Hotel,1,155,2017,April,16,17,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,67.79,0,0,Canceled,Beth Garcia,jeffreygreene@example.com,+1-238-822-8803x869,4148546722444182524,2024-11-06 +Resort Hotel,0,149,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,27.0,223.0,0,Transient-Party,52.32,0,0,Check-Out,Erin Long,timothycarter@example.org,307-684-2632,30538711811540,2024-09-14 +Resort Hotel,1,296,2017,June,24,15,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Contract,54.38,0,1,Canceled,Richard Sweeney,stephanie18@example.com,+1-894-803-1757x352,376890693817355,2025-01-14 +City Hotel,1,14,2017,April,14,4,1,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,61.0,0,Transient,106.85,0,0,Canceled,Michael Goodman,pbradford@example.org,7839246728,4948747124810501,2024-06-04 +City Hotel,0,53,2017,June,26,30,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient-Party,110.22,0,2,Check-Out,Megan Khan,amandanolan@example.org,+1-484-702-2379x6274,2256729013378832,2024-11-22 +Resort Hotel,0,39,2017,March,12,21,1,4,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,Jacob Day,moraleshayden@example.org,889.567.4987,4576735018821527,2025-03-17 +City Hotel,0,106,2017,March,10,5,1,2,2,0.0,0,HB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,89.44,0,0,Check-Out,Shannon Hunt,youngdonald@example.net,(887)515-9972x67389,503891942289,2025-02-28 +City Hotel,1,90,2017,December,51,17,1,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient,138.66,0,0,Canceled,Ashley Mejia,darlene09@example.net,983-797-9262,3523926457430195,2026-03-09 +Resort Hotel,1,205,2017,November,48,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,135.0,179.0,21,Transient,101.85,0,0,Canceled,David Johnston,david95@example.org,2808093904,30286778591858,2025-11-30 +Resort Hotel,0,50,2017,January,2,7,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,49.37,0,1,Check-Out,David Joseph,brianevans@example.com,946-531-3579x44388,2252722451805196,2024-12-31 +City Hotel,0,32,2017,January,3,15,0,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,32.0,179.0,0,Transient-Party,103.46,0,0,Check-Out,Alexa Smith,sharonjohnson@example.org,(883)322-4330,2720483010032400,2024-06-05 +City Hotel,0,21,2017,April,16,20,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,233.78,0,2,Canceled,Kevin Gilbert,michaelparrish@example.net,+1-205-327-6730,4348836332465624,2024-10-07 +City Hotel,1,33,2017,January,2,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.65,0,0,No-Show,Dr. Terri Valdez,huberregina@example.net,(293)984-3920x193,3582498253995936,2024-08-27 +Resort Hotel,0,21,2017,November,46,12,1,2,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,83.87,0,3,Check-Out,Donald Ford,castanedajames@example.net,806.313.6524x0920,6541969932733909,2024-04-02 +City Hotel,1,2,2017,October,43,24,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient-Party,99.53,0,1,No-Show,Mary Kane,margaretmoore@example.org,848.952.8401x715,565643837372,2024-08-29 +City Hotel,1,166,2017,July,27,3,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,20,Transient,83.26,0,0,Canceled,Brian Mccarty,bentleyjamie@example.com,+1-375-877-2642,4755420221109360403,2026-02-05 +Resort Hotel,0,309,2017,May,18,5,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,85.0,179.0,0,Transient,63.59,0,0,Check-Out,Kevin Clayton,courtneyjones@example.net,875.368.2373x944,4355210141067254,2024-10-07 +City Hotel,1,238,2017,February,6,8,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,103.21,0,2,Canceled,Brandy Bowman,jbuchanan@example.net,001-824-493-9499x15170,30192143742780,2025-10-25 +City Hotel,0,109,2017,August,34,24,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,104.51,1,1,Check-Out,Dominique Hall,kimberly61@example.org,+1-596-556-8892x50381,5165448332214866,2025-08-22 +Resort Hotel,0,143,2017,May,19,6,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Group,111.12,0,2,Check-Out,Sandra Holder,debbie79@example.net,001-840-454-5884x9802,3511977674328591,2024-10-25 +City Hotel,1,271,2017,March,10,7,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,103.5,0,0,Canceled,James Zuniga,richardgabriel@example.org,253.614.3136,4849359095979,2024-10-12 +City Hotel,1,163,2017,March,12,21,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.15,0,1,No-Show,Danielle Riley,cohentiffany@example.org,001-398-205-7485,36422816401933,2024-12-04 +City Hotel,0,152,2017,April,14,7,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.74,0,0,Check-Out,Christine Carr,ryancheryl@example.org,001-594-798-5841x8882,4693307461452180,2025-08-09 +Resort Hotel,0,35,2017,March,10,8,3,6,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,G,E,2,No Deposit,241.0,179.0,0,Transient,181.94,0,2,Check-Out,Mark Page,richard11@example.com,(549)773-3271x436,630496556469,2026-01-23 +City Hotel,0,106,2017,January,4,21,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Transient,133.08,0,1,Check-Out,Amy Burnett,trevinojessica@example.com,+1-547-787-6150x64757,676278647414,2024-04-03 +Resort Hotel,1,21,2017,July,30,28,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,51.31,0,0,Canceled,Laura Patterson,victoriaholder@example.org,827.201.8218x723,4128460568283709032,2024-12-19 +City Hotel,1,114,2017,August,32,5,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,102.45,0,0,Canceled,Emily Romero,brian76@example.org,001-620-288-2698x7369,347711875255766,2026-01-14 +City Hotel,0,0,2017,June,23,5,2,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Transient,103.42,0,0,Check-Out,Michael Rivera,imcclain@example.org,446-487-9274x775,4611801221482,2025-09-20 +City Hotel,0,10,2017,November,47,25,2,7,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,175.43,0,1,Check-Out,Rebecca Jones,margaretgiles@example.net,447-516-0845,3538345600712263,2024-07-04 +City Hotel,0,156,2017,April,14,1,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,Eric Colon,johnrobinson@example.com,9294618823,6011214659398771,2026-03-11 +City Hotel,1,44,2017,January,3,19,1,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,105.5,0,0,Canceled,Megan Burns DVM,devin23@example.net,(268)203-6771,4298369039239019,2025-09-19 +City Hotel,1,381,2017,January,4,22,1,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient,107.0,0,0,Canceled,Zachary Pearson,adkinserin@example.net,5053554957,3531527267389561,2025-02-12 +Resort Hotel,0,22,2017,January,4,22,1,4,1,0.0,0,BB,BRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,232.0,0,Transient-Party,50.98,0,0,Check-Out,Michael Owens,frostgregory@example.org,346.202.7868,4067812269871497,2026-02-02 +City Hotel,1,248,2017,January,4,25,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,103.32,0,0,No-Show,Anna Morse,stephanie76@example.com,(417)907-6469,2296762759147758,2025-04-04 +Resort Hotel,0,9,2017,January,2,13,1,3,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,147.45,0,1,Check-Out,Cheryl Sandoval,bmorgan@example.com,(833)900-2117,3525599539072117,2026-01-20 +Resort Hotel,1,150,2017,March,12,21,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,201.64,0,1,Canceled,April Romero,shernandez@example.com,323.720.0757,4905168578595193763,2024-10-28 +City Hotel,1,153,2017,December,50,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,110.83,0,0,Canceled,Kevin Hernandez,ortizmichelle@example.org,+1-215-969-7142x17233,180038030730388,2026-03-22 +Resort Hotel,1,78,2017,January,2,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,46.24,1,0,Check-Out,Michael Morris,caleblopez@example.org,(447)433-8920,4571004113277803,2025-05-29 +City Hotel,0,44,2017,July,30,28,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,8.0,179.0,0,Transient,133.17,0,1,Check-Out,Tanner Ortiz,hcurtis@example.com,6583464084,4517326809245431,2024-07-11 +City Hotel,0,33,2017,November,46,14,0,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,102.22,0,0,Check-Out,Gina Finley,zavalajulie@example.com,+1-507-709-9918,3523307947220514,2025-07-03 +City Hotel,1,144,2017,January,3,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,109.14,0,0,Canceled,Ralph Luna,marc82@example.org,001-512-671-2326x8212,3511395107975856,2025-01-28 +City Hotel,0,13,2017,January,3,19,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,129.93,1,1,Check-Out,Phillip Hayden,vegajonathan@example.org,001-812-470-2290x090,4269722246865655495,2025-10-07 +Resort Hotel,0,260,2017,October,43,27,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,252.0,179.0,0,Transient-Party,83.83,0,0,Check-Out,Melinda Long,kristinking@example.org,683-876-2315,4767966784403526,2025-05-23 +City Hotel,1,145,2017,November,44,3,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,9.0,179.0,42,Transient,32.62,0,1,Canceled,Jimmy Edwards,mdavis@example.com,(889)984-7746x892,4114693769790511031,2025-08-15 +City Hotel,0,14,2017,November,47,19,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,127.3,0,2,Check-Out,Erin Wilson,ycook@example.com,+1-890-813-9750x339,213195482328854,2026-03-15 +Resort Hotel,1,10,2017,July,28,15,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,100.72,0,0,Canceled,Brittney Wheeler,weberjeff@example.net,360-732-7103,6531937000439669,2025-02-15 +City Hotel,0,13,2017,November,47,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,17.0,64.0,0,Transient,40.21,0,0,Check-Out,Charles Anderson,hfranklin@example.org,(792)854-6477x39243,213120421368217,2024-05-25 +City Hotel,1,85,2017,October,42,17,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.4,0,0,Canceled,John Carter,colleenjackson@example.net,+1-294-493-0925x27983,180005065589088,2024-11-28 +Resort Hotel,1,4,2017,May,18,5,0,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,239.0,179.0,0,Transient-Party,103.0,0,0,Canceled,Erin Johnson,jenniferproctor@example.com,+1-234-487-6859x8140,4945836724007,2025-07-15 +City Hotel,0,38,2017,December,49,4,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,125.43,0,2,Check-Out,Howard Richardson,harperashley@example.com,793-818-9541,3506406837346701,2025-10-09 +Resort Hotel,0,205,2017,March,13,23,2,6,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Check-Out,Victoria Williams,michelleodom@example.com,868-463-4902x5881,379800828990313,2025-06-15 +Resort Hotel,0,27,2017,June,23,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,161.0,179.0,0,Transient,41.7,1,0,Check-Out,Mrs. Jennifer Ruiz,crawforddavid@example.net,367.424.0142,6565193376512460,2025-06-26 +Resort Hotel,1,164,2017,November,48,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,59.87,0,0,Canceled,Jason Parker,vincent12@example.org,6888237935,2223175312080564,2025-03-29 +Resort Hotel,0,14,2017,July,30,26,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,120.86,0,1,Check-Out,Rebecca Elliott,neil52@example.com,499-284-3386x83582,3599081840011846,2025-07-28 +City Hotel,0,3,2017,June,25,21,0,2,2,0.0,0,BB,,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,93.74,0,0,Check-Out,Rebecca Rodriguez,michellegolden@example.net,243-782-4473,6011146210358391,2025-11-05 +City Hotel,1,100,2017,January,4,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,81.87,0,0,Canceled,Juan Wright,amartinez@example.org,001-861-885-6239x90082,6011485789633069,2024-06-02 +City Hotel,1,0,2017,October,42,16,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,221.0,0,Transient,96.4,0,1,Canceled,Anna Reid,jdavis@example.net,708.486.3324,349193903231002,2024-06-01 +City Hotel,1,3,2017,December,2,30,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,1,A,A,2,No Deposit,9.0,179.0,0,Transient,112.38,0,0,Canceled,Nicholas Floyd,parkersherri@example.org,(429)582-7856x6647,676237323404,2025-07-11 +Resort Hotel,0,35,2017,April,15,12,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,123.0,179.0,0,Transient,117.7,0,1,Check-Out,Erika Kim,warnerhoward@example.org,986.812.2464x9375,3509163126614813,2025-10-17 +City Hotel,0,146,2017,November,46,14,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.69,1,1,Check-Out,Terrance Jackson,paulwilliams@example.net,(531)624-3328x1506,6595944757576001,2025-06-19 +City Hotel,0,104,2017,November,45,4,1,3,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.63,0,1,Check-Out,William Banks,colemandavid@example.net,781-432-4142x7027,30503372265519,2024-04-28 +City Hotel,0,108,2017,November,44,3,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.24,0,2,Check-Out,Mackenzie Diaz,jessicawaters@example.com,350.917.7912x059,4974888145697,2024-07-02 +City Hotel,0,114,2017,March,11,9,2,2,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,133.17,0,1,Check-Out,Jason Neal,aadams@example.net,001-882-238-6901,2262951727799085,2026-02-04 +City Hotel,0,1,2017,October,43,22,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,124.07,0,2,Check-Out,Aaron Scott,bgonzales@example.org,(703)256-5461x7198,3506517067964367,2024-08-08 +Resort Hotel,1,92,2017,July,31,29,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,320.0,179.0,0,Transient,76.29,0,0,Canceled,Robert Peterson,ashley31@example.com,+1-721-715-6319x721,4653921914280311044,2025-03-15 +Resort Hotel,0,2,2017,September,39,24,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,56.47,0,1,Check-Out,Cameron Russell,jenniferdavila@example.net,(339)955-2337x635,3531060092719299,2024-10-03 +City Hotel,1,121,2017,February,9,29,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,119.75,0,2,Canceled,Jessica Porter,amy55@example.com,491-951-1742,341922224171598,2024-06-28 +Resort Hotel,0,16,2017,August,32,7,0,7,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,85.55,0,1,Check-Out,Mr. Robert Collins,barbara85@example.com,6288245912,3586765383132234,2025-01-29 +City Hotel,0,11,2017,August,33,12,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,60,Transient,113.43,0,0,Check-Out,Crystal Taylor,valerie71@example.com,418-349-3091x67551,3533156240815407,2025-03-05 +City Hotel,0,19,2017,March,10,9,1,1,3,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient,229.68,0,2,Check-Out,William Ray,vrodriguez@example.com,(809)859-7338,4400975383448157,2024-11-01 +City Hotel,0,50,2017,December,52,26,1,4,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,C,L,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,Deborah Colon,aimee64@example.org,664.753.6176x763,4657116255579841,2025-07-04 +City Hotel,0,58,2017,December,52,23,2,5,2,0.0,0,HB,AUT,Online TA,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,212.33,0,0,Check-Out,Joseph Benson,edwardgreen@example.com,594-565-1946,376068835899769,2024-12-19 +Resort Hotel,0,56,2017,May,20,12,0,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,167.63,0,1,Check-Out,Jennifer Bennett,zhall@example.net,437.824.5332,4526609733519057,2024-06-25 +City Hotel,1,42,2017,August,34,26,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.4,0,0,Canceled,Sally Thomas,nguyenamanda@example.net,(812)891-0110,213120326990768,2025-04-30 +Resort Hotel,1,149,2017,April,17,26,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Canceled,Stacy Hart,nsmith@example.org,001-447-374-5823x668,3533777477441565,2025-04-29 +City Hotel,1,10,2017,January,4,26,1,0,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,10.0,179.0,0,Transient,0.84,0,0,Canceled,Michael Hernandez,paulking@example.org,+1-347-716-5522x680,4562483319021,2025-01-29 +Resort Hotel,1,3,2017,September,38,22,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,0,No Deposit,249.0,179.0,0,Transient,47.82,0,0,Canceled,Jade Rogers,ryansmith@example.com,+1-456-330-0774x615,5478096607330164,2025-05-13 +Resort Hotel,0,14,2017,April,15,15,4,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,172.0,1,2,Check-Out,Brian Mejia,johnathanrodriguez@example.com,766.538.4716,344746139924529,2025-08-04 +City Hotel,1,143,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,128.49,0,0,Canceled,Mason Moon,chadwang@example.net,001-582-599-3524x06241,4339508874007944864,2025-08-19 +Resort Hotel,0,6,2017,January,2,7,0,1,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,79.0,179.0,0,Transient,95.79,1,0,Check-Out,Nathan Blanchard,williamsdonna@example.net,+1-661-943-4141x6930,5355468452854465,2024-11-10 +City Hotel,1,18,2017,October,41,11,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,114.03,0,0,Canceled,Carrie Brown,nallen@example.net,6944987498,4810043777757685,2025-02-11 +City Hotel,0,54,2017,August,34,26,0,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,64,Transient-Party,98.82,0,0,Check-Out,Christine Parker,justinwoods@example.com,(493)312-9734,4128032324079671591,2024-04-13 +Resort Hotel,0,2,2017,September,37,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,56.37,1,1,Check-Out,Jeffrey Alvarez,matthewfry@example.net,(376)576-3286x50865,5460724315815206,2025-02-13 +City Hotel,0,2,2017,February,7,16,0,1,1,0.0,0,BB,CHN,Aviation,GDS,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,119.05,0,0,Check-Out,Brian White,osaunders@example.net,(592)917-8563,2232132493582800,2025-10-01 +City Hotel,0,55,2017,July,27,7,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,77.05,0,0,Check-Out,Matthew Jennings,leekari@example.net,001-559-330-6732x484,6540880904948998,2025-01-17 +Resort Hotel,0,104,2017,September,37,13,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,74.9,0,2,Check-Out,Sabrina Chapman,hstrickland@example.org,(793)937-0260x60249,4936737315024311055,2026-03-14 +City Hotel,1,429,2017,December,50,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,104.12,0,0,Canceled,Sara Yang,dawn84@example.org,(541)925-3726x1052,2707389248361171,2025-02-12 +City Hotel,0,49,2017,January,4,22,0,4,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,111.97,0,3,Check-Out,Thomas Logan,sallen@example.org,(460)604-2467,3545799953442079,2025-11-21 +Resort Hotel,0,32,2017,November,48,29,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,43.71,0,2,Canceled,Ashley Horn,armstrongrhonda@example.net,592.991.7892x584,4687618704604371,2024-05-11 +Resort Hotel,0,163,2017,October,44,31,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,79.67,1,0,Check-Out,John Moore,courtney34@example.com,677.230.9692x8618,3561280959374789,2026-02-20 +City Hotel,1,141,2017,February,7,15,4,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient,122.73,0,1,Canceled,Amanda Brown,vzimmerman@example.net,(752)995-7162,676229607558,2025-11-20 +City Hotel,0,2,2017,November,47,20,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,K,0,No Deposit,11.0,179.0,0,Transient,38.89,0,1,Check-Out,Stacey Dixon,vbrown@example.net,(411)689-5579,30418819846716,2024-12-27 +Resort Hotel,0,6,2017,August,35,30,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,50.4,0,0,Check-Out,Jill Ramirez,sandra27@example.org,(716)809-1750x227,4355039535863,2026-01-26 +City Hotel,0,63,2017,June,23,8,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,144.34,0,1,Check-Out,Anthony Mitchell,nicholas72@example.org,001-456-846-5496x5384,180058628560609,2025-09-01 +Resort Hotel,1,98,2017,February,6,7,4,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,242.0,179.0,0,Transient,128.73,0,0,Canceled,Katherine Weaver,cortezheather@example.com,(408)407-8269x62252,4803049251570111463,2024-08-02 +Resort Hotel,0,0,2017,December,49,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,163.83,0,0,Check-Out,Rachel Macdonald,spencerryan@example.org,001-616-346-0595x1380,4474649308460,2026-03-18 +City Hotel,0,19,2017,April,14,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,118.34,0,3,Check-Out,Amy Lee,robin38@example.org,001-947-996-1399x847,6011436969740893,2025-05-16 +City Hotel,1,385,2017,May,20,18,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,114.64,0,0,Canceled,Matthew Rivas,garciataylor@example.com,+1-705-545-5278,503805493643,2026-01-24 +City Hotel,1,33,2017,April,18,29,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,155.41,0,0,Canceled,Allison Miller,khorton@example.net,(249)733-3803x03438,30137337248839,2026-02-27 +City Hotel,0,14,2017,November,48,28,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.57,0,2,Check-Out,Jennifer Ray MD,sandra41@example.org,951.707.1956,3548161711209950,2025-12-01 +City Hotel,1,145,2017,June,24,16,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,88.44,0,1,No-Show,Jason Barnes,jeffrey09@example.org,495.961.5529,6011380223112756,2026-03-14 +City Hotel,1,82,2017,November,45,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,43,Transient,105.64,0,0,Canceled,Erica Yang,jacquelinehardy@example.com,+1-284-671-4784x450,4511181229800,2024-12-21 +City Hotel,0,92,2017,January,2,4,1,0,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,80.52,0,0,Check-Out,Jason Kirk,paulaross@example.org,001-553-621-7386x043,2228454016488539,2026-01-30 +Resort Hotel,0,102,2017,August,34,26,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,63.19,0,0,Check-Out,Michael Smith,xbrewer@example.org,001-754-926-9932x53523,583320815850,2024-11-19 +City Hotel,1,108,2017,November,48,26,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,105.73,0,0,Canceled,Ronald Baker,rmartinez@example.com,001-946-235-6902x42375,36112418072071,2024-09-13 +Resort Hotel,0,145,2017,November,45,11,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,40.77,0,0,Check-Out,Mark Rangel,bryanbonnie@example.com,001-601-691-4699,349667787624853,2025-09-01 +Resort Hotel,1,13,2017,July,27,7,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,E,0,No Deposit,239.0,179.0,20,Transient,109.17,0,1,Canceled,Mrs. Julia Chavez DDS,agreen@example.com,001-439-951-5473,377335052108979,2024-05-27 +City Hotel,0,51,2017,April,16,15,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.96,0,1,Check-Out,Johnny Escobar,reynoldsjesse@example.org,(922)278-0569,2297674171863525,2025-05-23 +City Hotel,1,0,2017,December,51,17,0,1,1,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,2.51,0,1,No-Show,Jeremy Cochran,dean55@example.com,+1-659-546-7598x751,30016162112130,2024-10-05 +Resort Hotel,0,15,2017,July,30,25,1,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,238.0,179.0,0,Transient,99.9,0,0,Check-Out,Denise Stewart,cbautista@example.com,2443803457,4276036906008619197,2024-07-06 +City Hotel,0,95,2017,May,22,28,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,134.57,0,0,Check-Out,Reginald Brown,rodriguezmary@example.org,001-801-317-5367x50677,6011249838374665,2024-08-27 +Resort Hotel,0,253,2017,January,2,4,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,D,A,1,No Deposit,296.0,179.0,75,Transient-Party,125.24,0,0,Check-Out,Charles Mendez,bergrobert@example.com,+1-918-527-7920x604,2702102659656285,2024-07-23 +Resort Hotel,0,0,2017,August,34,25,2,4,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,3,No Deposit,315.0,179.0,0,Transient,81.88,1,1,Check-Out,Jordan Morse,michael30@example.net,(570)313-5958x259,6011527302876731,2025-11-23 +City Hotel,0,19,2017,March,13,26,1,0,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,135.12,0,0,Check-Out,Brittney Boyd,andrew43@example.net,500-791-5340x7855,501804996186,2024-11-21 +Resort Hotel,1,43,2017,September,36,3,1,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,78.16,0,0,Canceled,Brandy Hogan,alyssamoore@example.net,5384176106,5537824480987423,2026-02-23 +City Hotel,1,49,2017,April,17,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,105.94,0,0,Canceled,James Ball,ehodge@example.net,7889996068,30138006245197,2024-12-31 +City Hotel,0,54,2017,June,23,3,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,130.29,0,0,Check-Out,Nicole Scott,catherine33@example.com,874-265-6934x2886,347788007984570,2026-02-23 +City Hotel,1,10,2017,March,13,25,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,188.02,0,1,No-Show,Aaron Gonzalez,justinlee@example.com,001-736-844-1363,30012082088526,2025-04-11 +City Hotel,0,165,2017,February,8,19,0,1,1,0.0,0,BB,IRL,Corporate,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,135.25,0,0,Check-Out,Matthew David Jr.,angela23@example.net,515-225-8903,563041414506,2026-02-12 +City Hotel,0,44,2017,June,25,23,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,281.0,179.0,0,Transient,122.32,0,2,Check-Out,Mitchell Daniels,amysmith@example.net,(397)358-4778x739,4740467748393764,2024-07-18 +Resort Hotel,0,0,2017,October,44,29,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,249.0,179.0,0,Transient,51.04,0,0,Check-Out,Dakota Vaughn,zbrown@example.org,907-545-1067,6011365482808970,2025-11-14 +Resort Hotel,1,26,2017,February,6,10,1,2,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,252.0,0,3,No-Show,Jennifer Torres,ewarren@example.net,402.850.6256x320,30351752623638,2026-01-03 +City Hotel,1,5,2017,April,14,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,45.0,0,Transient,2.5,0,1,No-Show,Sergio Massey,gardneralexa@example.net,(200)941-6077,4184074926499141,2024-08-02 +City Hotel,1,428,2017,March,11,11,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,171.27,0,0,Canceled,Brianna Aguilar,amysilva@example.net,(957)301-9454x27295,3597280032739592,2026-03-09 +City Hotel,0,1,2017,April,14,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,220.6,1,1,Check-Out,Bryce Thompson,kayla34@example.net,(660)915-7367,4403609472745580,2026-03-21 +City Hotel,0,14,2017,July,28,9,0,2,1,0.0,0,BB,ITA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,106.93,0,0,Check-Out,Deborah Hawkins,shelly71@example.org,+1-429-531-6876x2797,6011218795013376,2024-07-29 +City Hotel,0,44,2017,February,7,14,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,14.0,45.0,0,Transient,55.68,0,1,Canceled,William Chambers,brian38@example.com,849-336-1920x366,4718001324642,2025-01-19 +City Hotel,0,235,2017,February,8,23,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,42,Transient,139.24,0,1,Check-Out,Ryan Conner,meltonangela@example.net,768.797.3636,4104377011683348,2025-07-01 +City Hotel,0,120,2017,December,51,17,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.78,0,2,Check-Out,Larry Rowland,qlogan@example.net,2858959945,3553360192438698,2025-10-17 +City Hotel,0,444,2017,April,17,20,0,4,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.59,0,1,Canceled,Deborah Smith,bradleylisa@example.net,001-755-912-9740x07172,4033322922750675,2025-01-11 +City Hotel,0,197,2017,April,16,20,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,84.8,0,2,Check-Out,Timothy Wilson,orobinson@example.net,001-472-928-8012x22171,38246818895117,2025-08-29 +Resort Hotel,0,3,2017,November,47,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,16.0,45.0,0,Transient,47.47,0,1,Check-Out,Jose Ramsey,markbradley@example.com,(844)681-5712x34720,3552664947031307,2025-11-08 +Resort Hotel,1,152,2017,February,7,11,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,116.04,0,1,Canceled,Shane Garcia,gilberttamara@example.org,001-324-776-5541x24292,2267093038393608,2026-01-26 +City Hotel,0,21,2017,May,20,20,2,2,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,214.44,0,1,Check-Out,John Banks,kevinjohnson@example.com,977-721-8057,3554067949172988,2024-07-28 +Resort Hotel,0,46,2017,April,15,10,2,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Group,51.45,0,1,Check-Out,Amy Wilcox,sherrytran@example.net,(759)818-1448x9275,4085874466798467,2024-08-13 +City Hotel,1,153,2017,February,8,22,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,No-Show,Darrell Coleman,johngonzalez@example.com,514-596-5346x4732,3561554172777139,2026-03-25 +Resort Hotel,0,19,2017,January,3,16,2,1,1,0.0,0,BB,RUS,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,236.0,0,Transient,101.02,0,1,Check-Out,Jacqueline Ramos,qharris@example.org,+1-583-635-8846x3919,4087392910827,2025-04-30 +City Hotel,0,24,2017,February,8,20,4,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,22.0,179.0,0,Transient,92.79,0,3,Check-Out,Michael Wong,julie05@example.net,(486)834-9940x347,30507804577128,2024-07-25 +City Hotel,1,40,2017,March,14,30,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,137.09,0,2,Canceled,Bradley Brown,cheyenneguerra@example.net,+1-907-320-4622x1734,4311250092637518,2025-04-22 +Resort Hotel,0,0,2017,June,23,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,1.51,0,0,Check-Out,Anna House,ashley81@example.com,(971)414-5005,587752872719,2025-01-31 +City Hotel,1,381,2017,May,20,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.9,0,0,Canceled,April Rhodes,morrischristina@example.org,001-970-799-4240x397,4402651450392325,2026-01-26 +City Hotel,0,13,2017,April,15,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,169.04,0,2,Check-Out,Brian Peters,matthew74@example.com,(754)933-2554,6011218294826955,2024-05-01 +Resort Hotel,1,293,2017,May,18,2,2,5,2,0.0,0,FB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,260.0,179.0,0,Transient,109.82,0,0,Canceled,Nicholas Smith,dennis27@example.org,237.381.2109x88744,213143357162065,2025-08-06 +Resort Hotel,1,254,2017,February,5,3,3,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,173.0,179.0,0,Transient-Party,75.91,0,0,Canceled,Gregory Roberts,johnsonjohn@example.com,951.579.8799,348862768847380,2024-09-05 +City Hotel,0,113,2017,January,4,20,1,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.85,0,1,Check-Out,Michael Conrad,zjohnson@example.net,(945)650-4014x65998,348208298119223,2024-10-31 +City Hotel,0,90,2017,January,2,8,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,74.86,0,0,Check-Out,Michael Thompson,ibrown@example.net,(246)386-5221x57900,345231359289225,2024-05-25 +City Hotel,0,43,2017,November,47,19,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient-Party,99.77,0,0,Check-Out,William Jackson,schmittsara@example.net,431.331.2710x617,6599499673641104,2024-07-22 +City Hotel,0,154,2017,February,7,13,2,3,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,250.67,0,0,Check-Out,Julie Conway,munozchristine@example.net,001-819-842-1117x14696,180072569249387,2024-05-30 +Resort Hotel,1,97,2017,November,47,22,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Canceled,Kara Wong,scott33@example.net,(984)409-2667x312,4431656907259915,2025-05-05 +City Hotel,0,48,2017,June,23,4,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,104.76,0,1,Check-Out,Martha Dalton,mburns@example.net,685.421.3221x3512,4008642354855,2025-03-26 +City Hotel,0,20,2017,June,23,9,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Contract,63.0,0,1,Check-Out,David Greene,williamspears@example.com,(322)477-1420x37252,4830081576899486,2025-02-05 +City Hotel,0,0,2017,April,16,20,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,2,No Deposit,17.0,179.0,0,Transient-Party,226.23,0,0,Check-Out,Sean Huerta,wilsonmary@example.org,679.966.0474,2286463714197150,2026-01-08 +Resort Hotel,1,16,2017,February,9,26,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,120.22,0,2,Canceled,Dawn Wolf,ajordan@example.com,2724075466,3595788145675364,2025-10-16 +City Hotel,1,244,2017,May,19,7,1,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,167.91,0,0,Canceled,James Gregory,williscorey@example.com,771-441-5572x460,6011976976219134,2025-08-03 +City Hotel,1,145,2017,March,11,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,113.23,0,2,No-Show,Natalie Caldwell,vsmith@example.com,+1-788-273-6929x70463,30266915426457,2025-07-13 +Resort Hotel,0,99,2017,June,26,27,2,5,1,1.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,78.31,0,0,Check-Out,Douglas Sullivan,brobinson@example.net,+1-594-296-0187,213110837709492,2025-01-11 +Resort Hotel,0,1,2017,September,36,4,0,2,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,53.98,1,1,Check-Out,Richard Clark,dennistony@example.org,620.558.3491x29599,2284216930526459,2024-06-12 +City Hotel,0,7,2017,January,2,12,0,1,1,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.87,0,0,Check-Out,Todd Buchanan,stephaniemartin@example.org,(230)201-8403x3939,3502232676796333,2024-06-10 +City Hotel,0,4,2017,August,34,24,1,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.8,0,1,Check-Out,Anna Villanueva,michael84@example.org,+1-913-936-8706x0607,375066938175534,2024-05-30 +City Hotel,1,159,2017,November,46,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,112.26,0,0,Canceled,Jimmy Norman,wrightdavid@example.org,365.281.0884x5379,3583247422330023,2024-03-31 +Resort Hotel,0,90,2017,April,17,27,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Contract,190.11,0,2,Check-Out,Crystal Wallace,robinsonheidi@example.net,+1-267-745-3056,5332326349548948,2024-11-18 +Resort Hotel,0,13,2017,April,16,22,0,2,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient,217.36,0,0,Check-Out,Paul Figueroa,vjensen@example.org,001-500-652-4357x403,372129111176852,2024-11-01 +Resort Hotel,0,46,2017,November,45,7,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,242.0,179.0,0,Transient,46.39,1,1,Check-Out,Melissa West,bhamilton@example.com,(489)345-2759x2767,2233493509454841,2024-07-07 +City Hotel,0,1,2017,January,3,17,1,2,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.47,0,1,Check-Out,Natasha Lester,gilbertkyle@example.net,662-640-0670x1186,213190269328888,2025-02-25 +Resort Hotel,0,12,2017,August,33,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,56.24,0,0,Check-Out,Abigail Moreno,tracey72@example.com,+1-973-707-3407x00632,4175440730223533,2025-07-15 +Resort Hotel,0,149,2017,April,15,13,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,304.0,179.0,0,Transient,103.14,0,0,Check-Out,Randall Stokes,bradshawangela@example.net,+1-323-446-8832x694,4889952445705853015,2025-03-20 +City Hotel,1,211,2017,April,16,15,0,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,153.29,0,0,Canceled,Kyle Williams,michael36@example.net,+1-454-528-1257x89920,379647898877502,2025-05-24 +Resort Hotel,0,2,2017,December,50,13,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,16.0,222.0,0,Transient,42.07,0,1,Check-Out,Edward Cummings,garrettteresa@example.com,536-499-8862,4629080932790491,2024-05-22 +Resort Hotel,0,217,2017,November,46,12,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,221.0,0,Transient-Party,92.63,0,0,Check-Out,Angela Nelson,jessicaparker@example.com,928-412-3827x88804,6510788760258236,2024-12-21 +City Hotel,0,28,2017,June,24,12,2,3,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,73.95,0,2,Check-Out,Kaylee Lewis,kellyskinner@example.net,001-652-909-2665x42039,36708925702264,2024-10-20 +City Hotel,0,312,2017,March,13,23,2,3,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,134.82,0,0,Canceled,Gail Morales,phyllisbowman@example.org,001-986-737-8224x251,370811177180116,2025-01-04 +Resort Hotel,0,162,2017,March,13,23,0,3,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,143.19,0,0,Check-Out,Andrew Kelly,mcdanielcameron@example.org,001-621-545-6394x4078,348217468793022,2025-09-29 +Resort Hotel,0,416,2017,June,26,28,2,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,75,Transient-Party,87.43,0,0,Check-Out,Gary Cunningham,lhardy@example.org,834.502.3206x0037,30384685300297,2025-09-03 +Resort Hotel,0,8,2017,April,16,18,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,133.82,0,0,Check-Out,Jessica White,michael51@example.org,589.568.4599x8568,3591205446784054,2024-04-03 +City Hotel,1,39,2017,February,6,6,3,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,112.89,0,1,Canceled,David Thomas,masseytamara@example.org,750-812-0931x9076,4157353699394538,2025-07-30 +City Hotel,0,212,2017,September,38,17,2,4,1,1.0,0,BB,,Direct,Direct,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,114.8,0,0,Check-Out,Kevin Davis,tgibson@example.net,243.286.7962,2291251491101427,2024-06-26 +City Hotel,1,307,2017,March,12,17,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.87,0,0,Canceled,Michael Brown,megan39@example.com,452.677.9616,3521452627527077,2025-05-17 +City Hotel,0,23,2017,August,31,2,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient,88.27,0,1,Check-Out,Jacqueline Steele,loganberry@example.net,816-362-2186,5270068911551520,2024-10-04 +Resort Hotel,0,21,2017,November,46,11,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,1,0,1,D,D,0,No Deposit,10.0,179.0,0,Transient,41.74,0,1,Check-Out,Joseph Jenkins,alexanderandrea@example.org,903.771.2568x4978,4121806246115962487,2024-06-07 +City Hotel,0,144,2017,December,2,31,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.05,0,3,Check-Out,Jorge Spencer,timothystewart@example.org,+1-885-573-3413,4895405353246474,2024-11-21 +Resort Hotel,0,143,2017,December,50,9,3,7,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,130.43,0,0,Check-Out,Erica Walker MD,syoung@example.org,967-737-3912,30591075063232,2024-04-01 +City Hotel,0,25,2017,June,26,27,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,83.03,0,0,Check-Out,Ronald Jenkins,reneegonzalez@example.net,(942)674-7758,676271287085,2025-02-20 +City Hotel,0,45,2017,November,45,7,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.27,0,1,Check-Out,Christine Cardenas,drodriguez@example.org,001-825-315-1745,4405388458555739,2024-08-04 +City Hotel,0,8,2017,February,7,12,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,181.05,0,2,Check-Out,Michael Curtis,mhart@example.net,6789727486,6011086170562774,2026-03-11 +City Hotel,0,58,2017,December,52,25,2,2,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,128.33,0,1,Check-Out,Sarah Smith,matthewgarcia@example.com,384-621-8854,4368668524285766,2024-06-16 +Resort Hotel,0,22,2017,August,31,4,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,238.0,179.0,0,Transient,54.05,0,1,Check-Out,Stacey Hernandez,johnsonmichael@example.com,257-470-4460,30007780950290,2024-08-29 +Resort Hotel,0,2,2017,September,39,27,1,1,1,1.0,0,BB,PRT,Direct,Direct,1,0,1,G,G,0,No Deposit,251.0,179.0,0,Transient,51.46,1,3,Check-Out,Deborah Reed,alexander57@example.net,(371)539-7028x43221,213156420603709,2025-10-22 +City Hotel,0,161,2017,April,17,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,122.0,179.0,0,Transient,104.13,0,1,Check-Out,Kathleen Randolph,michaelthompson@example.org,415.754.0588x1744,502068325963,2025-10-07 +Resort Hotel,0,21,2017,December,50,14,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,244.0,179.0,0,Transient,1.71,0,1,Check-Out,Samuel Phillips,nicolepearson@example.net,249-822-4885x9388,6011264010938757,2024-09-21 +Resort Hotel,0,1,2017,April,15,6,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,99.61,1,1,Check-Out,Samantha Holmes,thomas61@example.com,001-804-763-1111x89288,348314362804474,2024-09-09 +City Hotel,0,197,2017,May,18,4,2,7,2,0.0,0,HB,NLD,Direct,Direct,0,0,0,A,E,1,No Deposit,12.0,179.0,0,Transient-Party,86.61,0,0,Check-Out,Kari Conner,kenneth05@example.com,001-587-411-0129x8501,4516133291560777,2024-07-22 +Resort Hotel,1,55,2017,June,23,5,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,236.0,179.0,0,Transient,52.91,0,1,Canceled,Michelle Thomas,tmunoz@example.org,001-797-697-7019x942,3517593288525516,2024-12-31 +Resort Hotel,0,14,2017,November,45,5,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,180.0,179.0,0,Group,50.72,0,0,Check-Out,Peter Campbell,keithgeorge@example.com,+1-673-340-5599x583,36418208063273,2024-04-09 +City Hotel,0,1,2017,October,41,12,0,2,1,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.24,0,0,Check-Out,Dawn Daniel,rodriguezerika@example.com,584-921-0090x90554,4915432501703,2024-07-30 +City Hotel,0,141,2017,November,47,19,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.99,0,1,Check-Out,Eric Smith,cbell@example.com,775-315-1122,180013353778397,2024-09-09 +City Hotel,0,39,2017,April,18,30,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,9.0,179.0,0,Transient,239.41,0,2,Check-Out,David Bryant,kathryn30@example.org,001-727-742-8016x92007,4569884878602384,2025-06-15 +Resort Hotel,0,55,2017,March,11,14,2,4,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,144.05,0,1,Check-Out,Nathan Ellison,johnsonamanda@example.com,666-653-3893,2230714458927542,2025-11-29 +City Hotel,0,111,2017,July,29,17,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,105.94,0,1,Check-Out,Victoria Hobbs,denise32@example.org,9266295743,4137752675164259,2024-06-30 +City Hotel,0,49,2017,August,32,9,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.19,0,1,Check-Out,Jeffrey Ellis,derek04@example.org,(969)575-1085x4455,4817525940900278,2026-01-15 +City Hotel,0,169,2017,April,17,22,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,3,No Deposit,10.0,179.0,0,Transient,215.1,0,1,Check-Out,Mr. Robert Cooper Jr.,nicolemarshall@example.org,794-263-5179x631,30486531595069,2026-01-28 +City Hotel,0,210,2017,May,20,15,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,201.86,0,0,Check-Out,Catherine Griffin,eric48@example.com,839.918.5902,3516112711394761,2024-07-10 +City Hotel,1,1,2017,December,51,20,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,1,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,103.1,0,1,Canceled,Jessica Calhoun,gayjames@example.com,352-994-1127x78169,4519389358060419,2024-11-15 +Resort Hotel,0,155,2017,March,11,9,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,251.86,0,2,Check-Out,Lisa Lawrence,kennethsmith@example.net,514.670.6434x0120,5254397623591080,2025-10-15 +Resort Hotel,1,36,2017,May,19,6,1,5,2,2.0,0,HB,ESP,Online TA,Direct,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient,207.1,0,0,No-Show,Julia Ruiz,donaldbrown@example.org,(901)469-1631,379593406546405,2025-02-26 +Resort Hotel,1,95,2017,November,45,8,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,192.0,179.0,0,Transient,82.77,0,0,No-Show,Gary Scott,patricia87@example.com,+1-406-922-7573x7780,588699217216,2025-10-10 +City Hotel,0,43,2017,July,27,8,1,3,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.44,0,0,Check-Out,Edward Jones,calvinhudson@example.org,001-348-727-3310,4748656222288,2026-01-06 +City Hotel,1,0,2017,November,44,4,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,228.0,0,Transient,43.57,0,0,Canceled,Brian Bishop,robrien@example.net,+1-883-239-1034x0055,4646519796235,2025-04-22 +Resort Hotel,1,158,2017,April,15,9,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,199.48,0,1,No-Show,Miranda Perkins DDS,gtorres@example.org,557.891.9993x1140,6536361389077997,2024-06-15 +City Hotel,0,0,2017,January,5,29,2,2,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,129.62,1,1,Check-Out,Zachary Stark,briannarodgers@example.org,9044632081,30120188015945,2024-11-17 +City Hotel,0,12,2017,January,5,29,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Transient,118.97,0,0,Check-Out,Tonya Graham,elliottryan@example.com,305-782-1706x15569,30311485352806,2026-03-02 +City Hotel,0,129,2017,January,3,19,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,169.05,0,1,Check-Out,Faith Ritter,crystalvasquez@example.net,493.907.2950,180080260521723,2024-10-17 +City Hotel,0,108,2017,April,15,13,2,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,8.0,179.0,0,Transient,4.37,0,1,Check-Out,Lauren King DVM,wwu@example.com,525.978.7560x285,4021146194913199806,2025-09-14 +City Hotel,1,0,2017,July,28,13,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,90.7,0,1,No-Show,Alyssa Hernandez,alexanderyang@example.org,(369)389-5915x70327,675997295190,2025-10-19 +City Hotel,0,140,2017,August,32,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,28.0,179.0,0,Transient,98.76,0,0,Check-Out,William Mitchell,friley@example.net,+1-308-829-4129x675,38981663972898,2025-08-10 +Resort Hotel,0,19,2017,January,2,13,0,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,45.88,1,0,Check-Out,Larry Henderson,johnlewis@example.net,6023101945,3599762077408546,2025-08-28 +City Hotel,0,0,2017,January,4,20,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.0,0,1,Check-Out,Hannah Wilson,april74@example.org,637-619-3100x29503,3567716330709858,2025-09-23 +Resort Hotel,1,3,2017,April,16,19,1,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Canceled,Veronica Ortiz,ashaw@example.org,(656)464-3804,3593098094787158,2024-11-06 +City Hotel,1,23,2017,April,14,5,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,206.41,0,1,Canceled,Brandy Anderson,gbell@example.com,+1-646-549-1205x670,4971320681426903,2024-05-27 +Resort Hotel,0,2,2017,January,3,14,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,132.01,0,3,Check-Out,Shawna Brown,cbailey@example.com,(564)614-6933x80971,3556761698025961,2025-11-21 +City Hotel,0,0,2017,November,46,17,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,1,No Deposit,13.0,175.0,0,Transient-Party,103.78,0,1,Check-Out,Julie Sandoval,robinsoncharles@example.com,344-709-8649x10394,3544531594212715,2025-01-24 +City Hotel,0,88,2017,February,7,15,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.1,0,0,Check-Out,David Johnson,howardjames@example.com,+1-535-941-0069x858,4193194465674158,2025-07-05 +City Hotel,0,46,2017,March,11,12,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,B,0,No Deposit,81.0,179.0,0,Transient,104.13,0,0,Check-Out,David Gray,jessica96@example.net,+1-772-590-6439x232,2720858808341925,2025-05-06 +Resort Hotel,0,154,2017,April,15,9,1,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,1,No Deposit,364.0,179.0,0,Transient,105.7,1,0,Check-Out,Carlos Reid,wilsonanthony@example.org,868-553-5136x17803,372498991845518,2025-11-03 +Resort Hotel,0,0,2017,December,50,11,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,4.79,0,0,Check-Out,David Lewis,nixonalyssa@example.org,307-781-5046,30248035268761,2025-11-23 +City Hotel,0,56,2017,July,29,21,2,3,1,0.0,0,BB,RUS,Offline TA/TO,Corporate,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient-Party,100.62,0,0,Check-Out,Michael Stokes,qdaniel@example.com,597.667.3848,4628407664576156893,2024-11-07 +City Hotel,0,38,2017,April,15,10,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.02,0,1,Check-Out,Michelle Kerr,nsullivan@example.com,958.573.1794,2502978213273499,2024-12-26 +City Hotel,0,91,2017,April,14,4,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,128.7,0,1,Check-Out,Jason Wong,morgan40@example.net,293-533-7649x74828,2248452891871551,2024-06-01 +City Hotel,0,1,2017,March,9,2,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,E,0,No Deposit,12.0,179.0,0,Transient,202.36,0,3,Check-Out,Jesus Sawyer,nicole37@example.org,+1-225-576-8787x6975,3509035267675615,2025-10-24 +Resort Hotel,0,6,2017,January,4,26,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,213.43,1,0,Check-Out,Scott Marsh,rangelashley@example.org,7927249391,370741468569463,2025-12-26 +Resort Hotel,0,154,2017,September,39,25,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,248.0,179.0,0,Transient,101.22,1,1,Check-Out,Mario Clark,michelle80@example.net,3839462204,4831956572858538,2024-11-23 +City Hotel,0,12,2017,March,12,22,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,140.33,0,1,Check-Out,Katherine Boone,angela96@example.org,001-599-974-4829x51550,676185631279,2024-04-03 +Resort Hotel,1,155,2017,September,38,20,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,75.0,179.0,0,Transient,111.14,0,0,Canceled,Katherine Chang,robert08@example.com,001-879-226-9681x10201,4609601692517649787,2025-02-02 +City Hotel,1,16,2017,October,42,15,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,87.53,0,1,Canceled,James Jones,melissatorres@example.org,+1-490-831-3670,38879550895018,2024-03-27 +City Hotel,0,99,2017,March,13,31,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.92,0,2,Check-Out,Elizabeth Dean,coryduran@example.org,+1-651-871-6020x07751,180054324147122,2025-07-31 +City Hotel,0,2,2017,April,14,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,137.91,1,1,Check-Out,Kayla Bennett,patricia97@example.com,(732)936-0326x297,2239464516336788,2025-12-20 +City Hotel,0,0,2017,October,42,20,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,243.0,0,Transient,43.84,0,0,Check-Out,Gabriel Whitaker,courtneyanderson@example.org,639.720.3435x81142,2643363375815942,2024-06-18 +City Hotel,1,21,2017,September,39,23,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.91,0,1,Canceled,Timothy Martin,cooperjuan@example.com,(315)531-5788x6849,213196702376293,2025-11-25 +Resort Hotel,0,2,2017,July,28,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,57.17,0,2,Check-Out,Melanie Thompson,janeclarke@example.net,806.334.3874,6011390067813641,2025-06-04 +City Hotel,0,13,2017,April,15,9,2,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Group,107.51,0,1,Check-Out,Todd Melendez,susan75@example.com,(337)854-2804,4353209222057,2024-08-30 +City Hotel,0,27,2017,December,50,9,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.97,0,0,Check-Out,Kimberly Reynolds,kristinamoreno@example.com,001-857-805-5455,346654125026226,2025-11-15 +City Hotel,0,143,2017,May,18,5,1,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,223.23,0,1,Check-Out,Timothy Flowers,grahammaxwell@example.com,249.998.6313x825,4569390378034953,2025-05-16 +City Hotel,0,17,2017,February,6,7,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,148.96,0,0,Check-Out,Jeanette Nielsen,lopezbailey@example.org,8232131035,2294633393858427,2024-10-11 +Resort Hotel,1,208,2017,April,14,2,1,5,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,192.53,0,1,Check-Out,Paige Thompson,rbowman@example.com,386-939-4920x16939,4387563238302865,2025-12-02 +Resort Hotel,0,98,2017,August,35,31,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,185.0,179.0,60,Transient-Party,87.02,0,0,Check-Out,Brooke Schwartz,davidwashington@example.org,325-845-7285x952,371052575191442,2025-11-16 +Resort Hotel,0,1,2017,April,16,20,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,158.0,179.0,0,Transient-Party,4.4,0,1,Check-Out,Donna Stephenson,lopezkaren@example.org,(735)599-7035x8780,4034247595086835,2025-01-27 +City Hotel,0,42,2017,November,45,6,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.28,0,2,Check-Out,Andrew Miller,davidthomas@example.net,262.404.4288x41377,4549959156789481119,2025-04-14 +City Hotel,0,108,2017,August,32,5,1,4,3,0.0,0,BB,CHE,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,81.67,0,0,Check-Out,Michael Olsen,astafford@example.net,(461)317-9807x6127,3548899235828678,2024-11-03 +Resort Hotel,0,201,2017,August,31,1,2,5,2,0.0,0,Undefined,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,83.0,179.0,0,Transient,103.08,0,0,Check-Out,Sharon Stevens,ericbriggs@example.net,(560)589-6139,5254356579692821,2025-04-11 +Resort Hotel,0,203,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,73.11,0,0,Check-Out,Nicole Jackson,aliciabeltran@example.net,(939)383-5219x1032,4792999900026771,2024-11-03 +City Hotel,0,15,2017,January,3,13,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,108.74,0,0,Check-Out,Tabitha Clark,rpope@example.org,326.486.3471x64059,6559311881414935,2025-07-26 +City Hotel,1,44,2017,November,45,4,1,5,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.72,0,2,Canceled,James Kim,ojohnson@example.com,680-568-5660,4257137914033636,2026-03-08 +City Hotel,0,123,2017,May,19,12,0,2,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,80.66,1,0,Check-Out,Richard Noble,brucebradford@example.org,3858087680,676128665707,2025-11-19 +City Hotel,0,258,2017,March,11,12,1,5,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,110.96,0,0,Check-Out,Kimberly Taylor,fischeralexandria@example.org,001-455-537-4180x33337,340367450090511,2024-05-16 +Resort Hotel,0,7,2017,March,12,23,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,C,0,No Deposit,90.0,179.0,0,Transient-Party,0.0,0,0,Check-Out,Michaela Strickland,pachecopaul@example.net,380.726.0992x348,374433832278668,2025-02-12 +City Hotel,0,49,2017,April,17,21,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,159.33,0,1,Check-Out,Charles Ford,pwells@example.com,887-343-9037x942,4607310828720336,2025-10-02 +City Hotel,1,225,2017,April,17,26,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,124.81,0,0,Canceled,Allen Sanchez,jacob23@example.net,(401)752-9509x9612,4847818055949,2024-09-13 +City Hotel,1,46,2017,April,15,9,2,4,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,213.45,0,0,Canceled,Xavier Webb,olee@example.com,+1-534-738-5497x0425,4728314995036538,2024-08-07 +City Hotel,0,37,2017,January,2,4,1,7,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,126.68,0,1,Check-Out,Sandra Kim,zharris@example.net,656-751-8672x2666,639019952121,2026-01-12 +Resort Hotel,0,16,2017,June,25,20,2,5,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,D,A,0,No Deposit,258.0,179.0,0,Transient-Party,101.72,0,1,Check-Out,Patrick Russell,dustin78@example.com,662.202.5159x2679,060484210418,2026-01-23 +City Hotel,0,360,2017,February,9,28,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,89.25,0,1,Check-Out,Crystal Walker,kmartin@example.net,(464)810-8614,6011319920602776,2024-03-30 +City Hotel,0,59,2017,April,16,16,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,141.84,0,1,Check-Out,Hannah Berg,lijoseph@example.net,+1-446-656-2156x1761,3527206062068995,2025-05-30 +Resort Hotel,0,0,2017,November,45,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,I,1,No Deposit,242.0,179.0,0,Transient-Party,4.12,1,1,Check-Out,Tina Padilla,randydavis@example.net,672-664-8813x7044,4801458859318,2025-06-25 +Resort Hotel,0,253,2017,April,16,13,2,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Check-Out,Mr. Jeffery Lee,stephanie23@example.net,(365)559-6982x2500,348401629137739,2025-07-22 +Resort Hotel,0,138,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,223.0,0,Transient-Party,41.42,0,2,Check-Out,Shannon York,changdeborah@example.com,+1-584-454-4411x5477,340704250238082,2025-10-03 +City Hotel,1,12,2017,January,4,22,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.65,0,1,Canceled,Matthew Wang,perkinschristopher@example.org,001-502-920-4927,3595154646526004,2025-10-18 +City Hotel,1,3,2017,November,44,1,0,4,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,203.0,210.0,0,Transient,235.68,0,0,Canceled,Gary Morgan,blankenshipkevin@example.com,001-207-503-8183x790,4629812547224,2025-08-02 +City Hotel,1,439,2017,November,48,29,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,87.06,0,0,Canceled,Kevin Robinson,jenniferbarton@example.net,444-654-8202x49272,3533836831305013,2025-01-27 +City Hotel,1,182,2017,March,10,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,135.37,0,2,Canceled,Patty Walker,tylersmith@example.org,2052918684,3598669693563219,2025-12-17 +Resort Hotel,1,36,2017,January,3,13,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,51.57,0,1,Check-Out,Samantha Jackson,sarah02@example.net,(976)646-8815,4008822998406,2026-01-18 +City Hotel,0,121,2017,November,47,18,0,2,1,1.0,0,BB,DEU,Aviation,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,198.78,0,0,Check-Out,Tim West,jeffreyhughes@example.org,001-412-993-4307,4219782578704,2026-01-05 +Resort Hotel,0,28,2017,April,15,8,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,228.0,1,1,Check-Out,Emily Martin,fmitchell@example.org,(356)321-7970x9030,3598907795037181,2025-08-03 +City Hotel,1,32,2017,March,11,18,2,2,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,191.61,0,3,Canceled,Phillip Maddox,iibarra@example.com,211-978-9517x6930,4965324399288801,2024-06-02 +City Hotel,1,201,2017,April,14,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,228.04,0,2,Canceled,George Odonnell,ppearson@example.net,6767521272,3501056842680084,2025-05-19 +Resort Hotel,0,1,2017,November,44,2,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,1,No Deposit,289.0,179.0,0,Transient,48.49,0,1,Check-Out,Molly Graves,ericajones@example.org,(899)559-2114,30258483162317,2025-01-12 +City Hotel,0,18,2017,June,24,14,0,2,1,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,141.23,0,0,Check-Out,Kent Cole,lrios@example.org,+1-712-593-2314x52997,6011226777001186,2024-05-15 +City Hotel,1,39,2017,October,42,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,82.33,0,1,No-Show,Judith Johnson,ryanmurphy@example.org,001-688-991-4816x4974,3517457481793612,2025-11-13 +Resort Hotel,0,1,2017,November,47,20,1,2,1,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,0.4,0,0,Check-Out,Jason Maddox,mrose@example.com,(625)617-4773x593,3562378801866587,2025-12-22 +City Hotel,1,10,2017,January,4,23,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.07,0,2,No-Show,Tiffany Ward,brittanywalker@example.net,686.480.4403x642,180028646721616,2024-09-10 +City Hotel,0,37,2017,June,25,21,0,2,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,74.0,179.0,0,Contract,134.3,0,0,Check-Out,Marcia Lin,jonesrobin@example.net,659.617.2576,2302585659542907,2025-08-04 +Resort Hotel,0,377,2017,February,6,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,233.0,179.0,0,Transient-Party,108.59,0,0,Check-Out,Matthew Hall,susan40@example.com,(665)298-4364x99219,6553805700383391,2026-03-20 +Resort Hotel,1,105,2017,November,48,25,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,3,No Deposit,272.0,179.0,0,Transient-Party,63.65,0,0,Canceled,Richard Russo,smolina@example.net,001-659-910-6564x0657,501890185579,2025-08-22 +City Hotel,1,12,2017,November,47,21,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.57,0,0,Canceled,Adam Maynard,oharrell@example.net,9915022032,501899163916,2024-09-05 +Resort Hotel,1,12,2017,April,14,1,2,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,174.99,0,0,Canceled,Michael Hurst,domingueztyler@example.com,+1-590-780-8999x05403,6527329879795015,2025-03-07 +City Hotel,1,84,2017,November,48,26,2,5,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,181.0,179.0,0,Transient,0.96,0,0,Canceled,Jessica Reese,timothy90@example.com,001-281-612-5154,4915465378812098476,2025-05-29 +City Hotel,0,312,2017,June,24,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,79.52,0,0,Check-Out,Michael Hanson,johnfox@example.org,001-377-346-8625x0101,639044521438,2024-07-18 +Resort Hotel,0,45,2017,January,4,21,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,216.27,1,1,Check-Out,Michael Campbell,pamelawright@example.org,+1-505-884-8474,4987509404103177,2024-04-22 +City Hotel,1,210,2017,February,9,29,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,87.95,0,0,Canceled,Heather Marshall,angelrivera@example.com,5916540876,4755847230518436,2024-07-12 +City Hotel,1,195,2017,May,18,3,0,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.21,0,1,Canceled,Alyssa Hopkins,zhernandez@example.net,+1-397-647-0533x20122,4216503558586405,2025-08-12 +Resort Hotel,0,189,2017,April,17,25,1,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,F,3,No Deposit,242.0,179.0,0,Transient,233.16,1,2,Check-Out,Christopher Byrd,warnersteven@example.com,(518)360-2245,3533218761482296,2024-07-17 +City Hotel,0,13,2017,December,50,15,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.8,0,0,Check-Out,Erik Pittman,mcardenas@example.org,001-381-872-8376,4789457788843603384,2024-05-03 +City Hotel,1,153,2017,November,48,30,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,131.75,0,0,Canceled,Diana Moore,gilmorejennifer@example.net,001-405-320-8673x238,4415778738511000300,2024-09-26 +City Hotel,0,188,2017,November,44,2,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,236.0,0,Transient-Party,52.59,0,0,Check-Out,John Johnson,glen18@example.com,788.843.0011x646,4878255593870935,2024-11-05 +City Hotel,0,8,2017,December,50,17,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient-Party,134.9,0,3,Check-Out,Erica Brown,mikeguzman@example.com,308.715.0720x809,5310246245416931,2025-02-16 +Resort Hotel,0,50,2017,November,46,12,2,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.03,0,2,Check-Out,Nathan Perez,biancadavid@example.net,810.960.5636x0569,4760821882334649558,2024-06-15 +Resort Hotel,1,1,2017,August,33,17,1,2,2,0.0,0,HB,PRT,Groups,Direct,0,1,0,C,E,0,Non Refund,12.0,179.0,0,Transient,85.33,0,0,Canceled,Laura Johnson,icampbell@example.com,(576)820-3134,3587205704683663,2024-12-20 +City Hotel,0,1,2017,November,44,4,2,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,K,1,No Deposit,10.0,179.0,0,Transient,119.46,0,2,Check-Out,Nathan Wagner,jessicarichards@example.net,+1-630-244-8107x83784,3561348867941120,2024-12-22 +City Hotel,1,56,2017,November,45,8,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,94.13,0,0,Canceled,Peter Thomas,laurenthomas@example.net,+1-691-953-6000x26660,4029499318447,2025-09-21 +City Hotel,0,104,2017,January,4,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,112.46,0,1,Check-Out,Henry Dunn,robertmcdowell@example.com,604.671.7143x32120,376784051426554,2025-06-09 +Resort Hotel,0,86,2017,March,13,25,2,3,3,1.0,0,FB,,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,199.05,0,1,Check-Out,Steven Kelley,kevin30@example.com,(646)426-6330x693,630416690166,2024-09-23 +Resort Hotel,0,13,2017,November,46,18,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,44.55,0,1,Check-Out,Mrs. Megan Potts MD,meadowsmelanie@example.com,001-459-484-9803x5022,213157789051175,2024-04-24 +City Hotel,0,58,2017,March,12,22,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.31,0,1,Check-Out,Jim Monroe,diana89@example.com,001-927-537-2020x32760,6575406140004582,2024-12-14 +City Hotel,1,58,2017,November,47,22,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,139.68,0,1,No-Show,Jamie Smith,jonesjeremiah@example.com,(305)957-6420x7092,3553392493282590,2025-08-05 +City Hotel,0,49,2017,November,47,21,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,22.0,179.0,0,Transient-Party,91.61,0,1,Check-Out,Joanna Martin,kglover@example.net,(286)802-4925x586,2572401500769900,2024-12-31 +City Hotel,0,47,2017,April,16,16,2,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,229.31,0,1,Check-Out,Andrea Flores,uhinton@example.net,9473239614,4761123569499286309,2025-03-19 +City Hotel,0,222,2017,December,50,9,2,5,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,153.0,179.0,0,Transient,98.36,0,2,Check-Out,Lee Keller,ipowell@example.org,+1-461-511-5259x941,4201077825800268,2024-05-15 +City Hotel,0,0,2017,October,42,16,0,2,1,0.0,0,SC,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,67.0,0,Transient,75.67,0,0,Check-Out,Michael Perkins,vlee@example.net,001-929-791-5725,3525415161810072,2024-07-12 +City Hotel,0,2,2017,January,4,26,0,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,111.99,0,0,Check-Out,Heather Simpson,bcollier@example.com,(842)748-1339x643,4329379119586433864,2025-01-23 +City Hotel,1,36,2017,September,37,9,1,2,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,101.56,0,0,Canceled,Lisa Wood,ellisandrew@example.com,(648)355-2581x2822,4553838108810025,2025-12-10 +City Hotel,0,0,2017,October,42,17,1,0,1,0.0,0,SC,,Undefined,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,0.0,0,0,Check-Out,Steven Nguyen,meghan26@example.com,264-824-7735,3540244927939855,2024-07-14 +City Hotel,0,49,2017,June,26,27,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.98,0,1,Check-Out,Melissa Hughes,manderson@example.org,001-947-537-8213x73702,2617010853581080,2024-07-18 +City Hotel,1,163,2017,November,48,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,103.69,0,1,Canceled,Lynn Ramos,olivia42@example.org,760-713-6252,582011282701,2024-06-21 +Resort Hotel,0,1,2017,March,11,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,151.18,0,1,Check-Out,Jacob Wu,alexandergriffin@example.com,(450)543-1612x61638,4227322442789597,2026-02-11 +City Hotel,0,1,2017,June,25,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,1,No Deposit,14.0,71.0,0,Transient-Party,87.53,0,1,Check-Out,Stephanie Hansen,zberry@example.com,001-216-320-3438,502075862941,2024-12-21 +City Hotel,0,421,2017,May,20,17,0,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,123.95,0,0,Check-Out,Teresa Norris,alexa34@example.org,+1-497-753-3842x95193,4186424519158,2024-07-08 +City Hotel,0,0,2017,April,18,30,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,150.1,0,0,Check-Out,Samuel Prince,heather77@example.net,(795)666-1147x72373,6576983217498813,2024-04-29 +Resort Hotel,0,38,2017,July,27,1,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,236.69,0,3,Check-Out,Timothy Dunlap,ofrancis@example.com,540.735.2389x54562,571664767100,2026-03-08 +Resort Hotel,0,3,2017,November,46,15,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient-Party,41.53,0,1,Check-Out,Patricia Brewer,prussell@example.com,(429)535-3092x9908,581198068875,2024-05-21 +City Hotel,0,150,2017,April,17,25,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,252.0,0,1,Check-Out,Patricia Jones,awilson@example.com,714-850-9828,30315043162136,2024-12-30 +City Hotel,0,0,2017,June,24,12,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,96.21,0,0,Check-Out,Anne Jones,traci77@example.com,(413)871-9068,4116813572711019047,2024-04-01 +City Hotel,0,13,2017,June,25,23,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,150.32,0,0,Check-Out,Cathy Evans,pcharles@example.com,(561)263-6378x257,6011260248997490,2025-11-21 +City Hotel,1,101,2017,August,31,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,58,Transient,85.31,0,0,Canceled,Katherine Page,kingmichael@example.org,+1-500-767-8961x663,4612810326107806,2024-07-26 +Resort Hotel,0,16,2017,March,10,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,3,No Deposit,240.0,179.0,0,Transient,64.41,1,1,Check-Out,Anthony Harris,pkramer@example.net,+1-914-760-3692x78794,30135226938114,2025-03-04 +Resort Hotel,0,171,2017,November,48,29,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,63.95,1,0,Check-Out,Mary Wells,michaelmiller@example.net,+1-707-257-8250x459,4725998703372798,2025-03-03 +Resort Hotel,0,39,2017,November,46,13,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,242.0,179.0,0,Transient,48.18,1,1,Check-Out,Marcus Baker,millerdonna@example.com,994-489-7241x213,5275697954011599,2024-04-29 +City Hotel,0,134,2017,November,48,28,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient,78.4,1,1,Check-Out,Jose Hampton,tara29@example.org,+1-607-816-9186x6435,4351852700555015,2024-09-05 +City Hotel,1,409,2017,March,13,30,0,1,1,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,235.38,0,1,Canceled,Trevor Lopez,hbarnett@example.net,743-356-5496,3506804210794192,2025-02-27 +Resort Hotel,0,210,2017,May,19,11,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,378.0,179.0,0,Contract,97.79,0,0,Check-Out,Melinda Allen,richardgreen@example.net,(548)689-3660x3711,676125822731,2024-10-11 +City Hotel,1,94,2017,January,3,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,135.18,0,1,Canceled,Anna Jackson,ingramjoseph@example.com,(630)446-4298x58258,4197656125416,2024-03-28 +City Hotel,0,0,2017,July,29,19,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient-Party,1.66,0,0,Check-Out,Sherry Mitchell PhD,ocalhoun@example.org,7392134021,349154825758647,2026-02-02 +Resort Hotel,0,155,2017,November,48,29,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,221.0,0,Transient-Party,38.71,0,0,Canceled,Curtis Mejia,brandyfrench@example.org,810-866-7173x953,342034146313321,2024-09-16 +City Hotel,0,147,2017,January,4,22,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,117.91,0,0,Check-Out,Mathew Bauer,colleenford@example.com,(204)248-2775x41927,3572444147315016,2024-08-31 +City Hotel,1,3,2017,February,7,11,0,2,2,0.0,0,SC,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,76.85,0,0,Canceled,David Thompson,emmacruz@example.net,(965)758-3837x92989,3517417923833723,2024-08-18 +Resort Hotel,0,44,2017,April,15,9,2,5,2,0.0,0,HB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,128.95,0,0,Check-Out,Samantha Santana,bakerchristopher@example.com,(744)575-9808x8071,376651858611573,2025-03-05 +Resort Hotel,1,213,2017,April,17,22,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,C,G,2,No Deposit,242.0,179.0,0,Transient,252.0,0,1,No-Show,Ronald Martin,leemary@example.com,697-453-1397x5131,2700496991740522,2024-10-16 +City Hotel,0,20,2017,April,17,23,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.76,1,0,Check-Out,Evan Carroll,christopher12@example.org,+1-956-277-8401x529,4993258029732174,2025-07-12 +Resort Hotel,1,211,2017,December,49,8,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,102.84,0,0,Canceled,Diane Roth,jonesbonnie@example.com,771.477.4857,4571906548696219,2025-01-07 +City Hotel,1,152,2017,February,6,8,0,2,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,161.1,0,0,Canceled,Dawn Taylor,oavery@example.com,+1-303-446-5706,4114522537277913,2026-02-01 +City Hotel,0,1,2017,July,30,26,1,2,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient-Party,63.13,0,0,Check-Out,Cynthia Moore,gregory37@example.net,+1-450-383-4741x167,4511629309883502,2025-10-05 +City Hotel,1,20,2017,March,11,9,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,223.92,0,1,Canceled,Adam Spencer,sara76@example.org,+1-577-914-4563,344939280098108,2025-12-17 +Resort Hotel,0,131,2017,March,9,2,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,60,Contract,111.09,0,2,Check-Out,Tina Harrington,cookamanda@example.com,562-447-0334x753,6546263352825972,2025-04-10 +City Hotel,0,1,2017,December,51,22,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,173.22,0,1,Check-Out,Eric Richmond,gtate@example.com,001-611-292-3444x5715,4621967505845082,2024-10-30 +Resort Hotel,0,267,2017,September,37,10,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,Non Refund,33.0,179.0,0,Transient,37.0,0,0,Check-Out,Deborah Shaw,smithdaniel@example.org,001-369-805-9543x46992,4392495399344,2024-10-14 +City Hotel,1,129,2017,December,2,30,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,117.3,0,0,Canceled,Barry Lewis,melanie12@example.com,001-418-740-2115x5985,371039713816469,2026-03-06 +Resort Hotel,1,145,2017,April,14,4,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient-Party,210.8,0,1,Canceled,Loretta Holt,estradatimothy@example.net,655.319.6710x145,4008003976831036634,2025-11-12 +City Hotel,0,115,2017,May,19,8,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,104.92,0,1,Check-Out,Jessica Perry,yolson@example.net,+1-987-372-4908x07442,4893466343992835,2024-11-05 +Resort Hotel,0,43,2017,November,48,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,299.0,179.0,0,Transient,49.99,0,0,Check-Out,David Weiss,austinpaul@example.com,(360)440-5837x74682,6011318831881263,2025-12-04 +City Hotel,1,44,2017,January,5,31,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.28,0,2,Canceled,Bruce Johnson,michael38@example.org,+1-726-418-6918x7378,3581794879950284,2024-07-02 +City Hotel,0,4,2017,September,37,15,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,133.38,0,3,Check-Out,Brandon Dominguez,hperez@example.org,747.457.9651,213127618158335,2025-02-16 +City Hotel,0,14,2017,November,47,20,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.26,0,0,Check-Out,Bradley Walker,tcarson@example.com,393.732.5638x44091,30246185006114,2024-12-15 +City Hotel,1,96,2017,February,6,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,41,Transient,116.36,0,0,Canceled,Kevin Torres,mjohnson@example.org,940.460.9729x6007,2252711827614176,2024-12-17 +Resort Hotel,0,45,2017,August,32,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,237.0,179.0,0,Transient,56.71,0,2,Check-Out,Luke Sampson,harrisonstephen@example.net,854.607.6896,6505274426507552,2025-06-16 +City Hotel,1,166,2017,June,22,2,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,103.11,0,0,Canceled,Joshua Rice,john96@example.com,001-247-653-8954,3585830021029670,2025-02-08 +City Hotel,1,0,2017,October,41,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient,105.58,0,0,No-Show,James Jenkins,nelsonkyle@example.org,+1-891-607-9073,4014935254877,2024-09-13 +City Hotel,0,34,2017,August,32,5,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.6,0,0,Check-Out,Brooke Wilson,xgibbs@example.com,672.634.2987,2277904507353170,2025-06-07 +Resort Hotel,1,13,2017,August,32,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,96.63,0,0,Check-Out,Megan Melton,thompsonkaren@example.org,(852)900-8345,4308247139292492,2025-07-29 +City Hotel,0,102,2017,April,17,24,2,1,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,D,C,0,No Deposit,11.0,179.0,0,Transient,110.56,0,1,Check-Out,Christian Lambert,markbarrera@example.org,7233512448,3550586790418483,2024-05-29 +Resort Hotel,0,138,2017,October,40,3,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,47.55,1,0,Check-Out,James Hoffman,aaronmontgomery@example.com,(740)349-6117,345168679296078,2024-08-31 +City Hotel,0,26,2017,February,7,13,2,3,3,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,167.31,0,1,Check-Out,Christine Ramos,matthew67@example.net,001-803-999-9800x106,36042179158837,2024-09-01 +City Hotel,1,35,2017,June,23,9,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,82.0,179.0,0,Transient,0.07,0,0,Canceled,Philip Ibarra,smiththomas@example.net,6398161888,4116034856906,2024-04-07 +Resort Hotel,1,164,2017,November,48,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,Refundable,11.0,223.0,0,Transient-Party,97.24,0,0,Canceled,Katherine Frey,gwilliams@example.org,(932)646-8449,30328183178853,2025-10-21 +City Hotel,0,37,2017,June,25,19,2,5,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,F,1,No Deposit,35.0,179.0,0,Contract,89.81,0,0,Check-Out,Michelle Dominguez,joycestephen@example.org,(962)311-0556x77200,373396837129791,2026-01-05 +City Hotel,1,90,2017,January,2,7,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.83,0,0,Canceled,John Smith,cory16@example.org,(368)655-1041x45882,2268702091827703,2025-03-18 +City Hotel,0,144,2017,November,45,10,0,3,2,0.0,0,BB,AUT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,73.97,0,0,Check-Out,Melissa Winters,fjones@example.org,001-288-674-5006x3215,4005712587811610,2024-12-05 +City Hotel,0,28,2017,July,28,11,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,76.21,0,0,Check-Out,Brian Hunter,brianwatson@example.com,460.816.3350x9899,36428150572718,2025-02-12 +City Hotel,0,114,2017,July,27,6,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,105.99,0,2,Check-Out,Donna Morris,michellecole@example.net,(823)327-6908x39079,4059682484463259,2025-03-15 +City Hotel,1,0,2017,April,15,10,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.75,0,2,Canceled,Ashley Bowen,williamsjessica@example.com,902.693.0465x625,213177706065462,2026-01-12 +City Hotel,0,8,2017,August,32,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,36.0,179.0,0,Transient,108.88,1,1,Check-Out,Allison Clay,hicksricky@example.net,567.481.7837,180093037488647,2024-10-10 +Resort Hotel,0,0,2017,December,52,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,243.0,179.0,0,Transient,114.03,0,0,Check-Out,Troy Baker,christopher62@example.net,(205)377-6604,341593750501779,2024-09-22 +City Hotel,0,12,2017,April,14,8,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,1,A,A,1,No Deposit,15.0,45.0,0,Transient-Party,64.86,0,0,Check-Out,Alexis Snyder,lisa94@example.com,808.404.3549x3715,3599885468587899,2026-01-02 +Resort Hotel,1,102,2017,November,46,13,2,2,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,119.27,0,2,Canceled,Joseph Carrillo,ncampbell@example.org,+1-245-907-3168,3590915078657599,2024-05-05 +Resort Hotel,1,14,2017,September,35,1,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Transient,45.82,0,0,Canceled,Ronald Crawford,tyler23@example.org,688-982-8401x7854,4136618046660765,2024-07-05 +Resort Hotel,0,256,2017,March,10,8,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,378.0,179.0,0,Transient-Party,101.04,1,0,Check-Out,Michael Howard,townsendjames@example.com,001-886-422-9731,4226318000434122374,2025-03-29 +Resort Hotel,0,1,2017,June,26,29,0,1,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,167.8,1,0,Check-Out,Judy Perez,iperry@example.com,260.511.1617,5401775974030695,2025-04-26 +City Hotel,0,37,2017,April,14,6,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,129.23,0,1,Check-Out,Nicole Clark,allisonhall@example.com,249.762.6189,4829295020088286810,2026-01-17 +Resort Hotel,1,44,2017,April,17,23,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,183.58,0,0,Canceled,Russell Bates,rmartinez@example.org,254-768-7873x168,213172940451552,2024-06-16 +Resort Hotel,0,37,2017,April,17,23,2,5,2,0.0,0,HB,,Groups,Corporate,0,0,0,A,F,1,No Deposit,2.0,179.0,75,Transient-Party,79.75,0,0,Check-Out,Kathy Jones,christopher86@example.org,7154633704,4744964792574164948,2026-01-25 +City Hotel,0,1,2017,July,29,18,0,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,60.0,0,Transient-Party,65.6,0,0,Check-Out,Sarah Garner,stephensbrandi@example.org,001-467-695-0042x73540,213162368362225,2024-12-27 +City Hotel,0,130,2017,September,39,23,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.12,0,2,Check-Out,Emily Oneal,nholmes@example.net,949-505-4353x60021,3528947286143390,2024-11-28 +City Hotel,1,444,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.9,0,0,Canceled,Vanessa Maddox,robert79@example.com,791.252.5083,4289067349271942456,2025-06-25 +City Hotel,1,37,2017,January,2,10,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.7,0,2,Canceled,Olivia Berry,dmiles@example.net,001-463-625-8079x996,180060966585958,2025-10-22 +City Hotel,0,48,2017,April,17,24,2,5,2,0.0,0,HB,NLD,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,236.12,0,0,Check-Out,Raymond Brown,patrick80@example.net,615.893.7741,3574381159206758,2026-02-11 +City Hotel,0,110,2017,December,51,16,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,120.27,1,2,Check-Out,Joel Smith,joanne96@example.com,+1-272-793-3043,30371404007592,2026-03-01 +City Hotel,0,28,2017,October,43,27,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.27,0,2,Check-Out,Diana Sloan,douglas63@example.net,001-486-340-8607x923,213124528523740,2024-05-07 +City Hotel,0,8,2017,July,28,11,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,220.0,0,Transient-Party,50.01,0,0,Check-Out,Tracy Sanders,alicia86@example.net,(784)753-9670,38963045072811,2024-11-25 +Resort Hotel,0,4,2017,March,10,6,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,36.0,179.0,0,Transient-Party,60.83,0,0,Check-Out,Shannon Taylor,yvonne80@example.org,510-321-0015,3544551875710054,2024-12-19 +Resort Hotel,1,33,2017,August,35,30,2,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,77.05,0,0,Canceled,Colleen Murray,riveradarren@example.org,972-941-0879x22630,582738959524,2025-02-16 +City Hotel,1,393,2017,September,39,23,1,4,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,1,Non Refund,14.0,179.0,0,Transient-Party,72.75,0,0,Canceled,Brian Maldonado,lauren26@example.com,6035299171,3531646005629029,2024-08-28 +City Hotel,1,3,2017,February,6,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,166.61,0,0,Canceled,Alexa Johnson,figueroaeric@example.org,+1-903-956-1755x9871,4744099668088,2024-08-07 +City Hotel,0,38,2017,November,45,7,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,0,Transient,125.26,0,1,Check-Out,Thomas Hill Jr.,amanda59@example.com,001-629-874-6719x309,2223916181013685,2024-08-16 +City Hotel,1,9,2017,October,42,20,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,41.67,0,0,Canceled,David Robinson,hingram@example.org,683-813-0152x49384,3591384426912181,2025-09-13 +City Hotel,0,98,2017,January,2,4,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,125.74,0,0,Check-Out,Andre Goodwin,michaelbennett@example.org,289-931-6163,343221380135986,2025-07-30 +City Hotel,1,413,2017,November,48,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,103.57,0,0,Canceled,Joseph Henry,qsanchez@example.net,+1-369-467-3631x117,4050111272772001,2025-09-09 +City Hotel,0,0,2017,September,37,14,1,2,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,C,0,No Deposit,187.0,179.0,0,Transient,3.31,0,0,Check-Out,Michael Steele,scottmaddox@example.org,5482326178,349963604479518,2025-10-29 +Resort Hotel,0,3,2017,October,42,18,1,2,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,1,A,D,1,No Deposit,243.0,179.0,0,Transient,45.36,0,0,Check-Out,Lisa Curtis,dmckinney@example.org,925-791-3971x04102,3552912725110870,2024-12-13 +City Hotel,1,195,2017,April,17,25,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,204.09,0,0,Canceled,George Oconnor,athomas@example.net,463-418-8067x47933,3567990299684531,2024-09-02 +City Hotel,0,160,2017,March,9,1,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,85.91,0,1,Check-Out,Katherine Thomas,goldenthomas@example.net,706-807-3662x30709,4958210933080763,2024-06-30 +City Hotel,0,53,2017,November,45,4,0,4,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,118.18,0,2,Check-Out,Erika Weaver,monicabonilla@example.org,(756)923-0812x254,4271619090784373,2024-04-01 +City Hotel,1,93,2017,January,4,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,56.25,0,1,No-Show,Melissa Pierce,lynchmark@example.com,001-403-451-1070,4439800528131895,2025-10-26 +City Hotel,0,7,2017,October,43,26,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.81,0,1,Check-Out,Donald Stewart,cobbdeborah@example.net,394.352.3103x5590,4952925250854203,2025-07-11 +City Hotel,1,199,2017,February,8,17,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,134.08,0,1,Canceled,Christine Hammond,jennysanchez@example.net,+1-528-911-4288x02284,2658670572343888,2025-10-11 +Resort Hotel,0,80,2017,November,47,22,2,5,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient-Party,25.88,1,0,Check-Out,Tina Harrington,ryansteele@example.org,(586)242-3691,213177929092020,2025-01-27 +City Hotel,0,15,2017,January,4,25,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,14.0,229.0,0,Transient,109.32,0,1,Check-Out,Tamara Stone,rhorton@example.com,(599)793-9200x16221,4705280028156931,2025-01-25 +City Hotel,1,326,2017,March,9,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Contract,101.22,0,0,Canceled,Paul Patterson,milleranna@example.net,311.526.1638x487,4424779203650,2025-12-16 +City Hotel,0,14,2017,December,49,3,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,132.02,0,0,Check-Out,Susan Kelley,elewis@example.org,532-876-8715x5782,4960615008886,2024-04-30 +Resort Hotel,0,30,2017,September,38,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,31.0,179.0,0,Transient,35.17,0,0,Check-Out,James Hart DDS,andrewdennis@example.com,+1-758-604-4301x7654,4281864370411536547,2025-02-12 +City Hotel,0,42,2017,June,22,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,109.18,0,1,Check-Out,David Smith,gregoryfoster@example.org,+1-952-285-1350x3292,6552656365536869,2025-03-26 +City Hotel,0,104,2017,March,9,4,2,2,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,E,A,2,No Deposit,16.0,179.0,0,Transient,110.3,0,3,Check-Out,David Scott,rphillips@example.net,802-478-3627x8291,4674044891132044635,2024-10-27 +Resort Hotel,0,11,2017,May,18,3,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient-Party,50.64,0,0,Check-Out,Eric Fisher,montgomerymelissa@example.net,740.979.0488x91835,4700091608884510,2025-11-22 +City Hotel,0,189,2017,May,20,13,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.24,0,1,Check-Out,Kelly Rojas,donnasanchez@example.com,001-620-323-3071,343233539462351,2026-01-20 +City Hotel,1,37,2017,July,27,5,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,115.63,0,0,Canceled,Deborah Long,obrienmatthew@example.com,+1-730-706-1863x9089,6011800355380970,2025-12-21 +City Hotel,0,17,2017,June,23,6,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,K,1,No Deposit,28.0,179.0,0,Transient-Party,151.28,0,0,Check-Out,Brandon Johnson II,lukekim@example.org,224.512.5970,180061588882187,2024-12-28 +City Hotel,1,60,2017,January,2,3,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,141.43,0,0,Canceled,Gregory Jackson,kimberlyreyes@example.com,201.532.4957,4018826096699632,2025-09-15 +City Hotel,0,34,2017,June,23,6,1,0,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,0.0,0,1,Check-Out,James Martinez,jonathanperkins@example.net,(362)472-9927x3874,4532092901964,2024-12-31 +City Hotel,0,46,2017,January,4,21,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,149.05,0,1,Check-Out,Eric Hunt,ylevine@example.org,503.548.1918,4176912307391017,2024-10-12 +Resort Hotel,1,49,2017,April,14,4,3,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,121.99,0,1,Canceled,Ricardo King,oneillshane@example.org,001-627-262-1171x144,3500333692540085,2024-03-27 +City Hotel,0,0,2017,February,8,20,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,78.0,223.0,0,Transient-Party,78.16,0,0,Check-Out,Jeffrey Stephens,nhenderson@example.net,(331)946-5446,213170031618584,2025-04-21 +City Hotel,0,0,2017,November,47,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,81.0,0,Transient,43.35,0,0,Check-Out,Michelle Warner,thompsonallison@example.org,377.833.1526x3015,2253656599586418,2024-09-05 +Resort Hotel,1,17,2017,March,13,27,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,252.0,0,2,Canceled,Angel Ryan,lopezjeffrey@example.com,952-449-6069,4898094497073,2024-12-10 +City Hotel,0,414,2017,March,13,23,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,134.8,1,0,Check-Out,Eric Lowery,chenmaria@example.net,(417)951-7368,2720805173711885,2024-09-18 +City Hotel,0,15,2017,June,23,9,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,1,0,0,A,A,1,No Deposit,14.0,222.0,0,Transient,88.69,0,2,Check-Out,Sherry Jones,zsmith@example.net,895-390-1837,4187956525734836,2025-07-12 +City Hotel,0,33,2017,November,44,1,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,74.0,179.0,0,Transient,83.31,0,1,Check-Out,Carol Goodman,charlesjones@example.net,(778)642-1021,676302272494,2024-05-23 +City Hotel,1,381,2017,May,20,17,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,95.99,0,0,Canceled,Gary Morgan,hannahwright@example.org,795.311.6241x1835,4668444761084592006,2025-10-30 +City Hotel,1,48,2017,June,24,12,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,105.59,0,0,Canceled,Jamie Bell,jimrobinson@example.net,(794)521-8129,4967215628237,2024-10-18 +City Hotel,0,9,2017,November,44,3,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.36,0,2,Check-Out,Patrick Mason,kelleyjonathan@example.net,+1-931-397-0949x10668,4887716082737074,2024-09-13 +Resort Hotel,1,288,2017,June,23,3,1,6,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.48,0,0,Canceled,Jonathon Scott,elizabeth97@example.com,715.882.5026x48903,30446784653361,2025-11-11 +City Hotel,0,149,2017,February,6,3,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,132.05,0,0,Check-Out,Peggy Singleton,barkererin@example.com,990-311-8651x4308,4749011490630302147,2025-11-20 +City Hotel,0,3,2017,November,47,20,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,52.08,1,1,Check-Out,Jesse Hinton,johnmoreno@example.com,535-956-7921,3596641943421144,2024-05-19 +City Hotel,1,38,2017,January,4,22,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,95.92,0,1,Canceled,Christina Wiley,bhernandez@example.com,001-358-557-4170,4907761631159954,2025-02-10 +City Hotel,1,379,2017,March,12,23,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,80.51,0,0,No-Show,Lynn Edwards,odawson@example.org,589-507-6328x3220,2236939936320358,2024-08-20 +City Hotel,0,196,2017,June,22,1,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient-Party,109.63,0,0,Check-Out,Sarah Gomez MD,michellewolf@example.com,001-509-501-4500,30213247144887,2025-03-25 +City Hotel,0,141,2017,September,36,5,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,42.03,0,1,Check-Out,Adam Riddle,rileynicole@example.org,509-339-7152x3753,30459818322051,2025-07-01 +Resort Hotel,1,138,2017,March,9,3,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,167.56,0,1,Canceled,Anna Moses,kylemyers@example.com,4562221093,3586952427524804,2024-06-16 +City Hotel,0,43,2017,June,24,14,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,1,No Deposit,13.0,179.0,0,Contract,65.21,0,1,Check-Out,Brenda Crawford,cassandrapark@example.com,447.674.5764x3439,3535089162424825,2025-02-14 +Resort Hotel,1,60,2017,December,49,5,2,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,312.0,179.0,0,Transient,83.3,0,1,Canceled,Daniel Mills,jeffreyorozco@example.net,(495)459-2365x7971,6528070881255080,2026-03-19 +City Hotel,0,9,2017,November,45,9,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,99.49,0,0,Check-Out,Kaitlyn Adams,marymcconnell@example.net,471.774.0989,3513304898678651,2025-11-04 +City Hotel,0,93,2017,January,2,7,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,124.47,1,0,Check-Out,Brett Vincent,lisahenderson@example.org,+1-996-750-8481,676142876892,2024-07-02 +Resort Hotel,0,91,2017,June,25,21,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,158.18,1,2,Check-Out,Jill Brennan,wilsonyvonne@example.org,892.606.0265,3544335381744900,2025-10-28 +City Hotel,1,251,2017,April,15,9,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.59,0,0,Canceled,Robert Hall,denise89@example.org,577.595.1409x6196,503876539100,2025-08-22 +City Hotel,0,4,2017,June,26,29,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,1,No Deposit,13.0,45.0,0,Transient,0.0,0,0,Check-Out,Richard Brown,mevans@example.org,461-300-2699x53550,4673760481493149555,2025-01-15 +Resort Hotel,0,129,2017,March,12,20,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,153.32,0,0,Check-Out,Sara Mccoy,morganlowe@example.org,700-955-2888x23155,4129719139067661331,2024-08-02 +City Hotel,0,152,2017,April,17,24,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,12.0,179.0,0,Transient,218.13,0,0,Check-Out,Richard Lee,yowens@example.net,+1-746-532-9708x101,676104190472,2026-02-24 +Resort Hotel,0,0,2017,September,36,8,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,1,E,L,2,No Deposit,15.0,65.0,0,Transient,47.35,1,0,Check-Out,Mike Berry,delgadonatasha@example.com,239-430-4647,30557072993861,2025-02-04 +City Hotel,0,5,2017,April,16,16,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,139.87,0,2,Check-Out,Thomas Ward,chansen@example.com,+1-930-639-8271x62967,4915232533471392,2025-11-14 +Resort Hotel,1,382,2017,June,25,18,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient-Party,82.28,0,0,Canceled,Andrea Jenkins,cruzrandall@example.org,(825)873-3194,4928254624617852,2025-01-26 +City Hotel,0,2,2017,July,30,24,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,84.2,0,1,Check-Out,Debbie Snow,chamberstrevor@example.com,457-513-5672x23430,4894087958633784,2025-06-15 +Resort Hotel,1,153,2017,March,11,13,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,232.64,0,1,Canceled,Alicia Hill,ataylor@example.com,001-563-893-5813x229,6011190291815002,2024-07-02 +Resort Hotel,0,30,2017,May,18,5,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,77.24,0,0,Check-Out,Darlene Nelson,jasonsweeney@example.com,(855)677-8160x44171,349644904416893,2025-09-29 +City Hotel,0,20,2017,April,15,8,0,1,2,0.0,0,BB,BEL,Direct,Corporate,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,136.42,0,3,Check-Out,Tonya Hess,ecrawford@example.com,(503)614-5028x3993,4649463653249206703,2024-10-25 +City Hotel,0,16,2017,March,13,24,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.13,0,0,Check-Out,Michael Thompson,amyprice@example.net,(463)222-7625x605,4066414013865890,2024-08-06 +City Hotel,0,391,2017,May,21,24,2,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,108.76,0,0,Check-Out,Mr. Micheal Ray,czimmerman@example.org,883.249.7265,5427789292264365,2024-11-17 +City Hotel,0,17,2017,June,24,17,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.19,0,2,Check-Out,Becky Shepherd,deborah21@example.net,+1-799-958-1879x2060,4825778868150356,2026-02-18 +Resort Hotel,1,208,2017,April,17,20,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Canceled,Heather Mitchell,acostawilliam@example.net,856-540-2006x75534,180000772890937,2025-09-01 +City Hotel,0,145,2017,November,45,7,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,26.0,179.0,0,Contract,110.29,0,1,Check-Out,Jessica Murphy,danielmorse@example.net,816.240.3318x555,4122609694430342,2025-03-07 +City Hotel,1,159,2017,May,18,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,82.0,179.0,0,Transient,77.7,0,0,Canceled,Bradley Harmon,nicolewyatt@example.org,(658)203-7094x984,4939375345266,2024-08-31 +Resort Hotel,1,247,2017,March,12,22,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,47.23,0,1,Canceled,Sarah Wolfe,xray@example.net,+1-953-364-1003,501840024332,2025-04-21 +Resort Hotel,0,147,2017,March,10,9,4,10,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,140.58,0,0,Check-Out,Jeffrey Wells,john42@example.net,+1-629-283-7699x7205,3510292896290749,2024-04-08 +City Hotel,0,388,2017,March,12,24,0,1,2,0.0,0,BB,NOR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.85,0,0,Check-Out,Adam Smith,riverarichard@example.org,764-245-5928,3549082553965807,2025-09-21 +City Hotel,1,86,2017,December,49,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,378.0,179.0,0,Transient,114.54,0,0,Canceled,Timothy Small,wwalker@example.org,001-276-662-4098,30431966768047,2025-11-08 +City Hotel,0,11,2017,October,42,20,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.04,0,1,Check-Out,Michelle Jones,ycole@example.com,001-620-685-9462,4349195571185636,2025-10-25 +City Hotel,0,62,2017,June,23,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.66,0,0,Check-Out,Christine Torres DDS,christinepugh@example.net,505.234.1341x860,2720903550374441,2026-01-07 +Resort Hotel,0,6,2017,September,39,30,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,239.0,179.0,0,Transient-Party,45.61,1,1,Check-Out,Melissa Flores,brooksdebra@example.org,656-547-5346x4078,3547138756042828,2024-08-12 +City Hotel,0,49,2017,April,14,5,2,7,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,G,E,1,No Deposit,16.0,179.0,0,Transient,141.3,1,3,Check-Out,Erik Wilson,raysmith@example.org,+1-755-409-3427x8848,371158710431351,2024-05-06 +City Hotel,0,2,2017,June,25,22,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,71.0,0,Transient,0.99,1,0,Check-Out,Daniel Perez,courtney05@example.org,338.474.1653x7617,4748048946341169,2025-09-11 +City Hotel,1,270,2017,September,39,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,29.0,179.0,0,Contract,41.33,0,0,Canceled,Donald Oconnor,shepardcolton@example.net,806.987.1896x0492,3548501479754327,2025-06-01 +Resort Hotel,0,0,2017,September,39,26,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,41.37,1,0,Check-Out,Michelle Mcdaniel,aaron98@example.net,(861)359-8818x5574,2229682854348246,2025-04-09 +Resort Hotel,0,106,2017,November,45,7,0,5,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient,43.25,0,1,Check-Out,Amber Davis,rjackson@example.com,+1-773-781-6255x685,4204985536501,2024-04-23 +City Hotel,1,152,2017,April,15,11,0,4,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Canceled,Justin Bautista,shannonbutler@example.com,888.650.8141x255,180028144850925,2025-06-19 +City Hotel,0,177,2017,January,2,7,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.02,0,2,Check-Out,Michael Campbell,lauren05@example.net,(384)398-1183x5254,2720536465975835,2024-07-23 +Resort Hotel,0,49,2017,June,26,30,1,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,132.24,0,0,Check-Out,Joan Crane,sandramurillo@example.com,2485455690,4820785598731137,2024-10-10 +City Hotel,1,178,2017,June,24,10,2,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,18,Transient,127.12,0,0,Canceled,Cynthia Gates,christian72@example.org,+1-479-667-8011x052,4420970966434,2025-06-11 +City Hotel,0,428,2017,February,8,22,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,92.87,0,0,Check-Out,Paula Case,qgreen@example.com,745-634-9374,4433753418791031737,2025-04-20 +City Hotel,1,21,2017,April,17,26,2,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,230.37,0,0,Canceled,Douglas Hale,edward58@example.net,+1-626-237-8188x796,342283879136967,2025-12-18 +City Hotel,0,127,2017,August,34,24,2,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,108.47,0,1,Check-Out,Carrie Thornton,weberbianca@example.com,(600)599-1981x2804,4029098306306,2026-01-22 +City Hotel,0,30,2017,June,23,4,2,2,2,1.0,0,SC,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.8,1,1,Check-Out,Stacy Sanchez,bwebster@example.com,(218)564-6646,3568002039587468,2025-01-18 +City Hotel,0,9,2017,November,44,1,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,134.67,0,1,Check-Out,Patricia Cobb,andrewskenneth@example.net,+1-614-503-1379,36671709384065,2025-10-18 +Resort Hotel,0,5,2017,November,45,5,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,44.46,0,1,Check-Out,Stephanie Harris,nicholas16@example.org,(814)210-1912x142,4295262460076,2024-07-19 +Resort Hotel,0,135,2017,November,48,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,15.0,221.0,0,Transient-Party,60.98,0,0,Check-Out,Christopher Nichols,jackcastro@example.net,+1-670-227-7559x61754,6549433785754845,2025-11-19 +Resort Hotel,0,160,2017,April,15,11,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,3,No Deposit,244.0,179.0,0,Transient,89.43,0,1,Check-Out,Ian Sullivan,emily97@example.net,(480)600-3521,30187750495151,2024-11-08 +Resort Hotel,0,0,2017,April,14,1,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,C,0,No Deposit,247.0,179.0,0,Transient,130.58,0,0,Check-Out,Wyatt Martinez II,daniel72@example.com,277.479.3517x51236,3574526920442849,2024-08-08 +City Hotel,1,379,2017,April,16,17,0,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,218.4,0,1,Canceled,Jennifer Nguyen,heatherkelly@example.net,(246)634-4166,3543419185599586,2025-03-20 +Resort Hotel,1,11,2017,March,11,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,2.19,0,0,No-Show,Jesus Dawson,nancyshaw@example.net,001-613-909-6677x548,4791194254148141392,2025-05-14 +Resort Hotel,1,157,2017,November,46,17,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,68.56,0,1,Canceled,Bradley Holmes,michelledavis@example.org,+1-406-495-4877x992,060446600730,2024-11-04 +City Hotel,0,138,2017,January,4,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,104.42,1,0,Check-Out,Nicholas Rollins,alvaradoedwin@example.org,001-322-786-4833x12071,4158392765685964,2024-11-05 +City Hotel,0,19,2017,November,45,10,2,1,1,0.0,0,BB,BEL,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,106.99,0,0,Check-Out,Sharon Choi,smithdavid@example.net,713-391-7217x8925,4779595692550776447,2024-06-25 +City Hotel,0,18,2017,October,42,21,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,45.0,0,Transient-Party,5.75,0,1,Check-Out,Megan Boyd,robertsellen@example.net,001-648-224-8528x0105,562855064860,2025-12-06 +Resort Hotel,0,52,2017,December,50,12,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,378.0,179.0,0,Transient-Party,95.38,0,0,Check-Out,Angel Griffith,danielsamy@example.com,804-621-6108x17205,3535709495206603,2025-11-28 +City Hotel,1,297,2017,May,20,16,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,109.12,0,2,Canceled,Nicholas Martinez,josesimpson@example.org,(624)892-1169x1860,676185384333,2025-08-15 +City Hotel,1,167,2017,February,9,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,126.58,0,0,Canceled,Barbara Turner MD,gibarra@example.net,605.254.7476,2619878429283789,2026-02-10 +Resort Hotel,0,96,2017,March,10,9,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,104.42,0,1,Check-Out,Micheal Miller,debra61@example.com,213-849-3635x44023,3550380099619920,2024-07-13 +City Hotel,0,11,2017,January,4,22,0,4,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,221.0,0,Transient-Party,62.67,0,0,Check-Out,Kevin Wagner,wrightdebra@example.org,+1-408-577-5344x61363,2720948191718217,2026-01-26 +City Hotel,1,416,2017,February,6,3,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,112.63,0,0,Canceled,Kenneth Cox,ifrost@example.net,257-702-3703x803,180098821915630,2024-11-11 +City Hotel,0,3,2017,April,16,17,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,15.0,179.0,0,Transient,241.38,0,3,Check-Out,Nicholas Turner,hamiltonivan@example.com,496-641-5410x1952,2249746134725592,2025-04-28 +City Hotel,0,10,2017,January,2,7,2,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,233.77,0,1,Check-Out,Christy Dennis,ecarr@example.com,001-246-941-7791,4828162873335,2025-02-25 +City Hotel,1,60,2017,April,15,8,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,218.01,0,2,Check-Out,Kelli Payne,ethanyoung@example.org,001-388-505-2535x968,3538165162495002,2025-04-06 +City Hotel,0,1,2017,July,30,26,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,75.51,0,1,Check-Out,Gabrielle Page,kevin46@example.org,001-367-967-7644x862,676161126096,2026-01-01 +City Hotel,0,93,2017,March,13,29,0,4,2,1.0,0,BB,USA,Direct,Direct,0,0,0,E,L,2,No Deposit,15.0,179.0,0,Transient,133.46,0,1,Check-Out,Zachary Caldwell,stevensjessica@example.com,+1-658-652-3752x333,6523276180575319,2025-11-24 +City Hotel,1,96,2017,December,52,26,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,Non Refund,87.0,255.0,0,Transient,113.55,0,2,Canceled,Kristin Roberson,brittney57@example.org,530-827-4964x41509,213172339673238,2024-06-26 +City Hotel,1,159,2017,February,6,3,1,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.57,0,1,Canceled,Judy Brown,alexanderalex@example.net,862.563.3112x491,503895577222,2025-09-11 +Resort Hotel,0,20,2017,December,52,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,97.91,0,2,Check-Out,Stacy Chen,dawn41@example.com,538.754.8235x261,349348539969587,2026-03-01 +City Hotel,1,0,2017,January,4,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,B,1,No Deposit,9.0,179.0,0,Transient-Party,123.36,0,1,No-Show,Christopher Velazquez,paulmartinez@example.com,939-593-2692x74352,4877923045139,2025-01-16 +City Hotel,0,13,2017,January,3,19,0,1,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.39,0,0,Check-Out,Paul Acosta,mcdanieldarlene@example.net,001-613-608-7695x0066,4716505847866709,2024-07-29 +Resort Hotel,1,274,2017,February,6,3,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,C,1,No Deposit,309.0,179.0,0,Transient-Party,85.39,0,0,Canceled,Amanda Novak,charlesclayton@example.org,777.806.4781x619,4735207316437354,2024-11-12 +City Hotel,1,58,2017,January,3,16,0,2,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,149.93,0,0,Canceled,Jennifer Armstrong,masseyalisha@example.net,814-450-1709x813,4795013785891064,2026-03-07 +City Hotel,0,12,2017,June,23,9,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,126.21,0,2,Check-Out,Lisa Wade,zpratt@example.org,001-596-549-8788x140,4829231976468682521,2025-11-09 +Resort Hotel,1,34,2017,August,32,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,85.37,0,0,Canceled,Alejandro Weaver,margaret15@example.com,(489)476-0299,4493990953202106,2026-03-24 +City Hotel,1,194,2017,December,49,3,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,107.72,0,2,Canceled,Nathan Harris,smithbrian@example.com,787.224.3432,3556222692881800,2026-03-01 +City Hotel,0,163,2017,February,8,20,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.73,0,1,Check-Out,Sandra Lucas MD,ryanowens@example.com,(322)399-2948,6011188958496512,2025-07-25 +Resort Hotel,1,20,2017,October,40,4,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,164.0,179.0,0,Transient,95.34,0,0,Canceled,Eric Chang,chad40@example.net,+1-474-364-0029x3191,30574007844259,2025-07-06 +Resort Hotel,0,96,2017,April,17,22,1,4,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Check-Out,Brandi Rodriguez,droberts@example.com,6068485152,213180048781671,2024-09-26 +Resort Hotel,0,0,2017,July,27,7,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,61.0,0,Transient,48.34,0,0,Check-Out,Sandra Lopez,stephanie51@example.net,001-717-715-0560x95119,3583102173212914,2025-04-04 +City Hotel,1,17,2017,January,4,25,1,3,1,0.0,0,BB,AUT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,13.0,151.0,0,Transient,110.51,0,0,Canceled,Kaitlyn Collier PhD,waynejackson@example.com,001-624-828-1138x1318,30559451214927,2025-06-27 +City Hotel,0,65,2017,September,39,25,0,2,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,106.74,0,0,Check-Out,Alisha Williams,christymcguire@example.net,353.390.5573x3282,587675465591,2025-07-27 +Resort Hotel,0,70,2017,February,6,10,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,127.67,0,2,Check-Out,Joseph Brown,rodriguezroberto@example.com,785-708-6971x427,676280457463,2024-04-24 +City Hotel,0,159,2017,April,17,24,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,79.13,0,1,Check-Out,Nicole Butler,lisa97@example.org,001-861-911-4930x9388,30265142423493,2025-07-05 +City Hotel,1,54,2017,March,13,28,0,1,2,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,54.07,0,0,No-Show,Pamela Walton,alicia32@example.com,9474960179,36802009012128,2026-01-22 +City Hotel,1,15,2017,January,3,19,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,144.58,0,1,Canceled,Courtney Johnson,tyler85@example.net,439.798.8507x3953,4369770025323,2024-12-25 +City Hotel,1,146,2017,December,51,19,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,81.43,0,0,Canceled,Rebecca Mccarthy,mullinsterri@example.org,+1-412-847-0472x14828,4355168833385907,2024-11-07 +City Hotel,0,48,2017,February,5,1,1,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Transient,106.7,0,0,Check-Out,Stacy Robertson,lbell@example.org,741.809.2972x3883,30487557666859,2025-03-22 +City Hotel,0,14,2017,February,8,22,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,233.02,0,1,Check-Out,Devon Moore,jonathancobb@example.org,527.344.8442,2233931533880606,2025-08-22 +City Hotel,0,1,2017,November,47,21,0,2,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,91.59,0,0,Check-Out,Jessica Sharp,amydavis@example.com,(721)289-8204x05727,3528744049704422,2024-07-05 +City Hotel,0,13,2017,July,29,17,0,2,1,0.0,0,BB,ISR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,50.0,0,2,Check-Out,Sharon Peck,sandersjohnny@example.net,(811)905-4925,4332619553465319,2025-08-06 +Resort Hotel,0,42,2017,April,16,17,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,227.72,0,1,Check-Out,Jason Brown,bmiranda@example.net,746.205.4774x449,4107170047223863394,2025-04-11 +Resort Hotel,0,0,2017,November,44,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,331.0,0,Transient,44.9,0,2,Check-Out,Dustin Boyer,karenfuller@example.org,901-267-9881x44437,3510189145004360,2024-11-30 +Resort Hotel,1,0,2017,September,36,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,117.62,0,0,Canceled,Jennifer Alexander,deborah76@example.net,600-897-7061x029,3554525632252730,2024-09-13 +City Hotel,0,89,2017,February,7,11,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,139.3,0,1,Check-Out,James Rhodes,kennedymark@example.net,(389)959-4819x3790,30528055755015,2025-06-10 +City Hotel,0,42,2017,December,49,6,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.97,0,1,Check-Out,Kyle Moore,okelly@example.org,305.894.5117x37266,4414077699527,2024-06-19 +Resort Hotel,0,86,2017,March,12,21,2,0,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Zachary Nelson,christopherreese@example.com,+1-304-410-0911,4245427218016634,2025-06-13 +Resort Hotel,0,346,2017,December,51,19,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,23.0,179.0,0,Transient-Party,77.27,0,0,Check-Out,Gregory Villarreal,rodneyrios@example.org,001-465-765-9903,180069248179449,2025-03-15 +City Hotel,0,40,2017,June,25,19,1,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,104.89,0,1,Check-Out,Cheryl Cook,robinsonryan@example.org,430-499-1234x513,4126584018917074,2025-07-02 +City Hotel,0,262,2017,June,23,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Contract,80.7,0,1,Check-Out,Chase Lopez,shernandez@example.net,+1-206-460-1303,4948653109260,2024-04-12 +City Hotel,0,7,2017,October,42,16,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,21.0,179.0,0,Transient-Party,63.34,0,0,Check-Out,Jennifer Frey,savannah72@example.com,+1-759-443-2079x045,6567544080729352,2024-06-22 +City Hotel,0,233,2017,March,9,3,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,243.0,179.0,0,Contract,70.61,0,0,Check-Out,Daniel Bruce,larrymorris@example.com,(888)798-8727x366,6524529220390464,2025-07-31 +Resort Hotel,1,57,2017,July,27,3,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,83.96,0,1,Check-Out,Tristan Scott,lgreene@example.net,302-515-8090,3583381787692386,2025-03-05 +City Hotel,0,395,2017,March,11,17,1,3,2,0.0,0,HB,CHE,Groups,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,126.73,0,1,Check-Out,Timothy Farley,gedwards@example.net,+1-386-591-4787x47937,30179950754529,2024-12-27 +City Hotel,1,0,2017,February,6,6,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,156.2,0,0,Canceled,Adam Lozano,allison33@example.net,321.932.2972x093,4129044225975073,2024-08-30 +City Hotel,1,113,2017,January,2,11,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,281.0,179.0,0,Transient,89.77,0,0,Canceled,Yvonne Murray,raymondbeasley@example.org,641-287-8754x275,180016046172845,2024-12-26 +City Hotel,0,21,2017,November,48,25,0,2,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,119.13,0,0,Check-Out,Deanna Hodges,eosborn@example.com,244.789.9264x8534,3531518010913245,2024-11-05 +Resort Hotel,0,51,2017,March,9,3,2,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient-Party,107.56,0,0,Check-Out,Crystal Miller,travis59@example.net,(784)600-4371x03186,4666920822483497,2025-03-13 +Resort Hotel,0,43,2017,May,19,9,1,3,3,1.0,0,BB,GBR,Direct,Direct,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Check-Out,Bridget Hernandez,esimpson@example.net,001-704-266-1319x901,30078467237160,2025-01-23 +City Hotel,0,35,2017,September,38,23,2,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,C,1,No Deposit,12.0,179.0,0,Transient,129.94,0,0,Check-Out,Patrick Richardson,sara45@example.net,(618)936-7838x74589,4893687385356189,2026-03-03 +City Hotel,0,2,2017,October,40,6,1,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,40.55,0,1,Check-Out,Michael Gonzalez,wendy96@example.org,993-454-0921,4764359296818,2025-10-02 +Resort Hotel,0,44,2017,September,36,6,1,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,268.0,179.0,0,Transient,41.26,0,0,Check-Out,Laura Lucero,benjamin97@example.com,675.453.9691x87593,4677632458633228215,2025-09-20 +City Hotel,1,211,2017,April,17,20,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.53,0,0,Canceled,Robert Pittman,christopher84@example.org,+1-328-297-2691,2706174500769928,2024-10-08 +City Hotel,0,2,2017,June,23,4,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,157.6,0,2,Check-Out,Jennifer Glass,samanthaking@example.org,001-349-864-6882x96413,2720241201149809,2026-01-27 +Resort Hotel,1,165,2017,February,7,14,3,10,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,308.0,179.0,0,Transient,130.73,0,0,Canceled,Timothy Lee,melissa35@example.org,988.220.2000,4402877944938,2024-09-08 +Resort Hotel,0,13,2017,November,45,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,46.21,0,2,Check-Out,David Haney Jr.,megantaylor@example.com,(866)657-7792,6011625470019710,2025-12-27 +City Hotel,1,412,2017,January,3,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,113.77,0,0,Canceled,Heather Ross,fmatthews@example.org,+1-426-925-9984,6011347258241917,2025-08-15 +City Hotel,0,0,2017,October,41,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,41,Transient,83.23,0,0,Check-Out,Patricia Hall,nguyenspencer@example.org,+1-362-550-6483,4026335658600905,2025-08-18 +City Hotel,0,46,2017,May,18,2,2,2,3,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,11.0,176.0,0,Transient,113.85,0,0,Check-Out,Richard Bond,rramirez@example.org,+1-944-387-9400x88374,30431782027222,2024-08-24 +Resort Hotel,0,55,2017,August,35,27,0,2,2,0.0,0,BB,,Groups,Direct,0,0,0,D,D,0,No Deposit,38.0,179.0,0,Transient-Party,217.31,0,0,Check-Out,Michael Lopez,dianedavis@example.com,699.582.4158x087,30404662824620,2025-01-17 +City Hotel,0,266,2017,March,10,7,1,2,2,0.0,0,Undefined,NOR,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,241.0,179.0,0,Transient,224.09,0,2,Check-Out,Christine Johnson,harrisonlisa@example.net,+1-381-225-8734,6011131414544111,2025-07-04 +Resort Hotel,0,109,2017,December,50,13,1,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,D,F,1,No Deposit,302.0,179.0,0,Transient-Party,1.51,1,0,Check-Out,Michelle Summers,daniellebishop@example.com,816.973.1197x4198,4301195431034418,2024-12-26 +City Hotel,0,61,2017,June,24,12,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,114.81,0,1,Check-Out,Michelle Brown,gabrielfletcher@example.net,+1-441-588-4578,213130352825705,2024-04-24 +Resort Hotel,0,13,2017,July,27,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,237.0,179.0,0,Transient,53.38,1,1,Check-Out,Lauren Thomas,holmesalex@example.com,+1-824-674-6008x38609,3500771442111097,2024-06-04 +City Hotel,0,12,2017,April,15,6,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,236.0,179.0,0,Transient,209.41,1,1,Check-Out,Timothy Johnson,michele00@example.net,5648800593,3505453416917040,2024-10-27 +Resort Hotel,0,96,2017,November,47,21,1,2,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,378.0,179.0,0,Transient-Party,106.25,0,0,Check-Out,Alexandra Gonzalez,whouse@example.net,441.659.8414,581147848146,2025-08-19 +Resort Hotel,0,3,2017,August,34,22,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,246.0,179.0,0,Transient-Party,44.26,0,1,Check-Out,Philip Vega,zhayden@example.net,(945)822-0716x3585,3511845224035638,2024-07-29 +City Hotel,1,359,2017,February,8,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,102.48,0,0,Canceled,Kimberly Cochran,garrettlisa@example.com,001-287-644-3727x547,4108815822971556,2024-07-25 +City Hotel,1,2,2017,April,17,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,B,0,No Deposit,1.0,179.0,0,Transient,59.59,0,1,Canceled,Douglas Ross,angelreed@example.com,+1-243-371-3947x33294,4730868436650039,2025-11-06 +City Hotel,0,20,2017,June,23,7,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,80.49,1,0,Check-Out,Angela Ward,jessemyers@example.com,001-340-797-9113x40026,213131855331597,2026-02-12 +Resort Hotel,0,78,2017,June,25,22,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,17.0,179.0,0,Transient,133.06,0,2,Check-Out,Mr. Thomas Adams,ingramshaun@example.org,001-719-546-7203,676302201014,2024-06-03 +Resort Hotel,0,0,2017,January,3,18,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,1,D,D,0,No Deposit,243.0,179.0,0,Transient,74.95,0,0,Check-Out,Brian Mills,scotthowe@example.org,+1-839-332-3689x01470,2570312218461197,2025-10-18 +City Hotel,0,70,2017,March,14,30,1,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,Lori Mullins,saracarey@example.com,361.304.5577x6642,676171615880,2024-04-29 +Resort Hotel,0,33,2017,March,11,17,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,205.24,1,0,Check-Out,Ashley Herring,daviddennis@example.com,983.830.8246x82087,4255622734651,2024-04-08 +City Hotel,0,106,2017,April,14,2,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,231.77,0,1,Check-Out,Janice Smith,xvelez@example.com,+1-505-712-6676x48573,4026986061129390622,2025-03-10 +Resort Hotel,1,142,2017,April,18,29,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,17.0,179.0,0,Transient,225.33,0,0,Canceled,Lori Phillips,gonzaleskayla@example.com,(555)492-8667,4538868174793,2024-10-29 +City Hotel,1,166,2017,March,11,11,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,204.93,0,0,Canceled,Heather Turner,woodwardpatricia@example.com,894.272.2438,4702974029147500,2024-06-03 +Resort Hotel,0,144,2017,December,2,31,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,179.0,0,Transient,53.39,1,3,Check-Out,Brianna Richardson,sarahramirez@example.org,(597)453-9713,6538412476899682,2024-09-10 +City Hotel,1,185,2017,February,7,12,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,236.0,179.0,0,Transient,176.99,0,0,Canceled,Kimberly Walker,taylorsteven@example.org,001-356-461-2475x792,36548352696526,2025-05-29 +Resort Hotel,1,40,2017,March,9,4,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,50.31,0,2,No-Show,Brooke Roberts,avilakatelyn@example.com,001-918-761-9952x71803,4414361307456,2026-03-19 +City Hotel,0,41,2017,February,8,20,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,85.15,0,1,Check-Out,Micheal Soto,ericaherrera@example.net,+1-719-493-3734x344,30583137071683,2024-08-02 +City Hotel,0,3,2017,January,4,25,1,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,77.0,179.0,0,Transient,110.38,0,0,Check-Out,Matthew Ewing,jaime88@example.com,398.581.0780x16395,676280704203,2024-04-19 +City Hotel,0,53,2017,March,9,4,0,6,2,0.0,0,BB,ITA,Online TA,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,78.97,0,2,Check-Out,Kelly Cox,josephmurray@example.net,906-785-0890,30109202196377,2024-12-23 +City Hotel,0,44,2017,July,29,16,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,235.0,179.0,0,Transient,97.39,0,1,Check-Out,Nicholas Anderson,nelsonheather@example.com,+1-729-494-4870x12801,3543688703644914,2024-08-05 +Resort Hotel,0,85,2017,June,23,8,2,1,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,1,0,E,E,0,No Deposit,223.0,179.0,0,Transient-Party,87.46,0,0,Check-Out,Cindy Lang MD,ramseyamy@example.net,001-939-291-1866x4844,4259967575778329,2024-10-12 +City Hotel,1,44,2017,June,23,7,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,45.32,0,0,Canceled,Lisa Lawson,jason64@example.com,437.319.9955,2591156251100807,2025-05-09 +City Hotel,0,2,2017,April,15,9,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,234.72,0,3,No-Show,Megan Holmes,brooksphyllis@example.com,(998)228-3366,2260414176380693,2026-03-21 +City Hotel,0,308,2017,May,20,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,134.21,0,0,Check-Out,Daniel Steele,smorgan@example.com,764.399.3922x6322,3541241779198597,2025-10-04 +City Hotel,0,22,2017,March,10,4,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,63.47,1,3,Check-Out,Christopher Wheeler,webbcrystal@example.org,827.836.0538x74977,4703778418645,2024-10-29 +Resort Hotel,0,153,2017,January,2,7,2,6,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,31.0,179.0,75,Transient-Party,110.59,0,0,Check-Out,Kevin Craig,amandaphillips@example.com,001-958-434-9973x1926,4130211330692,2024-12-15 +City Hotel,1,14,2017,February,7,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,160.01,0,1,Canceled,Rebecca Chan,douglaskirby@example.net,902.413.6521x02189,180013355088035,2025-01-03 +Resort Hotel,1,314,2017,August,33,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,83.1,0,0,Canceled,Monica Anderson,walshtimothy@example.org,235.325.1168x8546,30172867201098,2025-02-14 +Resort Hotel,0,29,2017,November,44,1,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,47.05,1,2,Check-Out,Jeffrey Mcdowell,douglasgallegos@example.net,+1-582-700-0630x785,6529711458409357,2025-05-10 +City Hotel,1,368,2017,November,45,6,0,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,63.7,0,0,Canceled,Kelly Little,cunninghambrian@example.org,411-535-7181x1735,30274901079728,2024-04-08 +City Hotel,0,239,2017,October,43,27,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,51.52,0,1,Check-Out,Jennifer Ellis,ashley77@example.com,001-673-971-2973x02073,4340103982084,2025-03-09 +City Hotel,0,20,2017,November,46,13,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,86.24,0,1,Check-Out,Kathleen Ruiz DVM,jasonramos@example.net,504.965.9041,378287337284142,2024-08-21 +City Hotel,1,391,2017,February,6,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,25.0,179.0,17,Transient,124.26,0,0,Canceled,Laura Patel,michaelpierce@example.com,001-786-208-0166,36254086545432,2025-10-24 +City Hotel,0,39,2017,December,50,14,0,2,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,C,A,0,No Deposit,14.0,179.0,0,Transient,134.9,0,1,Check-Out,Justin Howard,joshua08@example.com,743-893-3309x9907,502055167493,2024-10-06 +City Hotel,1,405,2017,February,9,26,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,100.29,0,0,Canceled,Stephanie Smith,hschultz@example.org,+1-268-579-0992x6379,4430745016124960,2025-03-18 +City Hotel,0,141,2017,July,31,31,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.6,0,1,Check-Out,Cathy Thomas,wesleylang@example.org,365-248-5939x1673,3566030272799724,2024-06-22 +City Hotel,0,3,2017,July,29,19,0,1,1,0.0,0,FB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,240.0,0,Transient-Party,49.48,0,0,Check-Out,Christopher Garcia,hannahgarcia@example.net,2672173119,6011675662789893,2025-01-16 +City Hotel,1,407,2017,January,4,26,0,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,41,Transient,97.8,0,0,Canceled,Peter Allen,salazarlisa@example.com,730.205.8599x858,4133038881876876,2025-10-29 +Resort Hotel,0,41,2017,January,5,28,0,4,2,0.0,0,BB,CN,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,221.24,0,3,Check-Out,Elizabeth Armstrong,cpowers@example.com,292-271-8005x81411,4495188287128364,2025-05-15 +City Hotel,0,4,2017,October,42,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,65.2,0,1,Check-Out,Mrs. Lindsey Gilbert,pamelakelly@example.com,684.648.0489x14899,4114056079571452103,2025-09-07 +City Hotel,1,46,2017,May,20,20,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,181.61,0,0,Canceled,Donna Harris,aprillambert@example.org,836.829.5880x3879,3599884395844952,2026-01-06 +City Hotel,0,0,2017,July,27,3,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,85.0,0,Transient,88.08,0,0,Check-Out,Erica Manning,henrysmith@example.com,632-491-5257,4384116501043147,2025-07-17 +Resort Hotel,0,36,2017,October,41,10,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,42.73,0,0,Check-Out,Jeffrey Bates,fporter@example.org,887.578.5046x8034,6505235233395986,2026-03-27 +City Hotel,0,4,2017,April,16,15,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,63.0,0,Transient,1.94,0,0,Check-Out,Benjamin Brown,patellarry@example.org,526.270.8955,378401939245092,2025-08-04 +City Hotel,0,57,2017,January,5,29,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,60.0,179.0,0,Transient-Party,115.9,0,1,Check-Out,Andre Hernandez PhD,rebecca77@example.org,987.465.8547,213120485152499,2025-11-27 +City Hotel,0,3,2017,April,15,9,1,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,45.0,0,Transient,110.12,0,0,Check-Out,Charles Roman,jasonryan@example.net,+1-477-891-7128x60315,4616605106215951,2025-12-01 +Resort Hotel,0,26,2017,June,22,1,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,38.94,1,0,Check-Out,Damon Powers,cortezjonathon@example.com,653.349.7254x04498,3586478494776119,2024-04-16 +City Hotel,1,19,2017,September,38,17,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,9.0,179.0,0,Transient,117.0,0,1,Canceled,Patrick Jackson,paulsanchez@example.net,370-950-6430,4440609032471444093,2025-05-26 +Resort Hotel,0,13,2017,December,52,23,2,1,1,0.0,0,BB,IRL,Offline TA/TO,Corporate,0,0,0,D,D,2,No Deposit,378.0,179.0,0,Transient,45.03,0,2,Check-Out,Mary Murray,millerselena@example.com,427-563-7947x79571,4444365784624,2024-10-16 +Resort Hotel,1,105,2017,August,35,27,2,3,3,1.0,0,BB,,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,226.39,0,0,Canceled,Samantha Jackson,ejones@example.com,(541)560-0774,3562178465949434,2024-10-07 +Resort Hotel,1,40,2017,December,49,4,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,109.97,0,0,Canceled,Dominique Wagner,grossdanielle@example.net,001-374-885-7071x63312,30252103721065,2025-12-01 +Resort Hotel,0,17,2017,October,40,4,1,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,67.19,0,0,Check-Out,Daniel Petty,mrhodes@example.org,588-895-5452,2233128446632352,2024-09-01 +City Hotel,1,387,2017,May,18,4,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,124.04,0,0,Canceled,James Robles,jessica94@example.net,+1-796-427-7120,6540264924389352,2025-08-09 +Resort Hotel,0,97,2017,August,31,5,2,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,E,E,1,No Deposit,191.0,179.0,75,Transient-Party,89.34,0,0,Check-Out,Amanda Smith,deannamccall@example.net,211.841.0084x4049,2287322747875696,2025-02-01 +Resort Hotel,0,52,2017,November,48,28,1,2,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,E,E,0,No Deposit,13.0,219.0,0,Transient,65.92,1,1,No-Show,Jessica Cortez,erin18@example.com,5928112538,30020330689383,2025-04-10 +Resort Hotel,0,2,2017,March,12,18,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,C,0,No Deposit,14.0,179.0,0,Transient,209.72,1,1,Check-Out,Nicole Clark,pittmanadam@example.net,8082692004,180047117599095,2025-10-20 +City Hotel,1,287,2017,March,9,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,101.95,0,0,Canceled,Brittany Collins,christophermccoy@example.net,001-569-908-1932x6306,4506316017112,2025-02-21 +City Hotel,0,0,2017,July,27,5,0,2,1,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.89,0,0,Check-Out,Jillian Mack,craigmiles@example.net,555-758-5881,6011083377854518,2024-11-03 +City Hotel,0,47,2017,January,4,25,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,83.88,1,2,Check-Out,Lori Gonzalez,hudsonrobert@example.org,001-260-520-5093x081,4163755700955644020,2025-05-25 +Resort Hotel,1,168,2017,January,4,22,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,41,Transient,128.66,0,0,Canceled,Hunter Cox,sandra20@example.org,956.437.8804,5546708280629443,2025-06-26 +City Hotel,0,37,2017,March,9,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,241.0,179.0,0,Transient,86.63,1,3,Check-Out,Anna Frey,julia59@example.com,724-529-2046,3530511756434121,2025-04-04 +City Hotel,0,66,2017,March,9,1,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.96,1,2,Check-Out,Rachel Jensen,alexanderoliver@example.org,485.255.1734x82072,3599665467124583,2025-02-01 +Resort Hotel,0,144,2017,January,4,25,2,1,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,81.87,0,0,Check-Out,Craig Davis,jflores@example.com,(528)837-9725x5211,180074754256425,2025-11-06 +City Hotel,0,16,2017,April,14,5,0,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,D,1,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,Thomas Wise,aprilgarcia@example.net,920.925.5602,6504236459795900,2025-02-16 +City Hotel,1,21,2017,September,37,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,28.0,179.0,0,Transient,158.94,0,0,Canceled,Holly Herring,angela56@example.org,(256)683-5600x089,4965763040277012,2025-10-10 +City Hotel,1,413,2017,June,24,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,97.03,0,2,Canceled,Dustin Potter,feliciabass@example.com,+1-988-675-8176x6695,6011746232662033,2024-12-30 +City Hotel,1,10,2017,May,18,3,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,164.64,0,0,Canceled,Michelle Barnes,rojasjeremy@example.org,001-534-520-5348x5373,2397067576921544,2024-11-27 +City Hotel,0,10,2017,March,10,5,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,62.18,0,1,Check-Out,Sara Scott,gmurphy@example.org,(225)360-0426x03890,2298868399814372,2024-06-16 +City Hotel,1,38,2017,August,34,22,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,103.5,0,1,Canceled,Daniel Horne II,jose09@example.net,791.379.6483x031,38335211152703,2024-05-26 +City Hotel,1,292,2017,March,11,11,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,175.18,0,0,Canceled,Joshua Brown,gabrielle17@example.net,981.815.5262,3579250430629481,2025-07-07 +Resort Hotel,1,105,2017,February,8,20,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,155.14,0,2,Canceled,Stephanie Dawson,kwhite@example.com,+1-352-671-7488x78593,4177389578073229567,2025-07-28 +City Hotel,0,28,2017,June,24,10,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,170.53,0,0,Check-Out,Tony Johnson,sarahlane@example.org,+1-756-313-7340,2600104664814514,2025-08-01 +Resort Hotel,1,1,2017,September,36,4,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,297.0,261.0,0,Transient-Party,44.23,0,0,Canceled,Jeffrey Hull,julie67@example.org,(846)889-1640x464,4732431887060,2024-12-05 +Resort Hotel,1,50,2017,July,29,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,58.04,0,2,Canceled,Corey Daniels,joseph17@example.org,+1-351-369-4825x10195,30519086985168,2026-01-07 +City Hotel,0,6,2017,June,25,18,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,83.34,0,0,Check-Out,Natalie Ramos,shaunsanchez@example.net,(495)980-7769,567379779125,2025-08-01 +City Hotel,1,111,2017,December,52,29,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,99.41,0,0,Canceled,Tammy Fernandez,qfoster@example.net,407-848-2387x4777,676111365992,2025-01-18 +City Hotel,1,37,2017,April,18,30,1,4,2,2.0,0,SC,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,90.96,0,1,Canceled,Jeremy Sanchez,pgriffin@example.com,+1-265-233-2760x995,6514031537234784,2024-08-27 +Resort Hotel,0,100,2017,November,46,18,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,42,Transient,98.87,0,0,Check-Out,Andrew Weiss,bentleycory@example.net,(466)716-9676x268,3572587803214319,2025-01-29 +Resort Hotel,0,12,2017,November,45,5,1,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,179.0,179.0,0,Transient,51.82,1,0,Check-Out,Lisa Gordon,steven66@example.net,001-829-928-7153x494,6598207327095218,2025-02-20 +Resort Hotel,1,148,2017,February,7,11,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,128.6,0,0,Canceled,Paul Brown,james96@example.org,001-427-319-7070x0034,5243630263493579,2026-03-02 +City Hotel,1,155,2017,July,28,13,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.11,0,0,Canceled,Jorge Duncan,jyu@example.com,453.336.1485x3423,3594794419333012,2025-11-08 +City Hotel,0,64,2017,April,15,9,2,4,3,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,133.68,0,1,Check-Out,Megan Ramirez,piercejohn@example.com,(568)932-0907x96599,568311306100,2025-10-10 +Resort Hotel,0,1,2017,July,27,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,4.1,0,0,Check-Out,Tiffany Martin,jhoward@example.org,8635307181,5591287102161251,2024-04-24 +City Hotel,0,1,2017,January,3,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,210.99,0,3,Check-Out,Elizabeth Golden,patrick24@example.com,448.925.2789x4182,2296044131786805,2026-01-11 +City Hotel,0,13,2017,May,18,5,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,106.92,0,0,Check-Out,Joseph Larson,pateljacob@example.net,+1-924-989-7139,2268902915569354,2024-10-17 +City Hotel,0,16,2017,March,10,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,64.08,0,0,Check-Out,Brian Wilkins,drakemary@example.net,790-487-7413x327,4862758451245551,2025-01-04 +City Hotel,0,131,2017,August,35,29,1,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,170.09,0,2,Check-Out,Jasmine Carson,stephenbrown@example.com,(522)632-7854x88959,4340240913361575,2024-04-27 +City Hotel,0,48,2017,May,21,23,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,133.48,0,1,Check-Out,Amy Boyd,dawn26@example.org,320-771-4616x91546,180044166799338,2025-01-18 +Resort Hotel,1,153,2017,February,6,3,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,93.17,0,0,Canceled,Gary Collins,bgarner@example.net,557.542.7231x9685,6011580132782520,2024-12-31 +City Hotel,1,410,2017,November,48,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,111.53,0,0,Canceled,Jane Smith,dstewart@example.net,(667)389-7579,377933561127769,2026-03-17 +City Hotel,0,58,2017,April,14,5,2,4,2,0.0,0,FB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,123.83,1,1,Check-Out,Robert Lewis,jrogers@example.org,444-697-4911,3529365768584115,2024-12-22 +Resort Hotel,0,26,2017,June,22,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient-Party,76.64,0,1,Check-Out,Jeremy Stevens,bryantalan@example.com,609.559.9050x95241,6517528394956760,2025-01-19 +City Hotel,0,3,2017,April,18,30,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,101.52,0,0,Check-Out,Lauren Sandoval,twallace@example.net,+1-979-865-6895x1791,180082398645473,2025-08-30 +Resort Hotel,0,3,2017,October,43,27,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,38.93,0,1,Check-Out,Jessica Lopez,hunttiffany@example.org,(316)236-7565,180057524593987,2025-05-01 +Resort Hotel,0,3,2017,August,34,25,2,7,2,1.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,137.3,0,0,Check-Out,George Mercer,rosshannah@example.com,(939)416-0437x4207,2261677450747527,2025-12-07 +City Hotel,0,94,2017,February,6,7,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.03,1,1,Check-Out,Kenneth Becker,david63@example.org,421-887-2371x87828,2223484324878548,2024-10-01 +City Hotel,0,3,2017,April,15,10,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,195.57,0,1,Check-Out,Veronica Arnold,lmiller@example.org,001-688-488-9127x10013,345541764350085,2025-01-01 +Resort Hotel,0,2,2017,December,51,17,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,222.78,1,1,Check-Out,Jonathan Howe,levimosley@example.net,+1-805-300-3468x45906,3549010898924817,2024-06-30 +City Hotel,1,13,2017,January,5,27,0,1,1,0.0,0,BB,PRT,Aviation,Direct,0,0,1,D,D,2,No Deposit,13.0,172.0,0,Transient,111.52,0,1,Canceled,Justin Fowler,kcox@example.com,982-869-6340x48406,4939325514015105,2025-03-17 +Resort Hotel,0,2,2017,January,3,18,2,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,134.26,0,2,Check-Out,Ronald Martinez,andreaclayton@example.org,867-975-4688x119,3549089131249786,2024-08-31 +City Hotel,0,3,2017,July,28,11,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,165.86,0,1,Check-Out,Connie Robinson,emily47@example.com,(975)842-9185x04450,180095285946176,2024-09-09 +Resort Hotel,0,1,2017,August,35,27,2,0,3,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,1,No Deposit,18.0,331.0,0,Transient,3.75,0,0,Check-Out,Joshua Espinoza,lindsaycraig@example.net,208.373.0069x6722,6011796232864790,2025-06-21 +City Hotel,1,410,2017,March,11,11,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,82.91,0,0,Canceled,April Briggs,moorelisa@example.com,597.491.6091x40409,4380135708115,2024-07-27 +City Hotel,0,0,2017,May,18,6,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.2,0,2,Check-Out,Emily Smith,loganbrooke@example.com,(308)953-9266x550,3597534629478612,2025-07-29 +City Hotel,0,31,2017,February,7,14,1,0,1,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,133.12,0,0,Check-Out,Carol Morgan,grantsteven@example.com,001-377-634-3815x510,3573613354781446,2024-09-05 +Resort Hotel,0,23,2017,August,31,4,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,A,1,No Deposit,237.0,179.0,0,Transient,56.95,1,1,Check-Out,Cheryl Stone,johnsrichard@example.com,753.962.3682,4232396767373,2024-08-21 +City Hotel,0,94,2017,November,46,17,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.04,0,1,Check-Out,Shawn Johnson,stonejose@example.com,536.408.4120x922,4699150332944466580,2024-11-25 +Resort Hotel,0,1,2017,September,36,3,0,2,1,1.0,0,HB,PRT,Offline TA/TO,Corporate,1,0,0,A,I,1,No Deposit,12.0,179.0,0,Transient,46.95,0,1,Check-Out,Edward Gomez,scottebony@example.net,388-698-3717x879,561153214755,2025-07-02 +City Hotel,1,15,2017,November,45,8,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Group,104.75,0,0,Canceled,Victor Davis,hernandezdonna@example.org,001-639-254-6096x5889,4548755646271742,2026-02-27 +City Hotel,1,109,2017,July,30,26,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,68,Transient-Party,117.46,0,0,Canceled,Anthony Adkins,xwoodard@example.org,+1-609-929-7816,377450314491533,2024-11-22 +City Hotel,0,2,2017,September,37,15,0,3,1,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,230.0,0,Transient-Party,45.54,0,1,Check-Out,Ann Phillips,aprilvillanueva@example.net,(628)247-1780x45121,6533444326997494,2025-07-29 +Resort Hotel,0,49,2017,August,33,15,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient-Party,100.34,0,0,Check-Out,Laura Lopez,catherineburke@example.net,929-425-8276x66642,213193113126086,2025-12-02 +Resort Hotel,0,171,2017,April,15,9,4,10,2,0.0,0,HB,CHE,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,249.55,0,1,Check-Out,Richard Brooks,muellermarilyn@example.org,718-670-8471,4352460788836696629,2025-12-05 +Resort Hotel,0,84,2017,January,4,25,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,64.71,0,0,Check-Out,Gabriella Johnston,todd09@example.com,001-402-497-7935,2295693877123069,2025-03-18 +City Hotel,0,19,2017,July,31,29,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,109.85,0,2,Check-Out,Nancy Watkins,iodonnell@example.net,981-337-2463,213139045838561,2024-10-04 +City Hotel,1,13,2017,January,2,3,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.17,0,2,Canceled,Laura Patel,whughes@example.org,208.228.8772x2732,213140524966055,2025-12-07 +City Hotel,0,18,2017,November,46,16,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,53.29,0,1,Check-Out,Jeffrey Keller,cbrooks@example.com,(319)211-0544x12462,4144948311707391,2024-05-15 +Resort Hotel,1,300,2017,July,28,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,237.0,179.0,0,Contract,64.75,0,1,Canceled,Adam Smith,phaney@example.net,871-460-7843x4737,4209957856936085,2024-11-16 +Resort Hotel,0,0,2017,November,47,21,1,5,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,E,1,No Deposit,16.0,179.0,0,Transient,40.49,0,3,Check-Out,Travis Harper,timothyoliver@example.net,(929)693-2699,3578192409594935,2024-11-30 +City Hotel,0,13,2017,January,4,26,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.62,0,1,Check-Out,Christopher Houston,phillipssheila@example.org,734.204.9517x48413,3508777891894838,2024-10-22 +City Hotel,1,2,2017,July,28,9,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,72.61,0,0,Canceled,Kristin Baldwin,acraig@example.com,+1-390-782-0717x9630,3531173195665838,2025-09-06 +Resort Hotel,0,12,2017,November,46,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,239.0,179.0,0,Transient,55.73,1,1,Check-Out,Taylor Diaz,alexanderglass@example.org,902.743.4950x000,4109891335619,2025-05-12 +City Hotel,1,141,2017,March,13,31,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,108.83,0,0,Canceled,Thomas Garcia MD,margaretgill@example.org,591-375-3161x440,3565891899312204,2025-09-05 +Resort Hotel,1,81,2017,August,31,5,4,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,105.51,0,2,Canceled,Kevin Clark,cartertonya@example.com,906.940.8098,38567721342586,2024-09-04 +Resort Hotel,1,244,2017,April,15,8,2,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,240.0,179.0,0,Transient,194.24,0,1,Canceled,Phillip Ramirez,bellchristopher@example.net,+1-877-518-1704,4380707221548060,2025-02-23 +City Hotel,0,16,2017,June,25,24,0,1,2,0.0,0,BB,ESP,Corporate,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,115.99,0,1,Check-Out,Vernon Williams,nataliewilliams@example.org,(836)351-3490x080,6587451401898534,2024-04-28 +City Hotel,1,177,2017,April,16,15,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.51,0,0,Canceled,Shannon Stokes,kennethwagner@example.org,525.941.1638,343946477005417,2025-10-14 +City Hotel,0,11,2017,January,2,1,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,0,No Deposit,17.0,173.0,0,Transient-Party,5.16,0,1,Check-Out,Anthony Braun,nicholastorres@example.org,001-271-506-6331,180000675672366,2024-12-14 +City Hotel,0,47,2017,October,43,27,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.56,0,2,Check-Out,Shane Jones,xadams@example.com,228.958.5471x71052,578176580517,2024-11-23 +City Hotel,0,55,2017,April,15,9,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Contract,112.51,0,2,Canceled,Kathleen Boyd,ugraham@example.org,(733)906-5542,213154574607840,2025-01-17 +City Hotel,0,15,2017,March,11,11,1,1,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,216.28,1,3,Check-Out,Christopher Cole,andrew19@example.org,7159103987,4810421270951957,2025-06-23 +City Hotel,1,147,2017,March,10,5,0,1,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.88,0,0,Canceled,Jasmine Rodriguez,grivera@example.com,409.604.3155x941,4938168650692,2025-08-09 +Resort Hotel,0,204,2017,March,12,22,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,259.0,179.0,0,Transient-Party,62.75,0,0,Check-Out,Stephanie Jarvis,tracywood@example.com,(780)533-0152,348135815131516,2025-09-25 +City Hotel,0,55,2017,November,46,11,0,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,167.31,0,2,Check-Out,Rachel Yang,kmunoz@example.com,371-432-0812,347924797405431,2024-05-22 +Resort Hotel,0,61,2017,September,35,2,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,50.55,0,1,Check-Out,Marie Rangel,millerbrittany@example.com,(632)522-5198x295,4893581415760173527,2025-08-26 +City Hotel,1,373,2017,May,21,23,1,2,2,0.0,0,BB,CHE,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,86.66,0,0,Canceled,Leslie Greer DVM,nford@example.com,(857)229-8824x5709,4483791798873,2025-06-22 +Resort Hotel,0,154,2017,November,48,29,2,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,53.12,1,1,Check-Out,John Davis,oconley@example.com,001-800-959-4609,4928804812457790,2025-03-06 +City Hotel,1,90,2017,October,40,1,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,19,Transient,77.53,0,0,Canceled,Julian Williams,johnwilson@example.net,(338)312-7249x9630,4372758956133134722,2025-09-25 +Resort Hotel,0,0,2017,April,17,25,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,L,E,0,No Deposit,11.0,179.0,0,Transient-Party,107.28,0,1,Check-Out,Kimberly Nolan,burkeluis@example.com,555.224.3322x57987,6597124276738840,2025-05-07 +Resort Hotel,0,153,2017,November,46,13,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,14.0,222.0,0,Transient-Party,60.89,0,0,Check-Out,Bonnie Barnett,freystephen@example.org,362.852.9512x540,582753178513,2025-09-13 +Resort Hotel,1,15,2017,August,31,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,51.32,0,1,Check-Out,Crystal Frazier,hedwards@example.org,001-875-418-6661x36412,3554051932432450,2026-03-09 +Resort Hotel,1,87,2017,August,32,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,240.0,179.0,0,Transient,136.68,0,1,Canceled,Tammy Gonzalez,zwilliams@example.net,765.299.0099x8563,4045125395545936,2025-08-01 +City Hotel,0,250,2017,May,20,15,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,168.34,0,0,Check-Out,Howard Golden,nfoster@example.com,001-298-379-3751,4295173219280,2025-04-03 +Resort Hotel,1,50,2017,April,16,15,0,3,3,1.0,0,HB,,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,Kathleen Le,keitharnold@example.org,+1-818-645-9299,5473877001641198,2025-04-28 +City Hotel,0,95,2017,April,14,8,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient-Party,62.41,0,0,Check-Out,Jeffrey Hernandez,rcarpenter@example.com,534-403-1256,6573237751678493,2025-09-29 +Resort Hotel,0,111,2017,April,16,16,0,5,2,1.0,0,BB,,Direct,Direct,0,0,0,D,G,0,No Deposit,17.0,179.0,0,Transient,252.0,1,0,Check-Out,Duane Bates,leahmckinney@example.com,949.382.1675x991,4473869251031153319,2024-11-01 +Resort Hotel,0,2,2017,September,37,12,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,46.84,0,1,Check-Out,Kristen Watts,matthew27@example.org,919-747-8644x1268,060493953628,2025-07-11 +City Hotel,0,59,2017,April,14,3,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,211.76,0,1,Check-Out,Whitney Ochoa,joseph75@example.org,382.212.3783x274,6542019756308542,2024-11-05 +Resort Hotel,0,105,2017,April,17,23,4,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,112.58,0,0,Check-Out,Sierra Padilla,lmccoy@example.net,263-805-0834x7365,30386277568959,2024-12-02 +City Hotel,0,112,2017,December,51,17,1,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient,96.96,0,1,Check-Out,Laura Sullivan,donnadavis@example.net,558-275-7887x3131,4937754077337436,2025-05-03 +City Hotel,0,1,2017,September,39,24,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,161.77,1,0,Check-Out,Tracy Howard,wendysalazar@example.org,769.650.6761,4122492870447277,2026-02-06 +Resort Hotel,1,258,2017,June,24,16,2,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient-Party,54.48,0,0,Canceled,Brandon Thomas,ybishop@example.org,+1-272-450-3589x87794,2299565886535929,2025-03-17 +Resort Hotel,0,22,2017,November,47,23,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,43.13,0,0,Check-Out,Daniel Henderson,erica96@example.net,329-939-7303x648,377230316118437,2025-08-18 +City Hotel,1,2,2017,December,49,2,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,3.66,0,0,Canceled,Jennifer Hill,umata@example.org,509.343.6291,4217501844076,2025-11-01 +City Hotel,1,0,2017,August,35,31,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.28,0,1,No-Show,Michael Hawkins,hbutler@example.org,(888)330-9785,344676498485111,2025-04-27 +City Hotel,0,20,2017,April,14,5,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,139.6,0,2,Check-Out,David Hogan,hreed@example.com,+1-469-975-5210,30014826202421,2025-05-15 +City Hotel,1,161,2017,March,11,12,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.08,0,2,Canceled,Andrew Weaver,cody50@example.org,+1-758-235-5005x010,213150447330800,2025-04-16 +Resort Hotel,1,63,2017,January,4,24,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,99.55,0,0,Canceled,Levi Meadows,michael81@example.net,7869720288,4385352128751752514,2024-04-17 +Resort Hotel,0,158,2017,March,10,4,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,378.0,179.0,0,Transient,188.32,0,1,Check-Out,Robert Arnold,nunezgina@example.org,001-754-436-7775x9708,376078094118066,2025-10-25 +City Hotel,0,3,2017,April,14,6,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,126.28,0,1,Check-Out,Jeffery Nguyen,bross@example.com,+1-385-794-8967,4385272730749,2025-07-20 +Resort Hotel,0,143,2017,March,10,6,4,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,1,No Deposit,18.0,179.0,0,Transient,138.63,0,2,Check-Out,Shaun Johnson,wallison@example.com,852-628-9858x624,3505335263184693,2024-10-16 +City Hotel,1,114,2017,August,31,3,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,106.73,0,0,No-Show,Kevin Cain,lbarrett@example.net,(640)796-0663x49983,2528179909523376,2026-01-08 +City Hotel,0,5,2017,August,34,22,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,97.84,0,1,Check-Out,Sandra Buck,lopezsamuel@example.org,615.795.4377x890,3565211878042849,2025-03-31 +Resort Hotel,0,148,2017,April,15,9,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,252.0,0,1,Check-Out,Ronald Schwartz,jessica38@example.org,+1-965-492-5490,3539339257495990,2026-02-02 +City Hotel,0,25,2017,December,50,10,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,100.99,0,1,Check-Out,Gilbert Reynolds,strongronald@example.org,389.480.3509,342939585300458,2025-03-22 +City Hotel,0,20,2017,May,19,9,1,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,126.8,1,2,Check-Out,Melinda Little,troytaylor@example.org,001-674-513-0742x14811,6519615741372177,2025-09-07 +City Hotel,1,83,2017,November,48,29,2,3,3,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,84.12,0,2,Check-Out,Hannah Valdez,hrichards@example.org,001-981-970-1086,375480135469014,2025-03-13 +City Hotel,1,207,2017,February,8,17,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,142.68,0,0,Canceled,Mr. William Miller,cbates@example.org,(216)266-1999x63121,6011746261746400,2025-09-23 +Resort Hotel,0,10,2017,July,28,9,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,128.92,1,0,Check-Out,Luke Smith,raylisa@example.org,839.564.7826,6527229416882195,2025-11-28 +City Hotel,0,101,2017,March,13,28,0,2,1,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,178.06,0,2,Check-Out,Jordan Villarreal,wattskathleen@example.org,306.799.6675x10962,5205803075013127,2025-06-25 +City Hotel,1,148,2017,April,17,23,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,125.35,0,0,Canceled,Susan White,arivera@example.net,257.502.2575x80802,4427250858215,2024-11-09 +Resort Hotel,0,1,2017,October,43,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,177.0,179.0,0,Contract,45.89,0,1,Check-Out,Megan Burton,johnsonmarcia@example.org,747.876.4727x76376,6011706748219827,2024-07-13 +City Hotel,1,261,2017,March,11,15,2,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.52,0,1,Canceled,Jared Myers,nguyenmark@example.net,518-770-1365x956,2231966049392318,2025-07-13 +City Hotel,0,101,2017,January,3,15,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,140.34,1,1,Check-Out,Kyle Reed,smithjared@example.net,531-440-8255x55946,344098109864156,2025-08-24 +Resort Hotel,1,7,2017,July,27,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,43.59,0,0,Canceled,James Gates,fwalter@example.org,(991)203-7486x7004,349972481603207,2025-11-19 +Resort Hotel,0,45,2017,February,9,26,4,5,2,1.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,128.01,0,2,Check-Out,Charles Baird,alejandrokeller@example.com,784.335.8125,379458675891363,2024-12-25 +City Hotel,0,139,2017,January,2,13,2,3,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,129.13,1,0,Check-Out,John Carter,shelley50@example.net,901-226-0451,502049771384,2024-09-20 +City Hotel,0,14,2017,August,32,9,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,111.53,0,1,Check-Out,Stefanie Flores,bradyshannon@example.net,851-675-8734,377354802368924,2025-02-25 +Resort Hotel,0,46,2017,July,29,19,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,249.0,179.0,0,Transient,188.33,0,1,Check-Out,Brandy Casey,solomonbrian@example.com,(227)225-7374x8313,213124944370320,2024-08-23 +Resort Hotel,0,18,2017,August,34,21,1,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,62.42,1,1,Check-Out,Beverly Roman,bridgetcannon@example.org,001-728-981-8198x52289,30195915091831,2025-07-15 +Resort Hotel,0,149,2017,March,10,5,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,217.56,0,0,Check-Out,Angela Blake,davidreed@example.com,(713)751-9673,38150549979523,2025-05-10 +Resort Hotel,0,2,2017,January,3,18,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,44.91,0,1,Check-Out,Randy Fernandez,debbiescott@example.org,861-482-6017,4647036267316664,2025-01-29 +Resort Hotel,0,55,2017,September,37,9,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,173.0,179.0,0,Group,39.85,0,1,Check-Out,Randy Parker,grantlogan@example.org,(822)866-8260,6011258228026421,2024-07-08 +City Hotel,1,386,2017,February,6,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,114.47,0,0,Canceled,Debra Pugh,james02@example.com,(634)211-2803x41802,6593103628138309,2024-09-10 +Resort Hotel,0,202,2017,April,15,9,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,31.0,179.0,0,Transient-Party,131.71,0,1,Check-Out,Linda Welch,johnsmith@example.com,+1-974-547-2146,4276242666437121,2024-06-27 +City Hotel,1,146,2017,April,14,1,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.67,0,2,Canceled,Jennifer Santos,allendonald@example.com,256.330.8239,4492523038193437,2025-09-05 +Resort Hotel,0,216,2017,June,24,14,0,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,217.65,1,1,Check-Out,Jacob Moore,agross@example.com,8182230962,4538625430660,2024-10-08 +City Hotel,0,18,2017,February,5,1,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,0,Transient,106.64,0,0,Check-Out,Mr. Michael Williams Jr.,qgould@example.com,860-925-3706x45610,503819972350,2026-03-18 +City Hotel,1,376,2017,November,47,22,1,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,83.49,0,0,Canceled,Timothy Crane,omccullough@example.org,436-917-1392,3551493054174960,2024-07-17 +City Hotel,1,300,2017,June,24,14,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,99.53,0,0,Canceled,Mitchell Hernandez,martinezanthony@example.net,499-948-7870x9931,180011862211785,2024-07-17 +Resort Hotel,0,37,2017,July,28,10,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Transient-Party,52.22,0,0,Check-Out,Christopher Harris,ublankenship@example.net,(688)302-8039,180091391147817,2024-11-18 +City Hotel,0,22,2017,September,36,4,2,4,3,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,99.88,0,1,Check-Out,Ronald Myers,aguirremary@example.com,001-846-575-0328,4196338393024088,2025-05-01 +City Hotel,1,20,2017,August,34,24,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.29,0,1,Canceled,Joseph Mcgee,ebryan@example.net,+1-424-455-3947x01217,4850524111204,2026-01-22 +City Hotel,1,37,2017,March,13,30,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,213.44,0,1,Canceled,Lisa Greene,matthew34@example.net,+1-648-716-4491x2435,30306447940599,2024-10-27 +City Hotel,0,1,2017,January,2,5,2,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,0.0,1,1,Check-Out,Jodi Rodriguez,jessicabell@example.com,001-726-783-9528x463,3586932715837910,2024-09-08 +City Hotel,0,129,2017,November,48,28,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.75,0,1,Check-Out,Amy Mejia,jeffery01@example.net,806.865.9527,4368737527176387,2025-09-06 +City Hotel,0,53,2017,March,12,21,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,133.24,0,2,Check-Out,Ian Dennis,romerostacy@example.org,(340)557-7817x066,572445161522,2025-08-28 +Resort Hotel,0,102,2017,September,38,20,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,C,2,No Deposit,14.0,179.0,0,Transient,56.76,0,1,Check-Out,Curtis Miller,jameslucero@example.org,001-903-423-7345x0496,4252598870653243,2025-10-02 +City Hotel,1,15,2017,June,24,11,0,4,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,105.94,0,0,Canceled,Kayla Watson,petercastillo@example.com,819.695.4408,503893144116,2025-01-11 +Resort Hotel,0,135,2017,November,45,7,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,28.64,1,3,Check-Out,Gary Yu,fisherlawrence@example.org,805.787.3889,4919631436576767917,2024-06-29 +Resort Hotel,0,50,2017,April,17,25,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,202.35,0,1,Check-Out,Donna Hernandez,susannoble@example.org,803.238.3887,213138256842478,2025-01-22 +City Hotel,1,169,2017,January,4,22,0,4,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,174.91,0,2,Canceled,Nicholas Dawson,fosterlauren@example.net,+1-229-554-8269x473,3546354159290572,2024-07-13 +City Hotel,0,144,2017,February,9,25,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,83.37,1,2,Check-Out,Bradley Thomas,shawkins@example.com,593.785.0408x389,4371168992181501,2024-07-16 +Resort Hotel,0,25,2017,April,15,12,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,244.0,179.0,0,Transient,217.0,0,1,Check-Out,Denise Scott,pgarrett@example.com,749.322.3611,4571879581659360021,2024-12-19 +City Hotel,0,21,2017,May,21,24,0,3,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,121.5,0,0,Check-Out,Molly Mcguire,michaelrichard@example.org,(549)886-9124x9776,675917132077,2025-01-02 +Resort Hotel,1,42,2017,January,3,14,1,10,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,D,C,0,No Deposit,246.0,179.0,0,Transient-Party,132.29,1,0,Canceled,Michael Lindsey,josephsantos@example.com,200-275-3257,4656837736429916607,2025-01-17 +Resort Hotel,0,110,2017,February,6,7,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,142.06,0,0,Check-Out,Andre Berger,jacksonmary@example.org,994-647-3061,378198828564282,2025-05-23 +City Hotel,0,126,2017,March,12,22,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,133.05,0,1,Check-Out,Karla Walker,richardjensen@example.org,958.589.8187,676362007731,2024-12-19 +City Hotel,1,17,2017,June,24,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,80.43,0,0,Canceled,Rebecca Gonzalez,htaylor@example.com,863.372.9728,4931972775322189,2024-11-05 +Resort Hotel,0,97,2017,August,34,20,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,83.7,0,0,Check-Out,Julie Davenport,andersoncassandra@example.net,001-341-286-8752x78717,6011236114958303,2024-06-24 +City Hotel,1,143,2017,March,9,1,2,3,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,No-Show,Kimberly Norris,smithjennifer@example.com,496-538-1711x8222,501835883585,2025-06-17 +Resort Hotel,0,13,2017,April,15,12,2,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,115.86,0,0,Check-Out,Peter Davis,bradfordchad@example.org,(502)957-6841x2080,213199356378417,2025-05-24 +City Hotel,0,33,2017,June,25,23,0,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,48.16,0,0,Check-Out,Timothy Thomas,catherineallison@example.com,(674)299-2502x030,4119870076720065,2025-08-01 +Resort Hotel,0,1,2017,May,19,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,56.68,0,1,Check-Out,Johnathan Bentley,andrewskrystal@example.com,001-328-563-6688,5568709797734414,2025-07-10 +Resort Hotel,0,17,2017,June,23,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,55.15,0,0,Check-Out,Stephanie Holmes,robert89@example.com,(215)903-3666x5642,4229030268434432,2024-12-30 +City Hotel,0,0,2017,September,36,5,0,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,156.72,0,0,Canceled,Marissa Choi,vhill@example.com,(680)841-5748,502072964393,2024-10-25 +City Hotel,0,0,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Contract,78.4,0,0,Check-Out,Latasha Hernandez,blakescott@example.org,001-210-540-8641x4061,4805958755251461926,2025-02-28 +City Hotel,0,18,2017,May,18,5,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.1,0,2,Check-Out,William Cooper,walkerpatricia@example.org,435.604.7911,4432402238273917832,2024-09-18 +Resort Hotel,1,24,2017,February,6,3,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,165.58,0,0,No-Show,Raymond Fischer,kenneth21@example.org,001-729-643-6226,2237320357850125,2024-08-08 +City Hotel,0,2,2017,April,15,15,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,134.83,0,1,Check-Out,Daniel Cook,jill32@example.org,+1-257-772-4059x8952,3586201005383955,2025-11-08 +Resort Hotel,0,47,2017,April,14,5,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,239.0,179.0,0,Transient,203.74,0,2,Check-Out,Jocelyn Campbell,nataliehall@example.org,+1-885-615-2114x882,4001227019956861,2024-07-01 +Resort Hotel,1,153,2017,February,7,11,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,137.0,179.0,0,Contract,132.89,0,1,Canceled,Hannah Anderson,lucaskeith@example.org,931.887.8642x60135,2714671173212524,2025-07-13 +Resort Hotel,1,56,2017,August,33,14,2,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,B,0,No Deposit,12.0,179.0,0,Transient,55.32,0,2,No-Show,Michael Shaw,nicholas30@example.org,+1-752-673-4724x965,4039754307837,2025-09-30 +City Hotel,1,143,2017,May,18,1,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,183.8,0,0,Canceled,Briana Curry,feliciaperkins@example.net,+1-630-964-5044x039,343303315212724,2024-12-02 +City Hotel,0,86,2017,January,2,3,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,106.35,0,1,Check-Out,Samantha Hernandez MD,bmay@example.org,(387)591-2692x038,4025327344936,2025-09-25 +City Hotel,0,44,2017,April,15,11,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.4,0,1,Check-Out,Bethany Morris,carrillomichael@example.org,472.203.7305,30169202566219,2025-02-22 +Resort Hotel,0,1,2017,April,16,20,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,55.64,0,1,Check-Out,Austin Owens,robersongerald@example.com,+1-467-949-1991x235,180032621810097,2025-11-20 +Resort Hotel,0,144,2017,August,32,9,2,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,191.0,179.0,0,Transient,224.49,0,0,Check-Out,Kristin Lopez,fwheeler@example.net,+1-561-237-7868x414,4704894070068330,2025-03-01 +City Hotel,0,152,2017,March,10,2,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,237.79,0,0,Check-Out,Angel Wright,tsmith@example.org,(534)309-0450,4985241123592207184,2024-04-14 +City Hotel,1,122,2017,January,4,22,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.08,0,2,Canceled,David Fitzgerald,lisafrench@example.com,2908291838,213145477538637,2025-02-24 +City Hotel,1,326,2017,June,24,14,0,3,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,96.23,0,0,Canceled,Victor Moore,alisoncampbell@example.org,791-997-1256,4055667326318,2026-01-22 +City Hotel,1,15,2017,August,32,5,0,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,105.58,0,0,Canceled,Mrs. Kaitlyn James,ayork@example.com,+1-588-983-1569x12080,3595493520449168,2024-10-03 +City Hotel,0,4,2017,March,12,18,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,105.5,0,0,Check-Out,Andrew Anderson,theresagilbert@example.org,(784)253-0363,4361316443597377,2024-09-01 +City Hotel,1,11,2017,April,17,24,0,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.43,0,0,Canceled,Kathleen Flores,agutierrez@example.org,409.871.5104x62032,4843316332246144732,2025-12-06 +City Hotel,0,29,2017,December,51,23,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,48.74,1,0,Check-Out,Kathryn Miller,oreyes@example.net,+1-465-906-6982,676166609880,2025-02-09 +Resort Hotel,1,154,2017,February,6,4,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,88.67,0,1,Canceled,Amy Kennedy,markellis@example.org,+1-992-908-8963,2245871103553256,2026-02-19 +City Hotel,0,2,2017,April,14,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.62,0,1,Check-Out,Michael Underwood,fmckee@example.com,001-687-285-0787x0953,676320313312,2024-09-16 +City Hotel,0,2,2017,April,17,27,1,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,128.92,1,0,Check-Out,Jean Ward,hallbelinda@example.com,001-652-940-8715,3515155796487431,2025-02-03 +City Hotel,1,114,2017,January,3,18,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,105.56,0,1,Canceled,Jacob Brady,moniquehall@example.com,292.485.0038x89264,4148969431191833,2025-01-19 +City Hotel,0,354,2017,June,23,1,2,5,2,0.0,0,HB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,129.4,0,0,Check-Out,Carl Douglas,kimberly94@example.org,(858)510-2144x016,3543941346915179,2024-08-25 +Resort Hotel,1,42,2017,September,36,8,2,5,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,42.42,0,1,Canceled,Ryan Joseph,john40@example.org,288.987.8151x18302,3574278540764604,2025-12-08 +City Hotel,1,89,2017,March,10,10,1,10,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,206.0,179.0,0,Transient,129.67,0,0,Canceled,Dawn Blevins,bridgethoffman@example.net,+1-703-534-4841x956,30230324334389,2026-03-12 +Resort Hotel,0,3,2017,March,13,26,1,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,63.91,1,1,Check-Out,Mark Martinez,evan95@example.org,(764)676-9185x4031,503833964151,2024-04-22 +Resort Hotel,0,345,2017,February,9,24,4,10,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,133.45,0,1,Check-Out,Angela Weeks,jennifermurray@example.net,531-429-0761x688,4051417021085267,2025-04-11 +City Hotel,1,59,2017,August,32,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,44,Transient,69.72,0,0,Canceled,Kevin Camacho,pam28@example.com,+1-459-370-5503x90660,30430974033790,2026-01-06 +Resort Hotel,0,12,2017,July,27,7,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,52.51,0,1,Check-Out,Eric Zimmerman,connerhelen@example.net,001-992-873-2094,213166235687573,2025-01-30 +Resort Hotel,0,87,2017,March,10,6,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Contract,86.56,0,1,Check-Out,Timothy Lewis,robert38@example.org,6833088806,3530969002845856,2025-01-25 +City Hotel,0,347,2017,June,23,5,2,2,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,38.29,0,0,Check-Out,Lisa Mendoza,donnastrickland@example.org,(875)825-1321x38732,3596936731014469,2024-12-20 +Resort Hotel,0,18,2017,November,44,3,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.55,1,2,Check-Out,Melinda Cox,hernandezbrent@example.com,001-584-577-7869x56089,30188867587286,2025-09-06 +Resort Hotel,1,280,2017,June,22,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.51,0,0,Canceled,David Hill,powellsarah@example.net,991.415.6693,213197847713309,2025-09-29 +City Hotel,0,89,2017,December,51,23,1,7,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,122.37,0,0,Check-Out,Joanne Dean,jenna55@example.net,001-261-974-7295x98177,4942436006663452373,2024-06-20 +City Hotel,1,17,2017,April,14,4,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.7,0,3,Canceled,Julie Davis,egreen@example.org,579.416.3493x017,3555832211763577,2026-03-11 +City Hotel,1,41,2017,August,35,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,238.0,179.0,0,Transient,250.21,0,1,Canceled,Nicole Conner,mollytaylor@example.org,(667)963-7665,6011621153375487,2025-03-02 +Resort Hotel,0,9,2017,October,41,13,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,51.99,1,1,Check-Out,Edward Greene,nsmith@example.com,+1-770-224-9820x3614,4811108743993919,2024-04-11 +Resort Hotel,0,100,2017,June,25,23,1,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,C,1,No Deposit,342.0,179.0,0,Transient-Party,71.05,0,0,Check-Out,Patrick Daniels MD,barberamy@example.net,+1-673-962-9616x56642,2491353998442441,2024-06-07 +Resort Hotel,0,61,2017,June,25,22,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,E,0,No Deposit,15.0,75.0,0,Transient,50.39,0,0,Check-Out,Jennifer Jones,fred35@example.net,001-474-609-6886x531,180048629773269,2024-08-16 +Resort Hotel,0,0,2017,May,22,27,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,A,2,No Deposit,16.0,179.0,0,Transient,5.26,1,0,Check-Out,Katie Massey,alan16@example.net,308-744-4841,3509032268259432,2024-04-08 +Resort Hotel,0,4,2017,September,39,24,0,1,1,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,222.0,0,Transient,41.4,0,0,Check-Out,Jamie Gould,whiteheadandrea@example.org,5472084242,2281483250876020,2026-01-17 +Resort Hotel,0,162,2017,March,13,24,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,105.51,0,3,Check-Out,Rhonda Anderson MD,courtney36@example.org,(864)400-8946,6011637674305290,2025-04-24 +Resort Hotel,0,21,2017,June,24,15,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,108.5,1,1,Check-Out,Kathryn Scott,josephmitchell@example.org,740-367-0294x0047,5300295165360795,2024-05-03 +Resort Hotel,1,48,2017,May,21,18,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,244.0,179.0,0,Transient,95.57,0,2,No-Show,William Robinson,acook@example.org,721.441.7516x0631,6500281551018961,2024-07-01 +City Hotel,0,12,2017,November,48,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,88.24,0,0,Check-Out,Steven Aguilar,elizabeth72@example.org,602-886-7453x755,3552630629544255,2025-07-20 +Resort Hotel,0,9,2017,November,44,3,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,G,2,No Deposit,240.0,179.0,0,Transient,45.28,0,2,Check-Out,Thomas Lewis,donna17@example.org,2954469570,4149676841518088,2025-11-27 +City Hotel,1,141,2017,February,7,16,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,B,0,No Deposit,13.0,179.0,0,Transient,147.91,0,0,Canceled,Cody Pitts,sramirez@example.net,947-533-9775x04448,4851458494527291995,2025-07-01 +Resort Hotel,1,193,2017,March,11,14,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,99.6,0,0,Canceled,Justin Noble,stanley92@example.com,478-752-8454x348,3575497595081230,2024-06-30 +City Hotel,1,113,2017,January,3,16,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,100.26,0,1,Canceled,Dylan Clark,onealbeth@example.com,001-755-459-9603x11197,30282561311778,2024-09-15 +Resort Hotel,1,101,2017,January,2,1,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,185.0,179.0,0,Transient,105.93,0,0,Canceled,Erik David,nicholas73@example.com,001-221-643-5509x994,180041783880830,2025-02-12 +Resort Hotel,0,1,2017,September,35,1,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,64.78,1,1,Check-Out,Stephanie Robinson,richardbarnes@example.net,594.449.6455x093,180000859744890,2026-03-04 +Resort Hotel,0,93,2017,December,52,27,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,123.0,179.0,0,Transient,113.94,0,1,Check-Out,Joel Stevens,sheryl70@example.com,001-245-378-5903x858,2264831804813934,2025-03-24 +City Hotel,1,308,2017,November,46,13,0,3,1,0.0,0,BB,POL,Groups,Corporate,0,0,0,A,A,2,Non Refund,14.0,179.0,0,Transient-Party,106.38,0,0,Canceled,Kathleen Smith,mparker@example.net,4878519984,4015097886792119,2024-03-29 +Resort Hotel,0,2,2017,September,39,26,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,62.55,1,1,Check-Out,James Jenkins,suttonpaul@example.org,+1-840-592-8544x588,4298572960852125995,2024-11-18 +City Hotel,0,43,2017,July,28,10,1,2,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,72.83,0,0,Check-Out,Dr. Jennifer Smith DVM,drangel@example.org,452-365-8140x998,2494448543943583,2026-01-11 +Resort Hotel,0,74,2017,November,47,24,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,123.35,1,2,Check-Out,Mitchell Martin,gsherman@example.org,001-775-715-6351x53115,503858258901,2025-11-11 +City Hotel,0,206,2017,February,9,26,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.22,0,0,Check-Out,Sarah Wilson DVM,gdunlap@example.org,(891)214-9528,343404632845392,2025-02-22 +Resort Hotel,0,209,2017,May,21,18,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,170.0,179.0,0,Transient,126.85,0,1,Check-Out,Maria Martinez,kimberlythomas@example.com,449-435-7986x2582,4271106182182906,2024-04-13 +City Hotel,1,149,2017,August,32,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,113.19,0,0,Canceled,Tanya Trevino,zhart@example.net,892-810-5180x898,4948053055410,2025-04-19 +City Hotel,0,12,2017,August,31,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,242.0,179.0,0,Transient-Party,87.12,0,1,Check-Out,Sharon Medina,brownamy@example.org,832-640-9396,2663282529242495,2025-07-05 +City Hotel,1,296,2017,October,44,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,B,0,Non Refund,11.0,179.0,0,Transient,67.46,0,1,Canceled,Dr. Phillip Anderson,alicia89@example.com,635.432.9554x5552,4882990154366180010,2025-03-05 +City Hotel,1,57,2017,June,25,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,87.25,0,0,Canceled,Richard George,vparks@example.com,951.410.0065,30017034177970,2024-08-03 +Resort Hotel,0,49,2017,June,23,5,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,240.0,179.0,0,Contract,54.88,0,1,Check-Out,Adam Evans,lyonshenry@example.net,(821)986-8324,344991938835944,2024-12-30 +City Hotel,1,4,2017,August,35,30,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,109.94,0,0,Canceled,Maria Murillo,tamarageorge@example.org,(757)763-9116x75977,584789819086,2025-06-07 +Resort Hotel,0,1,2017,April,18,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,54.69,0,0,Check-Out,Christopher Hodges,fcannon@example.org,+1-684-266-9200,376397301558272,2025-05-07 +City Hotel,0,1,2017,October,43,24,1,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,222.02,0,0,Check-Out,Jennifer Levy,kristenwilson@example.net,(243)542-5222x13738,4160423113326237,2026-01-09 +Resort Hotel,0,98,2017,September,37,12,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,C,1,No Deposit,238.0,179.0,0,Transient,63.68,0,1,Check-Out,Donald Gomez,judyweber@example.org,780-344-8887x2114,4004557598081,2025-12-14 +City Hotel,1,166,2017,December,51,22,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,100.69,0,0,Canceled,Christopher King,hansenryan@example.net,6155938034,6572048480696214,2024-10-12 +City Hotel,0,1,2017,October,43,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,42.91,0,1,Check-Out,Christine Peterson,jasonorozco@example.net,670-443-0474,6011764621206502,2025-05-03 +City Hotel,1,131,2017,May,19,9,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,137.99,0,2,Canceled,Destiny Johns,bwebb@example.net,837-725-2789,578333946452,2025-02-20 +Resort Hotel,0,12,2017,December,52,27,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,126.39,0,1,Check-Out,Ashley Meyer,xjenkins@example.net,443.740.4428x896,3568248730901157,2025-12-07 +City Hotel,0,2,2017,March,11,11,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,133.31,0,0,Check-Out,Scott Hamilton,gail86@example.org,866.896.7773x2812,4789521294235,2025-08-06 +Resort Hotel,0,14,2017,December,50,12,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient-Party,78.09,0,0,Check-Out,Walter White,phawkins@example.net,+1-270-460-0202x5427,4442193145308293,2025-01-19 +City Hotel,0,2,2017,April,16,18,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,A,1,No Deposit,16.0,179.0,0,Transient,147.96,0,3,Check-Out,James Young,matthew71@example.org,001-637-482-7399x38026,3589709910398246,2026-01-24 +City Hotel,0,107,2017,February,5,1,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient-Party,133.72,0,0,Check-Out,Anita Sherman,sdominguez@example.net,651.534.3098x8142,3580264812349045,2025-05-10 +City Hotel,0,0,2017,December,52,30,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,16.0,173.0,0,Transient-Party,3.87,0,0,Check-Out,Justin Swanson,morenoscott@example.com,244.264.5332x4885,377551412339605,2024-09-18 +City Hotel,1,43,2017,March,9,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,75,Transient,102.28,0,0,Canceled,James Garrett,jeffsoto@example.com,411.630.2791,4146866910002305191,2025-12-16 +City Hotel,0,13,2017,April,14,7,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.33,0,3,Check-Out,Angela Jenkins,stephanie26@example.com,+1-259-684-1154x4441,4765864409702814,2026-01-13 +Resort Hotel,1,138,2017,January,3,15,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient,134.91,0,2,Canceled,Gregory Ward,frankcruz@example.net,443-348-3560x71420,675941895020,2024-12-18 +City Hotel,0,39,2017,May,20,15,2,5,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,106.0,0,0,Check-Out,Ms. Lori Watson,youngcameron@example.net,001-206-746-7538,6011007984703784,2024-04-23 +City Hotel,0,2,2017,November,45,5,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,45.0,0,Transient,41.67,0,1,Check-Out,Carol Dean,raymondwilliams@example.net,(203)697-8335x3361,372039055542755,2025-03-05 +City Hotel,1,174,2017,February,8,19,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,44,Transient,120.56,0,0,Canceled,Dr. Thomas Clark PhD,sanderson@example.net,437-625-0002x7472,342028700787094,2025-07-05 +City Hotel,1,244,2017,February,8,22,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,97.1,0,0,Canceled,Michael Rogers,staceyryan@example.net,572.470.9487x71973,30553339959233,2025-04-12 +Resort Hotel,1,95,2017,February,8,23,3,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,242.0,179.0,0,Transient,134.99,0,1,Canceled,John Murray MD,olsoncrystal@example.net,(955)864-4636x95412,3572922626592320,2024-07-08 +City Hotel,0,25,2017,May,19,10,2,0,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,B,2,No Deposit,14.0,179.0,0,Transient,0.0,0,0,Check-Out,Jacob Clark,jennifer62@example.net,348.251.1644,30331935388366,2025-04-17 +City Hotel,0,8,2017,December,52,30,0,1,3,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,137.68,0,0,Check-Out,Jessica Clark,christopher32@example.com,428.643.2540x124,4333430094106715463,2025-09-21 +City Hotel,0,0,2017,March,13,29,1,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,106.13,0,3,Check-Out,Ann Scott,carol12@example.org,(942)840-2527x79876,3564668758423251,2025-04-12 +City Hotel,0,1,2017,July,28,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,1,No Deposit,16.0,76.0,0,Transient,49.6,0,1,Check-Out,Lauren Robinson,mitchellfelicia@example.com,647.669.0612x790,4961372270453,2026-02-24 +City Hotel,1,315,2017,April,18,30,1,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Contract,235.03,0,0,Canceled,Kristi Choi,christopherbell@example.org,001-409-545-8630x872,4969227990999070,2025-10-06 +City Hotel,0,14,2017,June,23,9,0,3,1,0.0,0,BB,,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,145.0,236.0,0,Transient-Party,77.86,0,0,Check-Out,Rebecca White,melissa45@example.net,787.627.6893,3581794206490483,2024-07-19 +City Hotel,0,10,2017,April,16,20,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,112.52,0,1,Check-Out,Sarah Lee,kingkevin@example.net,255.875.7758x764,6011058601674619,2024-12-19 +City Hotel,1,39,2017,June,22,1,0,2,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,63,Transient,108.39,0,0,Canceled,Alexandria Shepherd,michaelbrown@example.net,+1-688-299-2069x11129,3558827902178827,2024-06-12 +City Hotel,1,13,2017,June,23,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,H,E,0,Non Refund,11.0,179.0,0,Transient,194.67,0,0,Canceled,Ashley Glenn,marroyo@example.net,499.319.8149,344973219369090,2025-07-02 +City Hotel,1,49,2017,April,14,2,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.88,0,0,Canceled,Benjamin Walker,tiffanybailey@example.org,(924)782-5425x40867,38469833183430,2024-05-19 +City Hotel,0,166,2017,January,3,16,2,1,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,233.44,0,1,Check-Out,Eric Rasmussen,johnparsons@example.com,(567)907-3931x49241,2665922663417217,2025-09-06 +Resort Hotel,1,1,2017,January,2,7,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,19.0,179.0,0,Transient,246.81,0,1,No-Show,Clifford Gonzalez,karen92@example.net,8996932495,4972460028335810,2025-10-23 +City Hotel,0,58,2017,April,15,13,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,111.66,1,1,Check-Out,Kathryn Moore,justincampbell@example.net,713-573-1439,4312328224600338,2025-10-14 +Resort Hotel,1,142,2017,March,14,30,4,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,252.0,0,1,No-Show,Willie Munoz,michaelhensley@example.org,364-767-2559x713,4031935448486433,2025-04-26 +City Hotel,1,18,2017,March,11,14,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,109.79,0,0,Canceled,Sean Warren,abrown@example.com,930.260.7047,343565372116333,2025-05-30 +Resort Hotel,0,23,2017,September,36,5,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,57.19,0,1,Check-Out,Robert Cruz,pholland@example.org,336.505.2235x2567,5592378706098640,2025-02-08 +City Hotel,0,24,2017,April,16,16,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,241.85,0,3,Check-Out,Samantha Petersen,caroline76@example.com,796-875-5267x929,3552828003148293,2025-02-08 +City Hotel,1,36,2017,November,47,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,170.0,179.0,0,Transient,54.12,0,0,Canceled,Alicia Combs,jessecuevas@example.org,001-687-583-5457x0919,4344680132790,2025-10-20 +City Hotel,1,14,2017,August,34,25,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.21,0,2,No-Show,Miss Laura Davis,phenson@example.org,001-492-661-9138x55515,3513617264136388,2024-03-31 +City Hotel,0,0,2017,June,24,14,0,2,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.47,0,0,Check-Out,Mrs. Kerri Weeks,kimberlyanderson@example.org,(483)986-7507x1897,4041391447950335646,2025-12-19 +City Hotel,0,95,2017,January,2,4,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient-Party,116.66,0,0,Check-Out,Louis Armstrong,jeremyjones@example.com,001-741-960-6608x6822,4444143249424312,2025-11-24 +Resort Hotel,0,157,2017,March,10,8,2,6,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,133.51,0,1,Check-Out,David Hayes,tmatthews@example.org,8153346602,4178655090949420,2025-03-02 diff --git a/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/metadata.json b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/metadata.json new file mode 100644 index 00000000..7a3a050c --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/metadata.json @@ -0,0 +1,94 @@ +{ + "rows": 10000, + "columns": { + "count": 36, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "booking_changes", + "deposit_type", + "agent", + "company", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "name", + "email", + "phone-number", + "credit_card", + "reservation_status_date" + ], + "dtypes": { + "hotel": "object", + "is_canceled": "int64", + "lead_time": "int64", + "arrival_date_year": "int64", + "arrival_date_month": "object", + "arrival_date_week_number": "int64", + "arrival_date_day_of_month": "int64", + "stays_in_weekend_nights": "int64", + "stays_in_week_nights": "int64", + "adults": "int64", + "children": "float64", + "babies": "int64", + "meal": "object", + "country": "object", + "market_segment": "object", + "distribution_channel": "object", + "is_repeated_guest": "int64", + "previous_cancellations": "int64", + "previous_bookings_not_canceled": "int64", + "reserved_room_type": "object", + "assigned_room_type": "object", + "booking_changes": "int64", + "deposit_type": "object", + "agent": "float64", + "company": "float64", + "days_in_waiting_list": "int64", + "customer_type": "object", + "adr": "float64", + "required_car_parking_spaces": "int64", + "total_of_special_requests": "int64", + "reservation_status": "object", + "name": "object", + "email": "object", + "phone-number": "object", + "credit_card": "int64", + "reservation_status_date": "object" + } + }, + "created_at": "2026-03-28T13:20:59.881314", + "created_by": "register_raw_snapshot.py", + "owner": "Sebastijan", + "data": { + "name": "hotel_bookings", + "version": "v1", + "format": "csv", + "path_suffix": "data.csv", + "hash": "d96ccb9ce71e68d390961aedba73166a948e0b0b8c0dcddc46c874ca81c1b258" + }, + "memory_usage_mb": 10.957391738891602, + "raw_run_id": "2026-03-28T13-20-27_43859088" +} \ No newline at end of file diff --git a/data/raw/hotel_bookings/v1/2026-03-22T10-40-04_435d8e03/quality_report.json b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/quality_report.json similarity index 83% rename from data/raw/hotel_bookings/v1/2026-03-22T10-40-04_435d8e03/quality_report.json rename to data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/quality_report.json index 8a9f0bd0..b43fef72 100644 --- a/data/raw/hotel_bookings/v1/2026-03-22T10-40-04_435d8e03/quality_report.json +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/quality_report.json @@ -1,13 +1,13 @@ { - "overall_score": 0.9012205898021382, + "overall_score": 0.9004647282801759, "properties": [ { "Property": "Column Shapes", - "Score": 0.9481475432406399 + "Score": 0.9472818375127325 }, { "Property": "Column Pair Trends", - "Score": 0.8542936363636364 + "Score": 0.8536476190476191 } ], "details": { @@ -15,92 +15,92 @@ { "Column": "hotel", "Metric": "TVComplement", - "Score": 0.9471389898651479 + "Score": 0.9606389898651478 }, { "Column": "is_canceled", "Metric": "KSComplement", - "Score": 0.9751437172292486 + "Score": 0.9751837172292487 }, { "Column": "lead_time", "Metric": "KSComplement", - "Score": 0.8896650473238965 + "Score": 0.8898650473238965 }, { "Column": "arrival_date_year", "Metric": "TVComplement", - "Score": 0.9864293140128989 + "Score": 0.896127221710361 }, { "Column": "arrival_date_month", "Metric": "TVComplement", - "Score": 0.9215293743194573 + "Score": 0.911238210905436 }, { "Column": "arrival_date_week_number", "Metric": "KSComplement", - "Score": 0.92909254041377 + "Score": 0.9491872016081749 }, { "Column": "arrival_date_day_of_month", "Metric": "KSComplement", - "Score": 0.907263216349778 + "Score": 0.9220541251361085 }, { "Column": "stays_in_weekend_nights", "Metric": "KSComplement", - "Score": 0.9535706139542675 + "Score": 0.9849693860457325 }, { "Column": "stays_in_week_nights", "Metric": "KSComplement", - "Score": 0.9273076974620991 + "Score": 0.9569270960716978 }, { "Column": "adults", "Metric": "KSComplement", - "Score": 0.957847591925622 + "Score": 0.9950524080743781 }, { "Column": "children", "Metric": "KSComplement", - "Score": 0.9733690744618477 + "Score": 0.9429490744618477 }, { "Column": "babies", "Metric": "KSComplement", - "Score": 0.9945407102772426 + "Score": 0.9878807102772426 }, { "Column": "meal", "Metric": "TVComplement", - "Score": 0.9656362157634643 + "Score": 0.9815557500628194 }, { "Column": "country", "Metric": "TVComplement", - "Score": 0.9148136008040875 + "Score": 0.9207134852165173 }, { "Column": "market_segment", "Metric": "TVComplement", - "Score": 0.9448438143898149 + "Score": 0.9383185107630455 }, { "Column": "distribution_channel", "Metric": "TVComplement", - "Score": 0.9185296021442332 + "Score": 0.9003496021442331 }, { "Column": "is_repeated_guest", "Metric": "KSComplement", - "Score": 0.9660922204539744 + "Score": 0.9990122204539743 }, { "Column": "previous_cancellations", "Metric": "KSComplement", - "Score": 0.9830494061479186 + "Score": 0.9951094061479185 }, { "Column": "previous_bookings_not_canceled", @@ -110,67 +110,62 @@ { "Column": "reserved_room_type", "Metric": "TVComplement", - "Score": 0.9184360549459754 + "Score": 0.9194219197587739 }, { "Column": "assigned_room_type", "Metric": "TVComplement", - "Score": 0.8929186715805344 + "Score": 0.8939258145573331 }, { "Column": "booking_changes", "Metric": "KSComplement", - "Score": 0.9768805209816568 + "Score": 0.9560029650724516 }, { "Column": "deposit_type", "Metric": "TVComplement", - "Score": 0.9849168975626099 + "Score": 0.9799205879889438 }, { "Column": "agent", "Metric": "KSComplement", - "Score": 0.8504212798391826 + "Score": 0.8331812798391826 }, { "Column": "company", "Metric": "KSComplement", - "Score": 0.9737686992210403 + "Score": 0.9769268196666387 }, { "Column": "days_in_waiting_list", "Metric": "KSComplement", - "Score": 0.9941249049334115 + "Score": 0.9939649049334115 }, { "Column": "customer_type", "Metric": "TVComplement", - "Score": 0.9806331133260742 + "Score": 0.9868636150431359 }, { "Column": "adr", "Metric": "KSComplement", - "Score": 0.9227675299438813 + "Score": 0.9128701398777117 }, { "Column": "required_car_parking_spaces", "Metric": "TVComplement", - "Score": 0.9604757550883659 + "Score": 0.9523157550883659 }, { "Column": "total_of_special_requests", "Metric": "TVComplement", - "Score": 0.9150219850908786 + "Score": 0.9194226987184856 }, { "Column": "reservation_status", "Metric": "TVComplement", - "Score": 0.9666534416617807 - }, - { - "Column": "reservation_status_month", - "Metric": "KSComplement", - "Score": 0.9652449250355977 + "Score": 0.9511934416617807 } ], "Column Pair Trends": [ @@ -181,7 +176,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1379190280287078, + "Real Association": 0.14049454095537586, "Meets Threshold?": false }, { @@ -191,7 +186,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09705898020308165, + "Real Association": 0.09711391730556053, "Meets Threshold?": false }, { @@ -201,7 +196,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.038434301021348746, + "Real Association": 0.04192597319837532, "Meets Threshold?": false }, { @@ -211,7 +206,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0698550282269466, + "Real Association": 0.07404757960075414, "Meets Threshold?": false }, { @@ -221,7 +216,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06701726164478847, + "Real Association": 0.06872388187509584, "Meets Threshold?": false }, { @@ -231,7 +226,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.034634339985639896, + "Real Association": 0.04004170416841129, "Meets Threshold?": false }, { @@ -241,17 +236,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.19348141740164054, + "Real Association": 0.1957789495851601, "Meets Threshold?": false }, { "Column 1": "hotel", "Column 2": "stays_in_week_nights", "Metric": "ContingencySimilarity", - "Score": 0.19698000000000015, + "Score": 0.16592000000000018, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.32608598896965674, + "Real Association": 0.3275432270467534, "Meets Threshold?": true }, { @@ -261,7 +256,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.014081122117002172, + "Real Association": 0.017721175345557706, "Meets Threshold?": false }, { @@ -271,7 +266,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05091487810581823, + "Real Association": 0.042535604341034254, "Meets Threshold?": false }, { @@ -281,17 +276,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0501423286769019, + "Real Association": 0.050794096519550636, "Meets Threshold?": false }, { "Column 1": "hotel", "Column 2": "meal", "Metric": "ContingencySimilarity", - "Score": 0.93854, + "Score": 0.95492, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.3182396725584705, + "Real Association": 0.3131346126461553, "Meets Threshold?": true }, { @@ -301,7 +296,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.2839963753133469, + "Real Association": 0.28316510771123166, "Meets Threshold?": false }, { @@ -311,7 +306,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.14590181978231176, + "Real Association": 0.1399967408772531, "Meets Threshold?": false }, { @@ -321,7 +316,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1878567496455099, + "Real Association": 0.18413811154235096, "Meets Threshold?": false }, { @@ -331,7 +326,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.04436998627993055, + "Real Association": 0.04748551540865877, "Meets Threshold?": false }, { @@ -341,7 +336,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.04748394325808215, + "Real Association": 0.048370438831689816, "Meets Threshold?": false }, { @@ -351,27 +346,27 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.020224593239576837, + "Real Association": 0.014709488403257831, "Meets Threshold?": false }, { "Column 1": "hotel", "Column 2": "reserved_room_type", "Metric": "ContingencySimilarity", - "Score": 0.89636, + "Score": 0.9203399999999999, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.3229095334177716, + "Real Association": 0.32667421373332556, "Meets Threshold?": true }, { "Column 1": "hotel", "Column 2": "assigned_room_type", "Metric": "ContingencySimilarity", - "Score": 0.88712, + "Score": 0.89398, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.39366109011789774, + "Real Association": 0.3850054709634723, "Meets Threshold?": true }, { @@ -381,7 +376,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.04176435445075852, + "Real Association": 0.03933318260464659, "Meets Threshold?": false }, { @@ -391,17 +386,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1788206581577344, + "Real Association": 0.17591359228483633, "Meets Threshold?": false }, { "Column 1": "hotel", "Column 2": "agent", "Metric": "ContingencySimilarity", - "Score": 0.92528, + "Score": 0.9204600000000001, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.682898815130228, + "Real Association": 0.6890699417390368, "Meets Threshold?": true }, { @@ -411,7 +406,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.13917532127471766, + "Real Association": 0.14098523176990324, "Meets Threshold?": false }, { @@ -421,7 +416,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08578627515121795, + "Real Association": 0.09061903003483952, "Meets Threshold?": false }, { @@ -431,7 +426,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.050279124486149754, + "Real Association": 0.05331298997105624, "Meets Threshold?": false }, { @@ -451,7 +446,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.21816756249343566, + "Real Association": 0.2182954014061547, "Meets Threshold?": false }, { @@ -461,7 +456,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05173409731968284, + "Real Association": 0.049248363651793914, "Meets Threshold?": false }, { @@ -471,17 +466,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.13723899845902757, - "Meets Threshold?": false - }, - { - "Column 1": "hotel", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.06605431445257769, + "Real Association": 0.13006663309850786, "Meets Threshold?": false }, { @@ -501,7 +486,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02488765798461189, + "Real Association": 0.02144266694711689, "Meets Threshold?": false }, { @@ -511,7 +496,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07088337046786158, + "Real Association": 0.06965903671425486, "Meets Threshold?": false }, { @@ -591,17 +576,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.051122695752935536, + "Real Association": 0.050224343573430814, "Meets Threshold?": false }, { "Column 1": "is_canceled", "Column 2": "country", "Metric": "ContingencySimilarity", - "Score": 0.90692, + "Score": 0.91908, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.34717537417212435, + "Real Association": 0.35084754213684033, "Meets Threshold?": true }, { @@ -611,7 +596,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.2642183923468604, + "Real Association": 0.2659264287692863, "Meets Threshold?": false }, { @@ -621,7 +606,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1737644754997629, + "Real Association": 0.1722414882408194, "Meets Threshold?": false }, { @@ -661,7 +646,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07884356548754544, + "Real Association": 0.0773018211012691, "Meets Threshold?": false }, { @@ -671,7 +656,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.2003018292718748, + "Real Association": 0.20636245685309249, "Meets Threshold?": false }, { @@ -688,10 +673,10 @@ "Column 1": "is_canceled", "Column 2": "deposit_type", "Metric": "ContingencySimilarity", - "Score": 0.96904, + "Score": 0.97136, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.48136037500730805, + "Real Association": 0.4875863053346473, "Meets Threshold?": true }, { @@ -731,7 +716,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1363532441515541, + "Real Association": 0.13887696066653235, "Meets Threshold?": false }, { @@ -751,7 +736,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.19917275681025856, + "Real Association": 0.20028989780441164, "Meets Threshold?": false }, { @@ -761,29 +746,19 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.26103496207215954, + "Real Association": 0.2689356713126703, "Meets Threshold?": false }, { "Column 1": "is_canceled", "Column 2": "reservation_status", "Metric": "ContingencySimilarity", - "Score": 0.95238, + "Score": 0.941, "Real Correlation": null, "Synthetic Correlation": null, "Real Association": 1.0, "Meets Threshold?": true }, - { - "Column 1": "is_canceled", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": -0.16386403813863692, - "Synthetic Correlation": null, - "Real Association": null, - "Meets Threshold?": false - }, { "Column 1": "lead_time", "Column 2": "arrival_date_year", @@ -791,7 +766,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1008199592556408, + "Real Association": 0.10433513989855014, "Meets Threshold?": false }, { @@ -801,7 +776,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1378851956349633, + "Real Association": 0.13258320909835777, "Meets Threshold?": false }, { @@ -881,7 +856,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08887013110300768, + "Real Association": 0.0893240436801625, "Meets Threshold?": false }, { @@ -891,7 +866,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09925699895846568, + "Real Association": 0.09301616083574767, "Meets Threshold?": false }, { @@ -901,7 +876,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.18510494025915347, + "Real Association": 0.17169843839551036, "Meets Threshold?": false }, { @@ -911,7 +886,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.11554008190545444, + "Real Association": 0.13302847162291642, "Meets Threshold?": false }, { @@ -951,7 +926,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0520259135862984, + "Real Association": 0.05085145942638865, "Meets Threshold?": false }, { @@ -961,7 +936,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06746625815267696, + "Real Association": 0.06597865159806324, "Meets Threshold?": false }, { @@ -981,7 +956,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.27128057935723177, + "Real Association": 0.2706094250551082, "Meets Threshold?": false }, { @@ -1021,7 +996,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.12184692199519809, + "Real Association": 0.12029306296234162, "Meets Threshold?": false }, { @@ -1041,7 +1016,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06536539144170499, + "Real Association": 0.05798604602014807, "Meets Threshold?": false }, { @@ -1051,7 +1026,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0583355038777365, + "Real Association": 0.058639519884696435, "Meets Threshold?": false }, { @@ -1061,37 +1036,27 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.2060296163716069, - "Meets Threshold?": false - }, - { - "Column 1": "lead_time", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": -0.07207426397985987, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.20821493599549595, "Meets Threshold?": false }, { "Column 1": "arrival_date_year", "Column 2": "arrival_date_month", "Metric": "ContingencySimilarity", - "Score": 0.8923, + "Score": 0.8588, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.4275216614027784, + "Real Association": 0.42774890748872857, "Meets Threshold?": true }, { "Column 1": "arrival_date_year", "Column 2": "arrival_date_week_number", "Metric": "ContingencySimilarity", - "Score": 0.8424, + "Score": 0.84924, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.42720629099875224, + "Real Association": 0.42458868715605746, "Meets Threshold?": true }, { @@ -1101,7 +1066,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0376598600934118, + "Real Association": 0.043252066338164086, "Meets Threshold?": false }, { @@ -1111,7 +1076,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.033674101419012815, + "Real Association": 0.031056549063757374, "Meets Threshold?": false }, { @@ -1121,7 +1086,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.022205644175376727, + "Real Association": 0.02581842345831795, "Meets Threshold?": false }, { @@ -1131,7 +1096,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.011540174092264828, + "Real Association": 0.022180858591420913, "Meets Threshold?": false }, { @@ -1141,7 +1106,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.042011932641447015, + "Real Association": 0.04428282445837346, "Meets Threshold?": false }, { @@ -1151,7 +1116,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.011655310725454341, + "Real Association": 0.010660638073366629, "Meets Threshold?": false }, { @@ -1161,7 +1126,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1131344786412383, + "Real Association": 0.11053035135111337, "Meets Threshold?": false }, { @@ -1171,7 +1136,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.15937066348670878, + "Real Association": 0.16244233032195715, "Meets Threshold?": false }, { @@ -1181,7 +1146,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1570248756717823, + "Real Association": 0.15874253345386521, "Meets Threshold?": false }, { @@ -1191,7 +1156,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.027273765846263103, + "Real Association": 0.026861927889272285, "Meets Threshold?": false }, { @@ -1201,7 +1166,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.012236219406279449, + "Real Association": 0.013013300817079585, "Meets Threshold?": false }, { @@ -1211,7 +1176,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05057019623966302, + "Real Association": 0.04825693999910018, "Meets Threshold?": false }, { @@ -1221,7 +1186,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0257345157248806, + "Real Association": 0.025839454896221845, "Meets Threshold?": false }, { @@ -1231,7 +1196,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08275121458363048, + "Real Association": 0.08228597967205752, "Meets Threshold?": false }, { @@ -1241,7 +1206,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05656034591152545, + "Real Association": 0.0546091683440229, "Meets Threshold?": false }, { @@ -1251,7 +1216,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.018201831664384265, + "Real Association": 0.019103324014563647, "Meets Threshold?": false }, { @@ -1261,7 +1226,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.051794583689857135, + "Real Association": 0.049444348299294956, "Meets Threshold?": false }, { @@ -1271,7 +1236,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08534485597668881, + "Real Association": 0.08683078985585628, "Meets Threshold?": false }, { @@ -1281,7 +1246,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06504330942390991, + "Real Association": 0.0687335651174511, "Meets Threshold?": false }, { @@ -1291,7 +1256,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07470657665094847, + "Real Association": 0.07121519335613075, "Meets Threshold?": false }, { @@ -1301,7 +1266,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.21793379333070295, + "Real Association": 0.21072430142910567, "Meets Threshold?": false }, { @@ -1321,7 +1286,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.021944193790323602, + "Real Association": 0.020935561372823024, "Meets Threshold?": false }, { @@ -1331,7 +1296,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09032284259273592, + "Real Association": 0.09169279457476223, "Meets Threshold?": false }, { @@ -1341,27 +1306,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.020540036901570836, + "Real Association": 0.022904996820791983, "Meets Threshold?": false }, - { - "Column 1": "arrival_date_year", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": 0.89654, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.8909036313150177, - "Meets Threshold?": true - }, { "Column 1": "arrival_date_month", "Column 2": "arrival_date_week_number", "Metric": "ContingencySimilarity", - "Score": 0.59114, + "Score": 0.67572, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.769339416268452, + "Real Association": 0.7682681482618554, "Meets Threshold?": true }, { @@ -1371,7 +1326,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06303296472198082, + "Real Association": 0.06295156092964942, "Meets Threshold?": false }, { @@ -1381,7 +1336,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.051004718182579775, + "Real Association": 0.0488945927319657, "Meets Threshold?": false }, { @@ -1391,7 +1346,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.055415609558661184, + "Real Association": 0.05900032484354476, "Meets Threshold?": false }, { @@ -1401,7 +1356,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.01915081801028351, + "Real Association": 0.019163690946885352, "Meets Threshold?": false }, { @@ -1411,7 +1366,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0715601173318207, + "Real Association": 0.07004563057511966, "Meets Threshold?": false }, { @@ -1421,7 +1376,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.023498175151561156, + "Real Association": 0.021442599685452136, "Meets Threshold?": false }, { @@ -1431,7 +1386,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09126363351390385, + "Real Association": 0.08982924098604782, "Meets Threshold?": false }, { @@ -1441,7 +1396,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06961419766499748, + "Real Association": 0.07014738744109389, "Meets Threshold?": false }, { @@ -1451,7 +1406,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08985272490497263, + "Real Association": 0.09047099218835157, "Meets Threshold?": false }, { @@ -1461,7 +1416,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06690207304318557, + "Real Association": 0.07285869895248362, "Meets Threshold?": false }, { @@ -1471,7 +1426,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07706793468744312, + "Real Association": 0.08102684417748886, "Meets Threshold?": false }, { @@ -1481,7 +1436,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03700508960373243, + "Real Association": 0.035479981849508756, "Meets Threshold?": false }, { @@ -1491,7 +1446,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.022909559299980096, + "Real Association": 0.020927073435288768, "Meets Threshold?": false }, { @@ -1501,7 +1456,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.047798128671657586, + "Real Association": 0.04716810538216124, "Meets Threshold?": false }, { @@ -1511,7 +1466,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.028889236336951847, + "Real Association": 0.029625094378723738, "Meets Threshold?": false }, { @@ -1521,7 +1476,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.018844360960260407, + "Real Association": 0.018995028097980628, "Meets Threshold?": false }, { @@ -1531,7 +1486,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09728963099312023, + "Real Association": 0.09797287891711548, "Meets Threshold?": false }, { @@ -1541,7 +1496,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07530209459509614, + "Real Association": 0.07427266328253054, "Meets Threshold?": false }, { @@ -1551,7 +1506,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06808026452408927, + "Real Association": 0.0617964054974069, "Meets Threshold?": false }, { @@ -1561,7 +1516,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0587803774233827, + "Real Association": 0.05964483587499147, "Meets Threshold?": false }, { @@ -1571,7 +1526,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10004065162150136, + "Real Association": 0.10277069327922655, "Meets Threshold?": false }, { @@ -1591,7 +1546,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02612915804480072, + "Real Association": 0.023956629492756818, "Meets Threshold?": false }, { @@ -1601,7 +1556,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05436759862837445, + "Real Association": 0.05336348594311018, "Meets Threshold?": false }, { @@ -1611,19 +1566,9 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06436293870107321, + "Real Association": 0.06439532742408678, "Meets Threshold?": false }, - { - "Column 1": "arrival_date_month", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": 0.75226, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.3830705705163418, - "Meets Threshold?": true - }, { "Column 1": "arrival_date_week_number", "Column 2": "arrival_date_day_of_month", @@ -1691,7 +1636,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0850430134131445, + "Real Association": 0.08440632119470518, "Meets Threshold?": false }, { @@ -1701,7 +1646,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06943864230464729, + "Real Association": 0.07134359166908238, "Meets Threshold?": false }, { @@ -1711,7 +1656,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08416370319078233, + "Real Association": 0.09045375045962316, "Meets Threshold?": false }, { @@ -1721,7 +1666,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06958680837456277, + "Real Association": 0.06905245019343906, "Meets Threshold?": false }, { @@ -1761,7 +1706,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.046584962162618815, + "Real Association": 0.045871730430422086, "Meets Threshold?": false }, { @@ -1771,7 +1716,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02955135567520023, + "Real Association": 0.02977234894333445, "Meets Threshold?": false }, { @@ -1791,7 +1736,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1027723954958826, + "Real Association": 0.1092180030403165, "Meets Threshold?": false }, { @@ -1831,7 +1776,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10726302549679866, + "Real Association": 0.10999822706809634, "Meets Threshold?": false }, { @@ -1851,7 +1796,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.023448592183157146, + "Real Association": 0.02398241702135789, "Meets Threshold?": false }, { @@ -1861,7 +1806,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05530760220438117, + "Real Association": 0.05395270643617062, "Meets Threshold?": false }, { @@ -1871,17 +1816,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06257283953428067, - "Meets Threshold?": false - }, - { - "Column 1": "arrival_date_week_number", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": -0.21272449931312454, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.06449394556460139, "Meets Threshold?": false }, { @@ -1941,7 +1876,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.04903777338792523, + "Real Association": 0.05027433146153963, "Meets Threshold?": false }, { @@ -1951,7 +1886,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03675908361717709, + "Real Association": 0.037134623073502245, "Meets Threshold?": false }, { @@ -1961,7 +1896,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03698447340568936, + "Real Association": 0.03404461666294747, "Meets Threshold?": false }, { @@ -1971,7 +1906,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0344843132022211, + "Real Association": 0.03302626017274098, "Meets Threshold?": false }, { @@ -2011,7 +1946,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.019469077505566333, + "Real Association": 0.017189635788368067, "Meets Threshold?": false }, { @@ -2021,7 +1956,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.01818883245220147, + "Real Association": 0.018400386452694338, "Meets Threshold?": false }, { @@ -2041,7 +1976,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10625451191957709, + "Real Association": 0.10395008939728512, "Meets Threshold?": false }, { @@ -2081,7 +2016,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03553256413139283, + "Real Association": 0.034826513874518135, "Meets Threshold?": false }, { @@ -2101,7 +2036,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.017879223154288425, + "Real Association": 0.017078649057615206, "Meets Threshold?": false }, { @@ -2111,7 +2046,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02153812306859176, + "Real Association": 0.019245366934054507, "Meets Threshold?": false }, { @@ -2121,17 +2056,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.028054288261229965, - "Meets Threshold?": false - }, - { - "Column 1": "arrival_date_day_of_month", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.02020589961298276, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.026676887327774623, "Meets Threshold?": false }, { @@ -2181,7 +2106,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06357974613449406, + "Real Association": 0.06412780663882126, "Meets Threshold?": false }, { @@ -2191,7 +2116,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07647733110754353, + "Real Association": 0.07827651940330455, "Meets Threshold?": false }, { @@ -2201,7 +2126,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06807513124373797, + "Real Association": 0.07036215430133425, "Meets Threshold?": false }, { @@ -2211,7 +2136,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05645497798642026, + "Real Association": 0.054644626950210086, "Meets Threshold?": false }, { @@ -2251,7 +2176,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.053898941626138924, + "Real Association": 0.05630643939524405, "Meets Threshold?": false }, { @@ -2261,7 +2186,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05344663653706597, + "Real Association": 0.05141329178178113, "Meets Threshold?": false }, { @@ -2281,7 +2206,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06991705021763114, + "Real Association": 0.07307288758209457, "Meets Threshold?": false }, { @@ -2321,7 +2246,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08859923217184432, + "Real Association": 0.08711462387064418, "Meets Threshold?": false }, { @@ -2341,7 +2266,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.028771369165135525, + "Real Association": 0.01212519557477632, "Meets Threshold?": false }, { @@ -2351,7 +2276,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03815174114769409, + "Real Association": 0.03787373197148793, "Meets Threshold?": false }, { @@ -2361,17 +2286,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.027811031408386044, - "Meets Threshold?": false - }, - { - "Column 1": "stays_in_weekend_nights", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.04588136875113795, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.025937705571689038, "Meets Threshold?": false }, { @@ -2411,7 +2326,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08788132718022698, + "Real Association": 0.08768761276116571, "Meets Threshold?": false }, { @@ -2421,7 +2336,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09449765787731934, + "Real Association": 0.0839503243509699, "Meets Threshold?": false }, { @@ -2431,7 +2346,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05533135196708809, + "Real Association": 0.05647098900335866, "Meets Threshold?": false }, { @@ -2441,7 +2356,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03283148808317408, + "Real Association": 0.03176114852988622, "Meets Threshold?": false }, { @@ -2481,7 +2396,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06496016553256029, + "Real Association": 0.0711059274497305, "Meets Threshold?": false }, { @@ -2491,7 +2406,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07525110176851, + "Real Association": 0.06418742105192028, "Meets Threshold?": false }, { @@ -2511,7 +2426,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0785149186303809, + "Real Association": 0.08108194679335012, "Meets Threshold?": false }, { @@ -2551,7 +2466,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.11094217651757583, + "Real Association": 0.11131935803900352, "Meets Threshold?": false }, { @@ -2571,7 +2486,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02091306350569035, + "Real Association": 0.03549604465392801, "Meets Threshold?": false }, { @@ -2581,7 +2496,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.026905923079134326, + "Real Association": 0.028696661538417267, "Meets Threshold?": false }, { @@ -2591,17 +2506,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02879404535851198, - "Meets Threshold?": false - }, - { - "Column 1": "stays_in_week_nights", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.036528677376400795, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.023133601770780176, "Meets Threshold?": false }, { @@ -2631,7 +2536,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0029732994662373543, + "Real Association": 0.006416404503025043, "Meets Threshold?": false }, { @@ -2641,7 +2546,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.007134487530707529, + "Real Association": 0.006974822703821312, "Meets Threshold?": false }, { @@ -2651,7 +2556,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.012361334906096259, + "Real Association": 0.013332160437076454, "Meets Threshold?": false }, { @@ -2661,7 +2566,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.009993308346441661, + "Real Association": 0.009837663496521206, "Meets Threshold?": false }, { @@ -2701,7 +2606,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.004844983232365367, + "Real Association": 0.009012410670806855, "Meets Threshold?": false }, { @@ -2711,7 +2616,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.009410327584588363, + "Real Association": 0.009295129766586262, "Meets Threshold?": false }, { @@ -2731,7 +2636,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.002616732666843742, + "Real Association": 0.003137293096969815, "Meets Threshold?": false }, { @@ -2771,7 +2676,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06412732374917655, + "Real Association": 0.12799303077538404, "Meets Threshold?": false }, { @@ -2791,7 +2696,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0014116414403913646, + "Real Association": 0.0013356608626203057, "Meets Threshold?": false }, { @@ -2801,7 +2706,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.005700023941978337, + "Real Association": 0.004309396103323791, "Meets Threshold?": false }, { @@ -2811,17 +2716,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.010277666557873813, - "Meets Threshold?": false - }, - { - "Column 1": "adults", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.024642755946870543, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.011192656436429043, "Meets Threshold?": false }, { @@ -2841,7 +2736,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03572057190988677, + "Real Association": 0.04233289213591039, "Meets Threshold?": false }, { @@ -2851,7 +2746,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05365114083962425, + "Real Association": 0.05185485057112576, "Meets Threshold?": false }, { @@ -2861,7 +2756,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10167902524949872, + "Real Association": 0.10032998516987696, "Meets Threshold?": false }, { @@ -2871,7 +2766,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05301994932059569, + "Real Association": 0.05123311765658197, "Meets Threshold?": false }, { @@ -2908,21 +2803,21 @@ "Column 1": "children", "Column 2": "reserved_room_type", "Metric": "ContingencySimilarity", - "Score": 0.8483799999999999, + "Score": 0.83694, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.4145148031575671, + "Real Association": 0.35973626994386576, "Meets Threshold?": true }, { "Column 1": "children", "Column 2": "assigned_room_type", "Metric": "ContingencySimilarity", - "Score": null, + "Score": 0.80494, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.2959881110259335, - "Meets Threshold?": false + "Real Association": 0.3493751889381377, + "Meets Threshold?": true }, { "Column 1": "children", @@ -2941,7 +2836,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07408008082927349, + "Real Association": 0.07383223397748431, "Meets Threshold?": false }, { @@ -2981,7 +2876,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.060498090243763354, + "Real Association": 0.0600357282561233, "Meets Threshold?": false }, { @@ -3001,7 +2896,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.036358083421442554, + "Real Association": 0.030180761397961112, "Meets Threshold?": false }, { @@ -3011,7 +2906,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07442686568294994, + "Real Association": 0.06492412115633757, "Meets Threshold?": false }, { @@ -3021,17 +2916,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.017996478457883405, - "Meets Threshold?": false - }, - { - "Column 1": "children", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.06953933660060242, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.03734342400349612, "Meets Threshold?": false }, { @@ -3041,7 +2926,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.026066712466887115, + "Real Association": 0.02122338443483992, "Meets Threshold?": false }, { @@ -3051,7 +2936,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.028721798014232667, + "Real Association": 0.02256871895728675, "Meets Threshold?": false }, { @@ -3061,7 +2946,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03368114182415378, + "Real Association": 0.043102629784947145, "Meets Threshold?": false }, { @@ -3071,7 +2956,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.032953056283141664, + "Real Association": 0.046094717578221256, "Meets Threshold?": false }, { @@ -3111,7 +2996,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.04440101430408615, + "Real Association": 0.05443523684735854, "Meets Threshold?": false }, { @@ -3121,7 +3006,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.054519263102569056, + "Real Association": 0.04761654758800682, "Meets Threshold?": false }, { @@ -3141,7 +3026,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02410545632302914, + "Real Association": 0.023330668832798357, "Meets Threshold?": false }, { @@ -3181,7 +3066,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.021080277157563273, + "Real Association": 0.012695630711032583, "Meets Threshold?": false }, { @@ -3201,7 +3086,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.026513585608500444, + "Real Association": 0.028295011171383607, "Meets Threshold?": false }, { @@ -3211,7 +3096,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07052534183605548, + "Real Association": 0.07586144556788536, "Meets Threshold?": false }, { @@ -3221,17 +3106,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.023399163852601, - "Meets Threshold?": false - }, - { - "Column 1": "babies", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": -0.0024773401517446886, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.027277796269311393, "Meets Threshold?": false }, { @@ -3241,7 +3116,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.13668645315899375, + "Real Association": 0.1325690468725168, "Meets Threshold?": false }, { @@ -3251,7 +3126,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.19177030427185426, + "Real Association": 0.19311461840463567, "Meets Threshold?": false }, { @@ -3261,7 +3136,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08823752520473363, + "Real Association": 0.07979177737397553, "Meets Threshold?": false }, { @@ -3271,7 +3146,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06232879614365809, + "Real Association": 0.058967432909413184, "Meets Threshold?": false }, { @@ -3281,7 +3156,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10877273297857974, + "Real Association": 0.11324931482271375, "Meets Threshold?": false }, { @@ -3291,7 +3166,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.01637242664525112, + "Real Association": 0.0161560801680113, "Meets Threshold?": false }, { @@ -3301,7 +3176,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10426569442663816, + "Real Association": 0.1052399533632917, "Meets Threshold?": false }, { @@ -3311,7 +3186,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.11725688491740786, + "Real Association": 0.1190135165270856, "Meets Threshold?": false }, { @@ -3321,7 +3196,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.01859278104368345, + "Real Association": 0.016693055380806752, "Meets Threshold?": false }, { @@ -3331,7 +3206,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09543836559307906, + "Real Association": 0.09363219032024712, "Meets Threshold?": false }, { @@ -3341,7 +3216,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1583301286709081, + "Real Association": 0.15910212349437086, "Meets Threshold?": false }, { @@ -3351,7 +3226,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07158575742607666, + "Real Association": 0.06444452749552615, "Meets Threshold?": false }, { @@ -3361,7 +3236,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06604790014528428, + "Real Association": 0.05590749134028832, "Meets Threshold?": false }, { @@ -3371,7 +3246,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.13760157422188973, + "Real Association": 0.13830567026673685, "Meets Threshold?": false }, { @@ -3381,7 +3256,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.002424878303123831, "Meets Threshold?": false }, { @@ -3391,7 +3266,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02610386905194599, + "Real Association": 0.03097596939255691, "Meets Threshold?": false }, { @@ -3401,7 +3276,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06251673392649475, + "Real Association": 0.06286109030659168, "Meets Threshold?": false }, { @@ -3411,17 +3286,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.04332812290258027, - "Meets Threshold?": false - }, - { - "Column 1": "meal", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.11745959919650227, + "Real Association": 0.038000307100173956, "Meets Threshold?": false }, { @@ -3431,7 +3296,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.17633989470020786, + "Real Association": 0.17568459482996127, "Meets Threshold?": false }, { @@ -3441,7 +3306,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09349523525771582, + "Real Association": 0.09386821586210907, "Meets Threshold?": false }, { @@ -3451,7 +3316,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1656316665152993, + "Real Association": 0.1666968713017903, "Meets Threshold?": false }, { @@ -3461,7 +3326,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03536731741035225, + "Real Association": 0.039004159753516586, "Meets Threshold?": false }, { @@ -3471,7 +3336,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.026180294796737377, + "Real Association": 0.025524513568079304, "Meets Threshold?": false }, { @@ -3481,7 +3346,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07778474430078916, + "Real Association": 0.07921831516942024, "Meets Threshold?": false }, { @@ -3491,7 +3356,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06782139611924934, + "Real Association": 0.06616588516489973, "Meets Threshold?": false }, { @@ -3501,17 +3366,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02891900826275034, + "Real Association": 0.040543792100981385, "Meets Threshold?": false }, { "Column 1": "country", "Column 2": "deposit_type", "Metric": "ContingencySimilarity", - "Score": 0.90596, + "Score": 0.879, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.308456345834753, + "Real Association": 0.30764086291550913, "Meets Threshold?": true }, { @@ -3521,7 +3386,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09591206908624189, + "Real Association": 0.10222441099844241, "Meets Threshold?": false }, { @@ -3531,7 +3396,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07347362850422684, + "Real Association": 0.07853291575814127, "Meets Threshold?": false }, { @@ -3541,7 +3406,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05644206717764343, + "Real Association": 0.05737011715806799, "Meets Threshold?": false }, { @@ -3551,7 +3416,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.11340022042077051, + "Real Association": 0.11097498420321122, "Meets Threshold?": false }, { @@ -3561,7 +3426,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.005431223557377963, + "Real Association": null, "Meets Threshold?": false }, { @@ -3571,7 +3436,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0644045355137442, + "Real Association": 0.06253156188849628, "Meets Threshold?": false }, { @@ -3581,7 +3446,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.11761331037003789, + "Real Association": 0.11729748756718399, "Meets Threshold?": false }, { @@ -3591,37 +3456,27 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.24502921997595561, - "Meets Threshold?": false - }, - { - "Column 1": "country", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.11827373946692997, + "Real Association": 0.24957454699907516, "Meets Threshold?": false }, { "Column 1": "market_segment", "Column 2": "distribution_channel", "Metric": "ContingencySimilarity", - "Score": 0.90542, + "Score": 0.89194, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.7109227855972913, + "Real Association": 0.7925196358344397, "Meets Threshold?": true }, { "Column 1": "market_segment", "Column 2": "is_repeated_guest", "Metric": "ContingencySimilarity", - "Score": 0.93566, + "Score": 0.9332199999999999, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.3526927926368313, + "Real Association": 0.3498732691180941, "Meets Threshold?": true }, { @@ -3631,7 +3486,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06648202611261797, + "Real Association": 0.05246148382052269, "Meets Threshold?": false }, { @@ -3641,7 +3496,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10220112833422576, + "Real Association": 0.09673270184391311, "Meets Threshold?": false }, { @@ -3651,7 +3506,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.15065514743857258, + "Real Association": 0.14033139187449425, "Meets Threshold?": false }, { @@ -3661,7 +3516,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.13021365052081663, + "Real Association": 0.12301891546530894, "Meets Threshold?": false }, { @@ -3671,17 +3526,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.023429874936732063, + "Real Association": 0.022811376487519203, "Meets Threshold?": false }, { "Column 1": "market_segment", "Column 2": "deposit_type", "Metric": "ContingencySimilarity", - "Score": 0.91952, + "Score": 0.90674, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.37564862550370187, + "Real Association": 0.37168979504507266, "Meets Threshold?": true }, { @@ -3691,17 +3546,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.20310698434832958, + "Real Association": 0.20130445179409015, "Meets Threshold?": false }, { "Column 1": "market_segment", "Column 2": "company", "Metric": "ContingencySimilarity", - "Score": 0.91484, + "Score": 0.91276, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.3864677539123956, + "Real Association": 0.3821088284304974, "Meets Threshold?": true }, { @@ -3711,7 +3566,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07883534827222351, + "Real Association": 0.07850249238307141, "Meets Threshold?": false }, { @@ -3721,7 +3576,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.27162515347143645, + "Real Association": 0.27848832448999294, "Meets Threshold?": false }, { @@ -3731,7 +3586,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.00886848850377622, "Meets Threshold?": false }, { @@ -3741,7 +3596,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10303954590969182, + "Real Association": 0.09099230263176766, "Meets Threshold?": false }, { @@ -3751,7 +3606,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.2080045866396992, + "Real Association": 0.20976926633282297, "Meets Threshold?": false }, { @@ -3761,17 +3616,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1952581070073638, - "Meets Threshold?": false - }, - { - "Column 1": "market_segment", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.1507988146302586, + "Real Association": 0.19196874828829144, "Meets Threshold?": false }, { @@ -3781,7 +3626,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.2919374982758404, + "Real Association": 0.29732399471357857, "Meets Threshold?": false }, { @@ -3791,7 +3636,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0632189509243921, + "Real Association": 0.05492006588103652, "Meets Threshold?": false }, { @@ -3801,7 +3646,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.11169008442994699, + "Real Association": 0.10734022264121687, "Meets Threshold?": false }, { @@ -3811,7 +3656,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1038407727138555, + "Real Association": 0.1036385638481828, "Meets Threshold?": false }, { @@ -3821,7 +3666,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09497280299295884, + "Real Association": 0.09632176252130488, "Meets Threshold?": false }, { @@ -3831,7 +3676,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03016140101166512, + "Real Association": 0.029481709546837813, "Meets Threshold?": false }, { @@ -3841,7 +3686,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0883565644595329, + "Real Association": 0.09132445094506929, "Meets Threshold?": false }, { @@ -3851,17 +3696,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.15475967841755178, + "Real Association": 0.15633978350507113, "Meets Threshold?": false }, { "Column 1": "distribution_channel", "Column 2": "company", "Metric": "ContingencySimilarity", - "Score": 0.90346, + "Score": 0.8858, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.3537031623578798, + "Real Association": 0.3550032398987286, "Meets Threshold?": true }, { @@ -3871,7 +3716,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02616756082855633, + "Real Association": 0.028892155309590575, "Meets Threshold?": false }, { @@ -3881,7 +3726,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08338352047544141, + "Real Association": 0.07794996529536892, "Meets Threshold?": false }, { @@ -3891,7 +3736,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0020920460737709453, + "Real Association": null, "Meets Threshold?": false }, { @@ -3901,7 +3746,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08567042910598097, + "Real Association": 0.07850189190301486, "Meets Threshold?": false }, { @@ -3911,7 +3756,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07110316507913006, + "Real Association": 0.07069333797148102, "Meets Threshold?": false }, { @@ -3921,17 +3766,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.12949766531725723, - "Meets Threshold?": false - }, - { - "Column 1": "distribution_channel", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.044993397569708465, + "Real Association": 0.12932661985318022, "Meets Threshold?": false }, { @@ -3961,7 +3796,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03843221835058938, + "Real Association": 0.039430597614206704, "Meets Threshold?": false }, { @@ -3971,7 +3806,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07181913237806405, + "Real Association": 0.044879713280646556, "Meets Threshold?": false }, { @@ -3991,7 +3826,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05549577921745101, + "Real Association": 0.0596718507966623, "Meets Threshold?": false }, { @@ -4031,7 +3866,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.12624529826859435, + "Real Association": 0.09395517784448228, "Meets Threshold?": false }, { @@ -4051,7 +3886,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08206344015350184, + "Real Association": 0.0845336437100331, "Meets Threshold?": false }, { @@ -4061,7 +3896,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03884171571326007, + "Real Association": 0.045620963095919634, "Meets Threshold?": false }, { @@ -4071,17 +3906,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08280450791591967, - "Meets Threshold?": false - }, - { - "Column 1": "is_repeated_guest", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.010026997032452651, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.08544765150279839, "Meets Threshold?": false }, { @@ -4101,7 +3926,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.01106816964144499, + "Real Association": 0.012627512963602826, "Meets Threshold?": false }, { @@ -4111,7 +3936,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.013226366198364982, + "Real Association": 0.013492575719553203, "Meets Threshold?": false }, { @@ -4131,7 +3956,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.050516333633256076, + "Real Association": 0.044926144178259825, "Meets Threshold?": false }, { @@ -4171,7 +3996,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.013602852006471327, + "Real Association": 0.0111052335547105, "Meets Threshold?": false }, { @@ -4191,7 +4016,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0067805310176291085, + "Real Association": 0.006765398859400657, "Meets Threshold?": false }, { @@ -4201,7 +4026,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.024586425539179745, + "Real Association": 0.01747185277764729, "Meets Threshold?": false }, { @@ -4211,17 +4036,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.02969276883076968, - "Meets Threshold?": false - }, - { - "Column 1": "previous_cancellations", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": -0.15530264623415913, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.03403373137352473, "Meets Threshold?": false }, { @@ -4231,7 +4046,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.01075295218778547, + "Real Association": 0.009403302707906517, "Meets Threshold?": false }, { @@ -4241,7 +4056,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.011440342566141886, + "Real Association": 0.010274152732643298, "Meets Threshold?": false }, { @@ -4261,7 +4076,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.015249720941158566, + "Real Association": 0.01585710581836362, "Meets Threshold?": false }, { @@ -4301,7 +4116,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.018696221341737627, + "Real Association": 0.016431338932730775, "Meets Threshold?": false }, { @@ -4321,7 +4136,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.026457302317360383, + "Real Association": 0.019777988114209628, "Meets Threshold?": false }, { @@ -4331,7 +4146,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03553047798067145, + "Real Association": 0.040843943342229266, "Meets Threshold?": false }, { @@ -4341,27 +4156,17 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.029945947363526407, - "Meets Threshold?": false - }, - { - "Column 1": "previous_bookings_not_canceled", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.035847982008110846, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.031833188191432625, "Meets Threshold?": false }, { "Column 1": "reserved_room_type", "Column 2": "assigned_room_type", "Metric": "ContingencySimilarity", - "Score": 0.8555600000000001, + "Score": 0.8613, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.7630060253201583, + "Real Association": 0.7680705130966541, "Meets Threshold?": true }, { @@ -4371,7 +4176,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.023649419423090724, + "Real Association": 0.017394147727649384, "Meets Threshold?": false }, { @@ -4381,7 +4186,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.15174949047698988, + "Real Association": 0.1533650301623109, "Meets Threshold?": false }, { @@ -4391,7 +4196,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.11636705763860683, + "Real Association": 0.11677279180447869, "Meets Threshold?": false }, { @@ -4401,7 +4206,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05423140121453492, + "Real Association": 0.04324187201662481, "Meets Threshold?": false }, { @@ -4411,7 +4216,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.027377710616776612, + "Real Association": 0.027283824579583206, "Meets Threshold?": false }, { @@ -4421,7 +4226,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.11252364066110816, + "Real Association": 0.10925065602997994, "Meets Threshold?": false }, { @@ -4431,7 +4236,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.0027781067419095653, "Meets Threshold?": false }, { @@ -4441,7 +4246,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0923452098300705, + "Real Association": 0.08100556261185442, "Meets Threshold?": false }, { @@ -4451,7 +4256,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.07672754435610353, + "Real Association": 0.07789397957067186, "Meets Threshold?": false }, { @@ -4461,17 +4266,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05058802793552651, - "Meets Threshold?": false - }, - { - "Column 1": "reserved_room_type", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.06355572692429527, + "Real Association": 0.055920518258663815, "Meets Threshold?": false }, { @@ -4481,7 +4276,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05215157816566618, + "Real Association": 0.06286617841954899, "Meets Threshold?": false }, { @@ -4491,7 +4286,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.19367065219492555, + "Real Association": 0.19098023140618162, "Meets Threshold?": false }, { @@ -4501,7 +4296,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10825748585413775, + "Real Association": 0.11585881769458685, "Meets Threshold?": false }, { @@ -4511,7 +4306,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0472271453749789, + "Real Association": 0.0458431673170969, "Meets Threshold?": false }, { @@ -4521,7 +4316,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.03016096646982782, + "Real Association": 0.02803416696975019, "Meets Threshold?": false }, { @@ -4531,7 +4326,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09167642602463373, + "Real Association": 0.0925082904685214, "Meets Threshold?": false }, { @@ -4541,7 +4336,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0034956906686681435, + "Real Association": 0.0034980668663448277, "Meets Threshold?": false }, { @@ -4551,7 +4346,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09889537491108909, + "Real Association": 0.09026108319534384, "Meets Threshold?": false }, { @@ -4561,7 +4356,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06870985318506251, + "Real Association": 0.06441655407765257, "Meets Threshold?": false }, { @@ -4571,17 +4366,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.14402292323624571, - "Meets Threshold?": false - }, - { - "Column 1": "assigned_room_type", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.050725393322026975, + "Real Association": 0.14911609552740182, "Meets Threshold?": false }, { @@ -4591,7 +4376,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.029829114401486258, + "Real Association": 0.030016311927896795, "Meets Threshold?": false }, { @@ -4631,7 +4416,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.026612923977225464, + "Real Association": 0.04581962402557754, "Meets Threshold?": false }, { @@ -4651,7 +4436,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.020186550343244153, + "Real Association": 0.027831397692780528, "Meets Threshold?": false }, { @@ -4661,7 +4446,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.028639730739007812, + "Real Association": 0.03265618131753432, "Meets Threshold?": false }, { @@ -4671,17 +4456,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0360148875469276, - "Meets Threshold?": false - }, - { - "Column 1": "booking_changes", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.07095691900539952, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.035892425951331734, "Meets Threshold?": false }, { @@ -4691,7 +4466,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1061097588009712, + "Real Association": 0.09880237019466141, "Meets Threshold?": false }, { @@ -4701,7 +4476,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.14261343974178853, + "Real Association": 0.1611229248258977, "Meets Threshold?": false }, { @@ -4711,7 +4486,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.12517246560707548, + "Real Association": 0.1275726535583185, "Meets Threshold?": false }, { @@ -4721,7 +4496,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09795076897372107, + "Real Association": 0.09697686018036439, "Meets Threshold?": false }, { @@ -4731,7 +4506,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.011927341929462093, + "Real Association": null, "Meets Threshold?": false }, { @@ -4741,7 +4516,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.06827501486912338, + "Real Association": 0.06841674708287426, "Meets Threshold?": false }, { @@ -4751,29 +4526,19 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.22181835537808242, + "Real Association": 0.2213062062277568, "Meets Threshold?": false }, { "Column 1": "deposit_type", "Column 2": "reservation_status", "Metric": "ContingencySimilarity", - "Score": 0.9583999999999999, + "Score": 0.94314, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.34718646709495027, + "Real Association": 0.3462059574426237, "Meets Threshold?": true }, - { - "Column 1": "deposit_type", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.22454223845749716, - "Meets Threshold?": false - }, { "Column 1": "agent", "Column 2": "company", @@ -4801,7 +4566,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1138058623047515, + "Real Association": 0.11071600129334863, "Meets Threshold?": false }, { @@ -4821,7 +4586,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08749583926641608, + "Real Association": 0.0874130800583924, "Meets Threshold?": false }, { @@ -4831,7 +4596,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.11201908117872725, + "Real Association": 0.11177379494902036, "Meets Threshold?": false }, { @@ -4841,17 +4606,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.047268901287069134, - "Meets Threshold?": false - }, - { - "Column 1": "agent", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.07567862690794835, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.05182069053402153, "Meets Threshold?": false }, { @@ -4871,7 +4626,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09639966192533016, + "Real Association": 0.09651405643321008, "Meets Threshold?": false }, { @@ -4891,7 +4646,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.043889654787415654, + "Real Association": 0.03392728124629303, "Meets Threshold?": false }, { @@ -4901,7 +4656,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.05551738645055195, + "Real Association": 0.055351595442828985, "Meets Threshold?": false }, { @@ -4911,17 +4666,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0740575730017195, - "Meets Threshold?": false - }, - { - "Column 1": "company", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.06231990879683142, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.07499399918056698, "Meets Threshold?": false }, { @@ -4931,7 +4676,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.08149583939128996, + "Real Association": 0.08134775989944071, "Meets Threshold?": false }, { @@ -4951,7 +4696,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.0670389086598116, + "Real Association": 0.02109039263867956, "Meets Threshold?": false }, { @@ -4961,7 +4706,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.045682849057339575, + "Real Association": 0.043948841492601316, "Meets Threshold?": false }, { @@ -4971,17 +4716,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.04843760744868396, - "Meets Threshold?": false - }, - { - "Column 1": "days_in_waiting_list", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": -0.06803224211820588, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.05160788187428299, "Meets Threshold?": false }, { @@ -4991,7 +4726,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.0025975758006543583, "Meets Threshold?": false }, { @@ -5001,7 +4736,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.04149541675548763, + "Real Association": 0.0433058785275575, "Meets Threshold?": false }, { @@ -5011,7 +4746,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.09849872106115984, + "Real Association": 0.09907909154721004, "Meets Threshold?": false }, { @@ -5021,17 +4756,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.10010611133595061, - "Meets Threshold?": false - }, - { - "Column 1": "customer_type", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.22903684011454623, + "Real Association": 0.09435639291241511, "Meets Threshold?": false }, { @@ -5041,7 +4766,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.0011464126932817188, "Meets Threshold?": false }, { @@ -5051,7 +4776,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.003732242980723579, + "Real Association": null, "Meets Threshold?": false }, { @@ -5061,17 +4786,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": null, - "Meets Threshold?": false - }, - { - "Column 1": "adr", - "Column 2": "reservation_status_month", - "Metric": "CorrelationSimilarity", - "Score": null, - "Real Correlation": 0.2628912697837877, - "Synthetic Correlation": null, - "Real Association": null, + "Real Association": 0.005943288680657801, "Meets Threshold?": false }, { @@ -5081,7 +4796,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.04492868195556084, + "Real Association": 0.051554983788130254, "Meets Threshold?": false }, { @@ -5091,17 +4806,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.13934696828280205, - "Meets Threshold?": false - }, - { - "Column 1": "required_car_parking_spaces", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.027283061383196923, + "Real Association": 0.13747017271001308, "Meets Threshold?": false }, { @@ -5111,27 +4816,7 @@ "Score": null, "Real Correlation": null, "Synthetic Correlation": null, - "Real Association": 0.1897934840406191, - "Meets Threshold?": false - }, - { - "Column 1": "total_of_special_requests", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.11035321208768825, - "Meets Threshold?": false - }, - { - "Column 1": "reservation_status", - "Column 2": "reservation_status_month", - "Metric": "ContingencySimilarity", - "Score": null, - "Real Correlation": null, - "Synthetic Correlation": null, - "Real Association": 0.18776673461627577, + "Real Association": 0.19017097400989744, "Meets Threshold?": false } ] diff --git a/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/register_raw_snapshot.log b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/register_raw_snapshot.log new file mode 100644 index 00000000..4057de38 --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/register_raw_snapshot.log @@ -0,0 +1 @@ +2026-03-28 13:20:59,897 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/metadata.json. diff --git a/data/raw/hotel_bookings/v1/2026-03-22T10-40-04_435d8e03/synthesizer_metadata.json b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/synthesizer_metadata.json similarity index 95% rename from data/raw/hotel_bookings/v1/2026-03-22T10-40-04_435d8e03/synthesizer_metadata.json rename to data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/synthesizer_metadata.json index b799de10..dbcd7cea 100644 --- a/data/raw/hotel_bookings/v1/2026-03-22T10-40-04_435d8e03/synthesizer_metadata.json +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-20-27_43859088/synthesizer_metadata.json @@ -94,10 +94,6 @@ }, "reservation_status": { "sdtype": "categorical" - }, - "reservation_status_month": { - "datetime_format": "%Y-%m", - "sdtype": "datetime" } } } diff --git a/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/data.csv b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/data.csv new file mode 100644 index 00000000..ec170844 --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/data.csv @@ -0,0 +1,20001 @@ +hotel,is_canceled,lead_time,arrival_date_year,arrival_date_month,arrival_date_week_number,arrival_date_day_of_month,stays_in_weekend_nights,stays_in_week_nights,adults,children,babies,meal,country,market_segment,distribution_channel,is_repeated_guest,previous_cancellations,previous_bookings_not_canceled,reserved_room_type,assigned_room_type,booking_changes,deposit_type,agent,company,days_in_waiting_list,customer_type,adr,required_car_parking_spaces,total_of_special_requests,reservation_status,name,email,phone-number,credit_card,reservation_status_date +City Hotel,1,24,2017,November,44,3,1,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,61.91,0,0,Canceled,Allison Hill,paulwilliams@example.org,(940)647-0657x136,180005838922020,2024-11-29 +Resort Hotel,0,85,2017,November,45,10,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,86.37,0,0,Check-Out,Noah Rhodes,keithmelton@example.com,238.867.5912,630455696975,2025-06-21 +City Hotel,0,46,2017,October,43,23,0,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.36,0,0,Check-Out,Angie Henderson,bkim@example.org,549.790.4726,6011796753177846,2025-07-25 +City Hotel,1,100,2017,March,10,4,0,3,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.5,0,1,Canceled,Daniel Wagner,gkey@example.org,+1-871-750-7637x14997,4632847420946,2024-10-23 +City Hotel,1,43,2017,August,35,29,1,2,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,139.91,0,0,Canceled,Cristian Santos,piercejames@example.net,712.313.0719x78370,180023806940411,2024-10-29 +City Hotel,1,9,2017,July,29,19,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.09,0,1,Canceled,Connie Lawrence,iwatts@example.com,001-464-822-1117,3514462608576604,2025-06-09 +Resort Hotel,0,163,2017,August,31,2,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,247.0,179.0,0,Transient,252.0,0,1,Check-Out,Abigail Shaffer,michaeljones@example.net,6369759041,4662177276881,2024-10-02 +City Hotel,0,41,2017,May,18,5,1,0,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.48,0,2,Check-Out,Gina Moore,sara26@example.org,346-462-4344,4462848367104176,2026-03-21 +City Hotel,1,414,2017,July,30,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,104.43,0,0,Canceled,Gabrielle Davis,ukerr@example.com,2326886284,4658946958671399,2025-05-13 +Resort Hotel,0,2,2017,March,10,5,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,64.02,1,2,Check-Out,Ryan Munoz,hwarren@example.net,+1-701-729-5820x23817,213175927515646,2025-11-26 +Resort Hotel,0,162,2017,November,48,29,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,2,Refundable,9.0,221.0,0,Transient-Party,79.43,0,0,Check-Out,Monica Herrera,kennethjennings@example.org,259-915-7974,4481093214066246490,2026-02-15 +City Hotel,1,15,2017,June,23,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.75,0,1,Canceled,Jamie Arnold,uferguson@example.org,(661)217-7966,4678755350418234,2025-09-28 +Resort Hotel,0,2,2017,May,18,1,4,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,15.0,179.0,0,Transient,126.01,0,1,Check-Out,Lisa Hensley,ashleyfrench@example.org,+1-749-377-4146x4899,4062505356918271,2025-03-25 +City Hotel,0,2,2017,December,50,10,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,219.0,0,Transient-Party,41.7,0,0,Check-Out,Michele Williams,kathleenspencer@example.org,(871)766-2999x915,38284882514447,2024-12-21 +City Hotel,1,207,2017,August,35,29,2,0,1,0.0,0,SC,PRT,Online TA,Undefined,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient-Party,4.69,0,2,Check-Out,Dylan Miller,christinepadilla@example.com,001-457-856-1467,342635941534265,2025-05-14 +Resort Hotel,1,20,2017,December,52,28,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,240.0,179.0,0,Transient,44.4,0,0,Canceled,Brian Ramirez,kevin38@example.com,448-980-8518,6532966056195718,2026-03-16 +City Hotel,0,63,2017,October,43,25,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient-Party,75.91,1,0,Check-Out,Holly Wood,watsonluis@example.com,7003361212,4081374839135939,2024-12-11 +City Hotel,0,221,2017,September,38,16,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,130.87,0,0,Check-Out,Derek Zuniga,roblesmatthew@example.com,+1-968-470-5111x628,3516000619806376,2026-01-25 +Resort Hotel,1,239,2017,December,49,6,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,112.31,0,2,Canceled,Lisa Jackson,mmorris@example.org,+1-209-651-9002,3557741140440124,2026-02-28 +City Hotel,1,260,2017,August,32,9,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,217.81,0,3,Canceled,Carla Gray,tina36@example.net,001-691-519-5771x36968,563715379316,2024-07-17 +City Hotel,1,369,2017,August,33,14,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,131.26,0,0,Canceled,Margaret Hawkins DDS,burnettaustin@example.org,(931)920-1074,3535527434004982,2025-03-21 +Resort Hotel,1,160,2017,August,32,9,2,5,2,1.0,0,HB,PRT,Online TA,Direct,0,0,0,F,F,1,No Deposit,246.0,179.0,0,Transient,227.38,0,1,Canceled,Patty Perez,brandy14@example.net,487-384-2130x971,3591980177052737,2025-08-14 +Resort Hotel,1,151,2017,June,26,27,1,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,242.0,179.0,0,Transient,104.43,0,0,Canceled,Ethan Adams,smithterry@example.org,(639)676-9891x6233,4531872438076024667,2025-11-05 +City Hotel,0,105,2017,April,17,24,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.74,0,1,Check-Out,Tommy Walter,dcardenas@example.net,582-355-3463,4322687113005,2024-03-30 +City Hotel,0,36,2017,November,47,19,1,3,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.81,0,1,Check-Out,Matthew Foster,wsimpson@example.net,9316233635,503836343163,2024-12-04 +Resort Hotel,0,166,2017,April,16,14,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,252.0,1,3,Check-Out,Judy Baker,haleyherman@example.org,972.259.0890x201,213154786946663,2024-04-01 +City Hotel,0,43,2017,December,50,16,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,77.14,0,1,Check-Out,Justin Baker,martha54@example.com,001-780-289-3376x011,2720487220357309,2025-09-18 +City Hotel,1,141,2017,June,26,26,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,63,Transient,119.13,0,0,Canceled,Stephanie Ross,iobrien@example.com,416-391-0982x6821,4766391709958721,2024-04-24 +Resort Hotel,1,43,2017,August,33,19,2,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,106.59,0,0,Canceled,Zachary Hicks,jerry37@example.org,244-230-4218,3565500278738877,2024-10-31 +Resort Hotel,0,0,2017,March,10,4,1,0,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,2,No Deposit,17.0,331.0,0,Transient,36.48,0,0,Check-Out,Anthony Rodriguez,ravensweeney@example.net,+1-835-944-3732x62528,3542433021496759,2025-06-09 +Resort Hotel,1,287,2017,August,31,1,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,E,0,Refundable,13.0,179.0,0,Transient-Party,98.3,0,0,Canceled,Rebecca Henderson,james24@example.com,001-504-788-2661x39663,6580574986380474,2025-04-19 +City Hotel,0,112,2017,June,26,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,1,No Deposit,11.0,179.0,0,Group,82.83,0,1,Check-Out,James Ferrell,ashley71@example.org,(335)634-4813x43504,6573228753422048,2024-10-14 +Resort Hotel,0,0,2017,March,12,19,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,231.0,0,Transient-Party,45.26,0,0,Check-Out,Tricia Valencia,nicholasvargas@example.org,(575)727-1286x8725,675964468564,2024-10-13 +City Hotel,0,23,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,239.0,0,Transient-Party,47.67,1,0,Check-Out,Nathan Maldonado,debra36@example.net,(841)539-3573x090,346689834151543,2025-12-07 +City Hotel,0,17,2017,March,10,8,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.9,0,1,Check-Out,Debra Davidson,sandrawilliams@example.net,001-358-303-5550x6886,4975409102419484,2025-10-14 +Resort Hotel,0,3,2017,March,13,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,1,No Deposit,243.0,179.0,0,Transient,48.26,1,1,Check-Out,Jeffrey Chavez,frankvickie@example.net,001-612-601-1609,30045166586429,2025-12-01 +City Hotel,1,14,2017,January,4,23,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.78,0,0,Canceled,Sherri Baker,joe40@example.org,001-263-787-3737,4949914888304,2025-05-07 +Resort Hotel,1,14,2017,December,50,10,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,292.0,179.0,0,Transient-Party,88.63,0,0,Canceled,Cassandra Gaines,gpruitt@example.net,913-226-3459,6011783437062545,2025-10-15 +Resort Hotel,0,47,2017,August,32,9,2,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,233.29,0,1,Check-Out,Elizabeth Fowler,joel97@example.org,314-649-4942x63597,639067758867,2025-12-25 +Resort Hotel,0,0,2017,December,48,1,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,57.69,0,2,Check-Out,Brittany Farmer,calvarado@example.org,001-727-377-5951,180042852045743,2026-01-18 +Resort Hotel,0,1,2017,August,32,8,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,53.44,0,0,Check-Out,Paula Moreno,veronicasnyder@example.net,920.459.9853,4160816758257353,2025-08-30 +City Hotel,1,145,2017,April,16,17,2,5,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,8.0,179.0,0,Transient,111.32,0,0,Canceled,Fred Smith,jwhitaker@example.org,751-280-9864,6011412712306738,2024-05-23 +Resort Hotel,1,264,2017,May,21,23,4,4,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,116.8,0,1,No-Show,Sherry Decker,fcopeland@example.com,611-814-3199x8098,4402657136775361,2025-03-24 +City Hotel,0,22,2017,April,18,27,0,1,1,0.0,0,BB,ITA,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,108.69,0,1,Check-Out,Anthony Humphrey,josejones@example.com,+1-579-680-9162x0231,3573118962113792,2025-05-07 +Resort Hotel,0,0,2017,February,6,8,1,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,248.0,179.0,0,Transient,32.89,1,2,Check-Out,Angelica Tucker,danielvelez@example.com,001-402-749-4009x1309,30484156575755,2024-05-06 +City Hotel,0,271,2017,October,41,13,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,146.43,0,1,Check-Out,Philip Cannon,kimberly94@example.org,321-920-3279x8037,180009515409228,2024-09-24 +Resort Hotel,1,230,2017,September,35,1,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,242.0,179.0,0,Transient,54.74,0,2,Canceled,John Pierce,benjamin51@example.com,001-348-556-2341x9835,30274025108270,2025-04-26 +City Hotel,1,114,2017,March,13,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,132.0,179.0,18,Transient,47.33,0,0,Canceled,Shane Henderson,cassie60@example.org,520-900-8434,4167209459135610,2024-11-27 +Resort Hotel,0,9,2017,October,41,12,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,44.12,0,1,Check-Out,Joshua Blair,robert27@example.org,+1-674-375-7146x182,4528531738627597866,2025-06-14 +Resort Hotel,0,18,2017,January,3,20,1,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,250.0,221.0,0,Transient,140.03,1,0,Check-Out,Eric Carney,qjones@example.com,900.928.2423x50232,4522312499709,2025-08-07 +Resort Hotel,0,100,2017,April,15,12,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,309.0,179.0,0,Transient-Party,37.06,0,0,Check-Out,Jessica Holmes,brownkelli@example.org,001-425-955-1263x765,4083429057311907,2025-12-09 +City Hotel,0,97,2017,April,17,24,1,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,129.66,0,3,Check-Out,Danny Morgan,ndrake@example.net,406-694-3579x536,4938244029127,2025-12-02 +Resort Hotel,0,4,2017,October,40,3,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,248.0,179.0,0,Transient,50.54,0,1,Check-Out,Crystal Robinson,john28@example.org,994.795.8081x944,4638398480447135,2024-04-29 +Resort Hotel,1,80,2017,July,30,27,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,134.51,0,2,Canceled,Mark Perez,vwebb@example.com,265.601.8084x7387,4350695571245,2026-02-23 +City Hotel,0,2,2017,April,17,25,0,2,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,43,Transient-Party,88.12,0,1,Check-Out,Shannon Jones,grantangela@example.com,635.684.1284x09819,3504125358223527,2024-09-03 +City Hotel,1,400,2017,October,43,25,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,104.04,0,0,Canceled,Michael Lewis,xray@example.net,547-222-2964x888,3503117638809721,2025-06-24 +Resort Hotel,0,149,2017,July,30,26,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,148.29,0,2,Check-Out,Timothy Duncan,charlesbecker@example.org,739-535-0327,347158099010207,2025-11-11 +City Hotel,0,2,2017,November,45,11,0,1,2,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,87.22,0,0,Check-Out,Richard Aguirre,joan45@example.net,001-650-782-0214x0965,570838623934,2025-12-01 +City Hotel,0,99,2017,February,6,8,0,2,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,75.78,0,0,Check-Out,Brent Jordan,fisherjason@example.org,(645)951-0380x73702,3558169374383001,2025-01-01 +City Hotel,0,44,2017,January,3,20,2,5,1,1.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,E,E,2,No Deposit,13.0,179.0,0,Transient-Party,203.55,0,0,Check-Out,John Daniel,aprilyoung@example.com,(979)848-5956,213129063116321,2024-09-17 +Resort Hotel,0,96,2017,May,19,9,2,4,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,89.97,0,2,Check-Out,Victoria Garcia,williamsspencer@example.org,668.673.2244x788,4385983143625444617,2025-11-04 +Resort Hotel,0,92,2017,December,49,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,85.97,1,1,Check-Out,Gerald Hensley,iarnold@example.net,(696)573-0820x31306,4541167045714,2024-11-22 +City Hotel,0,22,2017,May,19,11,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.06,0,3,Check-Out,Connor West,fcross@example.org,327-222-3556x4605,3524844924590930,2024-08-09 +Resort Hotel,0,11,2017,February,9,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,62.49,1,0,Check-Out,Donald Wright,omorrow@example.net,945.737.6553x92753,676349219623,2025-04-29 +Resort Hotel,0,61,2017,July,28,6,1,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,240.78,1,2,Check-Out,Jessica Callahan,brettgonzales@example.net,+1-215-246-3803x73328,4735034671443,2026-01-31 +City Hotel,0,6,2017,September,37,13,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,Amber Kidd,maria86@example.net,232.274.2180,30145169340145,2025-09-08 +City Hotel,0,12,2017,September,36,8,1,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,99.61,0,0,Check-Out,Tracy House,graymichele@example.com,001-280-243-5169x52277,4278332057095584,2024-09-09 +City Hotel,1,12,2017,August,34,23,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,111.6,0,0,Canceled,Carol Tucker,pauljames@example.org,759.709.9322x38306,4421161130087,2026-01-02 +City Hotel,1,374,2017,October,41,14,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,80.95,0,0,Canceled,James Brown,oconnorchristine@example.org,001-631-371-4976x69030,4155275347063609367,2026-02-01 +Resort Hotel,0,63,2017,May,20,15,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,William Baker,andrewcarter@example.org,822-863-6229,4176548107394562637,2024-10-20 +City Hotel,1,145,2017,December,2,30,2,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,112.64,0,1,Canceled,Jordan Henderson,fisherronnie@example.org,001-973-484-8762x1378,501819826204,2026-03-17 +City Hotel,1,162,2017,June,26,27,2,4,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,128.54,0,1,Canceled,Whitney Peters,robertmiller@example.net,740.793.2611x1327,4207669921584,2025-08-03 +City Hotel,0,93,2017,March,10,6,2,2,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,104.82,0,1,Check-Out,Brittney Phillips,jennifer02@example.net,(791)823-6927,4133625949348621630,2025-11-07 +Resort Hotel,0,122,2017,June,25,17,2,7,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,243.0,179.0,0,Transient,140.83,1,3,Check-Out,Lauren Daniels,candiceharris@example.net,327.334.5869x29853,3542625336975803,2025-11-16 +City Hotel,1,36,2017,June,26,25,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,64.98,0,0,No-Show,Amy Silva,thompsonlarry@example.net,680-317-7885,4281447484539965,2024-10-07 +City Hotel,0,81,2017,April,14,4,1,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,82.0,179.0,0,Transient-Party,84.02,0,0,Check-Out,Sarah Moore,marthacannon@example.org,5543516100,630470291208,2026-02-24 +City Hotel,0,136,2017,July,27,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.43,0,1,Check-Out,Angela Lopez,charlesrodriguez@example.org,985.627.8920x4905,586795448990,2024-09-13 +City Hotel,0,50,2017,September,37,14,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,157.58,0,1,Check-Out,Megan Young,juliastewart@example.net,+1-244-788-8098x02932,4861904229673045533,2025-07-10 +City Hotel,0,0,2017,February,7,13,0,2,1,0.0,0,SC,,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.75,0,0,Check-Out,Steve Sanchez,gravesscott@example.org,276-629-2783,4502318152029952808,2025-09-25 +City Hotel,0,11,2017,January,2,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,73.56,1,0,Check-Out,Lisa Barnes,michaelschmidt@example.com,488-503-6545x880,213174994031389,2024-05-20 +Resort Hotel,1,5,2017,October,43,22,1,4,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,215.48,1,2,Canceled,Kelly Donovan,tiffanyschmidt@example.org,(405)925-7887x6760,4487103800474435,2025-05-31 +City Hotel,1,414,2017,May,20,17,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,119.16,0,0,Canceled,Mike Allen,andrevaughn@example.org,001-631-499-1644x4724,30160889240822,2026-01-05 +City Hotel,0,3,2017,August,33,13,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,B,1,No Deposit,9.0,45.0,0,Transient-Party,1.03,0,1,Check-Out,Michael Evans,devon00@example.org,3359021931,3591425340238391,2025-10-28 +City Hotel,0,119,2017,August,32,11,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,85.32,0,1,Check-Out,Paul Jones,ryandaniel@example.org,823-670-4009x302,4096357095352860426,2026-01-03 +City Hotel,0,19,2017,May,18,2,1,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,171.62,0,1,Check-Out,Zachary Ferrell,samanthacastillo@example.net,+1-870-334-0621,180075218661126,2024-10-10 +Resort Hotel,0,106,2017,August,35,27,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,237.0,179.0,0,Transient,64.47,1,2,Check-Out,Daniel Baker,michaelcharles@example.org,001-829-911-4192x208,4513402504524,2026-02-01 +City Hotel,1,106,2017,October,42,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,99.85,0,0,Canceled,Shirley Suarez,christopherbaker@example.org,+1-392-823-4890x71819,6578621897580389,2024-11-20 +City Hotel,0,2,2017,July,27,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,242.0,179.0,0,Transient,165.79,0,0,Check-Out,Christopher Bass,ibell@example.org,001-985-419-3230x374,4186575730919346,2024-05-07 +City Hotel,1,11,2017,March,12,24,1,2,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.03,0,2,Canceled,Lisa Archer,jonesscott@example.net,578-438-8687x388,569600657914,2025-02-19 +City Hotel,0,0,2017,November,45,9,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,3.27,0,0,Check-Out,Aimee Montoya,marvin05@example.net,(447)677-7684x3980,4735303312380,2025-12-07 +City Hotel,1,185,2017,August,32,4,2,6,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,140.6,0,0,Canceled,Matthew Mcmillan,johnsonsamantha@example.org,001-728-830-3749,4280411021706,2024-03-28 +Resort Hotel,0,153,2017,October,40,5,1,7,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,107.83,1,0,Check-Out,Brian Rodriguez,franklinjennifer@example.org,(508)256-0670x09109,4064365375404748,2025-03-01 +Resort Hotel,0,16,2017,August,33,13,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,143.96,1,1,Check-Out,Denise Jacobs,william85@example.net,(910)878-5850,4903058786998,2024-09-27 +City Hotel,0,57,2017,October,40,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,101.46,0,0,Check-Out,Christina Walters,millerheather@example.com,229.464.6382,4216719431817,2024-07-27 +Resort Hotel,1,155,2017,July,28,9,4,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,228.91,0,1,Canceled,John Whitehead,beckkevin@example.org,262.391.4365x0353,2680715851819884,2025-07-28 +City Hotel,0,203,2017,August,32,4,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,197.92,0,0,Canceled,Anna Henderson,jessicacooper@example.org,531-583-3909,30480525299580,2025-04-02 +City Hotel,0,164,2017,June,25,23,2,2,2,1.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,144.94,0,1,Check-Out,Aaron Wise,cherryrebecca@example.com,(740)650-7735,3561255290322374,2025-10-26 +City Hotel,0,58,2017,March,12,17,0,1,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.44,0,2,Check-Out,Deborah Figueroa,brian82@example.com,+1-483-297-0271,180059069178257,2025-11-05 +City Hotel,0,23,2017,March,12,20,2,2,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,90.26,1,0,Check-Out,Jessica Smith,mpham@example.net,470.803.4223,213103735800026,2024-12-12 +City Hotel,0,157,2017,March,14,30,1,3,3,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,139.9,0,0,Check-Out,Stephen Mckee,chapmanjohn@example.org,975.948.3641,4516623081776,2025-12-07 +City Hotel,1,18,2017,January,2,6,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,61.46,0,0,Canceled,Sandra Aguilar,gjensen@example.com,001-233-642-0101x368,4318578198097473,2025-01-29 +Resort Hotel,0,38,2017,December,49,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,95.41,0,1,Check-Out,Cameron Parker,trevorbarry@example.org,714.547.2790x328,630476737931,2024-11-19 +Resort Hotel,1,214,2017,June,24,11,4,10,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,239.0,179.0,0,Transient,140.57,0,1,No-Show,Rebecca Valencia,johnsonmitchell@example.com,805-212-1127x2589,2709260578968794,2026-03-05 +Resort Hotel,0,180,2017,March,13,23,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,325.0,179.0,0,Transient,53.65,0,0,Check-Out,Christine Wright,scottjanet@example.net,(468)777-3574x53154,180032603865549,2025-12-12 +City Hotel,0,15,2017,January,3,15,1,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.72,0,3,Check-Out,Richard Henson,frenchlouis@example.com,(519)325-3610x76337,503835033740,2024-09-12 +City Hotel,0,15,2017,July,28,9,2,4,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,130.87,0,1,Check-Out,Marc Moore,williamsmichael@example.org,208-504-0884x4542,180059402536153,2025-02-26 +City Hotel,0,9,2017,March,12,22,0,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,82.55,0,0,Check-Out,Sharon Cherry,amber35@example.net,001-991-590-8976x8242,6548974425523422,2024-07-25 +Resort Hotel,1,155,2017,July,28,10,1,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Sierra Johnson,velasqueztaylor@example.org,(333)324-9331x8861,3516783814082568,2024-11-29 +Resort Hotel,0,151,2017,August,35,30,2,2,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,252.0,1,1,Check-Out,Evelyn Galvan,tmcgee@example.com,001-639-211-8485x5944,4054410847248141,2024-10-28 +Resort Hotel,0,0,2017,March,12,19,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,53.7,1,1,Check-Out,Sharon Cochran,gomezkathy@example.net,(271)754-8098,4652483788980341,2025-07-19 +City Hotel,1,43,2017,January,4,23,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.65,0,1,Canceled,Richard Rodriguez,shellyguerrero@example.com,+1-961-451-9231x4436,343989671601599,2025-12-16 +City Hotel,1,200,2017,July,27,5,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,8.0,179.0,0,Contract,227.31,0,0,Canceled,Shannon Walker,zmorgan@example.net,001-663-717-3274x49719,4666155089936689603,2026-03-14 +Resort Hotel,0,11,2017,August,32,4,2,5,2,2.0,0,HB,BEL,Direct,Direct,0,0,0,G,G,2,No Deposit,248.0,179.0,0,Transient,240.2,1,1,Check-Out,Julia Torres,englishandrea@example.com,(829)687-6362x66315,4003461967747,2026-01-17 +City Hotel,0,1,2017,August,32,8,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,35.0,179.0,0,Transient,169.91,0,1,Check-Out,Crystal Johnson,plee@example.com,259-350-7515x1536,180018910838360,2025-08-24 +Resort Hotel,0,11,2017,May,21,22,1,0,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,11.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,Garrett Lin,megan58@example.com,7416840669,5281356322896544,2024-10-09 +City Hotel,1,374,2017,March,12,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,83.99,0,0,Canceled,Diana May,garcianathan@example.com,950-651-8965x9132,2239436290970974,2025-05-09 +Resort Hotel,1,0,2017,February,6,4,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,46.55,0,0,Canceled,William Herrera,bmiller@example.com,+1-252-830-3906x80264,2247644724649722,2026-01-11 +City Hotel,1,322,2017,July,30,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,134.2,0,0,Canceled,Ashley Waller,bward@example.com,8493650669,676327322597,2024-04-13 +Resort Hotel,1,206,2017,July,28,14,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,319.0,179.0,0,Transient,104.63,0,0,Canceled,Victor Baker,valeriemurray@example.org,001-581-601-6823,4102117796896,2025-05-26 +City Hotel,1,102,2017,March,13,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,114.57,0,0,Canceled,Jeffrey Chandler,cgarcia@example.com,001-372-704-2265x31658,2720801179075276,2025-11-17 +City Hotel,0,6,2017,August,33,13,1,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,252.0,1,3,Check-Out,Larry Dixon,kimberlyjohnson@example.org,+1-732-322-9153x2543,4231148103864898,2025-05-02 +Resort Hotel,0,13,2017,July,27,3,2,4,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,247.08,0,0,Check-Out,Kenneth Scott,tclark@example.net,001-645-429-3261,2716026501749903,2025-04-05 +City Hotel,0,47,2017,November,44,1,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,78.46,0,2,Check-Out,April Frost,jim68@example.org,263.910.8089,4424087441022701,2025-02-18 +City Hotel,0,13,2017,May,20,11,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.49,0,1,Check-Out,Michelle Harmon,morrismaria@example.com,716-304-1142,4867471972850915156,2025-10-29 +City Hotel,1,414,2017,October,42,15,1,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,84.05,0,0,Canceled,Helen Jones,smithsteven@example.net,801-292-0118x31661,3515538614170364,2026-02-23 +Resort Hotel,0,0,2017,October,43,28,1,0,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,338.0,179.0,0,Transient,129.4,0,0,Check-Out,Erin Edwards,bwu@example.net,700.339.7855x1169,3576504219792164,2024-07-26 +City Hotel,1,223,2017,August,34,20,0,4,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,154.67,0,1,Canceled,Michelle Evans,brownabigail@example.org,(728)861-1124,4219377347018005,2025-05-17 +Resort Hotel,1,24,2017,January,4,23,0,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,Jason Powell,jennifer55@example.org,980-688-0022x20068,2234637958551882,2024-10-09 +Resort Hotel,0,1,2017,August,35,30,2,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,16.0,179.0,0,Transient,230.7,1,0,Check-Out,Cameron Fisher,hevans@example.org,001-595-219-2624x3776,349132689535509,2025-01-10 +City Hotel,0,366,2017,May,20,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,110.95,0,0,Check-Out,Megan Orr,kevin43@example.net,678-355-9404x747,3599252464800422,2025-02-04 +City Hotel,1,150,2017,May,19,8,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,228.0,0,Transient,125.02,0,0,Canceled,Elizabeth Kelley,juan92@example.com,+1-961-389-1344,3587776812162964,2024-12-02 +City Hotel,1,15,2017,March,12,19,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.84,0,0,Canceled,Dustin Jordan,xthompson@example.org,+1-418-546-5031x8618,376103210492987,2025-02-04 +Resort Hotel,0,149,2017,March,14,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,179.0,0,Transient-Party,112.9,0,0,Check-Out,Mary Marshall,cody81@example.net,(966)946-2286x65575,3503983827612477,2025-05-10 +Resort Hotel,1,220,2017,June,26,24,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,Non Refund,245.0,179.0,0,Transient,208.74,0,0,Canceled,Daniel Kennedy,amandamclean@example.org,(279)619-0299,2720856375257532,2024-10-07 +City Hotel,0,1,2017,April,16,18,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,1,No Deposit,16.0,254.0,0,Transient,0.66,0,0,Check-Out,Rebecca Jackson,robin94@example.org,001-205-370-3259x42599,4562437107753,2026-02-25 +City Hotel,0,15,2017,April,17,28,2,1,2,1.0,0,BB,CHN,Direct,Direct,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,179.18,0,1,Check-Out,Jose Schultz,sabrina29@example.net,804.700.7763,3509201599108143,2024-05-12 +City Hotel,0,355,2017,May,19,13,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,112.02,0,0,Check-Out,Robert Potter,stevenruiz@example.net,631.268.3963x151,3520867007855916,2024-10-19 +City Hotel,0,12,2017,May,18,3,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,112.76,0,1,Check-Out,Courtney Gonzalez,xdavis@example.net,(954)499-2875x933,213144142325231,2024-07-05 +Resort Hotel,0,190,2017,July,27,4,1,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,115.38,0,1,Check-Out,David Alvarez,zwilson@example.com,2058396393,30042022436410,2025-06-20 +City Hotel,1,398,2017,December,48,1,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,62,Transient,81.1,0,0,Canceled,Angel Perry,brownjamie@example.org,(735)239-5872,4729453657181,2026-02-19 +City Hotel,1,160,2017,October,44,28,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.99,0,0,Canceled,Cheyenne Horton,lynnbenitez@example.net,4668299453,180067518190302,2025-06-05 +Resort Hotel,0,26,2017,September,39,26,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,239.0,179.0,0,Transient,252.0,1,1,Check-Out,David Douglas Jr.,emason@example.net,001-544-459-2582x237,5474884727932967,2025-11-24 +City Hotel,1,308,2017,July,27,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.75,0,0,Canceled,Patricia Rodriguez,ybarrett@example.com,+1-378-945-1181x3541,4433920251292718,2024-04-19 +City Hotel,1,180,2017,August,32,9,2,2,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,140.7,0,0,Canceled,Christopher Rubio,ashleyallen@example.net,+1-894-309-7727x07375,676292281349,2025-03-10 +City Hotel,1,43,2017,April,15,7,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,92.18,0,0,Canceled,Amber Wright,livingstonshannon@example.com,(801)332-5299x794,4095322968617304,2025-02-20 +City Hotel,0,3,2017,October,44,29,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,4.93,0,0,Check-Out,Joyce Solis,lorispencer@example.org,(821)621-5114x7482,675984902154,2026-01-30 +City Hotel,1,0,2017,February,8,21,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient,44.08,0,1,Canceled,Victoria Larson,obrienadam@example.com,369.585.5522x0968,6593106949854355,2025-09-23 +Resort Hotel,1,295,2017,May,21,23,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,99.99,0,0,Canceled,Stephanie Salazar,cynthiajohnson@example.com,+1-403-289-3146x8312,6533531611294205,2024-10-02 +City Hotel,0,1,2017,November,47,19,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,80.0,0,Transient-Party,62.64,0,0,Check-Out,Kathy Rivas,qbush@example.com,870-791-7511x2445,2232300141473702,2024-11-17 +City Hotel,0,414,2017,October,41,12,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.39,0,0,Check-Out,Stephanie Manning,cookrobin@example.org,+1-368-404-5336,2235666064465116,2024-11-18 +City Hotel,0,150,2017,September,36,8,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,7.0,179.0,0,Transient,105.96,0,0,Check-Out,David Wright,bblack@example.org,(392)617-2354,6596228500087337,2024-09-05 +Resort Hotel,1,292,2017,September,38,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,A,0,Non Refund,9.0,179.0,0,Contract,105.38,0,0,Canceled,Pamela Boyd,joyce28@example.net,001-731-221-3629x79157,213152571168303,2024-04-22 +Resort Hotel,0,141,2017,February,8,19,1,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,45.94,0,0,Check-Out,Denise Jones,ogonzalez@example.net,(981)924-4963,6549987006346764,2025-11-15 +Resort Hotel,0,17,2017,January,4,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,49.86,0,3,Check-Out,Devon Flores,anthony04@example.org,+1-214-627-7663,213192311190035,2024-10-02 +City Hotel,0,414,2017,October,42,14,1,3,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.88,0,0,Check-Out,Brenda Hall,thompsonjoseph@example.org,946-515-5067x99006,370924648400896,2025-12-21 +Resort Hotel,1,151,2017,November,44,2,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,94.77,0,1,Canceled,Michelle Brown,xfaulkner@example.org,(519)826-0360,676321152511,2025-07-06 +Resort Hotel,0,145,2017,September,38,20,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,241.0,179.0,0,Group,112.83,0,1,Check-Out,Joshua Perry,iwest@example.org,959.659.7124,6011362482994751,2025-03-10 +City Hotel,1,414,2017,August,31,1,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,118.05,0,0,Canceled,Jason Stein,chudson@example.org,234.463.6196x20863,4691404955284583,2025-02-22 +Resort Hotel,1,236,2017,August,32,7,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,238.0,179.0,0,Transient,147.38,0,1,Canceled,Melissa Gates,carrollalexis@example.org,980-761-8716x97472,6514506829165978,2025-02-18 +Resort Hotel,0,9,2017,April,15,12,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,44.34,0,0,Check-Out,Jamie Smith,kathleenwilson@example.net,(707)473-7688,3524008962453530,2026-03-27 +City Hotel,0,16,2017,May,22,27,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,181.18,0,0,Check-Out,Paul Castaneda,markcharles@example.net,001-445-834-1330x944,3515275519330112,2026-03-27 +Resort Hotel,0,48,2017,January,2,10,1,0,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,1,D,H,0,No Deposit,241.0,179.0,0,Transient,44.39,0,1,Check-Out,Jennifer Adkins,bcampbell@example.com,+1-879-657-2690,6011300093949830,2025-04-29 +City Hotel,0,18,2017,November,45,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,16.0,64.0,0,Transient,88.18,0,0,Check-Out,Lindsey Walker,joyce50@example.org,001-579-914-8541,4809898770738591,2024-11-08 +City Hotel,1,278,2017,September,39,24,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,63.75,0,0,Canceled,Jeffrey Johnson,christopherdeleon@example.net,+1-445-488-2085x9511,4620871525714784,2026-01-22 +City Hotel,0,8,2017,January,4,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,61,Transient,84.69,0,1,Check-Out,Michael Powell,jenna71@example.com,(548)601-8226x24333,5189681178723374,2025-12-13 +Resort Hotel,0,0,2017,October,44,27,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,181.0,0,Transient,53.46,0,0,Check-Out,John Anderson,nhoward@example.com,(989)525-6481,6596545244939576,2024-09-08 +City Hotel,0,16,2017,May,22,26,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,138.39,0,2,Check-Out,Alyssa Long,morrisjillian@example.org,(443)568-7194,4110079770769423,2026-02-24 +City Hotel,0,110,2017,March,10,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,1,B,B,0,No Deposit,31.0,179.0,0,Transient,85.54,0,1,Check-Out,Alyssa Day,washingtonangela@example.org,894-682-6099x1425,4701881540834,2024-05-26 +Resort Hotel,1,18,2017,August,33,16,2,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,228.11,0,0,Canceled,Joel Williams,ryanthomas@example.org,(649)517-7750x922,30492585383022,2025-12-06 +Resort Hotel,0,1,2017,March,11,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,238.0,0,Transient,46.6,0,1,Check-Out,Daniel Murphy,thomasdrew@example.org,+1-930-902-6387x95652,3593879647972078,2025-04-14 +City Hotel,0,186,2017,July,27,4,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,134.84,0,2,Check-Out,Jamie Walton,lindsay62@example.org,+1-657-705-1101,372874411704727,2026-02-03 +City Hotel,0,13,2017,November,45,8,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,67,Contract,92.59,0,0,Check-Out,Darlene Miller,rhopkins@example.com,(621)433-9437x7509,3501010174288800,2024-04-05 +City Hotel,0,34,2017,October,42,17,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.13,0,1,Check-Out,Joshua Cooke,tarmstrong@example.com,001-942-294-2521,501883038553,2024-05-20 +City Hotel,0,29,2017,October,40,7,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,19.0,179.0,0,Transient-Party,67.55,0,0,Check-Out,Matthew Harrington,erin18@example.com,430-449-0153x59447,4883409360717819957,2026-01-07 +City Hotel,1,196,2017,June,25,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,176.12,0,0,Canceled,Nicole Herring,btaylor@example.org,(717)913-8657x274,344182011532927,2024-05-11 +Resort Hotel,0,107,2017,May,18,4,1,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,286.0,179.0,0,Transient,143.02,0,0,Check-Out,Alex Hernandez,datkinson@example.org,(875)948-2856x02628,370497955105408,2025-11-07 +Resort Hotel,0,0,2017,May,22,25,2,2,3,1.0,0,BB,GBR,Direct,Direct,0,0,0,H,H,2,No Deposit,247.0,179.0,0,Transient,139.04,1,2,Check-Out,Michael Elliott,ycooper@example.net,(801)440-6968x62750,341322919907267,2024-09-22 +City Hotel,0,9,2017,February,6,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,78.83,0,0,Check-Out,Michael Wang,plang@example.net,650-520-5511,36875935922479,2025-10-03 +City Hotel,0,2,2017,January,4,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,90.07,0,2,Check-Out,Lawrence Adkins,bridget23@example.org,619.692.9482x425,4628443461758001,2025-07-29 +Resort Hotel,1,134,2017,March,13,30,3,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,2,Refundable,317.0,179.0,0,Transient,44.24,0,0,Canceled,Robert Oconnell,daniel08@example.org,+1-974-450-8249x560,30517632659253,2024-07-03 +Resort Hotel,1,155,2017,August,31,2,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient-Party,104.25,0,0,Canceled,Alexander Collins,fhunt@example.org,812.947.8793,3500324351103703,2026-02-27 +Resort Hotel,1,42,2017,November,47,19,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,237.0,179.0,0,Transient,121.37,0,1,Canceled,Tina Sanders,megan19@example.org,+1-266-302-6029x4825,3512143548180044,2025-08-09 +City Hotel,0,12,2017,April,14,4,0,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,81.09,0,0,Check-Out,Angela Vaughn,heatherortiz@example.net,578-913-9233x209,3563306563587157,2025-12-05 +Resort Hotel,0,8,2017,February,8,20,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,145.0,179.0,0,Transient,46.1,0,1,Check-Out,Ashley Barton,webbrobert@example.net,001-805-871-6356x968,4444400458148889720,2025-05-13 +City Hotel,1,68,2017,August,35,27,2,5,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,168.78,0,3,Check-Out,Lindsay Martinez,foxwilliam@example.org,+1-452-870-4052x393,4186999716445,2025-02-23 +Resort Hotel,0,98,2017,May,21,20,4,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,89.54,0,0,Check-Out,Dr. Hannah Patterson,bflowers@example.com,836-654-7455x63416,4486253832422034,2025-09-27 +Resort Hotel,0,48,2017,October,41,10,4,7,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Contract,141.17,0,1,Check-Out,Jonathan Peterson,santosshannon@example.org,(220)731-2800,4133939231917767,2025-09-17 +City Hotel,0,2,2017,July,30,23,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,211.26,0,1,Check-Out,Samantha Garcia,matthew07@example.com,800.446.8277,180013226362205,2024-05-02 +Resort Hotel,0,48,2017,November,46,14,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,354.0,72.0,0,Transient-Party,48.96,1,0,Check-Out,Madison Poole,ashley91@example.net,001-491-679-7438x69624,349319874559218,2026-01-30 +City Hotel,0,113,2017,July,30,20,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.79,0,2,Check-Out,Jessica Gross,kfrye@example.com,001-282-620-1759x84751,4153221330080,2025-10-28 +Resort Hotel,1,153,2017,May,19,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,316.0,179.0,0,Transient,64.17,0,0,Canceled,Debra Morton,stephanie83@example.com,(625)583-1017x01423,213162189846570,2025-05-17 +Resort Hotel,0,1,2017,January,2,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,D,2,No Deposit,14.0,75.0,0,Transient,40.78,0,1,Check-Out,Karen Graham,kurt40@example.org,583-870-3447,3510640015953433,2024-04-29 +Resort Hotel,0,0,2017,October,41,10,4,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,231.14,0,2,Check-Out,Debra Christian,gwendolyn59@example.net,576.925.2881x6210,180077473273647,2026-02-01 +City Hotel,0,109,2017,July,30,22,2,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,9.0,179.0,0,Transient,125.31,0,1,Check-Out,Angelica Keith,brownstephen@example.org,774.624.8399x70438,30415177689159,2025-06-14 +City Hotel,0,37,2017,August,32,4,0,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,230.76,0,3,Canceled,John Bishop,bedwards@example.com,8634928490,3568299043919659,2025-06-06 +City Hotel,0,24,2017,January,4,26,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Transient,82.62,0,0,Check-Out,Allen Rosales,lawrenceperkins@example.org,001-651-695-8476x66655,372441753036538,2025-07-07 +City Hotel,0,41,2017,May,19,6,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,127.76,0,1,Check-Out,Daniel Salinas,ryankathleen@example.org,001-613-900-8560x454,576614768173,2024-08-13 +City Hotel,0,113,2017,September,37,9,2,4,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,113.74,0,0,Check-Out,Spencer Haynes,brucemcdonald@example.net,982.537.4113x5796,4476288479270061184,2025-07-10 +City Hotel,0,52,2017,May,21,23,1,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient-Party,118.53,0,1,Check-Out,Adam Vaughan,angelacohen@example.com,(837)239-9935x59544,4529883387704839,2025-05-11 +Resort Hotel,0,0,2017,August,33,16,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,17.0,179.0,0,Transient,213.02,0,1,Check-Out,Nathan Freeman,jesus01@example.org,520.244.3043,2227888701293228,2024-09-10 +Resort Hotel,0,0,2017,February,8,17,1,0,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,177.0,179.0,0,Transient,33.95,0,0,Check-Out,Melissa Brewer,tamaraburnett@example.net,736-492-2002x58221,6011321303446490,2024-07-20 +Resort Hotel,0,47,2017,May,20,11,2,10,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,174.03,0,1,Check-Out,Ricky Davis II,aliciastevens@example.org,601.208.1558x661,378707988355107,2025-04-14 +City Hotel,1,48,2017,August,34,22,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,1.0,179.0,0,Transient-Party,124.02,0,1,Canceled,Elizabeth Perkins,josemora@example.com,001-414-774-0426x10341,213194921536250,2025-04-29 +City Hotel,0,18,2017,August,32,5,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,64.53,0,2,Check-Out,Joseph Coleman,ashleykimberly@example.org,8517038133,3595470550972160,2025-08-21 +City Hotel,0,9,2017,July,27,4,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,58.7,0,0,Check-Out,Erin Warner,lisa77@example.net,431-384-2956,4940349054679,2024-06-06 +City Hotel,0,16,2017,November,46,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,65.17,0,0,Check-Out,David Martinez,owilliams@example.org,+1-916-242-6062x51776,4616268176711332,2025-10-02 +City Hotel,0,12,2017,March,13,28,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,47.63,0,0,Check-Out,Bryan Herrera,reevesamanda@example.com,+1-636-696-0426,4160744822598178370,2025-12-01 +City Hotel,1,63,2017,July,31,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,39,Transient,105.61,0,0,Canceled,Cathy Robinson,josegonzalez@example.org,(608)498-8747x6277,501813007652,2025-01-18 +City Hotel,0,83,2017,March,12,21,1,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.2,0,1,Check-Out,Dr. William Warren,karen18@example.org,(940)561-3843x002,213142063848348,2025-02-07 +Resort Hotel,0,82,2017,November,47,18,0,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,57.08,0,0,Check-Out,Brian Lee,lrogers@example.com,317-287-9009,3519964779082911,2025-02-11 +City Hotel,1,8,2017,November,45,5,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.26,0,0,Canceled,Christopher Smith,holtrichard@example.com,(302)982-5140x3648,4664342372850,2024-08-06 +City Hotel,0,151,2017,December,51,21,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,82.2,0,1,Check-Out,Denise Mccann,bhenderson@example.com,355.295.3770x43152,180094833956001,2026-01-10 +City Hotel,1,11,2017,March,11,15,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,42.69,0,1,Check-Out,Melissa Martinez,qdiaz@example.org,6127907913,4957232438462,2024-12-18 +City Hotel,0,2,2017,November,45,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,57.4,0,2,Check-Out,Katherine Salas,isaiah91@example.net,4076631882,3510052710846278,2024-07-25 +Resort Hotel,1,260,2017,August,34,20,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,85.71,0,0,Canceled,Julie Alexander,lewisscott@example.net,(917)234-9094x09541,3543318144111121,2025-04-21 +City Hotel,0,1,2017,October,40,4,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,64.38,0,1,Check-Out,Anthony Everett,tlee@example.com,(999)673-6926,30480966555664,2025-02-28 +City Hotel,1,18,2017,August,33,15,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,172.82,0,1,Canceled,Rodney Morales,esimpson@example.org,+1-393-778-1122,347054356103738,2025-10-20 +City Hotel,0,166,2017,April,15,6,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,176.91,0,0,Check-Out,Mark Brown,parkkevin@example.net,001-203-950-4528x53582,213106894855004,2025-01-24 +City Hotel,1,57,2017,May,18,2,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.88,0,1,Canceled,Justin Torres,treynolds@example.org,(418)764-1902x103,6508788849989672,2024-12-20 +Resort Hotel,0,0,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,0,No Deposit,182.0,331.0,0,Transient-Party,51.1,0,0,Check-Out,Bailey Duran DDS,michael21@example.net,001-936-946-2512x124,4263253271224601,2024-11-09 +Resort Hotel,1,16,2017,March,10,8,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient,79.66,0,0,Canceled,Courtney Mills,susancherry@example.net,(757)941-7815x18857,4825382551664475809,2025-05-15 +City Hotel,0,0,2017,December,2,31,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,0,A,D,0,No Deposit,11.0,331.0,0,Transient,37.8,0,1,Check-Out,Jeremy Dalton,wrighttina@example.net,(362)408-9759x86476,30239991292135,2024-12-16 +City Hotel,0,18,2017,February,8,19,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,73.37,0,1,Check-Out,Elizabeth Oliver DDS,leahpitts@example.org,8875783209,567448935492,2025-05-06 +Resort Hotel,0,161,2017,March,13,28,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,222.0,0,Transient-Party,37.45,0,0,Check-Out,Theresa Clark,kristinshaw@example.net,(707)243-8768x1082,30449498883464,2026-02-12 +City Hotel,1,311,2017,June,23,5,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,A,0,Non Refund,13.0,179.0,0,Transient,135.08,0,0,Canceled,Matthew Moore,uhamilton@example.org,+1-617-245-8190x3297,6505657363412325,2025-12-16 +Resort Hotel,0,10,2017,March,12,18,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,104.42,0,2,Check-Out,Benjamin Smith,kimsimpson@example.org,001-385-796-7262x128,6516261021339868,2025-06-28 +City Hotel,0,12,2017,March,10,4,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.15,0,1,Check-Out,Kirk Carter,lewismichael@example.net,+1-888-411-9658x945,4803297505707634880,2025-11-05 +City Hotel,0,14,2017,December,50,11,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.05,0,1,Check-Out,Michael Warner,jacobgutierrez@example.net,812.618.9145,30577522924613,2025-02-24 +City Hotel,0,16,2017,March,13,24,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,C,2,No Deposit,10.0,179.0,0,Transient,108.46,0,1,Check-Out,Michael Bradshaw,lori49@example.org,(639)332-2207,6593391322735716,2025-04-04 +City Hotel,1,414,2017,July,29,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,252.0,0,0,Canceled,Lori Guerrero,bcastro@example.com,706.370.1321,2243135980120049,2025-02-08 +Resort Hotel,0,0,2017,May,22,29,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,0,No Deposit,14.0,179.0,0,Transient,167.44,1,0,Check-Out,Jessica Stephens,framirez@example.org,001-346-834-6393x02532,502095441502,2025-10-17 +City Hotel,1,53,2017,July,27,6,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.28,0,0,Canceled,Susan Serrano,susanrivera@example.org,001-471-986-6329x446,4465732262081357,2026-02-15 +City Hotel,0,107,2017,June,22,2,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,42,Transient,94.46,0,0,Check-Out,Christopher Parker,stephanie54@example.net,313.627.0948x10259,3528390550026266,2025-10-11 +Resort Hotel,0,0,2017,March,13,28,0,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient,137.08,1,3,Check-Out,Laura Roberts,efernandez@example.org,+1-415-816-8887x821,6504662859369170,2026-03-11 +City Hotel,0,0,2017,November,46,11,1,2,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,H,A,0,No Deposit,14.0,179.0,0,Transient,101.47,0,0,Check-Out,Michael Lyons,cmcdaniel@example.com,+1-470-246-3795x388,561656184521,2025-09-25 +City Hotel,1,39,2017,August,32,9,0,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,252.0,0,1,Canceled,Kathryn Snyder,gillespiegrant@example.net,+1-264-902-2163x721,676380342094,2025-11-30 +Resort Hotel,1,136,2017,July,30,25,0,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,75,Transient,209.57,0,2,No-Show,Andrew Reynolds,mendozadaniel@example.org,3786067670,3582250237863981,2025-09-05 +City Hotel,0,3,2017,August,34,20,0,1,2,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,5.41,0,2,Check-Out,David Davis,lholden@example.com,503.697.0693x051,3552756296825006,2026-02-27 +Resort Hotel,0,147,2017,March,13,24,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,98.36,0,1,Check-Out,Sara Johnston,kyle83@example.net,507.582.7991,213171126191008,2024-09-29 +City Hotel,0,69,2017,September,37,10,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,63.07,0,1,Check-Out,Yvonne Chambers,llewis@example.com,+1-434-963-3061x38334,38988993194382,2025-02-13 +Resort Hotel,0,262,2017,October,40,5,3,4,2,0.0,0,HB,CHE,Groups,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,38.81,0,1,Canceled,Andrew Avila,awilliams@example.com,6983077485,3505172638030479,2024-04-30 +City Hotel,0,38,2017,March,13,27,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.04,0,1,Check-Out,Matthew Moon,brendabarrett@example.com,+1-923-828-1815x103,4468151456449220991,2024-10-30 +Resort Hotel,0,0,2017,April,14,2,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient-Party,52.12,1,1,Check-Out,Kevin Walters,sheila47@example.org,+1-288-814-1015,5517449321004966,2024-12-23 +City Hotel,0,11,2017,April,17,25,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,138.28,0,0,Check-Out,Brandon Bailey MD,brandonalexander@example.org,719.742.6689,346079259999230,2025-08-23 +Resort Hotel,1,20,2017,October,42,17,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,312.0,179.0,0,Transient,136.15,0,1,Canceled,Shannon Rivera,ipeters@example.org,986.449.4501x979,3582702461637242,2025-09-07 +City Hotel,1,52,2017,September,36,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,96.12,0,0,Canceled,Donna Landry,lconner@example.com,(771)909-9747x895,4147843601805194,2024-07-28 +City Hotel,0,32,2017,April,15,9,1,2,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,144.34,0,2,Check-Out,Krista Gibson,johnwalters@example.com,863-870-3927,3503399510173554,2025-01-04 +Resort Hotel,0,38,2017,November,45,7,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,91.4,0,0,Check-Out,Frank Cordova,emyers@example.com,001-756-442-3987x644,4279743319230429732,2025-04-11 +City Hotel,1,411,2017,June,25,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,78.36,0,0,Canceled,Jose Travis,davidhanson@example.net,(646)210-7842,4283113215951279,2025-06-24 +City Hotel,1,282,2017,July,29,21,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,105.07,0,1,Canceled,Kimberly Gutierrez,beckypierce@example.net,+1-432-777-8797x078,4136923978551044,2025-06-04 +City Hotel,0,77,2017,July,27,5,2,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,101.54,0,0,Check-Out,Isaiah Avila,catherine05@example.net,001-549-758-4325x32503,213180236756634,2024-07-29 +Resort Hotel,0,31,2017,December,51,23,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient-Party,47.47,0,0,Check-Out,Olivia Harris,shelly94@example.net,360.914.9963x75087,30458304567237,2024-11-15 +City Hotel,1,309,2017,October,42,19,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,29.0,179.0,0,Contract,105.75,0,0,Canceled,Tanya Kim,joshuamckenzie@example.net,+1-313-764-3194x29099,3517969630664007,2026-01-22 +City Hotel,0,9,2017,October,40,1,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,96.58,0,0,Check-Out,Barbara Dudley,jonesallison@example.org,(570)952-4794,578244553579,2025-11-11 +City Hotel,1,46,2017,December,51,17,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.73,0,1,Canceled,Cynthia Moore,jessicamorales@example.org,265-352-4425,502081791118,2024-10-25 +City Hotel,0,35,2017,April,17,28,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,78.73,0,0,Check-Out,Kristen Davis,hendersonkaren@example.net,3095596731,213152936421389,2025-11-26 +Resort Hotel,0,288,2017,January,4,26,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,44.7,0,1,Check-Out,Susan Murray MD,amberbaker@example.org,(849)853-6600x1482,4836598055310,2024-12-22 +Resort Hotel,0,284,2017,September,38,23,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Contract,109.78,0,2,Check-Out,Kathleen Moran,johnsonhannah@example.org,854-906-0736x095,213178812676119,2025-11-09 +City Hotel,0,21,2017,September,36,6,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,87.19,0,1,Check-Out,Denise Davenport,ratkinson@example.com,213.369.3991x47893,503868619290,2025-08-29 +City Hotel,1,62,2017,March,10,2,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,169.1,0,2,Canceled,Mrs. Kristen Reyes,chadwatson@example.net,654-342-2819x91809,4729016854978242,2024-08-02 +City Hotel,1,181,2017,August,33,15,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient,170.13,0,1,Canceled,Katie Suarez,derrickbrown@example.org,001-453-489-9180x2016,4235009708569512,2025-04-14 +City Hotel,1,17,2017,July,29,16,1,4,3,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,90.59,0,0,Canceled,Desiree Tyler,brandon46@example.com,+1-291-589-3891x2003,346045700685314,2024-04-06 +Resort Hotel,0,18,2017,November,47,23,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,84.1,1,1,Check-Out,Timothy Romero,veronica90@example.org,+1-589-365-3286x539,3561775289541296,2025-11-29 +City Hotel,0,0,2017,January,3,17,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,44.2,0,1,Check-Out,Diane Evans,kreed@example.com,(541)514-8889,5524934263666162,2025-09-19 +Resort Hotel,0,2,2017,September,37,9,2,0,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,239.0,0,Transient,104.13,0,0,Check-Out,Yvonne Burns,halealan@example.com,538-564-3490,4434531124029,2025-10-10 +City Hotel,1,26,2017,December,49,3,2,4,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,92.8,0,0,Canceled,Joshua Reed,michael49@example.net,349-985-5715,30437162277113,2024-06-22 +City Hotel,0,63,2017,June,23,4,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,83.74,0,1,Check-Out,Kimberly Gibson,markkelley@example.com,437-208-8886,4400800267392931239,2025-11-25 +City Hotel,1,246,2017,September,36,3,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,83.0,179.0,0,Transient,99.04,0,2,Canceled,Colin Terry,hernandezthomas@example.com,(975)505-3360,676232796117,2024-10-07 +City Hotel,0,201,2017,January,3,13,2,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,22.0,179.0,0,Transient-Party,81.56,0,1,Check-Out,Cynthia Rowe,joneslaura@example.com,(862)798-6699,4233822489016836995,2024-11-25 +City Hotel,1,387,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,41,Transient-Party,80.66,0,0,Canceled,Patrick Thornton,jamesjohns@example.com,+1-780-885-4726x624,630478472099,2024-07-24 +City Hotel,1,44,2017,March,13,26,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Canceled,Jasmin Alvarado,dorothyallen@example.net,680.322.1169x1669,6502652896232426,2024-07-09 +City Hotel,1,96,2017,June,23,4,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.06,0,1,Canceled,Veronica Simpson,brookeodonnell@example.org,5755884337,342105902776446,2025-11-15 +City Hotel,0,0,2017,November,47,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,14.0,331.0,0,Transient-Party,63.69,1,0,Check-Out,Jonathan Lawrence,grosschristopher@example.net,(920)620-0378,4844220144170343,2025-02-12 +Resort Hotel,0,39,2017,December,51,20,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,75.0,0,Transient,48.92,0,1,Check-Out,Shelly Alexander,pramirez@example.org,+1-713-384-8280x7364,503854489435,2024-11-09 +City Hotel,0,1,2017,November,47,24,0,2,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.03,0,2,Check-Out,Joyce Bowen,pattonjohnathan@example.org,743-398-6766,3540376929171705,2024-10-25 +City Hotel,0,0,2017,October,42,19,0,1,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,68.13,0,0,Check-Out,Matthew Moore,umartin@example.net,+1-844-485-5220,675966582776,2024-10-25 +City Hotel,0,17,2017,November,44,3,0,2,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.31,0,0,Canceled,Wayne Morgan,jason37@example.com,001-704-277-2661x78640,38734593325186,2025-09-05 +Resort Hotel,0,78,2017,March,13,26,0,2,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,75.59,0,0,Check-Out,Marie Christian,kruegercrystal@example.org,(377)315-7578x954,213112869033866,2025-03-17 +City Hotel,0,2,2017,September,38,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,45.0,0,Transient-Party,60.34,0,0,Check-Out,Shannon James,nicholas29@example.com,+1-487-440-6019x3635,6011401977974967,2026-03-10 +City Hotel,0,114,2017,October,40,1,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,94.99,0,1,Check-Out,Nathan Malone,rebecca47@example.org,452.855.1387,2720986698388670,2025-02-17 +City Hotel,1,108,2017,December,52,25,0,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,66.06,0,0,Canceled,Amanda Jones,ericcoleman@example.com,(364)557-3584x5301,38790061234359,2026-03-17 +City Hotel,0,3,2017,January,4,25,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,9.0,179.0,0,Transient,42.26,0,0,Check-Out,Tammie Bright,walterwright@example.org,(533)816-7947x70768,180047179144947,2025-06-02 +City Hotel,0,267,2017,February,7,15,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.7,0,1,Check-Out,Jessica Garcia,kevinyoung@example.net,001-766-984-6519x2221,344889802924648,2025-01-30 +Resort Hotel,0,54,2017,December,52,27,3,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,91.37,0,1,Check-Out,Shelia Wallace,rwilliams@example.net,382-386-2899x3582,3520928436840315,2024-04-23 +City Hotel,0,76,2017,April,14,3,2,3,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,127.18,0,2,Check-Out,Stephanie Williams,henryhernandez@example.com,972.692.3485x17118,3578667964063301,2026-02-02 +City Hotel,1,172,2017,July,30,23,0,1,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,180.23,0,0,Canceled,Elaine Brooks,nicholas75@example.net,364.842.0865,4497834334280,2025-04-23 +City Hotel,1,48,2017,December,49,3,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,B,0,No Deposit,10.0,179.0,0,Transient-Party,115.81,0,1,No-Show,Joseph Knight,kevinnelson@example.org,495.770.8010x596,2709219359625346,2024-07-14 +City Hotel,0,12,2017,May,21,25,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.58,0,0,Check-Out,Carolyn Miller,nrobinson@example.net,+1-300-264-7150x544,2706944351739836,2025-06-30 +City Hotel,0,47,2017,October,40,4,0,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.79,0,1,Check-Out,Lisa Allen,simonzachary@example.org,+1-779-903-5421x77165,4814923033720393,2026-01-29 +City Hotel,1,149,2017,December,52,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,121.0,179.0,0,Transient,89.93,0,1,Canceled,Briana Murray,keithkent@example.net,001-660-448-6264x211,213195977301838,2025-04-04 +City Hotel,1,388,2017,August,31,4,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,202.7,0,0,Canceled,David Smith,joshuaburnett@example.org,(959)541-2304,30427026426238,2024-10-21 +City Hotel,0,152,2017,March,10,5,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.09,0,1,Check-Out,Stephanie Byrd,wzavala@example.net,460-236-7654x534,4915546060646,2024-12-13 +City Hotel,0,14,2017,January,5,29,0,1,1,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,128.95,0,1,Check-Out,Jeremy Reed,iwood@example.net,001-302-271-4665x75881,579132517957,2026-03-08 +City Hotel,0,69,2017,September,37,9,0,5,2,0.0,0,BB,FRA,Online TA,GDS,0,0,0,D,D,0,No Deposit,185.0,179.0,0,Transient,143.23,0,2,Canceled,Margaret Coleman,edwardhodges@example.org,571.292.4426,3513290007299705,2024-12-03 +Resort Hotel,0,27,2017,November,45,6,1,5,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,312.0,331.0,0,Transient,46.6,0,0,Check-Out,Ryan Gonzalez,ntate@example.net,370-865-6711,4269564732458408765,2025-06-15 +City Hotel,1,100,2017,November,46,13,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,86.19,0,0,Canceled,John Young,rothlori@example.net,970.236.0621x91767,3535745321861328,2024-06-01 +City Hotel,0,17,2017,February,5,2,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,61.04,0,1,Check-Out,Laura Haney,cherylrussell@example.com,6533134494,3591893293399918,2025-03-30 +Resort Hotel,0,45,2017,October,42,20,1,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,123.86,1,1,Check-Out,William Barrett,maria45@example.com,001-562-928-8165x96054,4051493122224531512,2025-06-06 +Resort Hotel,0,220,2017,October,40,5,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,228.0,179.0,0,Transient,153.3,0,0,Check-Out,Keith Jennings,kayla94@example.com,704.555.0964x2326,675940594970,2025-09-13 +City Hotel,0,3,2017,April,14,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,B,0,No Deposit,14.0,45.0,0,Transient,114.38,0,0,Check-Out,Amber Obrien,jessica29@example.net,388-875-8534x1524,379110452816820,2025-11-23 +Resort Hotel,0,15,2017,June,27,30,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,74.41,1,1,Check-Out,Tanner Mitchell DDS,fmorse@example.org,4412884838,4340202510085619,2025-12-06 +City Hotel,0,12,2017,January,2,3,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,46.63,0,0,Check-Out,Heather Fields,khart@example.org,001-461-376-0533x5082,213175620551567,2025-02-08 +City Hotel,1,185,2017,September,37,13,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,66,Transient,129.24,0,0,Canceled,Megan Le,theresaking@example.org,(645)429-6544,6011720939526163,2025-11-29 +Resort Hotel,0,35,2017,March,13,25,1,6,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,G,G,0,No Deposit,333.0,179.0,0,Transient,88.31,0,3,Check-Out,Sara Fuller,toddgomez@example.net,7563706246,581437216103,2024-11-09 +City Hotel,1,135,2017,November,47,22,0,6,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,134.17,0,0,Canceled,Maria Parker,olittle@example.com,367-638-8568x679,378674427264177,2025-01-17 +City Hotel,1,102,2017,March,12,24,1,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,D,A,0,No Deposit,14.0,183.0,0,Transient,113.16,0,1,Canceled,Kevin Oconnor,christopher93@example.org,+1-663-456-2300,4152467466690735596,2025-06-22 +City Hotel,1,20,2017,April,17,25,1,2,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.01,0,0,Canceled,Edward Burgess,hancocktheresa@example.com,751.920.6274,6011247602047046,2024-06-06 +Resort Hotel,0,0,2017,January,4,27,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,51.39,1,0,Check-Out,Carlos Ryan,danielheath@example.com,520.827.9113x42631,6541017920693386,2025-01-31 +Resort Hotel,1,177,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,F,0,No Deposit,238.0,179.0,0,Contract,43.87,0,0,Canceled,Kiara Mcintyre,michael69@example.com,(908)428-6054,4613759150879,2026-01-19 +Resort Hotel,0,10,2017,September,37,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,0.88,0,1,Check-Out,Dawn Summers,clozano@example.org,(427)977-2634,6011782000090818,2024-04-26 +City Hotel,1,39,2017,December,50,9,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,169.03,0,2,Check-Out,Dr. Paul Morgan,tim71@example.com,664.804.9695x9571,4810070778304324,2026-02-22 +Resort Hotel,1,18,2017,March,12,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,252.0,179.0,0,Transient-Party,88.37,1,0,Canceled,Victor Taylor,pearsonjeffrey@example.org,984.283.0975,4279557670746218,2024-05-08 +Resort Hotel,0,92,2017,February,6,8,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,199.02,0,1,Check-Out,Shannon Ramsey,jessefoster@example.net,(631)478-9783x56392,3571784927869034,2024-10-14 +Resort Hotel,0,328,2017,September,38,23,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,B,0,No Deposit,83.0,179.0,75,Transient-Party,106.22,0,0,Check-Out,Tracy Ballard,matthew13@example.com,001-713-887-4116,4701151609787879,2025-05-15 +City Hotel,0,86,2017,March,12,18,2,1,2,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,129.0,179.0,0,Transient-Party,63.97,0,1,Check-Out,Richard Smith,daniel03@example.net,3895051049,180096117538165,2025-01-14 +City Hotel,1,111,2017,March,13,29,0,4,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.27,0,0,Canceled,Jordan Chambers,christopher37@example.org,726-676-1297,3549311247495446,2025-04-21 +City Hotel,0,1,2017,May,21,23,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,18.0,179.0,0,Transient,114.38,1,0,Check-Out,Lauren Carson,andrewstanley@example.net,762.603.6356,213130334174024,2024-06-24 +City Hotel,0,249,2017,July,28,14,1,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,62.82,0,0,Check-Out,Ashley Hall,davidmiller@example.com,001-422-849-0509x600,5325485717588214,2025-11-19 +City Hotel,1,135,2017,November,47,22,0,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,53.03,0,2,Check-Out,Stephen Hoffman,tamarafernandez@example.org,+1-351-521-2308x0196,3545705923395735,2024-12-27 +City Hotel,0,29,2017,December,52,23,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,85.51,0,1,Check-Out,Connie Brown,crystalhampton@example.org,001-466-952-2837x969,2263925376463002,2025-08-13 +City Hotel,0,50,2017,September,39,24,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,113.14,0,1,Check-Out,Susan Turner,oryan@example.net,4298711687,6579709202862839,2026-01-12 +Resort Hotel,0,199,2017,September,36,2,2,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,228.0,179.0,0,Transient-Party,94.68,0,0,Check-Out,Charles Shah,afisher@example.com,3339287462,3557014268443043,2024-10-09 +City Hotel,0,3,2017,May,20,13,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,136.69,0,0,Check-Out,Johnathan Davis,weberteresa@example.com,+1-927-814-0168x01380,180067055545710,2024-05-23 +City Hotel,0,30,2017,March,12,21,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,78.12,0,1,Check-Out,Brandy Chavez,mlang@example.net,501.467.1007x0954,4679627537003859,2024-06-21 +City Hotel,0,3,2017,July,28,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,94.16,0,0,Check-Out,Natalie Bautista,bedwards@example.net,+1-759-941-2270,180065532919268,2026-03-19 +City Hotel,0,11,2017,February,6,4,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.81,0,0,Check-Out,Patrick Moore,johnstoncolleen@example.com,+1-573-646-5554,4930668745983180,2026-01-31 +Resort Hotel,0,1,2017,March,13,26,0,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,42.19,0,0,Check-Out,Brett Burns,millerandrew@example.net,551-857-9438,213168110030325,2026-01-02 +City Hotel,0,95,2017,November,48,27,2,4,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.13,0,0,Check-Out,Trevor Johnson,bonnie38@example.org,565-424-8703x9542,6011792225864491,2025-07-19 +Resort Hotel,0,267,2017,May,20,15,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Jeremy Sampson,alexis93@example.org,(217)921-8396,372879216375466,2025-04-02 +City Hotel,1,100,2017,August,32,7,2,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,123.33,0,0,Canceled,Ariana Jennings,iwood@example.net,001-683-568-3348x5000,5170133507974170,2024-12-22 +Resort Hotel,0,20,2017,November,46,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,90.86,0,2,Check-Out,Vanessa Howard,gobrien@example.net,+1-350-255-9364x5702,3560653559709763,2024-11-20 +Resort Hotel,0,16,2017,October,41,9,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,82.0,179.0,0,Transient,73.44,0,0,Check-Out,Colton Martinez,rlee@example.net,001-258-220-3062,4164215711987,2025-03-18 +City Hotel,0,8,2017,February,9,28,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.65,0,1,Check-Out,Jordan Bates,brianhowe@example.org,+1-825-273-2912x5629,4672803968140,2025-01-29 +City Hotel,1,84,2017,May,22,27,1,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,109.2,0,1,Canceled,Linda Smith,abbottmary@example.org,386-803-2817x09429,180016325452561,2026-01-19 +City Hotel,1,349,2017,June,25,15,0,2,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,107.29,0,0,Canceled,Dana Martinez,georgeburke@example.com,001-294-549-9516x499,4525807400403214,2024-09-28 +Resort Hotel,0,232,2017,July,29,17,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,108.64,0,0,Check-Out,Andrea Hubbard,petersendoris@example.com,(972)588-4406x191,3592846680139783,2025-04-27 +Resort Hotel,0,52,2017,October,43,23,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,133.86,1,3,Check-Out,Daniel Kane,rparker@example.org,749.975.5064x6486,676119552831,2025-11-13 +Resort Hotel,0,1,2017,April,14,6,2,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,101.6,1,0,Check-Out,Charles Lester,morganvirginia@example.com,734.265.5287x10434,6011288317465891,2024-08-10 +City Hotel,0,55,2017,December,49,5,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,73.0,0,Transient,94.42,0,1,Check-Out,Scott Thomas,maria46@example.com,+1-202-404-5961x5176,373735167749332,2026-01-14 +City Hotel,0,3,2017,January,4,25,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,103.25,0,0,Check-Out,David Thompson,jamesperry@example.com,+1-496-624-3517,3513126335016066,2025-04-20 +City Hotel,1,196,2017,May,19,8,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.5,0,0,Canceled,Allison Smith,bhoffman@example.net,(272)821-5606x55553,4588346624307,2025-09-30 +Resort Hotel,1,52,2017,July,29,15,2,10,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,184.33,1,0,Canceled,Cynthia Morris,williamsalexis@example.com,001-848-915-9665x4638,2278598844371785,2024-10-25 +Resort Hotel,0,148,2017,March,10,9,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,37.38,0,0,Check-Out,Anthony Harmon,lsmith@example.org,432.838.4093x53635,2712018339575075,2025-03-04 +City Hotel,0,42,2017,November,44,1,2,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,72.0,0,Transient,80.46,0,0,Check-Out,Nichole Alvarez,awilliams@example.net,927.596.5895x465,4563915538550401,2024-07-13 +City Hotel,1,34,2017,December,49,8,1,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,41,Transient-Party,139.39,0,1,Check-Out,Kayla Rodriguez,michele39@example.org,001-908-389-5137x27486,584898044055,2025-03-25 +City Hotel,1,21,2017,April,15,8,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.09,0,0,Canceled,Theresa Williams,heatheradams@example.com,462-633-4740x96120,3502254297646499,2024-12-18 +Resort Hotel,0,2,2017,January,2,13,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,0,No Deposit,325.0,331.0,0,Transient,56.13,0,0,Check-Out,Sharon Boyd,davidblackwell@example.org,(257)226-7120x6154,3552639128004992,2024-06-30 +Resort Hotel,0,41,2017,January,3,19,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,48.25,0,1,Check-Out,Victor Brown,jason88@example.net,001-557-452-8319x8784,3599328082630944,2026-02-10 +Resort Hotel,1,3,2017,August,31,3,0,1,1,0.0,0,HB,PRT,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,220.57,0,2,Canceled,James Parks,craigmartin@example.net,630.513.5974,4376014836043,2026-02-24 +City Hotel,1,133,2017,January,5,27,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,111.5,0,2,Canceled,Theodore Jones Jr.,collinsnatalie@example.com,513.317.7271x8452,4947587668595971782,2024-12-25 +Resort Hotel,0,15,2017,April,14,5,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,1,No Deposit,243.0,179.0,0,Transient,50.93,0,1,Check-Out,Ana Hill,wesleywhitaker@example.org,9233678193,3531031973549311,2025-11-18 +City Hotel,0,59,2017,August,34,22,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.75,0,0,Check-Out,Kimberly Nguyen,joanmartinez@example.org,(480)894-0572x188,3592444297044222,2025-05-19 +City Hotel,1,414,2017,July,29,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.76,0,0,Canceled,Kerry Chavez DDS,smithtara@example.com,7325724875,3544446950776544,2025-02-15 +City Hotel,0,67,2017,September,39,26,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,218.0,0,Transient-Party,109.64,0,2,Check-Out,Michael Farrell,julierandall@example.net,001-249-259-1366x95319,2693252506941991,2024-04-12 +City Hotel,1,11,2017,March,11,14,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,100.62,0,2,Canceled,Patricia Le,jenniferjackson@example.org,767-582-7311x20150,180029738137802,2024-12-04 +Resort Hotel,0,10,2017,February,9,24,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,75.43,1,0,Check-Out,Jesse Perez,williamstammy@example.org,+1-267-346-0019,3569894128456350,2024-08-02 +Resort Hotel,1,100,2017,March,12,22,2,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,Non Refund,364.0500000000011,179.0,0,Transient,42.25,0,0,Canceled,Jesse Perry,melendezteresa@example.net,(850)974-6807x48829,4025644041050715,2024-07-30 +City Hotel,0,171,2017,December,2,31,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,140.85,0,1,Check-Out,Jeffery Ortega,tmorton@example.net,001-882-700-9938x2567,4632891315984,2025-05-08 +City Hotel,1,58,2017,June,23,4,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,152.43,0,2,Canceled,Christian Leblanc,srhodes@example.net,+1-298-605-8546x56492,630479070637,2026-01-01 +City Hotel,1,15,2017,April,16,19,1,1,1,0.0,0,BB,IRL,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.46,0,1,Canceled,Ronald Davis,hollyperkins@example.net,001-775-739-2423x777,3548506378022171,2024-06-20 +City Hotel,1,1,2017,February,7,13,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,71.0,0,Transient,118.66,0,0,No-Show,Parker Cain,zbass@example.com,759-476-9398x642,6011934500693035,2024-06-03 +City Hotel,1,414,2017,August,34,21,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.0,0,2,Canceled,Laurie Hoffman,curtisjohnson@example.net,588-810-2428,676199726057,2026-01-11 +Resort Hotel,1,98,2017,April,15,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,76.86,0,0,Canceled,Bryan Gomez,matthew19@example.net,330-994-4046,3597585247311809,2025-11-16 +Resort Hotel,0,40,2017,April,15,10,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,133.27,0,1,Check-Out,Nicole Parrish,donald36@example.com,963.277.3975,3558052841556880,2024-10-15 +City Hotel,1,142,2017,June,27,30,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,131.91,0,0,Canceled,Tracy Burke,frankmiller@example.com,303-905-0627x6600,561413143166,2025-08-20 +Resort Hotel,1,166,2017,May,21,23,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,125.33,0,0,Canceled,Kenneth Lewis,dawnreed@example.com,001-588-697-6651x2409,4960501704625968,2025-06-24 +City Hotel,1,265,2017,June,26,23,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,176.75,0,1,Canceled,Courtney Rodriguez,mshepherd@example.org,001-422-313-7148x52817,4755299382098,2024-12-13 +City Hotel,1,115,2017,November,45,3,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,181.79,0,1,Canceled,Holly Farmer,theresaellis@example.com,(705)608-3302,502070743120,2024-05-31 +Resort Hotel,0,150,2017,July,30,24,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,48.16,0,2,Check-Out,Renee Bruce,perkinsjoshua@example.com,+1-663-655-7307,2254857403272737,2024-07-17 +Resort Hotel,0,100,2017,March,11,9,2,5,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,46.33,0,1,Check-Out,Sabrina Austin,xavier17@example.net,916-764-8048,4202814687715474969,2025-01-17 +City Hotel,0,96,2017,June,26,28,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,104.55,0,2,Check-Out,Allison Hickman,julie36@example.org,(588)611-0962x27336,4941278297500718,2024-05-30 +City Hotel,0,48,2017,June,26,26,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.92,0,1,Check-Out,Debra White,sanderssamuel@example.net,837.411.4519x294,4673348007875827,2024-08-20 +Resort Hotel,1,23,2017,June,23,4,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,D,I,0,No Deposit,236.0,179.0,0,Transient,167.87,0,1,Canceled,Ellen Morgan,yshah@example.net,637-783-6907,370688103569699,2024-04-24 +Resort Hotel,0,60,2017,April,17,25,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,85.56,0,1,Check-Out,Sergio Knight,bwalker@example.com,001-670-892-6620x632,6011516859198342,2025-11-09 +City Hotel,0,163,2017,October,42,20,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,0,Transient-Party,109.67,0,0,Check-Out,Charles Schultz,stevenhernandez@example.net,841.457.5177,3553460065607609,2024-10-14 +Resort Hotel,0,113,2017,October,41,10,1,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,126.43,1,1,Check-Out,Paul Lewis,timothy84@example.net,+1-433-606-7271x4077,676347470491,2025-09-20 +City Hotel,0,40,2017,August,33,12,0,4,2,0.0,0,HB,CN,Online TA,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,237.4,0,2,Check-Out,Glen Wood,richardgreene@example.com,(584)208-4945x51675,4412195494472386,2026-01-29 +City Hotel,1,107,2017,June,26,26,1,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,144.41,0,0,No-Show,Paula Bradley,garciajason@example.net,+1-544-339-2854x28653,30407643171094,2024-06-24 +City Hotel,1,382,2017,October,40,7,2,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,100.66,0,0,No-Show,Anthony Moore,smithashley@example.com,001-582-279-5475x6176,4358688701413900,2024-11-25 +City Hotel,0,148,2017,July,29,15,2,5,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,216.13,0,3,Check-Out,Megan Nelson,glenchambers@example.org,+1-858-278-1031x98363,2250619895608099,2026-01-11 +City Hotel,0,33,2017,September,37,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,76.43,1,0,Check-Out,Karla Ramos,alyssa23@example.com,001-728-904-8458x339,630401342302,2024-06-24 +Resort Hotel,1,161,2017,December,51,22,0,2,2,0.0,0,FB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.62,0,0,Canceled,Paul Wilson,dianeperez@example.com,(993)674-9596x0399,6555087882832473,2025-03-06 +City Hotel,0,46,2017,March,12,24,2,5,3,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,165.28,0,2,Check-Out,Douglas Gregory,douglasturner@example.org,+1-976-492-0963x4742,3587945163184691,2025-09-25 +Resort Hotel,0,0,2017,March,13,29,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,244.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Mr. Andrew Foster,greenjoshua@example.org,2115536101,676142360582,2024-09-23 +Resort Hotel,1,44,2017,January,4,23,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,81.58,0,1,Canceled,Aimee Turner,patriciacox@example.com,001-756-628-6771,4884997001356665287,2024-12-27 +Resort Hotel,0,0,2017,October,40,5,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,39.0,0,0,Check-Out,Chad Scott,kari76@example.org,+1-512-386-5673x853,213185505549594,2025-06-25 +Resort Hotel,1,49,2017,June,24,8,0,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,110.34,0,1,Canceled,Adam Burgess,orodriguez@example.org,577.622.6303,30202876608114,2024-05-31 +City Hotel,0,49,2017,February,9,24,2,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,115.09,0,0,Check-Out,James Padilla,tonya74@example.org,7734735838,213132808598571,2025-10-25 +Resort Hotel,0,105,2017,July,28,10,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,173.0,179.0,0,Transient,107.84,0,0,Canceled,Sandra Drake,gerald08@example.com,001-440-762-4514x806,6011859800798970,2024-09-19 +City Hotel,0,0,2017,December,52,24,1,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,16.0,258.0,0,Transient,2.18,1,0,Check-Out,Scott Williams,wandaherrera@example.net,(724)586-2359x390,30347374506961,2026-02-01 +Resort Hotel,0,0,2017,October,43,26,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,159.71,1,0,Check-Out,Thomas Atkins,helenbradley@example.org,971-340-0964x74341,3548541177117732,2024-12-23 +City Hotel,1,21,2017,April,15,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.74,0,0,Canceled,Laura Mckinney,grahamrobert@example.com,777.832.5135,4988374177040978112,2025-03-21 +City Hotel,1,164,2017,July,29,19,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,219.36,0,1,Canceled,Brian Smith,aarroyo@example.org,765-267-7938x762,343217327193708,2025-07-31 +City Hotel,0,33,2017,May,19,9,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,244.0,179.0,0,Transient,160.95,0,3,Check-Out,Robert Montgomery,uortega@example.net,206.413.7842x7629,180023366141244,2025-09-18 +City Hotel,0,0,2017,September,37,13,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,1,A,C,1,No Deposit,14.0,45.0,0,Transient,50.52,0,0,Check-Out,Tamara Davis,jcarter@example.com,972.735.9967,4157729722965560,2024-11-02 +City Hotel,0,8,2017,June,26,25,0,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,108.67,0,1,Check-Out,Dana Chapman,sotocurtis@example.com,343.263.9429,3505582712476903,2024-12-10 +Resort Hotel,0,249,2017,June,26,28,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,110.8,0,1,Check-Out,Jennifer Collins,rwilson@example.com,(669)290-0926x0053,348619397059179,2025-03-27 +City Hotel,0,96,2017,April,17,23,1,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,0,No Deposit,14.0,179.0,0,Transient,177.41,0,0,Check-Out,Gary Jackson,jmorse@example.com,(902)309-4723x11662,4773200074954168,2025-12-07 +City Hotel,1,281,2017,August,32,6,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,2,No-Show,Ashley Hicks,tgray@example.com,(509)491-8212x94616,30453441816217,2024-05-06 +Resort Hotel,1,19,2017,August,31,2,0,4,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,Hannah Luna,samantharichardson@example.net,774-905-0502,4229634713110,2024-05-31 +City Hotel,0,173,2017,August,33,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient-Party,63.64,0,0,Check-Out,Robin Young,whitestephanie@example.com,448.446.1599x7340,4962350050297,2025-06-26 +City Hotel,0,58,2017,October,40,2,2,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,173.79,0,0,Check-Out,Craig Morrison,awolfe@example.net,001-930-638-9227x32138,180014327300318,2024-11-20 +City Hotel,0,11,2017,September,36,9,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,191.62,0,0,Check-Out,Mary Thompson,victoria82@example.com,001-430-765-5921,4100274428342705,2024-11-30 +Resort Hotel,0,39,2017,December,50,9,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,50.2,0,0,Check-Out,Kathleen Webster,linda76@example.org,626-574-8217,4673281752707657,2025-07-16 +City Hotel,0,37,2017,October,43,22,1,4,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.06,0,0,Check-Out,Joann Glass,kenneth78@example.org,+1-637-217-6471,4266731567290474,2024-08-20 +City Hotel,1,20,2017,June,25,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,Non Refund,16.0,179.0,0,Transient,238.87,0,0,Canceled,Madison Weber,williamsjames@example.net,467-619-7354x11005,30237486038096,2025-05-09 +City Hotel,0,1,2017,March,11,9,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,104.28,1,1,Check-Out,Lori Hernandez,xhunt@example.org,367.854.7985,3509291859962438,2024-09-27 +City Hotel,0,10,2017,November,44,2,2,4,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,96.88,0,2,Check-Out,Jeremy Turner,youngdavid@example.com,(258)231-1747,4565494081449,2024-10-20 +City Hotel,1,121,2017,July,30,25,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Contract,62.35,0,0,Canceled,Anthony Romero,nataliewilliams@example.com,(365)652-3090,4825929300396,2025-05-12 +City Hotel,1,97,2017,March,13,27,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,75,Transient,77.97,0,1,Canceled,Jesse Brown,oadkins@example.com,373.877.9881x557,4427544020642708822,2024-11-03 +City Hotel,0,15,2017,September,36,6,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,83.95,0,0,Check-Out,Angela Lin,carlvasquez@example.org,6079147956,6557768507732374,2025-02-13 +Resort Hotel,0,254,2017,September,38,19,2,5,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,81.08,0,0,Check-Out,Lisa Hunter,lisa72@example.com,7793117057,4824567513071,2025-06-26 +City Hotel,1,39,2017,October,43,22,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,25.0,179.0,0,Transient,162.5,0,0,Canceled,Julian Conner,jgibson@example.org,+1-706-263-8902,2720087595327745,2025-01-01 +Resort Hotel,1,140,2017,October,42,19,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,10.0,223.0,0,Transient-Party,47.35,0,0,No-Show,Joanna Pacheco,romanbrandon@example.net,+1-963-491-7555x282,341596067144993,2025-12-24 +City Hotel,0,36,2017,September,36,2,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,167.33,0,1,Check-Out,Erica Alvarez,leejoseph@example.org,+1-856-562-3905x2328,30058172694814,2025-12-08 +City Hotel,0,166,2017,March,11,12,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient,201.1,0,1,Check-Out,Antonio Garcia,knapptodd@example.net,001-202-979-6151x152,30322000528788,2025-10-07 +City Hotel,0,34,2017,January,4,23,1,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,126.37,0,1,Check-Out,Gwendolyn Klein,bowendana@example.org,(580)266-5425x319,3506998474672068,2024-05-26 +Resort Hotel,0,358,2017,August,34,23,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,91.0,179.0,0,Transient-Party,74.27,0,0,Check-Out,Carrie Wright,larsennicole@example.org,884-608-5041x73587,4775437525473,2025-07-18 +City Hotel,0,87,2017,March,13,26,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.99,0,1,Check-Out,Jeffrey Mills,wayneparker@example.net,(294)585-2591x445,3591256812768841,2025-06-13 +City Hotel,0,34,2017,December,50,15,1,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.19,0,1,Check-Out,Jake Campbell,mitchell06@example.org,+1-797-758-5307x5035,3586436839429521,2025-06-12 +City Hotel,1,157,2017,April,17,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,107.44,0,0,Canceled,George Harper,hmartinez@example.org,402-988-9837,4021362333637,2025-02-21 +City Hotel,1,414,2017,May,20,12,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,222.0,0,Transient-Party,63.96,0,1,Canceled,Maria Jones,mgonzalez@example.net,773-725-2342x97817,2249934100057766,2025-02-04 +Resort Hotel,1,31,2017,August,34,23,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,242.0,179.0,0,Transient,252.0,0,3,Canceled,Michael Mitchell,justin80@example.com,3462123103,30101931011662,2026-02-08 +City Hotel,1,115,2017,June,26,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.01,0,1,Canceled,Mary Escobar,ucole@example.com,+1-300-264-8330x78550,6011695607840486,2025-09-01 +City Hotel,0,2,2017,October,43,21,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Group,2.75,0,3,Check-Out,Felicia Aguilar,janice62@example.net,001-543-558-8184x493,4005532643264,2024-08-29 +Resort Hotel,0,1,2017,December,48,1,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,216.73,1,1,Check-Out,Gregory Ponce,ortegatheresa@example.net,8198525083,4591104121751298,2024-09-14 +City Hotel,1,145,2017,March,13,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,E,E,0,No Deposit,9.0,179.0,0,Transient,74.48,0,1,No-Show,Jenna Larson,zmorris@example.com,+1-925-873-3645x8218,4253080603957240,2024-04-22 +City Hotel,0,1,2017,June,25,16,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,20.0,179.0,0,Transient,181.35,0,0,Check-Out,Emily Bennett,andersonrichard@example.com,578-234-4093x83522,676197659490,2025-07-14 +City Hotel,0,38,2017,March,11,17,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,131.3,0,2,Check-Out,Robin Santiago,erandall@example.org,3715238998,4865701857939499,2024-10-20 +City Hotel,0,158,2017,July,29,16,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.37,0,0,Check-Out,Nancy Jennings,frank14@example.org,001-694-968-8859x5690,4284354436247332,2025-06-10 +City Hotel,0,13,2017,May,21,25,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.61,0,2,Check-Out,Maria Henderson,drew87@example.com,001-328-212-5200,3577238910832339,2025-01-01 +City Hotel,0,12,2017,December,49,5,1,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,142.92,0,1,Check-Out,Jack White,xsalinas@example.org,001-284-954-3541x2895,6011552556580532,2025-07-14 +Resort Hotel,0,15,2017,January,2,2,4,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,0.65,0,1,Check-Out,Travis Tucker,bradleymatthew@example.com,(369)641-1605x06199,180064639846581,2025-11-10 +City Hotel,0,94,2017,December,50,9,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,E,E,0,No Deposit,28.0,179.0,0,Transient,186.83,0,0,Check-Out,Chad Jones,russellcarla@example.com,884-379-6198,2705747515906584,2024-06-05 +City Hotel,0,99,2017,June,23,4,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,9.0,179.0,0,Transient-Party,153.76,0,1,Check-Out,Ashley Wise,qross@example.org,543-401-7762x697,4964951673998,2025-09-20 +City Hotel,0,41,2017,July,30,20,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,125.35,0,0,Check-Out,Sophia Johnson,lopezpaige@example.com,(592)999-3012,639056105500,2024-04-16 +Resort Hotel,0,181,2017,September,36,5,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,262.0,179.0,0,Transient-Party,96.52,0,0,Check-Out,Ralph Anderson,taradelgado@example.com,8423974539,4674348376573,2025-11-27 +Resort Hotel,1,154,2017,February,9,25,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient,45.43,0,1,No-Show,Christopher Guerra,stuarteric@example.org,(911)436-4100x80299,4888464323983,2024-06-09 +City Hotel,0,31,2017,November,47,19,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,89.76,0,0,Check-Out,Rhonda Martin,drowland@example.org,379-708-9111x6223,377501466174721,2025-03-28 +Resort Hotel,0,14,2017,March,12,20,2,4,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,13.0,179.0,0,Transient-Party,86.5,1,3,Check-Out,Jason Rhodes,sotoantonio@example.org,511-230-3830,3521584553075943,2025-02-21 +City Hotel,0,15,2017,February,5,1,0,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,214.42,0,0,Check-Out,Jeremy Mitchell,zyoung@example.com,+1-547-332-1664,676318262398,2025-01-04 +Resort Hotel,0,13,2017,October,44,29,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,61.78,0,0,Check-Out,Joann Ferguson,allenryan@example.net,(344)582-1278x85414,3550745666998172,2024-08-24 +City Hotel,1,414,2017,June,25,18,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,42,Transient,86.29,0,0,Canceled,Robert Harrison,cgraham@example.net,001-775-745-3700x37227,588123951786,2024-09-01 +City Hotel,0,96,2017,March,13,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,111.93,0,2,Check-Out,Holly Valentine,adamspatrick@example.com,673.340.2490,36276808943975,2025-06-13 +City Hotel,0,91,2017,August,32,9,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,211.36,0,0,Check-Out,Mrs. Diane Reyes,williamsmatthew@example.org,+1-482-322-1306x0396,502014064336,2024-11-24 +City Hotel,0,0,2017,January,4,25,1,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.17,1,1,Check-Out,Tracy Montoya,silvajoshua@example.org,3212900014,4844691096839541,2024-08-27 +Resort Hotel,1,57,2017,April,15,12,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,313.0,179.0,0,Transient,79.02,0,1,Canceled,Brenda Wright,joseph91@example.net,(437)220-5967x192,3598888631944980,2025-08-18 +City Hotel,1,103,2017,December,52,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,85.15,0,1,No-Show,Shelly Spencer,nmiller@example.org,+1-853-930-1528x9908,4315402465992135928,2025-04-30 +City Hotel,0,15,2017,October,43,23,2,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,D,0,No Deposit,36.0,179.0,0,Transient,218.34,0,0,Check-Out,Ryan Rosales,kristygonzales@example.net,+1-443-573-5460,4567249134563055,2024-05-07 +Resort Hotel,1,124,2017,March,12,18,1,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,89.4,0,1,Canceled,Phillip Nelson,robertthompson@example.com,453.338.3874,4291994950428704840,2025-12-03 +Resort Hotel,1,9,2017,April,18,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,236.0,179.0,0,Transient,56.45,1,2,Canceled,Brittany Kim,samantha74@example.org,936-674-8658x7485,6011207185522963,2026-02-17 +Resort Hotel,0,55,2017,December,49,6,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,45.52,0,3,Check-Out,Courtney Hayes,jennifer08@example.net,(925)579-9976x10904,2720861724855523,2024-04-07 +City Hotel,0,16,2017,May,19,5,1,1,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,245.16,0,1,Check-Out,Alexander Brown,hamiltonangel@example.com,+1-303-647-8309x11218,377566417615775,2025-06-04 +Resort Hotel,0,3,2017,April,17,21,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,330.0,179.0,0,Transient,46.79,0,0,Check-Out,Cynthia Vang,josephperkins@example.org,577.229.1632,3519549127269102,2024-09-07 +City Hotel,1,87,2017,July,27,2,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,A,1,No Deposit,38.0,179.0,75,Transient-Party,136.68,0,0,No-Show,Alfred Galvan,fwiley@example.com,3034188907,3594837361428296,2024-12-21 +City Hotel,0,3,2017,April,16,19,0,2,1,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,16.0,179.0,0,Transient,150.59,0,0,Check-Out,Marie Moody,davidhickman@example.org,528-576-0847x22329,6591063438218794,2024-06-25 +Resort Hotel,0,98,2017,June,26,30,0,7,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Group,163.94,0,0,Check-Out,Dustin Gallegos,nicholascarter@example.org,882.565.3632,344765635967881,2026-02-02 +City Hotel,0,19,2017,March,12,18,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,133.34,0,1,Check-Out,Brenda Thornton,adamsjeffrey@example.org,+1-538-275-2376x6614,6011861749079686,2024-05-26 +City Hotel,0,14,2017,July,27,4,1,2,2,2.0,0,SC,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,237.39,0,1,Check-Out,Aaron Miller,rscott@example.com,(667)308-1406,180047273559404,2024-07-26 +Resort Hotel,0,3,2017,January,2,3,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,H,0,No Deposit,240.0,179.0,0,Transient,49.91,0,1,Check-Out,Ruben Dunn,sullivanbrenda@example.com,(216)352-5784,4324448793080492,2024-10-08 +Resort Hotel,0,153,2017,March,11,14,2,4,1,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,150.0,179.0,0,Transient-Party,111.39,0,0,Check-Out,Kelsey Rodriguez,ylozano@example.com,8729096056,4637362627056523506,2024-12-06 +Resort Hotel,0,28,2017,May,18,2,1,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,82.49,1,1,Check-Out,Eric Williams,cynthiaortiz@example.org,+1-482-552-4185x2369,6517653243563151,2025-12-11 +City Hotel,0,58,2017,July,28,9,2,2,3,1.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient-Party,61.46,0,0,Check-Out,Riley Bryant,tiffany91@example.com,+1-538-920-3685,30181324300195,2024-04-18 +City Hotel,0,3,2017,August,34,25,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient-Party,213.62,0,1,Check-Out,Taylor Carlson,powens@example.org,+1-519-204-6584x348,3572016452856956,2025-11-16 +Resort Hotel,0,19,2017,November,45,5,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,331.0,0,Transient-Party,63.88,0,0,Check-Out,Jose Allen,lvazquez@example.com,755.709.5748,060421356464,2025-04-02 +Resort Hotel,0,14,2017,July,28,10,1,7,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,Jeffrey Mendez,gonzalesheather@example.net,001-632-601-0316,3590138513213965,2024-07-02 +Resort Hotel,1,29,2017,July,29,16,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,137.79,0,0,Canceled,Jason Beck,hendersonelizabeth@example.net,(882)583-1047,3510181712368369,2024-10-25 +City Hotel,0,10,2017,October,42,17,2,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,106.82,0,1,Check-Out,William Jones,taylorscott@example.org,(739)230-9284x11656,6011388940285599,2025-01-03 +Resort Hotel,0,13,2017,April,15,11,1,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,42.25,0,1,Check-Out,Katie Mcneil,sjohnson@example.net,240-798-1138x30216,347640131740222,2024-07-14 +Resort Hotel,0,34,2017,June,25,22,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.98,0,1,Check-Out,Jeanette Harrison,stephaniebaker@example.net,779-881-7413,3527500864882383,2024-08-14 +City Hotel,0,16,2017,July,27,4,1,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.52,0,1,Check-Out,Veronica King,ejones@example.org,(531)514-4777x080,3534080539476292,2024-12-06 +City Hotel,0,9,2017,April,18,28,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Group,106.22,0,1,Check-Out,Richard Cooper,mfreeman@example.com,001-345-594-1981x346,6577784454054726,2024-08-02 +City Hotel,1,213,2017,August,32,5,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,104.5,0,2,Canceled,Lori Ingram,antonio00@example.org,(226)762-8685,346632578212337,2024-06-03 +Resort Hotel,0,0,2017,October,40,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,0.5099000000000001,1,0,Check-Out,Evelyn Williams,sheltonjulie@example.net,(557)714-1308x888,6011360082489305,2024-11-15 +City Hotel,1,378,2017,January,5,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.3,0,0,Canceled,Robin Thompson,whull@example.net,001-300-265-8347x5669,4962943914794108166,2025-12-13 +City Hotel,1,51,2017,April,18,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,60.4,0,0,Canceled,Julie Dominguez,pturner@example.com,447.711.7173x60299,501846759139,2025-11-03 +Resort Hotel,0,37,2017,May,21,22,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,113.47,0,2,Check-Out,Robin Brown,curtishannah@example.com,+1-840-348-0205x3419,4353149559517891,2026-03-02 +City Hotel,1,409,2017,May,18,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,129.97,0,1,Canceled,Judith Carter,millermatthew@example.org,5444839701,4812270459138,2024-07-04 +City Hotel,0,6,2017,November,44,3,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,227.0,0,Transient,81.21,0,0,Check-Out,Curtis Williams,lancejenkins@example.com,(870)293-3420,2312594830837689,2024-07-13 +City Hotel,1,3,2017,May,21,25,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,166.97,0,0,No-Show,Kaylee Hays,wbright@example.org,520-690-2058,4079414048864863,2025-11-22 +City Hotel,0,1,2017,February,6,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,15.0,45.0,0,Transient-Party,91.03,1,1,Check-Out,Dawn Mullins,meghanjones@example.org,(381)246-4122,4089890126060702078,2025-02-25 +Resort Hotel,0,188,2017,May,20,17,0,2,1,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient-Party,43.67,0,1,Check-Out,Howard Norman,thompsonrebecca@example.com,(331)963-7542x5993,30279137897132,2026-03-22 +City Hotel,0,16,2017,August,32,6,1,1,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,113.87,0,0,Check-Out,Evelyn Martinez,samanthahess@example.net,3846512519,3515313422258060,2024-11-15 +Resort Hotel,0,42,2017,December,50,11,0,1,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,311.0,179.0,0,Transient-Party,80.78,0,0,Check-Out,Steve Paul,victor69@example.com,846-893-8536x062,30366979969697,2025-02-20 +Resort Hotel,0,153,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,73.78,0,1,Check-Out,Jasmine Beltran,olivia36@example.net,001-322-458-0015x218,502032859865,2025-05-03 +Resort Hotel,0,135,2017,February,6,4,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,136.0,179.0,0,Transient,43.03,0,0,Check-Out,Jonathan Glass MD,lawsonrachel@example.net,745-549-9614x04841,36823490671446,2024-12-11 +City Hotel,1,146,2017,April,15,11,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,75.0,179.0,19,Transient,98.47,1,0,Canceled,Monica Miller,davidsonjoseph@example.com,001-700-233-7692x9449,676269077050,2025-03-25 +City Hotel,1,254,2017,October,40,5,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,74.2,0,0,Canceled,Samantha Gardner,rebekahjennings@example.org,(595)588-7997x2242,503891295266,2025-04-28 +City Hotel,0,1,2017,January,2,3,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,66.81,0,0,Check-Out,Bobby Guerrero,mcgeedeborah@example.com,+1-378-602-3003x995,4101345460346892,2025-08-30 +City Hotel,1,162,2017,June,26,23,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,D,F,0,No Deposit,9.0,179.0,0,Transient,115.7,0,0,Canceled,Lance Simmons,cherylgriffin@example.com,3782886814,4711636068882853499,2025-12-11 +Resort Hotel,0,13,2017,December,52,24,3,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,89.39,0,1,Check-Out,Heather Williams,garciadaniel@example.org,988.468.7239x04427,3553010954055210,2025-01-20 +Resort Hotel,0,46,2017,March,13,28,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,168.03,0,2,Check-Out,Heather Bolton,spencemichael@example.net,783-467-3713,676229136178,2024-11-10 +Resort Hotel,0,2,2017,March,10,4,2,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,47.24,0,1,Check-Out,William Gould,carlos36@example.net,376-410-5882x13644,180047595597199,2025-01-25 +City Hotel,0,52,2017,August,32,8,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.11,0,0,Check-Out,Mark Cox,nicholaswyatt@example.net,001-844-388-7288,4667521540296,2025-09-23 +City Hotel,1,159,2017,July,29,14,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.43,0,2,Canceled,Meghan Cisneros,christopherwalker@example.net,341-615-0271,2707178836933644,2024-04-01 +City Hotel,1,12,2017,October,40,2,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,130.04,0,0,Canceled,Lawrence Harrington,brenda60@example.com,345.316.1440x01539,376894385531340,2025-08-11 +Resort Hotel,0,13,2017,April,14,4,0,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,134.12,1,2,Check-Out,Austin Osborne,ballernest@example.com,413.830.0129x929,213160745723770,2024-04-22 +Resort Hotel,1,13,2017,March,12,18,1,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,131.0,179.0,0,Transient,2.66,0,1,Canceled,James Bradley,daniellawrence@example.org,588.401.7349,6011786081498220,2026-01-26 +Resort Hotel,0,20,2017,August,31,4,4,7,2,0.0,0,FB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,89.11,0,1,Check-Out,Meghan Rush,frank29@example.org,738.437.6552x242,3505675830414465,2025-01-14 +Resort Hotel,0,74,2017,December,49,4,1,4,2,1.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,123.29,1,2,Check-Out,Phillip Berry,lynnlarry@example.org,001-959-706-9365x2677,503864897601,2024-06-21 +Resort Hotel,1,48,2017,December,50,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,80.11,0,0,Canceled,Jennifer Banks,christophercox@example.com,320.692.2669,4202303023020,2025-03-30 +Resort Hotel,0,33,2017,December,49,8,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Group,51.3,0,1,Check-Out,Brian Fitzgerald,lroth@example.net,499-927-1805,4596968130992076,2024-08-13 +Resort Hotel,1,148,2017,April,16,17,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,133.41,0,3,Canceled,Mr. Justin Green III,asoto@example.com,(483)648-8499x0842,639077217276,2024-10-17 +City Hotel,1,61,2017,October,41,10,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,222.0,0,Transient,103.76,0,0,Canceled,Zachary Mitchell,christianatkins@example.org,(402)269-4755,4649401752901867,2025-02-25 +City Hotel,0,7,2017,October,40,3,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,90.55,0,0,Check-Out,Katherine Martinez,grayaustin@example.org,001-466-309-8558x012,3541867304494919,2024-08-09 +Resort Hotel,0,48,2017,March,13,31,2,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,81.14,0,0,Check-Out,Jodi Roach,monica43@example.net,001-739-658-2484x592,6011920112416519,2024-11-15 +Resort Hotel,0,14,2017,January,3,17,2,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,103.42,0,0,Check-Out,Brandon Fleming,rebeccahill@example.net,(888)872-2686x2618,4477797333842,2025-03-17 +City Hotel,0,13,2017,May,18,5,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.03,0,1,Check-Out,Emma Reed,noblemary@example.net,621-903-0541x77400,4109551579761116558,2024-09-24 +City Hotel,1,303,2017,August,34,23,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.63,0,0,Canceled,Joshua Vance,amandahorton@example.net,929.751.3888,4911430070086505481,2024-04-19 +City Hotel,0,10,2017,November,46,17,1,2,2,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,115.37,1,0,Check-Out,Michelle Ho,james07@example.com,(253)811-8293x87338,30436662746718,2024-12-13 +Resort Hotel,0,44,2017,September,37,12,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,242.0,179.0,0,Group,48.06,0,1,Check-Out,Rebecca Hicks,bakervictoria@example.com,730.418.1974x24537,4663132105104021,2025-06-29 +City Hotel,0,2,2017,February,8,22,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,222.0,0,Transient-Party,65.81,0,0,Check-Out,Curtis Taylor,lwhitaker@example.com,+1-239-240-6128x386,4843041934034,2024-07-15 +City Hotel,0,52,2017,October,40,2,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,86.75,0,0,Check-Out,Allison Spencer,adamsmith@example.org,+1-262-897-5967,5174792127448299,2024-04-12 +Resort Hotel,1,301,2017,December,50,10,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,277.0,179.0,0,Transient-Party,62.15,0,0,Canceled,Robert Arnold,whitakercraig@example.net,689.349.0494x068,6011742653620436,2025-09-03 +City Hotel,0,194,2017,August,34,21,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,134.9,0,1,Check-Out,Angelica Parker,xbrown@example.com,(289)905-3878,340790469198886,2024-11-21 +Resort Hotel,0,143,2017,March,13,31,3,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,14.0,223.0,0,Transient-Party,72.0,0,0,Check-Out,Dr. Kelly Hammond DVM,dylanduncan@example.com,001-321-631-4573,2524918094383953,2024-08-20 +City Hotel,0,56,2017,August,33,14,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,71.0,179.0,0,Contract,134.3,0,2,Check-Out,William Day,millernicholas@example.net,+1-802-947-8275x564,2276292848661563,2026-02-12 +City Hotel,0,14,2017,October,43,22,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,64.37,0,0,Check-Out,Michael Cooper,millerrobert@example.org,+1-205-355-8850x650,4791876648482943013,2025-10-19 +Resort Hotel,0,33,2017,August,31,4,0,2,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,1,No Deposit,237.0,179.0,0,Transient,130.19,0,1,Check-Out,Penny Bowman,kallen@example.net,565.357.8375,676197642538,2024-05-30 +City Hotel,0,3,2017,August,35,30,2,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,234.42,0,0,Check-Out,Vincent Reynolds,briggssteven@example.com,001-307-215-1252x0875,5466432415964726,2026-03-06 +Resort Hotel,0,229,2017,July,31,31,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,218.14,0,2,Check-Out,Amy Martinez,gibsonedward@example.net,+1-327-226-6192x2283,502059535638,2025-05-29 +City Hotel,0,65,2017,October,41,12,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,58.0,0,Transient-Party,65.32,0,0,Check-Out,Christopher Morris,jordanrebecca@example.com,872.701.1831x54120,180045982630722,2024-07-23 +Resort Hotel,0,325,2017,July,30,23,2,5,3,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient-Party,62.91,1,0,Check-Out,Hannah Everett,beckronald@example.com,528.684.6989,377995339572097,2024-06-14 +City Hotel,0,9,2017,February,8,21,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,61.67,0,1,Check-Out,Sarah King,joshuamosley@example.org,(608)988-4205,4244941689788,2025-10-22 +City Hotel,0,0,2017,April,15,12,2,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,39.25,0,0,Check-Out,Krista Martinez,yatesryan@example.com,001-353-679-6539,6546363703413054,2025-12-13 +Resort Hotel,0,114,2017,July,28,12,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,65.51,0,3,Check-Out,Joseph Shaw,jenkinsshawn@example.com,995-310-7424x7157,4837354516461,2024-07-30 +City Hotel,0,78,2017,April,14,4,2,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,87.59,0,1,Check-Out,Todd Moore,rstewart@example.net,001-491-746-5120x387,213113696297005,2024-05-08 +Resort Hotel,1,1,2017,July,27,3,1,1,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,237.36,0,1,Canceled,Michelle Jacobs,jonathon31@example.net,(886)353-5418,4028327520922878954,2025-01-27 +City Hotel,0,144,2017,April,16,15,0,1,2,0.0,0,BB,ESP,Online TA,Undefined,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,164.11,0,1,Check-Out,Kristy Bryan,edavis@example.net,001-361-566-2825x2077,30239453090142,2024-04-07 +City Hotel,1,98,2017,June,26,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,107.21,0,1,Canceled,Angel May,hgarza@example.com,+1-865-754-8874x481,30047454622874,2025-08-21 +Resort Hotel,0,1,2017,January,2,11,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,47.62,0,2,Check-Out,Marilyn Wang,denisewilson@example.com,532-881-9684x027,3513587074949223,2025-12-12 +City Hotel,0,53,2017,June,25,21,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,111.73,0,0,Check-Out,Mark Jimenez,ashleyallen@example.org,781.349.1125,376102563481241,2026-01-08 +Resort Hotel,0,18,2017,July,30,23,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,221.07,0,1,No-Show,Donna Frye,erica49@example.org,001-879-294-8749x3575,374051986798669,2024-12-30 +Resort Hotel,0,5,2017,March,13,23,1,2,2,0.0,0,FB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,62.99,1,1,Check-Out,Dr. Michael Evans,rebeccaadams@example.net,(482)502-1995x127,345109582506864,2024-08-25 +Resort Hotel,0,28,2017,April,16,20,0,5,2,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,132.51,1,1,Check-Out,Anthony Gonzales,gmorales@example.com,550.758.5411x431,30205199243667,2024-05-11 +Resort Hotel,0,15,2017,August,34,17,0,1,2,2.0,0,BB,ESP,Online TA,Direct,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,252.0,1,1,Check-Out,Mr. Lawrence Edwards,hparsons@example.net,527-464-5071x4149,676297865732,2025-11-10 +Resort Hotel,1,191,2017,May,21,23,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,125.92,0,1,Canceled,Morgan Valencia,steven01@example.org,001-658-472-6655x69480,30134340907451,2025-05-03 +Resort Hotel,1,108,2017,May,22,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,131.33,0,0,Canceled,Bianca Wood,brianbridges@example.com,992-299-5200x381,060452336963,2024-09-14 +City Hotel,1,192,2017,May,21,21,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,117.79,0,2,Canceled,Emma Owens,scottsloan@example.com,+1-459-801-5827x85499,503847152330,2024-10-18 +City Hotel,1,102,2017,December,49,6,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,9.0,179.0,0,Transient,80.01,0,0,Canceled,David Davis,qmorris@example.com,352-225-6042x5106,213149931610826,2025-01-13 +Resort Hotel,0,10,2017,December,51,22,2,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,180.0,179.0,0,Transient,62.89,0,0,Check-Out,James Gilbert,franklintracie@example.com,+1-641-925-0856x0383,180095324772658,2025-03-10 +Resort Hotel,0,3,2017,February,8,21,0,1,1,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,196.0,179.0,0,Transient-Party,62.79,0,0,Check-Out,Sean Moore,cmartin@example.org,494-831-0030x25502,213140574924087,2025-11-12 +City Hotel,1,48,2017,May,21,26,1,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,175.42,0,0,Canceled,Kenneth Edwards,chad38@example.com,001-984-247-0580x358,569553913579,2026-03-08 +City Hotel,0,46,2017,August,33,10,0,6,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,C,D,1,No Deposit,16.0,179.0,0,Transient,221.29,0,2,Check-Out,Kathleen Robertson,charles67@example.net,229.700.8798x5835,4231468151185,2025-07-14 +City Hotel,1,13,2017,March,10,8,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,62.0,0,Transient,61.72,0,0,Canceled,Mr. Alexander Landry MD,deborahhernandez@example.com,391-550-4959,5438244633078022,2024-07-27 +Resort Hotel,0,174,2017,August,33,13,2,5,2,0.0,0,HB,USA,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient-Party,143.57,0,2,Check-Out,Cindy Gomez,melvinlawrence@example.net,9966292349,30200031173396,2024-07-10 +City Hotel,1,98,2017,March,12,24,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.27,0,2,No-Show,Johnny Khan,sandersjames@example.net,001-813-457-2949,4975533421973846,2025-12-13 +City Hotel,1,300,2017,October,41,8,2,5,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,62,Transient,73.78,0,0,Canceled,Julie Herrera,davidingram@example.net,+1-460-701-0577x32764,30599896277147,2024-06-23 +City Hotel,0,17,2017,October,42,19,2,5,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,D,0,No Deposit,172.0,179.0,0,Transient,113.34,0,0,Check-Out,Jessica Khan,charles00@example.net,+1-966-924-2162x6280,4063613127901193,2024-10-25 +City Hotel,1,96,2017,November,46,14,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.33,0,0,Canceled,Pamela Diaz,thompsonmichelle@example.net,001-263-881-9486,378469781902540,2025-02-15 +City Hotel,0,3,2017,December,52,29,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,G,0,No Deposit,15.0,179.0,0,Transient,185.99,0,0,Check-Out,Kelly Lee,tonyabriggs@example.net,212-744-7559x98520,4770240073075760588,2025-12-08 +City Hotel,0,11,2017,February,6,7,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,36.7,1,2,Check-Out,Angel Gordon,rdavis@example.org,001-712-409-3951,180028276201582,2025-10-26 +City Hotel,0,1,2017,November,45,9,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,D,A,1,No Deposit,13.0,169.0,0,Transient,89.86,0,1,Check-Out,Diana Hays,smithnicole@example.net,001-474-350-4167x313,6565530344306022,2025-10-26 +City Hotel,1,413,2017,October,40,4,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,86.86,0,0,Canceled,Barbara Hester,gibsonmindy@example.org,835-290-7018,4150348255607728052,2024-05-25 +City Hotel,1,238,2017,November,46,18,2,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,112.54,0,0,Canceled,Robert Morgan,englishchristopher@example.org,531.483.8681x24998,2284016453698580,2024-06-04 +City Hotel,0,55,2017,March,13,27,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.59,0,1,Check-Out,Nicole Gonzalez,jennifer93@example.net,(922)272-6815x99956,3504681393793676,2025-12-23 +City Hotel,1,277,2017,September,38,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,83.42,0,0,Canceled,Kathryn Williams,mfranklin@example.com,(648)223-4619,180089521648241,2025-09-03 +City Hotel,0,158,2017,June,27,29,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Check-Out,Gary Wells,aimeeturner@example.org,399-763-0288,4061763955736531948,2024-07-07 +City Hotel,0,10,2017,September,38,22,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,139.63,0,2,Check-Out,Larry Robertson,jessica68@example.org,+1-234-665-7683,2267758571751277,2025-07-19 +Resort Hotel,0,256,2017,July,28,12,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,24.0,179.0,0,Contract,60.12,0,1,Check-Out,Louis Martin,mcruz@example.net,+1-477-475-1508x4855,378308369771317,2024-04-12 +City Hotel,1,176,2017,June,25,17,0,2,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.62,0,0,Canceled,Nancy Evans MD,smithmichelle@example.org,+1-536-515-1409x7928,675915023641,2025-03-16 +City Hotel,0,3,2017,March,10,9,0,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.54,1,1,Check-Out,Kim Erickson,xgonzalez@example.net,+1-473-434-5956x78295,4172466152501281,2024-04-13 +Resort Hotel,0,14,2017,March,10,2,0,5,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,45.88,0,0,Check-Out,Robert Richardson,timothy08@example.org,937.771.0628,3512798511224291,2024-06-24 +Resort Hotel,1,89,2017,April,17,21,1,4,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,225.67,1,0,No-Show,Veronica Silva,bryce80@example.net,906-973-2077x88396,4500188279980908,2024-04-15 +Resort Hotel,0,38,2017,May,21,20,4,3,2,1.0,0,BB,,Direct,Direct,0,0,0,D,G,2,No Deposit,250.0,179.0,0,Transient,133.19,0,0,Check-Out,Molly Watts,isimpson@example.org,397-284-2500x94404,2711051517939640,2025-01-03 +City Hotel,1,154,2017,May,21,24,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,105.01,0,0,Canceled,John Coffey,kellifox@example.com,891-468-7805x834,4171112650454265,2025-04-20 +City Hotel,1,110,2017,October,42,14,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.05,0,0,Canceled,Paula Lane,robertsmary@example.com,001-790-343-6045,4748051513758658,2025-05-10 +Resort Hotel,0,42,2017,March,11,16,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,75.49,0,2,Check-Out,Lauren Jackson,xbaker@example.com,001-704-359-9998x72802,4468008896678242775,2024-11-26 +Resort Hotel,1,148,2017,May,21,20,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,0.5099000000000001,0,0,Canceled,Lisa Randall,shane31@example.org,(996)801-3246,675904997896,2024-06-12 +Resort Hotel,1,0,2017,August,32,6,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,2,No Deposit,17.0,179.0,0,Transient,131.76,0,1,Canceled,Michael Johnson,peckvictoria@example.com,+1-706-692-4799,4406971491144661171,2025-10-20 +City Hotel,0,118,2017,April,14,5,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,116.32,0,1,Check-Out,Ashley Smith,lcollins@example.com,5647021374,180081050225954,2025-08-26 +Resort Hotel,0,1,2017,September,36,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,2.26,0,0,Check-Out,Christian Vaughn,sean14@example.net,800-371-5796x71281,4237599407528171,2025-02-03 +City Hotel,1,0,2017,August,35,29,1,4,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,93.51,0,2,Canceled,Reginald Knapp,thompsonnathan@example.org,5466019781,3516397416159003,2026-01-27 +Resort Hotel,0,51,2017,March,13,24,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,115.98,0,1,Check-Out,Nancy Brown,sheltonmichael@example.net,001-415-416-6446,2563995078438781,2024-04-21 +Resort Hotel,1,178,2017,November,44,1,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,110.44,0,2,Canceled,Daniel Nguyen,rbradley@example.com,416.489.2293x068,2704731313492493,2024-05-24 +City Hotel,0,3,2017,May,22,27,2,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.76,0,0,Check-Out,Kelly Edwards,alec58@example.net,7143842413,213101108578419,2024-06-16 +City Hotel,0,149,2017,March,13,27,1,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,104.16,0,3,Check-Out,Thomas Peterson,afuentes@example.net,251.847.6077x1813,4303226223189307408,2026-03-02 +City Hotel,0,58,2017,January,3,14,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,84.13,1,1,Check-Out,Raymond Le,sara27@example.org,828.882.6704x077,4405775999968955040,2025-03-31 +Resort Hotel,0,9,2017,July,28,8,2,7,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,200.81,0,2,Check-Out,Melissa Bishop,jonathan28@example.org,272.828.9352x25910,2264916798380717,2026-01-14 +City Hotel,0,0,2017,April,15,9,0,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,211.82,0,1,Check-Out,David Grant,joshuali@example.org,494.289.3403x266,4980238057742514,2025-07-30 +City Hotel,0,37,2017,October,42,16,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,80.77,0,1,Check-Out,William Evans,antonioboyd@example.net,205-529-8261x675,573985369616,2026-01-07 +City Hotel,0,100,2017,March,13,28,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,165.59,0,2,Check-Out,Daniel Bush,taylornicole@example.net,001-828-786-8333x4760,38854302374380,2026-01-01 +City Hotel,1,159,2017,August,34,20,2,3,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,E,0,No Deposit,170.0,179.0,0,Transient,143.25,0,0,Canceled,Gregory Peck,james71@example.net,(332)836-7798x1701,4930750508015283,2024-11-01 +City Hotel,0,16,2017,October,41,9,0,2,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.21,0,1,Check-Out,Denise Martinez,tonya10@example.org,640-593-8307x640,4804334658904174987,2025-03-09 +Resort Hotel,0,56,2017,September,38,18,0,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,166.33,0,0,Check-Out,Jamie Baird,ashleywilson@example.net,(896)999-5213x47988,340396649529840,2024-09-20 +City Hotel,0,302,2017,August,33,12,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,176.19,0,1,Check-Out,Tina Ballard,emilylawrence@example.org,696-780-4380x41147,30544286156055,2025-11-19 +City Hotel,1,395,2017,September,37,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,63.5,0,0,Canceled,Dwayne Klein,billy77@example.net,+1-394-650-7674x485,3515689920064203,2024-07-23 +Resort Hotel,1,280,2017,June,25,15,4,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,81.0,179.0,0,Transient,133.18,0,0,Canceled,Jeremy Scott,claire19@example.org,9452013389,4070152762274104,2024-06-22 +City Hotel,1,0,2017,April,17,26,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,13.0,45.0,0,Transient,102.46,0,0,Canceled,Dale Ryan,donaldknight@example.org,584-757-9166x7050,4873305201903,2025-08-21 +Resort Hotel,0,19,2017,July,27,2,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,92.49,1,1,Check-Out,Melissa Taylor,smithjennifer@example.net,+1-633-454-3088x3641,4832504698270235,2025-09-16 +City Hotel,0,8,2017,March,12,16,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,83.18,0,2,Check-Out,Laurie Sanchez,zjohnson@example.org,+1-235-958-2636,213106199462498,2025-05-08 +City Hotel,0,11,2017,February,9,27,1,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,190.66,1,2,Check-Out,Kiara Little,cindy16@example.net,937-332-6031,38713291064040,2025-08-13 +City Hotel,1,209,2017,July,28,10,2,3,2,2.0,0,BB,PRT,Online TA,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient,187.06,0,2,Canceled,Jason Love,lauragriffith@example.net,821.828.3190x637,4070018758700784,2025-12-25 +Resort Hotel,1,205,2017,April,15,8,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Transient,43.06,0,0,Canceled,Randy Smith,jford@example.net,672-415-0018,4243786521233679,2024-10-02 +City Hotel,1,13,2017,August,34,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,66.0,179.0,0,Transient,99.69,0,0,Canceled,Tanya Russell,ynelson@example.com,+1-611-577-4988x37252,349291762391634,2024-11-15 +Resort Hotel,0,31,2017,June,26,24,4,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,88.16,0,1,Check-Out,Sherry Woods,robinneal@example.com,001-585-472-9030x825,180095440172122,2025-03-12 +Resort Hotel,0,206,2017,August,33,12,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,252.0,0,3,Check-Out,Victor Morris,davidcannon@example.com,4235858160,213182900872820,2025-06-10 +City Hotel,1,191,2017,June,25,16,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,172.0,179.0,0,Transient,128.01,0,0,Canceled,Susan Davis,charleswillis@example.net,001-515-794-3091x94968,38299885909998,2026-01-21 +City Hotel,0,43,2017,August,32,4,1,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,244.25,0,3,Check-Out,Kimberly Sharp,timothyfloyd@example.net,391.429.2358x5293,36979445660809,2024-12-27 +City Hotel,0,10,2017,March,12,17,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,49.63,0,1,Check-Out,Susan Thompson,sullivanwilliam@example.com,(767)607-2197x049,6011216903287791,2025-07-16 +City Hotel,1,391,2017,July,31,27,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.74,0,0,Canceled,Casey Gillespie,iroberts@example.com,8414094424,180031776370345,2024-10-07 +Resort Hotel,0,10,2017,May,19,9,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,2,No Deposit,247.0,179.0,0,Transient,129.1,0,1,Check-Out,Jennifer Simpson DVM,kevinstanley@example.com,(936)395-9481,4585407680135284556,2024-11-29 +Resort Hotel,0,11,2017,June,24,11,3,10,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,185.97,0,1,Check-Out,Tammy Mcdowell,ericadiaz@example.net,(830)760-4069,6525175397308274,2025-09-09 +City Hotel,0,410,2017,October,41,8,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.43,0,0,Check-Out,Keith Rodriguez,flee@example.org,+1-800-926-0663x7361,30597277926316,2025-08-16 +City Hotel,1,141,2017,December,49,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.52,0,0,Canceled,Mrs. Virginia Daniels,michaelchandler@example.org,248.749.2286x479,4648926955711983658,2025-11-29 +City Hotel,0,26,2017,December,52,30,1,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,3.42,1,1,Check-Out,Todd Rosales MD,anna74@example.com,(429)603-6799x64266,180066177621524,2024-06-19 +Resort Hotel,0,35,2017,August,32,12,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,186.19,0,1,Check-Out,Brian Martin,sleon@example.com,(634)214-6346x47347,6518499771872385,2026-01-23 +City Hotel,0,190,2017,December,51,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,65.16,0,0,Check-Out,David Lopez,davidmartin@example.net,001-917-222-9744x2409,343685494562287,2024-09-25 +Resort Hotel,0,21,2017,November,45,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,245.0,0,Transient-Party,46.71,0,0,Check-Out,Rachel Bradley,marksnathaniel@example.com,001-758-202-2211x332,4362805693314,2024-07-12 +City Hotel,1,375,2017,June,24,12,0,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,105.96,0,0,Canceled,Casey Chase,harrisvincent@example.org,864-832-0331x8896,36860276043176,2024-07-03 +City Hotel,0,141,2017,August,32,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,130.05,0,3,No-Show,Samantha Robertson,tiffanyhardy@example.net,622.392.4698x3983,4037620110255019,2024-06-11 +Resort Hotel,1,2,2017,March,10,9,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,47.42,0,1,Canceled,Michael Lopez,ericksontina@example.org,7873211398,2287521419953778,2025-08-20 +Resort Hotel,0,40,2017,March,10,8,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,45.56,0,1,Check-Out,Franklin Wright,paul74@example.org,349-470-8998x50119,4558294228302,2025-09-17 +Resort Hotel,0,414,2017,February,6,4,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,76.27,0,0,Check-Out,David Molina,xanderson@example.net,(566)666-1611,4064469273890286254,2024-12-14 +City Hotel,1,194,2017,September,37,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,70.0,179.0,0,Transient,111.88,0,0,Canceled,Elizabeth Sharp,changdaniel@example.com,(275)569-9088,4723586298225524607,2025-03-08 +Resort Hotel,1,186,2017,November,48,27,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,A,0,No Deposit,241.0,179.0,0,Transient,50.12,0,0,Canceled,Matthew Schwartz,fgarcia@example.net,(940)957-7205,180082593603418,2025-04-09 +City Hotel,1,16,2017,October,41,8,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.79,0,1,Canceled,Bryan Parker,fernandezjonathan@example.org,+1-780-830-5032x5934,4702572095795846,2025-12-03 +City Hotel,0,4,2017,August,32,9,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,227.73,0,0,Check-Out,Jonathan Jacobson,sarah27@example.com,(350)838-0851,3507635464210058,2025-02-27 +City Hotel,0,102,2017,August,35,29,0,1,3,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,129.99,0,1,Check-Out,Emily Wilson,jonesjessica@example.org,533.821.3289x494,4677832298443581,2025-09-15 +City Hotel,0,18,2017,December,49,9,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.19,0,2,Check-Out,Elizabeth Mendez,amorris@example.com,001-338-659-4241x838,4036367260049,2025-01-20 +City Hotel,0,78,2017,February,6,4,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.28,0,0,Check-Out,Casey Hernandez,tanyacoleman@example.org,384.874.0960,30081093622227,2025-10-22 +City Hotel,0,15,2017,December,52,28,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.77,0,1,Check-Out,Lisa Perry,austinbrown@example.com,(431)983-6474x62198,180072809545396,2024-07-03 +City Hotel,1,377,2017,September,38,18,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,62,Transient,62.92,0,0,Canceled,Kaitlin Medina,kimfranco@example.org,399-740-9106,4254256961538167183,2024-09-17 +Resort Hotel,1,13,2017,December,49,6,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,78.42,0,0,Canceled,Colleen Wright,gjackson@example.org,(713)243-2588x03232,4621860959525232968,2024-12-16 +Resort Hotel,0,1,2017,January,4,22,2,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient,56.58,1,1,Check-Out,Shelley Miller,fhart@example.org,(852)920-1892x81115,639016729712,2024-06-07 +Resort Hotel,1,151,2017,June,23,2,2,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,119.36,0,0,Canceled,Michael Miller,lewisthomas@example.com,(968)430-9925x79972,30517135013883,2026-02-17 +Resort Hotel,0,2,2017,March,10,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,300.0,179.0,0,Transient,45.6,0,0,Check-Out,Amy Kelley,wdavis@example.net,(223)621-9538x0892,341614643717982,2024-11-29 +City Hotel,1,414,2017,August,31,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.14,0,0,Canceled,Laura Hernandez,hellis@example.net,938.624.7698,5413382936759721,2025-04-29 +City Hotel,1,325,2017,February,9,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,75,Transient-Party,62.56,0,0,Canceled,Joseph Wilson,blawrence@example.net,339-964-3977,213143508372175,2026-02-11 +Resort Hotel,0,24,2017,July,27,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,H,0,No Deposit,242.0,179.0,0,Transient,112.37,1,1,Check-Out,Kevin Davis,ywarren@example.org,3037119404,4143802596951516,2024-04-28 +City Hotel,0,21,2017,March,12,19,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,41.42,0,1,Check-Out,Rhonda Chavez,gjames@example.com,+1-803-381-2511x6404,30145270932343,2025-10-12 +Resort Hotel,0,0,2017,February,6,9,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,131.0,179.0,0,Transient,46.63,0,2,Check-Out,Joyce Brown,hamiltonamy@example.com,893.249.8184x53523,6533998320495458,2025-07-06 +Resort Hotel,0,4,2017,August,35,27,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,239.0,179.0,0,Transient,49.49,0,2,No-Show,Robert Cummings,beverly00@example.com,(973)861-1819x104,4846834975626372525,2025-04-12 +City Hotel,0,14,2017,February,6,6,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.61,0,1,Check-Out,Robert Reese,sarahmayo@example.org,+1-435-688-4261x8775,4018729540268,2025-12-28 +Resort Hotel,0,157,2017,May,22,27,4,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,241.0,179.0,0,Transient,135.58,0,1,Check-Out,Amber Cooper,shannoncontreras@example.org,(874)667-4084x9658,4173857772306,2024-03-31 +Resort Hotel,0,142,2017,March,12,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,91.49,0,1,Check-Out,Zachary Michael,caindavid@example.net,258.300.2659x6849,4149235347319754,2025-11-22 +City Hotel,0,292,2017,April,14,4,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,198.99,0,2,Check-Out,Timothy Johnson,bpreston@example.net,3058582385,38517268215364,2025-03-22 +City Hotel,1,97,2017,June,25,20,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,102.3,0,2,Canceled,Randy Cannon,dwebster@example.org,285.726.1937,6501053582125316,2024-06-13 +Resort Hotel,1,285,2017,July,27,3,0,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,252.0,0,0,Canceled,Maria Fisher,popethomas@example.com,(761)595-0081x15428,4409604015966809961,2024-06-26 +Resort Hotel,0,58,2017,March,13,28,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,241.0,179.0,0,Transient,195.0,1,2,Check-Out,Janet Kane DVM,angelagreen@example.com,+1-806-756-5905x671,180070588046875,2024-07-20 +Resort Hotel,0,18,2017,October,40,1,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,215.81,1,0,Check-Out,Michael Stanley,vstone@example.org,3412492876,6565674020685414,2025-12-19 +Resort Hotel,0,137,2017,March,10,8,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,140.0,179.0,0,Transient,49.66,0,0,Check-Out,Martha Bailey,rporter@example.org,764-716-3952x940,3503881538734335,2024-08-24 +Resort Hotel,0,45,2017,November,47,23,2,6,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,56.19,0,0,Check-Out,Joshua Rice,kevin51@example.org,947-720-9810x239,377735616130338,2024-08-25 +Resort Hotel,0,2,2017,August,32,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,235.0,179.0,0,Transient,128.23,1,1,Check-Out,Courtney Smith,russelldavid@example.com,(565)623-0654,30446628735051,2025-06-04 +Resort Hotel,1,0,2017,August,35,31,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,250.0,179.0,0,Transient,202.54,0,1,No-Show,Edwin Nunez,ewalter@example.org,911-819-6838,2239813006735331,2025-04-25 +City Hotel,1,140,2017,June,26,23,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.1,0,2,Check-Out,Kim Morrow,nelsonchristine@example.net,001-713-243-7396x663,4462295561828123961,2025-03-27 +City Hotel,0,16,2017,August,33,15,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,177.82,0,2,Check-Out,Gregory Hill,swebb@example.net,(267)399-8317x13544,376000187807934,2024-10-22 +City Hotel,0,0,2017,April,16,13,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Molly Rodriguez,alicia92@example.com,001-999-565-5534x644,30353339703222,2025-09-23 +City Hotel,0,5,2017,May,18,1,2,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.97,0,1,Check-Out,Jennifer Miranda,kaufmandustin@example.com,(738)727-2239,060477501161,2025-09-14 +City Hotel,0,2,2017,March,13,23,0,2,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,123.96,0,1,Check-Out,Alexis Harris,jasonriggs@example.net,(918)526-3775,501871863673,2025-01-30 +City Hotel,1,17,2017,May,20,17,0,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,98.24,0,0,Canceled,Andrew Harper,garzapaige@example.net,+1-691-613-3948x224,6011117332252721,2025-06-09 +Resort Hotel,0,98,2017,February,8,23,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,60.77,1,2,Check-Out,Amber Yang,robertfisher@example.com,301.925.6000,6571821173396271,2025-01-10 +Resort Hotel,1,16,2017,November,45,5,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,45.57,0,0,Canceled,David Robinson,davidjones@example.net,(401)468-6797,6011277486814500,2025-12-22 +City Hotel,0,69,2017,March,11,14,0,2,2,0.0,0,BB,AUT,Offline TA/TO,Direct,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,109.91,0,1,Check-Out,Amy Gordon,jasminemyers@example.org,865.485.2180x8324,4158740129854041,2025-01-08 +Resort Hotel,1,179,2017,March,10,8,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,E,0,Refundable,15.0,221.0,0,Transient-Party,76.02,0,0,Canceled,Robert Dennis,cummingsallison@example.org,(534)294-9676x1899,4721936915949141738,2025-04-23 +Resort Hotel,0,90,2017,December,52,30,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,82.12,0,0,Check-Out,Kyle Chambers,yfreeman@example.net,963-667-8652,30332301266467,2024-07-02 +City Hotel,1,155,2017,August,34,23,1,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,251.74,0,3,Canceled,Eric Thomas,james98@example.net,527-880-6358x898,30198705726392,2025-12-06 +City Hotel,1,168,2017,August,34,23,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,105.83,0,0,Canceled,Connie Turner,tiffanypatterson@example.net,425-469-7466,4266982515065567507,2024-10-08 +Resort Hotel,0,196,2017,May,22,26,4,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,133.75,0,0,Check-Out,Travis Hobbs,zperez@example.org,+1-889-649-3446x7015,2240235217241767,2025-10-20 +Resort Hotel,1,86,2017,March,13,28,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,45.26,0,1,Canceled,Lori Simmons,twebster@example.org,2793409668,3540562325118016,2026-02-02 +City Hotel,0,94,2017,June,26,27,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,106.74,0,0,Check-Out,William David DDS,xguerrero@example.com,+1-612-980-8201x8038,5240569982658620,2025-03-19 +Resort Hotel,1,389,2017,March,13,27,1,5,2,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,95.0,179.0,0,Transient,111.7,0,0,Canceled,Emma Butler,flewis@example.com,+1-828-232-8453x4398,4901397231362256437,2026-03-08 +Resort Hotel,0,52,2017,October,40,7,2,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,0,Transient-Party,88.9,0,1,Check-Out,James Webster,loripeterson@example.org,866-775-0799x227,4860347002134787,2024-09-20 +Resort Hotel,0,0,2017,October,40,6,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,44.0,179.0,0,Group,239.3,0,0,Check-Out,Samuel Turner,rleonard@example.com,001-398-831-6189,6011115770906964,2025-09-18 +Resort Hotel,1,414,2017,September,37,15,1,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,79.6,0,0,Canceled,Renee Melendez,justincuevas@example.com,959-595-1959,3531228881386030,2024-12-28 +Resort Hotel,0,74,2017,June,26,22,3,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,108.95,0,1,Check-Out,Tracy Grant,gravesrachel@example.com,+1-788-245-2955x05528,4022768120654157153,2026-01-03 +City Hotel,0,144,2017,October,43,24,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.27,0,0,Check-Out,David Harris,katrinawashington@example.com,845.847.7858x01838,2279994703371918,2025-09-18 +Resort Hotel,1,127,2017,July,28,11,1,7,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Tammy Boone,timothy48@example.com,+1-964-559-8118x67612,503835329015,2024-04-02 +City Hotel,1,0,2017,October,43,24,0,2,1,0.0,0,BB,,Aviation,Corporate,1,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient,7.93,0,0,Canceled,Nathaniel Lee,davidsonpatrick@example.org,2575164080,213142219245936,2025-11-02 +Resort Hotel,0,29,2017,July,30,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,84.95,0,0,Check-Out,Michael Morrison,christopherjohnson@example.com,701.415.0491x2542,3500184402624234,2025-05-01 +Resort Hotel,0,40,2017,May,22,28,4,6,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,109.41,0,1,Check-Out,Chelsea Gill,cbuck@example.net,(203)346-0137,2295708530233632,2026-01-22 +Resort Hotel,0,325,2017,September,36,4,0,2,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,84.83,0,0,Check-Out,Kristin Mendoza,chloevalencia@example.org,555-215-2763x73692,3531995731814318,2025-11-13 +City Hotel,1,40,2017,May,19,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,128.98,0,0,No-Show,Felicia Krueger,matthew35@example.com,286.649.4523,4691990350428189,2025-05-26 +City Hotel,0,22,2017,November,47,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,193.54,0,2,Check-Out,Timothy Hayden,burkebrett@example.net,+1-360-814-9673x750,5541569544566846,2024-11-23 +City Hotel,0,7,2017,December,52,26,0,2,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,B,G,1,No Deposit,12.0,179.0,75,Transient-Party,92.97,0,0,Check-Out,Zachary Mendoza,laura06@example.net,+1-253-879-0507x075,5502884149566472,2024-08-30 +Resort Hotel,1,58,2017,August,34,20,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,204.92,0,1,Canceled,Larry Harris,brownroy@example.com,001-357-681-4320x03036,562246047251,2024-10-25 +Resort Hotel,0,228,2017,April,16,20,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Transient-Party,36.59,0,1,Check-Out,Kristen Rowe,glenda36@example.org,982-982-9292x88224,4636588989646318,2024-06-09 +City Hotel,0,83,2017,April,16,14,0,1,1,0.0,0,Undefined,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,191.0,0,Transient,90.9,0,0,Check-Out,Joseph Howard,russellpetty@example.com,302-713-9024,345600906155297,2025-11-15 +Resort Hotel,0,13,2017,July,31,27,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,83.81,0,1,Check-Out,Jose Crawford,andrew43@example.org,264-611-8465x68575,4969206651536579,2026-02-18 +Resort Hotel,0,2,2017,October,41,7,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,73.01,0,3,Check-Out,William Harrison,jennifersmith@example.org,308.359.1394x0507,6011224549432839,2025-11-17 +City Hotel,0,21,2017,April,17,22,1,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient-Party,119.38,0,1,Check-Out,Suzanne Wood,ycastro@example.net,286-841-0645,4413905638917040,2025-06-29 +City Hotel,1,13,2017,March,14,30,1,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.42,0,2,No-Show,Justin Walker,justinbrown@example.net,534.202.9474,3518899896198573,2025-09-19 +Resort Hotel,0,143,2017,July,30,22,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,193.0,179.0,0,Transient,80.28,0,3,Check-Out,Dean Donovan,stephaniecervantes@example.net,875.867.7507x67663,630452631306,2024-11-11 +Resort Hotel,0,52,2017,June,26,23,4,7,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,28.0,179.0,0,Transient,101.15,0,0,Check-Out,Jennifer Hernandez,jennifer87@example.net,4227459110,3532042516702431,2026-01-17 +City Hotel,1,19,2017,August,33,14,0,2,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,226.04,0,2,Canceled,James Whitaker,salinasjason@example.org,+1-561-650-1535,4089670685162,2025-05-17 +Resort Hotel,0,86,2017,November,46,13,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,32.0,179.0,75,Transient,106.37,0,3,Check-Out,Mr. Michael Scott PhD,elittle@example.org,(895)201-6111,3583499335079656,2024-04-11 +Resort Hotel,0,45,2017,May,21,19,4,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,139.45,0,2,Check-Out,Maria Henry,nicholas00@example.com,001-760-618-1467x661,30306626601491,2024-07-16 +City Hotel,0,0,2017,April,15,9,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,145.62,0,0,Check-Out,Robert Jackson,gdavid@example.com,001-522-413-2212x600,4634988401991015,2024-10-10 +City Hotel,1,153,2017,September,36,4,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,254.0,179.0,0,Transient,62.46,0,0,Canceled,Katherine Stark,usimpson@example.net,745-277-3466x93135,630424009409,2025-12-08 +Resort Hotel,0,124,2017,March,9,3,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,181.0,179.0,0,Transient,83.99,0,2,Check-Out,Maria Brown,justinjohnson@example.net,001-379-871-1340,3565754892209050,2025-07-25 +City Hotel,1,299,2017,June,25,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,111.9,0,0,Canceled,Ryan Landry,gmiles@example.com,+1-328-584-9577x90678,676132417152,2025-06-13 +City Hotel,0,11,2017,May,19,9,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,88.6,0,1,Check-Out,Pamela Gutierrez,vanessa07@example.com,(470)338-6922,4286439702591055,2024-04-15 +Resort Hotel,0,46,2017,March,12,20,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,123.18,0,3,Check-Out,Crystal Mann,qbonilla@example.com,+1-330-271-6857,344139706694719,2024-04-18 +City Hotel,0,48,2017,August,34,23,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,143.52,0,1,Check-Out,Jonathan Brooks,xgarrett@example.net,001-309-902-5820x1483,30093737795996,2024-09-13 +City Hotel,0,3,2017,December,50,10,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,3.23,0,1,Check-Out,Mary Jensen,codypeters@example.org,576-402-4876,4356321655483319286,2024-11-07 +City Hotel,0,9,2017,April,14,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,230.0,0,Transient,109.04,0,0,Check-Out,Mr. Aaron Arnold,rcollins@example.net,441-957-2032x26254,340475705661422,2025-11-15 +City Hotel,0,42,2017,December,2,30,0,4,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,83.21,0,0,Check-Out,Joseph Hill,mathewskatie@example.com,7873472380,6011266964924733,2025-01-21 +Resort Hotel,1,205,2017,August,33,14,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,124.86,0,0,Canceled,Alicia Li,kelly51@example.net,9867437944,2239898388291516,2025-04-21 +City Hotel,0,47,2017,March,12,17,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,E,0,No Deposit,191.0,179.0,0,Transient,98.77,0,0,Check-Out,Renee Browning,josephmegan@example.org,001-933-798-1713x1019,5291351961101767,2024-04-29 +City Hotel,0,106,2017,April,16,18,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.26,0,2,Canceled,Brent Hernandez,davidsonjeanette@example.org,(687)636-0545x828,347777480127278,2025-09-13 +Resort Hotel,0,41,2017,October,41,14,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Contract,62.55,0,1,Check-Out,Joseph Ochoa,vmaldonado@example.net,(388)866-3437,4695676861652122293,2024-09-05 +City Hotel,0,0,2017,August,32,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,B,0,No Deposit,15.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,James Watson,mvasquez@example.net,514.223.5161x93542,6511889328200626,2025-06-19 +City Hotel,0,133,2017,May,22,30,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.49,0,1,Check-Out,Karl Branch,roberttaylor@example.org,9728179863,4608322829705546,2024-12-25 +City Hotel,0,52,2017,August,33,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,11.0,221.0,0,Transient,109.51,0,0,Check-Out,Michael Abbott,rachel17@example.net,001-972-708-3024x43516,4856617448526189896,2025-01-25 +Resort Hotel,1,159,2017,January,5,27,1,2,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,1,No Deposit,39.0,179.0,0,Transient,35.39,0,0,Canceled,Shannon Malone,sweeneyalexandra@example.net,001-768-717-3580,6011278117634838,2025-05-12 +City Hotel,0,38,2017,March,11,15,2,0,1,0.0,0,SC,DEU,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.86,0,1,Check-Out,James Tran,medinajanet@example.com,+1-253-654-4412x2906,2288353488957392,2024-06-11 +City Hotel,0,1,2017,November,45,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,60.0,0,Transient-Party,62.84,0,0,Check-Out,Adam Jackson,suzanne86@example.org,+1-235-820-8819x2463,2718110302058132,2025-10-26 +Resort Hotel,0,0,2017,February,8,20,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,312.0,179.0,0,Group,40.66,1,3,Check-Out,Mr. Richard Knight PhD,richard21@example.net,699.661.7061x46428,180042558952135,2025-11-26 +City Hotel,0,57,2017,May,18,4,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,75.89,0,0,Check-Out,Joseph Williams,abbottjeffrey@example.net,937-267-6984,2276612262144236,2026-01-13 +City Hotel,0,207,2017,September,37,14,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,D,B,1,No Deposit,16.0,213.0,0,Transient,90.47,0,1,Check-Out,Sean Clay,wmedina@example.com,644-376-0166x659,6514587867559231,2024-10-27 +Resort Hotel,0,46,2017,May,19,7,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,28.0,179.0,0,Group,77.46,1,0,Check-Out,Anthony Jones,fhill@example.org,+1-781-614-8387x406,6011252165065310,2025-03-23 +City Hotel,0,62,2017,November,45,10,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,111.88,0,2,Check-Out,Stephanie Elliott,jenniferkennedy@example.com,001-988-578-1600x781,4744867771217960,2025-06-01 +City Hotel,1,22,2017,April,16,17,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.34,0,0,Canceled,Timothy Edwards,gregoryjoseph@example.com,+1-201-692-3839x7306,4204910287665561920,2024-10-29 +City Hotel,1,157,2017,June,23,4,1,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient,105.09,0,0,Canceled,Laurie Goodwin,ryanannette@example.net,001-680-830-3717x45512,3533369101613726,2025-10-05 +Resort Hotel,1,39,2017,March,11,12,1,0,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,64.75,0,0,Canceled,Jennifer Jones,perezcarrie@example.com,455.371.3959,213192708949688,2026-01-16 +Resort Hotel,1,13,2017,March,13,25,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,29.0,179.0,0,Transient,101.53,0,0,Canceled,David Davenport,fernandezwilliam@example.com,001-713-725-0896x8001,342799048384428,2025-07-05 +Resort Hotel,0,42,2017,July,29,17,0,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,130.82,0,1,Check-Out,Steven Rivera,jennifermeyer@example.net,(462)784-3713,4762520830697,2024-05-01 +Resort Hotel,0,11,2017,December,49,5,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,G,2,No Deposit,243.0,179.0,0,Transient,136.32,1,2,Check-Out,Brenda Hinton,logangraves@example.net,643-311-2132x237,340634297755568,2025-01-21 +City Hotel,0,162,2017,April,14,5,1,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,135.62,0,0,Check-Out,Kathryn Mccann,lgarcia@example.com,+1-342-778-3186x984,3544112090712472,2025-06-11 +City Hotel,0,33,2017,September,36,3,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,209.37,0,2,Check-Out,Jeffrey Roberson,willissandra@example.net,+1-483-698-0366,180053741465935,2025-09-04 +City Hotel,1,203,2017,August,32,4,2,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.98,0,0,Canceled,Randy Friedman,acostasarah@example.org,001-662-473-9400x35463,2433585713971169,2025-05-01 +Resort Hotel,1,39,2017,March,11,11,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,241.0,179.0,0,Transient,85.73,0,1,Canceled,Raymond Johnson,matthewrios@example.com,+1-834-843-3033x74308,4348430342041227,2024-03-27 +Resort Hotel,0,151,2017,August,31,1,2,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,224.22,0,0,Check-Out,Willie Henry,stephanielewis@example.org,398.650.0774x5451,569671401051,2026-01-17 +City Hotel,0,155,2017,June,27,29,1,3,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,66.0,179.0,0,Transient-Party,109.53,0,0,Check-Out,Todd Reynolds,david66@example.com,001-514-523-3602x12814,4694469404011342874,2025-03-12 +Resort Hotel,0,101,2017,September,37,11,2,6,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,137.93,1,1,Check-Out,Mary Miller,stephaniewilliams@example.net,001-680-296-3420x988,3563658442726939,2024-04-10 +City Hotel,1,66,2017,October,40,4,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,127.06,0,0,Canceled,Rebecca Marquez,philip09@example.org,001-675-991-6992x81701,060403909637,2026-03-07 +Resort Hotel,1,91,2017,December,50,16,2,2,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient-Party,88.8,0,0,Canceled,Christian Dawson,zacharyrivera@example.com,718.278.3096,2715891836202477,2025-11-24 +City Hotel,1,400,2017,August,34,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,B,B,0,No Deposit,1.0,179.0,0,Transient-Party,125.19,0,1,Canceled,Nancy Stewart,joneschris@example.org,+1-556-245-4921x45158,3543122497831149,2024-11-10 +City Hotel,0,20,2017,November,45,10,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.63,0,0,Check-Out,Aaron Parker,anthonyhoward@example.org,(819)258-8850x4274,639034776414,2026-02-06 +City Hotel,0,97,2017,February,6,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,79.14,0,1,Check-Out,Derrick Anderson,vrich@example.com,001-423-323-7273,4023556550125,2025-10-31 +City Hotel,1,213,2017,August,34,20,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,115.7,0,0,Canceled,Jerry Peters,jennifer77@example.net,(961)651-2123,2335781406487436,2025-02-05 +City Hotel,0,27,2017,December,51,22,1,1,2,0.0,0,BB,ESP,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,80.71,1,0,Check-Out,Alexander Gomez,brewercalvin@example.org,001-982-719-8837,180070340790281,2026-03-19 +City Hotel,0,2,2017,August,35,27,2,1,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,2,No Deposit,16.0,179.0,0,Transient,136.48,1,0,Check-Out,Kyle Nguyen,samantha28@example.net,(293)250-1677x10768,30334307996824,2024-06-25 +Resort Hotel,0,14,2017,December,51,23,0,2,2,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,44.53,0,0,Check-Out,Edgar Hughes,usullivan@example.com,001-279-774-7747x5823,4286612370008,2025-11-25 +Resort Hotel,0,22,2017,September,39,24,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,63.58,1,1,Check-Out,Steven Stein,drakemichelle@example.org,001-615-305-7161x9435,5569639973369611,2025-12-23 +Resort Hotel,0,20,2017,September,39,24,0,4,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,223.66,1,2,Check-Out,Laura Jackson,sarah52@example.com,(213)500-2205,4159117620430820,2024-12-23 +City Hotel,0,302,2017,July,27,2,0,1,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,159.36,0,0,Check-Out,Charles Turner,rogersnatalie@example.net,916-600-0072,3593873514601019,2025-05-08 +Resort Hotel,1,356,2017,January,3,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,142.0,179.0,0,Transient,34.54,0,0,Canceled,Arthur Hamilton MD,marie64@example.org,780-829-7114x07100,4591179936194,2025-09-17 +Resort Hotel,0,12,2017,April,15,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,98.26,1,0,Check-Out,Mr. David Wright,toddbriggs@example.net,561.336.2270x6672,4952132959035947239,2024-09-06 +City Hotel,1,386,2017,March,13,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,79.65,0,0,Canceled,Linda Gonzalez,garciagary@example.org,390-580-9112x01671,6507803912228402,2025-03-16 +City Hotel,0,277,2017,August,35,30,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,223.47,0,1,Check-Out,Eric Rush,jose86@example.org,(909)474-2496x699,30365504604779,2024-10-04 +City Hotel,0,120,2017,August,32,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,179.57,0,0,Check-Out,Manuel Brock,chenderson@example.org,235-232-1526,4865309104919,2024-06-06 +Resort Hotel,0,35,2017,July,27,4,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Contract,102.36,1,0,Check-Out,George Ochoa,michael85@example.net,+1-782-628-1959x4127,4813737450267428,2024-05-13 +Resort Hotel,0,196,2017,May,22,30,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,305.0,179.0,0,Transient-Party,40.77,0,0,Check-Out,Valerie Taylor,zmurphy@example.org,393-376-7540x79974,378698113211424,2025-09-02 +Resort Hotel,1,140,2017,April,15,10,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Canceled,Travis Harris,zreed@example.com,836-276-1489,2262766666005512,2024-10-31 +City Hotel,1,13,2017,January,2,2,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,10.0,179.0,0,Group,62.7,0,1,Canceled,Vincent Novak,morrowmichael@example.org,+1-715-823-3289,6011262984512483,2024-08-30 +Resort Hotel,0,4,2017,August,33,14,0,1,2,1.0,0,FB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,87.88,0,0,Check-Out,Michael Henry,justin32@example.net,944-276-5632x6415,2288475225172686,2024-12-17 +City Hotel,1,114,2017,June,26,27,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,127.83,0,2,No-Show,Dana Bennett,pagerachel@example.org,3695387957,4474418648740424,2024-07-29 +Resort Hotel,1,85,2017,November,45,8,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,84.74,0,0,Canceled,Jenna Wilson,simmonsjennifer@example.net,+1-405-816-3359x812,6585958165832865,2024-08-20 +City Hotel,0,13,2017,October,40,6,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,72.0,0,Transient-Party,30.52,0,2,Check-Out,Leslie Gardner,rthompson@example.org,001-977-210-8800,30486905300799,2024-06-02 +City Hotel,0,55,2017,September,37,12,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,83.92,0,2,Check-Out,Krista Benton,jessica61@example.org,(422)235-8356,4136803066950623,2026-01-13 +Resort Hotel,0,30,2017,May,19,9,0,2,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,145.0,179.0,0,Transient-Party,3.03,0,0,Check-Out,Michael Gonzales,ydavis@example.org,221-903-9816x549,6581912170639033,2024-05-29 +City Hotel,0,58,2017,June,26,25,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,119.85,0,1,Check-Out,Michael Fuentes,orradrian@example.com,586.953.9354x2341,2286831276827804,2025-02-08 +City Hotel,0,39,2017,June,23,3,2,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,129.85,0,1,Check-Out,Jennifer Porter,courtney92@example.org,338.779.5256x5609,502019969927,2025-06-01 +Resort Hotel,0,4,2017,January,3,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,242.0,179.0,0,Transient,42.07,1,0,Check-Out,Dana Hopkins,wandaharvey@example.net,+1-337-331-4719,4239250623176894,2024-10-31 +City Hotel,0,52,2017,April,14,4,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,84.78,0,0,Check-Out,Rachel Jones,sjohnson@example.net,(981)476-2669,3536719590906782,2025-12-27 +Resort Hotel,0,44,2017,October,41,11,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,275.0,179.0,0,Transient,53.09,0,0,Check-Out,Karen Morales DDS,rowens@example.com,+1-933-536-3920x3847,6592128656563525,2025-07-27 +Resort Hotel,0,87,2017,December,50,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient,83.27,0,0,Check-Out,Melissa Stephens,xfrost@example.com,001-370-762-5428,4501830154487512,2025-06-18 +Resort Hotel,0,42,2017,July,31,27,3,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,354.0,179.0,0,Transient,116.04,0,1,Check-Out,Heather Woodard,paul39@example.net,5977417700,6552633123942929,2025-08-12 +City Hotel,1,95,2017,November,46,12,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.66,0,0,Canceled,Margaret Miller,tyler46@example.net,425.827.4084,3542734842953286,2026-02-14 +Resort Hotel,0,93,2017,September,36,2,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,130.56,1,1,Check-Out,Mary Kelly,doylemary@example.com,786-733-3666,371638146940463,2026-01-04 +City Hotel,1,117,2017,August,33,13,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,139.66,0,0,No-Show,Amanda Terrell,christine09@example.com,(811)957-7862x5533,4708715847710142,2024-10-22 +City Hotel,1,119,2017,August,32,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,19,Transient,105.15,0,0,Canceled,Jennifer Goodwin,guzmanandrea@example.org,7929812968,4913065983611,2024-05-27 +Resort Hotel,1,217,2017,September,36,5,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,288.0,179.0,0,Transient-Party,47.69,0,0,Canceled,Jessica Smith,candace05@example.com,898-986-7557x01703,4602841254112942169,2024-07-10 +City Hotel,1,121,2017,March,12,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,40,Transient,117.04,0,0,Canceled,Jorge Stone,farrelllori@example.com,910.580.9947,3518557696704525,2024-09-08 +Resort Hotel,0,5,2017,July,31,27,2,10,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,H,1,No Deposit,14.0,179.0,0,Transient,139.06,1,0,Check-Out,Laura Griffin,iduran@example.net,(423)354-6134,4912019853615,2024-07-29 +City Hotel,0,84,2017,April,17,26,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,18.0,179.0,0,Transient,131.75,0,0,Check-Out,Raymond Chapman,jessica03@example.org,(581)904-0426,4038313809471522,2024-09-28 +Resort Hotel,1,207,2017,May,19,9,2,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,106.51,0,0,Canceled,Haley Johnson,melissa08@example.com,725.367.2492x9285,2242499275619409,2024-05-30 +Resort Hotel,0,4,2017,October,43,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,18.0,257.0,0,Transient-Party,56.57,0,0,Check-Out,Jason Nixon,allenaaron@example.org,+1-850-675-6120x47686,213121322819563,2024-07-22 +Resort Hotel,0,11,2017,April,15,11,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,137.78,0,1,Check-Out,Todd Thomas,robert76@example.net,001-858-890-1377,3545553411957099,2024-06-24 +Resort Hotel,0,149,2017,March,13,31,1,6,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient,44.34,0,0,Check-Out,Jesse Clark,jspencer@example.com,604-899-3289x262,4966188022937251,2024-09-15 +Resort Hotel,0,153,2017,January,2,6,2,4,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,73.17,0,0,Check-Out,Mr. Jeffrey Horton,colemankelly@example.org,3127340099,6578660421266396,2024-06-10 +City Hotel,0,16,2017,August,34,21,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,183.0,72.0,0,Transient,159.27,0,0,Check-Out,Eric Patrick,terrellcindy@example.org,3286266218,6570698944000395,2024-10-24 +City Hotel,0,14,2017,July,28,10,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,115.53,0,0,Check-Out,Samuel Wong,harrisoneric@example.net,+1-543-648-2564x99710,3545323063719902,2025-10-21 +City Hotel,0,1,2017,November,45,7,2,0,3,0.0,0,SC,,Complementary,Direct,0,0,0,B,K,1,No Deposit,10.0,179.0,0,Transient-Party,3.29,0,0,Check-Out,Carly Riggs,lsimpson@example.com,506.708.5292,4697031564615162499,2025-11-24 +City Hotel,0,35,2017,July,30,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,43.68,0,0,Canceled,Christopher Moore,michael57@example.org,(991)316-6792,501852646246,2026-02-03 +Resort Hotel,0,1,2017,April,17,23,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,225.86,0,0,Check-Out,Tina Hall,jonathanmcneil@example.net,001-259-514-1296,4301342366789196144,2024-09-20 +City Hotel,0,165,2017,August,35,30,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,235.0,179.0,0,Transient,181.14,0,2,Check-Out,Cody Davidson,gonzalesnicole@example.net,524-541-0115x448,2543676944449641,2024-07-29 +City Hotel,1,144,2017,April,18,30,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.6,0,3,No-Show,Allen Mendez,browndenise@example.com,(302)204-7707,38894662220344,2025-10-01 +City Hotel,0,398,2017,May,19,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,118.45,0,1,Canceled,Kevin Price,coconnell@example.com,(579)403-9853x7798,570885365298,2025-05-09 +City Hotel,1,143,2017,July,27,1,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,262.0,179.0,0,Transient,104.89,0,0,Canceled,Christine Goodwin,denisemaynard@example.net,337-606-0362,4762445361102269,2025-08-28 +City Hotel,0,1,2017,July,31,31,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,K,0,No Deposit,8.0,179.0,0,Transient,2.88,0,1,No-Show,Amy Garcia,mary43@example.net,798.905.2922x9549,4810316550780296480,2025-02-02 +City Hotel,1,10,2017,June,24,12,0,5,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,1,No Deposit,14.0,331.0,0,Transient,113.78,0,0,Canceled,Chelsea Nguyen,xmitchell@example.org,635.762.3932,4875497389961345,2024-12-02 +City Hotel,1,146,2017,June,27,30,4,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,136.95,0,0,Canceled,Dennis Huffman,jclark@example.com,366.938.7221,4644353353392746209,2026-02-17 +City Hotel,1,195,2017,August,35,27,2,5,2,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Margaret Harper,annevillarreal@example.net,609-683-0758x331,2484769353772057,2024-11-13 +City Hotel,0,107,2017,June,24,12,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,169.0,179.0,0,Transient,122.84,0,0,Check-Out,Laurie Bailey,williamgriffith@example.com,(764)560-5909x522,30452081355205,2025-07-09 +City Hotel,0,3,2017,March,13,23,2,0,2,0.0,0,BB,,Complementary,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,0.75,1,0,Check-Out,Lisa Cervantes,johnathancraig@example.org,770.863.0938x08957,4245037652010,2025-02-22 +Resort Hotel,0,13,2017,May,19,4,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,84.96,1,0,Check-Out,Elizabeth Mendez,derrick64@example.org,502.827.0394x5964,501893094984,2024-11-07 +City Hotel,1,313,2017,September,36,5,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,82.0,179.0,0,Transient,62.89,0,0,Canceled,Cesar Wilson,dgomez@example.com,+1-346-407-8935x4258,371510309117546,2025-01-28 +Resort Hotel,0,154,2017,April,15,8,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,46.99,0,2,Check-Out,Clayton Steele,jason30@example.com,9828132913,349823262510543,2024-06-07 +City Hotel,0,155,2017,July,29,20,0,1,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,113.27,0,0,Check-Out,Jennifer Taylor,bruce69@example.com,8878098501,3536502414694309,2025-10-19 +City Hotel,1,195,2017,June,25,20,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.3,0,1,Canceled,Cody Reid,cory82@example.com,334-280-8908x3105,4348677572897583,2024-08-08 +Resort Hotel,0,40,2017,October,43,23,0,4,2,2.0,0,HB,USA,Direct,Direct,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,171.58,1,0,Check-Out,Maria Cooke,stephenmorgan@example.org,351-910-6100,6011289077514282,2024-10-14 +Resort Hotel,0,50,2017,April,16,14,1,5,3,2.0,0,BB,DEU,Direct,Direct,0,0,0,C,I,0,No Deposit,243.0,179.0,0,Transient,3.8,1,0,Check-Out,Katherine Taylor,benjaminperkins@example.net,(660)549-1913x21545,370812195392618,2024-05-23 +Resort Hotel,0,25,2017,May,19,8,1,0,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,I,1,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Jerry Brown,patriciamoore@example.org,655.473.1221,4710267278391138385,2025-07-19 +City Hotel,0,49,2017,November,45,5,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.27,0,1,Check-Out,Adam Taylor,wellsdavid@example.com,(225)414-0881,213135162383993,2024-05-11 +City Hotel,0,20,2017,May,20,17,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.89,0,0,Check-Out,Tracey Wagner,royhenry@example.org,+1-378-957-4215x920,36664743086622,2024-08-18 +City Hotel,1,195,2017,October,43,25,3,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient-Party,80.59,0,0,Canceled,Michael Perry PhD,kleon@example.org,264-376-4255x07165,6011888747693754,2025-12-24 +City Hotel,0,13,2017,April,17,22,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient-Party,137.79,0,1,Check-Out,Bradley Johnson DDS,petersoncurtis@example.net,001-705-886-7058x0941,4687505338923329,2024-08-22 +City Hotel,0,145,2017,June,23,5,2,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,118.18,0,2,Check-Out,Donald Medina,lorireese@example.org,870-918-6650,4899726900104296,2025-08-04 +Resort Hotel,0,5,2017,November,48,26,2,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,106.42,0,0,Check-Out,Jim Newton,lsmith@example.com,+1-636-590-1453x5916,4067307134619346,2024-09-26 +Resort Hotel,0,16,2017,November,45,6,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,236.0,179.0,0,Transient,48.92,0,1,Check-Out,Krista Wilson,harrisonmichelle@example.net,+1-421-619-8630x85629,3534116215702393,2024-12-01 +City Hotel,0,41,2017,April,16,18,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,95.9,0,1,Check-Out,Reginald Morrow,michael31@example.org,(436)588-2615,4275019180722,2024-05-15 +City Hotel,1,44,2017,October,41,12,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.87,0,0,Canceled,Rodney Williams,crystalcarroll@example.com,001-734-230-1201x284,180040404444471,2025-05-05 +City Hotel,1,308,2017,August,33,12,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,B,A,0,Non Refund,16.0,179.0,0,Transient,191.65,0,0,Canceled,Kimberly Fritz,mlee@example.com,917.672.8592x09252,36368073166042,2025-09-26 +Resort Hotel,0,39,2017,September,36,6,2,3,2,0.0,0,BB,,Groups,Corporate,0,0,0,A,D,0,No Deposit,104.0,222.0,0,Transient-Party,50.23,0,0,Check-Out,Ronald Potter,tayloralbert@example.com,(345)333-6280,2720395475543590,2024-12-26 +Resort Hotel,0,276,2017,April,17,21,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,106.59,0,2,Check-Out,Zachary Cole,nicholas74@example.com,(346)677-4337x756,4682388623524445014,2026-01-26 +City Hotel,0,63,2017,September,39,26,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,114.53,0,1,Check-Out,Robert Gonzales,stevengriffith@example.org,001-222-601-8290,6011894314977786,2024-12-07 +Resort Hotel,0,12,2017,November,45,10,0,1,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.83,0,1,Check-Out,Patricia Young PhD,jking@example.org,(282)990-9160x73974,180059858246711,2025-01-25 +Resort Hotel,1,210,2017,November,46,17,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,27.0,179.0,75,Transient,51.98,0,0,Canceled,Heather Page,robert85@example.org,(520)592-8824x0307,588411609989,2024-05-27 +City Hotel,0,44,2017,August,36,31,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,140.02,0,2,Check-Out,Carol Taylor,mjohnson@example.org,387.831.6776x21058,2282515070194958,2025-12-26 +Resort Hotel,1,90,2017,March,12,23,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,126.0,179.0,0,Transient,50.49,0,0,Canceled,Daniel Brown,bryceharvey@example.org,+1-887-607-0721x63520,341081716216336,2025-07-06 +Resort Hotel,0,142,2017,October,41,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,45.19,1,1,Check-Out,Douglas Ryan,joseph38@example.org,+1-677-486-3401,6011703244502061,2025-12-19 +Resort Hotel,0,248,2017,October,41,9,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,No Deposit,31.0,179.0,0,Contract,131.34,0,2,Check-Out,Michael Roberts,martin40@example.org,001-612-575-3233x985,3588340935145601,2024-08-11 +Resort Hotel,0,85,2017,May,21,23,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,91.0,179.0,0,Transient,120.26,1,0,Check-Out,Scott Duke,thomasnelson@example.com,360.211.4097x127,4043852980696665,2025-05-27 +City Hotel,0,0,2017,March,9,3,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,14.0,210.0,0,Transient,58.45,0,0,Check-Out,Anna Estes,ryan22@example.com,230.826.5582x41408,4402012091722517389,2024-09-04 +Resort Hotel,0,3,2017,September,38,17,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,70.0,179.0,0,Group,4.94,0,1,Check-Out,Tamara Riddle,ashley27@example.org,(277)809-4933,180083637036292,2025-12-14 +Resort Hotel,1,36,2017,August,32,11,1,5,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,252.0,0,0,Canceled,Beth Cline,theresasmith@example.com,001-215-431-1247x44343,345964443202487,2025-05-24 +City Hotel,0,5,2017,November,44,4,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,93.04,0,1,Check-Out,Michael Poole,christian14@example.net,(314)621-8514x4419,676140122521,2025-06-03 +City Hotel,0,372,2017,September,37,12,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.28,0,1,Check-Out,Megan Burns,qmartin@example.net,687.935.3042x2824,3514478040379290,2024-10-19 +City Hotel,1,79,2017,June,23,5,1,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,91.0,179.0,0,Transient,119.31,0,0,Canceled,Debra Perry,mromero@example.org,(850)829-4624,378732052907344,2025-05-11 +City Hotel,1,200,2017,October,41,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,2,No Deposit,80.0,179.0,0,Transient-Party,99.74,0,0,Check-Out,Mark Beard,marcus81@example.org,208-507-6156,501828387479,2024-12-04 +City Hotel,0,3,2017,February,8,22,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.27,0,1,Check-Out,Jose Ramirez,bullockryan@example.org,001-583-241-4504x360,4429191672492438,2024-05-06 +City Hotel,0,42,2017,March,13,26,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,88.72,1,0,Check-Out,Jackie Clements,heather09@example.net,207.545.9780,30022831768179,2024-10-30 +City Hotel,1,1,2017,June,24,13,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,E,1,No Deposit,14.0,169.0,0,Transient,125.21,0,0,No-Show,Aaron Schroeder,jessicaweaver@example.com,476.743.1715x052,213165710859731,2024-05-03 +City Hotel,0,38,2017,December,48,1,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,107.65,0,1,Check-Out,Monica Ellis,jonesduane@example.com,3542726097,2247708919421914,2024-06-20 +City Hotel,0,6,2017,October,41,12,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,156.93,0,0,Check-Out,Heather Brown,pateljoseph@example.com,+1-878-441-4770,2560659848535093,2025-01-10 +Resort Hotel,0,193,2017,March,10,5,1,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,91.37,0,0,Check-Out,Claudia Jordan,jonathon00@example.org,(715)681-1232x23644,4595888475830288,2025-04-06 +City Hotel,0,8,2017,December,49,8,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.24,0,2,Check-Out,Derrick Clayton,jon31@example.net,+1-777-482-3012x353,2240300663166205,2025-10-23 +Resort Hotel,0,53,2017,March,11,9,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,224.71,1,3,Check-Out,Kenneth Knight,davidmarquez@example.com,792-214-9514x827,502087711201,2024-09-06 +Resort Hotel,0,4,2017,July,28,6,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,199.75,0,1,Check-Out,Mr. Michael Williams,brandy23@example.org,(441)608-8643x04967,4142551438155596449,2024-09-13 +City Hotel,0,108,2017,July,27,4,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.75,0,3,Check-Out,Richard Stevens,omartin@example.com,(320)602-2559,4787729864717710,2026-02-13 +City Hotel,1,94,2017,June,25,18,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.51,0,1,No-Show,Scott Alexander,morgan38@example.net,(627)794-4446x85175,375037159911477,2024-08-29 +City Hotel,1,15,2017,July,29,20,1,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,109.54,0,2,Canceled,Tyler Harris,kevincoleman@example.com,001-566-567-4334,30482805298597,2025-06-03 +City Hotel,0,37,2017,July,27,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,124.61,0,0,Check-Out,Bonnie Santos,isaac32@example.com,397.960.9812x97752,6011348762261342,2024-06-26 +City Hotel,1,411,2017,October,40,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,76.91,0,0,Canceled,Timothy Hill,jessicaalvarez@example.com,(726)966-8585x926,5437800847868440,2025-06-05 +City Hotel,1,414,2017,May,20,17,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.17,0,0,Canceled,Danielle Watson,ericjenkins@example.com,+1-621-381-7216x02766,36977536989012,2025-01-01 +Resort Hotel,0,132,2017,March,13,31,1,3,1,0.0,0,BB,RUS,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,75.58,0,0,Check-Out,Carol Sanders,jamesamy@example.org,7052852683,3538287694882695,2024-07-04 +Resort Hotel,1,147,2017,March,11,17,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,45.27,0,2,Canceled,Michael Young,david54@example.net,001-571-510-9983x795,30062998019032,2026-01-05 +City Hotel,0,7,2017,May,20,16,1,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,240.78,0,2,Check-Out,Michele Smith,ctaylor@example.com,587.256.2479x458,3547045529614892,2024-05-16 +City Hotel,1,141,2017,July,31,30,0,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,146.53,0,2,Canceled,Casey Perez,jeremy55@example.com,542.941.7419x09936,639081994522,2024-11-19 +Resort Hotel,0,0,2017,October,44,28,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,43.94,0,0,Check-Out,Alexandra Dominguez,traci91@example.net,(713)333-8198x00778,4964287840489800,2026-02-20 +City Hotel,1,142,2017,November,47,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,85.27,0,0,Canceled,Virginia Henderson,robinsonjoseph@example.com,860-208-7770x92049,180059388686345,2025-05-14 +City Hotel,0,21,2017,October,42,20,2,1,1,0.0,0,BB,IRL,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,221.0,0,Transient-Party,82.83,0,0,Check-Out,Benjamin Reyes,joshua99@example.com,+1-724-640-1128x282,3531632527989083,2026-02-19 +City Hotel,1,376,2017,October,43,26,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,44.71,0,0,Canceled,Ashley Edwards,jason91@example.org,(753)828-3567,3586338309458040,2024-12-26 +Resort Hotel,0,103,2017,March,10,10,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,E,C,0,No Deposit,163.0,179.0,75,Transient-Party,193.93,0,0,Check-Out,Breanna Ayala,walkerbrian@example.net,+1-945-221-0805x427,180081538437833,2025-05-31 +Resort Hotel,1,10,2017,March,13,27,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,246.0,179.0,0,Transient,246.7,0,0,Canceled,Brandi Haney,dustinhuff@example.org,001-745-496-7516x00459,30185883872114,2025-04-26 +City Hotel,0,173,2017,March,13,27,2,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,131.2,0,2,Check-Out,Joseph Smith,danielconley@example.com,410.850.0265x949,3595854940382000,2024-12-22 +Resort Hotel,0,86,2017,May,19,9,1,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,46.3,1,0,Canceled,Jessica Bowen,orozcorebecca@example.net,876.826.9682x6997,4404978442822533,2024-12-03 +Resort Hotel,1,107,2017,March,13,29,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,34.0,179.0,0,Transient,86.66,0,0,Canceled,Brittany Jenkins,wbarnes@example.org,534.755.5793x58520,4516319668140877,2025-06-17 +City Hotel,0,51,2017,August,31,5,2,1,1,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,226.18,0,3,Check-Out,Shannon Miller,rclark@example.org,(692)648-9034x007,180065951263636,2024-04-22 +Resort Hotel,0,38,2017,January,2,10,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,53.58,0,1,Check-Out,Paul Lawrence,hernandezdana@example.net,6009672865,6011173128249371,2025-03-31 +Resort Hotel,0,4,2017,April,14,1,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,53.47,0,1,Check-Out,Victor Edwards,jefferydavis@example.com,+1-609-656-4931x904,3509292509972181,2025-06-06 +Resort Hotel,0,42,2017,April,15,11,2,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient-Party,129.68,0,1,No-Show,Donald Miller,sarah28@example.org,+1-305-650-0103x4393,3524249180052734,2025-03-13 +City Hotel,0,2,2017,January,3,13,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.15,0,1,Check-Out,Lindsay Lawson,riddlerebecca@example.com,659-681-0413,4072261164623,2024-05-03 +City Hotel,0,40,2017,May,20,18,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,201.82,0,3,Check-Out,Melissa Abbott,ajones@example.com,846.783.3298x877,4716038909942457,2024-12-05 +City Hotel,1,193,2017,July,27,4,0,4,2,0.0,0,BB,PRT,Online TA,Corporate,0,1,0,A,A,2,No Deposit,12.0,179.0,0,Transient,135.8,0,0,Canceled,Elizabeth Holmes,alexandra04@example.org,727-585-5133x423,180000810099988,2025-09-08 +Resort Hotel,0,302,2017,July,27,8,1,2,2,0.0,0,Undefined,POL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,324.0,179.0,0,Transient-Party,69.61,1,0,Check-Out,Nicole Phillips,brownsarah@example.com,001-311-341-0063x828,4000532007607397,2026-01-17 +City Hotel,0,14,2017,June,26,24,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,137.89,0,0,Check-Out,Steven Blevins,privera@example.org,+1-336-835-8612x668,4336891015632,2024-12-04 +City Hotel,0,43,2017,November,48,26,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.47,0,0,Check-Out,Brian Porter MD,melinda93@example.com,280.344.6340x7141,3582385831625293,2025-02-26 +City Hotel,1,153,2017,August,35,24,2,3,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,218.57,0,2,Canceled,Vanessa Hatfield,dustinliu@example.org,597-748-9169x7605,36726060486568,2024-04-14 +City Hotel,0,414,2017,October,43,22,0,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,100.88,0,0,Check-Out,Bonnie Valencia,paulayala@example.net,890.590.8616,4631279367633,2025-08-07 +City Hotel,0,318,2017,October,40,4,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,83.0,179.0,0,Group,105.54,0,3,Check-Out,Holly Vega,joseph46@example.com,949.788.4368,38315004143325,2025-11-27 +Resort Hotel,0,135,2017,March,14,30,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,2,Refundable,17.0,222.0,0,Transient-Party,61.29,0,0,Check-Out,Tiffany Townsend,alexisturner@example.net,(936)497-6493x9996,2257912631826072,2025-10-05 +City Hotel,0,166,2017,August,32,8,2,5,2,1.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,176.41,1,1,Check-Out,Austin Baker,brett32@example.com,243-291-0389,5241031298076343,2024-04-28 +Resort Hotel,1,88,2017,March,13,30,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,63.63,0,0,Canceled,Antonio Mccormick,aburke@example.org,(444)472-0374x974,3599869012140595,2024-04-08 +City Hotel,0,60,2017,October,41,14,0,2,2,0.0,0,FB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,87.47,0,0,Check-Out,Lori Mason,meltonrachel@example.org,+1-622-489-2990x5828,4312381540107413,2024-04-20 +Resort Hotel,0,2,2017,August,35,27,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,338.0,179.0,0,Transient-Party,56.62,0,0,Check-Out,Michael Miller,xobrien@example.org,+1-983-490-3346x6238,4158385152562341,2025-07-02 +City Hotel,1,20,2017,September,39,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.09,0,0,Canceled,Lisa Ramirez,sandrawilliams@example.net,+1-510-350-0382x776,4486588579818768988,2025-05-31 +City Hotel,0,0,2017,November,45,9,0,1,3,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,5.29,0,0,Check-Out,Jorge Harris,cbutler@example.org,+1-233-274-9569x86972,30295681769022,2024-10-24 +City Hotel,1,121,2017,July,27,1,0,1,2,0.0,0,BB,NOR,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient-Party,107.57,0,0,Canceled,Kimberly Myers,kristina70@example.org,(705)317-2780x42923,502057670809,2025-02-13 +City Hotel,0,30,2017,September,38,19,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,65.0,179.0,0,Transient-Party,143.69,0,0,Check-Out,Sandra Becker,kendrasmith@example.net,001-244-634-3827x076,379785569333858,2026-03-24 +Resort Hotel,0,0,2017,October,40,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,267.0,179.0,0,Transient,45.96,0,1,Check-Out,Michael Blair,brandon58@example.net,536.423.0973x97854,4655252313638680776,2024-08-20 +City Hotel,0,10,2017,April,16,18,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,14.0,45.0,0,Transient,49.46,0,0,Check-Out,Amy Miller,davidmendoza@example.net,(790)624-5911x50335,577493211418,2024-03-30 +Resort Hotel,0,160,2017,July,27,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,239.88,0,2,Check-Out,Jesse Lynch,william99@example.org,781.688.2562x5402,4219788304026572111,2024-06-13 +City Hotel,0,9,2017,March,10,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,45.6,0,0,Check-Out,Patrick Yang,simpsonnatalie@example.net,+1-983-248-6812,4313444302114,2025-09-09 +City Hotel,1,13,2017,May,19,9,1,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,139.15,0,2,Canceled,Michael Miles,qwagner@example.com,455.399.9716x308,4274389915944555,2025-09-27 +Resort Hotel,1,19,2017,May,21,23,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,120.54,0,1,Canceled,Troy Mills,joshuamurillo@example.org,703-415-0995x24894,4124005888554424553,2025-07-15 +City Hotel,0,189,2017,May,19,6,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,125.61,0,1,Check-Out,Michelle Jackson,slozano@example.com,(766)776-9660,4222798369577104,2025-07-23 +City Hotel,1,299,2017,April,18,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.09,0,0,Canceled,Richard Adams,abryant@example.net,(402)768-7076x201,4357319660751084986,2026-02-28 +City Hotel,1,18,2017,July,30,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,42,Transient,160.05,0,0,Canceled,Patricia Johnson,nancypreston@example.org,001-458-810-7128,582379464883,2024-10-19 +Resort Hotel,1,315,2017,May,20,17,4,10,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,114.1,0,0,Canceled,Denise Brown,zknight@example.com,913-864-2121,6011716419125427,2024-04-06 +Resort Hotel,1,147,2017,June,24,9,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,Laura Jones,angelawilliams@example.com,9919595312,4973780600971628,2025-10-24 +Resort Hotel,0,15,2017,February,8,23,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,136.0,179.0,0,Transient,70.5,0,0,Check-Out,Ian Porter,tibarra@example.net,(477)394-5318x031,4169372556106310,2025-06-01 +Resort Hotel,0,2,2017,August,35,30,1,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,14.0,179.0,75,Transient-Party,150.81,1,3,Check-Out,Holly Scott,gabrielle50@example.org,(202)895-3952,30473035575888,2025-01-19 +Resort Hotel,0,7,2017,June,23,5,3,10,3,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,151.85,0,1,Check-Out,Kenneth Sharp,jamesrogers@example.net,238-385-6459x4673,6011454963030203,2024-05-15 +City Hotel,1,1,2017,August,32,5,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,167.63,0,1,Canceled,Jordan Williams,susangonzalez@example.net,8568117852,060483436980,2025-06-11 +Resort Hotel,0,1,2017,January,4,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,13.0,242.0,0,Transient,43.95,1,1,Check-Out,Dana Ruiz,terri97@example.org,236-491-1888x636,2284033004511964,2026-03-23 +Resort Hotel,0,255,2017,March,12,22,2,2,3,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,243.0,179.0,0,Transient-Party,76.12,1,2,Check-Out,Chris Velazquez,kevingraham@example.com,+1-498-706-2967x2119,213179858099125,2024-08-07 +Resort Hotel,0,100,2017,May,22,28,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,38.85,0,0,Check-Out,Kristen Sloan,claudialowe@example.com,(877)647-4849,4616190926082758,2025-07-21 +City Hotel,1,55,2017,August,31,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,121.21,0,0,Canceled,Jennifer Morris,kyle48@example.com,001-931-513-5011x74733,564790298603,2024-12-27 +City Hotel,0,4,2017,October,43,26,1,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,93.95,0,0,Check-Out,Nathan Nelson,oalexander@example.com,001-812-574-7895,4746211993605157,2025-11-10 +Resort Hotel,1,140,2017,October,43,22,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,45.56,0,1,Canceled,Jake Shaw,ashley94@example.org,532-903-6252,4068896166774072572,2026-03-22 +Resort Hotel,1,356,2017,July,31,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,58.04,0,0,Canceled,Cassie Brock,nicholastodd@example.org,282.810.2397x29991,577228924301,2024-11-11 +City Hotel,0,0,2017,February,9,26,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Group,97.02,0,2,Check-Out,Dr. Andrea Marshall,willisjames@example.org,+1-558-491-3177x503,30365151425619,2025-05-04 +City Hotel,0,1,2017,June,23,2,2,2,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,138.79,0,1,Check-Out,Ryan Murphy,sgeorge@example.com,(846)870-4183x4900,4122119671832924,2024-10-15 +Resort Hotel,0,34,2017,October,41,9,1,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,77.17,0,1,Check-Out,Aimee Gonzalez,alvarezmichael@example.com,+1-269-466-2672x06426,4785972467364884,2024-11-20 +City Hotel,1,10,2017,January,2,1,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,16.0,179.0,0,Transient,78.83,0,0,Canceled,Elizabeth Dean,lisaconley@example.org,001-823-994-1479x1132,4007030985085275,2024-10-26 +Resort Hotel,0,13,2017,March,11,14,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,2,No Deposit,92.0,179.0,0,Transient-Party,75.66,0,0,Check-Out,Kevin Snyder,simskathryn@example.com,600.987.8274,502073181492,2024-11-18 +City Hotel,0,2,2017,August,32,7,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,112.7,0,1,Check-Out,Christie Mccullough,dillon50@example.org,283.313.9016,2712903578729386,2025-07-12 +Resort Hotel,1,0,2017,May,20,13,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,297.0,179.0,0,Transient,101.72,0,0,Canceled,Danielle Smith,brentjohnston@example.com,+1-305-581-8730x6272,588769466347,2026-03-20 +City Hotel,0,20,2017,August,34,20,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,A,1,No Deposit,9.0,179.0,0,Transient,244.61,0,3,Check-Out,David Reed,tammyalvarez@example.com,2455221451,4981013871287,2025-10-24 +City Hotel,1,11,2017,February,9,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,45.33,0,0,No-Show,Sherry Tapia,batesthomas@example.net,3127799965,060415408255,2025-09-16 +Resort Hotel,0,1,2017,June,23,6,3,7,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,E,C,0,No Deposit,249.0,179.0,0,Transient,218.86,0,0,Check-Out,Matthew Sweeney,mbrown@example.org,325.847.0015,4412596039590923,2025-02-15 +City Hotel,1,327,2017,September,38,18,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,184.0,179.0,0,Transient,87.46,0,0,Canceled,Ashley Moreno,nicolewilson@example.net,(497)414-6798,30322430268500,2024-12-21 +Resort Hotel,0,239,2017,October,42,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,28.0,179.0,0,Transient-Party,58.21,0,0,Check-Out,Johnathan Brown,nancy83@example.net,494-249-7632,4274638117902302,2024-08-19 +City Hotel,1,387,2017,June,26,23,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,121.62,0,0,Canceled,Michelle Davis DVM,mclark@example.net,802-215-9253,3587056299581873,2025-03-10 +City Hotel,0,308,2017,July,29,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,72.6,0,0,Check-Out,Kelly Haynes,williamcooper@example.net,720.367.3717x783,372660895650878,2025-12-09 +Resort Hotel,0,0,2017,August,32,8,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,251.0,179.0,0,Transient,218.53,0,0,Check-Out,William Miller,rmarshall@example.org,001-608-889-5837x112,4864258547586926,2024-09-04 +Resort Hotel,1,77,2017,April,17,21,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,64.6,0,1,Canceled,Casey Wilkins,gjohnson@example.net,851.785.2567x129,2271467550607948,2025-08-21 +City Hotel,1,412,2017,October,40,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.6,0,0,Canceled,Keith Graham,johntaylor@example.net,(745)905-9077,4945553430192,2024-12-17 +Resort Hotel,1,66,2017,July,29,19,0,2,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Cynthia Green,randolphscott@example.com,(235)511-2655x603,4811533231427199776,2025-10-04 +City Hotel,0,6,2017,December,52,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,66.27,0,1,Check-Out,Robert Haynes,hamiltonmelissa@example.net,001-957-469-2495x7425,6011705443893191,2024-04-12 +City Hotel,0,46,2017,February,6,3,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.62,0,0,Check-Out,Emily Nelson,jennifer71@example.net,301-568-3418,4111787803601,2025-07-10 +City Hotel,0,2,2017,November,44,1,1,2,2,0.0,0,BB,ESP,Online TA,Corporate,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,105.06,0,2,Check-Out,Dale Chan,craigpeter@example.net,+1-987-396-4401x785,4275286594848756087,2025-04-21 +City Hotel,1,202,2017,June,25,17,4,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,136.23,0,0,Canceled,Brittney Martin,charles31@example.net,229-472-1762,4257762220004,2025-09-21 +Resort Hotel,0,144,2017,March,13,31,1,3,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,67,Transient-Party,99.74,0,0,Check-Out,Jason Herrera,blackwelljoshua@example.net,966-249-6328x95982,4575555903775252,2025-07-27 +City Hotel,0,103,2017,June,26,26,1,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.59,0,0,Check-Out,Christine Parker,mwest@example.org,001-695-458-8614,4219562583197,2024-07-11 +City Hotel,0,63,2017,March,11,14,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,24.0,179.0,0,Transient,83.53,0,1,Check-Out,Bryan Moore,zking@example.net,+1-965-521-5546x193,589908955190,2025-01-11 +City Hotel,0,52,2017,August,32,7,1,1,2,0.0,0,SC,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,126.38,0,3,Check-Out,Samantha Terry,isingh@example.com,310-660-0946,4781888466647430,2025-10-24 +City Hotel,1,12,2017,February,8,23,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.5,0,0,Canceled,Russell Murphy,paul10@example.net,623-565-9908x7772,180098613295167,2024-06-01 +Resort Hotel,0,14,2017,August,32,4,2,5,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Group,133.03,0,1,Check-Out,David Kelly,wdunn@example.org,(764)527-5507x516,213106918186568,2026-02-17 +City Hotel,0,99,2017,April,16,18,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,149.04,0,1,Check-Out,Megan Green,shannonatkinson@example.com,+1-468-727-4950x551,5420671477734239,2025-10-09 +Resort Hotel,0,39,2017,July,29,15,2,1,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,170.0,179.0,0,Transient,89.96,0,1,Check-Out,Amanda Sullivan MD,ruizmark@example.com,3922776869,4606183143311888,2025-09-25 +City Hotel,0,244,2017,September,36,8,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,112.45,0,0,Check-Out,Danielle Murray,jeffreygreene@example.com,9025962408,6545951241256422,2024-07-26 +City Hotel,1,263,2017,August,34,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,75,Transient,90.07,0,0,Canceled,Brenda Smith,timothycarter@example.org,(649)471-1863x1420,30453905378209,2025-01-13 +City Hotel,1,236,2017,August,33,12,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Transient,112.56,0,1,Canceled,Vickie Anderson,stephanie18@example.com,(398)594-9700x810,3538743776739443,2026-02-23 +City Hotel,0,0,2017,March,11,13,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,16.0,296.0,0,Transient,1.82,0,1,Check-Out,Jacqueline Mccoy,pbradford@example.org,899-825-0783,4994485804632480,2026-02-20 +City Hotel,1,205,2017,August,33,16,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,11.0,179.0,0,Transient,250.52,0,0,Canceled,Lauren Green,amandanolan@example.org,+1-779-266-2229x2971,6570959623608399,2026-01-05 +Resort Hotel,0,2,2017,May,21,21,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,354.0,179.0,0,Transient,54.06,0,2,Check-Out,Alison Brown,moraleshayden@example.org,(693)826-5737,30531682946007,2024-04-23 +City Hotel,0,1,2017,December,49,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,78.58,0,1,Check-Out,Jill Anderson,youngdonald@example.net,+1-612-706-6944x017,6011446867417213,2024-10-29 +City Hotel,0,136,2017,November,48,30,1,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.77,1,1,Check-Out,Sandra Rivera,darlene09@example.net,001-882-240-1243,180002142635141,2024-12-04 +Resort Hotel,1,59,2017,June,26,28,4,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient,142.16,0,1,No-Show,Joel Jackson,david95@example.org,001-521-629-8809x34758,4748815651308409726,2024-06-16 +Resort Hotel,1,140,2017,March,11,13,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,49.06,0,2,Check-Out,Samantha Foster,brianevans@example.com,(215)356-4222x8563,6011999885568458,2025-03-19 +City Hotel,0,45,2017,November,46,16,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,74.61,0,0,Check-Out,Michael Thompson,sharonjohnson@example.org,465.418.8877x50982,4078355144528665,2024-06-19 +City Hotel,0,153,2017,June,27,30,0,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient,95.11,0,1,Check-Out,Cody Ramirez,michaelparrish@example.net,(644)742-7702x82280,4832596708420644,2025-10-07 +City Hotel,0,19,2017,March,13,27,1,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.45,0,1,Check-Out,Amanda Harvey,huberregina@example.net,+1-461-300-9236x727,371304081644640,2025-01-08 +City Hotel,1,55,2017,March,9,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,19,Transient,85.39,0,0,Canceled,Edward Jenkins,castanedajames@example.net,+1-721-608-6444x2545,4466548240237831,2025-07-20 +City Hotel,0,112,2017,June,24,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,81.35,0,1,Check-Out,Amy Ramirez,margaretmoore@example.org,263.313.9590,4060783514037,2024-11-08 +City Hotel,0,6,2017,March,12,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient-Party,82.63,0,1,Check-Out,Curtis Wilkerson,bentleyjamie@example.com,(835)701-9962,4081447631684901217,2024-10-18 +City Hotel,1,96,2017,May,21,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,98.0,179.0,0,Transient,124.69,0,0,Canceled,Lydia Pham,courtneyjones@example.net,528-679-3764,6589933116147743,2026-03-04 +City Hotel,0,143,2017,March,10,8,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,94.27,0,0,Check-Out,Virginia Casey,jbuchanan@example.net,+1-281-595-9665x910,30252318741437,2025-05-28 +City Hotel,0,12,2017,July,30,23,2,5,2,2.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,89.64,0,1,Check-Out,Joshua Washington,kimberly61@example.org,439-809-5125,4198033470945119,2024-07-09 +City Hotel,0,3,2017,May,19,4,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,63.0,0,Transient,115.62,0,1,Check-Out,Kathryn Price,debbie79@example.net,(202)712-2907,4957473726658,2024-05-24 +City Hotel,0,1,2017,October,44,31,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,103.92,0,0,Check-Out,Francis Robinson,richardgabriel@example.org,(313)853-1723x9570,6011721838256415,2025-02-06 +City Hotel,0,16,2017,June,24,14,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.31,0,2,Check-Out,Paula Brown,cohentiffany@example.org,440-772-5288x2860,676380987146,2026-01-20 +Resort Hotel,0,96,2017,June,26,23,4,10,2,0.0,0,BB,POL,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,144.06,0,3,Check-Out,Kendra Wang DVM,ryancheryl@example.org,001-535-677-8146x0308,6011449540552307,2024-05-25 +Resort Hotel,1,14,2017,February,8,21,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Canceled,Ariel Sandoval,richard11@example.com,589.327.3774x1076,3553563238420576,2024-11-01 +Resort Hotel,0,0,2017,March,12,20,0,2,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,2,No Deposit,13.0,179.0,75,Transient-Party,27.55,1,1,Check-Out,Robert Stark,trevinojessica@example.com,8083541768,4737398753189224,2025-05-05 +City Hotel,1,174,2017,October,42,17,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,41,Transient,136.62,0,0,No-Show,Zachary Robinson,victoriaholder@example.org,+1-984-959-4597x529,346439875843826,2024-05-11 +City Hotel,0,409,2017,August,33,18,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Rebecca Kelly,brian76@example.org,550-217-2717,4807950161278457134,2025-09-09 +City Hotel,0,20,2017,August,33,18,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,20.0,179.0,0,Transient,81.75,0,1,Check-Out,Sarah Thompson,imcclain@example.org,6635893951,180013518570531,2025-04-01 +City Hotel,0,210,2017,October,43,21,2,6,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,92.12,0,0,Check-Out,Renee Wolfe,margaretgiles@example.net,001-398-875-3723,3569219271594197,2025-02-13 +City Hotel,1,17,2017,July,28,13,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,46.47,0,0,No-Show,Alyssa Haynes,johnrobinson@example.com,767.604.6004,3550409681828472,2024-11-03 +City Hotel,1,177,2017,September,36,5,0,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,41,Transient,101.21,0,0,Canceled,Kristy Hart,devin23@example.net,(277)971-9081,213136776696424,2025-07-24 +City Hotel,0,53,2017,September,37,15,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,207.43,0,1,Check-Out,William Keith,adkinserin@example.net,(929)544-4387,3521930091392516,2024-10-13 +City Hotel,0,14,2017,June,26,22,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.41,0,2,Check-Out,Eric Henry Jr.,frostgregory@example.org,6557820669,4428762491670056,2024-08-11 +Resort Hotel,0,12,2017,January,3,17,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,G,D,1,No Deposit,243.0,179.0,0,Transient,51.37,1,1,Check-Out,Daniel Fox,stephanie76@example.com,001-567-839-7116x120,675921061023,2024-08-18 +City Hotel,0,24,2017,August,33,14,0,2,2,1.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,149.61,0,3,Check-Out,Thomas Harris,bmorgan@example.com,787-362-4776x2704,2244525990830265,2025-11-04 +Resort Hotel,0,0,2017,October,41,11,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient,52.6,1,1,Check-Out,Mitchell Sellers,shernandez@example.com,(834)228-0534x5442,3575036550980927,2024-04-13 +City Hotel,0,5,2017,June,26,23,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,7.0,179.0,0,Transient,144.4,1,1,Check-Out,Erica Johnson,ortizmichelle@example.org,(610)771-2201,180094400416801,2024-05-13 +City Hotel,0,46,2017,March,11,17,0,4,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,26.0,179.0,0,Transient,98.85,0,1,Check-Out,Sylvia Schroeder,caleblopez@example.org,+1-940-367-4527x06915,3515704584495328,2024-08-10 +City Hotel,0,4,2017,March,12,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,1,No Deposit,15.0,77.0,0,Transient,53.59,0,0,Check-Out,Shannon Yu,hcurtis@example.com,(674)541-7166,3537801370746536,2024-12-26 +Resort Hotel,0,145,2017,July,30,25,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,1,A,A,1,No Deposit,247.0,179.0,0,Transient,116.79,0,2,Check-Out,Tom Foster,zavalajulie@example.com,(595)255-0952x5121,2708348065747044,2025-12-04 +City Hotel,0,72,2017,March,11,12,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,85.64,1,1,Check-Out,Eric Taylor,marc82@example.org,589-474-3411,30385164740671,2024-05-22 +City Hotel,0,0,2017,August,32,6,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,196.94,0,1,Check-Out,Travis Conner,vegajonathan@example.org,+1-250-909-6931x5972,2285644633280422,2025-08-28 +Resort Hotel,0,0,2017,April,14,4,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,2,No Deposit,244.0,179.0,0,Transient,51.28,0,0,Check-Out,Marie Thompson,kristinking@example.org,+1-843-613-2728x807,630488194345,2024-06-13 +Resort Hotel,0,13,2017,May,22,30,1,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,229.74,0,2,Check-Out,Melissa Mcfarland,mdavis@example.com,(752)520-9497,180079064724376,2025-07-15 +Resort Hotel,0,108,2017,August,32,9,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,108.49,0,2,Check-Out,Courtney Chapman,ycook@example.com,737.950.5647,374643674193706,2025-02-14 +City Hotel,1,157,2017,July,30,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,144.32,0,0,Canceled,Eric Barker,weberjeff@example.net,337.306.8115x7332,3595921580998534,2025-09-24 +City Hotel,1,364,2017,July,30,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.64,0,0,Canceled,Nicholas Rush,hfranklin@example.org,(995)783-1286x87414,675995144101,2024-06-05 +Resort Hotel,0,78,2017,April,14,4,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,82.73,0,0,Check-Out,Jenna Gamble,colleenjackson@example.net,525.557.1592x093,4379549459810687145,2026-01-20 +City Hotel,0,4,2017,April,15,6,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,108.5,0,1,Check-Out,Amanda Guzman,jenniferproctor@example.com,(541)362-1376,4435358872072226644,2025-12-11 +Resort Hotel,1,34,2017,September,35,2,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Contract,50.48,0,3,Canceled,Tracy Walker,harperashley@example.com,5118358271,4180305958182018694,2024-10-02 +Resort Hotel,0,1,2017,June,25,21,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,170.0,179.0,0,Transient-Party,40.29,0,0,Check-Out,Taylor Taylor,michelleodom@example.com,001-989-215-7199x62137,4551140576558406,2025-03-10 +City Hotel,1,48,2017,April,14,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,103.27,0,0,Canceled,Cynthia Haas,crawforddavid@example.net,952.366.4958x39863,4553881697720379,2025-02-18 +Resort Hotel,0,1,2017,January,3,14,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,43.22,0,2,Check-Out,Stephen Davis,vincent12@example.org,804-905-1483,38353084080802,2025-10-10 +Resort Hotel,0,293,2017,October,43,24,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,190.0,179.0,75,Transient-Party,80.94,0,0,Check-Out,Margaret Tanner,neil52@example.com,667.300.1766x19132,180065748965576,2024-05-11 +Resort Hotel,0,376,2017,March,12,18,2,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,58.8,0,0,Check-Out,Derek Wright,michellegolden@example.net,(804)490-6139x571,3530610715780796,2025-05-11 +City Hotel,1,154,2017,October,40,1,0,3,3,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,E,0,Non Refund,14.0,179.0,0,Transient,169.92,0,0,Canceled,David Rodriguez,amartinez@example.org,2197700192,3572243445459686,2025-08-30 +Resort Hotel,0,324,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,0,Refundable,14.0,221.0,0,Transient-Party,81.64,0,0,Canceled,James Oconnor,jdavis@example.net,+1-668-457-3793x3872,3552647725211373,2026-02-24 +City Hotel,0,50,2017,July,31,29,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.61,0,1,Check-Out,Stacey Snyder,parkersherri@example.org,+1-910-820-1823x467,6011335919877203,2024-03-30 +Resort Hotel,0,19,2017,February,8,19,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,41.0,0,3,Check-Out,Joshua Garcia,warnerhoward@example.org,+1-796-395-7788x5821,342123705977541,2025-03-03 +City Hotel,0,15,2017,December,2,30,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,86.4,0,2,Check-Out,Sean Curtis,paulwilliams@example.net,(736)745-8994,372212212098678,2024-06-25 +Resort Hotel,0,144,2017,April,14,5,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,224.0,0,Transient-Party,80.36,0,0,Check-Out,Carla Jones,colemandavid@example.net,001-806-562-0800x003,341636164772013,2024-12-21 +City Hotel,0,12,2017,February,9,27,1,2,2,0.0,0,BB,RUS,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,104.88,0,0,Check-Out,Elizabeth Flores,jessicawaters@example.com,001-399-311-6568x9128,30193748485627,2024-06-18 +City Hotel,1,5,2017,November,46,14,0,1,1,1.0,0,BB,PRT,Corporate,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient-Party,63.69,0,1,No-Show,Angela Jackson,aadams@example.net,508-503-3025x77774,4949117481795662,2025-04-23 +Resort Hotel,0,135,2017,March,10,10,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,76.13,0,0,Check-Out,Nicholas Payne,bgonzales@example.org,+1-260-697-1171x5258,371253456383914,2025-06-02 +City Hotel,1,82,2017,September,36,3,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,A,0,No Deposit,13.0,179.0,0,Transient,117.53,0,0,Canceled,Anna Wheeler,ashley31@example.com,+1-734-375-8128x11336,36648856382571,2025-07-19 +Resort Hotel,0,189,2017,December,52,23,2,5,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,D,0,No Deposit,364.0500000000011,223.0,0,Transient,51.87,0,0,Check-Out,Karen Johnson,jenniferdavila@example.net,001-991-261-2987,5382007175471053,2024-05-27 +Resort Hotel,1,14,2017,December,52,29,2,4,2,0.0,0,FB,PRT,Online TA,TA/TO,0,1,0,E,A,0,No Deposit,241.0,179.0,0,Transient,109.1,0,0,Canceled,Carmen Preston,amy55@example.com,695-531-7142,4266289658614110,2024-06-05 +Resort Hotel,0,11,2017,July,27,4,0,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,48.79,0,1,Canceled,Brian Harris,barbara85@example.com,7795150857,3550041961806264,2025-09-08 +City Hotel,0,1,2017,September,36,6,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,77.92,0,0,Check-Out,Michael Bowen,valerie71@example.com,4098559274,2233783362414332,2024-08-04 +City Hotel,0,21,2017,July,28,12,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.03,0,1,Check-Out,Deborah Campbell,vrodriguez@example.com,242.378.7466x66677,4950362254417265953,2025-02-04 +Resort Hotel,0,194,2017,July,29,16,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Refundable,242.0,179.0,0,Transient,53.63,0,1,Check-Out,Anthony Armstrong,aimee64@example.org,440-879-5317x82800,6593343033232665,2025-04-24 +City Hotel,0,5,2017,October,41,8,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Group,41.89,0,0,Check-Out,Brittany Ward,edwardgreen@example.com,454-507-4052x72353,4324620757407222,2025-07-27 +Resort Hotel,1,286,2017,October,44,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,11.0,222.0,0,Transient-Party,61.59,0,0,Canceled,Edward Stanley,zhall@example.net,001-891-385-3412x11398,4351346249461660,2024-04-07 +City Hotel,1,182,2017,September,38,21,2,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Canceled,Christina Johnson,nguyenamanda@example.net,001-764-919-3829x53061,373668343251081,2025-04-12 +Resort Hotel,1,144,2017,December,51,18,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,48.48,1,0,Canceled,Edgar Miller,nsmith@example.org,+1-260-914-6508x84955,3527922977959496,2024-03-29 +Resort Hotel,0,100,2017,February,8,23,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.03,0,0,Check-Out,Elizabeth Sanders,paulking@example.org,2265849255,6521957863852669,2024-04-18 +City Hotel,0,87,2017,March,10,5,2,2,2,2.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,202.73,0,0,Check-Out,Matthew Davis MD,ryansmith@example.com,352-385-0902x793,213192869027910,2024-10-13 +Resort Hotel,1,144,2017,June,26,26,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Refundable,243.0,179.0,0,Transient,117.99,0,0,Canceled,Stephen Wood,johnathanrodriguez@example.com,597.998.0977x49846,180021711360386,2025-01-17 +City Hotel,1,168,2017,March,13,31,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,104.42,0,0,Canceled,Dennis Marshall,chadwang@example.net,594-488-2140x88890,4439559450321,2024-04-18 +City Hotel,1,279,2017,July,27,3,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,161.0,179.0,0,Transient,156.56,0,0,Canceled,Derrick Brown,williamsdonna@example.net,296-279-3835x766,4141098864661,2025-08-05 +City Hotel,0,5,2017,November,44,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,E,1,No Deposit,14.0,227.0,0,Transient-Party,47.82,0,0,Check-Out,Mary Miller,nallen@example.net,385.274.7450x6989,213131495131613,2024-06-30 +Resort Hotel,0,31,2017,July,27,1,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,122.81,1,1,Check-Out,Joshua Arellano,justinwoods@example.com,245-752-8859x20557,30492542904035,2025-11-06 +City Hotel,1,27,2017,August,32,8,0,4,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,169.0,0,2,Canceled,Kristen Randall,matthewfry@example.net,512.311.3747x94137,180081603117468,2025-03-26 +City Hotel,0,48,2017,August,32,3,2,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,77.49,0,0,Check-Out,Jennifer Nichols,osaunders@example.net,001-345-601-1622x1260,3566783013517355,2024-04-05 +City Hotel,1,414,2017,October,43,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.74,0,0,Canceled,Karen Keith,leekari@example.net,718.644.6118x6195,4627782586106211,2024-06-26 +City Hotel,0,22,2017,November,45,4,1,2,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,116.17,0,1,Check-Out,Blake Orr,hstrickland@example.org,9995598760,180024663715458,2024-04-14 +City Hotel,0,12,2017,January,4,25,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,202.75,1,1,Check-Out,Kathryn Lester,dawn84@example.org,+1-626-834-0169,2712379078104802,2024-04-26 +City Hotel,1,174,2017,October,43,24,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,76.94,0,0,Canceled,Megan Oliver,sallen@example.org,478-636-6882x16309,4751353767205541,2025-07-18 +City Hotel,0,54,2017,April,17,23,1,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.69,0,1,Check-Out,Peter Thompson,armstrongrhonda@example.net,(915)355-4886,4824794788119794,2025-11-10 +City Hotel,1,14,2017,October,41,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,62.21,0,0,No-Show,Dr. Rhonda Martinez,courtney34@example.com,965-527-5432,6556400722668792,2025-12-18 +Resort Hotel,1,90,2017,October,41,8,1,4,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,314.0,179.0,0,Transient-Party,76.71,0,0,Canceled,William Graham,vzimmerman@example.net,438.328.7102x972,5317884905567073,2025-09-11 +City Hotel,0,334,2017,October,42,17,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,91.87,0,1,Check-Out,Lori Flowers MD,vbrown@example.net,815.430.9943,379289947867802,2026-01-09 +City Hotel,1,115,2017,May,22,27,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.72,0,0,Canceled,Suzanne Jones,sandra27@example.org,623-593-0351,3589205348516178,2025-03-12 +City Hotel,1,15,2017,October,41,10,0,4,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,B,B,2,No Deposit,14.0,179.0,0,Transient,155.72,0,1,No-Show,James Nguyen,nicholas72@example.org,001-316-338-0823,2276097820362621,2025-08-07 +City Hotel,1,91,2017,February,8,20,2,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.37,0,1,Canceled,Jimmy Marks,cortezheather@example.com,(632)330-0981,501875574078,2024-08-18 +City Hotel,0,0,2017,August,32,6,0,1,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Lisa Mills,spencerryan@example.org,001-469-887-8184x5567,30457849558909,2024-12-16 +Resort Hotel,1,128,2017,November,46,12,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,12.0,179.0,0,Contract,90.28,0,0,Canceled,Jason Hernandez,robin38@example.org,001-273-808-7692x2798,501842978568,2024-04-25 +City Hotel,1,158,2017,January,2,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,11.0,179.0,0,Transient,159.05,0,0,Canceled,Olivia Ayers,garciataylor@example.com,462.886.1122x9219,4923757951743,2024-08-13 +Resort Hotel,0,54,2017,January,2,6,2,4,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,266.0,179.0,0,Transient-Party,53.63,0,0,Check-Out,Kristine Garcia,khorton@example.net,001-245-251-5688,6011607387956739,2025-01-10 +City Hotel,0,94,2017,May,21,23,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Joseph Cooper,sandra41@example.org,475-976-8096,5431028063511074,2024-09-29 +City Hotel,0,140,2017,June,26,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.25,0,2,Check-Out,James Washington,jeffrey09@example.org,875-227-9032x91991,2256416998006808,2025-04-10 +Resort Hotel,0,90,2017,September,37,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,84.83,0,2,Check-Out,Amanda Hill,jacquelinehardy@example.com,901.838.5601x586,4067372924258796,2024-06-22 +City Hotel,1,382,2017,September,38,19,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,102.43,0,0,Canceled,Lee Steele,paulaross@example.org,529-309-5902x3057,5534244758517690,2025-09-20 +City Hotel,0,33,2017,June,23,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,134.41,0,2,Check-Out,Steve Rivera,xbrewer@example.org,(957)754-3354x70534,3567569542698082,2025-01-11 +City Hotel,1,138,2017,August,31,5,0,4,2,1.0,0,BB,ISR,Direct,Direct,0,0,0,L,E,0,No Deposit,12.0,179.0,0,Transient-Party,152.29,0,1,No-Show,Patrick Mccall,rmartinez@example.com,8886386249,4383994281462652090,2024-06-15 +Resort Hotel,0,10,2017,March,10,5,1,2,1,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,50.28,0,0,Check-Out,Alicia Roth,bryanbonnie@example.com,+1-321-530-7952x8185,3569632186841075,2025-09-12 +City Hotel,0,20,2017,June,26,23,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,129.75,0,0,Check-Out,Douglas Vasquez,agreen@example.com,595.286.8770x565,4286048652376118,2024-06-15 +Resort Hotel,1,101,2017,March,10,4,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,45.05,0,1,Canceled,Annette Melton,reynoldsjesse@example.org,001-795-447-0439x69229,4305294481185984,2025-11-02 +City Hotel,0,44,2017,July,31,30,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,227.68,0,0,Check-Out,William Ramos,dean55@example.com,(393)722-8030x5133,4394328546460925,2026-03-12 +Resort Hotel,0,32,2017,March,12,22,2,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,E,0,No Deposit,185.0,179.0,0,Transient-Party,55.24,0,0,Check-Out,Debra Butler,cbautista@example.com,617.954.4165,2720528639038806,2024-09-09 +Resort Hotel,0,156,2017,July,30,24,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,210.0,179.0,0,Transient-Party,136.41,0,0,Check-Out,Chelsea Lewis,rodriguezmary@example.org,815-740-2315,4007282559575753418,2026-03-14 +Resort Hotel,1,300,2017,July,29,19,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.31,0,0,Canceled,Natalie Malone,bergrobert@example.com,447-272-7180x552,574130634227,2024-07-09 +City Hotel,0,9,2017,February,9,27,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.75,0,0,Check-Out,Samantha Robertson,michael30@example.net,(503)974-9282x96930,30200199135591,2024-12-27 +City Hotel,0,43,2017,April,16,13,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,135.12,0,2,Check-Out,Eric Hunter,andrew43@example.net,(236)504-8368x2140,4878687468355610,2025-05-22 +City Hotel,0,66,2017,August,33,17,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,241.29,0,2,Check-Out,Samuel Suarez,alyssamoore@example.net,(440)416-0074x21932,2720509644061991,2024-12-13 +City Hotel,0,3,2017,March,13,28,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,125.84,0,1,Check-Out,Corey Whitaker,ehodge@example.net,514-617-5462,4521917440443962577,2025-06-18 +City Hotel,0,3,2017,October,43,22,2,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,1.97,1,0,Check-Out,Danielle Bryant,catherine33@example.com,887-975-1627,30456073474346,2025-01-07 +City Hotel,1,17,2017,January,3,17,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.58,0,0,Canceled,Michele Hill,justinlee@example.com,+1-635-345-4409x72804,4897225552426,2025-04-08 +Resort Hotel,0,54,2017,March,12,21,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,0,No Deposit,244.0,179.0,0,Transient,50.93,1,3,Check-Out,Kathy Reid,angela23@example.net,637-510-0764x75883,6592204273806959,2024-11-06 +City Hotel,1,55,2017,July,29,15,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,111.71,0,1,Canceled,Andre Watson,amysmith@example.net,(217)854-4161x904,4591602793607788011,2024-05-10 +Resort Hotel,0,135,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,13.0,223.0,0,Transient-Party,62.16,0,0,Check-Out,Cassandra Harrell,zbrown@example.org,920-890-0001x224,4372691794261550,2024-06-10 +Resort Hotel,0,46,2017,August,34,21,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,D,0,No Deposit,13.0,179.0,0,Transient,156.12,0,3,Check-Out,Hannah Martin,ewarren@example.net,001-243-937-1831x9068,639096705244,2026-03-08 +Resort Hotel,1,158,2017,August,35,28,4,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,122.8,0,0,Canceled,Nicole Barker,gardneralexa@example.net,+1-555-873-1378x5624,4940682802544,2025-11-08 +Resort Hotel,0,36,2017,August,32,8,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,241.35,0,1,Check-Out,James Martin,amysilva@example.net,001-530-247-8142x34591,3505556178841032,2024-11-09 +City Hotel,0,28,2017,September,39,26,0,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient-Party,64.57,1,1,Check-Out,Traci Vincent,kayla34@example.net,456.329.0936x918,340933339939259,2024-08-01 +City Hotel,0,53,2017,October,40,5,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Contract,101.0,0,0,Check-Out,Megan Adams,shelly71@example.org,646-497-9758x26453,3588834829748199,2025-03-26 +Resort Hotel,0,183,2017,September,36,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,287.0,179.0,0,Transient-Party,63.36,0,0,Check-Out,Alejandro Deleon,brian38@example.com,236.293.5552x125,379156036323643,2025-03-06 +City Hotel,0,11,2017,May,19,12,1,1,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,100.81,0,1,Check-Out,Alexa Buck,meltonangela@example.net,785.593.7325x96984,343007574932936,2025-01-05 +Resort Hotel,0,66,2017,February,6,6,1,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,44.48,1,0,Check-Out,Lindsay Smith,qlogan@example.net,919.604.8991,4854696188037687,2025-09-23 +Resort Hotel,1,292,2017,January,3,16,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,94.74,0,1,Canceled,Robert Torres,bradleylisa@example.net,898-428-0261,180088382144647,2024-04-12 +City Hotel,0,103,2017,September,39,24,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,79.89,0,0,Check-Out,Maria Coleman,orobinson@example.net,+1-768-948-8480x5499,675996803838,2025-10-14 +City Hotel,1,240,2017,July,31,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,295.0,179.0,0,Transient,200.34,0,0,Canceled,Gregory King,markbradley@example.com,001-853-414-0976x66309,4846690376937261999,2025-07-30 +City Hotel,0,13,2017,August,31,4,2,4,2,2.0,0,SC,BRA,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,10.0,179.0,0,Transient,215.4,0,0,Check-Out,Michael Holloway,gilberttamara@example.org,961-810-0426x24601,4570833836486411,2024-09-07 +Resort Hotel,0,244,2017,April,15,13,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,297.0,179.0,0,Transient-Party,45.89,0,0,Check-Out,Brian Hunt,kevinjohnson@example.com,001-728-842-9549,6522457912347703,2026-02-27 +City Hotel,0,14,2017,August,35,30,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,218.13,0,1,Check-Out,Sarah Brooks,sherrytran@example.net,001-335-700-3734x852,3541878590076286,2025-04-01 +City Hotel,0,3,2017,September,37,16,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,97.86,0,0,Check-Out,Lisa Evans,johngonzalez@example.com,360-683-2298x48466,4311420076896556585,2025-04-15 +Resort Hotel,0,333,2017,October,40,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Contract,43.14,0,0,Check-Out,Arthur Mcneil,qharris@example.org,+1-647-907-0530x48652,060457234205,2026-03-14 +Resort Hotel,0,7,2017,April,16,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,77.98,0,0,Check-Out,Shannon Green,julie05@example.net,001-990-645-5257x740,3507571841544978,2025-01-11 +City Hotel,1,0,2017,July,29,17,0,1,3,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,2.46,0,0,Canceled,Stephanie Evans,cheyenneguerra@example.net,001-955-340-1256,560966362520,2025-09-01 +Resort Hotel,1,1,2017,July,28,12,1,4,3,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,C,C,1,No Deposit,244.0,179.0,0,Transient-Party,213.54,0,1,Canceled,Ralph Yoder,ashley81@example.com,2395877879,4083893385398441,2025-01-15 +City Hotel,0,31,2017,March,13,26,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,E,E,0,No Deposit,10.0,179.0,0,Transient,70.16,0,1,Check-Out,Rebekah Greene,morrischristina@example.org,001-809-490-1079x3051,4341401957743248,2025-10-02 +City Hotel,0,158,2017,June,24,9,0,3,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,138.31,0,0,Check-Out,Melanie Griffith,matthew74@example.com,273.340.6985x331,2720772840679673,2024-10-21 +City Hotel,0,7,2017,June,23,9,0,2,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,142.75,0,1,Check-Out,Yolanda Green,dennis27@example.org,446-471-3310x90377,4843024433412676,2026-01-13 +City Hotel,0,79,2017,June,23,4,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,7.0,179.0,0,Transient,115.01,0,1,Check-Out,James Johnson,johnsonjohn@example.com,230.481.3664x368,676324891156,2025-12-31 +Resort Hotel,0,141,2017,August,31,1,2,4,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,9.0,179.0,0,Transient,217.73,0,1,Check-Out,Laura Lee,zjohnson@example.net,(793)223-4992x019,6011739896498422,2026-03-20 +Resort Hotel,0,20,2017,October,40,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,42.04,0,0,Check-Out,Courtney Nichols,ibrown@example.net,709.438.0307,2245986778581794,2024-04-03 +City Hotel,0,158,2017,April,15,12,1,5,2,1.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,104.77,0,0,Check-Out,Susan Powers,schmittsara@example.net,+1-946-818-1437x146,4176662517681496895,2025-01-03 +City Hotel,1,101,2017,August,32,8,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Canceled,Sarah Pittman,munozchristine@example.net,442.724.9411,4137521439063,2024-09-21 +Resort Hotel,0,13,2017,March,9,3,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,41.07,1,2,Check-Out,Catherine Davis,scott33@example.net,001-710-993-7727x6324,30348875611722,2024-04-18 +Resort Hotel,0,1,2017,January,2,3,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,D,D,0,No Deposit,240.0,179.0,0,Transient,63.4,1,1,Check-Out,David Stokes,mburns@example.net,001-284-443-2379x9944,373699427978216,2025-08-28 +City Hotel,0,0,2017,October,41,13,0,2,1,0.0,0,BB,PRT,Corporate,Direct,1,0,1,D,D,0,No Deposit,12.0,331.0,0,Transient,134.16,0,1,Check-Out,Catherine Frazier,williamspears@example.com,001-318-314-4917x8812,502001339618,2026-02-11 +City Hotel,1,7,2017,January,2,4,0,3,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,47.37,0,0,Canceled,Brandon Kelly,wilsonmary@example.org,992.811.0184,371622812145839,2025-09-09 +City Hotel,1,209,2017,July,30,23,0,2,2,1.0,0,BB,NOR,Direct,Direct,0,0,0,A,B,1,No Deposit,12.0,179.0,0,Transient,206.47,0,1,Canceled,Elizabeth French,ajordan@example.com,569-735-1491,4706462344233813,2024-09-21 +Resort Hotel,0,0,2017,October,40,5,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,43.79,0,1,Check-Out,David Carter,williscorey@example.com,001-253-918-9611x204,379077412667777,2025-07-17 +City Hotel,1,147,2017,July,28,9,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient-Party,122.13,0,0,Canceled,Julie Delacruz,vsmith@example.com,001-590-470-9706,4701336911129528,2025-07-12 +City Hotel,0,67,2017,August,33,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.82,0,2,Check-Out,Terry Jones,brobinson@example.net,926.567.4900,30530388373813,2025-08-14 +City Hotel,1,17,2017,September,37,8,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,238.81,0,0,Canceled,Kathryn Dillon,dennistony@example.org,742.570.3339x17986,3526956475741494,2024-04-30 +Resort Hotel,0,0,2017,July,27,4,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,290.0,179.0,0,Transient,49.64,1,3,Check-Out,Edwin Brown,stephaniemartin@example.org,(795)386-4422,345030476051330,2025-08-15 +Resort Hotel,0,34,2017,August,33,19,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,240.0,179.0,0,Transient,214.0,0,0,Check-Out,Brenda Gonzalez,michael84@example.org,877.708.1537x60482,4981491777924875,2025-03-09 +City Hotel,1,45,2017,December,52,23,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient,104.32,0,0,Canceled,Keith Knox,wrightdavid@example.org,(884)571-3331,3597235776725595,2025-12-05 +City Hotel,1,0,2017,March,11,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,102.45,0,1,No-Show,Eugene Baldwin,robinsonheidi@example.net,+1-225-904-0993x06738,2511289719953066,2026-03-13 +City Hotel,1,12,2017,October,41,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,62,Contract,79.25,0,0,Canceled,Katherine Welch,vjensen@example.org,353-523-1456x3970,4041942217443203428,2025-06-09 +City Hotel,1,60,2017,November,46,12,1,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.0,0,1,Canceled,Mark Smith,bhamilton@example.com,(316)699-3729,4451251134790604,2026-01-26 +City Hotel,0,54,2017,April,14,5,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,84.17,0,1,Check-Out,Philip Jackson,gilbertkyle@example.net,410-259-9504x353,4409364118223,2026-01-21 +Resort Hotel,1,273,2017,September,39,26,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,158.58,0,0,Canceled,Katherine Gallagher,tracey72@example.com,+1-476-420-6317,502031820637,2026-01-04 +Resort Hotel,0,7,2017,February,7,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,64.0,0,Transient,40.16,0,1,Check-Out,Lucas Schultz,bradshawangela@example.net,(712)747-0772x3570,3592075139991566,2025-04-30 +City Hotel,0,8,2017,March,11,13,1,2,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,104.78,0,1,Check-Out,Vincent Reyes,michael36@example.net,571-443-3597x804,373703440573234,2024-07-04 +City Hotel,0,0,2017,July,30,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,D,0,No Deposit,318.0,179.0,0,Transient-Party,0.64,0,0,Check-Out,Curtis Watson,garrettteresa@example.com,247-787-0794x896,4361288005806,2024-06-16 +City Hotel,0,301,2017,October,40,3,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.64,0,1,Check-Out,Frank Whitaker,jessicaparker@example.com,(674)262-9908x3334,346138956223110,2025-05-03 +City Hotel,1,113,2017,December,51,21,1,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,230.09,0,0,Canceled,Michael Sims,kellyskinner@example.net,001-864-646-8838x66291,3516639816373837,2025-08-28 +Resort Hotel,0,0,2017,February,7,11,1,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,79.28,0,1,Canceled,Michael Cooper,phyllisbowman@example.org,+1-487-272-2283x645,4488289339783,2025-06-29 +City Hotel,1,303,2017,August,33,11,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.29,0,0,Canceled,James Chapman,mcdanielcameron@example.org,723.618.3226,3533314235734501,2024-08-31 +City Hotel,0,1,2017,August,34,24,0,1,3,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,241.61,0,2,Check-Out,Rodney Evans,lhardy@example.org,445-269-1742,4601805198497,2024-12-30 +Resort Hotel,1,18,2017,August,32,8,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,229.98,0,1,Canceled,Nicholas Carlson,michael51@example.org,356-911-3791x37993,4946471447145473214,2024-10-31 +City Hotel,1,185,2017,August,31,2,2,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.05,0,1,Canceled,Stephen Cowan,masseytamara@example.org,(662)938-2291,4774126796784,2025-03-02 +Resort Hotel,0,54,2017,February,8,20,0,6,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,192.23,0,1,Check-Out,Steven Howard,tgibson@example.net,+1-556-686-3421x72337,341493225937049,2025-05-30 +City Hotel,0,116,2017,July,28,10,2,3,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,90.25,0,1,Check-Out,Travis Hull,megan39@example.com,754.955.3870x781,4484778834640,2024-04-04 +Resort Hotel,0,254,2017,March,10,6,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,60.72,0,0,Check-Out,Darryl Acosta,loganberry@example.net,(633)401-1559x674,3580503944893804,2025-11-03 +Resort Hotel,1,114,2017,December,49,5,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,104.07,0,2,Canceled,Nicholas Lawrence,alexanderandrea@example.org,001-783-520-2474x21153,4784244655914263,2025-03-30 +Resort Hotel,0,56,2017,August,33,14,1,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,208.83,0,2,Check-Out,Jacob Santos,timothystewart@example.org,607-340-7443,4941963807881415800,2026-01-24 +City Hotel,0,33,2017,December,51,22,1,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,114.15,0,0,Check-Out,Shawn Scott,syoung@example.org,995.547.2183,3570242777535115,2025-02-22 +City Hotel,0,292,2017,March,11,13,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient-Party,63.41,1,0,Check-Out,Amber Vang,reneegonzalez@example.net,+1-858-323-4954x935,2244567661245217,2025-11-29 +City Hotel,0,12,2017,May,21,20,0,1,1,0.0,0,BB,USA,Corporate,Direct,0,0,0,A,E,0,No Deposit,14.0,212.0,0,Transient-Party,186.13,0,0,Check-Out,Martha Smith,drodriguez@example.org,+1-699-411-9222,3549800837840532,2025-01-03 +Resort Hotel,0,124,2017,March,11,12,0,2,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,F,1,No Deposit,14.0,179.0,75,Transient-Party,208.97,1,3,Check-Out,Jennifer James,mhart@example.net,626-243-5728,180056965830973,2025-09-26 +Resort Hotel,0,100,2017,June,25,17,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,104.17,1,2,Check-Out,Kara Hernandez,matthewgarcia@example.com,001-952-860-9969x95776,4399009644782619,2025-04-12 +Resort Hotel,0,89,2017,February,6,3,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,C,C,0,No Deposit,10.0,179.0,0,Transient,46.38,1,0,Check-Out,Lorraine Turner,johnsonmichael@example.com,001-834-319-0865x527,3501389862204885,2025-01-23 +Resort Hotel,0,105,2017,February,5,2,0,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,81.79,0,1,Check-Out,Mary Nelson,alexander57@example.net,001-885-328-0700x014,630407655228,2024-04-03 +City Hotel,0,218,2017,July,28,9,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.07,0,1,Check-Out,Breanna Rivas,michaelthompson@example.org,685-919-5926,4873495108233747673,2026-01-24 +City Hotel,1,36,2017,December,51,19,0,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,46.07,0,0,Canceled,Nathan Wilson,nicolepearson@example.net,+1-243-552-2762x3710,30187360896301,2024-04-18 +City Hotel,0,52,2017,July,27,7,0,2,1,0.0,0,BB,NLD,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,38.0,179.0,0,Transient-Party,137.46,0,0,Check-Out,Brian Gonzalez,thomas61@example.com,593-584-0661x99140,180010367983971,2025-06-07 +City Hotel,1,414,2017,July,29,20,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,102.96,0,1,Canceled,Dennis Mills,kenneth05@example.com,001-991-470-2609x5874,2720285011065499,2024-07-11 +City Hotel,1,169,2017,September,40,30,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,17,Transient-Party,87.47,0,0,Canceled,Michael Phillips,tmunoz@example.org,001-722-651-3500x78733,4137920818281931483,2024-09-27 +Resort Hotel,1,43,2017,September,36,5,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,28.0,179.0,0,Transient,111.16,0,0,Canceled,Jon Clark,keithgeorge@example.com,+1-925-517-7398,4199029273386,2025-08-03 +City Hotel,0,145,2017,June,26,27,2,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,136.85,0,1,Check-Out,Erin Smith,rodriguezerika@example.com,963.366.5574,4261337040239988706,2026-01-15 +City Hotel,0,111,2017,July,27,5,2,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,136.81,0,0,Check-Out,Susan Conley,cbell@example.com,(867)346-1397,4030788856859851,2025-03-09 +City Hotel,1,145,2017,June,26,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,135.51,0,1,Canceled,Brittany Davis,kathryn30@example.org,4816548656,4439849353561619,2026-01-02 +City Hotel,1,9,2017,March,13,26,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,70.55,0,0,No-Show,Misty Garcia,johnsonamanda@example.com,001-619-283-8359x519,180007857025396,2024-05-17 +City Hotel,1,13,2017,November,47,24,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.28,0,1,Canceled,David Hinton,denise32@example.org,692.330.3621,4582383272144609,2025-02-05 +City Hotel,0,7,2017,September,38,21,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,60.0,179.0,0,Transient,114.55,0,2,Check-Out,John Garcia,derek04@example.org,001-276-272-7285,4880771638329717,2024-12-13 +Resort Hotel,0,51,2017,June,26,26,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,252.0,1,3,Check-Out,Andrew Roberts,nicolemarshall@example.org,6627627012,36192666440642,2026-03-16 +City Hotel,1,198,2017,August,34,23,2,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.2,0,0,Canceled,Emily Rodgers,eric48@example.com,557.325.5478x83820,4053282260416037913,2024-11-15 +Resort Hotel,0,34,2017,January,3,18,0,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient-Party,40.94,0,0,Check-Out,Peter Williams,gayjames@example.com,001-964-434-5202x904,4999393368842540697,2025-01-08 +Resort Hotel,0,55,2017,November,48,30,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,238.0,179.0,0,Transient,80.74,1,1,Check-Out,Mary Jackson,kennethsmith@example.net,+1-244-667-7715x98689,6567403913345060,2025-06-30 +City Hotel,0,0,2017,March,12,19,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,113.0,0,1,Check-Out,Jeffrey Howell,donaldbrown@example.org,537.861.2770x5297,3533081218419521,2025-05-02 +City Hotel,0,10,2017,May,20,12,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient-Party,130.9,0,0,Check-Out,Anna Briggs,patricia87@example.com,(839)640-3683,3573005193116910,2025-03-05 +City Hotel,0,2,2017,July,28,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient-Party,41.16,1,1,Check-Out,James Rivers,calvinhudson@example.org,(730)415-9392,30408331627249,2024-09-08 +City Hotel,0,14,2017,May,19,6,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Transient,141.11,1,0,Check-Out,James Jefferson,robrien@example.net,975-285-1020,343802191887855,2026-03-05 +Resort Hotel,0,164,2017,May,19,6,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,79.0,179.0,0,Transient,124.16,0,0,Check-Out,Mariah Robles,gtorres@example.org,+1-632-967-3755x87989,30311454083937,2024-07-03 +Resort Hotel,0,6,2017,January,4,26,0,2,2,1.0,0,HB,,Direct,Direct,0,0,0,G,G,2,No Deposit,13.0,179.0,0,Transient,53.29,0,3,Check-Out,Michael Brown,briannarodgers@example.org,(979)788-8949x7800,583709275007,2025-01-24 +City Hotel,1,3,2017,December,52,25,0,1,3,0.0,0,SC,,Complementary,Undefined,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,5.3,0,0,Canceled,Caitlin Perry,elliottryan@example.com,530-207-9572x116,36962590952254,2025-04-20 +Resort Hotel,0,0,2017,December,49,9,0,2,2,0.0,0,Undefined,ESP,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,51.72,0,2,Check-Out,Rebekah Gregory,crystalvasquez@example.net,001-717-832-4200x433,4126618700776,2025-08-05 +City Hotel,1,0,2017,May,18,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,101.73,0,0,No-Show,James Howard,wwu@example.com,470-371-3546x312,344730819700888,2026-02-11 +Resort Hotel,1,147,2017,September,38,20,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,80.96,0,1,Canceled,Michael Roberson,alexanderyang@example.org,598.383.6272x4315,3503122580912283,2025-01-01 +Resort Hotel,1,8,2017,July,30,23,0,1,3,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,243.83,0,0,Canceled,Bianca Knapp,friley@example.net,+1-750-245-5484x4763,4805286092061046983,2025-06-25 +City Hotel,0,105,2017,October,43,22,1,2,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient,82.08,0,0,Check-Out,Jason Williams,johnlewis@example.net,001-252-575-5103,4977481538367254,2025-01-22 +Resort Hotel,0,24,2017,June,24,12,4,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,178.69,0,1,Check-Out,Ernest Bush,april74@example.org,974-765-9317x282,4407453089311890,2026-01-14 +City Hotel,0,24,2017,January,4,26,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.65,0,1,Check-Out,Patricia Ray,ashaw@example.org,+1-558-895-4123x894,3586504667286485,2025-06-15 +City Hotel,0,2,2017,March,13,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,12.0,183.0,0,Transient,47.13,0,0,Check-Out,Vanessa Santiago,gbell@example.com,+1-626-904-8362,501832502113,2025-10-03 +City Hotel,1,102,2017,July,28,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,109.75,0,0,Canceled,Joseph Haynes,cbailey@example.com,001-907-728-6660x4142,3517503450079515,2024-06-08 +City Hotel,0,1,2017,September,36,4,0,4,2,0.0,0,BB,USA,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,125.21,0,1,Canceled,Matthew Wright,robinsoncharles@example.com,(627)971-1392,213155832953215,2024-07-05 +City Hotel,1,27,2017,July,29,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,139.24,0,1,Canceled,Michael Cruz,howardjames@example.com,001-878-374-4612,180049416249521,2025-07-01 +City Hotel,1,411,2017,October,44,30,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,85.92,0,0,Canceled,Kristin Huerta,jessica96@example.net,458-283-3050x90369,30366978071891,2025-01-07 +Resort Hotel,1,195,2017,July,28,10,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Canceled,Mason Moore,wilsonanthony@example.org,(889)391-3603x881,4030624625718369,2024-09-23 +City Hotel,0,54,2017,July,30,25,0,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.83,0,0,Check-Out,Sarah Booth,nixonalyssa@example.org,267.694.2200x4574,30133342299099,2024-05-22 +Resort Hotel,1,10,2017,August,32,8,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,L,A,0,No Deposit,240.0,179.0,0,Transient,47.68,0,0,Canceled,John Allen,qdaniel@example.com,520-924-6074x6130,30026293990841,2025-08-22 +City Hotel,0,122,2017,May,18,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,125.45,0,2,Check-Out,Amber Walker,nsullivan@example.com,325-829-1404x43774,180045379892620,2024-06-21 +Resort Hotel,0,3,2017,August,32,4,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,Jennifer Young,morgan40@example.net,+1-647-634-8930x880,4223400515046907,2025-06-23 +City Hotel,0,0,2017,June,25,20,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,136.93,0,0,Check-Out,Robert West,nicole37@example.org,8834410492,4478614490648949,2024-11-04 +Resort Hotel,0,0,2017,May,19,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,I,0,No Deposit,308.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Jillian Wilson,rangelashley@example.org,+1-768-391-1191x85677,375390251661197,2025-11-24 +Resort Hotel,0,6,2017,July,27,1,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,236.25,0,2,Check-Out,Matthew Garcia MD,michelle80@example.net,001-840-362-3256x798,4820813907935,2025-03-08 +Resort Hotel,1,0,2017,January,2,3,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,No Deposit,316.0,179.0,0,Transient,39.07,0,0,Canceled,April Davis,angela96@example.org,+1-341-395-2588,30194513333745,2026-02-02 +City Hotel,0,54,2017,August,35,30,2,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,252.0,0,1,Check-Out,Lisa Torres,robert08@example.com,001-827-425-7678x5997,2718751576845348,2024-07-25 +City Hotel,1,195,2017,August,32,8,1,3,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,251.06,0,1,Canceled,Christine Powers,melissatorres@example.org,001-989-744-1235x9067,4683712281251948,2025-03-24 +City Hotel,0,3,2017,January,2,6,1,2,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,137.3,0,1,Check-Out,Heidi Brown,coryduran@example.org,(638)482-3921x46468,3568707367149448,2024-04-18 +Resort Hotel,0,21,2017,July,28,10,4,7,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,128.05,0,0,Check-Out,Jesse Castro,patricia97@example.com,001-976-400-6505,375151870263173,2024-12-08 +City Hotel,0,0,2017,November,45,5,1,0,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,A,K,2,No Deposit,13.0,179.0,0,Transient,1.57,0,0,Check-Out,Kara Sandoval,courtneyanderson@example.org,+1-913-319-3009x132,4590916947423,2024-12-06 +Resort Hotel,0,2,2017,September,36,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,17.0,242.0,0,Transient,129.56,0,0,Check-Out,Ashley Malone,cooperjuan@example.com,536.331.6540x9872,502065104007,2024-07-04 +City Hotel,0,34,2017,March,11,12,2,1,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.17,0,1,Check-Out,Glenn Gallegos,janeclarke@example.net,+1-823-957-1510,4922822318128950,2025-04-22 +City Hotel,1,58,2017,September,39,23,2,2,3,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,141.24,0,1,Canceled,Dorothy Boyd,susan75@example.com,823-849-9892x3526,343552038991275,2025-06-13 +City Hotel,1,55,2017,October,40,1,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,101.95,0,0,Canceled,Amber Martin,kristinamoreno@example.com,(825)360-5367x86973,630467664706,2025-11-27 +City Hotel,0,58,2017,September,39,24,2,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.16,0,0,Check-Out,Mitchell Griffith,grahammaxwell@example.com,001-345-787-5184x37491,4688716202962696048,2026-02-24 +Resort Hotel,1,0,2017,December,52,24,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,4.83,0,0,Canceled,Levi Lopez,lopezbailey@example.org,001-379-303-9158x827,4226789593016437,2025-12-01 +Resort Hotel,0,61,2017,November,48,26,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient,63.9,0,1,Check-Out,Jenna Bryant,rbowman@example.com,631-951-3101x4057,676368673999,2025-03-06 +City Hotel,0,0,2017,July,27,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,44.32,1,1,Check-Out,Michelle Rodriguez,davidwashington@example.org,(529)924-0955x1910,6011492399267825,2025-06-25 +City Hotel,0,9,2017,December,50,10,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,119.2,0,1,Check-Out,Timothy Monroe,lopezkaren@example.org,(403)523-0899,6011744867557230,2025-04-26 +City Hotel,0,12,2017,March,11,9,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,126.77,0,1,Check-Out,Patricia Hayes,davidthomas@example.net,(581)263-9862x4932,4637661711118308144,2026-01-03 +City Hotel,0,0,2017,January,4,25,0,1,2,1.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,55.91,0,2,Check-Out,Tina Taylor,astafford@example.net,698-287-1256,4507119386011892,2025-10-11 +City Hotel,1,19,2017,March,11,9,0,2,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,223.59,1,2,Check-Out,Mr. Anthony Mcconnell PhD,ericbriggs@example.net,790.980.2148x27797,3597686205146169,2025-12-25 +City Hotel,0,255,2017,May,20,17,0,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,72.01,0,0,Check-Out,Mr. Thomas Thompson,aliciabeltran@example.net,796.637.9159,377345937793002,2024-09-13 +City Hotel,0,18,2017,August,33,10,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,252.0,1,0,Check-Out,Monica Anderson,rpope@example.org,001-223-461-9257x5014,3545979841369557,2024-11-28 +City Hotel,0,2,2017,August,34,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,131.6,1,0,Check-Out,Kyle Andrade,ojohnson@example.com,650-916-7577,3551894973251930,2024-09-14 +City Hotel,0,31,2017,August,31,3,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,190.19,0,1,Check-Out,Janice Petty,brucebradford@example.org,8196819326,2307814310582226,2025-12-02 +City Hotel,1,320,2017,October,42,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,1.0,179.0,0,Transient,97.87,0,0,Canceled,Pamela Hill,fischeralexandria@example.org,938.513.7654x9104,6529378829179497,2024-05-01 +Resort Hotel,0,7,2017,March,13,23,1,2,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,84.12,0,3,Check-Out,Tracy Chavez,pachecopaul@example.net,(692)633-7702,3577147128823719,2024-12-21 +City Hotel,0,14,2017,March,12,21,0,1,2,1.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,108.58,0,3,Check-Out,Jason Graves,pwells@example.com,694-686-0811,4834818646497,2025-01-05 +City Hotel,0,12,2017,July,28,9,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,131.42,1,2,Check-Out,Elizabeth Miles,jacob23@example.net,+1-978-890-2901,5128971689399788,2026-01-21 +Resort Hotel,0,10,2017,December,51,21,1,2,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,93.2,0,0,Check-Out,Michelle Walls,olee@example.com,+1-383-507-9127x041,4318038340461,2026-03-06 +Resort Hotel,0,62,2017,August,32,4,2,4,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,178.39,0,1,Check-Out,Christina Weber,zharris@example.net,511-589-8161,30387109896436,2024-08-02 +Resort Hotel,0,0,2017,May,19,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,118.43,1,0,Check-Out,Gregory Chambers,dustin78@example.com,001-607-757-0491,340315160621158,2026-01-10 +City Hotel,1,68,2017,October,42,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,77.0,179.0,0,Transient-Party,65.89,0,0,No-Show,Miss Tina Gordon,kmartin@example.net,+1-948-666-8197x376,060474058074,2025-11-07 +Resort Hotel,0,11,2017,April,15,9,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,48.45,0,1,Check-Out,Erica Wilson,lijoseph@example.net,8632701408,4326736140185669,2025-02-12 +Resort Hotel,0,178,2017,January,2,3,2,5,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,252.0,1,3,Check-Out,John Duncan,randydavis@example.net,+1-677-812-8591x1958,4340993357273009398,2024-08-14 +Resort Hotel,1,0,2017,May,21,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,46.04,0,0,No-Show,Jennifer Adkins,stephanie23@example.net,001-659-479-9411,3573263260907832,2025-03-08 +City Hotel,0,48,2017,June,25,23,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,181.0,0,Transient,115.27,0,1,Check-Out,Donna Boone,changdeborah@example.com,363.230.7146,6528596795105722,2025-05-15 +City Hotel,1,30,2017,July,30,23,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.6,0,1,Canceled,Kelly Johnson,perkinschristopher@example.org,835-264-5462,4215356839879748,2025-05-26 +City Hotel,0,10,2017,October,43,24,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,84.14,0,2,Check-Out,Michael Gonzalez,blankenshipkevin@example.com,542-391-8499x1108,4245103889447639708,2024-06-14 +Resort Hotel,0,0,2017,January,2,3,0,2,1,1.0,0,HB,PRT,Direct,Direct,0,0,1,A,H,1,No Deposit,246.0,179.0,0,Transient-Party,56.76,0,1,Check-Out,Candace Mitchell,jenniferbarton@example.net,+1-553-291-5857,3578253630146901,2024-07-09 +City Hotel,1,166,2017,May,19,10,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,124.53,0,1,Canceled,Ryan Vaughn,tylersmith@example.org,839-225-7611,3525007696648315,2025-03-18 +City Hotel,1,38,2017,April,14,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.03,0,1,No-Show,Paul Johnson,sarah02@example.net,(581)847-4284x9685,573808227678,2026-01-21 +City Hotel,1,373,2017,June,26,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,111.76,0,1,Canceled,Ashley Parrish,jeffreyhughes@example.org,589.832.5217x95969,6011912296090673,2024-12-29 +Resort Hotel,0,0,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,17.0,76.0,0,Transient,105.34,0,0,Check-Out,Sharon Newton,fmitchell@example.org,416.465.8112x293,4455672562723278,2025-12-09 +Resort Hotel,0,56,2017,January,3,13,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,90.0,179.0,0,Transient-Party,68.24,0,0,Check-Out,Cynthia Mueller,iibarra@example.com,(401)491-7705x561,4515400333447938,2024-12-04 +City Hotel,0,0,2017,March,13,26,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,109.37,0,1,Check-Out,Donna Beck,ppearson@example.net,920.726.3661,4398214779704302,2025-07-21 +City Hotel,1,377,2017,October,41,12,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,111.61,0,0,Canceled,Jasmine Frye,ericajones@example.org,001-935-693-0560x2367,180070976485420,2025-03-07 +Resort Hotel,1,107,2017,October,44,30,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,75,Transient-Party,87.41,0,0,Check-Out,Emily Arnold,lrios@example.org,001-997-682-3332,180038721998278,2025-07-18 +City Hotel,0,15,2017,August,34,22,0,1,1,0.0,0,SC,CHE,Online TA,GDS,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.63,0,1,Check-Out,David Oliver,ryanmurphy@example.org,+1-741-429-6647x719,3576159705901777,2025-07-22 +City Hotel,1,95,2017,June,24,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,103.52,0,0,Canceled,Sheila Greer,mrose@example.com,+1-893-279-6264x455,4744617163001134089,2024-03-29 +City Hotel,0,32,2017,April,17,28,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,113.23,0,0,Check-Out,Michele Holland,brittanywalker@example.net,744-473-4205x6795,4534920098126833388,2025-01-23 +City Hotel,0,284,2017,February,9,27,2,5,2,0.0,0,BB,ITA,Online TA,Corporate,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,56.87,0,2,Check-Out,Kimberly Morrison,jonesrobin@example.net,001-481-201-1443x228,180019542076999,2025-06-09 +City Hotel,0,3,2017,February,7,10,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,83.64,0,0,Check-Out,Tracey Phillips,susan40@example.com,437-324-6498x747,4778230019194251574,2026-03-16 +City Hotel,1,74,2017,November,48,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,88.9,0,0,Canceled,Michael Lopez,smolina@example.net,272.847.6268,30538257947930,2026-01-31 +City Hotel,0,1,2017,February,7,14,0,1,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.02,0,0,Check-Out,Jose Bennett,oharrell@example.net,001-279-694-4231x1324,4890807403008573421,2026-03-17 +City Hotel,1,47,2017,October,43,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,91.27,0,0,No-Show,Justin Anderson,domingueztyler@example.com,(615)805-1807,4131383305554036276,2025-01-29 +Resort Hotel,0,88,2017,July,28,9,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,103.24,0,1,Check-Out,Dawn Rivera,timothy90@example.com,919.916.6612,30041974836148,2024-12-22 +City Hotel,1,106,2017,March,11,17,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,64.03,0,0,Canceled,Brittney Hernandez,johnfox@example.org,(789)821-1900x66705,562765588768,2025-05-16 +City Hotel,0,1,2017,March,11,15,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,43.87,0,1,Check-Out,Anthony Randolph,pamelawright@example.org,293-709-4288x933,180025684370660,2025-02-15 +City Hotel,0,88,2017,May,22,25,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,88.49,0,1,Check-Out,Mary Henry,angelrivera@example.com,675.663.8866x16186,4016610563027,2024-10-07 +City Hotel,0,414,2017,September,36,8,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,E,0,No Deposit,2.0,179.0,0,Transient-Party,66.27,0,1,Check-Out,Heather Bowers,zhernandez@example.net,4827998057,5509692298581520,2025-01-27 +City Hotel,0,143,2017,December,49,5,2,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,171.42,0,2,Check-Out,Daniel White,warnersteven@example.com,(521)659-7965,180099683611853,2025-01-16 +Resort Hotel,1,42,2017,December,51,22,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,157.66,1,2,Canceled,Jonathan Perry,mcardenas@example.org,(445)881-5705x8026,3517225764130673,2026-02-26 +City Hotel,0,0,2017,May,19,8,2,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Group,86.38,0,0,Check-Out,Anna Walker,gilmorejennifer@example.net,684-694-8769x31709,4843201628215375,2025-12-20 +City Hotel,0,99,2017,October,42,21,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,63.19,0,0,Check-Out,Gary Ward,glen18@example.com,+1-853-823-4873x3504,4345188579375693308,2025-03-22 +City Hotel,0,310,2017,October,40,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.92,0,0,Check-Out,Paul Moreno,mikeguzman@example.com,001-740-448-9869x903,38031741168398,2026-01-18 +Resort Hotel,1,145,2017,April,15,9,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,77.51,0,1,Canceled,Samantha Zavala MD,biancadavid@example.net,(370)270-9185x77141,2298628151345225,2024-06-05 +Resort Hotel,0,4,2017,February,6,4,1,0,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Jill Conway,icampbell@example.com,001-925-741-8377x43869,4013534087504911,2025-12-14 +City Hotel,1,345,2017,March,13,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,21,Transient,84.37,0,0,Canceled,Lisa Haley,jessicarichards@example.net,283-980-9835,2720592623121622,2024-04-29 +City Hotel,1,4,2017,June,23,4,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,12.0,45.0,0,Transient,102.82,0,1,Canceled,Erica Moon,laurenthomas@example.net,744.258.1835x9852,4397044215443244,2025-03-21 +Resort Hotel,0,19,2017,October,41,14,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,99.9,1,1,Check-Out,Janice Fernandez,robertmcdowell@example.com,5553734608,6011997926698664,2025-04-24 +City Hotel,1,13,2017,October,42,20,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,Non Refund,100.0,77.0,0,Transient,83.13,0,0,Canceled,Thomas Short,kevin30@example.com,275.505.4686x8003,3528561585865817,2025-07-11 +City Hotel,0,22,2017,August,33,11,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,132.21,0,3,Check-Out,Robert Griffin,meadowsmelanie@example.com,001-937-663-3035x6639,2707407000728112,2025-04-16 +City Hotel,1,330,2017,July,27,3,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.08,0,0,Canceled,Steven Lee,diana89@example.com,502-435-0434,348028359326388,2024-04-02 +Resort Hotel,1,193,2017,June,27,30,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,C,0,No Deposit,240.0,179.0,0,Transient,48.05,0,1,Canceled,Tiffany Jackson,jonesjeremiah@example.com,+1-516-655-2973x54332,373015012420227,2025-01-16 +City Hotel,1,43,2017,April,15,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,101.75,0,0,Canceled,Kimberly Smith,kglover@example.net,576.255.3527x4605,585046751061,2024-07-05 +City Hotel,1,22,2017,December,50,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,80.82,0,0,Canceled,Michael Ayala,uhinton@example.net,443-837-6197x5540,6584000644094337,2024-05-25 +City Hotel,1,40,2017,June,25,23,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.57,0,1,Canceled,Jessica Garcia,ipowell@example.org,785.773.5029x904,4537215634309183840,2024-07-20 +City Hotel,0,38,2017,April,18,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,103.1,0,2,Check-Out,Michele Cherry,vlee@example.net,672.961.8620x40769,630474166828,2026-01-15 +City Hotel,1,99,2017,March,10,2,2,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.88,0,0,Canceled,Maria Case,bcollier@example.com,(232)910-2529,3525350313811902,2024-05-26 +City Hotel,1,142,2017,June,23,1,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.62,0,0,Canceled,Brittany Stevens,ellisandrew@example.com,6623656827,3564715103420506,2025-03-14 +Resort Hotel,0,84,2017,April,14,5,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,301.0,179.0,0,Transient,103.05,1,1,Check-Out,Brandon Brown,meghan26@example.com,(211)817-5313x30207,4915996781955609,2025-03-04 +Resort Hotel,0,102,2017,August,35,31,2,1,3,1.0,0,BB,USA,Direct,Direct,0,0,0,H,H,1,No Deposit,253.0,179.0,0,Transient,165.94,0,0,Check-Out,Kristin Andrews,manderson@example.org,9176245562,30571805714858,2025-05-07 +City Hotel,0,248,2017,August,34,23,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,32.0,179.0,0,Contract,88.48,0,0,Check-Out,David Hughes,olivia42@example.org,769.377.3847x78901,4255322572385,2025-12-11 +City Hotel,1,16,2017,April,17,26,1,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.69,0,2,Canceled,Jessica Smith,alexandergriffin@example.com,317.775.2399,3555979108963990,2024-10-04 +Resort Hotel,0,162,2017,July,31,30,2,5,2,1.0,0,HB,FRA,Online TA,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,252.0,0,2,Check-Out,Kimberly May,zberry@example.com,526.297.2346x50040,376132441437537,2025-10-24 +City Hotel,1,272,2017,April,14,1,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,165.64,0,1,Canceled,Nicole Richards,alexa34@example.org,(627)664-1650,213181046663838,2025-11-30 +Resort Hotel,0,105,2017,October,43,22,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,80.57,0,0,Check-Out,Angel Reilly,heather77@example.net,+1-832-743-4061x125,347266232237213,2025-10-31 +City Hotel,1,2,2017,February,9,24,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,124.62,0,1,No-Show,Richard Turner,ofrancis@example.com,(267)341-6659,630401495126,2025-11-02 +City Hotel,0,3,2017,January,5,29,1,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,99.25,0,1,Check-Out,Preston Kim,prussell@example.com,(211)833-4685x69459,4311625518847682336,2025-04-05 +City Hotel,1,132,2017,June,24,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,E,B,0,No Deposit,13.0,179.0,0,Transient,105.94,0,2,Canceled,Matthew Wells,awilson@example.com,576-532-6488,4309911673768351051,2024-08-02 +City Hotel,1,166,2017,July,28,9,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,88.06,0,0,No-Show,Brandy Myers,traci77@example.com,+1-204-325-1504x7085,180046916222453,2025-01-21 +Resort Hotel,1,135,2017,August,32,5,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Kimberly Choi,pcharles@example.com,+1-829-481-7341x00565,348714510161273,2024-05-30 +Resort Hotel,0,0,2017,February,6,9,2,2,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,41.39,1,0,Check-Out,Michael Sloan,kingmichael@example.org,224.273.1424x5983,378174641058992,2025-03-17 +Resort Hotel,0,42,2017,June,26,22,1,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,79.12,0,2,Check-Out,Monica Brooks,pkramer@example.net,001-727-867-8146,30073020932787,2025-06-06 +City Hotel,0,99,2017,April,15,10,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient-Party,134.63,0,0,Check-Out,Kristen Peters,michaelmiller@example.net,001-522-375-9124x4332,4513331860517102,2025-12-26 +City Hotel,1,11,2017,October,42,15,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient-Party,102.51,0,1,Canceled,Aaron Carlson,millerdonna@example.com,(244)684-4826x894,4153109512231453819,2026-01-17 +City Hotel,0,10,2017,September,39,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient-Party,65.15,0,2,Check-Out,Theresa Torres,tara29@example.org,878.712.7625x27111,4367511678749,2024-11-13 +City Hotel,1,414,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Transient,84.83,0,0,Canceled,Stephanie Cooper,hbarnett@example.net,398-284-2407,4105907107144224,2025-11-06 +Resort Hotel,0,12,2017,February,8,23,0,1,1,0.0,0,FB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,47.29,0,0,Check-Out,Matthew Hunt,richardgreen@example.net,711-420-8394x0228,180015384266961,2024-06-02 +City Hotel,0,42,2017,September,36,4,1,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.44,0,1,Canceled,Daniel Davenport,ingramjoseph@example.com,001-256-567-8313x1644,213178088994980,2025-01-12 +Resort Hotel,0,8,2017,May,18,5,1,2,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,42.19,0,0,Check-Out,Christopher Marsh,ocalhoun@example.org,001-558-877-3550,060455573091,2025-09-25 +Resort Hotel,0,98,2017,September,36,9,2,1,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,80.25,0,0,Check-Out,Sarah Randolph,brandyfrench@example.org,3449580474,180013199345609,2024-10-05 +City Hotel,0,0,2017,August,32,9,1,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,93.08,0,0,Check-Out,Julia Dunn MD,colleenford@example.com,001-415-340-0829,4901066739645,2026-03-13 +Resort Hotel,0,143,2017,August,34,23,1,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,215.47,0,2,Check-Out,Brett Swanson,emmacruz@example.net,(245)777-6846x742,4381236587713,2025-09-19 +City Hotel,0,1,2017,February,6,5,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,81.71,0,1,Check-Out,Mr. Carl Rios,bakerchristopher@example.com,(809)988-2201x860,180012855480080,2025-01-31 +City Hotel,1,13,2017,February,8,23,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient,82.61,0,0,Canceled,Manuel Mccullough,leemary@example.com,615.249.5932,6599876263634351,2025-08-06 +City Hotel,1,414,2017,September,36,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.31,0,0,Canceled,Jerry Jensen,christopher12@example.org,+1-399-939-4091,4551127353508519195,2026-03-03 +City Hotel,0,55,2017,August,32,12,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.32,0,1,Check-Out,Kevin Cunningham,jonesbonnie@example.com,(352)845-1609x69330,4735116660343045,2025-08-25 +Resort Hotel,0,151,2017,May,22,28,1,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,2,No Deposit,16.0,179.0,0,Transient,228.01,1,0,Check-Out,Eugene Patterson,oavery@example.com,+1-421-725-3930x7345,30174733233800,2025-04-12 +Resort Hotel,0,41,2017,March,10,7,1,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,220.0,0,Transient-Party,46.12,0,0,Check-Out,David Walker,gregory37@example.net,566.724.8050,3547010387164695,2026-02-25 +City Hotel,0,1,2017,January,3,18,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,136.07,0,0,Check-Out,Jessica Larsen,sara76@example.org,+1-695-360-5635x30600,342846548013161,2025-12-13 +Resort Hotel,1,141,2017,July,27,4,4,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,239.02,0,0,Canceled,Nicholas Humphrey,cookamanda@example.com,001-406-364-9508x4910,3522673957745638,2024-12-19 +City Hotel,0,94,2017,March,11,11,2,2,1,0.0,0,BB,NLD,Aviation,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,88.51,0,0,Check-Out,Ian Torres,gtate@example.com,265.418.0659x4954,180081664206234,2025-03-25 +City Hotel,1,315,2017,November,45,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.89,0,0,Canceled,Casey Obrien,smithdaniel@example.org,+1-691-957-5347x0205,6510256704741642,2024-10-13 +City Hotel,0,187,2017,May,20,15,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.75,0,2,Check-Out,Shannon Taylor,melanie12@example.com,001-749-554-7676x580,4441766278676157934,2025-10-10 +City Hotel,0,290,2017,September,39,24,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,131.0,179.0,60,Transient-Party,87.53,0,0,Check-Out,Deborah Mercado,estradatimothy@example.net,001-481-985-5743,4528025677612402,2026-02-12 +City Hotel,0,3,2017,November,47,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,65.0,0,Transient-Party,48.36,0,0,Check-Out,Bernard Smith,yolson@example.net,+1-834-242-4313x98719,639060465379,2024-07-22 +City Hotel,1,16,2017,August,34,22,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,117.22,0,0,Canceled,Amanda Perkins,austinpaul@example.com,741.867.5226x6267,377487579160957,2024-11-03 +City Hotel,0,154,2017,March,12,16,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.87,0,1,Check-Out,Kevin Escobar,michael38@example.org,734-699-3354x0208,2257283597605938,2025-10-03 +City Hotel,0,40,2017,March,11,9,1,3,3,0.0,0,BB,PRT,Complementary,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,98.23,0,2,Check-Out,Kimberly Lutz,hperez@example.org,+1-864-267-5138x53439,4006877711679684782,2024-07-17 +City Hotel,1,1,2017,May,20,15,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,323.0,179.0,0,Transient,126.86,0,0,Canceled,Reginald Diaz,tcarson@example.com,590-707-9176x734,370965779857347,2024-10-12 +City Hotel,0,5,2017,January,2,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,173.0,179.0,0,Transient-Party,84.25,0,1,Check-Out,Raymond Quinn,mjohnson@example.org,(290)998-1458,213162572796465,2024-04-10 +City Hotel,1,84,2017,June,26,30,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,137.1,0,1,Canceled,John Dixon,harrisonstephen@example.net,001-686-590-1635x835,6594838248996581,2025-01-27 +City Hotel,1,108,2017,December,52,29,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient,66.57,0,2,Canceled,Jonathan Bates,john96@example.com,345.896.7674x2554,4650894582351319,2024-12-01 +Resort Hotel,0,53,2017,August,32,8,0,4,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,Renee Mendez,nelsonkyle@example.org,355-385-8272,180066080194684,2025-10-17 +City Hotel,1,4,2017,December,49,5,1,2,2,0.0,0,BB,PRT,Undefined,TA/TO,0,0,0,B,A,0,No Deposit,33.0,179.0,0,Transient,78.18,0,0,Canceled,Jose Griffin,xgibbs@example.com,+1-301-275-6099x25250,30195624706018,2025-04-14 +City Hotel,0,52,2017,October,43,25,1,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.94,0,0,Check-Out,Travis Hopkins,thompsonkaren@example.org,+1-905-615-0727x200,566397909409,2026-02-24 +City Hotel,0,37,2017,October,42,19,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,78.31,0,1,Check-Out,Nancy Webb,markbarrera@example.org,(606)845-4259x465,4403841356987113009,2025-03-15 +City Hotel,0,23,2017,September,37,9,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.67,0,0,Check-Out,Daniel Freeman,aaronmontgomery@example.com,(238)444-6914x0127,377209826926422,2026-02-28 +City Hotel,1,2,2017,May,19,4,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,A,A,0,No Deposit,9.0,179.0,0,Group,85.2,0,0,No-Show,Jacob Williams,matthew67@example.net,001-228-626-7626x0022,4361909185870,2025-08-17 +City Hotel,0,112,2017,November,45,4,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,28.0,179.0,0,Transient-Party,82.46,0,1,Check-Out,Terry Ward,smiththomas@example.net,8228241958,344327831276417,2025-02-10 +Resort Hotel,1,150,2017,April,15,10,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,Refundable,11.0,179.0,0,Transient,78.72,0,0,Canceled,Jesse Williams,gwilliams@example.org,432-765-4388x603,6520181941319986,2025-09-20 +Resort Hotel,1,368,2017,July,27,4,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,155.76,0,0,Canceled,Mrs. Michele Boyd,joycestephen@example.org,2789368673,4941658665997408,2025-04-18 +Resort Hotel,0,30,2017,October,43,27,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,99.18,0,1,Check-Out,Sandy Baker,cory16@example.org,(658)476-3097,4597506337449273,2024-04-08 +City Hotel,0,24,2017,September,36,3,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,133.91,0,0,Check-Out,Carrie Valdez,fjones@example.org,935.900.3425x0991,2234340743088621,2026-03-17 +City Hotel,0,0,2017,March,13,26,1,2,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,47.28,0,1,Check-Out,Matthew Houston,brianwatson@example.com,(212)320-0033x924,6552850970412661,2025-04-22 +Resort Hotel,0,45,2017,August,32,6,1,5,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,218.96,0,0,Check-Out,Jamie Solomon,michellecole@example.net,884.453.8535x392,340379925566314,2024-10-21 +City Hotel,0,17,2017,August,34,22,0,1,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,240.75,0,2,Check-Out,Heather Parrish,williamsjessica@example.com,001-285-920-6512x1400,4796048353135022,2025-09-04 +Resort Hotel,0,93,2017,December,51,17,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,124.54,0,1,Check-Out,Mr. Larry Shaw,hicksricky@example.net,806.351.0237,3584825199828110,2024-09-04 +Resort Hotel,0,149,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,14.0,223.0,0,Transient-Party,71.88,0,0,Check-Out,Christopher Jones,christopher62@example.net,001-808-891-7758,180028702591853,2024-10-20 +City Hotel,0,9,2017,October,43,22,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Group,104.82,0,0,Check-Out,Christine Lopez,lisa94@example.com,001-232-338-1221,4502121850235,2026-01-23 +Resort Hotel,0,1,2017,December,52,25,1,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,104.24,0,0,Check-Out,Mitchell Wilson,ncampbell@example.org,+1-985-342-7796,4878984357645,2025-08-02 +City Hotel,0,47,2017,March,10,6,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,E,2,No Deposit,2.0,179.0,75,Transient-Party,64.53,0,0,Check-Out,Robert Cortez,tyler23@example.org,(442)819-1698x32400,630493200897,2024-10-27 +Resort Hotel,0,147,2017,July,28,12,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,240.0,179.0,0,Group,139.15,0,1,Check-Out,Mr. Daniel Martin,townsendjames@example.com,710.963.4410x12112,3543474160134586,2026-03-02 +City Hotel,0,97,2017,August,35,30,0,3,2,0.0,0,BB,ITA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,142.13,0,1,Check-Out,Alison Williams,iperry@example.com,+1-378-472-5026,6011880524885091,2024-10-12 +Resort Hotel,0,55,2017,September,37,12,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,108.71,0,2,Check-Out,Candace Soto,allisonhall@example.com,+1-789-634-9261x01381,4281910464908526,2024-09-08 +City Hotel,0,21,2017,December,52,24,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,218.82,0,2,Check-Out,Kenneth Brown,rmartinez@example.org,213.250.7725x19824,180096927092999,2025-01-29 +Resort Hotel,0,47,2017,March,9,3,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,190.0,179.0,0,Group,84.84,0,1,Check-Out,Christopher Mullen,christopher86@example.org,+1-416-289-0217,213140893540291,2026-01-04 +City Hotel,1,274,2017,August,34,18,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,308.0,179.0,0,Transient,203.79,0,0,Canceled,Kristy Smith,stephensbrandi@example.org,(377)816-0787,342972095353618,2024-11-09 +Resort Hotel,0,10,2017,March,11,14,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,I,1,No Deposit,14.0,205.0,0,Transient-Party,55.98,0,0,Check-Out,Mary Campbell,nholmes@example.net,001-464-774-3958,2571108924244219,2025-12-30 +City Hotel,1,101,2017,July,27,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,106.5,0,1,No-Show,Jerry Haney,robert79@example.com,001-651-979-2870x08163,6011065938176572,2026-03-20 +Resort Hotel,0,98,2017,August,31,5,2,4,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,244.0,179.0,0,Transient,125.06,1,1,Check-Out,Carolyn Greer,dmiles@example.net,+1-773-305-7856x078,4596422110505,2025-04-02 +Resort Hotel,1,61,2017,August,32,12,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,215.09,1,0,Canceled,Rebecca Hoover,patrick80@example.net,+1-657-736-2283x4434,4609856463982320169,2024-10-03 +City Hotel,1,303,2017,October,41,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,60,Transient,62.0,0,0,Canceled,Matthew Baker,joanne96@example.com,329-447-6987,4907986350252504,2024-06-16 +City Hotel,0,2,2017,October,40,5,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,1.43,0,1,Check-Out,Grace Chavez,douglas63@example.net,494-837-0361x52478,4035203842666563,2024-04-04 +Resort Hotel,1,18,2017,August,32,7,2,6,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,238.0,179.0,0,Transient,211.41,0,0,No-Show,Crystal Cruz,alicia86@example.net,900.909.8800x66519,180024930315678,2026-03-01 +City Hotel,0,1,2017,September,37,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,90.08,0,1,Check-Out,Dale Heath,yvonne80@example.org,(756)559-3170x032,3579079793730259,2024-09-25 +Resort Hotel,0,55,2017,December,52,23,2,5,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,32.0,179.0,0,Transient-Party,83.99,0,0,Check-Out,Jennifer Hernandez,riveradarren@example.org,238-509-0229,30159922835416,2025-04-01 +City Hotel,1,5,2017,July,27,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.83,0,0,Canceled,John Mendez,lauren26@example.com,+1-753-634-8078x511,36251384710759,2025-01-01 +City Hotel,1,11,2017,August,33,19,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,137.95,0,1,Canceled,Richard Gordon,figueroaeric@example.org,712-844-7872x79943,3554375768852584,2024-04-18 +Resort Hotel,0,16,2017,May,19,6,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,213.38,0,2,Check-Out,John Anderson,amanda59@example.com,(922)970-0828x8738,3548534554579863,2024-09-13 +City Hotel,1,27,2017,June,26,22,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,145.98,0,0,Canceled,Samantha Prince,hingram@example.org,(845)395-3790,4257478211666056559,2024-08-21 +City Hotel,0,10,2017,March,14,30,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,101.47,0,1,Check-Out,Marie Boyd,michaelbennett@example.org,3508339253,4329942118334167,2024-07-22 +City Hotel,1,52,2017,October,41,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.98,0,0,Canceled,Andrew Moreno,qsanchez@example.net,2123104986,180015559590476,2024-11-18 +Resort Hotel,0,101,2017,April,15,12,2,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,132.78,0,1,Check-Out,Robert Clarke,scottmaddox@example.org,(224)478-7809,30280430708042,2025-04-05 +Resort Hotel,0,9,2017,February,5,2,0,2,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,41.45,1,0,Check-Out,Kevin Figueroa,dmckinney@example.org,541.735.6763x9907,6011790263869117,2025-02-23 +Resort Hotel,1,240,2017,August,33,14,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,228.32,0,1,Canceled,Melissa Davis,athomas@example.net,001-668-450-5763x02353,3598825981877832,2024-04-18 +Resort Hotel,0,2,2017,October,41,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,161.19,0,1,Check-Out,John Hall,goldenthomas@example.net,001-332-700-5967x6929,213192446031203,2024-12-15 +City Hotel,0,1,2017,December,52,28,1,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient-Party,65.57,0,1,Check-Out,Diane Mcdowell,monicabonilla@example.org,+1-244-854-7913,6507173595316548,2025-05-03 +Resort Hotel,1,146,2017,July,30,21,4,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,113.33,0,3,Canceled,Colin Fletcher,lynchmark@example.com,(830)764-3105x890,6011143985146705,2025-01-24 +City Hotel,1,343,2017,February,8,22,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,48.53,0,0,Canceled,Laura Wilson,cobbdeborah@example.net,(889)256-1403x8912,30459277350445,2025-11-24 +City Hotel,1,194,2017,June,23,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,98.56,0,0,Canceled,Matthew Watts,jennysanchez@example.net,575.893.7807x2067,3525660693670953,2026-01-21 +Resort Hotel,0,71,2017,March,14,30,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient-Party,104.88,0,0,Check-Out,Jack Moore,ryansteele@example.org,768-516-8403,561263159023,2024-08-31 +City Hotel,0,12,2017,October,40,4,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,89.28,0,2,Check-Out,Dawn Wyatt,rhorton@example.com,(676)639-7031,4601615091351759,2025-03-07 +Resort Hotel,1,93,2017,August,31,3,4,7,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,215.02,0,2,No-Show,Jacob Hill,milleranna@example.net,(613)203-9289,4107719557304531,2025-07-05 +Resort Hotel,0,3,2017,January,2,5,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,241.94,0,1,Check-Out,Nicole Gutierrez,elewis@example.org,621-568-1331,630458702564,2024-08-14 +City Hotel,1,310,2017,October,41,11,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,80.62,0,0,Canceled,Karen Wood,andrewdennis@example.com,790.758.7800,30111859136185,2024-06-20 +City Hotel,0,46,2017,June,24,11,0,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,103.54,0,1,Check-Out,Dawn Parker,gregoryfoster@example.org,665.425.5446x263,180086207096091,2025-02-01 +Resort Hotel,0,31,2017,March,12,22,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,1,E,E,1,No Deposit,244.0,179.0,0,Transient,93.42,1,1,Check-Out,Michael Fitzgerald,rphillips@example.net,+1-724-303-7927x53424,3522932642220831,2025-04-19 +Resort Hotel,0,3,2017,August,32,5,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,195.46,1,0,Check-Out,Mary Adkins,montgomerymelissa@example.net,493.828.0867,4361194260150875225,2024-07-26 +City Hotel,0,19,2017,September,37,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,154.98,0,2,Check-Out,Michael Martin,donnasanchez@example.com,(225)832-3858x820,3540487751711318,2025-03-12 +City Hotel,1,17,2017,October,43,22,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,77.43,0,0,Canceled,James Morgan,obrienmatthew@example.com,9778223309,2423755075978613,2024-06-08 +City Hotel,0,0,2017,July,28,9,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,1.86,0,1,Check-Out,Melissa Mann,lukekim@example.org,(878)318-4331,6582768395877298,2025-10-14 +City Hotel,0,111,2017,January,2,5,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,14.0,331.0,0,Transient-Party,103.2,0,2,Check-Out,Vincent Smith,kimberlyreyes@example.com,638-431-0755,4824353698952927617,2025-04-23 +City Hotel,0,97,2017,March,13,27,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,17.0,179.0,62,Transient,128.31,0,0,Check-Out,Charles Frost,jonathanperkins@example.net,001-455-357-2399,36964081348604,2025-11-07 +City Hotel,0,47,2017,June,24,9,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,129.28,0,1,Check-Out,Austin Walker,ylevine@example.org,840-320-0795x288,4403031013409243910,2025-05-19 +Resort Hotel,1,103,2017,January,3,19,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,55.76,0,0,Canceled,Andrew Cruz,oneillshane@example.org,615-626-4436x0511,676117176245,2025-07-20 +City Hotel,0,3,2017,September,38,21,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,153.88,0,0,Check-Out,Miss Kelly Dawson,nhenderson@example.net,(209)442-7480x944,2368045272223329,2025-11-03 +City Hotel,0,59,2017,August,34,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.44,0,1,Check-Out,Theresa Wilkins,thompsonallison@example.org,(293)446-0714x667,6569193606196486,2024-11-29 +Resort Hotel,1,12,2017,December,51,19,1,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,124.77,0,2,Canceled,Jessica Harris,lopezjeffrey@example.com,574-525-0481,675953447249,2025-08-10 +City Hotel,1,149,2017,February,8,19,1,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.23,0,0,Canceled,Regina Mitchell,chenmaria@example.net,+1-846-635-3050x569,4877165647662785,2024-08-21 +City Hotel,1,154,2017,June,27,30,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,75,Transient,111.11,0,0,Canceled,Kyle Black,zsmith@example.net,(551)441-1751,4110349095946,2024-06-02 +Resort Hotel,0,38,2017,July,27,8,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,177.56,1,2,Check-Out,Christopher Johnson,charlesjones@example.net,001-755-651-8073x171,3546765895243510,2024-07-30 +Resort Hotel,1,132,2017,August,31,2,4,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,122.07,0,0,Canceled,Aaron Moore,hannahwright@example.org,+1-930-490-4611x8558,4714274680943269779,2024-10-29 +City Hotel,0,47,2017,August,32,6,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,65.06,0,0,Check-Out,Penny Gomez MD,jimrobinson@example.net,+1-980-277-5418,3568170000097310,2025-02-01 +City Hotel,0,54,2017,August,32,6,1,2,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,101.58,0,2,Check-Out,Kelly Mclaughlin,kelleyjonathan@example.net,3182065266,4183665228443843,2024-07-24 +Resort Hotel,1,139,2017,July,31,31,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,105.28,0,0,Canceled,Brandon Mitchell,elizabeth97@example.com,666-371-5561,060439573647,2024-12-23 +City Hotel,0,85,2017,March,14,30,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,97.5,0,1,Check-Out,Suzanne Bailey,barkererin@example.com,001-364-557-4257x1726,341976354825571,2024-06-02 +Resort Hotel,0,48,2017,October,41,9,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,D,0,No Deposit,14.0,179.0,0,Transient,114.34,1,1,Check-Out,Destiny Obrien,johnmoreno@example.com,889-664-4613x907,6011733996544987,2024-07-16 +Resort Hotel,0,123,2017,March,11,15,0,2,2,2.0,0,HB,AUT,Direct,Direct,1,0,1,E,F,1,No Deposit,15.0,179.0,75,Transient-Party,167.88,1,3,Check-Out,Timothy Andrews,bhernandez@example.com,830.971.3815,4773388954977415,2025-03-14 +City Hotel,1,336,2017,July,28,10,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,61.51,0,0,Canceled,Jason Rodriguez,odawson@example.org,(435)961-9251,676279415183,2024-08-24 +City Hotel,1,341,2017,October,43,23,2,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,30.0,179.0,0,Contract,43.32,0,0,Canceled,Edward Arroyo,michellewolf@example.com,5679217076,4668646407476352,2026-03-27 +Resort Hotel,1,3,2017,December,52,30,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,2.31,0,0,Canceled,Tina Walter,rileynicole@example.org,217.566.6552,30292912240303,2024-04-16 +Resort Hotel,0,145,2017,March,11,11,2,3,1,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,D,0,Refundable,10.0,225.0,0,Transient-Party,41.77,0,0,Check-Out,Laura Benson,kylemyers@example.com,001-423-836-1645x80599,3553600257293797,2024-10-11 +City Hotel,0,2,2017,September,39,24,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,2.92,0,0,Check-Out,Kristine Carrillo,cassandrapark@example.com,630-253-6232x19903,4217493328203,2024-12-29 +City Hotel,0,43,2017,November,46,12,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.83,1,2,Check-Out,Tonya Ellis,jeffreyorozco@example.net,649-214-7541x406,180007866897371,2024-12-24 +City Hotel,1,148,2017,October,41,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,110.12,0,0,Canceled,Kevin Johnson,marymcconnell@example.net,(262)965-6603,3536220948014684,2024-09-12 +City Hotel,0,3,2017,August,32,5,0,1,2,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,213.3,0,0,Check-Out,Austin Schultz,lisahenderson@example.org,(404)888-0043x105,639013938902,2025-05-06 +City Hotel,1,0,2017,July,27,6,0,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,40,Transient-Party,102.52,0,0,Canceled,Megan Hall MD,wilsonyvonne@example.org,+1-370-369-1418,4366313214633395,2025-01-24 +Resort Hotel,0,403,2017,February,8,23,0,2,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,48.52,0,1,Check-Out,Kelli Smith,denise89@example.org,001-721-290-8125x34694,342232471956306,2025-01-30 +City Hotel,1,37,2017,November,45,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.75,0,0,Canceled,Danielle Davis,mevans@example.org,413.969.1538x687,4613919635858770331,2025-01-29 +City Hotel,0,99,2017,August,31,4,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,209.35,0,3,Check-Out,Samantha Jones,morganlowe@example.org,(911)956-7395,4075482013019924,2026-03-05 +City Hotel,0,94,2017,March,13,23,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.72,1,1,Check-Out,Karen Gomez,yowens@example.net,712.523.1258x25568,4169970302328540,2025-01-25 +City Hotel,1,145,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,74.0,179.0,41,Transient,106.33,0,0,Canceled,Debra Valentine,delgadonatasha@example.com,681-441-7220x3564,4347422924605116,2025-03-12 +City Hotel,1,1,2017,May,22,27,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,A,A,0,No Deposit,15.0,197.0,0,Transient,121.89,0,1,Canceled,Susan Porter,chansen@example.com,001-649-573-8631x5101,36650952618049,2025-11-19 +City Hotel,1,89,2017,December,51,23,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.76,0,0,Canceled,Nicolas Salas,cruzrandall@example.org,300-788-9257x85063,2292719152970990,2024-10-09 +Resort Hotel,1,105,2017,December,50,16,2,1,2,0.0,0,FB,CN,Groups,TA/TO,0,0,0,A,A,0,Non Refund,94.0,179.0,0,Transient,82.1,0,0,Canceled,Dale Wright,chamberstrevor@example.com,860.530.8733,4442396309273840410,2024-06-05 +City Hotel,0,0,2017,May,18,2,1,1,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,113.47,0,0,Check-Out,Brittney Rodriguez,ataylor@example.com,750.781.4696,213172424928562,2024-09-19 +Resort Hotel,1,137,2017,August,32,9,0,4,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,224.86,0,1,Canceled,Megan Alvarado,jasonsweeney@example.com,208-314-6633x217,346995183718588,2024-12-31 +City Hotel,0,18,2017,June,24,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,141.64,0,1,Check-Out,Pamela Weaver,ecrawford@example.com,719.527.8050,5175481814972816,2025-11-08 +City Hotel,0,120,2017,August,32,10,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,101.25,0,1,Check-Out,John Oliver,amyprice@example.net,665.767.1071x1393,3598323841440520,2025-06-23 +City Hotel,1,145,2017,July,30,23,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,135.26,0,1,Canceled,William Prince PhD,czimmerman@example.org,001-917-247-9398x91876,3590994622792640,2024-10-12 +Resort Hotel,1,376,2017,October,43,25,0,5,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,78.0,179.0,0,Transient-Party,109.21,0,0,No-Show,William Moon IV,deborah21@example.net,506-627-2764,6011131022095316,2025-01-30 +Resort Hotel,0,27,2017,October,42,16,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient-Party,48.07,0,0,Check-Out,Kenneth Brown,acostawilliam@example.net,893.263.2314x55228,4245471946015344,2025-09-10 +City Hotel,1,97,2017,April,14,6,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,78.69,0,0,Canceled,Karen Fernandez,danielmorse@example.net,685.497.4962,4735895313143,2024-10-02 +City Hotel,0,149,2017,June,22,2,1,2,1,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,155.0,179.0,0,Transient,127.7,0,1,No-Show,Jennifer Parks,nicolewyatt@example.org,+1-354-600-6866,180052853014754,2024-09-19 +City Hotel,0,207,2017,March,12,22,1,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,101.43,0,2,Check-Out,William Wolfe,xray@example.net,563.349.3895x85247,4831750559266,2025-04-28 +Resort Hotel,0,53,2017,October,42,18,0,2,1,0.0,0,BB,DEU,Online TA,Corporate,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,109.99,0,2,Check-Out,Michael Smith,john42@example.net,001-288-913-9279x197,3570490252794158,2025-09-28 +City Hotel,1,6,2017,June,23,3,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,1,No Deposit,241.0,179.0,0,Transient,110.83,0,2,Canceled,Kevin Nguyen,riverarichard@example.org,963-824-6879x731,30175634085173,2025-01-29 +Resort Hotel,0,209,2017,October,41,9,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,74.0,179.0,0,Transient-Party,111.69,0,0,Check-Out,Debbie Dunn,wwalker@example.org,+1-825-511-9817,30307991974711,2025-05-24 +Resort Hotel,0,151,2017,March,13,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,11.0,222.0,0,Transient-Party,102.1,0,0,Check-Out,John Austin,ycole@example.com,6487444068,2283667761175777,2025-01-09 +City Hotel,1,2,2017,August,34,23,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,138.32,0,0,Canceled,Jonathan Clark,christinepugh@example.net,(757)230-5785x74275,3550166347971217,2025-07-18 +Resort Hotel,0,29,2017,December,49,9,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,52.34,0,1,Check-Out,Jacqueline Dickerson,brooksdebra@example.org,227.526.4548x4376,375377079752084,2025-11-24 +City Hotel,0,8,2017,November,47,24,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,60,Transient-Party,103.7,0,1,Check-Out,Christopher Anderson,raysmith@example.org,524.824.7971x559,213105602127920,2024-10-07 +City Hotel,1,281,2017,December,51,19,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,112.82,0,1,Canceled,Crystal Garcia,courtney05@example.org,206-974-4187x674,36028099927831,2025-07-06 +Resort Hotel,1,262,2017,July,28,14,0,6,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient-Party,53.67,0,2,Canceled,David Reynolds,shepardcolton@example.net,402.382.9689x885,213128633387529,2025-10-07 +City Hotel,0,10,2017,July,30,21,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,234.11,0,1,Check-Out,Charles Haley,aaron98@example.net,4475569597,30083314133646,2024-07-11 +City Hotel,0,167,2017,June,23,5,2,1,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,112.94,0,0,Check-Out,Robert Thompson,rjackson@example.com,819.592.4280x03355,38101822394542,2024-05-27 +City Hotel,0,64,2017,June,23,4,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,137.85,0,2,Check-Out,Dr. Samuel Holmes DDS,shannonbutler@example.com,(424)603-5163,4208471437799674,2024-07-24 +City Hotel,1,122,2017,June,22,2,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,100.36,0,1,Canceled,Elizabeth Hart,lauren05@example.net,(430)648-9134x07244,4575275735536901,2025-06-11 +City Hotel,1,46,2017,July,28,6,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,184.0,0,Transient,116.07,0,2,Canceled,Jennifer Vaughn,sandramurillo@example.com,(777)550-4099x2794,4312337339423,2024-06-01 +City Hotel,1,2,2017,November,45,3,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,235.71,0,2,Canceled,Robert Woods,christian72@example.org,487-332-6253,564859397973,2025-10-22 +City Hotel,1,147,2017,July,27,1,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.92,0,0,Canceled,Joanna Cook,qgreen@example.com,942.698.8038,3545600221194130,2025-08-06 +City Hotel,0,303,2017,June,25,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,125.34,0,0,Check-Out,Justin Frederick,edward58@example.net,6865182594,180055827977915,2025-06-17 +City Hotel,1,95,2017,May,19,7,2,0,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.48,0,0,Canceled,Alejandro Martinez,weberbianca@example.com,+1-700-252-6690x309,2293841754984630,2024-07-25 +City Hotel,0,0,2017,June,24,10,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Tracey Gonzalez,bwebster@example.com,387-844-6076,3548571588435811,2025-10-21 +Resort Hotel,0,253,2017,June,25,24,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,1,No Deposit,237.0,179.0,0,Transient-Party,52.75,1,1,Check-Out,Mariah Thompson,andrewskenneth@example.net,484-369-6459,30265275754342,2025-02-25 +City Hotel,1,269,2017,September,36,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,97.7,0,0,Canceled,Heather Nunez,nicholas16@example.org,(528)211-1683x44746,347114406814021,2025-04-04 +City Hotel,1,151,2017,June,24,8,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,121.01,0,0,Canceled,Dr. Steve James,jackcastro@example.net,531-358-5565,3508251155839525,2026-03-11 +City Hotel,0,21,2017,August,34,20,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,239.69,0,1,Check-Out,Mark Thomas,emily97@example.net,614-648-3350,5509510396800891,2026-01-29 +City Hotel,0,33,2017,June,25,20,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,218.56,0,3,Check-Out,Robert Rogers,daniel72@example.com,+1-638-863-8476x49229,4579034841025784956,2024-10-22 +City Hotel,1,386,2017,October,40,6,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.22,0,0,Canceled,Laura Sweeney,heatherkelly@example.net,+1-592-451-0852x009,4405977185739549,2025-05-31 +Resort Hotel,0,29,2017,June,26,26,4,5,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,D,E,2,No Deposit,14.0,179.0,0,Transient,134.55,0,2,Check-Out,Christopher Perez,nancyshaw@example.net,001-553-896-8291,3588444174948129,2024-09-27 +City Hotel,0,197,2017,October,41,11,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,107.65,0,0,Check-Out,Eddie Adams,michelledavis@example.org,001-880-998-7949x268,4410267182873234927,2025-12-17 +Resort Hotel,0,389,2017,January,4,22,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,317.0,179.0,0,Transient-Party,45.94,0,1,Check-Out,Denise Wallace,alvaradoedwin@example.org,335-776-1755x045,501824183690,2024-06-23 +City Hotel,1,27,2017,December,50,11,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,236.0,179.0,0,Transient,96.0,0,0,Canceled,Heidi Matthews,smithdavid@example.net,738-427-7542,36614530599006,2025-12-07 +Resort Hotel,0,92,2017,November,46,13,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,113.48,0,1,Check-Out,Jennifer White,robertsellen@example.net,001-980-938-1898x5928,213148550535884,2025-11-21 +City Hotel,0,4,2017,November,45,9,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,52.46,0,0,Check-Out,Nicholas Stanley,danielsamy@example.com,610-795-5101,3516010949582241,2026-01-15 +City Hotel,1,257,2017,July,30,25,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,14.0,59.0,0,Transient-Party,93.83,0,1,Canceled,Mercedes Miller,josesimpson@example.org,435.888.0994,344281341549575,2026-03-03 +City Hotel,1,313,2017,February,7,15,0,2,2,0.0,0,HB,POL,Groups,TA/TO,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Contract,64.93,0,0,Canceled,Brian Brown,gibarra@example.net,405-324-3425,30470127441326,2025-07-20 +Resort Hotel,0,4,2017,August,33,13,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,237.0,179.0,0,Transient,187.91,0,1,Check-Out,Kimberly Johnson,debra61@example.com,281.325.8184,3542240572018928,2025-09-14 +City Hotel,0,2,2017,December,49,6,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.43,0,1,Check-Out,Phillip Miller,wrightdebra@example.org,(980)887-6116,3589508992336318,2024-11-27 +City Hotel,0,155,2017,April,17,22,1,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,103.62,0,0,Check-Out,Christopher Pena,ifrost@example.net,(364)689-1266x21458,4903038820891,2025-09-04 +City Hotel,0,0,2017,April,17,23,1,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,0,No Deposit,11.0,179.0,0,Transient,100.11,1,2,Check-Out,Ellen Wright,hamiltonivan@example.com,+1-453-325-8533x389,4930309126021,2024-08-19 +City Hotel,1,7,2017,January,3,13,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,197.7,0,1,Canceled,Mark Anderson,ecarr@example.com,616.754.6029x31442,30144708364989,2024-09-02 +City Hotel,0,2,2017,March,10,8,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,35.0,179.0,0,Transient,101.23,0,0,Check-Out,Alyssa Alvarado,ethanyoung@example.org,474.605.9520x351,30552422587067,2025-11-15 +Resort Hotel,0,115,2017,April,17,28,1,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient-Party,85.33,0,1,Check-Out,Erika Alvarez,kevin46@example.org,220.293.8317x036,6011074315236462,2024-12-16 +City Hotel,1,18,2017,August,34,18,2,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,11.0,179.0,0,Transient,106.5,0,1,Canceled,Kimberly Nelson,stevensjessica@example.com,+1-323-532-3902x6298,180072038346152,2024-06-11 +City Hotel,1,42,2017,June,25,19,2,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.21,0,0,Canceled,Wayne Wolfe,brittney57@example.org,+1-707-432-1446x70476,4498838398640981,2024-12-18 +City Hotel,0,1,2017,November,45,4,1,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,73.0,0,Transient,81.8,0,0,Check-Out,Kyle Welch,alexanderalex@example.net,459.223.9489,376114408531171,2025-01-18 +City Hotel,1,201,2017,August,34,20,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.39,0,0,Canceled,Kristy Mills,dawn41@example.com,606.767.4968,4165509042959448239,2024-04-11 +Resort Hotel,0,149,2017,April,17,24,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,125.72,0,1,Check-Out,Emily Reed,paulmartinez@example.com,+1-928-759-6629x60013,3595657931502555,2024-09-29 +Resort Hotel,0,18,2017,August,34,23,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,252.0,1,1,Check-Out,Regina Ramos,mcdanieldarlene@example.net,483-401-6383x8621,4766098566815,2025-04-20 +Resort Hotel,0,147,2017,March,13,28,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,223.0,0,Transient-Party,46.67,0,0,Check-Out,David Torres,charlesclayton@example.org,001-555-867-5224x6759,2528327119889968,2025-02-14 +Resort Hotel,0,1,2017,August,33,18,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,16.0,179.0,0,Transient,209.83,0,0,Check-Out,Robert Charles,masseyalisha@example.net,(259)881-5331x808,213178327655327,2025-10-10 +City Hotel,1,123,2017,June,25,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,117.67,0,0,Canceled,John Smith,zpratt@example.org,307.349.3408,4879602251170256782,2024-07-03 +City Hotel,0,114,2017,October,42,15,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,80.93,1,1,Check-Out,Theresa Woods,margaret15@example.com,+1-540-675-6394x7568,6562728519667623,2025-01-28 +City Hotel,1,22,2017,August,34,17,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.27,0,2,No-Show,Jeffrey Carter,smithbrian@example.com,(897)538-4149x005,4644447850713342517,2025-07-20 +City Hotel,0,5,2017,March,12,20,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,177.9,0,2,Check-Out,Adam Brooks,ryanowens@example.com,(361)396-5263x309,180048815767174,2025-04-26 +Resort Hotel,1,246,2017,December,48,2,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,91.83,0,0,Canceled,Justin Foster,chad40@example.net,9275865798,3526290714187131,2026-02-01 +City Hotel,0,155,2017,June,24,8,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient-Party,143.47,0,0,Check-Out,Omar Price,droberts@example.com,609-560-8085x603,6571975148126526,2025-10-16 +Resort Hotel,1,0,2017,March,12,19,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,13.0,75.0,0,Transient,48.26,0,1,Canceled,Dennis Henderson,stephanie51@example.net,667.536.8167x179,374862909505498,2025-08-13 +City Hotel,1,12,2017,February,7,12,1,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.16,0,0,Canceled,Phillip Kent,waynejackson@example.com,001-917-815-1404x303,6569581174886803,2025-05-13 +City Hotel,1,398,2017,August,33,17,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,125.32,0,0,Canceled,Melinda Mitchell,christymcguire@example.net,238-959-3736x762,30449030418811,2026-01-05 +Resort Hotel,0,24,2017,May,21,23,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,101.14,0,0,Canceled,Rhonda Gutierrez,rodriguezroberto@example.com,(668)444-0124,676350467590,2025-09-26 +Resort Hotel,1,244,2017,December,52,26,1,5,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,313.0,179.0,75,Transient,53.52,0,0,Canceled,Catherine Roberts,lisa97@example.org,001-248-496-1703x57657,2313691598048969,2025-09-19 +City Hotel,0,16,2017,May,21,26,1,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,127.56,1,1,Check-Out,Lisa Nelson,alicia32@example.com,5788655501,3541787657362283,2026-01-27 +Resort Hotel,1,338,2017,April,14,4,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,313.0,179.0,0,Transient,79.2,0,0,Canceled,Chelsea Smith,tyler85@example.net,(851)800-8569x6080,5357171582339708,2026-01-09 +Resort Hotel,1,195,2017,May,18,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,244.0,179.0,0,Transient,129.59,1,1,Canceled,Joseph Lopez,mullinsterri@example.org,838-877-5504,6011356236817417,2025-06-21 +City Hotel,0,16,2017,November,46,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,52.0,0,Transient-Party,62.99,0,0,Check-Out,Derrick Espinoza,lbell@example.org,+1-687-367-3658x35876,347926451131153,2025-09-26 +Resort Hotel,1,135,2017,July,27,5,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,73.52,0,0,Canceled,Crystal Hernandez,jonathancobb@example.org,3089103569,375348439968124,2025-05-09 +City Hotel,1,0,2017,August,31,4,2,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,331.0,0,Transient,5.25,0,0,Canceled,Glenn Collins DDS,amydavis@example.com,233.592.3172x044,213191452748486,2024-05-02 +City Hotel,1,37,2017,December,52,25,0,1,2,0.0,0,BB,AUT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,95.05,0,1,Canceled,Mrs. Raven Rivera DVM,sandersjohnny@example.net,593.374.6823,180024870387851,2025-11-06 +Resort Hotel,0,19,2017,December,49,8,2,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,C,E,0,No Deposit,14.0,179.0,0,Transient,88.0,0,0,Check-Out,Amy Rowe,bmiranda@example.net,001-483-840-4739,4898578001599,2024-07-06 +Resort Hotel,0,3,2017,March,10,4,1,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,18.0,331.0,0,Transient,0.54,0,0,Check-Out,John Lee,karenfuller@example.org,475.540.9589x66179,4814362017711096,2024-06-29 +Resort Hotel,0,94,2017,March,9,2,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,136.0,179.0,0,Transient,85.95,0,0,Canceled,Ruth Clayton,deborah76@example.net,453.976.0906,30107141569449,2024-10-24 +Resort Hotel,1,56,2017,August,32,10,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,161.26,0,0,Check-Out,Randy Wright,kennedymark@example.net,830-228-8350x43322,36553967499597,2024-08-04 +City Hotel,1,143,2017,August,34,24,2,2,2,2.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,2,No Deposit,10.0,179.0,61,Transient-Party,188.83,0,1,Canceled,Jessica Rojas,okelly@example.org,7779966667,3578382134484995,2024-06-30 +Resort Hotel,0,3,2017,February,8,23,0,2,1,0.0,0,BB,,Corporate,Corporate,1,1,0,A,D,2,No Deposit,18.0,71.0,0,Transient,39.46,1,0,Check-Out,Joel Wise,christopherreese@example.com,001-850-225-4915x7723,6595353761006965,2024-06-30 +City Hotel,0,44,2017,April,17,21,1,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,128.22,0,1,Check-Out,Vickie Kennedy,rodneyrios@example.org,+1-695-306-2501x293,3534651355899187,2025-03-18 +Resort Hotel,0,3,2017,October,43,28,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,62.91,0,0,Check-Out,Emily Morris,robinsonryan@example.org,+1-660-442-6343x07237,4237908412940828,2024-05-24 +Resort Hotel,1,29,2017,August,34,21,2,10,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,237.0,179.0,0,Transient,203.23,0,2,Canceled,Amanda Pineda,shernandez@example.net,942.347.4766x835,4214747329160,2025-04-20 +City Hotel,0,12,2017,February,6,6,2,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,83.4,0,1,Check-Out,Dawn Little,savannah72@example.com,001-353-514-2455,180086139396494,2024-08-17 +City Hotel,1,18,2017,January,2,6,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,76.96,0,0,Canceled,Stephen Boyer,larrymorris@example.com,+1-512-775-1938x4584,4107032714120398,2025-12-29 +Resort Hotel,0,323,2017,August,32,5,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,221.06,1,1,Check-Out,Brian Chen,lgreene@example.net,381.585.4487,213159746421830,2025-09-13 +Resort Hotel,1,175,2017,March,13,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,223.0,0,Transient-Party,60.57,0,0,Canceled,Christopher Hill,gedwards@example.net,704-768-3318x763,3539533602196598,2025-04-29 +City Hotel,0,25,2017,July,28,12,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,133.0,0,1,Check-Out,Richard Smith,allison33@example.net,001-414-528-4157x75723,2295338329944452,2024-11-18 +Resort Hotel,0,158,2017,March,13,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,70.33,0,1,Check-Out,Richard Alvarez,raymondbeasley@example.org,480.906.4400x8728,3536582381602691,2024-06-20 +Resort Hotel,0,37,2017,June,26,28,2,7,2,1.0,0,FB,BEL,Direct,Direct,0,0,0,E,E,2,No Deposit,252.0,179.0,0,Transient,2.85,1,0,Check-Out,Jacqueline Davis,eosborn@example.com,(270)329-4398,3569567221357010,2025-11-26 +City Hotel,0,57,2017,September,39,22,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,141.73,0,2,Check-Out,Brandon Montgomery,travis59@example.net,001-793-894-4119x042,213193491786253,2025-11-02 +City Hotel,1,0,2017,December,50,15,0,4,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.5099000000000001,0,1,Canceled,Yolanda Garrett,esimpson@example.net,7248182715,3505074553436964,2025-02-03 +Resort Hotel,0,37,2017,March,13,26,1,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,2,No Deposit,22.0,179.0,0,Transient-Party,63.0,0,0,Check-Out,Matthew Miles,sara45@example.net,+1-449-929-3805x34435,373019915708852,2025-02-16 +City Hotel,0,51,2017,October,41,8,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,107.22,0,2,Check-Out,Beth Hall,wendy96@example.org,520-512-5881,4361245673927196,2025-11-01 +City Hotel,1,148,2017,October,41,8,1,7,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,114.23,0,0,No-Show,Dr. Nicole Trujillo,benjamin97@example.com,7787529056,376263513331058,2024-08-28 +City Hotel,1,111,2017,May,19,9,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient-Party,91.92,0,0,Canceled,Corey Norris,christopher84@example.org,+1-304-506-5518x03363,4344687114345573,2026-03-05 +City Hotel,1,136,2017,May,22,26,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,257.0,179.0,0,Transient,128.07,0,0,Canceled,Chad Roach,samanthaking@example.org,865-719-4933,6011087869454810,2024-09-21 +City Hotel,0,111,2017,March,10,5,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,107.61,0,1,Check-Out,Mr. Edward Terry,melissa35@example.org,001-920-836-1854,4417515651029692,2025-02-21 +City Hotel,1,158,2017,July,30,26,2,6,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,193.15,0,3,Canceled,Cody Bailey,megantaylor@example.com,001-545-850-5678x4491,4417671220385580422,2024-11-06 +Resort Hotel,1,320,2017,January,4,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,246.0,179.0,0,Transient,51.02,0,0,Canceled,Denise Guerra,fmatthews@example.org,(357)573-3752,4530069276576,2025-06-11 +City Hotel,1,140,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,277.0,179.0,0,Transient,85.0,0,0,Canceled,Kristen Jones,nguyenspencer@example.org,592-762-8183,4179410783092566838,2025-02-18 +City Hotel,0,15,2017,November,47,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,238.0,0,Transient-Party,63.52,0,0,Check-Out,Edward Baker,rramirez@example.org,(574)717-0290x17530,3520971165062289,2026-01-13 +City Hotel,0,346,2017,May,18,2,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,13.0,216.0,0,Transient-Party,89.48,0,0,Check-Out,Aaron Little,dianedavis@example.com,230-952-7080,4518334275545952,2025-11-30 +City Hotel,0,12,2017,March,11,12,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,40.0,45.0,0,Transient-Party,81.13,0,0,Check-Out,Cody Smith,harrisonlisa@example.net,+1-701-763-4729x0531,4409170540161239,2024-07-20 +Resort Hotel,1,91,2017,March,11,12,1,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,75.67,0,0,Canceled,Patty Allen,daniellebishop@example.com,582-725-2964,4233849317444496,2025-05-12 +Resort Hotel,0,17,2017,August,34,23,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient,252.0,1,3,Check-Out,Mary Ryan,gabrielfletcher@example.net,327-435-5676x573,6561240096665914,2024-09-18 +City Hotel,1,41,2017,October,41,9,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,86.99,0,0,Canceled,Joseph Jimenez,holmesalex@example.com,(720)867-2517x2641,4735327919996,2025-01-30 +Resort Hotel,0,154,2017,August,34,25,4,6,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,G,1,No Deposit,263.0,179.0,0,Transient,201.87,0,0,Check-Out,Lisa Morris,michele00@example.net,(757)271-2505,346910806083682,2024-08-22 +Resort Hotel,0,161,2017,August,32,5,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,252.0,0,1,Check-Out,Ashley Mills,whouse@example.net,+1-667-571-3335x535,213177219514972,2025-01-12 +City Hotel,1,188,2017,May,20,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,131.01,0,2,Canceled,Russell Anderson,zhayden@example.net,671-895-3472,3572122668535184,2025-09-21 +City Hotel,1,0,2017,August,31,4,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,0,0,B,B,0,No Deposit,4.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Canceled,Christina Washington,garrettlisa@example.com,001-531-584-1805x4871,6011902624678141,2025-12-10 +City Hotel,1,31,2017,October,41,9,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient,82.89,0,0,Canceled,Kenneth Huff,angelreed@example.com,907-557-3130x05103,4945966092332,2025-11-22 +City Hotel,0,52,2017,May,21,21,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.89,0,1,Check-Out,Kelly Miles,jessemyers@example.com,209-502-4593x749,6011709117009142,2024-05-18 +City Hotel,1,170,2017,June,23,9,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,71.0,179.0,0,Transient,103.31,0,0,Canceled,Jacob Obrien,ingramshaun@example.org,001-470-778-5221x0234,3586254768764838,2025-03-31 +City Hotel,0,55,2017,March,11,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,62,Transient-Party,0.5099000000000001,0,0,Check-Out,Timothy Clark,scotthowe@example.org,(219)605-3086x866,4612888716902188248,2025-09-30 +City Hotel,1,103,2017,December,51,21,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,65.31,0,0,Canceled,Steve Miller PhD,saracarey@example.com,+1-476-389-3662x9748,4961447800392674,2024-08-10 +Resort Hotel,0,11,2017,March,12,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,74.0,0,Transient-Party,44.84,0,2,Check-Out,Justin Hurley,daviddennis@example.com,(994)760-8809x80463,4602694550793357124,2024-09-26 +City Hotel,0,1,2017,April,17,24,0,1,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.28,0,0,Check-Out,Jacob Erickson,xvelez@example.com,001-639-433-9465x850,30229983179788,2024-05-25 +City Hotel,1,414,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,61.6,0,0,Canceled,Deborah Williams,gonzaleskayla@example.com,3404636607,4681029381097549,2024-11-19 +Resort Hotel,1,35,2017,January,2,11,0,3,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,171.12,0,0,Canceled,Eric Blackburn,woodwardpatricia@example.com,+1-578-713-7036x05446,30135897293948,2024-10-11 +City Hotel,0,8,2017,August,31,5,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,228.63,0,1,Check-Out,Anne Hardy,sarahramirez@example.org,(463)538-5606x5369,4071967946044,2025-04-26 +Resort Hotel,0,103,2017,April,17,26,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,245.0,179.0,0,Transient,213.39,0,0,Check-Out,Chelsey Fox,taylorsteven@example.org,291-731-0802,3582226624310216,2025-07-21 +Resort Hotel,0,24,2017,October,43,25,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient,252.0,0,2,Check-Out,Mario White,avilakatelyn@example.com,614.756.4561x56707,6539676688333685,2025-05-04 +City Hotel,0,50,2017,May,19,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,115.02,0,3,Check-Out,Jennifer Garcia,ericaherrera@example.net,+1-707-486-2287x01155,180010570899618,2025-06-20 +City Hotel,1,257,2017,June,23,8,2,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,113.29,0,0,Canceled,Heather Ellis,jaime88@example.com,001-470-593-7789x926,4757773091625,2026-03-25 +Resort Hotel,0,12,2017,July,28,8,0,2,2,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,H,0,No Deposit,243.0,179.0,0,Transient,37.61,0,2,Check-Out,Sonya Jackson,josephmurray@example.net,454.297.0600,2720881975900497,2025-07-27 +Resort Hotel,0,19,2017,August,31,5,2,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,54.15,0,1,Check-Out,James Morgan,nelsonheather@example.com,952-267-8183x436,4051430606962560,2024-09-24 +City Hotel,0,31,2017,October,42,14,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,39.09,0,1,Check-Out,Zachary Ramos,ramseyamy@example.net,908-834-4726,348723668743550,2024-10-05 +City Hotel,1,40,2017,September,36,8,1,1,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,15.0,222.0,0,Transient-Party,85.47,0,0,Canceled,Ethan Frey,jason64@example.com,836-399-5477x99490,3545019200515050,2024-06-19 +City Hotel,0,195,2017,July,27,3,0,1,1,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.08,1,0,Check-Out,Jacob Duran,brooksphyllis@example.com,001-865-734-6249x71068,4921265731640006,2024-07-03 +City Hotel,0,154,2017,July,29,20,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,122.37,0,0,Check-Out,Nicholas Franklin,smorgan@example.com,+1-879-742-2701x576,341327604524129,2024-10-04 +City Hotel,1,196,2017,October,42,18,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,101.22,0,1,Canceled,Cindy Cannon,webbcrystal@example.org,(261)609-3253x5473,4432375856699836,2025-02-13 +City Hotel,0,15,2017,August,32,4,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,Dawn Nixon,amandaphillips@example.com,001-680-631-6738x57110,3593459412998994,2024-10-28 +City Hotel,1,169,2017,August,34,24,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,15.0,179.0,0,Transient,123.4,0,0,Canceled,James Barber,douglaskirby@example.net,001-731-611-2480x57118,4538478971448,2024-04-18 +Resort Hotel,1,27,2017,July,27,5,2,4,2,2.0,0,BB,,Direct,Direct,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,222.59,0,0,Canceled,Ms. Kelly Holder,walshtimothy@example.org,366.486.4643,2352029357782860,2025-10-15 +City Hotel,0,0,2017,December,49,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,254.0,0,Transient,120.42,0,0,Check-Out,Eric Walker,douglasgallegos@example.net,282.202.6443,4063643994381834663,2024-11-15 +City Hotel,1,18,2017,April,15,8,1,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,163.9,0,1,Canceled,Alison Short,cunninghambrian@example.org,777-632-9056x1447,3531186225641132,2024-10-10 +City Hotel,0,74,2017,August,32,4,1,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Desiree Spencer,ashley77@example.com,6889972147,375110557830241,2025-11-07 +Resort Hotel,0,68,2017,July,31,29,4,7,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,90.0,179.0,0,Transient,213.22,0,1,Check-Out,Tammy Moore,jasonramos@example.net,+1-362-391-2278x1830,4943556731541556,2025-03-25 +City Hotel,0,414,2017,June,27,29,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,77.85,0,0,Check-Out,Henry Taylor,michaelpierce@example.com,(290)216-0554x57571,630417604547,2024-08-04 +City Hotel,0,13,2017,June,25,20,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,175.72,1,2,Check-Out,Kevin Hall,joshua08@example.com,001-438-503-6467x08641,3588461180794925,2026-01-03 +Resort Hotel,0,4,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,15.0,69.0,0,Transient,47.32,0,0,Check-Out,Anna Ross,hschultz@example.org,886-352-4374,4922985991976,2024-12-03 +Resort Hotel,0,21,2017,August,35,30,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Contract,199.19,0,0,Check-Out,Morgan Cummings,wesleylang@example.org,6093440904,502010163157,2024-08-26 +Resort Hotel,0,0,2017,February,9,26,0,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,1,L,E,1,No Deposit,17.0,179.0,0,Transient,3.37,1,0,Check-Out,Carrie Petersen,hannahgarcia@example.net,7167883058,30429491666942,2024-06-21 +Resort Hotel,0,44,2017,July,30,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,61.6,1,2,Check-Out,Laura Velez,salazarlisa@example.com,299.641.4159x46283,3550568638234165,2026-02-27 +Resort Hotel,0,0,2017,April,14,6,1,0,1,0.0,0,BB,PRT,Groups,Undefined,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,1.82,0,0,Check-Out,Elizabeth Cross,cpowers@example.com,472.663.0515,4311401757352358037,2024-03-29 +Resort Hotel,0,11,2017,November,44,3,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,100.79,0,1,Check-Out,Angela Brown,pamelakelly@example.com,626-743-9952x811,345410211341594,2025-04-22 +City Hotel,0,12,2017,June,26,30,0,2,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,B,0,No Deposit,12.0,179.0,0,Transient,116.23,0,2,Check-Out,Hannah Montoya,aprillambert@example.org,830-780-6129x9885,3588692602245407,2025-10-30 +Resort Hotel,0,195,2017,July,29,14,2,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,229.13,0,1,Check-Out,Sean Kane,henrysmith@example.com,001-665-781-6501,4954334233689133,2024-06-06 +City Hotel,0,112,2017,November,46,11,1,2,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,E,G,0,No Deposit,14.0,179.0,0,Transient,108.96,0,0,Check-Out,Matthew Guzman,fporter@example.org,9196623216,4642434017997,2025-04-10 +City Hotel,1,35,2017,September,35,1,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,4.0,179.0,0,Transient,77.14,0,0,Canceled,Richard Reyes,patellarry@example.org,001-336-476-8613,4648231944003475342,2025-01-09 +Resort Hotel,0,85,2017,November,45,11,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,52.16,0,0,Check-Out,Andrew Fernandez,rebecca77@example.org,(808)664-3820x852,4682651919053,2025-10-14 +Resort Hotel,1,51,2017,July,27,6,1,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,35.0,179.0,0,Transient-Party,107.35,0,0,No-Show,Jonathan Walker,jasonryan@example.net,+1-335-662-0179x6244,3519632859406173,2024-05-03 +City Hotel,0,156,2017,September,38,20,2,2,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,126.32,0,1,Check-Out,Nicholas Long,cortezjonathon@example.com,367.454.5319x6872,30194309261621,2024-06-14 +Resort Hotel,1,154,2017,April,14,1,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,61.64,0,0,Canceled,Kurt Wagner,paulsanchez@example.net,364.530.0632x93425,4386464460181666,2024-07-12 +City Hotel,0,65,2017,November,47,24,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,110.03,0,2,Check-Out,Dylan Foster,millerselena@example.com,(475)821-2410x10020,3593071984714137,2024-12-20 +City Hotel,0,1,2017,February,6,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,102.25,0,1,Check-Out,Bradley Duncan,ejones@example.com,(230)478-8073x161,3592976119899705,2025-06-12 +Resort Hotel,1,162,2017,July,26,1,4,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,123.57,0,2,No-Show,James Miller,grossdanielle@example.net,203.479.3537x1280,4330170883673802,2025-08-23 +City Hotel,0,105,2017,April,16,14,2,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.23,0,2,Canceled,Patricia Anderson,mrhodes@example.org,7772925356,213164224165362,2025-04-08 +Resort Hotel,0,19,2017,August,33,10,1,0,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,239.0,179.0,0,Transient,208.98,1,2,Check-Out,Justin Freeman,jessica94@example.net,001-791-303-6880x8825,4496864373374,2025-04-19 +Resort Hotel,0,0,2017,November,45,5,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,92.0,1,0,Check-Out,Christina Gilbert,deannamccall@example.net,(418)232-3004x0032,3599589364572464,2025-11-12 +Resort Hotel,0,95,2017,March,14,30,1,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,103.58,0,1,Check-Out,Danielle Jones,erin18@example.com,(823)672-4086x89076,30283155844737,2025-05-11 +City Hotel,0,3,2017,July,30,22,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,175.06,0,1,Check-Out,Erica Glass,pittmanadam@example.net,454.428.3982x310,180041124111283,2026-03-08 +Resort Hotel,0,0,2017,January,2,4,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,45.02,0,0,Check-Out,Michael Henderson,christophermccoy@example.net,325-283-9278x574,4773452539511,2024-06-10 +City Hotel,0,1,2017,April,18,30,0,1,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,146.14,0,0,Check-Out,Frank Wheeler,craigmiles@example.net,+1-471-584-6109x941,180016842508523,2025-05-19 +City Hotel,1,156,2017,June,26,24,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,117.0,0,0,Canceled,Eric Huerta,hudsonrobert@example.org,422-955-4832x5142,4934910027833667,2026-01-11 +City Hotel,0,95,2017,July,30,24,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,186.31,0,1,Check-Out,Wanda Ramos,sandra20@example.org,474-452-6147x568,4701250390449,2024-06-13 +City Hotel,0,2,2017,September,36,6,2,1,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,94.42,0,0,Check-Out,Andrew Meyers,julia59@example.com,696.580.5161,4485170608880990,2024-04-23 +City Hotel,0,8,2017,February,8,20,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,70.0,179.0,0,Transient,107.99,0,0,Check-Out,James Todd,alexanderoliver@example.org,765.809.9816x31805,6545912580245038,2024-07-20 +Resort Hotel,1,108,2017,March,11,14,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,74.37,0,1,Canceled,Ashley Brown,jflores@example.com,371-285-7344x040,4537010306661185,2024-12-31 +City Hotel,0,147,2017,May,21,23,1,1,2,0.0,0,BB,ITA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,83.7,0,0,Check-Out,Tammy Melton,aprilgarcia@example.net,001-271-880-0258,589257828055,2025-06-25 +Resort Hotel,0,1,2017,May,19,8,4,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,250.0,179.0,0,Transient,82.44,0,3,Check-Out,Alexis Benson,angela56@example.org,(684)249-7887x99581,4678959101668396746,2024-07-12 +Resort Hotel,0,72,2017,May,21,26,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,302.0,179.0,0,Transient,122.07,0,1,Check-Out,Jerry Johnson,feliciabass@example.com,258-393-1726x9352,4986397130101,2024-10-04 +City Hotel,0,11,2017,May,21,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,91.56,0,3,Check-Out,Joshua Harris,rojasjeremy@example.org,995-653-0561,3580800843846002,2024-08-22 +City Hotel,1,252,2017,May,20,17,2,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,27.0,179.0,0,Transient,86.22,0,0,Canceled,Deanna Webb,gmurphy@example.org,(399)843-4276x948,060422579106,2026-03-03 +City Hotel,0,35,2017,September,36,5,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Transient,42.12,0,0,Check-Out,Brenda Hale,jose09@example.net,4959908393,30247547518382,2025-04-25 +City Hotel,0,85,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,109.87,0,2,Check-Out,Kevin Alvarado,gabrielle17@example.net,291.511.9697x53043,5286091456949091,2024-10-22 +City Hotel,1,101,2017,July,28,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,229.4,0,1,Canceled,Christopher Campbell,kwhite@example.com,001-828-557-2157,4786857361109,2025-08-02 +City Hotel,0,46,2017,April,18,30,0,1,2,2.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.03,0,1,Check-Out,Lisa Brown,sarahlane@example.org,+1-485-231-2170x35578,213174505880845,2025-08-04 +City Hotel,0,48,2017,May,22,26,2,1,1,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,82.97,0,0,Check-Out,Alejandra Price,julie67@example.org,274-805-5943,180058397438862,2024-04-23 +City Hotel,0,51,2017,June,25,20,1,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,139.36,0,1,Check-Out,Samuel Keller,joseph17@example.org,549-855-0797x3193,2235023073306214,2025-02-01 +Resort Hotel,1,112,2017,June,23,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,24.0,179.0,0,Transient,105.84,0,0,Canceled,Alicia Dillon,shaunsanchez@example.net,841-982-8858x07082,3591328334121443,2025-08-01 +City Hotel,0,4,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,A,0,No Deposit,14.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Crystal James,qfoster@example.net,6704619872,4419693723999,2025-08-30 +City Hotel,0,57,2017,November,44,2,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.44,1,2,Check-Out,Ariana Stewart,pgriffin@example.com,(616)215-5728x11792,6011629602295065,2024-04-15 +Resort Hotel,1,160,2017,December,49,5,1,4,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,E,0,No Deposit,25.0,179.0,0,Transient,89.11,0,1,No-Show,Kim Lopez,bentleycory@example.net,688.379.3808x246,2250655445875069,2024-07-15 +Resort Hotel,0,45,2017,October,41,9,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,46.02,0,1,Check-Out,Judith House,steven66@example.net,818.951.3217,348474864749658,2024-09-15 +City Hotel,0,63,2017,January,4,25,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,151.88,0,2,Check-Out,David Moreno,james96@example.org,342.407.8548,2238927552147526,2024-12-31 +Resort Hotel,0,69,2017,August,33,13,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,244.54,1,2,Check-Out,James Moore,jyu@example.com,(873)489-4080,3557141702182232,2025-06-23 +Resort Hotel,1,61,2017,December,52,26,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,45.13,0,1,Canceled,Harold Garrett,piercejohn@example.com,+1-796-495-3820x780,342388508912637,2024-05-04 +City Hotel,1,101,2017,August,35,30,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,221.48,0,0,Canceled,William Mason,jhoward@example.org,788.290.4113x36253,376565093932612,2025-08-11 +Resort Hotel,0,15,2017,March,14,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,47.1,0,2,Check-Out,Lori Johns,patrick24@example.com,207-548-8034,3592874000644498,2025-12-15 +Resort Hotel,0,15,2017,May,19,5,2,3,3,1.0,0,BB,NLD,Online TA,Direct,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Check-Out,Robin Johnson,pateljacob@example.net,817.970.5202,343597165500662,2024-05-31 +City Hotel,0,110,2017,April,15,8,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,110.78,0,1,Check-Out,Diana Hernandez,drakemary@example.net,(458)754-4285,3538433048188062,2024-06-17 +Resort Hotel,0,186,2017,July,31,30,4,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,176.05,0,1,Check-Out,Mary Miller,stephenbrown@example.com,7235764249,3573371263333326,2024-08-07 +City Hotel,1,219,2017,August,34,23,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,53.97,0,1,No-Show,Tyler Salazar,dawn26@example.org,001-641-434-1880x9171,3542125272679832,2025-07-09 +City Hotel,0,99,2017,April,17,26,1,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,98.07,0,1,Check-Out,Crystal Allen,bgarner@example.net,+1-983-937-5264x70917,4179081807495,2025-10-27 +City Hotel,1,137,2017,December,49,3,0,2,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,161.0,179.0,0,Transient,104.62,0,0,Canceled,Wesley Browning,dstewart@example.net,+1-506-879-7531x101,4363954394030903,2025-05-30 +City Hotel,0,40,2017,September,37,9,0,2,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,107.18,0,0,Check-Out,Joshua Clark,jrogers@example.org,232-431-0824,4234821473387,2025-02-23 +Resort Hotel,0,0,2017,August,35,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,236.0,179.0,0,Transient,49.0,0,1,Check-Out,Joshua Mcbride,bryantalan@example.com,+1-407-238-0660x103,30134243167716,2025-08-18 +Resort Hotel,0,1,2017,January,4,22,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,34.87,1,2,Check-Out,Ellen Thornton,twallace@example.net,773-246-9044,2277656373839068,2026-02-13 +City Hotel,1,107,2017,April,18,30,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.36,0,2,Canceled,Brandy Forbes,hunttiffany@example.org,+1-852-273-1751,4437450609937992,2025-10-02 +Resort Hotel,0,1,2017,September,37,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,2.57,0,0,Check-Out,Brianna Fitzpatrick,rosshannah@example.com,466.494.9696x1439,6521112957341936,2025-05-28 +Resort Hotel,0,34,2017,December,2,31,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,83.77,1,0,Check-Out,Emily Grant,david63@example.org,+1-823-373-1797x64376,6587308317430028,2025-07-15 +City Hotel,0,38,2017,August,35,24,0,1,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,207.59,1,0,Check-Out,Bailey Stewart,lmiller@example.org,5347634661,4853993938461,2024-10-31 +City Hotel,0,22,2017,January,3,17,0,2,1,0.0,0,SC,,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,10.0,45.0,0,Transient-Party,127.15,0,0,Check-Out,Monica Cannon,levimosley@example.net,+1-303-979-7533,676307013372,2025-08-07 +City Hotel,0,182,2017,November,47,18,1,2,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,222.9,0,1,Check-Out,Jennifer Jenkins,kcox@example.com,+1-603-986-1678x1766,2274466859569624,2024-12-06 +Resort Hotel,0,37,2017,April,15,10,2,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,17.0,179.0,0,Transient,114.02,1,1,Check-Out,Timothy Shannon,andreaclayton@example.org,457-714-9931,4473375434561870,2026-02-25 +Resort Hotel,1,184,2017,August,32,9,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,240.0,179.0,0,Transient,237.21,0,0,Canceled,Denise Maxwell,emily47@example.com,712.692.9231x10926,213146251359430,2025-04-19 +City Hotel,0,15,2017,March,13,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.23,0,2,Check-Out,Cody Farmer,lindsaycraig@example.net,590.227.6782x3476,3583689464611903,2025-07-22 +City Hotel,0,10,2017,November,45,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,38.0,219.0,0,Contract,45.96,0,2,Check-Out,Debra Bradley,moorelisa@example.com,412-833-5708x232,344009624495723,2024-04-19 +Resort Hotel,0,30,2017,August,32,3,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,198.3,0,3,Check-Out,David Mcdaniel,loganbrooke@example.com,457.748.9765,4604457742835923,2024-11-23 +Resort Hotel,0,34,2017,July,29,15,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Check-Out,Michael Woods,grantsteven@example.com,+1-663-304-6227x768,6011397427888593,2024-08-06 +Resort Hotel,0,1,2017,July,28,8,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,84.28,0,1,Check-Out,Lisa Joseph,johnsrichard@example.com,826.302.5526,4083566092268913,2025-05-05 +Resort Hotel,0,371,2017,October,41,9,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,55.84,0,2,Check-Out,Samuel Henry,stonejose@example.com,908-255-3063,36286216946767,2024-04-05 +Resort Hotel,0,241,2017,May,20,15,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,341.0,179.0,0,Transient,225.03,1,1,Check-Out,Corey Johnson,scottebony@example.net,625.886.6606,344671078901199,2024-09-23 +Resort Hotel,1,37,2017,March,10,3,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,44.91,0,0,Canceled,Alexis Nelson,hernandezdonna@example.org,303.855.1036,503824480936,2024-08-31 +Resort Hotel,0,100,2017,June,26,30,1,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,172.0,179.0,0,Transient,105.56,0,1,Check-Out,Patrick Mcneil,xwoodard@example.org,(701)929-2530,30203791617743,2024-09-05 +Resort Hotel,0,0,2017,March,12,18,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,C,0,No Deposit,27.0,179.0,0,Transient-Party,55.25,0,0,Check-Out,Andrea Ho,aprilvillanueva@example.net,261.509.0190,4282361316066007,2025-04-21 +City Hotel,1,310,2017,August,31,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,79.82,0,1,Canceled,Dr. Katherine Nguyen,catherineburke@example.net,386-695-4956,4675095030374619086,2025-06-07 +City Hotel,0,3,2017,August,31,4,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,3.42,0,1,Check-Out,David Sullivan,muellermarilyn@example.org,6382951510,6011321455674873,2025-10-01 +Resort Hotel,0,99,2017,October,40,2,3,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,251.0,179.0,0,Transient,45.27,0,0,Check-Out,Nicolas James,todd09@example.com,946.638.5349,4966235553747268,2025-03-14 +City Hotel,1,410,2017,August,31,4,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,96.61,0,0,Canceled,Logan Newton,iodonnell@example.net,+1-584-992-4364x30082,3565395140925780,2025-02-22 +Resort Hotel,1,161,2017,July,28,7,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,No-Show,Kelly Liu,whughes@example.org,566-855-2741,30584721383708,2025-03-02 +City Hotel,0,4,2017,January,3,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.45,0,1,Check-Out,Kelly Hayes,cbrooks@example.com,(403)271-9528x942,4790136341031662,2024-06-27 +Resort Hotel,0,79,2017,May,19,6,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,36.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Amanda Forbes,phaney@example.net,680-947-0605x873,3524257461494624,2026-03-20 +Resort Hotel,1,145,2017,April,15,11,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Canceled,Jennifer Moss,timothyoliver@example.net,(941)433-0850x709,4912084982097191,2024-04-10 +Resort Hotel,1,156,2017,June,26,22,4,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,50.39,0,0,No-Show,Kelli Mccoy,phillipssheila@example.org,+1-209-607-8899,4059333420326445533,2024-11-21 +City Hotel,0,0,2017,May,22,29,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,A,0,No Deposit,14.0,165.0,0,Transient,112.56,0,0,Check-Out,Eddie Sanders,acraig@example.com,(327)816-4075,3546039126168825,2024-07-16 +Resort Hotel,0,59,2017,November,44,4,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,43.13,0,0,Check-Out,Ronald Murray,alexanderglass@example.org,8058179296,372619821457063,2025-09-05 +Resort Hotel,0,136,2017,October,44,30,1,2,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,322.0,179.0,0,Transient-Party,89.08,0,0,Check-Out,Louis Brown,margaretgill@example.org,+1-762-521-8846,3557519378927768,2025-06-02 +City Hotel,0,1,2017,July,27,5,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,115.75,0,3,Check-Out,Brenda Gallegos,cartertonya@example.com,+1-505-678-6419x7011,213152253839320,2025-10-11 +City Hotel,0,3,2017,March,12,22,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,92.47,1,0,Check-Out,Nathan Wilson,bellchristopher@example.net,+1-318-327-6216x7645,676388754027,2024-08-15 +City Hotel,0,2,2017,September,37,12,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Teresa Horton,nataliewilliams@example.org,5972133314,060427400738,2025-08-04 +Resort Hotel,0,11,2017,July,29,17,3,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,364.0500000000011,179.0,0,Transient,104.38,0,1,Check-Out,Jason Hayes,kennethwagner@example.org,596.379.5481x024,2239750268730255,2025-01-23 +Resort Hotel,0,104,2017,March,13,27,0,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,22.0,179.0,0,Transient,81.66,0,1,Check-Out,Kevin Marquez,nicholastorres@example.org,(616)456-2979,6011952191471347,2025-03-06 +City Hotel,0,1,2017,January,2,4,0,2,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,101.18,0,1,Check-Out,Jesse Wright,xadams@example.com,(965)929-8600x541,180068485648389,2024-07-06 +Resort Hotel,1,282,2017,September,38,22,1,1,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient-Party,188.77,0,0,Canceled,Susan Hogan,ugraham@example.org,001-280-443-0325x23583,3525150838131830,2025-06-30 +Resort Hotel,0,3,2017,December,49,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,123.75,0,0,Check-Out,Becky Wilson,andrew19@example.org,001-240-488-8152x39390,30541070654923,2026-01-17 +City Hotel,0,154,2017,June,23,3,0,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,132.15,0,0,Check-Out,Jack Mills,grivera@example.com,738.207.5563,6589467706695241,2024-11-09 +Resort Hotel,0,2,2017,October,41,14,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,31.0,179.0,0,Contract,42.18,0,2,Check-Out,Richard Hunt,tracywood@example.com,001-492-353-9335,2228849130543665,2025-08-23 +Resort Hotel,0,0,2017,January,2,11,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,I,0,No Deposit,14.0,179.0,0,Transient,1.56,0,0,Check-Out,Jamie James,kmunoz@example.com,511-471-5626,3531343550044909,2025-09-05 +Resort Hotel,0,28,2017,May,19,12,1,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,181.0,179.0,0,Transient,105.43,0,2,Check-Out,Susan Cunningham,millerbrittany@example.com,(529)383-3968,2257191814035351,2025-07-01 +Resort Hotel,1,151,2017,August,31,2,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,243.0,179.0,0,Transient,142.66,0,1,Canceled,Brittany Melton,nford@example.com,001-415-698-7246,4501745173851840775,2025-05-11 +City Hotel,0,35,2017,October,40,5,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,98.36,0,2,Check-Out,Michael Barnes,oconley@example.com,(640)967-8358,374065369311791,2025-04-24 +City Hotel,0,21,2017,April,17,23,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,2.57,0,1,Check-Out,Randy Griffin,johnwilson@example.net,682-327-2631,4196966184585386,2024-04-01 +Resort Hotel,0,15,2017,May,21,23,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,329.0,179.0,0,Transient,42.97,0,0,Check-Out,Autumn Anderson,burkeluis@example.com,001-644-893-8975x974,4754268095339947900,2024-04-06 +City Hotel,1,101,2017,June,26,26,1,1,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,9.0,179.0,0,Transient,131.93,0,1,Canceled,Marcus King,freystephen@example.org,+1-427-320-1254,502013567172,2024-06-20 +City Hotel,0,61,2017,October,41,9,0,1,2,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,114.66,0,0,Check-Out,Scott Stephens,hedwards@example.org,(792)644-8819x29177,4668372873017519,2024-05-10 +City Hotel,1,157,2017,June,25,19,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,Non Refund,17.0,179.0,0,Transient,174.33,0,1,Canceled,Stephen Young,zwilliams@example.net,457-594-4940x1672,2263595748780902,2024-08-23 +City Hotel,0,3,2017,May,22,31,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,94.04,0,1,Check-Out,Karen Ortiz,nfoster@example.com,001-692-238-0162x79592,345137007739885,2024-06-06 +City Hotel,0,3,2017,January,2,5,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.88,1,1,Check-Out,Kyle Sanchez,keitharnold@example.org,001-389-375-7388x513,377250040894921,2024-04-08 +Resort Hotel,0,11,2017,December,52,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Group,49.3,0,0,Check-Out,Lisa Grant,rcarpenter@example.com,666-734-4550x859,2713167455299389,2024-03-29 +City Hotel,0,165,2017,March,11,16,0,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,140.21,0,1,Check-Out,Amber Hernandez,leahmckinney@example.com,(528)388-5075,4785956997098534,2025-08-12 +City Hotel,1,110,2017,May,22,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,106.21,0,0,Canceled,Amanda Nash,matthew27@example.org,(734)228-2604,4294947699954094,2025-03-01 +Resort Hotel,0,35,2017,October,41,12,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,53.53,1,1,Check-Out,Sara Evans,joseph75@example.org,2718859219,180056969867856,2024-10-10 +City Hotel,0,38,2017,March,11,13,1,1,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.81,0,1,Check-Out,Amber Butler,lmccoy@example.net,(411)269-7431,6011626022261297,2025-04-30 +Resort Hotel,0,201,2017,May,22,31,1,3,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,43.45,0,0,Check-Out,Michael Carr,donnadavis@example.net,815-283-1886x15420,5235580080087734,2024-05-02 +City Hotel,0,18,2017,August,33,13,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Linda Cobb,wendysalazar@example.org,(667)288-0729x23237,3590814163437977,2024-04-19 +Resort Hotel,0,141,2017,August,36,31,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,137.78,1,2,Check-Out,Jesse Riley,ybishop@example.org,812-548-7155,3546821230469524,2024-06-26 +City Hotel,0,17,2017,August,35,28,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Contract,126.39,0,2,Check-Out,Anna Evans,erica96@example.net,301.651.6673x16821,6529689661499847,2025-04-26 +City Hotel,1,94,2017,November,44,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,61,Transient,77.45,0,0,Canceled,James Jones,umata@example.org,+1-619-628-1839x9600,344701282945979,2025-01-24 +City Hotel,1,399,2017,May,18,3,0,3,1,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,113.21,0,0,Canceled,Joshua Carter,hbutler@example.org,+1-472-311-0725x706,5461729122879823,2024-08-12 +City Hotel,0,2,2017,March,12,19,1,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient,123.01,0,2,Check-Out,Michael Hill,hreed@example.com,6458363952,5526438447233285,2025-03-20 +City Hotel,0,93,2017,May,21,19,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,19.0,179.0,0,Transient,113.41,0,1,Check-Out,Kelly Dominguez,cody50@example.org,+1-276-954-5307,639048948694,2024-12-04 +City Hotel,0,142,2017,March,11,14,0,4,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,1,No Deposit,181.0,179.0,0,Transient,87.22,0,0,Check-Out,Ashley Blair,michael81@example.net,001-844-899-3251x61642,2326857049309723,2025-09-16 +Resort Hotel,1,128,2017,April,18,29,2,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,87.08,0,1,Canceled,Victoria Webb,nunezgina@example.org,001-903-804-1495x00931,3517949953951603,2025-03-02 +City Hotel,0,25,2017,August,32,9,1,5,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,106.15,0,2,Check-Out,Taylor Andersen,bross@example.com,746.579.7274x40392,6011971566914632,2024-05-14 +City Hotel,0,136,2017,October,41,12,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,83.57,0,0,Check-Out,Lee Stewart,wallison@example.com,+1-236-488-7580x5458,180066685799135,2024-08-29 +Resort Hotel,0,13,2017,May,18,1,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,64.07,0,1,Check-Out,Whitney Gomez,lbarrett@example.net,(843)448-2531x04190,213116603254316,2025-08-11 +Resort Hotel,0,38,2017,October,40,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,64.61,1,1,Check-Out,Justin Stone,lopezsamuel@example.org,001-565-349-7879x12289,4242310658078376,2024-05-18 +Resort Hotel,1,68,2017,March,12,24,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,23.0,179.0,0,Transient,63.56,0,0,Canceled,Katherine White,jessica38@example.org,001-284-859-3194x6330,213136266117386,2024-06-09 +Resort Hotel,0,54,2017,March,11,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,I,0,No Deposit,242.0,179.0,0,Group,222.78,0,1,Check-Out,Michelle Krause,strongronald@example.org,(214)848-7187x941,4017795066888403,2025-06-02 +Resort Hotel,1,232,2017,July,30,24,3,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,77.4,0,1,Canceled,Alexander Garrett,troytaylor@example.org,746.921.0803x674,4595975011292,2025-02-03 +Resort Hotel,0,165,2017,July,29,19,3,4,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,130.87,0,1,Check-Out,Ryan Marsh,hrichards@example.org,215.657.9577x83116,30270647780686,2025-12-11 +Resort Hotel,0,4,2017,November,45,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient-Party,61.9,0,0,Check-Out,Mrs. Felicia Castro DDS,cbates@example.org,787-255-2792,4342348502679844033,2024-09-13 +City Hotel,1,22,2017,November,45,5,1,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.58,0,2,Canceled,Curtis Campbell,raylisa@example.org,696.679.0047x88201,4344353766515480,2025-02-14 +Resort Hotel,0,0,2017,March,11,12,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,47.59,0,2,Check-Out,Elizabeth Hunter,wattskathleen@example.org,247.594.6319,4335761226279,2026-03-04 +City Hotel,1,185,2017,August,34,20,1,2,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.66,0,1,Canceled,Aaron Jennings,arivera@example.net,+1-551-674-8646x2673,374554176776387,2025-10-13 +City Hotel,1,414,2017,April,14,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,91.35,0,0,Canceled,Nathaniel Gilbert,johnsonmarcia@example.org,001-385-335-3326x16702,4873616206258229,2025-01-05 +City Hotel,0,56,2017,October,41,13,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,82.83,0,1,Check-Out,Christopher Rivera,nguyenmark@example.net,301.905.1302,4775537733964135512,2026-01-26 +Resort Hotel,0,49,2017,August,31,4,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient-Party,183.31,0,1,Check-Out,Michael Hendricks,smithjared@example.net,525.851.4923,4643452746003544271,2025-04-21 +Resort Hotel,0,44,2017,February,7,16,2,5,2,0.0,0,FB,DEU,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,47.31,1,0,Check-Out,Maria Olson,fwalter@example.org,249.768.1010x696,4056554954394,2025-09-18 +City Hotel,0,149,2017,September,38,18,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,131.0,179.0,0,Transient-Party,166.18,0,1,Check-Out,Stephanie Herrera,alejandrokeller@example.com,6617225584,373141485182019,2024-09-21 +City Hotel,0,265,2017,August,32,4,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,102.23,0,1,Check-Out,Richard Gutierrez,shelley50@example.net,597-624-9590,4291863652712499,2025-07-31 +City Hotel,0,95,2017,August,31,4,1,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.16,0,1,Check-Out,Sandy Evans,bradyshannon@example.net,953.478.5591,2270786291950528,2024-03-28 +City Hotel,0,18,2017,July,28,10,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,139.12,0,2,Check-Out,Emily Herrera,solomonbrian@example.com,+1-274-307-0686x500,30033794705900,2024-05-10 +Resort Hotel,0,41,2017,September,36,6,0,2,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.98,0,1,Check-Out,Michael Marsh,bridgetcannon@example.org,717.654.9979x3906,30029533399492,2024-12-16 +City Hotel,0,149,2017,August,32,5,2,2,2,0.0,0,BB,NLD,Direct,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,203.74,0,0,Check-Out,Heather Montes,davidreed@example.com,+1-652-460-7824x0119,340192084846272,2025-06-29 +City Hotel,0,11,2017,April,15,11,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,234.91,0,0,Check-Out,Andre Terrell,debbiescott@example.org,001-456-501-7319,4315228592089816,2025-01-24 +City Hotel,1,380,2017,July,29,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Contract,107.89,0,0,Canceled,Sarah Duncan,grantlogan@example.org,806-521-3210x421,3507093477646944,2025-11-16 +Resort Hotel,1,1,2017,February,6,5,1,2,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,Kurt Hancock,james02@example.com,604-892-6307x477,2701780802324413,2025-06-13 +City Hotel,0,41,2017,September,37,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient-Party,178.11,0,0,Check-Out,Michele Edwards,johnsmith@example.com,806-462-3898x4363,4308531204700259772,2024-04-30 +City Hotel,0,108,2017,May,21,24,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,84.16,0,3,Check-Out,Jason Crawford,allendonald@example.com,(759)638-5768x463,4757890133763,2025-06-28 +City Hotel,1,160,2017,June,24,12,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.3,0,0,Canceled,Jesse Sampson,agross@example.com,(823)485-7918x683,6011916753809103,2025-06-15 +City Hotel,0,38,2017,March,10,4,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient-Party,95.42,0,1,Check-Out,Eric Rodriguez,qgould@example.com,001-782-906-1720x7203,502044605116,2026-01-23 +City Hotel,1,173,2017,August,32,8,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,100.95,0,0,Canceled,Paula Gentry,omccullough@example.org,001-304-563-4413x374,30163904470853,2025-05-15 +Resort Hotel,1,0,2017,September,36,8,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,42.72,0,0,Canceled,Alexander Webb,martinezanthony@example.net,001-506-345-6549x34417,180001666974266,2024-05-15 +Resort Hotel,0,0,2017,May,19,10,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,H,1,No Deposit,17.0,45.0,0,Transient,81.02,0,0,Check-Out,Cheryl Mclean,ublankenship@example.net,(261)612-2352x122,2720244442433420,2025-12-07 +City Hotel,1,8,2017,November,44,4,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,85.18,0,1,Check-Out,Kelly Rowe,aguirremary@example.com,360.942.4922x45477,575143428325,2024-05-02 +City Hotel,0,2,2017,August,32,9,1,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,221.51,0,1,Check-Out,Shane Short,ebryan@example.net,884-312-7433x8234,4502569085603883,2026-02-06 +Resort Hotel,1,38,2017,June,23,2,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,180.86,0,1,Canceled,Megan Anderson,matthew34@example.net,994.992.2684x5729,4597206675341691,2025-06-07 +Resort Hotel,0,116,2017,October,41,9,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,357.0,179.0,0,Transient-Party,79.82,0,0,Check-Out,Julia Reeves,jessicabell@example.com,405-340-0456,4557409395864996,2024-10-27 +Resort Hotel,1,154,2017,December,49,5,2,6,2,0.0,0,FB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,84.41,0,0,Canceled,April Randolph,jeffery01@example.net,001-767-398-4636x65225,4427096711619549,2025-05-22 +City Hotel,0,99,2017,October,43,23,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,63,Transient-Party,94.45,0,0,Check-Out,Linda Miller,romerostacy@example.org,513.432.2604,2232512716720834,2025-10-21 +Resort Hotel,1,216,2017,March,10,6,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,63.18,0,0,Canceled,Angel Meyer,jameslucero@example.org,989-348-3633x5970,4191007516482974301,2024-05-28 +City Hotel,0,38,2017,March,13,26,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,197.71,0,1,Check-Out,Emily Lane,petercastillo@example.com,001-969-682-5073x37613,588113103455,2024-05-21 +City Hotel,1,93,2017,March,13,24,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.05,0,2,Canceled,Steven Flores,fisherlawrence@example.org,(859)644-5681x6420,4358260607926912,2024-07-12 +Resort Hotel,0,189,2017,April,14,1,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,67.93,0,0,Check-Out,Donald Flores,susannoble@example.org,822-597-1254x23979,4720427736532032771,2024-12-12 +Resort Hotel,1,140,2017,July,29,21,1,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Canceled,Bruce Hernandez,fosterlauren@example.net,+1-347-798-5684,4355550382090386,2025-09-26 +City Hotel,0,46,2017,June,23,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.07,0,2,Canceled,Adrian Dean,shawkins@example.com,3575393976,503845891095,2025-04-09 +City Hotel,0,90,2017,June,23,6,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,21,Transient,75.53,0,0,Check-Out,Christine Bell,pgarrett@example.com,+1-607-606-5592x52670,6518686650425190,2026-01-13 +City Hotel,0,39,2017,March,13,26,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,97.7,0,2,Check-Out,Charles Bush,michaelrichard@example.org,388.904.6164,3575484843929519,2024-08-18 +Resort Hotel,0,3,2017,May,20,14,1,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,C,0,No Deposit,18.0,179.0,0,Transient,0.82,0,0,Check-Out,David Jones,josephsantos@example.com,(272)603-0793,4396570018758033,2024-06-06 +City Hotel,0,0,2017,March,13,23,1,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,113.78,0,0,Check-Out,Gina Wallace,jacksonmary@example.org,502.299.7169,4812724306190,2025-12-07 +Resort Hotel,1,41,2017,August,35,28,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,228.56,0,1,Canceled,John Lowe,richardjensen@example.org,720-799-3297x944,3548352228098073,2025-05-13 +Resort Hotel,0,31,2017,November,44,3,2,2,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,309.0,179.0,0,Transient,100.75,0,0,Check-Out,Anthony Simmons,htaylor@example.com,001-887-601-4816x415,3522541782638775,2025-06-04 +Resort Hotel,0,1,2017,April,14,4,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,I,0,No Deposit,16.0,45.0,0,Transient,5.04,0,2,Check-Out,Kyle Watkins,andersoncassandra@example.net,406.263.2516x6768,4978709869986347792,2025-06-17 +City Hotel,0,36,2017,October,41,13,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,88.59,0,1,Check-Out,Melissa Jensen,smithjennifer@example.com,(786)595-2368,4157363744032,2024-09-30 +City Hotel,0,17,2017,August,32,4,2,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.48,0,2,Check-Out,Robert Marquez,bradfordchad@example.org,+1-428-417-5221,675949830995,2026-01-12 +City Hotel,1,0,2017,February,6,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,74.69,0,0,No-Show,Kim Beltran,catherineallison@example.com,(708)364-0462,3533868586885063,2025-09-24 +City Hotel,0,55,2017,August,33,12,2,5,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,213.91,0,2,Check-Out,Julie Anderson,andrewskrystal@example.com,5126152220,213143576124672,2024-10-19 +City Hotel,1,165,2017,July,27,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,221.29,0,0,Canceled,Tamara Mcdonald,robert89@example.com,7619395882,4403070995663151627,2025-07-19 +Resort Hotel,1,0,2017,March,11,13,2,2,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,77.52,0,0,Canceled,Michael Mckinney,vhill@example.com,228-798-6304,213144566977566,2024-06-04 +Resort Hotel,0,26,2017,October,43,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,179.0,179.0,0,Transient-Party,48.89,0,0,Canceled,David Walker,blakescott@example.org,499-647-8764,4481893822901995,2025-05-16 +Resort Hotel,1,142,2017,July,27,1,2,0,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,88.33,0,1,Canceled,Lisa Durham,walkerpatricia@example.org,001-559-509-8699,4696610434618820,2025-01-01 +Resort Hotel,0,9,2017,August,34,24,0,1,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,255.0,179.0,0,Transient,143.86,0,0,Check-Out,Michael Ortega,kenneth21@example.org,579.905.6784,3574631527770939,2024-10-30 +City Hotel,1,1,2017,February,6,10,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,B,0,No Deposit,9.0,179.0,0,Transient,114.18,0,2,Canceled,Sonya Chavez,jill32@example.org,(509)725-8156,180094568904101,2024-07-08 +City Hotel,0,49,2017,October,41,7,1,5,2,0.0,0,HB,PRT,Corporate,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient-Party,129.78,1,1,Check-Out,John Bell,nataliehall@example.org,+1-620-948-5017,3598904470082889,2024-08-24 +City Hotel,1,2,2017,July,29,14,4,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,151.53,0,0,No-Show,Christopher Tate,lucaskeith@example.org,3522163621,4568340954489023,2025-04-18 +Resort Hotel,0,37,2017,August,31,2,0,10,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Contract,188.22,0,1,Check-Out,Bethany Garcia,nicholas30@example.org,(437)647-8860,3598589845804446,2024-05-04 +Resort Hotel,0,11,2017,May,21,23,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,109.43,1,1,Check-Out,Rebecca Nguyen,feliciaperkins@example.net,966-498-0527,180006519985021,2024-04-26 +City Hotel,0,43,2017,October,43,24,0,1,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.99,0,0,Check-Out,Rebecca Patel,bmay@example.org,905.620.9488x52339,4763783492312533,2025-10-19 +Resort Hotel,1,36,2017,December,50,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,64.93,1,2,Canceled,Jason Oliver,carrillomichael@example.org,001-706-669-2889,583582851205,2025-09-08 +Resort Hotel,0,8,2017,May,18,2,0,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,177.38,1,1,Check-Out,Valerie Reyes,robersongerald@example.com,905.755.3406,30441856041462,2025-01-07 +City Hotel,0,2,2017,November,47,20,0,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Group,94.3,1,1,Check-Out,Robert Garza,fwheeler@example.net,669-486-8231x801,4541801177813954829,2025-09-24 +City Hotel,1,7,2017,December,49,6,0,2,2,0.0,0,HB,PRT,Complementary,Direct,0,1,0,E,E,0,No Deposit,13.0,179.0,0,Transient,1.6,0,0,Canceled,Jessica Cobb,tsmith@example.org,861-602-6708,6512957603409243,2024-06-06 +Resort Hotel,0,272,2017,March,11,14,0,1,3,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,41.46,0,0,Check-Out,Cynthia Bates,lisafrench@example.com,401-472-8942x2544,2401462798012715,2024-08-19 +City Hotel,0,24,2017,May,21,20,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,238.42,0,0,Check-Out,Timothy Andrews,alisoncampbell@example.org,(500)986-4358x282,4781029397826,2024-08-01 +City Hotel,0,103,2017,April,17,26,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.01,0,1,Check-Out,Mr. Joel Peters,ayork@example.com,001-412-906-4256x5663,4254669797416,2025-03-29 +City Hotel,1,11,2017,April,17,24,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.91,0,1,Check-Out,Casey Blanchard,theresagilbert@example.org,+1-621-323-0386,2516462746816417,2025-11-15 +City Hotel,1,120,2017,August,32,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,103.54,0,0,Canceled,Brian Cervantes,agutierrez@example.org,001-446-650-9395x2003,6011386773580243,2025-11-18 +City Hotel,0,144,2017,August,32,5,2,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,244.54,0,1,Check-Out,Jamie Snyder,oreyes@example.net,+1-646-689-0356x1884,2486113798449880,2026-02-28 +Resort Hotel,0,1,2017,January,4,25,2,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,55.98,0,1,Check-Out,Ann Montoya,markellis@example.org,680-229-6320,4478498041604837,2026-02-17 +Resort Hotel,0,94,2017,April,17,21,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient,90.01,0,1,Check-Out,Stephanie Fields,fmckee@example.com,263-256-2183x79470,4912843664703537,2025-12-30 +Resort Hotel,1,35,2017,April,14,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Group,61.89,1,2,Canceled,Charles Hernandez,hallbelinda@example.com,938-462-2006x581,180045925538800,2024-07-09 +Resort Hotel,0,3,2017,February,7,16,2,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,16.0,222.0,0,Transient,39.36,0,0,Check-Out,Jean Lane,moniquehall@example.com,001-859-860-7282x26909,4711629697880217,2024-08-13 +Resort Hotel,0,150,2017,December,2,30,0,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,56.5,0,1,Check-Out,Michael Stewart,kimberly94@example.org,+1-552-918-1048x728,2256986795470118,2024-06-22 +City Hotel,0,92,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient-Party,1.63,0,0,Check-Out,Susan Torres,john40@example.org,538.757.9435x586,6011562220523370,2024-09-02 +City Hotel,0,21,2017,September,38,19,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,1,1,1,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,94.75,0,1,Check-Out,Jessica Haas,bridgethoffman@example.net,(435)617-0601x65285,372362571274327,2025-04-02 +City Hotel,1,192,2017,August,32,9,2,6,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,133.44,0,2,Canceled,Brandon Smith,evan95@example.org,6812578051,3595615548674480,2025-02-08 +Resort Hotel,0,149,2017,September,38,17,0,1,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,50.26,0,0,Check-Out,Mrs. Bethany Phillips,jennifermurray@example.net,649.388.6081x118,4482402354961608826,2024-05-11 +City Hotel,0,188,2017,June,23,4,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,143.52,1,3,Check-Out,Joshua Brown,pam28@example.com,(292)349-6917x092,3519976409307914,2025-08-29 +Resort Hotel,0,2,2017,February,7,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,L,C,1,No Deposit,249.0,179.0,0,Transient,55.56,1,1,Check-Out,Samantha Howard,connerhelen@example.net,001-677-263-8233x507,4514716293499,2025-04-10 +City Hotel,0,220,2017,September,37,11,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,165.73,1,1,Check-Out,Sharon Young,robert38@example.org,001-887-949-2349x310,3503058739645046,2025-09-13 +Resort Hotel,0,0,2017,November,47,19,2,1,1,0.0,0,BB,PRT,Corporate,Direct,0,1,0,A,A,0,No Deposit,14.0,89.0,0,Contract,53.98,1,0,Check-Out,Jennifer Flores,donnastrickland@example.org,878-268-9032x628,4268063241656,2024-11-17 +Resort Hotel,0,101,2017,July,30,22,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient,209.39,1,2,Check-Out,James Gardner,hernandezbrent@example.com,+1-642-836-2512x69783,30046370705847,2025-10-24 +Resort Hotel,0,261,2017,November,48,30,4,10,2,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,37.0,179.0,75,Transient,96.58,0,1,Check-Out,Karen Lopez,powellsarah@example.net,001-885-701-7811x026,379073511464042,2025-07-22 +City Hotel,1,151,2017,June,27,30,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,110.48,0,0,Canceled,Tim Larsen,jenna55@example.net,001-548-413-9777,344945655197748,2025-02-14 +City Hotel,0,84,2017,April,14,5,1,0,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.3,0,1,Check-Out,Zachary Santiago,egreen@example.org,360-881-4496x8199,4767395548108041,2025-02-07 +Resort Hotel,0,88,2017,January,4,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,12.0,222.0,0,Transient-Party,44.88,0,1,Check-Out,Benjamin Smith,mollytaylor@example.org,+1-751-429-4201x0254,6011453221101202,2024-09-29 +Resort Hotel,0,146,2017,July,29,16,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,240.0,179.0,0,Transient-Party,44.76,0,3,Check-Out,Katelyn Kim,nsmith@example.com,001-921-911-2454x3829,2696497019452682,2025-10-16 +City Hotel,1,148,2017,September,36,5,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,272.0,179.0,0,Transient,124.5,0,0,Canceled,Angela May MD,barberamy@example.net,+1-591-415-9671x212,5119861843679533,2025-02-08 +City Hotel,1,1,2017,February,5,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,41.63,0,1,No-Show,Richard Munoz,fred35@example.net,262-609-8697x00872,340582379785641,2024-04-29 +Resort Hotel,1,158,2017,March,9,1,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,237.0,179.0,0,Transient,205.42,0,1,Canceled,Christopher Hicks,alan16@example.net,+1-363-306-8272x73234,4948370459712059,2026-01-21 +City Hotel,1,7,2017,March,10,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,15.0,73.0,0,Transient,45.42,0,0,No-Show,Joanna Kelly,whiteheadandrea@example.org,332.737.7329,30232821623314,2025-06-11 +Resort Hotel,1,85,2017,November,44,2,2,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,78.3,0,0,Canceled,Larry Lane,courtney36@example.org,887-218-7243x38790,341737899270628,2025-07-13 +Resort Hotel,0,20,2017,December,48,2,2,7,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,108.97,1,1,Check-Out,Cynthia Shaw,josephmitchell@example.org,328-591-8870x03619,36158349382451,2024-04-14 +Resort Hotel,1,243,2017,July,30,26,2,6,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,F,2,Refundable,2.0,179.0,0,Transient-Party,125.03,0,0,Canceled,Joshua Richardson,acook@example.org,(230)357-8406x201,3538527429305326,2025-08-16 +Resort Hotel,0,1,2017,April,16,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,78.0,0,Transient,44.85,0,0,Check-Out,Laura Bush,elizabeth72@example.org,(724)855-3352x474,2240146872363285,2024-11-23 +City Hotel,0,48,2017,September,36,6,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,164.81,0,3,Check-Out,John Vaughn,donna17@example.org,444.616.3909x2500,5595340021780580,2026-03-05 +City Hotel,0,32,2017,October,40,5,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,1.0,179.0,0,Transient-Party,91.02,0,1,Check-Out,Nicholas Terrell,sramirez@example.net,214.822.3576x994,3525980849275907,2026-02-09 +City Hotel,0,19,2017,February,9,24,2,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,64.02,0,0,Check-Out,Dr. Julie Miller,stanley92@example.com,+1-906-519-2873,4484627482263743,2024-11-14 +City Hotel,0,414,2017,August,33,14,1,4,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,106.53,0,0,Check-Out,Ann Kennedy,onealbeth@example.com,216-894-5321x2753,4579109252105178,2024-12-24 +City Hotel,0,144,2017,March,13,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,39.92,1,1,Check-Out,Toni Miller,nicholas73@example.com,+1-792-798-1518x5634,180001819033101,2024-06-24 +City Hotel,1,391,2017,October,43,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.72,0,0,Canceled,Rebecca Edwards,richardbarnes@example.net,666-204-1947x291,4743787503056265,2026-03-11 +Resort Hotel,0,11,2017,August,31,5,0,4,2,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,200.66,0,0,Check-Out,Greg Osborne,sheryl70@example.com,+1-870-379-6520,30030140402273,2025-05-06 +City Hotel,0,53,2017,July,27,3,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,118.88,0,1,Check-Out,Jose Harrison,mparker@example.net,855.404.7639x631,6527249811029333,2025-03-27 +Resort Hotel,0,46,2017,August,34,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,136.61,0,1,Check-Out,Jennifer Yu,suttonpaul@example.org,(245)896-3782,3518937235094804,2024-08-14 +City Hotel,0,1,2017,October,40,5,1,3,2,0.0,0,BB,NLD,Aviation,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,155.2,0,0,Check-Out,Donna Johnson,drangel@example.org,001-466-372-5519x211,3514186294530670,2025-04-27 +City Hotel,1,160,2017,June,25,20,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.28,0,2,Canceled,Nicole Acosta,gsherman@example.org,3006840305,348095116212946,2025-03-09 +City Hotel,0,43,2017,July,27,3,2,1,2,1.0,0,HB,CHE,Direct,Direct,0,0,0,G,G,2,No Deposit,16.0,179.0,0,Transient,176.73,1,3,Check-Out,Amy Kennedy,gdunlap@example.org,(361)989-0845x55317,5554134156075273,2024-10-29 +Resort Hotel,0,16,2017,July,30,23,4,5,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,249.84,0,1,Check-Out,Anthony Mooney,kimberlythomas@example.com,755-232-4198x7047,180042157387733,2025-12-16 +Resort Hotel,0,16,2017,March,11,14,0,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,127.47,0,1,Check-Out,Lori Mitchell,zhart@example.net,663-719-3150x493,5409124030940542,2024-08-13 +City Hotel,0,0,2017,March,13,25,0,1,1,0.0,0,BB,,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,215.0,0,Transient,48.16,0,1,Check-Out,Jonathan York,brownamy@example.org,6655024828,30436975479510,2025-03-07 +Resort Hotel,1,47,2017,August,32,5,2,4,2,0.0,0,FB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,129.9,1,0,Canceled,Casey Campbell,alicia89@example.com,866.750.2864x57036,180081904297753,2025-01-03 +Resort Hotel,0,17,2017,March,12,18,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,45.08,0,2,Check-Out,Alexis Rodriguez,vparks@example.com,917.507.3199,3552620407617423,2026-01-07 +City Hotel,0,165,2017,August,33,12,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,228.18,0,2,Check-Out,Kevin Hernandez,lyonshenry@example.net,(405)270-0693x533,578078704066,2024-06-14 +Resort Hotel,0,0,2017,December,49,6,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,61.48,1,1,Check-Out,Robert Green,tamarageorge@example.org,483.760.6082,4015215729504885,2026-01-08 +Resort Hotel,1,7,2017,December,52,26,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,90.74,0,1,Canceled,Kari Lloyd,fcannon@example.org,9299506586,676308117313,2026-01-02 +City Hotel,0,7,2017,October,42,15,0,1,1,0.0,0,BB,AUT,Aviation,Corporate,1,0,1,A,A,1,No Deposit,15.0,199.0,0,Transient,111.58,0,0,Check-Out,Grace Miller,kristenwilson@example.net,001-683-989-8508x4258,6011951450015423,2024-10-04 +Resort Hotel,1,137,2017,August,31,1,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,A,2,No Deposit,239.0,179.0,0,Transient,212.94,0,1,Canceled,Timothy Moore,judyweber@example.org,241.283.8928,4726747429357198,2025-06-08 +City Hotel,1,103,2017,December,50,12,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.74,0,0,Canceled,Wyatt Townsend II,hansenryan@example.net,001-478-806-4370x343,6011131608324353,2026-01-23 +City Hotel,1,59,2017,October,43,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,84.37,0,0,Canceled,Mark Clark,jasonorozco@example.net,(315)424-2222x035,676372950599,2024-10-10 +City Hotel,1,304,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,64.35,0,1,Canceled,Haley May,bwebb@example.net,001-540-615-4144x6627,3586059286606050,2025-10-06 +City Hotel,0,1,2017,January,2,1,0,2,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,62,Transient-Party,85.88,0,1,Check-Out,Audrey Jackson,xjenkins@example.net,7845022250,3547541801447191,2024-06-09 +City Hotel,0,39,2017,December,52,27,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,113.01,0,1,Check-Out,Eric Reese,gail86@example.org,001-755-363-0944,4432644048838,2025-03-26 +City Hotel,0,55,2017,July,30,21,0,3,3,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,30.0,179.0,0,Transient,230.68,0,0,Check-Out,Kim James,phawkins@example.net,241-408-6189,676176725643,2025-12-15 +City Hotel,0,2,2017,April,14,5,2,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,223.0,0,Transient,50.32,0,0,Check-Out,Karen Thomas,matthew71@example.org,868.366.4460,3563544780974655,2025-05-31 +Resort Hotel,1,137,2017,July,31,30,0,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Canceled,Alexandra Ho,sdominguez@example.net,001-898-293-6512x968,4643650100959672,2024-08-21 +Resort Hotel,1,64,2017,April,15,8,1,5,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,243.0,179.0,0,Transient,121.75,0,1,Canceled,Michael Nixon,morenoscott@example.com,237.537.5090x0253,4260855957292,2024-09-12 +Resort Hotel,0,15,2017,October,41,10,2,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,83.19,1,2,Check-Out,Amanda Hardin,jeffsoto@example.com,982-883-1076x145,30000129311670,2025-04-16 +City Hotel,1,13,2017,January,3,16,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,145.6,0,0,No-Show,Tina Reynolds,stephanie26@example.com,520.640.7490,3581557957057698,2026-03-04 +Resort Hotel,1,165,2017,June,24,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,A,1,Non Refund,81.0,179.0,0,Transient,156.07,0,0,Canceled,Shannon Rogers,frankcruz@example.net,(829)678-5543,2605334986702122,2025-04-13 +Resort Hotel,0,14,2017,January,2,5,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,50.53,0,1,Check-Out,Brett Pena,youngcameron@example.net,895.546.2257x3962,6011778249320099,2024-06-17 +City Hotel,0,34,2017,December,50,13,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,0,Contract,89.91,0,1,Check-Out,Raymond Curry,raymondwilliams@example.net,(675)965-5907x0667,4611865167060515,2024-10-24 +City Hotel,1,102,2017,August,31,5,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.24,0,1,Canceled,Leah Lee,sanderson@example.net,633-775-5584,2701508154167175,2025-10-12 +Resort Hotel,0,2,2017,January,4,22,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,241.0,179.0,0,Transient,41.42,0,2,Check-Out,Michael White,staceyryan@example.net,398-371-1367x5255,2272783730252960,2024-08-02 +Resort Hotel,0,19,2017,December,49,3,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,A,0,No Deposit,240.0,179.0,0,Transient-Party,63.54,0,2,Check-Out,Megan Decker,olsoncrystal@example.net,415.942.7946x30846,4326646679360,2025-08-04 +City Hotel,0,3,2017,July,30,21,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,151.05,0,1,Check-Out,Brent Garcia,jennifer62@example.net,(379)495-0377,4134445336699,2024-05-24 +City Hotel,0,18,2017,April,16,13,2,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,185.0,179.0,0,Contract,62.68,1,1,Check-Out,Daniel Campbell,christopher32@example.com,3222839165,6515408993415082,2026-01-17 +Resort Hotel,1,28,2017,March,14,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,H,I,1,No Deposit,239.0,179.0,0,Transient,3.87,0,2,Canceled,Alexander Davis,carol12@example.org,331.740.5953,38554005557253,2025-04-08 +City Hotel,1,193,2017,June,26,23,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.96,0,2,Canceled,Mary Houston,mitchellfelicia@example.com,+1-271-945-9151x1501,3546124593871885,2025-08-22 +Resort Hotel,0,0,2017,March,12,22,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,15.0,220.0,75,Transient-Party,64.59,1,3,Check-Out,Margaret Erickson,christopherbell@example.org,001-876-359-5588,3568707857312746,2026-01-25 +Resort Hotel,0,106,2017,July,27,7,1,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,63.21,1,0,Check-Out,Scott Anderson,melissa45@example.net,(437)909-2189,4573338928436001520,2026-03-05 +City Hotel,1,11,2017,October,41,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,63.36,0,0,Canceled,Stephanie Knight,kingkevin@example.net,001-411-841-8918x955,4408242821977757622,2025-11-21 +City Hotel,0,10,2017,May,20,17,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,133.91,0,2,Check-Out,Stephanie Dominguez,michaelbrown@example.net,001-328-233-3672x53061,4451557647928112511,2025-05-14 +Resort Hotel,0,153,2017,July,31,29,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,11.0,179.0,75,Transient,120.48,0,1,Check-Out,John Mayer,marroyo@example.net,3243710797,4544914512867794,2024-05-25 +Resort Hotel,0,44,2017,August,34,23,4,10,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,2,No Deposit,251.0,179.0,0,Transient,144.95,0,3,Check-Out,Tammy Hill,tiffanybailey@example.org,236-573-8836,30504221566479,2025-11-23 +City Hotel,0,84,2017,October,41,8,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,29.0,179.0,0,Contract,84.59,0,1,Check-Out,Steven Carrillo,johnparsons@example.com,001-771-274-5259x51116,3527046096742946,2024-09-16 +City Hotel,1,0,2017,April,15,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,5.14,0,0,Canceled,Christopher Jones,karen92@example.net,001-961-912-4670x43599,4621025432976478,2025-03-18 +City Hotel,1,37,2017,May,18,2,2,3,2,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,144.87,0,0,Canceled,Janet Cook,justincampbell@example.net,(530)350-9872,4772651089970501,2024-04-23 +City Hotel,1,2,2017,May,18,5,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.8,0,0,No-Show,Tyler Baker,michaelhensley@example.org,(615)654-1486,3542091070061765,2025-03-27 +Resort Hotel,0,48,2017,January,2,5,0,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,50.83,0,2,Check-Out,John Mcfarland,abrown@example.com,697.360.4465,4149453895172050482,2026-01-18 +City Hotel,0,103,2017,February,9,25,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,68.79,0,0,Check-Out,Cassandra Vasquez,pholland@example.org,780-763-8773x687,5575478187845997,2025-01-01 +City Hotel,0,0,2017,November,45,9,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,3,Check-Out,Randy Robinson,caroline76@example.com,001-715-596-8113x0792,3526475862398719,2024-11-23 +City Hotel,0,20,2017,September,36,5,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,95.89,0,0,Check-Out,Susan Baldwin,jessecuevas@example.org,+1-342-345-7463x0967,6011900208341532,2025-10-17 +Resort Hotel,0,1,2017,October,43,23,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Contract,62.24,0,1,Check-Out,Benjamin Duncan,phenson@example.org,(608)266-5925,4585365495455505,2024-04-01 +City Hotel,1,152,2017,August,31,1,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,136.85,0,3,Canceled,Jeremy Mosley,kimberlyanderson@example.org,001-671-674-2842x815,30538674009140,2026-02-12 +City Hotel,0,414,2017,May,20,16,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,106.85,0,0,Check-Out,Martin Fitzpatrick,jeremyjones@example.com,916.580.3287,501851961240,2025-07-10 +Resort Hotel,1,256,2017,May,21,24,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,107.97,0,0,Canceled,Deborah Graves,tmatthews@example.org,940-631-2666,6011388676405627,2024-06-23 +City Hotel,1,10,2017,October,40,2,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.88,0,2,Canceled,Laura Robertson,mullendaniel@example.org,850.805.6009,6011715770473061,2025-01-19 +Resort Hotel,0,87,2017,October,42,16,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,35.0,179.0,0,Contract,81.85,0,1,Check-Out,Katherine Graham,diazkeith@example.net,001-769-591-3434x47894,213147335125748,2024-06-28 +City Hotel,1,16,2017,May,18,2,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,180.0,331.0,0,Transient,80.29,0,1,Canceled,Priscilla Floyd,bsmith@example.org,981.487.1646x067,180014510712105,2025-04-09 +City Hotel,1,161,2017,June,25,17,0,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,75.07,0,0,Canceled,April Finley,karenjefferson@example.com,001-505-497-8461,4429870737988055951,2024-09-30 +City Hotel,0,142,2017,March,11,12,1,1,1,0.0,0,BB,BEL,Online TA,Corporate,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,34.47,0,1,Check-Out,Karen Bradley,maryhart@example.net,3112623168,4224865523052408504,2025-06-21 +City Hotel,1,144,2017,May,18,1,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,91.55,0,0,Canceled,Heather Maldonado,rebecca27@example.org,4848787961,676283285226,2025-03-23 +City Hotel,1,94,2017,July,28,12,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,138.73,0,1,Canceled,Mark Benjamin,james15@example.org,+1-630-440-6797,4991355997906137,2025-09-07 +City Hotel,0,33,2017,December,49,3,1,2,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,100.95,0,2,Check-Out,Joseph Woodward,davislaura@example.net,(600)719-3049x032,30125383410478,2025-02-27 +City Hotel,0,400,2017,March,11,13,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,78.2,0,1,Check-Out,Joe Miranda,hmartinez@example.com,001-784-711-7920x69451,4253948216602629,2024-06-04 +Resort Hotel,0,46,2017,May,22,30,1,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,63.02,0,1,Check-Out,Cassandra Williams,michaeldelgado@example.com,(274)957-5489x4705,213150534166760,2024-07-04 +Resort Hotel,0,15,2017,November,47,23,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,241.0,179.0,0,Transient,89.52,1,2,Check-Out,Connor Dominguez,richardsonjohn@example.net,001-539-939-9996,4099664200479357,2024-07-27 +City Hotel,0,59,2017,May,21,20,0,4,1,0.0,0,BB,DEU,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,229.0,0,Transient-Party,84.06,1,0,Check-Out,Lydia Howard,qnelson@example.com,001-248-644-8921x30656,2251338980525006,2026-01-18 +Resort Hotel,0,4,2017,February,8,24,0,1,1,0.0,0,BB,CHN,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,45.5,1,0,Check-Out,Mark Moss,deborah45@example.com,248.528.1401x313,4239506070895,2026-01-23 +City Hotel,0,51,2017,November,44,4,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.03,0,3,Check-Out,Corey Cortez,vsmith@example.com,952-926-1282,377724240078105,2024-05-27 +Resort Hotel,0,203,2017,March,13,27,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,16.0,222.0,0,Transient-Party,31.19,1,0,Check-Out,Katherine Brown,aprilperez@example.net,(786)466-3437,5381270644399682,2025-01-23 +City Hotel,0,168,2017,August,35,30,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,163.08,0,0,Check-Out,Elizabeth Ferguson,mwilkins@example.org,+1-429-399-9399x16896,676352125238,2026-03-22 +Resort Hotel,0,36,2017,August,35,28,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,221.31,0,2,Check-Out,Joann Forbes,ricesusan@example.com,8435823886,3525976714449114,2024-05-16 +City Hotel,0,45,2017,March,12,20,0,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,122.16,0,1,Check-Out,Anthony French,cochrancharles@example.net,001-781-641-0704,180012965965541,2024-06-18 +City Hotel,0,44,2017,November,48,30,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,179.71,0,0,Check-Out,Bruce Roman,rosejenkins@example.com,001-342-718-5384x54890,6011608311302941,2024-07-24 +City Hotel,0,279,2017,October,44,30,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,122.85,0,1,Check-Out,Judy Gregory,james13@example.org,384-906-6412x560,38909387414806,2026-02-03 +City Hotel,1,408,2017,March,12,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,83.73,0,0,Canceled,Brittany Riley,davisdonald@example.com,+1-486-400-2895x049,6011812435299146,2026-01-07 +Resort Hotel,0,150,2017,August,33,16,3,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,0,No Deposit,247.0,179.0,0,Transient,125.67,1,0,Check-Out,Amanda Thomas,kimkristy@example.com,633.388.9552,4261561090149896,2025-11-16 +City Hotel,0,0,2017,October,42,20,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,68.0,0,Transient-Party,51.72,0,0,Check-Out,Kaitlin Hardin,timothy83@example.net,+1-710-205-4964x1287,4239098836268026622,2025-12-23 +Resort Hotel,0,18,2017,June,26,28,0,2,2,0.0,0,BB,PRT,Direct,GDS,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,168.73,0,0,Check-Out,Michael Anderson,ramirezbeth@example.net,(458)707-5456,346827196792641,2024-04-28 +Resort Hotel,0,12,2017,January,2,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,186.26,1,1,Check-Out,Anthony Parker,smithbill@example.org,5243209265,378401691806313,2025-12-27 +City Hotel,0,7,2017,January,2,7,0,1,1,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.33,0,2,Check-Out,Joy Jackson,mariamatthews@example.org,001-950-844-2530,2248898354510807,2024-09-19 +Resort Hotel,0,25,2017,December,51,19,0,2,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,82.6,0,0,Check-Out,Sabrina Rodriguez,gjones@example.com,+1-963-211-2953,4258961684115,2025-03-07 +City Hotel,0,47,2017,June,23,6,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,237.0,179.0,0,Transient,252.0,0,1,Check-Out,Robert Walker PhD,martinsteven@example.com,+1-769-887-2362,676351932022,2025-05-22 +City Hotel,1,110,2017,June,24,13,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,35.0,179.0,42,Transient,104.69,0,0,Canceled,Robert Hendrix,deleonjonathan@example.org,+1-220-741-2042x753,6011508172157618,2024-10-05 +City Hotel,0,391,2017,October,42,16,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,103.04,0,2,Check-Out,Erika Daugherty,katherinemiles@example.com,246-202-1277,4313149866352841,2025-09-30 +City Hotel,0,2,2017,December,49,4,2,4,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,52.54,0,0,Check-Out,Brenda Copeland,talexander@example.net,+1-396-484-7710x60644,348427046581399,2025-06-19 +City Hotel,0,113,2017,July,27,3,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,134.72,0,1,Check-Out,Pamela Watkins,carteralexander@example.net,(574)610-1323x8790,4233598004777146575,2024-11-13 +City Hotel,0,87,2017,July,27,3,0,1,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,182.4,0,1,Check-Out,Bryan Thomas,philipwilliams@example.com,338-686-4578x011,213115441332607,2025-05-25 +Resort Hotel,0,72,2017,July,31,30,1,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,229.16,0,2,Check-Out,Michael Tran,angelalewis@example.com,001-925-893-6980x729,4262411925241261,2024-04-01 +City Hotel,0,50,2017,October,43,24,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,82.36,0,0,Check-Out,Timothy Williams,benjamin88@example.net,(606)466-7204,370571699116077,2025-12-16 +Resort Hotel,0,15,2017,February,8,23,2,5,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient-Party,39.07,0,0,Check-Out,Ryan Salazar,daniel44@example.com,4604315644,3590981594759400,2024-04-09 +Resort Hotel,0,1,2017,August,33,18,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,71.0,0,Transient,48.3,0,2,Check-Out,Alexis Tucker,susan38@example.net,(484)481-6182x50181,3551127768235937,2024-05-28 +Resort Hotel,0,4,2017,October,40,2,2,4,2,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,1,0,A,E,0,No Deposit,3.0,243.0,0,Transient-Party,52.21,0,2,Check-Out,Christopher Davis,lesliebanks@example.net,+1-798-439-1116x24979,346672834735812,2026-03-12 +Resort Hotel,0,2,2017,December,2,31,0,2,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient-Party,109.34,0,1,Check-Out,Stacie Butler,kimberlybell@example.org,430-343-0380x8051,676345344755,2026-03-09 +City Hotel,0,14,2017,January,4,23,1,2,1,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.52,0,0,Check-Out,Patricia Schwartz,nperez@example.org,(535)333-4271x6871,4525111543833,2026-03-07 +City Hotel,0,0,2017,November,47,23,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,107.25,0,1,Check-Out,Mark Mills,mooneypatrick@example.org,001-796-619-5023,501887584347,2026-03-23 +Resort Hotel,0,16,2017,January,3,19,0,4,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,80.82,1,3,Check-Out,Todd Bishop,mmendoza@example.net,+1-811-243-6073x3005,675976913235,2024-12-19 +Resort Hotel,0,318,2017,July,28,11,2,5,3,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,H,H,1,No Deposit,250.0,179.0,0,Transient,229.27,0,0,Check-Out,Christopher Porter,campbellkathleen@example.net,(462)971-6095x09220,30017336265564,2025-06-05 +City Hotel,0,1,2017,March,12,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,86.6,0,0,Check-Out,Lori Patton,gentryalex@example.org,001-334-500-7037,4295896446612426365,2024-05-10 +Resort Hotel,1,115,2017,July,31,30,1,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,93.28,0,0,Canceled,Aaron Young,smithsherry@example.net,+1-269-667-0183x16646,676313296730,2025-06-27 +City Hotel,0,30,2017,September,36,5,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient-Party,62.51,0,0,Check-Out,Joseph Davis,anthony61@example.com,001-823-861-1927x41198,30202062762204,2025-11-21 +City Hotel,0,0,2017,April,16,20,0,4,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,110.02,0,1,Check-Out,Philip Fernandez,lambertxavier@example.net,594-699-4340x841,3544035720080723,2025-08-10 +City Hotel,0,48,2017,October,40,4,2,4,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,173.0,179.0,0,Transient,88.6,0,0,Check-Out,Randy Hopkins,qrodriguez@example.com,+1-890-574-9026x340,4708540444224127,2025-08-31 +Resort Hotel,1,246,2017,July,30,22,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,128.25,0,0,Canceled,Cory Hogan,olsonkristen@example.org,(983)635-1499,4427854774583180482,2025-06-09 +City Hotel,0,59,2017,February,9,28,2,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,44.12,1,1,Check-Out,Tracy Wells,laurenbrown@example.org,(542)618-2949x7222,4979059623617828256,2025-05-30 +City Hotel,0,14,2017,March,12,17,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,90.18,0,2,Check-Out,Michael Williams,williamsdaniel@example.com,+1-593-475-5343x3600,30247965634737,2024-09-22 +City Hotel,0,1,2017,November,46,14,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,A,D,0,No Deposit,12.0,153.0,0,Transient,119.96,0,0,Check-Out,Dominique Hamilton,darylreyes@example.com,+1-638-822-3435x24096,6011288067732565,2025-10-13 +City Hotel,1,41,2017,April,18,27,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,89.43,0,0,Canceled,Robert Chang,berryrebecca@example.net,001-946-379-1469x5425,3576992182815056,2026-01-10 +Resort Hotel,1,135,2017,March,9,1,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,237.0,179.0,0,Transient,95.61,0,1,Canceled,Patrick Buckley,steven39@example.net,+1-875-272-6005x63070,343085713751763,2026-01-18 +Resort Hotel,1,40,2017,May,21,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,81.43,0,0,Canceled,Richard Washington,emilystark@example.com,(724)909-5120,3518785514115844,2024-12-15 +City Hotel,1,0,2017,February,9,26,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,17.0,62.0,0,Transient,82.08,0,0,No-Show,Steven Griffith,oguzman@example.com,(502)519-2835x1988,4101012246814504186,2025-02-14 +City Hotel,0,3,2017,October,41,9,0,1,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,112.58,1,3,Check-Out,Erika Gonzalez,smithronald@example.org,437-449-7906x9248,060494983285,2025-06-17 +Resort Hotel,0,50,2017,August,32,9,1,5,2,0.0,0,Undefined,ESP,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient-Party,202.36,0,0,Check-Out,Erika Maxwell,aprilmoore@example.org,+1-630-281-5386x48004,4234464758810574,2024-04-23 +City Hotel,0,10,2017,July,31,30,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.73,0,1,Check-Out,Brent Rojas,angelamann@example.org,(681)834-0182,6556012893487231,2025-12-25 +Resort Hotel,1,94,2017,October,41,11,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,98.05,0,0,Canceled,Jaime Walker,nathanielellis@example.com,001-259-478-4711,2247987306320919,2026-01-10 +Resort Hotel,1,39,2017,January,4,21,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,92.08,1,3,Canceled,John Zamora,dholden@example.net,395-268-2644x00331,4093713671980577479,2025-02-03 +City Hotel,1,284,2017,September,37,16,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.75,0,0,Canceled,Timothy Gibson,cookdavid@example.net,682-384-5468x71439,4884465340315527508,2025-07-19 +City Hotel,0,94,2017,May,21,20,2,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,Non Refund,14.0,179.0,0,Transient,106.69,1,0,Check-Out,Chad Cortez,anthony18@example.net,946.737.2715x483,4447035459531330,2024-04-27 +City Hotel,0,106,2017,May,21,23,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,160.11,0,1,Check-Out,Vanessa Harris,ahernandez@example.net,583.956.9196,2298036698277036,2024-06-19 +City Hotel,0,4,2017,August,32,5,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.27,0,1,Check-Out,Michael Brown,xward@example.com,534-414-2884x984,4385409090891802794,2024-12-13 +Resort Hotel,0,100,2017,August,32,8,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,99.73,0,0,Check-Out,Samuel Ellis,usullivan@example.com,356.834.9726x85279,589163103155,2025-03-18 +Resort Hotel,0,2,2017,September,39,26,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,45.0,0,Transient,163.77,0,0,Check-Out,Greg Tanner,amartinez@example.net,839.806.6500x849,4134091565602323,2025-04-06 +Resort Hotel,0,3,2017,March,10,4,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,61.75,0,1,Check-Out,Rachel Little,lisa83@example.net,(200)944-9536x2387,3555162998649678,2025-06-20 +Resort Hotel,0,4,2017,March,13,31,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,82.3,0,0,Check-Out,Carolyn Cordova,canderson@example.com,280-516-7995x553,4760273093856917,2024-09-17 +Resort Hotel,0,9,2017,November,48,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,49.43,0,2,Check-Out,Angelica Vincent,nlewis@example.com,280.740.7728,3529582299647068,2024-06-23 +Resort Hotel,0,46,2017,March,12,23,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient-Party,123.24,1,1,Check-Out,Zachary Vargas PhD,iromero@example.com,(631)593-7395x55696,3547490860300984,2024-05-12 +City Hotel,0,0,2017,December,49,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,192.36,1,2,Check-Out,Nicholas Fitzgerald,scott89@example.org,001-695-284-8300,4176731920031697,2025-10-27 +City Hotel,0,44,2017,June,26,24,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,133.0,0,1,Check-Out,Garrett Riley,omarshall@example.org,770.399.6881,3530628505085259,2024-05-27 +City Hotel,1,1,2017,November,47,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,1,No Deposit,13.0,77.0,0,Transient,41.95,0,0,No-Show,Leslie Hernandez,kcurry@example.net,+1-471-953-4674,4434353717801,2025-07-13 +Resort Hotel,1,102,2017,May,22,30,1,1,2,2.0,0,BB,PRT,Complementary,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,5.38,0,0,Canceled,Abigail Baird,ahardin@example.org,262.982.2780,4730388541807016350,2024-04-13 +Resort Hotel,0,97,2017,February,6,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,22.0,179.0,0,Transient,130.45,0,2,Check-Out,John Mack,alexandriacain@example.com,731.486.1552x9703,4862656764344592,2024-11-04 +City Hotel,0,153,2017,July,27,6,1,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,85.98,0,2,Check-Out,Joseph Mendoza,scottnancy@example.net,001-854-371-2189x1272,3507644394341413,2024-08-06 +City Hotel,0,90,2017,May,22,28,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,144.02,0,1,Check-Out,Samantha Chavez,davismelissa@example.org,(290)462-1280,6011390376151345,2025-11-30 +Resort Hotel,0,63,2017,March,13,25,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,215.23,1,0,Check-Out,Justin Smith,tamara00@example.com,496-978-1863x038,346641742426798,2026-01-29 +City Hotel,0,29,2017,August,31,4,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient-Party,178.98,0,1,Check-Out,Tiffany Anderson,nathanlee@example.net,(490)367-4883x26145,4777858515728,2026-03-03 +Resort Hotel,0,100,2017,April,15,10,1,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,1,No Deposit,314.0,179.0,0,Transient-Party,43.32,0,0,Check-Out,Matthew Davis,denise84@example.org,001-989-819-7386x03363,3508531638025499,2026-01-17 +City Hotel,0,53,2017,September,37,9,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,144.01,0,1,Check-Out,Eric Warner,mark14@example.org,662-633-0494x80044,371355479095456,2025-09-09 +City Hotel,0,96,2017,March,14,30,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.33,0,1,Check-Out,Nicole Johnson,tpotts@example.org,831-321-5429x369,376144002264515,2024-05-23 +Resort Hotel,0,56,2017,October,41,9,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,31.0,179.0,0,Transient-Party,79.04,1,0,Check-Out,Raymond Sawyer,gprice@example.net,(575)649-2717x8138,180009888397851,2025-08-31 +City Hotel,0,251,2017,June,26,24,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,103.27,0,0,Canceled,Richard Wood,jacobhoward@example.net,(655)575-2427x5863,3532926809742601,2024-04-20 +Resort Hotel,0,96,2017,April,17,21,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient-Party,48.94,1,1,Check-Out,Mark Dalton,sheppardpatrick@example.com,709-487-5686x62333,570558497881,2026-03-10 +Resort Hotel,0,8,2017,December,51,23,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,81.14,1,1,Check-Out,Steven Cook,deannadiaz@example.com,259-775-1821x99724,4130264197388371,2025-04-13 +City Hotel,1,40,2017,August,33,15,0,1,2,2.0,0,BB,USA,Online TA,Direct,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,79.14,0,1,Canceled,Jeffery Nelson,lhodges@example.org,001-660-228-0867,6599922984819812,2024-09-19 +City Hotel,0,138,2017,July,30,27,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.63,0,0,Check-Out,Kimberly Norton,wwilliams@example.net,6156750422,213192672551015,2025-11-01 +City Hotel,0,284,2017,September,36,9,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,1.0,246.0,19,Transient-Party,128.47,0,0,Check-Out,Angela Gilmore,markfitzpatrick@example.org,254.689.5274x6740,36544009991378,2024-05-17 +City Hotel,0,11,2017,December,49,4,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.06,0,1,Check-Out,Amy Dougherty,joyce01@example.net,(441)642-9770,3523470057034214,2024-07-02 +Resort Hotel,0,4,2017,January,2,4,2,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,2,No Deposit,323.0,179.0,0,Transient,35.48,0,2,Check-Out,Stacy Rodriguez,samanthapope@example.net,715-363-2408,30408518749055,2024-08-14 +City Hotel,0,12,2017,March,11,15,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,114.32,0,1,Check-Out,Manuel Diaz,mannwilliam@example.com,5904471567,30177256551383,2025-09-14 +Resort Hotel,1,93,2017,December,52,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,56.19,0,0,Canceled,Justin Jones,jenniferramirez@example.com,498.328.6843x94608,3521401836699797,2025-04-25 +City Hotel,0,87,2017,April,18,28,2,3,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,Christine Zavala,tyler43@example.com,+1-943-494-8608x758,4924393742749181,2024-07-29 +City Hotel,1,3,2017,March,11,9,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,47.36,0,3,No-Show,Brian Mendoza,lesliekelly@example.org,303-208-5035x39414,3582827115351195,2025-07-26 +City Hotel,0,37,2017,June,24,13,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,141.68,0,1,Check-Out,Lauren Haley,shelleyhawkins@example.net,379-761-0253x974,4984954770054,2026-03-11 +City Hotel,0,2,2017,August,32,6,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,18.0,179.0,0,Transient,141.26,1,1,Check-Out,Patrick Perez,douglas38@example.org,248-452-0685x0021,30468198034046,2025-02-09 +Resort Hotel,1,1,2017,February,7,14,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,C,0,Non Refund,28.0,179.0,0,Transient,77.13,0,0,Canceled,Derek Frazier,dicksonryan@example.net,001-949-650-7622x358,4179367905428413,2025-02-25 +Resort Hotel,0,103,2017,March,13,24,2,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,46.76,1,2,Check-Out,Arthur Reed,wtran@example.org,+1-536-715-5142x251,6580537101885842,2026-03-10 +City Hotel,0,17,2017,August,35,27,2,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,140.16,0,2,Check-Out,Mr. Bryan Mckinney,vegabernard@example.com,(484)396-0557,4693603851961086092,2024-08-28 +Resort Hotel,0,2,2017,January,2,2,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,179.0,0,Transient,133.79,0,0,Check-Out,Kim Carter,matthewjohnson@example.org,(911)678-7692x6296,30433150910120,2025-08-07 +City Hotel,0,15,2017,May,21,19,2,1,2,0.0,0,BB,DEU,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,32.0,179.0,0,Transient,219.82,0,0,Check-Out,Rebecca Dougherty,jessicafowler@example.com,767-418-4862,3545746387925138,2024-07-02 +City Hotel,1,35,2017,December,49,5,1,4,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.1,0,3,Check-Out,Teresa Jones,lucaskevin@example.org,+1-324-272-4200x699,3520289904453929,2024-04-22 +Resort Hotel,0,82,2017,October,42,16,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,104.11,0,1,Check-Out,Judith Miller,william24@example.org,893.745.9787x86225,4945247327699499,2024-09-18 +Resort Hotel,1,28,2017,September,36,7,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,228.89,0,0,Canceled,Donna Frye,whitematthew@example.com,(308)460-9403x6105,4352158822955180292,2024-06-03 +City Hotel,1,15,2017,May,19,7,2,3,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,132.0,179.0,0,Transient,157.08,0,0,Canceled,Donald Terry,nicole57@example.org,(972)537-8103x8065,562946143319,2024-04-26 +City Hotel,0,1,2017,March,9,1,1,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,39.32,0,1,Check-Out,Shaun Meyer DDS,catherineadams@example.net,671.935.0529,4098135508471,2024-08-23 +City Hotel,0,69,2017,August,33,14,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,117.57,0,1,Check-Out,Wayne Weaver,wsmith@example.com,(748)631-3066x0750,4035040399102893,2024-06-24 +City Hotel,1,142,2017,May,20,13,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.44,0,1,Canceled,Gregory Wallace,taylorelizabeth@example.org,709.461.9582x497,345710989938962,2025-03-12 +City Hotel,0,17,2017,August,35,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,136.46,0,1,Check-Out,Dorothy Brown,laura99@example.org,+1-487-900-0990x523,3558831391667530,2025-04-16 +City Hotel,0,168,2017,September,37,12,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,89.45,1,1,Check-Out,Crystal Meza,katherine35@example.org,(483)414-6492x6514,372324242832727,2024-08-21 +City Hotel,0,21,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,63.0,0,Transient,58.86,0,0,Check-Out,Jennifer Cooper,stacey56@example.net,6809739776,3597365247602758,2026-03-25 +City Hotel,1,51,2017,August,33,19,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.71,0,0,Canceled,Erin Watkins,marshallevan@example.org,861.600.0307x9125,3562548852301813,2026-02-03 +City Hotel,1,52,2017,August,32,3,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.07,0,0,Canceled,Sarah Wallace,bbrown@example.net,+1-703-521-9213x59218,30317818247019,2025-02-19 +City Hotel,0,2,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,E,E,0,No Deposit,13.0,45.0,0,Transient-Party,3.55,0,0,Check-Out,Carlos Clarke,ymontgomery@example.net,664-966-3014x1340,346122615012114,2025-08-10 +City Hotel,0,3,2017,May,19,4,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.51,0,1,Check-Out,David Washington,thomasprice@example.org,+1-340-745-4650x761,4994478425733662,2024-12-21 +City Hotel,1,155,2017,July,27,4,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,114.34,0,1,Check-Out,Patricia Williams,reeddenise@example.com,001-371-972-3366x1439,3546127514381769,2026-01-16 +Resort Hotel,0,140,2017,June,26,23,3,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,142.68,0,1,Check-Out,Jesus Jackson,ddavila@example.com,257.485.0151x40296,6011504122093342,2025-09-17 +Resort Hotel,1,47,2017,August,33,16,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,B,0,Non Refund,241.0,179.0,0,Transient,113.31,0,0,Canceled,Michelle Mitchell,martinezkevin@example.net,001-375-554-8973x5769,4261322264726,2024-11-25 +Resort Hotel,0,15,2017,April,17,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,103.49,1,1,Check-Out,Sara Schwartz,bferguson@example.com,+1-528-915-9047,4761981563721929,2024-07-05 +City Hotel,0,12,2017,March,13,27,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,91.4,0,1,Check-Out,Brittany Young,autumndaniels@example.com,813-292-0887x6268,4395920338623806792,2024-07-24 +Resort Hotel,0,1,2017,April,17,25,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,66.24,0,2,Check-Out,Eugene Martinez,brent00@example.org,+1-888-589-8888x5464,30036123650176,2025-12-26 +City Hotel,0,90,2017,December,52,23,1,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient-Party,62.17,0,0,Check-Out,Cody Hart,linda87@example.net,631-497-4746x6848,379450931387153,2025-12-17 +City Hotel,0,24,2017,May,20,13,2,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,D,0,No Deposit,180.0,179.0,0,Transient,171.49,0,0,Check-Out,Evan Cooper,marioford@example.org,001-210-758-8554x6170,3515588301443293,2025-06-24 +Resort Hotel,0,246,2017,July,29,13,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,208.53,1,0,Check-Out,Joshua Martin,andrewmoore@example.org,2942049310,180060175991310,2025-10-13 +City Hotel,0,5,2017,October,40,1,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,B,0,No Deposit,19.0,179.0,0,Contract,83.27,0,1,Check-Out,Thomas Sullivan,shawnclayton@example.net,(322)295-9488x9446,4284405817545965,2024-12-08 +City Hotel,0,12,2017,March,10,5,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,99.86,0,1,Check-Out,Mr. Jimmy Flores Jr.,kevin53@example.org,803.370.6327,2621618993067978,2024-07-10 +Resort Hotel,0,54,2017,September,38,20,2,5,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,81.0,179.0,0,Transient,103.7,0,0,Check-Out,Vanessa Rivera,kimberly01@example.com,(707)939-2685x403,4524050909733,2025-01-07 +City Hotel,1,49,2017,August,32,8,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.94,0,1,Canceled,Kara Roberts,teresa78@example.net,858.779.2281,4291697646488,2024-11-16 +City Hotel,0,86,2017,July,30,23,1,1,1,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,105.85,0,1,Check-Out,Veronica Berry,elizabeth60@example.net,8865313007,6011053627526166,2024-10-07 +City Hotel,1,16,2017,November,47,21,2,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,237.93,0,0,Check-Out,Keith Meadows,jamesjones@example.net,936.511.8757,4640026587162317,2024-09-21 +City Hotel,0,0,2017,July,27,5,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Contract,79.15,0,1,Check-Out,Michael Dennis,ugomez@example.org,(816)781-6462,630452199353,2026-03-04 +City Hotel,0,12,2017,July,27,3,2,4,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,216.48,0,2,Check-Out,Brenda Pierce,andersonnicole@example.net,+1-846-559-8972x9702,4568470656477485686,2024-04-17 +City Hotel,0,19,2017,October,41,13,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,83.09,0,0,Check-Out,James Randall,likeith@example.com,001-838-833-2988x66905,4439505163384721,2025-12-27 +Resort Hotel,0,0,2017,October,43,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,238.0,0,Transient,53.57,0,0,Check-Out,Brandon Brown,amanda19@example.net,927.850.5314x17442,4574963525873655402,2026-02-02 +Resort Hotel,0,39,2017,October,40,5,0,1,1,0.0,0,BB,POL,Corporate,Corporate,0,0,0,A,D,0,No Deposit,317.0,331.0,0,Transient-Party,40.68,0,0,Check-Out,Lauren Walker,glennpacheco@example.org,+1-253-567-2651x097,060437720547,2024-09-08 +City Hotel,1,414,2017,July,28,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,105.83,0,0,Canceled,Diana Johnson,evilla@example.com,+1-675-901-3274,3521891584245001,2024-04-09 +Resort Hotel,0,15,2017,January,2,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,49.57,0,1,Check-Out,Jill Powers,gabrielleheath@example.org,738-343-3341x60251,4417061181571168,2025-08-30 +Resort Hotel,0,0,2017,February,6,8,0,1,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,74.31,0,0,Check-Out,Jorge Lee,kimcarolyn@example.net,8598279122,4805188976755,2024-07-30 +City Hotel,0,2,2017,April,15,6,1,0,1,1.0,0,BB,ESP,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient,0.62,1,2,Check-Out,Larry Harding,belliott@example.com,486-647-1923,4457346704831079,2024-08-07 +City Hotel,0,18,2017,September,36,2,0,1,1,0.0,0,SC,POL,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,116.3,0,0,Check-Out,Heather Hernandez,cbowman@example.org,772.455.1555x62239,4200287858138095,2025-12-30 +City Hotel,0,9,2017,March,13,26,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,132.8,0,0,Check-Out,Jaclyn Watson,uwhite@example.org,621.667.7260x581,344206943796241,2024-05-30 +City Hotel,1,97,2017,July,30,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,Non Refund,7.0,179.0,0,Transient,138.4,0,0,Canceled,Gregory Madden,pinedalisa@example.com,(402)292-1023x14048,4612256622355917253,2025-10-10 +Resort Hotel,0,45,2017,October,43,25,2,5,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,C,C,2,No Deposit,244.0,179.0,0,Transient,150.1,1,1,Check-Out,Anita Luna,marshalljulian@example.net,6344413246,3507055021505884,2024-11-17 +City Hotel,0,16,2017,March,13,23,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,7.0,179.0,0,Transient,66.56,0,1,Check-Out,Willie Lara,spencesarah@example.org,7865167332,30141046559031,2024-12-20 +Resort Hotel,1,46,2017,March,11,14,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,317.0,179.0,0,Transient,47.75,0,1,No-Show,Robert Waller,rileysmith@example.com,553.460.5779x376,4431153889798,2025-09-03 +City Hotel,0,17,2017,April,16,19,0,1,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,110.16,0,1,Check-Out,Steven Taylor,todd70@example.com,7153599760,4952568134017,2024-11-11 +Resort Hotel,0,94,2017,March,12,22,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,D,D,1,No Deposit,8.0,179.0,0,Transient,43.44,0,1,Check-Out,Angelica Clark,wwilliams@example.com,832.954.3205x945,4090375134100,2024-11-07 +City Hotel,0,94,2017,July,30,24,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,217.37,0,0,Check-Out,Sean Hatfield,ihuang@example.com,4074862116,4427888696581,2026-01-23 +City Hotel,0,143,2017,May,18,4,1,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.31,0,0,Check-Out,Tyler Avila,beckymccormick@example.net,+1-411-315-1518x73243,4797609421604,2024-04-10 +City Hotel,0,22,2017,July,30,24,0,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.4,0,2,Check-Out,Jason Rocha,tammysimon@example.org,+1-325-300-1893x17171,4477199575294840630,2025-09-22 +City Hotel,0,32,2017,November,48,25,0,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,125.17,0,0,Check-Out,Justin Page,brittany22@example.org,(508)958-8556,6011455258171545,2026-03-23 +City Hotel,0,9,2017,May,21,23,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,79.55,0,0,Check-Out,Breanna Lopez,hgibbs@example.com,+1-365-216-2324x056,6533248218695904,2025-01-30 +Resort Hotel,0,85,2017,April,14,4,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,87.79,0,1,Check-Out,Julian Williams,francescohen@example.com,933-217-4343x128,36922899322633,2024-05-16 +City Hotel,1,55,2017,June,24,9,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,81.0,179.0,0,Transient,133.72,0,0,Canceled,Sandra Torres,chad96@example.org,8234698892,588141561138,2025-05-28 +Resort Hotel,0,14,2017,October,41,13,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,100.58,0,1,Check-Out,Julie Johnson,tracysanchez@example.org,9362213296,4657221567539283,2024-04-11 +City Hotel,0,33,2017,October,42,20,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Contract,82.03,0,0,Check-Out,Dennis Blanchard,catherine85@example.org,967.636.1900x90643,6573130627663890,2024-06-24 +Resort Hotel,0,113,2017,December,50,16,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,113.86,0,0,Check-Out,Kaitlyn Valdez,stewartbradley@example.org,708.941.5378x41663,3525584510294609,2025-03-10 +City Hotel,1,48,2017,October,41,10,1,2,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.88,0,0,No-Show,Jennifer Vasquez,pfields@example.net,433.277.2442x7318,4164972989629623438,2025-02-12 +City Hotel,0,102,2017,January,3,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.45,0,2,Check-Out,Danielle Wilson,sharonklein@example.org,(513)317-5985,4798811206495290444,2025-07-24 +Resort Hotel,1,151,2017,March,11,13,0,1,1,0.0,0,BB,PRT,Groups,Direct,1,1,1,A,A,0,Non Refund,11.0,179.0,0,Transient,0.65,0,0,Canceled,Zachary Jones,suttonnorman@example.com,(843)349-0574x3285,4538842825319149339,2025-07-29 +City Hotel,1,414,2017,August,35,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,115.77,0,0,Canceled,Lauren Cunningham,brittany80@example.com,+1-842-818-7879x4469,4958225768094812027,2024-10-16 +Resort Hotel,0,151,2017,March,13,31,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,223.0,0,Transient-Party,44.49,0,0,Check-Out,Lori Alvarez,brianpowers@example.org,595-870-2579,180078571385275,2024-04-28 +Resort Hotel,0,35,2017,February,6,10,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,H,2,No Deposit,17.0,222.0,0,Transient,49.81,0,0,Check-Out,Barbara Hunt,gaustin@example.net,+1-665-627-4874,30160716239856,2024-09-17 +City Hotel,1,0,2017,November,45,9,0,2,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.88,0,0,Check-Out,Sarah Martin,kbrown@example.com,+1-215-221-4815x9047,2457785225859842,2024-08-26 +City Hotel,0,38,2017,May,21,20,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,115.97,0,0,Check-Out,Francisco Johns,randallpatricia@example.org,(942)206-3593x8676,30134825270508,2024-04-03 +City Hotel,0,50,2017,September,36,6,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,174.0,179.0,0,Transient,137.06,0,2,Check-Out,Christopher Nelson,danawade@example.org,001-868-962-9987,180028425228635,2025-02-11 +Resort Hotel,0,106,2017,December,52,30,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,243.0,179.0,0,Transient-Party,104.46,0,0,Check-Out,Thomas Kelly,hernandezlisa@example.net,(925)505-8502x92299,3566301141998049,2025-11-04 +City Hotel,1,7,2017,June,23,7,1,0,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,194.0,0,Transient,137.13,0,0,Canceled,Joseph Mayer,laurensmith@example.org,001-824-895-6208,4891506804408,2025-03-02 +Resort Hotel,1,140,2017,June,23,2,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,85.84,0,0,No-Show,Pamela White,matthew28@example.org,741-329-4865,3551440224792486,2024-12-18 +City Hotel,1,11,2017,March,12,20,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,15.0,179.0,0,Transient,126.32,0,1,Canceled,Paul Stephens,johnmcdonald@example.com,852-902-7406,36263675471405,2024-06-15 +Resort Hotel,1,18,2017,December,49,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,108.56,0,0,Canceled,Samantha Cohen,jnoble@example.org,275.622.7335x29485,4933525825174170,2026-01-21 +City Hotel,1,21,2017,August,33,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,87.93,0,0,No-Show,Michael Barker,nicholasmiller@example.org,7233997202,3550414717036249,2024-11-29 +City Hotel,1,22,2017,May,22,25,0,3,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,1,No Deposit,16.0,251.0,0,Transient,174.82,0,0,Canceled,Kevin Morrow,andrearodriguez@example.net,(224)420-9932,213115177645958,2025-12-24 +Resort Hotel,0,7,2017,March,10,10,0,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,313.0,222.0,0,Group,51.37,0,0,Check-Out,Joseph Watson,wthompson@example.com,001-217-237-1886x2966,4775349555977299748,2025-03-12 +City Hotel,1,40,2017,November,45,4,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,6.0,179.0,0,Transient,110.61,0,1,Canceled,Mr. Thomas Garcia,powersnathan@example.com,(414)567-6697x846,375430325170757,2025-02-07 +Resort Hotel,0,104,2017,April,14,2,0,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,89.69,0,0,Check-Out,Daniel Lopez,allennichole@example.net,+1-711-321-8051x174,3524089369658905,2024-08-07 +City Hotel,0,0,2017,December,49,4,0,1,3,0.0,0,BB,PRT,Undefined,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient-Party,91.74,0,1,Check-Out,Lisa Guerra,mnicholson@example.com,876.527.7339,4430652905284717,2025-03-16 +Resort Hotel,1,140,2017,June,24,8,4,6,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,120.08,0,0,Canceled,Kim Arnold,kristawade@example.com,+1-615-377-2913x9354,6509398475535416,2026-03-25 +City Hotel,0,17,2017,August,34,21,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,134.62,0,0,Check-Out,Ashley Stevens,dawn77@example.org,001-444-529-5120,4537775710687634,2024-07-07 +City Hotel,0,149,2017,July,27,1,0,4,3,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.16,0,2,Check-Out,Robert Mclean,ssmith@example.com,+1-441-922-7463x3560,4315478735425266,2024-12-15 +City Hotel,1,166,2017,September,39,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Contract,62.18,0,0,Canceled,Eric Cox,wthompson@example.com,(438)741-1129,2259959339226350,2025-05-10 +City Hotel,0,16,2017,March,12,18,0,3,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.89,0,1,Check-Out,Stacy Harper,derrick42@example.org,702.613.5582,4173524993243361544,2024-09-03 +City Hotel,0,182,2017,September,36,4,1,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,23.0,179.0,0,Transient-Party,102.59,1,0,Check-Out,Gloria Mckinney,ghudson@example.net,+1-580-347-9817x3412,630491633941,2024-06-30 +City Hotel,1,414,2017,August,32,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,111.44,0,0,Canceled,Robert Walker,katherine59@example.com,+1-649-259-2474x202,4916736293589507,2025-06-24 +Resort Hotel,1,153,2017,August,34,22,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,161.16,1,0,Canceled,Brenda Perez,alvaradojessica@example.com,001-747-802-5860x11639,36748541724987,2024-11-27 +City Hotel,0,196,2017,June,24,8,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,2,No Deposit,23.0,179.0,0,Transient,110.25,0,0,Check-Out,Carlos Miller,joseph90@example.com,+1-898-382-9029x77757,6011320845815865,2025-05-09 +Resort Hotel,0,5,2017,February,9,27,1,1,3,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,8.0,179.0,0,Transient,195.49,1,0,Check-Out,Rachel Jones,kevin78@example.net,474-605-9143,213107603448024,2025-05-31 +Resort Hotel,0,13,2017,September,37,9,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,321.0,179.0,0,Transient-Party,4.31,0,0,Check-Out,Nicole Williams,chelseaturner@example.net,001-710-412-7816x521,2294455066524874,2025-02-07 +Resort Hotel,0,326,2017,August,31,4,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,198.0,0,0,Check-Out,Ricky Palmer,zlloyd@example.org,(988)391-1317,213128558054807,2025-02-17 +City Hotel,0,54,2017,October,40,6,2,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,97.97,0,0,Check-Out,Bryan King,clinemiranda@example.com,314.936.0635x01916,675951758126,2024-12-27 +Resort Hotel,0,38,2017,May,18,4,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,70.49,0,0,Check-Out,Michael Webster,kirksamuel@example.net,631-787-6735,372698027324806,2024-06-30 +Resort Hotel,0,114,2017,August,33,10,2,2,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient-Party,96.61,1,3,Check-Out,Tamara Harris,smithchristopher@example.org,477-333-3990x4978,2252234467253742,2026-01-30 +Resort Hotel,0,42,2017,September,37,16,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,115.53,0,2,Check-Out,Cathy Bell,morganmcintyre@example.org,438.906.7083,4365551055287323,2025-02-09 +Resort Hotel,0,15,2017,March,10,5,1,5,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,309.0,179.0,0,Transient,34.49,0,0,Check-Out,Ryan Mcmahon,mike77@example.com,3409730817,2255156206784603,2024-09-27 +Resort Hotel,1,350,2017,February,7,12,2,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,33.84,0,0,No-Show,Hannah Martin,dariushobbs@example.org,001-483-520-0579x025,6011655814994146,2025-02-01 +City Hotel,1,16,2017,February,6,5,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,97.54,0,2,Canceled,Monica Allen,christine24@example.net,001-968-863-9993x7460,3571124379212328,2024-07-16 +City Hotel,0,0,2017,March,10,5,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,D,0,No Deposit,8.0,179.0,0,Transient,50.8,0,1,Check-Out,Annette Lane,kevin50@example.com,532.651.0807x1685,38118988495590,2025-12-19 +City Hotel,1,149,2017,March,12,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,63,Transient,81.99,0,0,Canceled,Daniel Lee,tlucero@example.com,+1-626-752-2558x36323,4389587994476363,2025-07-11 +Resort Hotel,0,86,2017,October,42,12,3,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient,58.08,0,0,Check-Out,Steven Medina,salinaslaura@example.net,(318)880-2944x52603,4471146614356130,2024-04-18 +City Hotel,0,40,2017,May,21,20,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,122.79,0,1,Check-Out,Annette Lewis,cindyrichards@example.com,972-328-2324,3562418448252195,2025-02-25 +Resort Hotel,1,151,2017,June,27,30,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,142.91,0,3,Check-Out,Michelle Richardson,sherri14@example.org,842.235.9873x172,4512310323655106,2025-12-08 +City Hotel,0,83,2017,October,42,17,0,1,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,301.0,179.0,0,Transient,112.9,0,0,Check-Out,Jessica Rosario,sarah80@example.com,7764617241,3576115445681194,2024-03-28 +City Hotel,0,176,2017,October,43,23,2,0,2,0.0,0,SC,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,113.19,0,2,Check-Out,Henry Gray,dustin12@example.org,(307)378-8796,180047632842186,2024-04-14 +City Hotel,1,51,2017,June,24,12,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,123.18,0,0,Canceled,Darren Rodriguez,veronicadeleon@example.net,+1-218-381-0834,4164320800366741227,2025-03-09 +City Hotel,1,0,2017,February,5,4,0,1,2,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient,19.4,0,1,Canceled,Mrs. Ashley Taylor,laurensmith@example.org,001-538-534-6105x001,6505808179807873,2024-07-19 +City Hotel,0,94,2017,June,24,13,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.6,0,2,Check-Out,Michele Hawkins,marc32@example.org,001-447-755-8958x09568,4389897407749698,2024-03-27 +Resort Hotel,1,52,2017,September,37,11,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient-Party,48.37,0,1,No-Show,Garrett Wilson,kathleenrodriguez@example.com,371-569-2192,4320892276988564071,2025-04-27 +City Hotel,0,0,2017,January,4,24,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,82.34,0,0,Check-Out,Kyle Collins,danajohnson@example.org,+1-441-366-0534x1061,4418852985618559471,2025-05-11 +City Hotel,1,285,2017,December,50,10,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.04,0,0,Canceled,Jill Spencer,tchapman@example.net,001-687-697-5372x4246,4421601278989536,2025-10-05 +City Hotel,0,43,2017,August,34,22,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,225.79,1,3,Check-Out,Scott Lopez,jeffrey43@example.org,+1-465-307-0207x45738,30308309190933,2025-03-04 +City Hotel,0,0,2017,January,4,27,0,1,1,0.0,0,BB,ESP,Offline TA/TO,GDS,0,0,0,A,B,0,No Deposit,162.0,179.0,0,Transient,86.38,0,0,Check-Out,Ryan Alvarez,gjones@example.com,+1-238-827-0836,4032374664727682692,2025-04-28 +City Hotel,0,44,2017,August,35,27,0,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,251.02,0,1,Check-Out,Cassie Lutz,mjordan@example.org,712.699.1769,060407255177,2024-11-18 +Resort Hotel,1,305,2017,December,49,4,0,1,2,0.0,0,FB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,82.27,0,0,Canceled,Brian Kim DDS,jenniferrodriguez@example.com,(815)311-3914,371875713332720,2025-08-21 +City Hotel,1,11,2017,August,33,16,1,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.98,0,0,Canceled,Charles Morales,valdezjeffery@example.org,001-727-244-5041x39831,3567235567703997,2024-10-11 +City Hotel,1,98,2017,June,23,5,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.33,0,2,Canceled,Ashley Schaefer,wrightjames@example.com,(474)970-2531x436,375669146025746,2024-12-19 +Resort Hotel,1,9,2017,December,49,3,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,62.66,0,0,Canceled,Amy Hester,solomonmichael@example.com,967.386.3058,344397414525761,2024-10-13 +Resort Hotel,0,58,2017,August,33,12,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,212.11,1,1,Check-Out,Kurt Ewing,jessicabrown@example.com,5513193332,4884132892256750765,2024-11-14 +City Hotel,0,7,2017,May,20,18,0,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,2,No Deposit,16.0,185.0,0,Transient-Party,108.86,0,0,Check-Out,Ryan Hardy,christopherward@example.net,971.697.4077x87335,4846716031955439,2024-09-18 +City Hotel,1,5,2017,April,14,3,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,163.41,0,0,Canceled,Micheal Perkins,aburns@example.net,9022471297,341649323060329,2024-11-19 +Resort Hotel,0,41,2017,April,17,26,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,313.0,179.0,0,Transient-Party,54.71,0,1,Check-Out,Richard Schneider,sarahshaw@example.com,557-751-7467x125,587839767486,2026-03-27 +Resort Hotel,1,146,2017,March,13,26,1,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,51.89,0,0,Canceled,John Morrison,amanda63@example.org,001-518-400-1262x3623,6011514337785947,2024-08-18 +City Hotel,0,0,2017,February,9,29,0,2,3,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,114.5,0,0,Check-Out,John Ramirez,zimmermanmichelle@example.net,4514253445,503824791233,2025-07-29 +Resort Hotel,0,115,2017,March,11,11,1,5,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient,85.32,0,0,Check-Out,Ashley King,lopeztiffany@example.net,505.808.0735,6566431183413053,2025-05-13 +Resort Hotel,1,132,2017,June,22,2,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,231.46,0,0,Canceled,Mark Taylor Jr.,alexandrashepherd@example.com,+1-849-435-7853,180075061282525,2025-08-13 +Resort Hotel,1,379,2017,May,22,27,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,104.36,0,1,Canceled,Barry Gregory,raymondleonard@example.com,(631)629-5019,4748679484994454,2024-06-22 +Resort Hotel,0,36,2017,January,4,22,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,246.0,179.0,0,Transient,249.18,0,3,Check-Out,Janet Shelton,denniskenneth@example.com,001-718-824-7519x837,4037759884762675,2025-11-09 +City Hotel,1,55,2017,May,20,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,78.7,0,0,Canceled,Marco Davis,nathan56@example.net,430-432-2580,379893050736561,2024-12-10 +City Hotel,1,35,2017,March,12,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,97.52,0,0,Canceled,Paul Saunders,yeseniamoore@example.net,(465)924-3960x051,4596791798781,2024-11-05 +Resort Hotel,0,45,2017,June,23,9,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,228.0,179.0,0,Transient,81.9,0,1,Check-Out,Christina Bates,parkamy@example.org,405-676-6381,3518616358064261,2024-08-03 +City Hotel,0,18,2017,January,2,8,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.07,0,1,Check-Out,Dennis Cooper PhD,williamfuller@example.net,205.757.8293,4993909877138,2024-06-30 +City Hotel,1,414,2017,October,44,29,0,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,96.58,0,0,Canceled,Tiffany Johnson,stokesanna@example.org,855-342-7667x6296,580330190480,2024-04-12 +Resort Hotel,0,162,2017,March,10,9,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,170.0,179.0,0,Transient,47.87,1,1,Check-Out,Thomas Reyes,bharrison@example.org,(492)886-1458x00623,503894256638,2024-09-10 +City Hotel,0,13,2017,August,32,8,1,4,1,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.46,1,1,Check-Out,James Stevens,maryford@example.org,(546)531-9459x62486,4165108797913542,2026-01-06 +City Hotel,0,0,2017,December,48,1,1,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.27,0,0,Check-Out,Justin Dalton,zgarza@example.com,+1-891-730-8916x54855,4280765768571557,2026-03-05 +Resort Hotel,1,19,2017,November,45,6,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,79.86,0,0,Canceled,Michael Henry,stephanie87@example.com,001-540-738-1653x00993,180020927790105,2026-02-05 +City Hotel,0,33,2017,October,41,11,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,272.0,179.0,0,Transient,123.23,0,0,Check-Out,Mike Freeman,fmartinez@example.net,(565)349-2046,4658348010934925,2025-05-17 +City Hotel,0,101,2017,November,47,21,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,131.58,0,2,Check-Out,Michael Keller,vburns@example.net,(337)445-2717,343588339636177,2025-04-02 +Resort Hotel,1,53,2017,December,49,3,2,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,A,1,No Deposit,246.0,179.0,0,Transient,81.9,1,0,No-Show,Laura Alvarez,victoria44@example.org,484-550-3610,4504122487110749,2025-01-04 +Resort Hotel,0,13,2017,April,17,21,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,50.61,0,2,Check-Out,Katie Myers,mary57@example.com,904-803-3861x3675,373380997153056,2025-01-24 +City Hotel,1,270,2017,July,28,9,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.93,0,0,Canceled,Wesley Jensen MD,staceyrichard@example.com,536.254.6712x138,180025259900974,2025-03-17 +City Hotel,0,20,2017,August,33,17,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,127.77,0,0,Canceled,Erica Johnson,virginia98@example.org,(599)443-9335,3562457508126857,2025-09-26 +City Hotel,0,17,2017,April,18,27,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,130.83,0,0,Check-Out,Russell Bailey,shelby13@example.org,001-297-975-0839x799,4225185763389,2025-03-12 +City Hotel,0,256,2017,April,16,21,1,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,64,Transient,85.43,0,2,Check-Out,Alyssa Vance,wagneralexis@example.org,001-544-758-5819x661,344253432854974,2025-10-08 +Resort Hotel,0,141,2017,March,11,9,1,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,303.0,179.0,0,Transient,70.64,0,0,Check-Out,Brent Reed,christinadiaz@example.net,001-906-425-8171x999,30445478559736,2026-02-18 +City Hotel,0,2,2017,August,34,20,0,1,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,C,B,0,No Deposit,15.0,179.0,0,Transient,135.81,0,0,Check-Out,Gregory Stanley,elizabeth57@example.org,001-790-879-9429x44105,3512832943406240,2025-01-24 +Resort Hotel,0,41,2017,December,50,11,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,238.0,179.0,0,Transient,87.93,0,1,Check-Out,Matthew Watkins,gabriel40@example.com,001-709-812-0923x33109,4680332557995,2025-04-09 +City Hotel,0,56,2017,January,2,3,0,3,1,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.62,0,0,Check-Out,Ana Torres,wolfesue@example.net,(958)512-2589,4411688789641690,2025-01-21 +City Hotel,1,10,2017,September,39,28,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.43,0,1,No-Show,Alejandro Nguyen,gonzalezbob@example.com,632.909.5170,4035839735996276,2025-02-14 +Resort Hotel,0,88,2017,December,52,27,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,266.0,179.0,0,Transient-Party,52.24,0,0,Check-Out,Scott Bradley,douglas40@example.net,+1-464-274-8628x6987,676344446809,2025-09-26 +Resort Hotel,1,302,2017,November,48,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,85.02,0,1,Canceled,Deborah Dominguez,michael45@example.com,(423)589-4259x3621,574661103212,2025-04-15 +City Hotel,1,43,2017,November,47,22,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Contract,83.61,0,0,Canceled,Victoria Gray,carlosthompson@example.org,001-876-825-3210x35661,4059214534489744,2026-02-27 +City Hotel,0,11,2017,November,47,19,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,198.5,0,0,Check-Out,Kenneth Stokes,allisonthompson@example.com,894-372-0007x26209,4634287938844247,2024-12-07 +City Hotel,0,25,2017,October,43,21,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,45.0,0,Transient,77.69,0,0,Check-Out,Michael Rogers,hernandezbrenda@example.com,001-782-706-9446x1039,4182004383301362289,2025-12-09 +Resort Hotel,0,54,2017,March,11,9,2,2,2,2.0,0,BB,DEU,Direct,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient-Party,84.89,0,0,Check-Out,Pamela Morgan,ashleyanderson@example.org,(440)875-8335,3572612702779681,2024-05-12 +Resort Hotel,0,0,2017,November,44,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,44.08,0,0,Check-Out,Heidi Graham,shannonorr@example.org,927.781.4906x323,379291493940884,2025-07-11 +City Hotel,0,18,2017,November,46,15,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,129.77,0,2,Check-Out,Ryan Cobb PhD,david39@example.org,488.926.9283,213158392259320,2024-07-14 +City Hotel,0,14,2017,April,14,4,0,1,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,143.0,0,0,Check-Out,Donna Williams,marymoore@example.net,(293)985-2037x231,2222534810781456,2025-07-26 +Resort Hotel,0,4,2017,January,3,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,239.0,87.0,0,Transient,40.96,0,3,Check-Out,Jennifer Perez PhD,jgarcia@example.com,(657)247-0021,6559001590440368,2025-03-02 +City Hotel,0,84,2017,August,35,26,0,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,91.0,0,2,Check-Out,Ryan Davis,michaelmiller@example.net,434-570-2244x7836,3534757883078291,2024-09-13 +City Hotel,1,21,2017,October,41,13,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,84.55,0,1,No-Show,Austin Solis,lsteele@example.org,+1-528-350-0253,376454042853817,2024-09-30 +Resort Hotel,0,26,2017,December,51,19,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,86.0,179.0,0,Transient,105.47,0,1,Check-Out,Daniel Flynn,davidmurphy@example.org,001-633-316-1097x720,5314807567324411,2024-09-04 +City Hotel,0,283,2017,October,40,4,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,72.52,0,0,Check-Out,Elizabeth Brock,doughertykatherine@example.org,+1-460-750-8427x9956,3511794892983820,2025-07-14 +Resort Hotel,0,0,2017,March,14,30,0,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,129.7,0,3,Check-Out,Joshua Gonzalez,bbell@example.org,552.823.8659x688,3571310298815198,2026-01-28 +Resort Hotel,0,256,2017,September,36,6,0,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,64.86,0,1,Check-Out,Mario Chavez,samantha09@example.com,833-730-7262x822,4856917413943764,2024-12-21 +City Hotel,1,106,2017,December,50,10,0,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,86.32,0,0,Canceled,Catherine Smith,danielmichelle@example.org,919.559.2900x7717,675993630440,2024-06-07 +City Hotel,1,389,2017,October,41,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,62.09,0,0,Canceled,Shari Ray,margaret54@example.org,(920)700-3886,4289839638023745135,2025-03-17 +City Hotel,0,400,2017,May,19,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,88.58,0,0,Check-Out,Victor Harmon,xthomas@example.com,001-341-433-2130,30149747397114,2025-09-19 +City Hotel,0,3,2017,January,2,6,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.79,1,1,Check-Out,Timothy Patel,abigail18@example.com,437-734-5948,630436448488,2025-04-01 +City Hotel,0,15,2017,May,19,7,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,124.03,0,2,Check-Out,Patricia Hamilton,darrenhardy@example.com,881-434-4107,4363855405137589,2025-12-04 +City Hotel,1,12,2017,April,17,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.75,0,1,Canceled,Lori Boyd,brittanyreynolds@example.org,(956)673-3209x51292,6011695281191495,2024-08-29 +City Hotel,0,24,2017,March,10,5,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.56,1,1,Check-Out,Charles Hernandez,diana68@example.com,001-232-384-0959x0596,4306058698298,2025-01-03 +City Hotel,0,45,2017,May,21,23,0,3,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,179.87,0,1,Check-Out,Elizabeth Graham,garzarichard@example.com,001-737-909-2478x102,3561393204915155,2026-01-24 +Resort Hotel,1,144,2017,March,13,26,1,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,48.82,0,0,Canceled,Ronald Brown,gina69@example.org,884.223.8082x45727,4523272980704,2024-10-01 +City Hotel,1,46,2017,September,36,3,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,103.73,0,1,Check-Out,Jason Colon,smiles@example.org,627.434.2299x54604,639057525433,2026-03-27 +City Hotel,0,16,2017,October,43,22,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,114.49,0,2,Check-Out,Dawn Burke,calderonbrian@example.net,851-323-8809,6516744910698510,2024-06-18 +City Hotel,0,147,2017,March,13,29,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,1,No Deposit,9.0,179.0,0,Transient,104.14,0,1,Check-Out,Brian Lee,longbob@example.net,(222)321-5407,4266625493165786,2024-06-28 +City Hotel,1,0,2017,December,49,4,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,267.0,0,Transient,4.38,0,0,Canceled,Ronald Marshall,rodriguezdaniel@example.org,401-911-4228x6124,2304643412261303,2026-03-05 +Resort Hotel,0,11,2017,September,38,18,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,77.72,1,1,Check-Out,Jessica Lucas,bjohnson@example.com,+1-306-861-4936x074,4033935082791385,2025-08-06 +City Hotel,1,13,2017,March,10,8,0,3,2,1.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,A,1,Non Refund,11.0,179.0,0,Transient,118.01,0,0,Canceled,Christopher Taylor,qstephens@example.com,+1-619-741-7978x55671,213103428552645,2025-12-03 +Resort Hotel,1,0,2017,March,10,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,323.0,179.0,0,Transient-Party,40.39,0,0,No-Show,Robert Hopkins,thomasdixon@example.com,466-331-0549,180034001012864,2026-03-05 +City Hotel,0,53,2017,October,43,24,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,102.29,0,1,Check-Out,Samuel Stuart,davidmcdaniel@example.net,356-824-2697x49664,4363357642550,2024-08-04 +City Hotel,1,146,2017,June,25,20,0,1,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,B,0,No Deposit,7.0,179.0,0,Transient,205.89,0,0,Canceled,Mr. Scott Miller,andersonvictor@example.org,6316147883,3500854394632540,2026-02-14 +Resort Hotel,0,353,2017,March,11,15,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,61.19,0,0,Check-Out,Sharon Lester,dtate@example.net,(791)485-2851x719,587584553966,2025-09-03 +City Hotel,0,11,2017,February,8,23,2,3,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,109.28,0,1,Check-Out,Jack Sandoval,butlerjeremy@example.org,(733)284-4287x6161,501889575319,2024-07-11 +Resort Hotel,0,0,2017,August,35,26,3,4,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,252.0,179.0,0,Transient,207.38,0,0,Check-Out,Tony Ramsey,uanderson@example.net,794-215-1523,2298273405452855,2025-05-30 +Resort Hotel,0,44,2017,May,19,9,2,4,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,107.69,0,0,Check-Out,Brian Navarro,ellisonmaria@example.com,708.297.0473x912,180032979504094,2025-01-08 +Resort Hotel,0,266,2017,August,33,10,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,Kelly Calderon,zrodriguez@example.net,943.788.2170,4888457589871,2024-11-04 +Resort Hotel,0,379,2017,May,21,24,0,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,D,1,No Deposit,300.0,179.0,40,Transient-Party,72.67,0,0,Check-Out,Tara King,vhamilton@example.com,7512633635,2222548642146217,2024-07-19 +City Hotel,1,85,2017,December,52,23,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,149.88,0,2,Canceled,Cynthia Martinez,parkspaul@example.org,6476140056,6011965474775531,2024-10-14 +City Hotel,0,9,2017,June,23,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,240.74,0,3,Check-Out,Erin Silva,vadams@example.net,001-351-860-3772x28683,3500584290953456,2024-07-24 +Resort Hotel,0,209,2017,June,23,3,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,113.66,0,1,Check-Out,Paul Young,kristie44@example.net,6454191850,4248236502480688,2025-07-28 +City Hotel,0,3,2017,July,30,23,2,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,136.27,0,0,Check-Out,Charles Thompson,justinbrown@example.com,4076062494,371461999746527,2024-10-27 +City Hotel,0,2,2017,November,44,3,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,45.0,0,Transient-Party,63.15,0,0,Check-Out,Jessica King,wcarter@example.org,(719)287-3318,580680061729,2024-06-11 +Resort Hotel,0,153,2017,June,26,23,4,10,2,0.0,0,BB,POL,Direct,Direct,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,130.23,0,1,Check-Out,Katherine Brooks,vhansen@example.com,001-888-446-3645x597,503850791040,2024-06-23 +Resort Hotel,0,0,2017,July,30,23,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,255.0,179.0,0,Transient,140.68,1,1,Check-Out,Emily Coleman,daniel65@example.org,+1-635-819-7620,502003069643,2025-02-07 +Resort Hotel,0,157,2017,July,30,22,3,5,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,239.0,179.0,0,Transient,215.52,0,2,Check-Out,Tracey Suarez,asnow@example.com,426.719.0722x1382,4276459125000171,2025-03-25 +City Hotel,0,16,2017,December,49,3,0,4,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,87.78,0,1,Check-Out,Heidi Baldwin,stacycooper@example.org,890-360-6404x54949,213183318963789,2024-05-11 +City Hotel,0,11,2017,April,15,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,331.0,0,Transient,81.35,1,0,Check-Out,Alisha Rasmussen,mary17@example.net,894-747-0029,4464102266554091,2024-04-22 +City Hotel,0,210,2017,June,24,14,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,105.66,0,0,Canceled,Sarah Bates,reneedavis@example.org,(629)882-1623,3500235662975557,2025-09-14 +Resort Hotel,0,41,2017,July,27,3,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,56.44,0,1,Check-Out,Melissa Mccormick,gfarley@example.net,(849)456-8756,370145903140353,2024-04-28 +Resort Hotel,0,0,2017,November,48,27,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,E,0,No Deposit,47.0,208.0,0,Transient,50.91,0,0,Check-Out,Juan Parker,bholmes@example.com,420.857.2272,676188139924,2024-10-31 +Resort Hotel,1,198,2017,March,11,15,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,45.53,0,0,Canceled,Heidi Burnett,kennethmaynard@example.net,001-538-376-2670x1021,3532313133014397,2025-03-24 +City Hotel,0,108,2017,August,32,5,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,226.83,0,2,Check-Out,Sean Mathews,robert97@example.com,001-502-550-4022x8595,2330550268820405,2025-05-05 +City Hotel,1,201,2017,July,31,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,216.2,0,1,Canceled,Theodore Long,smithmichael@example.com,(965)933-6725x9581,3505181156094452,2026-01-01 +City Hotel,1,139,2017,March,13,29,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.82,0,1,Canceled,Dawn Davis,ryanhale@example.com,(777)927-1160,374343075751562,2025-09-28 +City Hotel,1,359,2017,July,28,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,95.3,0,0,Canceled,Cynthia Clark,lisawhite@example.com,+1-325-454-2857x3441,30405561118006,2024-11-11 +City Hotel,1,283,2017,June,24,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,133.22,0,0,Canceled,Sydney Welch,alyssameyer@example.com,4314422173,213148859846677,2024-05-21 +City Hotel,0,414,2017,May,22,26,0,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,137.26,0,0,Check-Out,Pamela Sullivan,bartlettmartin@example.com,650-538-2658x1609,6512866374452664,2026-03-01 +City Hotel,1,54,2017,February,5,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,110.79,0,2,Canceled,Sean Morrow,hoganphillip@example.com,343-414-8025,5278474433504074,2025-06-07 +City Hotel,0,39,2017,May,18,1,1,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,245.0,179.0,0,Transient,235.37,0,0,Check-Out,Kaitlin Gutierrez,markblackburn@example.com,575-951-2631x99938,5443632271714770,2025-05-22 +City Hotel,0,52,2017,May,18,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,83.26,0,0,Check-Out,Michelle Mcdowell,huntercorey@example.net,352-445-3571x670,060476933753,2026-01-18 +City Hotel,0,18,2017,December,52,26,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,136.24,0,0,Check-Out,Samantha Hale,alex84@example.net,+1-801-545-7016x47002,348399776119023,2024-07-07 +City Hotel,0,13,2017,November,47,24,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,68.0,0,Group,95.82,0,1,Check-Out,Heather Guzman,agreen@example.org,242-403-3243,4832915858373306,2025-01-08 +City Hotel,0,1,2017,January,4,20,1,0,2,0.0,0,SC,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,78.5,0,0,Check-Out,Nancy Chavez,crystal47@example.org,854.516.9720,3580558644461187,2026-02-17 +City Hotel,0,20,2017,March,12,17,2,1,1,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,C,2,No Deposit,13.0,222.0,0,Transient-Party,62.48,0,0,Check-Out,Anthony May,caseydaniel@example.org,(249)723-2051x76368,4260775809672170449,2026-01-11 +City Hotel,0,4,2017,August,35,27,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,3.1,0,2,Check-Out,Rachel Taylor,obrooks@example.org,(375)657-4837x40584,6518097780547335,2024-09-13 +City Hotel,1,13,2017,October,43,21,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,62,Transient-Party,92.79,0,0,No-Show,Mark Edwards,rachelwhite@example.org,(529)902-9258,676102981633,2024-10-01 +City Hotel,0,25,2017,December,51,20,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,102.59,0,0,Check-Out,Christopher Black,fisherdaniel@example.net,422-476-6909x98941,6512670029987672,2024-07-05 +Resort Hotel,1,157,2017,June,27,29,4,7,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,110.98,0,0,Canceled,Sandra Hines,ryanlynch@example.org,612-559-2106,4352583331799123,2024-03-27 +City Hotel,1,143,2017,April,17,26,1,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,233.82,0,0,Canceled,Melissa Sparks,zstrickland@example.net,271-878-6650,349277903851768,2025-10-25 +Resort Hotel,1,98,2017,June,23,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,63.32,0,0,Canceled,John Moss,jacksonjennifer@example.org,6789441871,2720836604236515,2024-10-14 +Resort Hotel,1,170,2017,March,10,8,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,94.27,0,0,Canceled,Michael Serrano,ernest58@example.net,615.695.9680x916,213173324815446,2026-03-27 +Resort Hotel,0,8,2017,February,6,4,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,225.0,0,Transient,45.97,0,0,Check-Out,Christina Perry,erin96@example.org,+1-967-397-0955,060412640322,2024-05-13 +City Hotel,0,152,2017,October,42,17,2,5,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,142.76,0,0,Check-Out,Shawn Duffy,tararios@example.com,504.968.6696x882,4553286066928162064,2024-11-18 +Resort Hotel,0,145,2017,March,11,15,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,128.92,0,0,Check-Out,Courtney Vaughan,sbrown@example.net,892-373-1180x91717,3541994544421393,2025-07-31 +City Hotel,0,2,2017,October,42,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,15.0,45.0,0,Transient,52.29,0,0,Check-Out,Maria Sims,longtara@example.net,515.311.6569x4924,563821097208,2024-06-19 +City Hotel,0,99,2017,March,10,6,2,1,2,2.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,95.85,0,1,Check-Out,Valerie Gonzalez,stewartmarcus@example.org,001-466-523-7175x6816,3569143677985850,2025-11-09 +City Hotel,1,32,2017,April,16,18,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,169.07,0,0,Canceled,Caroline Morales,latoyapatterson@example.net,592.449.0997x502,6574892807777217,2024-10-19 +City Hotel,1,155,2017,August,34,25,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,138.68,0,0,Canceled,David Davis,bauerlance@example.net,+1-747-734-9335,38941899724737,2025-10-29 +Resort Hotel,0,93,2017,May,22,27,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,245.0,179.0,0,Transient,1.71,0,1,Check-Out,Travis Wilson,rhonda10@example.com,213-855-0512,4860801407587791,2025-11-19 +Resort Hotel,0,35,2017,July,30,23,3,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,127.0,0,0,Check-Out,Jessica Mora,josephtaylor@example.net,+1-661-308-5111x33929,3554546713353775,2025-11-23 +City Hotel,1,46,2017,October,42,17,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,85.44,0,2,Canceled,Michael Wilson,phillip89@example.net,665.372.0502x00852,180085300891531,2025-03-08 +City Hotel,0,360,2017,May,20,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient-Party,89.46,0,1,Check-Out,Cheryl Atkins,jamesconner@example.com,992-204-0675x9061,371234310876731,2026-02-27 +City Hotel,1,59,2017,November,44,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,175.0,179.0,0,Transient,110.29,0,0,Canceled,Donna Snyder,bdavis@example.net,401-688-1594x2150,3579124829676124,2025-02-23 +City Hotel,0,16,2017,August,32,5,2,5,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,D,B,1,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,Scott Greene,james49@example.net,+1-575-865-4521,4312514309780166,2025-08-15 +City Hotel,0,32,2017,August,32,8,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,77.0,179.0,0,Transient,109.68,0,0,Check-Out,Diane Byrd MD,andrew47@example.com,001-272-575-8032,4657416993371364,2025-02-28 +City Hotel,1,69,2017,August,32,5,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,142.4,0,0,Canceled,Charles Roberts,taylormcmillan@example.org,001-269-405-9116,2246184183152653,2024-11-24 +Resort Hotel,0,20,2017,December,50,10,1,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,239.0,179.0,0,Transient,129.55,1,2,Check-Out,Luke Solomon,oliverdominic@example.com,800-808-0138x57400,4779276033394344,2024-09-18 +City Hotel,0,43,2017,April,16,19,1,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,111.14,0,1,Check-Out,Michael Ellis,phillipsvickie@example.net,995.942.1601,4588531664074974,2025-04-28 +City Hotel,1,94,2017,July,27,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,42,Transient,99.01,0,0,Canceled,Casey Morris,laura40@example.net,001-873-775-2902x63730,2240929779940184,2025-03-03 +City Hotel,0,8,2017,December,49,2,0,4,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,80.04,0,2,Check-Out,Melissa Reeves,gguzman@example.com,(562)917-0477x5817,4835826094562,2026-02-19 +Resort Hotel,0,0,2017,January,4,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,10.0,73.0,0,Transient,46.13,0,0,Check-Out,Nancy Scott,ryanhicks@example.net,474.235.4971,501846812490,2024-06-03 +City Hotel,0,53,2017,November,45,11,2,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,85.21,0,2,Check-Out,Anthony Cook,shannon52@example.com,916-884-4147,4863620239712,2025-01-27 +Resort Hotel,0,45,2017,May,22,27,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,239.0,179.0,0,Transient,146.37,0,1,Check-Out,Terry Barajas,evan16@example.com,8579129806,4977532300080655,2025-01-05 +City Hotel,0,108,2017,May,21,23,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,110.16,0,0,Check-Out,Tracy George,deborahschwartz@example.org,001-434-869-0628x975,676242522594,2025-05-28 +City Hotel,1,289,2017,September,36,4,2,6,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,111.0,0,0,Canceled,Amber King,mossbrent@example.org,377-355-0587x123,6518486947081793,2025-03-11 +City Hotel,1,168,2017,July,29,19,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,105.47,0,0,No-Show,Elizabeth Foster,johnathan85@example.org,001-552-947-1562x6439,584776517552,2026-03-03 +City Hotel,0,0,2017,January,2,10,1,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.76,1,1,Check-Out,Walter Hansen,dennisrose@example.net,801-457-1126x6437,3534513205182828,2025-01-06 +Resort Hotel,0,32,2017,April,14,5,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,129.99,1,1,Check-Out,Debbie Gordon,danieldrake@example.com,001-452-721-1392x7316,213196712928125,2024-11-04 +Resort Hotel,0,65,2017,September,37,9,2,5,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,61.91,0,0,Check-Out,Sherry Anderson,kristin33@example.org,470-395-8820,370012433739700,2024-08-16 +City Hotel,0,397,2017,July,30,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.57,0,1,Check-Out,Joseph Thomas,christensenjulie@example.net,310-831-8637x55924,373186762810998,2024-04-24 +City Hotel,0,5,2017,August,33,10,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,3.45,0,0,Check-Out,Andrew Anderson,dylan69@example.org,+1-611-557-2489x0104,36281453343612,2025-10-10 +City Hotel,1,17,2017,June,24,8,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.21,0,0,Canceled,Sandy Adkins,owensanthony@example.com,+1-237-888-1223x492,4600900783963,2026-01-17 +City Hotel,1,202,2017,August,33,13,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.3,0,1,Canceled,Diane Mcdowell,vaughnmark@example.org,+1-234-365-4916,3502264283555703,2025-06-01 +City Hotel,0,32,2017,November,45,9,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,121.86,0,0,Check-Out,Pam Baker,taylorjennings@example.net,853-354-6589,2258792151049209,2024-07-03 +City Hotel,1,168,2017,July,30,23,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,125.91,0,0,Canceled,Steven Stewart,nicholasmorrison@example.net,(644)637-3201,4085534776969527,2025-12-16 +City Hotel,0,142,2017,June,26,22,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,95.49,0,0,Check-Out,Pamela Hernandez DVM,enavarro@example.com,834-844-6169x234,3598387839343426,2025-06-05 +City Hotel,0,1,2017,January,4,24,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,104.7,0,2,Check-Out,Rebecca Brown,rickyjordan@example.net,470.958.9268x4886,30505307964652,2024-05-05 +Resort Hotel,0,20,2017,October,42,21,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,244.0,0,Transient-Party,47.59,0,1,Check-Out,David Johnson,kmarquez@example.org,001-523-381-5375x8871,4760054769344309,2024-05-16 +City Hotel,1,92,2017,June,26,30,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,131.12,0,0,Canceled,Michael Graham,larry52@example.org,+1-522-722-3296,4136957120262,2024-10-01 +Resort Hotel,0,0,2017,October,43,26,2,4,2,1.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,E,1,No Deposit,33.0,179.0,0,Transient,82.69,0,0,Check-Out,Tammy Williams MD,pattongabriel@example.com,752.965.7146,376985233094356,2026-03-17 +Resort Hotel,0,3,2017,August,36,31,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,217.55,1,1,Check-Out,Karina Vasquez,lopezluis@example.com,3372674124,348534209838365,2024-08-27 +Resort Hotel,0,0,2017,February,7,15,1,0,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,81.0,0,Transient,60.48,0,2,Check-Out,Sharon Martinez,phillipstroy@example.org,816.540.0910,4745118162284,2025-10-01 +City Hotel,1,414,2017,October,43,27,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.23,0,0,Canceled,Sean White,lisajohnson@example.org,829-543-9063,375868477406208,2024-04-27 +Resort Hotel,0,2,2017,April,14,5,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,227.95,0,2,Check-Out,Jordan Nelson,rebecca60@example.org,5668406665,213195373601385,2024-10-01 +City Hotel,0,62,2017,June,23,4,0,1,2,1.0,0,BB,PRT,Online TA,Direct,0,0,1,A,B,0,No Deposit,10.0,179.0,0,Transient,84.7,0,3,Check-Out,Laurie Silva,tperkins@example.com,001-739-570-0193,4959438844393328436,2025-10-06 +City Hotel,1,0,2017,May,19,6,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,102.69,0,0,Canceled,Kelly Duncan,walterssamantha@example.com,661.862.2406x936,180041435343625,2024-05-11 +City Hotel,1,196,2017,July,29,18,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,111.86,0,0,Canceled,Billy Tate,katherine44@example.net,(278)583-9654x084,4234265110571220,2024-04-12 +City Hotel,0,192,2017,September,36,7,2,4,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,128.74,0,2,Check-Out,Stacy Johnson,lawrencemorgan@example.net,001-316-201-3086x1821,4652971330890007347,2025-01-06 +City Hotel,0,10,2017,November,45,11,0,2,1,0.0,0,BB,SWE,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,213.0,62,Transient-Party,108.69,0,0,Check-Out,Melanie Long,johnpatel@example.net,001-851-739-7668,30503280223915,2024-09-27 +City Hotel,1,414,2017,June,24,13,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,141.79,0,0,Canceled,Tiffany Hood,tbradley@example.com,(671)461-3176,213129818802852,2025-05-20 +Resort Hotel,1,0,2017,July,28,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,L,B,0,No Deposit,12.0,179.0,0,Transient,45.03,0,2,Canceled,Brad Rivas,smithgregory@example.org,9445038059,3555662003843349,2024-06-10 +Resort Hotel,1,248,2017,October,42,15,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.44,0,0,Canceled,Jordan Moses,yhenderson@example.com,415-781-5856,30254766783747,2026-01-20 +Resort Hotel,0,1,2017,April,17,26,2,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,250.0,179.0,0,Transient,178.27,1,0,Check-Out,Abigail Booker,caseyacosta@example.net,+1-958-450-7098,3514629716274542,2024-04-26 +City Hotel,1,20,2017,January,2,10,0,1,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,28.0,179.0,0,Transient,75.56,0,0,Canceled,Tiffany Nguyen,hailey95@example.net,+1-548-989-6035,3507399300398979,2024-07-29 +City Hotel,1,101,2017,December,52,29,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,102.91,0,0,Canceled,Morgan Bernard,qanderson@example.net,+1-762-349-0100x08440,4576842756909314,2024-10-09 +Resort Hotel,0,1,2017,August,35,31,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,213.85,1,1,Check-Out,Christine Williams,nbaker@example.org,421.686.0648x075,6011539461871197,2025-11-10 +City Hotel,1,203,2017,August,34,19,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,10.0,179.0,0,Transient,143.32,0,0,Canceled,Erica Brown,shelly12@example.net,001-289-600-1346x92404,676325564208,2026-01-12 +City Hotel,0,55,2017,July,29,18,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,191.96,0,0,Check-Out,Trevor James,keithmccall@example.net,830-645-4742x4328,180026297639848,2024-12-29 +City Hotel,1,414,2017,October,40,3,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,101.24,0,0,Canceled,Christopher Hanna,djohnson@example.com,+1-852-608-2192x3232,4847473388741793,2026-03-12 +Resort Hotel,0,142,2017,July,30,25,0,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,104.24,0,0,Check-Out,Ann Phelps,philipaustin@example.com,(673)742-2541,6510866524146762,2024-12-18 +Resort Hotel,0,6,2017,March,13,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,17.0,220.0,0,Transient-Party,84.59,0,0,Check-Out,Richard Mitchell,tim39@example.org,909-827-5563,213125941554972,2025-03-23 +Resort Hotel,0,78,2017,December,51,22,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,40.13,1,1,Check-Out,Martha Martinez,gday@example.org,402-360-8869x203,2698695205635964,2024-08-01 +City Hotel,1,414,2017,July,28,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.93,0,0,Canceled,Jeffrey Drake MD,noah93@example.org,001-565-559-5372,2235415684149100,2024-10-18 +City Hotel,0,1,2017,March,10,10,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,K,0,No Deposit,15.0,46.0,0,Transient,0.5099000000000001,0,0,Check-Out,Bonnie Wade,toddsanders@example.org,001-227-435-0804x652,3589792780413675,2024-05-12 +City Hotel,0,126,2017,March,14,30,1,4,1,1.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,63.4,1,0,Check-Out,Kayla Burns,nchung@example.net,(345)471-5129x837,180096683413819,2025-03-17 +City Hotel,0,91,2017,March,12,21,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,73.0,179.0,0,Transient-Party,49.58,0,0,Check-Out,Karen Hart,alexandra17@example.org,207-339-0620,4366496645343,2024-09-18 +City Hotel,0,323,2017,August,32,11,1,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,91.96,0,1,Check-Out,Peter Shepherd,matthewthompson@example.com,5469471599,4704456675278431,2025-08-01 +City Hotel,1,89,2017,December,52,25,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,110.88,0,0,Canceled,Jessica Simmons,htorres@example.com,335.247.1981x321,4440549154925552,2025-09-22 +City Hotel,0,165,2017,March,12,21,2,5,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,105.81,0,0,Check-Out,Glenn Ford,haydenhamilton@example.org,(241)709-0443x605,630431035041,2025-11-28 +City Hotel,1,14,2017,February,5,2,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.88,0,0,Canceled,Michael Moore,mfoley@example.net,001-425-582-8959x57980,630457917734,2025-05-31 +City Hotel,0,97,2017,July,31,27,0,3,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,Mark Warren IV,garrettadam@example.com,+1-419-463-4050x831,2695560232872647,2025-07-28 +City Hotel,0,10,2017,November,46,11,1,1,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,219.0,0,Transient-Party,85.59,1,0,Check-Out,Terry Woods,joseph06@example.org,230.946.5722,180095458204684,2025-08-28 +City Hotel,0,63,2017,August,35,26,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,171.92,0,1,Check-Out,Carl Leach,chelseygarrett@example.com,404-422-5590x172,180041754125207,2025-05-14 +City Hotel,0,17,2017,April,16,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,106.85,0,0,Check-Out,Kelly Phillips,browntodd@example.net,+1-408-472-9548x663,639090556320,2025-11-19 +City Hotel,0,102,2017,November,47,22,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,116.75,0,0,Check-Out,Billy Williams,barbara35@example.org,001-679-215-9812,4858514928651,2024-10-30 +City Hotel,1,163,2017,July,31,27,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,140.42,0,0,Canceled,Jeffery Davis,fgarcia@example.com,658-521-3307,4750232412076674,2026-02-08 +City Hotel,0,0,2017,June,26,28,0,2,2,0.0,0,BB,DEU,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,104.32,0,0,Check-Out,Laura King,shelbykemp@example.org,484.799.7296x961,4338700165126301,2025-04-23 +Resort Hotel,1,92,2017,November,48,27,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.04,0,0,Canceled,Brad Gordon,bryantcharles@example.org,655.352.3885,3536984561117021,2024-10-16 +Resort Hotel,1,40,2017,January,2,2,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Matthew White,anita65@example.com,+1-773-937-5020,377895805777701,2025-07-02 +Resort Hotel,0,63,2017,July,27,6,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,240.0,179.0,0,Transient,77.62,0,0,Check-Out,James Miller,jmccarthy@example.org,885.606.9522,3586611897460879,2024-12-12 +City Hotel,1,200,2017,July,30,26,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,6.0,179.0,0,Transient,248.54,0,0,Canceled,Elizabeth Matthews,sanchezbruce@example.org,561.655.3684,4518404257377,2024-07-25 +Resort Hotel,0,98,2017,June,24,12,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,228.82,0,0,Check-Out,Michael Hanson,aaron73@example.net,001-245-862-5009,4452390716625397,2024-06-13 +City Hotel,0,2,2017,August,34,23,2,0,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,19.69,0,2,Check-Out,Vincent Savage,angieflores@example.net,7585088915,4156158654730816816,2026-01-29 +City Hotel,1,50,2017,June,23,5,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,141.28,0,1,Canceled,Cody Burgess,katherine43@example.org,403-616-9462x90208,2387413164094355,2024-08-05 +Resort Hotel,0,42,2017,December,49,5,2,3,2,0.0,0,BB,ITA,Groups,Direct,0,0,0,D,A,0,No Deposit,248.0,179.0,0,Transient-Party,49.44,0,0,Check-Out,Shelby Rodriguez,jordanrussell@example.com,903-316-3782,30369314120943,2025-12-18 +City Hotel,1,2,2017,July,30,20,1,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,181.27,0,1,Canceled,Abigail Wilson,gravesmichelle@example.com,651-911-8669,676300072433,2025-06-12 +City Hotel,0,200,2017,May,22,25,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,79.4,0,0,Check-Out,John Holt,joycejohn@example.net,+1-570-923-8791x34112,4184056306427180,2024-12-20 +Resort Hotel,0,300,2017,September,37,14,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,267.0,179.0,0,Contract,42.81,0,1,Check-Out,Tracy Guzman,parrishchad@example.net,001-305-905-8752x788,342074245552486,2025-08-30 +City Hotel,1,61,2017,June,26,24,2,4,2,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,109.99,0,0,Canceled,Mr. William Ward,allison36@example.org,(208)749-2637x1478,3590130022715606,2025-01-21 +Resort Hotel,1,274,2017,March,12,21,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,22.0,179.0,0,Transient,133.79,0,1,No-Show,Melissa Foster,owolfe@example.com,6242695651,180098144109721,2025-03-16 +City Hotel,0,49,2017,January,4,27,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,161.46,0,3,Check-Out,Calvin Smith,watsonlindsay@example.org,(218)458-6705,3594779048056225,2025-02-12 +Resort Hotel,0,2,2017,December,51,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,76.0,0,Transient,48.55,0,0,Check-Out,Alan Waller,benjaminbailey@example.org,+1-909-596-3701x124,4249912404851700,2025-08-18 +City Hotel,0,12,2017,February,7,14,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,73.66,0,2,Check-Out,Christine Wong,annetteharris@example.com,608.338.8498x77454,4649429299779,2024-08-08 +Resort Hotel,0,52,2017,June,23,4,4,10,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,140.19,0,3,Check-Out,Jessica Garrett,romerojeremy@example.org,8774404031,2221179549433408,2025-08-11 +Resort Hotel,0,0,2017,October,40,5,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Contract,42.44,0,2,Check-Out,Cheryl Turner,atucker@example.org,215.997.4499x73262,4130140813594,2024-12-20 +Resort Hotel,0,149,2017,January,2,6,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,60.96,0,0,Check-Out,John Johnson,vcantrell@example.net,689-647-6394,3593605415648628,2025-05-18 +City Hotel,1,40,2017,December,49,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,311.0,179.0,0,Transient-Party,64.17,0,0,Canceled,Christian Park,hopkinskim@example.com,+1-853-953-6043x17446,180057572452904,2026-02-27 +City Hotel,0,62,2017,January,2,9,1,2,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,169.96,0,1,Check-Out,Kaitlyn Heath,mitchelllisa@example.net,760.293.3244x507,370465983546604,2026-02-15 +Resort Hotel,0,2,2017,January,2,5,0,4,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,57.52,0,1,Check-Out,Christina Hudson,jeffreycervantes@example.org,(339)757-6425x49964,4710079656470769,2025-04-09 +City Hotel,0,95,2017,May,18,1,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,84.57,0,1,Check-Out,Amber Smith,edwardsbrandon@example.org,663-831-0987x4948,501896349245,2026-03-21 +City Hotel,0,2,2017,February,9,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,62.79,0,1,Check-Out,Michelle Petty,kevinlamb@example.com,(706)836-3085x60544,2468141501444247,2025-04-29 +City Hotel,1,12,2017,January,3,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,71.72,0,1,Canceled,Nancy Larson,samantha87@example.net,394-388-7598,6578701854757772,2024-05-13 +City Hotel,0,8,2017,May,21,22,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,81.32,0,2,Check-Out,Donna Freeman,stephaniemiller@example.com,891-269-7232x11548,3512008974875419,2024-12-27 +City Hotel,1,88,2017,September,39,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,41,Transient,83.08,0,0,Canceled,Mr. Logan Gregory,jillian37@example.org,575-489-1093x0503,4163565444942,2024-11-05 +City Hotel,0,0,2017,July,27,5,0,1,1,0.0,0,SC,,Complementary,Direct,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,1.69,0,2,Check-Out,Katherine Klein,jacquelinepage@example.net,404.794.3097,3596864670696304,2026-03-24 +City Hotel,0,111,2017,October,40,5,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,132.95,0,2,Check-Out,Jennifer Stewart,mbarron@example.com,001-402-991-5559x13905,4931037353639239369,2025-08-24 +City Hotel,0,18,2017,August,35,27,0,2,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,219.21,0,2,Check-Out,Steven Butler,hansenwilliam@example.com,316-536-8466x0739,213146687329775,2025-07-10 +Resort Hotel,0,56,2017,July,29,16,4,6,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,139.58,0,1,Check-Out,Johnny Mcmillan,ellisvalerie@example.com,+1-310-786-6286x817,676332306130,2024-10-08 +City Hotel,0,0,2017,April,15,9,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,61.8,0,0,Check-Out,Michael Smith,christinashannon@example.com,4543485126,379791342299192,2026-02-18 +City Hotel,0,0,2017,March,13,26,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.19,0,1,Check-Out,Corey Cooper,ashleyrojas@example.net,689-437-8099x313,2720840689601908,2026-02-10 +City Hotel,1,152,2017,April,18,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,131.12,0,0,Canceled,Daniel Stout,lisa20@example.org,(393)982-6808,4648001296302,2025-09-15 +City Hotel,0,11,2017,February,8,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.85,0,1,Check-Out,Lance Kirby,harrisleslie@example.org,837-214-8171x595,4072755817913654,2026-02-02 +Resort Hotel,0,8,2017,April,16,17,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,220.23,0,1,Check-Out,Bonnie Carter,turnersuzanne@example.org,+1-796-404-5691x669,4726576976748354,2026-03-01 +City Hotel,0,0,2017,September,37,8,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,77.0,179.0,0,Transient,3.58,0,0,Check-Out,Toni Whitaker,guerrajordan@example.com,001-786-732-2960x21724,30082209582644,2024-04-24 +City Hotel,1,362,2017,April,15,7,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient-Party,95.73,0,0,Canceled,Morgan Flynn,sanchezamanda@example.net,001-959-270-5560x44731,4801876528232917,2024-12-17 +City Hotel,0,5,2017,October,42,17,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,23.0,179.0,0,Transient,101.49,0,1,Check-Out,Sarah Howell,johnlewis@example.com,220.954.4155x518,3532787869964521,2026-02-03 +Resort Hotel,0,19,2017,August,34,20,3,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,109.39,0,0,Check-Out,Paul Estrada,ginakeller@example.com,9124847771,3542512727238639,2024-11-20 +City Hotel,0,52,2017,August,34,18,0,2,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Curtis Obrien,jasonmorris@example.net,001-474-711-3513x908,4960760124412079054,2025-02-28 +City Hotel,0,11,2017,August,33,13,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,D,1,No Deposit,8.0,179.0,0,Transient,124.29,0,0,Check-Out,Jason Chaney,julielawson@example.com,2074110043,2569693013903381,2024-04-16 +City Hotel,0,105,2017,August,33,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,219.99,0,1,Check-Out,Daniel Williams,williamsjoshua@example.com,730-238-4221,370549039809791,2024-04-12 +Resort Hotel,0,1,2017,October,43,27,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,159.36,0,3,Check-Out,Stanley Kelly,jlopez@example.com,(675)260-5244,4825902140290616811,2025-08-04 +City Hotel,0,3,2017,March,12,22,2,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,128.86,0,1,Check-Out,Ronald Kline,sawyerjohn@example.org,(215)639-9221,3561301715337140,2025-11-16 +City Hotel,0,61,2017,March,10,7,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,116.88,0,1,Check-Out,Arthur Jordan,jenkinsmary@example.net,246.520.2598,4507362631996,2025-04-05 +City Hotel,0,3,2017,January,3,17,1,3,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,189.18,0,1,Check-Out,Barbara Walker,anthony97@example.net,4097963673,4584498134170176,2026-02-21 +Resort Hotel,1,165,2017,August,33,12,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,14.0,179.0,0,Transient,204.02,0,1,Canceled,Gerald Kelly,handerson@example.net,+1-247-366-2536x212,213130538251420,2024-05-11 +City Hotel,1,99,2017,July,29,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,76.0,179.0,0,Contract,126.72,0,0,Canceled,Shawn Adams,kimbenjamin@example.org,(408)964-9336,30481239429752,2025-09-16 +Resort Hotel,1,103,2017,August,34,23,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,239.0,179.0,0,Transient,208.89,0,1,Canceled,Michael Robertson,rodriguezdeborah@example.org,(208)650-5657,180083640722102,2025-02-01 +Resort Hotel,1,187,2017,August,33,14,2,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,235.0,179.0,0,Transient,252.0,0,1,Canceled,Michelle House,franklinbarbara@example.org,664-837-6066x6972,4712221762221490,2025-01-24 +City Hotel,0,31,2017,March,10,5,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,89.16,0,1,Check-Out,Jim Skinner,aaronthomas@example.com,798.395.2296,6502558777722411,2025-01-07 +Resort Hotel,0,0,2017,March,13,28,1,1,2,0.0,0,HB,ESP,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,46.04,1,2,Check-Out,Brian Bishop,bryce50@example.org,001-874-214-4078x20901,4947102398300143891,2024-08-13 +Resort Hotel,0,0,2017,August,32,4,2,0,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,F,C,0,No Deposit,12.0,179.0,0,Transient,0.5099000000000001,1,2,Check-Out,Theresa Colon,udeleon@example.com,001-923-428-9461x53539,30458525396564,2025-03-27 +Resort Hotel,0,3,2017,February,7,13,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,C,2,No Deposit,18.0,85.0,0,Transient,43.08,0,0,Check-Out,Brian Soto,morganterri@example.net,590.837.2688,4248230609171708739,2025-06-01 +Resort Hotel,0,323,2017,October,41,10,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,115.4,0,0,Check-Out,Susan Moore,sherry56@example.net,808-855-1714,3593074034125023,2025-10-18 +City Hotel,1,104,2017,July,30,23,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,109.47,0,1,No-Show,Jeremy Hunter,jonesjeremy@example.org,3373400644,4427213524823297,2024-12-02 +City Hotel,0,20,2017,June,27,29,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.42,0,3,Check-Out,Annette Holland,morganmartha@example.net,578.230.7188x05123,344823161909239,2025-10-06 +City Hotel,0,44,2017,August,32,5,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,C,E,0,No Deposit,13.0,179.0,0,Transient,108.41,1,0,Check-Out,Chad Allison,megangreen@example.org,754-634-8394x753,3567495641077368,2025-04-27 +City Hotel,0,401,2017,September,38,20,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,113.76,0,1,Check-Out,Jason Mack,patriciaholmes@example.org,001-488-795-4063x44128,4013901143142731,2025-01-12 +City Hotel,1,36,2017,December,49,8,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,73.0,0,Transient,0.5099000000000001,0,0,Canceled,Robert Peterson,jaredpadilla@example.com,(562)646-1241x77762,3527590776722116,2025-06-14 +City Hotel,0,2,2017,October,40,5,1,1,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.84,0,0,Check-Out,Angela Watson,joshuadawson@example.org,(489)765-1926x876,30110382700491,2024-10-21 +Resort Hotel,0,9,2017,November,46,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,43.4,0,1,Check-Out,Heather Ortega,rjackson@example.com,207-532-5002x1736,3543056232018770,2024-05-11 +City Hotel,0,0,2017,February,6,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,13.0,45.0,0,Transient-Party,60.53,0,0,Check-Out,Paul Fisher,woodardkathryn@example.org,431.942.5145x269,5381985321667396,2024-06-29 +City Hotel,1,41,2017,November,44,3,1,4,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,1,No Deposit,12.0,179.0,0,Transient-Party,81.01,0,0,Canceled,Robert Gutierrez,fisherpatricia@example.org,001-691-960-2663x47908,3563625953009997,2025-12-30 +Resort Hotel,0,2,2017,January,3,15,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,249.0,179.0,0,Transient,53.3,0,1,Check-Out,Jimmy Phelps,ccraig@example.net,702.448.6012,4134925943633239,2024-11-19 +Resort Hotel,0,26,2017,August,32,9,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,128.33,0,1,Check-Out,Heidi Johnson,adamalvarez@example.org,3455670263,180069425792006,2026-01-01 +Resort Hotel,0,37,2017,October,40,4,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,127.66,0,0,Check-Out,Adam Drake,natalie36@example.com,(944)713-5393x15896,3504120459163409,2025-02-26 +City Hotel,0,47,2017,June,23,4,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,G,K,0,No Deposit,9.0,179.0,0,Transient,2.28,0,0,Check-Out,Angela Edwards,smithhaley@example.net,282-241-2205x714,4104788237985129,2024-07-17 +City Hotel,0,154,2017,August,35,24,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,198.66,0,2,Check-Out,Mrs. Amy Malone,madeline40@example.com,001-997-231-9489x6738,213172213227937,2024-06-02 +City Hotel,1,403,2017,October,42,21,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.2,0,0,Canceled,Margaret Orr,rachel67@example.com,429-834-3906,347230681493289,2025-08-02 +City Hotel,1,14,2017,August,33,14,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,224.08,0,0,Canceled,Mark Reeves,sophia72@example.com,+1-248-590-5130,3563260490986588,2026-01-14 +City Hotel,1,15,2017,August,35,30,1,2,1,1.0,0,SC,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.24,0,0,No-Show,Kelly Phillips,uherman@example.org,001-898-971-2099,503897215771,2025-01-23 +City Hotel,0,7,2017,March,14,30,2,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,114.01,0,1,Check-Out,Michael Spencer,belindaandersen@example.org,(998)947-4683x5927,6011048539036189,2025-03-24 +Resort Hotel,0,9,2017,May,18,5,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,52.94,0,0,Check-Out,Patrick Blankenship,vnguyen@example.com,+1-931-777-8597x6769,4123462865510797429,2024-03-30 +City Hotel,0,0,2017,April,14,4,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,140.14,0,1,Check-Out,Douglas Rose,jonathan49@example.org,3074032843,3501583730281147,2024-08-16 +City Hotel,0,45,2017,April,18,27,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.36,0,1,Check-Out,Melody Griffin,johnsonjill@example.com,2836653621,213130842038901,2026-03-17 +City Hotel,0,1,2017,June,25,16,0,2,2,0.0,0,SC,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.66,0,1,Check-Out,Joshua Kramer,robinsonann@example.com,768.202.9080,4183584838739609,2024-06-18 +Resort Hotel,0,9,2017,July,30,27,1,0,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,185.27,1,0,Check-Out,Melissa Barron,youngbreanna@example.org,001-291-388-7608x9743,36044337374041,2025-12-07 +Resort Hotel,0,46,2017,September,38,21,0,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,181.59,1,3,Check-Out,Jennifer Gonzalez,kimberlyharris@example.com,001-789-701-4416x635,38142355776135,2025-04-07 +Resort Hotel,0,140,2017,July,30,23,4,3,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,2,No Deposit,250.0,179.0,0,Transient,98.07,0,0,Check-Out,Andrew Cook,mike63@example.org,757.306.3199x24238,4985103168728,2025-06-10 +City Hotel,0,58,2017,April,17,22,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,102.79,0,3,Check-Out,Natalie Martinez,grayashley@example.net,237-834-6838x10293,30067932887816,2025-06-09 +City Hotel,0,4,2017,August,32,5,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,219.35,0,3,Check-Out,Diane Davis DDS,frederickjustin@example.net,494.739.2849x170,3523758191770796,2025-10-01 +Resort Hotel,0,10,2017,December,51,19,0,1,2,0.0,0,Undefined,PRT,Groups,GDS,0,0,0,E,I,1,No Deposit,244.0,179.0,0,Transient-Party,4.64,0,0,Check-Out,Nicole Moore,andrew66@example.com,212-820-5531x773,30050658124887,2025-02-13 +Resort Hotel,1,42,2017,May,22,30,0,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,63.98,0,1,Canceled,Robert Vargas,ricky51@example.com,529-856-3908,3519194610054156,2025-12-10 +Resort Hotel,0,4,2017,March,13,31,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Raymond Barber,qdavis@example.net,+1-791-794-3516x120,4091956863036765,2025-11-21 +City Hotel,0,161,2017,June,24,12,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.83,0,1,Check-Out,Mrs. Amy Watson,heatherhaas@example.org,412-421-6869x3624,3555357806636079,2025-05-08 +Resort Hotel,0,13,2017,March,12,19,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,140.0,179.0,0,Transient,43.74,1,2,Check-Out,Heather Williams,aliciaharris@example.com,(466)782-2192x36106,4384432069718,2024-04-12 +City Hotel,0,106,2017,February,9,28,2,5,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,35.0,179.0,75,Transient-Party,86.74,0,0,No-Show,Belinda Evans,rhondaadams@example.com,639.637.9588x134,6506321081796910,2025-06-11 +City Hotel,0,24,2017,August,32,12,2,1,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,220.79,1,0,Check-Out,Jody Bird,mark07@example.com,775-713-7139x372,6011760090709968,2025-10-29 +Resort Hotel,0,200,2017,August,32,8,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,60.43,0,2,Check-Out,Virginia Cunningham,lisagregory@example.org,277.831.8022,3578081225960604,2025-12-16 +City Hotel,0,2,2017,January,2,10,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,59.42,0,1,Check-Out,Lori Ferguson,gonzaleztony@example.net,(865)300-4593x42079,180084678731932,2025-02-14 +City Hotel,1,342,2017,September,36,6,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,314.0,179.0,0,Transient,75.04,0,0,Canceled,Hayley Mitchell,joseph00@example.org,549.358.4786,503811568560,2024-08-15 +City Hotel,1,15,2017,June,26,22,0,2,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,146.31,0,0,Canceled,Michelle Chambers,hensonmark@example.net,835-543-7655x85478,30392459012436,2026-03-04 +City Hotel,0,33,2017,May,20,13,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,179.32,0,0,Check-Out,Kelly Wright,dwells@example.org,(627)455-8631,2720329405118082,2024-10-15 +City Hotel,0,412,2017,September,38,23,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,B,1,No Deposit,1.0,179.0,0,Transient-Party,63.55,0,1,Check-Out,Kevin Carson,mguerra@example.com,446.948.1141,4840582894541503857,2024-10-28 +City Hotel,0,0,2017,December,49,3,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,18.0,331.0,0,Transient,1.89,0,0,Canceled,Brent Dawson,kevin21@example.com,001-335-443-1006x562,213131318717184,2026-03-15 +Resort Hotel,1,10,2017,February,9,26,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,1,A,A,0,No Deposit,135.0,179.0,0,Transient,43.27,0,2,Canceled,Angela Brown,hgreer@example.net,+1-503-550-9661x66870,060400116178,2025-08-08 +City Hotel,1,104,2017,July,27,8,0,1,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.66,0,0,Canceled,Karen Griffin,heatherreynolds@example.com,+1-394-977-9313,3530346227414190,2026-01-04 +City Hotel,0,27,2017,October,44,29,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.5,1,0,Check-Out,Joseph Chapman,lchoi@example.org,514.337.0629x5333,3546311996837288,2026-01-11 +City Hotel,0,50,2017,October,41,10,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,83.9,0,0,Canceled,Jennifer Baker,vincent59@example.com,667.367.9028x23697,213145279167171,2025-01-25 +City Hotel,1,145,2017,July,30,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,105.53,0,0,Canceled,Mr. Jeremiah Galvan MD,melissawells@example.org,2197506606,675974591637,2026-01-17 +Resort Hotel,1,154,2017,December,2,31,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,102.14,0,0,Canceled,Samantha Thomas,jennystewart@example.net,001-652-321-2414x6684,6011519656458224,2025-02-04 +Resort Hotel,0,103,2017,May,21,22,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,64.07,0,0,Check-Out,Michael Anderson,sjohnson@example.com,(793)593-0231,4639639347453902913,2024-11-24 +Resort Hotel,1,38,2017,January,3,14,1,1,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,52.39,0,0,Canceled,Sharon Wilson,amy57@example.com,+1-778-738-3822x06568,4633590054726,2025-05-11 +City Hotel,0,2,2017,December,51,17,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,107.53,0,1,Check-Out,John Francis,carneyaustin@example.net,267.540.4372x0768,630487406039,2024-05-09 +City Hotel,0,20,2017,April,16,19,1,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.87,0,2,Check-Out,Jaclyn Crane,kristopher75@example.org,491-438-3056,2720297255913425,2024-11-06 +City Hotel,0,45,2017,August,32,4,0,2,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,229.7,0,1,Check-Out,Jennifer Martinez,josewatson@example.org,+1-963-719-6246x319,4219945379630309,2025-04-02 +City Hotel,1,56,2017,January,2,9,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.95,0,1,Check-Out,Amanda Hernandez,sgregory@example.net,903-758-9441,4964390770915545,2026-01-20 +Resort Hotel,1,14,2017,March,13,26,1,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,168.0,179.0,0,Transient,49.39,0,0,Canceled,William Turner,william00@example.org,491.528.9429x24168,2261549245902289,2025-02-01 +City Hotel,1,0,2017,November,45,4,0,1,1,0.0,0,BB,,Corporate,Corporate,0,1,0,A,A,0,No Deposit,16.0,45.0,0,Transient,41.89,0,0,Canceled,Dr. Charles Lawrence,mortonjeffrey@example.net,9948260834,30035883466914,2024-06-14 +City Hotel,1,22,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,136.86,0,1,Canceled,Steven Small,wyork@example.org,649.651.9787,2346535717134997,2024-05-18 +City Hotel,0,11,2017,December,52,24,2,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,20.0,179.0,0,Transient,87.7,0,1,Check-Out,Robert Burns,xvalentine@example.net,912-415-9718x785,4008966902595384,2025-09-03 +City Hotel,1,0,2017,August,35,24,2,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,75,Transient-Party,91.12,0,1,Canceled,Gregory Harrell,eklein@example.net,(355)646-0018x333,4057431963669923967,2025-11-28 +City Hotel,0,126,2017,April,17,25,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,136.28,0,0,Check-Out,Kenneth Knight,lauraalvarado@example.org,8218530662,583518386060,2025-01-31 +Resort Hotel,0,0,2017,April,17,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,241.0,179.0,0,Transient,54.97,0,1,Check-Out,Rachael Alvarez,elizabeth91@example.com,5457692442,4884047763274,2024-11-15 +City Hotel,1,2,2017,September,37,13,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,117.48,0,0,Check-Out,Lisa Gill,shaun22@example.org,(916)458-3415x0089,503822947621,2025-02-11 +Resort Hotel,0,2,2017,October,42,14,2,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,56.7,0,0,Check-Out,Julia Cole,johntaylor@example.org,666.994.1272,4343773643830094,2025-03-15 +City Hotel,0,67,2017,August,33,12,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.98,0,2,Check-Out,Sean Nguyen,chavezmichael@example.org,771-206-8516,4305043064865646461,2025-11-09 +Resort Hotel,1,175,2017,August,35,24,0,1,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,246.0,179.0,0,Transient,225.17,0,0,Canceled,Mary Ortiz,uhanson@example.net,001-486-348-0661x89283,4963583697391,2025-03-18 +City Hotel,1,377,2017,June,23,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,75,Transient,126.9,0,0,Canceled,James Weaver,garymcintyre@example.net,5756360305,347109758857933,2025-02-09 +City Hotel,0,17,2017,August,32,9,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.82,0,3,Check-Out,Stacy Fitzgerald,tayloredward@example.com,(504)983-6926,6011015125052946,2025-08-17 +Resort Hotel,0,77,2017,December,49,6,0,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,126.17,0,0,Check-Out,Sharon Mann,destinywong@example.org,8002075609,342647010501695,2025-06-02 +Resort Hotel,0,0,2017,August,31,2,0,1,2,0.0,0,Undefined,,Direct,Direct,0,0,0,C,E,1,No Deposit,19.0,179.0,0,Transient-Party,207.83,0,0,Check-Out,Rebecca Zimmerman,hmiller@example.com,726-257-1470,347918438292489,2024-09-29 +Resort Hotel,1,240,2017,July,31,31,4,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,165.92,0,0,Canceled,Becky Hansen,richard72@example.com,316-332-2312,4843964069612141,2024-05-15 +City Hotel,0,13,2017,January,2,3,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.44,1,1,Check-Out,Luke Ray,timothy02@example.net,+1-615-228-0421,38492531500150,2024-04-05 +City Hotel,0,9,2017,April,17,23,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,15.0,45.0,0,Transient,90.93,0,0,Check-Out,Kelly Lopez,donnavargas@example.com,+1-847-847-2261,4280338852206225675,2024-06-14 +Resort Hotel,0,1,2017,September,37,12,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,110.34,0,1,Check-Out,Steven Martinez,timothy71@example.com,337-714-7956,4297619537298472012,2025-10-25 +City Hotel,0,5,2017,October,41,11,1,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient,103.38,0,3,Check-Out,Catherine Smith,nruiz@example.net,001-543-760-9322,2714900869765564,2024-05-07 +Resort Hotel,1,2,2017,June,24,13,1,0,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,61.32,0,0,Canceled,Danielle Thornton,deandavid@example.net,001-286-943-6949x991,4410733662038167,2025-05-27 +City Hotel,1,13,2017,September,39,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.08,0,1,No-Show,Jill Roman,hwilliams@example.org,498-480-5412,4276715439170628034,2025-05-11 +Resort Hotel,0,3,2017,March,11,12,1,0,1,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,I,0,No Deposit,13.0,179.0,0,Transient,5.81,0,0,Check-Out,Jennifer Williams,toddsmith@example.org,243-938-7004,3568983242548027,2026-02-21 +City Hotel,1,43,2017,March,12,16,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,54.93,0,2,Canceled,Allison Kim,kimkeith@example.net,+1-200-906-0618,3585832791978268,2026-02-15 +Resort Hotel,1,17,2017,March,10,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,47.03,0,0,Canceled,Scott Stewart,pyates@example.com,7957000671,371304545904762,2026-02-28 +Resort Hotel,0,1,2017,March,13,27,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,52.72,0,0,Check-Out,Brian Garcia,medinadaniel@example.com,218-222-0770x79780,6011955305182320,2024-11-30 +City Hotel,1,26,2017,August,35,24,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,178.97,0,2,No-Show,Charles Scott,rpearson@example.com,709-495-6592,502003311524,2026-02-08 +City Hotel,0,101,2017,April,14,5,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,15.0,179.0,0,Transient-Party,137.01,0,0,Check-Out,Eric Russell,brooksbruce@example.org,606-256-9086,371821422596478,2025-07-21 +City Hotel,1,3,2017,August,34,23,0,2,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,232.82,0,2,No-Show,Lucas Nguyen,vdougherty@example.net,(629)779-0421,502009978938,2025-11-03 +Resort Hotel,0,0,2017,January,2,9,0,2,2,1.0,0,BB,,Direct,Direct,0,0,0,A,E,2,No Deposit,15.0,179.0,0,Transient,74.41,1,0,Check-Out,Anthony Price,christopherturner@example.com,001-534-644-2875x0986,4323603478951992,2025-03-13 +Resort Hotel,0,1,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,E,E,0,No Deposit,179.0,69.0,0,Transient,44.97,1,1,Check-Out,Jason Nguyen,alvarezkatherine@example.org,(546)891-3534,4125747915888505,2025-07-15 +Resort Hotel,1,22,2017,December,49,5,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,106.17,0,0,Canceled,Ronald Martinez,pdavis@example.net,+1-860-928-3096,4845367633782390,2024-11-17 +Resort Hotel,0,0,2017,October,40,3,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Contract,53.59,0,1,Check-Out,Paul Willis,dunnkevin@example.org,526-517-0988,347557155253140,2026-03-25 +Resort Hotel,0,5,2017,September,37,10,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,167.06,0,0,Check-Out,Paul Cruz Jr.,olivialee@example.com,+1-488-661-3394x003,3528961531034544,2025-04-16 +City Hotel,0,400,2017,September,36,8,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.1,0,0,Check-Out,John Russell,mitchellrivera@example.net,609.242.4059,4374025735099289008,2026-03-08 +Resort Hotel,0,35,2017,March,11,15,1,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,77.68,0,0,Check-Out,Mr. David Mercado,james72@example.org,799.800.4313,6589316365090782,2026-03-13 +City Hotel,0,84,2017,May,22,27,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.9,0,1,Check-Out,Victor Leonard,lisa00@example.net,721.559.4724x8927,2228004593968625,2024-07-13 +City Hotel,1,96,2017,April,18,30,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,49.36,0,0,Canceled,Justin Glover,serickson@example.org,434.756.3307x35160,4520043171176636703,2025-06-28 +City Hotel,0,17,2017,March,13,25,2,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Contract,91.13,0,0,Check-Out,Jason Miller,obrienmelissa@example.com,001-794-967-9017x976,180099041071451,2024-11-11 +City Hotel,0,4,2017,October,42,18,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,92.75,0,0,Check-Out,Christina Faulkner,nlamb@example.com,(382)525-3747x39131,180072073039860,2025-08-29 +City Hotel,0,1,2017,March,11,11,1,0,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,137.35,0,0,Check-Out,William Casey,cpham@example.org,514.599.2628,3597556966463147,2024-08-15 +City Hotel,0,12,2017,July,29,21,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,110.02,0,1,Check-Out,Jessica Buck,pricelindsay@example.org,+1-871-290-8289x02358,379592734248262,2024-06-20 +Resort Hotel,0,50,2017,April,15,12,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,236.0,179.0,0,Transient,236.62,0,3,Check-Out,Aaron Marshall,warnercrystal@example.org,001-408-739-7125,6011255237447283,2025-07-08 +City Hotel,0,38,2017,July,27,3,1,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Contract,105.95,0,1,Check-Out,Donna Stanton,derekclark@example.net,621-561-2175x680,30208811767295,2025-08-24 +Resort Hotel,0,0,2017,January,3,18,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,198.71,0,0,Check-Out,Timothy Olson,johnmckinney@example.org,334.568.0408,676343945777,2025-08-23 +Resort Hotel,1,46,2017,July,28,10,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,136.17,0,1,Canceled,Sara James,haileyle@example.com,(654)590-6440x4843,6011438803741111,2025-12-21 +Resort Hotel,0,15,2017,August,34,24,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient-Party,122.2,0,0,Check-Out,Mark Richards,jared65@example.com,(727)961-0053x7377,4356645911790776,2024-06-05 +Resort Hotel,0,71,2017,April,18,30,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.48,0,1,Check-Out,Amber Stevenson,gibbspeter@example.net,2938318311,2287157022944795,2025-06-13 +City Hotel,0,14,2017,May,20,11,1,3,1,0.0,0,BB,BEL,Direct,Corporate,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,156.53,0,2,Check-Out,Elizabeth Foster,nicole21@example.com,001-828-238-1403,3538934195471854,2026-02-08 +City Hotel,1,4,2017,July,27,4,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,128.68,0,2,Canceled,Charles Hawkins,tammymartin@example.com,555-755-4438x29840,2274744283571022,2026-01-14 +Resort Hotel,0,0,2017,March,12,22,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,65.03,1,1,Check-Out,Jeffrey Bishop,kgillespie@example.org,8604411834,060481416901,2026-01-11 +Resort Hotel,1,1,2017,August,33,16,0,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,29.0,179.0,0,Transient,85.09,0,2,Canceled,Emily Fleming,sthomas@example.net,906-998-5278,3539696864038558,2024-09-22 +Resort Hotel,0,1,2017,September,38,22,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,347.0,179.0,0,Transient,54.47,0,0,Check-Out,Dean Mullins,jeff60@example.net,828-569-1298,2297729647768268,2025-05-04 +Resort Hotel,1,207,2017,August,31,2,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,138.4,0,0,Canceled,David Bird,ywolfe@example.com,(541)573-7840,3592593992163388,2025-03-23 +City Hotel,0,212,2017,September,37,9,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,81.76,0,0,Check-Out,Joe Greene,beverlymiller@example.com,001-642-814-4365x933,4016063067526949,2024-11-12 +City Hotel,0,21,2017,April,17,20,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,160.71,1,1,Check-Out,Michael Lucas,gomezanthony@example.com,+1-642-493-8375x656,6011500737946825,2025-04-27 +City Hotel,1,58,2017,August,34,23,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient-Party,99.77,0,0,Canceled,John Valenzuela,burtonbrian@example.net,(791)844-6826x2124,3507239561144003,2025-03-22 +City Hotel,1,14,2017,April,16,15,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.75,0,1,Canceled,Jennifer Woodard,gutierrezmargaret@example.com,7427424562,6534116337695502,2025-04-22 +Resort Hotel,0,46,2017,November,47,18,2,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,2,No Deposit,238.0,179.0,0,Transient,51.52,0,2,No-Show,Pamela Medina,hayleypeterson@example.net,(790)615-7209x2346,4878348140679,2024-04-21 +City Hotel,1,167,2017,August,34,19,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,132.47,0,0,Canceled,Mariah Jones,jessica15@example.net,434-636-8442,30176769354491,2024-06-14 +City Hotel,0,219,2017,August,31,2,0,2,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,115.5,0,2,Check-Out,Ronnie Powers,colleenmoore@example.net,+1-423-685-5977x21640,060455205827,2025-01-31 +City Hotel,1,398,2017,June,25,21,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,127.0,179.0,41,Transient,107.46,0,1,Canceled,Heather Hess,angelavaldez@example.org,904-626-5370x2964,5295566741020054,2026-01-12 +City Hotel,0,88,2017,July,29,15,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,174.29,0,2,Check-Out,Heather Thompson,edward49@example.com,+1-329-882-8163x2234,30055159149457,2026-02-05 +Resort Hotel,1,359,2017,October,43,27,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,322.0,179.0,0,Transient,101.68,0,0,Canceled,Melissa Smith,bushluis@example.org,+1-621-874-5705x310,180055224883708,2026-03-11 +City Hotel,0,2,2017,December,51,22,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,76.02,0,1,Check-Out,Timothy Wallace,brownlisa@example.com,741-463-2399x99863,3546405200927123,2024-04-19 +City Hotel,1,149,2017,March,10,8,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.57,0,3,No-Show,Alejandro Campbell,omartinez@example.com,(837)428-9645x8186,376229980732128,2025-03-19 +City Hotel,1,214,2017,August,32,8,1,4,2,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,131.2,0,0,Canceled,Heather Davis,ybarrett@example.net,001-555-606-6424x28086,4405362314327,2025-05-30 +City Hotel,1,26,2017,August,34,20,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,199.74,0,0,Canceled,Elizabeth Robbins,rebeccalowe@example.com,330-820-5966x243,4093703464934,2026-03-05 +City Hotel,0,34,2017,January,4,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.93,0,2,Check-Out,Johnny Cox,pfletcher@example.com,+1-350-287-2983x08163,3525127619935621,2024-09-07 +Resort Hotel,0,0,2017,March,11,10,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,242.0,179.0,0,Transient,50.34,0,1,Check-Out,Tanner Mann,cassie28@example.net,(595)748-1023x6522,4710309727503191567,2025-08-13 +Resort Hotel,1,266,2017,October,40,7,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,314.0,179.0,0,Contract,63.77,0,0,Canceled,Craig Nicholson,hharris@example.net,658.333.3057,4164135321586930107,2024-09-15 +Resort Hotel,0,30,2017,May,20,11,0,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,244.0,179.0,0,Transient,1.05,0,1,Check-Out,Sergio Carroll,ghicks@example.org,+1-560-820-7682,4756071246419138,2025-04-07 +City Hotel,1,96,2017,April,14,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,106.04,0,0,Canceled,Juan Keller MD,ubennett@example.net,639.481.9805,4363874955238,2024-03-29 +Resort Hotel,1,141,2017,June,23,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,129.97,0,0,Canceled,Krystal Jones,mariejohnson@example.com,+1-648-488-8209x00578,676349934700,2025-07-18 +City Hotel,1,140,2017,June,26,30,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,117.7,0,0,No-Show,Austin Green,ypowell@example.org,2889857758,4876977174703670,2024-05-22 +City Hotel,0,84,2017,October,41,8,0,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Transient-Party,100.09,0,0,Check-Out,Crystal Mills,christine42@example.net,740.760.7938x796,36510284808587,2024-09-20 +Resort Hotel,0,101,2017,December,51,21,4,2,2,0.0,0,BB,IRL,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,91.4,0,1,Check-Out,Cheryl Gregory,marydavis@example.net,+1-954-400-9149,6529263118943813,2024-11-19 +Resort Hotel,0,1,2017,November,45,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,I,0,No Deposit,245.0,179.0,0,Transient,4.77,0,3,Check-Out,Melissa Patel MD,ericcox@example.org,752-911-9092,2720674106110411,2025-03-28 +City Hotel,0,99,2017,December,51,22,1,2,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,9.0,179.0,0,Transient,88.66,0,1,Check-Out,Jordan Pace,ufoster@example.net,2197354267,3588416797913839,2026-03-23 +City Hotel,0,25,2017,June,23,2,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,114.12,0,1,Check-Out,Terri Williams,washingtonamanda@example.com,+1-290-742-6106x646,4265942025557778241,2025-10-18 +City Hotel,0,95,2017,September,36,8,0,4,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,178.97,0,0,Check-Out,Jessica Carney,catherinehuffman@example.org,677.929.4154x09769,4527138672672486,2025-06-26 +City Hotel,0,28,2017,December,48,2,0,2,2,0.0,0,Undefined,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,54.82,0,2,Check-Out,Michael Owens,ryanvazquez@example.net,001-671-231-1922,4447148582843,2025-12-17 +City Hotel,0,50,2017,February,8,24,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,175.0,179.0,0,Transient,41.21,0,0,Check-Out,Peter Stephenson,kpatterson@example.org,735-273-9168x54583,3505665723429654,2025-08-18 +Resort Hotel,0,153,2017,October,44,28,1,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,11.0,223.0,0,Transient-Party,52.74,0,0,Check-Out,Donald Fisher,aperez@example.com,4013354258,3570338850005537,2025-10-15 +City Hotel,0,47,2017,August,35,28,2,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,223.2,0,1,Check-Out,Aaron Lee,wilsonhenry@example.org,(482)302-5223x78590,38109828193248,2024-08-13 +Resort Hotel,0,137,2017,November,44,1,2,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,45.47,0,0,Check-Out,Kenneth Johnson,tiffany03@example.com,+1-718-837-0274x67315,4265051627474,2025-11-21 +City Hotel,1,62,2017,October,43,24,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,81.11,0,1,No-Show,Vanessa Coleman,clayrobert@example.net,(294)341-3787x78343,2239984478775335,2024-06-17 +Resort Hotel,0,32,2017,October,40,2,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,136.0,179.0,0,Group,52.04,0,1,Check-Out,David Martin,fwilson@example.com,212-974-3032x151,4272976723596809,2026-01-21 +City Hotel,0,0,2017,February,8,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,15.0,45.0,0,Transient,56.09,0,0,Check-Out,Mark Davis,ncameron@example.net,+1-762-511-7238x82937,578737988514,2024-05-24 +Resort Hotel,1,174,2017,March,14,30,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,38.23,0,0,Canceled,Robert Watkins,qevans@example.com,001-460-729-8787x680,4731022764094506,2025-08-18 +Resort Hotel,0,3,2017,March,11,15,0,2,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,2,Check-Out,Felicia Wright,nelsonsara@example.org,001-879-518-6702x0916,6011021075358093,2025-10-29 +City Hotel,1,92,2017,December,50,14,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.81,0,0,Canceled,David Peterson,usolis@example.com,4406970598,4931596164434568,2025-04-27 +City Hotel,0,0,2017,October,41,12,0,2,2,0.0,0,SC,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,48.91,0,0,Check-Out,Gavin Bauer,apaul@example.org,9024795533,3508991759417539,2025-09-08 +City Hotel,0,8,2017,April,17,24,1,2,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.57,0,1,Check-Out,Patricia Harvey,holly43@example.org,001-836-627-2326,3555432954611396,2025-03-30 +Resort Hotel,0,266,2017,July,27,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,F,0,No Deposit,2.0,179.0,0,Transient-Party,181.2,1,2,Check-Out,Lori Riley,flynndavid@example.net,236.933.1069x1989,379077913667813,2024-06-24 +City Hotel,1,253,2017,April,15,11,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,131.43,0,0,Canceled,Antonio Johnson,david35@example.com,(437)294-1356x9813,30358498221296,2025-07-19 +City Hotel,0,152,2017,July,27,3,2,2,2,1.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,101.29,0,0,Check-Out,Ryan Brown,davidruiz@example.org,431-230-3570x063,4746505004872072,2024-06-06 +City Hotel,0,98,2017,September,36,2,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,104.58,0,0,Canceled,Thomas Ramos,karen98@example.org,001-649-811-5244x23086,4951679446112,2024-04-09 +City Hotel,0,0,2017,February,8,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,37.85,0,1,Check-Out,Mark Jones,cameronrussell@example.org,+1-654-370-9299x643,4683191907037884,2025-12-15 +City Hotel,1,35,2017,March,12,20,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,131.11,0,1,Canceled,Kristin Phillips,regina32@example.org,612.844.6223x1267,6503699402266462,2024-08-21 +Resort Hotel,0,211,2017,August,32,10,2,5,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,161.26,0,1,Check-Out,Brendan Walton,alan84@example.net,(846)686-8307x65465,676198775329,2026-01-07 +Resort Hotel,1,320,2017,August,34,23,2,1,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,120.33,0,0,No-Show,Kyle Keller,prestontyler@example.net,+1-665-953-8599x4836,060427239805,2024-05-06 +City Hotel,0,254,2017,September,36,4,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,237.0,179.0,0,Transient,220.25,0,1,Check-Out,James Pope,alyssabaker@example.org,276.566.0196,4773174825987324,2025-09-09 +Resort Hotel,0,32,2017,October,40,3,1,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,242.0,179.0,0,Transient,57.62,0,1,Check-Out,Lisa Morgan,ptaylor@example.org,596-726-7304x5179,3547212167397558,2024-10-23 +City Hotel,0,0,2017,December,2,31,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,132.97,1,1,Check-Out,Rachel Gibson,deborah28@example.com,471.788.7513,375055119507953,2024-11-07 +City Hotel,1,2,2017,July,28,6,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,208.68,0,2,Canceled,Corey Garcia,kyle02@example.net,+1-459-835-1057x38695,180002188426322,2025-10-26 +City Hotel,1,344,2017,June,25,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,99.81,0,0,Canceled,Andrea Clarke,vaughanjason@example.org,001-851-478-0307,3511472010866009,2024-07-27 +City Hotel,0,160,2017,June,23,6,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.61,0,1,Check-Out,Kenneth Walsh,bhenderson@example.org,001-558-419-3361x1944,348654363728630,2025-08-26 +City Hotel,1,264,2017,August,32,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,93.15,0,0,Canceled,Jason Hardy,laurahart@example.com,001-809-797-3496x3482,36183163624713,2024-12-03 +City Hotel,0,3,2017,October,43,24,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.03,0,1,Check-Out,David Robles,vincent06@example.com,001-507-686-3664x94019,4183612826850349315,2025-07-04 +City Hotel,0,50,2017,November,45,10,0,1,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,190.63,1,0,Check-Out,Eric Graham,rebeccahunt@example.com,844.877.3589x37822,4209726770016021,2024-10-09 +City Hotel,0,39,2017,September,39,30,1,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,60.96,0,0,Check-Out,Nicole Collins,taylorbonnie@example.com,7942673523,4126705307113791707,2025-11-13 +Resort Hotel,1,134,2017,April,17,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,90.79,0,0,Canceled,Patricia Hernandez,hpark@example.net,(795)533-9325x314,4823936074810536909,2025-02-04 +City Hotel,0,263,2017,August,31,1,1,4,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,105.05,0,1,Check-Out,Grant Wood,morristiffany@example.org,(856)900-0783x27125,3534337885434253,2024-06-07 +City Hotel,1,227,2017,May,22,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,111.66,0,1,Canceled,Kevin Gregory,bmyers@example.net,(356)581-8531,3584259915887772,2025-05-28 +Resort Hotel,0,0,2017,December,50,12,0,4,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient-Party,82.97,0,2,Check-Out,Jonathon Conley,shawna35@example.org,+1-327-845-5391x64131,630417807165,2026-03-06 +City Hotel,1,39,2017,September,38,19,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,107.11,0,0,Canceled,Jennifer Gonzalez,vwells@example.org,659-771-1749x118,3573810542497873,2024-04-05 +City Hotel,1,11,2017,March,12,22,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.88,0,0,Canceled,Terry Glover,pamela37@example.com,728-581-6133,4010432942441390,2026-01-27 +City Hotel,0,0,2017,December,51,18,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,2.01,0,1,Check-Out,Michael Neal,john59@example.net,001-319-748-7212,4579977907657,2026-01-20 +City Hotel,0,13,2017,September,39,27,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,76.36,0,0,Check-Out,Ms. Erin Lane,dana95@example.net,+1-419-713-0313x992,180022491650335,2025-03-03 +City Hotel,0,157,2017,April,15,9,1,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,103.95,0,2,Check-Out,Lisa Barnes,wendymeyers@example.org,785.994.4679x0727,6525710937773239,2025-03-31 +City Hotel,0,1,2017,March,10,8,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,80.28,0,3,Check-Out,Jesse Mccormick,erin33@example.net,+1-559-726-2751x3373,4659875050630640007,2025-08-14 +Resort Hotel,1,92,2017,February,6,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,78.84,0,1,Check-Out,Daniel Smith,monique69@example.net,+1-999-204-4948x6303,349983490902944,2025-01-17 +City Hotel,0,112,2017,September,36,9,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Contract,106.15,0,0,Check-Out,David Hanson,michelle33@example.net,+1-264-972-9577x739,370639280529592,2025-03-29 +City Hotel,0,17,2017,August,33,15,0,4,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,A,1,No Deposit,12.0,179.0,0,Transient,138.4,0,2,Check-Out,Nicholas Cisneros,martinrachel@example.com,897.958.5681x19751,6011328882211112,2024-10-09 +City Hotel,0,94,2017,January,5,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.84,0,1,Check-Out,Patrick Harris,beckgregory@example.net,+1-629-745-7166x579,2242571974106977,2025-02-02 +Resort Hotel,1,165,2017,April,14,1,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,61.52,0,0,Canceled,William Cox,wilcoxphillip@example.com,(391)205-5299x799,213182213622128,2024-08-24 +City Hotel,0,47,2017,November,45,8,2,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,H,F,1,No Deposit,15.0,179.0,0,Transient-Party,101.57,0,0,Check-Out,Alvin Wilson,andrea67@example.net,+1-302-903-3970x794,6583010910585208,2025-01-21 +City Hotel,0,2,2017,January,3,16,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,76.8,0,1,Check-Out,Cory Willis,krobertson@example.com,686-497-3224x18395,30143372398307,2024-11-18 +City Hotel,0,161,2017,June,24,12,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,135.77,0,0,Check-Out,Amanda Johnson,jennifer12@example.com,314.529.0564,3573268784545026,2025-05-01 +Resort Hotel,0,31,2017,March,11,17,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,45.34,0,2,Check-Out,Christopher Mcclure,singhdakota@example.net,805-892-7311,4398496799087095,2024-06-11 +City Hotel,1,305,2017,September,38,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,109.12,0,0,Canceled,Gina Spencer,robertfoster@example.org,+1-915-995-1330,4817184338553735,2026-03-25 +Resort Hotel,0,299,2017,September,37,15,0,5,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,46.94,0,0,Check-Out,Alex Cameron,ssmith@example.net,+1-226-789-0944x7539,4811472874952152356,2026-02-09 +Resort Hotel,0,47,2017,May,22,27,4,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,A,0,No Deposit,15.0,179.0,0,Transient,217.35,1,1,Check-Out,Alisha Byrd,matthew56@example.net,(685)377-6552,375817439237185,2025-10-17 +Resort Hotel,0,49,2017,June,24,8,0,2,2,2.0,0,BB,ESP,Online TA,Direct,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,244.3,1,2,Check-Out,Richard Rodriguez,dalton41@example.com,392-668-8683,3587842268544962,2025-08-08 +Resort Hotel,1,154,2017,July,27,4,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient,79.07,0,0,Canceled,Elizabeth Allen,sandrahale@example.net,(576)720-7102x57676,30144946443348,2025-04-26 +Resort Hotel,0,134,2017,June,23,8,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,135.47,0,1,Check-Out,Mary Pugh,tjones@example.com,484-864-3162x9447,30254748709836,2024-06-29 +City Hotel,0,19,2017,March,11,17,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,8.0,179.0,0,Transient,119.87,0,1,Check-Out,Yolanda Keith,franklindavid@example.net,(751)377-6867,180032795356364,2025-09-29 +Resort Hotel,0,36,2017,July,30,26,2,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,171.04,1,1,Check-Out,Ana Thomas,erickelly@example.net,592.236.2992x29007,4940342959171407,2025-08-25 +City Hotel,1,84,2017,December,52,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,82.0,179.0,75,Transient-Party,64.22,0,1,No-Show,Rebecca Lee,adamsarthur@example.net,001-833-677-9541x925,6011388471405020,2024-04-26 +Resort Hotel,0,70,2017,September,38,20,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,70.0,179.0,0,Transient,252.0,0,1,Check-Out,James Greene,proctoremily@example.net,251-346-7857x50486,3550477106435868,2025-09-04 +Resort Hotel,1,191,2017,May,21,23,0,4,1,0.0,0,HB,PRT,Direct,Direct,1,0,1,A,I,1,No Deposit,194.0,179.0,0,Transient,89.9,0,1,No-Show,Dana Williams,cooperelizabeth@example.net,001-874-700-9302x1515,4961188007465414,2025-08-31 +City Hotel,0,0,2017,July,29,13,2,0,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,136.59,0,2,Check-Out,Chelsea Nichols,jessica81@example.com,+1-835-730-1090,2233008565378872,2025-03-21 +City Hotel,0,83,2017,October,42,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,K,0,No Deposit,1.0,179.0,0,Transient-Party,40.55,0,0,Check-Out,Erin Brown,stephanie80@example.net,533-601-1462x50842,566577569171,2026-03-21 +Resort Hotel,0,13,2017,November,47,22,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,H,D,2,No Deposit,201.0,79.0,0,Transient-Party,44.35,0,0,Check-Out,Shelley York,johnsonjessica@example.net,318.257.4075x3324,060410803997,2025-01-25 +Resort Hotel,0,136,2017,October,44,31,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,1,Refundable,12.0,220.0,0,Transient-Party,69.12,0,0,Check-Out,Stacey Clark,reginakelly@example.net,+1-250-860-0927x392,3573997862701586,2024-04-15 +Resort Hotel,0,8,2017,September,37,12,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,135.73,0,2,Check-Out,John Alvarado,zcasey@example.org,+1-709-675-7877x4621,060457611758,2024-05-14 +Resort Hotel,0,109,2017,August,31,3,2,2,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient-Party,105.85,1,1,Check-Out,Jordan Potter,jenna55@example.com,(542)764-4451,2298589766913957,2025-04-26 +Resort Hotel,0,0,2017,March,10,7,1,10,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,134.74,0,0,Check-Out,Katrina Jimenez,mary24@example.com,+1-741-657-7831x42860,4234940962769729091,2026-01-15 +City Hotel,0,207,2017,May,21,24,1,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,9.0,179.0,0,Transient,110.9,0,1,Check-Out,Frank Brooks,sgrant@example.net,641-770-3107x28108,3500701457874511,2026-01-08 +City Hotel,0,6,2017,March,11,12,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.35,0,1,Check-Out,Michelle Simpson,savannah45@example.net,792.429.8993,060484609742,2026-01-09 +Resort Hotel,0,315,2017,October,40,3,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Contract,53.26,0,2,Check-Out,James Morse,danderson@example.com,+1-314-742-4291x00246,501848326028,2025-03-21 +City Hotel,1,168,2017,August,33,13,2,5,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,171.63,0,0,No-Show,Amanda Robinson,martinezchristopher@example.org,(988)204-4235x0428,3520085432394019,2025-11-17 +City Hotel,1,1,2017,August,32,9,0,3,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient,214.93,0,1,Canceled,Scott Foster,brightronnie@example.com,(373)546-5475x922,4332954624433685,2024-07-08 +City Hotel,0,49,2017,September,37,10,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,162.62,1,3,Check-Out,Stephen Duncan,falvarez@example.com,812-723-0121x2706,373120344625632,2025-05-27 +Resort Hotel,0,371,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,13.0,223.0,0,Transient-Party,76.96,0,0,Check-Out,Jacqueline Pierce,silvabrandon@example.net,529.813.2241,6011635850564961,2024-06-05 +Resort Hotel,1,16,2017,August,31,3,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,G,1,No Deposit,242.0,179.0,0,Transient,139.03,1,1,No-Show,Bradley Wallace,cmorales@example.com,202-714-6132,213183229082729,2024-12-24 +City Hotel,0,220,2017,September,36,6,0,5,2,0.0,0,BB,NLD,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,116.98,0,0,Check-Out,Kevin Marshall,michael57@example.net,(411)463-9887,4980387820511928,2025-06-23 +City Hotel,0,14,2017,June,26,26,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,84.69,0,1,Canceled,Jessica Mcdonald,jennifer19@example.org,374-887-1315,4031091241531858,2024-06-30 +City Hotel,1,0,2017,October,40,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,B,0,No Deposit,15.0,179.0,0,Transient,130.48,0,0,Canceled,Robert Stewart,cwhitney@example.org,001-214-920-0520x1931,30128106256988,2024-12-11 +City Hotel,0,189,2017,August,33,12,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,114.09,0,0,Check-Out,Christopher Hall,rosslindsey@example.org,001-658-597-0477x85600,4887059805016,2024-10-02 +City Hotel,0,1,2017,March,12,17,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,100.19,1,0,Check-Out,Heather Miller,harold93@example.net,8872861030,4211160919592,2025-10-06 +City Hotel,0,7,2017,December,51,18,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,81.49,0,1,Check-Out,Kayla Schneider,kjackson@example.net,001-255-987-4991x893,4147611669251080527,2024-06-22 +Resort Hotel,0,136,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,224.0,0,Transient-Party,65.24,0,0,Check-Out,Tammy Garcia,herreradana@example.org,641-618-5206,639054065425,2025-06-17 +City Hotel,1,150,2017,July,29,18,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,80.95,0,0,Canceled,Andrew Gonzalez,xmorgan@example.org,(287)300-7269x052,3579332038834398,2025-04-09 +City Hotel,0,175,2017,April,15,6,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,115.7,0,1,Check-Out,Gary Turner,ewalters@example.com,+1-913-913-7892x402,30065788145982,2024-06-13 +Resort Hotel,1,81,2017,July,27,5,2,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,222.02,0,0,Canceled,Melinda Hill,robinsonkimberly@example.com,(312)282-2082x89664,4258827666711111,2025-12-09 +Resort Hotel,0,2,2017,July,27,1,2,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,0.5099000000000001,0,2,Check-Out,Yolanda Murillo,bthomas@example.com,506.792.1772x68150,2416235100765664,2025-01-18 +City Hotel,0,411,2017,August,33,10,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.04,0,1,Canceled,Nancy Gaines,hestermelissa@example.net,001-869-724-4868,4214155163218,2024-11-05 +City Hotel,0,0,2017,February,8,23,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient,86.85,0,1,Check-Out,Elijah Short,thomas78@example.com,001-984-530-5627x982,4105622559687089,2024-10-30 +City Hotel,0,59,2017,April,17,23,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,4.61,0,0,Check-Out,Jennifer Sullivan,dana07@example.net,337-626-4792x04900,3558859028087491,2024-11-12 +City Hotel,0,2,2017,November,45,6,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Group,91.66,0,1,Check-Out,Mary Kennedy,regina39@example.org,001-536-304-2351x57873,6521705070190047,2024-04-06 +City Hotel,1,31,2017,January,2,5,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,76.14,0,0,Canceled,Paige Hernandez,christopher23@example.com,587-374-2865x812,213140880673360,2025-11-20 +City Hotel,1,6,2017,December,49,5,0,1,2,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,2.87,0,0,Canceled,Darrell Curry,mackenzie28@example.com,001-346-889-3641x5861,2429568880043430,2024-04-16 +Resort Hotel,0,40,2017,December,51,19,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,240.0,179.0,0,Transient,136.86,1,1,Check-Out,Jose Hartman,brooksraymond@example.net,(363)461-3270,3558396277134468,2024-05-25 +City Hotel,1,94,2017,June,24,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,120.3,0,0,No-Show,Miranda Murray,jennifersmith@example.com,557-498-3585x271,2435550798187741,2025-03-14 +City Hotel,0,12,2017,April,14,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,119.06,0,2,Check-Out,Emily Lopez,tparker@example.com,485.764.3801x376,4954607133183731,2025-08-24 +Resort Hotel,0,149,2017,July,29,19,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,47.57,0,1,Check-Out,Melissa Clark,jean37@example.com,688-363-0292x9656,4978844727506,2025-09-05 +City Hotel,1,280,2017,August,34,20,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,0,Transient,105.49,0,0,Canceled,Justin Brooks,martinezregina@example.com,974.684.5955x48956,30467858887362,2024-12-14 +Resort Hotel,1,151,2017,August,35,30,0,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,242.64,0,1,Canceled,Bethany Harding,morristracy@example.org,(453)281-1392x076,4560374955781268,2025-02-07 +City Hotel,0,269,2017,February,7,10,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,145.0,179.0,0,Transient-Party,31.71,0,0,Check-Out,Robert Flowers,melissa87@example.net,001-939-652-6189x65074,578651090982,2024-07-13 +Resort Hotel,1,104,2017,December,49,5,2,5,2,1.0,0,FB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,143.17,0,0,Canceled,Jason Jennings,hermandavid@example.com,(328)948-6646,3535126491200771,2025-11-18 +Resort Hotel,1,151,2017,July,29,15,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,173.0,179.0,0,Transient-Party,93.92,0,0,Canceled,Richard Medina,angelazimmerman@example.com,543-786-3337x141,4881563744041537,2024-12-18 +Resort Hotel,0,5,2017,March,10,7,0,2,2,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,I,1,No Deposit,293.0,179.0,75,Transient-Party,27.58,1,3,Check-Out,Alexander Floyd,hmorales@example.com,864.752.5503,4986594555951,2025-10-13 +Resort Hotel,0,275,2017,June,25,16,0,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,E,A,0,No Deposit,328.0,179.0,0,Transient,118.85,0,0,Check-Out,Brittany Cisneros,nking@example.com,556.654.7543,6515918905477442,2026-02-07 +City Hotel,0,409,2017,May,19,9,2,1,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,100.2,0,0,Check-Out,Mark Morrison,jason99@example.net,001-643-635-4934x18635,3528791141872631,2024-05-25 +Resort Hotel,1,30,2017,July,30,23,1,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,135.84,0,1,Canceled,Sharon Baird,harveyjustin@example.org,+1-951-283-7440x26344,3563388940692181,2025-01-17 +Resort Hotel,0,0,2017,May,20,17,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,133.92,0,1,Check-Out,James Ferguson,znorris@example.com,986.669.6494,30483970067684,2025-04-19 +City Hotel,1,161,2017,June,23,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,59,Transient,105.92,0,0,Canceled,Brian Hudson,hendersonroberto@example.com,001-908-682-2729,6596315216427400,2024-08-03 +City Hotel,1,26,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,22.0,179.0,0,Contract,105.72,0,1,Canceled,Steven Davis,alicia96@example.org,9408006663,30344657325284,2024-05-22 +Resort Hotel,0,9,2017,December,49,3,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,238.0,179.0,0,Transient,46.22,0,0,Check-Out,Juan Johnson,meghan60@example.org,+1-611-515-8660x329,676149863877,2024-12-11 +City Hotel,1,294,2017,June,27,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,115.06,0,0,Canceled,Katherine Lopez,scottstacy@example.com,001-347-657-5809,587263341527,2024-07-21 +City Hotel,0,167,2017,March,13,29,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.29,0,1,Check-Out,Victor Campbell,michellecortez@example.org,(799)575-5807,4612676318023,2024-08-18 +City Hotel,0,7,2017,December,52,30,1,3,2,0.0,0,Undefined,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,120.1,0,2,Check-Out,Matthew Jones,williamselizabeth@example.com,757.494.6126x3542,675913600432,2025-12-07 +Resort Hotel,1,2,2017,December,49,3,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,11.0,179.0,0,Transient,210.67,0,0,Canceled,Joseph Jackson,tylerjennifer@example.net,6644483107,30167276309995,2025-07-25 +City Hotel,1,12,2017,June,26,24,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,G,1,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Canceled,Jennifer Moore,tjohnson@example.net,651.744.6949x180,379387409208927,2025-03-24 +Resort Hotel,0,41,2017,August,33,18,1,5,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,17.0,179.0,0,Transient,117.22,1,0,Check-Out,Joshua Mendoza,katherine53@example.org,4193341507,6506250288781013,2025-09-10 +City Hotel,0,207,2017,June,25,15,1,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.96,0,1,Check-Out,Troy Glenn,penahelen@example.net,001-690-699-0529x93587,676332475125,2026-01-20 +City Hotel,0,57,2017,August,32,6,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,252.0,0,2,Check-Out,Daniel Reynolds,juanward@example.com,428-487-3126x54732,4054997251030981,2024-08-28 +City Hotel,0,49,2017,September,36,8,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,140.8,0,1,Check-Out,Karen Munoz,katherine21@example.org,530-409-0787,6586253929105348,2025-04-18 +City Hotel,1,68,2017,March,10,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,61.73,0,1,Canceled,Laurie Shaw,sanchezsusan@example.net,+1-985-873-6467,30137893151542,2024-05-05 +Resort Hotel,1,202,2017,August,34,23,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,74.18,0,0,Canceled,Desiree Smith,john80@example.org,202.251.4739,3521118629496484,2025-05-26 +Resort Hotel,0,150,2017,May,22,29,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,141.17,0,3,Check-Out,Austin Ross,fernandeztravis@example.net,+1-314-256-3666,4894825510348270,2025-01-28 +Resort Hotel,0,144,2017,July,27,7,3,7,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,14.0,179.0,0,Transient,209.42,0,2,Check-Out,Kelly Kent,kelli74@example.org,312-546-7916,4864380271436126,2024-09-02 +Resort Hotel,0,103,2017,July,27,7,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,2,No Deposit,242.0,179.0,0,Transient-Party,82.44,1,2,Check-Out,Julia Johnston,jessicasmith@example.org,(890)836-3460,38499482694858,2024-04-14 +City Hotel,0,95,2017,April,15,8,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,120.27,0,3,Check-Out,Donna Ibarra,uchen@example.com,+1-740-260-6032x87600,2640595901300914,2024-10-04 +Resort Hotel,1,197,2017,July,31,30,0,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,0.75,0,3,Canceled,Michael Dawson,matthew86@example.org,324-623-3993x5340,30509171573540,2026-03-22 +Resort Hotel,0,13,2017,April,18,30,1,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,G,0,No Deposit,246.0,179.0,0,Transient,252.0,0,0,Check-Out,Louis Patrick,david06@example.org,6877443954,675935366467,2026-02-14 +City Hotel,1,144,2017,July,27,5,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Transient,102.12,0,0,Canceled,David Yoder,amanda78@example.org,922.355.7840,4167412467055842,2024-04-01 +Resort Hotel,0,0,2017,September,39,23,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,241.0,179.0,0,Transient,113.63,1,2,Check-Out,Judith Bartlett,francokaren@example.org,891-320-9796x484,6011955923437940,2024-12-20 +Resort Hotel,0,155,2017,April,14,1,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,13.0,222.0,0,Transient-Party,104.52,0,0,Check-Out,Keith Long,theresa65@example.com,212-226-2188x10299,676383921639,2025-05-31 +Resort Hotel,0,15,2017,January,2,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,125.17,1,1,Canceled,Cynthia Harrell,ericedwards@example.net,980-505-7275x46685,345601297839598,2025-10-23 +City Hotel,1,90,2017,May,21,23,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.92,0,0,Canceled,Mark Carter,meghan03@example.org,+1-874-941-8081x679,586778178507,2025-06-28 +City Hotel,0,252,2017,May,20,13,2,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,79.05,0,0,Check-Out,Melissa Bowen,stephaniegarcia@example.com,813.871.1125x6688,676280494979,2026-02-05 +Resort Hotel,0,19,2017,November,44,2,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,108.2,1,1,Check-Out,Johnny Riddle,myersnancy@example.org,(457)656-3699x7700,4178165365709822,2024-05-15 +Resort Hotel,0,161,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,1,Refundable,15.0,222.0,0,Transient-Party,74.66,0,0,Check-Out,Whitney Jones,jennifer67@example.org,001-591-472-7881x41034,30097649770617,2024-03-28 +City Hotel,0,44,2017,November,46,18,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.3,0,2,Canceled,Randall Nguyen,carlajuarez@example.com,6876208670,3526427330757109,2024-06-11 +Resort Hotel,0,147,2017,July,30,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,173.0,179.0,0,Transient,61.48,0,1,Check-Out,David Hunter,daniel50@example.com,+1-713-924-2373x463,4868242783230072378,2024-09-02 +City Hotel,0,14,2017,October,40,4,2,5,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,B,2,No Deposit,14.0,179.0,0,Transient-Party,135.38,0,0,Check-Out,Benjamin Neal,poolechris@example.net,(914)807-2341,4036938098843338,2025-05-27 +City Hotel,1,321,2017,May,19,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,65.85,0,0,Canceled,Jane Reese,marysantiago@example.org,(967)996-0901x051,4325483522257599734,2025-06-09 +City Hotel,1,97,2017,December,51,20,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,77.09,0,0,Canceled,Jennifer Smith,ryan54@example.com,001-936-827-5125x1160,4545100738419838598,2025-10-12 +City Hotel,1,102,2017,November,45,7,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,89.49,0,0,Canceled,Thomas Murphy,rrichardson@example.net,(889)200-7351x21291,3527455163392289,2025-10-19 +Resort Hotel,1,241,2017,June,22,1,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,179.0,0,Transient-Party,71.75,0,0,Canceled,Kari Jones,olivia76@example.org,001-263-626-8201x705,180010119108059,2026-02-19 +Resort Hotel,1,83,2017,November,47,24,2,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,316.0,331.0,0,Transient,45.81,0,0,Canceled,Dana Dodson,colemanashley@example.org,7323056921,4666282133715898229,2025-02-25 +City Hotel,1,170,2017,August,33,16,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.19,0,0,Canceled,Robert Skinner,kimberly67@example.org,4667843555,3537872279237885,2024-08-25 +Resort Hotel,0,18,2017,February,9,27,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.36,0,1,Check-Out,Albert Garcia,rsmith@example.org,001-545-463-5895,341513399604784,2025-03-23 +Resort Hotel,1,371,2017,August,33,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Contract,100.07,0,0,Canceled,Joseph Myers,mannthomas@example.org,(459)813-8865x2249,372210777933933,2025-08-31 +Resort Hotel,0,26,2017,August,34,24,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,242.0,179.0,0,Transient,204.38,0,0,Check-Out,Phillip Byrd,mwilcox@example.org,001-304-266-6294,6556298280594594,2025-03-21 +Resort Hotel,0,40,2017,March,10,6,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Group,51.57,0,1,Check-Out,Hunter Robinson,fturner@example.com,+1-998-333-1021x61492,3536232708107277,2024-12-07 +Resort Hotel,0,178,2017,April,18,30,2,2,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,F,1,No Deposit,18.0,179.0,0,Transient-Party,99.54,1,3,Check-Out,Michael Robinson,laurenlopez@example.com,(835)241-0845x563,4320137189244810045,2024-07-27 +Resort Hotel,1,149,2017,September,39,24,0,3,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,2,No Deposit,364.0500000000011,179.0,0,Transient,74.43,0,1,Canceled,Sara Cain,carterangela@example.net,001-242-657-8049x763,3525769096479852,2025-03-01 +City Hotel,1,149,2017,July,30,25,0,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,84.52,0,0,Canceled,Michelle Prince,andrew82@example.net,001-542-941-4487x84794,5440757871101038,2025-05-27 +City Hotel,0,27,2017,February,8,20,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,100.57,0,0,Check-Out,Eric Williams,carralejandro@example.org,(272)752-7530x684,4254649447682617,2025-12-24 +City Hotel,0,15,2017,March,13,24,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.67,0,1,Check-Out,Raymond Wang,jacksonjohn@example.net,7008439747,213185780239150,2024-05-24 +City Hotel,0,203,2017,August,32,5,2,4,2,1.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.48,0,1,Check-Out,Jade Allen,smithsandra@example.org,301-441-2146,4190634097179,2024-05-10 +City Hotel,0,10,2017,June,26,23,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,51.87,0,2,Check-Out,Javier Hays,westjesse@example.com,4572347187,3578536632463021,2024-11-05 +Resort Hotel,1,2,2017,January,2,3,0,5,2,0.0,0,BB,POL,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,252.0,0,3,No-Show,Corey Caldwell,kevinatkins@example.net,844.863.4468,6011887239596897,2024-04-03 +City Hotel,1,354,2017,October,41,10,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,128.41,0,0,Canceled,Stephen Robles,hendersonaaron@example.net,5722099694,3503753536983182,2025-03-08 +City Hotel,1,147,2017,March,9,3,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,40,Transient,99.49,0,0,Canceled,Carol Jackson,ehouston@example.net,001-874-988-1781x47362,6011423766303950,2024-06-22 +Resort Hotel,1,245,2017,December,50,10,1,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,70.25,0,1,Canceled,Brian Murphy,mthompson@example.com,241.441.3090x444,4143941304911004960,2024-11-23 +Resort Hotel,1,11,2017,June,26,26,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Transient,81.99,0,2,Canceled,Chelsey Clark,lopezleonard@example.net,+1-207-605-1740,4644954411888441,2024-12-16 +City Hotel,0,7,2017,May,21,23,1,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,113.39,0,1,Check-Out,Teresa Martinez,amy82@example.net,2432705136,180091401559092,2026-02-15 +City Hotel,0,14,2017,October,41,8,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,0,Transient-Party,60.32,0,2,Check-Out,Howard Thompson,jacksonjohnny@example.com,(835)857-3295,4663290692786809677,2024-10-12 +Resort Hotel,0,25,2017,January,3,18,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,248.4,0,1,Check-Out,Eugene Price,courtney39@example.net,618.383.4441x630,348339973983680,2024-12-24 +Resort Hotel,0,52,2017,October,40,3,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,94.06,0,0,Check-Out,Austin Briggs,jroberts@example.com,918.567.5979x90474,4857260536889986003,2025-06-09 +Resort Hotel,0,23,2017,June,24,12,3,10,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,133.21,1,0,Check-Out,Jackie Jones,uvasquez@example.net,(537)776-3941x29420,346255983313753,2025-05-31 +City Hotel,1,268,2017,September,36,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,106.35,0,0,Canceled,Eric George,albertgates@example.org,3699334085,4339982611082915038,2025-07-15 +City Hotel,0,17,2017,February,5,2,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,158.43,0,0,Check-Out,Mrs. Kimberly Mooney,hilljamie@example.org,261-711-0947x40955,379885142407748,2024-08-28 +Resort Hotel,0,0,2017,November,47,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,2,No Deposit,14.0,78.0,0,Transient,51.81,1,1,Check-Out,Carolyn Haley,johndavis@example.net,001-315-497-8004,377843080515651,2025-12-16 +City Hotel,0,3,2017,August,35,25,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,2,No Deposit,14.0,179.0,0,Transient-Party,230.24,0,0,Check-Out,Vicki Horton,jonesbrittney@example.net,3979493558,4454251170598,2025-09-09 +City Hotel,1,101,2017,September,38,22,1,0,2,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,153.26,0,0,Canceled,Valerie Benson,osnow@example.net,(250)366-7417,4502895966880393989,2024-05-04 +Resort Hotel,0,2,2017,October,43,22,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,50.15,0,0,Check-Out,Mark Henson,derrickowens@example.org,888-582-6308,6508843535118431,2024-08-21 +City Hotel,0,54,2017,April,15,12,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,120.15,0,0,Check-Out,Samuel Olson,matthewgarcia@example.net,840.337.7398,676174095973,2024-05-28 +City Hotel,0,150,2017,August,32,4,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,138.11,0,2,Check-Out,Lee Richards,james14@example.com,6553838020,4847812354633856066,2026-02-28 +City Hotel,0,39,2017,April,14,2,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.32,0,1,Check-Out,Martin Hall,paul97@example.net,+1-237-412-6259x50688,3596088354256991,2025-06-10 +City Hotel,0,54,2017,January,4,25,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,40.37,0,0,Check-Out,Virginia Hall,johnmorgan@example.org,320.534.9206x090,376239134739440,2024-08-12 +City Hotel,1,85,2017,February,8,22,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,84.92,0,1,Canceled,Stephanie Parker,frostsarah@example.net,+1-585-287-2381x464,3551390166907552,2024-11-28 +City Hotel,0,3,2017,March,13,27,1,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,D,A,0,No Deposit,13.0,179.0,0,Transient,1.57,1,1,Check-Out,Nicole Harvey,kelly46@example.net,7725215373,3534671860431664,2024-12-12 +City Hotel,0,20,2017,April,15,10,1,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,249.0,0,Transient-Party,45.12,0,0,Check-Out,James Phillips,evansalicia@example.com,952-394-6069,4509607876747794275,2024-08-18 +City Hotel,0,19,2017,February,7,12,0,1,2,0.0,0,SC,RUS,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Group,125.5,0,1,Check-Out,Dan Johnson,sgonzalez@example.com,246-412-4103x47280,2228663402000951,2025-05-17 +City Hotel,1,165,2017,March,11,12,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,134.53,0,0,Canceled,Linda Bautista,cervantesryan@example.net,5739712849,6011387377677781,2025-01-01 +Resort Hotel,0,1,2017,April,15,11,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,107.62,0,1,Check-Out,Erin Ramirez,rodriguezmaria@example.com,576-638-3336,4155678445717,2025-03-27 +City Hotel,0,90,2017,June,23,9,2,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,136.36,0,1,Check-Out,Paige Meyer,brownamy@example.com,(491)780-6044,342785534031334,2025-05-30 +Resort Hotel,1,256,2017,October,41,14,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,50.45,0,2,Canceled,Maria Roberts,crichardson@example.com,001-695-264-0524x4989,36181310923616,2024-08-17 +City Hotel,1,414,2017,July,27,7,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,22,Transient,62.44,0,0,Canceled,Ryan Rivera,sara02@example.org,974-306-3387,3572020064763121,2024-04-10 +City Hotel,1,28,2017,October,41,14,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,95.42,0,2,Canceled,Joshua Knox,richard41@example.com,9104413215,3550893769230158,2024-07-15 +City Hotel,1,21,2017,March,10,6,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.56,0,1,No-Show,Danielle Mcdaniel,ruizdaniel@example.com,839-727-9507x0769,3513618035981102,2025-11-06 +Resort Hotel,0,298,2017,April,17,22,2,5,2,0.0,0,HB,RUS,Direct,Direct,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,95.45,1,3,Check-Out,Lisa James,christopheresparza@example.com,250-679-5961,4217483402042,2024-06-09 +Resort Hotel,0,170,2017,May,22,25,2,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,123.18,0,0,Check-Out,Jeremy Smith,john13@example.com,934-210-6544x36677,4287653792566491,2025-09-21 +City Hotel,0,121,2017,September,37,9,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,66.47,1,0,Check-Out,Andrea Lee,hunterjenna@example.net,6617709383,4026175301192,2025-01-08 +City Hotel,1,414,2017,August,33,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.13,0,1,Canceled,Brenda Harris,kgraves@example.org,850-435-0889,180042153625946,2025-08-19 +City Hotel,0,3,2017,December,2,31,1,0,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,15.0,45.0,0,Transient,0.94,0,1,Check-Out,Kevin Guerra,cherylbrown@example.net,(678)585-6467,4077855456407554561,2026-01-18 +City Hotel,0,36,2017,March,13,27,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,92.31,0,1,Check-Out,Cynthia Miller,alexanderamber@example.com,001-654-980-3804x1635,180006120700785,2025-03-03 +City Hotel,0,15,2017,February,8,19,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.69,0,1,Check-Out,Emily Griffith,chelsea91@example.net,954-629-2602x717,4471830783279,2025-11-16 +Resort Hotel,0,0,2017,November,46,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,14.0,236.0,0,Transient,44.04,0,0,Check-Out,Christopher Wright,willieleonard@example.org,001-324-896-4034x76515,30187683540958,2026-02-12 +City Hotel,1,414,2017,September,36,3,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,103.83,0,0,Canceled,Jerome Reid,normansteven@example.net,+1-606-438-0938x5029,3544312465309496,2026-03-02 +City Hotel,0,142,2017,July,29,19,1,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,80.49,0,0,Check-Out,Richard Miller,oyates@example.net,001-809-696-9753x70701,4625286525746,2025-02-22 +City Hotel,0,0,2017,August,34,22,1,0,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient,197.77,0,1,Check-Out,Jennifer Jackson,joseburch@example.net,(451)241-2445x6808,4083258002528,2024-08-05 +Resort Hotel,0,111,2017,April,17,25,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,83.68,0,1,Check-Out,Jonathan Moss,rhernandez@example.com,001-247-234-0035x39321,4941961366100159154,2025-04-17 +Resort Hotel,0,337,2017,August,34,22,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,235.0,179.0,0,Transient,252.0,1,3,Check-Out,Sally Leon,griffithdavid@example.net,+1-404-752-7362,6011684022378009,2025-07-15 +City Hotel,0,10,2017,October,43,23,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,116.04,0,3,Check-Out,James Dickerson,jonesrobert@example.com,(659)924-9088,4426075757938206560,2025-03-29 +Resort Hotel,0,13,2017,March,13,28,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,234.0,179.0,0,Transient,97.59,0,1,Check-Out,Tammy Larson,youngtina@example.net,001-787-429-9148x4538,4427922141367328,2026-03-01 +City Hotel,0,2,2017,December,51,23,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,E,0,No Deposit,14.0,78.0,0,Transient,88.02,0,1,Check-Out,Nicholas Scott,hubervictor@example.com,(747)304-8190,4056076307796961890,2024-07-16 +City Hotel,0,7,2017,November,44,3,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.99,0,0,Check-Out,Jesse Brooks,cranecolin@example.com,669.648.7788x893,30597596963214,2026-02-19 +City Hotel,1,388,2017,May,19,4,2,2,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,Non Refund,307.0,179.0,0,Transient-Party,114.25,0,0,Canceled,Andrea Taylor,jenningsryan@example.org,001-384-914-4424,4614602151578500,2025-06-01 +Resort Hotel,1,105,2017,August,32,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,63.25,0,0,No-Show,Christopher Lopez,kevindouglas@example.org,001-342-716-6197,639002439995,2025-04-19 +City Hotel,1,10,2017,January,2,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,82.05,0,1,Canceled,Jonathan Swanson,hunterrandall@example.org,610.346.2292,4030264474357,2024-08-02 +City Hotel,1,188,2017,May,21,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,123.58,0,0,Canceled,Timothy Bentley DVM,rharding@example.com,+1-289-409-1638x210,6596563625454644,2025-09-25 +Resort Hotel,0,8,2017,December,49,5,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,316.0,179.0,0,Transient-Party,63.74,0,1,Check-Out,John Davidson,nicholas25@example.org,985.373.6771x7415,180024790935599,2024-09-29 +Resort Hotel,1,137,2017,July,31,27,0,3,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Jennifer Williams,bgreen@example.org,(279)966-9956x972,676370834696,2024-10-16 +Resort Hotel,0,97,2017,August,32,4,2,5,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,38.0,179.0,0,Transient,108.42,1,0,Check-Out,Janice Cunningham,elliottmary@example.net,3047380855,213166848225670,2026-03-10 +Resort Hotel,0,3,2017,February,9,26,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,C,0,No Deposit,14.0,62.0,0,Transient,43.79,0,0,Check-Out,Jeffrey Scott,sherridaniels@example.org,328.329.6530x0657,3535962988657036,2026-03-08 +Resort Hotel,0,52,2017,December,52,24,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,L,0,No Deposit,13.0,179.0,0,Transient,113.49,0,0,Check-Out,Miranda Hicks,ashley01@example.com,(688)932-2165x5875,578958325289,2024-10-24 +City Hotel,0,326,2017,October,42,19,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.79,0,0,Check-Out,Michael Horton DDS,annette07@example.org,487.708.8261,502010159650,2025-10-02 +City Hotel,0,151,2017,August,32,9,0,2,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,162.78,0,3,Check-Out,Nancy Allen,michaelmurphy@example.org,310.259.5901x1806,576591846885,2025-04-05 +Resort Hotel,1,311,2017,December,52,24,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,0,Transient,86.04,0,0,Canceled,Robert Mccoy,sjones@example.net,314-937-2317x29661,639071899830,2024-07-11 +Resort Hotel,1,0,2017,May,19,11,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,80.0,179.0,0,Transient-Party,74.84,0,0,Canceled,Melissa Brewer,marksjustin@example.net,279-488-0782,4728457919266,2025-05-20 +City Hotel,0,36,2017,March,12,17,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,102.3,0,1,Check-Out,Jesus Becker,oflores@example.com,415.844.7506x309,676350968332,2024-11-28 +City Hotel,0,168,2017,October,42,20,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,79.88,1,1,Check-Out,Lance Lynn,sharris@example.org,(304)310-5191x757,3569400549136686,2024-04-04 +City Hotel,0,10,2017,April,17,26,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,84.95,0,2,Check-Out,Alexandria Wise,cannondavid@example.com,8719642925,4011134315012,2024-10-25 +City Hotel,1,309,2017,October,42,15,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,62,Contract,63.24,0,0,Canceled,Sydney Sanders,lsmith@example.com,(384)557-0840x87081,30482418127902,2025-05-23 +Resort Hotel,0,20,2017,July,28,9,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,211.12,0,2,Check-Out,Stephanie Stone,maldonadowendy@example.org,4906688988,213192448395549,2025-11-20 +City Hotel,0,0,2017,December,51,21,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,E,E,0,No Deposit,13.0,45.0,0,Transient,64.35,0,1,Check-Out,Jay Gallegos,joshua98@example.net,(805)994-0581x31509,6521073999697414,2024-04-24 +City Hotel,1,202,2017,August,35,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,138.85,0,1,Check-Out,Eric Ponce,richard10@example.org,+1-486-280-7652x615,3572055202724999,2024-12-11 +City Hotel,0,45,2017,August,32,9,2,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,238.14,0,0,Check-Out,Janet Parker,kennethmartinez@example.org,4547834582,30252962826534,2025-01-11 +Resort Hotel,0,39,2017,December,49,4,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,85.62,0,1,Check-Out,Shawn Luna,jamesfowler@example.org,001-997-372-9674x28427,4486007328040563,2025-05-20 +Resort Hotel,1,0,2017,February,6,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,B,0,No Deposit,183.0,179.0,0,Transient,32.94,0,0,No-Show,Mark Frank,danielalvarez@example.net,765-982-7308,6528706720144536,2024-10-28 +Resort Hotel,1,21,2017,December,49,2,1,1,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient-Party,234.8,0,0,Canceled,Charles Goodman,drewhamilton@example.net,555-928-2613x0839,4927119094658444113,2024-12-01 +City Hotel,1,129,2017,April,15,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,39,Transient,129.97,0,0,Canceled,Jennifer Parker,millerjill@example.com,(732)646-2053,060425387150,2024-07-15 +City Hotel,0,148,2017,March,14,30,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.22,0,1,Check-Out,Dr. April Jones,mayspaul@example.net,(371)880-2172x2821,3547354356218862,2025-07-08 +Resort Hotel,0,78,2017,October,43,23,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,E,0,No Deposit,82.0,179.0,75,Transient-Party,78.37,0,0,Check-Out,Kelly Pena,hwade@example.net,265.865.4172x937,213128673777837,2025-12-03 +City Hotel,1,129,2017,March,13,29,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient,108.16,0,0,Canceled,Carolyn Brooks,john79@example.org,3916577252,4321708115904692,2025-11-19 +City Hotel,0,225,2017,May,19,4,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,0,No Deposit,37.0,179.0,0,Transient-Party,127.37,0,0,Check-Out,Christina White,pricejohn@example.com,+1-460-759-9777x53399,3563501719452047,2025-09-04 +City Hotel,1,306,2017,November,45,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,0,No Deposit,89.0,331.0,0,Transient-Party,83.4,0,0,No-Show,Joanne Olsen,josejones@example.net,420.238.8664x27606,3554788000155030,2025-07-19 +Resort Hotel,0,0,2017,August,32,5,2,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,1,1,Check-Out,Anthony White,christiegarcia@example.org,001-635-225-1916x248,375815413633437,2024-12-12 +City Hotel,1,370,2017,June,22,2,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,2,Non Refund,2.0,179.0,0,Transient,108.41,0,0,Canceled,Deanna Barrera,beckerjulia@example.org,373-801-0721x8860,2228549696608148,2026-03-21 +Resort Hotel,0,0,2017,January,2,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,64.52,1,2,Check-Out,Mark Weber,brendan43@example.com,6038456062,4591156848701,2025-04-30 +City Hotel,1,157,2017,June,26,22,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.34,0,0,Canceled,Carol Carter,claytonquinn@example.org,+1-266-245-2572x5380,4515188026309,2025-06-19 +City Hotel,0,10,2017,November,46,17,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,40,Transient-Party,86.28,0,0,Check-Out,Donald Peterson,schwartzmichelle@example.net,+1-354-798-8810,2292055137017205,2024-11-09 +Resort Hotel,0,39,2017,October,44,31,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,101.78,0,3,Check-Out,Karen Chambers,amandaadkins@example.org,+1-996-362-2431,374202325228492,2026-03-13 +Resort Hotel,1,50,2017,June,26,26,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,240.0,179.0,0,Transient,142.68,0,0,Canceled,Antonio Walton,greenlance@example.com,+1-687-501-4280x47593,376124010536179,2024-06-27 +City Hotel,0,97,2017,June,25,16,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.14,0,1,Check-Out,Kevin Huerta,newmanluke@example.com,+1-233-710-4075x7597,4684358355861710211,2024-10-24 +Resort Hotel,0,18,2017,August,32,8,2,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,216.3,0,1,Check-Out,Joseph Smith,jasondavis@example.com,(846)526-2871,344277472380715,2025-11-21 +City Hotel,0,1,2017,May,20,13,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,83.0,179.0,0,Group,88.73,0,2,Check-Out,Victoria Juarez,destiny43@example.org,428.719.0533,4892605215674887,2025-04-13 +City Hotel,0,37,2017,August,35,30,1,3,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient-Party,132.2,0,0,Check-Out,Kara Rogers,kelly39@example.org,9156806740,4050107844769350,2025-08-13 +Resort Hotel,0,58,2017,September,36,9,0,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,280.0,179.0,0,Transient-Party,87.96,0,1,Check-Out,Jacob Wu,brianowens@example.net,285-823-4077x80450,30228272694176,2025-11-04 +City Hotel,1,1,2017,July,29,22,1,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.55,0,1,Canceled,Dr. Teresa Ortega MD,montoyamark@example.org,+1-389-348-9467x24705,3538691422252396,2025-03-08 +Resort Hotel,0,12,2017,April,17,20,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,58.86,0,1,Check-Out,Henry Rivera,jessica08@example.net,(916)246-4248,6599272910138675,2026-03-17 +Resort Hotel,0,68,2017,September,38,15,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,207.86,0,1,Check-Out,Jesus Hale,sullivanyvonne@example.org,408-817-8242x0603,4611411912094127,2025-08-14 +City Hotel,1,184,2017,October,40,6,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,104.84,0,0,Canceled,Stacy Taylor,sarahwerner@example.com,423.897.0649x151,4949715721828951,2024-05-19 +Resort Hotel,0,13,2017,October,43,24,1,2,2,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,87.78,1,3,Check-Out,Sheila Ramirez,nathanrojas@example.org,753.592.4242,377821802647622,2025-12-05 +City Hotel,1,162,2017,July,27,1,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,111.97,0,0,Canceled,Robin Richardson,xrobinson@example.org,+1-797-275-8980x9392,4781772115671670,2025-12-14 +Resort Hotel,1,49,2017,November,48,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,91.07,0,2,Canceled,Mary Alvarez,lisa34@example.net,308.598.6030x580,213166817279203,2024-10-16 +Resort Hotel,1,89,2017,June,23,3,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,130.75,1,0,Canceled,Cole Andersen,michaelwoods@example.net,373.870.7334,4457093264073300,2026-03-13 +City Hotel,0,19,2017,March,13,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,24.0,179.0,0,Group,132.75,0,1,Check-Out,Robin Smith,charles40@example.net,(988)557-4137,6011529780037562,2024-07-31 +City Hotel,0,41,2017,October,40,3,0,3,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,83.0,179.0,0,Transient-Party,86.35,0,0,Check-Out,Angel Aguirre,robert74@example.com,380-658-5438x314,4515766205850179740,2025-03-09 +City Hotel,0,59,2017,August,32,9,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,102.55,0,3,Check-Out,Jeremy Lawson,robert78@example.org,629.241.0351x8555,180058772174611,2025-11-11 +Resort Hotel,1,55,2017,July,27,5,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,134.5,0,1,Canceled,Lonnie Miller,meyertara@example.net,(328)813-7294x681,6011537840680461,2025-01-21 +City Hotel,1,14,2017,August,32,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,D,0,No Deposit,9.0,179.0,0,Contract,91.21,0,2,Canceled,Timothy Galvan,christopher00@example.com,435-448-1199x28828,213187323904050,2024-07-01 +City Hotel,1,207,2017,May,22,25,1,4,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,113.69,0,0,Canceled,Dr. Susan Navarro,kennethvargas@example.org,728-626-3236,3503068272207583,2026-02-01 +City Hotel,0,55,2017,August,34,22,0,2,1,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,93.69,0,0,Check-Out,Cory Thomas,natashafrost@example.net,(640)640-9370x847,4214499267387908,2024-04-26 +City Hotel,0,40,2017,March,12,19,2,7,3,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,27.0,179.0,75,Transient,86.09,0,0,Check-Out,Laura Vincent,nicholashernandez@example.org,3825025135,6011935309565860,2025-06-15 +City Hotel,0,155,2017,July,27,4,1,0,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,218.68,0,0,Check-Out,Bethany Robles,xrodriguez@example.org,5669763108,4263010617331064,2026-02-23 +Resort Hotel,0,0,2017,February,9,27,2,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,38.58,0,0,Check-Out,Michael Dunn,scott77@example.com,268.741.9937x04393,36484566387498,2024-09-02 +City Hotel,0,18,2017,October,42,13,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,47.04,0,1,Check-Out,Carol Griffin,sara37@example.net,(351)256-3450,6569693477664017,2024-11-29 +City Hotel,1,210,2017,June,26,24,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.59,0,1,Canceled,Matthew Allen,benjamin90@example.net,+1-952-801-4284,4542001239802916,2024-12-25 +Resort Hotel,1,103,2017,March,11,11,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,47.09,0,0,Canceled,Paul Keller,steven52@example.org,9064774834,3533230712434524,2024-08-12 +City Hotel,0,42,2017,August,34,24,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,111.65,0,3,Check-Out,Jeffrey Baldwin,normanmary@example.net,982.720.7590x727,4983362091123759,2025-02-19 +Resort Hotel,0,2,2017,August,35,28,1,1,1,0.0,0,HB,,Direct,Direct,0,0,0,A,C,1,No Deposit,13.0,179.0,0,Group,134.31,0,1,Check-Out,Timothy Orr,crystal01@example.org,961-770-1028x16617,38293692067611,2024-10-20 +City Hotel,0,4,2017,August,35,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,135.6,0,1,Check-Out,Connie Scott,garysmith@example.org,487-351-7243x180,180098679183679,2024-06-12 +City Hotel,0,3,2017,April,17,23,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,331.0,0,Transient,59.21,0,0,Check-Out,Steven Martinez,molinajanet@example.com,518.647.7840x30634,180042166569487,2024-06-19 +City Hotel,1,44,2017,October,44,28,1,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,204.68,0,1,Canceled,Joseph Swanson,joshuasoto@example.com,876.843.8726x1359,4362096327022317509,2025-11-30 +City Hotel,0,104,2017,April,15,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,26.0,179.0,0,Transient,103.91,0,1,Check-Out,Michael Wiggins,donglenn@example.org,216.549.4000,060425777814,2024-12-20 +Resort Hotel,0,157,2017,June,26,23,3,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,209.0,179.0,0,Transient,139.06,0,2,Check-Out,Pamela Burke,charles08@example.net,555-923-7403x28333,4691734390752,2026-03-06 +City Hotel,0,125,2017,August,33,10,1,0,1,0.0,0,SC,PRT,Online TA,TA/TO,1,0,1,A,I,0,No Deposit,6.0,179.0,0,Transient,4.71,0,1,Check-Out,Jamie Love,haynesamy@example.com,+1-907-683-4020x009,2259524272619274,2024-08-02 +Resort Hotel,0,308,2017,March,13,27,0,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,313.0,179.0,0,Transient-Party,62.67,1,1,Check-Out,Jane May,hugheslaurie@example.net,972-443-7468x19834,3584407871051509,2025-03-06 +City Hotel,0,48,2017,November,48,27,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,67.0,179.0,0,Transient,104.91,0,2,Check-Out,Savannah Stokes,matthewwall@example.net,8092316651,6547706239741852,2024-10-07 +City Hotel,1,35,2017,August,35,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.24,0,0,Canceled,Brian Miller,michelle08@example.net,485.339.0332x3160,4023442279657,2026-03-18 +Resort Hotel,0,1,2017,May,18,5,1,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,157.81,0,1,Check-Out,Patrick Pineda,turnermichael@example.net,+1-938-899-9033x54959,6529060714499962,2025-11-29 +Resort Hotel,1,255,2017,September,37,15,2,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,77.94,0,1,Canceled,Audrey Richardson,ismith@example.net,309-870-1130,4695404761888888,2026-01-22 +City Hotel,0,0,2017,May,21,20,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.27,0,1,Check-Out,Tiffany Ray,lindsaywebb@example.com,640.932.7797,4103391680451284,2025-12-24 +City Hotel,0,273,2017,September,37,9,1,0,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,4.75,0,0,Check-Out,Antonio Nichols,travis07@example.com,669-272-5522x013,6525888237914453,2025-05-29 +Resort Hotel,1,92,2017,August,33,15,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,232.99,1,2,Canceled,Veronica Flores,gilbert49@example.net,234.646.7278x35017,4282955943384053,2026-03-14 +Resort Hotel,0,3,2017,January,2,6,1,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient,44.21,1,1,Check-Out,Michael Hogan,donna89@example.com,001-958-393-0095x65336,180007826610302,2024-09-02 +City Hotel,0,9,2017,February,6,6,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.84,0,0,Check-Out,Lindsay Walker,kzamora@example.org,(726)759-2687x3105,345599453045085,2025-01-14 +City Hotel,0,139,2017,May,21,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,125.0,179.0,0,Transient,83.55,0,1,Check-Out,Joshua Murray,cjohnson@example.com,919-388-0204x520,4885617042155,2024-07-06 +Resort Hotel,0,0,2017,March,12,20,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,256.0,179.0,0,Transient,38.12,0,1,Check-Out,Tommy Hood,christopher65@example.net,(887)581-5539x589,4305178391369897,2025-12-23 +City Hotel,0,12,2017,October,43,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Group,84.4,0,1,Check-Out,Mr. Kyle Thomas DDS,ejohnson@example.com,(486)627-9807,4006662042041205,2025-02-09 +City Hotel,0,33,2017,October,41,9,1,3,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,155.73,0,1,Check-Out,Michele George,sarabailey@example.com,694-978-4257,3555964671233401,2024-08-13 +City Hotel,1,147,2017,August,34,23,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,78.0,179.0,0,Transient,115.92,0,0,Canceled,William Martinez,katherinerogers@example.org,001-358-790-3254x885,180036111483661,2024-09-18 +Resort Hotel,0,144,2017,May,18,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,327.0,179.0,0,Transient,46.56,0,0,Check-Out,Michelle Mendoza DVM,owallace@example.com,+1-301-916-2187,4500394899600880,2025-02-02 +City Hotel,0,0,2017,October,41,13,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,331.0,0,Transient,52.15,0,0,Check-Out,Michael Bennett DVM,anthonytorres@example.com,+1-251-328-5727x94977,3533194305039209,2024-07-13 +City Hotel,0,3,2017,January,2,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,49.62,0,1,Check-Out,Ronald Clark,wstrickland@example.net,(681)699-3809x6952,213164269358534,2025-03-11 +City Hotel,0,74,2017,June,26,22,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,139.49,0,1,Check-Out,Rita Graves,peterscourtney@example.com,(314)952-0266,3527294440353529,2025-12-25 +Resort Hotel,0,56,2017,August,33,10,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,237.0,179.0,0,Transient,232.38,0,1,Check-Out,Sean White,maureenbowman@example.net,+1-465-528-2923,3555696195701261,2026-03-03 +City Hotel,0,49,2017,June,25,20,1,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.75,0,0,Check-Out,Mr. William Hopkins,tinaflores@example.net,001-313-650-3049,38050700939615,2026-02-26 +Resort Hotel,0,3,2017,November,49,30,0,1,2,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,253.0,0,Transient,46.83,0,0,Check-Out,Wendy Kelley,christopher12@example.com,844-784-2353x81018,3591745686532762,2024-05-05 +City Hotel,0,41,2017,July,31,27,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.82,0,2,Check-Out,Michael Mooney,rebecca16@example.org,+1-497-542-9239x933,4603500486072215133,2024-07-03 +Resort Hotel,0,91,2017,May,19,8,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,85.0,179.0,0,Transient-Party,80.59,0,0,Check-Out,Jeanne Rose,nmcgee@example.net,(503)524-8363x2670,4070565354221,2025-06-25 +Resort Hotel,0,320,2017,September,36,3,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,53.89,0,1,Check-Out,Michael Lee,glenn05@example.com,9877809174,6552168227555780,2024-09-11 +City Hotel,0,259,2017,October,40,3,2,5,3,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,109.5,0,0,Check-Out,Jennifer Anderson,ssmith@example.net,869.397.5454,4797126657561249,2026-02-13 +City Hotel,0,170,2017,April,17,26,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,138.09,0,2,Check-Out,Lauren Trujillo,dustinduarte@example.org,935-618-7028x0416,30583355898270,2025-12-31 +Resort Hotel,0,19,2017,July,29,20,2,5,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,156.99,0,0,Check-Out,Michelle Ellis,zsaunders@example.com,+1-756-607-2811x0229,3512515504711542,2025-06-24 +City Hotel,0,98,2017,July,30,29,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,194.25,0,2,Check-Out,Chad Dominguez,oclark@example.net,(890)465-0904x578,4896602767237645729,2024-03-28 +City Hotel,0,197,2017,August,32,4,2,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,15.0,179.0,0,Transient,252.0,1,0,Check-Out,Charles Robinson,nathangeorge@example.org,001-418-732-3470x01644,6580771968713173,2024-07-07 +City Hotel,0,8,2017,March,11,12,2,7,2,1.0,0,BB,BRA,Online TA,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,138.12,0,0,Check-Out,Nancy Smith,flittle@example.net,+1-935-444-8231x474,4339520472500800172,2025-03-30 +City Hotel,1,136,2017,June,24,9,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,185.41,0,1,Canceled,Laura Gregory,airwin@example.net,901.346.6505,4850879800955,2024-11-19 +Resort Hotel,0,11,2017,June,23,3,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,10.0,179.0,0,Transient,1.92,0,3,Check-Out,Brittany Clements MD,walkeranne@example.org,001-335-410-9618x97014,347123073883920,2026-02-01 +Resort Hotel,0,18,2017,August,35,26,2,2,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Contract,231.07,1,1,Check-Out,Tammy Davis,andersonbenjamin@example.com,001-780-262-6709,3532079786536362,2024-10-04 +Resort Hotel,0,0,2017,March,12,19,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,I,1,No Deposit,242.0,179.0,0,Transient,0.5099000000000001,1,1,Check-Out,Catherine Williams,antonio89@example.net,001-768-983-5695x47292,4342490864743812,2024-12-30 +Resort Hotel,0,161,2017,August,33,13,1,7,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,247.0,179.0,0,Transient,252.0,0,1,Check-Out,Miss Leslie Booker,marycook@example.net,001-991-311-4463x3098,4199096259639020,2026-01-14 +City Hotel,1,403,2017,August,34,20,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,121.13,0,0,Canceled,Jennifer Johnson,williamselizabeth@example.org,836.256.9958x862,38544478532917,2025-03-19 +Resort Hotel,1,146,2017,March,12,19,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,239.0,179.0,0,Transient,39.91,0,2,Canceled,John Watts,bishopamanda@example.com,(470)990-8632,3577485915232656,2025-11-17 +City Hotel,1,47,2017,May,20,18,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.11,0,0,Canceled,Marissa Bennett,logannelson@example.org,518.904.1934x6606,3555771101692829,2024-08-14 +Resort Hotel,0,54,2017,March,13,27,0,3,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,53.59,1,1,Check-Out,Rebecca Barrett,andrewlivingston@example.com,+1-690-349-6142x00409,378409823565467,2024-12-08 +City Hotel,1,135,2017,December,52,29,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,75,Transient,81.92,0,0,Canceled,Sharon Santos,david07@example.com,993-580-9730x4518,36764871623392,2024-06-04 +City Hotel,1,414,2017,August,35,29,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.31,0,0,Canceled,Matthew Richardson,mary60@example.org,463.615.9709x4822,4738953849158622,2024-09-20 +City Hotel,0,58,2017,October,40,4,2,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,73.36,1,0,Check-Out,Bradley Burns,karen37@example.net,5149640248,180030498497121,2025-06-14 +City Hotel,0,137,2017,March,13,23,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,76.88,0,1,Check-Out,Katrina Johnson,davishannah@example.net,7787997203,4758298128051121,2024-09-10 +City Hotel,0,56,2017,April,18,27,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,166.19,0,1,Check-Out,Laura Hill,dosborn@example.net,7465807502,4732933485964141,2024-08-07 +Resort Hotel,0,361,2017,May,22,31,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,Refundable,341.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Rebecca White,chernandez@example.org,2296412553,30025758052550,2024-11-25 +City Hotel,0,0,2017,March,10,8,0,2,2,0.0,0,BB,BEL,Online TA,Direct,1,0,1,D,D,2,No Deposit,11.0,179.0,0,Transient,50.35,0,1,Check-Out,Mr. Jeffrey Duncan,dianawood@example.com,406.291.9069,4916935547394517372,2025-07-03 +City Hotel,0,38,2017,September,38,18,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.9,0,1,Check-Out,Arthur Stout,elawrence@example.com,589-808-8796x8834,4610074799030811,2024-06-06 +City Hotel,0,0,2017,January,4,22,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,73.18,1,0,Check-Out,Cathy Hess,julie08@example.com,6595139732,4383540697408312,2024-03-30 +City Hotel,0,12,2017,August,32,10,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,178.0,0,1,Check-Out,Justin Herrera,karenwhite@example.com,905.729.5438x4220,6011487156861091,2025-09-02 +Resort Hotel,1,191,2017,July,27,2,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,131.18,0,2,Canceled,Katherine Stone,wallerallison@example.com,001-782-392-4119x70653,2286914213304663,2026-03-12 +City Hotel,1,103,2017,May,20,15,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.5,0,0,Canceled,Michelle Tyler,rickycarey@example.org,(339)417-4552,376747619141809,2025-10-24 +Resort Hotel,0,0,2017,May,20,16,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,47.68,1,1,Check-Out,Paul Sheppard,bmorgan@example.net,254-510-4224x70494,2257938706953160,2025-12-01 +City Hotel,1,345,2017,August,35,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,126.3,0,0,Canceled,Catherine George,katrinamontgomery@example.net,938-930-8238x57975,4857435055297,2025-08-26 +Resort Hotel,1,209,2017,April,16,16,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,234.0,179.0,0,Transient,214.85,0,0,Canceled,Justin Mcbride,hruiz@example.org,659.659.9230x695,676181018224,2024-12-14 +City Hotel,1,305,2017,August,34,21,0,2,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient-Party,174.01,0,1,Canceled,Carl Harris,dan97@example.net,269-547-3016x23374,349076060634888,2025-02-17 +City Hotel,1,114,2017,June,23,4,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.82,0,0,Canceled,Justin York,chunter@example.com,+1-464-505-6159x61384,4808315833335415,2025-07-18 +City Hotel,1,9,2017,May,22,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,117.15,0,1,Canceled,William Hunter,alisonburns@example.net,484.999.6038x7509,371046975867809,2025-06-06 +City Hotel,0,13,2017,January,2,4,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,131.51,0,1,Check-Out,Joshua Henderson,markhudson@example.com,(732)696-2528,675935367820,2024-12-16 +City Hotel,1,394,2017,September,36,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.24,0,0,Canceled,April Turner,svazquez@example.com,330-377-9437,344577938725373,2025-10-30 +City Hotel,0,17,2017,July,30,23,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.2,0,2,Check-Out,Kelly Patton,valenzuelamichael@example.org,649.449.3351,579897149103,2026-03-15 +City Hotel,1,0,2017,August,32,7,0,1,3,0.0,0,SC,PRT,Complementary,Direct,0,0,0,P,P,0,No Deposit,19.0,331.0,0,Transient,5.58,0,0,Canceled,Jill Ray,thomas76@example.org,001-727-685-0064x47828,3541477375509676,2025-01-22 +Resort Hotel,0,25,2017,June,24,8,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,178.98,0,1,Check-Out,Kelly Andersen,dhudson@example.org,001-265-248-2369x29084,571152559787,2024-12-18 +Resort Hotel,0,101,2017,March,13,28,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,75,Transient-Party,80.21,0,0,Check-Out,Joshua Clark,michaelpatterson@example.com,(439)455-6984,4929462457190161587,2025-01-28 +City Hotel,0,246,2017,March,13,23,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.16,0,0,Check-Out,Robert Young,melissa14@example.com,001-789-559-8378x4729,180047066227029,2025-08-08 +City Hotel,1,63,2017,November,47,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient,81.88,0,0,No-Show,Elijah Wall,catherine83@example.org,+1-274-809-5764x43742,3525956221019642,2024-10-17 +City Hotel,0,94,2017,July,29,15,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,8.0,179.0,0,Transient,126.01,0,0,Check-Out,Lindsey Robinson,james09@example.net,4128825786,4320215334428561,2024-07-30 +City Hotel,0,39,2017,July,27,4,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,133.54,0,1,Check-Out,Carl Dean,jeremy18@example.net,(718)216-7898,3550585059555704,2024-06-25 +Resort Hotel,1,100,2017,May,21,23,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient,78.63,0,0,Canceled,David James,daniellucas@example.com,203-913-2822x200,2292203656019075,2025-01-12 +City Hotel,0,369,2017,June,25,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,83.0,179.0,0,Transient-Party,73.2,0,0,Check-Out,Jennifer Miller,brandonortega@example.net,+1-863-982-5448x65944,639057543212,2025-02-25 +Resort Hotel,1,157,2017,March,10,8,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,51.41,0,0,Canceled,Jeffery Neal,xmiranda@example.com,(597)701-5024x717,4622737818473,2024-11-06 +City Hotel,1,162,2017,August,34,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,246.3,0,0,Canceled,Andrea Oconnor,lisabarnett@example.net,757.736.3459x360,213131758930230,2025-06-14 +City Hotel,0,103,2017,July,30,26,0,3,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.01,0,2,Check-Out,Melissa Lee MD,colemandaniel@example.org,246-480-0339,38229815916987,2025-10-12 +City Hotel,1,1,2017,August,33,13,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.92,0,0,No-Show,Samantha Jacobs,xmitchell@example.org,783.640.8855,5362050526944562,2024-09-26 +City Hotel,0,12,2017,May,19,11,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,156.71,0,1,Check-Out,Christian Riddle,vhanson@example.com,001-349-606-0442,2295307598000502,2024-05-30 +City Hotel,1,152,2017,October,42,16,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,101.26,0,0,Canceled,Alexander Munoz,egray@example.org,001-991-735-6661x346,4935460090317692,2025-10-26 +City Hotel,1,414,2017,October,42,19,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,38,Transient,70.36,0,0,Canceled,Caleb Rodriguez,urios@example.org,(335)810-4171x20141,4526978148237,2024-04-05 +City Hotel,1,159,2017,August,33,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,117.92,0,0,Canceled,Andrea Bowman,melissa09@example.com,001-536-653-0929x549,3577039556621253,2024-10-01 +City Hotel,0,2,2017,April,17,26,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,C,0,No Deposit,7.0,62.0,0,Transient-Party,67.27,0,1,Check-Out,Gavin Nelson,zachary13@example.net,5414385245,569499741803,2024-09-27 +City Hotel,0,20,2017,September,36,8,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,48.78,0,1,Check-Out,Courtney Smith,joshuaruiz@example.net,001-784-635-3882,4383039786526,2026-02-26 +City Hotel,1,48,2017,November,45,4,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,99.61,0,1,Canceled,Wayne Gray,lori00@example.com,001-863-910-0305x707,4104587910105725599,2025-06-17 +Resort Hotel,0,13,2017,September,36,8,2,4,3,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,239.0,179.0,0,Transient,164.39,0,1,Check-Out,Timothy Thompson,michelle85@example.net,785-868-4996x802,379727763319788,2024-05-02 +City Hotel,0,14,2017,January,4,24,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,222.0,0,Transient,109.88,0,0,Check-Out,Elizabeth Nicholson,smithkatherine@example.org,(838)995-0521,4274383897135555,2025-04-08 +City Hotel,0,33,2017,March,10,2,0,2,1,0.0,0,SC,BRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.06,0,1,Check-Out,Joseph Graves PhD,alanjimenez@example.net,+1-227-371-2802x415,4629620872101843,2024-06-11 +Resort Hotel,0,1,2017,March,13,24,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,15.0,179.0,0,Transient,131.07,0,0,Check-Out,Lisa Mosley,john63@example.com,001-611-457-0361,6011966672293749,2025-02-23 +City Hotel,1,27,2017,August,32,8,0,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,208.83,0,0,Canceled,Travis Price,umiller@example.com,956-984-4153,370648390989455,2024-06-28 +Resort Hotel,1,40,2017,April,18,29,2,6,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,142.37,0,1,Canceled,Patrick Faulkner,amy79@example.org,987-835-5962x8097,676307281144,2024-05-04 +City Hotel,0,13,2017,November,47,23,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,109.58,0,0,Check-Out,Linda Atkinson,lorraine48@example.com,(572)566-7714x53167,4791400799929648,2025-07-21 +Resort Hotel,0,35,2017,April,14,4,1,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,98.17,0,1,Check-Out,Cameron Smith,amybaker@example.org,7862101209,374965617888328,2025-06-01 +City Hotel,0,15,2017,March,13,27,0,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,152.33,0,1,Check-Out,Brittney Martinez,hsmith@example.com,+1-748-868-8586x75390,370131691879634,2025-12-05 +City Hotel,0,0,2017,March,9,2,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.91,1,1,Check-Out,Nicolas Brown,perezdonna@example.org,355.902.1320x682,3529387093280292,2025-06-29 +Resort Hotel,0,53,2017,February,6,6,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,54.47,0,1,Check-Out,Vanessa Zimmerman,ramirezdaniel@example.org,236.915.0306,5342631109353795,2024-11-03 +City Hotel,0,3,2017,July,28,13,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,34.0,179.0,0,Transient-Party,75.93,0,0,Check-Out,Lee Mann,bwelch@example.net,622.404.4250x503,3504605820667351,2026-02-20 +City Hotel,1,298,2017,October,44,31,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,107.35,0,0,Canceled,William Lindsey,stricklandalison@example.net,705.295.2445,3595817856861093,2025-12-19 +City Hotel,0,14,2017,February,6,6,2,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,78.61,0,0,Check-Out,Desiree Patterson,wellsscott@example.com,380-753-4911x91602,30141211800293,2026-01-05 +Resort Hotel,1,5,2017,August,32,4,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,H,H,0,No Deposit,14.0,179.0,0,Transient,250.54,0,0,No-Show,Sierra Cervantes,mary67@example.org,5752070086,4842621195406278190,2024-12-31 +City Hotel,0,43,2017,July,29,19,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,1,No Deposit,14.0,206.0,0,Transient-Party,101.24,0,0,Check-Out,Scott Meza,natalie42@example.org,(605)829-0944,4506087398338499,2024-08-07 +City Hotel,0,2,2017,August,32,7,0,3,2,0.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,193.56,0,2,Check-Out,Erik Davis,antonio08@example.org,+1-375-525-5400x238,4694365042242289,2025-03-30 +Resort Hotel,0,42,2017,April,14,6,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,80.31,0,1,Check-Out,Nicholas Duffy,kruegerbryan@example.net,(528)850-4907x7650,3566157427526460,2025-07-17 +City Hotel,0,13,2017,June,23,7,3,0,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,C,A,1,No Deposit,15.0,179.0,0,Transient,105.25,0,1,Check-Out,Anthony Paul,robertsmith@example.com,976.705.6836,180002469788986,2025-04-27 +City Hotel,0,11,2017,January,5,28,0,1,2,2.0,0,SC,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Check-Out,Katherine Baxter,bryanwilson@example.net,467.862.7902x7977,213132212643666,2025-01-30 +Resort Hotel,1,102,2017,October,40,2,1,0,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,277.0,179.0,0,Transient,76.32,0,0,Canceled,Jessica Romero,moodymarissa@example.net,222.578.2465x832,4268017925289,2024-03-28 +Resort Hotel,1,168,2017,August,33,13,2,5,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Canceled,Karen Robertson,vandrade@example.net,(634)750-3855,372618565000600,2025-01-14 +Resort Hotel,1,112,2017,November,45,8,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,Non Refund,310.0,179.0,75,Transient,93.89,0,0,Canceled,Dr. Melissa Sullivan DDS,aguilarlaura@example.org,(362)962-1418x76283,4582323111124115,2024-10-31 +City Hotel,0,2,2017,November,47,22,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Nichole Klein,edwardortiz@example.net,915.785.8468x573,6555001506348790,2024-06-01 +City Hotel,0,245,2017,September,35,1,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,62,Transient-Party,105.44,0,0,Check-Out,Nicole Sanchez,rwalker@example.com,217.682.4022x614,213123033306880,2025-12-03 +Resort Hotel,0,11,2017,March,12,19,0,1,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,I,0,No Deposit,179.0,331.0,0,Transient,3.94,0,0,Check-Out,Tiffany Morrow,cparker@example.net,484-560-9485,4642292411484255,2025-10-06 +City Hotel,0,45,2017,March,13,23,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,63.15,0,1,Check-Out,Kelsey Lynch,kim79@example.net,(461)614-5232x516,213168336155005,2024-05-20 +City Hotel,0,136,2017,March,10,7,1,2,2,1.0,0,BB,GBR,Online TA,TA/TO,1,0,1,A,B,1,No Deposit,9.0,179.0,0,Transient,115.51,0,0,Check-Out,Traci Craig,linda59@example.org,(487)815-8577,4023573988000940,2024-07-25 +City Hotel,1,213,2017,April,14,5,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,94.66,0,0,Canceled,Kelly Walker,alexisbrown@example.org,609-909-2830x73718,180041648425128,2025-12-13 +City Hotel,1,22,2017,May,21,24,1,0,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.46,0,0,No-Show,Ryan Palmer,krista07@example.com,3727253075,4939315152011961,2025-05-26 +Resort Hotel,0,62,2017,August,35,27,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,133.91,1,2,Check-Out,Jenny Gray,stephanie35@example.net,+1-248-557-0532,2229886716815942,2024-06-06 +Resort Hotel,0,327,2017,August,31,3,1,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,1,1,Check-Out,Brian Sloan,edwinfisher@example.org,001-643-457-8009x0415,2245545742370864,2025-12-16 +Resort Hotel,0,13,2017,January,2,9,1,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,C,0,No Deposit,340.0,179.0,0,Transient,0.91,0,0,Check-Out,Joshua Miranda,haleyharrison@example.org,555-798-1380x9673,6539158791772513,2025-01-23 +City Hotel,1,218,2017,September,39,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,92.82,0,0,Canceled,Edwin Carter,shawn74@example.com,+1-477-480-1385,5384527285077316,2025-11-23 +City Hotel,0,3,2017,January,2,4,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,63.26,0,1,Canceled,Oscar Carroll,fowlerrobyn@example.com,2985819579,376236987868268,2025-07-11 +City Hotel,1,53,2017,December,50,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,133.63,0,0,Canceled,Eric Fitzpatrick,davegraves@example.net,806.409.6455x899,344781046275947,2024-04-24 +Resort Hotel,0,81,2017,April,17,24,0,3,2,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,51.45,1,0,Check-Out,Samantha Johnson,erin84@example.com,+1-428-937-3979x666,372529293175095,2024-10-10 +Resort Hotel,0,96,2017,May,21,23,1,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,86.57,1,0,Check-Out,Luke Freeman,simmonskaren@example.net,539-615-8356,4306022487240,2026-03-06 +Resort Hotel,1,414,2017,August,31,4,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,0,Non Refund,10.0,179.0,0,Transient,91.31,0,0,Canceled,Luis Murphy,robertchandler@example.com,001-709-453-7455x72841,36519245844268,2024-04-03 +City Hotel,0,158,2017,June,23,2,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,132.05,1,1,Check-Out,Aaron Zamora,nicholas26@example.net,9836759982,060463491625,2024-12-29 +Resort Hotel,0,32,2017,November,45,5,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,77.7,1,0,Check-Out,Henry Garcia,kochjonathan@example.org,(947)355-5300x82529,4905883391050,2025-11-20 +City Hotel,1,106,2017,April,17,28,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,124.26,0,0,Canceled,Bradley Robertson Jr.,mark01@example.net,525.295.6844x31388,4581338712786028371,2026-02-23 +City Hotel,1,115,2017,June,26,26,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.01,0,0,Canceled,John Moore,matthew70@example.org,858.297.8114x180,30465297148537,2025-10-03 +City Hotel,0,50,2017,March,12,18,0,3,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,64.0,0,Transient-Party,106.74,0,0,Check-Out,Courtney Foster,emily17@example.org,(952)465-0550x02445,30431946223741,2025-04-26 +City Hotel,1,20,2017,August,32,8,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,167.34,0,2,Canceled,Jeffrey White,stephenwillis@example.org,378-835-6825x5164,4606780347303397658,2025-03-01 +City Hotel,0,21,2017,August,34,24,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,64.53,0,3,Check-Out,Ashley Gonzales,walshalison@example.com,477.826.0745x956,4406625039190521,2025-12-14 +City Hotel,0,0,2017,October,43,21,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,105.05,0,1,Check-Out,Candice Gomez,perezkathleen@example.net,951.960.9107,503847896514,2025-03-28 +Resort Hotel,0,45,2017,March,10,3,0,2,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,314.0,179.0,0,Transient,102.53,1,0,Check-Out,Ian Harrell,cherylmurphy@example.org,(466)844-7395,180005189745095,2025-01-20 +City Hotel,0,396,2017,July,31,31,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,263.0,179.0,75,Transient-Party,114.53,0,0,Check-Out,Colton Williams,fishercolton@example.org,(577)779-7954,2224831427550896,2024-11-28 +City Hotel,1,103,2017,December,52,29,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,132.3,0,0,No-Show,Patrick Santana,lynn42@example.com,9696460049,375334495786477,2026-02-02 +City Hotel,0,76,2017,August,31,3,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,114.59,0,1,Check-Out,Cristian Mendoza,marktaylor@example.com,+1-258-672-4072x0534,6011085564133481,2025-03-23 +City Hotel,1,151,2017,July,31,29,0,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.92,0,1,Canceled,Deborah Fisher,shannonaustin@example.org,558.526.0746,676357791554,2025-09-22 +Resort Hotel,1,142,2017,March,13,23,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,11.0,179.0,0,Transient,60.9,0,0,Canceled,Rebecca Klein,collierpaul@example.net,970-665-2808x4655,4718876533533,2026-03-06 +City Hotel,1,45,2017,August,34,23,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,116.88,0,1,Canceled,Phillip Macias,denise44@example.org,981.878.4219,4868416714540206885,2026-01-18 +Resort Hotel,0,82,2017,April,15,10,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient,89.99,0,0,Check-Out,Tammy Cameron,simonbrandi@example.net,+1-633-746-4468x1288,4081020513129,2025-09-12 +City Hotel,0,173,2017,April,14,1,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.63,0,1,Check-Out,Brian Rodriguez,diamondstone@example.org,(673)845-3404x7630,377514071867746,2024-09-20 +City Hotel,0,0,2017,September,37,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,B,B,1,No Deposit,16.0,179.0,0,Transient,85.79,0,1,Check-Out,Christopher Porter,laura96@example.org,(679)604-6980,676129593205,2024-08-05 +City Hotel,1,0,2017,May,19,7,1,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,181.0,0,Transient,90.61,0,0,Canceled,Cynthia Gregory,wagnercharlene@example.net,606-781-2501x87902,6011150258247003,2024-08-15 +City Hotel,0,400,2017,September,37,15,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.66,0,1,Check-Out,William Mclaughlin,imurillo@example.net,001-788-342-2568x0585,6569161264302837,2025-09-02 +City Hotel,1,111,2017,June,25,21,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,B,A,0,Non Refund,12.0,179.0,0,Transient,139.12,0,0,Canceled,Dylan Tucker,daniel88@example.org,343.939.3134,30156299591879,2025-02-26 +Resort Hotel,0,92,2017,May,21,18,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,1,No Deposit,18.0,179.0,0,Transient,114.11,1,1,Check-Out,Danielle Hernandez,annchen@example.com,784.715.9553x952,6011046941741149,2024-07-26 +City Hotel,1,338,2017,October,41,13,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.23,0,0,Canceled,Danielle Wang,kevinwillis@example.org,6757426336,4407362451123090,2025-02-25 +Resort Hotel,0,22,2017,July,28,14,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,87.44,0,1,Check-Out,Wendy Wright,whitepaul@example.net,796-976-4990,30585290168073,2025-02-22 +City Hotel,0,0,2017,November,45,8,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,218.0,0,Transient-Party,101.5,0,0,Check-Out,Christina Mccarthy,oroberts@example.com,001-408-481-7461x38789,4554382713667784,2025-10-18 +City Hotel,1,414,2017,June,25,21,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,82.48,0,0,Canceled,Meredith Shaw,jonathan97@example.org,755.299.6874,4625666808899560479,2024-05-29 +City Hotel,0,23,2017,March,10,3,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,6.0,179.0,0,Transient,132.95,0,1,Check-Out,Willie Garza,umorgan@example.com,2949906000,180044184178259,2025-11-10 +City Hotel,0,110,2017,March,10,2,1,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,85.49,0,1,Check-Out,Crystal Anderson,james82@example.org,(486)453-2597x50398,346915266530411,2025-01-19 +City Hotel,1,259,2017,October,43,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,75.0,179.0,0,Transient,126.04,0,0,Canceled,William Hickman,deborahnelson@example.net,693-327-7315x7292,6515284433141558,2024-05-23 +City Hotel,1,11,2017,August,33,14,0,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.48,0,0,Canceled,Luis Davis,griffinkim@example.net,491.225.5434,676351926388,2024-05-20 +Resort Hotel,0,87,2017,November,46,16,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,79.68,0,0,Check-Out,Jason Torres,rebecca74@example.org,+1-600-791-8539,3572032754599491,2024-08-10 +City Hotel,0,5,2017,September,39,29,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,137.02,0,0,Check-Out,Crystal Rogers,ronnierice@example.net,5325745338,3579366826635328,2025-11-13 +Resort Hotel,0,49,2017,December,51,20,2,2,2,0.0,0,Undefined,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,36.0,179.0,0,Transient,52.27,1,0,Check-Out,Jordan Schneider,scottcarpenter@example.net,001-393-842-9986,3599200401163701,2024-11-04 +City Hotel,1,59,2017,September,36,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,90.46,0,0,Canceled,Derrick Ramirez,cbennett@example.com,206-200-9096,3552430612965637,2024-08-10 +City Hotel,1,21,2017,May,19,9,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,134.3,0,2,Check-Out,Jason Flores,williamsmichael@example.net,(645)267-2667x836,4490726881959117,2024-06-02 +Resort Hotel,0,47,2017,May,20,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,52.52,0,1,Canceled,Andrew Williams,danielkim@example.org,+1-952-204-2452x80714,2419988694172476,2024-08-30 +Resort Hotel,0,0,2017,March,11,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,H,1,No Deposit,17.0,62.0,0,Transient,39.93,1,0,Check-Out,Christy Kennedy,jamessims@example.com,869-640-7621x9185,4002399401920086981,2024-04-30 +Resort Hotel,0,20,2017,March,11,10,0,2,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,168.0,179.0,0,Transient,43.09,0,0,Check-Out,Ashlee Lopez,josephgordon@example.org,(633)350-0784x79916,676137270697,2025-01-02 +City Hotel,0,1,2017,August,32,9,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,1,No Deposit,14.0,179.0,0,Transient,57.06,1,0,Check-Out,Heidi Torres,patrickwright@example.com,001-245-213-8423x21799,3593415920609218,2024-03-27 +City Hotel,1,197,2017,March,14,30,1,2,2,0.0,0,BB,,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.66,0,1,Canceled,Adam Arnold,aliciacurry@example.net,(712)455-5371,5372558273706578,2025-02-26 +City Hotel,0,364,2017,April,17,22,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.94,0,0,Canceled,Erin Figueroa,patricia98@example.org,568-787-2090,3578268175178432,2024-05-20 +City Hotel,1,345,2017,May,21,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.46,0,0,Canceled,Richard Rice,hooverjonathan@example.com,+1-737-698-1899x96723,3529544100325938,2025-09-16 +Resort Hotel,0,32,2017,March,12,24,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,1,D,E,0,No Deposit,242.0,179.0,0,Transient,54.74,0,1,Check-Out,Matthew Clark,uward@example.com,9298500777,3592356017943238,2024-09-21 +City Hotel,1,93,2017,March,11,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,77.28,0,1,Canceled,Stephen Anderson,paulahenson@example.net,+1-329-302-5923x754,30022269986319,2024-10-27 +Resort Hotel,0,100,2017,October,41,12,1,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,239.0,179.0,0,Transient,96.04,0,1,Check-Out,Barbara Willis,richardsonheather@example.com,001-904-313-4238,2560211887859768,2024-05-01 +City Hotel,0,22,2017,July,29,19,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,101.99,0,0,Check-Out,Martha Lee,cole52@example.com,727-432-2912x6213,3580907785058452,2024-04-04 +Resort Hotel,0,31,2017,March,12,21,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,96.29,0,0,Check-Out,Tammy Jones,hcabrera@example.net,9006599006,213176565067841,2025-02-09 +Resort Hotel,0,21,2017,December,49,8,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,47.53,1,1,Check-Out,Grace Swanson,zadkins@example.org,486.724.2030x074,4519153926433221,2025-09-02 +City Hotel,0,3,2017,October,43,22,1,1,2,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.75,0,0,Check-Out,Christina Le MD,johnsonjames@example.org,+1-610-298-9829,373158517523754,2026-03-19 +City Hotel,1,2,2017,August,31,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,240.76,0,2,Canceled,Joshua King,matthewanderson@example.net,543-752-8324,3542184968665225,2025-08-30 +Resort Hotel,0,0,2017,December,50,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,84.31,1,1,Check-Out,Sarah Meadows,gnguyen@example.com,(876)834-7230,213189268547480,2024-07-06 +City Hotel,0,0,2017,October,41,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,197.12,0,1,Check-Out,Stephanie West,alyssawalker@example.com,001-685-287-8449x8161,4619438922937156305,2024-12-05 +Resort Hotel,0,188,2017,August,33,15,0,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Check-Out,Susan Jones,lauren87@example.net,926-392-9362,213145863702961,2024-11-16 +City Hotel,1,96,2017,December,50,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.19,0,0,Canceled,Timothy Gordon,rogertodd@example.org,001-370-877-6515,4673095828796431,2024-09-20 +Resort Hotel,0,50,2017,August,32,3,2,5,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,216.75,1,3,Check-Out,Kyle Horton,kempcathy@example.com,(529)675-2599x357,501822577786,2025-12-14 +Resort Hotel,0,84,2017,November,48,29,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,45.92,0,0,Check-Out,Angel Knight,deanna82@example.net,961-718-1745x1928,4464877005045,2025-11-12 +Resort Hotel,0,50,2017,July,30,23,0,5,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Transient,112.14,0,3,Check-Out,Melissa Yang,phillipsrichard@example.org,523.532.1894x422,3505693691472589,2024-05-26 +City Hotel,1,70,2017,April,16,17,2,5,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,85.0,179.0,0,Transient,115.85,0,0,Canceled,Michael Berg,vsawyer@example.org,944-283-2538x01541,4048814371154,2025-05-25 +Resort Hotel,1,22,2017,July,27,5,4,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,232.78,0,0,Canceled,Carol Christensen,jjohnson@example.net,001-881-726-2045x27429,6525136205506541,2024-12-23 +City Hotel,0,34,2017,October,44,28,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,64.13,0,0,Check-Out,Richard Morales,clarkangela@example.org,(809)946-0909x200,4556578291935463,2025-02-09 +Resort Hotel,0,2,2017,July,31,31,1,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,161.0,179.0,0,Transient,75.39,0,0,Check-Out,Clinton Moore,washingtondavid@example.net,+1-261-987-5244,676238373424,2024-04-30 +Resort Hotel,0,6,2017,March,11,10,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Contract,44.4,0,0,Check-Out,Michael Suarez,richardhamilton@example.com,(925)454-3160,30344879521041,2024-08-05 +City Hotel,1,93,2017,July,31,27,1,1,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,60,Transient,62.63,0,0,Canceled,Joy Zimmerman,gallison@example.com,001-972-211-4497,3503251430362892,2025-10-16 +City Hotel,1,19,2017,October,41,12,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.77,0,0,Canceled,Elizabeth Robinson,amy94@example.net,950-964-1820x30660,349604767458473,2025-03-20 +City Hotel,0,44,2017,August,35,27,2,2,1,1.0,0,BB,GBR,Online TA,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,136.27,0,2,Check-Out,Kristen Jackson,christopherlee@example.org,001-293-829-3609x5593,2276874876979429,2025-09-02 +City Hotel,1,99,2017,May,21,20,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,116.65,0,0,Canceled,David Williams,anthonyjefferson@example.com,+1-309-741-4590x255,4326474774121624,2025-12-06 +Resort Hotel,0,1,2017,April,16,14,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,177.0,179.0,0,Transient,98.74,1,1,Check-Out,Stephen Ho,fordethan@example.com,6154660396,30481840931733,2025-07-14 +City Hotel,0,101,2017,July,27,4,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.84,0,0,Check-Out,Richard Day,jay85@example.com,(651)569-9615,377940300765858,2024-05-25 +City Hotel,1,94,2017,June,23,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.41,0,1,Canceled,Rodney Nichols,melissadeleon@example.net,(716)944-7122,38196433377803,2025-04-14 +City Hotel,1,0,2017,April,14,4,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,259.0,0,Transient,7.66,0,0,Canceled,Gregory Jacobs,qpaul@example.net,+1-989-956-3276x0604,4629416308874,2025-07-06 +City Hotel,1,42,2017,May,21,25,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,74.5,0,0,Canceled,Bradley Thornton,patriciamiranda@example.org,671-520-0709x2142,4510219200825,2025-09-22 +Resort Hotel,0,115,2017,July,30,25,2,5,2,1.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,247.0,179.0,0,Transient,61.89,0,0,Check-Out,Miranda Ortiz,sanfordmark@example.org,200-703-9784x35192,2462168882312251,2025-09-21 +City Hotel,0,3,2017,March,13,25,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,115.92,0,1,Check-Out,Erika Brown,brian90@example.com,(873)345-3662x49255,2700565302759684,2025-03-27 +City Hotel,1,9,2017,June,24,10,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,150.59,0,0,No-Show,Samantha Robinson,hansenjason@example.net,+1-876-373-9948x596,4480170126247737429,2025-11-15 +City Hotel,1,312,2017,September,38,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,104.54,0,0,Canceled,Cassandra Bonilla,michael37@example.org,+1-833-693-4587x55485,2268044334406163,2024-07-26 +City Hotel,0,103,2017,January,2,5,2,0,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.09,0,0,Check-Out,Veronica Osborne,alexander26@example.net,+1-911-944-6466x2914,374748434058915,2025-05-25 +City Hotel,0,0,2017,August,33,19,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Contract,182.0,0,1,Check-Out,Ashley Reese,matthewsexton@example.net,690.888.3797x71811,30518027137632,2025-05-10 +City Hotel,1,43,2017,August,32,5,2,4,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.62,0,1,Canceled,Matthew Berg,ronaldruiz@example.org,681-915-9059,4053946695910812,2025-12-28 +City Hotel,0,171,2017,July,29,16,3,5,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,243.85,0,2,Check-Out,Kristen Montoya,melanie18@example.net,345.316.8351x733,2413703948525833,2024-10-29 +Resort Hotel,0,236,2017,May,21,22,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,44.12,0,1,Check-Out,Derrick Perkins,nicolethompson@example.net,402.503.4401x683,4827043071940897,2025-03-24 +Resort Hotel,0,248,2017,September,37,15,3,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,117.93,0,2,Check-Out,Nicole Moore,jjohnson@example.org,5217573618,3534274659054282,2024-07-06 +City Hotel,0,144,2017,June,24,11,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.54,0,2,Check-Out,Nicholas Richardson,rubencurtis@example.org,903.487.7857,5234026045877141,2025-06-18 +City Hotel,1,15,2017,March,11,10,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.9,0,1,Check-Out,Anna White,jaredvelazquez@example.net,708.904.2483x9121,3517297583128188,2026-03-25 +City Hotel,1,324,2017,July,30,20,2,6,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,138.7,0,0,Canceled,Scott Lopez,rguerra@example.net,+1-401-947-1326,6011461695314672,2025-08-15 +Resort Hotel,0,3,2017,February,9,24,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,63.92,0,1,Check-Out,Nicholas Holland Jr.,mark22@example.com,+1-330-710-9434x8995,2671071177911422,2025-02-04 +Resort Hotel,0,58,2017,January,2,11,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,46.11,1,3,Check-Out,Christopher Long,qcurtis@example.org,2832888822,4784927874185,2024-10-03 +City Hotel,1,1,2017,March,10,9,0,1,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,1,A,F,0,No Deposit,9.0,179.0,0,Transient,79.65,0,1,Canceled,Andrea Jones,ahess@example.com,272-477-6623x116,4271417214484032,2025-06-26 +City Hotel,0,0,2017,July,28,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,B,0,No Deposit,14.0,67.0,0,Transient-Party,60.43,0,0,Check-Out,Terry Waller,doughertysarah@example.com,466-656-2870,3542822943570297,2024-06-24 +City Hotel,0,109,2017,June,27,30,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,139.27,0,0,Check-Out,Joseph Acosta,keith20@example.com,+1-498-352-0674x097,502061238601,2025-06-24 +City Hotel,0,101,2017,March,11,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,74.6,0,0,Check-Out,Lindsey Gray,snyderdakota@example.net,(647)553-5710,4883407375586978504,2025-03-23 +City Hotel,0,1,2017,February,6,6,1,1,1,0.0,0,BB,DEU,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,107.77,0,0,Check-Out,Ronald Hines,emily92@example.net,001-499-390-1987x755,2244183264869112,2024-09-29 +Resort Hotel,0,25,2017,February,7,14,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,269.0,179.0,0,Transient,37.54,0,0,Check-Out,Amanda Wright,rebekahmiller@example.net,001-421-856-3399x430,3596841064315311,2025-01-01 +Resort Hotel,0,10,2017,November,47,23,1,1,2,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,H,0,No Deposit,16.0,331.0,0,Transient-Party,61.85,0,0,Check-Out,Charles Burton,daryl86@example.net,001-535-789-1414x0759,213165452958717,2024-09-26 +City Hotel,0,30,2017,October,41,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,103.07,0,0,Check-Out,Vincent Rosario,reeddavid@example.org,450-294-0590,6578139495698487,2026-03-20 +Resort Hotel,0,28,2017,March,12,24,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,G,0,No Deposit,16.0,179.0,0,Transient,37.35,0,0,Check-Out,Noah Morgan,penanicholas@example.org,571-949-4939,3593299095171919,2024-08-22 +City Hotel,0,19,2017,September,37,15,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,164.82,0,1,Check-Out,Christina Castillo,kimberly48@example.net,266-798-6286,213174034298956,2025-03-13 +Resort Hotel,0,19,2017,May,20,17,2,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,136.14,0,0,Check-Out,Jill Martin,randall74@example.com,410-870-0171x52768,6505929718078386,2025-04-12 +City Hotel,0,19,2017,August,33,13,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,106.33,0,1,Check-Out,Christopher Brown,matthew57@example.com,290.781.7290x7100,6577215687025175,2025-05-28 +City Hotel,1,3,2017,August,34,21,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,125.86,0,0,Canceled,Lori Martinez,carrolljesse@example.org,+1-779-920-3924x8155,6011559927881267,2025-02-06 +City Hotel,0,44,2017,April,15,9,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,107.87,0,0,Check-Out,Ashley Phillips,joshua25@example.net,629.222.1731x13512,213119326993434,2024-08-18 +City Hotel,1,9,2017,April,17,26,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.45,0,0,Canceled,Sara Thomas,pottsmichael@example.org,(452)674-8158,180090956435609,2024-04-20 +Resort Hotel,0,117,2017,March,12,17,1,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,17.0,179.0,75,Transient-Party,0.5099000000000001,1,0,Check-Out,Allison Simmons,wardlaura@example.com,(219)218-9914,4247405996474,2026-02-24 +City Hotel,0,0,2017,May,20,13,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,133.49,0,1,Check-Out,Matthew Perez,xvazquez@example.net,+1-919-264-6293x8823,503832648722,2024-05-02 +Resort Hotel,0,2,2017,February,7,11,0,2,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,27.0,179.0,0,Transient-Party,51.64,0,0,Check-Out,Janice Henson,parksrodney@example.com,+1-428-519-3892x2578,3526923419322609,2025-01-17 +Resort Hotel,0,0,2017,December,49,5,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,0,No Deposit,245.0,179.0,0,Transient,43.46,0,0,Check-Out,Ashley Jackson,jonathanjackson@example.com,001-431-364-6106x0466,30005937842592,2025-09-06 +Resort Hotel,0,162,2017,March,9,2,0,2,1,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,316.0,179.0,0,Transient-Party,64.01,0,0,Check-Out,Brian Sosa,tonyawolf@example.net,9097877347,4920428195581196,2025-04-09 +City Hotel,1,11,2017,February,7,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,94.61,0,0,Canceled,Luis Wilson,penajanice@example.com,(347)998-5347x705,3516987984248798,2024-04-02 +City Hotel,0,1,2017,December,51,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,46.66,0,1,Check-Out,Tamara Huang,jacksontimothy@example.net,(521)960-7608x404,6011009965830826,2024-12-28 +City Hotel,1,158,2017,June,27,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,136.81,0,0,Canceled,Cassandra Moreno,kim05@example.com,710.264.2845x90493,676254537308,2025-12-10 +City Hotel,1,0,2017,September,36,8,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,280.0,0,Transient,2.54,0,0,Canceled,Meghan Hernandez,oholt@example.net,001-437-498-9875x9357,3590224738519806,2024-06-07 +City Hotel,0,0,2017,November,47,20,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.97,0,2,Check-Out,Elizabeth Roth,mcaldwell@example.org,231.712.0745x80261,3592267931079407,2026-01-29 +City Hotel,0,50,2017,August,34,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,81.0,179.0,0,Transient,230.0,0,1,Check-Out,Brian Hendricks,frank18@example.net,7266273875,36114369097362,2026-02-12 +Resort Hotel,1,44,2017,October,43,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,28.0,179.0,0,Transient,101.46,0,0,Canceled,Tasha Cochran,ffoster@example.org,+1-958-759-6129x121,589706230622,2026-03-25 +City Hotel,0,17,2017,August,33,16,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.33,1,3,Check-Out,Angela Smith,cohencarol@example.com,001-434-213-2613x84558,676178455785,2025-02-13 +Resort Hotel,0,99,2017,February,7,13,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,44.7,0,0,Check-Out,Brittany Rios,victoriamartin@example.net,(304)407-7941x966,4296648444066816,2024-11-27 +City Hotel,0,107,2017,June,26,23,1,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Group,138.87,0,3,Check-Out,James Griffith,ucoleman@example.net,867-851-0104x72639,4064787231418780401,2025-03-09 +City Hotel,1,289,2017,November,48,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,183.0,179.0,0,Transient,80.65,0,0,Canceled,Karen Jones,john81@example.net,565.492.1503x3047,4415468827082751,2026-01-11 +Resort Hotel,0,174,2017,July,27,6,3,6,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,52.2,0,1,Check-Out,Tina Ramirez,lori79@example.org,518.936.2384x47958,180009075938228,2025-12-13 +City Hotel,1,94,2017,May,22,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.79,0,2,Canceled,Zachary White,qmoore@example.net,599.739.1610x94902,180014963422665,2025-12-12 +Resort Hotel,0,312,2017,July,30,22,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,29.0,179.0,0,Contract,119.0,0,1,Check-Out,Francisco Coleman,khawkins@example.net,001-737-829-9717x7477,4009874194505179,2024-04-28 +City Hotel,0,10,2017,December,2,31,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,101.51,0,1,Check-Out,Jennifer Leon,angelagibbs@example.com,2517669161,213140122128090,2025-08-31 +Resort Hotel,1,82,2017,April,14,2,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,218.0,0,1,Check-Out,Robert Valdez,caldwellcristian@example.net,(306)642-0162x4411,6011455499938348,2025-10-12 +City Hotel,0,41,2017,September,36,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,32.0,179.0,0,Transient-Party,63.83,0,0,Check-Out,Jason Crawford,patriciapowell@example.com,(687)583-8537,3508732304434524,2025-11-05 +City Hotel,0,9,2017,January,4,23,1,0,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,104.9,0,0,Check-Out,Kim Underwood,brandonli@example.org,(431)300-0557x01072,180004719692752,2024-06-14 +Resort Hotel,1,40,2017,July,28,7,1,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,252.0,0,0,Canceled,Kevin Fisher,amy08@example.org,+1-864-533-5529x462,3516096500384101,2024-09-22 +Resort Hotel,0,90,2017,April,16,16,2,6,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,138.9,0,2,Check-Out,Melissa Goodman,jessicawise@example.org,+1-980-265-0951x23770,180049400064969,2024-05-12 +City Hotel,0,20,2017,August,32,9,1,4,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.81,0,1,Check-Out,Cynthia Smith,bhorton@example.org,+1-255-817-6726x2863,3546637579615364,2024-07-19 +City Hotel,0,1,2017,June,27,30,0,3,1,0.0,0,BB,,Direct,Direct,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,84.78,0,1,Check-Out,Alicia Grant DVM,millerdavid@example.com,(919)547-8414x6994,30315111138323,2025-06-18 +Resort Hotel,0,16,2017,July,27,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,61.16,1,0,Check-Out,Amy Bailey,alivingston@example.org,(772)390-1892,30429000569942,2024-06-10 +City Hotel,1,36,2017,June,25,23,0,1,1,0.0,0,BB,PRT,Complementary,GDS,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Sharon Fuentes,mccannlaura@example.org,779-992-0717,38556349441326,2025-05-02 +City Hotel,0,52,2017,June,23,4,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,223.91,1,1,Check-Out,Charles Castaneda,amy57@example.net,851-551-1914x65112,561424540277,2025-10-16 +City Hotel,1,189,2017,August,33,14,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,124.58,0,0,Canceled,Susan Sanchez,michellejennings@example.org,293.947.6648,4353318676250,2024-04-15 +Resort Hotel,0,150,2017,May,18,2,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,134.85,0,1,Check-Out,Amy Taylor,gilmorejohn@example.org,(724)258-4438x50875,3521962936666218,2025-08-18 +City Hotel,0,24,2017,March,10,4,2,1,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.22,0,1,Check-Out,Michele Bennett,travis69@example.com,001-941-781-5092,3581238123982024,2024-10-21 +Resort Hotel,1,146,2017,July,29,16,2,10,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,249.63,0,0,Canceled,Vincent Watson,amy61@example.com,+1-308-653-5704x502,30108550968973,2025-07-12 +Resort Hotel,1,40,2017,March,10,6,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,159.45,0,1,Canceled,Mary Jones,johnsonkevin@example.org,999-560-5233x7202,213117128416950,2024-08-16 +Resort Hotel,0,17,2017,January,2,10,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,252.0,1,1,Check-Out,Sheila Johnson,gdouglas@example.com,909.708.8328,180017352930453,2024-07-31 +City Hotel,1,375,2017,April,14,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,82.21,0,0,Canceled,Bob Jones,jocelynhill@example.net,429-299-3665,213139323343730,2024-09-25 +City Hotel,1,82,2017,August,35,27,2,7,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,223.2,0,1,Check-Out,Robin Hernandez,noblenatalie@example.org,001-749-492-4233x800,2463954489861587,2024-05-19 +City Hotel,0,92,2017,February,8,23,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.06,0,0,Check-Out,Patrick Adkins,arich@example.net,9607100443,5131644638477204,2025-01-29 +Resort Hotel,0,1,2017,December,49,8,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,83.0,0,Transient,46.11,0,0,Check-Out,Elizabeth Jenkins,charlessmith@example.com,(395)427-4895,4444376191265308667,2024-11-24 +City Hotel,1,32,2017,August,32,12,1,0,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,214.88,0,0,Canceled,Richard Dominguez,branchjeremiah@example.net,472-801-9044x0424,6535403329284639,2024-08-27 +Resort Hotel,1,253,2017,August,32,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,171.0,179.0,0,Transient-Party,103.2,0,1,Canceled,Christopher Ibarra,elizabeth99@example.com,001-430-566-8944x08409,630440699522,2025-03-21 +Resort Hotel,0,195,2017,August,31,1,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Group,49.34,0,1,Check-Out,Paul Gordon,ibarrathomas@example.org,691-843-7358x4868,4043109792968844,2026-02-03 +Resort Hotel,0,0,2017,July,28,9,1,6,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,39.0,179.0,0,Transient-Party,84.92,0,0,Check-Out,Ronnie Frazier,pattersontiffany@example.org,255.575.8517,630456107188,2025-12-31 +City Hotel,0,0,2017,September,38,19,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,129.94,0,0,Check-Out,Kristen Gallegos,aguirreteresa@example.com,(959)866-0345,4025429727707,2025-01-29 +City Hotel,0,19,2017,March,12,20,1,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,140.77,0,1,Check-Out,Kathryn Fletcher,james45@example.com,515.274.2178x2317,349546750693840,2024-08-25 +City Hotel,0,155,2017,March,13,26,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.44,0,0,Check-Out,Christopher Dudley,esalazar@example.org,+1-471-942-9028x91176,4906927466837250,2025-03-08 +Resort Hotel,0,0,2017,January,2,4,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,130.58,1,0,Check-Out,Vanessa Martinez,shawcandice@example.org,(986)573-3943,4206140712150794,2024-09-02 +City Hotel,0,38,2017,August,32,11,2,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Contract,100.53,0,1,Check-Out,Manuel Robinson,kmoore@example.com,001-836-520-4847,213175671589763,2024-07-19 +City Hotel,0,51,2017,April,17,24,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,94.96,0,1,Check-Out,Paul Hansen,urodriguez@example.net,657.583.0176,347575802487747,2025-07-08 +City Hotel,0,55,2017,November,46,13,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.72,0,2,Check-Out,Rose Mcdonald,melissasantiago@example.org,951.297.1926x71403,30581186429182,2025-05-18 +City Hotel,0,14,2017,October,42,20,0,1,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,190.0,0,Transient-Party,85.15,0,0,Check-Out,Martin Wilcox,torressara@example.net,863.715.8424x81742,060490220245,2025-07-08 +City Hotel,0,59,2017,July,29,18,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.17,0,1,Check-Out,Robert Lucas,mcintyregary@example.org,+1-238-822-8803x869,5336352676511669,2024-04-05 +City Hotel,0,23,2017,December,49,6,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,2.54,0,1,Check-Out,Brian Miller,randyhill@example.com,307-684-2632,30428326840110,2024-05-04 +City Hotel,0,378,2017,June,26,25,1,2,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,126.77,0,1,Check-Out,Sarah Johnson,vanessa76@example.org,+1-894-803-1757x352,6011098224411825,2025-11-11 +City Hotel,1,17,2017,November,45,5,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,105.0,0,2,Canceled,Joshua Jones,warddonald@example.com,7839246728,30211881787003,2024-12-07 +City Hotel,0,56,2017,August,32,6,2,3,3,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,184.84,1,1,Check-Out,Nicole Parker,jakewoodard@example.com,+1-484-702-2379x6274,567527874257,2025-03-19 +Resort Hotel,0,164,2017,July,28,11,3,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,86.34,0,1,Check-Out,Margaret Johnson,robin54@example.com,889.567.4987,4619254442652689,2025-10-31 +Resort Hotel,0,0,2017,October,42,19,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,110.69,0,2,Check-Out,William Cunningham,rpeters@example.org,(887)515-9972x67389,4016009973478428,2024-05-01 +Resort Hotel,1,31,2017,November,45,9,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,107.8,0,2,Canceled,Rachel Williams,floresryan@example.net,983-797-9262,373631281171844,2026-03-22 +Resort Hotel,0,20,2017,March,12,20,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,53.98,0,2,Check-Out,Tony Smith,henryamanda@example.net,2808093904,3536677344154200,2024-06-08 +Resort Hotel,0,2,2017,October,43,23,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,75.0,0,Transient,49.28,1,0,Check-Out,Douglas Sanders,matthewpruitt@example.org,946-531-3579x44388,4525524981977843,2026-02-25 +City Hotel,0,48,2017,July,30,23,2,5,1,0.0,0,SC,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,137.62,0,0,Check-Out,Paul Swanson,wball@example.com,(883)322-4330,3517179353910021,2025-09-02 +Resort Hotel,0,0,2017,October,43,23,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,247.0,179.0,0,Transient,108.59,1,0,Check-Out,Michele Davis,tgeorge@example.net,+1-205-327-6730,4374652071078909,2024-07-02 +City Hotel,0,56,2017,October,41,9,2,2,1,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,136.76,0,0,Check-Out,Patrick Garcia,uyoder@example.net,(293)984-3920x193,6011887187867852,2025-05-23 +Resort Hotel,1,315,2017,December,49,5,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient-Party,79.27,0,0,Canceled,Brittany Matthews,campbelljonathan@example.org,806.313.6524x0920,3516400929723172,2024-10-13 +City Hotel,0,156,2017,August,34,23,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.35,0,1,Check-Out,Kevin Christian,haroldgonzalez@example.org,848.952.8401x715,4512985662644719227,2025-12-21 +City Hotel,1,84,2017,December,51,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,89.08,0,0,Canceled,Christian Ford,cynthia91@example.com,+1-375-877-2642,4101050798522087,2026-01-14 +Resort Hotel,0,0,2017,February,8,19,2,0,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,47.71,0,0,Check-Out,Anna Higgins,tracyanderson@example.net,875.368.2373x944,3595772879768058,2025-10-27 +City Hotel,1,112,2017,April,17,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,84.53,0,0,Canceled,Rhonda Pena,william15@example.net,001-824-493-9499x15170,4041606241978441,2025-07-28 +City Hotel,0,36,2017,November,45,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,13.0,331.0,0,Transient,74.38,0,0,Check-Out,Candace Stuart,vflores@example.net,+1-596-556-8892x50381,2702587385157600,2024-12-07 +City Hotel,0,92,2017,October,41,9,2,5,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Contract,62.48,0,0,Check-Out,Monica Curtis,lindaacevedo@example.com,001-840-454-5884x9802,30081528945227,2025-01-15 +City Hotel,1,149,2017,July,30,24,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.32,0,2,No-Show,Gloria Floyd,andrewwilson@example.net,253.614.3136,30524530185670,2025-12-11 +City Hotel,1,100,2017,August,33,17,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,220.42,0,0,Check-Out,Isaac Chase,chelseaadams@example.com,001-398-205-7485,3531268239334357,2024-10-22 +City Hotel,0,18,2017,April,17,26,1,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,227.23,0,3,Check-Out,Steven Schroeder,warrenluke@example.org,001-594-798-5841x8882,5446435577952517,2024-12-03 +City Hotel,1,9,2017,March,13,23,1,1,1,0.0,0,BB,,Corporate,Direct,1,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,145.27,0,0,Canceled,Daniel Bishop,alicia00@example.com,(549)773-3271x436,4637895644073,2025-02-14 +Resort Hotel,0,104,2017,September,37,15,2,7,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,87.82,0,0,Check-Out,Christian Burton,fosteralexander@example.net,+1-547-787-6150x64757,6011490139535899,2025-08-21 +City Hotel,0,20,2017,July,28,13,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,129.43,0,0,Check-Out,Robert Thomas PhD,ibenitez@example.com,827.201.8218x723,4135432324410454708,2024-03-29 +City Hotel,1,391,2017,October,41,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,103.42,0,0,Canceled,Tracy Harrington,romerodavid@example.org,001-620-288-2698x7369,4244460005456281585,2024-08-27 +City Hotel,0,22,2017,October,40,4,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,97.07,1,0,Check-Out,Brandon Edwards,cynthiawilliams@example.net,446-487-9274x775,375753298508020,2025-01-19 +Resort Hotel,1,0,2017,February,8,19,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,39.43,0,2,No-Show,Candice Ramirez,taylorhall@example.com,447-516-0845,4867900637032256,2024-12-18 +City Hotel,0,165,2017,July,28,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,121.3,0,1,Check-Out,Brandon White,angelaburke@example.org,9294618823,3542130354388427,2024-06-20 +City Hotel,1,45,2017,April,15,11,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,79.2,0,0,Canceled,Deanna Kennedy,troy26@example.net,(268)203-6771,4844449784292048,2024-10-24 +City Hotel,0,21,2017,September,36,5,0,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient-Party,83.87,0,0,Check-Out,Shawn Santos,imoore@example.org,5053554957,4393051329386627,2025-02-05 +Resort Hotel,0,36,2017,December,48,1,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,87.51,1,1,Check-Out,Caleb Carroll,tracy15@example.com,346.202.7868,6545098496841415,2025-02-15 +City Hotel,0,35,2017,October,42,18,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.75,0,1,Check-Out,Scott Morales,hhall@example.com,(417)907-6469,30410370157807,2026-03-24 +City Hotel,0,3,2017,November,46,12,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,219.0,0,Transient,48.89,0,1,Check-Out,Sylvia Anderson,john63@example.net,(833)900-2117,6011427188373293,2024-09-09 +Resort Hotel,0,149,2017,April,15,9,2,5,2,0.0,0,BB,FRA,Online TA,Corporate,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,86.58,0,0,Check-Out,Ryan Crane,yryan@example.net,323.720.0757,4386421093526170,2024-12-06 +Resort Hotel,0,200,2017,March,11,16,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,2,Refundable,12.0,224.0,0,Transient-Party,40.03,1,0,Check-Out,Michael Hunter,walkerdarren@example.net,+1-215-969-7142x17233,3541784850703595,2024-07-02 +City Hotel,1,72,2017,August,31,4,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,252.0,0,1,Canceled,Shawn Fleming,john68@example.org,(447)433-8920,4741943973039510261,2025-09-14 +City Hotel,1,270,2017,July,28,12,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,8.0,179.0,0,Transient,193.22,0,0,Canceled,Maria Figueroa,lindarobertson@example.org,6583464084,3563156617849487,2024-04-05 +Resort Hotel,0,31,2017,July,27,8,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,224.68,0,0,Canceled,Roberto Smith,robertjones@example.com,+1-507-709-9918,3588470100346849,2024-07-31 +City Hotel,1,0,2017,April,15,11,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,331.0,0,Transient,4.37,0,0,Canceled,Donna Moore,jrodriguez@example.org,001-512-671-2326x8212,6568498476389181,2025-10-18 +City Hotel,1,160,2017,October,43,25,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,62,Transient,125.06,0,2,Canceled,Benjamin Price,williamsjames@example.net,001-812-470-2290x090,4854265060780226,2026-03-06 +Resort Hotel,1,333,2017,August,34,19,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,321.0,179.0,0,Transient-Party,88.72,0,1,No-Show,Brandon Owens,nicholas41@example.com,683-876-2315,4331759850220,2024-04-19 +City Hotel,0,102,2017,April,15,9,2,4,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,82.76,0,1,Check-Out,Stephanie Marshall,rkelley@example.com,(889)984-7746x892,5344571109063408,2025-05-27 +City Hotel,0,11,2017,August,34,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,64.1,1,1,Check-Out,Nicholas Lowery,adriana87@example.com,+1-890-813-9750x339,180088902742706,2024-08-23 +City Hotel,1,37,2017,September,37,14,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,40.51,0,0,Canceled,Patricia Gonzalez,rosevega@example.org,360-732-7103,30447036333091,2025-02-10 +Resort Hotel,1,4,2017,January,2,1,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,46.23,0,1,No-Show,Evan Davies,emilysmith@example.net,(792)854-6477x39243,676192165253,2025-04-01 +Resort Hotel,0,356,2017,September,37,15,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,2.26,0,0,Check-Out,Dr. John Ramirez,rebeccamiller@example.net,+1-294-493-0925x27983,4635092975188030,2025-11-17 +City Hotel,1,98,2017,March,13,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,83.45,0,0,Canceled,Christopher Harrison,oallen@example.org,+1-234-487-6859x8140,371924663320127,2024-06-05 +Resort Hotel,1,238,2017,July,31,29,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,125.92,0,0,Canceled,Erica Johnson,fergusonjason@example.com,793-818-9541,4912226350359495990,2025-05-17 +Resort Hotel,1,370,2017,June,23,4,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,240.0,179.0,0,Transient,114.87,0,0,Canceled,Jamie Mayer,dickersonnicholas@example.org,868-463-4902x5881,501877843208,2025-07-08 +Resort Hotel,0,157,2017,March,14,30,0,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,13.0,223.0,0,Transient-Party,60.7,0,0,Check-Out,Jeffrey Kennedy,wesleylawrence@example.com,367.424.0142,374628043757620,2026-01-28 +City Hotel,0,96,2017,April,15,13,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,86.0,179.0,0,Transient,101.24,0,0,No-Show,Sean Cisneros,tiffanycompton@example.org,6888237935,639014885060,2024-08-02 +Resort Hotel,0,199,2017,October,43,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,282.0,179.0,0,Contract,50.61,0,2,Check-Out,Debra Reid,brianphillips@example.org,499-284-3386x83582,4962981965253205,2025-04-28 +City Hotel,0,161,2017,April,17,26,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,22.0,179.0,0,Transient,109.89,0,0,Check-Out,Benjamin Sullivan,mdavis@example.org,243-782-4473,30045447963785,2024-10-29 +City Hotel,0,169,2017,August,31,1,2,3,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,147.75,0,3,Check-Out,Michael Savage,jhinton@example.net,001-861-885-6239x90082,30562663799693,2025-06-17 +City Hotel,0,202,2017,June,24,15,2,4,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.3,0,0,Check-Out,Mckenzie Green,timothy01@example.com,708.486.3324,3537433058320952,2025-02-25 +City Hotel,1,24,2017,April,17,21,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.18,0,1,Canceled,Anna Valenzuela,kkennedy@example.com,(429)582-7856x6647,4858284072791523,2024-10-22 +Resort Hotel,0,20,2017,August,35,29,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,237.0,179.0,0,Group,4.48,0,1,Check-Out,Paul Martin,erik63@example.net,986.812.2464x9375,4217464459417,2026-03-09 +City Hotel,1,156,2017,June,26,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,127.44,0,1,Canceled,Jason Alvarez,martinmary@example.com,(531)624-3328x1506,4084929992264094,2024-09-20 +Resort Hotel,0,17,2017,December,50,9,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,138.3,0,1,Check-Out,Caitlyn Horton,moodydillon@example.net,781-432-4142x7027,6011601869645712,2024-12-26 +City Hotel,0,2,2017,October,42,18,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,2,No Deposit,13.0,190.0,0,Transient,126.54,0,0,Check-Out,Michael Price,ncortez@example.net,350.917.7912x059,3565446978401186,2024-08-29 +City Hotel,0,86,2017,August,35,26,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,A,1,No Deposit,14.0,179.0,0,Transient,223.74,0,3,Check-Out,Richard Harper,lhamilton@example.net,001-882-238-6901,060489316632,2024-04-04 +City Hotel,0,77,2017,March,13,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,9.0,179.0,0,Transient,61.97,0,1,Check-Out,Michael Jensen,rayjames@example.com,(703)256-5461x7198,3598063718465883,2024-04-18 +City Hotel,0,36,2017,July,27,5,2,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,240.22,0,0,Check-Out,William Mcmillan,hoodamy@example.org,+1-721-715-6319x721,6546851778194757,2025-01-30 +City Hotel,0,8,2017,February,5,2,1,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,B,2,No Deposit,183.0,179.0,0,Transient,81.05,0,0,Check-Out,Nancy Stewart,douglasmichael@example.com,(339)955-2337x635,3558845301365753,2025-12-19 +City Hotel,0,42,2017,November,47,20,2,2,3,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,90.33,0,1,Check-Out,Jimmy Hernandez,vlewis@example.org,491-951-1742,3510096311728419,2025-05-05 +Resort Hotel,0,13,2017,April,17,23,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,275.0,179.0,0,Transient-Party,52.94,0,1,Check-Out,Ashley Cordova,davidgrimes@example.net,6288245912,5278814900606789,2024-09-25 +City Hotel,1,19,2017,October,42,18,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,79.32,0,0,Canceled,Joseph Smith,troy30@example.org,418-349-3091x67551,3503982545176344,2025-05-20 +City Hotel,0,101,2017,July,31,30,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,B,B,0,No Deposit,1.0,179.0,0,Transient-Party,80.32,0,0,Canceled,Ronnie Martinez,josechambers@example.com,(809)859-7338,6570789545956117,2026-01-12 +City Hotel,1,15,2017,July,26,1,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.94,0,0,No-Show,Wayne Davis,susan82@example.com,664.753.6176x763,348734649763005,2024-09-01 +Resort Hotel,0,2,2017,June,26,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,58.63,0,3,Check-Out,William Fisher,meltontiffany@example.net,594-565-1946,4377006554312979,2024-10-12 +Resort Hotel,0,0,2017,November,48,27,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,87.53,0,1,Check-Out,Carol Gray,michaelmcdonald@example.org,437.824.5332,584163992202,2025-08-15 +Resort Hotel,0,55,2017,October,44,27,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,237.0,179.0,0,Transient,114.69,1,2,Check-Out,Tristan Bonilla,rshelton@example.org,(812)891-0110,676214440064,2024-10-06 +Resort Hotel,0,100,2017,March,10,5,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,129.0,179.0,0,Contract,55.89,0,2,Check-Out,Alexis Cervantes,rodriguezjenna@example.org,001-447-374-5823x668,566411320518,2025-10-08 +City Hotel,1,7,2017,August,32,8,0,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,250.4,0,0,Canceled,Steven Shaw,judith27@example.org,+1-347-716-5522x680,6523102542012561,2024-08-29 +City Hotel,0,63,2017,September,38,14,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,174.04,0,0,Check-Out,Melissa Banks,brandonhudson@example.com,+1-456-330-0774x615,3592496454999366,2025-12-12 +City Hotel,1,320,2017,June,26,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,179.79,0,0,Canceled,Jason Bell,mendezdiane@example.com,766.538.4716,4469259351453472571,2025-07-25 +City Hotel,0,26,2017,November,47,24,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,41.93,0,1,Check-Out,Kelly Hubbard,fordjustin@example.net,001-582-599-3524x06241,2428279023449648,2026-03-11 +Resort Hotel,1,1,2017,May,20,17,1,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,46.67,0,2,No-Show,Christopher Patterson,banderson@example.com,+1-661-943-4141x6930,4355538204230983,2025-06-20 +Resort Hotel,0,38,2017,March,10,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,51.09,1,1,Check-Out,Kurt Daniels,acastillo@example.com,6944987498,6011827985170604,2025-04-20 +City Hotel,1,210,2017,June,25,15,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.21,0,1,Canceled,Ryan Barker,courtneycarlson@example.org,(493)312-9734,3533317278566094,2024-04-11 +City Hotel,0,19,2017,February,9,25,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.61,0,1,Check-Out,Douglas Oliver,frank59@example.net,(376)576-3286x50865,30511544810104,2025-05-24 +City Hotel,0,128,2017,June,25,20,1,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,126.17,0,0,Check-Out,Shannon Cowan,tonicordova@example.org,(592)917-8563,180058418402137,2025-12-26 +City Hotel,1,41,2017,December,51,20,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,118.15,0,1,Canceled,Ashley Banks,vanessaarmstrong@example.org,001-559-330-6732x484,342888021411793,2024-08-03 +City Hotel,0,1,2017,February,8,19,0,1,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,63.83,0,1,Check-Out,Jennifer Crawford,braunjennifer@example.com,(793)937-0260x60249,3553404727392838,2025-06-23 +City Hotel,0,45,2017,May,18,5,2,2,1,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,7.0,179.0,0,Transient,134.39,0,1,Check-Out,Tammy Garcia,olivia51@example.com,(541)925-3726x1052,4219678294114006,2024-04-06 +Resort Hotel,1,16,2017,July,30,20,2,4,2,2.0,0,HB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,244.29,0,0,Canceled,Kevin Johnson,travis23@example.net,(460)604-2467,38027608177639,2025-05-11 +City Hotel,1,414,2017,May,20,16,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,107.02,0,0,Canceled,Jason Walker,jason66@example.net,592.991.7892x584,4141515118129716,2026-02-16 +Resort Hotel,1,29,2017,May,18,4,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,172.16,1,0,Canceled,James Gonzalez,ncampbell@example.net,677.230.9692x8618,3596419598710347,2024-11-19 +City Hotel,0,206,2017,September,36,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,238.0,179.0,0,Transient,131.72,0,1,Check-Out,Caleb Ponce,cynthia50@example.org,(752)995-7162,4996977566098965,2024-11-02 +City Hotel,0,19,2017,August,34,23,0,1,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,76.2,0,1,Check-Out,Jennifer Hoover,michaeladams@example.net,(411)689-5579,3509645222210512,2024-05-11 +City Hotel,0,57,2017,June,25,20,1,3,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,28.0,179.0,0,Transient-Party,81.8,0,0,Check-Out,Natalie Smith,warnermary@example.com,(716)809-1750x227,4440741097884240668,2025-12-04 +City Hotel,1,135,2017,August,34,21,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,207.09,0,0,Canceled,Danny Campbell,shanenixon@example.com,001-456-846-5496x5384,370785548982451,2025-08-31 +Resort Hotel,0,1,2017,March,13,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,80.8,1,1,Check-Out,Deborah Roberson,weberphillip@example.org,(408)407-8269x62252,213128304652235,2024-03-29 +City Hotel,1,150,2017,May,18,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,88.38,0,0,Canceled,Jennifer Allen,gibsonmary@example.net,001-616-346-0595x1380,213136497105895,2024-11-12 +City Hotel,1,40,2017,May,19,5,1,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,10.0,179.0,0,Transient,109.42,0,0,Canceled,Jennifer Smith,ricky39@example.net,001-947-996-1399x847,4976404812830277,2024-12-12 +Resort Hotel,1,184,2017,August,32,5,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,139.15,0,1,Canceled,James Montoya,imccullough@example.org,+1-705-545-5278,4117368772486323,2025-07-24 +City Hotel,1,397,2017,June,24,11,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,99.02,0,0,Canceled,Lindsay Rogers,franklinvanessa@example.net,(249)733-3803x03438,372491355238115,2025-04-18 +City Hotel,0,3,2017,July,29,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,17.0,179.0,0,Transient,147.45,0,1,Check-Out,Wendy Allen,heather63@example.net,951.707.1956,213122131453180,2024-08-04 +City Hotel,0,0,2017,September,38,22,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,152.02,0,3,Check-Out,Cheryl Newman,jeffery39@example.net,495.961.5529,060489984470,2026-03-01 +City Hotel,1,166,2017,September,38,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,130.0,0,0,Canceled,Rebecca Lane,pjones@example.com,+1-284-671-4784x450,4159552736273773,2026-03-23 +Resort Hotel,0,108,2017,April,15,13,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,46.54,0,0,Canceled,Mark Madden,virginiagraham@example.net,001-553-621-7386x043,3597797932693520,2024-12-29 +City Hotel,1,253,2017,August,33,16,2,4,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,221.35,0,2,Canceled,Tanner Holmes,sarahwallace@example.net,001-754-926-9932x53523,4162444877937695087,2025-09-03 +City Hotel,1,97,2017,June,23,5,2,6,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.13,0,0,Canceled,Brett Owen,dbrewer@example.com,001-946-235-6902x42375,4377882472620853,2025-03-02 +Resort Hotel,0,45,2017,April,15,11,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Transient,91.58,0,0,Check-Out,Lynn Mueller,austinmegan@example.net,001-601-691-4699,3555216011784050,2025-05-22 +Resort Hotel,1,93,2017,November,47,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.6,0,0,Canceled,Lori Green,zunigadanielle@example.net,001-439-951-5473,630498818172,2025-07-06 +City Hotel,0,48,2017,May,19,12,1,2,2,0.0,0,SC,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,91.0,179.0,0,Group,86.27,1,0,Check-Out,Tiffany Harris,elang@example.com,(922)278-0569,4708297439237115,2025-10-03 +Resort Hotel,1,145,2017,May,20,17,4,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient,75.93,0,0,Check-Out,Jeffrey Fuller,kpena@example.org,+1-659-546-7598x751,3501824715320074,2025-10-14 +City Hotel,1,103,2017,May,22,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,108.48,0,0,Canceled,Alyssa Zimmerman,debra05@example.com,2443803457,568446456952,2025-06-12 +City Hotel,0,0,2017,August,32,9,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,E,0,No Deposit,16.0,179.0,0,Transient,94.61,0,0,Check-Out,Angela Reyes,rfreeman@example.org,001-801-317-5367x50677,4298914114438835357,2025-11-14 +Resort Hotel,0,59,2017,September,36,8,0,1,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,41.55,0,2,Check-Out,Bianca Chavez,david74@example.org,+1-918-527-7920x604,568459799454,2024-04-29 +Resort Hotel,0,22,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,164.0,179.0,0,Transient-Party,63.08,1,0,Check-Out,Heather Allen,mayerdebra@example.net,(570)313-5958x259,4679028602255,2024-08-26 +City Hotel,0,7,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,C,1,No Deposit,40.0,179.0,0,Transient,47.89,0,1,Check-Out,Elizabeth Nichols,gregory71@example.com,500-791-5340x7855,4876413153548654,2025-10-18 +City Hotel,1,287,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,172.0,179.0,61,Transient,82.48,0,0,Canceled,Richard Hartman,leemegan@example.com,5384176106,3528945592377942,2024-10-20 +City Hotel,1,327,2017,September,38,17,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,85.15,0,0,Canceled,Mary Hill,angela67@example.net,7889996068,4535435507790219000,2024-12-03 +City Hotel,0,65,2017,April,17,23,1,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.82,0,1,Check-Out,Lori Little,bakerjeffrey@example.com,874-265-6934x2886,4923938300769053,2025-02-06 +City Hotel,1,92,2017,May,18,1,1,3,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,89.28,0,0,Canceled,Ashley Stevens,meganmiller@example.com,001-736-844-1363,3553255445624666,2025-09-06 +City Hotel,0,54,2017,January,2,6,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,190.7,0,2,Check-Out,Ashley Campbell,peggy90@example.net,515-225-8903,3583109904071865,2026-03-03 +City Hotel,0,159,2017,June,25,19,1,3,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,117.39,1,0,Check-Out,Anna Snyder,anorris@example.org,(397)358-4778x739,3535085602290404,2026-01-05 +City Hotel,1,142,2017,September,37,11,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,87.77,0,0,Canceled,Ryan Myers,miguelfrost@example.net,907-545-1067,2249021410895844,2024-10-19 +City Hotel,0,100,2017,September,38,21,2,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,129.33,0,0,Check-Out,Alex Jones DVM,angelaglenn@example.com,402.850.6256x320,4583414294472261,2025-04-01 +City Hotel,0,89,2017,June,23,9,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.2,0,1,Check-Out,Michael Brooks,jacksonmark@example.org,(200)941-6077,379464215049033,2026-02-23 +City Hotel,1,1,2017,July,28,12,1,0,2,0.0,0,SC,RUS,Complementary,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,143.83,0,0,Canceled,Terry Stokes,josejones@example.org,(957)301-9454x27295,341423106283544,2025-06-18 +City Hotel,0,225,2017,September,37,14,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,129.9,0,2,Check-Out,Adam White,jacksonarthur@example.org,(660)915-7367,6011303264357247,2024-12-21 +City Hotel,0,242,2017,September,36,7,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Contract,44.21,0,0,Canceled,Lisa Johnson,charlesjohnson@example.net,+1-429-531-6876x2797,4357365378794321488,2026-03-10 +City Hotel,1,61,2017,March,13,27,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.22,0,0,Canceled,Wendy Webb,eduardorose@example.net,849-336-1920x366,2300819819492881,2025-01-13 +City Hotel,1,200,2017,September,37,11,1,4,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.9,0,0,Canceled,Kimberly Moore,stephenfigueroa@example.net,768.797.3636,2255874175447974,2026-02-14 +City Hotel,0,19,2017,November,44,2,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,63.14,0,1,Check-Out,Tammy Lee,amcintosh@example.org,2858959945,4627071039928029,2025-07-07 +Resort Hotel,0,1,2017,May,20,17,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,45.55,1,0,Check-Out,Alexander Hunt,eddiegonzalez@example.org,001-755-912-9740x07172,4515545264846104591,2025-06-21 +Resort Hotel,1,8,2017,April,16,19,0,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,H,H,0,Non Refund,238.0,179.0,0,Transient,175.54,0,0,Canceled,Sean Wilson,wintersalexander@example.org,001-472-928-8012x22171,2250298709025822,2025-09-16 +City Hotel,1,41,2017,June,23,4,1,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.93,0,0,Canceled,Garrett Robinson,amymorris@example.org,(844)681-5712x34720,180033887034737,2025-06-03 +Resort Hotel,0,47,2017,September,37,14,0,1,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient-Party,108.61,0,0,Canceled,Teresa Adams,josephwilliams@example.org,001-324-776-5541x24292,2557206024195774,2025-05-31 +City Hotel,0,2,2017,January,3,15,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,46.43,0,1,Check-Out,Dr. Gregory Arnold,josephwebb@example.com,977-721-8057,4856231796280111,2024-11-07 +City Hotel,0,358,2017,February,8,20,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,136.0,179.0,0,Transient-Party,62.49,0,2,Check-Out,Patrick Simpson,zwilliams@example.com,(759)818-1448x9275,340095785542514,2025-11-18 +Resort Hotel,1,152,2017,June,22,1,1,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,0,Refundable,11.0,222.0,0,Transient-Party,60.46,0,0,Canceled,Jennifer Lee,johnvazquez@example.net,514-596-5346x4732,3501396960542744,2025-06-09 +Resort Hotel,0,50,2017,July,27,4,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,85.44,0,2,Check-Out,Michael Clay,fieldstammy@example.net,+1-583-635-8846x3919,4377099458892653973,2025-03-06 +City Hotel,0,56,2017,March,11,9,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,D,A,0,No Deposit,13.0,179.0,0,Transient,124.99,0,1,Check-Out,James Silva,lingregory@example.com,(486)834-9940x347,340202909845704,2025-04-07 +City Hotel,0,11,2017,November,45,6,1,1,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.66,0,2,Check-Out,Emily Bauer,wilcoxlori@example.com,+1-907-320-4622x1734,30515043407718,2026-01-25 +City Hotel,0,53,2017,June,25,23,2,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,80.27,0,0,Check-Out,Katherine Andrade,chambersangela@example.org,(971)414-5005,3525323181462967,2025-08-02 +Resort Hotel,0,17,2017,May,19,10,0,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,106.32,0,1,Check-Out,Paul Cabrera,kimmiranda@example.net,001-970-799-4240x397,6011359774502649,2026-02-01 +Resort Hotel,1,0,2017,August,32,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,C,I,0,No Deposit,243.0,179.0,0,Transient,3.02,0,1,Canceled,Lisa Patterson,stephenmartin@example.net,(754)933-2554,180026154846023,2025-06-23 +Resort Hotel,1,258,2017,November,44,2,1,4,2,2.0,0,FB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,96.22,0,0,Canceled,Jacqueline Chen,vmartin@example.com,237.381.2109x88744,676174642725,2025-03-04 +City Hotel,0,14,2017,November,46,16,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,86.9,0,1,Check-Out,Christopher Johnson,barbaralopez@example.com,951.579.8799,4754685655869251,2024-06-23 +Resort Hotel,0,45,2017,October,43,24,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,87.64,1,1,Check-Out,Laurie Carter,leslie74@example.org,(945)650-4014x65998,36124585135268,2025-12-14 +City Hotel,0,347,2017,July,27,3,0,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,98.06,0,1,Check-Out,Maria Sanford,burgesspatrick@example.com,(246)386-5221x57900,6577407031966762,2025-08-25 +City Hotel,1,209,2017,August,33,16,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,190.86,0,1,No-Show,Allen White,sloanmercedes@example.net,431.331.2710x617,4011849513124993213,2025-05-01 +City Hotel,1,145,2017,June,26,25,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,68.0,179.0,0,Transient,112.23,0,0,Canceled,Richard Howard,robert32@example.net,001-819-842-1117x14696,180064830162770,2024-03-27 +Resort Hotel,0,3,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,44.31,1,1,Check-Out,Matthew Watson,jenkinssharon@example.net,(984)409-2667x312,2244124304909666,2026-01-13 +City Hotel,0,104,2017,July,30,27,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.2,0,2,Check-Out,Barbara Flores,davidtravis@example.net,685.421.3221x3512,676376098213,2024-08-08 +City Hotel,0,101,2017,June,23,5,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Contract,84.68,0,0,Check-Out,Gary Marshall,kathleenschmidt@example.org,(322)477-1420x37252,4108330785862644,2024-06-06 +Resort Hotel,0,18,2017,April,14,1,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,13.0,222.0,0,Transient-Party,41.5,0,0,Check-Out,Stephanie Hoffman,yfranklin@example.net,679.966.0474,6011284360266963,2026-02-25 +Resort Hotel,0,156,2017,January,2,1,0,4,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,E,1,Refundable,14.0,222.0,0,Transient-Party,61.94,0,0,Check-Out,Lance Rose,teresa45@example.com,2724075466,3502406155362391,2025-04-19 +City Hotel,0,2,2017,November,45,5,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,I,0,No Deposit,13.0,179.0,0,Transient-Party,1.04,1,3,Check-Out,Donald Franklin,josephhansen@example.com,771-441-5572x460,6011030741000385,2025-06-23 +City Hotel,0,45,2017,September,39,26,1,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,252.0,0,3,Check-Out,Shannon Jones,david23@example.com,+1-788-273-6929x70463,3536525790490885,2025-12-08 +Resort Hotel,1,99,2017,October,41,11,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,126.88,0,0,Canceled,Jennifer Avila,ezuniga@example.com,+1-594-296-0187,4067889975903239667,2024-12-10 +Resort Hotel,1,162,2017,August,34,17,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,115.01,0,3,Canceled,Francisco Gonzalez,marywhite@example.org,620.558.3491x29599,4170023766034241,2026-02-08 +Resort Hotel,0,3,2017,April,17,26,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient,1.78,1,1,Check-Out,Kathleen Mooney,harpersteven@example.net,(230)201-8403x3939,3552078018802985,2025-01-25 +Resort Hotel,0,38,2017,December,49,4,0,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,250.0,179.0,0,Transient,232.24,1,0,Check-Out,Caleb Jackson,teresafields@example.net,+1-913-936-8706x0607,6529471920121474,2024-09-11 +Resort Hotel,0,155,2017,November,47,24,4,7,3,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,192.0,179.0,0,Transient,83.46,0,1,Check-Out,James Ray,mason04@example.com,365.281.0884x5379,6590904897167629,2024-04-11 +City Hotel,0,0,2017,October,40,4,0,1,1,0.0,0,BB,BRA,Corporate,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,47.69,0,2,Check-Out,Mason Chase,joshuadouglas@example.org,+1-267-745-3056,5304896844577943,2025-01-31 +City Hotel,1,127,2017,September,39,21,2,5,2,0.0,0,HB,ITA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.36,0,0,No-Show,Susan Mitchell DVM,garrett73@example.net,001-500-652-4357x403,4747595134360224117,2024-11-23 +City Hotel,1,162,2017,May,22,29,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,110.36,0,0,Canceled,Steven Hull,newmankatrina@example.net,(489)345-2759x2767,6554161804793146,2025-09-27 +Resort Hotel,0,0,2017,January,2,8,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,37.19,1,1,Check-Out,Matthew Jones,wrightcynthia@example.net,662-640-0670x1186,3560328423883348,2025-11-13 +City Hotel,0,0,2017,March,10,9,1,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,218.0,0,Transient,49.62,0,2,Check-Out,Robert Cummings,omiles@example.net,+1-973-707-3407x00632,4130830562436,2024-09-26 +City Hotel,0,29,2017,October,40,3,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.13,0,2,Check-Out,Paul Ross,kelly00@example.org,+1-323-446-8832x694,6599386170984493,2024-05-06 +Resort Hotel,0,51,2017,September,37,10,2,5,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,181.0,179.0,0,Transient-Party,148.61,0,2,Check-Out,Emily Salazar,alanmoore@example.net,+1-454-528-1257x89920,6567083306366491,2024-05-16 +Resort Hotel,1,13,2017,June,23,4,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,244.0,179.0,0,Transient,129.32,0,0,Canceled,Michael Gibson,jcarrillo@example.net,536-499-8862,6523440572796723,2024-09-12 +Resort Hotel,1,62,2017,July,29,19,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,Tracy Martinez,grichards@example.org,928-412-3827x88804,676107000678,2025-06-17 +City Hotel,0,1,2017,March,13,27,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,252.0,0,0,Check-Out,Luke Johnson,arojas@example.com,001-652-909-2665x42039,4071237078930421,2025-12-24 +City Hotel,0,18,2017,September,35,2,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,130.16,0,0,Check-Out,Adam Garcia,kjohnson@example.com,001-986-737-8224x251,4531624607110353404,2024-07-06 +City Hotel,1,4,2017,June,26,25,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,137.57,0,2,No-Show,Michael Graham,cynthiatownsend@example.org,001-621-545-6394x4078,36192701375852,2024-07-02 +City Hotel,0,338,2017,September,38,21,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,77.47,0,0,Check-Out,Corey Barrera,tonyabrown@example.org,834.502.3206x0037,6011247890574404,2025-07-06 +Resort Hotel,0,1,2017,July,28,12,4,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,253.0,179.0,0,Transient,242.53,0,1,Check-Out,Steven Mayo,robinsonalexander@example.org,589.568.4599x8568,4755013676361,2024-10-21 +City Hotel,0,279,2017,July,28,11,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.88,0,0,Check-Out,Shawna Green,brownbrandon@example.net,750-812-0931x9076,4004477221012683,2025-10-10 +City Hotel,0,5,2017,March,12,21,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,129.04,0,1,Check-Out,Ashley Valentine,lorimercado@example.org,243.286.7962,36244840876769,2024-09-11 +City Hotel,1,38,2017,March,12,18,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,102.18,0,0,Canceled,Gary Salazar,gonzalezsusan@example.net,452.677.9616,4146894443398279,2025-10-16 +City Hotel,1,194,2017,July,28,9,2,3,2,2.0,0,BB,DEU,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,222.08,0,0,Canceled,Debra Jackson,vhunt@example.org,816-362-2186,3554967718641081,2025-08-25 +City Hotel,0,59,2017,May,21,22,2,0,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.7,1,3,Check-Out,Joe Martinez,daniel89@example.org,903.771.2568x4978,30418930853104,2025-05-18 +Resort Hotel,0,186,2017,October,41,10,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,52.77,0,0,Check-Out,Nicole Barron,drichardson@example.org,+1-885-573-3413,376497786385447,2025-12-22 +Resort Hotel,1,148,2017,May,19,5,1,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,245.77,0,0,Canceled,Jennifer Griffin,sthompson@example.org,967-737-3912,3583512754242371,2024-09-19 +Resort Hotel,0,87,2017,March,12,22,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,89.13,0,2,Check-Out,Joseph Lane,sandra55@example.org,(942)674-7758,213183832542747,2026-01-12 +Resort Hotel,0,38,2017,January,4,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,129.0,179.0,0,Transient-Party,43.31,1,1,Check-Out,Vanessa Morris,ewilliams@example.net,001-825-315-1745,4903018147165304,2024-12-19 +City Hotel,1,46,2017,February,7,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,40,Transient,72.82,0,1,No-Show,Courtney Baker,stewartkevin@example.org,6789727486,4675914270299784875,2024-07-19 +Resort Hotel,0,96,2017,September,36,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Contract,76.72,0,1,Check-Out,Bradley Hansen,wardebony@example.org,384-621-8854,4364015968908,2024-04-19 +City Hotel,0,57,2017,August,33,12,3,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,117.0,0,2,Check-Out,Mary Moss,terrancehorton@example.net,257-470-4460,6530974284444660,2024-09-08 +Resort Hotel,1,42,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,46.46,0,1,Canceled,Blake Bonilla,qmurphy@example.net,(371)539-7028x43221,3595746889277367,2024-10-30 +City Hotel,1,11,2017,May,19,4,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,154.26,0,0,No-Show,Adam Robinson,qlewis@example.org,415.754.0588x1744,6565297422091583,2024-06-10 +City Hotel,0,51,2017,October,43,27,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,86.48,0,1,Check-Out,Chelsea Garcia,sandra66@example.org,249-822-4885x9388,30227487742531,2025-05-27 +City Hotel,1,36,2017,September,36,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,62.83,0,2,Canceled,Kevin Rose,todd94@example.net,001-804-763-1111x89288,4799689818790740,2024-04-07 +City Hotel,1,393,2017,June,24,8,0,3,2,0.0,0,SC,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,114.11,0,0,Canceled,Paige Collins,eric09@example.org,001-587-411-0129x8501,6011418964063158,2025-07-01 +Resort Hotel,0,22,2017,March,13,27,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,24.0,179.0,0,Transient,82.4,0,1,Check-Out,Christian Wagner,rodriguezkelly@example.org,001-797-697-7019x942,4178602926107,2024-07-02 +Resort Hotel,1,387,2017,November,45,2,1,3,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,292.0,179.0,0,Transient,118.63,0,0,Canceled,Colleen Cox,richmondryan@example.org,+1-673-340-5599x583,6535967395837686,2025-03-03 +City Hotel,0,323,2017,September,38,19,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.82,0,2,Check-Out,Shawna Palmer,vacosta@example.com,584-921-0090x90554,675900548164,2025-07-01 +Resort Hotel,0,34,2017,November,44,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,242.0,179.0,0,Transient,83.51,0,1,Check-Out,Chelsea Ramirez,qbanks@example.net,775-315-1122,3504364569647212,2024-09-21 +Resort Hotel,1,206,2017,June,27,29,1,5,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.78,0,1,Canceled,Eric Kane,alexnelson@example.net,001-727-742-8016x92007,676109618139,2025-08-17 +City Hotel,1,42,2017,October,42,19,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,126.8,0,1,Check-Out,Bridget Walter,sarajohnson@example.net,666-653-3893,3530506340291508,2025-09-03 +City Hotel,1,127,2017,January,5,27,1,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,D,D,0,Non Refund,38.0,179.0,0,Transient,119.0,0,0,Canceled,Cynthia Shannon,watsonmary@example.org,9266295743,6595034990536259,2025-02-21 +Resort Hotel,0,84,2017,April,17,26,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,D,0,No Deposit,245.0,179.0,0,Transient-Party,60.57,0,0,Check-Out,Allen Stanley,kimporter@example.org,(969)575-1085x4455,4153786287707542,2024-04-19 +City Hotel,0,394,2017,May,21,19,0,3,2,0.0,0,BB,RUS,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,117.75,0,1,Check-Out,Derek Mcintosh,david81@example.org,794-263-5179x631,347472984657620,2026-01-03 +City Hotel,1,17,2017,December,52,24,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,64.16,0,1,Canceled,Jeffrey Hernandez,stephanie88@example.org,839.918.5902,3521706993299854,2025-11-30 +City Hotel,0,32,2017,September,38,18,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,90.87,0,1,Check-Out,Katie Brown,christopher47@example.net,352-994-1127x78169,6011957230554870,2025-04-30 +City Hotel,1,300,2017,March,13,31,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,67.34,0,0,Canceled,Brent Wong,ashleyhumphrey@example.org,514.670.6434x0120,3597279921731751,2024-05-18 +City Hotel,1,405,2017,July,30,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,75.91,0,0,Canceled,Jenny Carter,jeffrey99@example.net,(901)469-1631,6599156758828077,2025-02-04 +Resort Hotel,0,41,2017,February,6,4,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,97.63,1,1,Check-Out,Kirk Moreno,higginsdonna@example.com,+1-406-922-7573x7780,340397441694899,2024-12-19 +Resort Hotel,0,17,2017,April,15,8,2,5,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,91.17,0,0,Check-Out,Jeffrey Maldonado DDS,thernandez@example.com,001-348-727-3310,4446080802489753,2026-03-05 +Resort Hotel,0,197,2017,August,35,30,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,10.0,179.0,0,Transient,206.07,0,2,Check-Out,Colleen Brown,ppierce@example.org,+1-883-239-1034x0055,346204717211594,2026-01-22 +City Hotel,0,2,2017,September,39,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,8.0,179.0,0,Contract,109.29,1,1,Check-Out,Derek Jones,colemanjennifer@example.org,557.891.9993x1140,4537670220282531,2026-02-06 +City Hotel,0,141,2017,September,37,9,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,157.77,0,2,Check-Out,Darrell Oliver,twilson@example.org,9044632081,30354871968645,2025-01-16 +City Hotel,0,58,2017,March,13,28,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,127.05,0,2,Check-Out,Jenna Garcia,othomas@example.net,305-782-1706x15569,3598822267621463,2025-05-12 +City Hotel,1,1,2017,October,40,4,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,105.94,0,0,Check-Out,Sherry Adams,elizabeth91@example.com,493.907.2950,3541119418162465,2025-04-28 +Resort Hotel,0,1,2017,December,52,26,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,76.74,0,2,Check-Out,Richard Bailey,jacquelineberry@example.net,525.978.7560x285,676382868419,2024-11-17 +Resort Hotel,0,16,2017,October,42,17,0,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,42.0,179.0,0,Transient-Party,110.7,0,0,Check-Out,Kyle Gross,edwinward@example.com,(369)389-5915x70327,580869922428,2026-02-02 +Resort Hotel,1,16,2017,July,30,25,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,239.0,179.0,0,Transient,43.0,0,1,Canceled,Jonathan Graves,jessica05@example.net,+1-308-829-4129x675,4336419871762901,2024-10-09 +Resort Hotel,0,0,2017,October,40,4,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,37.9,1,0,Check-Out,Eric Knox,joseph63@example.net,6023101945,5140228348866929,2024-10-17 +City Hotel,0,49,2017,April,17,23,2,5,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,234.0,179.0,0,Contract,102.16,0,2,Check-Out,Ethan Jones,christopherwhite@example.org,637-619-3100x29503,3515429837568552,2024-07-11 +City Hotel,0,16,2017,October,43,24,1,3,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,132.66,1,1,Check-Out,Steven Thomas,valenciamichelle@example.com,(656)464-3804,3586567781471846,2024-11-14 +City Hotel,1,251,2017,July,30,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,111.81,0,0,Canceled,John Cook,rubenroberson@example.org,+1-646-549-1205x670,3588823893085968,2024-04-05 +Resort Hotel,1,12,2017,December,50,13,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,Non Refund,240.0,179.0,0,Transient,216.63,0,1,Canceled,Dennis Jones,grantkimberly@example.com,(564)614-6933x80971,347684789515833,2025-10-08 +City Hotel,0,36,2017,December,51,18,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.41,0,1,Check-Out,Sarah Wheeler,michelle60@example.net,344-709-8649x10394,2284202092559843,2024-12-29 +City Hotel,0,43,2017,June,24,12,0,1,2,1.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient-Party,131.89,0,0,Check-Out,Lauren Freeman,mmontes@example.net,+1-535-941-0069x858,5353612304315090,2025-03-14 +City Hotel,0,60,2017,August,32,9,2,2,1,1.0,0,BB,,Direct,Direct,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient-Party,141.82,0,1,Check-Out,Brian Fuentes,kcohen@example.net,+1-772-590-6439x232,3570001769571110,2025-06-08 +City Hotel,1,203,2017,July,27,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.93,0,1,Canceled,Wanda Conley,sjimenez@example.org,868-553-5136x17803,3571888195173472,2024-06-22 +City Hotel,0,0,2017,March,11,13,0,1,3,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,H,K,0,No Deposit,10.0,179.0,0,Transient,0.51,0,0,Check-Out,Carol Thomas,jamesklein@example.net,307-781-5046,676184136668,2025-01-02 +City Hotel,0,16,2017,January,4,23,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,135.0,0,2,Check-Out,Eric Fitzgerald,lori25@example.net,597.667.3848,4829899395145541443,2026-01-11 +City Hotel,1,144,2017,October,41,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,75,Transient,125.98,0,0,Canceled,Nicholas Fritz,parkerdiana@example.net,958.573.1794,4606559162040876131,2024-05-08 +Resort Hotel,1,2,2017,February,7,17,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,37.73,0,1,No-Show,John Diaz,michaelgomez@example.net,293-533-7649x74828,3543234212962891,2025-06-08 +City Hotel,0,50,2017,October,43,21,2,5,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,229.74,0,1,Check-Out,Harold Mckinney,nicole03@example.net,+1-225-576-8787x6975,3527510364850129,2024-07-12 +Resort Hotel,0,97,2017,August,33,12,2,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,55.74,1,1,Check-Out,Patricia Vincent,muellerjeffrey@example.net,7927249391,3586227427664466,2024-09-30 +City Hotel,1,49,2017,August,31,2,1,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,121.51,0,1,Canceled,Linda Rodriguez,leah13@example.org,3839462204,4179663667803559097,2024-08-17 +City Hotel,0,88,2017,February,6,4,1,5,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,162.0,179.0,0,Transient-Party,60.79,0,1,Check-Out,Monica Smith,michaelanderson@example.com,001-599-974-4829x51550,378966309812911,2025-03-03 +City Hotel,1,414,2017,May,20,18,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,130.48,0,1,Canceled,Selena Hopkins,dorothy51@example.com,001-879-226-9681x10201,6539138625434837,2024-07-01 +Resort Hotel,1,34,2017,August,32,12,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,241.0,179.0,0,Transient,165.44,1,0,Canceled,Jonathan Sanchez,jimmy19@example.org,+1-490-831-3670,675907647282,2024-07-26 +Resort Hotel,0,0,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,106.71,1,1,Check-Out,Valerie Howard,landerson@example.com,+1-651-871-6020x07751,36925683159608,2024-07-18 +City Hotel,0,14,2017,June,24,8,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,45.0,0,Transient,103.94,0,1,Check-Out,Cheryl Blevins,dancox@example.org,(732)936-0326x297,3558941804516057,2025-03-06 +City Hotel,0,1,2017,July,28,12,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.13,0,1,Check-Out,Tracie Wiley,tsantos@example.org,639.720.3435x81142,4423425892821828,2026-01-09 +City Hotel,0,21,2017,July,28,13,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,128.0,179.0,0,Transient-Party,0.5099000000000001,1,0,Check-Out,Stephanie Cole,samantha66@example.org,(315)531-5788x6849,3595158861941020,2024-10-09 +Resort Hotel,0,3,2017,February,8,17,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,155.0,179.0,0,Transient,61.04,1,1,Check-Out,Kelsey Baker,hudsonsandra@example.net,806.334.3874,4877887774706628,2025-01-27 +Resort Hotel,0,357,2017,May,20,17,3,5,3,0.0,0,HB,,Direct,Direct,0,0,0,G,A,1,No Deposit,246.0,179.0,0,Transient,147.86,0,0,Check-Out,Stacy Myers,tasha11@example.com,(337)854-2804,587209641089,2025-05-24 +City Hotel,1,2,2017,August,33,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,208.34,0,1,No-Show,Xavier Parker,ryanlisa@example.com,001-857-805-5455,36858830160965,2024-04-13 +City Hotel,1,34,2017,June,23,5,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,149.18,0,3,Canceled,Joseph Cooper,elizabeth25@example.com,249.998.6313x825,4051996090481556492,2024-08-10 +City Hotel,0,95,2017,March,10,6,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.61,0,1,Check-Out,Jessica Gibson,wwilson@example.net,8232131035,3578512744095837,2024-10-21 +Resort Hotel,0,63,2017,October,40,3,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Rebecca Roberts,bob85@example.com,386-939-4920x16939,4344908427525101,2025-12-21 +Resort Hotel,0,2,2017,July,30,28,0,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,Kathryn Jennings,davismichelle@example.net,325-845-7285x952,4467641103555623010,2024-08-11 +City Hotel,1,103,2017,June,22,2,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,27.0,179.0,60,Transient,144.97,0,0,Canceled,Chris Levy,huffmanjames@example.com,(735)599-7035x8780,4442705572110270,2024-11-09 +Resort Hotel,0,15,2017,December,50,16,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,237.0,179.0,0,Transient,63.11,1,1,Check-Out,Mary Torres,reedtimothy@example.org,262.404.4288x41377,4351983936953253654,2025-02-20 +City Hotel,0,105,2017,May,22,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,138.47,0,0,Check-Out,Robert Smith,steven70@example.org,(461)317-9807x6127,180046403938181,2025-02-25 +City Hotel,1,157,2017,August,34,20,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,234.38,0,0,Canceled,Douglas Watkins,wgarcia@example.org,(560)589-6139,6011465114250565,2024-06-17 +City Hotel,0,33,2017,December,49,3,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,85.26,0,1,Check-Out,Eric Jordan,blankenshipbrenda@example.net,(939)383-5219x1032,6011218179210697,2025-03-05 +Resort Hotel,1,50,2017,July,30,22,0,4,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,219.94,0,0,Canceled,April King,reginaraymond@example.com,326.486.3471x64059,348641804069286,2024-06-27 +Resort Hotel,0,49,2017,October,41,13,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,102.31,0,3,Check-Out,Douglas Trevino,williamsjames@example.com,680-568-5660,676145313257,2025-11-05 +City Hotel,1,112,2017,December,49,3,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,83.0,179.0,0,Transient-Party,87.51,0,0,No-Show,Patricia Moore,alowery@example.com,3858087680,4286047430179,2024-05-09 +Resort Hotel,0,85,2017,December,51,19,0,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,343.0,179.0,0,Transient-Party,76.43,0,0,Check-Out,Devin Ferrell,edwinwarner@example.com,001-455-537-4180x33337,4230827683248967,2026-02-07 +City Hotel,0,15,2017,May,19,6,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.95,0,1,Check-Out,Kevin Miller,juarezbrandy@example.net,380.726.0992x348,180030974505231,2026-02-22 +City Hotel,1,311,2017,April,15,7,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,107.9,0,0,Canceled,John Gomez,roy06@example.net,887-343-9037x942,3565677275125454,2026-03-04 +Resort Hotel,1,29,2017,August,31,1,2,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,L,F,0,Non Refund,12.0,179.0,0,Transient,214.28,0,0,Canceled,Mandy Henderson,stephanie99@example.org,(401)752-9509x9612,6569458881482103,2025-01-20 +Resort Hotel,0,95,2017,September,37,10,2,4,2,0.0,0,BB,NLD,Offline TA/TO,Direct,0,0,0,A,F,0,No Deposit,85.0,179.0,0,Transient,125.57,1,0,Check-Out,Annette Green,gregory42@example.com,+1-534-738-5497x0425,371264672186049,2024-12-28 +City Hotel,0,17,2017,December,49,5,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,49.58,0,1,Check-Out,Eric Elliott,elizabeth90@example.org,656-751-8672x2666,3511989016685117,2024-08-17 +Resort Hotel,0,185,2017,August,33,18,3,7,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,230.44,0,1,Check-Out,Erica Lane,gballard@example.com,662.202.5159x2679,3562590268888355,2026-03-10 +Resort Hotel,0,14,2017,December,49,6,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,64.24,1,1,Check-Out,Christina Taylor,patriciabecker@example.com,(464)810-8614,374315166169268,2024-09-27 +Resort Hotel,1,6,2017,March,11,15,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,67.0,0,Transient,39.37,0,1,Canceled,Elizabeth Miller,joshua31@example.com,+1-446-656-2156x1761,4107394181297681,2024-12-29 +City Hotel,0,35,2017,February,7,16,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,97.17,0,0,Check-Out,Lori Gardner,jeffreyodom@example.org,672-664-8813x7044,3535393242902002,2024-10-10 +City Hotel,1,107,2017,February,7,15,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.26,0,1,Canceled,Shawn Kim,johnsonemily@example.net,(365)559-6982x2500,3559389603091345,2025-03-22 +Resort Hotel,0,205,2017,June,24,9,4,7,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,238.71,0,1,Check-Out,Jeremy Edwards,michellewilliams@example.org,+1-584-454-4411x5477,4056104041692,2025-08-04 +Resort Hotel,0,2,2017,May,22,26,1,3,2,2.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,C,1,No Deposit,244.0,179.0,0,Transient,194.05,0,2,Check-Out,Michelle Mcdonald,larryhancock@example.net,001-502-920-4927,578780898008,2025-01-19 +City Hotel,0,17,2017,August,31,5,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,217.3,0,0,Check-Out,Jason Jenkins,vhunt@example.net,001-207-503-8183x790,180001111409280,2026-02-02 +City Hotel,1,160,2017,September,38,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,111.4,0,0,Canceled,Justin Bernard,carlroberts@example.com,444-654-8202x49272,676296537571,2024-04-01 +Resort Hotel,0,4,2017,October,41,8,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,197.0,179.0,0,Transient,79.76,0,0,Check-Out,Peter Gilbert,hannahjenkins@example.com,2052918684,373652131771955,2025-09-15 +Resort Hotel,1,0,2017,December,52,26,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,61.19,0,0,No-Show,David Hunt,rhonda44@example.org,(976)646-8815,6011383802853881,2025-06-05 +Resort Hotel,0,11,2017,August,35,27,0,1,2,1.0,0,HB,ESP,Online TA,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,221.19,0,1,Check-Out,Joshua Cunningham,daniellarson@example.org,001-412-993-4307,4283074596139,2024-10-01 +City Hotel,0,1,2017,December,49,4,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,2.5,0,1,Check-Out,Pedro Long,yduran@example.org,(356)321-7970x9030,4683786849861401916,2025-11-29 +Resort Hotel,1,106,2017,March,12,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,F,F,0,No Deposit,236.0,179.0,0,Transient,50.79,0,1,Canceled,Aaron Aguirre,connieporter@example.net,211-978-9517x6930,2302568416449640,2025-04-20 +Resort Hotel,1,13,2017,April,17,24,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,174.36,0,0,Canceled,Julia Brown,david60@example.org,6767521272,2720818989571765,2025-10-30 +City Hotel,0,14,2017,June,26,24,2,3,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient,43.74,0,0,Check-Out,Ronald Santos,alexisfischer@example.org,(899)559-2114,3553557973362555,2025-03-07 +Resort Hotel,0,143,2017,May,21,20,4,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,240.0,179.0,0,Transient,135.4,1,0,Check-Out,Brent Roberts,mooremonique@example.com,+1-712-593-2314x52997,3518664280905490,2026-03-06 +City Hotel,0,145,2017,July,27,3,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,137.42,0,1,Check-Out,Mr. Antonio Yang,derek94@example.net,001-688-991-4816x4974,6559108999815122,2024-11-07 +Resort Hotel,1,108,2017,July,27,7,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,82.96,0,0,Canceled,Nancy Brown,williamhampton@example.net,(625)617-4773x593,180093320780460,2025-06-01 +City Hotel,0,46,2017,September,36,8,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,G,0,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,2,Check-Out,Charles Yang,rodriguezdarin@example.com,686.480.4403x642,3596020807164993,2024-12-01 +City Hotel,0,12,2017,August,32,7,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,63.21,0,1,Check-Out,Danny Lowe PhD,frusso@example.org,659.617.2576,2443957823350634,2025-08-20 +City Hotel,0,19,2017,January,3,19,0,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,42.14,0,1,Check-Out,Eric Hays,emily23@example.com,(665)298-4364x99219,379149113652240,2024-07-18 +City Hotel,1,385,2017,October,42,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,61,Transient,84.46,0,0,Canceled,John Watts,lyonsluis@example.com,001-659-910-6564x0657,639055849116,2025-07-04 +City Hotel,0,58,2017,September,40,30,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,137.56,0,0,Check-Out,Aaron Munoz,traciwhite@example.org,9915022032,371475700891034,2024-10-12 +Resort Hotel,1,293,2017,August,31,4,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,160.43,0,2,No-Show,Brent Harris,hayesfrank@example.net,+1-590-780-8999x05403,344200876023343,2024-05-05 +Resort Hotel,0,10,2017,September,36,6,3,7,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,335.0,179.0,0,Transient,130.37,0,0,Check-Out,Ross Wallace,brianwoodard@example.net,001-281-612-5154,6520372362241953,2024-09-19 +City Hotel,1,12,2017,July,27,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,116.14,0,1,Canceled,Bryan Sullivan,maria40@example.net,001-377-346-8625x0101,342461676384465,2025-02-22 +City Hotel,0,16,2017,March,13,29,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.49,0,1,Check-Out,Dr. Sarah Payne,joshuayoder@example.net,+1-505-884-8474,4073104717155,2025-07-22 +Resort Hotel,1,150,2017,August,32,8,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,63.31,0,0,Canceled,Melanie Villarreal,rberry@example.net,5916540876,343201123186611,2025-11-14 +Resort Hotel,1,1,2017,February,6,4,0,2,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,B,0,No Deposit,244.0,179.0,0,Transient,44.01,0,1,Canceled,Jessica Fields,lewisphilip@example.com,+1-397-647-0533x20122,180026095474661,2024-06-03 +City Hotel,0,26,2017,January,2,3,1,4,2,0.0,0,BB,,Direct,TA/TO,0,0,0,A,L,1,No Deposit,8.0,179.0,0,Transient,109.74,0,0,Check-Out,Robert Sandoval,michele69@example.org,(518)360-2245,4626074840491311,2024-04-28 +Resort Hotel,1,21,2017,December,49,7,4,5,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,47.85,0,0,No-Show,Patrick Payne,lunajennifer@example.net,001-381-872-8376,3511673320361645,2025-11-26 +City Hotel,0,3,2017,February,8,21,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,33.8,0,2,Check-Out,Dylan Contreras,wrightemily@example.com,001-405-320-8673x238,3509106112997437,2025-03-28 +Resort Hotel,0,94,2017,May,19,10,0,3,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,111.03,0,0,Check-Out,Katherine Contreras,robert76@example.org,788.843.0011x646,630493491454,2025-06-25 +City Hotel,0,14,2017,November,47,19,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,96.41,0,0,Check-Out,Michael Rodriguez,josephhawkins@example.org,308.715.0720x809,30586875199947,2024-11-03 +Resort Hotel,1,37,2017,August,36,31,0,1,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,251.0,179.0,0,Transient,252.0,0,0,Canceled,Jeffery Johnson,tammysingleton@example.com,810.960.5636x0569,4717514192760102,2025-10-01 +City Hotel,0,0,2017,March,12,22,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,139.87,1,0,Check-Out,Justin Smith,loribenson@example.com,(576)820-3134,5102629118667973,2026-01-02 +City Hotel,0,5,2017,October,41,10,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,54.66,0,3,Check-Out,Matthew Barry,parkertodd@example.net,+1-630-244-8107x83784,376846414060725,2024-09-26 +City Hotel,1,5,2017,July,27,6,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,133.41,0,0,No-Show,Amanda Meadows,reedjill@example.org,+1-691-953-6000x26660,2714931558855515,2025-07-20 +City Hotel,0,51,2017,July,28,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,94.64,0,0,Check-Out,Julie Sharp,justin14@example.net,604.671.7143x32120,2289456858298849,2025-01-15 +Resort Hotel,1,14,2017,October,40,2,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,140.19,0,0,Canceled,William Howard,shermanwendy@example.net,(646)426-6330x693,2601215570468556,2024-04-20 +City Hotel,0,147,2017,October,41,13,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,130.33,0,0,Check-Out,Kathy Bailey,millerallison@example.org,001-459-484-9803x5022,675963323695,2025-12-13 +Resort Hotel,0,190,2017,August,32,7,1,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,11.0,222.0,0,Transient-Party,80.84,0,0,Check-Out,Jeanette Brown,samantha61@example.net,001-927-537-2020x32760,4077073248084,2024-04-01 +City Hotel,1,117,2017,July,27,2,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,129.01,0,0,Canceled,Heather Ball,pmckenzie@example.org,(305)957-6420x7092,4387201479457342,2024-05-05 +City Hotel,1,393,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,94.55,0,0,Canceled,Mike Buchanan,agarner@example.org,(286)802-4925x586,3547000565791724,2025-08-02 +Resort Hotel,1,356,2017,January,2,11,2,4,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,268.0,179.0,0,Transient-Party,79.63,0,0,Canceled,Phillip Turner,christopher37@example.com,9473239614,502071031152,2026-03-22 +City Hotel,1,87,2017,April,14,3,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.41,0,1,No-Show,Thomas Brewer,thomasriddle@example.net,+1-461-511-5259x941,3527702925522723,2024-08-03 +City Hotel,1,163,2017,July,29,13,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,John Hopkins,kellymichael@example.org,001-929-791-5725,6501104219324648,2025-11-21 +Resort Hotel,1,55,2017,December,52,28,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,49.05,0,1,Canceled,Tammy Rowe,donna31@example.org,(842)748-1339x643,3525170246160023,2024-04-04 +Resort Hotel,0,0,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,125.33,1,2,Check-Out,Beverly Nguyen,melissacollins@example.net,(648)355-2581x2822,2326080354574449,2025-04-09 +Resort Hotel,1,46,2017,July,30,23,4,3,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,221.96,0,0,Canceled,Hannah Williamson,jason74@example.net,264-824-7735,3517569244381665,2025-10-27 +City Hotel,1,199,2017,July,27,6,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,63.88,0,0,Canceled,Andrew Christian,brandonsweeney@example.com,001-947-537-8213x73702,180050376890817,2024-10-12 +Resort Hotel,1,2,2017,February,8,24,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,63.54,0,1,No-Show,Brent Rodriguez,jshaw@example.com,760-713-6252,4472152041471552130,2025-04-05 +City Hotel,0,8,2017,March,9,2,1,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,78.37,0,0,Check-Out,Karen Wolf,orozcocarlos@example.org,(450)543-1612x61638,30070962725625,2024-08-26 +City Hotel,0,47,2017,August,31,4,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,216.0,0,0,Check-Out,Dr. Morgan Young,richardhowell@example.com,001-216-320-3438,4180587967092073,2026-02-24 +Resort Hotel,0,199,2017,April,16,16,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,133.18,0,1,Check-Out,Carrie Stafford,blackburncathy@example.com,+1-497-753-3842x95193,3527506767449022,2025-06-10 +Resort Hotel,1,1,2017,March,10,4,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,331.0,0,Transient,30.36,0,0,Canceled,Jennifer Brown,catherinetorres@example.org,(795)666-1147x72373,6011695884347304,2024-08-12 +City Hotel,0,2,2017,March,9,3,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,229.0,0,Transient,115.12,0,0,Check-Out,Ashley Bradford,woodpenny@example.org,540.735.2389x54562,3582941687722004,2025-04-20 +Resort Hotel,0,0,2017,May,22,29,1,1,3,1.0,0,BB,,Online TA,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,177.03,1,0,Check-Out,Phillip Obrien,hendersonmatthew@example.com,(429)535-3092x9908,3545326965278323,2025-05-10 +Resort Hotel,0,0,2017,April,18,28,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient,223.53,1,0,Check-Out,Tammy Morris,moodyanita@example.com,714-850-9828,6011713848391076,2025-07-15 +City Hotel,0,19,2017,January,4,24,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.71,0,1,Check-Out,Jamie Zhang,jefferybeck@example.com,(413)871-9068,3526679963397724,2024-11-26 +City Hotel,0,48,2017,October,41,13,2,1,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.85,0,0,Check-Out,Christina King,santoskim@example.org,(561)263-6378x257,676321809557,2025-05-19 +Resort Hotel,0,58,2017,September,37,14,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,64.09,0,0,Check-Out,Dustin Harris,gonzalezsamuel@example.org,+1-500-767-8961x663,4774658322900,2025-10-15 +City Hotel,0,15,2017,October,40,1,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,98.85,0,0,Check-Out,Robert Stokes,lisa47@example.com,+1-914-760-3692x78794,38950419592177,2025-04-25 +City Hotel,1,100,2017,April,17,23,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.95,0,1,Canceled,Kevin Soto,davidthompson@example.com,+1-707-257-8250x459,180056634790681,2024-11-23 +Resort Hotel,0,37,2017,November,45,8,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient,52.88,0,2,Check-Out,Christina Patrick,shawncastro@example.net,994-489-7241x213,180094471030242,2026-02-23 +City Hotel,1,187,2017,November,45,6,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,124.8,0,1,Check-Out,Heather Russell,phillipsstephen@example.com,+1-607-816-9186x6435,4422903189491746,2025-01-30 +Resort Hotel,0,0,2017,February,9,24,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,50.96,0,1,Check-Out,Andrea Lopez,gavinsimmons@example.com,743-356-5496,4832153456225,2026-01-01 +City Hotel,0,19,2017,March,10,8,0,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,112.48,1,0,Check-Out,Susan May,kathleen07@example.net,(548)689-3660x3711,38290339082235,2024-07-30 +City Hotel,1,108,2017,August,33,18,2,5,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,81.01,0,0,Canceled,Ronnie Hudson MD,darrellglenn@example.net,(630)446-4298x58258,30123645665344,2024-05-02 +Resort Hotel,1,295,2017,August,34,26,0,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient-Party,64.13,0,0,Check-Out,Luke Hansen,claudia53@example.org,7392134021,4869734560869,2026-01-18 +Resort Hotel,0,139,2017,September,37,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Contract,56.15,0,1,Check-Out,Austin Patterson,joseph31@example.net,810-866-7173x953,3521589843752342,2024-05-17 +City Hotel,1,13,2017,December,49,4,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,142.44,0,0,Canceled,Benjamin Miller,devans@example.com,(204)248-2775x41927,2239404912770933,2025-03-03 +Resort Hotel,0,195,2017,August,34,21,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,239.0,179.0,0,Transient,226.83,0,1,Check-Out,Elizabeth Wilson,shelbynorton@example.net,(965)758-3837x92989,4273170539869,2024-09-09 +Resort Hotel,0,77,2017,April,17,22,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,318.0,179.0,0,Transient,70.59,0,0,Check-Out,Kyle Rivera,christine07@example.org,(744)575-9808x8071,348562222755712,2025-06-28 +City Hotel,1,172,2017,May,19,6,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,109.38,0,0,Canceled,Todd Nielsen,webersarah@example.org,697-453-1397x5131,4116521191541102528,2024-07-06 +City Hotel,1,0,2017,March,12,17,0,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.52,0,0,Canceled,Michael Jones,psuarez@example.net,+1-956-277-8401x529,4655870273787362,2025-08-24 +City Hotel,0,17,2017,April,16,17,1,5,2,1.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.98,0,0,Check-Out,Tracy Jones,hrobinson@example.org,771.477.4857,4580276997895319,2026-02-22 +Resort Hotel,0,38,2017,January,2,5,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,47.0,1,1,Check-Out,Sarah Frederick,wintersbeverly@example.net,+1-303-446-5706,213138026969320,2025-07-01 +City Hotel,1,148,2017,July,30,25,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,106.58,0,0,Canceled,Jennifer Brown,vanessameyer@example.net,+1-450-383-4741x167,30072012759257,2025-08-03 +City Hotel,1,249,2017,June,23,4,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,111.24,0,1,Canceled,Ashley Ruiz,elizabethmills@example.com,+1-577-914-4563,4646874800390,2025-01-13 +City Hotel,0,45,2017,June,26,25,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.3,0,1,Check-Out,Deborah Johnson,camachohayley@example.net,562-447-0334x753,378955084239622,2026-03-08 +Resort Hotel,0,50,2017,September,37,14,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,265.0,179.0,0,Transient,64.05,0,0,Check-Out,Dean Cook,michellebennett@example.net,001-611-292-3444x5715,345242592498812,2024-04-12 +City Hotel,0,13,2017,March,10,5,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.32,0,1,Check-Out,Brenda Payne,ehall@example.net,001-369-805-9543x46992,579639852626,2024-05-24 +City Hotel,1,8,2017,August,34,20,0,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,6.0,179.0,0,Transient,230.6,0,1,Canceled,Tammy Alvarado,williamsdavid@example.net,001-418-740-2115x5985,213149044595203,2024-05-17 +Resort Hotel,1,6,2017,October,41,9,0,1,1,2.0,0,BB,PRT,Complementary,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,162.68,0,0,Canceled,Cynthia Jones,beasleyjimmy@example.org,655.319.6710x145,4457742661528684,2024-07-04 +City Hotel,1,100,2017,December,49,5,1,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.22,0,0,Canceled,Sue Warner,stonetammy@example.net,+1-987-372-4908x07442,2536047369015177,2026-02-08 +Resort Hotel,0,88,2017,December,50,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient-Party,42.3,0,0,Check-Out,Amanda Zavala,david19@example.com,(360)440-5837x74682,3578186628846837,2025-09-14 +Resort Hotel,0,49,2017,January,3,16,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,2,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Check-Out,Linda Salazar,joshuarandall@example.com,+1-726-418-6918x7378,676264356814,2024-12-28 +Resort Hotel,1,134,2017,July,27,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,137.32,0,0,Canceled,Juan Potts,hayesnicole@example.com,747.457.9651,5305340200784305,2025-04-21 +Resort Hotel,1,1,2017,November,47,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,133.0,179.0,0,Transient-Party,47.87,0,1,No-Show,Andrew Johnson,xedwards@example.org,393.732.5638x44091,4297334961339,2026-02-07 +Resort Hotel,0,33,2017,March,11,12,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,47.43,1,1,Check-Out,Marie Reynolds,xwalsh@example.net,940.460.9729x6007,2292750322412159,2024-12-26 +City Hotel,1,37,2017,April,16,19,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.61,0,2,Canceled,Samuel Mata,bgordon@example.net,854.607.6896,30051627347880,2024-08-23 +City Hotel,0,1,2017,October,42,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,54.05,0,3,Check-Out,Anthony Ayala,phillipstracy@example.net,001-247-653-8954,4115729797006199718,2025-01-30 +City Hotel,1,287,2017,March,10,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,36.0,179.0,0,Transient,104.03,0,0,Canceled,Kimberly Dalton,normanbrian@example.net,+1-891-607-9073,4596326178764,2025-01-17 +City Hotel,0,55,2017,March,12,22,1,3,1,1.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,149.26,1,0,Check-Out,Nancy Tran,annneal@example.com,672.634.2987,503820684846,2024-09-09 +Resort Hotel,0,147,2017,March,13,31,0,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,40.49,0,0,Check-Out,Ralph Dominguez,dpowers@example.org,(852)900-8345,180039092741628,2026-02-17 +Resort Hotel,1,2,2017,December,50,16,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,43.88,0,2,No-Show,Jeffery Taylor,wrightjacob@example.org,7233512448,4073978708824877723,2025-08-19 +City Hotel,1,24,2017,September,39,26,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,84.15,0,0,No-Show,Steven Haas,ubrown@example.net,(740)349-6117,348903726794445,2024-08-27 +City Hotel,1,9,2017,September,36,4,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.41,0,0,Canceled,Cory Kim,paul96@example.org,001-803-999-9800x106,2283631729686382,2024-06-21 +City Hotel,0,3,2017,June,24,9,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,145.23,0,2,Check-Out,David Chapman,stephanie79@example.com,6398161888,3511812910812563,2025-10-29 +City Hotel,0,1,2017,December,52,30,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,95.81,0,1,Check-Out,Paul Beasley,nataliecarpenter@example.com,(932)646-8449,3532338746741367,2024-07-08 +Resort Hotel,0,304,2017,July,30,22,1,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,238.0,179.0,0,Transient,124.25,1,2,Check-Out,Laura Ritter,alicia33@example.net,(962)311-0556x77200,5169468402152420,2024-12-17 +City Hotel,0,17,2017,September,36,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,204.33,0,1,Check-Out,Nathan Hess,stephanie95@example.net,(368)655-1041x45882,6592200471187994,2025-09-04 +City Hotel,0,17,2017,August,33,12,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,8.0,179.0,0,Transient,252.0,1,0,No-Show,Cameron White,crystal05@example.net,001-288-674-5006x3215,341935024898301,2025-04-06 +City Hotel,0,50,2017,April,15,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,79.68,0,0,Check-Out,Gregory Rios,mark04@example.org,460.816.3350x9899,3531698106877767,2025-11-01 +Resort Hotel,0,106,2017,August,32,10,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,121.77,0,0,Check-Out,Eduardo Obrien,mitchellsamantha@example.org,(823)327-6908x39079,4147430845733430618,2025-01-30 +City Hotel,0,87,2017,July,30,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,123.3,0,0,Check-Out,Bryan Jones,barkerrobert@example.com,902.693.0465x625,4690436432946,2024-04-29 +City Hotel,0,41,2017,April,15,9,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,106.36,0,1,Check-Out,Joshua Simpson,danny99@example.net,567.481.7837,4188375986625111,2025-06-14 +City Hotel,1,90,2017,August,34,23,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,183.75,0,1,Canceled,Heather Herman,andrew64@example.org,(205)377-6604,561278355137,2025-08-05 +City Hotel,0,2,2017,March,11,9,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,92.97,0,1,Check-Out,Micheal Pugh,bethclayton@example.com,808.404.3549x3715,3531070232903596,2024-09-10 +City Hotel,1,16,2017,January,3,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,61.14,0,0,Canceled,Eileen Valdez,jbrowning@example.net,+1-245-907-3168,503860887960,2025-07-16 +City Hotel,1,318,2017,July,28,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient-Party,148.41,0,1,Canceled,Debra Wolfe,jasonjames@example.org,688-982-8401x7854,4809414505950095,2024-09-05 +Resort Hotel,1,6,2017,July,31,30,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,186.92,0,0,Canceled,Amy Mccullough,johnsonemily@example.net,001-886-422-9731,2254750541975438,2025-07-29 +City Hotel,1,39,2017,August,33,15,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.47,0,2,Canceled,Lisa Ramirez,william47@example.org,260.511.1617,3592768913625588,2026-02-19 +City Hotel,0,164,2017,April,17,27,1,1,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,114.02,0,3,Check-Out,Chad Daugherty,hoodnathan@example.com,249.762.6189,4628743448745330,2024-10-25 +City Hotel,0,0,2017,October,43,22,2,5,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,185.0,0,Transient,108.27,0,0,Check-Out,Patrick Clark,danielrice@example.org,254-768-7873x168,3564069372458833,2024-04-04 +City Hotel,0,1,2017,September,36,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,1,No Deposit,12.0,179.0,0,Contract,3.69,0,2,Check-Out,Robert Thomas,nhale@example.net,7154633704,4729689856201,2025-05-20 +City Hotel,1,43,2017,December,51,20,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,94.46,0,0,Canceled,Melissa Santos,nicholskatie@example.com,001-467-695-0042x73540,4351542524538552511,2025-04-14 +City Hotel,1,210,2017,May,19,4,1,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.23,0,0,Canceled,Brian Porter,jennifersmith@example.com,949-505-4353x60021,4162384102031170784,2025-03-10 +Resort Hotel,1,148,2017,June,27,30,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,207.02,0,0,Canceled,Donald Cruz,rdavis@example.org,791.252.5083,676205084103,2025-04-29 +City Hotel,0,396,2017,May,21,24,2,0,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.5,0,0,Check-Out,Angela Ramirez,parkercharles@example.com,001-463-625-8079x996,676162695412,2025-03-02 +City Hotel,1,0,2017,March,11,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,48.25,0,1,No-Show,Kathleen Roy,meganwong@example.org,615.893.7741,213178723980873,2025-02-19 +City Hotel,0,53,2017,August,35,30,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,132.91,0,1,Check-Out,Andrew Harris,rmoore@example.net,+1-272-793-3043,3519730802836304,2025-10-19 +Resort Hotel,1,88,2017,July,30,26,2,0,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient,122.69,0,0,Check-Out,Jeffrey Williams,ashley94@example.net,001-486-340-8607x923,4765084072861,2025-08-08 +Resort Hotel,1,153,2017,January,2,2,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,59.76,0,0,Canceled,Joshua Bailey,robleskaren@example.net,(784)753-9670,3522002087234190,2026-02-03 +City Hotel,0,27,2017,April,15,11,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.44,0,0,Check-Out,Lee Barry,paulwhite@example.net,510-321-0015,2704247014948105,2024-11-01 +Resort Hotel,0,0,2017,September,36,3,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,65.23,1,1,Check-Out,Susan Patrick,karlathornton@example.net,972-941-0879x22630,4520844083330,2025-02-02 +City Hotel,0,12,2017,January,2,12,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,A,2,Refundable,12.0,179.0,0,Contract,53.35,0,1,Check-Out,Nicole Peterson,dcole@example.net,6035299171,6507872889822018,2025-12-28 +City Hotel,0,2,2017,February,8,21,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,79.05,0,3,Check-Out,Jessica Patterson,urichardson@example.org,+1-903-956-1755x9871,4007627951758692,2024-10-20 +City Hotel,0,105,2017,April,18,30,1,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,43.55,0,0,Check-Out,Nancy Brown,bauermindy@example.org,001-629-874-6719x309,30268004777311,2026-01-01 +City Hotel,1,13,2017,November,45,7,1,4,2,0.0,0,BB,IRL,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,55.5,0,0,Canceled,James Griffith,karla70@example.org,683-813-0152x49384,675929949005,2025-07-22 +Resort Hotel,0,253,2017,February,9,26,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Group,34.18,0,0,Check-Out,Shannon Hurley,brittany35@example.net,289-931-6163,374897905109622,2026-03-25 +City Hotel,1,59,2017,October,43,26,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,62.33,0,0,Canceled,Kenneth Carroll,jason17@example.com,+1-369-467-3631x117,3550716581092797,2024-12-26 +City Hotel,0,151,2017,April,15,12,1,3,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,102.55,1,2,Check-Out,Carla James,castillopamela@example.net,5482326178,676278443210,2024-07-20 +Resort Hotel,0,15,2017,January,4,20,1,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,89.4,0,0,Check-Out,Tammy Anderson,mlong@example.net,925-791-3971x04102,503814883685,2025-05-23 +Resort Hotel,0,181,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient-Party,48.09,0,1,Check-Out,Robert Tapia,pamelaacosta@example.net,463-418-8067x47933,563800266576,2024-07-05 +City Hotel,0,154,2017,June,26,28,2,5,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,125.52,0,2,Check-Out,David Daniels,housemichael@example.org,706-807-3662x30709,2714586698097814,2025-11-29 +City Hotel,0,18,2017,October,41,7,1,0,2,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.78,0,0,Check-Out,James Gilbert,nicholas34@example.com,(756)923-0812x254,3592596297052834,2026-02-05 +City Hotel,0,17,2017,December,51,21,1,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,45.44,0,1,Check-Out,Matthew Patton,gmcdonald@example.com,001-403-451-1070,4082561443627,2024-09-10 +City Hotel,1,46,2017,March,10,4,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,87.78,0,0,Canceled,Lisa Martinez,karina63@example.net,394.352.3103x5590,341153975686838,2024-05-24 +Resort Hotel,0,157,2017,April,18,29,2,4,2,0.0,0,FB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,113.15,0,0,Check-Out,Erica Baker,kevinevans@example.net,+1-528-911-4288x02284,4420584449210456,2024-11-28 +City Hotel,0,0,2017,October,42,21,2,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,E,0,No Deposit,31.0,179.0,0,Contract,76.67,0,0,Check-Out,Joel Gonzales,salazarchristopher@example.net,(586)242-3691,379937514518592,2025-08-31 +City Hotel,0,12,2017,December,52,30,0,2,2,0.0,0,BB,ITA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.25,0,2,Check-Out,Vincent Castillo,esparzabethany@example.com,(599)793-9200x16221,346820723677609,2025-01-05 +Resort Hotel,0,12,2017,October,42,17,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,G,C,0,No Deposit,17.0,179.0,0,Transient,113.51,0,3,Check-Out,Claudia Brown,mariagreen@example.org,311.526.1638x487,4646091700052138,2024-11-16 +Resort Hotel,0,355,2017,April,17,27,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,79.24,0,0,Check-Out,Destiny Bishop,woodardjonathan@example.org,532-876-8715x5782,180056019281769,2025-09-01 +City Hotel,0,1,2017,August,34,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,217.49,0,0,Check-Out,Austin White,rogerscarolyn@example.org,+1-758-604-4301x7654,340670003260071,2024-08-27 +Resort Hotel,0,4,2017,May,18,3,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Group,47.26,0,1,Check-Out,Desiree Booth,reedleonard@example.org,+1-952-285-1350x3292,4358771740717,2025-01-07 +City Hotel,0,8,2017,November,45,10,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.47,0,1,Check-Out,Mark Thomas,mkeith@example.org,802-478-3627x8291,371187702337193,2025-08-16 +Resort Hotel,0,56,2017,October,44,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,49.29,0,3,Check-Out,Amber Wilson,bsoto@example.com,740.979.0488x91835,2720764315750097,2025-05-28 +Resort Hotel,1,205,2017,August,32,5,0,4,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Michael Valencia,tiffany09@example.com,001-620-323-3071,639096516419,2024-10-08 +City Hotel,1,96,2017,December,52,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,1.0,179.0,0,Transient,63.73,0,0,Canceled,Amanda Love,psmith@example.org,+1-730-706-1863x9089,378494149701574,2025-09-03 +City Hotel,1,14,2017,December,49,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,48.39,0,0,Canceled,Miguel Green,pattersonlauren@example.org,224.512.5970,371432359739519,2025-02-20 +City Hotel,1,315,2017,August,34,19,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,170.92,0,0,Canceled,Michael Mathews,alyssaewing@example.com,201.532.4957,38272257839598,2025-04-22 +Resort Hotel,0,16,2017,March,11,15,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,0,Transient-Party,40.99,0,0,Check-Out,Nathan Burke,jenningswendy@example.org,(362)472-9927x3874,3589757789931720,2026-01-26 +Resort Hotel,0,44,2017,March,14,30,1,5,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.91,1,0,Check-Out,Billy Wallace,shelleycordova@example.org,503.548.1918,30548447406861,2025-04-07 +City Hotel,0,157,2017,August,33,12,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.75,0,2,Check-Out,Cynthia Nguyen,kellymelissa@example.org,001-627-262-1171x144,4722449240559243,2025-09-17 +Resort Hotel,1,14,2017,April,18,29,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,13.0,230.0,0,Transient,63.87,0,0,Canceled,Rodney Perry,mcarlson@example.org,(331)946-5446,6532667445421084,2026-03-11 +City Hotel,0,0,2017,May,19,5,2,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,17.0,179.0,0,Transient,131.22,1,0,Check-Out,Sherri Thomas,tgarcia@example.org,377.833.1526x3015,4712414309611547945,2025-05-20 +Resort Hotel,0,5,2017,May,21,23,4,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,139.68,1,1,Check-Out,Richard Rogers,whitemegan@example.net,952-449-6069,2270227062148026,2024-07-19 +Resort Hotel,0,1,2017,August,33,12,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,342.0,179.0,0,Transient,252.0,1,1,Check-Out,Matthew Ruiz,bfoley@example.com,(417)951-7368,4787913187279026,2024-04-14 +City Hotel,1,105,2017,March,10,10,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,133.0,179.0,0,Transient-Party,84.69,0,0,Canceled,Lisa Martin,carlcarter@example.net,895-390-1837,3510822212541423,2025-11-25 +City Hotel,0,45,2017,April,14,4,1,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.16,0,0,Check-Out,Timothy Buck,bryan38@example.net,(778)642-1021,3516588772824269,2024-06-29 +Resort Hotel,0,36,2017,June,25,22,0,2,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,238.0,179.0,0,Transient,131.74,0,1,Check-Out,Lee Morton,gregorybishop@example.net,795.311.6241x1835,503828707169,2025-08-07 +City Hotel,0,1,2017,March,10,10,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,94.37,0,1,Check-Out,Priscilla Romero,ushelton@example.org,(794)521-8129,3509578410564459,2025-06-20 +City Hotel,0,47,2017,July,27,8,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,29.0,179.0,0,Transient,99.53,0,0,Check-Out,Hailey Lewis,woodmarc@example.net,+1-931-397-0949x10668,4718697782209199,2025-01-16 +City Hotel,0,149,2017,January,4,21,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,93.78,0,1,Check-Out,Amanda Barber,wilsonkatherine@example.org,715.882.5026x48903,4830734207645611559,2024-08-15 +Resort Hotel,0,158,2017,May,18,1,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,G,2,No Deposit,240.0,179.0,0,Transient,122.56,0,2,Check-Out,Zachary Miller,ortizlori@example.org,990-311-8651x4308,375063458745143,2025-02-18 +City Hotel,0,16,2017,September,36,8,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,201.64,1,0,Check-Out,Timothy Walker,baldwineric@example.org,535-956-7921,2720985050569422,2024-05-17 +Resort Hotel,0,9,2017,March,13,23,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,41.95,0,3,Check-Out,Laura Kelley,tamara14@example.org,001-358-557-4170,4492842311802596005,2024-12-10 +Resort Hotel,0,14,2017,April,16,13,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,129.05,0,0,Check-Out,Nicholas Abbott,teresa11@example.com,589-507-6328x3220,180090935091143,2024-12-14 +City Hotel,0,42,2017,April,17,24,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,107.5,0,1,Check-Out,Amber Kennedy,anthony33@example.com,001-509-501-4500,4025533755460741,2025-03-22 +Resort Hotel,0,0,2017,January,2,1,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,0,A,D,2,No Deposit,244.0,331.0,0,Transient,56.64,1,1,Check-Out,Jessica Adams,dfranco@example.org,509-339-7152x3753,6599151116833976,2024-10-22 +Resort Hotel,0,5,2017,December,49,7,2,7,2,0.0,0,Undefined,BEL,Online TA,Direct,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,126.19,0,2,Check-Out,Eileen Sanchez,uwilliams@example.org,4562221093,4002246635649378,2025-03-13 +City Hotel,1,49,2017,December,49,4,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,114.85,0,1,Canceled,Randall Cox,olivernancy@example.net,447.674.5764x3439,342924847331095,2025-07-20 +Resort Hotel,1,153,2017,August,35,30,3,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Canceled,Paul Wilson,fgriffin@example.net,(495)459-2365x7971,3582682777294187,2024-09-29 +City Hotel,1,63,2017,August,33,14,0,1,1,0.0,0,HB,DEU,Corporate,Corporate,0,0,0,A,A,1,Non Refund,12.0,179.0,0,Transient-Party,129.14,0,0,Canceled,Nicholas Beard,arichards@example.net,471.774.0989,4774599925571074,2025-05-28 +City Hotel,0,113,2017,August,34,21,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.05,0,1,Check-Out,Harold Wagner,brianwallace@example.com,+1-996-750-8481,3530137260029346,2025-05-08 +City Hotel,0,46,2017,May,22,26,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,76.23,0,0,Check-Out,Martha Jacobs,richardcarr@example.com,892.606.0265,30521088699227,2025-11-02 +Resort Hotel,1,95,2017,April,18,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,61.42,0,1,Canceled,Jason Hudson,pamelabartlett@example.net,577.595.1409x6196,213161384889880,2024-09-30 +City Hotel,1,21,2017,March,14,30,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.0,0,2,Check-Out,Beth Medina,nathan79@example.com,461-300-2699x53550,4329377977235199,2025-08-19 +Resort Hotel,1,155,2017,March,14,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,221.0,0,Transient-Party,39.15,0,0,Canceled,Jennifer Richards,awilliamson@example.net,700-955-2888x23155,377319863061874,2024-06-17 +City Hotel,1,11,2017,June,26,24,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,133.36,0,0,Canceled,David Mitchell,randyschaefer@example.org,+1-746-532-9708x101,213158722761789,2024-08-14 +Resort Hotel,0,4,2017,December,50,12,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,I,0,No Deposit,243.0,65.0,0,Transient,48.04,0,0,Check-Out,Brad Fisher,jmunoz@example.org,239-430-4647,3509721276514859,2026-02-25 +Resort Hotel,1,185,2017,August,34,19,0,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Canceled,Ms. Mackenzie Barton,david95@example.net,+1-930-639-8271x62967,3599013444942456,2025-07-01 +Resort Hotel,0,19,2017,August,34,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,14.0,77.0,0,Transient-Party,43.18,0,0,Check-Out,Sherri Smith,bobbywalker@example.org,(825)873-3194,370084026799185,2026-02-09 +City Hotel,1,42,2017,November,46,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,167.29,0,0,Canceled,Dennis Spencer,huberscott@example.com,457-513-5672x23430,4998446764702154281,2024-09-25 +City Hotel,1,211,2017,April,15,8,1,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,9.0,179.0,0,Transient,110.92,0,0,Canceled,Natalie Martinez,johnsonmargaret@example.com,001-563-893-5813x229,372884133741808,2024-09-17 +City Hotel,1,165,2017,September,36,5,1,4,1,0.0,0,BB,,Online TA,GDS,0,0,0,E,E,2,No Deposit,171.0,179.0,0,Transient,136.73,0,0,Canceled,Jeffrey Vaughn,bruce84@example.net,(855)677-8160x44171,6551217892993163,2024-09-06 +City Hotel,0,145,2017,December,48,2,2,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,64.89,0,0,Check-Out,Brandi Camacho DVM,fstrickland@example.org,(503)614-5028x3993,4356896734482,2024-09-28 +City Hotel,1,34,2017,April,14,4,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,141.46,0,0,Canceled,Heather Morales,nblack@example.com,(463)222-7625x605,5443295068330588,2024-12-18 +Resort Hotel,0,0,2017,November,45,10,0,2,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,H,1,No Deposit,242.0,179.0,0,Transient,43.04,0,0,Check-Out,Michelle Wilson,kimberlyeverett@example.org,883.249.7265,4440430113399595,2025-09-01 +City Hotel,0,35,2017,March,12,18,1,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,93.77,0,1,Check-Out,Stephanie Vargas,jwest@example.org,+1-799-958-1879x2060,5305564847302995,2024-03-27 +Resort Hotel,0,53,2017,August,35,27,1,3,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,49.41,0,0,Check-Out,Wendy Williams,brownemily@example.net,856-540-2006x75534,180095342067529,2025-01-18 +Resort Hotel,0,171,2017,June,26,27,3,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,209.0,1,1,Check-Out,Heather Cole,hansonsara@example.net,816.240.3318x555,6011231629477253,2024-08-29 +Resort Hotel,0,101,2017,July,27,5,0,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,243.0,179.0,0,Transient,99.94,0,0,Check-Out,Jerry Davenport,gkelly@example.org,(658)203-7094x984,180006359045068,2026-03-12 +City Hotel,1,38,2017,March,11,16,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,13,Transient,63.64,0,0,Canceled,John Taylor,rodriguezalejandro@example.com,+1-953-364-1003,564685037447,2024-09-23 +City Hotel,0,262,2017,August,34,22,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,78.25,0,0,Check-Out,Ralph Hendricks,andrewstephens@example.com,+1-629-283-7699x7205,180092957964694,2025-06-17 +City Hotel,0,7,2017,August,35,27,2,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,A,2,No Deposit,10.0,179.0,0,Contract,112.41,0,3,Check-Out,Angela Huang,tanyamason@example.org,764-245-5928,3574242751630243,2025-04-25 +Resort Hotel,1,248,2017,June,23,3,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,111.01,0,1,Canceled,Jacqueline Banks,hinesandrew@example.com,001-276-662-4098,3537274625194276,2026-03-04 +City Hotel,0,353,2017,October,41,8,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,59.91,0,0,Check-Out,Jeffrey Romero,stephanielang@example.com,001-620-685-9462,3512775746787284,2024-11-11 +City Hotel,0,130,2017,March,11,12,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.81,0,1,Check-Out,Theresa Davis,dflynn@example.org,505.234.1341x860,5560755436649792,2025-04-26 +City Hotel,1,53,2017,March,10,4,0,3,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,120.17,0,1,Canceled,Glenn Elliott,mmiller@example.com,656-547-5346x4078,38882405713154,2025-03-27 +Resort Hotel,0,11,2017,August,34,21,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,80.3,1,0,Check-Out,Lauren Anthony,kimberly61@example.net,+1-755-409-3427x8848,4241522856848696,2025-09-30 +City Hotel,1,107,2017,July,29,18,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,124.05,0,0,Canceled,Frank Flores,tammylee@example.com,338.474.1653x7617,2221327604989745,2025-06-28 +Resort Hotel,0,2,2017,April,15,6,1,0,2,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,C,0,No Deposit,15.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Charles Cervantes,lauren24@example.org,806.987.1896x0492,3578581237800953,2024-05-11 +Resort Hotel,1,11,2017,December,49,2,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,107.57,0,1,Canceled,Virginia Clark,alicia22@example.net,(861)359-8818x5574,376805157365360,2024-07-30 +Resort Hotel,0,30,2017,October,41,9,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,102.65,0,1,Check-Out,Laura Gilbert,mathewswilliam@example.com,+1-773-781-6255x685,6011160352082719,2025-08-10 +City Hotel,0,18,2017,August,31,3,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,223.92,0,2,Check-Out,Dustin Wilson,kfriedman@example.net,888.650.8141x255,6011350223959399,2025-08-03 +City Hotel,0,115,2017,August,34,24,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,1.0,45.0,0,Transient-Party,65.39,0,0,Check-Out,Jeffrey Mcclure,paulyoung@example.org,(384)398-1183x5254,6011315437485929,2025-01-14 +Resort Hotel,1,169,2017,July,30,23,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,156.82,0,0,Canceled,Thomas Zhang,ybaldwin@example.org,2485455690,4843883192227181,2024-06-18 +City Hotel,1,301,2017,October,40,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,60,Transient,79.16,0,0,Canceled,Tammy Estrada,lauren24@example.net,+1-479-667-8011x052,213126797463326,2026-01-30 +City Hotel,1,1,2017,March,13,27,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,B,0,No Deposit,12.0,45.0,0,Transient,4.64,0,1,No-Show,Daniel Roberson,sherri52@example.com,745-634-9374,2230767509796472,2024-12-25 +Resort Hotel,0,1,2017,August,33,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,H,0,No Deposit,240.0,179.0,0,Transient,194.36,0,1,Check-Out,Alyssa Orr,cpalmer@example.net,+1-626-237-8188x796,379443739901697,2025-07-17 +City Hotel,1,106,2017,July,27,1,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,177.0,179.0,0,Transient,83.06,0,0,Canceled,Kimberly Lloyd,foxbilly@example.net,(600)599-1981x2804,342952585811184,2026-01-12 +City Hotel,1,212,2017,August,32,9,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,113.67,0,1,Canceled,Ronnie Johnson,michaelroberson@example.com,(218)564-6646,501843129930,2025-06-24 +Resort Hotel,0,2,2017,August,32,9,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,238.0,179.0,0,Transient,46.0,0,0,Check-Out,Tom Duncan,lauragordon@example.net,+1-614-503-1379,3597255316452583,2024-08-25 +City Hotel,0,14,2017,November,45,3,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,108.78,0,2,Check-Out,Kelly Guerra,bradleyreed@example.org,(814)210-1912x142,3594917732670527,2025-08-06 +Resort Hotel,0,18,2017,July,30,24,0,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,98.0,179.0,0,Transient-Party,106.43,0,0,Check-Out,Brian Mccarthy,taylorvillarreal@example.org,+1-670-227-7559x61754,4739491944522223829,2024-04-05 +City Hotel,0,387,2017,July,29,20,0,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,119.34,0,0,Check-Out,Jill Reynolds,christinathompson@example.org,(480)600-3521,2296495876085235,2025-08-28 +City Hotel,1,347,2017,October,41,10,2,7,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,E,E,0,Non Refund,32.0,179.0,75,Transient-Party,87.79,0,0,Canceled,Sean Kaiser,opennington@example.org,277.479.3517x51236,630490322900,2025-06-01 +City Hotel,1,301,2017,September,37,13,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.3,0,0,Canceled,Audrey Gomez,zoliver@example.net,(246)634-4166,6011048062278158,2025-08-17 +City Hotel,1,15,2017,March,13,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,133.0,179.0,0,Transient,88.95,0,1,Canceled,Ricky Luna,brownrobert@example.com,001-613-909-6677x548,4764529840208603629,2025-12-26 +City Hotel,0,207,2017,September,39,27,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,205.83,0,3,Check-Out,Jonathon Hill,hodgescharles@example.com,+1-406-495-4877x992,374127413963090,2025-04-02 +City Hotel,0,5,2017,November,44,2,0,2,1,0.0,0,BB,CHE,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,129.81,0,0,Check-Out,Kayla Waters,salascrystal@example.net,001-322-786-4833x12071,180051779030878,2026-03-10 +City Hotel,0,11,2017,January,4,24,1,2,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,105.57,0,1,Check-Out,Emily Middleton,jacksonmisty@example.org,713-391-7217x8925,4473319911942,2024-04-01 +City Hotel,0,1,2017,January,2,8,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,75.62,0,1,Check-Out,Timothy Bauer,amber47@example.org,001-648-224-8528x0105,6564047857580456,2024-11-09 +Resort Hotel,0,3,2017,January,2,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,15.0,79.0,0,Transient,55.13,1,0,Check-Out,Ryan Guerrero,alexandraburnett@example.net,804-621-6108x17205,4464916864828692,2026-02-08 +Resort Hotel,0,140,2017,March,11,16,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,1,Refundable,12.0,222.0,0,Transient-Party,75.64,0,0,Check-Out,Amanda Walters,william36@example.net,(624)892-1169x1860,4328828703190406,2025-03-30 +Resort Hotel,0,0,2017,October,41,10,2,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,45.2,1,0,Check-Out,Chad Bennett,warnergary@example.org,605.254.7476,4932102510542,2025-05-10 +City Hotel,0,35,2017,June,24,13,0,2,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,109.83,0,0,Check-Out,Megan Baker,robinsondonna@example.net,213-849-3635x44023,676210301039,2024-12-05 +City Hotel,1,327,2017,July,29,19,0,4,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,108.0,0,1,Canceled,Robert Gross,jmccarthy@example.org,+1-408-577-5344x61363,3545019319115925,2024-05-09 +Resort Hotel,1,38,2017,July,27,2,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,97.92,0,1,Canceled,Craig Liu,theodoreadams@example.org,257-702-3703x803,4873247798198,2025-07-12 +City Hotel,0,47,2017,April,14,7,2,5,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,31.34,0,2,Check-Out,Shannon Curry,kristin57@example.org,496-641-5410x1952,2329332557955934,2024-05-30 +Resort Hotel,0,0,2017,July,31,30,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,H,0,No Deposit,248.0,179.0,0,Transient,1.79,0,0,Check-Out,Austin Grant,david10@example.com,001-246-941-7791,30265163481495,2025-11-11 +City Hotel,0,10,2017,October,41,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Contract,167.25,1,1,Check-Out,Christopher Barnes,vlindsey@example.net,001-388-505-2535x968,4937841392276,2025-07-15 +Resort Hotel,0,0,2017,November,45,10,0,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,43.95,1,0,Check-Out,James Silva,richardrodriguez@example.net,001-367-967-7644x862,6534003617642133,2024-06-12 +City Hotel,0,41,2017,July,28,8,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,100.46,0,0,Check-Out,Kari Sandoval,maria76@example.net,+1-658-652-3752x333,346788971199859,2025-11-20 +Resort Hotel,0,49,2017,November,45,9,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,47.62,0,2,Check-Out,Eric Hall,warnerjustin@example.com,530-827-4964x41509,213178858110064,2026-02-07 +Resort Hotel,0,47,2017,October,41,7,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,83.78,0,3,Check-Out,John Robles,kennethreed@example.org,862.563.3112x491,3596679780616483,2025-04-02 +City Hotel,0,98,2017,June,25,20,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,43.0,179.0,0,Transient-Party,118.75,0,0,Check-Out,Howard Castillo,lisawise@example.com,538.754.8235x261,2720988210647484,2025-06-14 +City Hotel,0,35,2017,March,13,26,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,98.66,0,1,Check-Out,Brian Ibarra,guerrakevin@example.net,939-593-2692x74352,6586294240858298,2024-12-03 +Resort Hotel,0,0,2017,December,49,5,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,50.57,0,1,Check-Out,Donna Montes,shawn54@example.net,001-613-608-7695x0066,676286977910,2025-04-30 +City Hotel,1,308,2017,October,40,2,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,0,Contract,104.78,0,0,Canceled,Matthew Wilson,gary55@example.net,777.806.4781x619,4784805046504284816,2026-03-11 +City Hotel,1,49,2017,June,23,5,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient,113.36,0,1,Canceled,Francis Wilson,zmartinez@example.com,814-450-1709x813,180066537794243,2024-04-24 +City Hotel,0,16,2017,July,28,9,0,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,18.0,179.0,0,Transient,131.21,0,3,Check-Out,Michele Ayala,aaron52@example.com,001-596-549-8788x140,4119131292546,2025-07-31 +City Hotel,0,191,2017,August,34,24,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,130.27,0,2,Check-Out,Dr. John Jenkins,garciaapril@example.net,(489)476-0299,4894865248862119,2025-02-04 +City Hotel,1,145,2017,March,10,5,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,67.1,0,1,Canceled,Earl Romero,nguyenalex@example.net,787.224.3432,2263575577892804,2024-07-30 +City Hotel,0,0,2017,April,15,12,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,93.99,0,0,Check-Out,Rachel Brown,geraldfrederick@example.net,(322)399-2948,2267148510017016,2024-03-30 +City Hotel,0,4,2017,October,41,8,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,80.01,0,0,Check-Out,Deborah Stewart,keithross@example.net,+1-474-364-0029x3191,378822146341145,2025-02-06 +Resort Hotel,0,310,2017,October,40,4,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,215.0,179.0,75,Transient-Party,89.76,1,1,Check-Out,Jeremy Ross,umoore@example.com,6068485152,2720928770809363,2025-05-15 +City Hotel,1,43,2017,September,36,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.03,0,0,Check-Out,Debra Chandler,michaelnorton@example.net,001-717-715-0560x95119,676279087768,2025-07-22 +City Hotel,0,30,2017,July,28,9,0,3,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.45,0,2,Check-Out,Robert Parker,shawn63@example.com,001-624-828-1138x1318,180083122158361,2025-12-31 +City Hotel,1,15,2017,October,40,5,2,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.94,0,1,Canceled,Kenneth Jackson,lisa50@example.org,353.390.5573x3282,676385673246,2024-05-28 +City Hotel,0,51,2017,April,15,13,2,5,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.36,0,1,Check-Out,Mario Gould,johnfloyd@example.net,785-708-6971x427,4996646274728194370,2024-05-31 +City Hotel,0,9,2017,November,48,26,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,106.47,0,2,Check-Out,Erin Jacobs,mdavid@example.com,001-861-911-4930x9388,5143852077530401,2025-06-26 +Resort Hotel,0,137,2017,June,25,17,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,134.76,0,1,Check-Out,Nathan Lang,krowe@example.net,9474960179,3571010083931222,2026-03-16 +City Hotel,0,13,2017,April,15,9,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.82,0,2,Check-Out,Michael Barr,kgray@example.net,439.798.8507x3953,4697808416249002685,2025-03-19 +Resort Hotel,0,0,2017,October,40,7,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,179.0,0,Transient,53.89,1,1,Check-Out,Kristen Pena,nicholemurphy@example.org,+1-412-847-0472x14828,6011204411170774,2024-08-02 +City Hotel,0,14,2017,April,16,20,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,64.16,0,1,Check-Out,Heidi Gonzalez,blake20@example.net,741.809.2972x3883,3530811090253058,2025-01-23 +Resort Hotel,0,35,2017,June,26,24,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,223.36,0,0,Check-Out,Joseph Heath,wendy34@example.org,527.344.8442,30081834008041,2025-09-27 +City Hotel,1,42,2017,December,50,13,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,225.65,0,1,Canceled,Robert Lozano,sloanmargaret@example.net,(721)289-8204x05727,4566673710345,2024-05-11 +City Hotel,1,119,2017,May,18,3,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,135.63,0,0,Canceled,Daniel Quinn,rodriguezelizabeth@example.org,(811)905-4925,3562663885594050,2025-12-10 +City Hotel,1,30,2017,November,45,7,1,1,2,0.0,0,BB,PRT,Online TA,Direct,0,1,0,C,E,0,No Deposit,11.0,179.0,0,Transient,64.35,0,0,Canceled,Amanda Smith,hoganjohn@example.com,746.205.4774x449,378474142974691,2025-09-25 +Resort Hotel,1,408,2017,November,45,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,177.0,179.0,0,Transient-Party,40.19,0,0,Canceled,Ashley Sanders,johnryan@example.com,901-267-9881x44437,2274416239162806,2024-09-19 +Resort Hotel,1,4,2017,December,51,20,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,85.31,0,1,Canceled,Mr. Eric Hall,brittany66@example.net,600-897-7061x029,3514796761754577,2025-07-16 +City Hotel,0,209,2017,August,33,10,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,225.2,1,3,Check-Out,Danielle Nelson,rolson@example.net,(389)959-4819x3790,3554291694373829,2025-03-24 +City Hotel,0,115,2017,June,25,17,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,106.09,0,0,Check-Out,Richard Rios,boothgail@example.net,305.894.5117x37266,6011934337598803,2025-09-03 +City Hotel,1,414,2017,July,29,19,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,110.9,0,0,Canceled,Patrick Nelson,whitepaula@example.org,+1-304-410-0911,6011144877506956,2026-02-09 +City Hotel,1,347,2017,October,40,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,76.32,0,0,Canceled,Benjamin Bowen,kingholly@example.net,001-465-765-9903,676195193690,2024-03-28 +City Hotel,0,10,2017,October,42,20,2,2,2,1.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,92.21,0,0,Check-Out,Jennifer Smith,ujohnson@example.com,430-499-1234x513,3572162252746177,2024-07-30 +Resort Hotel,0,33,2017,August,35,24,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,251.12,0,3,Check-Out,Lisa Hernandez,adamsjohn@example.net,+1-206-460-1303,2268252597653567,2024-06-11 +City Hotel,1,95,2017,August,32,12,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,212.94,0,3,Canceled,Rebecca Lee,holly44@example.net,+1-759-443-2079x045,36748679649485,2025-08-31 +City Hotel,0,39,2017,October,43,27,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.3,0,0,Check-Out,Emily Morris,qmullins@example.com,(888)798-8727x366,3512987916275780,2025-10-02 +Resort Hotel,0,14,2017,July,30,24,1,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,213.39,0,0,Check-Out,Allison Hill,deborahbaldwin@example.org,302-515-8090,38720297406976,2025-07-02 +City Hotel,0,11,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,9.0,179.0,0,Contract,46.89,0,1,Check-Out,Dennis Douglas,nramos@example.net,+1-386-591-4787x47937,6510724955422030,2025-07-31 +City Hotel,0,42,2017,June,24,11,2,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.97,0,1,Check-Out,Eddie Davis,beanjason@example.org,321.932.2972x093,4865581453818432,2026-03-02 +Resort Hotel,0,12,2017,March,10,4,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,61.54,0,0,Check-Out,Kristina Webb,georgeschroeder@example.net,641-287-8754x275,372558915012121,2025-11-06 +City Hotel,1,36,2017,October,41,9,2,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,63,Transient-Party,94.9,0,0,Canceled,Kim Sanchez,grimesclifford@example.net,244.789.9264x8534,180018129921221,2026-01-15 +Resort Hotel,1,81,2017,July,29,21,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Canceled,Jonathan Long,qgarcia@example.org,(784)600-4371x03186,2257115129254365,2024-05-12 +City Hotel,0,2,2017,January,3,15,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,1,No Deposit,241.0,179.0,0,Transient,73.61,1,1,Check-Out,Joshua Rodriguez,joshua64@example.com,001-704-266-1319x901,3561924381872593,2024-08-23 +City Hotel,0,136,2017,October,41,10,1,0,2,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,61.36,0,0,Check-Out,William Sanders,amandahansen@example.org,(618)936-7838x74589,30463111869909,2024-09-18 +City Hotel,1,155,2017,May,22,27,1,0,2,0.0,0,BB,IRL,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,138.99,0,1,Check-Out,Jacob Hart,zacharyjohnson@example.org,993-454-0921,3504204898017812,2024-10-05 +City Hotel,1,158,2017,April,16,19,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,134.57,0,0,Canceled,Evelyn Pacheco,jessica97@example.net,675.453.9691x87593,180005894087932,2025-07-20 +Resort Hotel,1,2,2017,August,34,25,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,1,No Deposit,245.0,179.0,0,Transient,198.64,0,0,No-Show,Anna Jackson,hortonrose@example.com,+1-328-297-2691,3513211883127950,2024-05-22 +City Hotel,0,2,2017,August,34,21,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,231.54,0,2,Check-Out,Katherine Wright,oblanchard@example.com,001-349-864-6882x96413,565557182450,2024-10-21 +City Hotel,0,96,2017,March,12,18,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,89.45,0,1,Check-Out,Luis Wells,cooktammy@example.com,988.220.2000,213193071065201,2024-05-30 +City Hotel,1,153,2017,March,10,10,2,2,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,106.62,0,0,Canceled,Lacey Hall,reynoldsdaniel@example.net,(866)657-7792,4803533521964883,2024-04-06 +City Hotel,0,265,2017,July,29,15,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,129.84,0,0,Check-Out,Darlene Collins,rebeccaramos@example.com,+1-426-925-9984,639027868467,2025-05-02 +City Hotel,1,89,2017,March,12,24,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,D,0,No Deposit,13.0,199.0,0,Transient,124.51,0,0,Canceled,Chris Morris,gallagherrobert@example.net,+1-362-550-6483,343826588712871,2024-09-01 +Resort Hotel,0,34,2017,July,28,11,4,6,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,47.78,0,1,Check-Out,Jennifer Smith,curtislopez@example.net,+1-944-387-9400x88374,2720900451877464,2024-09-28 +City Hotel,0,97,2017,October,40,6,1,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.49,0,2,Check-Out,Nicole Norton,flemingalexis@example.com,699.582.4158x087,180085705401324,2025-11-28 +City Hotel,1,115,2017,June,24,9,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Canceled,Emily Pearson,zimmermantami@example.com,+1-381-225-8734,4360781735026853853,2025-05-30 +Resort Hotel,0,2,2017,March,10,10,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,C,0,No Deposit,15.0,56.0,0,Transient,35.46,0,0,Check-Out,Michael Robertson,katrina17@example.net,816.973.1197x4198,36604089058397,2025-01-13 +Resort Hotel,1,189,2017,June,23,5,4,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,138.5,0,1,Canceled,Wendy Miller,harriscrystal@example.org,+1-441-588-4578,4257837921388,2025-05-08 +City Hotel,1,133,2017,August,33,16,0,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,B,1,No Deposit,16.0,179.0,0,Transient,136.92,0,0,Canceled,Michael Bennett,nicoleyoung@example.com,+1-824-674-6008x38609,4007963087813,2024-10-02 +Resort Hotel,1,87,2017,May,21,20,4,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,215.46,0,1,Check-Out,Carla Goodman,parsonsjacqueline@example.net,5648800593,6011355993279316,2024-05-16 +City Hotel,1,144,2017,July,30,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,105.06,0,0,Canceled,Jeffrey Stanton,francochristopher@example.org,441.659.8414,4003518613260413,2025-10-12 +City Hotel,1,86,2017,December,50,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,110.73,0,0,Canceled,Jeff Jackson,justin57@example.org,(945)822-0716x3585,3528281792662291,2025-07-18 +City Hotel,0,1,2017,March,13,27,0,1,1,0.0,0,BB,BRA,Online TA,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,117.92,0,0,Check-Out,Katelyn Curry,clarkdaniel@example.org,001-287-644-3727x547,675995529558,2024-06-16 +City Hotel,0,1,2017,March,11,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,40.0,179.0,0,Transient,50.64,0,0,Check-Out,Jennifer Phillips,grahamrachel@example.net,+1-243-371-3947x33294,4072798065699,2024-07-07 +City Hotel,1,0,2017,October,41,12,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.45,0,0,Canceled,Edward Weeks,pooleamy@example.com,001-340-797-9113x40026,343731167196803,2025-05-02 +Resort Hotel,1,61,2017,August,34,19,4,2,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Kelly Gilbert,robertjones@example.com,001-719-546-7203,5403479093791190,2025-12-14 +Resort Hotel,0,52,2017,February,7,14,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,47.37,0,2,Check-Out,Matthew Thomas,zjohnson@example.net,+1-839-332-3689x01470,30109965663316,2024-05-29 +City Hotel,1,378,2017,January,3,17,1,2,1,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,106.85,0,0,Canceled,Christine Mendez,acastillo@example.org,361.304.5577x6642,3575946521772825,2025-09-16 +Resort Hotel,0,2,2017,December,52,30,1,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,53.62,0,1,Check-Out,Kelly King,jasmine91@example.org,983.830.8246x82087,4972784301455,2024-10-28 +City Hotel,0,16,2017,August,34,21,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.71,0,1,Check-Out,Timothy Ho,eshaffer@example.com,+1-505-712-6676x48573,30007773301162,2024-09-02 +City Hotel,0,22,2017,December,52,29,0,2,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.83,0,2,Check-Out,Sarah Taylor,stephaniemoore@example.net,(555)492-8667,4831865838424383,2025-11-11 +Resort Hotel,0,3,2017,January,2,3,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,H,1,No Deposit,238.0,179.0,0,Transient,43.49,0,1,Check-Out,Sandra Smith,jennifer78@example.org,894.272.2438,180021811920147,2024-08-31 +City Hotel,0,310,2017,October,42,21,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.4,0,0,Check-Out,Chris Jones,floydjill@example.net,(597)453-9713,213132572292120,2025-07-13 +City Hotel,1,52,2017,July,30,20,1,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.06,0,1,Canceled,Emily Lopez,bryan86@example.org,001-356-461-2475x792,30502612144252,2025-01-26 +Resort Hotel,1,282,2017,November,45,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,91.18,0,1,Canceled,Kimberly Rivera,lutzsusan@example.com,001-918-761-9952x71803,30568113796106,2025-02-04 +Resort Hotel,0,0,2017,January,4,25,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,105.4,0,0,Check-Out,John Moore,david56@example.com,+1-719-493-3734x344,374378765455108,2025-09-16 +City Hotel,1,24,2017,March,12,19,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,128.69,0,0,Canceled,Justin Perez,ipadilla@example.com,398.581.0780x16395,4304498054035455912,2024-11-12 +Resort Hotel,0,9,2017,April,18,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,76.0,0,Transient-Party,55.94,0,3,Check-Out,Tanya Hill,morrisjoyce@example.org,906-785-0890,3567235955100830,2025-10-11 +Resort Hotel,0,3,2017,March,12,22,1,3,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,223.0,1,3,Check-Out,Shawna Silva,hendersonkaitlyn@example.com,+1-729-494-4870x12801,3503974820757534,2025-01-05 +Resort Hotel,1,197,2017,July,31,30,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,161.21,0,0,Canceled,Marcus Powell,millermichael@example.com,001-939-291-1866x4844,30246566901099,2025-05-19 +Resort Hotel,0,146,2017,March,11,15,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,36.98,0,0,Check-Out,Joshua Hopkins,richmondtiffany@example.com,437.319.9955,4182126970897696816,2025-11-13 +City Hotel,1,95,2017,February,8,20,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.06,0,1,Canceled,Christian Cross,katrinataylor@example.net,(998)228-3366,30517094102446,2026-03-10 +City Hotel,0,3,2017,May,20,11,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.57,0,0,Check-Out,Dennis Garcia,lstanley@example.com,764.399.3922x6322,4748749727538697453,2024-11-25 +Resort Hotel,0,355,2017,October,42,17,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,77.19,0,0,Check-Out,Laurie Miranda,bjenkins@example.net,827.836.0538x74977,4626772052682,2024-05-10 +Resort Hotel,1,15,2017,August,32,9,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,78.26,0,0,Canceled,Raymond Vargas,williamstanner@example.org,001-958-434-9973x1926,4715341087996,2026-01-17 +Resort Hotel,0,16,2017,October,41,10,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,38.94,0,0,Check-Out,Robert Savage,rossteresa@example.com,902.413.6521x02189,4838555084110909076,2024-08-13 +City Hotel,1,118,2017,July,28,14,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,135.74,0,0,Canceled,Kara Jackson,hinestyler@example.net,235.325.1168x8546,4022855642492,2024-04-22 +City Hotel,0,2,2017,February,9,25,1,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.9,0,2,Check-Out,Virginia Davis,cnelson@example.com,+1-582-700-0630x785,30352623118402,2024-07-30 +City Hotel,0,19,2017,November,48,28,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.57,0,1,Check-Out,Brianna Martin,jwilliams@example.org,411-535-7181x1735,060465519365,2024-12-06 +City Hotel,0,14,2017,November,45,4,0,2,1,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,241.0,0,Transient-Party,46.67,0,1,Check-Out,Erica Huang,cody31@example.org,001-673-971-2973x02073,6521706521727866,2025-08-04 +Resort Hotel,1,12,2017,June,25,18,1,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,219.56,0,0,Canceled,Jorge Gonzales,woodtodd@example.net,504.965.9041,3551088859380224,2024-08-17 +City Hotel,0,92,2017,February,8,20,0,2,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,69.82,0,0,Check-Out,Erin Mason,ibrown@example.org,001-786-208-0166,573198915759,2024-12-13 +City Hotel,1,391,2017,June,25,22,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,136.71,0,0,Canceled,Justin Bennett,galvandominique@example.net,743-893-3309x9907,4004692439097660,2025-06-09 +City Hotel,0,25,2017,August,34,23,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,167.65,0,2,Check-Out,John Collins,cheyenne08@example.org,+1-268-579-0992x6379,30466482349393,2025-12-19 +Resort Hotel,0,44,2017,July,29,18,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,245.0,179.0,0,Transient,235.18,0,0,Check-Out,Kerry Ware,victoria60@example.net,365-248-5939x1673,3575195193699730,2024-11-29 +City Hotel,0,3,2017,August,34,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,161.09,0,3,Check-Out,Tina Dougherty,samantha20@example.org,2672173119,574345814671,2025-02-22 +Resort Hotel,0,41,2017,February,6,9,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,44.86,0,1,Check-Out,Michelle Larsen,tinahernandez@example.org,730.205.8599x858,4636535830780275,2024-10-12 +City Hotel,1,315,2017,January,2,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.32,0,0,Canceled,Katherine Mccormick,ashleyfowler@example.net,292-271-8005x81411,213144406087063,2024-10-25 +City Hotel,1,214,2017,August,33,16,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.32,0,2,Canceled,Kristin Graham,joseph35@example.com,684.648.0489x14899,5156762406497392,2024-06-24 +Resort Hotel,0,14,2017,December,2,30,2,2,3,1.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,117.37,1,0,Check-Out,Alexander Diaz,halljames@example.net,836.829.5880x3879,6564562184715120,2024-07-29 +Resort Hotel,0,3,2017,January,3,17,3,5,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,51.13,0,0,Check-Out,Michael Chandler,tami47@example.org,632-491-5257,213135712239505,2025-05-11 +Resort Hotel,1,145,2017,March,11,13,1,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,A,0,Non Refund,244.0,179.0,0,Transient,80.22,0,0,Canceled,Justin Cuevas,iarnold@example.org,887.578.5046x8034,180004210072884,2024-07-29 +City Hotel,1,259,2017,June,26,27,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,316.0,179.0,0,Transient,80.23,0,0,Canceled,Janet White,tkent@example.com,526.270.8955,213172475071270,2025-09-24 +City Hotel,0,15,2017,May,22,27,1,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,209.2,0,0,Check-Out,Alexandra Ramos,xhall@example.org,987.465.8547,2716850361300089,2024-10-28 +City Hotel,0,126,2017,February,6,6,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,44.83,0,1,Check-Out,Abigail Collins,diane49@example.com,+1-477-891-7128x60315,374941660557839,2025-05-04 +City Hotel,1,85,2017,July,29,22,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,L,1,No Deposit,9.0,179.0,0,Transient,165.02,0,0,No-Show,Jacob King,chambersryan@example.com,653.349.7254x04498,3511520095286566,2024-05-06 +City Hotel,0,0,2017,November,47,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient,137.47,0,0,Check-Out,Lisa Johnson,fortiz@example.org,370-950-6430,2223151797208095,2024-09-05 +City Hotel,0,1,2017,March,13,29,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,D,1,No Deposit,14.0,179.0,0,Transient,146.7,0,1,Check-Out,John Williams,josephroberts@example.net,427-563-7947x79571,36748496200009,2025-08-21 +City Hotel,0,12,2017,March,11,11,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.15,0,0,Check-Out,Dawn Garrett,jmay@example.org,(541)560-0774,3544304275206178,2025-06-16 +City Hotel,0,56,2017,November,45,5,1,4,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.42,0,2,Check-Out,Samantha Roy,alison49@example.com,001-374-885-7071x63312,370555869508916,2025-08-05 +Resort Hotel,0,19,2017,February,8,23,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,48.84,0,2,Check-Out,Yolanda Chen,daniel57@example.net,588-895-5452,6542257473029732,2025-03-12 +City Hotel,0,12,2017,October,41,9,2,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,25.0,179.0,0,Contract,61.02,0,1,Check-Out,John Golden DDS,johnsonmegan@example.org,+1-796-427-7120,4771369328316334,2026-01-07 +City Hotel,0,11,2017,March,10,2,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.09,0,2,Check-Out,Amanda Johnson,robertsilva@example.net,211.841.0084x4049,30579133343456,2024-06-03 +Resort Hotel,0,49,2017,April,15,10,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,76.3,0,3,Check-Out,Brittany Fitzgerald,richardhamilton@example.org,5928112538,3537725864018740,2024-11-03 +City Hotel,0,19,2017,July,30,27,1,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,D,2,No Deposit,13.0,179.0,0,Transient,90.2,0,2,Check-Out,Bonnie Barnes,jonesmary@example.net,8082692004,3598123591248887,2025-08-02 +City Hotel,0,2,2017,October,41,13,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Group,47.15,0,0,Check-Out,Amy Walsh,loridavis@example.org,001-569-908-1932x6306,2247467686108770,2024-07-04 +Resort Hotel,0,34,2017,March,10,7,2,5,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,271.0,179.0,0,Group,44.77,0,2,Check-Out,Brent Stephens,claire78@example.org,555-758-5881,3598257287885998,2024-04-06 +City Hotel,0,195,2017,May,20,12,2,5,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.67,0,1,Canceled,Mrs. Lisa Smith,haydencook@example.net,001-260-520-5093x081,30086979937318,2025-05-23 +Resort Hotel,0,157,2017,April,17,26,1,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,13.0,179.0,0,Transient,138.59,1,3,Check-Out,Sarah Stewart,oholloway@example.com,956.437.8804,4874799176148,2024-06-04 +Resort Hotel,0,89,2017,December,52,27,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,75,Transient-Party,85.17,1,0,Check-Out,Susan Matthews,darren61@example.net,724-529-2046,3593350282445564,2024-10-06 +City Hotel,0,289,2017,November,46,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,78.92,0,1,Check-Out,Kelli Shepard,holdenpatrick@example.org,485.255.1734x82072,4817076987483497,2025-07-26 +City Hotel,1,98,2017,June,24,8,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.8,0,0,Canceled,Ryan Caldwell,destiny38@example.org,(528)837-9725x5211,4298155358301134988,2025-02-09 +Resort Hotel,0,12,2017,April,14,2,4,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,357.0,179.0,0,Transient,92.63,0,1,Check-Out,Roger Mason,frederickhernandez@example.org,920.925.5602,374437442892156,2025-12-31 +City Hotel,1,240,2017,July,27,1,1,4,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,108.12,0,2,Canceled,Angela Ramos,ghines@example.net,(256)683-5600x089,4773162646259,2025-08-31 +City Hotel,0,14,2017,October,43,25,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,45.0,0,Transient,84.12,0,0,Check-Out,Craig Wagner,lisaball@example.net,+1-988-675-8176x6695,4415831442131941,2024-10-17 +Resort Hotel,0,76,2017,May,21,23,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,91.23,1,1,Check-Out,Paul Massey,vmathis@example.org,001-534-520-5348x5373,4818169490523980812,2026-01-12 +City Hotel,1,113,2017,April,14,5,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,138.19,0,2,Canceled,Donald Bell,bowenkevin@example.net,(225)360-0426x03890,340507191229460,2025-12-16 +Resort Hotel,1,2,2017,October,42,19,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient,50.57,0,0,No-Show,Keith Horton,pamelathomas@example.net,791.379.6483x031,4886398924459845078,2025-05-13 +City Hotel,0,104,2017,May,21,23,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,144.6,0,2,Check-Out,Julie Wilson,emaldonado@example.net,981.815.5262,30118543038834,2025-05-30 +City Hotel,0,20,2017,May,21,24,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.6,0,2,Check-Out,Nicholas Lopez,lauriemason@example.org,+1-352-671-7488x78593,3573167036557930,2026-03-02 +Resort Hotel,0,1,2017,October,40,4,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient-Party,49.55,0,0,Check-Out,Tracy Wang,wesley94@example.org,+1-756-313-7340,3590882916920250,2025-08-19 +City Hotel,0,13,2017,August,32,9,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.6,0,1,Check-Out,Claudia Brooks,martha71@example.net,(846)889-1640x464,501831169195,2025-04-24 +Resort Hotel,0,51,2017,August,33,12,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,15.0,179.0,0,Transient,96.14,0,1,Check-Out,Nathaniel Wright,caitlinmiller@example.com,+1-351-369-4825x10195,213135564615570,2024-08-13 +City Hotel,1,10,2017,April,14,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,L,0,No Deposit,247.0,179.0,0,Transient,109.9,0,0,Canceled,Maria Valenzuela,roachtyler@example.com,(495)980-7769,3560714470854599,2024-04-19 +City Hotel,1,1,2017,June,25,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,45.0,0,Transient,125.16,0,0,Canceled,Peter Anderson,xgarcia@example.com,407-848-2387x4777,379292209535281,2024-12-27 +City Hotel,1,169,2017,April,16,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,111.43,0,0,Canceled,Michael Thompson,jane06@example.org,+1-265-233-2760x995,3561536144141106,2026-01-30 +City Hotel,1,160,2017,July,30,23,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,16.0,179.0,0,Transient,171.08,0,0,Check-Out,Ethan Perez,fwilliams@example.org,(466)716-9676x268,3503256435738046,2024-10-13 +Resort Hotel,0,2,2017,December,48,2,3,3,2,1.0,0,Undefined,GBR,Direct,TA/TO,0,0,0,A,A,2,No Deposit,245.0,179.0,0,Transient,110.3,0,0,Check-Out,Stephen Thompson,jedwards@example.org,001-829-928-7153x494,6577646300685153,2026-03-27 +City Hotel,0,34,2017,November,44,3,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,126.98,0,1,Check-Out,Michael Baker,brownjames@example.com,001-427-319-7070x0034,348051932366754,2024-08-20 +City Hotel,0,54,2017,October,43,27,2,2,1,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,101.24,0,0,Check-Out,Kenneth Bailey DDS,pmorrison@example.com,453.336.1485x3423,2284798156582530,2025-10-15 +Resort Hotel,0,0,2017,September,36,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,102.64,0,1,Check-Out,Mark Decker,debbie25@example.net,(568)932-0907x96599,4354171097138831,2025-09-11 +Resort Hotel,0,66,2017,August,35,30,2,5,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Check-Out,Ruben Cruz,patrick42@example.org,8635307181,6547388345281725,2024-10-31 +Resort Hotel,0,88,2017,October,41,8,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient-Party,53.92,0,0,Check-Out,Christine Park,davidlester@example.net,448.925.2789x4182,3587666787088437,2025-10-25 +Resort Hotel,0,9,2017,January,4,25,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,55.89,0,1,Check-Out,Robert Hogan,jared54@example.org,+1-924-989-7139,4957885675553605,2024-04-02 +City Hotel,1,0,2017,October,42,20,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,1.97,0,0,Canceled,Michael Gordon,john19@example.com,790-487-7413x327,4117800092112023,2025-12-01 +City Hotel,0,52,2017,August,34,23,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,85.24,0,1,Check-Out,Rebecca Davis,randyrusso@example.org,(522)632-7854x88959,4374131236940733,2025-03-20 +City Hotel,1,178,2017,December,52,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,101.36,0,0,Canceled,Deanna Mcdonald,jlee@example.com,320-771-4616x91546,4173007611220763,2026-03-02 +City Hotel,1,390,2017,October,40,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,58.37,0,0,Canceled,Brian Barrett,gomezchristopher@example.net,557.542.7231x9685,5140810883193015,2025-12-12 +Resort Hotel,0,148,2017,July,30,24,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,136.72,0,2,Check-Out,Charles Willis,deborah08@example.org,(667)389-7579,4192374878248,2026-02-19 +Resort Hotel,1,4,2017,November,46,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,67.0,179.0,0,Contract,51.89,0,1,Canceled,James Chapman,luke10@example.org,444-697-4911,676179040057,2025-01-02 +Resort Hotel,1,131,2017,December,49,5,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Transient,45.29,0,0,Canceled,Michael Soto,mariowilliams@example.com,609.559.9050x95241,30495997313545,2026-03-03 +Resort Hotel,0,134,2017,March,11,14,0,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,D,D,1,Refundable,14.0,223.0,0,Transient-Party,63.51,1,0,Check-Out,Aimee Fisher,kelly76@example.net,+1-979-865-6895x1791,6563522140278424,2026-03-24 +City Hotel,1,213,2017,September,39,23,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,106.81,0,0,Canceled,Matthew Garcia,owensstephanie@example.com,(316)236-7565,6011869207303902,2024-09-01 +City Hotel,1,233,2017,August,32,4,2,10,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,229.29,0,1,Canceled,Elizabeth Owens,carlos84@example.com,(939)416-0437x4207,4969568434319726,2025-07-04 +City Hotel,0,1,2017,November,45,9,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,105.2,0,1,Check-Out,Alex Lamb,kennedywilliam@example.com,421-887-2371x87828,4619052967955531,2024-07-05 +Resort Hotel,0,91,2017,November,46,14,1,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,113.67,1,1,Canceled,Kenneth Graham,thomasdaniel@example.net,001-688-488-9127x10013,6011555065724822,2024-07-10 +City Hotel,1,9,2017,August,35,28,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,252.0,1,1,Canceled,Roy King,tracymccormick@example.org,+1-805-300-3468x45906,4859403923935670,2025-10-04 +City Hotel,0,88,2017,July,28,11,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,75.04,0,1,Check-Out,George Gregory,mmedina@example.org,982-869-6340x48406,4299031084951891952,2026-02-22 +City Hotel,0,49,2017,August,35,27,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,215.34,0,1,Check-Out,Wesley Rich,jasonhenderson@example.com,867-975-4688x119,572106569534,2025-09-05 +City Hotel,0,23,2017,July,30,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,14.0,45.0,0,Transient,145.56,0,1,Check-Out,Stephanie Hunter,ewise@example.org,(975)842-9185x04450,502095171083,2025-03-02 +City Hotel,1,8,2017,January,4,26,0,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,108.26,0,2,Canceled,Raymond Finley,matthew20@example.net,208.373.0069x6722,3513340969533615,2025-12-19 +City Hotel,1,101,2017,September,37,10,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,124.95,0,0,Canceled,Allen Hunt,rhondamora@example.com,597.491.6091x40409,3534239496399505,2026-02-19 +Resort Hotel,0,88,2017,April,14,2,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,77.76,1,1,Check-Out,Stacie Sanford,fgarcia@example.com,(308)953-9266x550,4899350345739681985,2025-01-11 +Resort Hotel,1,154,2017,March,13,31,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Refundable,311.0,223.0,75,Transient-Party,76.24,0,0,Canceled,Christina Compton,johnsonlisa@example.net,001-377-634-3815x510,4796248036005,2024-11-24 +City Hotel,0,256,2017,May,20,18,2,3,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,43,Transient-Party,65.18,0,0,Check-Out,Beverly Cook,arnoldkimberly@example.com,753.962.3682,180095170954806,2025-02-21 +Resort Hotel,1,109,2017,May,20,11,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Canceled,Tracy Parker,chavezdebra@example.com,536.408.4120x922,675902571016,2026-03-27 +City Hotel,1,393,2017,May,19,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,117.75,0,2,Canceled,Rebecca Ellis,jeffreydominguez@example.org,388-698-3717x879,343099085315099,2025-04-28 +City Hotel,1,2,2017,August,32,12,1,0,3,0.0,0,SC,DEU,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,2.05,0,0,Canceled,Aaron Hernandez,xpierce@example.com,001-639-254-6096x5889,213192695958742,2024-05-27 +City Hotel,0,86,2017,December,52,26,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Contract,122.0,0,2,Check-Out,Elizabeth Miller,richardsonerica@example.net,+1-609-929-7816,4265063812366201,2025-08-10 +City Hotel,0,51,2017,March,10,8,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,99.44,0,0,Check-Out,Dalton Davis,bhartman@example.net,(628)247-1780x45121,4053961761482862421,2024-10-20 +Resort Hotel,0,43,2017,December,49,3,1,4,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,130.67,0,2,Check-Out,Michael Singleton,vjohnson@example.com,929-425-8276x66642,4837641302327739435,2024-12-23 +Resort Hotel,0,102,2017,May,22,26,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,2.96,0,1,Check-Out,John Cooper,rachel29@example.org,718-670-8471,3527459024262012,2025-06-18 +City Hotel,1,236,2017,June,23,4,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient,106.4,0,0,Canceled,Michael Hale,dixoncheryl@example.org,001-402-497-7935,4084986837830315,2025-02-16 +City Hotel,0,102,2017,August,31,2,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,147.75,0,0,Check-Out,Mary Guerra,cookgabriella@example.com,981-337-2463,569640673608,2024-07-09 +City Hotel,0,0,2017,August,32,5,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,223.97,0,1,Check-Out,Pamela Davis,aaron63@example.net,208.228.8772x2732,2281870280035934,2026-01-04 +Resort Hotel,0,105,2017,November,45,7,2,3,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,98.9,1,2,Check-Out,Phillip Anderson,mjackson@example.net,(319)211-0544x12462,3563834880600817,2025-12-14 +Resort Hotel,0,17,2017,April,16,21,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,74.08,0,1,Check-Out,Stephanie Weiss,michellemartin@example.org,871-460-7843x4737,4571231526662,2025-03-03 +City Hotel,1,42,2017,November,46,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,97.25,0,0,Canceled,Jessica Long,john65@example.org,(929)693-2699,3520274538860616,2026-03-24 +City Hotel,1,34,2017,March,10,6,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.57,0,0,Canceled,John Yang,andersonleslie@example.com,734.204.9517x48413,572304716978,2024-11-01 +City Hotel,0,27,2017,October,40,5,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Contract,74.72,0,2,Check-Out,Connie Franklin,eric09@example.com,+1-390-782-0717x9630,3501646918543537,2025-09-11 +City Hotel,1,158,2017,August,33,11,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.27,0,0,Canceled,Jackie Morgan,millskenneth@example.com,902.743.4950x000,4739365412058464723,2024-06-05 +City Hotel,0,45,2017,May,22,27,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.38,0,0,Check-Out,Lisa Walton,tiffanywilliams@example.org,591-375-3161x440,4961764548825496,2025-01-31 +City Hotel,1,86,2017,January,4,20,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,130.85,0,0,Canceled,Maria Taylor,matthew79@example.com,906.940.8098,4283188209272,2024-06-21 +Resort Hotel,1,201,2017,August,33,15,0,4,1,0.0,0,HB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,252.0,179.0,0,Group,2.77,0,0,Canceled,Daniel Graham,sethtate@example.org,+1-877-518-1704,3562546783866698,2025-03-25 +City Hotel,0,155,2017,November,47,23,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,112.95,0,2,Check-Out,Matthew Simmons,margaretmiller@example.net,(836)351-3490x080,3533427805844474,2024-09-27 +City Hotel,1,374,2017,October,41,12,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.34,0,0,Canceled,James Nicholson,hicksmichelle@example.net,525.941.1638,30569876280205,2025-04-11 +Resort Hotel,0,3,2017,August,32,3,2,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,250.0,179.0,0,Transient,252.0,1,1,Check-Out,Tyler Fisher,elizabethwalker@example.net,001-271-506-6331,4287496034194817,2026-01-31 +Resort Hotel,0,150,2017,November,45,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,26.0,179.0,0,Transient-Party,66.11,0,0,Check-Out,Michael Flowers,ellisjason@example.com,228.958.5471x71052,3557232396378457,2024-04-20 +Resort Hotel,1,154,2017,May,19,4,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Transient,62.84,1,2,Canceled,Bradley Parks,mflowers@example.org,(733)906-5542,501875282730,2025-05-08 +City Hotel,0,214,2017,August,33,11,2,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,136.78,0,2,Check-Out,Scott Lara,sandragamble@example.net,7159103987,213120157710061,2025-08-13 +City Hotel,0,165,2017,April,14,2,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,116.01,0,2,Check-Out,Francis Andrews,hcook@example.com,409.604.3155x941,30156760677421,2024-05-20 +City Hotel,0,44,2017,March,11,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,68.0,0,Transient,129.98,1,0,Check-Out,Jesse Tucker,ronald73@example.net,(780)533-0152,060460596749,2025-05-28 +Resort Hotel,0,3,2017,April,16,17,0,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,262.0,0,Transient,42.9,0,0,Check-Out,Jennifer Wise,scottjones@example.com,371-432-0812,4531790116155108,2025-05-08 +City Hotel,0,0,2017,October,41,12,2,0,2,0.0,0,BB,FRA,Complementary,Direct,0,0,0,G,G,0,No Deposit,16.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,David Walters,laceymcdonald@example.net,(632)522-5198x295,3529128754514359,2024-07-21 +Resort Hotel,0,0,2017,December,49,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,248.0,179.0,0,Transient,47.35,1,0,Check-Out,Rebekah Cole,ochandler@example.com,(857)229-8824x5709,581106111726,2025-02-17 +Resort Hotel,1,44,2017,August,32,8,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Canceled,John Rogers,syoung@example.com,001-800-959-4609,180004969377112,2024-10-14 +Resort Hotel,0,12,2017,June,26,24,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,174.1,0,1,Check-Out,Holly Floyd,richardsonthomas@example.org,(338)312-7249x9630,6011930269302156,2026-01-10 +Resort Hotel,0,33,2017,August,33,11,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,237.46,0,0,Check-Out,Ms. Janet Leonard,andre21@example.org,555.224.3322x57987,3572068553208389,2024-12-24 +Resort Hotel,0,160,2017,April,16,15,1,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,308.0,179.0,0,Transient-Party,81.11,1,0,Check-Out,George Villa,markcortez@example.com,362.852.9512x540,38845743623229,2025-08-12 +Resort Hotel,0,27,2017,February,9,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,74.1,1,2,Check-Out,Christina Hess,randyboyd@example.org,001-875-418-6661x36412,379680066427800,2026-03-16 +Resort Hotel,0,145,2017,March,10,5,1,3,2,0.0,0,FB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,223.0,0,Transient-Party,61.81,0,0,Check-Out,Jordan Williams,kaylee70@example.net,765.299.0099x8563,38992264075585,2024-06-20 +Resort Hotel,0,20,2017,April,17,28,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,245.4,1,1,Check-Out,Bryan Burns,joshuasantos@example.com,001-298-379-3751,2282376626500556,2025-02-25 +Resort Hotel,0,3,2017,May,18,3,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,100.42,1,0,Check-Out,Stephen Parks,deborah26@example.com,+1-818-645-9299,630452671385,2024-05-18 +City Hotel,1,175,2017,July,31,27,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,146.8,0,0,Canceled,George Phillips,ryan34@example.com,534-403-1256,3531730667924108,2025-11-20 +Resort Hotel,0,2,2017,January,2,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,52.01,0,1,Check-Out,Kimberly White,gregoryanderson@example.org,949.382.1675x991,30591304979612,2026-01-12 +City Hotel,1,33,2017,December,52,26,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,112.45,0,0,Canceled,Alan Nguyen,seanjackson@example.org,919-747-8644x1268,4121102460699868165,2025-12-10 +City Hotel,0,10,2017,May,18,1,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,112.76,0,2,Check-Out,Linda Howard,alanchambers@example.org,382.212.3783x274,6515136760591443,2025-10-06 +City Hotel,0,17,2017,February,7,17,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,63.78,0,0,Check-Out,Parker Wright,davidjohnson@example.com,263-805-0834x7365,3517938545690878,2024-09-18 +Resort Hotel,0,151,2017,August,34,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,162.83,0,1,Check-Out,Brandon Acosta,albert00@example.com,558-275-7887x3131,6011398743873871,2026-03-06 +Resort Hotel,0,13,2017,July,28,11,2,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,1,No Deposit,249.0,179.0,0,Transient,197.48,1,0,Check-Out,Jessica Hill,jay44@example.com,769.650.6761,2711869138214246,2024-06-08 +Resort Hotel,0,91,2017,April,17,26,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,137.0,179.0,0,Transient-Party,129.63,0,0,Check-Out,Melissa Sanchez,loriporter@example.net,+1-272-450-3589x87794,4180960322599431,2024-11-01 +Resort Hotel,1,30,2017,December,52,25,1,3,2,0.0,0,HB,PRT,Online TA,Corporate,0,0,0,A,E,2,No Deposit,243.0,179.0,0,Transient-Party,54.79,0,0,Canceled,Sandy Oconnor,vincentsnyder@example.com,329-939-7303x648,345978312625925,2025-09-28 +City Hotel,1,257,2017,September,38,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,38,Transient,120.94,0,0,Canceled,Judy Jones,joshuaallen@example.com,509.343.6291,4826729184600,2026-02-19 +City Hotel,0,35,2017,December,52,25,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,108.82,0,1,Check-Out,Charles Davila,rwest@example.org,(888)330-9785,30141559352030,2025-04-17 +City Hotel,0,21,2017,December,50,9,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.16,0,1,Check-Out,Sonia Reyes,michelle84@example.com,+1-469-975-5210,3578301477333957,2026-01-31 +City Hotel,1,279,2017,June,26,24,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,105.6,0,0,Canceled,Mrs. Tammy Curry,stephanieburns@example.com,+1-758-235-5005x010,4659840119523210,2026-03-09 +City Hotel,1,389,2017,January,5,31,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient-Party,62.55,0,0,Canceled,Alex Clements,danameyers@example.com,7869720288,4069177854415067683,2025-10-24 +City Hotel,0,176,2017,August,35,31,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,108.43,0,1,Check-Out,Matthew Andrade,ashley48@example.com,001-754-436-7775x9708,30256057813786,2025-12-11 +Resort Hotel,0,97,2017,June,24,8,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,302.0,179.0,0,Group,71.22,0,0,Check-Out,Jessica Wilson,julieyu@example.com,+1-385-794-8967,4780340794455,2025-07-27 +City Hotel,0,20,2017,April,14,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,10.0,179.0,0,Transient,115.51,0,0,Check-Out,Dean Turner,mdiaz@example.net,852-628-9858x624,3503190728913653,2024-07-09 +City Hotel,1,106,2017,September,39,27,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.92,0,0,Canceled,Sarah Sanchez,ohamilton@example.net,(640)796-0663x49983,3597663304449224,2025-08-10 +City Hotel,0,42,2017,October,42,20,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,77.96,0,1,Check-Out,Jacqueline Kennedy,stephanie30@example.org,615.795.4377x890,213180254417762,2024-04-19 +Resort Hotel,0,36,2017,November,46,18,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,179.0,0,Transient-Party,70.83,0,0,Check-Out,Jessica Burgess,bdavis@example.org,+1-965-492-5490,4299740440085663083,2024-05-16 +City Hotel,0,363,2017,July,29,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.0,0,0,Check-Out,Destiny Powers,matthewfranklin@example.org,389.480.3509,3521821990100409,2025-09-06 +City Hotel,1,119,2017,July,29,19,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,88.43,0,0,No-Show,Susan Gregory,welliott@example.org,001-674-513-0742x14811,4243775049335025,2025-12-20 +City Hotel,1,3,2017,May,20,17,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,222.0,0,Transient,54.22,0,0,No-Show,Jason Smith,emilybaker@example.com,001-981-970-1086,6011269444823996,2026-01-22 +City Hotel,1,43,2017,May,22,29,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.41,0,2,Canceled,Carlos Adams,lnunez@example.com,(216)266-1999x63121,346390893644060,2024-12-24 +City Hotel,0,238,2017,October,41,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Contract,81.72,0,0,Check-Out,Vanessa Flores,ykhan@example.net,839.564.7826,4388921085991785140,2024-12-03 +City Hotel,0,87,2017,December,52,30,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.45,0,1,Check-Out,Albert Nguyen,richard60@example.org,306.799.6675x10962,6514351393447035,2024-07-15 +City Hotel,0,3,2017,January,5,29,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Group,136.22,0,0,Check-Out,Dwayne Joseph,snyderdeborah@example.com,257.502.2575x80802,4365878742318017,2024-09-25 +Resort Hotel,1,199,2017,August,33,15,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,81.62,0,0,Canceled,Leah Walters,christopher30@example.net,747.876.4727x76376,2298335590571425,2025-10-21 +Resort Hotel,0,95,2017,April,18,30,1,4,3,1.0,0,BB,ESP,Online TA,Direct,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,238.85,1,0,Check-Out,James Spears,wrodriguez@example.org,518-770-1365x956,2276843120454620,2026-01-24 +City Hotel,0,0,2017,April,14,6,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.86,0,0,Check-Out,Gilbert Reed,soconnor@example.net,531-440-8255x55946,3532892587655599,2025-04-09 +Resort Hotel,0,33,2017,March,13,24,1,5,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,190.0,179.0,0,Transient-Party,64.42,0,0,Check-Out,Joel Newton,makayla94@example.net,(991)203-7486x7004,501898702862,2025-11-26 +Resort Hotel,1,1,2017,November,47,18,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,256.0,0,Transient,37.89,0,0,Check-Out,Michael Chambers,charles84@example.net,784.335.8125,6011908798052294,2026-03-09 +City Hotel,0,102,2017,August,33,11,2,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,145.71,0,1,Check-Out,Andrew Phelps,gabriel54@example.net,901-226-0451,3509440959488279,2025-01-18 +Resort Hotel,0,0,2017,October,43,21,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,53.27,1,1,Check-Out,Lynn Hoffman,jeffrey05@example.com,851-675-8734,6529506226018815,2024-12-04 +City Hotel,1,13,2017,April,14,5,2,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,132.88,0,1,Canceled,Daniel Mercer,joseph41@example.com,(227)225-7374x8313,4195406788190383,2024-05-21 +Resort Hotel,0,1,2017,March,10,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,50.05,1,0,Check-Out,Edgar Stewart,mparker@example.org,001-728-981-8198x52289,3533288811129460,2026-01-28 +City Hotel,1,60,2017,June,26,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,114.18,0,0,Canceled,Alyssa Weber,elizabeth22@example.org,(713)751-9673,4558156050237606546,2024-08-01 +Resort Hotel,0,2,2017,January,2,11,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,48.43,0,1,Check-Out,Guy Reynolds,carlos85@example.net,861-482-6017,4418137047460488,2024-05-07 +City Hotel,1,414,2017,September,37,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.94,0,0,Canceled,Allison Mcpherson DDS,gpace@example.org,(822)866-8260,3505711305241909,2025-04-01 +Resort Hotel,1,147,2017,March,13,28,1,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,B,A,0,Non Refund,208.0,179.0,0,Transient,62.97,0,0,Canceled,David Morse Jr.,jamesleslie@example.org,(634)211-2803x41802,30095402468288,2024-04-20 +Resort Hotel,0,0,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,43.75,1,1,Check-Out,Sarah Davis,collinsbryan@example.net,+1-974-547-2146,3571493418283479,2024-11-23 +Resort Hotel,0,37,2017,August,31,2,1,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,223.79,0,2,Check-Out,Willie Duncan,khenderson@example.org,256.330.8239,6593288954430527,2026-01-12 +City Hotel,0,48,2017,October,42,15,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,61,Transient,107.47,0,0,Check-Out,Christopher Waters,steven80@example.org,8182230962,639033732616,2025-01-17 +Resort Hotel,0,14,2017,April,17,26,2,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,1,No Deposit,328.0,179.0,0,Transient,112.75,0,0,Check-Out,Jennifer Ortiz,jessica69@example.org,860-925-3706x45610,4685301162154567,2026-02-08 +City Hotel,1,387,2017,April,15,12,1,4,2,1.0,0,HB,RUS,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,89.66,0,0,Canceled,Jennifer Greene,hancockeric@example.com,436-917-1392,5380909004963519,2025-02-06 +City Hotel,0,386,2017,May,20,17,1,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.51,0,0,Check-Out,Jack Garcia,eugeneberry@example.net,499-948-7870x9931,4472394401338791,2026-03-24 +City Hotel,0,39,2017,September,39,26,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,227.51,0,0,Check-Out,Toni Gill,kylewaters@example.com,(688)302-8039,3507654459275448,2025-03-17 +City Hotel,1,59,2017,April,18,30,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.82,0,0,Canceled,Joseph Myers,rebecca78@example.com,001-846-575-0328,3595015331065063,2025-02-09 +Resort Hotel,0,4,2017,August,35,26,2,4,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,F,F,1,No Deposit,247.0,179.0,0,Transient,252.0,1,2,Check-Out,Kathleen Marshall,kmorris@example.net,+1-424-455-3947x01217,675926606129,2025-07-22 +City Hotel,1,147,2017,July,30,24,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,139.0,179.0,0,Transient,90.48,0,0,No-Show,Joanna Bradshaw,woodchris@example.com,+1-648-716-4491x2435,3511080456973641,2026-01-12 +City Hotel,0,51,2017,September,36,5,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,190.43,0,3,Check-Out,Dylan Patel,maryevans@example.net,001-726-783-9528x463,4167835860819424,2024-08-15 +Resort Hotel,0,12,2017,January,2,10,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,44.34,0,1,Check-Out,John Jackson,joditaylor@example.net,806.865.9527,3557243034899275,2025-08-06 +Resort Hotel,0,299,2017,September,37,13,3,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,310.0,179.0,0,Transient-Party,61.2,0,1,Check-Out,Janet Delgado,linda20@example.com,(340)557-7817x066,4493145063067713,2025-06-12 +City Hotel,1,198,2017,April,15,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,40,Transient,96.3,0,0,Canceled,Jennifer Fields,austinsullivan@example.com,001-903-423-7345x0496,213138305970312,2024-08-17 +City Hotel,1,16,2017,April,17,25,1,0,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,131.72,0,0,Canceled,Brenda Harvey,marissamathews@example.net,819.695.4408,379732488911992,2024-12-10 +City Hotel,1,241,2017,May,22,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,42,Transient,84.37,0,0,Canceled,Ms. Monique Dougherty MD,mwood@example.net,805.787.3889,30485649971782,2025-01-18 +City Hotel,0,134,2017,March,12,19,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.07,0,1,Check-Out,Keith Kennedy,lvazquez@example.net,803.238.3887,6504344723366605,2025-05-06 +City Hotel,0,145,2017,November,44,3,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.55,0,2,Check-Out,Jacob Paul,peter85@example.net,+1-229-554-8269x473,4439530845919553,2024-12-12 +City Hotel,1,94,2017,May,22,26,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,192.93,0,1,No-Show,Martha Arnold,stephen05@example.org,593.785.0408x389,180059470984244,2025-08-05 +Resort Hotel,0,130,2017,June,26,24,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,133.12,0,2,Check-Out,Sarah Martin,theodore99@example.com,749.322.3611,3590741545702028,2024-11-03 +City Hotel,0,17,2017,August,35,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,100.72,0,2,Check-Out,Shaun Thompson,jennifer92@example.net,(549)886-9124x9776,4355409596223830,2024-11-21 +City Hotel,1,166,2017,June,24,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,140.43,0,0,Canceled,Tammy Morris,patelkaylee@example.net,200-275-3257,4582459766195,2025-04-05 +Resort Hotel,0,0,2017,March,11,14,0,1,2,0.0,0,BB,PRT,Complementary,TA/TO,1,0,0,A,I,0,No Deposit,246.0,179.0,0,Transient,1.49,0,1,Check-Out,Steven Clark,howellbilly@example.com,994-647-3061,3510784354804623,2024-10-23 +Resort Hotel,0,0,2017,March,10,8,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,238.0,0,Transient,6.08,0,0,Check-Out,David Morrison,robert52@example.net,958.589.8187,213148462675950,2024-12-14 +City Hotel,1,253,2017,December,49,6,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.66,0,0,Canceled,Rebecca Kaufman DDS,parkamanda@example.org,863.372.9728,5564831432852296,2025-01-05 +City Hotel,0,8,2017,May,20,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,77.23,0,1,Check-Out,Larry Rivera,alexandra58@example.org,001-341-286-8752x78717,342561045183488,2024-12-23 +City Hotel,1,119,2017,June,25,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,115.58,0,0,Canceled,Caitlin Ford,wallacelisa@example.org,496-538-1711x8222,4714421755677820054,2025-10-15 +Resort Hotel,1,0,2017,March,12,19,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,130.77,0,0,Canceled,Adriana Johnson,strongjohn@example.org,(502)957-6841x2080,180077390462505,2026-03-05 +Resort Hotel,0,48,2017,December,50,10,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,F,1,No Deposit,237.0,179.0,0,Transient,55.62,0,1,Check-Out,Sharon Cowan,wjohnson@example.com,(674)299-2502x030,502080583664,2025-05-26 +Resort Hotel,1,30,2017,December,48,2,1,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,56.18,0,1,Canceled,Andrea Butler,david11@example.com,001-328-563-6688,4501559475037447,2024-10-09 +City Hotel,0,145,2017,July,29,16,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,139.46,0,0,Check-Out,Mike Martinez,karengordon@example.net,(215)903-3666x5642,4095885438792,2024-11-26 +City Hotel,0,65,2017,July,28,6,3,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,D,0,No Deposit,12.0,179.0,0,Transient,242.83,0,1,Canceled,Maria Ferguson,cmoore@example.com,(680)841-5748,30107170112368,2024-04-22 +City Hotel,0,25,2017,April,14,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,115.49,0,1,Check-Out,John Barber,jennifervazquez@example.net,001-210-540-8641x4061,377971524182323,2025-07-10 +Resort Hotel,0,11,2017,May,22,28,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,91.06,0,1,Check-Out,James Short,amber07@example.org,435.604.7911,6011386081851443,2026-01-02 +City Hotel,1,264,2017,July,28,13,0,2,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,B,K,0,No Deposit,11.0,179.0,0,Transient,89.08,0,0,Canceled,Heidi Moran,allenisabella@example.org,001-729-643-6226,180015040840803,2025-04-20 +Resort Hotel,0,15,2017,September,36,4,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,169.0,179.0,0,Transient-Party,65.93,0,2,Check-Out,Marie Patterson,jeremyswanson@example.net,+1-257-772-4059x8952,213180338457321,2025-11-29 +Resort Hotel,0,0,2017,March,12,21,0,3,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,39.62,0,0,Check-Out,Charles Baker,hillveronica@example.net,+1-885-615-2114x882,342674569508491,2025-11-04 +City Hotel,1,37,2017,July,27,4,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,137.52,0,0,No-Show,Nicole Rodriguez,watsonjennifer@example.org,931.887.8642x60135,180002587875590,2025-04-21 +Resort Hotel,0,42,2017,November,44,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,42.09,0,2,Check-Out,Jason Morgan,hollowaydonna@example.com,+1-752-673-4724x965,4631266818639481607,2024-10-30 +City Hotel,0,7,2017,June,25,17,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,146.19,0,1,Check-Out,Rebecca Clark,antoniostephenson@example.org,+1-630-964-5044x039,30579921803588,2024-05-13 +City Hotel,0,37,2017,August,32,6,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,6.0,179.0,0,Transient,164.5,0,2,Check-Out,Martin Jones,aaronsantos@example.org,(387)591-2692x038,4073960782293,2025-05-05 +Resort Hotel,1,303,2017,July,29,17,4,5,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,131.87,0,0,Canceled,Katherine Sanchez,christopher58@example.net,472.203.7305,6575908222725307,2025-11-11 +Resort Hotel,1,34,2017,July,29,15,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,231.2,0,0,No-Show,Edward Wallace,sbarker@example.net,+1-467-949-1991x235,4272999652811122,2026-01-01 +City Hotel,1,122,2017,July,29,17,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.89,0,0,No-Show,Melissa Carroll,psmith@example.org,+1-561-237-7868x414,4549113248633332,2026-01-29 +City Hotel,0,122,2017,August,36,31,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,1,2,Check-Out,Pam Hernandez,bradley20@example.org,(534)309-0450,30457729589446,2025-04-10 +City Hotel,1,291,2017,September,36,8,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,92.49,0,0,Canceled,Daniel Wood,gilbertwayne@example.com,2908291838,4730105208638848136,2024-05-01 +Resort Hotel,0,9,2017,February,9,25,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,74.87,1,1,Check-Out,Eddie Duffy,ralphburns@example.net,791-997-1256,4037853747243781,2026-02-10 +City Hotel,0,28,2017,September,40,30,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.46,0,0,Check-Out,Mark Alvarez,tracyanderson@example.com,+1-588-983-1569x12080,5270021988593628,2025-01-22 +City Hotel,0,34,2017,September,38,18,0,1,2,1.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,131.57,0,0,Check-Out,Edward Manning,andersonanne@example.com,(784)253-0363,213150583065889,2026-01-29 +Resort Hotel,0,274,2017,October,42,16,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,29.0,179.0,0,Contract,52.79,0,1,Check-Out,Bridget Carter,abeasley@example.com,409.871.5104x62032,4070609950901210,2025-04-12 +City Hotel,0,55,2017,March,14,31,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,113.45,0,1,Check-Out,Mark Johnson,whitedaniel@example.net,+1-465-906-6982,675939761978,2025-04-26 +City Hotel,1,166,2017,August,35,29,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,106.99,0,0,Canceled,Eric Silva,kimberlysparks@example.org,+1-992-908-8963,4161318726945071903,2024-12-29 +City Hotel,0,15,2017,October,41,9,0,1,1,0.0,0,BB,,Complementary,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,89.04,0,0,Check-Out,Nathan Mcgee,robertsonstephanie@example.net,001-687-285-0787x0953,4037909715599,2024-05-01 +Resort Hotel,1,148,2017,July,28,8,4,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,88.23,0,1,Check-Out,Jennifer Montgomery MD,dwayne40@example.org,001-652-940-8715,2259940586449705,2026-02-18 +Resort Hotel,1,98,2017,October,41,12,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,106.71,0,1,Canceled,Christopher Farrell,michaelmcclain@example.org,292.485.0038x89264,503818611405,2026-03-18 +Resort Hotel,1,1,2017,August,34,22,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,249.0,179.0,0,Transient,229.55,0,1,Canceled,James Grimes,joshuastewart@example.com,(858)510-2144x016,2235721714002684,2024-07-28 +Resort Hotel,0,99,2017,April,17,22,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,2,No Deposit,36.0,179.0,0,Transient,46.08,0,0,Check-Out,Mr. Joseph Thompson,anne78@example.net,288.987.8151x18302,4075210138737118481,2024-06-08 +City Hotel,0,20,2017,March,13,23,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,B,C,0,No Deposit,30.0,179.0,0,Transient-Party,85.43,0,1,Check-Out,Alexis Arroyo,yoliver@example.net,+1-703-534-4841x956,3573487398382242,2025-10-04 +City Hotel,0,23,2017,August,33,13,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,105.17,0,2,Check-Out,Eric Walker,millerdenise@example.net,(764)676-9185x4031,3566757776097094,2026-01-24 +City Hotel,0,139,2017,April,18,30,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,135.19,0,2,Check-Out,Richard Mccormick,jenkinselizabeth@example.com,531-429-0761x688,30581680191932,2025-06-22 +Resort Hotel,0,13,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,30.0,179.0,0,Group,137.72,0,2,Check-Out,Heather Stevens,olong@example.org,+1-459-370-5503x90660,4766186468718,2025-06-06 +Resort Hotel,0,159,2017,July,27,1,3,5,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,130.2,0,3,Check-Out,Susan Larsen,ryanwalker@example.net,001-992-873-2094,3562302853814162,2025-03-26 +Resort Hotel,0,0,2017,February,8,21,1,2,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,197.0,179.0,0,Transient,128.63,0,0,Check-Out,Rachel Warren,palmerderek@example.com,6833088806,30082233170952,2025-11-28 +City Hotel,1,63,2017,December,50,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.56,0,2,Canceled,Dale Beck,sreyes@example.org,(875)825-1321x38732,3583280259319512,2025-11-24 +City Hotel,0,16,2017,June,25,20,0,2,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,1,No Deposit,184.0,179.0,0,Transient,140.17,0,0,Check-Out,Brett Rivera,mitchell48@example.com,001-584-577-7869x56089,676172385111,2025-08-22 +Resort Hotel,1,151,2017,September,39,26,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,244.0,179.0,0,Transient,81.8,0,0,Canceled,Juan Nichols,longpamela@example.com,991.415.6693,6011361367855665,2026-01-22 +City Hotel,0,17,2017,February,9,24,1,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.36,1,3,Check-Out,Shelia Waller,matthewlogan@example.com,001-261-974-7295x98177,5536546900525696,2025-08-30 +City Hotel,1,14,2017,June,23,4,0,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,160.02,0,0,Canceled,Keith Wright,mark40@example.com,579.416.3493x017,4488722985553629,2025-07-10 +Resort Hotel,0,105,2017,June,23,4,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,73.74,1,0,Check-Out,Patrick Norris,kristen68@example.org,(667)963-7665,343338508148343,2025-12-06 +City Hotel,0,101,2017,October,42,21,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.11,0,0,Check-Out,Danielle Norris,davidbaker@example.org,+1-770-224-9820x3614,4619236521809124,2025-06-19 +City Hotel,1,160,2017,June,23,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,243.35,0,0,Canceled,Andrew Lynch,tanner38@example.org,+1-673-962-9616x56642,4270350115807114563,2025-12-30 +Resort Hotel,1,47,2017,August,33,18,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,239.0,179.0,0,Group,75.45,1,2,Canceled,Anna Lee,ericwilliams@example.com,001-474-609-6886x531,36996892903797,2025-11-15 +City Hotel,1,145,2017,September,39,26,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,104.27,0,0,Canceled,Amy Leach,kent02@example.com,308-744-4841,4022903877225552198,2024-11-30 +Resort Hotel,0,105,2017,December,49,2,0,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,50.68,1,2,Check-Out,Amy Perez,regina12@example.com,5472084242,372073846383476,2025-08-10 +Resort Hotel,0,75,2017,December,49,5,0,1,2,0.0,0,HB,PRT,Online TA,Direct,0,1,0,E,E,0,No Deposit,239.0,179.0,0,Transient,51.97,0,1,Check-Out,Lauren Marshall,ericsmith@example.net,(864)400-8946,374563941119211,2024-10-24 +City Hotel,1,59,2017,May,19,8,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,151.7,0,0,Canceled,Rachael Flores,allison20@example.net,740-367-0294x0047,4453431422238882,2025-01-16 +Resort Hotel,0,145,2017,March,13,25,1,0,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,86.9,0,0,Check-Out,Christina Wilson,alynch@example.net,721.441.7516x0631,5105999961670318,2026-02-24 +City Hotel,1,96,2017,April,15,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,119.86,0,1,Canceled,Craig Daniels,deborah66@example.org,602-886-7453x755,4464308057216689,2024-10-12 +City Hotel,0,161,2017,September,38,19,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,121.76,0,0,Check-Out,John Hudson,nicolasmcdonald@example.org,2954469570,38271969580771,2025-07-13 +Resort Hotel,1,282,2017,September,35,2,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,Non Refund,177.0,179.0,75,Transient,108.19,0,0,Canceled,Shannon Rodriguez,colleen85@example.org,947-533-9775x04448,630404393377,2025-05-15 +Resort Hotel,1,31,2017,August,33,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,198.81,0,2,Canceled,Paula Lee,gabriella29@example.com,478-752-8454x348,30240872311390,2024-10-28 +City Hotel,1,22,2017,May,18,3,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,83.65,0,0,No-Show,Lisa Bryant,clarkgail@example.org,001-755-459-9603x11197,501893795887,2024-12-06 +Resort Hotel,0,11,2017,December,49,5,1,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,295.0,179.0,0,Transient,217.08,0,0,Check-Out,Paul Guzman,rodriguezjudy@example.org,001-221-643-5509x994,2634376071813251,2024-11-07 +Resort Hotel,1,154,2017,August,35,27,2,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,12.0,179.0,0,Transient,216.67,0,0,Canceled,Christopher Hunter MD,zfitzgerald@example.net,594.449.6455x093,6531172535767778,2025-03-09 +City Hotel,0,8,2017,October,42,21,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,63,Transient,113.66,0,0,Check-Out,Elizabeth Camacho,miguel96@example.com,001-245-378-5903x858,3580734205921683,2025-08-05 +City Hotel,0,94,2017,February,6,9,1,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,37.51,0,0,Check-Out,Donald Hoffman,chrismiller@example.com,4878519984,639045597270,2025-09-22 +City Hotel,0,6,2017,July,27,8,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,110.8,1,1,Check-Out,Jeremiah Rowland,smithvincent@example.org,+1-840-592-8544x588,4033468340747833,2025-10-17 +City Hotel,1,52,2017,July,29,14,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,112.06,0,0,Canceled,Katherine Flores,teresa39@example.org,452-365-8140x998,38875832548961,2025-08-14 +City Hotel,0,90,2017,March,12,19,1,2,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,104.12,0,1,Check-Out,Julie Martin,briancollins@example.net,001-775-715-6351x53115,4665022780654119,2025-05-15 +City Hotel,1,18,2017,May,19,8,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,114.94,0,2,Canceled,Jeffrey Torres,bennettelizabeth@example.org,(891)214-9528,676235924815,2025-05-10 +City Hotel,1,0,2017,August,35,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,0,0,B,E,0,No Deposit,10.0,179.0,0,Transient,108.3,0,2,Canceled,Jessica Little,julieturner@example.org,449-435-7986x2582,3597374099956569,2025-08-11 +Resort Hotel,1,46,2017,July,29,15,0,3,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,230.99,1,1,Canceled,Catherine Maxwell,hoganwilliam@example.org,892-810-5180x898,213122280341814,2025-06-23 +Resort Hotel,1,105,2017,June,23,6,1,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,112.58,0,0,Canceled,Cindy Shaw,aaron07@example.com,832-640-9396,4776435319943713958,2024-06-07 +Resort Hotel,0,137,2017,May,18,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,2,Refundable,13.0,222.0,0,Transient-Party,130.06,0,0,Check-Out,Joseph Garcia,michaelsmith@example.org,635.432.9554x5552,4562485937761810,2026-02-07 +Resort Hotel,0,55,2017,July,28,9,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,239.0,179.0,0,Transient,195.47,0,1,Check-Out,Leon Duncan,richardssarah@example.net,951.410.0065,6594546806370616,2025-02-14 +Resort Hotel,0,1,2017,December,52,24,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,124.0,179.0,0,Transient,77.73,1,0,Check-Out,Christopher Miranda,brianjordan@example.org,(821)986-8324,4389956574376618,2024-09-08 +City Hotel,1,15,2017,July,30,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,109.11,0,0,Canceled,Sarah Bishop,james29@example.org,(757)763-9116x75977,30439375460361,2025-03-24 +Resort Hotel,0,199,2017,August,34,20,2,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,Tyler Zavala,nathaniellee@example.net,+1-684-266-9200,3578763529597238,2024-12-10 +City Hotel,1,159,2017,April,18,29,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,115.0,0,0,Canceled,Rachel Chan,tonya11@example.net,(243)542-5222x13738,377522793725803,2024-11-29 +Resort Hotel,0,9,2017,March,12,22,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,85.3,0,0,Check-Out,Timothy Kennedy,rthomas@example.org,780-344-8887x2114,30450938245074,2025-01-23 +City Hotel,0,160,2017,March,13,25,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,100.07,0,2,Check-Out,Elizabeth Thomas,jerrymiller@example.com,6155938034,180056896548520,2025-05-05 +City Hotel,1,329,2017,July,28,13,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,75.51,0,0,Canceled,Hector Mcgee,mbriggs@example.com,670-443-0474,4854713796152137,2024-12-19 +City Hotel,0,38,2017,October,41,10,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,168.77,0,0,Check-Out,Jeffery Long,melissawilson@example.net,837-725-2789,4760675827007767,2025-06-29 +Resort Hotel,0,2,2017,January,2,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,79.55,0,2,Check-Out,Philip Powell,zholland@example.com,443.740.4428x896,4835202570425069609,2025-03-23 +City Hotel,1,12,2017,June,24,8,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,130.73,0,0,Canceled,Heather Trujillo,rachel91@example.net,866.896.7773x2812,2289453038464086,2024-08-26 +City Hotel,1,113,2017,April,14,3,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,50.2,0,2,Canceled,Pamela Smith,ipierce@example.net,+1-270-460-0202x5427,3551825252648784,2025-03-23 +Resort Hotel,0,32,2017,June,23,3,3,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,119.57,0,0,Check-Out,Christine Moran,rhonda76@example.org,001-637-482-7399x38026,341453312252330,2024-03-29 +City Hotel,0,256,2017,July,27,3,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Contract,130.18,0,2,Check-Out,James Morris,david62@example.com,651.534.3098x8142,4897845710594,2025-04-18 +Resort Hotel,1,236,2017,October,40,6,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,276.0,179.0,0,Transient,73.23,0,0,Canceled,Erika Castro,danielsimmons@example.org,244.264.5332x4885,38689622332373,2025-04-29 +Resort Hotel,0,1,2017,March,13,27,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,309.0,331.0,0,Transient,46.95,0,0,Check-Out,Daniel Shaw,helenhayes@example.net,411.630.2791,2273925589117161,2025-08-19 +Resort Hotel,1,22,2017,August,34,17,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,56.29,0,1,Canceled,Ashley Sanchez,susanbrown@example.com,+1-259-684-1154x4441,3582113931338637,2024-10-10 +City Hotel,0,136,2017,August,34,20,1,5,3,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.99,0,1,Check-Out,John Griffith,jennifer74@example.org,443-348-3560x71420,4626034377040816,2025-03-14 +City Hotel,0,15,2017,August,33,17,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,132.13,0,1,Check-Out,Wesley Williams,christinapratt@example.com,001-206-746-7538,4545767014260929,2025-12-28 +City Hotel,0,2,2017,February,8,19,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,F,0,No Deposit,11.0,221.0,0,Transient-Party,64.99,0,0,Check-Out,Melissa Stout,oconnorjanet@example.com,(203)697-8335x3361,6552894812079783,2025-09-23 +City Hotel,1,393,2017,August,35,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,154.26,0,0,Check-Out,Mr. Lawrence Brooks,whenson@example.org,437-625-0002x7472,4469632414065351399,2025-05-06 +Resort Hotel,0,0,2017,March,13,27,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,243.0,179.0,0,Transient,40.73,1,1,Check-Out,Mark Hill,jonathon53@example.org,572.470.9487x71973,6550945443012072,2024-09-15 +City Hotel,1,194,2017,April,17,21,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,133.48,0,0,Canceled,Thomas Rodriguez,ifields@example.com,(955)864-4636x95412,2530284362782356,2025-01-03 +City Hotel,0,46,2017,February,8,23,2,2,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient,74.16,0,0,Check-Out,Paul Nguyen,lstein@example.org,348.251.1644,3581521345550814,2026-03-05 +Resort Hotel,0,53,2017,November,45,9,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,44.79,0,0,Check-Out,Jennifer Hernandez,jestrada@example.net,428.643.2540x124,4501970279524409,2024-09-17 +City Hotel,1,17,2017,April,17,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.18,0,0,No-Show,Edwin Gonzalez,ibarber@example.com,(942)840-2527x79876,3594908273645762,2025-03-19 +Resort Hotel,0,89,2017,December,49,6,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.96,1,1,Check-Out,David Armstrong,katiepeterson@example.org,647.669.0612x790,345471410138876,2025-08-27 +Resort Hotel,1,3,2017,August,32,7,0,2,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,11.0,179.0,0,Transient-Party,237.82,1,0,Canceled,Debbie Schmidt,christianjackson@example.org,001-409-545-8630x872,180051392679499,2026-03-21 +City Hotel,0,148,2017,March,13,26,2,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,2,No Deposit,18.0,179.0,0,Transient,108.56,0,0,Check-Out,Alex Barton,monica83@example.com,787.627.6893,675962405337,2026-03-03 +Resort Hotel,0,1,2017,December,52,25,2,1,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,A,2,No Deposit,314.0,179.0,0,Transient-Party,51.33,0,0,Check-Out,Richard Dawson,omoore@example.net,255.875.7758x764,30503988141997,2024-08-29 +Resort Hotel,0,1,2017,March,13,26,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,62.91,1,1,Check-Out,Scott Stein,jhenry@example.org,+1-688-299-2069x11129,30502588020916,2025-06-07 +City Hotel,0,53,2017,March,11,13,1,0,2,0.0,0,BB,PRT,Online TA,Corporate,1,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient,80.94,0,1,Check-Out,Stephen Lopez,kimberlychapman@example.org,499.319.8149,6540624542709416,2024-10-07 +City Hotel,0,105,2017,November,46,16,0,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,22.0,179.0,75,Transient,79.05,0,2,Check-Out,Joel Cook,hernandezmatthew@example.net,(924)782-5425x40867,180073359608170,2024-11-15 +City Hotel,1,154,2017,August,34,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,1,0,E,E,0,Non Refund,12.0,179.0,0,Transient,109.36,0,0,Canceled,Michele Scott,jacob39@example.net,(567)907-3931x49241,4766337268025142760,2024-07-16 +City Hotel,1,196,2017,June,26,26,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,111.27,0,0,Canceled,Allison Wilson,sharonmorgan@example.net,8996932495,4118550636225,2025-03-02 +City Hotel,0,136,2017,June,23,6,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.28,0,0,Check-Out,James Tucker,haydenmichael@example.org,713-573-1439,4968641346961736,2025-06-29 +City Hotel,0,34,2017,March,11,14,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,59.83,0,0,Check-Out,Joseph Durham,bobby79@example.com,364-767-2559x713,4992753193410,2026-03-15 +Resort Hotel,1,43,2017,December,48,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,46.81,0,2,Canceled,Alexis Kim,frankharding@example.org,930.260.7047,180052620505167,2025-05-17 +City Hotel,0,20,2017,August,34,23,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,185.82,0,1,Check-Out,Jonathan Yates,grantwilliam@example.org,336.505.2235x2567,378956815108524,2024-12-01 +Resort Hotel,0,55,2017,June,24,9,0,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,314.0,179.0,0,Transient,125.41,1,0,Check-Out,Katherine Andrews,brandon03@example.net,796-875-5267x929,578329548759,2026-03-26 +City Hotel,1,13,2017,December,2,31,1,1,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,82.28,0,2,Check-Out,Morgan Cunningham,garciavictoria@example.org,001-687-583-5457x0919,213170593555695,2024-09-28 +City Hotel,1,408,2017,September,39,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.97,0,0,Canceled,Phyllis Schmidt,hallandrew@example.com,001-492-661-9138x55515,060485363265,2026-03-05 +City Hotel,1,122,2017,June,27,30,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,101.21,0,0,Canceled,Sarah Miller,leetrevor@example.net,(483)986-7507x1897,3583500090452010,2024-09-25 +City Hotel,1,264,2017,October,42,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,106.47,0,0,Canceled,Lisa Kaiser,khensley@example.com,001-741-960-6608x6822,4388221216323197384,2025-10-19 +City Hotel,0,2,2017,March,11,16,0,2,1,0.0,0,BB,ESP,Corporate,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.05,0,1,Check-Out,Pamela Jordan,hayeskylie@example.net,8153346602,3522539633727037,2025-06-21 +City Hotel,0,16,2017,January,5,28,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,50.36,1,2,Check-Out,Jerry Gilmore,schaefercarrie@example.net,962-430-4680x179,30339538051703,2025-07-30 +Resort Hotel,0,1,2017,May,22,29,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,47.12,0,1,Check-Out,Marie Jones,mary69@example.com,+1-918-279-8028x68118,30417834219164,2024-10-17 +City Hotel,0,167,2017,September,37,14,1,2,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,109.77,0,1,Check-Out,Gina Rose,fowlerdaniel@example.org,586.835.6436x14860,4729707881147468,2024-12-30 +City Hotel,0,15,2017,August,32,9,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,152.74,0,1,Check-Out,Samantha Reynolds,christopherhines@example.com,542.900.7282,3509929765190566,2024-06-16 +City Hotel,1,41,2017,December,52,24,0,3,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,86.61,0,0,Canceled,Kenneth Smith,nelsonmercedes@example.org,961-489-8075,38066105828161,2024-10-31 +City Hotel,0,0,2017,December,49,8,0,1,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,20.0,331.0,0,Transient,4.76,0,0,Check-Out,Alicia Perez,snyderbarbara@example.org,340-945-3016x5673,6011876494482349,2025-04-08 +City Hotel,1,402,2017,May,21,22,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient-Party,108.97,0,0,Canceled,David Walker,brenda35@example.net,620.663.4463x6343,4769170676149144492,2024-12-14 +City Hotel,0,3,2017,February,9,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,15.0,68.0,0,Transient,61.06,0,0,Check-Out,Erin Ellis,briantucker@example.org,(443)991-7740,4931908468333448,2024-04-28 +City Hotel,1,77,2017,September,39,26,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.03,0,0,Canceled,Patricia Andrews,tylermelissa@example.net,248.416.6142x796,36520127491996,2025-09-20 +City Hotel,1,154,2017,July,27,4,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,140.03,0,0,Canceled,Spencer Camacho,cmoreno@example.com,(590)311-9703,676376249147,2024-07-14 +City Hotel,1,50,2017,August,31,2,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,1.0,179.0,0,Transient-Party,190.3,0,0,Canceled,Raymond Harris,kayla14@example.com,(904)551-8410x526,4007932381123,2026-01-07 +City Hotel,0,8,2017,August,32,9,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,1.58,0,1,Check-Out,Alexander Guzman,adamgarcia@example.org,454-860-4165x222,587854645880,2025-02-17 +City Hotel,1,39,2017,August,34,23,0,2,3,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,63.31,0,0,Canceled,Penny Fernandez,ytucker@example.com,001-908-794-9456x8235,3552165666456543,2024-10-22 +Resort Hotel,0,27,2017,August,32,7,0,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,132.66,0,3,Check-Out,Erin Stewart,taylorcharles@example.com,+1-285-429-1011x57801,676260023889,2024-07-21 +Resort Hotel,0,187,2017,July,29,17,1,2,2,2.0,0,BB,NLD,Online TA,Direct,0,0,0,C,C,2,No Deposit,244.0,179.0,0,Transient,217.81,1,2,Check-Out,Daniel Turner,john53@example.com,+1-542-495-0791,180016494338690,2024-11-15 +City Hotel,0,0,2017,January,3,17,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,45.77,0,0,Check-Out,Devin Mayer,faith23@example.com,+1-283-874-2854x98700,4648880603529566,2024-07-20 +City Hotel,0,87,2017,February,7,13,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,73.81,0,0,Check-Out,Henry Taylor,elizabeth75@example.com,(908)215-8109,4263175561337969,2025-03-21 +Resort Hotel,0,67,2017,October,41,10,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Contract,93.82,0,1,Check-Out,Jessica Flowers,catherine28@example.org,001-296-393-0008x3851,3524672775663492,2026-02-26 +City Hotel,0,11,2017,October,42,17,0,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,74.0,0,Transient,97.49,0,0,Check-Out,Jeremy Manning,tmcguire@example.org,4446489320,4627616638306207,2025-05-02 +City Hotel,1,258,2017,May,22,28,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,111.5,0,0,Canceled,Jamie Griffin,ashley48@example.com,+1-862-930-0383x147,2720591433536169,2024-09-11 +City Hotel,0,11,2017,January,2,13,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,76.29,0,1,Check-Out,Daniel James,nwilson@example.com,723.903.7862x46349,501883204189,2024-11-23 +City Hotel,0,7,2017,December,2,30,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.27,0,1,Check-Out,Anna Thompson,ymorris@example.net,001-929-740-5554x7043,2297916543001684,2026-03-21 +Resort Hotel,0,17,2017,March,10,4,1,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,329.0,179.0,0,Transient-Party,45.83,0,1,Check-Out,Misty Martinez,jonathan73@example.net,481-471-6830x75492,3575948026824697,2025-07-24 +Resort Hotel,1,137,2017,September,36,5,2,5,2,1.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,80.0,179.0,0,Transient,118.35,1,0,Canceled,Barbara Burns,deborahmiller@example.com,001-530-466-0958x3334,578683880277,2024-03-28 +Resort Hotel,0,45,2017,March,10,9,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.81,0,0,Check-Out,Nicole Stewart,maddoxstephanie@example.net,4419632250,3560296893745406,2025-08-30 +Resort Hotel,0,110,2017,January,2,3,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,242.0,179.0,0,Transient,84.93,1,1,Check-Out,William Marsh,kennethgray@example.net,+1-502-471-5136x6792,4643911927741712629,2024-12-03 +Resort Hotel,0,8,2017,February,6,8,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,64.32,0,2,Check-Out,David Rodriguez,jonesluke@example.org,(430)993-1667x57676,4545748063963,2025-10-27 +City Hotel,1,91,2017,February,9,25,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.77,0,1,Canceled,Adam Lara,imartinez@example.net,+1-575-298-3071x093,4288517618280802,2025-08-30 +Resort Hotel,0,28,2017,December,49,4,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,48.15,0,2,Check-Out,Scott Gomez,susanthomas@example.org,629-615-5566x764,3596681448723354,2025-12-20 +City Hotel,1,221,2017,July,30,25,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,91.39,0,0,Canceled,Sara Hamilton,rrodriguez@example.com,001-947-515-5522x7747,3509618463233717,2025-08-02 +City Hotel,0,259,2017,June,23,4,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,128.73,0,1,Check-Out,Elizabeth Key,nmadden@example.org,270.953.4397x445,4388400242931919,2025-05-17 +Resort Hotel,0,51,2017,November,46,18,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Contract,52.44,0,1,Check-Out,Mason Price,shahkimberly@example.org,(850)914-9261,6011920525993880,2024-08-29 +City Hotel,0,105,2017,August,34,21,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,140.08,0,1,Check-Out,Trevor Hill,michael01@example.com,560-848-2293,213147803011487,2024-04-24 +City Hotel,1,33,2017,October,42,16,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.47,0,0,Canceled,Erica Taylor,madelineglenn@example.org,5105419886,3554918344416661,2025-09-18 +Resort Hotel,0,1,2017,April,18,30,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,166.85,0,0,Check-Out,Justin Anderson,zflowers@example.com,001-501-831-7434x9415,4566533590665749,2024-03-30 +Resort Hotel,0,0,2017,August,32,10,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,251.0,179.0,0,Transient,221.33,0,0,Canceled,Michael Farmer,lambertdavid@example.com,812-827-7760x321,4783576286801294782,2025-06-02 +City Hotel,0,47,2017,November,46,15,2,5,2,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,D,A,0,No Deposit,13.0,228.0,0,Transient-Party,88.5,0,1,Check-Out,Robert Cline,ramirezrobin@example.net,(545)855-6161,3581798273427013,2025-10-18 +City Hotel,1,14,2017,August,32,3,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.49,0,0,Canceled,Jacqueline Perry,davidjackson@example.org,001-847-281-2262x44250,501884656403,2024-04-12 +City Hotel,1,231,2017,July,28,13,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,125.27,0,0,Canceled,Christopher Mayer,jacobsjoseph@example.org,380.881.6757,4333594547656423,2025-12-15 +City Hotel,0,11,2017,March,13,29,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,1,D,A,1,No Deposit,9.0,179.0,0,Transient,104.56,1,1,Check-Out,Natalie Patrick,david97@example.net,+1-753-861-4060x445,6011527869522660,2025-01-26 +Resort Hotel,1,285,2017,October,41,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,143.0,179.0,0,Transient,36.23,0,0,Canceled,Shawn Rodriguez,swells@example.org,+1-483-896-6163,3500916210064453,2025-10-28 +City Hotel,1,157,2017,July,31,31,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,108.87,0,1,Canceled,Jonathan Torres,owright@example.net,6903502380,4802022934516608790,2025-07-18 +City Hotel,0,92,2017,May,20,17,2,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient,140.91,0,0,Check-Out,Susan Baker,taraharris@example.com,(821)274-8182x4838,675913829247,2025-02-16 +City Hotel,0,2,2017,November,46,14,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,130.22,0,1,Check-Out,Richard Rivera,fbryan@example.org,(688)926-9884x118,3570030914971859,2024-11-07 +Resort Hotel,0,255,2017,July,30,22,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,125.46,0,0,Check-Out,Amanda Wiggins,uhill@example.net,825.380.8696,374031945597691,2025-01-11 +City Hotel,0,1,2017,January,2,6,1,0,1,0.0,0,BB,ESP,Corporate,Direct,0,0,0,A,A,0,No Deposit,10.0,331.0,0,Transient,106.16,0,2,Check-Out,Amber Bennett,alexander55@example.org,980.767.5418,30001580067868,2026-03-06 +Resort Hotel,0,4,2017,October,41,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient,4.05,0,0,Check-Out,Kelly Moore,xmccall@example.org,356-780-4239x738,370020849608922,2025-08-02 +City Hotel,0,55,2017,October,41,10,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,76.6,0,0,Check-Out,Steven Davis,ymcdonald@example.org,001-267-320-4692,376627912002850,2024-06-24 +City Hotel,0,159,2017,July,27,1,0,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,179.87,0,1,Check-Out,Ashley Alvarez DVM,sullivanemily@example.com,408-701-7904,213113685775136,2026-03-24 +Resort Hotel,0,11,2017,May,21,23,1,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,D,G,0,No Deposit,251.0,179.0,0,Transient,164.72,1,1,Check-Out,Kimberly Taylor,sarahramirez@example.com,(766)732-8054,4777058887416221,2025-07-04 +City Hotel,0,18,2017,May,20,16,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,165.0,0,Transient,144.41,0,1,Check-Out,Mallory Collins,murraykyle@example.com,216.602.9207x4533,4986580524965598,2025-08-20 +City Hotel,1,201,2017,June,23,4,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.78,0,0,Canceled,Steven Anderson,ggarrett@example.org,584-482-7494x73068,3539381282100781,2025-03-04 +City Hotel,0,11,2017,May,21,23,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.47,0,0,Check-Out,Holly Austin,kennedydonna@example.com,001-968-501-2658,2262986407110435,2025-11-23 +City Hotel,0,1,2017,October,40,4,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,134.25,1,0,Check-Out,Karen Goodman,tiffanyjimenez@example.com,001-812-409-5214x7621,4556232763547,2025-10-29 +Resort Hotel,0,88,2017,May,20,16,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,190.0,179.0,0,Transient-Party,73.07,0,0,Check-Out,Christina Robinson,adamscourtney@example.com,(432)982-2330x1744,580852499665,2025-05-18 +Resort Hotel,0,34,2017,August,32,5,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,238.0,179.0,0,Transient,150.87,0,2,Check-Out,Tom Perez,amanda37@example.org,392-370-2342x0219,4612034336249377207,2025-04-07 +City Hotel,1,162,2017,March,13,29,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,108.29,0,0,Canceled,Brandon Powell,jason03@example.com,+1-303-742-9583x235,4584647759682689,2025-09-02 +City Hotel,0,19,2017,February,8,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,81.35,0,1,Canceled,Ashley Perez,hlee@example.com,+1-925-776-1540x92656,3514475540847438,2024-06-12 +Resort Hotel,1,28,2017,July,29,14,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,52.15,0,2,No-Show,Matthew Murphy,lisa16@example.com,+1-812-589-7222x92999,630444235869,2025-02-22 +City Hotel,1,3,2017,November,46,12,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.49,0,0,No-Show,Mary Meyer,jeremiah21@example.net,(498)706-5165,4722219028972532173,2025-09-27 +City Hotel,0,93,2017,July,28,10,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,217.66,0,2,Check-Out,Sophia Wolf,stevebailey@example.com,9453933924,180049045551768,2024-05-01 +City Hotel,0,3,2017,September,39,28,0,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient,112.67,0,1,Check-Out,Javier Stanley,swalker@example.net,521-836-5314x94012,213101932459562,2024-11-22 +Resort Hotel,0,79,2017,May,18,2,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,130.26,1,1,Check-Out,Taylor Johnson,mstewart@example.net,525.946.6184x5245,213105799540794,2025-01-16 +Resort Hotel,0,102,2017,May,19,6,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,69.46,0,0,Check-Out,Janice Williams,mendozaanna@example.net,(942)322-8115,4752313915821,2024-05-05 +City Hotel,1,159,2017,August,32,5,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.19,0,0,Canceled,Christopher Thomas,mcphersonronald@example.com,(933)506-7565,373317338045302,2025-03-12 +City Hotel,0,20,2017,September,37,13,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.16,0,0,Check-Out,Robert Martin,vsmall@example.net,(649)927-7189x5968,4002232730579025234,2025-01-03 +City Hotel,0,129,2017,August,31,4,2,5,2,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,A,0,No Deposit,32.0,215.0,0,Transient-Party,92.14,0,0,Check-Out,Kenneth Webb,mjohnson@example.org,864-343-3712x6686,577887814330,2025-06-30 +Resort Hotel,0,23,2017,April,17,22,1,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient-Party,102.48,0,0,Check-Out,Mark Montoya,taylor54@example.org,001-912-814-3779,3589010695145104,2024-08-15 +City Hotel,1,397,2017,October,42,15,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,69.2,0,0,Canceled,Jodi Lewis,shawn61@example.net,(890)987-6353x7103,3550931552985289,2025-01-31 +City Hotel,0,194,2017,May,18,3,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,125.99,0,3,Check-Out,Kimberly Wilson,karla82@example.org,938-510-7047x0867,213158679013713,2026-03-22 +City Hotel,0,86,2017,December,49,4,2,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient-Party,57.87,0,2,Check-Out,Randy Bradshaw,devin82@example.org,677-329-0440x886,343114765237859,2024-04-29 +City Hotel,1,0,2017,August,32,8,0,1,2,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,18.0,331.0,0,Transient,2.21,0,0,Canceled,Steven Scott,brose@example.org,001-883-898-2718,3513101367855731,2025-08-20 +City Hotel,0,41,2017,November,46,12,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.48,0,2,Check-Out,Katherine Dunn,johnnguyen@example.org,+1-611-313-9198,4330550902685,2025-04-08 +City Hotel,0,1,2017,July,31,31,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,235.71,0,1,Check-Out,Mary Peterson,jessica21@example.org,+1-746-849-2604x488,213147697782847,2025-08-27 +City Hotel,1,38,2017,October,42,15,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,61.54,0,0,Canceled,Amy Diaz,jenniferbarnes@example.net,618.692.2393x43114,213143560817679,2025-10-31 +City Hotel,1,0,2017,November,47,21,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.89,0,0,No-Show,Traci Martinez,qsteele@example.com,(432)897-1337,4217980267763807,2025-05-26 +City Hotel,1,161,2017,July,31,30,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.27,0,2,Canceled,Jim Rodriguez,frankbradley@example.net,553-637-3011x9045,639027066997,2025-12-10 +City Hotel,1,0,2017,August,32,9,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,L,A,1,No Deposit,14.0,179.0,0,Transient-Party,106.28,0,0,Canceled,Elizabeth Marks,kwilliams@example.net,482.526.6109x201,6011234202208319,2025-07-11 +Resort Hotel,0,10,2017,January,4,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,247.0,179.0,0,Transient,110.94,0,2,Check-Out,Jeffrey Joyce,mistyharper@example.com,+1-689-285-3760x9867,4918200227188,2024-07-31 +Resort Hotel,0,135,2017,September,39,27,3,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,100.68,0,2,Check-Out,Sean Wagner,amy98@example.net,+1-397-343-1125x0463,180076987797943,2025-01-26 +City Hotel,0,76,2017,November,46,16,2,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,225.67,0,0,Check-Out,Todd Lutz,kevinallen@example.net,547.463.6514,4231341044240191,2025-01-31 +City Hotel,0,209,2017,August,34,17,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,170.1,0,0,Check-Out,Ryan Walker,hammondmichele@example.net,+1-644-779-8318x044,213164384414642,2025-11-18 +Resort Hotel,1,107,2017,July,27,1,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,72.0,179.0,0,Transient,131.35,0,0,Canceled,Nicholas Gomez,emily94@example.com,464-708-4353x446,586054270309,2025-08-25 +City Hotel,1,15,2017,October,42,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.44,0,0,Canceled,Brittany Heath,gonzalesbrittany@example.net,(294)348-5450,213195909181175,2025-05-04 +City Hotel,0,1,2017,August,34,21,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,214.01,0,1,Check-Out,Rebecca Cox,burnsmichael@example.com,226.255.8849x622,345198281066221,2024-10-22 +City Hotel,0,1,2017,November,47,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,B,1,No Deposit,16.0,202.0,0,Transient-Party,83.79,0,0,Check-Out,Travis Schmidt,ashley50@example.com,+1-310-212-1474x216,586246421349,2025-12-18 +Resort Hotel,1,130,2017,July,31,31,0,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,91.0,179.0,0,Transient,103.27,0,0,Canceled,Brett Martin,gabriellafranco@example.org,947-387-9935x3810,3558653116697935,2024-09-11 +City Hotel,1,406,2017,October,42,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,107.2,0,0,Canceled,Lisa Bridges,ryansmith@example.com,(725)896-9305x716,2286454441303104,2024-05-17 +City Hotel,1,48,2017,October,42,20,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.52,0,2,No-Show,Brittany Dunlap,michelleperez@example.com,001-518-899-7530,3550263268794148,2026-02-15 +City Hotel,0,90,2017,October,43,26,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,85.59,0,2,Check-Out,Shannon Ramirez,jamesmary@example.com,+1-621-549-8545x285,6011845645877608,2024-08-01 +City Hotel,1,18,2017,April,14,2,2,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.57,0,2,Canceled,Tiffany Phillips,xwright@example.org,001-587-729-1230x247,3531315606136202,2026-01-08 +Resort Hotel,0,149,2017,July,28,12,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,51.44,1,1,Check-Out,Valerie English,murphytimothy@example.org,(858)640-0692x378,4721058105596289111,2026-01-09 +City Hotel,1,267,2017,July,27,3,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.67,0,2,Canceled,Chad Hurley,amanda56@example.net,835-467-9644,4897386382715523,2024-06-10 +City Hotel,0,5,2017,March,12,20,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,81.33,0,1,Check-Out,David Peters,rnguyen@example.com,(681)251-0423,3595560842108217,2024-10-28 +Resort Hotel,0,98,2017,April,17,23,2,2,2,1.0,0,BB,IRL,Online TA,Direct,0,0,0,A,F,0,No Deposit,242.0,179.0,0,Transient,135.3,0,1,Check-Out,Thomas Austin,jason89@example.net,438-221-2465x2213,2720764728992732,2024-09-20 +City Hotel,1,243,2017,August,34,20,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,144.35,0,1,Canceled,Amy Jenkins,nparks@example.org,311-901-2966x8550,676350368293,2025-06-03 +City Hotel,0,255,2017,September,36,7,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.84,0,0,Check-Out,Rodney Duran,abuckley@example.com,+1-242-548-7595,561677081680,2025-10-15 +City Hotel,1,19,2017,August,35,30,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Canceled,Tiffany Sanchez,dortiz@example.net,8386847084,213154058924737,2026-01-30 +City Hotel,1,7,2017,December,49,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient-Party,63.05,0,0,Check-Out,Maria Myers,erin26@example.net,001-615-466-8460x6558,4071218814231928,2025-06-20 +City Hotel,0,10,2017,January,2,6,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,134.0,179.0,0,Transient,125.79,0,1,Check-Out,Ruben Jones,deckerkristin@example.com,8267058440,4724924841879622513,2024-10-05 +City Hotel,1,205,2017,July,31,31,3,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,143.54,0,2,Canceled,Desiree Stafford,brodriguez@example.com,(930)220-9429x0098,4577825903035970996,2025-10-13 +Resort Hotel,0,135,2017,July,28,10,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,250.75,0,1,Check-Out,Patrick Blackburn,adamadams@example.org,830.917.5752,2291914468963984,2025-11-06 +City Hotel,0,364,2017,June,23,4,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,103.25,0,0,Check-Out,Jeremy Chambers,harveychristian@example.com,794.993.6408x9343,348384980807738,2024-04-14 +City Hotel,0,15,2017,March,12,21,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,B,1,No Deposit,14.0,73.0,0,Transient,49.53,0,0,Check-Out,Alexandra Wilson,rossanna@example.com,+1-514-320-3700,3543460005731017,2025-03-08 +City Hotel,0,13,2017,May,22,30,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,247.27,0,1,Check-Out,Brian Fuller,wendy91@example.net,001-715-475-2491x14210,060489707038,2024-04-23 +City Hotel,0,8,2017,March,12,24,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,114.42,0,1,Check-Out,Matthew Evans,grimeskristin@example.org,911.391.1761,30192256758854,2024-08-01 +Resort Hotel,0,85,2017,March,14,30,0,6,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,114.31,1,0,Check-Out,Patrick Gibson,bakeranthony@example.net,+1-748-373-1023x4508,4250152613462769,2025-02-10 +City Hotel,0,18,2017,October,41,13,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,61,Transient-Party,91.12,0,1,Check-Out,William Lozano,edwardslaura@example.org,001-427-256-2452,4536925428374733,2025-03-15 +Resort Hotel,0,244,2017,March,12,20,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient-Party,57.36,1,0,Check-Out,Dillon Travis,mburns@example.net,+1-768-481-5846x31553,503892058671,2024-06-29 +City Hotel,0,87,2017,September,37,10,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,108.54,0,0,Check-Out,Steven Rodriguez,jessebarker@example.com,001-296-911-7515x051,4145243213989,2024-11-12 +City Hotel,0,353,2017,October,40,7,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,63,Transient-Party,90.76,0,0,Check-Out,Kevin Walter,combskelly@example.net,001-267-543-9331x83588,4420278232717336,2025-01-24 +City Hotel,0,7,2017,August,31,5,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Contract,88.07,0,2,Check-Out,Rebecca Blake,luisjefferson@example.org,(222)209-5209,30027746989877,2024-11-20 +Resort Hotel,0,44,2017,April,17,23,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,115.59,0,3,Check-Out,Brian Bright,thomaswilliams@example.com,235.461.7140x454,348230475658823,2025-05-08 +City Hotel,0,13,2017,March,12,21,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,102.63,0,0,Check-Out,Linda Cox,yatesbrenda@example.org,555.242.8452x37002,4014147904721366643,2025-07-07 +Resort Hotel,1,15,2017,January,4,23,0,2,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,Non Refund,147.0,179.0,0,Transient,151.32,0,0,Canceled,Mary Copeland,ipeterson@example.com,+1-840-544-2895x499,4660023340217558,2025-07-10 +Resort Hotel,1,31,2017,June,26,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,144.0,179.0,18,Transient-Party,46.92,0,0,Canceled,Jennifer Little,zsimmons@example.net,469.858.2838x244,4661107582120965,2024-04-13 +Resort Hotel,0,11,2017,June,23,3,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,143.9,0,2,Check-Out,Diana Ramsey,qbailey@example.org,7314566614,373569705388646,2025-01-07 +City Hotel,1,101,2017,July,31,31,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,112.6,0,1,No-Show,David Romero,cadams@example.net,243.202.7462x6509,4336947574011390,2024-11-19 +City Hotel,1,96,2017,December,49,5,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.18,0,0,Canceled,Russell Bird,ymorse@example.net,+1-468-397-3754,3502316497179595,2024-12-08 +City Hotel,1,50,2017,March,10,5,2,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.06,0,2,Canceled,Brian Shaffer,igross@example.com,482.983.2173,180014893457815,2024-07-29 +Resort Hotel,0,98,2017,May,18,5,3,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,I,0,No Deposit,245.0,179.0,0,Transient,132.82,0,2,Check-Out,Jon Garza,david71@example.net,957.640.5336x2876,2258293623331705,2024-07-08 +Resort Hotel,1,13,2017,June,26,24,2,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,326.0,179.0,0,Transient,220.66,0,0,Canceled,Ashley Norman,perryjoseph@example.net,569-915-4865x744,6519020925691726,2025-11-30 +City Hotel,0,10,2017,September,36,5,2,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.2,0,1,Check-Out,Kristina Monroe,ashley26@example.org,738-740-7311x62535,3531113678356547,2024-05-04 +Resort Hotel,0,49,2017,November,45,8,0,3,2,0.0,0,FB,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,181.0,179.0,0,Transient-Party,43.38,0,0,Check-Out,Joseph Schaefer,heather45@example.net,4548920676,4488252503352098,2024-10-29 +Resort Hotel,0,48,2017,November,45,6,2,4,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,G,1,No Deposit,12.0,179.0,0,Transient,48.53,1,1,Check-Out,Kyle Garza,nguyenjason@example.com,989-878-0522x0096,213120712312999,2025-04-22 +City Hotel,1,131,2017,August,31,4,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,1,0,E,E,0,No Deposit,13.0,179.0,0,Transient,64.26,0,0,Canceled,Tiffany Johnston,kristen49@example.net,539.356.3990x50202,3512185819654231,2025-02-05 +City Hotel,0,4,2017,February,8,20,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.4,0,0,Check-Out,Phillip Ward,hillcrystal@example.net,654-593-4514,4861309459460,2025-03-17 +City Hotel,0,157,2017,March,11,15,0,2,1,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,137.46,0,1,Check-Out,Stephanie Fisher,farmerjennifer@example.org,(992)966-5246,561065089600,2025-04-26 +City Hotel,1,164,2017,June,23,2,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.76,0,1,Canceled,Patrick Reed,millerandrea@example.net,(729)583-7476x8428,372124673950414,2024-07-04 +City Hotel,0,42,2017,October,42,19,0,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,63,Transient-Party,61.35,0,0,Check-Out,Sarah Berry,kolsen@example.com,917-977-2732,630431619778,2024-07-17 +Resort Hotel,0,15,2017,March,13,24,1,7,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,88.05,0,1,Check-Out,Teresa Li,bellchristina@example.com,(746)613-9954x598,568842892461,2025-08-07 +Resort Hotel,1,146,2017,May,19,10,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,50.44,0,0,Canceled,Paula Caldwell,fdavis@example.org,215-512-4029x54997,2707850031661051,2024-06-07 +Resort Hotel,0,29,2017,August,34,23,0,3,2,2.0,0,HB,ESP,Online TA,Direct,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,252.0,1,0,Check-Out,Keith Johnson,mollybryan@example.com,819-980-8614,180097401544877,2025-05-12 +City Hotel,0,18,2017,August,34,19,1,1,2,0.0,0,BB,PRT,Aviation,Direct,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Contract,136.27,0,1,Check-Out,Annette Knapp,xschmitt@example.net,661.635.2964x48356,6521752522694762,2025-08-07 +City Hotel,0,16,2017,November,46,17,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.22,0,0,Check-Out,Monica Atkinson,banksjames@example.com,001-214-352-5783x28149,348776948057431,2026-03-05 +Resort Hotel,0,0,2017,December,49,3,1,2,2,0.0,0,HB,PRT,Complementary,Direct,0,0,0,F,D,2,No Deposit,29.0,179.0,0,Transient,53.16,0,1,Check-Out,Robert Cooper,leejoseph@example.net,(812)671-0846x743,3529169104128094,2025-11-18 +City Hotel,0,2,2017,October,40,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,42.0,331.0,0,Transient-Party,48.82,0,0,Check-Out,Danielle Griffin,janicehampton@example.org,+1-533-510-9686x3405,2718406763107693,2024-10-21 +Resort Hotel,1,9,2017,February,7,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,48.82,0,0,Canceled,Jimmy Ritter,margaret97@example.org,831.858.4984,6011533270830239,2024-08-13 +City Hotel,0,1,2017,March,10,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,0.74,0,0,Check-Out,Riley Clark,sbell@example.net,+1-538-500-5830x7158,4886947644989520,2025-08-11 +Resort Hotel,0,1,2017,November,45,9,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,245.0,69.0,0,Transient,44.68,0,0,Check-Out,Kimberly Morris,tbarnes@example.org,(461)813-6328x80891,180092908871105,2025-11-05 +City Hotel,0,101,2017,July,28,15,0,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,120.65,0,0,Check-Out,Gregory Ochoa,fryamanda@example.com,001-564-580-7923x341,4926739097741,2024-12-17 +City Hotel,0,18,2017,June,26,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,122.84,0,0,Check-Out,Shannon Cook,jessica60@example.com,(825)508-6456,3556125286726150,2025-07-27 +Resort Hotel,1,271,2017,October,40,6,0,1,2,0.0,0,BB,,Online TA,Corporate,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,79.12,0,0,Canceled,Natalie Huff,kathleensilva@example.net,(590)589-9549,213180947536895,2024-06-15 +Resort Hotel,1,19,2017,November,46,13,1,6,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Refundable,243.0,179.0,0,Transient,47.03,0,0,Canceled,Ronald Garcia,brandon47@example.net,871-927-5077,3590675567829758,2025-07-07 +Resort Hotel,0,347,2017,June,23,3,0,4,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,E,A,2,No Deposit,243.0,179.0,0,Transient,114.82,0,1,Check-Out,Margaret Edwards,melissacox@example.net,947.391.2230x469,2283329380036548,2025-09-11 +City Hotel,0,8,2017,August,32,5,1,3,2,2.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,154.13,0,2,Check-Out,Cody Reyes III,igarcia@example.net,(909)821-8921,3538921151884154,2024-10-19 +City Hotel,1,328,2017,August,35,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,126.69,0,0,Canceled,Heather Shaffer,katherineevans@example.net,469-262-4558x03655,213177374748688,2025-06-02 +City Hotel,0,0,2017,January,4,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,74.51,0,2,Check-Out,Nicole Chung,angelasantiago@example.net,336-707-3215x659,6011757528790172,2024-10-29 +City Hotel,0,213,2017,August,32,10,0,1,1,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,131.04,0,1,Check-Out,Brian Perkins,scottjuarez@example.org,2392046207,4919730736695564,2025-12-11 +City Hotel,0,157,2017,September,36,8,3,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,163.0,179.0,0,Group,150.48,0,0,Check-Out,Melody Castro,zcollins@example.org,(747)336-1189,4617352673839449043,2024-04-12 +Resort Hotel,0,13,2017,October,40,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient-Party,49.77,0,0,Check-Out,Kimberly Sanders,sjohnson@example.net,841-324-6279x4243,6011115617774146,2024-08-31 +Resort Hotel,0,37,2017,April,15,9,1,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,249.0,179.0,0,Transient,54.61,1,1,Check-Out,Christina Davis,brewerelizabeth@example.com,536.312.0792x5903,3557750032003197,2024-12-04 +City Hotel,0,0,2017,January,2,6,1,1,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.0,0,1,Check-Out,Sherri Sullivan,stephaniepatrick@example.com,+1-592-862-5952x8281,4220115281339392,2024-11-13 +City Hotel,0,104,2017,April,16,15,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,19.0,179.0,0,Transient,117.23,0,0,Check-Out,Mike Patel,dawn79@example.com,(509)901-9939,3553919106530427,2024-07-18 +City Hotel,1,8,2017,January,3,15,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.3,0,1,No-Show,Thomas Garcia,natashathomas@example.org,9163507216,3562547124190368,2024-12-29 +City Hotel,1,141,2017,May,20,14,1,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,134.16,0,1,Canceled,Robin Clay,brandon09@example.net,(601)684-9296,2720936951363019,2026-01-24 +City Hotel,0,1,2017,March,13,26,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,K,0,No Deposit,18.0,179.0,0,Transient,6.4,0,0,Check-Out,Kelly Miller,elizabeth65@example.net,+1-340-939-1735,379851510082331,2025-01-16 +Resort Hotel,0,166,2017,July,27,4,1,5,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,241.0,179.0,0,Transient,244.48,1,2,Check-Out,Mrs. Amanda Kelley DDS,fgarner@example.com,906-204-4723,180024619911086,2026-02-07 +City Hotel,1,38,2017,January,2,3,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,225.77,0,2,Canceled,Johnny Whitaker,kristen54@example.net,001-368-956-8291,180084300912330,2025-03-23 +City Hotel,1,65,2017,April,17,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,1,No Deposit,12.0,179.0,0,Transient,134.65,0,0,Canceled,Mrs. Courtney Wong,glennlewis@example.com,593-910-8674x918,3596428407129169,2025-09-28 +Resort Hotel,0,47,2017,November,47,23,0,5,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,247.72,1,0,Check-Out,Adam Sanchez,butlerkatie@example.net,983-450-3070,2291213464567471,2024-07-16 +Resort Hotel,1,36,2017,May,21,24,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,85.88,0,2,Canceled,Logan Massey,james47@example.org,3522067261,373959648936926,2024-05-30 +City Hotel,0,1,2017,February,8,18,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,2,No Deposit,172.0,59.0,0,Group,1.71,0,1,Check-Out,Juan Carroll,qriley@example.org,+1-482-861-8751x61800,38402665511139,2025-03-29 +City Hotel,0,16,2017,October,43,26,2,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.39,0,2,Check-Out,Ryan Carpenter,sarahhancock@example.org,687-375-0282x2967,342671567303024,2025-04-14 +City Hotel,0,63,2017,August,32,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.3,0,2,Check-Out,Stacy Werner,ashley61@example.net,656-606-9587x476,3529605725508685,2025-01-28 +City Hotel,1,16,2017,June,25,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,83.0,0,Transient,106.95,0,0,Canceled,Michelle Holden,gsims@example.net,3768127397,4511842114172868,2024-06-20 +Resort Hotel,0,0,2017,December,49,3,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,58.53,1,0,Check-Out,Deborah Wood,lisa81@example.net,(409)694-9890x68916,4553406461889304158,2025-09-23 +Resort Hotel,0,18,2017,July,29,16,1,3,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,203.37,1,3,Check-Out,Taylor Flores,ryanmunoz@example.net,699.520.1024x68308,6512672264236468,2025-10-05 +Resort Hotel,1,185,2017,May,19,9,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,82.82,0,0,Canceled,Tyler Taylor,mcleanbrittany@example.org,308.393.4399x97840,676164801711,2025-01-25 +Resort Hotel,0,64,2017,May,22,25,0,10,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,251.0,179.0,0,Transient,135.97,0,1,Check-Out,Victoria Wright,nathanparker@example.org,941-751-1649x6656,4781330368121893716,2026-01-09 +Resort Hotel,0,0,2017,August,31,4,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,249.0,179.0,0,Transient,105.04,0,0,Check-Out,Betty Pollard,ronald30@example.org,001-871-976-6152,4046316326155,2025-10-24 +City Hotel,0,17,2017,February,7,13,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.12,0,0,Check-Out,Katie Alvarez,matthew40@example.net,(499)223-8612x4390,4119569795381817313,2025-11-13 +City Hotel,1,152,2017,July,29,18,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,104.59,0,2,Canceled,Robert Munoz,james89@example.com,+1-530-864-0511,2713696652077594,2025-08-29 +City Hotel,0,10,2017,March,12,19,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,84.16,0,0,Check-Out,Michelle Newman,daniellegraham@example.com,292.685.7707,6518583193304554,2024-09-24 +City Hotel,1,0,2017,November,45,5,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.23,0,0,Canceled,Victoria Marshall,fmckinney@example.net,+1-860-320-5361x2646,4383215738648,2024-06-17 +Resort Hotel,1,173,2017,July,29,19,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,252.0,0,2,Canceled,Amy Montgomery,cookgina@example.org,+1-548-843-3504x84636,4008897235353161737,2025-12-04 +City Hotel,0,15,2017,January,4,20,1,4,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,62.0,0,Transient-Party,118.89,0,0,Check-Out,Jeffrey Benton Jr.,wwilson@example.net,(838)335-6680x04101,4041976492067800,2024-09-04 +City Hotel,0,3,2017,February,9,27,0,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,169.68,0,1,Check-Out,Kristin Brown,kimmichael@example.net,747-403-1316x66409,3594766914461464,2024-08-28 +City Hotel,0,20,2017,October,43,24,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,102.76,0,0,Check-Out,Sean Hernandez,ruizjeffrey@example.net,(493)511-1845,3513271643810923,2026-02-20 +Resort Hotel,1,269,2017,September,36,3,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,263.0,179.0,0,Transient,135.15,0,0,Canceled,Ana Higgins,suarezdonna@example.net,+1-833-632-7492,503816400587,2024-08-02 +City Hotel,0,14,2017,March,12,22,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.24,0,0,Check-Out,Theresa Luna,kschmidt@example.com,561-775-5487,30521084461556,2026-01-01 +City Hotel,0,15,2017,March,13,26,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient,90.46,0,2,Check-Out,Katherine Padilla,jennifercollins@example.org,329-575-8373x389,377148222191761,2025-11-03 +Resort Hotel,0,36,2017,December,51,18,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,87.32,0,0,Check-Out,Victoria Lewis,melliott@example.com,(779)319-3214,4368118588924488,2025-03-03 +City Hotel,1,107,2017,June,24,11,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,273.0,179.0,0,Transient,99.02,0,0,Canceled,Joshua Leonard,jimenezsteven@example.org,001-784-987-0566x595,345255895192171,2024-10-08 +City Hotel,0,17,2017,January,2,6,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,75.91,0,0,Check-Out,Kelly Liu,douglasdonovan@example.org,001-481-781-9824x9107,3503189865878711,2024-07-06 +Resort Hotel,0,18,2017,August,32,4,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,167.35,1,1,Check-Out,Brianna Ryan,ythomas@example.net,815.261.2917,4080964893976,2024-11-06 +City Hotel,1,126,2017,July,28,11,0,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.05,0,2,Canceled,Emily Smith,harrispamela@example.net,9613913236,38829639601911,2026-01-03 +Resort Hotel,0,4,2017,April,16,13,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,82.05,0,2,Check-Out,Michelle Howard,smithkathryn@example.net,+1-848-416-7462x346,180016930521214,2025-10-04 +Resort Hotel,1,159,2017,July,27,1,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient-Party,119.46,0,0,Canceled,William Austin,cathy40@example.net,(815)823-9363,3526280529418797,2024-12-10 +Resort Hotel,1,147,2017,July,27,1,1,4,2,2.0,0,HB,CN,Direct,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,242.13,1,0,Canceled,Monica Oconnor,wking@example.org,541-541-7484,4547327800880,2024-05-13 +City Hotel,0,39,2017,May,20,13,0,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,108.64,0,1,Check-Out,Kyle Blake,jamesgutierrez@example.org,240.385.0603x854,3526566258836484,2025-04-08 +City Hotel,0,18,2017,May,18,2,0,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.85,1,2,Check-Out,Christopher Banks,stephen73@example.com,256-685-0192x09854,3532572956792278,2025-05-13 +City Hotel,0,85,2017,March,10,4,1,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,95.88,0,1,Check-Out,Bryan Davis DVM,daniel40@example.org,2785532143,3544686451076916,2024-05-18 +Resort Hotel,0,0,2017,February,7,12,2,0,1,0.0,0,HB,PRT,Corporate,Corporate,1,0,0,A,I,1,No Deposit,12.0,224.0,0,Transient,1.37,0,0,Check-Out,Tiffany Hughes,paulbailey@example.org,783.605.0241,3557724233221023,2024-09-02 +City Hotel,0,100,2017,March,10,10,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,8.0,179.0,0,Transient,104.77,0,1,Check-Out,Michael Taylor,weberyvette@example.com,(507)610-6651x80821,38652298382445,2026-01-23 +City Hotel,0,13,2017,October,41,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,135.29,0,0,Check-Out,Brendan Kelly,umiller@example.net,001-622-721-8936,3578770731671701,2026-02-06 +City Hotel,0,37,2017,November,47,23,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.64,0,1,Check-Out,Sherry Porter,hernandezwilliam@example.org,+1-893-884-4713x337,4446874643749550001,2024-07-25 +Resort Hotel,1,84,2017,October,43,27,1,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,62.57,0,0,Canceled,James Perez,james72@example.org,426.325.5477,2297558782941392,2025-03-12 +Resort Hotel,0,180,2017,June,23,5,1,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,61.65,0,0,Check-Out,Miss Gina Walton,dixoncrystal@example.net,+1-808-676-1829x5680,6011617784364221,2025-08-03 +City Hotel,1,89,2017,September,38,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,48.72,0,0,Canceled,Alicia Obrien,petersheather@example.org,(457)466-2914x164,3572982195029245,2025-11-25 +City Hotel,1,251,2017,July,26,1,1,1,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,198.62,0,0,Canceled,Mrs. Jacqueline Jackson,pedwards@example.org,+1-750-307-2272x511,4772087397758231,2025-08-29 +City Hotel,1,323,2017,June,25,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,103.13,0,0,Canceled,Kendra Smith,rmartin@example.org,(536)847-7313x513,2299511940121983,2025-09-28 +City Hotel,0,2,2017,October,41,11,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,2.46,0,1,Check-Out,Alexander Stein,vincent68@example.org,7798225246,4136733577106359655,2025-02-08 +City Hotel,1,12,2017,September,38,17,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.3,0,0,Canceled,Shannon Sosa,briancampbell@example.org,001-429-275-8054,4588522092640493652,2025-01-30 +Resort Hotel,1,1,2017,May,21,18,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,0.5099000000000001,1,1,Canceled,Marc White,tammycarlson@example.org,001-598-710-8585x3117,6011094271659648,2025-07-18 +Resort Hotel,0,11,2017,December,52,25,2,0,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,206.0,331.0,0,Transient-Party,44.55,0,0,Check-Out,Gregory Wiggins,billy69@example.net,503-255-5913x69913,213177348584045,2024-08-04 +City Hotel,0,46,2017,August,35,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,7.0,179.0,0,Transient,122.26,0,0,Check-Out,Linda Berry,gregorymclean@example.com,754.656.5699,3576356170852986,2026-01-29 +City Hotel,1,102,2017,October,41,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,122.12,0,0,Canceled,Michelle Hobbs,michael68@example.net,530-897-6511x305,4133689581280742,2024-05-31 +City Hotel,0,18,2017,July,30,24,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,75.78,1,1,Check-Out,Charles Fuentes,fwilkerson@example.com,+1-423-318-1956x817,2232484025219611,2025-09-15 +Resort Hotel,1,344,2017,June,24,12,1,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient-Party,84.56,0,0,Canceled,Andrew Medina,flynn@example.org,670-268-9812x0546,3508888298054486,2025-03-28 +City Hotel,1,148,2017,June,25,17,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,156.36,0,0,Canceled,Teresa Aguirre,julia11@example.com,001-622-610-0607,4592469695961907,2025-01-17 +City Hotel,1,34,2017,March,10,4,1,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.47,0,1,Canceled,Eddie Bailey,barnesrobert@example.com,001-206-712-5250x535,4974629108649930,2024-11-09 +Resort Hotel,0,15,2017,January,2,3,0,3,2,0.0,0,BB,GBR,Online TA,GDS,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,94.65,0,1,Check-Out,Joseph Mccullough,james21@example.net,+1-533-525-6001x32898,6599927820614590,2025-02-12 +City Hotel,0,34,2017,April,18,27,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,119.43,0,1,Check-Out,Mr. Zachary Mora DVM,bradforddaniel@example.org,(933)826-7485x77359,4605847365427264466,2025-09-23 +City Hotel,0,252,2017,July,27,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,64.55,0,2,Check-Out,Kimberly Price,marie48@example.net,+1-955-441-6610x364,6011486161450965,2025-06-09 +City Hotel,0,0,2017,October,41,13,1,0,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Bruce Spencer,coleamanda@example.net,884-794-6046,3543793515320420,2025-05-19 +Resort Hotel,0,1,2017,August,32,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,13.0,179.0,0,Transient,120.96,0,2,Check-Out,Jacob Allen,porterlaura@example.com,319.569.3284x598,30019939897876,2025-07-14 +Resort Hotel,1,178,2017,July,27,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,237.0,179.0,0,Transient,228.0,0,2,Canceled,Chelsea Powell,andrewhoffman@example.org,601-465-5562x8493,3570716206894680,2025-01-05 +Resort Hotel,0,18,2017,December,48,1,1,4,2,0.0,0,Undefined,,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,133.74,0,2,Check-Out,Thomas Morse,sarahthompson@example.net,(654)294-5329x4187,180051104104489,2025-09-18 +Resort Hotel,0,13,2017,November,44,4,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.21,0,1,Check-Out,Susan Zimmerman,davidkrueger@example.org,453-840-9130x8801,676143602040,2025-09-16 +City Hotel,1,176,2017,July,29,19,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,No Deposit,1.0,179.0,0,Transient-Party,111.47,0,2,Canceled,Annette Meyer,davidzhang@example.org,(322)846-4485,6011416209840901,2025-07-07 +Resort Hotel,0,52,2017,January,2,5,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,59.09,1,1,Check-Out,Erica Rose,josephbryan@example.com,001-880-354-2474x972,213112251985236,2025-06-03 +Resort Hotel,0,13,2017,January,2,4,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,0,No Deposit,246.0,179.0,0,Transient,42.36,0,2,Check-Out,Kim Long,ellisjane@example.org,001-461-687-5407x334,3538106202597233,2024-08-09 +City Hotel,0,162,2017,August,31,1,0,2,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,Christina Flores,davidroy@example.com,+1-616-701-4460,060477983872,2025-11-15 +City Hotel,0,60,2017,August,32,8,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,207.76,0,1,Check-Out,Craig Raymond,cbarajas@example.com,960-353-8098x28695,4407320702783,2026-02-13 +Resort Hotel,1,347,2017,July,27,8,1,0,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,320.0,179.0,0,Transient,85.71,0,0,Canceled,Jeffrey Miller,robertsonbrad@example.com,930-996-1168,349582021282832,2025-09-05 +City Hotel,0,3,2017,March,11,12,0,1,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.84,0,1,Check-Out,Brian Hoffman,wheelerspencer@example.com,(573)768-5965x55171,2266441703484114,2025-07-30 +Resort Hotel,0,34,2017,August,34,23,3,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,239.0,179.0,0,Transient,252.0,0,2,Check-Out,Elizabeth Gay,davidrobinson@example.org,001-762-742-1322x1713,6538283438185969,2025-10-17 +Resort Hotel,0,1,2017,May,21,24,0,6,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,214.3,0,0,Check-Out,Patricia Hale,hwinters@example.com,715-443-4011x17622,4813428780631,2025-11-26 +Resort Hotel,0,0,2017,February,6,9,1,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,43.0,236.0,0,Transient,91.92,0,0,Check-Out,Amanda Arroyo,njohnson@example.com,001-585-541-9648x017,3553884167935560,2025-11-14 +Resort Hotel,0,8,2017,August,34,19,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Check-Out,Kevin Mccullough,kimberly57@example.net,863-893-2018x0096,3561587902266213,2025-04-25 +Resort Hotel,1,150,2017,June,26,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,143.83,1,0,Canceled,Margaret Stevenson,bbeck@example.net,968.848.5035,676297455120,2025-03-01 +City Hotel,0,31,2017,July,27,5,0,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.29,0,2,Check-Out,Amber Turner,davidcampbell@example.net,452-916-4205,4784217988189233,2024-09-22 +City Hotel,0,59,2017,August,34,26,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,161.36,0,0,Check-Out,Victor Williams,emilymarquez@example.org,851-775-2005,372487018838770,2024-09-11 +Resort Hotel,0,10,2017,June,24,11,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,146.24,0,2,Check-Out,Shelly Rodgers,jacobsimon@example.net,001-629-710-3066x2983,6011241056521911,2024-12-16 +Resort Hotel,0,165,2017,March,14,30,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,224.0,0,Transient-Party,31.33,0,0,Check-Out,Cassandra Wood,kaitlyn80@example.org,961-638-5311x891,180032511365848,2025-03-22 +City Hotel,0,197,2017,September,38,17,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.52,0,1,Check-Out,Susan Garcia,gomezrose@example.com,607-456-8913x680,3522578360265332,2026-02-07 +City Hotel,1,50,2017,January,3,14,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,15.0,75.0,0,Transient,85.46,0,0,Canceled,Stephanie Joseph,ywilson@example.net,001-472-941-2508x4275,2544304126387047,2025-09-09 +Resort Hotel,0,8,2017,March,13,24,1,0,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,195.0,0,Transient,39.09,0,0,Check-Out,Dalton Clark,iclark@example.net,+1-728-385-7228x82974,3590770257755684,2024-11-17 +City Hotel,1,105,2017,May,20,12,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,B,0,No Deposit,15.0,179.0,0,Transient,128.96,0,0,Canceled,Alexis Weeks,russell80@example.org,001-660-992-6177x090,4078942910728205,2024-09-15 +City Hotel,0,56,2017,September,38,19,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,No Deposit,3.0,179.0,0,Transient-Party,84.65,0,0,Check-Out,Michael Glass,rileymelissa@example.net,001-356-922-7203x1890,4402181355861679,2024-09-21 +City Hotel,1,341,2017,October,41,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,18,Transient-Party,97.0,0,0,Canceled,David Cervantes,qrowe@example.net,525-700-1762,3570595082589451,2025-03-01 +Resort Hotel,0,136,2017,August,33,13,2,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,1,C,C,0,No Deposit,16.0,179.0,0,Transient,252.0,1,1,Check-Out,Victoria Benitez,christinelevine@example.com,001-838-962-6273,3502854016062512,2024-12-06 +City Hotel,0,9,2017,February,6,8,1,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient,71.85,0,0,Check-Out,Jacqueline Monroe,blackwelltravis@example.org,(201)961-7460x886,4463196422048,2024-11-27 +City Hotel,1,34,2017,July,31,31,0,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.42,0,0,Canceled,Charles Sanchez,mschultz@example.org,575-918-9540,4877825326065382,2024-05-09 +City Hotel,0,38,2017,October,43,21,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,1,1,0,D,D,0,No Deposit,11.0,179.0,0,Contract,64.77,0,1,Check-Out,Sonia Henderson,robert59@example.com,001-850-852-7487,213153474156056,2026-01-18 +City Hotel,0,167,2017,March,10,6,2,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,106.48,0,2,Check-Out,Sharon Sims,davidcantu@example.com,903-265-6586x89296,4173191583689435,2025-11-04 +City Hotel,1,9,2017,September,36,3,2,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,1,0,F,F,0,No Deposit,11.0,179.0,0,Transient-Party,203.9,0,0,Canceled,Shawn Doyle,carpenterclinton@example.com,592.226.4740,4545856391968657,2025-07-21 +City Hotel,0,348,2017,September,39,30,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.78,0,0,Check-Out,Michael Perry,ernest88@example.com,449-481-1091,30336366741009,2025-12-06 +Resort Hotel,0,20,2017,January,4,24,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,47.27,0,1,Check-Out,Donald Santana,margaret31@example.net,+1-722-254-9927x8888,4520969610778521540,2026-03-01 +Resort Hotel,1,112,2017,April,17,22,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient-Party,86.26,0,0,Canceled,Katherine Greene,msmith@example.com,(905)220-1404x18487,30004919980165,2024-10-17 +City Hotel,0,137,2017,April,17,21,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.33,0,1,Check-Out,Jennifer Dominguez,weberjacob@example.org,(214)730-7199,2702826668761617,2025-10-15 +Resort Hotel,1,187,2017,July,30,26,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,225.34,0,2,Canceled,Matthew Walker,zford@example.net,705-853-8883x9625,3505443350274292,2025-09-04 +Resort Hotel,1,27,2017,June,24,17,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,79.91,0,1,Canceled,Ashley Barrera,caitlinwagner@example.com,(549)863-4406x75736,4267554308760624,2025-01-04 +City Hotel,1,23,2017,November,45,9,2,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,16,Transient,88.04,0,0,Canceled,Clifford Murphy DVM,howemichael@example.net,001-767-685-4295x43663,30585391826165,2025-10-29 +Resort Hotel,0,43,2017,January,2,4,2,0,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,C,0,No Deposit,14.0,179.0,0,Transient,57.62,0,0,Check-Out,Michael Arias,peggybenson@example.org,(979)615-1201x07866,213131613766324,2024-07-11 +Resort Hotel,0,14,2017,May,21,23,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,336.0,331.0,0,Transient,41.07,0,0,Check-Out,Joshua Mitchell,rachel58@example.org,(696)626-5994x49006,6011162204498341,2025-02-26 +Resort Hotel,0,33,2017,October,41,9,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,124.93,1,0,Check-Out,Ashley Wilson,jenniferstevens@example.net,866.533.3704x0046,4316781335960494,2026-01-29 +Resort Hotel,0,6,2017,December,49,4,0,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,47.03,0,1,Check-Out,Stacey Clements,william39@example.com,271.307.9162x92691,6527281732670739,2024-12-03 +Resort Hotel,0,33,2017,August,32,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,245.0,179.0,0,Transient,136.56,0,1,Check-Out,Kathleen Martinez,michaelblake@example.net,333-789-7518x595,3584241226689972,2024-11-05 +City Hotel,0,97,2017,November,44,3,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,64,Transient-Party,77.66,0,0,Check-Out,Julie Rodriguez MD,fkim@example.com,(900)285-4741,213199498587941,2025-11-27 +Resort Hotel,0,0,2017,October,44,28,0,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,18.0,179.0,0,Transient,141.18,1,0,Check-Out,Cathy Farmer,amyschmitt@example.com,249.405.6593x152,4918955413985043,2024-07-17 +Resort Hotel,0,27,2017,April,17,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,167.0,179.0,0,Transient,76.34,1,2,Check-Out,Dana Gilbert,rebecca89@example.com,+1-203-477-3877x043,3523162537728008,2025-05-25 +Resort Hotel,0,151,2017,March,13,27,0,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,186.0,179.0,0,Transient,85.85,0,1,Check-Out,Charles Harper,jerry45@example.org,001-700-264-5275,4074308566196042428,2025-04-27 +City Hotel,1,162,2017,August,32,6,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,0,No Deposit,15.0,179.0,0,Transient,218.27,0,1,No-Show,Timothy Wang,michael38@example.net,(375)400-8794x271,4492275811023683,2025-06-22 +Resort Hotel,0,0,2017,September,38,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,251.0,179.0,0,Transient,1.98,0,1,Check-Out,Daniel Stewart,gary46@example.org,256-897-2806,5165926998692798,2025-07-01 +City Hotel,0,282,2017,August,33,15,2,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,241.0,179.0,0,Transient-Party,131.05,0,1,Check-Out,Tiffany Peterson,hardinchristopher@example.net,2443335384,180004246718500,2024-06-24 +Resort Hotel,0,42,2017,August,32,8,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,236.0,179.0,0,Transient,252.0,0,1,Check-Out,Tammy Bell,michael79@example.net,859.249.2668x908,4447951512219194,2024-05-21 +Resort Hotel,0,31,2017,July,27,5,1,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,238.0,179.0,0,Transient,252.0,0,2,Check-Out,Mathew Myers,jack34@example.org,+1-810-749-6020x559,6011037269878274,2024-10-01 +City Hotel,1,102,2017,March,12,18,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,39,Transient,107.96,0,1,Canceled,Edgar Brown,dustinmartin@example.net,4554167885,344195697211848,2025-02-06 +Resort Hotel,0,152,2017,March,12,23,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,305.0,222.0,0,Transient-Party,60.43,0,0,Check-Out,Cory Barrett,williamgross@example.net,+1-568-465-8379,4251530029847,2024-04-06 +Resort Hotel,0,48,2017,December,51,22,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,56.62,1,1,Check-Out,Seth Jones,nicholaswilson@example.com,928-932-9414x8468,372252897625692,2024-05-27 +Resort Hotel,0,18,2017,January,2,2,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,42.26,0,1,Check-Out,Joseph Hawkins,rmorris@example.com,+1-780-278-0367x767,581641601579,2025-12-22 +City Hotel,0,38,2017,March,13,29,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,45.17,1,2,Check-Out,Victor Brown,onovak@example.com,891.504.1708,4812550672675098473,2024-09-02 +Resort Hotel,0,10,2017,July,29,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,85.8,1,0,Check-Out,Jennifer Ferguson,nreyes@example.com,+1-697-575-7081x971,4379366437496713328,2024-10-13 +Resort Hotel,0,32,2017,April,16,14,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Group,110.73,0,1,Check-Out,Carolyn Cantu,barbaradean@example.com,387.842.3393,4359540555234492714,2024-06-12 +Resort Hotel,0,100,2017,August,31,4,1,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,206.95,0,0,Check-Out,Charles Garcia,mendozamelanie@example.com,(708)461-3406x87434,4243528893250,2024-07-02 +Resort Hotel,1,156,2017,March,11,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,88.0,179.0,0,Transient-Party,78.42,0,1,Canceled,James Hart,taylor07@example.com,(745)636-9807x543,3574595818737867,2026-01-24 +City Hotel,1,399,2017,October,40,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,103.6,0,0,Canceled,Patricia Wilson,bonnie20@example.org,725-422-9293,2239904461667893,2025-07-04 +City Hotel,0,50,2017,September,38,16,1,3,3,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,121.68,0,0,Check-Out,Mark Elliott,davidoneal@example.net,7634392381,6526308658161079,2024-10-31 +City Hotel,0,34,2017,May,19,7,2,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,116.85,0,0,Check-Out,Matthew Bartlett,ebennett@example.org,001-791-633-6892,4770873567920186,2024-04-07 +Resort Hotel,0,142,2017,July,28,10,2,2,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,98.54,0,3,Check-Out,Maria Campbell,christopherhammond@example.net,758-817-3061x4840,5192787003014767,2026-02-27 +City Hotel,0,14,2017,January,2,6,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,H,1,No Deposit,10.0,179.0,0,Transient,45.86,0,0,Check-Out,Joanna Adkins,ejohnson@example.org,(700)208-9912,6011568862399599,2026-02-25 +City Hotel,1,2,2017,September,39,27,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,2.16,0,0,Canceled,Lisa Reed,dbutler@example.org,4757320206,4430085786717489048,2025-09-23 +Resort Hotel,0,37,2017,May,19,8,0,2,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,240.0,179.0,0,Transient,112.08,0,1,Check-Out,Jordan Calhoun MD,irobinson@example.org,+1-982-331-6588x13857,4229152706029515,2026-02-23 +City Hotel,0,49,2017,September,36,3,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,69.59,0,1,Check-Out,Heather Thomas,thomashenry@example.org,817.571.6554x051,376387912256077,2026-03-10 +Resort Hotel,0,40,2017,April,14,4,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,302.0,179.0,0,Transient,37.98,0,1,Check-Out,Carrie Coffey,pattonlaura@example.net,+1-803-852-1193x8157,341035401899053,2024-08-27 +City Hotel,0,41,2017,September,36,4,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,87.15,1,0,Check-Out,Dr. Isabel Smith PhD,wjones@example.org,389.298.1725,4913152661203049,2025-10-21 +Resort Hotel,0,141,2017,March,13,31,1,0,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,2,Refundable,14.0,223.0,0,Transient-Party,92.85,0,0,Check-Out,Joe Page,nancykerr@example.org,(565)279-3324,3570729248232264,2024-07-23 +City Hotel,0,1,2017,August,35,30,2,0,2,0.0,0,HB,IRL,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,63.52,0,0,Check-Out,Crystal Morales,fwillis@example.net,(507)809-9461x691,379585113169455,2024-05-18 +City Hotel,1,20,2017,August,34,25,2,3,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,31.0,179.0,0,Transient,223.52,0,0,Canceled,Heather Mcmahon,mdorsey@example.com,6633123124,6011598769533024,2024-12-30 +Resort Hotel,0,52,2017,December,50,9,2,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,238.0,179.0,0,Transient,91.96,1,1,Check-Out,Jason Quinn,tylerclayton@example.com,001-936-650-3966x81151,2222202270952344,2024-12-04 +Resort Hotel,0,118,2017,July,28,8,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,229.28,0,1,Check-Out,James Cox,eugene86@example.org,837.246.7070x4390,3529369128469587,2025-07-26 +Resort Hotel,0,0,2017,October,41,13,1,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Group,53.32,0,1,Check-Out,James Cummings,whitecindy@example.org,250.792.4940x109,4452932616528617,2024-12-07 +City Hotel,1,243,2017,January,2,7,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,34.21,0,0,Canceled,Daniel Lee,makayla16@example.net,+1-570-638-7706x71402,30174999284885,2025-03-11 +City Hotel,1,234,2017,August,31,4,1,0,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,51.16,0,1,Canceled,Shane Hopkins,veronica79@example.com,001-888-883-1296,30306721072622,2024-04-30 +City Hotel,1,59,2017,November,46,12,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,140.08,0,2,Canceled,Stephanie Kelley,jonathangreene@example.org,734-451-4674x813,4095825279736,2024-09-28 +Resort Hotel,0,28,2017,August,32,9,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,252.0,1,1,Check-Out,Jennifer Schneider,cynthiawest@example.net,(257)377-3361x957,3504624694827827,2025-03-25 +City Hotel,1,13,2017,June,24,9,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,138.45,0,2,Canceled,Charles Rodriguez,mary48@example.com,001-645-841-8922x0238,345680094795906,2025-11-09 +Resort Hotel,0,136,2017,March,14,30,1,4,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,2,Refundable,11.0,222.0,0,Transient-Party,61.0,0,0,Check-Out,Elizabeth Wall,daniel20@example.org,705-367-5533,6528629618269589,2024-10-11 +Resort Hotel,0,47,2017,October,42,15,2,1,1,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,332.0,179.0,75,Transient,82.51,0,3,Check-Out,Loretta Williams,archersteven@example.com,+1-292-636-8069x15762,3505923326704670,2024-07-05 +City Hotel,0,56,2017,April,16,14,2,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,D,1,No Deposit,13.0,179.0,0,Transient,130.67,1,0,Check-Out,Juan Moore,nortonchristopher@example.com,+1-992-656-3669x4206,343501666680098,2026-01-01 +Resort Hotel,1,39,2017,December,52,23,1,3,3,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,161.52,0,0,Canceled,Joseph White,tracy83@example.net,978-270-1210,3529387579022754,2024-04-18 +Resort Hotel,0,118,2017,November,46,16,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,237.0,179.0,0,Transient,136.59,0,1,Check-Out,Michael Cruz,nbowers@example.com,368.876.8939x44122,5378692300521074,2025-06-03 +Resort Hotel,0,36,2017,October,41,11,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,89.25,1,2,Check-Out,Denise Reese,zrodriguez@example.org,982.457.6259,4183446889756108,2025-04-15 +Resort Hotel,1,46,2017,May,18,1,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,1,No Deposit,244.0,179.0,0,Transient,43.34,0,1,Canceled,Brittney Morales,juan98@example.com,699.374.6767,4288054356644338,2025-06-16 +City Hotel,0,153,2017,March,14,30,1,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,64.07,0,0,Check-Out,Christina Jenkins,dmcdowell@example.org,001-962-689-0718x30165,4944315599188,2025-10-05 +Resort Hotel,0,102,2017,March,10,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,52.65,0,1,Check-Out,Sean Anderson,michael65@example.net,001-881-957-4302x31835,675963308407,2024-12-24 +City Hotel,0,3,2017,October,44,28,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,117.61,0,1,Check-Out,Emily Fitzpatrick,lee05@example.net,001-804-656-6127x14290,6541705216744661,2025-09-02 +City Hotel,0,64,2017,October,43,26,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,109.66,0,2,Check-Out,Nancy Liu,jakeholmes@example.net,712-457-5301x0101,4870057296628190,2025-09-15 +Resort Hotel,0,1,2017,July,30,24,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,D,0,No Deposit,249.0,179.0,0,Transient,252.0,1,1,Check-Out,Rachel Miller,luisbarnes@example.net,849-426-8388x50841,3500547281212885,2025-08-04 +City Hotel,0,96,2017,May,19,9,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,306.0,179.0,0,Transient-Party,1.08,0,1,Check-Out,Scott Brown,camachojane@example.org,+1-648-552-6521x8151,5299398721704127,2024-09-06 +City Hotel,0,48,2017,December,52,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.01,0,0,Check-Out,Emily Winters,odaniels@example.org,627.601.7921x9505,6011872771588486,2025-10-01 +Resort Hotel,1,304,2017,July,27,6,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,296.0,179.0,0,Transient,127.89,0,0,Canceled,Chris Lewis,brookelozano@example.com,9116322061,4405922418148548,2026-03-15 +City Hotel,0,144,2017,June,23,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,100.62,0,0,Check-Out,Heidi Blankenship,allenlisa@example.org,001-445-808-3889x9515,5329970178098817,2025-08-12 +City Hotel,0,26,2017,June,26,24,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,101.18,0,0,Check-Out,Sandra Alvarez,christina70@example.com,(307)649-4484x7285,377664765276553,2025-05-16 +Resort Hotel,1,47,2017,August,35,28,1,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,F,F,0,No Deposit,242.0,179.0,0,Transient-Party,62.9,0,1,Canceled,Donna Garcia,fmiller@example.com,001-608-565-6691,4742883544861,2024-09-03 +Resort Hotel,0,206,2017,March,10,6,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,14.0,222.0,0,Transient-Party,53.61,0,0,Check-Out,Stephanie Hernandez,michelleleon@example.net,+1-385-397-9320,6011395217129814,2024-06-16 +City Hotel,0,58,2017,June,25,18,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,108.72,0,2,Check-Out,Joseph Montgomery,fwhite@example.org,(739)937-3238x82121,375267853326918,2024-09-09 +Resort Hotel,1,261,2017,June,26,26,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,364.0500000000011,179.0,0,Transient,70.45,0,0,Canceled,Juan Harrison,wagnersara@example.net,483.610.3631,30378535384154,2025-07-16 +Resort Hotel,1,124,2017,July,27,3,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,63.57,0,1,Canceled,Miss Stephanie Cherry,leegregg@example.net,749-250-3286x980,4996853717655,2025-10-24 +Resort Hotel,0,296,2017,September,37,10,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.07,0,0,Check-Out,Bridget Wallace,davisdaniel@example.org,852.363.9496,3542640165421241,2024-08-03 +City Hotel,0,41,2017,April,16,14,1,3,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,138.68,0,0,Check-Out,Brandy James,sylviagibbs@example.net,214.757.0442,6011258795298825,2025-02-24 +City Hotel,0,53,2017,October,43,27,1,0,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,106.35,0,0,Check-Out,Christopher Smith,bryan82@example.com,+1-988-823-8440x340,4436863636405125,2024-04-28 +City Hotel,0,3,2017,March,10,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,1,No Deposit,12.0,45.0,0,Transient,89.45,0,2,Check-Out,Sabrina Galvan,joshuarichardson@example.net,+1-975-941-6381x54320,2264287523768166,2026-01-03 +City Hotel,0,164,2017,August,36,31,1,3,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,Catherine Shannon,ngomez@example.net,913-729-8141x611,4594144199587924,2025-05-31 +Resort Hotel,0,58,2017,February,6,8,2,0,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,1,No Deposit,17.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,Theresa Knight,emilykelley@example.net,3234462905,30591866919683,2025-09-25 +Resort Hotel,1,85,2017,December,49,4,4,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,65.22,0,1,Canceled,Victoria Tanner,josephcrosby@example.com,+1-202-389-3480x442,3509688498554940,2024-08-06 +City Hotel,1,14,2017,December,52,26,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,34.0,179.0,0,Transient,111.83,0,0,No-Show,Chad Evans,sloanconnie@example.com,7383426646,4926204302092555453,2026-01-10 +Resort Hotel,0,302,2017,September,36,6,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,64.61,0,0,Check-Out,Chase Haney,mariawebb@example.net,001-621-426-6853x88018,4811666912718458,2025-11-10 +City Hotel,0,151,2017,June,23,6,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,27.0,179.0,0,Transient,137.22,0,0,Check-Out,Maureen Nixon,jaredwheeler@example.net,842.751.7021,3530406985055013,2025-04-15 +City Hotel,1,293,2017,October,42,19,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,63,Transient-Party,95.3,0,0,Canceled,Michael Rush,shawn51@example.org,6564782469,4784339606598791,2025-03-30 +City Hotel,0,2,2017,March,14,30,0,4,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,117.03,1,3,Check-Out,Larry Lloyd,jenniferbailey@example.org,997.550.6904x92589,4443300501904339,2024-10-28 +City Hotel,0,13,2017,August,32,3,1,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,233.91,0,0,Check-Out,Steven Butler,lbarnes@example.net,429-718-9220,060442512434,2025-04-12 +Resort Hotel,0,7,2017,March,13,26,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,54.31,0,1,Check-Out,Samuel Lee,alexa82@example.net,355-362-7110x0839,5503604571743566,2025-06-21 +City Hotel,1,158,2017,December,48,1,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,9.0,179.0,0,Transient,116.16,0,0,Canceled,Joseph Moon,michele04@example.org,463.885.0836,370293750042908,2025-09-30 +Resort Hotel,0,44,2017,April,16,19,4,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,134.84,0,3,Check-Out,Taylor Williams II,hopkinschristopher@example.net,001-757-736-7597x953,6599730805229487,2024-04-11 +Resort Hotel,0,48,2017,July,29,17,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient,210.96,1,1,Check-Out,Jerry Hamilton,millerjulie@example.com,225.771.4415,4974694743928491818,2026-02-16 +City Hotel,0,78,2017,December,49,6,2,1,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,104.92,0,0,Check-Out,Paul Wolf,lwalker@example.org,999-276-6525,3522221134290993,2025-12-08 +City Hotel,1,149,2017,June,24,8,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,113.82,0,0,Canceled,Bobby Arnold,welchthomas@example.net,+1-966-917-7740x366,4141248640490,2024-04-23 +City Hotel,1,34,2017,April,14,4,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,145.29,0,2,Canceled,William Weber,pnixon@example.com,921-383-8171,345633765829272,2024-05-26 +City Hotel,0,42,2017,October,41,8,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,73.0,179.0,0,Contract,89.48,0,0,Check-Out,Alicia James,christine22@example.net,001-673-667-5852x3510,3551639540695469,2024-12-02 +Resort Hotel,0,52,2017,November,46,13,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,136.87,0,1,Check-Out,Jamie Johnson,jacobwade@example.com,001-370-398-9244x512,6011631670123252,2024-11-21 +City Hotel,0,1,2017,May,18,4,2,1,2,0.0,0,BB,PRT,Aviation,Direct,1,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,105.07,0,1,Check-Out,Melissa Rogers,francisco32@example.net,313.283.7012,4225555376703934,2024-11-03 +City Hotel,0,20,2017,January,5,31,0,1,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,227.97,0,0,Check-Out,Sarah Mueller,christopherwolfe@example.com,535-347-4576,4403105087661239,2025-02-27 +City Hotel,1,104,2017,July,27,5,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,163.65,0,1,Canceled,Gordon Hahn,barneskenneth@example.org,464.302.4865x7963,4342712341166543,2025-09-16 +Resort Hotel,1,72,2017,January,5,30,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,135.54,0,2,Canceled,Kristen Burns,dhorne@example.org,508-705-6596,345771986478691,2024-09-13 +City Hotel,1,46,2017,September,36,3,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,130.5,0,0,Canceled,Thomas Sellers,barrerajason@example.com,382-543-4497,502092606610,2024-10-10 +City Hotel,0,145,2017,March,10,8,0,1,1,1.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient-Party,82.92,0,0,Check-Out,Melvin Flores,rojascatherine@example.net,(453)814-9835x86847,3581599438454722,2025-02-20 +City Hotel,1,13,2017,October,41,9,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,122.35,0,1,Canceled,Ashley Cochran,howardchapman@example.org,001-232-357-4102x27825,345231029650897,2024-11-14 +Resort Hotel,0,19,2017,September,36,9,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,135.52,0,2,Check-Out,Ashley Jones,michaelbennett@example.com,001-305-428-5094x8459,6011250381524714,2025-01-31 +Resort Hotel,1,38,2017,July,31,29,0,2,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,1,0,Canceled,Christian Solis,butlercatherine@example.com,771.605.0520x245,344849237743005,2024-05-01 +City Hotel,1,198,2017,August,32,6,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,193.25,0,1,Canceled,Sharon Smith,michael41@example.org,+1-852-997-1404x84821,375694460801563,2024-09-09 +Resort Hotel,0,1,2017,February,6,4,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,34.73,1,0,Check-Out,Robert Berg,anthonyrodriguez@example.net,(339)373-7561x8941,4794703878489023799,2025-05-22 +City Hotel,0,29,2017,January,2,3,0,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,61.47,0,1,Check-Out,Brooke Sims,jonesjeremy@example.org,001-478-391-6450,4641356092699134,2025-03-20 +Resort Hotel,1,172,2017,March,11,15,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,C,F,1,No Deposit,13.0,179.0,75,Transient,85.3,1,3,Canceled,Julia Marks,williamsjulia@example.net,724-411-7542x2624,30578237466700,2024-10-07 +Resort Hotel,0,4,2017,March,13,27,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,B,1,No Deposit,16.0,179.0,0,Transient,44.05,0,0,Check-Out,Ashley Martinez,rodriguezlauren@example.com,6858677116,676210516347,2025-02-22 +Resort Hotel,0,0,2017,May,20,13,2,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,318.0,179.0,0,Transient-Party,44.82,0,0,Check-Out,Christina Reese,kevinmcguire@example.net,3313467844,3577240563773604,2024-05-26 +Resort Hotel,1,31,2017,January,4,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,11.0,179.0,0,Transient,102.64,0,0,Canceled,Brandon Bean,johnalvarado@example.org,+1-275-247-1195x9160,630464223779,2024-09-27 +City Hotel,0,243,2017,September,38,20,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Contract,108.23,0,2,Check-Out,Rickey Hall,jill13@example.com,+1-991-643-3851x242,341849118446572,2024-10-23 +City Hotel,0,171,2017,August,32,4,1,2,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,220.96,0,2,Check-Out,Bobby Flores,makayla63@example.net,5416877663,676255859891,2024-06-03 +City Hotel,1,0,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Canceled,Karen Gonzalez,alexanderlisa@example.com,(516)685-5951x66693,348384872204283,2024-08-18 +Resort Hotel,0,0,2017,August,35,28,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,1,No Deposit,252.0,179.0,0,Transient,218.07,0,0,Check-Out,Lisa Lopez MD,ryan61@example.net,+1-517-562-9416x3392,4427771557453450873,2025-09-27 +Resort Hotel,0,0,2017,August,33,12,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,163.71,1,1,Check-Out,Sharon Brown,larsenkimberly@example.net,001-290-715-0324,5390704917221719,2024-09-15 +City Hotel,1,310,2017,October,42,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,46.73,0,0,Canceled,Aaron Thompson,deborah90@example.com,973.764.6002x809,2306407856689058,2025-07-28 +City Hotel,0,19,2017,October,41,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,20.0,179.0,0,Transient,108.2,0,0,Check-Out,Charles Weaver,jonestimothy@example.com,430.867.2938,373942010715557,2024-12-18 +City Hotel,0,48,2017,October,43,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,40.65,0,2,Check-Out,Melissa Warner,austinsharon@example.com,909.934.6314x949,3561682986187243,2025-03-31 +City Hotel,0,18,2017,September,39,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,111.18,0,0,Check-Out,Cody Morris,anthony88@example.net,001-931-651-8953x8863,2287534202489363,2025-11-28 +Resort Hotel,0,24,2017,May,18,5,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,318.0,179.0,0,Transient,40.4,1,1,Check-Out,Carla Reid DDS,jgonzalez@example.org,758-306-9285x03591,4331908714402746,2025-04-09 +Resort Hotel,0,153,2017,July,31,28,4,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,250.0,179.0,0,Transient,180.69,1,2,Check-Out,Katie Mitchell,tgreen@example.net,6849579898,6501093136829971,2025-09-27 +Resort Hotel,0,150,2017,March,11,13,1,3,1,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,83.12,0,0,Canceled,Roger Moss,robert75@example.com,2119780949,4368818080084,2025-02-28 +Resort Hotel,1,32,2017,October,43,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,86.56,0,1,Canceled,Mary Donaldson,qmaddox@example.com,001-308-704-5749x770,213190353729090,2024-04-14 +Resort Hotel,0,20,2017,February,8,23,1,0,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,177.0,179.0,0,Transient-Party,81.97,0,0,Check-Out,Paul Brown,garylittle@example.net,706.465.1547,6513446293430130,2025-06-25 +City Hotel,0,4,2017,April,16,18,1,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.73,0,1,Check-Out,Gregory Quinn,nchavez@example.org,(951)918-7451x67025,3522122821786048,2025-05-02 +City Hotel,1,364,2017,December,50,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,92.3,0,0,Canceled,Sabrina Miller,uhernandez@example.com,+1-379-220-5451x26714,4080851345806377,2024-10-06 +Resort Hotel,0,3,2017,July,29,13,1,0,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,B,1,No Deposit,190.0,179.0,0,Transient-Party,82.46,0,0,Check-Out,Michelle Smith,shannonboyer@example.org,+1-768-858-3568x693,4239488620069163,2025-05-07 +Resort Hotel,0,153,2017,April,14,3,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,29.0,179.0,0,Transient-Party,89.1,0,0,Check-Out,Anita Chapman,leonard65@example.com,(938)593-7432x964,6571918235952818,2026-03-16 +Resort Hotel,0,63,2017,May,21,24,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,146.27,0,3,Check-Out,Heather Becker,murphytaylor@example.net,285-985-6388x428,3534463122235053,2024-08-15 +Resort Hotel,0,87,2017,September,36,4,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient-Party,43.31,0,0,Check-Out,Andrea Baker,scottrobinson@example.com,(825)745-6827x537,6011528942410204,2024-11-01 +Resort Hotel,0,149,2017,September,36,6,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,2,No Deposit,250.0,179.0,0,Transient,166.93,1,0,Check-Out,Joanne Harmon,lopezkevin@example.org,415-916-7445x199,6011066120105726,2026-03-21 +City Hotel,0,30,2017,May,19,5,2,2,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.12,1,1,Check-Out,Mr. Phillip Edwards,ntaylor@example.net,+1-851-285-8166,379628447008161,2025-07-17 +City Hotel,0,9,2017,November,44,1,1,2,2,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,I,0,No Deposit,40.0,179.0,0,Transient-Party,46.55,0,0,Check-Out,Mrs. Laurie Williams MD,jeffreyhuff@example.org,676-262-9455x244,3568912621073448,2024-11-04 +Resort Hotel,1,141,2017,July,29,15,1,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,235.77,0,0,Canceled,Joel Mclean,jonathandixon@example.org,(644)314-7520x70623,675909930793,2025-10-17 +City Hotel,1,112,2017,June,23,2,2,6,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,111.88,0,3,Canceled,Valerie Ford,jonathan29@example.net,530-514-1574x8498,6011235530825401,2025-01-19 +City Hotel,1,256,2017,October,44,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,101.98,0,0,Canceled,Jodi Thomas,meadowsdavid@example.org,(395)281-8283,4342085812020510739,2024-08-15 +City Hotel,1,25,2017,December,51,23,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,0,0,B,B,0,No Deposit,28.0,179.0,0,Transient-Party,84.89,0,1,Canceled,Jennifer Johnson,anthonydeleon@example.org,674.499.0319x3589,639092686034,2025-07-24 +City Hotel,0,2,2017,February,7,16,1,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.95,0,1,Check-Out,Eugene Fritz,villalaurie@example.com,+1-409-453-4753x264,6567710812858963,2025-05-29 +City Hotel,0,158,2017,June,26,22,1,3,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,145.41,0,2,Check-Out,Jennifer Smith,jeffreythomas@example.net,(349)739-7504x23963,4311483632266163,2025-07-27 +City Hotel,1,27,2017,April,17,27,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,120.74,0,0,No-Show,Mary Thompson,joseph44@example.org,(613)680-4096,2317287620487626,2024-09-04 +Resort Hotel,0,0,2017,December,49,6,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Contract,89.83,0,1,Check-Out,Catherine Davis,craig74@example.net,+1-537-578-6888x68514,180012597000931,2024-12-02 +Resort Hotel,0,1,2017,August,31,2,3,10,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,240.01,0,1,Check-Out,Chris Rogers,vbrown@example.com,926-895-7362,630412026027,2024-11-10 +Resort Hotel,1,141,2017,July,31,30,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient,48.69,0,2,Check-Out,James Torres,williamstaylor@example.org,490.400.8219,630493063097,2025-09-09 +City Hotel,0,124,2017,April,17,24,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,263.0,179.0,75,Transient-Party,133.73,1,3,Check-Out,Kirsten Perez,kathy94@example.com,963.568.7003x92288,630486751203,2026-03-06 +City Hotel,1,13,2017,June,26,27,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,13.0,179.0,0,Transient,132.17,0,0,Canceled,Dr. Jeffrey Valentine,brianduncan@example.net,(519)419-2623x8360,4619009390593984924,2024-06-13 +City Hotel,1,103,2017,May,19,6,3,7,3,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,203.0,0,Transient,101.6,0,1,Canceled,Wayne Brown,lauragonzalez@example.net,338-646-0822x068,346970421194397,2025-02-15 +City Hotel,1,85,2017,August,34,26,1,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,198.33,0,0,Canceled,Andrea Morris,pamelabailey@example.net,986.783.3514,4722338130484887,2025-08-24 +City Hotel,1,108,2017,March,11,13,0,4,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,75,Transient,97.66,0,0,Canceled,Dylan Young,apriloneill@example.org,(991)760-2294x612,3580682097737347,2025-01-12 +City Hotel,1,322,2017,January,4,23,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.68,0,2,Canceled,Regina Butler,edwinwilliams@example.net,001-356-778-1027x9567,4829303135512795,2025-05-22 +City Hotel,0,42,2017,December,49,8,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,75,Transient,92.4,0,1,Check-Out,Eric Moore,wjoseph@example.com,(784)579-3923x083,343814225337252,2026-03-25 +City Hotel,0,94,2017,May,21,21,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,182.0,0,Group,114.28,0,1,Check-Out,Melinda Patterson,randallmitchell@example.com,9583673718,213112110303134,2024-11-14 +City Hotel,1,98,2017,June,25,18,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,118.18,0,0,Canceled,Carl Campbell,willisbrad@example.net,+1-836-362-1146x8453,4433692137154335,2025-11-27 +City Hotel,1,10,2017,April,16,15,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,162.7,0,1,Canceled,Renee Shields,fmartinez@example.org,(746)734-4723x11314,4835681837441419963,2025-01-09 +Resort Hotel,1,156,2017,June,26,27,1,3,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,128.61,0,0,Canceled,Wesley Brown,dianaparsons@example.com,(765)915-4787,4089895366783305800,2025-01-25 +Resort Hotel,0,98,2017,August,32,3,2,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,1.0,222.0,0,Transient-Party,3.94,0,0,Check-Out,Jason Clark,dwalters@example.com,309-949-0003,4513306652963021636,2025-09-13 +Resort Hotel,0,36,2017,March,11,11,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,172.0,179.0,0,Transient,41.64,0,0,Check-Out,David Wiggins,whitelauren@example.com,001-984-292-8024x6948,30004010220412,2025-05-04 +City Hotel,1,145,2017,August,33,11,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,115.25,0,1,Canceled,Thomas Kaufman,pamela30@example.net,223.352.2849,180053016762727,2024-12-14 +City Hotel,0,89,2017,April,17,28,0,2,1,1.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,82.42,0,0,Check-Out,Kristen Ray,conleyhaley@example.net,477-570-2922,180094725275783,2025-06-09 +Resort Hotel,0,0,2017,July,28,9,3,3,3,2.0,0,BB,CN,Direct,Direct,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,230.95,1,1,Check-Out,Cory Martinez,laurajensen@example.net,(387)531-4983,3580586813842952,2024-09-04 +Resort Hotel,0,16,2017,October,41,11,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,94.4,0,0,Check-Out,Mark Maddox,nicole36@example.net,740.435.2327x69221,4188414667160102732,2024-04-27 +Resort Hotel,0,53,2017,March,13,25,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,78.67,0,2,Check-Out,Kevin Young,christopherbenton@example.com,+1-478-850-4975x927,6011375238503031,2026-02-21 +City Hotel,0,49,2017,March,10,8,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,47.79,0,2,Check-Out,Katherine Harrison,stephenwilliams@example.org,430-768-4788x5407,30559720841807,2024-11-26 +City Hotel,0,140,2017,May,21,23,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,154.86,0,0,Check-Out,Jorge Davis,shannon26@example.org,001-904-569-8945x019,38645250037668,2024-04-05 +City Hotel,1,45,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,A,0,Non Refund,12.0,179.0,0,Transient,41.19,0,0,Canceled,Loretta Miller,jasoncervantes@example.org,321-232-0696x2610,3597097344365522,2026-03-26 +City Hotel,1,412,2017,May,20,13,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,7.0,179.0,0,Transient,168.98,0,0,Canceled,Lance Macdonald DVM,klee@example.net,487.872.2289,30282166585628,2025-10-11 +City Hotel,0,405,2017,October,41,8,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.28,0,0,Check-Out,Jerry Waters,bowerssamuel@example.org,001-863-438-7615,3503573232492894,2025-05-29 +Resort Hotel,1,75,2017,July,30,24,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Desiree Thomas,jeffreygarcia@example.com,503-730-7959x882,213146027868110,2024-05-03 +Resort Hotel,0,1,2017,May,20,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,17.0,63.0,0,Transient,48.32,0,0,Check-Out,Amy Wright,brady81@example.org,851-491-7325x8292,4270855883729,2025-06-11 +Resort Hotel,0,12,2017,May,21,22,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,240.0,179.0,0,Transient,108.34,1,1,Check-Out,Erin Summers,john21@example.com,(535)464-5057x36302,3535851893411037,2025-03-20 +City Hotel,1,96,2017,July,28,12,2,0,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.24,0,2,Canceled,Mr. Don Flores,davidray@example.com,(643)395-1275x9025,2362220983262355,2025-05-13 +City Hotel,0,159,2017,August,32,5,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.96,0,0,Check-Out,Miss Kimberly Holloway,victoriagarcia@example.org,001-357-292-0329,180017350916306,2025-12-05 +Resort Hotel,0,1,2017,January,2,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,58.7,0,1,Check-Out,Tina Harper,redwards@example.com,001-816-417-6811,344510087052737,2026-01-12 +Resort Hotel,0,148,2017,September,36,1,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,44.25,0,0,Check-Out,Nicholas Moss,leejeremy@example.org,4695794020,4228515470006,2025-01-30 +City Hotel,1,132,2017,July,27,3,2,2,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,7.0,179.0,0,Transient,185.28,0,1,Canceled,Robert Campbell,moorecorey@example.net,(365)436-6678x3368,4302105282434,2024-07-03 +City Hotel,1,19,2017,May,18,1,0,4,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.82,0,1,Canceled,Jenny Cardenas,zblake@example.org,5243486335,30541436841552,2024-05-15 +City Hotel,0,33,2017,October,43,21,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.15,0,1,Check-Out,Dean Thomas,nwhite@example.com,(809)643-2817x1963,343668964779185,2024-06-23 +City Hotel,0,101,2017,April,15,10,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,109.39,0,0,Check-Out,Matthew Farmer,richardelizabeth@example.org,926.771.5958,630480935760,2025-03-26 +City Hotel,0,22,2017,May,21,25,2,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,37.18,1,1,Check-Out,John Browning,willie86@example.com,001-301-628-4827x1599,36389347031762,2024-05-10 +Resort Hotel,0,29,2017,December,49,8,1,5,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,312.0,179.0,0,Transient-Party,53.88,0,0,Check-Out,Mario Peters,emarshall@example.org,540.801.3027x407,4492114203557554,2024-05-01 +City Hotel,1,14,2017,June,26,24,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.89,0,0,Canceled,Olivia Rodriguez,beckerjohn@example.org,+1-535-943-1198,5264258101695322,2026-03-11 +Resort Hotel,0,10,2017,August,32,12,2,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,205.71,0,1,Check-Out,Donald Mccarthy,alexschaefer@example.net,001-939-825-4794,2251182412990101,2024-09-22 +City Hotel,0,157,2017,July,30,24,0,4,2,1.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,98.99,0,1,Check-Out,Christopher Anderson,xchaney@example.com,897.525.9374x72707,38842958656499,2024-10-02 +City Hotel,0,17,2017,March,12,21,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,39.42,0,3,Check-Out,Becky Parrish,christophermunoz@example.com,001-827-644-4261x10467,4497133678599599,2024-07-14 +City Hotel,1,147,2017,April,16,18,1,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,133.77,0,0,Canceled,Jackie Stewart,angelahart@example.net,001-479-635-0231x054,213142658935716,2024-05-27 +Resort Hotel,0,48,2017,April,17,26,2,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,110.17,0,0,Check-Out,Krista Fuller,wintersvirginia@example.org,+1-978-341-2132,213115878240513,2025-05-10 +City Hotel,0,150,2017,July,31,27,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,128.19,0,1,Check-Out,Jennifer Nguyen,amy20@example.net,(804)336-2578x6845,4412423231883349741,2025-02-20 +Resort Hotel,1,40,2017,July,29,19,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Canceled,Amanda Campbell,smithalex@example.com,968.303.6001x80098,30102060900683,2024-06-19 +City Hotel,0,102,2017,July,30,24,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.76,0,0,Check-Out,Laura Ware,umcdonald@example.net,859.703.0847x5369,3552629500538550,2025-01-14 +Resort Hotel,0,15,2017,March,13,25,1,4,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,C,0,No Deposit,241.0,331.0,0,Transient,64.72,1,2,Check-Out,Mitchell Anderson,waltershenry@example.com,+1-403-638-3032x738,3538523789406424,2025-02-07 +City Hotel,0,41,2017,November,45,8,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.85,0,2,Check-Out,Barry Hernandez,jeffreygibson@example.net,+1-276-349-9160x4156,4390840624365150,2025-11-05 +Resort Hotel,0,8,2017,December,51,21,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,39.9,1,0,Check-Out,Teresa Young,oosborne@example.net,(307)992-8317,378964492468088,2024-07-16 +City Hotel,0,114,2017,April,15,13,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,152.97,0,0,Check-Out,Valerie Morgan,chadreed@example.net,(552)378-6222x04585,502076514467,2025-09-16 +City Hotel,0,27,2017,September,36,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,26.0,179.0,0,Transient-Party,130.9,0,0,Check-Out,Paul Vasquez,richardkennedy@example.net,001-405-582-4686,180003569729359,2025-07-20 +City Hotel,0,92,2017,January,2,8,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,96.62,1,1,Check-Out,Kelly May,william85@example.net,+1-279-819-6681x593,38228180505854,2025-12-24 +City Hotel,1,0,2017,March,13,27,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,40,Transient,69.81,0,0,No-Show,Christopher Carson,pgraves@example.org,262-254-7044,3583916722507270,2024-08-25 +City Hotel,0,79,2017,March,13,25,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.56,0,2,Check-Out,Joan Wilson,thomas43@example.org,415.333.2367x5607,4914178786396,2025-10-01 +Resort Hotel,0,87,2017,April,14,5,2,0,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,307.0,179.0,0,Transient-Party,2.02,0,0,Check-Out,Debbie Allen,jterry@example.org,(440)514-4754,4389603159031615162,2024-10-18 +City Hotel,1,170,2017,March,12,22,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,11.0,179.0,0,Transient,184.41,0,0,Canceled,Kristin Williams,karen42@example.net,+1-682-567-0795x1197,6538412629913109,2025-06-21 +City Hotel,0,87,2017,November,45,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,84.5,0,0,Check-Out,Courtney Williams,tinaray@example.net,+1-321-231-4614x70780,4534738210222,2025-03-29 +City Hotel,0,2,2017,July,28,10,0,2,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,111.4,0,0,Check-Out,David Hernandez,millerjennifer@example.net,9889685606,4529005413982813,2024-11-26 +Resort Hotel,0,158,2017,March,13,23,1,5,2,1.0,0,FB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,62.04,0,0,Check-Out,Kathryn Morris,hlopez@example.org,+1-609-568-7853x127,30239167432606,2025-01-06 +Resort Hotel,1,18,2017,August,33,13,1,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,65.0,179.0,0,Transient,215.71,0,3,Canceled,Meagan Smith,tracymunoz@example.com,+1-624-667-3184x499,4095942249674517,2024-04-16 +City Hotel,0,43,2017,March,11,12,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.24,0,2,Check-Out,Katherine Caldwell,ccurry@example.com,(655)722-8271,3515318246192767,2024-04-06 +Resort Hotel,0,148,2017,July,27,8,0,5,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,171.0,179.0,0,Transient,121.83,0,1,Canceled,Krista Williams,dlawson@example.net,7208906628,4158052091446,2024-05-31 +City Hotel,0,17,2017,May,20,13,1,1,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,94.24,0,0,Check-Out,Christine Aguilar,jamescampbell@example.net,+1-766-526-8943,4193984853128191,2025-12-09 +City Hotel,0,388,2017,October,42,18,1,2,3,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,27.0,179.0,0,Transient-Party,62.69,0,1,Check-Out,Michael Perkins,palmerrandy@example.net,001-940-644-2330x2956,3505777554566080,2024-08-15 +Resort Hotel,1,130,2017,July,31,31,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,250.0,179.0,0,Transient,252.0,0,0,Canceled,Steven Martin,emily90@example.org,001-843-219-5312,4363655217477,2025-09-16 +City Hotel,0,48,2017,March,13,27,1,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,204.86,1,1,Check-Out,Joshua Herman,andersenanthony@example.org,001-613-634-0327x8912,4217805400899467,2025-08-21 +City Hotel,0,12,2017,June,24,8,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,165.8,0,1,Check-Out,Diana Hawkins,garciacody@example.net,742.356.3846x336,3544256016379690,2024-12-18 +City Hotel,0,0,2017,October,40,2,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,60.0,0,Transient,52.82,0,1,Check-Out,Caitlin Harris,paulachen@example.com,709.610.6609x0332,4388779887806,2026-03-15 +Resort Hotel,1,144,2017,July,28,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,356.0,179.0,0,Transient-Party,45.46,0,0,Canceled,Felicia Murphy,mgoodman@example.org,(992)206-4359,675958113721,2025-05-14 +City Hotel,0,99,2017,October,40,4,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,44,Transient,110.07,0,0,Check-Out,Bryan Mitchell,ashleyperez@example.net,523-839-6535x4281,4508739982633,2025-11-27 +City Hotel,0,6,2017,November,45,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,42.0,202.0,0,Transient-Party,79.73,0,0,Check-Out,Larry Curtis,brenda27@example.net,(572)283-6611,2454301043387520,2025-07-21 +Resort Hotel,1,163,2017,May,20,16,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,100.31,0,0,Canceled,Jennifer Lopez,brandon33@example.net,(696)716-6233x28282,4561294479058499,2026-01-28 +City Hotel,0,30,2017,October,41,9,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,259.0,179.0,0,Transient-Party,72.12,0,0,Check-Out,Robert Newton,kimberlyhall@example.net,329.817.9995x09153,2244821046678729,2024-11-10 +City Hotel,0,190,2017,April,15,9,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,170.0,179.0,0,Transient,108.62,0,1,Check-Out,Christina Hudson,marydillon@example.org,554.542.0367,3553702817226232,2025-09-13 +Resort Hotel,0,41,2017,August,34,24,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,250.0,179.0,0,Transient,212.34,0,2,Check-Out,Sandra Craig,yhale@example.net,+1-398-736-4851x7700,4263727243749514,2024-07-26 +Resort Hotel,1,31,2017,February,9,27,1,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,35.55,0,1,Canceled,Sabrina Ward,lisa05@example.org,475.819.5388x59102,5139253590744346,2025-04-20 +City Hotel,0,149,2017,June,26,23,2,6,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,88.91,0,1,Check-Out,Mark Knight,paul93@example.com,(809)302-1248,3529892829689237,2024-08-12 +City Hotel,0,51,2017,March,10,6,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.78,0,2,Check-Out,Darlene Dixon,rothtiffany@example.org,966-995-2921x559,2489740860557138,2025-05-03 +Resort Hotel,1,153,2017,March,12,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,62.81,0,0,Canceled,Daniel White,maria20@example.net,839-289-9161,4376133380786369922,2024-11-15 +City Hotel,0,152,2017,March,10,9,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,1,No Deposit,12.0,179.0,0,Transient,134.99,0,1,Check-Out,Jonathan Cortez,lopezkayla@example.net,(600)645-1457x540,4096001636861006421,2026-03-22 +Resort Hotel,0,99,2017,July,30,20,4,1,2,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,31.0,179.0,0,Transient,209.96,0,0,Check-Out,Judith Myers,harrissierra@example.org,3705556171,180051227397275,2024-09-03 +City Hotel,0,167,2017,August,35,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Group,128.6,0,2,Check-Out,Tammie Castillo,amyandrews@example.net,+1-271-226-8043x63531,4795501985420985506,2025-11-17 +Resort Hotel,0,0,2017,October,43,27,3,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,130.16,0,1,Check-Out,Rebecca Estrada,tranjulie@example.com,(416)968-4123,4762260895989366,2024-11-07 +City Hotel,0,117,2017,July,31,31,0,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,213.8,1,2,Check-Out,Angela Rodriguez,davidho@example.com,3079286771,585978149813,2025-03-13 +City Hotel,0,89,2017,June,24,14,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.82,0,0,Check-Out,Andre Williams,alexis94@example.net,(718)393-9846x13202,4707720023445,2025-04-23 +Resort Hotel,0,3,2017,May,19,9,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,65.0,0,Transient,40.79,0,0,Check-Out,Donald Smith,robert45@example.com,392-406-6754x9139,38812251583757,2024-06-11 +Resort Hotel,0,2,2017,October,42,17,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,43.38,0,0,Check-Out,Nicholas Ali,twatkins@example.org,+1-659-786-4842x331,4889049748183139,2025-06-22 +City Hotel,1,277,2017,September,36,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,106.3,0,0,Canceled,Jacob Brewer,rachelross@example.com,(606)204-5779x9094,3599188660260138,2024-05-17 +City Hotel,1,140,2017,April,16,15,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,81.92,0,1,Canceled,Natalie Watson,louis15@example.com,001-476-782-9005x603,345773405518529,2025-06-08 +Resort Hotel,0,245,2017,May,20,12,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,C,0,No Deposit,281.0,179.0,0,Transient-Party,102.15,0,0,Check-Out,Matthew Evans,john79@example.com,475.910.0218,3505585463912885,2024-05-18 +City Hotel,0,29,2017,December,50,14,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,88.36,0,3,Check-Out,Bryan Thomas,robert32@example.com,001-273-914-8270x439,3506583979836911,2024-04-28 +Resort Hotel,0,10,2017,March,12,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,159.0,179.0,0,Transient,50.22,0,1,Check-Out,Timothy Lucero,jamesli@example.net,241-914-9380x59116,4751497364368,2024-06-12 +Resort Hotel,1,192,2017,August,33,13,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,106.13,0,0,Canceled,Barbara Fields,pbrown@example.org,699.215.4763x087,38817120405199,2025-08-13 +Resort Hotel,0,50,2017,August,31,1,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,76.0,0,Transient-Party,48.71,0,0,Check-Out,Rebecca Beard,hollanddavid@example.org,767.632.3709x84713,4581578104353,2024-06-27 +Resort Hotel,0,1,2017,March,12,18,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,E,0,No Deposit,16.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,Carrie Rodriguez,davidcasey@example.net,5013434678,4152100493959361,2025-04-04 +City Hotel,1,68,2017,March,12,20,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,77.0,0,Transient,61.51,0,1,Canceled,Jordan Tanner,nelsonjason@example.net,001-562-527-2833,060440407405,2024-08-09 +City Hotel,1,88,2017,July,28,7,1,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,109.81,0,1,Canceled,Denise Johnson,bfarmer@example.net,(350)479-1427,6011147062063576,2026-02-07 +City Hotel,1,72,2017,December,52,24,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,107.05,0,0,Canceled,Amy Holt,james72@example.com,001-354-818-4600x47593,349911406280840,2025-10-08 +Resort Hotel,0,0,2017,August,33,11,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,17.0,179.0,0,Transient,232.71,1,0,Check-Out,James Bennett,banksshannon@example.net,278.355.0989,30287451794371,2024-09-14 +City Hotel,1,87,2017,July,27,2,0,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.4,0,1,No-Show,Jeffrey Owens,austinsheila@example.net,5417796827,3584172136375131,2025-09-29 +City Hotel,0,50,2017,May,21,23,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,H,0,No Deposit,29.0,179.0,0,Transient,134.53,0,2,Check-Out,Adam Merritt,toddlawson@example.org,001-345-318-5465x6120,4039613668182891124,2024-05-14 +City Hotel,0,160,2017,March,11,13,1,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,52.36,0,0,Check-Out,Tina Walter,hmcdaniel@example.net,538-276-0777,30003872101991,2024-12-01 +City Hotel,0,9,2017,June,25,24,0,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,74.0,179.0,0,Contract,132.03,0,3,Check-Out,Michelle Harris,dmitchell@example.net,(675)755-1143,347460765340862,2024-12-17 +Resort Hotel,0,22,2017,September,37,12,2,7,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,131.57,0,1,Check-Out,Michael Richmond,oking@example.com,+1-575-797-5615x19479,375039244990136,2026-02-19 +City Hotel,1,149,2017,June,23,3,0,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.8,0,0,Canceled,Michael Patrick,erin77@example.com,001-479-943-0583x8680,3557215907907971,2025-08-01 +Resort Hotel,0,2,2017,September,36,9,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,C,E,0,No Deposit,15.0,179.0,0,Transient,127.55,0,0,Check-Out,Amanda Hart DVM,stacy25@example.org,+1-650-343-8727x53170,341702188893753,2025-02-26 +City Hotel,0,152,2017,March,12,20,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,74.0,0,0,Check-Out,Michele Conner,lyonschristopher@example.com,(778)494-3161,4535642878676795,2025-07-29 +Resort Hotel,0,307,2017,October,40,4,2,7,2,0.0,0,HB,SWE,Direct,Direct,0,0,0,D,E,0,No Deposit,318.0,179.0,0,Transient,79.09,0,2,Check-Out,Natalie Mitchell,ehansen@example.org,4609641999,501824384462,2025-10-11 +Resort Hotel,1,88,2017,December,49,8,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,48.58,0,0,Canceled,Jacob Hoover,erich@example.com,001-398-863-3860x9455,180000819308711,2025-12-30 +City Hotel,0,60,2017,May,21,23,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,10.0,179.0,0,Transient,143.07,1,0,Check-Out,Jacqueline Winters,dtrevino@example.com,+1-719-228-6967x410,3506488052027737,2024-05-22 +City Hotel,1,133,2017,July,30,25,4,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,240.8,0,0,Canceled,Kimberly Flores,nicolereyes@example.net,001-895-397-6261x733,4310377734628,2025-09-30 +City Hotel,0,158,2017,August,33,16,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.7,0,1,Check-Out,Jennifer Carpenter,caustin@example.com,4104561347,341418375567569,2026-02-26 +City Hotel,1,0,2017,August,35,25,2,0,2,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,0.87,0,0,Canceled,William Saunders,nvincent@example.net,487-489-0716x340,4987207873253124,2024-08-01 +City Hotel,1,26,2017,September,40,29,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,104.26,0,0,Canceled,Michael Preston,michael54@example.org,(754)444-8591,4278515811636658144,2024-08-03 +City Hotel,0,48,2017,May,18,4,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.93,0,3,Check-Out,Jennifer Ali,latoyahernandez@example.net,648-343-2161x58858,346836159714054,2025-08-17 +City Hotel,0,148,2017,August,35,28,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,252.0,0,2,Check-Out,David Taylor,nicolehernandez@example.com,001-806-438-9921x8386,180032161887802,2024-09-14 +City Hotel,0,238,2017,August,34,23,2,5,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,86.97,0,1,Check-Out,Maria Hayes,john66@example.com,001-514-888-3856x2292,6011585205899606,2025-05-08 +City Hotel,1,27,2017,March,11,13,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.92,0,2,Check-Out,Melanie Preston,martinshelley@example.com,996.333.1067,213141618196609,2025-06-09 +City Hotel,1,308,2017,August,32,11,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Transient,251.44,0,0,Canceled,Thomas Mcgrath,sgarcia@example.com,781.360.9132x9494,4625273659646525,2025-11-26 +Resort Hotel,1,62,2017,December,51,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,115.1,0,1,No-Show,Glenn Chen,joseph11@example.net,8058810466,3538307498899560,2024-05-15 +Resort Hotel,1,2,2017,June,24,8,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,111.52,0,1,Canceled,Sarah Berry,usaunders@example.net,(442)568-9421,4657399771702481,2024-12-29 +Resort Hotel,1,4,2017,July,30,27,2,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Rebecca Summers,zachary98@example.org,+1-761-355-3908x85757,30442683477564,2024-04-08 +Resort Hotel,0,6,2017,February,9,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,16.0,69.0,0,Transient-Party,44.93,0,0,Check-Out,Rodney Gilmore,cordovascott@example.net,001-911-710-2002x101,180041850972775,2025-12-14 +City Hotel,1,99,2017,February,6,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,21.0,179.0,0,Transient,79.54,0,2,No-Show,Kimberly Stone DDS,danielle46@example.org,001-533-898-1361,30599861921786,2026-01-01 +City Hotel,1,327,2017,October,44,30,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,60,Transient,63.37,0,0,Canceled,Joshua Dunlap,tasha72@example.org,(486)666-0988,060442468637,2025-09-22 +Resort Hotel,1,54,2017,June,23,1,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient-Party,87.74,0,0,Canceled,Melinda French,huntermarc@example.net,4844679345,30070167181574,2025-05-06 +City Hotel,0,6,2017,January,4,23,0,2,1,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,110.52,0,0,Check-Out,Gabriel Copeland MD,jeffrey64@example.com,284.927.6635x948,3575913449212185,2024-04-24 +City Hotel,0,146,2017,August,35,26,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,163.91,0,2,Check-Out,Kelly Weiss,thomasmercer@example.com,411-395-7796x8936,213175683274958,2025-07-08 +City Hotel,0,81,2017,April,17,28,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,168.0,179.0,0,Transient,84.12,0,1,Check-Out,Gregory Russell,steelewilliam@example.com,+1-884-871-7117x78750,4689139205484732,2025-08-20 +Resort Hotel,0,138,2017,May,21,18,2,10,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,64.22,1,1,Check-Out,Ashley Bowman,xweaver@example.org,(296)368-5660x59828,3576898528782738,2026-03-03 +Resort Hotel,1,3,2017,December,49,4,0,4,2,0.0,0,FB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,64.62,0,1,Canceled,Ruben Woodard,mary16@example.net,+1-474-875-2202x903,060467802371,2024-04-02 +City Hotel,1,95,2017,March,11,14,1,4,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,B,0,No Deposit,11.0,179.0,0,Transient,80.24,0,1,Canceled,Aaron Leon,xmartinez@example.com,450-568-7988x7334,6011338712413705,2025-11-12 +Resort Hotel,0,14,2017,August,32,6,4,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,82.27,0,1,Check-Out,Ashley Thomas,jmcgee@example.net,5594772626,370748321307668,2025-12-11 +City Hotel,1,110,2017,June,23,9,0,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,242.25,0,2,No-Show,Travis Allen,angela63@example.net,001-682-447-8446,676173541753,2024-06-10 +City Hotel,1,0,2017,November,45,7,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,80.93,0,0,Check-Out,Roger Weaver,matthewmcneil@example.net,696.816.1570x49712,180040641301567,2025-02-18 +Resort Hotel,1,146,2017,June,25,21,3,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,170.25,0,0,Canceled,Robert Johnson,prattkimberly@example.com,915.513.3157x174,4267324039698539,2024-05-04 +Resort Hotel,0,0,2017,May,18,3,1,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,G,2,No Deposit,246.0,179.0,0,Transient,183.87,1,1,Check-Out,Bryan Lopez,jenniferglover@example.com,001-741-476-3523,38094440588274,2025-07-18 +City Hotel,1,0,2017,December,49,2,0,1,3,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,242.0,0,Transient,5.43,0,0,Canceled,Andrea King,jcervantes@example.org,492.237.6897,6592860253912917,2024-07-08 +City Hotel,0,16,2017,August,32,9,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,130.62,1,0,Check-Out,Jennifer Howard,jennifergrimes@example.com,694.237.0820,2254977414451664,2025-12-19 +City Hotel,1,160,2017,March,13,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,75,Transient,92.24,0,0,Canceled,Michael Evans,dbutler@example.com,993-285-4066x888,30228751990202,2025-05-01 +Resort Hotel,1,188,2017,August,35,29,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,238.0,179.0,0,Transient,231.13,0,0,Canceled,Daniel Patterson,brucewalsh@example.org,(764)498-7572,4824241581183957,2025-01-23 +Resort Hotel,0,31,2017,March,12,21,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,204.46,1,1,Check-Out,Karen Mendez,hannahberg@example.net,001-242-642-2994x2379,4591075980214489,2024-04-22 +City Hotel,0,5,2017,February,9,27,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,72.0,179.0,0,Transient,70.14,0,0,Check-Out,John Johnson,cassandramartin@example.org,+1-868-452-4485,38343449311737,2024-11-08 +Resort Hotel,0,105,2017,December,49,9,0,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,86.85,0,0,Check-Out,Andre Haynes,hoganmichelle@example.com,(395)394-3036,4282267538021039869,2025-07-13 +City Hotel,0,29,2017,March,10,8,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,108.84,0,0,Check-Out,Janet Ryan,joneskathleen@example.org,+1-323-811-4807x45815,639053552415,2025-07-01 +Resort Hotel,1,23,2017,July,27,7,1,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,142.86,0,1,Canceled,Michael Oliver,sally40@example.org,836.363.7296,370627566485787,2026-01-19 +Resort Hotel,1,0,2017,March,13,29,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,74.97,0,1,Canceled,Wesley Henry,perezdavid@example.org,001-627-390-7106x1749,2710834451598048,2024-08-14 +Resort Hotel,0,11,2017,January,2,9,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,63.63,1,1,Check-Out,Andrew Freeman,stephen42@example.com,001-947-885-3149x553,38693690635725,2026-01-13 +Resort Hotel,0,16,2017,March,14,30,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,42.61,1,0,Check-Out,Karen Stephens,brianross@example.net,268.907.2452x54055,6521127708918675,2025-04-06 +Resort Hotel,0,1,2017,September,35,1,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,1,A,H,1,No Deposit,249.0,179.0,0,Transient,215.32,1,1,Check-Out,Nathaniel Baldwin,qblackburn@example.org,884.794.3135,6539776942245657,2025-03-05 +City Hotel,0,87,2017,April,17,24,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,107.0,1,0,Check-Out,Jordan Curry,debbie08@example.org,001-555-606-6717x27236,36044394435164,2025-11-25 +Resort Hotel,0,0,2017,January,4,26,1,0,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,78.91,0,0,Check-Out,William Johnson,sarahjohnson@example.com,591.999.7287,180062451590642,2024-09-19 +Resort Hotel,0,14,2017,August,34,24,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,238.72,1,2,Check-Out,Richard Bond,erinmitchell@example.org,470.858.2699x58654,4011368515737837324,2025-12-07 +City Hotel,1,119,2017,June,26,26,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,38,Transient,85.11,0,0,Canceled,Jason Smith,sarah56@example.com,204-499-0361,5284689503116465,2026-01-25 +City Hotel,0,14,2017,August,33,12,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,177.88,0,1,Check-Out,Scott Norman,dustinsmith@example.net,001-216-363-6460x63337,3540193527831725,2024-05-19 +City Hotel,1,42,2017,October,42,15,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,110.64,0,1,Canceled,Jill Shaw,randolphseth@example.com,845.754.2440,4448639937111695,2024-06-19 +City Hotel,1,362,2017,March,12,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,94.75,0,0,Canceled,Michael Price,hpark@example.net,(788)456-4456,3502638324695257,2024-07-28 +City Hotel,0,1,2017,March,12,22,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,1,No Deposit,14.0,179.0,0,Transient,235.44,1,3,Check-Out,Martha Williams,dodsonadam@example.org,399-381-3434,213138119738780,2025-10-18 +Resort Hotel,1,21,2017,August,31,2,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,75.0,0,Transient,217.87,0,0,Canceled,Melissa Henry,tanya94@example.net,001-854-226-8854x4196,2716952719249453,2025-03-16 +City Hotel,0,2,2017,November,46,17,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.84,0,1,Check-Out,Elaine Martin,kellyvicki@example.net,6595633275,3559939112779598,2025-08-01 +Resort Hotel,0,7,2017,October,42,17,2,0,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,46.66,1,2,Check-Out,Gary Rodriguez,zachary88@example.org,001-362-342-1026x89032,4675828569963036,2025-01-23 +City Hotel,0,83,2017,March,13,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,62.41,0,1,Check-Out,Ryan Gonzalez,william12@example.net,731.667.8187,3526111913248377,2025-01-28 +City Hotel,0,2,2017,March,14,30,1,1,3,0.0,0,BB,BEL,Online TA,Corporate,1,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,124.15,0,1,Check-Out,Mr. Reginald Roman,fischerdonna@example.org,001-544-618-9796x08949,2475537430897044,2024-05-13 +Resort Hotel,1,33,2017,August,35,30,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,E,0,No Deposit,10.0,179.0,0,Transient,233.71,0,1,Canceled,Patricia Williams,zmartin@example.net,609.574.3033,3571511377652267,2024-06-19 +City Hotel,0,142,2017,January,4,24,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.35,0,0,Check-Out,Gerald Vega,schneiderjoshua@example.com,+1-561-685-5788x8753,4512226269717099831,2024-11-06 +City Hotel,0,109,2017,February,7,14,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,126.57,0,1,Check-Out,Crystal Wallace,benjamin65@example.com,784.273.6479,675913209101,2025-06-27 +Resort Hotel,1,162,2017,June,25,19,1,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,234.0,179.0,0,Transient,252.0,0,0,Canceled,Susan Garcia,monicahall@example.net,(967)698-6652x44815,5205119012059648,2024-05-30 +Resort Hotel,1,38,2017,June,26,27,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,107.71,0,2,Canceled,Patrick Potts,christopher52@example.net,001-572-510-6748x43231,3584784379595462,2026-03-14 +Resort Hotel,0,342,2017,May,20,16,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,81.72,0,3,Check-Out,Jessica Richardson,ibaker@example.net,001-546-505-0346x035,4399752930117,2024-09-26 +City Hotel,1,15,2017,December,2,31,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.04,0,1,Canceled,Alicia Warren,djenkins@example.org,618-476-0987x7337,4194754593353962656,2025-01-26 +City Hotel,0,59,2017,April,16,13,2,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,117.33,0,0,Check-Out,Madison Rodriguez,thompsontheresa@example.net,+1-254-518-9856x83598,6011731362084455,2025-10-13 +City Hotel,0,102,2017,March,13,23,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.44,0,1,Check-Out,Douglas Grant,jcastro@example.net,582-567-0966x1079,6587151413510545,2025-06-04 +City Hotel,0,18,2017,July,27,2,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,237.0,179.0,0,Transient,246.03,0,3,Check-Out,Austin Baker,ymoreno@example.org,4066665313,30490770154943,2026-02-11 +Resort Hotel,1,152,2017,October,40,3,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,124.66,0,1,Canceled,Heather Morales,ojohnson@example.net,(911)760-5958x6891,6527362429441392,2024-06-06 +Resort Hotel,0,106,2017,March,12,19,0,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,47.73,0,2,Check-Out,Susan Hutchinson,travis05@example.org,209-436-5934x241,4287584910839,2025-03-20 +City Hotel,0,2,2017,April,15,7,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,1,No Deposit,15.0,221.0,0,Transient-Party,116.82,0,0,Check-Out,Christopher Hudson,oconnorsteven@example.net,001-297-821-1463,4537235143933974224,2024-07-22 +City Hotel,0,60,2017,July,30,23,2,2,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient,222.87,1,1,Check-Out,Jill Barajas,ryanjerry@example.net,(711)247-4591,6011329906310419,2024-05-17 +City Hotel,0,9,2017,May,21,22,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.66,0,1,Check-Out,Dennis Jones,tylerespinoza@example.net,(533)442-1780x3296,5126520004341074,2025-08-06 +City Hotel,0,57,2017,August,35,31,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,157.18,0,2,Check-Out,Charlene Gutierrez,laura31@example.org,9804484593,4189362140129213,2025-12-07 +City Hotel,0,14,2017,December,49,2,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient,138.12,0,1,Check-Out,Crystal Hernandez,justinwilliams@example.net,+1-677-574-9668x079,4477849777101061699,2024-08-29 +Resort Hotel,1,87,2017,September,37,13,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,64.0,0,0,Canceled,Michael Smith,qpatrick@example.org,5902690965,3550883491489529,2025-11-17 +City Hotel,1,7,2017,July,27,4,1,0,2,2.0,0,SC,RUS,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,97.56,0,0,Canceled,Richard Rodriguez,john68@example.net,(758)493-4095x655,5106073968701564,2024-04-01 +Resort Hotel,0,43,2017,February,6,4,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,30.0,179.0,0,Transient-Party,53.66,0,0,Check-Out,Lauren Smith,tristan41@example.org,(528)397-9280,4440995919929852,2025-02-22 +City Hotel,1,195,2017,July,29,18,2,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient-Party,100.95,0,2,Canceled,Breanna Mccall,jeremy64@example.org,(210)708-6886x1725,576141426634,2024-05-15 +City Hotel,0,81,2017,August,35,30,0,1,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,96.4,0,1,Check-Out,Rebecca Lopez,charlesconley@example.com,001-205-849-7443x687,6011530336687082,2025-03-29 +City Hotel,1,53,2017,June,26,22,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.0,0,2,Canceled,John Garcia,gracemartinez@example.com,(406)602-0460,3555781981496076,2025-05-29 +Resort Hotel,0,165,2017,September,39,22,3,5,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,170.0,179.0,0,Transient-Party,107.66,0,0,Check-Out,Mark Weaver,kaylasanders@example.net,001-806-609-0258x24621,30509487470464,2025-07-27 +Resort Hotel,1,290,2017,August,33,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,133.0,179.0,0,Transient,103.0,0,0,Canceled,Brianna Martinez,shermanerica@example.net,+1-568-506-5126x79417,3586882246984402,2026-03-12 +City Hotel,0,89,2017,May,20,13,1,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,100.18,0,0,Check-Out,Shannon Jones,kflores@example.net,335.927.4746,30535863225578,2024-07-05 +City Hotel,0,12,2017,October,40,1,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,117.9,0,2,Check-Out,Victoria Knight,ijohnson@example.com,337.455.1699x91983,4710277385896151,2026-01-02 +Resort Hotel,0,113,2017,March,10,5,1,2,2,2.0,0,BB,GBR,Direct,TA/TO,0,0,0,G,G,0,No Deposit,364.0500000000011,179.0,0,Transient,51.25,0,0,Check-Out,Paul Franco,zoeshaffer@example.org,+1-700-645-8970x9285,4409923194779551,2025-08-03 +City Hotel,0,143,2017,October,40,5,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,29.0,179.0,0,Contract,115.5,0,0,Check-Out,Darin Baker,austin79@example.org,728-245-8840x03588,3520591283081308,2024-10-07 +City Hotel,1,413,2017,October,44,29,0,5,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,39.55,0,0,Canceled,Jeffrey Harrell,sarnold@example.net,+1-897-820-9837x75574,30177727736530,2024-03-31 +City Hotel,1,119,2017,May,19,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,144.16,0,2,Check-Out,Alyssa Powers,william75@example.org,001-505-423-9082x3292,213144783627747,2024-04-24 +City Hotel,0,14,2017,November,44,2,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,79.12,1,2,Check-Out,Jeanette Obrien,twilliams@example.org,+1-354-258-4720,4366669992605,2025-05-16 +City Hotel,1,94,2017,January,3,17,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.68,0,0,Canceled,Nicole Anderson,brandon35@example.org,+1-447-480-8564x4059,6011929044317687,2025-09-06 +City Hotel,0,36,2017,November,44,3,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.68,0,0,Check-Out,Rachel Oneal,shannon00@example.net,(632)288-5947,676127755251,2025-08-11 +City Hotel,1,375,2017,August,34,17,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,9.0,179.0,0,Transient,207.1,0,0,Canceled,Nicole Moore,ycarter@example.com,(903)268-7127,36635500561163,2025-05-31 +City Hotel,0,41,2017,September,37,14,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,141.83,0,0,Check-Out,Donna Mejia,joshuahall@example.net,979-885-5693,4908978664594910,2024-11-17 +Resort Hotel,1,142,2017,June,26,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,133.79,0,1,No-Show,Andre Jones,rachelmiller@example.com,(536)262-8762x2832,341985433022068,2024-08-12 +City Hotel,0,0,2017,January,2,3,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,15.0,179.0,0,Transient,63.62,0,1,Check-Out,Steven Thomas,allen64@example.com,893-606-2076,180076953754068,2024-11-18 +City Hotel,1,89,2017,April,17,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.64,0,2,Canceled,Jaclyn Long,jasonbush@example.net,846-671-6926x84940,3542797611960808,2025-06-28 +Resort Hotel,0,16,2017,October,42,17,0,1,1,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,85.34,0,0,Check-Out,Robert Stark,rickey24@example.org,(827)372-6250,4591470178174258,2025-01-18 +Resort Hotel,0,14,2017,September,36,3,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,73.93,0,1,Check-Out,Joseph Murphy,perezsuzanne@example.net,001-439-819-4478,4276420913131,2024-05-06 +Resort Hotel,0,15,2017,July,30,23,2,4,3,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient-Party,202.2,1,0,Check-Out,Travis Dixon,carol86@example.com,466.793.8609x71059,4455423443326,2024-10-16 +City Hotel,0,14,2017,June,26,23,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,174.85,0,2,Check-Out,Seth Barker,srose@example.net,+1-910-429-4691x78850,3555221239642312,2024-10-24 +City Hotel,0,14,2017,January,2,10,2,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,28.0,179.0,0,Transient,81.66,1,2,Check-Out,Tammy Jacobs,milesjill@example.com,943.490.6838,675905399027,2026-01-05 +City Hotel,0,20,2017,August,32,7,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,217.29,1,1,Check-Out,Laura Harrison,sarahmoore@example.org,3444261887,4892905774025277,2025-03-12 +City Hotel,1,1,2017,November,46,11,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,127.93,0,2,Canceled,John Peterson,willie43@example.org,+1-553-505-4468x53048,3531304548619913,2025-12-07 +Resort Hotel,0,49,2017,August,35,29,1,1,3,2.0,0,BB,ESP,Direct,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,191.86,1,1,Check-Out,Lynn King,robertmartin@example.net,001-698-732-4111x7175,3525259212388815,2024-09-15 +Resort Hotel,1,2,2017,July,30,25,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,185.0,179.0,0,Transient,54.74,0,1,No-Show,Devon Roberts,lawrencehanson@example.net,(308)277-7302,4398428013081158835,2024-09-03 +City Hotel,0,12,2017,August,32,3,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,137.94,0,1,Check-Out,Emily Bullock,christopher40@example.com,(282)539-9102x27928,4352959500514,2024-05-29 +City Hotel,1,414,2017,June,26,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,113.3,0,0,Canceled,Kylie Bailey,karen00@example.net,894-706-3503x3584,4110774417276,2025-06-16 +Resort Hotel,0,139,2017,March,13,31,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,34.0,222.0,0,Transient-Party,61.15,0,0,Check-Out,Roger Holmes,myerscarla@example.com,928-213-0746x823,4522999386483543,2025-07-25 +Resort Hotel,1,98,2017,April,18,30,3,3,2,0.0,0,FB,FRA,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,244.0,179.0,0,Transient,133.09,0,0,Canceled,Dennis Coleman,berrychad@example.org,+1-508-208-0935x063,502067434402,2025-08-20 +City Hotel,0,59,2017,July,31,30,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,143.48,1,1,Check-Out,Patricia Zamora,serranotonya@example.org,001-257-434-6978,4300406034396182,2024-12-16 +Resort Hotel,1,159,2017,May,21,25,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,62.47,0,0,Canceled,Randy Phillips,yorkgina@example.net,211.918.9884x57845,213140493515594,2024-04-30 +City Hotel,1,19,2017,August,33,14,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,218.65,0,1,Canceled,Heather Daniels,marialopez@example.net,(876)392-8219x35176,6585017154433134,2025-05-23 +City Hotel,1,6,2017,May,19,6,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.56,0,0,Canceled,Robert Perkins,mossnathan@example.com,001-451-599-8220x1543,4791507168482932,2025-07-01 +City Hotel,1,94,2017,April,14,3,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,116.73,0,2,Canceled,Nathaniel Walter,darrell99@example.net,227.425.1172,630406402978,2025-10-03 +City Hotel,1,133,2017,August,35,31,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.38,0,1,Canceled,Christine Tyler,pearsonjillian@example.net,+1-542-653-0847x0814,4894942836053025417,2025-09-16 +Resort Hotel,1,52,2017,May,21,23,4,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,138.05,0,1,Canceled,Catherine Holland,vsmith@example.net,(627)760-0730x2171,4869208860595959,2024-11-28 +Resort Hotel,0,266,2017,July,27,3,2,5,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,206.35,0,2,Check-Out,David Washington III,zmcgee@example.org,+1-949-968-5088,3568136052030582,2024-12-25 +Resort Hotel,1,107,2017,May,18,2,2,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,243.0,179.0,0,Transient,71.91,0,0,Canceled,Kimberly Thomas,cheryl21@example.org,452.540.6066,36649627759659,2024-09-27 +City Hotel,0,1,2017,September,37,13,0,1,3,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,216.52,0,1,Check-Out,Dawn Levy,robert21@example.net,+1-564-412-3421x978,4449874944925581339,2024-06-20 +City Hotel,1,158,2017,July,31,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,41,Transient,97.41,0,0,Canceled,Victoria Smith,kbenson@example.com,437.753.1820,4414188128567575164,2024-04-26 +City Hotel,1,15,2017,August,33,17,2,5,2,0.0,0,HB,,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,73.96,0,1,Canceled,Timothy Reilly,todd07@example.net,(897)243-0527x63543,4714746622481189,2025-12-12 +City Hotel,1,414,2017,September,37,15,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,1.0,179.0,0,Transient,71.93,0,0,Canceled,William Silva,michaelwhitehead@example.net,608.562.8119x958,4418748290828609143,2025-03-09 +City Hotel,0,140,2017,July,30,23,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.88,0,0,Check-Out,Keith Gonzalez,joseph25@example.org,3114576203,30218234101618,2024-08-14 +City Hotel,1,140,2017,June,23,1,3,5,3,0.0,0,BB,GBR,Aviation,Corporate,0,0,1,D,D,0,No Deposit,12.0,179.0,0,Transient,103.65,0,2,Canceled,Jeffrey Holden,heidimartinez@example.org,+1-828-995-8575,4081147940689345,2025-03-30 +Resort Hotel,1,14,2017,January,4,23,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,39.81,0,1,Canceled,Karen Hughes,piercerichard@example.com,001-544-989-4373,3579022701253519,2024-10-27 +City Hotel,0,0,2017,March,12,24,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,215.0,0,Transient-Party,63.32,0,0,Check-Out,Christopher Ward,adam90@example.com,001-555-605-7149x648,375630665228194,2025-06-22 +City Hotel,1,19,2017,March,13,24,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,101.29,0,0,Canceled,Amy Boone,garciakevin@example.org,630-838-0977x1122,3552768844007292,2025-01-04 +City Hotel,1,159,2017,July,30,29,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,134.37,0,0,Canceled,Joshua Adams,courtney84@example.com,+1-870-458-0858,676262151720,2025-06-08 +Resort Hotel,0,0,2017,February,9,27,1,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,C,0,No Deposit,267.0,179.0,0,Transient,46.66,0,1,Check-Out,Tammy Mcdaniel,moralesnicole@example.com,544-490-7477,4487185351633535,2024-08-15 +Resort Hotel,0,48,2017,January,3,17,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient-Party,77.97,0,1,Check-Out,Steven Knight,floresmegan@example.com,420.620.7104x8142,4131450578449044,2025-09-22 +Resort Hotel,1,206,2017,August,31,2,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Canceled,George Weber,pachecoeric@example.com,(796)276-2311x878,4135868849735790,2025-09-10 +Resort Hotel,0,12,2017,July,30,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,130.83,1,0,Check-Out,Jeffrey Hall,harrissara@example.org,(841)921-7425x154,3501330232419837,2025-03-09 +City Hotel,1,414,2017,May,21,24,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,98.86,0,0,Canceled,Laura Adams,benjaminterry@example.net,9247661385,676268685846,2025-10-25 +City Hotel,0,136,2017,April,17,22,2,3,1,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,105.34,0,0,Check-Out,Sara Hernandez,stephenharper@example.org,627.568.7476,180050962830037,2025-04-03 +City Hotel,1,98,2017,February,5,2,1,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.48,0,0,Canceled,Emily Robinson,ksimmons@example.net,+1-504-787-5233,676232040524,2025-03-29 +Resort Hotel,0,6,2017,February,6,6,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,83.83,0,0,Check-Out,Samantha Harris,albert63@example.net,421-813-5243x393,30403365670330,2024-10-26 +Resort Hotel,1,91,2017,March,12,23,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,142.0,179.0,0,Transient-Party,64.39,0,0,Canceled,Tiffany Davis,kayla88@example.com,(794)960-8960x6389,4560725679821781,2025-06-16 +City Hotel,0,16,2017,April,14,5,2,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.71,0,1,Check-Out,Veronica Nelson,matthew99@example.org,(602)654-8446,6011236877904205,2025-10-09 +Resort Hotel,0,40,2017,June,24,8,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,104.92,0,3,Check-Out,Mr. Ryan Walker,brownrichard@example.net,298-429-3820x357,4184130372459,2024-07-09 +Resort Hotel,0,81,2017,June,26,24,0,3,1,0.0,0,HB,,Groups,Direct,0,0,0,D,D,1,No Deposit,318.0,179.0,0,Transient-Party,112.43,0,0,Check-Out,Christopher Thompson,colemannicole@example.com,650-846-6385x2391,4948079510247171457,2025-09-18 +Resort Hotel,0,40,2017,March,11,9,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,40.57,0,1,Check-Out,Brian Allen,schmidtdouglas@example.org,860-790-8499,4673976061788,2024-11-24 +City Hotel,0,263,2017,September,36,7,0,1,2,0.0,0,SC,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient-Party,103.98,0,0,Check-Out,Kevin Greene,ispencer@example.com,964-330-0438,639099390234,2025-11-02 +City Hotel,0,22,2017,August,31,2,0,2,2,1.0,0,BB,PRT,Online TA,Direct,0,0,1,F,D,0,No Deposit,11.0,179.0,0,Transient,136.39,0,1,Check-Out,Daniel Garcia,kelleyerika@example.org,883.985.2205x1244,4012896512377705,2025-10-29 +City Hotel,1,414,2017,May,18,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,125.22,0,0,Canceled,Micheal Ramos,millertaylor@example.com,407.824.0126,371642829318070,2025-02-17 +City Hotel,0,4,2017,August,32,4,0,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,Janice Gilbert,cmorales@example.org,001-663-770-8226x51575,30554181819855,2025-10-01 +City Hotel,0,18,2017,November,47,24,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.12,0,1,Check-Out,Joshua Nelson,michellecastro@example.com,5306262872,6011451042842152,2025-05-20 +Resort Hotel,0,144,2017,March,13,31,1,3,1,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,C,1,Refundable,15.0,222.0,0,Transient-Party,36.03,0,0,Check-Out,Katherine Clarke,bennettjames@example.com,001-805-594-9207x815,6542436218429585,2024-03-30 +City Hotel,0,157,2017,March,12,20,2,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,108.33,0,0,Check-Out,Erica Porter,heathjon@example.org,672.297.5486x241,370171320992416,2025-02-17 +Resort Hotel,0,94,2017,April,14,5,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,62.35,0,1,Canceled,Sara Obrien,sheryllevy@example.net,001-769-388-2733x94279,4266851859473671024,2025-12-02 +Resort Hotel,0,11,2017,July,30,25,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,188.0,179.0,0,Group,118.96,0,0,Check-Out,Michael Burke,robert89@example.com,638.884.4379,372030464307898,2025-12-25 +City Hotel,1,52,2017,June,23,5,2,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,110.12,0,1,Check-Out,Jamie French,timothyperez@example.com,(711)717-7701x4774,4514655087001,2025-04-05 +Resort Hotel,0,0,2017,February,8,24,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,K,0,No Deposit,17.0,331.0,0,Transient,1.08,0,0,Check-Out,Ernest Sullivan,iwilliams@example.com,793.407.2997x7473,213186665868899,2025-11-26 +Resort Hotel,0,39,2017,December,50,9,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,15.0,179.0,0,Transient,131.21,1,1,Check-Out,Earl Hall,vwhite@example.net,583-697-9847,3517171822105101,2025-03-09 +City Hotel,1,414,2017,July,29,20,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,110.77,0,0,Canceled,Julie Johnson,krichards@example.com,376-455-1776x3185,4973696128790139168,2025-01-06 +City Hotel,0,29,2017,September,36,9,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,0.9,0,0,Check-Out,Dana Wolfe,danderson@example.com,001-453-662-8651x6293,4250899419066810,2025-02-05 +Resort Hotel,1,3,2017,January,2,6,1,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,Non Refund,248.0,179.0,0,Transient,162.8,0,0,Canceled,Robert Price,anthony72@example.net,001-244-991-7362x9522,4108644458811922,2025-06-22 +Resort Hotel,0,47,2017,August,34,21,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,237.0,179.0,0,Transient,194.28,0,2,Check-Out,James Henry,jerrysmith@example.org,540.880.0756x39044,4267297070849106,2026-02-09 +City Hotel,0,44,2017,April,18,27,2,2,2,0.0,0,BB,POL,Direct,Direct,1,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,115.37,0,1,Check-Out,Susan Davis,stephanie33@example.net,710.303.2162x6348,2253030705361985,2024-06-04 +Resort Hotel,1,265,2017,July,27,5,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Contract,206.4,0,1,Canceled,Darryl Richardson,wheelercassandra@example.net,967.901.9839x808,30323433741253,2025-12-09 +Resort Hotel,1,25,2017,December,2,30,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,242.0,179.0,0,Transient,54.64,0,1,Canceled,Karen Jackson DVM,ptaylor@example.net,(876)693-9256x11781,3519890658037090,2025-02-24 +City Hotel,0,1,2017,April,14,1,1,3,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,1.06,0,0,Check-Out,Linda Patrick,xzimmerman@example.net,(223)334-3974,5213143632988226,2024-05-22 +Resort Hotel,0,64,2017,November,44,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,62.82,0,0,Check-Out,Veronica Diaz,taylortyler@example.net,(978)974-4889x02253,4688103696939290,2025-04-13 +City Hotel,1,14,2017,June,26,29,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.04,0,0,No-Show,Ann Moon,amberlopez@example.org,922.739.3693x040,213104507429788,2024-07-04 +Resort Hotel,0,38,2017,March,12,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,49.25,1,2,Check-Out,Michael Williams,christianleonard@example.net,001-803-995-9080x067,2694013878224302,2026-03-24 +Resort Hotel,0,240,2017,October,41,14,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,80.4,0,2,Check-Out,Timothy Chavez,nliu@example.net,+1-741-395-4182x5685,340362993480311,2024-10-07 +Resort Hotel,0,101,2017,September,39,28,2,1,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,317.0,179.0,0,Transient-Party,99.77,0,0,Check-Out,Scott Ramirez,taylorbryan@example.net,+1-962-829-3745x79670,4505580728536965,2024-09-08 +City Hotel,0,0,2017,February,7,11,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,48.41,0,1,Check-Out,Crystal Collins,jennifer33@example.com,681.248.0298x899,4832333711998089,2025-05-11 +City Hotel,1,29,2017,December,52,29,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,61,Transient-Party,109.65,0,1,No-Show,Crystal Davis,westmichelle@example.net,8803541963,4436824774758816,2026-02-11 +City Hotel,0,15,2017,January,2,5,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.28,0,1,Check-Out,Matthew Mueller,ydominguez@example.net,635.924.2884,30553763283605,2025-01-02 +City Hotel,1,36,2017,March,10,9,0,2,2,2.0,0,SC,PRT,Complementary,Direct,0,0,0,F,F,2,No Deposit,12.0,179.0,0,Transient,213.99,0,0,Canceled,Teresa Thompson,crystal71@example.net,001-971-983-6405x668,2232860969827511,2024-04-28 +City Hotel,0,119,2017,April,17,24,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,148.53,0,3,Check-Out,Teresa Jacobson,spencer14@example.org,001-776-624-9598x0930,6511031658313006,2025-09-08 +Resort Hotel,0,169,2017,May,19,5,4,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,225.48,0,1,Check-Out,Robert Gonzalez,christopher61@example.net,+1-945-643-4138x918,6011571110896176,2025-05-16 +City Hotel,0,79,2017,September,39,26,2,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,119.53,0,1,Check-Out,Andrea Garcia,xjackson@example.org,+1-310-774-3912,347684111742394,2025-01-14 +City Hotel,0,1,2017,June,24,9,1,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,14.0,175.0,0,Transient,123.83,0,0,Check-Out,Cassandra Martinez,john47@example.com,001-606-594-2803x947,4207849417063669,2025-08-09 +City Hotel,0,28,2017,October,41,10,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,0,Transient,87.95,0,0,Check-Out,Philip Cummings,danafranco@example.org,(403)638-6302x969,4594462897280179241,2025-02-13 +Resort Hotel,0,10,2017,June,24,10,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,E,1,No Deposit,243.0,179.0,0,Transient,201.38,0,2,Check-Out,Timothy Sanchez,staceymejia@example.com,609.514.8438x58452,3509626441303858,2024-08-10 +City Hotel,1,187,2017,May,19,7,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,117.89,0,0,Canceled,Scott Miranda,campbelljavier@example.net,8683282461,4030736728433470,2025-05-27 +Resort Hotel,0,46,2017,September,36,5,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,E,1,No Deposit,245.0,179.0,0,Transient,53.42,0,0,Check-Out,Alicia Wagner,russell48@example.net,+1-423-884-6193x2022,38655050926408,2024-09-14 +Resort Hotel,0,92,2017,July,30,25,2,5,3,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,140.91,0,1,Check-Out,Chad Williams,psimpson@example.org,3253419005,3559512304864179,2025-06-02 +Resort Hotel,0,17,2017,March,11,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,119.0,179.0,0,Transient,48.27,0,2,Check-Out,Carlos Hensley,jacob57@example.org,9124773959,3540145154645851,2024-07-21 +City Hotel,1,138,2017,April,14,1,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,82.79,0,0,Canceled,Laura Ramirez,sanfordjason@example.org,+1-820-306-7835,4405760917598,2025-01-08 +Resort Hotel,0,139,2017,May,21,19,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,75.81,0,2,Check-Out,Christopher Rodriguez,xsmith@example.com,221.203.7613x8391,4541290075570734,2024-07-06 +Resort Hotel,0,1,2017,February,7,17,0,2,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,187.0,179.0,0,Transient,48.62,0,0,Check-Out,Mark Webster,brandimccoy@example.org,001-521-467-0238x177,4808676919847514847,2026-01-26 +City Hotel,1,56,2017,November,46,17,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,102.56,0,0,Canceled,James Smith,melissa14@example.org,(728)738-0667,3591455444406842,2025-01-05 +City Hotel,0,46,2017,December,49,3,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.42,0,2,Check-Out,Robert Byrd,pstewart@example.net,638-443-4828x6630,30494588480110,2025-02-11 +City Hotel,0,51,2017,October,41,13,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,78.0,179.0,0,Transient,109.42,0,1,Check-Out,Joshua Powell,richardrichardson@example.org,505-313-7665,3540027981391117,2025-07-04 +Resort Hotel,0,3,2017,March,10,5,1,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,51.82,0,1,Check-Out,Tonya Harding,tyler01@example.net,+1-453-402-9769x5586,4441046968880197,2024-12-14 +Resort Hotel,1,139,2017,December,52,26,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,169.0,179.0,0,Transient,89.21,0,0,Canceled,Larry Higgins,robertjackson@example.com,001-482-795-8797x2960,3512727647146904,2024-08-16 +City Hotel,0,82,2017,December,49,5,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,8.0,179.0,0,Transient,105.4,0,2,Check-Out,Nicole Mills,rhondaburton@example.net,420-651-9822,4265024170777499425,2024-05-23 +Resort Hotel,1,193,2017,July,29,17,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient-Party,92.33,0,0,Canceled,Jonathan Porter,jacqueline57@example.org,805.804.8553x5632,3558438951520339,2025-12-30 +City Hotel,1,143,2017,August,32,5,2,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.28,0,0,Canceled,Christine Greene,brandi69@example.net,+1-705-493-5332,676399705844,2024-08-12 +City Hotel,0,56,2017,October,40,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,267.0,179.0,0,Transient,83.79,0,0,Check-Out,Edwin Munoz,calderonbrenda@example.org,001-588-886-5271,060482766734,2024-07-26 +Resort Hotel,0,8,2017,October,41,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,49.55,0,0,Check-Out,James Brooks,brian61@example.com,243.610.1221x42078,4162984213824122,2026-01-26 +City Hotel,0,32,2017,May,21,24,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,30.0,179.0,0,Transient-Party,133.61,0,0,Check-Out,Craig Smith,mendozajason@example.com,710-927-6559,342148746742422,2024-04-12 +City Hotel,0,3,2017,May,18,1,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,190.07,0,1,Check-Out,Mark Thomas,durhamlaura@example.com,926.241.0087,213150141477469,2024-03-27 +Resort Hotel,0,277,2017,August,34,19,1,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,206.62,1,1,Check-Out,Rachel Curry,millerluis@example.org,001-243-779-6619x997,4898913276658783803,2025-11-23 +Resort Hotel,0,0,2017,January,4,20,0,10,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,15.0,179.0,0,Transient,108.1,0,1,Check-Out,Elizabeth Sanchez,barnesstacy@example.com,001-853-467-1660x3409,4616364550876377,2024-11-10 +City Hotel,0,32,2017,April,14,4,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,117.51,0,0,Check-Out,Darren Gonzales,mschneider@example.org,558-291-2796x8728,5381863704504561,2024-09-10 +Resort Hotel,1,280,2017,June,25,15,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,129.14,0,2,Canceled,Mr. John Khan,dannyanderson@example.net,+1-979-616-0275,568608773731,2025-07-30 +City Hotel,1,361,2017,July,30,25,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,39,Transient,137.4,0,0,Canceled,Jason Williams,aduffy@example.net,248.896.7520x96133,4723511626972933,2025-09-30 +City Hotel,1,156,2017,May,20,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,146.79,0,0,Canceled,Stephanie Livingston,pcharles@example.com,001-409-973-0152x4585,343700251743911,2025-09-25 +Resort Hotel,0,36,2017,July,28,15,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,309.0,179.0,0,Transient,47.01,0,1,Check-Out,Anthony Marshall,harmonchristopher@example.net,001-204-448-4956x58415,6011532631880206,2025-05-04 +City Hotel,0,87,2017,December,52,25,2,2,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.53,0,1,Check-Out,Matthew Hamilton,justinmacdonald@example.net,989-368-8243,3540750673315256,2025-04-10 +City Hotel,1,286,2017,July,30,26,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.49,0,0,Canceled,Heather Hunt,millerderek@example.org,477.548.1821x6149,4452626918470738861,2024-09-20 +Resort Hotel,1,94,2017,June,25,18,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,241.0,179.0,0,Transient,131.25,1,3,Canceled,Timothy Melton,brittneylee@example.net,405.833.2850x589,4849007287670735630,2025-09-06 +City Hotel,0,13,2017,April,16,16,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,78.59,0,1,Check-Out,Harold Lee,whitneyrebecca@example.com,996.954.0915,180059767486440,2025-09-04 +Resort Hotel,0,34,2017,July,27,3,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,62,Transient,98.35,0,2,Check-Out,Carol Gay,edwardperez@example.org,2673595053,3556296227508302,2025-04-01 +Resort Hotel,1,1,2017,November,45,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,174.0,234.0,0,Transient,52.2,0,0,Canceled,Michael Nelson,rayjoseph@example.org,(764)369-7932x008,4374841754255252,2025-04-13 +City Hotel,0,4,2017,January,5,28,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,134.83,0,0,Check-Out,Daniel Meyer,rita18@example.com,868.790.3181,2291251894703761,2025-04-16 +City Hotel,1,114,2017,July,30,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,123.92,0,0,Canceled,Jamie Lindsey,lonnie61@example.com,+1-357-921-4995x46513,4711944964277,2024-10-28 +Resort Hotel,1,50,2017,June,24,16,0,1,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,143.78,0,1,Canceled,Marc Mitchell,adamskathleen@example.org,(750)729-8575x55563,2276273995837321,2025-10-12 +City Hotel,0,6,2017,December,52,30,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.4,0,2,Check-Out,Jose Martinez,bryanwilkinson@example.org,637-225-3921,180089640666629,2024-09-10 +Resort Hotel,0,0,2017,January,4,24,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Group,49.08,1,2,Check-Out,John Gallagher,spencergreg@example.com,+1-960-953-8454x7351,4167371093276150959,2024-07-28 +City Hotel,1,302,2017,July,30,27,0,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.88,0,0,Canceled,Richard Chandler,jessicajordan@example.org,5577022324,675978087590,2024-11-14 +Resort Hotel,0,165,2017,March,12,21,2,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,134.95,1,3,Check-Out,Andrea Donaldson,emorgan@example.net,(931)342-1648x311,30051590657224,2026-03-04 +City Hotel,0,1,2017,February,9,28,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,79.73,0,1,Check-Out,Jamie Guerrero,richard65@example.com,444-985-2259x0029,213144497569367,2024-10-22 +Resort Hotel,0,258,2017,June,23,10,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,132.96,0,1,Check-Out,Nathan Adams,anthonygalvan@example.com,001-739-637-1554x5606,3591669567447561,2024-08-27 +City Hotel,0,16,2017,June,24,10,1,2,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,106.3,0,0,Check-Out,Thomas Davis,frankpearson@example.com,348-860-1958,4232074601415,2024-09-12 +Resort Hotel,0,1,2017,January,2,5,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,258.0,179.0,0,Transient,42.73,0,0,Check-Out,James Williams,yoderkevin@example.com,535-455-0260,4836931769726,2025-10-31 +City Hotel,1,37,2017,January,3,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,92.02,0,0,Canceled,Troy Lee,laura67@example.org,(364)664-0048,4390825082334974070,2024-08-30 +Resort Hotel,1,52,2017,June,26,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,237.0,179.0,0,Transient,97.43,0,1,Canceled,Jennifer Mckenzie,wolfekim@example.net,+1-646-368-5981,4740578412420269,2024-10-28 +City Hotel,1,414,2017,September,36,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,100.65,0,0,Canceled,Joshua Scott,pamela49@example.net,001-882-995-5128x616,30382313263333,2024-06-19 +City Hotel,0,2,2017,May,18,5,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,63.0,0,Transient,82.45,0,1,Check-Out,April Jones,sullivanlaura@example.net,698-244-3031,3573299865692205,2026-03-06 +City Hotel,1,268,2017,July,28,11,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,60.54,0,0,Canceled,Deborah Webb,brittany44@example.org,849-615-2668x571,6568065872074574,2025-05-22 +City Hotel,1,38,2017,November,45,5,1,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,45.61,0,0,Canceled,John Zavala,yfox@example.org,5743909435,6011613150093429,2025-06-03 +City Hotel,0,50,2017,August,35,30,1,3,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,248.0,0,2,Check-Out,Katherine Miller,howard73@example.net,616.808.3924,4549511806523144,2024-08-16 +City Hotel,1,204,2017,August,33,16,2,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,167.51,0,0,Canceled,Steven Jensen,cassidy85@example.org,644.781.7734x46785,563926137198,2026-02-15 +City Hotel,1,345,2017,July,29,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.66,0,0,Canceled,Sarah Sosa,blakeclark@example.net,345-228-8140,2263422699258012,2025-11-03 +Resort Hotel,0,1,2017,May,19,10,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,C,0,No Deposit,241.0,179.0,0,Transient,63.14,1,1,Check-Out,Justin Small,jorgeochoa@example.net,+1-240-263-9755,6011566994646432,2024-08-28 +Resort Hotel,0,1,2017,January,2,8,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,46.32,0,1,Check-Out,Erin Ortega,smithmarie@example.com,661.404.0311x5110,4844497249030958,2026-01-23 +Resort Hotel,0,11,2017,January,2,5,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,328.0,179.0,0,Transient,51.73,0,2,Check-Out,Mary Conley,eric18@example.com,001-800-820-7892x208,30120377980966,2025-02-16 +City Hotel,0,72,2017,October,42,15,2,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,114.01,0,0,Check-Out,Melanie Drake,heatherdavenport@example.org,975-259-9431,2516895289108595,2025-02-03 +Resort Hotel,0,40,2017,February,8,18,2,2,1,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,164.0,179.0,0,Transient,39.4,0,0,Check-Out,Danielle Briggs,emilymckay@example.com,934.439.6589,6011555954837446,2025-11-25 +City Hotel,0,20,2017,July,28,8,0,1,2,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.15,0,2,Check-Out,Dillon Case,nicole87@example.com,+1-210-213-2278,4346525593510697,2024-12-16 +Resort Hotel,0,0,2017,March,10,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,238.0,179.0,0,Transient,87.04,0,1,Check-Out,William Esparza,jacob01@example.org,(626)899-1080x5084,30477488466198,2024-08-29 +City Hotel,0,38,2017,April,17,24,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,129.22,0,1,Check-Out,Kevin Solis,kbanks@example.net,817-742-1716,3557373062104593,2024-07-13 +Resort Hotel,0,37,2017,July,27,5,4,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,238.0,179.0,0,Transient,235.32,1,0,Check-Out,Roger Peters,thomasdawn@example.com,7466218863,30243876394511,2025-12-06 +Resort Hotel,0,37,2017,November,45,10,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient,41.69,0,0,Check-Out,Colleen Blanchard,heatherbrooks@example.com,209-422-2758,3566687333621880,2024-10-04 +City Hotel,1,62,2017,July,31,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,112.66,0,0,No-Show,Christian Garcia,amberbrown@example.com,4435106667,4365783491281418,2026-01-02 +Resort Hotel,0,115,2017,March,12,19,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,241.0,179.0,0,Group,49.51,0,1,Check-Out,Heidi Newton,awallace@example.com,(264)296-7644x731,2273100774195212,2025-09-10 +City Hotel,1,20,2017,September,39,23,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.39,0,1,Canceled,Gary Miller,dennisrodriguez@example.com,836.257.1170,4723693501057665,2024-08-22 +Resort Hotel,1,19,2017,September,36,3,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,John Hebert,fscott@example.net,(562)628-5818,2498500335111286,2025-09-01 +City Hotel,1,402,2017,August,33,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,86.42,0,0,Canceled,Erik Small,mcclainisabel@example.net,972-451-5376x755,4156373093762529,2025-06-21 +City Hotel,0,10,2017,January,4,21,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,K,1,No Deposit,8.0,179.0,0,Transient,121.08,0,1,Check-Out,Robert Moore,zstevenson@example.org,(730)434-9499,4630736675988380523,2026-02-21 +Resort Hotel,0,18,2017,September,36,4,2,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient-Party,55.34,0,0,Check-Out,Andre Pace,zachary98@example.org,833-326-7570x340,503849451300,2025-12-07 +City Hotel,0,57,2017,January,2,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,76.04,0,2,Check-Out,David Koch,whamilton@example.com,(617)425-0244x5867,4887268335938,2025-07-28 +City Hotel,1,97,2017,August,34,25,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,133.28,0,1,Check-Out,Tyler Chapman MD,josephhart@example.com,311-274-6286x0180,4298382270265411,2024-08-27 +Resort Hotel,0,46,2017,February,9,26,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,237.73,1,0,Check-Out,Donna Bishop,antoniocampbell@example.net,+1-319-518-7708x97657,4470347908992740040,2024-08-08 +City Hotel,0,22,2017,November,47,24,2,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,72.0,0,Transient-Party,86.25,1,0,Check-Out,Christopher Murphy,croth@example.org,802.373.5048,2275760961045591,2024-03-28 +City Hotel,1,207,2017,August,35,31,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,106.01,0,0,Canceled,Bradley Miller,kingpamela@example.net,+1-242-585-8081x4487,3575963347224485,2025-01-10 +City Hotel,1,25,2017,December,50,14,1,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,B,K,1,No Deposit,13.0,179.0,0,Transient-Party,108.4,0,0,Canceled,Alejandra Fernandez,williamsnathan@example.com,001-338-636-0844x10297,4225397652344401680,2025-09-08 +City Hotel,0,43,2017,March,9,1,0,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,97.08,0,2,Check-Out,Brandon Cordova PhD,mackenzie67@example.org,001-878-668-4337,180087695638527,2025-06-01 +City Hotel,1,153,2017,March,14,30,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,97.94,0,0,Canceled,Wendy Smith,ylopez@example.org,353-276-4745x8205,180095901308611,2025-07-22 +City Hotel,1,392,2017,June,24,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,136.01,0,1,Canceled,Casey Terrell,fwagner@example.com,244-730-5699,3566409513783871,2025-07-11 +Resort Hotel,0,2,2017,June,24,8,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,241.0,179.0,0,Transient,218.45,0,1,Check-Out,Michael Serrano,kiddstephanie@example.net,472-468-3233x53252,180001325348019,2025-07-08 +City Hotel,0,34,2017,November,46,15,0,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,104.75,0,1,Check-Out,Kenneth Williams,joseph42@example.com,568.755.6326x9924,3584576660170504,2026-02-19 +City Hotel,1,146,2017,June,26,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.24,0,1,No-Show,Erin Williams,debrafisher@example.org,001-491-739-1858,30448979720609,2024-12-30 +Resort Hotel,0,10,2017,December,50,10,1,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,E,E,0,No Deposit,39.0,179.0,0,Transient-Party,75.33,0,0,Check-Out,Virginia Mendez,tmorrison@example.net,(752)805-1459x382,3512602814954218,2024-12-13 +City Hotel,1,151,2017,September,38,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,137.39,0,0,Canceled,Cheryl Jackson,fcastillo@example.net,262-970-0558x78721,341680146592131,2024-12-11 +Resort Hotel,1,107,2017,April,15,9,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,175.38,0,1,Canceled,Wyatt Rodriguez,xgonzalez@example.net,001-505-925-4647x5081,676202303647,2025-11-16 +Resort Hotel,0,143,2017,July,30,27,1,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,220.34,1,2,Check-Out,Lisa Fox,kristen46@example.org,001-523-668-3398x6777,3541778070278057,2024-07-14 +City Hotel,0,197,2017,June,23,8,2,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,124.23,0,0,Check-Out,Diane Brown,grant53@example.com,247-798-4811x6016,2265723918392682,2025-11-09 +City Hotel,0,4,2017,March,12,20,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.21,0,2,Check-Out,Debbie Schneider,xparker@example.com,(302)902-2640,3547497552348924,2024-11-21 +City Hotel,0,21,2017,October,41,12,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,65.83,0,0,Check-Out,Anne Obrien,sheiladonaldson@example.com,779.781.2104,3506402514966127,2025-11-12 +City Hotel,0,36,2017,August,34,23,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,239.0,179.0,0,Contract,176.5,0,3,Check-Out,Amanda Phelps,eric35@example.net,290-738-6330x334,180045752414539,2024-07-22 +Resort Hotel,0,5,2017,May,19,6,1,1,2,0.0,0,BB,RUS,Direct,Direct,0,0,1,E,E,0,No Deposit,16.0,179.0,0,Transient,241.88,0,1,Check-Out,Melissa Patrick,jmorris@example.net,784-313-3672,213176970012101,2024-11-27 +Resort Hotel,0,14,2017,August,35,30,3,5,2,1.0,0,HB,ESP,Direct,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,211.79,0,1,Check-Out,Jordan Carter,hubbardvalerie@example.com,305-688-4838x63554,3552191579853113,2024-10-03 +City Hotel,0,11,2017,June,26,25,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,110.92,0,1,Check-Out,Jennifer Roman,zperkins@example.com,570-524-9242,3515576862426898,2025-11-24 +City Hotel,0,283,2017,October,40,3,2,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,64.68,0,2,Check-Out,William Parker,ovalencia@example.com,733-970-6524,3571463101130915,2024-12-06 +City Hotel,0,317,2017,March,13,28,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,60.58,0,0,Check-Out,David Hernandez,floresemily@example.org,807.498.9716,3561492586974036,2025-04-01 +City Hotel,0,14,2017,November,47,24,0,2,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.35,0,0,Check-Out,Bobby Matthews,schultzsamuel@example.net,+1-713-206-6411x51337,4927793000226011,2024-05-14 +City Hotel,0,20,2017,March,11,15,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,46.64,0,1,Check-Out,Brian Cole,ashley57@example.net,916-460-8071x8120,4732996392775207,2026-02-02 +City Hotel,1,0,2017,December,2,31,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,8.0,179.0,0,Transient,4.41,0,1,Canceled,Benjamin Townsend,ymcdonald@example.com,271-515-1989,2720527569691337,2025-05-15 +City Hotel,0,97,2017,June,23,9,2,1,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,29.0,179.0,61,Transient,137.35,0,0,Check-Out,Lauren Higgins,ayalalaura@example.org,952-877-1232x48050,180017496069614,2024-06-16 +City Hotel,0,0,2017,March,12,22,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,36.81,1,1,Check-Out,Bryan Newman,shanewise@example.org,(361)703-1967,3535731530249117,2025-09-17 +City Hotel,0,1,2017,July,29,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,44.0,179.0,0,Transient,127.9,0,0,Check-Out,Kristen Matthews,stevenhubbard@example.com,929-320-3337x21387,180065873558865,2024-05-20 +City Hotel,1,325,2017,May,20,18,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,123.41,0,0,Canceled,Christine Kennedy,rowlandtanya@example.com,(281)210-1574x8313,30086878340564,2025-08-17 +Resort Hotel,0,2,2017,January,4,23,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,I,2,No Deposit,306.0,179.0,0,Transient-Party,62.59,0,0,Check-Out,Christopher Lee,taylor92@example.com,(417)416-0465,4724929415322558,2025-06-27 +Resort Hotel,0,0,2017,January,3,16,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,45.24,0,1,Check-Out,Andre Farrell,johncrane@example.org,001-359-416-9853x827,3574122236268753,2025-01-17 +Resort Hotel,0,181,2017,April,14,1,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,61.71,1,0,Check-Out,Cody Jimenez,madisonmiller@example.net,710-802-7256x148,3516401686290074,2024-12-02 +Resort Hotel,0,9,2017,February,8,23,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,299.0,179.0,0,Transient-Party,102.49,0,1,Check-Out,Jennifer Fletcher,moralesjason@example.com,001-368-916-1049x5513,3527200986925224,2025-03-31 +City Hotel,0,20,2017,April,15,10,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.22,0,2,Canceled,Casey Murphy,kellis@example.com,+1-388-600-2540,503812843491,2025-06-12 +City Hotel,0,4,2017,August,34,23,0,1,2,1.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,140.75,0,1,Check-Out,Jennifer Edwards,megan74@example.net,740-853-0875x96051,30588675098634,2025-05-17 +Resort Hotel,1,333,2017,August,32,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,177.46,0,1,Canceled,Lacey Graves,elizabethmiddleton@example.org,+1-918-929-1514,6551500662308583,2024-10-29 +City Hotel,0,42,2017,October,40,5,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,83.71,1,1,Check-Out,Richard Best,benjamin18@example.org,689-277-7950x893,180059490043419,2024-06-13 +Resort Hotel,0,2,2017,March,12,24,0,1,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,320.0,179.0,75,Transient,51.38,0,0,Check-Out,John Mcneil,ycline@example.net,(609)935-6031x18853,4169812447457893,2025-11-30 +City Hotel,1,172,2017,August,32,5,2,5,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,245.58,0,0,No-Show,Stephen Allen,danielsingh@example.net,6868115155,4462700067235125,2025-10-25 +City Hotel,1,253,2017,November,46,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,162.75,0,0,Canceled,Tina Solomon,ecortez@example.net,(526)236-1457x19699,372238544289776,2024-06-16 +Resort Hotel,1,138,2017,June,27,30,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,135.22,0,2,Canceled,Jennifer Townsend,bmiller@example.net,(526)646-2278x566,676289690288,2025-12-02 +Resort Hotel,1,110,2017,July,27,4,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,95.78,0,1,No-Show,Michelle Mcbride,kfoster@example.com,761-210-5623,6011755672202069,2024-10-23 +Resort Hotel,0,0,2017,March,10,8,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,51.41,0,0,Check-Out,Aaron Webb,jguzman@example.net,(883)345-6981x314,4325653423885074,2025-09-24 +City Hotel,1,49,2017,April,17,22,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.62,0,0,Canceled,Kathryn Clark,andersonjames@example.org,588.566.2145,3586945677439434,2025-06-08 +Resort Hotel,0,50,2017,August,34,23,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,216.33,1,1,Check-Out,Matthew Doyle,iyu@example.org,+1-498-400-9174x873,060428159796,2025-03-03 +Resort Hotel,0,88,2017,July,28,12,0,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,38.0,179.0,0,Transient-Party,127.72,1,1,Check-Out,Kiara Preston,zwarren@example.com,001-726-378-6827x5738,30347347415951,2024-06-01 +City Hotel,1,68,2017,March,14,30,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,123.59,0,2,Canceled,Lisa Salazar MD,thomaspalmer@example.net,(706)929-0638,5491483992087505,2025-12-17 +Resort Hotel,0,4,2017,March,11,10,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,52.13,0,3,Check-Out,Rebecca Gibson,littleanthony@example.org,570-247-2214x521,4219901365585357832,2025-07-26 +City Hotel,1,385,2017,May,22,26,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,79.52,0,0,Canceled,Kimberly Ryan,michael29@example.com,354-704-3343x576,340206164568893,2024-12-28 +City Hotel,1,255,2017,August,33,13,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.05,0,2,Canceled,Amanda Cook,dorseyjo@example.net,641-450-9221,4193372312094255,2025-07-22 +City Hotel,0,3,2017,October,41,10,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.18,0,2,Check-Out,Mark Conner,edavis@example.org,+1-729-732-7544x56194,4283111148506855,2024-09-25 +City Hotel,0,2,2017,December,52,24,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,101.59,1,0,Check-Out,Shawn Hickman,cmayer@example.org,465.364.9654x71443,3523847962858540,2025-06-27 +City Hotel,1,11,2017,December,52,27,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient-Party,91.49,0,0,No-Show,Lisa Hall,davisjanice@example.org,(523)561-9144x684,6011101982682155,2024-12-06 +City Hotel,1,378,2017,July,30,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,83.0,179.0,0,Transient,95.64,0,0,Canceled,Kevin Cole,michael27@example.net,201.982.3369x9275,4600120360721775,2025-04-13 +Resort Hotel,0,50,2017,March,11,15,0,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,2,Refundable,11.0,223.0,0,Transient-Party,39.79,0,1,Check-Out,Matthew Williams,michael12@example.com,788-379-5318,30317528816749,2024-07-31 +City Hotel,1,60,2017,August,33,16,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,132.72,0,3,No-Show,Tanner King,smithpatricia@example.net,672.583.5856,4711840910863092,2024-05-30 +Resort Hotel,0,321,2017,October,41,9,2,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,289.0,179.0,0,Transient-Party,103.19,0,0,Check-Out,Joseph Williams,emilywolfe@example.org,531-591-1183x502,4277045844976400,2024-06-03 +City Hotel,0,0,2017,September,39,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,85.66,0,1,Check-Out,Joann Sanders,katherine87@example.net,(604)902-3769x838,4378267450018588922,2024-04-20 +City Hotel,0,10,2017,January,2,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,2,No Deposit,15.0,68.0,0,Transient,50.41,0,1,Check-Out,Tyler Lang,mgardner@example.net,+1-547-847-4367x171,4091897706359,2025-10-28 +Resort Hotel,0,57,2017,August,31,2,2,7,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,96.37,0,1,Check-Out,Robert Payne,daniel67@example.net,543.478.6838x1051,3581146089046074,2025-05-22 +City Hotel,0,13,2017,February,7,10,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,109.29,0,2,Check-Out,Jonathan Cisneros,rmaldonado@example.net,001-480-976-2206,4688047352679789063,2024-09-10 +City Hotel,1,153,2017,June,26,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,238.0,179.0,0,Transient,119.73,0,1,Canceled,Margaret Torres,hunteramy@example.com,(986)324-2641x0945,4489609256704750,2024-09-27 +Resort Hotel,0,16,2017,August,33,13,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,63.1,1,1,Check-Out,Amber Zhang,smartinez@example.net,880.534.6716x909,4783847273799252454,2024-10-04 +City Hotel,0,109,2017,March,10,4,2,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.83,0,3,Check-Out,Matthew Roberts,wcole@example.org,255-236-4480x301,6538415051064085,2026-01-17 +City Hotel,0,42,2017,October,40,5,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,75.78,0,1,Check-Out,David Hays,kevinhughes@example.net,271-588-7549x6743,30546278140617,2024-07-07 +City Hotel,1,306,2017,September,38,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.23,0,0,Canceled,Erin Gardner,schwartzwilliam@example.org,788.498.2050x85878,4898906390895311,2025-08-14 +City Hotel,1,97,2017,May,22,26,0,4,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,111.41,0,1,Canceled,Michael Miller,dwoods@example.net,(433)755-8073x2750,180091079288966,2024-10-12 +City Hotel,1,25,2017,May,20,14,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,7.0,179.0,0,Transient,245.71,0,0,Canceled,Theresa Smith,brucewashington@example.com,(818)707-3779x543,5395725007933454,2025-03-25 +City Hotel,0,48,2017,March,13,26,2,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,G,F,0,No Deposit,12.0,179.0,0,Transient,132.06,0,3,Check-Out,Paul Scott,daniel18@example.net,(789)205-4604,3526810269005659,2024-06-28 +Resort Hotel,0,11,2017,July,27,3,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,231.07,0,2,Check-Out,Megan Perry,shawn71@example.com,669.230.3116,630456449010,2025-04-02 +Resort Hotel,0,20,2017,March,12,20,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,Christina Martin,alisonpowell@example.com,372-620-7757x4178,676129594914,2025-04-13 +Resort Hotel,1,89,2017,July,30,25,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,I,0,No Deposit,238.0,179.0,0,Transient,104.21,0,0,Canceled,Timothy Collins,amaynard@example.org,001-622-600-5428x8322,343456935055848,2026-01-28 +City Hotel,0,16,2017,July,28,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,133.18,1,1,Check-Out,Kimberly Jones,josephcarlson@example.com,+1-696-922-8372x928,5300500344256305,2024-11-23 +City Hotel,1,324,2017,July,29,15,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,123.89,0,1,Check-Out,Dr. Sarah Smith,sotoamanda@example.com,001-713-895-2097x97479,6519728426682735,2025-09-01 +Resort Hotel,1,195,2017,December,50,14,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,D,0,No Deposit,315.0,179.0,0,Transient,41.37,0,0,Canceled,Richard Bauer,oneilljeffrey@example.org,(945)517-0512x44757,2720158744261653,2026-01-29 +City Hotel,0,2,2017,April,14,5,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,130.59,0,3,Check-Out,Traci Wilson,eschultz@example.org,(801)977-0316,3594974294122504,2025-06-12 +Resort Hotel,0,3,2017,May,20,15,1,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,63.76,1,1,Check-Out,Bryan Miranda,riveramary@example.net,(763)746-8663,213197088444234,2024-04-28 +City Hotel,0,13,2017,April,17,23,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,146.01,0,1,Check-Out,Julie Martinez,howardsandy@example.com,754.356.2814,6573856297470006,2025-02-20 +City Hotel,0,12,2017,March,12,19,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,93.81,0,2,Check-Out,Diana Miller,victoriabowman@example.net,559.589.7156,4708099555218642,2025-11-13 +City Hotel,0,1,2017,May,19,8,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,104.4,0,1,Check-Out,Heather Hughes,brittneystanton@example.net,(931)940-8663,580305517576,2024-04-22 +City Hotel,0,16,2017,April,18,30,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,E,1,No Deposit,14.0,179.0,0,Transient,109.61,0,0,Check-Out,Tony Swanson,heather63@example.net,561.277.9770,502041820809,2024-10-16 +Resort Hotel,0,13,2017,February,9,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,240.0,0,Transient,52.27,0,1,Check-Out,Lisa Montes,matthew28@example.com,001-764-475-9503,3542202853161025,2024-08-13 +Resort Hotel,0,53,2017,October,41,9,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,47.29,1,0,Check-Out,Wendy Martin,leeadam@example.net,001-505-834-7256x018,503835875637,2025-06-22 +Resort Hotel,0,12,2017,June,26,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,107.22,0,1,Check-Out,Joseph Norris,adkinschristine@example.org,+1-931-947-5930x9737,2279930002353108,2025-07-22 +Resort Hotel,1,48,2017,October,41,10,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,70.94,0,0,Canceled,William Todd,atkinsonjacqueline@example.net,860-666-0401,6536422715041147,2025-04-10 +City Hotel,0,45,2017,September,38,19,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,6.0,179.0,0,Transient,154.67,0,1,Check-Out,Gerald Price,qthomas@example.net,+1-480-751-4475,4393813701468,2025-03-28 +Resort Hotel,0,0,2017,October,43,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Group,63.24,0,0,Check-Out,Ashley Hunt,keithbest@example.org,382.329.9267,4898870271246034638,2024-10-11 +City Hotel,0,107,2017,May,22,27,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,112.6,0,0,Check-Out,Christy Lee,sruiz@example.org,+1-618-372-2301x7970,38817508911859,2025-08-27 +City Hotel,0,83,2017,October,41,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,22.0,179.0,0,Transient,46.52,0,0,Check-Out,Patricia Adkins,hmayer@example.org,001-844-464-6393x21943,6011804998023633,2024-08-14 +City Hotel,0,5,2017,November,44,4,0,2,1,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,2,No Deposit,14.0,238.0,0,Transient-Party,62.38,0,0,Check-Out,Willie Perez,brittneydunn@example.org,+1-899-332-7713x2220,4077062234063477,2025-08-05 +City Hotel,1,19,2017,May,22,27,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,142.98,0,1,No-Show,Susan Snyder,jasminemorrison@example.net,+1-371-945-6978,4433616439013,2025-08-18 +Resort Hotel,0,126,2017,May,18,1,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,126.86,1,0,Check-Out,Jasmine Day,hsalazar@example.net,608-652-4825x4228,561501958970,2025-03-17 +Resort Hotel,1,0,2017,February,8,20,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,246.0,179.0,0,Transient,42.99,0,0,Canceled,Andrew Chavez,mhunt@example.com,680-953-2895x189,38452925322132,2025-03-26 +Resort Hotel,0,398,2017,August,32,8,0,1,2,0.0,0,FB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.62,0,2,Check-Out,Henry Huerta,kristingonzalez@example.com,(361)225-2602x191,6011212314068433,2025-01-02 +Resort Hotel,0,58,2017,June,24,8,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,310.0,179.0,0,Contract,93.8,0,0,Check-Out,Mariah Perry,kylefowler@example.net,(989)415-3464x19443,379968297269202,2025-03-01 +Resort Hotel,0,1,2017,November,46,14,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,59.0,0,Transient-Party,58.83,0,0,Check-Out,Tracy Atkins,ryanowens@example.com,925.405.1859,4819328874225218934,2026-03-26 +City Hotel,1,168,2017,April,17,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,81.93,0,0,Canceled,Ryan Wheeler,jamesswanson@example.com,235-388-2844x2135,4575886117321,2025-04-23 +City Hotel,0,59,2017,July,28,8,0,2,1,1.0,0,BB,,Direct,Direct,0,0,0,A,E,2,No Deposit,15.0,179.0,0,Transient,112.2,0,3,Check-Out,Audrey Taylor,wendygarcia@example.net,714.779.7315x7083,6595692874123633,2025-07-26 +City Hotel,1,156,2017,June,26,27,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.9,0,1,Canceled,Zachary Swanson MD,vlee@example.net,570.346.8519x64638,2720818819763541,2024-06-22 +Resort Hotel,1,236,2017,June,24,13,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,52.82,0,0,Canceled,Amanda Conley,ydodson@example.org,+1-939-714-5884x8866,4992105012698,2025-03-27 +Resort Hotel,1,192,2017,November,48,26,4,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,48.79,0,0,Canceled,Eric Short,pateldonald@example.com,6249060754,378312495496997,2024-10-06 +City Hotel,1,156,2017,July,29,19,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient-Party,113.9,0,0,Canceled,Scott Brown,johnstonmegan@example.com,734.226.3342,30173618631005,2025-12-14 +Resort Hotel,1,0,2017,November,47,24,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,11.0,179.0,0,Transient,2.72,0,0,Canceled,Victor Taylor,bradleymcgee@example.com,914-371-2979x78827,4094481266702175,2024-05-27 +Resort Hotel,0,0,2017,March,10,10,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,I,0,No Deposit,16.0,75.0,0,Transient,38.82,0,0,Check-Out,James Hernandez,htownsend@example.net,(660)707-0873,3549603808038635,2024-12-23 +City Hotel,1,414,2017,September,39,26,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.95,0,0,Canceled,Jason Jones,qrodriguez@example.org,001-629-854-1916,3511121423359223,2025-07-03 +Resort Hotel,0,49,2017,October,42,19,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,223.0,179.0,0,Transient,78.96,0,0,Check-Out,Angela Parker,lawrence78@example.com,815.934.1940,180034893067372,2025-10-03 +City Hotel,1,124,2017,December,51,17,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,121.18,0,1,Canceled,Alexander Zavala,ashleypham@example.com,890.690.1029x44069,5119104383791966,2025-01-29 +City Hotel,0,165,2017,August,35,29,2,4,2,2.0,0,BB,AUT,Direct,Direct,0,0,0,F,B,1,No Deposit,14.0,179.0,0,Transient,243.37,0,3,Check-Out,Michael Kane,david53@example.org,(314)266-4828x998,377307636751517,2026-02-08 +Resort Hotel,0,47,2017,July,27,2,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,242.73,1,0,Check-Out,Lindsey York,jacobbartlett@example.com,(555)349-7923x84254,4525188901643723898,2025-11-25 +Resort Hotel,0,69,2017,October,40,3,4,7,2,0.0,0,BB,IRL,Online TA,GDS,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,176.32,0,1,Check-Out,Brandon Baker,sandracortez@example.com,(669)632-4452x70736,38814601490451,2024-05-23 +Resort Hotel,0,36,2017,June,25,21,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,240.0,179.0,0,Transient,139.02,0,1,Check-Out,Stephen White,scottwilliams@example.org,475.683.7977,30002920287455,2024-05-31 +Resort Hotel,0,6,2017,January,4,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,40.9,1,1,Check-Out,Robert Hall,joshuahenry@example.org,607-691-6443x6053,4272156621520207,2024-06-18 +Resort Hotel,0,36,2017,July,30,25,4,7,2,0.0,0,FB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,229.02,1,1,Check-Out,Ryan Pierce,masseymary@example.org,(496)265-9850,572712390127,2025-09-28 +City Hotel,1,42,2017,May,21,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient-Party,88.78,0,0,Canceled,Shannon Cain,williamholland@example.org,(614)609-0504x421,213106759490301,2025-09-13 +Resort Hotel,0,4,2017,April,17,26,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient-Party,63.93,1,3,Check-Out,Laura Vaughn,christophermoore@example.com,+1-703-380-1115x9743,6572045733135784,2024-11-28 +City Hotel,0,11,2017,February,7,10,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.72,0,2,Check-Out,Juan Evans,qbrewer@example.com,507-294-0932,341470279557444,2025-12-24 +City Hotel,1,17,2017,July,30,24,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.07,0,1,Canceled,Nicole Williams,toddmccann@example.com,+1-934-537-9168,675941950742,2025-06-06 +Resort Hotel,1,63,2017,December,51,19,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,112.7,0,0,Canceled,Jennifer Barrett,rmiddleton@example.org,001-459-479-8552x11524,3557106425671910,2025-09-07 +City Hotel,0,1,2017,March,11,12,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,96.5,0,1,Check-Out,Anthony Jones,edward23@example.com,001-742-220-5028x970,3551557906512666,2025-07-25 +City Hotel,1,48,2017,March,10,9,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.78,0,2,Canceled,Leah Rodriguez,cmorales@example.net,(672)298-5368x5489,5276944155653335,2025-07-15 +Resort Hotel,0,1,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,I,1,No Deposit,14.0,80.0,0,Transient,4.37,0,0,Check-Out,John Ward,christopherjohnson@example.com,+1-885-590-5866x3855,213146814948216,2025-09-11 +City Hotel,0,41,2017,April,14,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,84.0,179.0,0,Transient-Party,83.15,0,1,Check-Out,Deborah Garza,jwebb@example.net,662-233-1903,6594361618524859,2024-09-29 +City Hotel,0,3,2017,August,32,6,0,2,1,0.0,0,HB,ITA,Online TA,Direct,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,140.1,0,2,Check-Out,Rebecca Miller,heatherschmidt@example.net,308.522.1044x433,6533958322242506,2026-02-01 +Resort Hotel,0,149,2017,January,3,14,0,3,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,C,1,No Deposit,241.0,179.0,0,Transient,97.99,1,0,Check-Out,Matthew Carroll,natalie33@example.net,+1-637-540-8105x1800,30458120057231,2026-01-05 +City Hotel,0,0,2017,March,12,20,1,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,85.0,179.0,0,Transient,84.19,0,0,Check-Out,Lynn Smith,kathleenpatterson@example.net,590.553.9836,4743367633793877842,2026-01-18 +City Hotel,1,9,2017,August,33,17,0,1,1,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,118.84,0,0,Canceled,Michael Jackson,mary54@example.net,8668062578,3548435895811264,2025-10-29 +City Hotel,0,0,2017,March,11,9,1,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,127.61,0,0,Check-Out,Sharon Hicks,scottchen@example.com,(926)203-4725x462,675917302092,2025-10-30 +Resort Hotel,0,162,2017,May,20,14,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,206.57,0,1,Check-Out,Abigail Mills MD,andrea16@example.com,001-732-391-6368x646,6520575840707037,2024-07-31 +City Hotel,1,19,2017,July,30,28,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.93,0,0,Canceled,Paula Lopez,ramirezapril@example.com,597.387.2009,2282400314892073,2025-10-17 +City Hotel,1,15,2017,October,41,14,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,64,Transient,107.79,0,0,Canceled,Amy Clark,johnsonjody@example.org,+1-484-685-5386x161,4154560454020974,2026-02-13 +Resort Hotel,1,250,2017,July,27,5,4,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Contract,41.16,0,0,Canceled,Cheryl Rose,owagner@example.org,(853)604-9263x123,502073585544,2026-01-18 +Resort Hotel,0,1,2017,January,3,14,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,43.53,0,3,Check-Out,Jared Garza,larrydodson@example.net,674-632-8348,4748864536848227813,2024-12-26 +City Hotel,1,239,2017,June,25,22,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,208.16,0,1,Canceled,Donna Wright,matthewsterrance@example.org,8029782483,6554652039770214,2025-10-04 +Resort Hotel,1,130,2017,March,12,19,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,91.19,0,1,Canceled,Belinda Fisher,melissa56@example.org,817.750.8528,213148774724496,2025-12-03 +City Hotel,0,414,2017,August,33,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.05,0,1,Check-Out,Kathleen Levine,melissaho@example.com,+1-622-811-2805,2299863675065640,2025-07-26 +City Hotel,0,143,2017,November,45,8,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,125.56,0,1,Check-Out,Corey King,nathanielhicks@example.net,835-478-8475,502005452433,2026-02-04 +Resort Hotel,0,59,2017,August,32,3,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,176.03,1,0,Check-Out,Cody Davidson,deborah82@example.org,994.325.4918x130,3571952581941643,2025-10-09 +Resort Hotel,0,1,2017,March,12,21,0,5,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,17.0,222.0,0,Transient,55.43,0,0,Check-Out,Michael Anderson,dianebrown@example.org,001-715-427-5825x2587,4118804797423345789,2025-05-16 +City Hotel,0,94,2017,March,12,19,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,179.37,0,1,Check-Out,Zachary Mcgee,wrightkristen@example.com,(261)862-2555x55664,639097702380,2025-03-17 +City Hotel,0,2,2017,March,13,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,132.94,0,0,Check-Out,Melinda Anderson,carlsonsteven@example.org,+1-306-633-1280x98907,5248534328594303,2025-02-22 +Resort Hotel,0,0,2017,January,2,7,1,0,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Group,40.74,0,0,Check-Out,Tyler Andrews,jamesalvarado@example.org,212-412-4838,3518697368686517,2026-02-22 +Resort Hotel,0,10,2017,February,6,8,0,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,58.74,0,0,Check-Out,Michelle Greer,wendy68@example.org,+1-479-874-5108x6030,675956710635,2025-10-14 +City Hotel,1,1,2017,July,31,30,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,200.68,0,0,Canceled,Brian Clark,yallen@example.com,+1-625-283-6481x9074,3547609461669626,2025-01-31 +City Hotel,1,23,2017,August,32,11,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,97.76,1,0,No-Show,Nathaniel Floyd,robertpeterson@example.com,5634002943,4443416853146285,2024-07-30 +City Hotel,0,152,2017,July,29,21,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.3,0,1,Check-Out,Erika Jenkins,courtney57@example.org,8968838935,502068732531,2025-11-18 +City Hotel,1,197,2017,August,35,26,0,2,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.96,0,0,Canceled,Melanie Ramos,lynnkimberly@example.com,+1-903-793-9415x8249,6011927220427502,2025-09-20 +Resort Hotel,1,29,2017,January,3,16,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,37.42,0,0,Canceled,Mark Clark,thomasguerra@example.org,001-974-359-4857x000,2440401097343655,2025-01-29 +Resort Hotel,0,1,2017,August,34,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,246.0,68.0,0,Transient,53.0,0,0,Check-Out,Sergio Hodge,ygreen@example.com,(273)211-7454x87658,6526961135599855,2025-11-18 +City Hotel,0,35,2017,March,10,5,1,1,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.14,0,2,Check-Out,Katherine Avery,blewis@example.com,001-314-320-1068x915,4483061701698094,2024-09-09 +City Hotel,0,134,2017,October,41,10,2,5,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,31.0,210.0,0,Transient,80.28,0,0,Check-Out,David Hamilton,kingdominic@example.com,(888)847-3162,30166063505856,2025-11-25 +Resort Hotel,0,0,2017,December,48,1,2,1,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,104.36,0,0,Check-Out,Richard Bass,donna18@example.org,504.482.9623x4576,4404960302421499,2024-06-29 +City Hotel,1,54,2017,May,20,13,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,171.65,0,1,Canceled,Kelly Harris,millerfrederick@example.org,+1-430-934-5297,6011309725889355,2024-09-11 +City Hotel,1,211,2017,July,30,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,12.0,85.0,0,Transient-Party,62.72,0,1,Canceled,Dustin Campbell,lopezemily@example.org,(581)893-2773x7004,583494722411,2024-04-01 +Resort Hotel,0,53,2017,July,31,29,1,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,214.16,0,1,Check-Out,Randy Kennedy,wallacerobert@example.org,+1-284-506-5128x94995,377359610783164,2024-09-24 +City Hotel,0,37,2017,November,44,4,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,86.73,0,2,Check-Out,Ana Gibson,along@example.org,+1-915-492-4211x86755,180077804670628,2025-12-11 +Resort Hotel,0,2,2017,January,2,5,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,45.15,0,3,Check-Out,Danny Harris,cookalexander@example.net,852-446-3814x272,4695245364596588,2026-01-28 +Resort Hotel,0,163,2017,June,26,24,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,166.0,179.0,0,Transient,107.19,0,0,Check-Out,Sara Stuart,jackrice@example.org,001-702-695-2306,6563991526589359,2025-12-03 +City Hotel,0,3,2017,December,51,23,0,5,1,0.0,0,HB,GBR,Undefined,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient-Party,70.98,0,0,Check-Out,John Kim,thompsonmichael@example.net,437-957-8147,38382261826125,2026-02-08 +City Hotel,1,307,2017,July,28,12,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.92,0,1,Canceled,Richard Brewer,michael02@example.net,001-403-371-9328,4605688518861,2024-04-20 +City Hotel,0,15,2017,September,36,9,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.3,0,0,Check-Out,William Arnold,loganmatthew@example.org,001-503-775-1646x3869,4591874512797947364,2025-10-25 +Resort Hotel,0,37,2017,October,40,5,3,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,242.31,0,1,Check-Out,Brianna Adams,johnschmidt@example.net,373.924.3708,4260122482425096,2024-09-14 +Resort Hotel,0,40,2017,March,12,20,1,5,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,E,D,0,No Deposit,245.0,179.0,0,Transient,37.66,0,3,Check-Out,David Garcia,lucas78@example.com,(438)841-2939,3596084055014508,2025-07-12 +City Hotel,1,103,2017,May,22,28,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,111.27,0,0,No-Show,Kelli Collins,tjensen@example.org,(993)625-5441x7080,213143187596540,2025-03-05 +City Hotel,0,15,2017,January,5,28,2,2,2,0.0,0,BB,ESP,Aviation,Direct,0,0,0,D,D,0,No Deposit,14.0,180.0,0,Transient,137.35,0,0,Check-Out,Arthur Krueger,moorejerry@example.com,641-363-6856,213176539275165,2024-09-24 +Resort Hotel,1,39,2017,October,40,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,254.0,179.0,0,Transient,72.13,0,0,Canceled,Steven King,dsmith@example.org,+1-446-256-7713,373297324899385,2024-11-06 +City Hotel,1,18,2017,October,43,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,99.4,0,0,Canceled,Tyler Velazquez,ramirezphillip@example.net,708.869.8208,213183439985398,2025-10-14 +City Hotel,1,194,2017,July,27,1,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,83.43,0,2,Canceled,Laura Middleton,michaelthomas@example.com,001-578-817-3366,4070738844696664662,2024-09-12 +City Hotel,0,10,2017,May,21,22,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,18.0,179.0,0,Contract,103.41,0,2,Check-Out,Lori Madden,schneiderbrian@example.com,+1-255-344-3181x57627,3506106504752609,2025-01-06 +City Hotel,0,44,2017,October,41,8,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,88.52,0,0,Check-Out,Tyler Murphy,erik33@example.com,278-751-9180,4850119555744435186,2024-09-06 +Resort Hotel,0,15,2017,October,41,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,0,Transient,97.69,0,0,Check-Out,Kristen Bradley,hwilliams@example.net,(805)428-5521x60799,4505541655678049066,2025-01-11 +City Hotel,1,165,2017,March,14,30,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,19,Transient,125.95,0,0,Canceled,Corey Rodriguez,barnesbrandon@example.org,(496)599-3366,3553315347107176,2024-07-06 +City Hotel,0,0,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,15.0,71.0,0,Transient,54.52,0,0,Check-Out,Phillip King,powellheather@example.org,+1-594-958-7085,6011389929812064,2024-05-28 +City Hotel,1,48,2017,June,26,26,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.5,0,1,Canceled,Laurie Fuller,dennis01@example.net,554-227-6697,6532377142947692,2026-03-10 +Resort Hotel,0,2,2017,May,19,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,I,0,No Deposit,247.0,179.0,0,Transient,3.01,0,1,Check-Out,Toni Cunningham,heatherhill@example.net,262.826.0517x48697,676212036443,2024-07-15 +Resort Hotel,0,29,2017,March,10,2,1,4,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,364.0500000000011,179.0,0,Transient,48.0,0,1,Check-Out,James Weber,thomasbrooke@example.com,310-664-4562x493,340481702376113,2024-09-13 +Resort Hotel,1,11,2017,October,40,4,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,244.0,179.0,0,Transient,49.37,0,1,Canceled,Erika Hodge,achaney@example.com,735-333-9078x010,4456321159573279,2025-10-21 +City Hotel,0,13,2017,June,25,18,0,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,137.36,0,2,Check-Out,Peter Patel,josephklein@example.com,499.742.3610,2250939323447369,2025-09-11 +Resort Hotel,0,5,2017,September,38,21,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,215.17,0,3,Check-Out,Jeffrey Hart DDS,rebecca67@example.org,+1-695-398-9744x364,4845174875603,2025-09-07 +Resort Hotel,0,1,2017,October,43,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,239.0,179.0,0,Transient,47.36,0,1,Check-Out,Steven Hall,lisataylor@example.com,(873)289-4911x619,4307988907496762268,2024-04-09 +City Hotel,0,22,2017,September,36,9,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,137.48,0,0,Check-Out,Christine Gutierrez,jfernandez@example.org,(450)642-1555,6011133195794832,2025-04-22 +Resort Hotel,0,3,2017,February,6,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,H,1,No Deposit,16.0,232.0,0,Transient-Party,44.01,0,0,Check-Out,Angel Becker DVM,simonjoe@example.org,+1-711-435-7783x309,3571398133341132,2026-02-15 +City Hotel,0,21,2017,January,5,28,0,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,193.0,179.0,0,Transient,177.29,0,0,Check-Out,Chad Rojas,amy07@example.com,(388)480-0901x9177,060482867722,2025-05-21 +City Hotel,1,4,2017,December,49,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,62.64,0,0,Canceled,Brent Scott,beckerbrenda@example.org,515.584.9980x6005,2232636892321917,2025-08-29 +Resort Hotel,0,58,2017,April,15,8,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,1,No Deposit,22.0,179.0,0,Transient-Party,62.36,0,0,Check-Out,Jennifer Esparza,qsmith@example.com,881.498.6240,4271350740011157765,2024-08-25 +City Hotel,1,59,2017,December,49,6,1,2,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,226.58,0,0,No-Show,Stacy Orozco,debbiespears@example.org,281.841.0443x1209,374854279916702,2024-05-16 +City Hotel,0,156,2017,March,10,6,2,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,1,A,A,1,No Deposit,12.0,179.0,0,Transient,127.44,0,0,Check-Out,Thomas Carr,kathrynmiller@example.org,(567)588-9484,4105625743232274,2025-08-03 +Resort Hotel,0,50,2017,July,31,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Group,106.78,0,2,Check-Out,David George,maryblackburn@example.net,865-304-8943,3500350325662888,2024-08-28 +City Hotel,0,35,2017,July,30,23,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.78,0,1,Check-Out,Teresa Allen,waynecombs@example.com,001-433-691-5982x20550,180037573069469,2025-04-09 +City Hotel,0,49,2017,October,44,28,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,90.98,0,0,Check-Out,Donald Jackson,moorekathleen@example.net,+1-439-764-0335x85626,561786468893,2024-12-29 +Resort Hotel,0,19,2017,July,28,9,2,2,2,1.0,0,HB,IRL,Direct,TA/TO,0,0,0,G,D,1,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,Monica Howe,jenniferrogers@example.net,001-993-754-6382x76651,4631442965234001,2024-06-23 +City Hotel,1,157,2017,June,23,7,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,104.76,0,0,Canceled,Willie Flynn PhD,tbaker@example.com,001-258-849-3995,4845623705722114,2026-03-01 +Resort Hotel,1,29,2017,August,32,9,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Canceled,Jonathan Perez,riosmary@example.org,6483334194,4699016423275514,2026-01-11 +City Hotel,1,401,2017,September,38,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,79.01,0,0,Canceled,April Horton,john42@example.net,001-880-260-1391x14064,4826544349479,2025-01-03 +Resort Hotel,0,262,2017,July,27,7,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,61.58,0,0,Check-Out,Nicole Hawkins,johnbailey@example.net,001-562-207-9122x905,341833917746267,2024-05-30 +Resort Hotel,0,48,2017,February,6,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,53.52,1,0,Check-Out,Patrick Hooper,milleramy@example.org,908-728-2239x054,3500929997085856,2024-12-27 +City Hotel,1,0,2017,December,51,20,0,1,3,0.0,0,BB,,Direct,Direct,0,0,0,H,K,1,No Deposit,17.0,179.0,0,Transient,3.79,0,0,No-Show,Mary Lee,kmanning@example.com,264-864-7609x500,4496817975851213,2025-08-29 +Resort Hotel,0,6,2017,July,28,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,80.86,0,2,Check-Out,Cynthia Williams,frederick59@example.org,511-673-3311x87093,378098607310503,2024-11-10 +City Hotel,1,152,2017,June,24,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,314.0,179.0,0,Transient,89.52,0,0,Canceled,Ronald Gonzalez,keithfisher@example.org,9219449182,30507788634929,2024-09-10 +City Hotel,1,50,2017,April,15,8,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.46,0,2,Canceled,Antonio Cole,georgejones@example.net,001-408-544-7112x74434,4798373717103062,2025-12-31 +City Hotel,0,51,2017,October,43,23,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,113.44,0,1,Check-Out,Amanda Swanson,timothy11@example.com,(394)236-1631,6011905426834291,2025-06-02 +Resort Hotel,1,40,2017,July,30,22,4,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,221.44,0,0,Canceled,Holly Sherman,dianeyoung@example.net,933-412-1051x13502,4160194499988820500,2025-02-02 +Resort Hotel,0,31,2017,November,45,11,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,77.25,0,0,Check-Out,Sandy Reynolds,owalker@example.org,851-609-3531x89208,3592122047463948,2024-09-13 +City Hotel,0,95,2017,November,46,13,0,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,89.88,0,1,Check-Out,Sandra Moore,bullockelizabeth@example.net,001-659-956-7675x203,4497100758670608,2024-11-11 +City Hotel,1,411,2017,July,30,26,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.0,0,0,Canceled,Christopher Johnson,ellisryan@example.org,(526)439-3055x512,3582621061011642,2025-10-12 +Resort Hotel,0,0,2017,November,45,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,193.0,56.0,0,Transient,39.39,0,0,Check-Out,Ryan Fisher,xmosley@example.com,691-531-0849x86876,4697923663121649659,2025-06-10 +City Hotel,0,23,2017,September,39,24,0,1,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,127.35,0,0,Check-Out,Christopher Jones,kmurray@example.org,001-686-505-7947x3899,503858350013,2024-05-12 +City Hotel,0,43,2017,October,40,2,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.3,0,2,Check-Out,Jeffrey Lyons,jonestyler@example.com,733.226.1312,213178090381234,2024-10-20 +Resort Hotel,0,19,2017,August,31,5,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,139.77,1,2,Check-Out,Miguel Reeves,wandahernandez@example.org,956.438.9421x84169,3544545042635053,2025-05-22 +City Hotel,1,0,2017,February,7,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient-Party,45.7,0,0,No-Show,Kiara Santana,valeriewall@example.com,275.328.9775,30529006935078,2024-10-19 +City Hotel,0,150,2017,September,38,21,0,3,2,0.0,0,SC,SWE,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,124.24,0,1,Check-Out,Tonya Richards,georgekim@example.org,(319)709-9591x19623,4633585066545,2025-05-29 +Resort Hotel,0,48,2017,July,27,5,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,117.85,0,2,Check-Out,Jesse Poole,stephanie89@example.com,705-607-8041,6588484941056189,2024-11-04 +City Hotel,1,263,2017,July,27,4,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,129.93,0,0,No-Show,Mary Lewis,sarameyer@example.com,+1-483-749-1887x58321,340928315183856,2025-03-19 +Resort Hotel,0,1,2017,January,2,2,0,2,1,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,A,C,2,No Deposit,242.0,179.0,0,Transient,44.68,1,1,Check-Out,Christopher Copeland,hannah64@example.org,568-341-9833,4414671612731885,2024-04-27 +Resort Hotel,1,162,2017,April,14,1,1,3,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,C,0,Refundable,11.0,222.0,0,Transient-Party,44.92,0,0,Canceled,Ethan Obrien,paulwright@example.com,001-892-971-3652x07069,675995332813,2025-02-04 +City Hotel,1,0,2017,May,21,23,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,133.31,0,1,No-Show,Rebecca Houston,owagner@example.org,(352)481-4766x617,348881899610632,2024-10-07 +Resort Hotel,0,18,2017,September,36,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,56.47,0,1,Check-Out,Edward Barton,jimbrown@example.com,216.277.2739,4267479809721919,2025-10-15 +City Hotel,0,122,2017,July,27,2,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.79,0,2,Check-Out,Brandon Perkins,bhancock@example.net,6654135723,675907187198,2024-09-03 +Resort Hotel,0,13,2017,December,49,5,0,2,2,0.0,0,BB,,Groups,Direct,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,41.61,0,1,Check-Out,Beth Brown,karen33@example.com,492-913-9359x3730,3548083949988926,2024-12-26 +City Hotel,1,254,2017,August,32,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,61.11,0,0,Canceled,Kim Vincent,ralph17@example.net,001-741-297-5720x97631,2267773670607502,2024-11-29 +City Hotel,0,0,2017,January,2,10,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,86.85,0,2,Check-Out,Jennifer Banks,marcia57@example.net,+1-610-884-1199x03994,30326463182678,2024-12-24 +Resort Hotel,0,104,2017,March,10,9,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,72.55,0,0,Check-Out,Ruth Brown,angela80@example.com,6167585926,343061377095045,2024-09-28 +City Hotel,0,101,2017,March,13,26,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient,100.93,0,0,Check-Out,Shawn Lindsey,yhunter@example.com,575-349-7966x70492,4785275455450784,2025-01-16 +Resort Hotel,0,140,2017,August,31,1,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,64.35,0,0,Check-Out,Anthony Garrison,wheelerpedro@example.net,+1-490-379-9274x42800,3584069310075158,2024-09-29 +City Hotel,0,4,2017,February,7,15,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,14.0,225.0,0,Transient,62.78,0,0,Check-Out,Angela Ryan,nicole07@example.com,(710)911-4763x046,30581564530973,2024-07-17 +City Hotel,0,19,2017,January,2,8,1,1,1,0.0,0,BB,DEU,Direct,Corporate,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,99.38,0,1,Check-Out,Joseph Davis,amcmahon@example.org,(808)685-5068,4312320866705,2024-08-29 +City Hotel,0,162,2017,August,34,25,0,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,111.06,0,1,Check-Out,Joshua Clayton,ohardy@example.org,540-215-4279x81919,30145047509564,2025-03-31 +Resort Hotel,0,14,2017,March,12,19,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,38.0,179.0,45,Transient,103.1,0,0,Check-Out,John Massey,charles01@example.com,001-729-781-4704x3243,3599284324284174,2025-03-12 +City Hotel,0,35,2017,June,25,20,1,3,3,2.0,0,BB,BEL,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,174.51,0,2,Check-Out,Richard Hale,amanda04@example.net,4396269282,4854111532365800220,2024-12-10 +City Hotel,0,80,2017,April,15,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,87.09,0,1,Check-Out,Charles Ramos,robert60@example.org,984-723-4446,30367559165110,2026-02-21 +Resort Hotel,1,289,2017,August,32,11,3,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,97.29,0,0,Canceled,Mark Miller,ronald23@example.net,735.415.9797x476,4353381992285519,2024-10-14 +City Hotel,0,19,2017,September,37,16,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,184.0,51.0,0,Transient,129.63,0,0,Check-Out,Julia Maldonado,moorekimberly@example.com,(288)385-1623,213129343532438,2025-06-21 +City Hotel,1,93,2017,December,49,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,87.84,0,0,No-Show,Gail Johnson MD,fmckay@example.com,880-456-0992,213141705118045,2025-12-10 +City Hotel,0,52,2017,June,25,15,2,3,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient,78.91,0,1,Check-Out,Maurice Johnson,patricia32@example.net,001-709-887-4698x934,4972311980714,2025-12-12 +Resort Hotel,0,25,2017,July,30,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,237.0,179.0,0,Transient,65.01,1,1,Check-Out,Amanda Morris,dave46@example.com,8113943322,4506456690959,2025-08-03 +City Hotel,1,167,2017,March,13,24,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,109.74,0,0,Canceled,Rhonda Willis,spencer02@example.org,376.877.5691x3320,5496387089876883,2024-05-11 +City Hotel,0,33,2017,October,43,24,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.59,0,0,Check-Out,Connor Benton,zcox@example.net,337-303-6292,4367056777476,2025-05-10 +City Hotel,0,42,2017,October,43,24,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.77,0,2,Check-Out,Richard Ryan,harveybilly@example.com,001-346-217-5466,3539498126450972,2025-11-07 +City Hotel,1,169,2017,April,15,9,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,106.36,0,3,Canceled,Richard Goodman,joshuawalsh@example.com,561.332.4054x868,4090528998029860918,2024-12-06 +City Hotel,1,308,2017,July,29,17,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,19,Transient,80.56,0,0,Canceled,Michelle Mcneil,jodychang@example.net,407.569.2028x5332,5459243238340260,2024-12-25 +City Hotel,0,100,2017,February,9,24,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,25.0,179.0,0,Transient,61.75,0,2,Check-Out,Michael Norton,simmonsjennifer@example.com,670-866-3550x4402,3509943056408074,2024-04-06 +City Hotel,0,1,2017,October,42,18,1,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,256.0,179.0,0,Transient,83.38,0,0,Check-Out,Donna Carter,barbara48@example.net,(932)255-7784x506,6571406595301941,2025-03-30 +City Hotel,1,308,2017,May,21,20,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,87.28,0,0,Canceled,Joshua Hernandez,kimberly83@example.net,+1-514-320-1002x98485,4805833161035566,2024-08-30 +City Hotel,0,13,2017,November,46,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,75.33,0,0,Check-Out,Kimberly Mitchell,qwilliams@example.net,9742645587,213109616504421,2024-04-04 +City Hotel,0,2,2017,August,33,12,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,1,No Deposit,13.0,179.0,0,Transient,64.82,1,1,Check-Out,Patricia Hernandez,leahstevenson@example.org,533-447-5762x5409,6011947845025119,2025-08-26 +City Hotel,1,1,2017,August,32,4,0,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Donna Howell,rebeccaunderwood@example.org,+1-632-434-1411x5440,2285993805905039,2024-06-09 +Resort Hotel,0,35,2017,May,22,31,2,1,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,0,Transient,122.26,0,0,Check-Out,James Williams,evansrachel@example.org,001-762-367-7504x5684,349869259723540,2024-08-12 +City Hotel,1,52,2017,December,50,12,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,54.17,0,1,No-Show,Alexander Greene,jgarcia@example.com,754-341-1871x6131,180057093091488,2024-12-03 +City Hotel,0,46,2017,April,14,3,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,147.59,0,1,Check-Out,Dean Sanchez,qwright@example.com,(769)206-4818x84024,6011877254374841,2026-03-08 +City Hotel,1,37,2017,June,23,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,95.85,0,1,Canceled,Glenn Ward,russellbenjamin@example.net,001-408-409-4914x656,4424029255401712,2025-09-30 +City Hotel,1,18,2017,February,9,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,84.04,0,0,Canceled,Kendra Sullivan,kyleestrada@example.org,001-996-816-3854x779,676388099092,2024-10-10 +City Hotel,1,162,2017,March,9,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,78.83,0,1,Canceled,Cynthia Hernandez,franktanner@example.net,001-831-783-0067x73173,375901170256263,2026-02-27 +City Hotel,0,42,2017,March,11,15,1,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.94,0,1,Check-Out,Darren Morris,kendrasims@example.net,590-354-3598x62460,3580698960128174,2024-10-02 +Resort Hotel,0,11,2017,January,2,1,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,85.57,1,1,Check-Out,Holly Underwood,griffinashley@example.net,+1-707-768-4623x395,4449855429583436,2024-12-22 +Resort Hotel,0,0,2017,March,10,4,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,57.52,1,1,Check-Out,Jaime Williams,jennifercabrera@example.org,433-718-4611x8165,4090930678809535,2025-10-26 +Resort Hotel,0,158,2017,March,12,22,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,344.0,179.0,0,Transient,47.93,0,0,Check-Out,Lori Brown,reesewilliam@example.com,001-442-269-2565x008,30513319775769,2025-10-27 +Resort Hotel,0,1,2017,August,33,15,0,2,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Transient,108.39,0,0,Check-Out,Jason Chase,fernandocrawford@example.com,776-237-8700,180073994447257,2025-07-11 +Resort Hotel,1,51,2017,December,49,8,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient-Party,78.3,0,0,Canceled,Lisa Buchanan,xjohnson@example.net,3885683518,4443112667266233,2024-07-08 +City Hotel,0,93,2017,April,16,19,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,87.55,0,2,Check-Out,Marcus Fields,hermansandra@example.com,+1-712-987-1948x5416,349307630495355,2024-05-31 +City Hotel,0,1,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,199.0,0,Transient,65.72,0,0,No-Show,Tammy Lopez,kerrcharles@example.net,001-917-670-0381x25022,676110998363,2025-09-03 +Resort Hotel,0,49,2017,December,49,4,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,106.6,0,0,Check-Out,Derek Williams,sthomas@example.com,001-579-843-9189x94670,4199868469970,2024-06-19 +City Hotel,0,3,2017,July,27,5,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,114.09,0,1,Check-Out,James Davenport,urussell@example.net,(788)645-3945,379725329538941,2026-02-28 +City Hotel,0,17,2017,December,51,22,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.86,0,2,Check-Out,Justin Moreno,morganrebecca@example.org,(474)456-2176x53969,180076226897181,2025-11-16 +City Hotel,1,48,2017,December,52,25,2,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,64.48,1,1,No-Show,Mario Green,katherine75@example.com,001-511-701-3459x4306,2717822376483225,2024-05-12 +Resort Hotel,0,2,2017,November,45,5,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,D,D,0,No Deposit,15.0,70.0,0,Transient-Party,43.63,0,1,Check-Out,Cassandra Fry,kelly10@example.org,355.268.9582x31978,213151002710568,2026-02-27 +City Hotel,1,217,2017,June,26,26,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,135.02,0,2,Canceled,Dr. Jose Gray DDS,ashley45@example.com,(434)431-9901x1243,4005036128433571,2024-05-08 +City Hotel,0,97,2017,June,25,20,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,208.44,0,0,Check-Out,Amy Adams,john62@example.org,744-616-5950x4330,30466365279949,2025-12-28 +Resort Hotel,0,2,2017,January,4,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,A,0,No Deposit,251.0,179.0,0,Transient,44.64,0,1,Check-Out,Austin Horton,mariahgibson@example.org,422.477.3699,349519615559993,2026-03-25 +City Hotel,0,28,2017,June,26,24,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.14,0,1,Check-Out,Elizabeth Jackson,heather01@example.net,7503774202,4561731917164,2025-09-04 +City Hotel,0,4,2017,November,46,16,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,61.0,0,Transient-Party,42.85,0,0,Check-Out,Maureen Cross,tscott@example.com,001-530-626-2931x3006,4836569280913028902,2024-12-27 +Resort Hotel,1,64,2017,February,8,20,2,3,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,242.61,0,0,Canceled,Christopher Sanchez,ejones@example.com,001-744-502-0939x1036,6011480595751445,2024-09-12 +City Hotel,0,63,2017,September,38,22,0,3,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,113.1,0,0,Check-Out,Mitchell Richardson,hurleycarol@example.com,001-591-239-8336x6497,30392711961008,2025-11-20 +City Hotel,1,11,2017,May,19,9,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,85.7,0,1,Canceled,Kelsey Lewis,vincenttaylor@example.org,001-660-891-0972x78577,4755469431290606,2025-08-22 +City Hotel,0,38,2017,April,15,8,2,1,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,131.22,0,1,Check-Out,Richard Miller,michael54@example.com,4402386201,585613623198,2026-03-26 +Resort Hotel,0,110,2017,May,20,12,1,2,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,141.41,0,0,Check-Out,Samantha Carter,fjackson@example.com,764-461-2885x723,4187682481936582046,2025-11-23 +Resort Hotel,0,1,2017,December,51,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,48.67,1,2,Check-Out,Mrs. Heather Christensen,josephmeyer@example.net,431.762.8103x186,676354369073,2026-01-15 +City Hotel,1,386,2017,September,36,3,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,91.0,179.0,0,Transient,98.92,0,0,Canceled,Sharon Williams,cory75@example.com,545.858.9595x11962,4774747572741208518,2026-01-07 +Resort Hotel,0,24,2017,February,5,1,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,0,No Deposit,245.0,179.0,0,Transient,94.09,0,2,Check-Out,Daryl Lowe,jasonpeters@example.com,+1-959-666-9532x336,30070990798495,2025-09-18 +City Hotel,0,48,2017,December,49,6,0,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Contract,134.44,0,2,Check-Out,Michael Carter,flemingvickie@example.com,463.541.9874,30031536863185,2025-08-20 +Resort Hotel,1,57,2017,July,30,22,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,240.56,0,0,Canceled,Susan Johnson,joshua65@example.com,996-370-5078,2374586390982793,2025-10-30 +City Hotel,0,45,2017,March,13,25,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,42,Transient-Party,97.03,0,0,Check-Out,James Jenkins,marshalljavier@example.org,+1-626-359-3619x86158,3534934542330237,2025-05-28 +City Hotel,0,10,2017,February,6,9,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.64,0,1,Check-Out,Dylan Johnston,justincraig@example.net,(685)612-3437x028,3592185444247198,2024-08-14 +Resort Hotel,1,284,2017,July,27,2,1,4,2,0.0,0,SC,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,100.06,0,0,Canceled,Kathy Hull,jamescarr@example.com,(365)459-9312,3591006778722435,2024-12-13 +City Hotel,1,97,2017,June,26,27,1,3,3,0.0,0,HB,,Aviation,Corporate,0,0,1,A,E,2,No Deposit,14.0,210.0,0,Transient,106.77,0,0,Canceled,Monica Richardson,qpeterson@example.com,686.703.8922x934,4908194909136296397,2025-02-16 +City Hotel,1,52,2017,August,32,9,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,231.06,0,2,Canceled,Kathryn White,tnicholson@example.org,869-615-8180x69240,180078712197837,2025-07-26 +City Hotel,1,4,2017,December,50,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,H,0,No Deposit,12.0,331.0,0,Transient-Party,72.29,0,0,Canceled,Mrs. Valerie Owens,smccarthy@example.net,(276)623-4282x1405,374833312678289,2025-08-08 +City Hotel,1,168,2017,June,25,15,0,2,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient-Party,222.35,0,0,Canceled,Amy Watts,alisonhill@example.net,001-848-352-2022x77741,4580536622985,2024-05-13 +City Hotel,0,3,2017,June,23,5,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,118.48,0,1,Check-Out,Michael Brown,danielleedwards@example.net,5796182921,213149477217622,2024-12-14 +City Hotel,1,144,2017,April,17,23,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.42,0,1,Check-Out,Cynthia Hendricks,james35@example.net,982.625.0976,2240447250749289,2026-02-19 +City Hotel,0,11,2017,March,12,24,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.22,0,1,Check-Out,Phillip Kelly,ashleyamanda@example.com,365.450.9961,349901163939977,2024-06-14 +City Hotel,0,3,2017,October,42,19,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,104.54,0,0,Check-Out,Deanna Edwards,wileykayla@example.net,(798)700-8098x59902,4925553974332,2025-12-14 +Resort Hotel,0,23,2017,May,19,9,2,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,124.98,1,3,Check-Out,Jennifer Walker,travis62@example.com,(791)465-0747,584815472249,2024-04-15 +City Hotel,0,136,2017,June,23,6,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,96.11,0,1,Check-Out,Brian Davis,amyanderson@example.net,673.940.0154,6557973719925929,2025-07-28 +Resort Hotel,0,144,2017,May,22,26,3,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,252.0,1,0,Check-Out,Kelsey Griffith,qlee@example.net,601-464-0445x62536,3596454104069870,2024-05-29 +City Hotel,1,157,2017,July,29,16,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.09,0,1,Canceled,Kimberly Obrien,hunterhuff@example.com,701.589.2448,502054969782,2024-07-05 +City Hotel,0,10,2017,November,47,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient-Party,65.36,0,1,Check-Out,Kevin Mccoy,jeffreyhoward@example.net,+1-855-936-8934,3522250495190948,2025-03-27 +City Hotel,0,72,2017,October,41,8,0,3,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,97.66,0,2,Check-Out,Daniel Sullivan,richardmiller@example.org,365.731.6624x69455,566135040913,2025-07-20 +City Hotel,0,93,2017,December,2,31,2,1,2,1.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,22.0,179.0,0,Transient,66.04,0,1,Check-Out,Darius Khan,madelinerosario@example.net,9052790634,2720225176737888,2024-10-12 +City Hotel,1,20,2017,December,2,31,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,128.29,0,0,Canceled,Miranda Huber,jeffery68@example.net,907.571.3098,4652371609151145,2024-07-18 +Resort Hotel,0,106,2017,May,19,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,106.65,0,0,Check-Out,Lisa Wagner,kellybishop@example.net,(689)621-2848x694,30216568086595,2025-02-02 +City Hotel,1,105,2017,August,32,9,0,2,1,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Contract,149.86,0,0,Canceled,Erin Price,morrisonsusan@example.net,240.306.7561x5135,213186843185828,2024-03-30 +Resort Hotel,0,1,2017,January,2,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,239.0,179.0,0,Transient,220.74,0,1,Check-Out,Jonathan Russell,archermichele@example.net,001-867-747-5127x4530,180031970204175,2026-01-03 +City Hotel,1,56,2017,May,22,25,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.86,0,1,Canceled,Sharon Snow,julia70@example.org,+1-704-986-2562x2421,345355072393384,2024-07-01 +City Hotel,0,244,2017,September,38,21,0,4,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient-Party,163.2,1,0,Check-Out,Cody Hoover,crystal99@example.net,(671)905-1538x6951,4449565670531,2024-08-13 +City Hotel,1,57,2017,August,31,1,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,190.18,0,3,Canceled,Alyssa Rodriguez PhD,yvonneshields@example.net,628-833-5965x89030,4154226973919076,2025-08-06 +City Hotel,0,10,2017,October,42,16,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.56,0,3,Check-Out,Carl Harper,ricardoparker@example.net,651-398-6436x3778,213156068280273,2025-08-07 +City Hotel,1,111,2017,June,26,26,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,134.41,0,0,Canceled,Dana Bennett,angelaberry@example.net,877.299.0789,341901902470910,2025-05-11 +City Hotel,1,0,2017,September,36,8,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,17.0,179.0,0,Transient,50.12,1,0,Check-Out,Michael Baker,nicholegibson@example.com,9917089142,377577652359045,2025-11-06 +Resort Hotel,0,47,2017,October,42,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,I,1,No Deposit,238.0,179.0,0,Transient,55.99,1,1,Check-Out,William Wilson,michael86@example.com,001-574-594-4971x810,30290725694005,2024-05-01 +City Hotel,0,1,2017,October,44,29,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,53.79,0,0,Check-Out,Jennifer Smith,melissamartinez@example.org,230-903-4872x89880,4262990615800318312,2025-12-24 +City Hotel,0,22,2017,October,43,24,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,83.76,0,2,Check-Out,Cindy Richardson,taylorashley@example.org,001-373-904-2061x9955,377694437654796,2026-01-07 +City Hotel,1,91,2017,March,13,29,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,21.0,179.0,0,Transient,64.73,0,0,Canceled,Brandi Brown,blopez@example.org,308-684-4377,4190020173139,2025-09-12 +Resort Hotel,1,145,2017,July,31,31,1,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,221.0,0,Transient-Party,101.79,0,0,Canceled,Benjamin Martinez,smithcarol@example.com,(618)384-4764x323,4131990461245,2024-04-25 +City Hotel,0,196,2017,October,40,5,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,77.24,0,0,Check-Out,Patricia Mitchell,medinadean@example.net,001-543-369-8247x6536,4283990137027010248,2025-10-05 +City Hotel,0,44,2017,September,37,7,1,2,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,129.32,0,0,Check-Out,Courtney Sanders,carpenterkevin@example.com,806-211-3091,378356082899394,2025-05-13 +City Hotel,0,148,2017,September,36,3,2,5,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,98.28,0,0,Check-Out,Ryan Willis,fcooper@example.com,001-565-803-7921x61362,213128762330738,2025-09-07 +Resort Hotel,0,154,2017,November,45,6,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,49.7,0,1,Check-Out,Jennifer Jackson,vangkatherine@example.com,001-745-832-4262x7514,6578920695969939,2025-02-27 +City Hotel,1,209,2017,June,24,11,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,83.08,0,0,Canceled,Teresa Obrien,tmckenzie@example.org,(833)614-9420x9847,4880629582254143,2025-01-30 +Resort Hotel,0,53,2017,August,32,8,0,2,2,1.0,0,HB,FRA,Groups,Direct,0,0,0,E,A,1,No Deposit,245.0,179.0,0,Transient-Party,209.43,1,1,Check-Out,Angel Hayes,johnnyrodriguez@example.org,895.256.7526x47025,4747148162158742,2024-09-08 +City Hotel,1,259,2017,November,47,21,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,97.44,0,0,Canceled,Jason Davis,moralesjamie@example.net,+1-789-836-1716,2276561236658260,2025-04-09 +Resort Hotel,0,166,2017,May,19,5,4,10,2,0.0,0,BB,IRL,Direct,TA/TO,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,136.59,0,2,Check-Out,Melissa Mathews,vreeves@example.org,+1-576-866-5285x0355,4370189493036474,2024-12-28 +Resort Hotel,0,29,2017,April,18,27,2,3,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,317.0,179.0,0,Transient,75.36,0,2,Check-Out,Joseph Russell,bporter@example.org,001-835-889-8029,5386017208170438,2024-12-23 +City Hotel,0,81,2017,July,31,30,0,2,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.17,0,1,Check-Out,Sandra Mccoy,whitney11@example.com,(781)868-1493,4112153806156711,2025-02-01 +City Hotel,0,0,2017,October,41,12,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Contract,63.85,0,1,Check-Out,Gail Vasquez,ujames@example.net,200.679.3128x8453,4709707384838369,2025-12-05 +Resort Hotel,0,14,2017,October,41,12,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,73.79,1,0,Check-Out,Jeffrey Gibbs,nsilva@example.org,001-221-588-8821x329,569914755636,2025-07-07 +Resort Hotel,0,52,2017,August,35,27,3,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,H,E,1,No Deposit,250.0,179.0,0,Transient,46.47,0,0,Check-Out,Michael Wilson,johnsonangela@example.net,618-542-8363x499,4994466762218,2025-05-03 +City Hotel,0,41,2017,March,13,26,1,2,2,0.0,0,SC,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.12,0,2,Check-Out,Richard Smith,hannahlynch@example.com,(686)621-9775x880,3542879853378327,2025-06-12 +City Hotel,0,54,2017,September,39,24,1,1,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,2.0,179.0,0,Transient-Party,90.93,0,0,Check-Out,Corey Mooney,ashleymoore@example.org,533.323.1213x74750,2705086809906830,2025-02-26 +Resort Hotel,0,36,2017,July,29,19,2,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,129.01,0,1,Check-Out,Christina Myers,gcastillo@example.org,464-338-7082x137,2238124730399209,2026-01-05 +City Hotel,0,101,2017,June,26,24,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,133.65,0,1,Check-Out,Anita Pitts,kleinkayla@example.org,+1-527-615-8401,3590472096493631,2025-11-01 +Resort Hotel,0,0,2017,December,50,9,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,E,E,0,No Deposit,181.0,179.0,0,Transient,51.25,0,0,Check-Out,Christian Bryant,spencer42@example.com,295-909-0066,3552178972314363,2024-08-10 +City Hotel,0,11,2017,September,37,15,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,75.95,0,2,Check-Out,Patrick Garcia,alicekane@example.org,+1-326-875-9324x971,6011956129966872,2024-07-26 +Resort Hotel,1,187,2017,August,33,14,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,216.3,0,0,Canceled,Daniel Merritt,prattjennifer@example.com,(354)470-0757,4678727977603183,2025-07-05 +Resort Hotel,1,45,2017,December,48,1,1,4,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,172.0,179.0,0,Transient,66.65,0,0,Canceled,Robert Hicks,spearsjason@example.net,886.841.8555x2121,2250477164601224,2025-12-27 +City Hotel,0,15,2017,October,42,18,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,82.06,0,0,Check-Out,Kenneth Washington,kim91@example.net,001-398-262-4788x02156,5185141973991845,2024-05-04 +City Hotel,1,169,2017,June,24,9,0,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,130.92,0,1,Canceled,Jessica Hoffman,mccartydaniel@example.org,(515)893-6424,4105473694394292,2025-03-05 +City Hotel,0,11,2017,February,6,7,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.4,0,0,Check-Out,Lisa Riggs,kirsten49@example.com,+1-520-445-6397x486,639019563712,2026-03-15 +City Hotel,1,392,2017,July,31,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,100.33,0,0,Canceled,Donna Mccarty,joshua10@example.com,455.814.8211,4660637266750736196,2024-05-23 +City Hotel,0,63,2017,August,34,25,2,1,3,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,134.64,0,3,Check-Out,Eric Spencer,lisadyer@example.com,001-346-485-1702x46406,4597031971691,2025-04-07 +City Hotel,1,41,2017,February,8,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,1,Canceled,Victoria Deleon,manuel07@example.org,+1-342-249-4189,213188620173829,2025-12-06 +Resort Hotel,0,106,2017,October,40,5,2,3,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,91.49,0,0,Check-Out,David Roy,jennifer57@example.org,4953140400,639094294282,2025-05-04 +City Hotel,0,17,2017,August,34,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,115.13,0,3,Check-Out,Nancy Rice,trevorhansen@example.org,623.946.2615,5577846378348625,2024-05-12 +City Hotel,0,50,2017,January,3,18,0,2,1,0.0,0,BB,AUT,Direct,Corporate,0,0,0,A,B,1,No Deposit,11.0,200.0,0,Transient-Party,117.42,0,1,Check-Out,Daniel Brewer,suzanneparker@example.com,493-914-9769x46708,373360197619015,2024-12-30 +Resort Hotel,0,136,2017,October,41,13,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,128.53,0,1,Check-Out,Becky Garcia,erichowell@example.net,+1-531-538-7185x4314,4100042028161,2025-11-27 +City Hotel,0,2,2017,August,32,9,2,1,3,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,126.54,0,0,Check-Out,Michael Smith,gwendolynthompson@example.org,001-202-827-1317x217,30052153748079,2025-05-15 +City Hotel,0,3,2017,August,33,15,0,1,1,1.0,0,BB,ISR,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,252.0,1,1,Check-Out,Katie Kaiser,patriciabrewer@example.org,3552032864,38644483811726,2026-01-23 +City Hotel,0,29,2017,September,39,26,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,107.05,0,1,Check-Out,Amy Roberts,laura17@example.com,001-841-696-7083x6762,6530776195837365,2024-10-11 +Resort Hotel,1,58,2017,December,50,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,83.0,179.0,0,Transient-Party,91.12,0,0,Canceled,Taylor Espinoza,robertwinters@example.net,608.310.8415x004,3557044579641274,2025-12-28 +Resort Hotel,0,98,2017,July,27,4,2,5,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient-Party,203.75,0,0,Check-Out,David Aguirre,williesims@example.net,416-547-1824x832,4562436105212,2025-01-23 +City Hotel,0,105,2017,August,32,9,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Kyle Armstrong,gbowman@example.net,001-913-492-3463x4060,3597762317947735,2024-10-15 +City Hotel,1,88,2017,May,20,13,1,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,83.01,0,0,Canceled,Jennifer Weber,ann28@example.org,563-865-8286x758,4013725204322779,2025-08-01 +Resort Hotel,0,13,2017,November,45,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient-Party,43.72,0,1,Check-Out,Sheila Douglas,yreyes@example.org,+1-454-720-1114x293,3599690791731523,2025-03-18 +City Hotel,1,293,2017,November,47,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,79.41,0,0,Canceled,Maria Malone,urodriguez@example.org,+1-377-219-8139,38678441306379,2024-05-25 +City Hotel,1,92,2017,July,27,3,1,2,3,1.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.89,0,1,Canceled,Megan Juarez,collinsjohn@example.com,8074408252,342253958442271,2025-03-26 +Resort Hotel,0,50,2017,May,22,28,1,3,1,0.0,0,BB,CHE,Corporate,Corporate,0,0,0,A,E,1,No Deposit,14.0,202.0,0,Transient-Party,80.71,0,0,Check-Out,Ann Boyd,kelleyalexis@example.net,+1-637-378-6777x823,4579510037062305,2024-11-15 +Resort Hotel,0,206,2017,April,14,5,2,5,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Contract,129.54,1,0,Check-Out,Richard Riley,bgarza@example.org,+1-923-239-3442x63158,4729259686373709,2026-01-01 +City Hotel,1,44,2017,August,33,15,0,2,3,0.0,0,FB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.9,0,0,Canceled,Laura Thomas,debbiebautista@example.net,+1-558-948-4517,342765226418767,2026-02-11 +City Hotel,1,386,2017,October,40,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,69.51,0,0,Canceled,Elizabeth Barton,cheryldavis@example.net,613.252.6063x8653,6535318483506777,2024-07-30 +City Hotel,0,50,2017,September,37,9,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,94.34,0,0,Check-Out,Laura Sparks,tjackson@example.org,2809716356,2234112792114461,2024-09-29 +City Hotel,0,12,2017,February,6,10,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,195.0,45.0,0,Transient-Party,61.36,0,0,Check-Out,Tiffany Zamora,wolfekayla@example.org,001-707-480-4222x153,4449563507391256,2025-04-20 +Resort Hotel,0,198,2017,October,43,24,2,2,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,222.0,0,Transient-Party,52.31,0,1,Check-Out,Ryan Roman,dawsonjennifer@example.net,324.435.6345x9592,4245420030479627,2024-07-03 +City Hotel,0,11,2017,May,18,3,0,1,1,0.0,0,BB,RUS,Corporate,TA/TO,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,99.84,0,1,Check-Out,Richard Parsons,nrogers@example.org,001-329-364-3470x0397,4021186072312,2025-05-02 +City Hotel,1,121,2017,July,30,26,1,2,3,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,129.1,0,0,Canceled,Justin Yu,yreid@example.com,681.205.1312,6526261791937303,2024-08-31 +Resort Hotel,0,257,2017,March,14,30,1,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,64.14,1,1,Check-Out,Marcus Johnson,denise75@example.org,7372269013,3537717308343826,2026-02-17 +City Hotel,0,23,2017,December,48,1,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,11.0,179.0,0,Transient,100.63,0,1,Check-Out,Brittney Bowman,janice23@example.net,763-855-3828x67104,3537002612616377,2024-07-23 +City Hotel,1,142,2017,March,10,8,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,154.0,179.0,75,Transient,99.18,0,0,Canceled,Jason Snow,parkerandrew@example.com,691-220-5225,2716738671408371,2024-07-02 +City Hotel,1,58,2017,August,35,24,0,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,B,G,1,No Deposit,240.0,179.0,0,Transient,249.12,0,0,Canceled,Carrie Lewis,pmcclain@example.net,711-553-6464x49150,6011539461460421,2024-10-06 +Resort Hotel,0,1,2017,January,4,22,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,15.0,179.0,0,Transient,49.1,1,1,Check-Out,Wendy Perez,daviddaniels@example.com,001-853-741-8394,4039553930483230,2025-05-09 +Resort Hotel,0,2,2017,December,51,21,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,13.0,179.0,0,Transient,98.37,0,1,Check-Out,Erika Bates,juarezdavid@example.org,(661)652-6783,4635778851218244,2025-08-29 +City Hotel,0,149,2017,June,26,22,1,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,90.93,0,2,Check-Out,Marie Roach,michellepage@example.net,905.337.6342,4186576578337203,2025-05-22 +Resort Hotel,1,214,2017,August,35,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,255.0,179.0,0,Group,111.71,0,1,Canceled,Mary Hoffman,michael05@example.com,423.750.1906x0321,38693987240791,2025-09-03 +City Hotel,0,17,2017,April,18,27,0,1,1,0.0,0,BB,DEU,Online TA,Corporate,0,0,0,A,B,2,No Deposit,12.0,179.0,0,Transient-Party,101.88,0,1,Check-Out,Robert Mitchell,garrett22@example.com,371.314.2313,213111668191107,2024-05-13 +Resort Hotel,0,223,2017,August,31,1,1,4,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,251.94,0,1,Check-Out,Gregory Russell,nhanna@example.net,001-836-621-8335x635,4619154188968,2024-07-04 +City Hotel,0,246,2017,June,26,24,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,29.0,179.0,0,Transient-Party,127.46,0,0,Check-Out,Vicki Barrera,ernest05@example.net,001-814-790-2298,3543164301978906,2025-05-23 +City Hotel,0,23,2017,September,36,8,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,1.0,179.0,0,Transient-Party,231.32,0,1,Check-Out,Jessica Johnson,wanda27@example.com,603.916.9949x56892,213179966848298,2025-05-23 +City Hotel,0,56,2017,June,24,13,2,5,1,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,131.97,0,0,Check-Out,Rachel Sullivan,nicole13@example.org,001-233-805-0144,4510122050176537530,2024-05-17 +City Hotel,1,151,2017,June,24,9,3,0,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,Non Refund,14.0,193.0,0,Transient,110.03,0,0,Canceled,Kimberly Thomas,emilyfrye@example.org,9092745878,213138968910852,2025-02-15 +City Hotel,0,27,2017,December,52,25,2,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,81.1,0,0,Check-Out,Anna Pierce,kmcguire@example.net,341-827-7248,38695101718255,2024-07-03 +Resort Hotel,0,242,2017,September,37,11,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,55.79,0,0,Check-Out,Haley Mccoy,josephkent@example.org,514.576.3005x660,3529572416296543,2025-12-26 +Resort Hotel,1,9,2017,December,52,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,235.0,179.0,0,Transient,91.38,0,1,Canceled,Claire Hoffman,samuelromero@example.net,983-229-4564,4996683978139,2024-05-25 +City Hotel,0,12,2017,March,10,4,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.87,0,0,Check-Out,Annette Rivas,robertsraymond@example.net,(345)927-0908x129,3540108500957958,2025-08-21 +Resort Hotel,0,37,2017,August,32,9,3,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient,133.08,0,0,Check-Out,Pamela Aguirre,stephaniemorris@example.org,628.275.1249,4114712405558490,2024-09-21 +Resort Hotel,0,110,2017,March,12,18,2,5,2,0.0,0,HB,AUT,Groups,Corporate,1,0,1,E,E,1,No Deposit,13.0,179.0,75,Transient-Party,161.64,1,1,Check-Out,George Bradshaw,bsantos@example.com,+1-405-785-8112,6011588572947750,2026-02-25 +City Hotel,1,146,2017,July,27,4,0,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,116.25,0,1,Canceled,Ryan Waters,justin79@example.org,933.687.3949x47231,3558476324365743,2025-09-28 +City Hotel,0,42,2017,May,21,19,1,2,3,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.53,0,0,Check-Out,Chase Matthews,kaylacalderon@example.org,(860)917-4037,36858255269853,2025-10-27 +City Hotel,0,80,2017,May,19,9,1,3,2,0.0,0,BB,BEL,Online TA,GDS,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,113.14,0,0,Check-Out,Sarah Nelson,terry11@example.org,001-980-890-0235x30174,2268882047412626,2025-10-29 +City Hotel,0,3,2017,March,12,17,2,5,2,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient,62.96,0,0,Check-Out,Sarah Wall,michellecurtis@example.net,848.905.4735x77384,213110373416452,2024-06-13 +City Hotel,0,207,2017,August,31,2,2,1,1,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,108.52,0,0,Check-Out,Paul Smith,morganflores@example.com,+1-823-263-7452x071,374374784773423,2024-05-03 +City Hotel,1,142,2017,January,3,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,105.1,0,0,Canceled,Kayla Burke,umartin@example.com,(381)341-7019x4115,372624419195315,2025-09-22 +Resort Hotel,0,19,2017,December,2,31,0,1,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,1.34,0,0,Check-Out,Jean Murillo,jacobjones@example.net,216-855-9891x7409,4527883368528241,2024-10-20 +Resort Hotel,0,14,2017,October,43,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,323.0,179.0,0,Transient-Party,53.77,0,0,Check-Out,William Hughes,srice@example.com,354.427.9567x718,3506343094086722,2024-07-16 +Resort Hotel,1,338,2017,October,42,17,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,170.0,179.0,0,Transient,91.54,0,0,Canceled,Brad Lee,jnguyen@example.org,+1-273-376-2527x8973,4276267557447,2025-04-04 +City Hotel,1,212,2017,July,31,30,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,80.87,0,0,Canceled,Samantha Morrow,leegeorge@example.com,001-611-978-8742x92222,342805836085869,2024-10-17 +Resort Hotel,0,33,2017,October,42,15,1,7,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,111.86,0,0,Check-Out,Tony Brooks,vcarrillo@example.org,718-758-2312x419,501879643655,2024-09-05 +City Hotel,0,152,2017,March,11,12,2,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,103.43,0,1,Check-Out,Matthew Miller,srodriguez@example.net,518-762-5511x21605,4584073974420104,2024-10-08 +City Hotel,0,96,2017,April,18,29,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,131.77,0,0,Check-Out,Angel Rojas,billy07@example.org,440.241.7540,4502892548316525,2025-10-21 +City Hotel,1,167,2017,February,7,16,0,4,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,113.86,0,2,Check-Out,Jason Thompson,timothycline@example.com,498-295-1993x949,3548191689527190,2024-08-01 +Resort Hotel,0,17,2017,December,49,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,48.96,0,1,Check-Out,Christina Aguilar,howellbrian@example.com,546.564.8068x3026,3572770912401593,2025-08-22 +City Hotel,0,34,2017,May,21,22,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,91.21,0,0,Check-Out,Jason Thomas,debra08@example.org,732.432.4801,4326499610728829,2024-09-27 +Resort Hotel,0,1,2017,May,22,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,16.0,242.0,0,Transient,85.84,0,3,Check-Out,Connie Ramirez,stephanierodriguez@example.net,7107198092,060489357198,2025-02-11 +City Hotel,0,8,2017,December,52,30,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.55,0,1,Check-Out,Jon Ramos,seanconway@example.com,551-769-3515,4099056689573356,2026-03-01 +City Hotel,1,157,2017,June,25,18,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.92,0,2,Canceled,Christopher Klein,wrogers@example.com,884.747.0348,3554111445973448,2025-03-17 +City Hotel,1,143,2017,January,3,18,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.35,0,2,Canceled,Charles Powell,chelseabowman@example.org,573-571-3935x6889,503868272751,2026-02-23 +Resort Hotel,1,86,2017,November,47,23,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,84.16,0,1,Canceled,Megan Carlson,pjordan@example.org,(449)643-4043,4690592334589,2026-03-20 +City Hotel,0,144,2017,July,30,24,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,115.96,0,0,Check-Out,Justin Davis,martingregory@example.org,(323)358-8064x845,4035268734965316,2026-01-31 +City Hotel,1,414,2017,April,16,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.25,0,0,Canceled,Molly Mckenzie,arnoldsharon@example.com,+1-827-806-1029x76591,6546515377918334,2024-04-07 +Resort Hotel,0,2,2017,December,49,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,118.18,0,0,Check-Out,Tammy Hendrix,vegachristopher@example.com,+1-927-501-8533x32616,4650569350932447,2024-10-06 +Resort Hotel,0,20,2017,October,43,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,16.0,74.0,0,Transient,45.81,0,0,Check-Out,Tara Jones,costajody@example.com,(941)977-1483x0278,4427714179344844,2026-03-03 +City Hotel,1,290,2017,November,45,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,208.0,0,Transient-Party,85.08,0,0,Canceled,Alison Zuniga,kelliwilson@example.com,001-423-726-4429x53999,3549908593476381,2025-02-17 +City Hotel,0,46,2017,April,14,4,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,127.47,0,1,Check-Out,Deborah Waller,katie02@example.com,6148543242,4484175479040807,2025-03-30 +Resort Hotel,0,0,2017,March,12,19,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,113.94,1,2,Check-Out,Jesse Davis,dixonjeffrey@example.com,348-435-5377,4919649415793990635,2024-12-17 +City Hotel,0,45,2017,November,45,5,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,85.26,1,2,Check-Out,Timothy Howard,larryherrera@example.com,(200)893-8770,4361648823182614,2024-04-01 +Resort Hotel,0,45,2017,May,21,25,1,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Contract,44.61,0,1,Check-Out,Christina Moon,taraporter@example.org,001-934-420-6505x6524,5134956360300744,2024-08-25 +Resort Hotel,1,15,2017,August,33,17,1,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,209.64,0,0,Canceled,John Ho,ytran@example.org,001-306-663-8932,4098092428261566,2025-06-22 +City Hotel,0,158,2017,October,41,11,2,1,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,106.69,0,0,Check-Out,Daniel Ferrell,deanna56@example.com,001-647-495-7441,2225069872255484,2025-07-02 +City Hotel,0,61,2017,October,42,16,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient-Party,148.21,0,2,Check-Out,Megan Miller,carpenterdean@example.org,522-306-9106x92197,5134486942331827,2025-03-29 +City Hotel,0,17,2017,October,43,24,1,3,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.14,0,0,Check-Out,James Robinson,whitevincent@example.com,825.489.5287,180044386637995,2025-02-03 +City Hotel,0,51,2017,March,10,4,1,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,126.75,0,2,Check-Out,Roger Petty,daniel15@example.com,001-244-409-7589x69745,2274179824609330,2025-12-30 +Resort Hotel,0,1,2017,March,13,27,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,240.0,179.0,0,Group,51.79,0,1,Check-Out,John Payne,rhonda39@example.com,+1-595-706-4852x5935,3520907544820757,2025-02-12 +Resort Hotel,0,92,2017,April,16,21,1,3,2,0.0,0,Undefined,,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,364.0500000000011,179.0,0,Transient,181.31,0,0,Check-Out,Jamie Lee,nicholsanthony@example.net,(272)545-5514,213185770580597,2025-05-04 +City Hotel,0,351,2017,October,40,5,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,78.13,0,0,Check-Out,Steven Gardner,carlosmoore@example.com,953.450.4046,4000302853813,2026-01-15 +City Hotel,1,26,2017,June,24,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,24.0,179.0,0,Transient,146.06,0,0,Canceled,Kevin Barber,gailbanks@example.com,(319)229-6247x057,213124994054204,2025-02-17 +Resort Hotel,0,26,2017,September,36,9,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,88.0,179.0,0,Contract,89.34,0,0,Check-Out,Kenneth Williams,robertburke@example.org,(392)392-0079x4185,372252586205954,2026-03-16 +Resort Hotel,1,230,2017,March,12,19,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient,71.84,0,1,Canceled,Elizabeth Williams,onealjacob@example.org,+1-591-284-6291x24243,5189512438344588,2024-06-01 +City Hotel,0,64,2017,October,43,24,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,114.24,0,1,Check-Out,Jessica Mitchell,alexandra37@example.com,494-277-5437x5105,2227534532851459,2025-08-18 +Resort Hotel,0,172,2017,August,32,4,2,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,C,0,No Deposit,240.0,179.0,0,Transient,94.65,0,1,Check-Out,Jesse Fleming,zachary48@example.org,2222939056,4596000646086,2025-07-27 +City Hotel,0,20,2017,August,34,23,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,95.74,0,1,Check-Out,Jennifer Ferguson,ssanders@example.org,391.426.7142,4555815553846,2024-10-09 +City Hotel,1,88,2017,March,12,16,0,3,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,41.3,0,0,Canceled,Susan Figueroa,dianarussell@example.org,310.600.2026x1641,4787968051050762,2025-01-30 +City Hotel,1,380,2017,September,39,26,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,105.21,0,0,Canceled,Mr. Thomas Jones PhD,conleydaniel@example.net,(971)338-3797x4425,676378117672,2024-12-29 +Resort Hotel,0,38,2017,April,14,1,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,E,E,2,Refundable,12.0,222.0,0,Transient-Party,62.13,0,0,Check-Out,Sherry Shannon,awhite@example.net,925-311-3450,4725803534077212,2025-08-28 +City Hotel,1,26,2017,August,34,22,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.35,0,1,Canceled,Samantha Garcia,harveyderrick@example.com,7076545078,2586194030128606,2025-06-13 +Resort Hotel,0,32,2017,February,7,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,126.0,179.0,0,Transient,38.3,0,1,Check-Out,Joseph Beltran,tylernichols@example.org,547-953-9588x5967,4082154013845,2025-09-09 +City Hotel,0,371,2017,May,21,24,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,75.0,0,Transient-Party,56.18,1,0,Check-Out,Joshua Navarro,riverastephen@example.net,825.816.3158x32154,375541565771961,2024-10-07 +City Hotel,1,101,2017,May,18,2,0,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,139.96,0,2,Canceled,Nicholas Obrien II,jasonpalmer@example.org,425-994-5642x089,4939622369998696647,2025-11-10 +City Hotel,0,3,2017,September,36,5,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.09,0,1,Check-Out,Ronald Baxter,icruz@example.com,267.542.2700x491,4405450250359,2026-01-16 +City Hotel,0,1,2017,July,31,30,0,4,2,0.0,0,Undefined,,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,123.18,1,2,Check-Out,Sherri Charles,bstevenson@example.com,586-399-7831,4036275383124658061,2024-10-09 +City Hotel,0,40,2017,November,47,23,0,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,131.17,0,0,Check-Out,Michael Flores,stephanie43@example.com,(428)381-6055x3628,2452642235832092,2026-01-06 +Resort Hotel,0,40,2017,August,35,28,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,2.18,0,0,Check-Out,Darryl Christensen,michaelmorgan@example.org,001-780-319-5787x6646,38735983359602,2024-11-03 +City Hotel,0,0,2017,March,10,8,1,4,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.36,0,0,Check-Out,Allison Floyd,uwebb@example.org,893.826.3080x421,6011344522213566,2024-09-24 +Resort Hotel,0,93,2017,June,23,4,2,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,231.87,0,1,Check-Out,Michelle Patterson,jessica57@example.net,974-816-8745x62132,180097493794125,2025-12-19 +Resort Hotel,0,153,2017,May,19,5,4,10,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,145.67,0,2,Check-Out,Wendy Chavez,adam49@example.net,530-671-0501,36892125203990,2026-01-21 +City Hotel,0,42,2017,November,44,2,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,A,1,No Deposit,10.0,179.0,0,Transient-Party,103.16,0,0,Check-Out,Jennifer Hurley,timothyjones@example.net,718.980.6841,4831625292955288552,2025-12-21 +City Hotel,0,29,2017,March,12,18,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.16,0,1,Check-Out,Jared Chan,timothybrown@example.com,+1-498-500-3113x4831,6583007574566664,2025-03-08 +City Hotel,0,3,2017,August,32,8,2,1,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,101.01,0,0,Check-Out,Ricky Diaz,bakercarl@example.net,5987698978,6541883084955204,2025-06-01 +City Hotel,0,37,2017,January,3,13,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,112.17,0,1,Check-Out,Joshua Miller,ddiaz@example.org,5785591635,371663784442838,2024-05-20 +City Hotel,1,141,2017,July,28,10,2,5,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,90.02,0,0,Canceled,Catherine Soto,megan48@example.net,+1-729-248-3959,501806777436,2025-11-17 +Resort Hotel,0,16,2017,October,40,6,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,79.5,0,2,Check-Out,Christopher Gay,lunavicki@example.net,600.777.8851x2125,3574470199682860,2025-05-17 +City Hotel,1,0,2017,April,18,27,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,109.59,0,0,Canceled,Mary Smith,markallen@example.org,4199311585,4840556181156093115,2025-04-30 +Resort Hotel,0,39,2017,March,13,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,65.35,1,1,Check-Out,William Giles,natalie32@example.org,001-395-414-4071x8389,3500149186500546,2026-01-08 +City Hotel,1,39,2017,October,41,13,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,87.62,0,1,Check-Out,Jennifer Hernandez,jennifer96@example.org,726.251.6975,213113775869096,2026-02-27 +City Hotel,1,197,2017,August,32,8,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,137.55,0,0,Canceled,Matthew Giles,sjohnson@example.org,7285287537,341934794730315,2024-04-09 +Resort Hotel,0,10,2017,October,43,24,2,10,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,198.92,0,0,Check-Out,Kenneth Murphy,susancrane@example.net,249.747.2325x581,30431526451845,2024-11-12 +City Hotel,1,97,2017,October,40,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,80.24,0,1,Canceled,Jesus Wheeler,sheatimothy@example.org,+1-623-960-9567,3567704681664930,2025-01-10 +City Hotel,0,7,2017,November,44,2,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.34,0,0,Check-Out,Kevin Barton,ashley52@example.net,624.545.9351x039,4156576629087142,2026-03-11 +Resort Hotel,0,11,2017,March,13,26,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,236.0,179.0,0,Transient,51.8,0,0,Check-Out,Jeffrey Lynch,kaitlynmiller@example.org,934-642-4744x7755,3534864346563107,2024-03-27 +Resort Hotel,0,13,2017,August,32,8,2,4,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,252.0,1,0,Check-Out,Joshua Smith,waynejenkins@example.org,5166247594,3508445790266819,2025-01-13 +City Hotel,0,4,2017,March,9,4,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,82.31,0,1,Check-Out,Steven Johnson,brooksandrea@example.org,280-486-0111x3152,4698950941223799,2025-04-30 +Resort Hotel,0,3,2017,November,48,25,1,0,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,C,G,1,No Deposit,15.0,179.0,0,Transient,0.99,0,0,Check-Out,Andrew Jacobs,mortega@example.com,730.843.0727,3543677819767586,2025-06-16 +City Hotel,1,188,2017,July,28,13,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,250.0,179.0,0,Transient,41.23,0,0,Canceled,Mary Daniels,madison75@example.com,257.883.4066x2904,3502945888863209,2026-02-28 +City Hotel,0,142,2017,July,29,21,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,203.7,0,2,Check-Out,Linda Holt,tcamacho@example.net,(638)553-3903,4634450651517206,2025-10-21 +City Hotel,1,161,2017,July,28,12,1,5,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,145.49,0,2,Check-Out,Dorothy Anderson,danielle63@example.org,518-623-9974x17969,6564682952165355,2025-01-16 +City Hotel,0,137,2017,December,51,22,2,5,2,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.23,0,2,Check-Out,Gail Moss,lindathornton@example.org,499.732.7624,30597407815348,2025-02-27 +City Hotel,1,0,2017,April,17,20,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,Non Refund,167.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Lori Holland,hannahroberts@example.com,771-751-7754,4270016829251337712,2025-07-26 +Resort Hotel,0,62,2017,December,49,4,0,4,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,27.0,179.0,0,Transient,78.37,0,0,Check-Out,Jesse Gardner,twoods@example.org,+1-757-250-4213x9276,3513874612116451,2025-10-24 +City Hotel,1,98,2017,August,32,8,2,4,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,141.62,0,2,Canceled,Robert Durham,vsoto@example.net,769-205-0953x4306,4320072487638429696,2025-10-10 +City Hotel,1,201,2017,August,35,25,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.48,0,1,Canceled,Jessica Kelly,jasminemartinez@example.com,(807)471-3044,639093321649,2026-03-10 +Resort Hotel,0,1,2017,October,41,7,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,323.0,179.0,0,Transient,52.31,0,0,Check-Out,Steven Morales,thomas14@example.org,664.826.8385,3549498607155536,2025-06-08 +City Hotel,0,8,2017,March,10,10,1,0,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,134.82,0,0,Check-Out,Craig Hammond,sclark@example.net,946-602-8261,675991424721,2024-06-07 +City Hotel,0,16,2017,November,45,10,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,109.8,0,2,Check-Out,Allison Gilbert,dodom@example.net,2156325662,6011202030077289,2024-12-16 +City Hotel,1,2,2017,August,33,10,1,2,3,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,P,0,No Deposit,14.0,178.0,0,Transient,217.79,1,0,No-Show,Richard Stuart,edward59@example.com,904-382-9807x988,4742142779541601,2024-05-16 +Resort Hotel,1,141,2017,August,33,12,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,354.0,179.0,0,Transient,199.16,0,0,Canceled,Mark Mcpherson,jeremy20@example.org,507.226.0279x0226,4874332207585775947,2025-12-18 +City Hotel,0,6,2017,July,30,25,1,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,196.67,0,2,Check-Out,Joseph Cruz Jr.,gorozco@example.net,549.523.2132x06433,4470348384853331247,2025-06-10 +Resort Hotel,0,1,2017,July,30,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,126.58,0,2,Check-Out,Suzanne Wagner,jonesjonathan@example.org,891-349-8271x447,675943493501,2024-11-01 +City Hotel,0,56,2017,October,42,17,0,2,2,1.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,221.42,0,3,Check-Out,Brittany Flowers,paulangelica@example.net,+1-760-939-0647x3606,180030358226156,2024-06-01 +Resort Hotel,1,32,2017,June,24,12,2,5,2,1.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,130.78,0,1,Canceled,Kenneth Snyder,jenniferrowe@example.com,764-756-2705,2248088929981325,2025-04-26 +City Hotel,0,256,2017,July,27,2,1,3,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,116.37,0,2,Check-Out,Rachel Patel,meganvillanueva@example.com,001-539-380-1962x618,4994158681686937928,2024-05-22 +Resort Hotel,0,110,2017,October,40,5,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,64.46,0,0,Check-Out,April Schneider,mcgeemichele@example.net,(631)479-0686x11831,347106372844651,2024-04-15 +Resort Hotel,0,286,2017,June,26,27,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,145.75,0,1,Check-Out,Rebecca Wood,reginald31@example.com,001-322-925-8317x5065,2355852519389051,2024-12-03 +City Hotel,1,158,2017,June,26,28,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,77.89,0,0,Canceled,Sonya Alvarado,whiterichard@example.com,778.425.6454x6782,2264224685189964,2025-11-18 +City Hotel,1,66,2017,September,36,8,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,9.0,179.0,0,Transient,240.95,0,1,Canceled,Nicole Price,cynthiapoole@example.com,+1-845-543-4982x67786,639099506813,2024-10-18 +City Hotel,0,117,2017,May,18,1,2,1,2,0.0,0,SC,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,129.44,0,0,Check-Out,Evelyn Bryant,ryanriley@example.net,823.641.4811x57186,4733252859485,2025-06-18 +City Hotel,0,11,2017,October,40,5,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,80.04,0,1,Check-Out,Michael Jackson,cummingsandrea@example.net,(478)576-1286,4017523053242917,2025-03-13 +Resort Hotel,0,1,2017,April,16,19,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,16.0,232.0,0,Transient,52.49,0,0,Check-Out,Casey Francis,smitholivia@example.net,7744975458,4825940862686650336,2026-03-27 +City Hotel,1,105,2017,December,52,23,2,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.34,0,1,Canceled,Debra White,marvin88@example.org,2715704716,4356578503590405,2026-03-04 +City Hotel,1,40,2017,May,18,1,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,160.5,0,1,Canceled,Julia Long,edwarddavis@example.com,001-431-728-0014,4186715466446862,2024-05-17 +City Hotel,0,22,2017,November,45,9,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.64,0,0,Check-Out,Ronald Carr,aaron82@example.org,319.951.4555,2276370544069594,2024-05-10 +Resort Hotel,0,146,2017,April,15,9,2,6,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,18.0,179.0,0,Transient,45.21,0,0,Check-Out,David Lynn,powelljoseph@example.org,(933)721-0721x6022,6500814400049173,2025-06-29 +City Hotel,1,241,2017,August,35,27,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,63.9,0,0,Canceled,Nancy Bradford,michaelbenson@example.org,5364044026,2221908433462143,2025-01-02 +City Hotel,0,30,2017,September,36,8,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.2,0,0,Check-Out,Sandra Walker,piercewilliam@example.org,640.724.6084x87258,6011812973577630,2024-10-15 +Resort Hotel,0,7,2017,August,31,3,0,2,2,2.0,0,HB,POL,Online TA,Direct,0,0,0,C,C,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,Kimberly Valenzuela,sierrasoto@example.com,827.269.4519,4288982787183921858,2024-04-04 +City Hotel,1,3,2017,September,37,13,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient-Party,165.88,0,0,No-Show,Ashley Sullivan,cowanluke@example.org,+1-407-304-1560x4931,4951612437853214,2025-06-28 +Resort Hotel,0,14,2017,March,10,7,2,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,250.94,0,1,Check-Out,Michael Moon,martinheather@example.com,346.806.3035,213128618100707,2024-12-03 +City Hotel,0,86,2017,March,13,24,0,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,11.0,179.0,0,Transient,118.48,0,1,Check-Out,Philip Bowen,robert97@example.net,450-414-1990x8957,4891730560981058,2025-04-19 +Resort Hotel,1,88,2017,December,49,4,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,110.85,0,1,Check-Out,Cassandra Landry,mary59@example.org,001-258-809-9899x69522,4529171077772617,2024-10-22 +Resort Hotel,0,92,2017,July,27,1,4,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,209.77,0,1,Check-Out,Wayne Jackson,zhorton@example.com,602.280.1004,3577593602049018,2025-11-04 +City Hotel,0,161,2017,June,24,12,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,172.92,0,2,Check-Out,Connie Neal,nina52@example.org,001-464-212-8225x86139,4392569349080780,2026-01-08 +City Hotel,1,36,2017,July,30,23,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.93,0,0,Canceled,Lawrence Parks,paynenicole@example.net,+1-700-977-4733x5591,341802504479343,2025-08-09 +Resort Hotel,0,40,2017,March,10,10,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,81.73,1,1,Check-Out,Scott Ayers,kenneth48@example.com,+1-796-854-5940x981,213102707844541,2025-08-02 +City Hotel,1,18,2017,June,24,14,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.95,0,1,No-Show,Michael Wood,kennethwebb@example.net,288-800-7093,4815749523549235,2024-12-16 +Resort Hotel,1,153,2017,March,12,18,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,244.0,179.0,0,Transient,92.35,0,0,Canceled,Matthew Stone,henrycook@example.org,5122328073,4540917688260354381,2024-07-20 +City Hotel,0,109,2017,April,17,24,0,1,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.12,0,0,Check-Out,Tiffany Hansen,ikeller@example.net,+1-254-758-4506x312,4861180484439,2024-07-09 +Resort Hotel,0,31,2017,June,23,9,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,49.02,0,1,Check-Out,Frank Freeman,hensontiffany@example.net,428-322-2297,6525605875986902,2025-05-29 +City Hotel,0,1,2017,June,23,7,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.78,0,2,Check-Out,Samantha Walker,loretta52@example.net,498-275-7607x236,6546570967879883,2024-04-30 +Resort Hotel,1,33,2017,December,52,25,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,100.72,0,0,Canceled,Mark Wilson,mperry@example.net,729.500.1152,675954275888,2025-11-30 +City Hotel,1,155,2017,June,25,18,0,5,2,1.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,0,No Deposit,249.0,179.0,0,Transient,222.36,0,3,Canceled,Kayla Ray,thompsonmiranda@example.org,001-971-361-3592x4147,4301085575438881,2025-09-29 +Resort Hotel,0,28,2017,May,19,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,240.0,179.0,0,Transient,63.41,1,1,Check-Out,Ashley Olson,radams@example.org,2916766063,676262886176,2025-07-08 +City Hotel,1,107,2017,April,16,15,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.93,0,0,Canceled,Mr. Joseph Bush,david43@example.com,+1-748-511-1856x34350,4344770718029082032,2025-12-07 +Resort Hotel,0,140,2017,March,11,14,0,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,223.0,0,Transient-Party,44.44,0,1,Check-Out,Debra Johnson,mcguirewilliam@example.com,001-835-842-6989,502063587054,2024-09-19 +City Hotel,0,10,2017,February,7,10,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,74.0,0,Transient-Party,64.75,0,0,Check-Out,Christine Parker,jesse68@example.org,549.289.8365,4056758983955939,2025-04-18 +Resort Hotel,0,155,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,12.0,222.0,0,Transient-Party,60.46,0,0,Check-Out,Jesse Murphy,dunnbrittany@example.com,+1-292-347-6174x164,180079176232201,2025-05-10 +Resort Hotel,0,8,2017,November,47,21,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,52.92,1,2,Check-Out,Brian Daniel,joshuawalker@example.com,(416)357-5415,4787442340715,2024-12-16 +Resort Hotel,1,90,2017,March,11,15,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,44.29,0,0,Canceled,Stephen Roth,luisraymond@example.com,636-495-7923,502072166189,2025-02-08 +City Hotel,0,28,2017,November,45,5,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.93,0,1,Check-Out,Ryan Warren,andrewhall@example.com,(528)398-2259,30107788218011,2024-06-05 +Resort Hotel,0,13,2017,February,6,5,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,38.29,0,1,Check-Out,Jeffery York,dana61@example.net,(876)303-3942x288,6565474441476612,2026-01-15 +Resort Hotel,0,15,2017,February,8,19,1,1,2,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,C,0,No Deposit,8.0,255.0,0,Transient-Party,42.32,0,1,Check-Out,Tyler Baker,fernandezpaul@example.net,+1-461-238-2171x2867,343097744921380,2024-12-21 +Resort Hotel,0,1,2017,July,29,17,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,120.51,0,1,Check-Out,Melissa Schneider,eugene58@example.com,3694955515,4386276939567,2025-12-12 +City Hotel,0,13,2017,February,9,25,1,3,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient-Party,62.93,0,0,Check-Out,Trevor Sparks,ygonzales@example.org,+1-806-245-1230x19682,4226658958654,2025-02-21 +City Hotel,0,414,2017,March,11,9,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,110.05,0,1,Check-Out,Hector Bryant,dawn76@example.org,922-390-3569x35262,4442857977793349,2024-08-24 +City Hotel,0,105,2017,August,31,4,1,1,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,79.28,0,1,Check-Out,Theresa Martinez,ashleymiddleton@example.net,+1-552-432-7036x57819,6566452336307125,2024-11-26 +City Hotel,1,133,2017,December,48,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,156.0,179.0,0,Transient,90.18,0,0,Canceled,Kaitlyn Brown,sarahhunt@example.org,+1-581-791-5903,4713143080620803233,2024-09-10 +Resort Hotel,0,44,2017,August,33,15,1,4,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,167.33,0,0,Check-Out,Bonnie Woods,patriciamorris@example.com,972-240-6924x069,6596240055254345,2024-09-18 +City Hotel,1,56,2017,April,17,24,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,138.23,0,0,Canceled,Carlos Kirk,jenniferhuffman@example.com,659.818.6035x7971,6527588470510699,2026-03-17 +City Hotel,0,8,2017,June,23,4,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,118.44,0,1,No-Show,Selena Bailey,juanmoore@example.org,292.377.9919x196,30079154775322,2025-08-20 +City Hotel,0,3,2017,February,6,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,107.89,0,0,Check-Out,Chad Rivera,susanmarquez@example.net,410-412-9312,30377016967313,2025-07-02 +City Hotel,1,358,2017,May,22,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,40,Transient,141.39,0,0,Canceled,Rhonda Patterson,qchen@example.net,5677813936,4573005893721581663,2024-08-16 +Resort Hotel,1,0,2017,July,27,5,1,0,1,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.59,0,0,Canceled,Frederick Mejia,eric07@example.org,873-909-5940x12859,3532269651922090,2024-03-30 +City Hotel,0,0,2017,August,34,25,0,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,135.15,0,0,Check-Out,Rebecca Cole,dacosta@example.org,001-791-819-1873x309,3500190933855593,2024-07-21 +City Hotel,1,190,2017,May,20,12,1,4,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,168.75,0,1,Canceled,Edwin Jackson,petersonleslie@example.net,(612)269-1860,3578455440371104,2025-05-10 +City Hotel,0,105,2017,May,19,8,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,101.34,0,1,Check-Out,George Rogers DDS,dylanstevens@example.net,001-363-541-5890,6011291175935310,2025-09-19 +City Hotel,0,141,2017,July,27,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,179.0,0,Transient,137.22,0,0,Check-Out,Kimberly Morgan,michaelthomas@example.com,8958607027,3515945356811149,2024-07-24 +City Hotel,0,97,2017,July,31,31,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,137.39,0,0,Check-Out,Tracey Hogan,brittany65@example.com,638.561.7736,341251396386713,2026-01-31 +City Hotel,0,15,2017,July,28,11,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.38,0,2,Check-Out,Micheal Austin,josesimon@example.com,783.203.4842x4637,4692891836421,2025-02-01 +City Hotel,1,318,2017,March,13,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,18,Transient,61.85,0,0,Canceled,Carl Rubio,ndonovan@example.net,609-733-3390,6530629985694589,2024-08-07 +City Hotel,1,44,2017,September,37,13,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,197.0,0,Transient,118.39,0,1,Canceled,Tracy Burnett,mperez@example.org,(495)987-6495x94342,379773414230701,2025-05-12 +Resort Hotel,0,1,2017,November,46,13,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,135.02,0,1,Check-Out,Gary Taylor,barnettkathryn@example.org,7947709929,30326890180956,2024-11-29 +City Hotel,0,38,2017,November,47,24,2,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,64.14,0,0,Check-Out,Sonya Williams,garciadaniel@example.org,920-931-2652x000,3529799358591801,2025-09-28 +City Hotel,0,37,2017,July,29,21,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.49,0,1,Check-Out,Jacqueline Hall,hallsara@example.net,(761)942-5027,4638565181384482,2024-10-22 +City Hotel,1,55,2017,July,28,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,162.91,0,0,Canceled,Crystal Mullen,coxdouglas@example.com,(649)830-1417x35042,5285204858115945,2025-07-04 +City Hotel,0,0,2017,March,12,17,2,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Group,81.0,0,0,Check-Out,Shawn Ware,matthewtaylor@example.com,575-567-4384x0152,213155784306339,2024-10-10 +City Hotel,0,2,2017,September,38,17,1,0,1,0.0,0,BB,NLD,Offline TA/TO,Corporate,0,0,0,D,B,0,No Deposit,11.0,227.0,0,Transient-Party,129.79,0,0,Check-Out,Rebecca Oneill,kellyjohnson@example.net,8648300648,6508883855489210,2024-07-29 +City Hotel,0,12,2017,June,23,1,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,111.98,0,0,Check-Out,Aaron Morgan,whitechristopher@example.com,8344065421,373871887196312,2024-06-07 +Resort Hotel,0,1,2017,August,32,9,0,4,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,0.5099000000000001,0,2,Check-Out,Damon Schultz,briancampbell@example.com,6533760006,4744573856510099766,2026-01-10 +City Hotel,1,198,2017,March,10,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.79,0,0,Canceled,Catherine Garcia,panderson@example.net,+1-818-452-2099x88022,4639723676877611149,2025-04-28 +City Hotel,1,404,2017,January,2,5,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,13.0,62.0,0,Transient,43.12,0,0,Canceled,Samuel Warren,thomasrios@example.org,791-957-4660,4189390175799,2024-09-20 +Resort Hotel,0,184,2017,June,23,3,3,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,E,0,No Deposit,245.0,179.0,0,Transient,126.51,1,0,Check-Out,Kevin Carney,rodriguezhenry@example.net,+1-351-290-0798,2266310692366675,2025-05-05 +Resort Hotel,0,97,2017,April,16,15,2,5,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,D,D,1,No Deposit,323.0,179.0,0,Transient,102.37,1,1,Check-Out,Jonathan Jefferson DVM,katiesummers@example.com,(582)462-3049,38358692057985,2025-01-13 +Resort Hotel,1,56,2017,August,32,4,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,236.0,179.0,0,Transient,60.29,0,1,Canceled,Jerry Walsh,rileyamanda@example.net,001-813-583-7956x8885,5514096941176170,2025-06-24 +City Hotel,0,13,2017,August,33,13,2,5,3,0.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,229.13,0,2,Check-Out,Travis Day,margaretmarsh@example.net,612-980-2934x267,4405636944045784,2024-05-07 +City Hotel,0,48,2017,November,47,23,0,1,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,84.45,0,0,Canceled,Aaron Diaz,qsmith@example.net,(984)546-0872,30468902167413,2024-10-28 +City Hotel,0,18,2017,January,3,13,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,44.53,0,2,Check-Out,Nancy Jackson,carla93@example.net,001-351-730-5191x165,5311600344651195,2025-06-15 +City Hotel,1,414,2017,May,21,20,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,174.98,0,0,Canceled,Daniel Benjamin,earnold@example.org,623.387.3253x53363,4095838460201483229,2025-05-07 +Resort Hotel,0,104,2017,July,28,10,4,2,2,0.0,0,BB,CN,Direct,Direct,0,0,0,E,E,0,No Deposit,290.0,179.0,0,Transient,231.77,0,0,Check-Out,Renee Thompson,ygarcia@example.com,505-402-3944x80470,4176851046767,2024-09-23 +Resort Hotel,0,9,2017,February,6,5,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,41.3,0,0,Check-Out,Rose Mclaughlin,efigueroa@example.net,001-594-751-4093x649,340069850681960,2025-10-17 +City Hotel,0,95,2017,March,11,11,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,141.73,0,1,Check-Out,Arthur Gonzalez,crice@example.net,(925)658-7091x4093,676127286521,2025-01-05 +City Hotel,0,55,2017,December,51,20,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,83.74,0,0,Check-Out,Ryan Smith,qmcdowell@example.net,001-303-812-2408x2486,180002892836022,2026-01-05 +Resort Hotel,0,0,2017,January,4,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,39.85,1,1,Check-Out,Brandon Bennett,millerkelly@example.com,578.260.5751x151,503886824526,2025-05-17 +City Hotel,0,11,2017,May,21,21,2,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,102.06,0,1,Check-Out,Brandon Sanchez,cjackson@example.net,001-366-823-7467x7438,3583040283940810,2024-09-17 +Resort Hotel,0,145,2017,December,52,24,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,54.36,0,1,Check-Out,Christopher Robbins,ashley49@example.com,371.464.7362,2292059635954497,2024-10-04 +Resort Hotel,0,81,2017,March,13,29,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,85.79,1,1,Check-Out,Alexander Martin,sullivandaryl@example.org,292.879.7595x1879,213196353272312,2024-11-13 +Resort Hotel,0,30,2017,October,43,25,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,94.0,179.0,0,Transient,108.45,0,2,Check-Out,Joseph Miller,whitesandra@example.com,709-470-5403,36695095294299,2025-01-23 +City Hotel,1,202,2017,September,37,14,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,189.37,0,0,Canceled,Richard Yoder,rebeccasmith@example.org,001-214-578-4395,4875378349003453,2024-06-08 +City Hotel,0,1,2017,February,9,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,52.0,0,Transient,64.49,1,1,Check-Out,Frank Francis,farmermelanie@example.com,001-711-587-3266,3519296985601824,2025-10-21 +Resort Hotel,0,1,2017,May,18,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,326.0,331.0,0,Transient-Party,50.06,0,0,Check-Out,Mark Webb,aperez@example.com,661-893-5029,6528269588229436,2024-09-04 +City Hotel,1,107,2017,April,16,19,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,113.7,0,0,Canceled,Scott Mcmahon,earl19@example.org,338.486.1234,4566886885488,2024-12-04 +City Hotel,0,18,2017,August,35,29,0,1,2,1.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,144.77,0,2,Check-Out,Luke Dixon,jonathanclark@example.com,+1-393-406-3456x2452,4200392108656597,2024-12-18 +City Hotel,0,42,2017,November,47,20,2,2,2,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,A,0,No Deposit,4.0,199.0,0,Transient,62.05,0,1,Check-Out,Mckenzie Chavez,lisa74@example.com,672-536-9458x045,3552502524749695,2025-11-12 +Resort Hotel,0,151,2017,March,13,26,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,15.0,221.0,0,Transient-Party,76.07,0,0,Check-Out,Kristen Blair,ygreer@example.com,287.845.5670x5381,4963601953939917,2025-02-27 +Resort Hotel,0,12,2017,July,28,8,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,243.0,179.0,0,Transient,196.43,1,3,Check-Out,Joshua White,dustin98@example.com,788-208-9322x135,36297484166731,2025-02-20 +City Hotel,0,153,2017,June,26,22,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.6,0,2,Check-Out,Bryan Harrison,smyers@example.com,645-559-8818x12864,6554239443177804,2024-06-08 +City Hotel,1,279,2017,July,30,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,252.0,0,0,Canceled,Michael Gonzalez,gonzalestroy@example.org,390.605.8872x215,4536376699376975,2025-10-18 +Resort Hotel,1,197,2017,August,31,5,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,109.62,0,1,Canceled,Monica Frost,parkerjennifer@example.org,668.804.9497x7791,501871027691,2026-02-09 +City Hotel,0,347,2017,April,16,14,0,2,2,0.0,0,BB,FRA,Direct,Direct,1,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,98.61,0,3,Check-Out,Tracy Frye,johnsonemily@example.net,999-783-5079x198,4507321331381,2025-08-11 +City Hotel,1,277,2017,November,46,11,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.62,0,1,Canceled,Erika Thompson,dudleycrystal@example.com,251.660.8931,675964842693,2025-08-27 +City Hotel,0,64,2017,August,33,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,168.68,1,2,Check-Out,Latasha Mendez,troberts@example.org,001-226-386-0101x815,180031180253228,2024-06-30 +City Hotel,0,106,2017,December,49,6,2,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient,85.75,0,1,Check-Out,Sierra Moses,nlyons@example.org,208-737-7632,180086688517011,2025-04-03 +Resort Hotel,1,171,2017,December,50,15,1,5,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,64.16,0,0,Canceled,Rebecca Sandoval,james58@example.org,(570)918-2189x684,343385794315409,2025-08-08 +City Hotel,0,22,2017,May,22,30,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.77,0,1,Check-Out,Margaret Young,alexander85@example.net,(294)222-6075x072,342079012241098,2025-11-22 +Resort Hotel,1,238,2017,June,24,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,242.0,179.0,0,Transient,73.64,0,0,Canceled,Cynthia Jackson,heatherschmitt@example.net,3585795913,4289116510820168,2026-03-11 +City Hotel,1,17,2017,December,49,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,105.67,0,0,Canceled,Michaela Sanchez,maldonadomatthew@example.org,(239)365-3303x72000,4065422152818,2025-03-04 +Resort Hotel,1,17,2017,May,21,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,147.51,0,0,Canceled,Stephanie Harris,richard47@example.org,789-944-1654,2222915058505550,2024-09-02 +City Hotel,0,112,2017,July,28,7,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.29,0,1,Check-Out,Elizabeth Butler,carlolson@example.com,4967779144,180099601381340,2024-09-17 +City Hotel,0,24,2017,August,34,19,2,6,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,64.09,0,1,Check-Out,Matthew Mclaughlin PhD,andersonpamela@example.org,+1-371-747-9499x20977,3513908008569582,2025-12-29 +City Hotel,0,16,2017,July,29,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.3,0,1,Check-Out,Robert Roberts,erinunderwood@example.net,001-810-244-5212x85835,3537430303621002,2024-03-31 +Resort Hotel,1,289,2017,October,42,17,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,B,E,0,Non Refund,12.0,179.0,0,Transient,80.21,0,0,Canceled,Laura Green,lschroeder@example.org,001-881-231-3397x9625,3521528051991606,2026-02-07 +Resort Hotel,0,1,2017,January,2,13,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Robert Hampton,harpersarah@example.net,706.571.2838x24539,6575632965129283,2025-11-29 +Resort Hotel,0,2,2017,October,42,16,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,42.43,0,0,Check-Out,Molly White,melissasmith@example.net,+1-711-744-7731,5538907549048383,2026-01-26 +City Hotel,0,1,2017,January,4,25,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.85,0,2,Check-Out,Roger Valencia,garmstrong@example.net,919.955.4968,675965693426,2025-08-29 +Resort Hotel,0,139,2017,May,22,26,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,126.83,1,2,Check-Out,Cody Thompson,michellecox@example.com,922-289-3256,4730833137551199699,2024-11-26 +Resort Hotel,0,92,2017,December,52,27,2,4,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,308.0,179.0,0,Transient-Party,61.18,0,0,Check-Out,Anthony Wright,christy45@example.com,465.764.4227,4868070506787122925,2025-03-02 +Resort Hotel,0,15,2017,March,13,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,56.66,0,2,Check-Out,Julie Rose,michaelmclaughlin@example.com,+1-286-639-4562x59623,675974412719,2024-05-20 +City Hotel,0,42,2017,May,20,12,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,94.75,0,0,Canceled,Mr. John Woodard MD,cookjessica@example.net,(533)772-4726x62017,3595517384545537,2024-06-22 +City Hotel,0,95,2017,September,37,9,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,163.92,1,2,Check-Out,Kristin Herman,davisbrittany@example.org,629.473.6174x1892,5277351818690499,2025-05-25 +City Hotel,0,24,2017,October,44,31,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.84,0,1,Check-Out,Chase Burnett,jenniferrodriguez@example.com,(202)514-8713x2068,4036029556474921,2025-12-16 +Resort Hotel,1,243,2017,October,43,27,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,92.22,0,0,Canceled,Annette Mcguire,tstewart@example.org,955-705-9257,5107582413666825,2026-01-07 +City Hotel,0,55,2017,May,20,16,0,2,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,119.8,0,1,Check-Out,Richard Roy,michael91@example.org,378-647-2526,4923351455818131526,2024-05-10 +City Hotel,1,97,2017,October,42,18,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,81.25,0,0,Canceled,Carrie Ware,laura36@example.net,001-557-250-1115x57381,4846412891255652,2024-05-28 +City Hotel,0,28,2017,March,12,24,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,95.42,0,0,Check-Out,Julian Obrien,amy64@example.org,(375)840-5485x0663,373579243846310,2025-01-12 +City Hotel,1,79,2017,March,10,8,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,119.02,0,0,Canceled,Stacey Stone,dannyadams@example.com,+1-454-674-0967x3208,30156055761849,2025-02-15 +City Hotel,0,18,2017,August,35,27,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,114.52,0,0,Check-Out,Laura Bailey,barbarathomas@example.net,+1-831-396-1813x516,630493598050,2025-07-11 +City Hotel,0,9,2017,November,45,10,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,78.74,0,1,Check-Out,Patrick Bush,wangcrystal@example.com,672.609.0582x9560,4862097274360119,2025-02-12 +City Hotel,1,65,2017,September,37,11,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,126.09,0,0,Canceled,Jose Lopez,ybrown@example.org,604-394-1069x97876,213167360896658,2025-08-14 +Resort Hotel,0,5,2017,July,30,26,0,1,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,160.45,1,1,Check-Out,Jennifer Brown,mary40@example.com,393-847-6553,2560851652129200,2024-05-07 +City Hotel,1,359,2017,June,23,7,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,81.0,0,0,Canceled,Nicole Bright,marcusbrooks@example.net,963-533-4035,6510604436421183,2024-07-26 +Resort Hotel,0,148,2017,June,24,11,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,132.86,1,2,Check-Out,Christina Ramirez,julie45@example.net,+1-495-526-1847x43422,2719487532928923,2025-11-30 +City Hotel,1,100,2017,August,34,25,2,6,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,81.59,0,0,Canceled,Thomas Brewer,sheryl30@example.net,617.956.5775x25817,3567807951406625,2026-01-29 +Resort Hotel,1,309,2017,July,27,2,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,75,Transient,108.74,0,0,Canceled,Sarah Berry,amberbrown@example.com,728-673-9347x5199,4028993050671447283,2024-10-03 +City Hotel,1,100,2017,October,41,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,60.85,0,0,Canceled,Austin Conley,jacqueline12@example.net,7598507333,4934306978939,2025-03-28 +Resort Hotel,1,51,2017,September,36,2,3,6,1,0.0,0,BB,IRL,Online TA,GDS,0,0,0,D,D,0,No Deposit,179.0,179.0,0,Transient,128.06,0,0,Canceled,Daniel Luna,andersonstephanie@example.net,(717)568-2641,3558471035603961,2024-07-01 +Resort Hotel,0,0,2017,January,2,3,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,50.09,1,1,Check-Out,Sharon Johnson,brian66@example.com,001-978-747-4431,4810195164305825629,2025-01-23 +Resort Hotel,0,232,2017,April,16,15,3,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,304.0,179.0,0,Contract,49.45,0,2,Check-Out,Kenneth Maxwell,jacquelinehudson@example.com,701.362.0919,180067477550306,2025-02-22 +City Hotel,0,9,2017,January,4,26,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient-Party,94.34,0,1,Check-Out,Laurie Bailey,westpatricia@example.org,001-364-795-1703,371125977240692,2024-10-16 +City Hotel,0,50,2017,October,43,24,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Group,140.84,0,2,Check-Out,Eric Woods,jeffrey61@example.com,+1-267-385-5732x86208,3523395475895625,2025-01-01 +City Hotel,1,38,2017,October,43,22,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,73.52,0,1,Canceled,Nancy Lee,fitzgeraldmelissa@example.org,(288)645-9086,4093256757023963,2025-02-19 +City Hotel,0,36,2017,September,36,9,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.83,0,0,Check-Out,Christina Smith,huertagregg@example.net,304.519.9021,2629062941403344,2024-05-06 +Resort Hotel,0,6,2017,September,37,12,1,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,39.0,179.0,0,Transient,107.06,0,0,Check-Out,John Clark,sabrinahancock@example.net,+1-387-810-1481x981,370287527494038,2024-12-26 +City Hotel,0,340,2017,October,40,3,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,101.39,0,0,Check-Out,Anna Ponce,jgibbs@example.net,(823)528-9361x449,213158730728705,2026-01-15 +City Hotel,0,163,2017,April,17,24,2,2,3,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,81.28,0,1,Check-Out,Anthony Hernandez,brian38@example.net,001-607-268-4898,675955437040,2025-11-19 +Resort Hotel,0,113,2017,November,47,21,2,5,3,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,14.0,62.0,0,Transient,50.93,0,0,Check-Out,Daniel Wilson,mariabarber@example.com,8376721768,30249425964118,2025-03-07 +City Hotel,1,297,2017,December,50,10,2,2,2,2.0,0,SC,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,228.44,0,0,Canceled,Melody Stevens,rodriguezjustin@example.net,260-617-5069,586731100739,2024-11-15 +City Hotel,1,109,2017,June,23,9,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,58,Transient,87.67,0,0,Canceled,Matthew Brown,jeremy76@example.com,(264)614-8170,6011905000825475,2024-11-07 +City Hotel,0,107,2017,July,27,2,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.28,0,2,Check-Out,Nichole Davis,tmccoy@example.com,967-495-1034,345901928866691,2025-12-06 +Resort Hotel,0,98,2017,August,32,4,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,237.48,0,3,Check-Out,James Anderson,jerrywarner@example.com,001-712-642-6128x93690,502001701437,2024-09-03 +City Hotel,1,147,2017,March,13,29,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,73.26,0,1,Canceled,Bryan Griffith,tracy56@example.org,(468)497-2066x683,6599717952792805,2025-12-05 +City Hotel,0,9,2017,March,11,10,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,98.62,0,0,Check-Out,Nathan Stanley,smithchristina@example.net,600.977.5088,3500341455159035,2024-11-09 +City Hotel,0,109,2017,March,10,5,2,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,37.47,0,0,Check-Out,Olivia Randolph,lfoster@example.com,808-296-1163x52832,3565496499289909,2025-03-29 +City Hotel,1,331,2017,August,32,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,65.58,0,2,Canceled,Marcus Blair,parkercolleen@example.net,(446)896-2104x054,4263473154294436,2025-07-13 +City Hotel,0,1,2017,September,36,4,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,E,0,No Deposit,2.0,179.0,0,Transient-Party,66.66,0,0,Check-Out,Kenneth Reynolds,simonkimberly@example.org,501.590.2524,630485884047,2024-11-12 +City Hotel,0,4,2017,March,11,15,2,5,2,0.0,0,HB,AUT,Offline TA/TO,Direct,0,0,0,D,C,1,No Deposit,10.0,179.0,0,Transient,158.64,0,3,Check-Out,Joshua Guerrero,andre85@example.org,(661)453-3541x2700,30515911592039,2024-11-29 +Resort Hotel,0,11,2017,October,40,1,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient-Party,130.16,0,1,Check-Out,Shawn Shepherd,xlewis@example.net,+1-485-621-1680x18080,3566821675923238,2024-11-26 +Resort Hotel,0,103,2017,June,25,20,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,82.79,1,3,Check-Out,Ashley Duran,markblanchard@example.org,001-366-933-5526,502003640120,2026-03-23 +City Hotel,0,294,2017,September,39,27,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,108.85,0,1,Check-Out,Brian Mitchell,reynoldsjennifer@example.net,6368702231,4281715042528927072,2025-11-09 +City Hotel,1,21,2017,August,32,5,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,134.84,0,1,Canceled,Melanie Garrett,marthasantiago@example.org,+1-843-459-2211x111,675994488772,2024-09-25 +City Hotel,0,10,2017,October,43,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,97.18,1,0,Check-Out,George Smith,qrice@example.com,001-618-495-2069x687,30294006663374,2025-01-08 +City Hotel,0,88,2017,March,12,23,2,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,110.12,0,2,Check-Out,Vicki Hernandez,yayala@example.com,(860)274-3296x604,30404592506925,2024-09-10 +City Hotel,0,37,2017,March,11,17,1,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.76,0,2,Check-Out,Carl Larsen,evansalicia@example.net,+1-713-888-5593x92098,4784390856057,2025-08-29 +City Hotel,0,94,2017,July,29,22,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,234.12,1,1,Check-Out,Mercedes Richardson,jparker@example.net,(868)722-2623x7645,4792971406164035505,2025-04-29 +Resort Hotel,1,267,2017,July,29,13,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,238.0,179.0,0,Transient-Party,103.47,0,0,Canceled,Mikayla Franco,pmeyer@example.net,001-649-921-6207,2638750600185066,2025-12-10 +City Hotel,0,16,2017,April,17,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,112.16,0,1,Check-Out,Patrick Rios,xmccarthy@example.org,001-201-558-1515x846,4046735788544095,2024-11-21 +City Hotel,0,45,2017,June,25,21,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,137.37,0,1,Check-Out,Cindy Estrada,richardashley@example.com,397.515.5376,30199401104272,2024-10-09 +City Hotel,1,108,2017,July,30,26,0,1,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.5,0,1,Canceled,Bethany Neal,victoria76@example.net,3077035936,4184811869756877036,2026-01-13 +City Hotel,1,247,2017,November,48,26,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.95,0,0,Canceled,Alan Davis DVM,brewerderek@example.net,(647)698-3303x82460,6011123119283392,2025-11-06 +City Hotel,1,205,2017,August,34,22,2,5,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,135.35,0,2,Canceled,Donald Coleman,bernardpaula@example.com,(922)201-5005,4977093337300453510,2025-03-24 +City Hotel,0,47,2017,July,30,25,0,3,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,129.83,0,0,Check-Out,Gabriel Richardson,martincarolyn@example.com,5997733348,180044504860180,2025-01-09 +Resort Hotel,0,154,2017,April,14,1,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,62.28,0,0,Check-Out,Thomas Lewis,hamiltonkevin@example.org,001-206-633-8199,4929751949289563,2025-05-06 +City Hotel,0,8,2017,February,8,22,1,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.04,0,1,Check-Out,Todd Beasley,tuckeramy@example.org,359-989-7255x6252,4083886005576651,2025-08-01 +City Hotel,0,10,2017,September,37,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,74.0,179.0,0,Transient-Party,78.58,0,0,Check-Out,Allison Branch,wilsonjeffery@example.net,(416)554-2034x23013,501838938964,2026-02-27 +Resort Hotel,0,3,2017,February,8,17,1,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,D,C,1,No Deposit,343.0,179.0,0,Transient-Party,49.0,0,0,Check-Out,Jenny Cox,sharonwashington@example.net,001-798-790-2859x063,4819546699034851,2025-05-21 +City Hotel,1,96,2017,December,51,21,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,49.42,0,0,No-Show,David Simpson,samanthamartin@example.org,488-958-5749,180033935044209,2024-05-03 +Resort Hotel,1,147,2017,May,22,30,0,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient-Party,95.52,0,0,Canceled,Kyle Brown,pcarson@example.net,638-440-4323,3594562777509089,2024-04-13 +Resort Hotel,1,86,2017,June,26,22,0,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,114.91,0,0,Canceled,Tracey Reynolds,fpadilla@example.com,+1-896-277-8903,2373723420802086,2024-04-24 +Resort Hotel,0,15,2017,August,32,8,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,63.39,0,2,Check-Out,Alison Perez,swiggins@example.com,960.492.0914x4814,3534515169645690,2025-08-09 +City Hotel,0,23,2017,April,17,22,1,1,1,0.0,0,BB,AUT,Online TA,Direct,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,107.21,0,0,Check-Out,Douglas Santos,woodwardkathryn@example.org,(272)291-5205,4295972591772799,2024-04-07 +Resort Hotel,1,293,2017,September,37,15,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,F,G,0,No Deposit,241.0,179.0,0,Transient,131.77,0,0,Canceled,Grace Green,zsaunders@example.org,830-489-7484x3598,676281903283,2025-06-05 +City Hotel,0,72,2017,March,13,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,8.0,179.0,0,Transient,107.41,0,1,Check-Out,Samantha Cohen,juliemartinez@example.com,+1-993-961-8318x581,180006564848348,2025-03-19 +Resort Hotel,1,258,2017,September,38,20,2,3,2,0.0,0,HB,POL,Groups,TA/TO,0,1,0,E,A,0,No Deposit,240.0,179.0,0,Transient,104.9,0,0,Canceled,Courtney Page,melissa52@example.net,001-480-628-5600x5907,4052223616788896,2024-06-21 +City Hotel,1,7,2017,December,49,9,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,B,1,No Deposit,7.0,179.0,0,Transient,110.93,0,2,Check-Out,David Martinez,misty86@example.org,814-972-4434,585336909981,2025-07-23 +City Hotel,0,20,2017,August,32,3,2,5,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,216.0,0,Transient,163.57,0,0,Check-Out,Susan Sullivan,michelethomas@example.org,707-316-3256x062,4053805501587,2025-01-07 +City Hotel,0,42,2017,June,25,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.17,0,1,Check-Out,Thomas Bowman MD,coffeytiffany@example.net,001-663-796-4387x82034,30197645800648,2026-03-07 +City Hotel,1,165,2017,October,42,14,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,18,Transient,123.45,0,0,Canceled,Elizabeth Brown,susan07@example.com,4535128834,4437811133207261,2024-05-07 +Resort Hotel,1,85,2017,January,2,8,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,292.0,179.0,0,Transient,39.67,0,0,Canceled,Michael Bolton,across@example.com,600-351-1307x348,4058198998964782,2025-12-06 +Resort Hotel,0,166,2017,August,35,28,2,0,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,241.05,1,1,Check-Out,Jeffery Thompson,pmorrow@example.net,294.934.0821x00095,4332254741274918,2025-09-18 +Resort Hotel,0,114,2017,March,13,31,1,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,62.37,0,0,Check-Out,John Rodriguez,caleb64@example.org,265-493-2376,4887975021444008,2024-07-08 +City Hotel,0,39,2017,November,47,19,1,2,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,72.56,0,1,Check-Out,Danielle Hamilton,dbradley@example.com,8119854319,36047038475835,2024-08-24 +Resort Hotel,0,21,2017,January,2,12,2,5,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,189.0,179.0,0,Group,39.62,0,2,Check-Out,Justin Hammond,douglasrowe@example.com,+1-842-880-1344x8826,3512092407199357,2025-12-17 +City Hotel,1,16,2017,August,33,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,165.84,0,0,Canceled,Kayla Williams,dmarshall@example.org,838.448.7944,4080606766872138,2024-04-12 +City Hotel,0,17,2017,September,39,27,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,65.65,0,1,Check-Out,Thomas Sparks,sblack@example.com,3684366010,4267099016880264,2024-11-25 +City Hotel,1,47,2017,August,33,16,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,251.65,0,1,Canceled,Ashlee Ross,stephensjanice@example.com,(674)465-0856,060427386671,2024-09-09 +City Hotel,0,0,2017,February,7,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,13.0,60.0,0,Transient,53.95,0,1,Check-Out,Ann Martin,ikirby@example.org,611.307.6723x80426,6587612057676843,2024-10-02 +City Hotel,1,11,2017,January,2,9,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,83.85,0,1,Canceled,Kimberly Black,greenolivia@example.com,001-201-205-9392x352,3597145251283566,2024-11-26 +City Hotel,1,157,2017,June,26,26,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,148.18,0,3,Canceled,Meagan West,garciapatricia@example.com,3399599377,213185662418625,2024-05-26 +City Hotel,0,189,2017,July,27,3,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,104.01,0,0,Check-Out,Andre Cortez,robertsanders@example.org,974-735-5793,349389831781775,2025-05-15 +City Hotel,0,193,2017,June,24,10,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,112.38,0,0,Check-Out,Michele Ford,anthonyroth@example.com,499.998.0973x465,501821490247,2024-10-15 +City Hotel,0,5,2017,January,4,25,1,2,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,C,2,No Deposit,11.0,179.0,0,Transient,98.54,0,2,Check-Out,Andrew Chavez,christinesimon@example.com,295-204-8588x01370,4010745195227,2026-01-23 +City Hotel,1,10,2017,March,10,2,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,13.0,70.0,0,Transient,47.88,0,1,Canceled,Joel Perez,thomas55@example.com,+1-922-954-4360,38703135476963,2025-05-11 +City Hotel,0,13,2017,October,42,20,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,162.12,1,2,Check-Out,Anthony Berg,nicoleyork@example.com,(475)317-0058,4473896757163,2026-03-17 +Resort Hotel,0,152,2017,February,9,26,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,62.55,0,1,Check-Out,Joseph Hill,taylordavenport@example.org,(371)368-7201x8044,4951080810607112,2024-12-18 +Resort Hotel,0,45,2017,March,9,1,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,171.0,179.0,0,Transient,45.79,0,2,Check-Out,Robert Thompson,debra16@example.net,+1-604-452-6030x293,4713655306675886,2024-07-13 +Resort Hotel,1,29,2017,September,38,18,2,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,252.0,0,3,Canceled,Allison Cunningham,ccooke@example.org,(586)209-1658x589,4536210673892,2025-09-10 +City Hotel,0,17,2017,June,24,16,2,4,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,H,0,No Deposit,165.0,179.0,0,Transient,138.66,0,0,No-Show,Joseph Rice,aguirrejoshua@example.com,275-261-5818x59064,6011457397715372,2025-12-13 +Resort Hotel,0,1,2017,November,46,18,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,86.08,1,1,Check-Out,Jeffery Jordan,russell80@example.org,680-848-3303x277,4122496234205461,2024-09-02 +City Hotel,1,166,2017,April,17,26,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.42,0,1,Canceled,Allen Martinez,richard61@example.org,562.768.1817,30069788586047,2025-06-12 +City Hotel,1,139,2017,May,22,30,0,3,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,H,0,No Deposit,16.0,185.0,0,Transient,110.41,0,2,Canceled,Cristian Lambert,robert05@example.net,812-225-0332,2563623291457970,2025-02-02 +Resort Hotel,0,282,2017,October,40,6,1,6,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,296.0,222.0,0,Transient-Party,40.2,0,0,Check-Out,Christina Powell,llewis@example.org,(770)483-7256x00565,4886092559122211,2024-06-13 +City Hotel,0,111,2017,April,17,26,2,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,112.47,0,0,Check-Out,Tamara Gonzales,michaellopez@example.net,268.574.2415,3572116162433458,2025-01-05 +City Hotel,0,151,2017,August,35,31,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,168.64,1,0,Check-Out,Jeffrey Long,hbradshaw@example.net,672.292.0205x7081,3517649269880476,2024-06-06 +City Hotel,0,46,2017,July,27,5,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,75.69,0,1,Check-Out,Angela Richards,brandtkayla@example.org,(710)973-6656x129,372392639807354,2024-07-19 +City Hotel,0,0,2017,October,40,5,0,1,2,0.0,0,BB,,Complementary,Direct,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,0.5099000000000001,0,2,Check-Out,Sandra Lyons,rebecca09@example.org,212-984-0953x1980,4324131878670992032,2025-01-14 +City Hotel,0,3,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,151.09,0,0,Check-Out,Andrew Whitney,brendanmorales@example.org,885-860-5705x92468,4264364091528,2025-09-14 +Resort Hotel,0,198,2017,May,22,25,1,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,15.0,179.0,0,Transient,138.27,0,3,Check-Out,Jeffery Collins,ronaldwilson@example.com,682-415-1642x79211,6571067413412136,2025-03-17 +City Hotel,1,292,2017,November,45,4,0,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.86,0,0,Canceled,Kevin Fischer,qmcguire@example.org,941-578-0808x622,6567066720226078,2026-03-24 +Resort Hotel,0,42,2017,August,32,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,146.16,0,1,Check-Out,Amber Chapman,ilewis@example.net,449-911-9884x41986,4375718247811428285,2024-08-11 +Resort Hotel,0,2,2017,February,9,26,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,D,0,No Deposit,16.0,83.0,0,Transient,46.75,0,1,Check-Out,Becky King,qvazquez@example.net,906-399-9247,3574375033772480,2026-03-22 +City Hotel,0,11,2017,October,40,6,0,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,63.66,1,0,Check-Out,Matthew Richards,avilakristi@example.org,859-962-0542x93382,4748880402703874,2024-08-16 +Resort Hotel,1,8,2017,September,35,2,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,237.0,179.0,0,Transient,214.4,0,2,Canceled,Teresa Jones,tiffany24@example.org,761-869-0196,4832488420732409,2025-07-22 +City Hotel,0,389,2017,October,42,15,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,70.14,0,0,Check-Out,Nicole Hodge,benjamin49@example.org,546.874.6672,30476421330479,2024-08-27 +City Hotel,1,36,2017,June,26,23,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.56,0,1,No-Show,Debra Smith,wrightamanda@example.net,(702)654-7662x07424,4583584802939,2024-04-20 +Resort Hotel,1,19,2017,February,5,2,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,84.1,0,1,No-Show,Zachary Jones,maychristian@example.com,+1-734-481-3396,4035637256461161,2024-09-21 +City Hotel,0,8,2017,February,6,7,0,1,2,2.0,0,BB,CN,Direct,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,82.91,1,0,Check-Out,Amanda Bishop,pmaldonado@example.org,(983)851-4130x525,4405764504543087,2025-09-24 +Resort Hotel,0,0,2017,February,8,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,91.0,179.0,0,Transient,37.97,0,1,Check-Out,Rhonda Evans,sydney17@example.com,743-618-3579x5044,376369962133190,2024-12-27 +Resort Hotel,1,59,2017,October,42,17,2,7,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,210.44,0,2,Canceled,Samantha Noble,shelbybeck@example.com,858-766-2191,4037921297469,2025-03-24 +Resort Hotel,0,26,2017,October,42,14,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,55.28,1,2,Check-Out,Larry Fritz,johnny85@example.org,576-997-5967x2995,379606320056333,2025-03-11 +Resort Hotel,1,188,2017,August,33,14,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,242.94,0,2,Canceled,Maria Gonzalez,rodrigueznicole@example.org,540.597.1600,213197083563533,2026-03-06 +City Hotel,1,7,2017,July,27,4,1,3,2,0.0,0,BB,PRT,Online TA,Undefined,0,1,0,B,B,0,No Deposit,243.0,179.0,0,Transient,179.78,0,2,Canceled,Melinda Cervantes,nortonelizabeth@example.com,+1-659-326-8294x692,3516323764532716,2025-05-05 +Resort Hotel,0,5,2017,October,41,10,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,344.0,179.0,0,Transient,83.84,0,0,Check-Out,Justin Carter,colebryan@example.org,666.397.2661x0742,213134911058709,2025-04-29 +City Hotel,1,100,2017,June,23,6,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,130.0,179.0,0,Transient-Party,105.68,0,1,Canceled,James Garcia,znunez@example.org,(507)420-2856x066,38430860125611,2024-10-04 +Resort Hotel,0,139,2017,October,41,8,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,321.0,179.0,0,Transient-Party,62.91,0,0,Check-Out,Dustin Williams,sandraedwards@example.org,(407)969-6690x72120,2290305612498053,2025-07-15 +Resort Hotel,0,30,2017,December,52,26,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,76.0,0,Transient,42.17,0,0,Check-Out,Derek Hall,william55@example.net,+1-475-850-8965x52694,3559197548608986,2025-11-05 +City Hotel,1,27,2017,April,15,11,2,2,1,0.0,0,BB,AUT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,108.98,0,0,Canceled,Frank White,stephaniebeck@example.net,291-543-6890x7844,4573144716850073,2024-10-08 +City Hotel,0,41,2017,November,47,18,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,102.84,0,0,No-Show,Tracy Santiago,cryan@example.net,(982)521-0807x5758,4182693420954277,2024-11-19 +Resort Hotel,1,216,2017,September,37,14,1,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,165.0,179.0,0,Transient-Party,102.99,0,0,Canceled,Lauren Barr,psanchez@example.net,685.691.6036,4390395217947,2025-02-05 +Resort Hotel,0,11,2017,August,34,22,4,10,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,58.66,0,1,Check-Out,Jill Smith DDS,tsimmons@example.org,263-507-1960,213166036855122,2025-06-16 +Resort Hotel,0,46,2017,June,25,17,2,4,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,106.64,0,3,Check-Out,Carmen Jordan,qbates@example.net,(623)894-4424x16066,4935994016475578222,2026-01-11 +City Hotel,0,12,2017,November,47,22,0,1,1,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,86.04,0,1,Check-Out,Mary Johnson DDS,shirleyramirez@example.org,+1-453-270-0331x0188,4706929407094,2025-10-03 +City Hotel,0,49,2017,November,46,16,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,63.38,0,0,Canceled,Sally Fernandez,nmcpherson@example.net,784.932.3288,378522861751755,2024-05-30 +City Hotel,0,0,2017,January,2,6,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,100.7,0,1,Check-Out,Brandon Brown,dcastaneda@example.com,001-330-652-7183,2712256435509594,2025-01-02 +City Hotel,0,42,2017,April,16,15,2,2,1,0.0,0,FB,IRL,Groups,Corporate,0,0,0,A,A,1,No Deposit,14.0,211.0,0,Transient,108.43,0,0,Check-Out,Maurice Johnson,robertchoi@example.org,+1-543-236-7498,4343193388956,2024-05-20 +City Hotel,1,41,2017,June,24,12,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,171.44,0,1,Check-Out,Lori Davis,thomasrobin@example.org,(428)949-2167,4554140166116836,2025-11-05 +City Hotel,0,1,2017,March,10,4,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,46.54,0,1,Check-Out,Taylor Acevedo,andrea10@example.com,+1-919-549-2204,378522199575645,2025-05-13 +City Hotel,0,0,2017,May,20,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,14.0,60.0,0,Transient,108.31,0,1,Check-Out,Cynthia Cohen,hernandeztodd@example.com,+1-777-922-1077x4108,4105678306286674,2025-02-01 +Resort Hotel,0,0,2017,June,23,5,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,252.0,1,0,Check-Out,Laura Larson,owoods@example.org,390-693-9415,30263884404607,2025-03-11 +Resort Hotel,0,44,2017,April,17,24,1,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,231.0,0,Transient,42.32,0,0,Check-Out,Penny West,esawyer@example.org,914-981-3065,4363156818293279,2025-07-25 +City Hotel,0,192,2017,June,23,8,2,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,129.67,0,2,Check-Out,Brian Daugherty,kimberlybaker@example.com,370.343.5944,4629213966106850,2024-05-09 +Resort Hotel,0,81,2017,June,23,3,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,126.81,0,1,Check-Out,Monica Medina,melissa01@example.net,+1-793-274-2296x22942,3552352620238163,2025-03-01 +City Hotel,1,0,2017,January,2,4,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.58,0,0,Canceled,Tracey Reilly,judith23@example.com,495-297-5616x0500,30446641854087,2026-03-14 +Resort Hotel,0,4,2017,July,27,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,98.99,0,1,Check-Out,Robin York,kduran@example.org,(513)345-1607,4958290228514,2025-08-05 +Resort Hotel,0,32,2017,October,40,5,1,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,47.99,0,0,Check-Out,Tanya Shannon,fergusontara@example.net,558-738-3333x2879,6011301355897329,2024-09-12 +Resort Hotel,0,3,2017,December,52,25,1,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,E,0,No Deposit,29.0,179.0,0,Transient,65.51,1,1,Check-Out,Charles Chang,mnguyen@example.org,539-510-3035,349268322157838,2025-02-01 +Resort Hotel,1,305,2017,February,8,23,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,331.0,0,Transient-Party,44.32,0,0,Canceled,Spencer Kelly,bbrown@example.com,+1-908-706-5631,4227342798894,2025-01-12 +Resort Hotel,0,10,2017,March,12,21,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,1,Refundable,14.0,222.0,0,Transient-Party,44.63,0,0,Check-Out,Tammy Duncan,veronicawashington@example.com,947.998.6212,213171413787070,2025-11-07 +City Hotel,0,376,2017,July,29,20,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,60.21,0,1,Check-Out,Jonathon Kim,beckerashley@example.net,5665098848,676212296211,2024-09-25 +Resort Hotel,0,96,2017,March,10,5,1,3,2,0.0,0,Undefined,POL,Groups,Direct,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,84.43,0,0,Check-Out,Christopher Cain,uandrews@example.org,+1-220-569-8300,6560551964637202,2025-07-03 +Resort Hotel,0,201,2017,June,26,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,307.0,179.0,0,Transient,128.16,0,0,Check-Out,Anthony Wells,dallen@example.net,343-337-8656x289,370126895624935,2024-04-02 +City Hotel,1,176,2017,August,35,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,130.46,0,0,Canceled,Brandon Kirby,marccalderon@example.org,001-285-889-3453x5178,4338179946297647017,2024-08-15 +City Hotel,0,187,2017,May,18,1,1,2,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,137.88,1,2,Check-Out,Jamie Miller,smithjoseph@example.org,(541)729-0094x33183,502017684213,2024-07-20 +City Hotel,0,258,2017,May,19,5,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,98.73,0,1,Check-Out,Anna Wong,pweiss@example.com,001-958-799-6733,676205455824,2026-02-13 +City Hotel,0,37,2017,March,12,24,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,103.77,0,1,Check-Out,Christopher Macdonald,adamsjoseph@example.net,682-956-5822x764,4879017684472867,2025-10-24 +City Hotel,0,25,2017,July,30,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.76,0,2,Check-Out,Leslie Moody,gabrielmartin@example.org,640-900-5539,4254977015369776253,2026-02-10 +City Hotel,1,45,2017,February,9,28,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,37.82,0,1,Canceled,Jessica Mckee,bkirk@example.net,834.416.0731,4756398017908,2025-08-22 +City Hotel,0,2,2017,September,38,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.69,0,0,Check-Out,Nicholas Myers,zsmith@example.com,(731)498-2701x57175,4665022208429185,2024-06-21 +City Hotel,0,158,2017,July,30,28,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.11,0,0,Check-Out,Meagan Charles,brady64@example.com,001-693-572-3102x0365,30065405469070,2024-11-26 +City Hotel,1,46,2017,October,41,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.21,0,0,Canceled,Amber Williams,stevenspencer@example.net,556.848.1885,4883923507946,2024-05-27 +City Hotel,1,294,2017,December,49,8,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.65,0,0,Canceled,Micheal Green,hrussell@example.org,001-567-375-8310x897,3548515926413584,2025-05-28 +Resort Hotel,0,1,2017,January,3,16,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,41.97,1,2,Check-Out,Rachel Henderson,harrisdale@example.com,+1-815-421-8823x3617,4662838992975,2025-10-25 +Resort Hotel,0,3,2017,January,2,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,43.03,0,1,Check-Out,Andrew Lam,amanda78@example.org,966-761-6252x02756,213112263877850,2025-05-12 +Resort Hotel,1,154,2017,August,31,2,1,5,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.76,0,0,Canceled,Cassandra Mitchell,cchavez@example.com,997-722-3432,4276570814480059662,2025-08-25 +City Hotel,1,320,2017,October,44,29,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,45.0,0,Transient,91.6,0,0,Canceled,Melissa Grant,amber13@example.net,+1-886-389-0677x994,341065010658129,2025-06-01 +City Hotel,1,93,2017,November,44,3,1,4,2,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.22,0,3,Canceled,James Rodriguez,thomastracy@example.com,+1-464-379-7504,4567227002146103715,2024-07-12 +City Hotel,0,367,2017,October,41,11,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,94.66,0,0,Check-Out,Lauren Trevino,edwin64@example.net,8989306910,2254881118633926,2024-12-08 +City Hotel,0,2,2017,March,11,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,A,A,0,No Deposit,1.0,45.0,0,Transient-Party,65.75,0,2,Check-Out,Margaret White,briannawagner@example.net,001-974-599-7125x816,180023818598538,2024-11-15 +City Hotel,0,52,2017,May,22,30,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,85.98,0,2,Check-Out,Stacey Howe,tmayo@example.org,(726)991-8798x6401,6559801968867393,2025-07-19 +City Hotel,0,0,2017,June,25,18,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,B,0,No Deposit,82.0,45.0,0,Transient-Party,64.26,0,0,Check-Out,Diane Bishop,briannamorris@example.org,001-683-206-1692x681,372873062939343,2025-08-09 +City Hotel,1,39,2017,December,2,30,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,No Deposit,10.0,179.0,0,Transient,81.84,0,0,Canceled,David Baker,brian41@example.com,763-403-2204x68293,180083676789959,2024-05-20 +City Hotel,0,107,2017,August,31,3,2,1,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,Allison Chavez,markandersen@example.com,861.909.5702x5692,6011392164898749,2024-11-28 +City Hotel,1,170,2017,February,7,14,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,68.0,179.0,17,Transient,95.17,0,0,Canceled,Austin Smith,frenchwilliam@example.org,266.964.3527x382,3501215699970119,2024-06-29 +City Hotel,1,10,2017,October,43,26,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,81.2,0,0,No-Show,Ashley Thomas,gbridges@example.com,227.917.2494x08247,3578126894518140,2025-11-13 +Resort Hotel,0,128,2017,May,19,8,1,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,80.87,0,0,Check-Out,Mrs. Olivia Petersen,rwoods@example.org,9995138100,6528950469955617,2025-06-06 +City Hotel,1,108,2017,November,45,10,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.14,0,0,Canceled,Joshua Martinez,bwang@example.org,(980)424-2390,4251596601315,2025-07-13 +City Hotel,0,18,2017,October,44,31,1,3,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,D,E,2,No Deposit,13.0,179.0,0,Transient-Party,86.71,0,1,Check-Out,Laura Clarke,daniel10@example.net,(782)745-4622,345204770227199,2024-10-17 +Resort Hotel,0,100,2017,May,19,10,0,7,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,223.27,1,1,Check-Out,Joseph Patel,michaellewis@example.net,(759)656-7717,6577843939908276,2024-04-09 +City Hotel,0,1,2017,August,34,24,2,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,131.03,0,2,Check-Out,Lisa Beard,sophiaaustin@example.net,+1-873-330-1478x92911,213162398670142,2025-01-15 +City Hotel,0,149,2017,January,3,17,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,131.81,0,0,Check-Out,David Mendoza,dennis80@example.org,+1-304-393-4081x1391,4848234194650,2025-08-08 +City Hotel,1,46,2017,April,16,16,2,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,200.34,0,1,Canceled,Nicole Wallace DDS,moonmichelle@example.com,+1-666-886-5199x030,502080600955,2025-12-19 +City Hotel,1,101,2017,December,51,21,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient-Party,91.0,0,0,Canceled,Marcus Brown,christopherwilliams@example.org,(472)407-9376x094,4503310549456447,2025-07-09 +City Hotel,1,88,2017,December,2,31,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,323.0,179.0,0,Transient,80.71,0,2,No-Show,Daniel Gallegos,usanchez@example.org,646.819.5114,501893563087,2024-06-22 +Resort Hotel,1,165,2017,April,16,14,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,79.53,0,1,Canceled,Nicole Hardy,wprice@example.net,505-765-1184x275,349530538723665,2024-09-18 +City Hotel,0,313,2017,August,34,23,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Group,200.06,0,0,Check-Out,Pedro Greene,theresarobinson@example.com,892.434.1528,30314343921556,2024-03-27 +Resort Hotel,0,0,2017,March,10,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,43.35,0,1,Check-Out,Yvette Marks,davisrachel@example.net,(672)967-6092,3577221703683002,2024-10-08 +City Hotel,0,0,2017,June,25,23,3,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,B,0,No Deposit,12.0,179.0,0,Transient,148.1,1,1,Check-Out,Ashley Lewis,smithcody@example.net,001-572-891-3180x4071,501895179346,2024-09-27 +Resort Hotel,1,117,2017,June,23,3,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,111.12,0,0,Canceled,Stephanie Peterson,vincent73@example.org,001-306-214-3218,3567279212924905,2025-04-01 +City Hotel,1,140,2017,August,35,26,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,109.29,0,0,Canceled,Mrs. Dawn Hawkins,morrisonmargaret@example.net,5976188931,3582666136263231,2024-12-13 +City Hotel,1,232,2017,May,20,14,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.52,0,0,Canceled,Gary Greer,monica89@example.org,9722945199,4606084643410,2024-06-19 +City Hotel,1,71,2017,May,19,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,241.45,0,0,Canceled,Christopher Knox,joshuajackson@example.org,933-300-5077x169,213134916859721,2024-06-25 +City Hotel,1,401,2017,August,35,27,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,61,Transient-Party,109.54,0,2,Canceled,Eric Thomas,steven55@example.net,001-305-244-8701,2720414988787741,2024-12-30 +City Hotel,0,139,2017,December,52,29,0,1,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,96.67,1,3,Check-Out,Brent Stewart,floresmatthew@example.net,(853)362-3686x633,2720241016863313,2025-11-09 +City Hotel,1,209,2017,September,37,12,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.2,0,0,Canceled,Corey Roberts,tiffanymelton@example.com,(839)931-1663,3564494186002637,2024-04-14 +Resort Hotel,0,154,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,14.0,222.0,0,Transient-Party,60.78,1,0,Check-Out,Keith Morales,christina71@example.org,281.359.7586x21319,377512397500850,2025-02-03 +Resort Hotel,0,13,2017,April,15,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,C,0,No Deposit,169.0,179.0,0,Transient-Party,148.22,0,0,Check-Out,Perry Washington,mschultz@example.org,3907488236,4149160536366277,2025-05-07 +City Hotel,1,414,2017,October,41,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.36,0,0,Canceled,Nicole Barton,davidrobinson@example.com,001-921-629-2801,213151487398830,2025-04-27 +City Hotel,0,22,2017,October,43,24,0,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,1,No Deposit,15.0,71.0,0,Transient,82.39,0,0,Check-Out,David Medina,eballard@example.net,3976381714,4865798081857646,2024-06-04 +City Hotel,0,96,2017,May,19,9,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,80.2,0,0,Check-Out,Lydia Payne,costajenny@example.net,+1-495-377-9646x3669,374721558428271,2024-11-01 +City Hotel,0,168,2017,March,10,6,2,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,F,0,No Deposit,14.0,179.0,0,Transient,84.47,0,0,Check-Out,Monica Cline,annettesharp@example.com,+1-384-630-3020x84290,5318331261332196,2025-04-30 +City Hotel,0,292,2017,July,27,4,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,126.69,0,2,Check-Out,Juan Davis,dustin71@example.org,6679558283,180078930375058,2026-02-23 +Resort Hotel,0,21,2017,January,4,22,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,60.33,1,0,Check-Out,Devin Black,ramirezjustin@example.net,(716)460-5454x74487,502003945842,2025-08-05 +City Hotel,0,95,2017,December,50,10,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,96.6,0,2,Check-Out,Rachel Franco DDS,tylerreyes@example.net,+1-336-664-1529x3192,502046303694,2024-08-26 +City Hotel,0,45,2017,March,12,24,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,96.38,0,2,Check-Out,Lori Valentine,colemanlarry@example.org,(260)531-5387x6732,2274968360509312,2024-07-11 +City Hotel,1,362,2017,July,27,4,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,113.22,0,1,Canceled,Lisa Ryan,danielleharris@example.net,537.383.6935x414,3508004954375880,2025-12-05 +Resort Hotel,1,4,2017,January,2,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,44.56,0,0,Canceled,Danielle Hester,johnsonantonio@example.org,733-407-9694x2692,573234605109,2025-05-18 +City Hotel,0,391,2017,January,2,3,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,90.97,0,1,Check-Out,Luke Alexander,callahanjeremy@example.org,(426)993-5301,4687445328685,2025-09-15 +Resort Hotel,0,2,2017,May,19,8,0,2,2,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,59.01,0,1,Check-Out,Jane Edwards,cory40@example.com,225-487-5382x74431,6543390037169451,2025-01-01 +City Hotel,0,88,2017,June,23,5,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.22,0,2,Check-Out,Ann Peterson,jaycampbell@example.com,616.690.8703x0443,4301760986040,2025-11-08 +Resort Hotel,0,3,2017,October,42,14,1,5,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,2,No Deposit,17.0,201.0,0,Transient,80.46,0,0,Check-Out,Erik Keller,dharris@example.net,672-543-7755x2925,2284246368872182,2024-10-30 +City Hotel,1,239,2017,October,41,8,1,0,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,80.1,0,0,Check-Out,Louis Bowen,sullivansharon@example.org,001-332-961-2899x539,30006710359663,2025-03-14 +City Hotel,0,0,2017,May,21,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,10.0,179.0,0,Transient,114.57,0,1,Check-Out,Amy Mcdaniel,edwardsheather@example.org,001-278-868-5696x5982,675935590348,2025-08-04 +Resort Hotel,0,1,2017,October,41,12,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,1,No Deposit,17.0,179.0,0,Transient,41.74,0,0,Check-Out,Isaiah Terry,stonerobert@example.com,934.629.9726,348436120795114,2025-07-04 +City Hotel,0,84,2017,December,52,30,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,109.83,0,2,Check-Out,Michael Bell,peter19@example.com,278-678-0429,3572764368667807,2025-09-22 +Resort Hotel,0,387,2017,September,37,14,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient-Party,105.35,0,1,Check-Out,Blake Vega,kellie36@example.org,784-238-4383,4993504007388,2025-09-06 +City Hotel,0,76,2017,September,39,23,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,144.42,0,1,Check-Out,Ronnie Medina,lawsonjames@example.com,846.943.7573x44400,3582521484716423,2024-04-08 +Resort Hotel,1,9,2017,February,6,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,307.0,179.0,0,Transient,47.82,0,0,Canceled,Rhonda Clark,moransarah@example.com,354.455.2150x98564,4258036685253,2025-08-11 +Resort Hotel,0,151,2017,August,32,8,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient,209.44,0,1,Check-Out,Jason Fletcher,williamking@example.net,463-626-8845,676399371050,2025-10-17 +City Hotel,0,0,2017,March,10,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,17.0,85.0,0,Transient-Party,44.39,1,2,Check-Out,Jose Green,ryanmartin@example.net,9474996956,501883519131,2024-07-25 +City Hotel,1,52,2017,May,21,19,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,161.04,0,0,Canceled,Anthony Washington,ewhite@example.net,001-223-390-9062x3738,4507033116211,2024-09-11 +City Hotel,0,7,2017,October,44,31,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,169.07,1,0,Check-Out,Kristopher Curtis,rhinton@example.com,(744)779-5559x285,676344586786,2025-06-18 +City Hotel,1,137,2017,February,9,27,2,3,2,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,45.48,0,0,Canceled,Chad Moreno,bhoover@example.org,(712)376-2598,374122300172533,2026-03-16 +City Hotel,0,316,2017,December,2,31,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.92,0,1,Check-Out,Cassidy Carter,melissa35@example.org,2838151200,5299224542179192,2024-04-04 +Resort Hotel,0,235,2017,June,23,6,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,A,2,No Deposit,244.0,179.0,0,Transient,118.29,1,0,Check-Out,James Grimes,stephenellis@example.net,5189953307,4560472970143,2024-09-11 +Resort Hotel,1,2,2017,February,6,6,1,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,42.19,0,1,Canceled,Natalie Hawkins,washingtonrandall@example.org,+1-321-838-7306x307,4686919433088,2026-02-03 +City Hotel,1,97,2017,December,49,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,91.14,0,1,Canceled,Jonathan Williams,triddle@example.com,001-221-322-6882,4092598322303558257,2025-11-20 +City Hotel,0,62,2017,June,25,15,0,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.8,0,2,Check-Out,Deborah Smith,danagarrett@example.com,001-605-437-8334,4457761718031906,2025-12-29 +City Hotel,0,17,2017,April,17,26,1,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,148.44,0,0,Check-Out,Emily Henderson,barbara17@example.com,488.818.4631,4621905787684,2025-04-27 +City Hotel,0,8,2017,March,10,5,1,0,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,110.55,0,0,Check-Out,Peter Morgan,garrett49@example.org,(421)993-6608,346628464427948,2024-04-04 +City Hotel,0,26,2017,March,12,20,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Group,52.6,0,0,Check-Out,Laura Patton,timothytran@example.net,203.762.0866x1181,4482918386323,2024-09-12 +City Hotel,1,119,2017,September,39,26,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,88.36,0,0,Canceled,Francis Walker,abarnes@example.org,(856)769-7241,4969192443697,2025-02-26 +City Hotel,0,5,2017,May,20,15,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,40.79,0,3,Check-Out,Renee Johnson,cindy82@example.com,001-402-927-2900x3543,4571841493642,2024-11-15 +City Hotel,0,58,2017,October,41,9,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Group,78.41,0,1,Check-Out,Scott Wood,gallaghercarla@example.org,(712)295-2740,341289491301104,2024-09-27 +City Hotel,1,23,2017,October,41,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,250.0,0,Transient-Party,86.83,0,0,Canceled,Sherri Logan,ndelgado@example.org,401-397-8377x21121,3584828158641763,2025-11-04 +Resort Hotel,1,169,2017,June,24,11,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,138.33,0,1,Canceled,Cathy Barnes,gmoore@example.com,498-963-4181x25468,4302957447424,2026-01-08 +City Hotel,1,36,2017,August,33,12,1,4,2,1.0,0,SC,BRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.16,0,0,Canceled,Amy Sanders,hernandezlaurie@example.net,854-989-6938,4308610296610022,2025-07-25 +Resort Hotel,0,1,2017,March,10,9,2,0,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,A,0,No Deposit,157.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,Lee Perez,brandonwise@example.net,964.984.0700,3537992874699444,2025-11-16 +City Hotel,0,37,2017,March,12,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,20,Transient-Party,79.21,0,0,Check-Out,Michael Leonard,bcarter@example.org,(202)796-6625x27079,4008544235837843980,2026-03-15 +City Hotel,0,140,2017,October,41,8,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,90.0,179.0,0,Contract,87.35,0,0,Check-Out,Cody Thompson,robertward@example.net,679-580-7866x3930,4415350970290367,2025-10-18 +City Hotel,1,353,2017,February,7,11,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient,46.88,0,0,No-Show,Victor Yates,fjohnson@example.com,200.998.5240x416,213170155288347,2024-05-30 +Resort Hotel,1,257,2017,August,33,12,2,5,2,0.0,0,HB,CHE,Direct,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,104.41,0,1,Canceled,Stanley Benson,scottchristine@example.net,862.300.5475,36868458959903,2024-11-13 +City Hotel,0,206,2017,July,28,10,2,0,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,80.66,0,1,Check-Out,James Gallagher,delgadowilliam@example.net,455-772-8241,3534226829720531,2025-05-10 +City Hotel,0,47,2017,December,49,3,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,136.75,0,3,Check-Out,Jeanette Garcia,aharrison@example.com,397.895.6033,630467346478,2025-09-11 +City Hotel,1,403,2017,September,38,23,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,82.62,0,0,Canceled,Michael Garcia,robert43@example.net,001-487-941-1329x5218,630403458858,2024-04-29 +Resort Hotel,0,9,2017,May,21,22,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,133.13,1,1,Check-Out,William Gordon,snyderian@example.org,753.420.0037,3508718913134977,2025-07-01 +City Hotel,0,40,2017,November,46,12,2,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient-Party,102.89,0,2,Check-Out,Kim Holmes,dbates@example.org,+1-206-336-3528,4419388238682513508,2024-09-05 +City Hotel,0,151,2017,April,17,23,1,1,3,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,1,No Deposit,22.0,179.0,0,Transient,142.23,0,1,Check-Out,Anthony Hodges,heatherrojas@example.net,876-940-9987x27610,6510738605517874,2025-02-10 +Resort Hotel,0,83,2017,December,49,4,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,52.67,0,0,Check-Out,Alexis Wells,lanecheryl@example.net,295-235-1935,342612286273957,2026-01-25 +City Hotel,0,40,2017,April,17,24,2,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,109.29,0,1,Check-Out,Jennifer Dawson,jeremiah74@example.com,(930)579-3146,3589674018352539,2026-03-13 +City Hotel,0,146,2017,March,11,12,0,2,2,0.0,0,BB,,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,81.66,0,1,Check-Out,Bethany Baxter MD,bhanson@example.com,001-872-964-8071x98324,503817671517,2025-05-03 +Resort Hotel,0,266,2017,September,39,25,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,136.0,179.0,0,Contract,51.81,0,2,Check-Out,Teresa Wallace,lori05@example.net,001-655-702-8534x0828,373493481811376,2024-09-09 +City Hotel,1,1,2017,December,49,6,0,2,2,0.0,0,Undefined,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,80.84,0,0,No-Show,Alexis Pham,tommyfoley@example.net,785-219-6079,213174679304937,2025-01-23 +City Hotel,1,1,2017,April,15,11,1,4,2,2.0,0,SC,POL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,230.53,0,1,Check-Out,Zachary Ortiz,xwilliams@example.com,708.357.6545,180014034162423,2025-08-04 +City Hotel,0,1,2017,January,2,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,111.13,0,0,Check-Out,Christopher Burnett,michaelmoreno@example.com,+1-662-992-9928,4767370143848722484,2025-04-29 +Resort Hotel,1,314,2017,November,45,7,2,5,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,199.0,179.0,0,Transient,52.77,0,0,Canceled,Nicholas Calhoun,shaffermichael@example.org,(464)723-2953x792,3531647160839882,2025-01-26 +Resort Hotel,0,271,2017,August,34,18,2,5,2,2.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,33.0,179.0,0,Contract,206.71,0,0,Check-Out,Joseph Perez,iruiz@example.com,(374)390-4315,4125245316967630,2025-01-04 +City Hotel,1,44,2017,March,12,18,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,1,0,A,A,0,Non Refund,13.0,218.0,0,Transient,86.54,0,0,Canceled,Karen Perez,bettyesparza@example.com,2562846022,4244925136168024,2025-05-14 +City Hotel,0,52,2017,April,15,11,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.29,0,1,Check-Out,Kevin Cruz,rollinskaren@example.net,727-865-9524x250,30101298972027,2024-09-24 +City Hotel,0,57,2017,July,29,21,2,1,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient,135.89,0,1,Check-Out,Amber Spencer,patelkeith@example.net,001-459-729-7393,4721645806505279,2024-06-01 +Resort Hotel,0,0,2017,February,6,7,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,2,No Deposit,12.0,179.0,0,Transient,43.56,0,0,Check-Out,Madison Richardson,markwilliams@example.org,936-266-7939x7839,349990281611097,2024-08-27 +City Hotel,0,94,2017,July,28,6,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,104.8,0,1,Check-Out,Jose Collins,jmack@example.net,473-978-2265x70475,3522354975129093,2025-03-14 +Resort Hotel,0,224,2017,July,27,2,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,103.2,0,0,Check-Out,Justin Potter,carmstrong@example.com,001-293-657-2586x60891,4307057678652902,2026-01-12 +City Hotel,0,0,2017,January,4,24,1,3,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,48.1,0,1,Check-Out,Sherry Cox,vwalker@example.net,001-930-825-8685x6496,213145050701669,2025-10-30 +City Hotel,1,151,2017,July,28,12,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.02,0,0,Canceled,Tiffany Williams,fcurry@example.net,+1-904-856-9293,180082325688422,2025-01-18 +City Hotel,0,4,2017,March,13,26,0,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,81.24,0,1,Check-Out,Jessica Torres,williamsjulia@example.org,001-376-525-7523x5400,4967878689447421764,2026-01-28 +Resort Hotel,0,13,2017,May,18,2,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,364.0500000000011,179.0,0,Transient,138.94,1,0,Check-Out,Matthew Morgan,billygonzales@example.com,975-616-2271x801,4845999861293433,2025-04-15 +City Hotel,1,82,2017,June,23,3,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,134.0,179.0,0,Transient,93.45,0,0,Canceled,Craig Beard,smithjames@example.com,831-794-9446x1846,30384018810483,2025-11-30 +City Hotel,1,74,2017,May,20,17,2,7,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,113.13,0,0,Canceled,Tony Moore,eforbes@example.net,(254)705-8811x4009,4174599248960281,2025-01-31 +City Hotel,1,198,2017,June,24,13,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,106.0,0,0,Canceled,Jillian Carrillo,ashleygonzalez@example.org,977-926-9034,30443797588882,2026-01-07 +Resort Hotel,0,350,2017,August,32,12,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,84.98,0,0,Check-Out,Nancy Rowland,qward@example.org,+1-663-338-6966x5149,5315124443152662,2024-04-18 +City Hotel,1,98,2017,February,9,27,2,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,35.31,0,0,No-Show,Lisa Ochoa,jason94@example.org,+1-982-405-5361,30393311284312,2024-05-15 +City Hotel,1,103,2017,April,15,10,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,76.31,0,0,Canceled,Jeffrey Ayala,alexandrarowe@example.org,+1-825-595-0604x79159,3543129355778072,2024-05-26 +City Hotel,0,8,2017,May,21,23,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,135.03,0,2,Check-Out,Dana Carter,ncarter@example.org,001-412-228-2950,347489430995776,2024-09-07 +Resort Hotel,0,200,2017,April,17,23,1,5,1,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,1,No Deposit,342.0,331.0,0,Transient-Party,49.45,0,0,Check-Out,Natalie Burns,veronica24@example.com,811.538.4136x3864,4279759727855980,2026-03-22 +Resort Hotel,0,42,2017,October,43,23,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,103.16,0,1,Check-Out,Sean Peters,daniel73@example.com,+1-804-644-2218x322,2260511723714801,2024-03-28 +Resort Hotel,0,0,2017,September,37,11,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,46.28,0,0,Check-Out,Christopher Jones,irodriguez@example.org,648-922-9498,2577757992957104,2025-09-21 +Resort Hotel,0,12,2017,July,29,21,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,G,0,No Deposit,16.0,179.0,0,Transient,133.32,1,2,Check-Out,Miguel Pena,jamie23@example.org,(825)909-7551,4226645411775,2026-02-26 +Resort Hotel,1,56,2017,February,6,5,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,49.65,0,0,Canceled,Ryan Lawson,david15@example.com,782-406-3669x9284,348083276876049,2026-02-17 +City Hotel,0,414,2017,September,37,11,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,82.13,0,0,Check-Out,David Williams,mweaver@example.com,342.238.4109,4115800323927,2024-04-21 +City Hotel,1,142,2017,May,19,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient-Party,105.21,0,0,No-Show,Mark Johnson,warrenlarry@example.com,(509)239-2537x5121,4767735776417343,2025-07-16 +City Hotel,0,19,2017,March,12,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,87.5,0,0,Check-Out,Rebecca Perez,dosborn@example.net,+1-651-263-7778,377181155010708,2025-09-10 +City Hotel,1,85,2017,April,16,21,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,72.96,0,0,No-Show,Kathryn Thomas,byrddaniel@example.com,001-791-648-0926x7298,4458963762505848,2026-03-13 +Resort Hotel,0,196,2017,March,10,6,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,15.0,220.0,0,Transient-Party,84.36,0,0,Check-Out,Crystal Abbott,loganmack@example.net,+1-703-692-3196x22624,30505405342462,2025-03-10 +Resort Hotel,0,10,2017,April,15,8,1,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,174.09,0,1,Check-Out,Alexandra Hodge,marymcneil@example.org,(565)216-6881,341079392928109,2024-07-21 +City Hotel,1,158,2017,June,25,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,136.16,0,0,Canceled,Rachel Yang,joefowler@example.org,001-421-826-8293,4705045419142534113,2024-10-21 +City Hotel,0,33,2017,August,32,9,2,5,3,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.24,0,1,Check-Out,Michelle Sanders,martinezmatthew@example.net,592.626.8828x432,676224557592,2024-03-28 +City Hotel,0,137,2017,July,27,4,2,1,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,207.14,0,1,Check-Out,Dustin Stein,kaylamercado@example.com,+1-343-863-1604x00377,4871035744386503,2025-10-18 +City Hotel,0,1,2017,August,33,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,138.14,0,3,Check-Out,Haley Jackson,olucas@example.org,001-226-833-8334x349,6546963109856051,2025-08-05 +City Hotel,1,105,2017,December,49,3,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,D,0,No Deposit,32.0,179.0,0,Transient,110.24,0,1,No-Show,Thomas Moses,christian35@example.com,233.860.9128,30558835519647,2024-11-29 +City Hotel,0,1,2017,April,14,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,55.45,1,2,Check-Out,Jeffrey Petersen,todd84@example.org,001-631-746-7202x82217,376369512073912,2024-07-08 +City Hotel,0,180,2017,July,30,26,0,4,2,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,141.21,0,1,Check-Out,Joseph Ward,michael74@example.com,709-540-0520,676369775835,2024-04-22 +City Hotel,1,107,2017,December,52,24,1,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,87.33,0,1,No-Show,Lance Robinson,mauricecastro@example.com,766-965-1415x48548,180088158507696,2025-07-03 +City Hotel,0,131,2017,October,40,4,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,200.23,0,1,Check-Out,Kristen Smith,victor71@example.com,(716)800-7586,3555094568636167,2025-03-07 +City Hotel,1,8,2017,May,19,9,1,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,19,Transient,77.72,0,0,No-Show,Nicole Mcbride,kevinrandall@example.com,917-878-2135x94091,3530371496799279,2024-03-30 +Resort Hotel,0,90,2017,July,29,19,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,245.0,179.0,0,Transient,199.13,0,2,Check-Out,Daisy Larson,chart@example.org,(926)756-0122x71812,3545847928726660,2024-07-16 +Resort Hotel,0,102,2017,March,10,9,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,125.96,0,1,Check-Out,Jesus Shaw,christophersherman@example.net,3685728311,6552218246644758,2024-12-16 +Resort Hotel,1,46,2017,April,14,4,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,300.0,179.0,0,Transient-Party,50.36,0,0,No-Show,Shelly Moss,candrade@example.com,8334728253,639076311856,2024-07-12 +City Hotel,1,81,2017,June,23,2,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,109.17,0,0,Canceled,Laura Coleman,bryanbanks@example.com,8252891136,2244427781408619,2024-04-27 +City Hotel,0,0,2017,December,51,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,63.6,0,1,Check-Out,Kayla Moore,james07@example.com,989.307.0000x2568,213118330774962,2025-01-10 +City Hotel,0,44,2017,November,48,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,78.73,0,0,Check-Out,Melissa Brown,nrusso@example.org,300-348-0909x654,213156541596865,2026-02-28 +Resort Hotel,0,3,2017,March,13,26,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,244.0,179.0,0,Transient,42.84,1,1,Check-Out,Emily Riley MD,tonya39@example.com,(510)205-4012,4272989043768271,2024-11-23 +City Hotel,0,1,2017,March,13,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,14.0,45.0,0,Transient-Party,43.66,0,1,Check-Out,Donald Cole,meganmiller@example.net,+1-314-761-0216,4660136791542721095,2024-07-30 +City Hotel,0,161,2017,April,16,17,2,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,105.71,0,1,Check-Out,James Johnson,aliciacarrillo@example.net,(733)674-6460x93243,30163655922243,2026-02-06 +Resort Hotel,0,1,2017,September,38,19,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,161.39,0,2,Check-Out,Nicholas George,vwalters@example.org,(431)263-1023x760,4804976049268159736,2025-01-27 +City Hotel,0,36,2017,September,38,19,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,86.07,0,1,Check-Out,Jane King,ramosnathan@example.com,463-617-8149,6011950316779370,2024-04-04 +City Hotel,0,22,2017,August,33,11,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.65,0,2,Check-Out,Tanner Decker,ucook@example.org,616.980.4275,2663959930058806,2025-07-21 +City Hotel,0,172,2017,November,45,9,0,2,2,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,25.0,179.0,0,Transient,136.78,0,1,Check-Out,Leslie Martin,ztorres@example.org,001-300-896-7437x8885,4812361431927529911,2024-11-16 +City Hotel,0,114,2017,July,28,8,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,7.0,179.0,0,Transient,166.95,0,2,Check-Out,Keith Garcia,melissa74@example.com,4823735188,4578720696021,2024-09-17 +City Hotel,1,135,2017,January,2,2,1,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,8.0,179.0,0,Transient,170.45,0,1,Canceled,Victoria Keller,davismargaret@example.net,660.561.6577x49254,3586834559025182,2024-09-11 +Resort Hotel,0,0,2017,May,19,10,3,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,41.11,0,1,Check-Out,Mr. Robert Acevedo MD,mcdanielmason@example.com,305-742-6221,378948861899213,2024-06-02 +City Hotel,0,1,2017,April,16,17,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,103.43,0,2,Check-Out,Ms. Kayla Williams,charlesdunn@example.com,(200)552-9821x03780,180029997915252,2026-02-08 +City Hotel,1,381,2017,March,10,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,94.56,0,0,Canceled,Tammy Jackson,larsonscott@example.org,793-616-2047x0149,2257685994381071,2024-12-15 +City Hotel,1,150,2017,May,22,30,1,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,133.18,0,0,Canceled,Robert Smith,yadams@example.com,671-382-5395x70088,213135930718363,2025-08-09 +City Hotel,1,273,2017,October,41,13,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,7.0,179.0,0,Transient,127.5,0,0,Canceled,Stephen Smith,monica89@example.com,542-734-3891,3563767924544403,2025-06-12 +City Hotel,1,315,2017,May,19,4,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,Non Refund,14.0,63.0,0,Transient,110.74,0,0,Canceled,Jasmin Hamilton,sarah97@example.com,001-974-865-7212x31078,375987038471772,2025-07-28 +Resort Hotel,1,149,2017,October,40,5,2,5,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,239.0,179.0,0,Transient,135.03,0,3,No-Show,Thomas Romero,michellepaul@example.net,683.535.7499x901,4278577072059,2024-04-03 +City Hotel,1,154,2017,March,13,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,103.49,0,0,Canceled,Megan Grant,robertsonmegan@example.net,646.361.8669,30002939723482,2024-10-11 +Resort Hotel,0,1,2017,November,48,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient,51.61,0,0,Check-Out,Karen Hughes,jmcclain@example.com,+1-435-398-6424,3507550066554573,2024-04-08 +Resort Hotel,0,147,2017,May,18,1,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,222.0,0,Transient-Party,92.15,0,0,Check-Out,Bradley Phillips,nicole20@example.net,9316546756,3554208050425019,2025-10-18 +City Hotel,0,14,2017,August,34,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,9.0,179.0,0,Transient-Party,133.84,1,1,Check-Out,Robert Roberts,tiffany81@example.org,+1-761-463-4261x847,4959824813988793,2024-07-29 +City Hotel,1,79,2017,October,44,29,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,30.0,179.0,23,Transient,96.28,0,0,Canceled,Cynthia Tran,daniel90@example.com,+1-631-204-5901x0004,4144977827577,2025-09-06 +Resort Hotel,1,155,2017,May,19,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,308.0,65.0,0,Transient,84.22,0,1,No-Show,Marie Davidson,gwallace@example.com,724.491.4630x7668,4535324997567565,2025-04-24 +City Hotel,0,108,2017,December,49,4,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.83,1,2,Check-Out,Jordan Williams,hperez@example.com,403.960.8666,3574331129466214,2024-11-27 +City Hotel,0,33,2017,December,49,8,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,A,H,0,No Deposit,9.0,179.0,0,Transient,105.72,0,2,Check-Out,Mr. Paul Chase,lthompson@example.org,(223)569-3825x30908,5515086715571267,2024-07-09 +City Hotel,1,283,2017,July,27,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,94.17,0,0,Canceled,Chloe Parker,josephharding@example.org,253-330-5269x0458,4937684949413471,2025-02-11 +City Hotel,1,12,2017,March,13,26,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,35.72,0,1,Canceled,Leah Collier,lisalambert@example.org,580-761-9327,4336122049426688036,2025-01-26 +City Hotel,1,96,2017,February,7,16,0,4,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,82.03,0,0,Canceled,Amanda Gonzalez,qhill@example.net,+1-756-437-4957x28925,180069690291965,2024-12-29 +City Hotel,1,382,2017,October,40,2,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,41.65,0,0,Canceled,Alice Conley,ogarcia@example.net,001-353-293-7959,4510043123574829,2024-08-01 +Resort Hotel,0,123,2017,July,29,15,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,C,F,1,No Deposit,247.0,179.0,0,Transient-Party,175.06,1,3,Check-Out,Clarence Wood,igreen@example.com,+1-377-826-6231,3554274635483170,2024-06-02 +Resort Hotel,0,35,2017,March,14,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,43.74,0,1,Check-Out,Terri Cisneros,david95@example.org,+1-826-809-0706x82845,3536269644343004,2025-01-15 +City Hotel,1,3,2017,November,46,16,0,1,3,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.5,0,0,Canceled,Jessica Jones,frazierraymond@example.net,(611)280-1083,180089917353711,2025-07-09 +Resort Hotel,0,3,2017,July,31,29,4,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,307.0,179.0,0,Transient,44.37,0,0,Check-Out,Michael Graham,eholt@example.org,638-906-4132,6011501379288872,2024-05-27 +Resort Hotel,0,48,2017,May,22,27,4,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,243.0,179.0,0,Transient,132.91,0,1,Check-Out,Mary Henderson,ywalsh@example.com,906-796-3756,180029536941405,2025-11-12 +Resort Hotel,0,45,2017,August,31,1,3,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,246.0,179.0,0,Transient,228.97,1,1,Check-Out,Adam Holland,curtis93@example.net,243-349-6353x940,371685357377877,2025-08-20 +Resort Hotel,1,35,2017,December,51,17,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,243.0,179.0,0,Transient,90.64,0,0,Canceled,Elizabeth Miller,sarah25@example.org,+1-602-737-9609x3492,4966459639975,2025-02-09 +City Hotel,0,159,2017,February,7,10,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.36,0,1,Check-Out,Ryan Kaiser,rcabrera@example.com,+1-641-716-6476x2066,4206283750451979,2024-05-20 +Resort Hotel,0,9,2017,September,38,18,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,129.39,0,1,Check-Out,Douglas Morton,spencejuan@example.com,001-362-405-2242x700,4170616247301384,2024-04-02 +Resort Hotel,0,29,2017,March,13,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,48.24,0,1,Check-Out,Ashlee Mendez,shannon73@example.net,926.941.1383x6766,2266160187190373,2025-09-08 +Resort Hotel,1,246,2017,August,33,13,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,110.94,0,0,Canceled,Leslie Barton,oherring@example.net,465.637.2701,4465012314905770147,2025-07-19 +Resort Hotel,0,14,2017,January,2,8,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,99.91,1,1,Check-Out,Joseph Smith,wardshawn@example.net,001-556-281-9700x6234,5345385714408166,2024-10-17 +Resort Hotel,0,0,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,B,0,No Deposit,18.0,45.0,0,Transient,44.93,1,0,Check-Out,Paige Jordan,rthompson@example.org,(812)791-7147,3562619979798452,2025-11-25 +City Hotel,0,200,2017,July,27,4,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,241.51,0,1,Check-Out,Elizabeth Taylor,myerslisa@example.net,431.615.8537x0189,6011154489965995,2024-12-26 +City Hotel,0,3,2017,May,18,1,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,90.04,0,1,Check-Out,Latoya Howell,austinandre@example.org,9265343258,6011714156916942,2025-06-08 +City Hotel,0,388,2017,October,43,27,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,78.0,179.0,0,Transient-Party,64.57,0,0,Check-Out,Lawrence Glover,bethclark@example.com,(898)888-3206x98878,346974782795453,2024-04-22 +Resort Hotel,1,100,2017,June,23,6,4,0,2,0.0,0,FB,FRA,Direct,Direct,0,0,0,E,A,0,No Deposit,250.0,179.0,0,Transient,109.94,0,0,Canceled,Kimberly Grant,katherine32@example.com,4407833338,3528676178491282,2025-03-09 +City Hotel,1,189,2017,July,30,23,1,5,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,98.97,0,0,Canceled,Madison Wilson,hescobar@example.com,730-241-1941,36315983965872,2024-09-06 +Resort Hotel,0,154,2017,July,30,23,3,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,C,2,No Deposit,242.0,179.0,0,Transient,177.04,1,3,Check-Out,Melanie Davidson,valenzueladevin@example.org,215-724-0328x54627,4147804217194741495,2025-09-11 +City Hotel,1,3,2017,October,41,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,61.0,0,Transient,108.53,0,0,No-Show,Angel Johnson,pameladavid@example.com,(231)692-7960x506,4427633800097219,2025-09-19 +City Hotel,0,1,2017,July,28,9,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,95.52,0,0,Check-Out,Jessica Cox,xallison@example.com,001-898-714-0442,3588267512427559,2024-10-28 +Resort Hotel,0,40,2017,August,35,31,0,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,218.29,1,3,Check-Out,Laura Mosley,mosskendra@example.net,763.756.1641x463,3526268194885663,2025-03-27 +City Hotel,0,2,2017,March,12,17,1,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,96.94,0,0,Check-Out,Kurt Martinez,pjames@example.net,(685)738-5991,4332610432110473,2025-08-26 +Resort Hotel,1,18,2017,July,28,8,4,7,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,234.84,0,0,Canceled,Brandi Ibarra,matthew48@example.org,861.980.9901x282,5522493930496224,2025-03-16 +City Hotel,1,3,2017,March,11,12,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,Non Refund,13.0,179.0,0,Transient,65.65,0,0,Canceled,Heather Sweeney,woodschristopher@example.net,876.966.3771,374497151368699,2024-08-04 +City Hotel,1,102,2017,October,43,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,39,Transient,107.35,0,0,Canceled,Laura Guerra,vaughngloria@example.com,367-873-2468,5220024843455620,2024-05-16 +City Hotel,0,0,2017,August,34,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,18.0,179.0,0,Transient,117.62,0,1,Check-Out,Adrian Levine,dustinhicks@example.com,001-444-504-4998x75662,4462694282677729728,2024-12-12 +City Hotel,0,94,2017,June,24,13,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,135.82,0,0,Check-Out,Abigail Acevedo,jason47@example.com,907-876-1314x73494,4136931059827603778,2025-01-22 +City Hotel,0,41,2017,March,12,20,2,2,2,1.0,0,BB,IRL,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,8.0,179.0,0,Transient,98.12,0,1,Check-Out,Isabella Taylor,brittanydavis@example.net,930.501.1972,4322349564603360578,2025-01-24 +City Hotel,1,141,2017,June,23,4,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,113.16,0,0,Canceled,Joel Rogers,uwilson@example.org,965-363-3236x421,4674547567403435023,2026-01-19 +Resort Hotel,0,8,2017,January,2,1,1,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,240.0,179.0,0,Transient,89.13,1,1,Check-Out,Tyler Murray,jwilliams@example.org,871-474-4782,3578651087248940,2024-11-12 +Resort Hotel,0,0,2017,November,48,30,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient-Party,43.52,1,1,Check-Out,Michael Lambert,carlospatterson@example.org,933-226-8468x712,579820922188,2025-06-30 +City Hotel,1,0,2017,April,15,11,0,1,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,18.0,242.0,0,Transient,3.09,0,0,Canceled,Edward Guzman,jennifercampos@example.com,752.389.7530x04924,2264014409933551,2026-03-06 +City Hotel,1,0,2017,December,51,20,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,127.5,0,1,No-Show,Anne Chambers,wallerparker@example.com,433.416.8348x7097,213126708900770,2026-01-16 +City Hotel,1,83,2017,July,27,3,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,181.61,0,2,Canceled,Kristen Ramirez,ggonzalez@example.net,421.405.7978,6011542308353106,2024-04-22 +Resort Hotel,1,316,2017,July,27,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,63.39,0,0,Canceled,Leslie Case,atran@example.com,+1-901-853-5688x2074,30572090978620,2025-08-30 +City Hotel,0,0,2017,March,11,9,1,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,80.28,0,1,Check-Out,Christopher Thomas,yjones@example.org,670.490.3393x1952,3530012701586743,2024-10-13 +City Hotel,0,55,2017,August,34,25,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,114.88,1,3,Check-Out,Felicia Matthews,stevensrachel@example.com,202.612.7790x314,379255332113789,2026-01-18 +City Hotel,0,100,2017,November,45,10,2,4,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,33.0,179.0,0,Transient-Party,73.99,0,0,Check-Out,Robert Keith,ronaldfritz@example.org,400-776-3107x2817,060405974035,2024-10-14 +Resort Hotel,0,216,2017,July,30,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,11.0,179.0,0,Transient-Party,190.88,0,2,Check-Out,Deborah Simon,kimberlyrobinson@example.org,+1-561-486-5409x894,2282103988790827,2024-06-13 +City Hotel,1,191,2017,September,36,6,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,76.47,0,0,Canceled,Carlos Morrow,hernandezmelissa@example.net,918-847-5061x38414,2235921426817532,2024-09-21 +Resort Hotel,0,0,2017,March,14,30,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,52.07,0,1,Check-Out,Edward Tucker,fpetty@example.com,948-978-4232,4545575176788581,2024-04-10 +City Hotel,0,9,2017,September,36,9,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,84.73,0,1,Check-Out,Emma Chan,lisajohnston@example.net,540-748-1179,4565528600244353,2025-10-17 +City Hotel,0,86,2017,February,8,23,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,60.0,179.0,0,Transient,84.22,0,1,Check-Out,Ryan Thomas,cobbelizabeth@example.net,001-399-731-7582x0457,4769148617430,2025-01-31 +City Hotel,0,2,2017,June,25,21,0,1,1,0.0,0,BB,PRT,Online TA,Direct,1,0,1,D,D,1,No Deposit,11.0,179.0,0,Transient,131.63,0,3,Check-Out,Holly Rivas,jenna38@example.com,210.268.3375,341852128390194,2026-01-23 +Resort Hotel,0,6,2017,January,4,26,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,42.8,1,2,Check-Out,Alicia Navarro,david96@example.net,+1-292-642-2305x4172,3526681630319602,2025-05-01 +Resort Hotel,0,194,2017,July,30,27,2,4,2,2.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,224.11,1,2,Check-Out,James Schaefer,clarkdavid@example.net,+1-652-690-4225,6527476378963147,2025-03-12 +City Hotel,0,112,2017,July,30,20,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.86,0,2,Check-Out,Jennifer Sampson,jacksonashley@example.com,(759)331-2005x4941,180053231399404,2024-07-01 +City Hotel,1,115,2017,October,43,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,103.96,0,0,Canceled,Daniel Taylor,sarahmartin@example.net,637-496-3496x98048,349185897904644,2024-10-17 +City Hotel,1,103,2017,July,30,24,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.62,0,0,Canceled,Julie Thompson,lopezmatthew@example.com,(839)698-2669x36631,4786374713303809,2025-02-17 +City Hotel,1,15,2017,December,51,17,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,2,No Deposit,10.0,331.0,0,Transient,84.56,0,0,Check-Out,Justin Murphy,collinsjeffrey@example.net,+1-642-370-2822x027,567006079378,2026-02-22 +Resort Hotel,1,137,2017,July,30,27,1,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient-Party,135.06,0,2,Check-Out,Rachel Smith,cooperrebecca@example.net,+1-380-472-7619x1995,3572011075733708,2025-04-16 +City Hotel,0,47,2017,September,36,2,1,4,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,102.94,0,0,Check-Out,Joseph Dougherty,kayla27@example.com,950-473-7389,4273227818587405,2025-08-16 +Resort Hotel,1,305,2017,September,38,16,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,244.0,179.0,0,Contract,94.25,0,1,Canceled,Catherine Barker,kathleenbrown@example.com,6303014040,6533375112851521,2024-06-04 +Resort Hotel,1,9,2017,May,21,23,1,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,234.0,0,Transient,84.21,0,0,Canceled,Cynthia Taylor,wbautista@example.org,254.265.5970x410,676271984806,2025-06-05 +City Hotel,1,104,2017,July,29,21,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,84.19,0,0,Canceled,James Peck,michelle38@example.org,(203)443-2718x0302,586685313080,2025-03-12 +City Hotel,1,92,2017,May,19,5,1,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.61,0,1,Canceled,Rebecca Brooks,jeromegutierrez@example.net,001-629-937-3660,30486775813491,2025-06-12 +City Hotel,0,184,2017,May,18,3,1,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.22,0,1,Check-Out,Mr. Gregory Hart,kelleypeter@example.net,5027068373,5482763843246405,2026-03-05 +City Hotel,1,148,2017,June,24,12,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,25.0,179.0,0,Transient,107.19,0,0,Canceled,Tiffany Davis,howarddanielle@example.org,309-949-3952x2168,2458633684484919,2024-08-25 +City Hotel,0,56,2017,November,47,19,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.63,0,1,Check-Out,Vanessa Bishop,dramos@example.com,682-598-5372x393,345456903888970,2026-01-31 +Resort Hotel,0,11,2017,July,29,14,0,1,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,I,1,No Deposit,241.0,179.0,0,Transient,2.28,0,3,Check-Out,Stacey Rodriguez,kfaulkner@example.net,770-820-0047x338,346631286805317,2025-01-27 +City Hotel,0,1,2017,April,14,5,0,1,1,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,D,A,0,No Deposit,14.0,45.0,0,Transient,92.33,0,1,Check-Out,Angelica Lopez,liumatthew@example.net,+1-334-533-4762x0888,3522611010748371,2025-06-15 +City Hotel,1,166,2017,August,35,30,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,137.61,0,0,Canceled,Spencer Manning,qbrown@example.com,(495)684-8487x4379,5387194082431027,2024-04-28 +Resort Hotel,0,96,2017,May,19,8,4,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,109.51,0,1,Check-Out,Robert Bauer,isalazar@example.net,+1-516-981-6219,6011866673464374,2024-09-09 +Resort Hotel,0,33,2017,May,21,20,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,2,No Deposit,13.0,54.0,0,Transient,123.22,0,0,Check-Out,Keith Gonzalez,lauren00@example.com,997.981.2021,346132799187806,2024-10-24 +City Hotel,0,11,2017,November,45,5,0,2,3,0.0,0,BB,CHN,Undefined,Corporate,0,0,0,A,A,0,No Deposit,12.0,287.0,0,Transient,67.17,0,1,Check-Out,Benjamin Jordan,jdean@example.com,+1-704-676-7629,3574050172786878,2025-08-16 +City Hotel,1,18,2017,August,34,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,B,B,1,No Deposit,17.0,179.0,0,Transient-Party,104.64,0,1,Canceled,Adrian Krueger,michaelrice@example.net,984-706-1392,3569128916841006,2024-03-29 +City Hotel,1,373,2017,August,33,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.23,0,0,Canceled,Michael Travis,orussell@example.com,(371)341-7164,3531384252980438,2024-09-01 +City Hotel,0,88,2017,April,17,26,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,238.0,179.0,0,Transient,102.89,0,0,Check-Out,Jonathan Glover,ashleycastro@example.net,001-504-624-0693x33599,3587903709001325,2024-12-04 +Resort Hotel,1,136,2017,July,27,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,91.1,0,0,Canceled,Erin Carter,mosesrachel@example.org,6922435029,4220791892552936,2024-04-20 +Resort Hotel,0,42,2017,April,14,5,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,47.51,0,1,Check-Out,Brenda Bradley,smithshannon@example.org,8678931553,5565827417080449,2024-12-25 +Resort Hotel,0,0,2017,January,2,9,1,2,2,0.0,0,HB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,44.61,0,1,Check-Out,Kevin Berry,qchen@example.net,(528)266-3537,6545629547149471,2025-05-27 +City Hotel,1,148,2017,December,50,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,16,Transient,82.46,0,0,Canceled,Jennifer Anderson,ninarivers@example.com,001-394-787-7807x143,2223625439043267,2025-03-07 +City Hotel,1,136,2017,August,32,4,0,2,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,14.0,179.0,0,Transient,194.73,0,3,Canceled,Tyler Miranda,william68@example.org,001-724-683-7227x987,3507122370439311,2025-05-20 +City Hotel,0,38,2017,July,29,13,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Check-Out,Nicholas Chung,georgecoleman@example.com,562.997.6557x4971,4593543338180,2025-01-29 +Resort Hotel,0,260,2017,October,41,10,1,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,315.0,179.0,0,Transient-Party,152.82,0,0,Check-Out,Kayla Thomas,rsalas@example.net,3296097153,346474043990191,2024-06-10 +City Hotel,0,35,2017,October,41,8,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.97,0,0,Check-Out,Robert Shepherd,griffithdonna@example.com,297-752-8721x295,30492460226585,2024-12-16 +Resort Hotel,0,64,2017,July,27,2,0,6,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,139.82,0,1,Check-Out,Steven Swanson,christophervasquez@example.com,001-254-503-7621x4211,4023722129391508,2024-10-13 +City Hotel,1,163,2017,June,24,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,133.9,0,0,Canceled,David Williams,rebekahhughes@example.org,001-930-234-1307x980,6011206355413730,2024-06-05 +City Hotel,1,19,2017,July,28,9,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,41,Transient,131.08,0,0,No-Show,Justin Bishop,michaelalvarez@example.net,658.584.7303x0485,577157304533,2025-01-14 +City Hotel,0,173,2017,March,12,21,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.02,0,1,Check-Out,Clifford Mcdonald,susan70@example.net,755.337.3614x041,4551124600708310,2025-01-27 +Resort Hotel,0,41,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,221.0,75,Transient-Party,63.07,0,0,Check-Out,Wesley Bowers,qbrown@example.com,591-877-8932x1775,2259855437560874,2025-07-30 +Resort Hotel,1,139,2017,July,29,13,0,7,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,G,2,No Deposit,241.0,179.0,0,Transient-Party,196.6,0,0,Canceled,Jessica Warren,boyermindy@example.com,(932)267-0885,676250586408,2025-12-30 +City Hotel,0,93,2017,February,9,24,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,107.71,0,1,Check-Out,Dana Savage,mitchellmaria@example.com,(788)586-5467x23213,5574515324823246,2025-12-03 +City Hotel,1,280,2017,October,41,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,109.01,0,0,Canceled,Joseph Sullivan,xfry@example.com,+1-233-620-7380,3503589449866704,2025-05-31 +City Hotel,1,94,2017,October,43,27,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,98.51,0,2,Canceled,Joshua Williams,nicolaskim@example.com,(876)329-4112x926,574172312955,2025-11-26 +City Hotel,0,169,2017,August,35,25,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,99.56,0,0,Check-Out,Cory Kelley,heather55@example.com,752-455-9193,30091003727842,2025-04-25 +Resort Hotel,0,93,2017,September,38,20,1,5,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient,75.54,0,1,Check-Out,Whitney Macdonald DVM,buchananbrooke@example.org,8479547303,4789451112411040,2025-07-14 +City Hotel,0,11,2017,October,40,3,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,28.0,179.0,0,Transient-Party,98.68,0,0,Check-Out,Kimberly Ponce,conleystephen@example.net,+1-243-367-5743x667,2717652726993270,2026-03-18 +City Hotel,1,0,2017,March,12,17,0,3,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,50.57,0,0,Canceled,Darren Morse,michael17@example.com,001-225-231-8894x7261,4944321307295,2024-10-07 +City Hotel,1,9,2017,October,40,1,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,93.0,179.0,0,Transient,99.38,0,1,Canceled,Lydia Horn,sandratran@example.org,813-664-7522x753,503897503788,2024-04-03 +Resort Hotel,1,54,2017,January,3,18,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,185.01,0,1,Canceled,Chad Williams,kingbradley@example.org,5563855974,5117104778731843,2025-11-11 +Resort Hotel,0,83,2017,December,52,25,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,53.92,0,1,Check-Out,Jeremy Wallace,reginald39@example.com,(803)244-5077x637,4348376663810,2025-08-06 +City Hotel,0,47,2017,February,8,20,2,3,2,0.0,0,BB,NLD,Direct,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient,167.29,0,0,Check-Out,Anthony Ward,jennifer32@example.net,001-918-449-9886x104,4582209970501,2026-02-11 +Resort Hotel,0,160,2017,July,28,9,2,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,87.26,0,1,Check-Out,Heather Diaz,lisaschmitt@example.net,760.809.9800x86363,4463107919744339218,2025-05-11 +City Hotel,1,17,2017,February,7,12,1,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,72.04,0,1,Canceled,Daniel White,melissa51@example.net,4354505251,3552423242956670,2025-11-07 +City Hotel,1,13,2017,January,2,12,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,87.73,0,1,Canceled,Linda Fernandez,gjenkins@example.com,969.774.9269,4523097725654780,2025-05-18 +Resort Hotel,0,1,2017,October,40,2,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Group,51.82,0,1,Check-Out,Ralph Rodriguez,ashley31@example.net,001-436-308-0481x568,4258005277358226495,2025-02-20 +City Hotel,1,1,2017,August,34,22,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,180.04,0,0,Canceled,Michael Cross DDS,roberthill@example.net,(768)784-9130x4059,5258552113348880,2026-01-08 +Resort Hotel,1,178,2017,June,25,20,3,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,182.31,0,0,Canceled,Stacy Garcia,gcortez@example.net,813.435.0394x472,3568517404633175,2025-03-29 +Resort Hotel,1,37,2017,September,37,15,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,70.88,0,0,Canceled,Brett Maxwell,dgray@example.org,(739)322-5754,502063304377,2025-04-25 +City Hotel,1,101,2017,August,34,25,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,227.2,0,1,Canceled,Anna Andersen,dustinschwartz@example.com,+1-298-379-7156x3690,370220029996671,2024-07-09 +City Hotel,0,85,2017,May,20,12,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Group,100.62,0,0,Check-Out,Gary Phillips,kristen42@example.org,739-674-3749x00354,3598121270761261,2025-05-18 +Resort Hotel,1,155,2017,December,51,18,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,F,2,No Deposit,12.0,179.0,0,Transient,49.63,0,0,Canceled,Melanie Brown,mark78@example.org,599.492.8293x527,503850302780,2025-02-13 +City Hotel,1,84,2017,July,29,16,0,4,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.02,0,2,Canceled,Carol Johnson,lchurch@example.net,(355)323-3363x7755,3562788698649641,2024-06-14 +City Hotel,0,41,2017,November,46,16,2,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,105.18,0,1,Check-Out,Jacqueline Hall,wmaldonado@example.org,(343)293-3986x976,341946200392787,2025-04-27 +City Hotel,1,273,2017,May,22,26,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,126.55,0,0,Canceled,Tara Hale,medinagregory@example.com,992-804-6395x439,38899767721310,2024-07-21 +City Hotel,0,91,2017,July,30,20,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.39,0,1,Check-Out,Christopher Smith,yhamilton@example.com,001-406-981-6638,3598560861011448,2025-10-28 +City Hotel,0,45,2017,July,28,12,2,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient-Party,64.52,0,0,Check-Out,Chad Kim,sarahgriffin@example.org,(881)431-5319,6581497970247864,2024-08-01 +City Hotel,0,90,2017,June,24,8,2,2,2,2.0,0,BB,DEU,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,178.91,0,0,Check-Out,Riley Knight,davisamy@example.net,(616)632-4849,3597924891165411,2024-10-31 +Resort Hotel,0,2,2017,July,30,24,0,2,2,0.0,0,BB,SWE,Online TA,Direct,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,130.4,0,1,Check-Out,Amy Moore,steven57@example.net,624-599-9881x3587,3520575828852281,2025-02-22 +City Hotel,0,41,2017,March,12,24,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,76.33,0,0,Check-Out,Robert Ellison,gmartin@example.net,(454)527-8764,4438864791411,2024-11-02 +City Hotel,0,13,2017,July,28,10,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.14,0,1,Check-Out,Brian Lewis,ricemargaret@example.com,(689)846-6830x690,3540015365208833,2024-05-01 +City Hotel,0,49,2017,October,41,12,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.6,0,0,Check-Out,Catherine Johns,katherinejohnson@example.org,+1-929-878-5841,2232577470090641,2024-11-21 +City Hotel,0,264,2017,October,41,8,2,0,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,62,Transient-Party,63.7,1,0,Check-Out,Mary Parks,jmartinez@example.com,001-291-242-6364x749,3505002122118565,2025-10-09 +City Hotel,0,19,2017,September,38,17,0,3,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.47,0,2,Check-Out,Mark Williamson,qwilliams@example.com,+1-227-487-0606,2288963467372544,2025-03-26 +City Hotel,1,41,2017,April,17,24,1,2,2,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,113.85,0,0,No-Show,Douglas Blanchard,griffithmichele@example.net,+1-833-655-4596x480,5370430131792483,2026-01-02 +City Hotel,0,107,2017,June,25,18,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,10.0,179.0,0,Transient,143.55,0,2,Check-Out,Phillip Padilla PhD,wbell@example.com,498.706.1589,676181898294,2025-03-01 +Resort Hotel,0,55,2017,March,13,26,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,90.41,0,1,Check-Out,Juan Galvan,hamiltonvanessa@example.net,(830)869-8299x314,180007672407050,2024-11-20 +City Hotel,0,15,2017,November,47,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,29.0,179.0,64,Transient-Party,101.64,0,1,Check-Out,Leslie Diaz,colin88@example.net,+1-961-598-3924x2952,3532286605127766,2024-06-22 +City Hotel,1,197,2017,October,41,8,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,63,Transient,71.99,0,0,Canceled,David Potter,tthompson@example.org,866.605.8702,180007797857098,2024-11-29 +City Hotel,0,3,2017,November,47,23,0,2,2,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,A,E,0,No Deposit,34.0,245.0,0,Transient-Party,81.85,0,0,Check-Out,Adam Long,ypalmer@example.org,(446)487-6553x66483,4484380851057,2024-10-18 +City Hotel,1,1,2017,May,21,20,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,121.04,0,0,Canceled,Lisa Booker,alyssa41@example.org,+1-484-403-4208,2230046216449745,2024-04-09 +City Hotel,0,4,2017,November,45,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient,1.91,0,1,Check-Out,Alexandria Vaughn,stephaniegoodwin@example.org,570-371-8625,4953103954189545,2025-01-12 +City Hotel,0,41,2017,August,35,30,0,4,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,212.76,0,1,Canceled,April Bailey,sean69@example.org,+1-525-980-8745x1203,2244260120442225,2024-11-20 +Resort Hotel,0,46,2017,March,12,22,2,3,2,0.0,0,BB,,Groups,Direct,0,0,0,D,C,2,Refundable,13.0,223.0,0,Transient-Party,86.34,0,0,Check-Out,Sherry Patterson,kpierce@example.org,232.355.9326,3589075089481472,2026-02-11 +Resort Hotel,0,2,2017,November,45,8,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,88.28,0,0,Check-Out,Melissa Wolf,kevin80@example.net,001-796-983-0001x980,4735757137358,2026-02-19 +City Hotel,1,414,2017,July,28,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,103.97,0,0,Canceled,Joshua Sims,alyssa34@example.org,484-666-2343x2397,3565050536862994,2024-11-14 +City Hotel,0,102,2017,April,17,20,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Contract,101.5,0,1,Check-Out,Tina Mooney,mckenzie71@example.com,839-256-9962,4416345702439572776,2024-06-24 +Resort Hotel,0,16,2017,December,2,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,108.03,0,1,Check-Out,Luis Mcclain,spencer39@example.com,001-620-606-7712x30870,3554660220367267,2024-05-30 +Resort Hotel,0,56,2017,September,38,17,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,E,1,No Deposit,239.0,179.0,0,Transient,170.63,0,0,Check-Out,Heather Wolf,mgonzalez@example.org,+1-304-603-9370x85777,501825310359,2024-10-04 +City Hotel,1,271,2017,July,27,5,1,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,F,F,0,Non Refund,241.0,179.0,0,Transient,201.54,0,0,Canceled,James Bradley,harry82@example.com,8326231868,6545848689056878,2024-06-26 +Resort Hotel,0,2,2017,July,30,26,0,1,1,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient-Party,252.0,1,1,Check-Out,Isaiah Jones,maydavid@example.net,437.913.1551,6516806538615448,2024-07-19 +Resort Hotel,1,19,2017,July,30,26,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,1,0,Canceled,Victor Hudson,markhampton@example.net,200-993-4411x8666,376710153559257,2025-12-20 +City Hotel,1,204,2017,July,30,20,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.06,0,0,Canceled,Maria Sanders,amandahuffman@example.com,606.844.6033x58915,30411910388936,2025-09-26 +City Hotel,0,245,2017,August,33,15,2,3,2,0.0,0,HB,ITA,Groups,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,128.64,0,1,Check-Out,Thomas Holloway,judithwallace@example.com,(971)600-8447x91113,36286817667655,2025-10-24 +Resort Hotel,0,0,2017,August,33,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,248.0,179.0,0,Transient,53.44,0,1,Check-Out,Joshua Love,rmaxwell@example.org,(277)337-0896,6592857393658319,2025-10-13 +City Hotel,1,313,2017,July,28,8,0,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,B,A,0,Non Refund,15.0,179.0,0,Transient,108.95,0,0,Canceled,Andrew Dominguez,houstonbrandon@example.org,001-423-920-0462,4118511799088,2025-08-19 +City Hotel,0,28,2017,August,32,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,77.0,0,Transient,137.42,0,0,Check-Out,John Adams,jeannelson@example.net,+1-284-984-7947x503,4372231465583,2025-04-25 +City Hotel,1,101,2017,June,24,10,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,103.05,0,0,Canceled,Michelle Huber,bryantucker@example.org,(597)746-0580,3512351636190292,2024-06-12 +Resort Hotel,0,49,2017,May,21,18,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,240.0,179.0,0,Transient,75.59,0,2,Check-Out,Laura Roberts,rushwilliam@example.net,6329334659,6011306399288401,2025-07-05 +City Hotel,0,6,2017,January,4,23,0,1,2,2.0,0,SC,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,168.52,0,1,Check-Out,Tracey Brooks,vbond@example.net,3513983876,3580092123107319,2024-06-02 +City Hotel,0,0,2017,November,47,19,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,17.0,55.0,0,Transient-Party,65.53,0,0,Check-Out,Aaron Henry,morganjared@example.com,3353514799,588775766375,2025-02-01 +City Hotel,1,304,2017,June,26,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,41,Transient,132.02,0,0,Canceled,Ryan Moore,sylvia96@example.com,779.468.8420x72891,5135262765804177,2024-07-27 +Resort Hotel,0,8,2017,November,48,30,2,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,2.35,0,0,Check-Out,Daniel Chen,ambercollins@example.com,200-940-5240x173,4713468418781687,2025-01-13 +City Hotel,0,40,2017,June,25,17,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.83,0,1,Check-Out,Angel Lewis,reyeshelen@example.net,+1-454-581-1723x5798,4041036379188102,2024-05-24 +City Hotel,0,17,2017,March,12,16,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,184.56,0,1,Check-Out,David Nolan,brich@example.net,(298)426-0148x96626,4064692710322,2025-03-21 +City Hotel,0,61,2017,December,51,21,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.92,0,0,Check-Out,Brian Medina,kwhitney@example.org,(372)957-0262x06460,342948350279771,2024-10-25 +City Hotel,0,12,2017,October,41,11,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,60.91,0,0,Check-Out,Antonio Lopez,dylanrobinson@example.net,001-970-247-8818x5546,3555836210053153,2026-02-26 +Resort Hotel,1,142,2017,July,28,12,0,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,252.0,0,1,Canceled,Michaela Hernandez,angie95@example.org,001-912-757-0905,4158610179174402,2025-12-05 +City Hotel,0,124,2017,July,27,3,0,10,2,1.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,37.0,179.0,0,Transient,137.25,0,0,Check-Out,Elizabeth Chase,smithkaylee@example.net,8373644837,348408026777470,2025-11-21 +City Hotel,1,50,2017,November,46,14,0,2,2,0.0,0,SC,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.7,0,0,Canceled,Omar Johnson,ncarlson@example.net,426-287-0074x3250,4921069967592117,2024-05-21 +City Hotel,0,61,2017,November,48,26,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,176.84,0,0,Check-Out,Steven Fisher,joseph98@example.net,848-283-5360x5491,30184164184463,2025-07-13 +City Hotel,1,20,2017,December,49,3,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,E,0,No Deposit,14.0,331.0,0,Transient,3.24,0,0,Canceled,Heather Smith,gregorywilliams@example.net,+1-661-329-3020x9844,378516155174385,2025-11-02 +City Hotel,1,90,2017,May,21,23,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,137.7,0,1,Canceled,Kimberly Mcintyre,ronaldmorris@example.com,001-840-602-4499x78758,4582797648402,2025-01-05 +Resort Hotel,0,7,2017,June,25,18,0,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,332.0,179.0,0,Transient,135.26,0,1,Check-Out,Dana Hernandez,gary66@example.org,975-411-9679x398,6508491998230515,2025-01-22 +City Hotel,0,131,2017,January,5,27,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.31,0,2,Check-Out,Anita Long,mmarquez@example.com,735.207.7667,4414727110541356,2025-03-19 +City Hotel,0,2,2017,January,2,3,0,1,1,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,45.0,0,Transient,87.28,0,0,Check-Out,Chad Pennington,ebradford@example.com,001-417-578-5200x22983,2227904413671153,2024-05-29 +City Hotel,0,23,2017,September,36,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,51.12,0,0,Check-Out,Michael Rosario,ineal@example.net,974.638.2449,180093116679413,2024-04-22 +City Hotel,0,177,2017,September,38,17,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.78,0,1,Check-Out,Joyce Webster,tylerwilliams@example.net,(254)670-9229,30567391493055,2025-08-11 +City Hotel,1,103,2017,July,31,30,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,124.75,0,1,Canceled,Kristie Hendrix MD,ztaylor@example.org,001-340-748-5754x32763,4671947614172130,2024-09-26 +Resort Hotel,1,139,2017,July,28,12,2,4,2,1.0,0,FB,PRT,Groups,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,86.57,0,0,Canceled,Shannon Miller,owensabigail@example.org,001-430-979-4319x5134,2228365379719130,2024-08-25 +Resort Hotel,0,1,2017,October,42,17,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,H,B,0,No Deposit,16.0,179.0,0,Transient,2.34,0,2,Check-Out,Linda Henderson,emilynewton@example.com,(848)673-7753,3529970874288608,2024-05-06 +City Hotel,1,194,2017,June,23,4,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.73,0,0,Canceled,Anthony Ashley,anita79@example.com,356.208.6872,4363684756585604,2026-03-12 +City Hotel,1,58,2017,April,15,8,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.25,0,0,Canceled,Michael Khan,mstuart@example.net,953-586-0058x50145,6573105046105228,2025-01-15 +Resort Hotel,1,282,2017,May,21,22,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,65.07,0,0,Canceled,Stacey Thomas,meganrivera@example.com,001-264-445-1720x9708,4526321861082458644,2024-11-27 +City Hotel,1,150,2017,December,50,12,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,E,0,Non Refund,83.0,179.0,20,Transient,86.69,0,0,Canceled,Joseph Jones,nicholascampbell@example.com,214-991-0401x37571,4363987011438109,2025-06-21 +City Hotel,0,203,2017,July,31,30,1,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,110.39,0,0,Check-Out,John Johnson,webermichael@example.org,942.286.4694,4308857346703634,2025-09-27 +Resort Hotel,0,131,2017,May,19,7,4,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,170.5,0,0,Check-Out,April Wallace,allisonperez@example.net,+1-254-613-4995,4836610968704824864,2025-04-07 +City Hotel,1,252,2017,November,44,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,75,Transient-Party,86.75,0,0,Canceled,Gregory Martin,bradleyangela@example.org,(562)203-6907x74666,3553707810080932,2025-04-03 +Resort Hotel,0,187,2017,May,20,14,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,104.51,0,2,Check-Out,Krista White,matthewyoung@example.com,(346)437-2795x4930,341006046006768,2024-06-30 +City Hotel,1,53,2017,March,11,14,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,1,D,E,1,No Deposit,238.0,179.0,0,Transient,112.45,0,1,Canceled,Tyler Garcia,johnparker@example.net,875.807.6339x68924,180052369296341,2025-11-05 +City Hotel,1,2,2017,January,2,3,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,59.52,0,0,Canceled,Molly Jackson,scott12@example.com,632.613.6833,6597307029246753,2025-11-18 +City Hotel,0,150,2017,May,22,30,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,42,Transient-Party,132.1,0,0,Check-Out,Thomas Floyd,bianca77@example.net,363.545.7953,4501895247873440,2024-09-07 +Resort Hotel,1,93,2017,June,24,13,4,10,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,106.07,0,0,Canceled,Susan Sharp,lburton@example.com,+1-359-848-7303x613,4456740970960649,2024-10-23 +City Hotel,1,263,2017,October,42,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,62,Transient,77.54,0,0,Canceled,Krystal Hamilton,robert50@example.com,+1-392-891-6946x628,4485351360408739,2024-05-17 +City Hotel,1,11,2017,March,11,13,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.29,0,1,Canceled,Kathy Lewis,aprilyoung@example.org,001-944-486-9993x36269,3519045285887306,2025-01-15 +City Hotel,1,16,2017,May,20,11,0,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,109.87,0,3,Canceled,Joshua Miller,patricia34@example.org,001-556-487-8692x99785,3504829429486472,2024-04-15 +Resort Hotel,0,144,2017,July,30,22,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,243.0,179.0,0,Transient,163.1,0,1,Check-Out,Emily Brady,robert52@example.org,(819)755-1685x29653,3578276796242008,2024-08-17 +Resort Hotel,0,1,2017,March,11,13,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,E,2,No Deposit,247.0,63.0,0,Transient-Party,58.61,0,1,Check-Out,Julie Padilla,perezkeith@example.org,(424)738-4568,4060136267076967,2024-08-27 +City Hotel,0,12,2017,April,16,17,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,96.3,0,1,Check-Out,Justin Williams,rebecca33@example.org,(365)756-8892x1164,3587176016235858,2024-05-13 +City Hotel,1,165,2017,September,36,6,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,144.0,179.0,0,Transient-Party,109.1,0,0,No-Show,Willie Morgan,kelly37@example.net,209-478-3709x907,4487931218957941708,2026-02-19 +Resort Hotel,0,107,2017,March,12,20,1,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,328.0,179.0,0,Transient-Party,36.31,1,0,Check-Out,Joseph Stokes,marycoleman@example.org,903.605.1285x46831,2283891374602056,2024-11-09 +City Hotel,0,43,2017,July,30,20,1,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,206.17,0,2,Check-Out,Cindy Kelley,kristin94@example.com,771-819-3768x90604,060443947340,2025-09-05 +City Hotel,1,83,2017,May,19,4,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,101.26,0,0,Canceled,Tommy Romero,amandahouston@example.net,233-720-7570x2987,30100135725721,2024-12-19 +City Hotel,1,3,2017,May,20,13,1,1,1,0.0,0,SC,,Corporate,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,94.45,0,1,No-Show,Stephanie Lara,misty14@example.net,(416)307-5758x9945,4985725951008860864,2025-02-08 +City Hotel,1,365,2017,September,37,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,42,Transient,108.05,0,0,Canceled,Tyrone Collins,stephen95@example.com,+1-416-822-1150x3603,2239784587606490,2025-12-17 +City Hotel,0,143,2017,March,11,9,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,61.94,0,0,Check-Out,Brendan Palmer,bsnyder@example.org,001-420-901-8512x089,3588526272781293,2025-02-16 +Resort Hotel,0,197,2017,August,33,12,2,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,241.0,179.0,0,Transient,252.0,1,1,Check-Out,Paul Martin,juan11@example.com,001-685-741-1569x175,213137570765530,2024-07-26 +City Hotel,0,4,2017,June,26,27,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,2,No Deposit,13.0,173.0,0,Transient,120.74,0,0,Check-Out,Juan Gilbert,haroldwilliams@example.net,(660)432-1728x759,4101866948928883409,2024-07-13 +City Hotel,1,414,2017,July,30,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,219.61,0,0,Canceled,Lori Roberson,alicia03@example.com,465-270-1009x080,3580205034127040,2025-05-20 +City Hotel,1,166,2017,July,27,1,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,102.68,0,0,Canceled,Matthew Moore,stephaniegarcia@example.net,739-993-1193x0766,676245575870,2025-09-18 +City Hotel,0,39,2017,July,28,14,2,4,2,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,169.0,179.0,0,Transient,124.43,0,0,Check-Out,Donald Freeman,thansen@example.org,761-807-3112,180096301878427,2025-03-02 +City Hotel,0,14,2017,March,13,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.31,0,1,Check-Out,Daniel Anderson,lori05@example.com,604-909-7877x3806,3555185973115522,2024-09-06 +City Hotel,1,105,2017,June,25,19,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,160.92,0,0,Canceled,Kelly Rodriguez,angelaellison@example.net,001-373-632-7722,3546461674000368,2025-08-15 +City Hotel,0,29,2017,June,23,6,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.74,0,0,Check-Out,Troy Ward,esparzathomas@example.net,+1-960-823-3660x946,4983015911809540,2025-05-18 +City Hotel,0,53,2017,May,19,10,1,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,107.88,0,1,Check-Out,Christina Smith,lindsey98@example.com,292.297.1127,560972987575,2024-09-07 +City Hotel,1,414,2017,October,43,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,120.23,0,0,Canceled,Mark Smith,vhammond@example.com,897.749.2388,4292738316413388,2024-08-03 +City Hotel,1,301,2017,June,26,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,108.95,0,0,Canceled,Daniel Williams,erikweaver@example.net,(325)738-0701,3507743790350125,2024-06-06 +City Hotel,1,9,2017,June,22,2,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,130.26,0,0,Canceled,Melissa Robinson,kylecurry@example.net,+1-306-955-8813x17886,379244241138608,2024-11-21 +City Hotel,1,45,2017,July,31,31,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,90.27,0,1,No-Show,Mitchell Jimenez,norrischristopher@example.org,+1-581-410-6084x516,4269757578813043,2024-12-04 +Resort Hotel,0,288,2017,August,34,24,2,7,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,247.0,179.0,0,Transient-Party,206.13,0,3,Check-Out,Bethany Liu,qallison@example.com,892-267-1496,4740862265291766742,2024-05-17 +Resort Hotel,0,0,2017,January,2,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,41.63,0,1,Check-Out,Mitchell Williams,nicholashart@example.net,985-383-5800,344670915537364,2025-08-05 +City Hotel,0,12,2017,May,19,11,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,116.03,1,1,Check-Out,Bianca Davis,gerald96@example.org,(902)797-6105x7349,371511689849609,2025-07-13 +Resort Hotel,1,16,2017,July,30,23,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,101.09,0,0,Canceled,Anthony King,staceycarter@example.net,620-293-0264x15607,4851786628844,2024-11-09 +City Hotel,1,18,2017,January,2,12,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,47.56,0,0,Canceled,Michael Summers,craigmariah@example.org,001-487-208-7929x095,4772048073279807086,2024-08-03 +Resort Hotel,0,50,2017,August,32,8,2,4,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,251.76,0,1,Check-Out,Ricky Hall,wrightlucas@example.org,7646049821,4572984992827431,2025-04-16 +City Hotel,0,0,2017,July,27,8,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,12.0,331.0,0,Transient,3.87,0,3,Check-Out,Joyce Kelly,moralesjames@example.com,629.267.8933x2769,676147331471,2025-12-10 +Resort Hotel,0,15,2017,February,9,24,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Contract,77.59,0,1,Check-Out,Anne Medina,ljordan@example.net,001-733-804-8950,4169949445459985065,2024-05-16 +City Hotel,0,19,2017,August,35,27,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,89.17,0,2,Check-Out,Benjamin Johnson,bradleydavis@example.com,403.750.2983x308,370111971507790,2025-11-27 +Resort Hotel,0,272,2017,August,34,23,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,134.0,179.0,0,Transient-Party,97.33,0,0,Check-Out,Kyle Perry,david89@example.net,001-261-694-3545x386,4928879702379,2025-08-09 +Resort Hotel,0,34,2017,December,52,29,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,58.1,1,2,Check-Out,Melissa Newton,wandaadams@example.net,(238)289-5279,4710092099520427734,2026-01-17 +City Hotel,1,22,2017,March,14,30,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,139.55,0,0,Canceled,James Franklin,rrivera@example.org,+1-910-358-4075,3577419667443591,2024-12-28 +City Hotel,0,96,2017,September,38,21,1,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient-Party,105.25,0,0,Check-Out,Caitlin Curry,iramirez@example.net,2488253432,3505757111944558,2025-12-27 +Resort Hotel,0,152,2017,March,14,31,1,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,13.0,224.0,0,Transient-Party,40.85,0,0,Check-Out,Barbara Glover,ipena@example.org,752-568-9182x72496,3563939031740311,2025-01-05 +Resort Hotel,0,17,2017,December,51,23,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,63.15,1,2,Check-Out,Ryan Harmon,vfields@example.net,2655338666,4094779814950446742,2026-01-24 +City Hotel,1,384,2017,August,33,14,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,220.28,0,0,Canceled,Andrea Hughes,burkedonald@example.com,(557)282-1009x461,4964905052299,2024-07-30 +City Hotel,0,3,2017,April,15,12,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,B,0,No Deposit,13.0,179.0,0,Transient,104.11,1,3,Check-Out,Keith Solis,craig89@example.com,652-956-5761x78128,4868247958875387,2024-10-06 +City Hotel,0,0,2017,November,46,12,0,1,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,1.54,0,0,Check-Out,Bryan Tucker,edward30@example.com,642-979-3648,2614610680294758,2024-04-22 +City Hotel,0,1,2017,August,32,10,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient,0.88,0,0,Check-Out,Holly Grant,emma14@example.org,752.896.2312,4046326379872556,2024-04-01 +City Hotel,1,15,2017,July,28,12,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,128.75,0,2,No-Show,Ryan Skinner,richard63@example.com,(339)453-5566x42714,6571519247926210,2026-01-03 +Resort Hotel,0,35,2017,June,23,5,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,47.63,0,1,Canceled,Julia Mullins,johnsonlisa@example.net,001-628-646-7132,6597006843680078,2025-03-18 +City Hotel,1,0,2017,March,13,29,1,0,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,249.0,0,Transient,5.12,0,0,Canceled,Janet Graves,fnelson@example.org,(511)818-5621x2119,676357418893,2026-01-04 +City Hotel,0,329,2017,October,42,14,2,2,1,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.29,0,0,Check-Out,Angela Hunt,brenda56@example.net,001-307-530-9506x447,38848737609253,2025-06-22 +Resort Hotel,1,122,2017,January,3,19,0,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,52.85,0,2,Canceled,Isaiah Turner,carlsonbryan@example.org,(444)969-5584,30327586145667,2025-04-10 +Resort Hotel,0,0,2017,July,30,28,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,214.01,1,3,Check-Out,Phillip Scott,bettygarza@example.com,337.756.5792x3703,4746642612815151519,2025-02-07 +Resort Hotel,0,241,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,63.3,0,0,Check-Out,Jessica Reynolds,ronnienelson@example.org,657.240.1549,6587812585189315,2025-05-25 +Resort Hotel,0,5,2017,January,2,6,1,5,2,0.0,0,BB,CN,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,46.65,0,1,Check-Out,Melinda Jacobs,hayesderek@example.com,465-849-4078,3505747195805494,2025-02-22 +City Hotel,0,12,2017,October,41,12,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Group,100.7,0,0,Check-Out,Danny Butler,omyers@example.net,5847008461,4309631272583527513,2025-12-17 +City Hotel,0,134,2017,August,32,4,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,181.42,0,1,Check-Out,Matthew Bennett,bradleydavid@example.org,336.427.0263,3524384200677861,2024-08-23 +City Hotel,1,11,2017,February,7,11,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,102.1,0,0,Canceled,Carl Jackson,erodriguez@example.org,001-247-302-0534x521,3546478627231510,2024-05-13 +Resort Hotel,1,240,2017,August,32,10,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,101.39,0,0,Canceled,Stephen Wilson,halllisa@example.org,(229)213-4577x4775,4240691183314622,2026-02-15 +Resort Hotel,0,0,2017,October,40,5,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,52.57,0,2,Check-Out,Charles Robinson,jennifercole@example.org,388-639-4044x5059,371938093015065,2025-07-12 +Resort Hotel,1,241,2017,July,29,13,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,224.17,0,1,No-Show,Chad Poole,carrilloashley@example.org,767.373.3599x225,180005013780847,2025-05-24 +Resort Hotel,0,34,2017,April,18,30,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,1,2,Check-Out,Matthew Dominguez,julieshelton@example.net,233.339.5182,4107405321869,2025-02-27 +City Hotel,0,14,2017,July,29,20,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.34,0,1,Check-Out,Christian Shelton,olsonvanessa@example.net,674.507.1217x4724,4968045634114,2024-09-07 +Resort Hotel,0,47,2017,February,8,21,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,48.13,0,1,Check-Out,Makayla Friedman,paul67@example.org,001-419-398-4688x7011,3530289668106117,2025-11-05 +City Hotel,0,207,2017,April,16,21,1,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,108.64,0,1,Check-Out,Katherine Downs,amanda98@example.org,860-751-1903,6519332589765492,2025-08-14 +Resort Hotel,0,184,2017,March,13,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,2,Refundable,14.0,221.0,0,Transient-Party,70.8,0,0,Check-Out,Lisa Singh,rebecca32@example.org,(376)953-4521,30334880458705,2025-07-02 +Resort Hotel,0,159,2017,May,20,13,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,319.0,179.0,0,Transient-Party,130.68,0,1,Check-Out,Brittany Allen,johnsontaylor@example.org,001-890-838-2554x00322,4148020524220137,2025-03-03 +City Hotel,0,1,2017,May,19,5,1,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,G,1,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,1,1,Check-Out,Robert Miller,nancy83@example.org,(846)597-8159,3534129131887578,2025-06-23 +City Hotel,0,18,2017,April,15,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,101.52,0,1,Check-Out,Melanie Baker,grahamnicole@example.org,(359)430-6821x14057,6506358910529831,2025-05-19 +Resort Hotel,1,17,2017,April,14,1,1,3,1,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,317.0,179.0,0,Transient,151.61,0,0,Canceled,Gerald Allen,gutierrezbrittany@example.org,6482055750,213150248074375,2025-01-11 +City Hotel,0,121,2017,July,30,24,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.66,0,0,Check-Out,Vincent Hays,ashley63@example.net,+1-301-887-0682,30299468871084,2025-06-24 +City Hotel,0,0,2017,March,11,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,47.0,0,0,Check-Out,Valerie Lopez,ucook@example.org,556.471.9250x2870,3544021651521349,2024-10-07 +Resort Hotel,0,3,2017,August,32,5,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,246.0,179.0,0,Transient,63.1,1,0,Check-Out,Anthony Schmidt,christineclark@example.org,(764)223-2544,4174189558740034,2026-01-12 +City Hotel,0,156,2017,July,31,27,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.54,0,2,Check-Out,Dean Harris,zsmith@example.net,5608879528,342080384650064,2025-10-31 +Resort Hotel,1,91,2017,February,8,19,2,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,133.91,0,0,Canceled,Rhonda Allen,carpenterdaniel@example.com,(775)323-6315x6633,30283647742382,2024-05-09 +City Hotel,0,1,2017,May,19,9,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Ruben Charles,uhamilton@example.net,(576)719-0309x3216,180062527135950,2024-05-07 +City Hotel,1,24,2017,November,48,29,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,179.3,0,2,No-Show,Jennifer Brooks,wilkinsonmichael@example.org,655-843-5768,576701528142,2025-10-11 +City Hotel,0,91,2017,February,5,1,2,2,2,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,81.96,0,1,Check-Out,Jacqueline Owens,mark55@example.org,526-220-3438,4707380423626948,2024-09-10 +City Hotel,0,58,2017,July,30,26,0,3,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,247.84,0,0,Check-Out,Sydney Elliott,flemingchristina@example.com,5912360343,4912577063656,2025-06-17 +City Hotel,0,412,2017,August,32,5,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,102.69,0,1,Check-Out,Gary Chavez,ashleyhunter@example.com,001-404-734-4811x275,4444400770890752,2025-08-20 +Resort Hotel,0,3,2017,July,27,6,0,2,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,10.0,179.0,0,Transient,234.45,1,0,Check-Out,Stephanie Salinas,ana13@example.com,6399424452,371331682782636,2025-06-19 +City Hotel,1,1,2017,February,8,21,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.75,0,0,Canceled,Raymond Valenzuela,fpacheco@example.com,(422)677-1347,30101618939383,2025-06-12 +City Hotel,1,16,2017,March,12,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,17.0,92.0,0,Transient,47.15,0,0,Canceled,Theresa Ward,leah81@example.com,219.831.1257x38536,501810784667,2025-11-17 +Resort Hotel,0,180,2017,March,13,31,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,14.0,223.0,0,Transient-Party,45.55,0,0,Check-Out,Jacob Kennedy,adamterrell@example.org,254-958-2081,345949006967949,2024-04-14 +Resort Hotel,1,107,2017,August,35,24,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,1,Canceled,Jenna Velazquez,michael99@example.org,001-761-459-4907,6011664770058854,2024-11-23 +City Hotel,0,19,2017,May,21,20,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,3,Check-Out,Kathryn Rivers,znelson@example.com,6765528649,2223174771375227,2025-08-01 +Resort Hotel,0,94,2017,December,51,17,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,256.0,179.0,0,Transient-Party,62.06,1,0,Check-Out,Daniel Ramirez,gjackson@example.com,640-514-8245,4226143794490,2025-11-20 +City Hotel,1,0,2017,May,21,20,2,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,0.87,0,0,Canceled,Greg Wood,wferguson@example.com,+1-506-241-5214x6382,2284913907669664,2025-03-16 +Resort Hotel,0,138,2017,April,18,27,1,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,96.02,0,2,Check-Out,Susan Armstrong,acameron@example.com,+1-876-621-9127x64080,180091329914908,2025-02-07 +Resort Hotel,0,1,2017,April,15,10,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,1,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,43.31,1,1,Check-Out,Taylor Stark,ntran@example.org,001-937-485-4263x209,30546488228111,2024-05-04 +City Hotel,0,20,2017,October,43,24,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,132.0,179.0,0,Transient-Party,47.34,0,1,Check-Out,Brandon Peterson,mhughes@example.org,(922)415-9298x165,340084039160380,2024-06-12 +Resort Hotel,0,0,2017,July,27,5,3,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,239.0,179.0,0,Transient,172.77,0,1,Check-Out,Linda Morris,cassandrahill@example.net,001-299-288-6566x298,562234823366,2024-05-06 +City Hotel,0,41,2017,May,22,27,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,203.28,0,2,Check-Out,Laura Sanders,codyramirez@example.net,(684)840-2353,3540789569822280,2024-10-15 +City Hotel,0,15,2017,June,27,29,1,2,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Group,127.63,0,3,Check-Out,Catherine Castaneda,denise80@example.com,866-765-3243,38089431494987,2025-06-09 +City Hotel,0,93,2017,August,34,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Contract,136.58,0,2,Check-Out,Jesse Pollard,mary59@example.net,001-300-952-9789x32241,3534659709328662,2024-07-15 +City Hotel,0,15,2017,March,10,3,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,45.85,1,1,Check-Out,Jacob Love,ihall@example.net,+1-646-932-1741x989,4649659157548522,2025-08-05 +City Hotel,0,88,2017,April,14,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,144.77,0,1,Check-Out,Mrs. Janice Fitzpatrick,ofowler@example.net,2797876472,588207407671,2024-10-16 +Resort Hotel,0,140,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,12.0,222.0,0,Transient-Party,44.7,0,0,Check-Out,Zachary Mckay,hcarlson@example.net,001-644-402-2976x46458,3544846515621707,2025-04-13 +City Hotel,0,91,2017,April,18,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.07,0,1,Check-Out,Lauren Wright,jamesbailey@example.net,513.202.9878,30117239596246,2024-03-29 +City Hotel,1,10,2017,March,11,16,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,62.22,0,0,No-Show,Teresa Velasquez,bsanford@example.net,(294)981-5818x54445,3538174815372774,2024-07-02 +City Hotel,1,156,2017,April,18,30,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,20.0,179.0,0,Transient,99.13,0,1,No-Show,Eugene Parker,william05@example.net,(961)366-2519x1959,343388139095033,2025-11-19 +City Hotel,0,42,2017,August,35,26,2,4,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Amy Knight,cookmichael@example.org,595.575.1028,340097192252513,2025-06-19 +City Hotel,0,15,2017,March,11,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,161.36,0,1,Check-Out,Randy Perez,eileen91@example.org,(897)615-2391x94609,4129025871456955,2025-12-22 +Resort Hotel,1,292,2017,August,32,6,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,43.27,0,0,Canceled,Melanie Smith,mikecook@example.com,220-750-8331x1015,3514437899784323,2024-09-12 +City Hotel,0,54,2017,March,13,28,1,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,140.87,0,0,Check-Out,Melissa Martinez,williamwinters@example.org,873.898.4723,4247220126141,2025-05-28 +City Hotel,0,20,2017,September,38,21,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,103.82,0,0,Check-Out,Samantha Gillespie,amber84@example.net,(584)928-8716,30037321905131,2025-07-03 +Resort Hotel,0,84,2017,July,27,5,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,250.0,179.0,0,Transient,95.45,0,1,Check-Out,Bryan Richardson,mejiaallison@example.org,904-217-8121,2363828036050830,2025-03-30 +Resort Hotel,0,13,2017,April,15,8,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,243.0,179.0,0,Transient,226.77,1,2,Check-Out,Anna Cantu,scottjessica@example.org,+1-602-208-1649,30372646211729,2025-08-23 +Resort Hotel,1,10,2017,February,9,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,237.0,179.0,0,Transient,46.88,0,0,Canceled,Christopher Cox,georgechelsea@example.net,694.924.0222x18412,180082813875549,2024-10-26 +Resort Hotel,0,143,2017,March,12,20,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,E,E,2,No Deposit,17.0,222.0,75,Transient,137.0,0,0,Check-Out,Diana Kemp,brianagregory@example.org,(214)240-6540x82813,3563719472156254,2024-05-04 +Resort Hotel,0,132,2017,July,31,29,2,5,2,0.0,0,BB,CN,Online TA,Direct,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,143.04,1,2,Check-Out,Taylor Salinas,anita04@example.org,464.286.0145,2221875493533693,2024-11-13 +City Hotel,0,96,2017,July,29,15,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,202.79,0,0,Check-Out,Ryan Santos,mariefarrell@example.org,9398170733,578074144812,2024-11-18 +City Hotel,0,15,2017,November,46,11,1,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,42.09,0,0,Check-Out,Amber Crawford,patrickpeters@example.net,7722527434,180050341393004,2026-02-08 +City Hotel,1,21,2017,April,18,28,2,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,135.69,0,2,Canceled,Carla Wong,romeroamanda@example.org,439-967-6047x86693,3505464445555693,2026-02-04 +City Hotel,0,312,2017,December,51,22,2,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,63.08,0,0,Check-Out,Allison Rice,amandawood@example.net,+1-572-799-2945x9929,36301197905706,2025-06-10 +Resort Hotel,0,100,2017,April,15,12,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,89.48,0,1,Check-Out,Sheri Hoover,richard54@example.net,001-283-621-8231,587329850826,2025-07-21 +City Hotel,0,91,2017,September,37,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,161.94,0,1,Check-Out,Jeremy Chavez,dbrady@example.org,(830)506-6239,676393370546,2024-07-03 +City Hotel,0,30,2017,May,21,26,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,94.73,0,0,Check-Out,Jennifer Nguyen,xrobinson@example.com,(823)494-7378,4816812698241704,2024-07-26 +City Hotel,1,11,2017,December,52,30,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.81,0,2,Check-Out,John Rodriguez,april00@example.net,338.779.9068,3575081449417830,2025-02-04 +Resort Hotel,1,145,2017,May,20,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,I,1,No Deposit,240.0,179.0,0,Transient,4.76,0,1,Canceled,Maria Williams,andrea91@example.com,(421)795-3465x3262,213142763780221,2024-09-01 +City Hotel,0,2,2017,March,13,23,2,1,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,112.33,0,2,Check-Out,Melody Ochoa,andrea41@example.com,001-221-593-7685x2325,4478653185961,2025-04-04 +City Hotel,1,373,2017,May,20,15,0,1,1,0.0,0,HB,PRT,Corporate,Direct,0,0,0,A,D,0,Non Refund,36.0,179.0,0,Transient,80.36,0,0,Canceled,Tara Brown,theresa11@example.com,784.692.3184,4546948307598,2024-04-11 +Resort Hotel,1,274,2017,March,10,2,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,364.0500000000011,179.0,0,Transient,49.43,0,1,Check-Out,Holly Banks,christineoliver@example.org,(805)795-0053,3561345444880144,2025-07-21 +City Hotel,0,162,2017,July,28,7,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,197.32,0,2,Check-Out,Amber Johnson,vsanchez@example.org,001-744-687-5749x19100,3549747513408037,2025-10-16 +Resort Hotel,0,16,2017,January,2,1,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,246.0,65.0,0,Transient,52.74,1,0,Check-Out,Scott Thompson,sawyerjennifer@example.net,+1-753-277-7001x2826,4286818771975,2025-04-08 +Resort Hotel,0,156,2017,March,13,28,2,3,1,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,C,0,Refundable,11.0,223.0,0,Transient-Party,63.9,0,0,Check-Out,Eric Flores,phicks@example.net,001-368-326-9713x397,3534225578698591,2024-10-04 +City Hotel,1,65,2017,April,17,22,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.05,0,0,Canceled,Theresa Wilson,ssnyder@example.org,782-799-2752x1701,4396487138644,2024-11-11 +City Hotel,1,37,2017,August,32,4,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Canceled,Eric Ponce,lori51@example.net,848-443-9677,4305620650944100,2025-10-21 +City Hotel,1,145,2017,June,27,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,104.26,0,0,Canceled,Becky Sellers,greg03@example.org,(855)254-3079,3535036784508659,2025-04-12 +Resort Hotel,0,0,2017,January,2,1,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,D,0,No Deposit,12.0,179.0,0,Transient,45.19,0,1,Check-Out,Kendra Burton,xcallahan@example.com,850.935.7942x8471,4329100154620631,2025-10-15 +Resort Hotel,1,55,2017,June,25,21,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,54.04,1,2,Canceled,Wyatt Kerr,heidi97@example.com,001-991-589-3284,4465704535489048,2024-05-20 +City Hotel,0,57,2017,March,12,21,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,97.91,0,2,Check-Out,Craig Dean,edwardstina@example.net,3514528804,2365867475526635,2026-03-26 +Resort Hotel,0,33,2017,June,25,20,2,2,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,E,1,No Deposit,239.0,179.0,0,Transient,125.51,0,1,Check-Out,Christian Rowe,xrobinson@example.org,557-881-3073,213145616832560,2025-09-09 +Resort Hotel,0,51,2017,December,52,24,2,4,1,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,86.85,0,0,Check-Out,Nathan Burke,michelle85@example.com,(919)551-5842,3506251105670907,2025-06-21 +City Hotel,0,50,2017,June,26,27,0,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,252.0,0,2,Check-Out,Nicholas Chase,kellysilva@example.org,857-355-4170x78038,213117092053805,2024-03-30 +Resort Hotel,0,50,2017,August,32,4,1,0,1,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,84.53,0,0,Check-Out,Hailey Ball,rachelcamacho@example.org,912.507.6813x740,502031961951,2024-11-22 +City Hotel,1,96,2017,October,41,8,2,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,106.0,0,2,Check-Out,Heather Barry,natalie20@example.org,2558936483,30254005138034,2024-05-16 +City Hotel,0,13,2017,March,11,11,1,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,104.22,0,0,Check-Out,Cindy Young,robert38@example.org,933-837-0033x72666,2237349504849946,2025-10-12 +Resort Hotel,1,285,2017,March,13,27,0,3,2,1.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient-Party,45.26,0,0,Canceled,Mark Townsend,williamwhite@example.net,832.415.6286,676150464995,2024-04-22 +City Hotel,0,177,2017,September,36,2,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.05,0,2,Check-Out,Michael Lee,ufleming@example.org,+1-849-575-3522x1394,6585188944918682,2025-05-09 +Resort Hotel,1,39,2017,December,48,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,127.65,0,1,Canceled,Lisa Smith,david73@example.com,867-761-2702,4192650023337263012,2024-04-11 +City Hotel,0,55,2017,August,32,8,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,138.88,0,1,Check-Out,John Steele,murraykevin@example.net,210-477-3006x264,4627525673741,2024-09-10 +City Hotel,0,19,2017,August,33,13,0,1,2,2.0,0,BB,,Online TA,Direct,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,252.0,1,0,Check-Out,Sandra Casey,jfoley@example.com,(640)558-3528,4830901290173747216,2024-08-15 +Resort Hotel,0,147,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,15.0,222.0,0,Transient-Party,78.33,0,0,Check-Out,Darrell Simmons,melaniehawkins@example.com,001-911-690-7792x657,30547251497255,2025-04-22 +City Hotel,0,6,2017,December,52,29,2,4,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,108.17,0,0,Check-Out,Valerie Harrison,james11@example.com,7607914498,3578235426370118,2025-12-14 +City Hotel,0,3,2017,August,32,8,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,132.2,0,3,Check-Out,Anthony Cherry,shane96@example.org,+1-797-795-9656x447,30210651526112,2024-12-11 +Resort Hotel,1,16,2017,August,34,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,49.07,0,0,Canceled,Cody Lawson,cookjennifer@example.org,923.449.6468,213158892683383,2025-08-04 +City Hotel,0,100,2017,June,23,7,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,126.9,0,2,No-Show,Barbara Wagner,mcampbell@example.org,(934)347-3517x9845,3512276459369048,2024-11-02 +City Hotel,0,9,2017,October,42,19,2,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,85.0,179.0,0,Transient,63.41,0,0,Check-Out,Scott James,williamsontanner@example.org,001-392-327-7279x475,3541949997095888,2025-08-19 +City Hotel,0,100,2017,August,33,18,2,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,167.68,1,3,Check-Out,John Moore,kimberly31@example.com,8302200770,4687980309721590,2026-02-25 +Resort Hotel,0,42,2017,March,12,17,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,243.0,179.0,0,Transient,129.3,1,1,Check-Out,Matthew Farley,zsmith@example.org,258-445-9232x495,4434477673583,2025-01-22 +City Hotel,0,22,2017,May,22,30,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,142.19,1,2,Check-Out,Mrs. Tonya Byrd,riverajohn@example.org,7415305577,4362539393332924264,2024-07-28 +City Hotel,1,357,2017,May,21,21,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,253.0,179.0,0,Transient,110.75,0,0,Canceled,Catherine Davis,vwagner@example.net,724.488.1488x87523,4175193895667,2024-08-31 +City Hotel,0,39,2017,July,28,10,0,2,3,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,65.09,0,1,Check-Out,Mary Wilkinson,brandonsantiago@example.org,888.810.2248,2536289492322449,2025-11-03 +City Hotel,0,1,2017,October,42,20,2,2,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,108.29,0,0,Check-Out,Michael Baker,aharmon@example.com,9885222882,6011878847961102,2025-12-28 +Resort Hotel,1,100,2017,April,18,27,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,364.0500000000011,179.0,0,Transient,125.3,0,0,Canceled,Peggy Mendoza,cruzpaul@example.org,+1-901-846-8379x2594,6538778538267591,2024-12-01 +City Hotel,1,376,2017,November,48,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,Non Refund,2.0,179.0,0,Transient,62.11,0,0,Canceled,Paul Anderson,matthewramsey@example.com,+1-573-609-0936,6011920775460762,2024-12-15 +City Hotel,1,35,2017,June,25,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,41,Transient,118.14,0,0,Canceled,Wayne Robinson,zmcconnell@example.org,278-807-2780,4841465621096098,2024-05-14 +City Hotel,0,0,2017,January,4,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,43.65,1,1,Check-Out,Brittany Farley,bradleyscott@example.net,(390)595-5157,4249235638958731,2026-03-18 +City Hotel,0,3,2017,July,30,24,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,139.46,1,0,Check-Out,Katie Walters,jenniferhickman@example.net,001-733-434-9972x741,4441060505289564,2024-09-07 +City Hotel,0,17,2017,November,44,3,2,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.65,0,3,Check-Out,Dorothy Osborn,taramiller@example.com,471.882.3304,4311150479850520,2024-05-01 +City Hotel,1,377,2017,October,41,14,0,2,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,86.0,179.0,0,Transient-Party,125.95,0,0,Canceled,William Hodge,romerosteven@example.com,3936221287,30266079832573,2026-03-20 +City Hotel,0,12,2017,March,10,4,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,110.48,1,1,Check-Out,Michelle Ortega,michaelmills@example.net,911-631-8682,3507066584895653,2025-11-23 +Resort Hotel,0,21,2017,March,10,4,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,270.0,179.0,0,Transient-Party,71.34,0,0,Check-Out,Shannon White,btran@example.org,+1-475-464-9075,4534425203929787,2025-11-29 +City Hotel,0,77,2017,April,14,1,2,5,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,132.72,0,2,Check-Out,Jennifer Bennett,shelley47@example.com,+1-961-399-8599,4002825115618902,2024-06-04 +City Hotel,0,103,2017,June,25,23,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,1,No Deposit,75.0,179.0,0,Transient,132.6,0,3,Check-Out,Lisa Kaiser,kathyshelton@example.com,(314)907-7406x874,501856195331,2025-09-05 +Resort Hotel,1,1,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,46.53,0,1,No-Show,Matthew Mccullough,melissa35@example.com,808-335-7402,4935846256934,2025-01-03 +Resort Hotel,0,0,2017,January,2,5,2,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,No Deposit,360.0,179.0,0,Transient-Party,44.69,0,1,Check-Out,Steven Tyler,schneiderjeffery@example.org,734.740.3112x153,3572501907352768,2025-01-30 +City Hotel,0,1,2017,January,4,21,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,F,0,No Deposit,13.0,45.0,0,Transient,0.69,0,1,Check-Out,Robert Jones,matthew59@example.com,+1-874-818-2985,4990705587781087,2024-11-05 +Resort Hotel,1,296,2017,September,38,21,2,5,2,0.0,0,BB,PRT,Complementary,Direct,0,0,1,E,E,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Kim Nelson,kathleen87@example.com,(391)250-9267,2717455922403163,2025-09-30 +Resort Hotel,0,35,2017,July,31,27,0,1,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,237.0,179.0,0,Transient,252.0,0,1,Canceled,Katherine Garcia,tvance@example.org,001-444-285-9422x25723,5128530753154634,2025-06-04 +City Hotel,1,257,2017,September,37,8,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.86,0,0,Canceled,John Stewart,lindamartin@example.com,(981)508-4439x83623,345584710507051,2024-08-31 +City Hotel,0,38,2017,September,39,23,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,160.7,0,0,Check-Out,Tiffany Barton,elizabeth90@example.org,817.654.8951,4495203121536,2024-04-08 +Resort Hotel,1,321,2017,August,33,14,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Contract,48.24,0,0,Canceled,Erica Smith,jenniferhenry@example.org,315-522-6367,6011403863714481,2025-04-03 +City Hotel,1,18,2017,May,18,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,221.58,0,0,Canceled,Colleen Cruz,stephanieadams@example.org,+1-550-757-4285,6558500024383657,2025-03-30 +City Hotel,1,44,2017,December,49,2,1,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,1,0,B,E,0,No Deposit,10.0,179.0,0,Transient-Party,66.32,0,0,Canceled,Anthony Mueller,tiffany18@example.com,(675)371-2406x35730,377284441309494,2024-09-05 +City Hotel,0,100,2017,July,27,2,0,2,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.62,0,2,Check-Out,Crystal Clayton,lwagner@example.org,5948477382,501804210810,2025-03-15 +Resort Hotel,0,11,2017,July,29,14,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,120.58,1,1,Check-Out,Jacob Brown,bgrant@example.com,7198352539,6590590878196867,2025-12-09 +City Hotel,1,112,2017,August,34,24,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,168.58,0,0,Canceled,Rachel Williams,kingautumn@example.com,539.560.9142,30239368471569,2025-10-17 +City Hotel,0,13,2017,April,15,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,56.28,1,0,Check-Out,Keith Lloyd,shawkins@example.org,+1-223-362-1591x66962,2720700469624035,2024-04-03 +City Hotel,1,169,2017,July,29,19,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,113.04,0,0,Canceled,Mary Richardson,diazdeborah@example.net,335-461-0370,2287042017889736,2026-01-04 +City Hotel,0,20,2017,August,33,10,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,70.0,0,Transient,214.74,0,2,Check-Out,Nathan Jones,craig11@example.net,586.389.1672,3517367843606842,2025-07-09 +City Hotel,0,19,2017,January,2,4,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,43.48,0,1,Check-Out,Tamara Peterson,veronica25@example.net,5383543250,676143028477,2025-08-12 +Resort Hotel,1,68,2017,March,13,30,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,E,1,Refundable,12.0,222.0,0,Transient-Party,48.51,0,0,Check-Out,Alan Mahoney,rogersmith@example.org,9573839560,4706824260639639659,2025-02-28 +City Hotel,0,109,2017,June,25,20,2,5,1,0.0,0,HB,FRA,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,199.79,0,3,Check-Out,Nathan Vargas,hmendez@example.net,223-940-8638x12650,4344838540050,2025-12-23 +Resort Hotel,0,363,2017,October,40,3,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,27.0,179.0,0,Contract,54.46,0,2,Check-Out,Frank Payne,chadgarcia@example.com,654.257.1810,4027322270439,2024-08-30 +Resort Hotel,1,156,2017,August,35,29,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,0,Transient,63.38,0,0,Canceled,Cody Woods,beth21@example.com,(374)469-6832,180025840538549,2024-11-24 +City Hotel,1,34,2017,November,47,20,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,109.09,0,0,Canceled,Chad King,dhernandez@example.net,(583)527-5200,30100426830479,2025-07-16 +City Hotel,1,161,2017,June,26,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,129.42,0,0,Canceled,Christopher Smith,ohood@example.net,+1-409-208-2734x782,6011039718499363,2024-09-10 +Resort Hotel,1,147,2017,December,51,22,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient-Party,224.82,0,0,Canceled,Marissa Davis,kempstephanie@example.com,8433809165,6575182075762896,2025-12-24 +City Hotel,0,0,2017,January,3,18,0,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,53.21,0,0,Check-Out,Ann Parker,aconley@example.com,528-414-1710,4290667625480,2024-10-14 +City Hotel,0,43,2017,July,29,16,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,107.85,0,1,Check-Out,Laura Walton,williamsdavid@example.org,2964314757,36819244215548,2026-02-22 +Resort Hotel,0,18,2017,February,8,22,1,3,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,G,2,No Deposit,15.0,179.0,0,Transient,103.7,1,0,Check-Out,Travis Powell,janethernandez@example.net,001-441-392-0671x7136,4767219970803,2024-11-01 +City Hotel,1,172,2017,July,29,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,122.13,0,0,Canceled,Maria Sullivan,laurie72@example.net,792-245-8767x69583,180025891162603,2024-12-26 +City Hotel,1,63,2017,October,40,5,2,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.45,0,0,Canceled,Kelly Lewis,willievaldez@example.com,2463965717,370359993155003,2025-07-04 +City Hotel,1,1,2017,August,32,9,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,L,K,0,No Deposit,8.0,179.0,0,Transient,237.47,0,1,Canceled,John Webb,thomasmatthew@example.net,857-373-4456x0848,4971404714626,2025-12-29 +City Hotel,0,22,2017,January,2,3,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.46,0,2,Check-Out,Lance Townsend,nathan48@example.com,672-494-7099x42485,6011004846154587,2025-05-18 +Resort Hotel,0,139,2017,March,10,4,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,239.0,179.0,0,Transient,62.49,0,3,Check-Out,Matthew Leonard,robertschristina@example.com,001-937-894-6358,213186620561555,2025-05-29 +City Hotel,0,27,2017,May,18,1,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,122.75,0,2,Check-Out,Tyler Dominguez,andrew42@example.net,995.876.1919x411,3565007774362061,2025-02-19 +Resort Hotel,1,256,2017,October,42,19,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,26.0,179.0,75,Contract,92.72,0,1,Canceled,Kimberly Alvarez,cruzbeth@example.org,567-827-3110,4484744595796,2024-07-13 +Resort Hotel,0,100,2017,May,19,6,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,78.0,1,1,Check-Out,Heather Pittman,bryantsarah@example.com,(617)333-4711,180029423249862,2026-02-09 +City Hotel,0,98,2017,June,26,22,4,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,69.0,179.0,0,Transient,140.71,0,0,Check-Out,Teresa Cohen,ehenry@example.com,953.511.0184x3760,36966771850864,2025-09-17 +City Hotel,0,53,2017,March,13,28,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.62,0,1,Check-Out,Melissa Parker,antoniorhodes@example.com,7308984274,4755837692361693219,2024-06-11 +City Hotel,0,268,2017,July,29,19,0,4,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,218.23,0,2,Check-Out,Brandon Carrillo,fieldstyler@example.net,+1-460-986-4588x3588,4713193295701615236,2024-05-24 +City Hotel,0,9,2017,May,22,26,1,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,95.93,1,2,Check-Out,Colin Mckay,kevin51@example.net,001-470-603-5802x49926,060424884447,2024-12-01 +City Hotel,1,145,2017,February,6,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,133.19,0,1,Canceled,Rachel Walsh,cayala@example.org,(308)406-8103,6011519504391049,2024-04-24 +City Hotel,0,16,2017,September,36,8,1,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,194.13,0,3,Check-Out,Caleb Williams,harrisjessica@example.net,001-354-523-9467x132,5489034587002609,2025-04-08 +City Hotel,0,375,2017,October,42,17,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,86.0,0,0,Check-Out,Benjamin Wilkinson,pwalker@example.net,001-968-223-3032x282,344162035310864,2024-08-13 +City Hotel,1,399,2017,December,51,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.89,0,0,Canceled,Katelyn Gray,rodriguezangela@example.com,001-415-576-3259x7405,4702512639680,2024-12-13 +Resort Hotel,0,20,2017,October,40,5,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,311.0,179.0,0,Transient-Party,44.02,0,0,Check-Out,Kristine Bryant DVM,michellewilliams@example.org,(819)565-3828x93938,676304082115,2025-01-29 +Resort Hotel,0,159,2017,November,44,1,2,3,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,E,2,Refundable,14.0,223.0,0,Transient-Party,99.73,0,0,Check-Out,Michael Smith,sanchezvalerie@example.com,3726616906,30211485614637,2024-11-25 +Resort Hotel,0,200,2017,August,31,4,4,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,187.46,0,3,Check-Out,Justin Foster,henry27@example.com,001-692-223-3985,30080792148468,2024-09-11 +City Hotel,1,90,2017,December,49,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,64,Transient-Party,78.76,0,0,Canceled,Maurice Graham,markturner@example.org,001-590-267-8649,3530352029010590,2025-05-12 +Resort Hotel,0,80,2017,February,5,2,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,178.0,179.0,0,Transient,81.53,0,1,Check-Out,Kenneth Watkins,jeremy84@example.org,(652)218-7549x63615,4700649300310258472,2025-01-11 +City Hotel,0,6,2017,March,10,10,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,80.38,0,2,Check-Out,Stacey Davis,johnsonsara@example.net,+1-679-722-5898,4536971266118865840,2024-05-09 +City Hotel,0,42,2017,September,35,1,2,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,225.7,0,1,Check-Out,Janice Bailey,hayesjoseph@example.net,4527796181,4767876270515420,2026-01-25 +City Hotel,0,1,2017,November,45,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,1,No Deposit,81.0,63.0,0,Transient-Party,54.51,0,0,Check-Out,Amanda Hodge,rodriguezharry@example.com,+1-495-733-5558x7583,2369174630659831,2024-04-17 +City Hotel,0,148,2017,April,17,24,1,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,132.46,0,0,Check-Out,Jason Gomez,thall@example.net,+1-370-790-5854x65854,2270034305506683,2024-12-05 +City Hotel,1,194,2017,July,28,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient,1.86,0,0,Canceled,Julie Johnson,jthompson@example.net,722.694.1878,4608619030121,2025-01-24 +Resort Hotel,0,25,2017,August,32,8,4,3,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,E,E,1,No Deposit,247.0,179.0,0,Transient,176.95,0,1,Check-Out,Vanessa Cunningham,katherinejohnson@example.net,+1-984-588-9847,6509245997539998,2025-02-12 +City Hotel,1,52,2017,October,43,26,1,2,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,110.13,0,0,Canceled,Tonya Alexander,derrick14@example.com,+1-301-508-9245x7560,30411877988819,2025-06-21 +City Hotel,1,367,2017,June,25,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,121.21,0,1,Canceled,Mark Santos,suzannecase@example.net,001-815-863-9239x95141,4772611198841290,2026-03-11 +City Hotel,1,16,2017,November,46,12,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,89.89,0,1,Check-Out,Michael Walker,scotttammy@example.org,943-236-3784,4482493548073188433,2025-10-31 +City Hotel,0,12,2017,May,21,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,240.0,179.0,0,Group,2.31,0,1,Check-Out,Michael Watkins,adamsanthony@example.org,+1-573-669-9595,3543181192533525,2026-03-02 +City Hotel,0,5,2017,June,25,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,125.99,0,1,Check-Out,Cassidy Bailey,prangel@example.net,365-481-6346,348853516272146,2025-04-23 +City Hotel,1,13,2017,May,21,24,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,245.4,0,0,Canceled,Christopher Gutierrez,scott95@example.org,244.962.3307,4407052839472,2024-11-26 +Resort Hotel,1,47,2017,November,44,4,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,47.33,0,2,Canceled,Elijah Archer,ymorgan@example.org,472.290.9990,2264061800843590,2024-07-02 +City Hotel,0,42,2017,October,40,5,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,92.67,0,1,Check-Out,Lisa Hendricks,andrew35@example.com,(498)475-7211x8442,180031655695739,2026-03-08 +Resort Hotel,0,38,2017,April,18,29,1,0,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient,84.0,0,0,Check-Out,Kristin Hudson,angel60@example.org,001-460-440-6576x2610,4292906239079772,2024-10-07 +City Hotel,1,12,2017,May,20,17,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.32,0,1,Canceled,James Livingston,victoria25@example.net,650.427.1939x9414,4028722168973070,2024-04-13 +City Hotel,1,102,2017,June,22,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,41,Transient,105.47,0,0,Canceled,Jeffrey Evans,imassey@example.com,832.252.4718x4944,379126653101259,2024-04-24 +City Hotel,0,55,2017,September,37,12,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,104.75,0,1,Check-Out,Dennis Santana,ejones@example.org,+1-687-618-8133,213122373845325,2026-03-04 +City Hotel,0,54,2017,September,36,8,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,108.38,0,1,Check-Out,Nichole Parker,uhanson@example.net,001-247-739-1881x530,4019936233345625174,2024-10-03 +Resort Hotel,0,305,2017,August,33,12,1,1,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,198.38,1,0,Check-Out,Benjamin Mosley,miguelchavez@example.net,464.724.0541,4554865821893581,2025-03-25 +Resort Hotel,0,135,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,13.0,222.0,0,Transient-Party,86.52,0,0,Check-Out,Jennifer Reilly,nmerritt@example.net,+1-436-441-9348,30564128221578,2024-07-12 +City Hotel,0,37,2017,February,8,20,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,179.0,179.0,0,Transient,73.77,0,0,Check-Out,Nicole Sanchez,christopher70@example.net,(762)598-2423x2313,4389718954242071896,2025-01-11 +City Hotel,0,148,2017,June,25,16,2,4,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,E,2,No Deposit,13.0,179.0,0,Transient,113.86,1,2,Check-Out,Shannon Hill,kellywoods@example.org,001-368-819-7249x1021,4671374531946314354,2025-10-30 +Resort Hotel,0,1,2017,November,44,3,1,4,2,0.0,0,BB,NLD,Online TA,Corporate,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,63.04,1,1,Check-Out,Darrell Ibarra,westdan@example.org,873.358.2306,3568194346872681,2024-06-26 +City Hotel,0,32,2017,June,25,20,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.1,0,2,Check-Out,Deborah Fox,jessica29@example.com,850-758-5581x7977,4497559981059,2025-11-01 +City Hotel,0,33,2017,November,45,9,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,33.0,179.0,0,Transient-Party,89.54,0,0,Check-Out,Mary Hoffman,shannon38@example.com,(494)314-2452x8509,4948687411252,2024-11-15 +Resort Hotel,0,20,2017,March,13,25,4,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,118.09,0,1,Check-Out,Anthony Murphy,tiffanycraig@example.com,473-400-9649x6359,676389942407,2024-12-27 +Resort Hotel,0,165,2017,September,39,30,1,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,225.9,1,2,Check-Out,Larry Woods,hoganjulie@example.net,(558)393-8742x062,4428923034251154946,2025-07-16 +Resort Hotel,0,57,2017,August,35,28,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,204.06,0,2,Check-Out,Virginia Caldwell,juliajoseph@example.com,287-814-4054x99718,180059217705035,2024-05-06 +City Hotel,1,18,2017,November,44,3,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.24,0,0,Canceled,Patricia Boyd,scottshelly@example.com,+1-812-382-2776x9160,2240974715996338,2024-08-31 +City Hotel,0,0,2017,July,28,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,184.12,1,2,Check-Out,Debra Wright,scott46@example.com,(952)538-2446x49742,3598658396827104,2024-06-10 +City Hotel,0,205,2017,September,37,15,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,80.0,0,Transient,99.78,0,2,Check-Out,Adam Shannon,cthomas@example.org,6002251672,3568265761088514,2025-11-16 +Resort Hotel,0,0,2017,January,2,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,49.89,0,1,Check-Out,Betty Vazquez,brycemiles@example.org,001-900-842-0367,503853895442,2025-07-09 +Resort Hotel,0,240,2017,July,28,9,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,69.17,0,0,Check-Out,John Williams,perezjessica@example.com,461-665-7958,2265433869759422,2024-07-02 +Resort Hotel,0,236,2017,June,26,24,3,10,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,135.62,1,2,Check-Out,Steven Stone,john33@example.net,835-573-1618,2254340124525725,2025-04-26 +City Hotel,0,50,2017,December,2,30,2,2,2,0.0,0,BB,ITA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.63,0,1,Check-Out,Mark Mueller,dferguson@example.org,001-973-742-5741x8612,30383831238161,2024-10-01 +Resort Hotel,1,10,2017,February,8,17,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,45.1,0,0,Canceled,John Richards,lvance@example.org,001-811-399-0062x4362,6011155180344505,2025-05-12 +Resort Hotel,0,62,2017,August,33,17,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,133.52,0,1,Check-Out,Beth Sanchez,michaelpratt@example.net,581-804-6163,4530145829489,2026-01-08 +Resort Hotel,1,0,2017,December,50,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,250.0,331.0,0,Transient,8.71,0,0,Canceled,Donald Reynolds,colleen20@example.net,001-665-213-5919x21498,30345450580348,2025-01-29 +City Hotel,1,188,2017,March,12,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,65.24,0,0,Canceled,Timothy Hernandez,uford@example.org,001-204-349-2132,180083912259395,2026-01-20 +City Hotel,0,2,2017,January,4,25,0,1,1,1.0,0,BB,PRT,Direct,Direct,1,0,1,A,B,0,No Deposit,14.0,45.0,0,Group,55.94,1,0,Check-Out,Lacey Morrow,lawsonjames@example.com,880-540-6138x09726,3506827465886322,2026-02-14 +City Hotel,1,382,2017,October,41,13,0,2,2,0.0,0,HB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,84.0,179.0,0,Transient,106.79,0,0,Canceled,Omar Kelly,jason65@example.net,3895686052,213177721574159,2024-12-21 +Resort Hotel,0,57,2017,August,31,2,3,5,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,116.56,0,2,Check-Out,Brian Gross,fischerjeffrey@example.com,+1-553-781-0896x822,4153760952385,2025-07-30 +City Hotel,0,53,2017,July,30,27,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,115.85,0,1,Check-Out,Scott Lin,yvillanueva@example.org,(855)283-9516x57640,579010319740,2024-08-10 +Resort Hotel,0,15,2017,March,10,4,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,331.0,179.0,0,Transient,65.27,0,3,Check-Out,Linda Lee,samuel85@example.org,+1-254-585-6225x319,6557992459229094,2024-08-27 +City Hotel,0,251,2017,July,30,23,1,0,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,63.96,0,0,Check-Out,Lori Franco,debra37@example.org,383.221.8929x0720,6547689301089337,2025-03-25 +City Hotel,0,156,2017,March,11,15,2,2,2,1.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,2,No Deposit,14.0,179.0,0,Transient,139.57,0,0,Check-Out,Kristi Jordan,julia55@example.org,623-603-2930,3598793825416623,2024-12-11 +Resort Hotel,0,6,2017,December,51,23,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient-Party,64.21,0,1,Check-Out,Tammy Lynch,dalestevenson@example.org,(540)203-7848x1689,5563351500479139,2024-05-23 +City Hotel,0,61,2017,April,15,11,1,3,2,0.0,0,SC,CHE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.73,0,1,Canceled,Debbie Ward,tammy66@example.org,(941)341-9170,4937692192913782,2024-05-18 +City Hotel,0,154,2017,December,52,28,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,70.0,179.0,0,Transient,90.47,0,1,Check-Out,David Murphy,leehayley@example.net,750.964.7568x63758,4060086053907,2025-12-11 +Resort Hotel,0,96,2017,January,5,27,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,1,A,A,0,No Deposit,9.0,179.0,0,Transient,55.13,0,2,Check-Out,Bradley Walker,michael75@example.org,270.747.4739,3512494418476479,2025-01-25 +City Hotel,0,54,2017,October,42,15,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.71,0,1,Check-Out,Jacqueline Dyer,crystalchavez@example.com,8893640821,4602545204954661,2024-03-30 +Resort Hotel,0,10,2017,July,29,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,E,1,No Deposit,17.0,66.0,0,Transient,2.85,0,0,Check-Out,Clifford Poole,osbornebryan@example.org,+1-452-391-3271x37979,4982791335846760,2024-08-19 +City Hotel,1,154,2017,September,37,15,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,94.09,0,0,Canceled,Michael Taylor,herreraashley@example.org,(786)280-5919x34704,180046532910457,2026-01-31 +City Hotel,0,102,2017,June,23,4,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,135.33,0,0,Check-Out,Chloe Ellis,george58@example.net,797.446.8022x36844,5448926659784040,2025-10-27 +City Hotel,0,399,2017,June,23,9,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,126.51,0,0,Check-Out,Jason Douglas,jenniferwilliams@example.org,924.915.3355,30054032243827,2025-02-04 +City Hotel,0,161,2017,March,12,19,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,105.33,0,2,Check-Out,David Hayes,smithbarbara@example.net,001-484-819-0225x989,2350280144063583,2024-09-29 +City Hotel,0,10,2017,August,32,8,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,219.64,0,1,Check-Out,Kathy Steele,huntertimothy@example.com,356-323-8870,30422756023602,2026-03-02 +City Hotel,0,331,2017,October,41,11,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,64,Transient-Party,64.4,0,1,Check-Out,Jennifer Underwood,castrovincent@example.com,001-717-941-1812x145,3507051275346224,2025-11-09 +City Hotel,1,144,2017,May,21,24,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,181.0,179.0,0,Transient,81.21,0,0,Canceled,Amanda Moody,esanchez@example.net,660-572-5087,4775727636343254278,2025-11-18 +Resort Hotel,0,38,2017,January,3,14,2,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,191.0,179.0,0,Transient,41.99,0,0,Check-Out,Marilyn Page DVM,seanrodgers@example.net,(211)596-3487,4153385658169,2024-08-27 +Resort Hotel,0,149,2017,November,45,10,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,78.03,0,1,Check-Out,Diana Mullins,bruceberry@example.org,001-919-864-3537,2490850652685067,2025-03-06 +City Hotel,1,0,2017,February,6,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.2,0,1,Canceled,Brittany Ballard,jlewis@example.com,381.795.3824,6011557468692200,2024-06-19 +Resort Hotel,0,53,2017,June,26,23,1,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,285.0,179.0,0,Transient,112.41,0,0,Check-Out,Matthew Freeman,pattersoneric@example.org,001-589-592-1866x76165,4725771803656467992,2025-05-11 +City Hotel,0,20,2017,May,19,9,2,2,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.71,0,1,Check-Out,Amy Baker,qdeleon@example.org,001-329-356-4165,3544544712170186,2024-10-09 +City Hotel,0,103,2017,April,15,12,2,3,2,0.0,0,BB,ITA,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,114.48,0,1,Check-Out,Elizabeth Skinner MD,kennedypaula@example.net,(818)766-2079,213168968242659,2026-01-10 +Resort Hotel,0,2,2017,November,45,5,1,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,D,1,No Deposit,12.0,47.0,0,Transient,50.99,0,1,Check-Out,Riley Davenport,heatheralexander@example.org,797.942.9184,213139282190999,2025-04-01 +Resort Hotel,0,35,2017,October,41,9,2,2,2,0.0,0,Undefined,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,323.0,179.0,0,Transient-Party,52.6,0,0,Check-Out,Carla Briggs,wolfheather@example.net,(914)576-9174x1690,4476951634391,2025-06-08 +City Hotel,0,41,2017,August,35,28,2,4,2,0.0,0,BB,AUT,Groups,Corporate,0,0,0,A,C,1,No Deposit,13.0,179.0,0,Transient-Party,103.4,1,3,Check-Out,Diana Myers,padillaangela@example.org,(685)216-7524,3522753173546315,2026-03-13 +City Hotel,1,359,2017,August,35,26,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,135.01,0,0,Canceled,Paul Blair,michaelstewart@example.org,397.350.3375x586,376486350899248,2025-01-28 +City Hotel,1,167,2017,July,30,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,138.7,0,0,Canceled,Olivia Gonzalez,harriserika@example.org,001-765-258-2887,341474254457364,2024-07-14 +City Hotel,0,13,2017,September,36,4,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.38,0,1,Check-Out,Xavier Hanson,romerojeffrey@example.org,(850)646-7710,30259457938815,2025-12-21 +Resort Hotel,0,34,2017,October,43,23,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,70.87,0,2,Check-Out,Chad Taylor,sarahreynolds@example.org,2385997861,4212971254823659,2024-10-02 +City Hotel,0,159,2017,July,30,23,2,2,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.74,0,2,Check-Out,William Lewis,jkane@example.com,3213500587,4791353983695731299,2026-01-25 +Resort Hotel,0,0,2017,December,49,5,0,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,54.74,0,1,Check-Out,Crystal Robinson,likatherine@example.org,(873)761-2251,180016625886849,2026-03-22 +City Hotel,1,256,2017,July,27,3,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,71.77,0,0,Canceled,John Jones,kramirez@example.com,898-349-3718,5232592461937281,2025-10-02 +Resort Hotel,0,13,2017,July,28,8,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,57.35,0,1,Check-Out,Meagan Patterson,campbelljose@example.com,+1-730-924-9619x076,38896611488245,2025-11-26 +City Hotel,0,92,2017,March,13,27,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,81.61,0,0,Check-Out,Timothy Smith,andreamiranda@example.org,001-788-842-3074x249,4043613627918355582,2025-08-25 +City Hotel,0,38,2017,October,43,22,1,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.42,0,1,Check-Out,Brenda Mendoza,calvarez@example.com,+1-509-613-9200x076,4602691225086205891,2026-03-20 +City Hotel,0,0,2017,November,45,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,63,Transient,86.86,0,0,Check-Out,Nicole Edwards,umartin@example.net,001-557-506-3081x30849,3542662116007127,2025-02-19 +Resort Hotel,0,10,2017,March,14,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,15.0,331.0,0,Transient,42.47,0,1,Check-Out,Amy Ramirez,flemingkathleen@example.net,7223411591,6527547150193184,2025-11-04 +City Hotel,1,30,2017,November,48,28,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,82.58,0,1,Canceled,Anthony David,laura05@example.org,+1-776-721-6752x46616,3572930908214604,2024-08-10 +Resort Hotel,0,4,2017,May,21,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,310.0,179.0,0,Transient,47.12,1,0,Check-Out,David Perkins,tami40@example.net,+1-822-952-9281x15906,4229828721057052146,2025-06-08 +Resort Hotel,0,23,2017,March,12,22,1,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,86.27,0,0,Check-Out,Rose Jackson,tyler71@example.org,384-505-4443x142,503802908783,2025-01-27 +Resort Hotel,0,96,2017,April,14,6,4,3,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,63.54,0,3,Check-Out,Devin Hardin,thomasmatthew@example.com,(728)769-1119x9978,38036374160430,2025-12-06 +City Hotel,0,42,2017,July,30,22,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,D,G,2,No Deposit,240.0,179.0,0,Transient,112.75,0,3,Check-Out,Amber Fernandez,enielsen@example.net,900-914-7879x994,38975939986740,2025-06-25 +City Hotel,1,204,2017,July,29,14,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,242.61,0,1,Canceled,Travis Marsh,hgardner@example.com,641.226.0610,4342506223117727,2025-07-07 +City Hotel,0,287,2017,December,50,16,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,55.0,0,0,Check-Out,Rebecca Lowery,christine24@example.net,504.499.6231,4395126237706054,2026-02-01 +Resort Hotel,1,200,2017,June,24,13,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,87.24,0,0,Canceled,Jesse Martin,juliaknapp@example.com,908.575.2118,4756589600587,2025-10-31 +City Hotel,1,13,2017,December,50,11,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.41,0,1,Canceled,Robert Carter,pcook@example.com,001-791-205-0042x408,4128594027075,2024-04-23 +City Hotel,1,33,2017,May,20,13,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.07,0,1,Canceled,Amy Olsen,zlozano@example.org,766-285-4188x29219,6502691117123246,2025-01-09 +City Hotel,0,0,2017,March,12,19,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,142.78,0,1,Check-Out,Sydney Green,griffinjennifer@example.com,834-700-5416x39763,2709054233554267,2024-06-29 +Resort Hotel,0,96,2017,May,22,28,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,136.33,0,1,Check-Out,Julia Parsons,stevendeleon@example.com,+1-475-260-6108x675,4673333694974,2026-03-13 +Resort Hotel,0,90,2017,February,9,28,2,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,238.0,179.0,0,Transient,107.3,0,2,Check-Out,Thomas May,danielhorne@example.org,001-736-564-9704x34170,5297223997306492,2025-10-27 +City Hotel,1,147,2017,August,32,5,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,232.49,0,0,Canceled,Erica Green,daltonjames@example.org,(591)847-5241,180066960112673,2024-08-09 +Resort Hotel,0,24,2017,November,45,6,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,44.81,0,0,Check-Out,Richard Burke,angelicafischer@example.com,+1-878-236-7465x9888,342609693022498,2025-10-28 +Resort Hotel,0,4,2017,January,4,27,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,H,0,No Deposit,237.0,179.0,0,Transient,141.49,0,1,Check-Out,Tammy Williams,lisafreeman@example.com,253-917-4117x3176,501814336993,2026-03-01 +City Hotel,0,50,2017,September,36,5,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,96.08,0,0,Check-Out,Joshua Herrera,erikmata@example.org,4774285615,6599433108232593,2024-10-22 +City Hotel,0,0,2017,February,7,10,0,1,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Brittany Byrd,joseph63@example.net,401.849.5588x28551,345575089713312,2025-03-29 +City Hotel,0,18,2017,April,14,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,74.89,0,0,Check-Out,Gina Brennan,mbrennan@example.net,704.715.4222x915,5544887504011216,2026-01-25 +City Hotel,0,30,2017,May,19,10,2,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Christopher George,nicholascunningham@example.net,613.417.2198,4726798861263258474,2024-08-08 +Resort Hotel,0,9,2017,July,31,27,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,216.73,0,2,Check-Out,Lauren Watts,khughes@example.com,+1-246-291-2150x6500,30351149221567,2026-01-24 +City Hotel,0,14,2017,October,43,24,2,1,2,0.0,0,BB,FRA,Online TA,GDS,0,0,0,D,D,0,No Deposit,152.0,179.0,0,Transient,136.74,0,0,Check-Out,Peter Campbell,tammysmith@example.com,657-912-1374,377786119837465,2025-12-25 +Resort Hotel,0,32,2017,October,40,6,4,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Contract,49.25,0,2,Check-Out,Jonathon Stevenson,edwardsheather@example.net,(883)601-6916,2258555512580844,2024-08-14 +City Hotel,1,98,2017,April,15,9,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.94,0,0,Canceled,Karla Burton,lisa96@example.com,228-480-0554x294,30239956885121,2025-07-10 +Resort Hotel,0,171,2017,March,12,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,85.0,179.0,0,Transient-Party,44.49,0,1,Check-Out,Randy Jones,amanda47@example.org,+1-802-753-8333x2410,4447454639589434195,2025-02-01 +City Hotel,0,2,2017,September,36,8,2,1,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,45.0,0,Transient,114.24,0,0,Check-Out,Carlos Miller,vcrawford@example.com,001-281-528-2517,180072329247556,2024-09-07 +City Hotel,1,57,2017,March,13,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,43,Transient,95.0,0,0,Canceled,Joseph Church,kathryn56@example.com,964.993.7694,3514978151887270,2025-07-31 +City Hotel,0,7,2017,March,9,3,0,5,1,0.0,0,BB,,Direct,Direct,0,0,1,A,A,1,No Deposit,14.0,179.0,0,Transient,100.88,0,1,Check-Out,Michael Haas,kyliechandler@example.net,001-745-896-5549x8372,4410434783210,2025-02-23 +Resort Hotel,0,163,2017,August,34,23,2,5,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,182.21,1,3,Check-Out,Renee Newton,piercemark@example.org,7923727637,3518788970817481,2024-05-27 +City Hotel,0,60,2017,April,17,23,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,95.83,0,2,Check-Out,Thomas Daugherty,dgarner@example.org,(549)754-0803x2524,4197959699481901,2024-07-16 +Resort Hotel,0,53,2017,December,52,24,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,238.0,179.0,0,Transient,244.05,0,3,Check-Out,Scott Roy,donnamassey@example.net,(216)509-7852,4844546840211589,2024-11-27 +Resort Hotel,0,14,2017,December,52,25,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,77.79,0,0,Check-Out,Mr. Robert Cantu,bmaldonado@example.com,974.413.4229,6568898914345861,2024-06-02 +Resort Hotel,0,152,2017,August,33,15,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,222.9,1,3,Check-Out,Heather Matthews,pateljacqueline@example.net,475-532-0320x9135,4621765325194851379,2024-05-14 +City Hotel,0,43,2017,March,13,31,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.94,0,0,Check-Out,Darlene Kelly,stephanie51@example.com,591-749-1994x2936,4415671986384,2024-07-17 +City Hotel,0,2,2017,May,19,9,1,0,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,97.01,0,0,Check-Out,Nancy Merritt,spencer28@example.org,(282)959-3906x206,4908922120488637878,2024-10-16 +City Hotel,0,2,2017,October,40,3,1,0,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,175.0,0,Transient,95.7,0,0,Check-Out,Brian Thompson,vrollins@example.com,769-455-8668x22216,4123323774325082788,2024-04-16 +City Hotel,1,36,2017,November,45,9,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,Non Refund,12.0,179.0,0,Transient,134.74,0,0,Canceled,Theresa Goodman,iwilliams@example.com,(595)793-8933x0478,344584023677758,2025-05-29 +City Hotel,0,12,2017,August,32,5,0,2,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,108.65,0,2,Check-Out,Justin White,amiller@example.net,(305)230-9576x456,5519684458463027,2024-12-21 +City Hotel,1,22,2017,December,51,16,0,1,1,0.0,0,HB,PRT,Complementary,Direct,0,0,0,D,E,1,No Deposit,12.0,179.0,75,Transient-Party,92.13,0,1,No-Show,Scott Hernandez,vellis@example.org,001-793-758-9543,3544618068000005,2025-06-22 +City Hotel,0,0,2017,October,40,6,2,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Group,88.65,0,2,Check-Out,Christopher Shelton,uprice@example.net,256-973-1144x34602,3522620959020171,2024-07-20 +City Hotel,1,313,2017,May,21,25,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,41,Transient,79.76,0,0,Canceled,Debbie Koch,daviddunn@example.org,453.773.5331x4525,6011844724074765,2024-12-16 +Resort Hotel,1,43,2017,April,17,26,4,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,Non Refund,162.0,179.0,0,Transient,88.09,0,0,Canceled,Tyler Stout,kristine95@example.com,277.254.4541x3119,3581400879078627,2024-11-07 +City Hotel,0,9,2017,May,21,24,1,0,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,82.7,0,0,Check-Out,April Ryan,nguyenmichele@example.net,681.903.5239,3519482322505908,2025-12-12 +City Hotel,0,17,2017,July,29,22,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,76.27,1,0,Check-Out,William Phillips,meganfoster@example.com,001-509-297-1251x512,4946088063240513,2025-12-18 +City Hotel,1,43,2017,June,23,9,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,91.59,0,1,Canceled,Taylor Smith,edwardspenny@example.org,(741)414-1827x10641,3537457580100236,2026-03-26 +City Hotel,0,28,2017,December,48,2,2,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,114.98,0,0,Check-Out,Kelly Romero,johnlowe@example.net,(650)393-2343x5878,5413797717063938,2025-12-03 +City Hotel,1,0,2017,December,49,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient-Party,83.35,0,0,No-Show,Erin Nelson,bellnicholas@example.com,+1-252-816-6406x5978,4066877191299795,2025-06-15 +City Hotel,0,15,2017,May,20,15,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.77,0,2,Check-Out,Christopher Dalton,brittanyprice@example.net,+1-891-333-6543,4009445487983,2024-05-03 +City Hotel,0,50,2017,June,22,1,1,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,75.13,0,0,Check-Out,Jamie Romero,jessica90@example.com,(939)305-9804x20192,378940961760833,2024-09-25 +Resort Hotel,0,2,2017,February,5,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,1,No Deposit,240.0,179.0,0,Transient,43.83,0,1,Check-Out,Logan Golden,nicholasreed@example.net,(278)280-7729x03255,4852788307603622546,2025-12-31 +Resort Hotel,0,1,2017,April,17,25,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,253.0,179.0,0,Transient,49.29,1,0,Check-Out,Michael Crawford,hwood@example.org,735.898.5193x18825,3514428320449602,2024-10-14 +Resort Hotel,0,13,2017,October,41,9,1,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,235.0,179.0,0,Transient,113.28,0,1,Check-Out,Stephanie Sanders,rodriguezdeanna@example.com,727.833.3020,180045666979767,2026-02-26 +City Hotel,1,110,2017,October,42,16,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,62,Contract,62.54,0,0,Canceled,Christine Meza,floydthomas@example.org,+1-752-799-2135x0798,180092389685859,2024-09-21 +City Hotel,0,0,2017,May,20,14,0,1,1,0.0,0,BB,PRT,Corporate,GDS,0,0,0,A,A,0,No Deposit,197.0,244.0,0,Transient,54.67,0,0,Check-Out,Emily Hall,maystara@example.com,310-539-0749x3456,4386146420116665260,2024-06-03 +Resort Hotel,0,39,2017,August,35,27,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Thomas Wells,john99@example.com,(321)210-5467x90362,4142606680609463,2024-07-14 +City Hotel,0,16,2017,November,45,6,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,94.68,1,0,Check-Out,Caitlin Howard,fostermichael@example.com,750-569-6519x850,371174773708908,2025-08-20 +Resort Hotel,0,33,2017,May,20,12,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,75.37,0,1,Check-Out,Jason Blackwell,xholt@example.org,8142106518,675977238343,2024-08-20 +City Hotel,0,252,2017,July,30,23,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,121.81,0,2,Check-Out,Bradley Pacheco,emccormick@example.org,684-255-6642,180041579582434,2025-01-12 +Resort Hotel,1,51,2017,December,49,4,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,62.22,0,1,Canceled,Matthew Armstrong,ksandoval@example.com,(465)676-4619,3528446854225010,2025-03-17 +Resort Hotel,0,29,2017,October,41,10,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Contract,84.68,0,0,Check-Out,Brittany Mitchell,irodriguez@example.net,001-377-350-9475x3358,4668906963301,2026-03-25 +Resort Hotel,0,57,2017,March,13,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient,46.24,1,1,Check-Out,Thomas Friedman,tinapalmer@example.com,(337)701-7207,585324926542,2024-12-12 +City Hotel,1,402,2017,August,34,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,20,Transient-Party,61.6,0,0,Canceled,Colleen Hernandez,victoria89@example.org,(258)488-3934x2377,4820589505206278,2024-10-26 +City Hotel,0,47,2017,March,10,10,1,4,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.8,0,1,Check-Out,Peter Haynes,woodtaylor@example.org,744-509-3745,4515394714102,2024-05-18 +Resort Hotel,0,145,2017,March,14,31,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,221.0,0,Transient-Party,60.55,0,0,Check-Out,Jeffrey Ford,deborahevans@example.org,901.551.5773x58139,180027489246095,2025-12-26 +City Hotel,1,56,2017,August,35,26,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,0,Canceled,Brittany Ortiz,murphyjoshua@example.net,+1-628-800-8573,180098229403197,2025-02-01 +City Hotel,0,203,2017,May,19,4,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,161.28,0,2,Check-Out,Miranda Beck,ashleeruiz@example.org,(703)600-1107x3812,2714037250676306,2025-09-30 +Resort Hotel,0,78,2017,July,27,8,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,26.0,179.0,0,Contract,130.12,0,2,Check-Out,Amanda Bennett,johnsonphillip@example.com,(411)254-9298x695,4385432029727544,2024-06-20 +City Hotel,1,85,2017,March,12,23,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,98.17,0,1,Canceled,David Robertson,kpayne@example.com,831.234.6268,2267079067394856,2024-05-16 +Resort Hotel,1,252,2017,June,26,28,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,45.33,0,0,Canceled,Kristen Davis,ramirezkatherine@example.com,931-577-4172x523,180075732171800,2024-07-02 +Resort Hotel,0,180,2017,March,11,14,2,3,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,73.66,0,0,Check-Out,Brian Pena,sophia99@example.com,394-406-5412,2667321755427465,2025-12-02 +City Hotel,0,3,2017,September,36,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,6.6,0,0,Check-Out,Amanda Nelson,dylanhoward@example.net,7027081974,6547434684709775,2025-01-16 +City Hotel,0,16,2017,October,43,27,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,105.38,0,0,Check-Out,Sarah Bush,obarnes@example.net,001-216-861-0575x70923,3565351704472990,2026-02-03 +Resort Hotel,1,108,2017,March,12,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,107.23,0,0,Canceled,Robert Miller,ashleybrady@example.org,(266)381-1170,4584906114474,2025-11-28 +City Hotel,0,270,2017,April,16,21,2,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,83.75,0,0,Check-Out,Anna Poole,mccoytara@example.org,887-424-8874x45620,3551044200005499,2024-08-11 +Resort Hotel,0,48,2017,August,34,22,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,252.0,1,0,Canceled,Jacqueline Phillips,pamelapace@example.com,(494)330-4619x50447,4675764398933751,2024-08-14 +Resort Hotel,0,15,2017,March,13,23,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,49.9,0,0,Check-Out,Sophia Dawson,julianmorris@example.com,363.945.1400x1906,3527151971306559,2025-04-20 +City Hotel,0,37,2017,October,42,16,1,3,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.82,0,0,Canceled,Sheila Stephens,trivera@example.net,372-614-5420,4934056872598466,2024-04-01 +Resort Hotel,1,128,2017,July,29,20,0,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,112.11,0,0,Canceled,Wendy Evans,fowlerjennifer@example.net,457.756.1264x3103,180026459389380,2025-01-25 +City Hotel,1,373,2017,January,4,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.2,0,0,Canceled,Phillip Rodriguez,lscott@example.org,001-441-445-3865x9162,562133895085,2024-12-28 +City Hotel,0,22,2017,October,41,13,0,1,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient-Party,76.67,0,0,Check-Out,Justin Brown,yreed@example.net,+1-884-612-8013x8062,6580290524327907,2024-08-23 +City Hotel,1,410,2017,August,32,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,123.74,0,0,Canceled,Eric Anderson,travisbrown@example.net,(438)361-0789,5485781359437702,2026-01-24 +Resort Hotel,0,194,2017,March,12,18,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,I,1,Refundable,14.0,222.0,0,Transient-Party,72.63,0,0,Check-Out,April Norton,micheal16@example.com,001-431-410-4253x69732,3518649783462354,2026-02-12 +City Hotel,1,155,2017,July,27,1,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,104.77,0,0,Canceled,Timothy Sexton,brian34@example.com,+1-329-260-1584x96851,676370553122,2025-06-12 +City Hotel,1,156,2017,June,24,12,0,2,1,0.0,0,BB,,Aviation,Corporate,1,0,0,D,D,0,No Deposit,13.0,175.0,0,Transient,133.04,0,0,No-Show,Mr. John Decker MD,richard11@example.com,(523)404-1797,4523905714042827,2024-12-05 +Resort Hotel,1,393,2017,May,21,26,2,5,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,C,2,No Deposit,311.0,179.0,75,Transient-Party,89.05,0,0,Canceled,Tina Little,jdavis@example.org,001-331-495-4598,2720566525355199,2025-05-20 +City Hotel,0,36,2017,October,42,20,0,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.83,0,0,Check-Out,Seth Curry,whitejuan@example.org,+1-984-672-5020x74997,6582525610002288,2025-01-01 +Resort Hotel,0,94,2017,June,27,30,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,C,0,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,Barbara Graham,lewismiranda@example.org,828.351.3451x9411,639022754605,2024-09-02 +Resort Hotel,0,90,2017,May,19,4,0,4,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,C,1,No Deposit,285.0,179.0,0,Transient-Party,129.58,0,1,Check-Out,Edward White,jenniferthomas@example.net,+1-501-628-5966x80050,4763491191840214,2024-06-07 +City Hotel,1,10,2017,July,31,30,1,4,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,8.0,179.0,0,Transient,252.0,0,1,No-Show,Michelle Graham,timothy22@example.com,8429798338,3537461036501609,2025-08-18 +City Hotel,0,158,2017,September,39,23,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.47,0,3,Check-Out,Benjamin White,lawrencephillips@example.org,271.295.1409x58756,4425037997649710356,2026-02-05 +City Hotel,0,278,2017,October,41,13,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,76.2,0,1,Check-Out,Austin Mitchell,stewartkristen@example.org,001-211-422-9174x481,3560741257076492,2026-03-15 +City Hotel,0,56,2017,October,43,24,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.34,0,0,Check-Out,Kim Flynn,ashleyjohnson@example.org,001-631-460-8065,180062912754886,2026-02-17 +City Hotel,1,18,2017,May,20,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,83.72,0,0,Canceled,Nicholas Pace,burnspatrick@example.com,561-361-6788x9112,4039397655899,2025-04-25 +City Hotel,1,15,2017,February,6,6,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.77,0,1,Canceled,Laura Atkins,wyattmichael@example.org,001-899-341-9903x0534,4637745136403,2024-11-20 +City Hotel,1,378,2017,May,19,9,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,85.4,0,0,Canceled,Ann Huffman,joseph12@example.com,896.328.4917,4189422486289,2025-12-05 +Resort Hotel,1,32,2017,August,32,9,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,240.89,0,1,Canceled,Roger Sullivan,dhamilton@example.net,386-542-0581x679,38362049457906,2025-03-26 +City Hotel,0,89,2017,May,22,26,1,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,134.78,0,0,Check-Out,Vanessa Ramirez,rodriguezrebecca@example.org,4325023725,3596413928568764,2025-04-30 +Resort Hotel,0,7,2017,May,22,27,4,10,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,E,2,No Deposit,14.0,179.0,0,Transient,129.47,0,0,Check-Out,Anne Martin,adamssteven@example.org,4017565095,4284436128637043,2025-07-02 +Resort Hotel,0,18,2017,July,30,26,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,251.0,179.0,0,Transient,169.95,0,2,Check-Out,Ashley Dunn,parkerwilliam@example.net,274.322.0191,3563072538491442,2024-04-09 +City Hotel,1,321,2017,August,33,16,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.78,0,0,Canceled,Shaun Henderson,jenniferhiggins@example.com,596-952-6600x23506,378383913899518,2025-08-02 +City Hotel,0,98,2017,August,35,30,2,0,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,93.8,0,1,Canceled,Michael Jackson,iharris@example.com,301.315.7456x538,676213223081,2025-11-29 +City Hotel,1,318,2017,July,30,20,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,109.33,0,0,Canceled,Aaron Mayer,christopherdelacruz@example.org,321-470-6214x758,2316798170373512,2025-05-18 +City Hotel,0,30,2017,June,23,3,2,4,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.36,0,1,Check-Out,Kimberly Lee,snyderolivia@example.net,+1-228-899-5951,4981720150676045,2024-12-08 +City Hotel,0,144,2017,May,19,8,1,3,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,234.43,0,3,Check-Out,Shane Smith,brianmendoza@example.com,001-540-999-7596x6457,6011029661576945,2025-02-06 +Resort Hotel,1,163,2017,July,27,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,Non Refund,240.0,179.0,0,Transient,116.06,0,0,Canceled,Erin White,umendoza@example.org,8319023496,676259500103,2025-09-20 +City Hotel,0,0,2017,August,34,22,0,1,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,0.5099000000000001,0,2,Check-Out,Joseph Young,obrooks@example.org,495.306.6614x1653,4933196385110580,2026-03-02 +City Hotel,0,0,2017,October,41,9,0,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,C,0,No Deposit,15.0,222.0,0,Transient,87.58,0,0,Check-Out,Taylor Tran,robert73@example.org,001-870-448-5960x48761,4989204535778795483,2024-07-28 +City Hotel,1,146,2017,December,51,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,74.01,0,0,Check-Out,Jason Patrick,peter12@example.net,(439)291-9703,2639119313255955,2025-05-23 +City Hotel,0,9,2017,March,11,11,2,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.37,0,0,Check-Out,Richard Saunders,matthew96@example.net,283.229.3927x6333,30377176319602,2024-05-06 +Resort Hotel,0,16,2017,March,10,5,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,45.84,0,2,Check-Out,Jerry Ferguson,jeremyaustin@example.com,525.940.8462,6011148174711979,2024-06-22 +City Hotel,1,284,2017,October,43,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,77.93,0,0,Canceled,Rodney Avila,susanwillis@example.net,(773)286-6355x0565,2244771655994620,2024-05-15 +City Hotel,0,153,2017,May,22,30,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,26.0,179.0,0,Transient,109.28,0,0,Check-Out,Shannon Thompson,twilliams@example.org,(718)364-3902,30231306076253,2025-02-25 +City Hotel,0,96,2017,March,13,25,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,41,Transient,129.22,0,1,Check-Out,Stacy Macias,ihanson@example.com,635-816-2880x2688,4036192872285346,2024-08-31 +Resort Hotel,1,195,2017,July,27,5,2,5,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,55.36,0,2,Canceled,Stephanie Nunez,jamiearroyo@example.org,(532)302-6697,3591941052375759,2026-01-07 +Resort Hotel,0,1,2017,August,35,27,1,0,2,0.0,0,HB,PRT,Direct,Direct,0,0,1,A,I,1,No Deposit,246.0,179.0,0,Transient-Party,2.37,1,0,Check-Out,Christina Olsen,kleincatherine@example.net,001-657-816-7098x478,572000463016,2024-10-07 +Resort Hotel,0,9,2017,December,50,12,1,6,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,200.62,1,1,Check-Out,Paul Wagner,brian83@example.net,5595169228,4030590529528,2026-01-10 +Resort Hotel,0,0,2017,March,13,27,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,98.56,1,2,Check-Out,Sophia Richmond,wbond@example.com,227.777.7554x86218,4393281312479051,2025-04-25 +City Hotel,1,66,2017,October,43,27,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,65,Transient-Party,137.72,0,2,Canceled,Nicole Tate,fullermegan@example.com,371.414.6568x98398,6011632301235002,2025-03-23 +Resort Hotel,0,1,2017,May,19,10,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,158.57,0,1,Check-Out,Jesse Wright,pmccarthy@example.com,001-477-850-7548x950,6591436914589955,2025-01-02 +City Hotel,0,52,2017,August,33,17,0,1,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,Traci Rodriguez,donbradley@example.com,265-314-6789,4248037900972593,2025-03-03 +Resort Hotel,0,97,2017,May,21,24,2,5,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,212.46,0,1,Check-Out,Cheryl Beck,jennifersalazar@example.net,001-764-969-6997x80187,345410632947615,2024-06-02 +Resort Hotel,0,18,2017,December,52,23,2,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,E,2,No Deposit,241.0,179.0,0,Transient,61.41,0,1,Check-Out,Christina Perez,bhoffman@example.org,+1-236-680-2086x9988,30061992209334,2024-11-23 +City Hotel,1,159,2017,January,5,31,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,Non Refund,12.0,179.0,0,Transient,142.25,0,0,Canceled,Annette Fernandez,williamsfrank@example.com,853-577-2640x61636,4307027005102,2024-05-05 +City Hotel,0,2,2017,October,44,30,1,3,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,14.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,Tricia Bailey,lcraig@example.net,390-644-6766,5537576692463524,2026-03-02 +City Hotel,0,1,2017,January,3,16,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,46.31,0,2,Check-Out,Omar Chandler,christinerodgers@example.net,411.302.3654x1344,4467931192196,2025-03-16 +Resort Hotel,0,0,2017,May,20,14,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,127.18,1,2,Check-Out,John Erickson,kcurry@example.net,418.290.1208,4366111945836685860,2024-08-18 +City Hotel,1,96,2017,February,9,28,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,39.0,179.0,0,Transient-Party,61.85,0,0,No-Show,Teresa Smith,sschroeder@example.com,250.874.3033,580974725922,2025-05-14 +Resort Hotel,0,41,2017,January,2,4,1,2,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,111.25,0,0,Check-Out,Karen Cruz,ogarrison@example.org,581-915-4511,3551592527163078,2025-02-06 +City Hotel,0,255,2017,September,38,20,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,85.74,0,0,Check-Out,Jenny Soto,tonyaford@example.com,974-828-6644,4265922421214013,2024-08-24 +City Hotel,1,23,2017,June,25,17,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,170.51,0,2,Canceled,Kevin Smith,oneillmiguel@example.org,5353689705,6011124442766103,2025-01-03 +City Hotel,1,0,2017,October,41,7,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,72.66,0,1,No-Show,Kimberly Garcia,karenfrost@example.com,001-943-701-6984x07640,4876451149464749116,2026-01-22 +City Hotel,1,204,2017,August,33,12,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,239.64,0,1,Canceled,Deborah Townsend,clarklauren@example.net,940-384-0050,4803840805961265,2024-04-07 +Resort Hotel,0,1,2017,May,18,2,1,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient,49.99,1,3,Check-Out,Julie Wallace,marcus44@example.com,(414)858-2622,2272140810321142,2024-11-26 +Resort Hotel,0,2,2017,December,2,31,0,3,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,52.15,1,2,Check-Out,Joe Gordon,amandageorge@example.org,480-427-8466x938,347586132488792,2024-04-26 +Resort Hotel,1,84,2017,December,49,3,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,63.32,0,0,Canceled,Wayne Barnes,vanessafigueroa@example.net,+1-686-736-3891x97420,4236709176742483728,2025-05-23 +City Hotel,0,18,2017,August,35,28,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,1,No Deposit,12.0,197.0,0,Transient,220.86,0,0,Check-Out,Maria Weaver,thomaschristopher@example.net,001-462-510-5973,4019563774740,2024-08-14 +City Hotel,0,82,2017,February,6,4,0,1,1,0.0,0,HB,PRT,Groups,Corporate,0,1,0,A,C,1,No Deposit,12.0,222.0,0,Transient-Party,67.16,0,0,Check-Out,Matthew Thompson,ann85@example.org,(209)289-2988x100,4786484362668129,2026-01-19 +City Hotel,0,21,2017,July,31,30,0,3,2,0.0,0,BB,,Online TA,Undefined,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,101.05,0,1,Check-Out,Wanda Short,carolynmora@example.org,+1-720-589-9312x001,2547725251575930,2025-07-18 +City Hotel,0,37,2017,April,15,8,0,1,2,0.0,0,HB,PRT,Complementary,Direct,0,0,1,A,C,1,No Deposit,93.0,179.0,0,Transient,113.99,0,0,Check-Out,James Richardson,samuel86@example.net,442.725.4922,4497500512342,2025-06-17 +Resort Hotel,0,414,2017,September,39,24,2,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,87.91,0,0,Check-Out,Jennifer Cruz,margaret95@example.net,(682)807-7558x73422,676356614427,2026-01-31 +City Hotel,1,49,2017,June,25,16,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.8,0,0,Canceled,Sergio Andrews,luislong@example.org,617.771.7572x92015,213109370105530,2024-09-17 +Resort Hotel,1,414,2017,May,18,5,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,177.0,179.0,0,Transient,102.62,0,0,Canceled,Franklin Harris,phelpsadam@example.org,321.918.1430x463,4989910362803279,2024-12-08 +City Hotel,0,0,2017,May,19,8,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,110.24,0,1,Check-Out,Leslie Vance,youngamy@example.org,883.466.7467x59863,4277512064460,2024-12-29 +City Hotel,0,18,2017,March,10,2,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.09,0,2,Check-Out,Gabriel Guzman,townsendshaun@example.org,547-372-0717,6011952507079537,2024-07-29 +Resort Hotel,1,18,2017,April,17,23,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,1,0,Canceled,Lori Smith,ryancurry@example.org,001-898-965-8830x7741,5339516062280728,2025-03-07 +Resort Hotel,1,123,2017,August,32,9,4,10,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,212.34,0,0,No-Show,Edward Taylor,browncharles@example.net,(381)779-9722x523,374283857804298,2025-04-09 +Resort Hotel,0,7,2017,May,19,9,1,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,C,G,0,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Alison Adams,griffincourtney@example.net,820.719.4638,3577064124974646,2024-04-03 +City Hotel,0,48,2017,April,14,2,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,138.73,0,1,Check-Out,Phillip Jenkins,lindsey47@example.com,+1-579-295-4431,376816297111499,2024-11-30 +City Hotel,0,119,2017,July,31,30,0,1,2,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,45.0,0,Transient-Party,111.62,0,0,Check-Out,Yolanda Brown,kclements@example.org,001-635-414-2716x8598,4677928330355203,2025-11-19 +City Hotel,1,163,2017,July,27,8,2,5,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.05,0,2,No-Show,Malik Washington,nmurillo@example.com,5979242916,4601508395240168,2025-03-26 +Resort Hotel,0,1,2017,October,43,24,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,120.73,0,0,Check-Out,Kristen Larson,austin63@example.net,001-456-969-2071,3525434212176565,2024-08-20 +Resort Hotel,0,15,2017,March,13,24,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,153.0,179.0,0,Transient-Party,62.41,0,0,Check-Out,Michael Scott,fwalker@example.net,574-914-9809x638,4977070378232,2025-09-15 +Resort Hotel,0,0,2017,March,12,19,0,2,2,0.0,0,HB,PRT,Direct,Direct,1,0,1,E,I,1,No Deposit,14.0,179.0,75,Transient-Party,0.5099000000000001,1,0,Check-Out,Luke Duncan,qdillon@example.com,385-820-4379x1960,3539362663121943,2026-01-06 +Resort Hotel,0,23,2017,December,49,6,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,121.66,0,0,Check-Out,Bernard Hicks,leon47@example.org,+1-258-459-6024x22034,4451481925926360,2024-05-07 +Resort Hotel,0,3,2017,August,33,10,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,241.0,179.0,0,Transient,223.27,0,0,Check-Out,Rebecca Boone,ohurst@example.com,7353337471,630480967771,2024-11-22 +Resort Hotel,1,145,2017,August,32,8,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,46.96,0,2,Canceled,Joel Roberts,diazadam@example.org,2562129952,213148732448246,2024-10-01 +Resort Hotel,0,1,2017,February,9,27,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,145.0,179.0,0,Transient,82.99,0,1,Check-Out,Tony Cooper,brittanymills@example.net,902-286-1208x035,4514546832417,2024-05-06 +City Hotel,0,35,2017,February,8,20,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,97.95,0,1,Check-Out,Kevin Stokes,gknight@example.org,(894)956-6684x073,588708203652,2024-08-07 +Resort Hotel,0,147,2017,April,14,2,4,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,240.9,0,1,Check-Out,James Frank,jjoseph@example.org,+1-680-889-0893x85732,38539897267194,2024-06-12 +City Hotel,0,164,2017,September,36,5,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,39,Transient-Party,98.88,0,0,Check-Out,Deborah Stewart,summer87@example.org,852.236.6952,639066088431,2024-10-02 +Resort Hotel,0,1,2017,May,19,6,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,1,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,2,Check-Out,Carol Bowman,hillemily@example.net,223-298-3855,4300159024564384203,2024-03-27 +Resort Hotel,0,33,2017,May,19,8,2,10,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,132.62,0,0,Check-Out,Sheri Murphy,judithrodriguez@example.org,+1-679-229-0828x58998,4742648279668539779,2024-10-09 +City Hotel,1,22,2017,August,34,23,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,129.73,0,0,Canceled,Russell Downs,tiffanyjackson@example.net,(386)348-6360x8181,4857784086676504,2025-03-05 +Resort Hotel,1,59,2017,August,32,8,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,100.94,0,1,Canceled,Charles Ellis,james22@example.org,262.571.2973x37658,3545187911674647,2025-11-16 +City Hotel,0,12,2017,May,19,8,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Group,85.45,0,0,Check-Out,Dylan Guzman,lopeztyler@example.net,4924201615,4303924832714,2025-07-01 +City Hotel,1,65,2017,December,51,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,237.0,179.0,75,Transient-Party,87.37,0,0,Canceled,Ryan White,catherine39@example.org,534.432.4293x2786,676303438490,2025-06-21 +Resort Hotel,0,47,2017,August,35,31,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,64.16,1,1,Check-Out,Dawn Meyer,vaughanjoan@example.org,484.819.8188,3515763712038103,2025-08-29 +City Hotel,0,8,2017,June,24,13,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,123.19,0,1,Check-Out,April Wiley,andersonjoseph@example.org,343-330-9547x255,4091148230290,2025-11-06 +Resort Hotel,0,1,2017,July,29,14,1,0,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,I,1,No Deposit,11.0,179.0,0,Transient,2.46,1,3,Check-Out,Cheryl Wade,cervantestyler@example.org,602.207.3773x240,213156051815168,2024-05-27 +Resort Hotel,0,32,2017,July,29,14,3,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,138.28,0,1,Check-Out,John Estrada,vanessa46@example.net,754.792.5790x807,30066929528870,2024-12-11 +Resort Hotel,0,0,2017,January,2,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,242.0,179.0,0,Group,53.58,0,1,Check-Out,Cynthia Larson,stucker@example.net,992.729.2796,180005501531124,2024-04-03 +City Hotel,0,78,2017,March,13,27,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,26.0,179.0,0,Transient,40.36,0,0,Check-Out,Roy Paul,frank68@example.net,001-526-380-5535x411,3501866091739930,2025-10-02 +City Hotel,1,5,2017,January,2,9,0,1,1,1.0,0,BB,,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,78.36,0,2,Canceled,Gregory Joyce,patelmary@example.com,001-530-426-0263x0876,2357360701515465,2026-01-17 +City Hotel,1,58,2017,March,10,4,2,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.24,0,1,Check-Out,Chase Choi,pachecolouis@example.org,610.806.5917x3886,676231788818,2025-01-21 +City Hotel,0,50,2017,June,26,28,2,1,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,133.83,0,3,Check-Out,Suzanne Williams,amyaguilar@example.net,542-977-6857,180036617520305,2024-09-15 +City Hotel,0,38,2017,October,42,12,2,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,95.48,0,1,Check-Out,Michael Cortez,gfranklin@example.net,254.554.2203x7019,346932329805334,2024-06-02 +City Hotel,1,153,2017,March,11,15,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,121.14,0,0,Canceled,Jennifer Vargas,lyonsbecky@example.net,936-884-2125x26580,3531830495664882,2026-03-18 +City Hotel,0,40,2017,October,41,12,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,97.19,0,1,Check-Out,Linda Newman,larsondebra@example.org,352.595.9164,3530627877475841,2024-03-27 +Resort Hotel,1,58,2017,February,9,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,1,No Deposit,10.0,179.0,0,Contract,50.78,0,1,No-Show,Walter Howard,avang@example.net,+1-838-415-2542x907,4201449717982,2025-08-28 +City Hotel,0,393,2017,July,27,4,0,2,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,106.91,0,0,Check-Out,Justin Saunders,wilsonsarah@example.net,(382)760-3308,6520896620297993,2026-01-05 +Resort Hotel,0,15,2017,May,20,13,4,10,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,165.56,0,1,Check-Out,Jeffrey Weaver,huynhjennifer@example.com,(491)857-2681x596,2223312571993779,2025-11-24 +City Hotel,0,2,2017,May,22,25,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,228.0,0,Transient,82.79,0,2,No-Show,Wanda Reynolds,chankenneth@example.com,559-981-6478,348232274657774,2025-04-21 +Resort Hotel,0,155,2017,June,23,3,4,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,238.29,0,2,Check-Out,Kathryn Castillo,stephaniecontreras@example.com,001-623-949-7454x033,3568156959573997,2025-06-06 +City Hotel,1,14,2017,October,41,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,53.14,0,0,Canceled,Alicia Wilson,gburton@example.org,620.868.1646x166,4399026193849,2024-08-14 +City Hotel,0,107,2017,December,49,4,0,2,2,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient-Party,81.11,1,0,Check-Out,Jason Day,wilkinssarah@example.net,001-718-723-6645x757,6562226462281914,2025-04-18 +City Hotel,1,112,2017,March,9,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,106.44,0,0,No-Show,Brian Christensen,angelaknight@example.com,001-535-203-3276x63342,3551954960574825,2024-05-20 +Resort Hotel,1,6,2017,April,17,27,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,39.49,0,1,Check-Out,Stephen Martinez,michael56@example.net,001-633-995-7767x475,379340703304918,2024-09-21 +Resort Hotel,0,11,2017,July,27,5,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,129.54,1,2,Check-Out,Thomas Turner,danielle20@example.org,991.923.2979,4565432626073,2025-05-05 +Resort Hotel,0,169,2017,August,33,16,4,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,230.4,0,3,Check-Out,Bonnie Larson,joseph42@example.net,(821)693-6848,3593282465351444,2024-08-07 +Resort Hotel,1,103,2017,August,34,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,167.0,179.0,0,Transient,226.5,0,0,Canceled,John Ortega,beverly52@example.net,(805)585-4489x947,36705732054079,2024-07-09 +Resort Hotel,0,33,2017,March,13,23,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,27.0,179.0,0,Transient-Party,66.17,0,0,Check-Out,Kristin Hickman,frederick92@example.com,001-761-359-8242x98440,373086864373350,2024-08-26 +Resort Hotel,1,148,2017,March,13,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,42.35,0,0,Canceled,Jacqueline Turner,heatherfloyd@example.net,(419)922-5078,6555201371746678,2024-09-16 +Resort Hotel,0,41,2017,July,30,27,4,6,2,1.0,0,BB,ISR,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,211.5,0,2,Check-Out,Charles Strickland,robertselizabeth@example.com,7752440725,676140390920,2026-02-18 +City Hotel,0,1,2017,April,18,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,2,No Deposit,15.0,229.0,0,Transient,84.3,0,0,Check-Out,Thomas Carr,jesse99@example.org,(718)942-6927x692,3546680106489325,2024-09-21 +City Hotel,1,198,2017,August,34,20,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,92.82,0,2,Canceled,John Stewart,jennifercherry@example.net,+1-538-226-9864x005,36381006174827,2025-07-30 +City Hotel,1,407,2017,June,26,27,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,135.05,0,0,Canceled,Christopher Mcmillan,castillodennis@example.com,(974)602-1223,4378650804080222,2025-01-07 +Resort Hotel,0,94,2017,February,9,24,2,5,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,41.68,0,0,Check-Out,Lee Rivera,daniel46@example.org,(814)343-8469x955,30162831517828,2024-12-20 +City Hotel,1,98,2017,April,14,3,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,60.65,0,0,No-Show,Mark Keller,isaacmarshall@example.net,(365)718-3497x67759,213114600690715,2026-01-16 +Resort Hotel,0,1,2017,July,29,17,4,10,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,141.52,0,1,Check-Out,Allen Porter,manuel93@example.org,001-806-204-6363x94400,3557655887031518,2026-03-07 +Resort Hotel,1,143,2017,June,23,8,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,225.95,0,2,Canceled,Mr. Joshua Cohen,alan99@example.net,(978)781-0553,4575004523134685506,2025-03-10 +City Hotel,0,0,2017,January,2,4,0,1,1,0.0,0,BB,,Corporate,Direct,0,0,0,P,K,0,No Deposit,14.0,69.0,0,Transient,0.5099000000000001,0,0,Check-Out,Kyle Burke,tbrooks@example.com,621-848-7238x68791,3520400124452050,2024-05-23 +City Hotel,1,51,2017,October,42,14,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Refundable,2.0,179.0,0,Transient-Party,100.84,0,0,Canceled,Brent Holloway,staceyfreeman@example.org,4414469409,344024290599195,2024-10-08 +City Hotel,0,52,2017,July,28,8,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.59,0,0,Check-Out,Danny Smith,kristen25@example.net,+1-912-318-1557x062,2632473616274131,2026-02-13 +City Hotel,0,15,2017,May,20,12,2,10,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,108.04,0,0,Check-Out,Tracy Roberts,bbutler@example.org,873-573-6704x870,6546125756599737,2024-11-30 +City Hotel,0,43,2017,March,14,30,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,99.45,0,1,Check-Out,Colleen Martin,qberry@example.com,872-893-0001,180072459524642,2025-01-07 +City Hotel,1,0,2017,December,52,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,106.29,0,0,No-Show,Stephanie Brown,wilsonkristy@example.com,(289)481-4073x223,579021276301,2025-06-21 +Resort Hotel,0,6,2017,October,41,9,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,39.24,0,1,Check-Out,Jennifer Barrett,elizabeth37@example.org,(717)640-2714x28392,372079194910604,2026-03-17 +City Hotel,1,101,2017,March,12,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.98,0,0,No-Show,Tara Jones,carrillodeborah@example.org,289.227.4761x8642,6011846319332086,2025-07-20 +City Hotel,0,16,2017,October,43,22,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient-Party,64.1,0,0,Check-Out,Kaitlyn Leblanc,misty51@example.net,(215)534-0046x683,213135885741568,2024-12-20 +Resort Hotel,1,39,2017,December,49,5,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,39.0,179.0,75,Transient,80.52,0,0,Canceled,Madeline Ford,wolfkimberly@example.org,504.708.2515x2686,30089953408090,2025-10-11 +City Hotel,1,401,2017,July,28,11,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.73,0,0,Canceled,Raymond Herrera,vfreeman@example.com,828-805-9536x50956,3537357135070332,2024-04-28 +City Hotel,1,174,2017,April,14,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,74.8,0,0,Canceled,Danielle Reed,jmiller@example.org,964.526.7049,4658749009129569,2024-06-27 +City Hotel,1,15,2017,February,5,2,0,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.98,0,0,Canceled,Michael Spencer,mariah87@example.com,410-518-2462x6391,2375934328931251,2025-09-27 +City Hotel,0,2,2017,February,9,24,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,71.95,0,0,Check-Out,Kevin Torres,nmoore@example.org,(483)559-8655,180098368219875,2024-12-30 +City Hotel,0,3,2017,October,43,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,48.16,0,2,Check-Out,Hannah Marquez,millerchristina@example.com,001-991-878-5705x6310,060442061465,2025-06-02 +City Hotel,1,213,2017,August,33,15,1,2,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,118.34,0,2,Canceled,Jared Madden,katiehall@example.org,+1-764-282-4876x885,676356958824,2025-12-15 +City Hotel,0,94,2017,May,21,22,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.34,0,1,Check-Out,Jacob Miller,jacob86@example.org,7995050120,639022678549,2025-12-07 +Resort Hotel,0,9,2017,October,40,6,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,46.2,0,0,Check-Out,George Williams,walterbruce@example.net,451.919.9609x3692,6011153249699977,2025-06-20 +City Hotel,0,50,2017,June,27,29,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.83,0,0,Check-Out,Amber Parker,kimberlyjohns@example.org,(613)475-1587x922,4291156837922194,2025-04-11 +City Hotel,0,38,2017,August,33,13,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,146.55,0,1,Check-Out,Jerome Parker,jgoodman@example.net,(544)497-7996x65184,4845965356425681,2024-05-19 +City Hotel,1,111,2017,May,20,12,1,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,135.19,0,0,Canceled,Phillip Fowler,prose@example.org,(950)827-9203x7476,213186592406300,2024-06-12 +City Hotel,0,10,2017,February,6,10,2,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.01,0,1,Check-Out,Charles Gonzales,jerrycoleman@example.net,3188355075,6522191058919781,2025-06-21 +Resort Hotel,0,50,2017,March,10,4,2,6,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,54.2,0,3,Check-Out,Natalie Oconnor,amanda49@example.org,001-226-211-6648x4308,4719767442634455,2026-03-01 +Resort Hotel,1,173,2017,April,18,29,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,238.0,179.0,0,Transient,50.13,0,1,Canceled,Richard Murray,jjohnson@example.org,261-823-0462x269,575140603920,2025-10-06 +City Hotel,0,100,2017,December,52,24,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Group,108.93,0,1,Check-Out,Eric Shaffer,nicolebrown@example.org,+1-227-913-0491,4524641480176932,2024-06-12 +Resort Hotel,0,1,2017,February,9,26,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,26.0,179.0,0,Group,43.82,0,1,Check-Out,Christina Roberts,nancy60@example.org,721.529.2541,3546518535906081,2025-08-04 +City Hotel,0,30,2017,April,15,12,1,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,46.45,0,1,Check-Out,Christina Cook,harveymichael@example.com,001-640-709-6925x6390,3575309436634673,2025-03-26 +City Hotel,1,314,2017,July,27,2,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,127.62,0,0,Canceled,Joseph Walker Jr.,josephbrown@example.org,793.364.8737,4759539606217641779,2025-12-16 +Resort Hotel,0,172,2017,February,6,6,0,2,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,84.85,0,2,Check-Out,Bradley Cobb,hinesstacey@example.com,+1-987-655-3733,213158113891252,2026-03-08 +Resort Hotel,0,0,2017,September,37,14,0,1,3,0.0,0,BB,PRT,Complementary,Direct,0,1,0,L,F,0,No Deposit,9.0,179.0,0,Transient-Party,212.44,0,0,Check-Out,Cynthia Newman,alexmacias@example.org,001-669-500-0927x9265,581010643475,2025-07-17 +Resort Hotel,1,90,2017,June,24,8,1,7,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Canceled,Veronica Simmons,aguirremike@example.org,918-847-2689x814,4796055009707,2025-07-23 +City Hotel,1,23,2017,January,2,10,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,36.16,0,0,Canceled,John Nichols,fchang@example.com,(657)708-6449x7697,3590410908017909,2024-06-12 +Resort Hotel,1,40,2017,August,33,17,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,2,No Deposit,240.0,179.0,0,Transient,85.62,0,0,Canceled,Thomas Jones,stodd@example.org,695.909.1710x7956,2270132187563168,2025-08-25 +Resort Hotel,0,8,2017,October,43,24,3,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,239.0,179.0,0,Contract,65.49,0,2,Check-Out,Karen Alvarez,wallacejennifer@example.com,299.973.1525x04791,585062705181,2025-06-18 +City Hotel,0,2,2017,April,16,18,0,1,2,0.0,0,BB,ITA,Corporate,Direct,0,0,0,A,C,0,No Deposit,16.0,179.0,0,Transient,92.04,0,0,Check-Out,Ronald Graham,joel26@example.org,329-668-7974,6500670569617592,2025-05-26 +City Hotel,0,364,2017,October,42,20,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,118.93,0,0,Check-Out,Arthur White,campbelljose@example.net,627.842.0088,4704211717379,2025-01-15 +City Hotel,0,45,2017,September,38,23,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,154.18,0,2,Check-Out,Eric Murphy,cynthiascott@example.com,001-331-839-6360x5741,5555964734472470,2024-08-23 +City Hotel,0,45,2017,September,38,19,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,106.27,0,2,Check-Out,Tammy Daniel,audreyrogers@example.com,519-290-5844,676130325415,2024-12-01 +City Hotel,1,24,2017,August,34,24,1,4,1,0.0,0,BB,,Direct,Direct,0,0,0,H,A,2,No Deposit,14.0,179.0,0,Transient,190.07,0,1,No-Show,Dr. Jose Garcia,amydavis@example.org,(617)738-0281x917,30378910841646,2024-05-03 +City Hotel,0,29,2017,May,21,21,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,87.77,0,2,Check-Out,Ashley Coleman,anthony75@example.org,(257)269-6199x2014,36159910376500,2025-05-11 +City Hotel,1,146,2017,March,10,9,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,102.09,0,2,Canceled,Eduardo Booth,zjohnson@example.com,+1-937-557-9077x5546,2277347402279852,2025-11-26 +City Hotel,0,397,2017,April,15,11,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,91.98,0,2,Check-Out,Nicholas Ramos MD,hayley31@example.org,309.494.0384,503858594644,2025-11-01 +City Hotel,0,3,2017,August,32,9,0,1,1,0.0,0,BB,,Direct,Direct,1,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,141.2,0,0,Check-Out,Robert Chapman,daniellewise@example.net,626-631-5855x94642,2720348704302460,2024-04-08 +Resort Hotel,1,163,2017,August,35,29,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,42.36,0,1,No-Show,Eric Clark,cnielsen@example.com,647.472.2593x679,3528322613554240,2024-12-16 +Resort Hotel,1,101,2017,December,49,8,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,83.12,0,1,Canceled,Kevin Johnston,bryan19@example.com,+1-266-249-9875x45819,2296348893090342,2026-01-07 +City Hotel,1,238,2017,March,10,5,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,130.0,179.0,0,Transient,63.05,0,0,Canceled,Lori Jordan,stephanieromero@example.org,294-516-7557,6011448501666684,2025-09-09 +Resort Hotel,0,0,2017,January,2,1,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,14.0,233.0,0,Transient,46.98,0,1,Check-Out,Gloria Lynch,benjaminglover@example.org,402-225-2178,30189940967461,2024-12-01 +City Hotel,0,130,2017,July,27,4,2,3,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,111.76,0,2,Check-Out,Rachel Norris,walshpaul@example.org,+1-929-740-7783,36410342293700,2024-12-02 +City Hotel,0,9,2017,November,45,8,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,234.0,0,Transient,73.64,0,0,Check-Out,Joseph Spencer,brianstewart@example.com,6262779959,6011779918980585,2024-05-13 +Resort Hotel,0,0,2017,July,31,30,2,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,17.0,179.0,0,Transient,109.34,1,1,Check-Out,Kenneth Schmidt,edaniels@example.com,743.677.4523,3510040933024096,2024-09-29 +Resort Hotel,1,383,2017,April,17,25,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,294.0,179.0,0,Transient-Party,3.95,0,1,Canceled,Timothy Fletcher,kurtreed@example.net,888-295-0329x419,3591290014838664,2025-09-26 +City Hotel,1,13,2017,November,45,5,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,11.0,238.0,0,Transient,82.01,0,0,Canceled,Michael Fernandez,jessicacampbell@example.net,491-606-8718,4956348202042691198,2025-02-17 +Resort Hotel,0,50,2017,August,32,12,2,5,2,2.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,161.42,0,0,Check-Out,Joseph Conway,dustin67@example.net,001-608-632-5322,340232942488568,2025-04-25 +City Hotel,1,148,2017,July,28,10,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,100.52,0,1,Canceled,Edward Hill,christine88@example.org,600.419.6990x7921,30289605380206,2024-10-03 +City Hotel,1,414,2017,October,40,3,2,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.65,0,1,Canceled,Paula Evans,jennifer19@example.net,207.942.3509x282,2244371344888257,2025-06-30 +City Hotel,1,305,2017,August,35,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.84,0,0,Canceled,Stephanie Santiago,colesara@example.com,894.610.3891,4242575406987785,2025-02-27 +City Hotel,1,414,2017,July,30,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,111.06,0,0,Canceled,Lauren Kim,bsullivan@example.org,+1-300-511-6514x650,376460779975111,2024-04-14 +City Hotel,0,263,2017,September,36,8,2,7,2,0.0,0,HB,ESP,Direct,Corporate,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,85.2,0,0,Check-Out,Sherri Colon,candice77@example.org,+1-665-417-1240x847,4735897354683781466,2025-07-22 +City Hotel,1,184,2017,October,41,8,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,95.26,0,0,Canceled,Erin Mckinney,lucas44@example.org,001-284-224-5224,347108104690501,2024-09-30 +Resort Hotel,0,152,2017,July,28,13,4,7,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,53.86,0,2,Check-Out,Joseph Dougherty,jason66@example.org,580.864.9247,4660438380608179,2026-03-08 +Resort Hotel,0,0,2017,August,34,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,207.32,1,0,Check-Out,Sarah Williams,twilliams@example.net,(697)665-1862x6339,2232397978895312,2025-02-24 +City Hotel,0,10,2017,August,35,28,0,1,2,2.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,176.11,0,1,Check-Out,Jeremy Silva,adam18@example.com,(752)253-9189x902,2241861380038554,2024-11-24 +Resort Hotel,0,1,2017,March,12,22,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,91.0,0,Transient,49.75,0,3,Check-Out,Lisa Prince,camachosusan@example.net,690-918-1580,6581275094597251,2025-05-08 +City Hotel,1,318,2017,August,34,26,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,79.68,0,0,Canceled,Sara Wilkins,descobar@example.org,(367)584-2039,4067584577931699,2024-08-22 +City Hotel,0,51,2017,April,17,23,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,121.15,0,1,Check-Out,Joshua Fowler,vdaniels@example.net,+1-368-873-3641x75241,4726118606930639,2026-01-04 +Resort Hotel,0,1,2017,August,33,12,2,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,240.0,179.0,0,Transient,65.0,0,0,Check-Out,Jodi Miller,leslie18@example.net,659.258.4160x560,180020626612220,2024-08-07 +Resort Hotel,0,2,2017,October,43,26,0,2,1,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,36.0,179.0,0,Transient-Party,74.74,0,0,Check-Out,Garrett Carpenter,mcgeejimmy@example.net,(880)399-9725,6586075010780089,2025-07-20 +City Hotel,0,6,2017,August,31,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,245.29,0,1,Check-Out,Vincent Schaefer,jennifercummings@example.com,+1-651-486-6403x78648,2298416669091824,2024-11-22 +City Hotel,1,168,2017,March,11,13,0,1,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,96.76,0,0,Canceled,Rachel Norton,mario03@example.net,(724)366-9178,4067754679917009,2025-10-23 +Resort Hotel,0,171,2017,August,35,30,2,5,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,240.0,179.0,0,Transient,233.68,1,2,Check-Out,Jon Russo,penningtoncheryl@example.net,(522)406-4000x805,6546095414312940,2025-08-01 +City Hotel,1,184,2017,October,41,8,0,2,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,101.62,0,0,Canceled,Jeanne Mills,christinegray@example.com,494.890.6506x8062,4516946939876995850,2025-08-12 +City Hotel,1,137,2017,June,26,23,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,169.67,0,1,Canceled,Nicholas Little,wperez@example.com,(964)804-0438,4801022791178913,2024-07-26 +City Hotel,1,2,2017,November,44,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,46.34,0,2,No-Show,Jonathan Walton,qmoreno@example.net,(962)859-6727,30249379136986,2025-06-01 +City Hotel,1,2,2017,July,28,12,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,229.66,0,0,Canceled,Ashley Miller,cantubrenda@example.com,791.751.4732x957,349441344089269,2025-12-01 +City Hotel,0,134,2017,March,12,20,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,30.71,0,0,Check-Out,William Vasquez,geralddavis@example.org,7859164729,377770771584037,2025-02-13 +City Hotel,0,19,2017,November,44,4,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,104.03,0,1,Check-Out,Denise Hendricks,garciaeileen@example.org,463-618-0111x2560,2259475927704757,2025-08-09 +Resort Hotel,0,40,2017,September,36,4,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,199.74,0,3,Check-Out,Stacy Johnson,john40@example.com,(967)310-8910,2438496456602398,2025-11-14 +Resort Hotel,0,55,2017,July,28,8,2,5,3,1.0,0,HB,CHE,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,252.0,1,1,Check-Out,Mary Delacruz,joseph40@example.com,(674)548-5525x717,630459940262,2024-09-21 +Resort Hotel,0,154,2017,March,12,20,0,3,1,0.0,0,BB,,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,96.64,0,0,Check-Out,Laura Singleton,katherinekirk@example.net,001-337-546-1549x03213,676232007911,2024-06-24 +Resort Hotel,0,2,2017,August,34,21,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,171.47,0,1,Check-Out,Jill Ray,choiluis@example.com,590-990-5519,3522066298385497,2025-09-01 +City Hotel,1,67,2017,September,37,15,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,88.95,0,0,Canceled,Charles Hensley,zcalhoun@example.com,(537)268-7999,4993279280910358,2025-01-31 +City Hotel,1,150,2017,July,28,7,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,138.2,0,0,Canceled,Lauren Walker,robert13@example.net,+1-676-465-9878,4041616047962813611,2026-01-19 +City Hotel,0,102,2017,April,17,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,94.35,0,2,Check-Out,Ann Calderon,jenniferallen@example.org,001-435-666-4536x556,30206983894202,2024-11-01 +Resort Hotel,0,151,2017,May,21,24,4,10,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,248.0,179.0,0,Transient,113.12,0,3,Check-Out,Jonathan Potter,kristinrangel@example.org,957-459-5787,2256967982700772,2025-04-29 +Resort Hotel,0,19,2017,October,42,14,3,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,84.31,0,1,Check-Out,Julie Curry,bethgarza@example.com,974.733.2850x6897,3576905441149638,2024-11-19 +City Hotel,0,64,2017,August,35,29,1,4,2,1.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,229.21,0,2,Check-Out,Maureen Lee,mwells@example.com,3354290226,3548303394131883,2025-10-04 +Resort Hotel,0,0,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,C,2,No Deposit,14.0,78.0,0,Transient-Party,46.44,0,0,Check-Out,Alicia Garner,yhiggins@example.org,001-940-254-5983x745,30161221237815,2024-11-21 +City Hotel,1,99,2017,March,13,26,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.5,0,0,Check-Out,David Silva,samuelbarron@example.com,+1-385-659-2774,5138606344316680,2025-05-30 +Resort Hotel,0,32,2017,March,13,24,1,0,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,80.28,0,0,Check-Out,Tyler Patel,daniel49@example.org,487-657-7233x4457,675958357039,2025-08-22 +City Hotel,0,154,2017,August,34,25,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,157.18,0,1,Check-Out,Victoria Parker,jessica10@example.org,625.972.6534,4857400714713524,2024-08-03 +Resort Hotel,1,41,2017,December,50,9,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Emily Martinez,bmunoz@example.com,001-824-333-8474x72628,3534074791021789,2024-05-11 +Resort Hotel,1,323,2017,July,27,2,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,90.01,0,0,Canceled,Amanda Brown,huntcarlos@example.net,4874672967,4496121314173593398,2025-07-31 +Resort Hotel,0,3,2017,December,2,31,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,0,No Deposit,14.0,82.0,0,Transient,0.5099000000000001,0,1,Check-Out,Samantha Salinas,robertharrell@example.org,585.905.3055,4340210306011033464,2024-11-08 +City Hotel,0,13,2017,October,40,4,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,69.31,0,0,Check-Out,Michelle Williams,bcruz@example.org,587.656.4688x8864,6011133156890363,2025-09-08 +City Hotel,0,150,2017,March,10,7,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,79.0,179.0,39,Transient-Party,78.91,0,0,Check-Out,Shawn Evans,mathiskatherine@example.org,899.223.1344,3596296657428841,2025-10-04 +City Hotel,1,375,2017,October,40,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,21,Transient,78.78,0,0,Canceled,Christine Jones,haynesjoshua@example.org,664.899.0958x27476,374710839036193,2024-10-28 +Resort Hotel,0,19,2017,April,16,16,0,2,1,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,1,No Deposit,303.0,179.0,0,Transient-Party,2.35,0,0,Check-Out,Michael Buchanan,josephellis@example.org,320.708.2336x7295,375350275108245,2024-04-08 +City Hotel,0,195,2017,August,33,13,2,4,2,1.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,108.72,0,0,Check-Out,James Morales DVM,rodriguezjessica@example.com,832.881.4029,4622232683448,2024-06-19 +City Hotel,1,306,2017,August,33,15,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,64.01,0,0,Canceled,Michael Hicks,smithadam@example.net,(692)981-4055,6011883044656315,2024-05-23 +City Hotel,1,390,2017,May,20,11,0,1,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,83.06,0,0,Canceled,Laura Clark,breanna37@example.org,927.351.1603,346903484569858,2024-05-27 +City Hotel,1,157,2017,January,4,20,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Transient,50.52,0,0,Canceled,Luke Bush,rwilson@example.com,+1-371-790-9929,3542662458989973,2024-07-02 +City Hotel,0,50,2017,July,31,30,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,149.63,0,1,Check-Out,Kimberly Cantrell,michael95@example.org,757-452-4991x13942,213165742278207,2024-12-10 +Resort Hotel,0,56,2017,February,7,15,1,5,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,227.74,0,3,Check-Out,Sarah Jordan,tinaknapp@example.org,+1-476-704-4506x295,376170924382143,2025-12-08 +City Hotel,1,43,2017,March,13,30,0,2,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,18,Transient,60.82,0,0,Canceled,Tyler Cole,debbiefisher@example.com,001-547-725-1832x3465,676346255703,2024-08-09 +City Hotel,0,52,2017,September,36,4,1,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.62,0,0,Check-Out,Matthew Valencia,guzmanamber@example.org,+1-681-393-9711x5608,4014993171534,2025-09-21 +City Hotel,0,20,2017,July,28,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.51,0,0,Check-Out,Cynthia Freeman,uwalters@example.net,001-592-349-3197,30260565889114,2025-11-17 +City Hotel,1,2,2017,May,22,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.84,0,2,Canceled,Gregory Wiley,briggshannah@example.com,(393)404-3350x85624,213167870870953,2026-01-04 +City Hotel,0,259,2017,September,37,11,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,A,0,No Deposit,2.0,179.0,18,Transient-Party,62.59,0,0,Check-Out,Dylan Long,carol04@example.com,+1-261-551-9349,4140386320669837,2024-11-17 +Resort Hotel,1,146,2017,April,14,1,1,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,179.0,0,Transient-Party,42.62,0,0,Canceled,Amanda Anderson,xaguirre@example.net,(265)876-9642,2240393673312828,2024-10-06 +City Hotel,0,2,2017,January,4,22,1,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,43.82,0,0,Check-Out,Cynthia Tucker,travis43@example.com,847.475.5504,30130164316514,2024-11-07 +City Hotel,1,8,2017,December,51,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,109.13,0,0,Canceled,Scott Stephens,thompsonbrandon@example.net,352.787.1196x5216,3577400107237165,2026-01-17 +City Hotel,1,16,2017,March,12,22,1,2,2,0.0,0,BB,PRT,Corporate,TA/TO,1,1,1,A,A,0,Non Refund,10.0,179.0,0,Transient,99.4,0,1,Canceled,Ralph Gray,jennifer15@example.net,399-923-2769x925,4678869366137,2025-11-30 +City Hotel,0,3,2017,September,36,9,1,0,2,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,173.31,0,0,Check-Out,Thomas Phillips,juliaparker@example.com,288-675-1726,503842626098,2025-06-05 +Resort Hotel,0,21,2017,November,46,14,0,5,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,2,No Deposit,14.0,237.0,0,Transient,67.89,0,0,Check-Out,Jamie Scott,ryan85@example.net,835.389.4701x78140,501886315610,2025-02-18 +City Hotel,1,251,2017,October,44,30,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,62,Contract,83.81,0,0,Canceled,Michael Gutierrez,oharvey@example.com,+1-984-432-5570,6501409492416866,2024-10-25 +Resort Hotel,0,15,2017,April,14,5,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,56.33,0,1,Check-Out,Brian Kidd,kimberly02@example.com,654.864.6709,3514535704236262,2024-09-22 +City Hotel,0,11,2017,October,41,8,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,45.0,0,Transient-Party,125.32,0,0,Check-Out,Travis Walters,millerjessica@example.com,569-909-6452x49117,30053515392945,2024-05-13 +City Hotel,1,52,2017,November,47,24,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,101.42,0,1,No-Show,Joseph Meyers,michelle18@example.com,(851)540-6065,4058715885748638,2024-08-23 +Resort Hotel,0,35,2017,August,32,5,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,362.0,179.0,0,Transient-Party,214.58,0,0,Check-Out,Jennifer Baker,martinnathaniel@example.org,(741)298-7223x352,676328028565,2025-08-05 +Resort Hotel,0,7,2017,August,31,4,0,4,2,0.0,0,FB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,137.48,1,1,Check-Out,Tracey Johnson,william45@example.net,718-876-1414x44478,4697415187805,2024-12-03 +City Hotel,1,151,2017,March,13,24,0,3,2,2.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,133.88,0,1,Canceled,Kimberly Taylor,wcoleman@example.net,361-556-3470x76027,4790342876879,2026-02-11 +City Hotel,0,41,2017,September,38,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,88.74,0,0,Check-Out,Alejandra Thomas,pamelacooper@example.org,+1-830-874-9551,4626495374773537112,2024-12-19 +Resort Hotel,0,11,2017,September,37,13,1,6,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,99.0,1,1,Check-Out,Jay Peck,kelseyleblanc@example.net,001-997-714-7797x24130,060409887613,2024-09-05 +Resort Hotel,0,28,2017,December,49,9,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,C,0,No Deposit,41.0,179.0,0,Transient,91.41,0,0,Check-Out,Ashley Schultz,charlesfleming@example.org,818-459-7912x9932,213183211934895,2025-06-01 +Resort Hotel,0,177,2017,August,31,5,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,240.0,179.0,0,Transient,227.9,0,1,Check-Out,Jody Rice,ealvarez@example.net,001-710-911-2745x8895,4495122711631,2025-12-01 +City Hotel,0,42,2017,August,34,20,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,237.31,0,2,Check-Out,Leslie Bauer,james93@example.net,001-847-331-6331,6541884992550129,2025-07-14 +Resort Hotel,0,30,2017,December,52,25,1,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,95.15,0,1,Check-Out,Laura Andrews,maria78@example.com,001-869-226-2391x98627,3597289626164679,2026-02-24 +City Hotel,0,91,2017,July,31,30,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,168.0,179.0,0,Transient,95.36,0,0,Check-Out,Jon Green,wortiz@example.org,891-971-4451x01821,3542909431017384,2025-07-05 +Resort Hotel,1,249,2017,July,31,30,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,179.0,0,Transient-Party,82.83,0,0,Canceled,Sylvia Dalton,kenneth67@example.com,714-569-4752,2280795959738560,2025-08-18 +City Hotel,1,48,2017,January,3,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,43.04,0,2,Canceled,Melissa Smith,denise31@example.org,726.495.8940,4798498250307943,2025-02-19 +City Hotel,0,46,2017,December,52,24,2,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,84.0,179.0,75,Transient-Party,106.63,1,1,Check-Out,Jonathan Gallagher,icastillo@example.org,001-971-377-3821x61946,3545539395426805,2025-05-30 +City Hotel,0,100,2017,April,14,4,2,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,95.9,0,3,Check-Out,Louis Gibson,rthompson@example.com,338-630-6265x788,4338971060302349369,2025-07-01 +City Hotel,0,7,2017,August,31,4,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,107.61,0,1,Check-Out,Francisco Woodward,jessica23@example.com,540.266.0686x083,4062010879191,2025-05-06 +City Hotel,1,292,2017,July,31,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.02,0,0,Canceled,Michael Guerra,bill17@example.net,6526306774,3560196577003280,2024-05-07 +Resort Hotel,0,151,2017,March,10,5,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,12.0,223.0,0,Transient-Party,78.25,0,0,Check-Out,Kimberly Orozco,buchananmichael@example.net,(347)289-3491x23451,3549960539385267,2026-01-15 +City Hotel,0,6,2017,December,2,31,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.95,0,1,Check-Out,John Chavez,ericspencer@example.com,787.487.1869x159,4176320077355446,2025-08-02 +Resort Hotel,0,268,2017,October,41,14,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,278.0,179.0,0,Contract,50.21,1,0,Check-Out,Alison Faulkner,gonzalezdaniel@example.org,001-310-641-0692x8577,676159332276,2025-12-14 +Resort Hotel,1,114,2017,March,9,2,2,5,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient-Party,65.34,1,1,Canceled,Toni Galloway,sheltonbrian@example.net,603-663-8105x202,3565850203909501,2025-09-29 +City Hotel,0,2,2017,August,35,28,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,88.17,0,1,Check-Out,Nina Combs,psandoval@example.net,9853697123,3539894736960311,2025-09-04 +Resort Hotel,0,100,2017,May,20,13,0,2,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Contract,83.11,1,0,Check-Out,Patricia Cannon,jennifer36@example.org,210.375.5095x26650,4464553942977694,2024-09-26 +City Hotel,0,10,2017,October,40,6,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.44,0,1,Check-Out,Eric Clark,yburton@example.org,402-523-8883x8885,6011430529814447,2024-10-27 +City Hotel,1,55,2017,October,42,18,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,85.54,0,0,Canceled,Kelly Brown,edward42@example.net,671-324-1595x28670,180042809083243,2025-03-31 +City Hotel,0,59,2017,May,21,26,1,1,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,11.0,179.0,0,Transient,112.27,0,1,Check-Out,Joshua Ramos DDS,dustinstevens@example.net,267-646-7203,4875569874921008,2024-10-10 +Resort Hotel,0,8,2017,September,39,25,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,236.0,179.0,0,Transient,199.32,1,2,Check-Out,Courtney Young,lauren08@example.org,824-640-9348x087,2291977635742516,2025-10-27 +Resort Hotel,1,149,2017,August,32,4,1,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,209.39,0,0,Canceled,Philip Cole,bbyrd@example.com,+1-855-588-1467x843,4325027414983656801,2024-04-10 +City Hotel,1,42,2017,December,49,5,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.99,0,2,Canceled,Anna Love,brooke81@example.com,448.247.9958x11075,180075631650250,2025-12-28 +City Hotel,0,170,2017,September,36,2,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,216.14,0,0,Check-Out,Lisa Rodriguez,charlesgarcia@example.org,(936)928-0867x3346,503851458920,2025-11-27 +City Hotel,0,43,2017,October,43,26,0,2,2,0.0,0,BB,DEU,Direct,Corporate,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,177.14,0,0,Check-Out,Cheryl Petersen,dawsondavid@example.net,430.478.2658x74419,30096288624424,2025-04-07 +Resort Hotel,0,49,2017,August,32,6,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.56,0,1,Check-Out,Tracy Lopez,hodgesronald@example.org,001-297-468-1198x9114,374835689899414,2025-01-29 +City Hotel,0,32,2017,November,44,2,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,88.29,0,1,Check-Out,Casey Baker,jsmith@example.com,242.252.8297x8263,3597584548385018,2026-02-08 +Resort Hotel,0,147,2017,July,27,2,3,7,2,0.0,0,BB,CN,Direct,Direct,0,0,0,E,E,2,No Deposit,364.0500000000011,179.0,0,Transient,240.3,0,0,Check-Out,Andrew Green,baileyjennifer@example.net,001-235-918-5175x04983,3579537309188080,2025-05-11 +Resort Hotel,0,20,2017,May,22,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,E,0,No Deposit,311.0,179.0,0,Transient-Party,64.45,0,1,Check-Out,Carolyn Kane,heidi49@example.net,001-587-541-1839x6574,3597472943013494,2024-07-08 +City Hotel,0,14,2017,December,52,25,1,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.87,0,2,Check-Out,Lisa Ramsey,wkelly@example.net,545.366.2346x4517,30223549802660,2024-08-22 +Resort Hotel,0,40,2017,March,13,27,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,92.12,0,1,Check-Out,Joel Smith,alexajones@example.org,(843)819-6022x6727,4560318513999235,2024-07-25 +City Hotel,0,92,2017,March,9,2,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,98.88,0,1,Check-Out,Andrea Brown,danielmunoz@example.org,+1-411-646-0601x0235,4692333651910853,2024-04-27 +Resort Hotel,0,106,2017,April,14,6,1,4,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,101.39,0,0,Check-Out,Melissa Combs,xperez@example.org,(832)373-3987x611,3523636217802332,2025-04-09 +Resort Hotel,1,100,2017,August,32,7,1,5,2,0.0,0,HB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,55.49,0,1,Check-Out,Karl Moore,claytonallen@example.com,902-966-3976x7169,3508701477540565,2025-05-11 +City Hotel,0,372,2017,June,23,8,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,106.46,0,0,Check-Out,Richard Larsen,gthompson@example.com,001-309-864-6241,675941007535,2025-09-01 +Resort Hotel,1,44,2017,August,34,25,2,3,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient-Party,176.02,0,0,Canceled,Amy Webb,youngamanda@example.net,692.403.5727x138,6553523148537201,2024-12-11 +Resort Hotel,0,14,2017,May,19,9,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,116.21,0,2,Check-Out,Annette Walters,smalltracey@example.net,295-344-8021x75729,4724438044765591,2025-12-18 +Resort Hotel,0,257,2017,September,36,4,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,64.23,0,1,Check-Out,Paul Stephens,gdelgado@example.org,525.857.3993,378855933966641,2024-10-24 +Resort Hotel,0,1,2017,April,18,30,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,1,No Deposit,13.0,179.0,0,Transient,109.42,0,1,Check-Out,Kevin Moss,sullivanjamie@example.net,(238)915-3832,4545550376545,2024-06-09 +City Hotel,0,57,2017,September,38,18,2,4,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,159.53,0,1,Check-Out,Patrick Bird,smithlarry@example.org,+1-292-376-3533,2312257667666916,2024-05-13 +Resort Hotel,1,40,2017,January,3,16,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,41.02,0,2,Canceled,Laura Harris,mendezdestiny@example.net,+1-899-582-6621,2275631636616506,2025-02-12 +City Hotel,1,414,2017,August,32,7,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,110.21,0,0,Canceled,Blake Crawford,rebekahhughes@example.net,(459)606-9471x88613,3586007470088908,2024-07-03 +City Hotel,0,18,2017,March,13,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,64.18,1,1,Check-Out,Charles Roberts,henryjames@example.org,+1-782-656-9217x440,4271949576021209149,2024-06-28 +City Hotel,0,307,2017,June,24,11,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,1.0,179.0,0,Transient-Party,101.41,0,0,Check-Out,Steve Brewer,robert61@example.com,717-377-2169x810,4659339905147730,2024-08-19 +City Hotel,1,172,2017,October,43,24,2,1,1,0.0,0,BB,AUT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,14.0,218.0,0,Transient,86.36,0,0,Canceled,Jason Rodriguez,bradleymartinez@example.com,986.744.1072,6589489737094459,2024-03-30 +City Hotel,0,43,2017,September,35,2,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,1.0,179.0,0,Transient-Party,151.25,0,1,Check-Out,Amber Lee,moorebarbara@example.net,001-208-526-2815x12677,6512473213229120,2024-09-26 +Resort Hotel,0,46,2017,April,17,26,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,81.07,0,1,Check-Out,Jeffrey Watts,melindapearson@example.net,001-495-684-7861,4156562926265387094,2025-10-19 +Resort Hotel,1,7,2017,October,41,10,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,Refundable,243.0,179.0,0,Transient,77.82,0,0,Check-Out,John Hernandez,danielsimpson@example.org,+1-635-820-0893x673,3542125885035844,2025-03-18 +City Hotel,1,164,2017,June,23,6,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,82.0,179.0,0,Transient,100.89,0,0,Canceled,Michael Jackson,floresedward@example.org,622-941-8735,4462862493346643,2024-06-20 +City Hotel,1,13,2017,April,17,25,1,2,1,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,14.0,218.0,0,Transient,134.67,0,0,No-Show,Brittany Johnson,amandaserrano@example.com,6614698317,213103770447816,2026-01-01 +City Hotel,1,167,2017,June,26,24,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,103.87,0,0,Canceled,Peggy Young,lloydmichael@example.org,001-991-936-6276,4383300982542501,2024-12-30 +City Hotel,1,201,2017,October,40,2,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient,113.7,0,0,Canceled,Jennifer Taylor,ymendoza@example.com,+1-813-722-5157x5554,503881852191,2025-03-07 +Resort Hotel,0,269,2017,March,13,27,1,5,1,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,88.0,179.0,0,Transient-Party,39.47,0,0,Check-Out,Christina Mullen,lisa25@example.org,857.770.0485x2460,4061272551387536,2024-06-11 +Resort Hotel,0,246,2017,November,47,18,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient,50.63,0,0,Check-Out,Alexandra Marshall,lorimoses@example.org,(616)565-0704x891,3539054495010010,2025-11-26 +Resort Hotel,1,283,2017,December,49,5,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,237.0,179.0,0,Transient,218.65,0,2,Canceled,Amanda Davis,michelle47@example.com,+1-824-448-8480x0007,2714837859432120,2025-07-01 +City Hotel,1,87,2017,March,11,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,310.0,179.0,0,Transient,79.71,0,0,Canceled,Gavin Yates,thomas24@example.net,650-209-4649x4534,2602047521615442,2025-02-03 +City Hotel,0,51,2017,October,42,16,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,103.73,0,1,Check-Out,Allison Murray,brookebautista@example.net,848-779-8706,4619260745729286508,2026-03-16 +City Hotel,1,261,2017,August,31,3,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.18,0,0,Canceled,Ann Goodwin,hbarrett@example.com,728-552-7278x32571,4757757332560194,2024-06-30 +Resort Hotel,1,260,2017,September,35,1,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,241.0,179.0,0,Transient,97.07,0,0,Canceled,Jerry Martin,garrett82@example.net,550-394-8173,4297884428522160482,2025-10-09 +City Hotel,1,13,2017,May,22,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.88,0,0,Canceled,Joshua James,wallacefrancisco@example.com,(710)490-3049,3535951940598867,2024-07-31 +Resort Hotel,1,148,2017,June,26,25,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,130.99,0,1,Canceled,Jordan Wilkerson,josephdaniels@example.org,+1-308-361-5257x8465,30187522416436,2024-07-14 +Resort Hotel,0,47,2017,August,32,8,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,99.45,0,1,Check-Out,Kathleen Lopez,vanessacolon@example.org,+1-205-626-6892x63737,6538139520671870,2025-01-16 +Resort Hotel,0,0,2017,July,31,29,0,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,134.81,1,2,Check-Out,Rodney Stewart,reynoldsshane@example.org,209-926-6201x359,3533749598372045,2024-10-12 +Resort Hotel,1,46,2017,January,2,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,236.0,179.0,0,Transient,58.28,0,1,Canceled,Patricia Paul,jenniferblack@example.net,758-454-5454x881,6011623273959331,2024-12-08 +Resort Hotel,1,32,2017,December,48,1,1,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,75.53,0,0,Canceled,Yvonne Rodriguez,hannah61@example.net,422-367-1260x369,38568827228828,2025-06-14 +City Hotel,1,142,2017,March,12,24,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.49,0,1,Canceled,Robert Brandt,meyergeorge@example.org,631.592.2153x830,563055747841,2024-08-25 +City Hotel,0,18,2017,October,41,9,0,3,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,212.0,63.0,0,Transient-Party,75.61,0,0,Check-Out,Aaron Scott,umarsh@example.net,980-610-5281,4266781010403596,2025-06-25 +Resort Hotel,0,1,2017,September,39,26,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,237.0,179.0,0,Transient,188.94,1,1,Check-Out,Anthony Good,greenealexander@example.net,001-202-451-5546x1519,4681689167962802896,2025-05-30 +City Hotel,0,212,2017,August,32,8,2,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,133.95,0,0,Check-Out,Olivia Carter,nbarry@example.com,833-337-5070x7096,3530215287639287,2026-01-08 +Resort Hotel,1,254,2017,August,34,24,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,229.98,0,0,Canceled,Stephanie White,markjohnson@example.com,001-922-537-0423x2882,4855010128646,2024-07-14 +City Hotel,0,3,2017,May,20,13,1,2,1,0.0,0,SC,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,169.89,1,0,Check-Out,Matthew Smith,norman29@example.com,001-840-905-8430x2241,30314490904389,2024-12-01 +City Hotel,0,151,2017,July,29,21,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,70.0,179.0,0,Transient-Party,126.69,0,0,Check-Out,Daniel Matthews,nathan33@example.net,+1-462-849-1365,6573814577710674,2025-06-24 +City Hotel,0,49,2017,March,13,28,2,0,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,44.77,0,1,Check-Out,Brenda Oconnor,darrell62@example.org,9529843579,6011638353285258,2024-07-27 +Resort Hotel,0,41,2017,July,29,17,4,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,120.86,0,1,Check-Out,Monica Aguilar,jillian15@example.com,461-885-2721,36760406727096,2025-03-26 +Resort Hotel,1,77,2017,November,45,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,106.42,0,2,Canceled,Rodney Salinas,angelapalmer@example.com,691-432-2669,30090361533396,2026-01-29 +Resort Hotel,0,29,2017,August,33,15,0,1,2,1.0,0,HB,,Direct,Direct,0,0,0,L,F,1,No Deposit,16.0,179.0,0,Transient,205.1,0,0,Check-Out,Christopher Jensen,qbailey@example.org,855.347.7149,5176471369101886,2024-03-31 +City Hotel,0,46,2017,October,43,23,2,0,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Group,45.59,0,2,Check-Out,Clayton May,steven36@example.com,374-774-6657,4230440841095,2024-11-30 +Resort Hotel,1,0,2017,July,31,30,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,2,No Deposit,242.0,179.0,0,Transient,137.69,0,0,Canceled,Brandon Leblanc,troyjordan@example.org,001-767-973-3629,4844163775703695,2024-07-01 +City Hotel,1,206,2017,June,26,29,0,1,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.18,0,1,Canceled,Blake Owens,rangeljames@example.net,223-207-8890,639035021745,2026-01-05 +City Hotel,1,148,2017,September,36,4,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,81.12,0,0,Canceled,Michelle Johnson,hhughes@example.com,(661)488-3651x60842,4959211942459682,2024-05-09 +Resort Hotel,0,23,2017,May,21,25,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,10.0,179.0,0,Transient,79.93,1,0,Check-Out,Brandi Gould,sdiaz@example.org,+1-493-866-3769,4610063812431981,2024-11-05 +City Hotel,1,28,2017,April,14,4,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,103.51,0,0,Canceled,Heather Fernandez,jasmine87@example.org,+1-773-678-4195x21703,4076661717781,2024-05-08 +City Hotel,0,13,2017,February,5,2,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.02,0,1,Check-Out,Andrew Rodriguez,hduke@example.net,+1-635-917-3181x1750,4443269892677272258,2025-09-05 +Resort Hotel,0,53,2017,November,47,24,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,Ashley Friedman,brad10@example.com,001-449-867-5274x2146,4783297381713814,2025-03-07 +City Hotel,0,13,2017,April,15,11,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,140.42,0,2,Check-Out,Tammy Davis,zblair@example.com,733.270.5416,3512274256100302,2025-06-15 +Resort Hotel,1,83,2017,July,29,16,2,5,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,235.03,0,0,Canceled,Kimberly Sullivan,donna05@example.com,+1-556-592-8219,3533297967445554,2024-06-14 +Resort Hotel,0,17,2017,October,40,5,3,5,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,77.39,0,0,Check-Out,Donna Obrien,fitzpatrickfrank@example.org,448-489-1471x49361,30157137654697,2024-12-20 +City Hotel,0,156,2017,July,30,28,0,1,3,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,157.34,0,0,Check-Out,Jennifer Mendoza,millsjamie@example.net,(950)218-1380x947,38438905680896,2025-11-25 +City Hotel,0,2,2017,October,43,26,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,36.0,179.0,0,Transient,90.31,0,0,Check-Out,Shawn Hooper,julie58@example.net,+1-794-785-5740,4636807433285881,2024-07-19 +City Hotel,0,0,2017,March,10,3,1,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,9.0,179.0,0,Transient,132.03,0,1,Check-Out,Beth Ford,bowmanmegan@example.net,6928440715,4562828137860816144,2024-05-26 +City Hotel,0,156,2017,June,26,26,0,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,184.7,0,1,Check-Out,Dr. Kathryn Adams DDS,belllisa@example.org,(473)377-4597x5414,30019683730158,2025-04-19 +City Hotel,0,14,2017,July,27,5,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,210.87,0,0,Check-Out,Paul Gonzales,baileyjeffrey@example.com,(706)870-6951,4602397747636014108,2025-12-29 +City Hotel,0,102,2017,March,13,28,2,3,1,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.05,0,1,Check-Out,Vanessa Davila,anthony32@example.com,001-358-745-9545,573225717996,2025-09-05 +City Hotel,0,3,2017,May,19,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,74.0,0,Transient-Party,65.1,0,0,Check-Out,Andrew Carter,phelpssarah@example.org,456-575-9892,4154661506924,2025-11-29 +City Hotel,0,7,2017,June,24,16,0,2,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.53,0,0,Check-Out,Bianca Kim,sriddle@example.org,+1-289-241-0641,370649127699722,2024-11-19 +Resort Hotel,1,326,2017,September,38,23,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,A,0,No Deposit,28.0,179.0,0,Contract,63.97,0,2,Canceled,Jamie Mclaughlin,spencerleah@example.com,001-790-538-1990x958,4942731762448,2025-12-08 +City Hotel,1,46,2017,April,14,3,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.2,0,0,Canceled,Taylor Mack,julie23@example.net,903.544.8663x137,4396624802325101684,2025-07-02 +City Hotel,1,50,2017,December,52,28,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,111.45,1,0,Canceled,Christina Franklin,kathleen98@example.org,486-666-3667x394,4973045095543500,2024-06-06 +City Hotel,1,402,2017,June,23,8,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,102.25,0,0,Canceled,Bethany Gonzalez,xzuniga@example.com,+1-385-918-7787x614,3501711336221023,2025-03-25 +City Hotel,0,3,2017,May,22,27,0,2,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,129.99,0,0,Check-Out,David Fernandez,waltermurphy@example.com,712-609-2240x5807,503830880954,2025-04-22 +City Hotel,1,159,2017,June,27,29,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,114.99,0,1,Canceled,Debra Blackburn,blackkathryn@example.com,671-524-8532,2320190894698081,2025-03-22 +City Hotel,1,190,2017,August,33,13,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.85,0,0,Canceled,Christopher Walker,jenniferhubbard@example.com,351.757.4054x182,4330264355412177,2025-05-22 +Resort Hotel,1,6,2017,December,49,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,E,E,0,No Deposit,183.0,179.0,0,Transient-Party,64.47,0,1,Canceled,Jennifer Hill,sarah74@example.com,+1-295-279-4821x43865,4376527454086,2024-06-29 +City Hotel,0,351,2017,October,41,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient-Party,74.09,0,0,Check-Out,Miguel Smith,millerchristopher@example.org,+1-836-342-3199x2304,3550497669948297,2025-07-13 +City Hotel,0,106,2017,June,25,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,A,0,No Deposit,244.0,179.0,0,Transient,141.0,0,1,Check-Out,Christopher Paul,nancy99@example.org,508.441.8587x3628,4734097019812868572,2025-11-11 +City Hotel,1,414,2017,June,24,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,60.27,0,0,Canceled,Todd Hernandez Jr.,hendersonlisa@example.net,280-215-8863x206,4512799328796958,2025-09-05 +Resort Hotel,0,16,2017,August,35,31,0,4,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient-Party,153.27,0,1,Check-Out,April Clark,michaeljimenez@example.org,899-653-9283,3538937824350639,2025-05-03 +City Hotel,1,293,2017,September,36,3,0,2,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,96.44,0,1,Canceled,Antonio Smith,ralph02@example.com,+1-991-993-1602x498,3553032663109278,2025-08-12 +City Hotel,0,0,2017,January,2,4,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,78.63,0,0,Check-Out,Danielle Carter,andrewhowell@example.com,+1-259-321-2938,180003346579770,2025-06-23 +City Hotel,1,414,2017,August,35,27,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.81,0,0,Canceled,Jennifer Allen,bernard44@example.net,867.749.0716,3562874541342061,2024-08-22 +City Hotel,1,122,2017,July,29,21,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,62.72,0,0,Canceled,Aaron Black,swansonmichael@example.net,6542348957,2329094643714366,2024-06-06 +City Hotel,0,189,2017,July,28,11,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,133.69,0,2,Check-Out,Paula Kidd,aaron77@example.com,001-825-466-4825,30323870506326,2026-02-12 +City Hotel,1,145,2017,March,13,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,43,Transient,130.13,0,0,Canceled,Bryan Yates,andrew54@example.com,(944)796-3050x901,4065196475425146,2024-07-02 +City Hotel,1,152,2017,June,25,21,1,0,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,135.26,0,0,Canceled,Troy Jefferson,leejefferson@example.net,590.798.4321,3525484904951478,2025-11-29 +City Hotel,1,55,2017,June,24,8,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,136.06,0,1,Canceled,Paul Burton,stewartapril@example.net,001-342-702-1868x6718,060412856852,2024-03-30 +Resort Hotel,0,9,2017,December,50,12,0,2,2,0.0,0,HB,PRT,Direct,Direct,1,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,56.82,0,1,Check-Out,Brenda Simpson,leemicheal@example.org,(968)985-2258,6504600210172081,2024-09-12 +City Hotel,0,77,2017,April,17,28,2,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,87.88,0,1,Check-Out,Natalie Perkins,rbuchanan@example.org,489.891.0471,6534572385029327,2024-12-13 +City Hotel,0,136,2017,October,41,8,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.4,0,0,Check-Out,Patricia Acosta,castrojennifer@example.net,516-754-3010,2655064798670394,2026-01-26 +City Hotel,1,165,2017,July,29,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,111.88,0,0,Canceled,Lisa Price,nbell@example.net,(941)265-8418,676395931444,2024-07-18 +Resort Hotel,1,34,2017,April,17,23,1,2,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,175.62,1,1,Canceled,Morgan Evans,dzuniga@example.com,001-698-913-9938x7710,4709017716353842,2026-01-01 +City Hotel,0,51,2017,July,27,5,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.87,0,2,Check-Out,Tiffany Bender DVM,rcoleman@example.org,(767)974-8942,3538105017192529,2024-08-31 +City Hotel,0,147,2017,March,11,13,1,2,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.13,0,1,Check-Out,Karen Scott,hendersonjames@example.com,896-906-1138x35897,5515809606626613,2026-02-12 +Resort Hotel,0,152,2017,March,10,9,1,6,2,0.0,0,Undefined,BEL,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,89.19,0,1,Check-Out,Anthony Morse,billy78@example.com,+1-249-797-3330x44440,4064111711258160,2025-07-27 +City Hotel,0,12,2017,August,33,15,0,2,1,0.0,0,SC,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,110.9,0,3,Check-Out,Valerie Robertson,michellemartin@example.org,(520)960-3988x716,213117635083889,2025-09-27 +City Hotel,0,30,2017,December,52,26,0,4,2,0.0,0,Undefined,FRA,Direct,TA/TO,0,0,0,A,B,2,No Deposit,12.0,179.0,0,Transient-Party,67.41,1,1,Check-Out,Danielle Wilson,william77@example.com,(725)254-0652x33813,4583160064819146,2025-11-05 +City Hotel,1,48,2017,April,17,23,0,2,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,111.42,0,0,Check-Out,Ruben Benton,louis84@example.net,919-991-5286,589117283707,2024-08-09 +Resort Hotel,0,0,2017,November,45,5,2,5,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,105.39,0,1,Check-Out,Brendan Khan,millernicholas@example.com,(699)306-3853,639074886891,2025-10-08 +City Hotel,0,0,2017,January,3,13,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,2,No Deposit,17.0,179.0,0,Transient,221.01,1,0,Check-Out,Matthew Peters,debrahaynes@example.com,718.547.1140x05265,4470590688819,2024-08-24 +Resort Hotel,0,92,2017,December,50,10,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.56,0,0,Check-Out,David Mason,gregory19@example.net,+1-790-574-4635x3484,4540235620086,2026-01-28 +City Hotel,0,20,2017,June,25,16,0,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,82.0,179.0,0,Transient-Party,99.17,0,0,Check-Out,Tonya Parker,robertscorey@example.org,+1-418-635-2374,676285680978,2025-03-16 +Resort Hotel,1,123,2017,August,34,22,1,4,1,0.0,0,HB,PRT,Complementary,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Chelsea Green,ewilliams@example.org,001-999-909-5111,3513613506264518,2024-09-02 +City Hotel,0,363,2017,October,42,19,0,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,B,0,No Deposit,76.0,179.0,0,Transient-Party,73.71,0,0,Check-Out,Alexandria Cox,hernandezbenjamin@example.org,+1-425-487-8524x44053,4602499296102070,2024-04-05 +City Hotel,1,284,2017,June,24,12,4,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,137.54,0,0,Canceled,David Gutierrez,justinwhite@example.org,(379)660-1420,3565254121402055,2025-09-12 +Resort Hotel,0,10,2017,October,40,2,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,53.42,1,0,Check-Out,Frank Harding,omiller@example.org,909.779.8191x63031,3526387321205742,2025-01-21 +City Hotel,1,41,2017,June,23,5,3,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,132.41,0,0,No-Show,Danielle Perkins,melissacase@example.org,912.524.2953,6011984431117497,2025-11-02 +City Hotel,0,13,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,135.42,1,1,Check-Out,Sharon Reynolds,rosalesanna@example.net,+1-993-364-8767x46163,676322696680,2026-01-12 +City Hotel,0,89,2017,February,8,22,1,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,22.0,179.0,0,Transient,116.87,0,1,Check-Out,Anthony Brown,erikmelendez@example.org,(581)546-7128,6504213114778985,2024-07-05 +City Hotel,1,82,2017,April,14,6,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,28.0,179.0,0,Transient,123.97,0,0,Canceled,Stanley Le,meyerswilliam@example.org,2816006741,6011739041987733,2024-11-18 +City Hotel,1,157,2017,May,21,23,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,10.0,179.0,0,Transient,90.0,0,0,Canceled,Michelle Ryan,ochase@example.net,+1-293-430-3109x53735,2244191907933534,2024-09-23 +Resort Hotel,1,290,2017,July,26,1,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,236.0,179.0,0,Contract,112.0,0,2,Canceled,Jonathon Knapp,tammyfrazier@example.org,+1-303-474-5170x88681,2235819897182446,2025-10-25 +City Hotel,1,38,2017,April,18,29,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.9,0,1,Canceled,Kayla Carlson,kristen91@example.org,4558415728,4074551212455252,2025-01-21 +City Hotel,1,148,2017,June,24,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,80.18,0,0,No-Show,Tracy Hernandez,beckergregory@example.com,(719)884-2522,344017078124400,2024-10-14 +City Hotel,1,28,2017,April,14,4,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.3,0,2,Canceled,Brenda Schmidt,butlerjason@example.net,001-635-417-2922,4704984438352476902,2025-08-07 +Resort Hotel,0,28,2017,January,3,19,2,5,2,0.0,0,HB,CHN,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,29.0,179.0,0,Contract,60.78,0,0,Check-Out,Andrea Baker,matthew42@example.net,+1-869-299-1363x017,6011527972581611,2024-12-22 +City Hotel,0,71,2017,August,33,15,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient-Party,165.25,0,0,Check-Out,Chad Perez,smithmike@example.net,587.568.8224x02785,4301682136697029,2025-04-16 +City Hotel,1,112,2017,December,51,17,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,43,Transient-Party,88.9,0,0,Canceled,Mandy Lee,jonesamanda@example.org,415-872-4008,4521320120871052,2025-10-15 +Resort Hotel,0,0,2017,May,22,28,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Group,82.72,0,0,Check-Out,Trevor Walker,lesternancy@example.org,+1-985-380-5265x5340,4728546549855042,2025-03-17 +City Hotel,0,39,2017,December,49,5,2,5,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,175.91,0,1,Check-Out,Alicia Phillips MD,adkinsmichael@example.com,283.587.4518x069,4292972898281,2025-12-12 +City Hotel,0,16,2017,March,13,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,40.65,1,1,Check-Out,Raymond Clements,harrisjonathan@example.org,570-272-1771x41070,6522021122791850,2025-10-13 +City Hotel,0,1,2017,January,2,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,51.82,1,1,Check-Out,Evelyn Dunn,kevin04@example.org,(346)369-1839x6753,346696606816302,2025-12-01 +Resort Hotel,0,0,2017,November,44,3,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,47.52,0,0,Check-Out,Teresa Fuller,crawfordtiffany@example.com,+1-266-664-0292,2496325293932834,2025-04-26 +City Hotel,0,14,2017,December,52,30,0,3,2,0.0,0,BB,AUT,Online TA,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Contract,64.98,1,2,Check-Out,Vanessa Reed,rachel05@example.net,935-949-2237x044,6537200954781337,2024-12-10 +Resort Hotel,1,270,2017,June,27,30,1,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,232.81,0,0,Canceled,Max Mcclain,elizabeth58@example.com,+1-728-822-6405,30300367171954,2024-07-14 +City Hotel,0,16,2017,September,36,5,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,30.0,179.0,75,Transient-Party,62.31,0,0,Check-Out,Andres Marshall,joseph26@example.com,997.725.1440,2306319849262994,2026-02-26 +Resort Hotel,0,146,2017,February,9,24,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,62.51,0,0,Check-Out,Anthony Simmons,ediaz@example.org,367.626.5401x4478,060445587862,2024-08-06 +Resort Hotel,1,145,2017,December,49,4,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,83.0,179.0,0,Transient,81.79,0,0,Canceled,Bradley Hoffman,christopherbarnett@example.com,001-832-931-6199x87732,2440280486815287,2025-02-26 +City Hotel,1,11,2017,February,8,23,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,46.6,0,0,Canceled,Judy Johnson,salazardiana@example.org,001-294-652-1815x6135,6564465881255509,2026-03-08 +City Hotel,1,159,2017,March,12,17,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,138.11,0,0,Canceled,Nichole Thompson,joshua35@example.com,218.338.3249,180070820483902,2025-02-15 +Resort Hotel,0,7,2017,October,41,9,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,43.0,179.0,0,Group,43.38,0,2,Check-Out,Mrs. Nancy Schaefer,jeffrey14@example.net,7533141527,630400566232,2025-05-17 +Resort Hotel,1,183,2017,August,35,29,2,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,127.85,0,0,Canceled,Gregory Martinez,foxbrent@example.org,+1-744-420-3786x056,4297913215321,2025-05-09 +City Hotel,1,353,2017,January,2,3,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,105.59,0,1,Canceled,Deborah Patel,oanderson@example.org,001-251-288-1884x4463,4571303798186903,2025-02-14 +Resort Hotel,1,12,2017,May,21,22,1,2,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,51.6,0,0,Canceled,Jonathan Jordan,donaldcameron@example.org,(613)215-4388x53696,2244471500235432,2025-07-28 +City Hotel,0,2,2017,February,8,19,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,1,1,A,B,0,No Deposit,14.0,45.0,0,Transient-Party,54.44,0,1,Check-Out,Courtney Briggs,robinsmith@example.org,4915799328,5533013510576158,2025-07-30 +City Hotel,0,2,2017,April,18,30,0,1,1,0.0,0,BB,ESP,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.09,0,0,Check-Out,Susan Molina,yaustin@example.com,371.267.0961,213176775738207,2024-07-24 +Resort Hotel,1,0,2017,June,22,2,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,242.82,0,1,Canceled,Nicholas Arellano,mclark@example.net,001-985-424-3394x676,4703791542794698133,2026-01-27 +City Hotel,0,4,2017,October,41,12,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,11.0,183.0,0,Transient,120.51,0,2,No-Show,Christopher Thomas,jennifer00@example.net,001-679-687-2340x2149,344512998486574,2024-08-08 +Resort Hotel,1,8,2017,December,49,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,110.9,1,0,Canceled,William Christian,figueroarachel@example.com,437-767-8739x074,6011174667503566,2025-12-05 +Resort Hotel,0,34,2017,April,15,10,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Group,73.24,1,1,Check-Out,Roger Johnson,chad17@example.org,811.756.8428x07928,3542288228991618,2025-06-01 +City Hotel,1,38,2017,March,12,20,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,E,E,0,No Deposit,27.0,179.0,0,Contract,58.45,0,2,Canceled,Faith Smith,pmoore@example.org,+1-345-938-3407x51382,4286654494691737,2024-08-08 +City Hotel,0,9,2017,December,51,20,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.83,0,1,Canceled,Dr. Mario Harris DDS,richard62@example.net,+1-696-863-9728x60425,4652451227594429,2025-08-05 +City Hotel,0,2,2017,February,6,6,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,51.74,0,1,Check-Out,Chase Young MD,matthewsbrittney@example.net,609.792.0299x0176,180068217402261,2024-11-08 +City Hotel,0,12,2017,December,50,10,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,63.6,1,2,Check-Out,John Ortiz,michaelbowman@example.com,699-976-3548,639066371357,2025-12-08 +City Hotel,0,7,2017,March,11,11,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,115.11,0,1,Check-Out,Todd Sherman,joshuadavis@example.com,(784)660-0846,4594097696500089484,2026-01-17 +City Hotel,0,2,2017,November,47,24,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.94,0,1,Check-Out,Beth Ellis,djuarez@example.org,3702850720,4453832102843108437,2025-05-19 +City Hotel,1,12,2017,September,39,25,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,217.71,0,2,Canceled,Jennifer Hatfield,msmith@example.org,+1-310-474-0383x514,4566891282606,2025-05-11 +City Hotel,0,16,2017,December,52,27,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient,88.09,0,1,Check-Out,Sarah Padilla,andrewcraig@example.org,001-398-432-1984x92134,3533900133908229,2024-06-15 +Resort Hotel,0,12,2017,August,32,6,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,235.17,0,1,Check-Out,Gregory Hale,hbrown@example.org,521-794-1989x21917,4179734060143493,2026-03-12 +City Hotel,0,16,2017,April,15,6,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,85.24,0,1,Check-Out,Christian Anderson,spearskelsey@example.net,(552)574-8077,4552298035582760917,2025-03-28 +City Hotel,0,91,2017,June,23,3,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.07,0,1,Check-Out,Dr. Lisa Ramos,kristen65@example.org,+1-664-876-2529x835,572263276931,2025-11-04 +City Hotel,0,30,2017,May,21,24,2,4,2,2.0,0,BB,NLD,Direct,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,251.77,0,2,Check-Out,Dr. Jessica Chase MD,cynthia88@example.org,+1-693-760-5254x6833,6586886517370996,2024-09-12 +Resort Hotel,1,110,2017,March,10,7,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,83.67,0,1,Canceled,Kara Gallegos,mgomez@example.com,+1-473-401-4800,4020772088066966,2025-06-29 +City Hotel,0,97,2017,March,10,7,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,106.52,0,0,Check-Out,Laura Fowler,brianwilliams@example.org,464.452.4236x129,3514659180365120,2025-03-31 +City Hotel,1,200,2017,December,52,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Contract,90.32,0,1,No-Show,Andrew Proctor,michaellowe@example.net,+1-567-969-5779x81955,2720816091295075,2025-01-02 +City Hotel,0,19,2017,March,11,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,101.91,0,1,Check-Out,Jordan Mason,patrick10@example.org,353.998.2455x9581,30391313304419,2025-12-02 +City Hotel,0,138,2017,January,3,16,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,99.37,1,0,Check-Out,Mr. Charles Young,ernest15@example.com,001-802-625-0337,3597095245426690,2026-01-27 +City Hotel,1,88,2017,March,10,8,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,82.72,0,0,Canceled,Robin Parker,shawn95@example.net,333.434.2824x006,3510123943970654,2024-10-05 +Resort Hotel,0,87,2017,April,15,10,2,5,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,135.87,0,1,Check-Out,Jason Stevenson,wolfelucas@example.net,424.991.4542x4891,4802542288582824687,2025-09-28 +City Hotel,1,13,2017,February,8,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,79.46,0,1,No-Show,Christian Rodriguez,wilsonvirginia@example.net,001-551-524-5793x81906,4519081647252,2024-11-19 +City Hotel,0,71,2017,December,50,12,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,0,Transient,137.0,0,1,Check-Out,Richard Reynolds,xaviereverett@example.org,935-668-6408,501866135996,2025-11-13 +City Hotel,1,141,2017,March,11,14,1,3,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,32.5,0,0,Canceled,Oscar Kelly,jenkinsjames@example.com,291.486.5076x476,180022994998884,2025-10-10 +City Hotel,0,71,2017,May,20,16,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,166.36,0,0,Check-Out,Kenneth Jackson,hobbsmelanie@example.com,(914)944-2847x8073,3525026886082424,2025-11-26 +City Hotel,0,0,2017,October,41,12,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.84,0,0,Check-Out,Mary Hill,david38@example.com,978.576.9959,4907304472915913392,2025-11-29 +Resort Hotel,1,142,2017,June,25,16,2,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,125.38,0,2,Canceled,Robert Miranda,cheyennegregory@example.net,8683885230,180017064673441,2024-05-03 +Resort Hotel,0,100,2017,March,10,4,1,6,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,C,0,No Deposit,176.0,179.0,0,Transient-Party,90.06,0,0,Check-Out,Michael Snyder,groman@example.com,(736)794-3690,3569986025657476,2025-05-12 +Resort Hotel,1,21,2017,October,42,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,78.46,0,0,Canceled,Joshua Schmidt,fwong@example.net,972.291.5674x249,4974465122914843463,2024-08-03 +Resort Hotel,0,24,2017,April,17,24,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,101.54,1,1,Check-Out,Aaron Barnett,hrobinson@example.com,779-781-4420x79713,3562903188133465,2026-03-01 +Resort Hotel,0,0,2017,December,52,28,1,5,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,240.0,179.0,0,Transient,0.6,0,1,Check-Out,Darin Byrd,davisrenee@example.net,858-761-0372,3532063119502911,2025-03-17 +City Hotel,0,163,2017,July,30,23,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,140.0,0,2,Check-Out,Kathryn Shields,emily98@example.net,(378)945-7636x810,30250409148041,2025-10-19 +Resort Hotel,1,152,2017,April,17,24,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,62.28,0,1,Canceled,Misty Rice,estradarobert@example.net,(285)860-6496,4981503247754409,2025-03-13 +City Hotel,0,46,2017,August,33,15,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,7.0,179.0,0,Transient,207.57,0,2,Check-Out,Robert Herrera,william64@example.net,001-593-572-2451x7911,4337897311430602,2025-06-20 +Resort Hotel,0,0,2017,August,32,5,4,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,Jennifer Cline MD,jimenezpeter@example.net,201-749-5131,371775580998035,2025-02-03 +City Hotel,1,15,2017,October,41,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.59,0,0,Canceled,Rose Kaiser,katie04@example.org,001-363-478-0157x104,4800219041940784,2024-10-20 +City Hotel,0,54,2017,August,35,31,1,5,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,213.57,1,2,Check-Out,Christopher Humphrey,cabrerarobert@example.org,943.387.0266x49978,4614786146609809,2025-03-05 +Resort Hotel,0,0,2017,July,29,22,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient-Party,2.94,0,1,Check-Out,Matthew Ramirez,joshuabrown@example.com,001-647-949-4336x583,3523891852871882,2025-06-13 +City Hotel,1,16,2017,May,21,20,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient-Party,77.88,0,0,Canceled,Charlotte Roy,gwright@example.org,001-565-997-4834x2083,345242660509318,2025-06-07 +Resort Hotel,0,141,2017,July,31,30,4,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient-Party,159.79,1,0,Check-Out,James Collins,jeffreywells@example.com,001-539-644-2131x834,4966043301640292,2025-02-25 +Resort Hotel,0,14,2017,January,3,14,1,3,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,252.0,1,2,Check-Out,Kelsey Smith,simpsonbarbara@example.com,687-916-5413,2246059985574736,2024-10-11 +City Hotel,0,154,2017,April,14,4,2,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,130.75,0,1,Check-Out,Kathleen Garcia,danielle99@example.net,707.251.7920,4297522660859,2024-05-08 +Resort Hotel,0,4,2017,February,9,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,138.0,179.0,0,Transient,37.28,0,1,Check-Out,Shelia Cruz,nathanconway@example.com,(898)399-1191,3559027937749143,2024-07-18 +City Hotel,0,159,2017,May,22,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,86.74,0,0,Check-Out,Mrs. Amy Hale,alisha31@example.org,(208)464-5753,676262986596,2025-11-04 +City Hotel,1,14,2017,July,28,10,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.18,0,1,Canceled,Jeremy Clayton,kathy75@example.net,+1-845-395-8427,4707739200064669914,2024-05-06 +City Hotel,0,55,2017,July,29,14,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.06,0,1,Check-Out,Susan Williams,marshevelyn@example.com,7648967043,377848878944377,2025-04-08 +Resort Hotel,1,327,2017,July,31,30,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,239.0,179.0,0,Transient,249.59,0,2,Canceled,Donald Mays,sfowler@example.com,+1-336-753-3657x884,4797008562669,2024-09-07 +Resort Hotel,1,220,2017,July,30,23,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,247.23,0,0,Canceled,Thomas Wells,jessica01@example.net,(519)480-0855x1184,502094769747,2024-11-13 +Resort Hotel,0,10,2017,November,45,7,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,113.13,1,0,Check-Out,Brian Vaughn,rachel91@example.org,420.604.9082x1012,4632484539477832040,2025-12-26 +Resort Hotel,0,256,2017,October,42,15,2,5,1,0.0,0,SC,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,222.0,0,Transient,113.25,0,0,Check-Out,Leah Owens,tonycarroll@example.com,(462)773-8874x152,6590711635536217,2025-09-06 +City Hotel,1,45,2017,September,37,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,103.56,0,0,Canceled,Jennifer Norman,kschaefer@example.com,+1-610-230-0312x343,3549043380189979,2025-07-10 +City Hotel,0,59,2017,October,42,15,1,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,101.89,1,1,Check-Out,Mark Hughes,danielhughes@example.org,952.864.0991,4824467271652476856,2024-12-05 +City Hotel,1,300,2017,May,21,27,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,18,Transient,81.4,0,0,Canceled,Paige Case,morgansteven@example.com,966-475-0996x3758,6011086205176004,2025-08-12 +Resort Hotel,0,13,2017,January,2,4,0,3,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,1,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,48.47,0,2,Check-Out,Lisa Potter,bellkeith@example.org,+1-477-729-3192x918,3504946231144634,2025-04-22 +City Hotel,0,10,2017,May,21,22,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,248.0,0,Transient,130.07,0,1,Check-Out,Jordan Garcia,mark13@example.com,001-617-734-4377x80717,3573369336225552,2024-08-11 +City Hotel,1,290,2017,October,40,5,2,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,96.7,0,0,Canceled,Sarah Fields,kristin30@example.org,001-556-575-7516,374324076673286,2024-11-10 +City Hotel,0,298,2017,July,27,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,74.19,0,0,Check-Out,Erin Diaz,rowen@example.com,+1-558-311-0118,213162571182279,2024-04-15 +City Hotel,1,0,2017,May,21,23,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,106.75,0,1,No-Show,Bryan Harris,nicole96@example.com,319.721.1803,374176421480175,2024-10-04 +City Hotel,0,102,2017,February,9,26,0,3,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,105.55,0,0,Check-Out,Danny Moreno,kyleyoung@example.net,322.421.0434x695,6573914347357036,2024-07-08 +City Hotel,1,303,2017,June,26,28,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.82,0,0,Canceled,Alison Livingston,ccamacho@example.org,541.357.6489,4507210895158199,2025-02-02 +Resort Hotel,0,43,2017,October,43,23,2,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,169.0,179.0,0,Transient-Party,48.21,0,0,Check-Out,Megan Hood,cheryl79@example.org,001-340-987-4858x59853,4575042450778563902,2025-12-26 +City Hotel,0,88,2017,June,24,13,1,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,112.65,0,1,Check-Out,April Taylor,gloverfrancisco@example.com,8233464229,374518246690209,2026-03-25 +Resort Hotel,1,256,2017,June,24,11,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,242.0,179.0,0,Transient,132.92,1,1,Canceled,Philip Espinoza,qnorton@example.org,970.930.9104x7618,4618929550765875,2025-11-02 +Resort Hotel,0,0,2017,December,52,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,90.04,0,1,Check-Out,Tony Rodriguez,myerswhitney@example.org,211-786-7284,4343838580035898,2024-04-29 +City Hotel,1,150,2017,August,32,5,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,145.95,0,0,Canceled,Michael Rodriguez,robert64@example.org,4447919976,346648432035318,2025-04-22 +City Hotel,0,313,2017,October,42,16,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.72,0,0,Check-Out,Vanessa Moore,scottjessica@example.com,(500)606-9489,2545791073299093,2024-05-19 +Resort Hotel,0,189,2017,July,27,2,0,4,2,0.0,0,Undefined,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,215.35,0,0,Check-Out,Megan Koch,ncantu@example.com,001-777-996-1692x08796,4687899753264560,2026-02-18 +Resort Hotel,0,2,2017,December,51,23,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,64.24,0,0,Check-Out,Victoria King,glucas@example.com,(925)445-9670,349464483506620,2024-07-03 +City Hotel,1,398,2017,May,22,27,1,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Refundable,29.0,179.0,0,Transient-Party,100.28,0,0,Canceled,Bryan Gonzalez MD,acruz@example.com,+1-699-966-5116,4243424704567107,2025-10-23 +City Hotel,0,47,2017,April,14,1,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.33,0,1,Check-Out,Jermaine Barnes,smithjoan@example.org,(430)451-7428,4615609906820108557,2024-10-08 +City Hotel,0,13,2017,March,11,13,0,1,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,B,2,No Deposit,13.0,179.0,0,Transient,100.52,0,1,Check-Out,Stephanie Smith,tammypierce@example.org,397-971-8887,561055788229,2024-11-19 +City Hotel,0,2,2017,October,42,17,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient,112.48,0,1,Check-Out,Kimberly Nunez,kevinjones@example.net,+1-666-288-2057x271,3590834132583206,2024-10-08 +City Hotel,0,0,2017,March,12,16,0,2,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,51.82,0,2,Check-Out,Holly Bell,bentleyalexis@example.net,4073133400,501894290672,2026-03-04 +City Hotel,1,23,2017,April,18,27,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,118.23,0,0,Canceled,Kathryn Smith,jessicadiaz@example.org,802.443.5000x58815,3545379113543338,2025-08-20 +City Hotel,1,38,2017,September,38,22,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.85,0,0,Canceled,Maureen Carter,larryross@example.net,001-231-776-1840x52216,4135257956162859,2025-05-05 +Resort Hotel,0,184,2017,October,42,17,1,3,2,0.0,0,HB,DEU,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,114.7,0,0,Check-Out,Brandy Walter,seth28@example.org,(600)646-3317x44599,4172038904986357,2025-12-30 +City Hotel,1,36,2017,April,16,14,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.11,0,0,Canceled,Carla Holloway,owhite@example.com,6174170665,30184187079252,2024-11-04 +City Hotel,1,144,2017,August,35,30,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.34,0,2,Canceled,Andrew Holder,mary56@example.com,001-829-531-7827x395,060496682265,2025-01-24 +City Hotel,0,41,2017,February,9,27,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,1,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,54.03,0,2,Check-Out,Pamela Arnold,tbrown@example.net,001-548-459-6244x3863,6526494264922771,2024-12-15 +City Hotel,1,0,2017,October,43,26,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,P,P,0,No Deposit,12.0,331.0,0,Transient,2.83,0,0,Canceled,Debbie Estrada,uhunt@example.com,425-417-0066x3994,3500893151352868,2024-07-17 +Resort Hotel,0,77,2017,December,52,23,1,5,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,D,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,54.98,0,0,Check-Out,Robert Fleming,kadams@example.com,001-243-818-2455x632,2240597858648554,2025-05-12 +Resort Hotel,0,53,2017,August,34,24,2,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,59.23,0,2,Check-Out,Jeffrey Vaughn,frank82@example.com,345.670.4840,371537541118248,2025-08-06 +Resort Hotel,1,234,2017,August,33,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,149.27,0,0,Canceled,Samuel Rocha,zamorakimberly@example.org,+1-949-391-8002,3516350293728721,2025-01-12 +Resort Hotel,0,2,2017,January,2,12,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,46.74,1,1,Check-Out,Paul Rich,suzannegarrett@example.com,272.308.1285,30527813835531,2025-09-10 +Resort Hotel,0,51,2017,August,32,9,2,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,252.0,1,1,Check-Out,Frank Fitzgerald,qholmes@example.net,524.948.1052x393,4561232425906932,2026-02-03 +Resort Hotel,0,222,2017,June,24,12,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,73.56,0,0,Check-Out,Stephanie Colon,frederickowens@example.org,001-392-308-5162x09489,30451588107754,2025-04-13 +City Hotel,1,113,2017,May,21,21,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,75,Transient,104.24,0,0,Canceled,Aaron Pennington,melvin79@example.com,922.632.3983x99370,2282528513892419,2024-04-22 +Resort Hotel,0,135,2017,April,14,6,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,85.09,0,2,Check-Out,Jack Krause,nthomas@example.net,(796)366-3907,213101282049815,2025-10-05 +City Hotel,0,0,2017,March,13,25,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,181.53,1,2,Check-Out,Mariah Wang,ahernandez@example.net,+1-615-957-9834,4135307106229,2025-04-14 +City Hotel,1,201,2017,September,36,8,2,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,76.34,0,0,Canceled,Brooke Allison,lindsaypark@example.com,+1-998-693-3996x789,630484335371,2024-07-25 +Resort Hotel,0,51,2017,April,15,12,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,92.63,0,0,Check-Out,Melissa Harvey,yryan@example.org,626-528-3857,30337298774977,2025-07-21 +City Hotel,0,21,2017,September,37,12,2,1,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,165.0,179.0,0,Contract,107.9,0,2,Check-Out,Laura Roberts,cynthia55@example.org,001-349-201-3498x134,3577976762623260,2026-03-16 +City Hotel,0,114,2017,August,32,10,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,142.01,0,1,Check-Out,Kathy Robinson,xwhite@example.net,(636)882-4350x947,342020559866012,2026-01-06 +City Hotel,1,13,2017,December,2,30,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,248.22,0,2,Canceled,Thomas Rodgers,ashleyestrada@example.org,6737033894,4228679193454898,2024-07-19 +City Hotel,1,174,2017,July,28,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,106.04,0,0,Canceled,Rhonda Cervantes,lindsey36@example.org,001-454-446-7603x169,4855679614162187,2025-08-16 +City Hotel,0,14,2017,January,4,23,0,2,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.29,0,1,Check-Out,Darryl Hernandez,pwade@example.com,(686)626-2764,4311970073638,2024-07-24 +City Hotel,1,157,2017,July,27,2,1,2,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,71.8,0,0,Canceled,Benjamin Alvarez,dmiller@example.com,+1-206-895-7635x654,180076258904269,2026-01-02 +City Hotel,0,10,2017,July,28,14,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.58,0,2,Check-Out,Robert Pierce,allenallison@example.com,993.961.0858,676385820789,2024-07-30 +City Hotel,0,0,2017,March,11,9,2,5,1,0.0,0,BB,DEU,Direct,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,177.05,0,0,Check-Out,Earl Marquez,candice02@example.net,+1-641-465-7699x5074,4759226254994847,2025-06-17 +City Hotel,0,52,2017,June,24,8,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,109.8,0,1,Check-Out,Michael Walls,vasquezjames@example.org,222.697.9773x100,4424584032307707,2026-01-08 +City Hotel,0,40,2017,March,10,10,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.42,0,1,Check-Out,Crystal Pierce,campbellkelly@example.net,352-760-5301,3572838962729476,2025-11-19 +Resort Hotel,0,87,2017,March,13,25,0,3,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,130.33,0,0,Check-Out,Gabriel Wilkins,joanna16@example.org,422.896.1342x68235,4632141645206,2026-02-14 +City Hotel,0,38,2017,October,42,15,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,223.0,0,Transient-Party,64.5,0,1,Check-Out,Desiree Jimenez,jeremywatson@example.net,7518240056,2259033964984558,2024-11-17 +City Hotel,0,7,2017,July,27,6,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.35,0,1,Check-Out,Wyatt Henry,kathleenlee@example.net,566.910.9386x6769,345679538634788,2024-07-31 +City Hotel,0,0,2017,December,50,16,0,1,2,0.0,0,BB,BRA,Online TA,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,94.14,0,1,Check-Out,Lauren Coleman,travis74@example.com,964.784.6391,30423424055067,2024-04-15 +Resort Hotel,0,26,2017,December,49,4,2,2,2,0.0,0,Undefined,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,301.0,179.0,0,Group,109.12,0,1,Check-Out,Erica Wright,marie25@example.net,486.599.4990x4427,3517888695775732,2025-04-03 +City Hotel,0,7,2017,April,16,16,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,172.0,0,Transient,64.86,0,0,Check-Out,Patrick Rocha,khenson@example.org,833.285.4228x573,36215227401736,2025-05-06 +City Hotel,0,47,2017,May,20,16,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.62,0,0,Check-Out,Joshua Jones,lmoody@example.org,(407)569-3480x472,4592623387360568,2024-12-30 +City Hotel,0,14,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,17.0,179.0,0,Transient,138.1,1,0,Check-Out,Johnathan Aguirre,sarah93@example.com,(499)692-4973,4836783969305856,2025-10-29 +Resort Hotel,0,1,2017,February,6,8,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,46.41,0,0,Check-Out,Kevin Hubbard,jason39@example.net,664-821-8698x0895,4727093230724,2026-02-02 +City Hotel,0,250,2017,October,42,15,2,7,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,100.42,0,0,Check-Out,Mr. Jack Moore PhD,cristian46@example.net,322-254-4385,213104511634779,2025-10-11 +Resort Hotel,1,147,2017,August,32,12,3,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,100.08,0,0,Canceled,Pamela Burnett,dmills@example.net,001-442-609-2414,4131425309597592,2025-12-14 +City Hotel,1,155,2017,May,19,8,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.37,0,1,Canceled,Darren Reyes,ewingchristina@example.org,(245)793-7330,4956760886930663,2025-07-04 +City Hotel,0,2,2017,March,12,20,0,2,1,0.0,0,SC,AUT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,94.15,0,1,Check-Out,Richard Graham,erikagregory@example.com,(383)571-5506x5384,4115166898876,2024-09-01 +Resort Hotel,0,11,2017,February,7,12,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,135.0,179.0,0,Transient-Party,40.56,0,0,Check-Out,Wanda Ingram,jason66@example.com,+1-563-436-0021,180023453077954,2025-01-11 +City Hotel,0,4,2017,September,38,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,73.0,0,Transient-Party,62.8,0,0,Check-Out,Joel Thomas,bishopjohn@example.net,295-467-8678x8122,3547839589203921,2025-02-07 +Resort Hotel,0,27,2017,October,42,16,0,1,1,0.0,0,HB,ESP,Online TA,Direct,0,0,0,C,H,0,No Deposit,241.0,179.0,0,Transient,138.03,0,1,Check-Out,Jeremy Johnson,munozryan@example.net,(271)536-9181,213195620940446,2024-08-24 +City Hotel,1,65,2017,August,33,12,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,219.63,0,0,Canceled,Ronald Marshall,sonyacoleman@example.com,436-472-7676x776,213186883521080,2025-09-01 +City Hotel,1,42,2017,August,33,17,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.45,0,0,Canceled,Robert Fischer,vbenton@example.com,700.485.9514x72211,180007147789686,2025-05-01 +Resort Hotel,1,284,2017,July,29,16,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,169.0,179.0,0,Transient-Party,95.96,0,0,Canceled,Dr. Paul Olson,jason75@example.net,924.562.3959,3530751569913677,2024-06-19 +City Hotel,0,15,2017,October,42,16,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,109.7,0,1,Check-Out,Cindy Tucker,adrian08@example.net,439-271-5485,4312482624355,2026-03-27 +City Hotel,0,99,2017,May,20,17,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.77,0,0,Check-Out,Darren Smith,ubrown@example.net,640-228-6816x5533,4086782792308,2025-02-25 +Resort Hotel,0,11,2017,March,12,20,2,3,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,325.0,179.0,0,Transient,84.96,1,0,Check-Out,Jeremy Nicholson,phernandez@example.net,786-354-0188x61054,4057962110068462,2024-07-03 +Resort Hotel,0,20,2017,May,22,26,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,151.56,0,1,Check-Out,Kathy Nguyen,lynn28@example.net,617.328.6523x27319,501888337992,2024-07-28 +City Hotel,0,28,2017,February,8,20,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,19,Transient,71.06,0,1,Check-Out,Christopher Williams,randall15@example.net,483.836.5770,3543299801135878,2024-10-18 +Resort Hotel,0,8,2017,May,20,13,0,10,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,102.0,179.0,0,Transient,134.55,0,1,Check-Out,Evelyn Townsend,oflores@example.net,+1-844-711-4425,4618792393147,2024-04-19 +Resort Hotel,1,185,2017,August,31,3,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,212.51,0,0,Canceled,Joseph Zavala,stevensonmichael@example.org,886.974.3784,6594890417653428,2025-06-28 +City Hotel,1,152,2017,October,43,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,1,A,A,0,Non Refund,75.0,179.0,75,Transient,103.8,0,0,Canceled,Charlene Black,pdiaz@example.net,(909)650-6495,6011669611572377,2024-08-09 +City Hotel,1,0,2017,November,46,11,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,0.5099000000000001,0,0,Canceled,Angel Butler,cweeks@example.org,001-759-920-7703,3547801324928790,2024-12-10 +City Hotel,0,11,2017,January,2,5,0,3,1,1.0,0,BB,,Direct,Direct,0,0,1,F,F,1,No Deposit,11.0,179.0,0,Transient,218.22,0,1,Check-Out,Adam Delgado,garycook@example.net,(306)875-6166,4892842077899,2025-06-01 +City Hotel,1,414,2017,March,10,8,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,19,Transient,106.74,0,0,Canceled,Daniel Mendoza,jasongarcia@example.org,001-856-635-1340x839,4169611411099685,2026-03-05 +Resort Hotel,0,1,2017,October,42,16,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,229.75,1,0,Check-Out,Ruben Clark,davidbuchanan@example.com,(979)481-6711x461,501892854958,2025-07-13 +City Hotel,0,109,2017,May,22,27,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Contract,131.19,0,2,Check-Out,Nicholas Rasmussen,johnfischer@example.org,906-320-8830,3581997300211925,2024-10-11 +City Hotel,0,156,2017,June,26,27,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient,122.64,0,0,Check-Out,Jason Taylor,rogerschristopher@example.com,+1-270-737-7780,3520710380867456,2026-01-09 +City Hotel,0,2,2017,October,42,19,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,61.57,0,1,Check-Out,Claudia Rice,douglas34@example.org,(835)274-0659x277,372661554416296,2024-04-06 +City Hotel,0,7,2017,April,17,25,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.67,0,1,Check-Out,Sara Lawson,hudsonnicholas@example.net,001-961-824-2432x4791,6561329123048077,2025-06-02 +Resort Hotel,0,0,2017,May,20,11,1,0,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,C,0,No Deposit,248.0,179.0,0,Transient,105.7,1,0,Check-Out,Michael Johnson,ncarter@example.net,812-896-6264,4507206130990149129,2024-06-22 +City Hotel,0,4,2017,July,31,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,8.0,179.0,0,Transient,64.24,0,2,Check-Out,Thomas Mills,barneskelly@example.net,207-569-0664x33555,4626221358002382,2025-04-30 +City Hotel,1,92,2017,June,23,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,114.09,0,1,No-Show,Michael Thompson,margaret62@example.com,7807981372,3556942054659813,2025-08-28 +City Hotel,0,141,2017,April,16,17,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,245.66,0,0,Check-Out,Penny Waters,jacquelinewilson@example.org,(219)478-4818,501824996018,2025-01-03 +City Hotel,0,14,2017,July,29,19,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,174.67,1,3,Check-Out,Gregory Johnson,ryan34@example.org,+1-731-597-8676x248,3584018821180379,2026-03-25 +City Hotel,1,381,2017,August,31,3,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,167.0,179.0,0,Transient,112.88,0,0,Canceled,Sandra Ingram,santanarussell@example.com,001-884-555-8951x92165,630454785894,2025-06-15 +Resort Hotel,0,325,2017,October,43,27,1,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,10.0,179.0,0,Transient,123.98,1,1,Check-Out,Kenneth Harmon,karen12@example.net,(208)342-9076x5561,30330323401138,2024-11-07 +City Hotel,0,16,2017,May,18,2,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,119.49,0,0,Check-Out,Erin Nash,leonardcarrie@example.net,339-619-5350,4376841211991646,2026-01-27 +City Hotel,0,2,2017,November,48,26,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,49.16,0,3,Check-Out,David Smith,alanlowe@example.com,422-866-3594x252,4477280197442688,2024-06-08 +Resort Hotel,0,39,2017,November,48,27,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,103.1,1,2,Check-Out,Matthew Morris,joshuabrown@example.org,(709)287-6473,6534497654607233,2025-11-12 +Resort Hotel,1,0,2017,April,17,22,1,0,3,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,2,No Deposit,16.0,331.0,0,Transient,5.36,0,0,Canceled,Norman Porter,robert48@example.org,+1-670-330-4797x964,3546111743119364,2025-02-16 +City Hotel,0,136,2017,March,13,29,0,5,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,44.61,0,1,Check-Out,Kathryn Morgan,daniel45@example.com,947.503.6783x88680,676134429130,2024-10-23 +Resort Hotel,0,7,2017,April,15,12,2,4,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,17.0,331.0,0,Transient-Party,86.05,0,0,Check-Out,Jeffrey Jones,lisa39@example.com,+1-905-561-1125x2578,376223505486666,2025-10-18 +City Hotel,1,159,2017,July,29,19,0,2,3,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,220.54,0,1,Canceled,Alyssa Guerra,howardspencer@example.com,463-587-3681x97245,4148601036392280,2026-01-06 +City Hotel,0,100,2017,December,2,31,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,82.77,0,1,Check-Out,Bridget White,perryvictoria@example.net,(642)751-9897x1917,4893290078692000,2025-02-01 +City Hotel,1,146,2017,July,29,18,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,131.13,0,0,Canceled,James Hood,yorkjames@example.org,+1-643-729-4099x5757,4542970452613194,2024-12-22 +City Hotel,0,160,2017,July,27,1,0,3,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,110.48,0,2,Check-Out,Daniel Brown,ryan53@example.net,5496238768,4487656720524682296,2025-05-09 +City Hotel,0,65,2017,December,52,30,1,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,120.26,0,0,Check-Out,Tony Thomas,tuckerkristina@example.net,554.887.0627x85366,3571906824968920,2026-01-11 +City Hotel,0,41,2017,August,33,12,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,154.9,0,2,Check-Out,Philip Huff,brendaduncan@example.com,469.638.2359,6011733486911662,2025-03-17 +Resort Hotel,0,112,2017,December,51,22,1,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient-Party,66.26,0,0,Check-Out,Marilyn Henry,wendy15@example.com,+1-673-907-5095x016,4836186605112,2024-06-12 +City Hotel,1,161,2017,June,24,12,1,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,24.0,179.0,0,Contract,104.17,0,0,Canceled,Tracy Rodriguez,sabrinahall@example.com,001-747-927-5245x3839,4609620116421653955,2024-07-17 +City Hotel,0,133,2017,April,18,30,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,129.9,0,1,Check-Out,Richard Moore,xmccoy@example.com,770-524-1057x32062,4956081255423,2025-01-19 +Resort Hotel,0,27,2017,April,17,23,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,106.64,1,2,Check-Out,Jacqueline Roberts,hhunter@example.org,+1-409-915-8275x848,4705901399502615,2025-01-03 +City Hotel,1,158,2017,April,14,4,1,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,77.27,0,0,Canceled,Jennifer Tran,stefanierose@example.net,283.452.4843,180084490060049,2024-09-17 +City Hotel,0,390,2017,August,32,8,0,2,2,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,101.4,0,1,Check-Out,Christopher Garcia,lrogers@example.net,7852609278,4110407179487521,2025-06-15 +City Hotel,0,51,2017,August,33,14,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,195.36,0,1,Check-Out,Kenneth Clark,steinjoan@example.com,+1-922-650-0749x129,347726639918665,2025-11-29 +Resort Hotel,1,85,2017,December,2,30,0,3,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,212.27,0,0,Canceled,Cassidy Johnson,imorrison@example.org,563-456-4948x729,6011841952173350,2026-01-21 +Resort Hotel,1,32,2017,March,10,2,1,0,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,281.0,179.0,0,Transient,47.1,0,1,Canceled,Jason Woodward,amandalittle@example.org,586-575-0938,4251248695544415593,2025-01-04 +Resort Hotel,0,13,2017,July,28,8,1,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,F,C,0,No Deposit,239.0,179.0,0,Transient,224.69,1,1,Check-Out,Krista Davis,dennis87@example.com,375.659.6025x3492,4022607931638165,2024-06-07 +City Hotel,0,17,2017,June,26,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,16.0,45.0,0,Transient,97.47,0,0,Check-Out,Deborah Gregory,yparsons@example.com,492.212.3996,676262550509,2025-02-09 +City Hotel,1,158,2017,February,6,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,80.24,0,0,Canceled,Ronald Brown,grobinson@example.com,(502)410-4244x064,6011745913665950,2024-07-02 +City Hotel,0,161,2017,March,10,9,0,2,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,35.0,179.0,0,Transient,132.68,0,0,Check-Out,Sheena Hayes,david14@example.com,+1-205-299-6310,6546871705363564,2024-04-19 +City Hotel,0,11,2017,March,12,23,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,93.38,0,0,Check-Out,Olivia Dorsey,umoyer@example.org,686-671-2971,30505206525950,2024-04-29 +Resort Hotel,0,18,2017,January,2,8,4,10,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,92.34,0,1,Check-Out,Angela Bradshaw,owensjennifer@example.org,001-350-650-3109x7703,346014692678786,2025-09-07 +Resort Hotel,0,142,2017,June,24,13,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,248.0,179.0,0,Transient,144.65,1,1,Check-Out,Richard Beasley,shelly20@example.org,+1-458-211-9422,3572482168282178,2025-03-17 +City Hotel,0,1,2017,October,44,30,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,48.04,0,0,Check-Out,Teresa Carter,antonio83@example.com,001-559-887-2656x37935,501882656991,2025-02-22 +City Hotel,1,12,2017,June,24,11,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.06,0,3,Canceled,Cody Conley,ejohnson@example.net,001-456-655-7707x048,6536798060236527,2026-02-06 +Resort Hotel,0,14,2017,October,43,22,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,304.0,179.0,0,Transient,79.12,0,0,Check-Out,Thomas Bennett,kyle64@example.org,924.200.8637x139,4615768008952120,2025-02-25 +City Hotel,0,191,2017,October,42,19,2,2,2,2.0,0,BB,FRA,Direct,TA/TO,0,0,0,F,F,2,No Deposit,13.0,179.0,0,Transient,124.51,0,0,Canceled,Brian Stokes,cochranmichael@example.net,609.682.5402x926,213126426892176,2025-12-10 +Resort Hotel,0,8,2017,April,17,26,2,0,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,131.83,0,1,Check-Out,Donald Wallace,natashadouglas@example.net,+1-980-592-1488,4016473907117017,2025-01-24 +City Hotel,0,21,2017,September,37,9,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,6.0,179.0,0,Transient,172.54,0,1,Check-Out,Sydney Smith,johnsonomar@example.net,+1-664-297-0905,4525754945938496,2025-11-05 +Resort Hotel,1,179,2017,October,42,19,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,2,No Deposit,83.0,179.0,0,Transient,45.77,0,0,Canceled,Justin Figueroa,christophermoore@example.org,518.938.2326x6684,4332810400070,2024-06-02 +City Hotel,1,54,2017,March,13,27,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,62.74,0,0,Canceled,Erika Brown,stephaniemitchell@example.org,928-621-4144x357,573289966851,2026-01-05 +City Hotel,1,163,2017,July,29,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,123.14,0,0,Canceled,Lisa Salazar,sjames@example.net,4842719296,3581635375760026,2025-08-15 +Resort Hotel,0,19,2017,August,32,12,2,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,25.0,179.0,0,Transient,1.91,0,0,Check-Out,Mrs. Melissa Robinson,knelson@example.net,(291)954-1081x811,180000296536388,2025-07-11 +City Hotel,0,93,2017,November,47,23,2,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,144.37,0,1,Check-Out,Bethany Haynes,farrellbrenda@example.com,625-439-4806x64634,3592680814841505,2024-03-29 +Resort Hotel,0,1,2017,July,28,8,3,6,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,246.0,179.0,0,Transient,223.89,0,2,Check-Out,Katherine Weaver MD,walshstephen@example.com,+1-508-327-5421x1954,348150723301804,2024-11-07 +Resort Hotel,0,10,2017,June,23,7,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,144.02,0,1,Check-Out,Bailey Hughes,justinthomas@example.net,001-567-730-2434x48287,213161189087235,2025-06-18 +City Hotel,0,21,2017,March,13,23,1,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,105.64,0,0,Check-Out,Anthony Proctor,klara@example.org,7698027491,4039368668282534,2024-08-24 +Resort Hotel,1,48,2017,May,21,22,2,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,116.22,0,3,No-Show,Jessica Martinez,rhardin@example.net,001-559-509-0742x567,3580311684255279,2026-01-28 +Resort Hotel,1,0,2017,August,33,18,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,214.58,0,1,Canceled,Jason Foster,garytorres@example.net,(883)495-5261,6011688959678380,2025-05-17 +Resort Hotel,0,134,2017,July,28,9,1,5,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,E,1,No Deposit,15.0,179.0,0,Transient,84.77,0,1,Check-Out,Christopher Roy,flee@example.com,(751)644-0609x321,180002684239872,2024-10-11 +City Hotel,0,74,2017,March,13,27,2,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,122.0,179.0,0,Transient,72.88,0,1,Check-Out,Elizabeth Rowland,craiggrant@example.com,497-283-9598,4995556522057868,2025-04-16 +City Hotel,0,375,2017,October,42,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,59.64,0,0,Check-Out,Deborah Curry,gwalsh@example.net,6899057555,30320023667963,2025-11-05 +City Hotel,0,16,2017,November,45,10,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.43,0,2,Check-Out,Allison Sharp,qhodge@example.com,+1-217-402-0317x482,4337651746823017654,2024-10-31 +City Hotel,0,141,2017,August,32,8,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.46,0,2,Check-Out,Kimberly Turner,julie07@example.org,(747)453-6701x809,213101542463012,2025-09-23 +City Hotel,0,13,2017,July,28,9,0,1,3,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,117.29,0,1,Check-Out,Paul Chaney,wendywright@example.com,503.801.1449,2231780054234095,2024-04-01 +City Hotel,1,158,2017,May,21,26,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,160.15,0,0,Canceled,Sarah Smith,michael61@example.com,+1-705-756-1271x94726,30336483376432,2024-09-25 +City Hotel,0,90,2017,October,43,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,121.0,179.0,0,Transient,91.18,0,0,Check-Out,Adam Espinoza,sandraallison@example.com,+1-226-381-9667,372501147739137,2025-08-25 +City Hotel,0,388,2017,September,38,20,0,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.31,0,0,Check-Out,Tyler Richard,laurazamora@example.net,(964)730-8338x06198,213166602312029,2025-02-15 +Resort Hotel,0,6,2017,July,27,6,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,243.0,179.0,0,Transient,168.89,1,3,Check-Out,Carol Ingram,jessicabenson@example.net,001-266-720-3195x39917,4586580216211323914,2024-10-10 +Resort Hotel,0,9,2017,August,33,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,252.0,1,0,Check-Out,Paula Blackburn,justin81@example.net,692.259.1069x9693,2269746970503181,2025-07-05 +Resort Hotel,1,251,2017,July,27,4,2,6,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,B,1,No Deposit,32.0,179.0,0,Transient-Party,72.38,0,0,Canceled,Cynthia Johnson,mary12@example.org,001-957-511-9225x5413,213167487219628,2025-09-19 +City Hotel,1,115,2017,July,30,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,110.58,0,2,Canceled,Kenneth Johnson,lgibson@example.com,7688374391,4248773161329,2025-07-01 +City Hotel,0,101,2017,May,20,16,2,4,2,0.0,0,BB,IRL,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,155.12,0,0,Check-Out,Steven Bailey,hjohnson@example.com,460.689.1034x5996,30471103760317,2024-06-03 +City Hotel,0,51,2017,January,2,9,1,1,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,141.91,1,3,Check-Out,Daniel Smith,riosalexandria@example.com,488.335.5199x18139,180097932233495,2024-08-24 +City Hotel,0,83,2017,June,23,9,0,1,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,D,1,No Deposit,13.0,181.0,0,Transient,129.41,0,1,Check-Out,Hunter Williams,robinsonfrancisco@example.net,461.481.6015x11520,180073520509307,2024-06-13 +City Hotel,0,3,2017,July,28,6,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,F,0,No Deposit,15.0,179.0,0,Transient,208.24,0,3,Check-Out,Susan Trujillo,lgonzalez@example.net,+1-446-416-9705,6532670447259478,2026-02-14 +Resort Hotel,0,12,2017,March,11,16,0,3,1,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,C,1,No Deposit,242.0,179.0,0,Transient,85.66,1,1,Check-Out,William Wilson,stephanie17@example.com,(807)932-9491,375297457678117,2024-05-23 +Resort Hotel,0,131,2017,October,40,1,2,7,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,77.51,0,0,Check-Out,Courtney Morgan,nharper@example.net,001-800-327-7595x121,3556286395722546,2024-07-29 +City Hotel,0,64,2017,March,10,4,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,44.48,0,2,Check-Out,Mitchell Merritt,qhuffman@example.org,460.304.9131x2545,180059137319065,2025-11-22 +Resort Hotel,0,23,2017,May,18,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,62.23,1,1,Canceled,Jared Gordon,barbarawoodard@example.net,572.326.0372,2416933050434246,2025-04-04 +Resort Hotel,0,0,2017,January,3,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,62.95,0,1,Check-Out,Kristina Neal,melissa08@example.com,(499)841-5661x9856,4543097943758591,2024-12-20 +City Hotel,0,169,2017,June,23,4,0,4,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,118.0,179.0,0,Transient,127.18,0,1,Canceled,Cory Parsons,eric01@example.org,+1-547-375-9420x3507,582007777318,2025-11-13 +City Hotel,1,148,2017,April,15,12,2,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.59,0,0,Canceled,Christopher Horn,timothymiller@example.com,(200)873-6545,3578984235310282,2025-05-06 +City Hotel,1,194,2017,June,26,26,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,96.8,0,0,Canceled,Christopher Simmons,christopheranderson@example.net,+1-856-531-0283,2514579234090742,2025-07-22 +Resort Hotel,0,21,2017,June,26,23,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Check-Out,Joshua Reed,uwilliams@example.com,578-417-7153,4831081047362055,2025-08-28 +City Hotel,0,45,2017,August,32,8,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,234.0,0,2,Check-Out,Kimberly Brewer,whitesarah@example.com,(804)476-3580x90449,6599554694321498,2025-09-28 +City Hotel,0,29,2017,January,2,3,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,90.96,0,1,Check-Out,Ronald Kramer,jennifer20@example.net,(312)803-2945,30125545328816,2024-03-27 +City Hotel,0,0,2017,January,2,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,35.58,0,1,Check-Out,Ann Hobbs,phillipsdave@example.com,636.883.9313x3577,4555655915149120558,2026-01-13 +Resort Hotel,0,19,2017,January,2,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,36.78,0,1,Check-Out,Richard Potter,amanda50@example.org,624.206.0892x6631,4290113985624313,2024-06-18 +Resort Hotel,0,38,2017,August,35,27,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,252.0,1,3,Check-Out,Terry Carr,christopher68@example.com,001-429-916-0340x346,30386102139927,2025-04-19 +City Hotel,0,112,2017,September,36,7,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,103.38,0,1,Check-Out,Tiffany Wilson,floreskayla@example.net,(564)897-7999x9901,4728619111520663071,2024-11-27 +Resort Hotel,0,208,2017,January,5,27,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,65.79,1,0,Check-Out,Jon Gonzalez,martinscott@example.org,(324)827-3836x2402,6011107603323848,2024-10-12 +City Hotel,1,259,2017,June,26,22,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,215.66,0,0,Canceled,Mr. Jacob Moore,oshannon@example.com,+1-857-778-7943x5469,2704201108768879,2025-03-12 +City Hotel,1,21,2017,April,17,22,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,135.53,0,0,Canceled,Janet Larson,briangreer@example.org,001-508-360-9443x4334,30018178783763,2025-04-13 +Resort Hotel,0,42,2017,October,42,16,2,2,1,0.0,0,BB,,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,44.5,0,0,Check-Out,Margaret Knight,michaelbaker@example.com,9998945012,501864878514,2024-04-29 +Resort Hotel,0,86,2017,December,51,23,0,2,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,113.37,0,2,Check-Out,Gloria Odom,danielle80@example.com,580-642-6136,2286088370211076,2026-02-13 +City Hotel,1,106,2017,May,18,3,1,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,90.78,0,0,Canceled,Casey Foster,mistyrobles@example.com,001-288-425-4786x7156,180056563248040,2024-05-19 +Resort Hotel,0,154,2017,August,33,13,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,288.0,179.0,0,Transient-Party,87.51,0,1,Check-Out,Daryl Olson,khunt@example.org,243-260-6101x386,180033417049627,2024-08-30 +City Hotel,0,11,2017,September,38,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,27.0,179.0,0,Contract,82.23,0,0,Check-Out,James Raymond,anthony02@example.com,001-534-291-9085x36844,30152064660254,2025-06-08 +Resort Hotel,0,36,2017,December,49,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,50.14,0,1,Check-Out,Denise Flores,ibrandt@example.net,+1-383-202-8719,4220042301353617121,2025-08-03 +Resort Hotel,1,45,2017,January,3,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,12.0,179.0,0,Transient,79.79,0,0,Canceled,Katie Hardin,gwilliams@example.net,+1-636-740-5835x529,6586453068223577,2026-02-13 +City Hotel,1,113,2017,July,27,5,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,Non Refund,20.0,179.0,0,Contract,84.38,0,0,Canceled,Brian Bullock,greeralexandra@example.org,239-253-2423,3558563979943567,2025-08-02 +City Hotel,1,1,2017,March,13,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,1,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,86.14,0,1,No-Show,Stefanie Simmons,leslie09@example.com,2279060415,4930828922678,2025-11-26 +Resort Hotel,0,4,2017,December,50,9,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,134.41,1,2,Check-Out,Randall Johnson,stevensalicia@example.com,5043084836,4432982733268021242,2026-02-08 +Resort Hotel,0,188,2017,June,23,8,2,7,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,134.78,0,0,Check-Out,Brooke Harmon,phillipskelly@example.org,001-558-444-4097x2351,375282473316686,2025-01-26 +Resort Hotel,0,0,2017,October,44,29,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,52.03,0,0,Check-Out,Debra Baxter,wilsonkaren@example.com,369-420-7607x41982,3566479796887186,2025-07-22 +City Hotel,0,102,2017,June,24,15,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,113.41,0,2,Check-Out,Corey Thornton,lwright@example.com,993.741.3832x32498,5555828220687125,2025-09-17 +City Hotel,1,269,2017,June,24,8,2,3,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,96.32,0,0,Canceled,Michael Dalton,cclements@example.net,(875)831-3499,4246373633606410,2025-01-25 +Resort Hotel,0,2,2017,August,31,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,112.6,1,1,Check-Out,Evan Nelson,khiggins@example.com,443.867.0734x777,3577274837189107,2025-01-11 +City Hotel,1,150,2017,June,25,18,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,73.45,0,0,Canceled,Brenda Perkins,jordan90@example.org,001-860-685-5633x923,2266254975796226,2024-07-22 +City Hotel,0,56,2017,September,35,1,2,3,2,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,133.75,0,0,Check-Out,David Skinner,curtismisty@example.org,+1-890-641-4994x08448,30417607373107,2025-12-26 +Resort Hotel,1,45,2017,January,5,28,1,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,248.0,179.0,0,Transient,235.02,1,0,Canceled,Jessica Lowery,callen@example.org,242-633-6324x410,180005064496798,2024-07-13 +City Hotel,0,85,2017,January,4,22,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,89.64,0,2,Check-Out,Charles Owens,diana34@example.net,001-224-734-0323x16885,3519746472065966,2024-12-31 +City Hotel,0,10,2017,December,52,26,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,134.36,0,1,Check-Out,Jacqueline Figueroa,donald81@example.com,(336)980-0202x7879,6535446934577830,2024-07-30 +City Hotel,1,14,2017,January,5,30,0,4,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,74.8,0,1,No-Show,Brittany Davis,lfox@example.org,908-214-6517x256,5177635165940577,2026-03-19 +City Hotel,1,319,2017,July,27,5,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,93.77,0,0,Canceled,Michelle King,perkinssteven@example.com,980.966.4787,6011244705071726,2026-02-16 +City Hotel,0,20,2017,October,43,23,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.82,0,2,Check-Out,Erica Huynh,martinezangel@example.net,229-899-5516x009,213183724182800,2025-01-03 +City Hotel,0,5,2017,March,10,10,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient,75.61,0,0,Canceled,Leslie Fitzgerald,colondanny@example.org,475.401.7350,4487266711946203,2024-05-07 +Resort Hotel,0,90,2017,September,36,4,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,49.46,0,1,Check-Out,Elizabeth Daniels,thomassmith@example.org,(579)661-6016x4534,213170905377044,2025-03-06 +City Hotel,1,414,2017,October,43,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,126.75,0,0,Canceled,Jeffrey Walters PhD,macdonaldleah@example.com,7334647475,4725881789915054,2025-11-17 +City Hotel,0,395,2017,July,29,16,0,2,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,103.0,0,0,Check-Out,Daniel Young,stevendavenport@example.org,6625163778,4882005294489000258,2025-06-27 +City Hotel,1,161,2017,December,49,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,43,Transient,81.75,0,0,Canceled,Kevin Grant,meghan67@example.org,311-959-8559x23496,4148268130937731,2025-05-02 +Resort Hotel,0,104,2017,November,45,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,332.0,61.0,0,Transient,51.32,0,0,Check-Out,Hunter Williamson,cassidy55@example.com,(894)723-3230x9393,4491718144006,2024-07-20 +Resort Hotel,0,9,2017,October,43,24,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.79,0,0,Check-Out,Gerald Moran,christopherreese@example.com,998.264.8551x5549,5163812070822168,2025-09-22 +Resort Hotel,0,50,2017,April,18,30,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,154.51,0,1,Check-Out,Toni Hill,herrerakenneth@example.org,462.947.2361,3526121477995362,2026-02-09 +City Hotel,0,34,2017,November,46,11,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,83.03,0,0,Check-Out,Felicia Gordon,amymayo@example.org,001-637-413-6475,4065971473362834,2024-09-13 +City Hotel,0,5,2017,January,2,5,0,3,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,161.2,0,1,Check-Out,Nancy Moreno,mary66@example.org,544-839-1650x5179,4395289117212187,2025-07-18 +City Hotel,0,9,2017,October,43,22,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,218.77,0,1,Check-Out,Kimberly Kaufman,erinkrause@example.com,923.769.2570,6011111854547766,2024-10-11 +City Hotel,1,6,2017,May,21,24,2,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,172.54,0,0,Canceled,Jeffrey Leon,ypotter@example.net,690.773.0701x30786,3568613029586714,2025-01-03 +Resort Hotel,1,97,2017,March,11,16,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,C,A,0,No Deposit,244.0,179.0,0,Transient,106.12,0,0,Canceled,Richard Smith,leah83@example.com,481.851.7465x51359,561806546991,2024-07-14 +City Hotel,1,393,2017,September,39,26,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,167.82,0,0,Canceled,Jennifer Martinez,vwheeler@example.net,+1-852-647-4504x861,4789202661428949605,2025-08-03 +City Hotel,0,36,2017,August,35,29,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,187.0,0,1,Canceled,Carol Torres,thomas05@example.com,646-728-7401x77201,213192536594698,2025-12-21 +Resort Hotel,0,27,2017,April,16,17,2,1,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient-Party,52.34,0,1,Check-Out,Richard Golden,rosecruz@example.org,(981)640-6873x28598,38890231290164,2025-11-08 +City Hotel,0,11,2017,January,3,17,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,96.44,0,1,Check-Out,Angela Richards,anitabrooks@example.net,(285)416-5524x82295,4094124609511131,2026-01-18 +Resort Hotel,0,2,2017,January,2,7,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,9.0,179.0,0,Transient,43.44,1,2,Check-Out,Christopher White,bridgetdominguez@example.net,001-695-221-2070x25089,347153477925365,2026-02-28 +Resort Hotel,0,62,2017,March,13,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,2,No Deposit,239.0,179.0,0,Transient,44.28,1,0,Check-Out,Paul Ferguson,williamspamela@example.com,+1-232-342-2295x96772,180053266274753,2025-04-10 +Resort Hotel,1,153,2017,June,25,19,4,10,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,240.0,179.0,0,Transient,137.93,1,0,Canceled,Robert Peck,ebrown@example.org,(205)878-5463,30586501215653,2024-06-18 +City Hotel,0,81,2017,December,52,26,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,36.0,179.0,75,Transient,79.58,0,1,Check-Out,Peter Zhang,mariaclements@example.org,001-528-448-6395x06297,4426449668465328,2025-04-12 +City Hotel,1,311,2017,September,39,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,80.2,0,0,Canceled,Juan Lopez,melissa84@example.net,706.510.4743,30184842376747,2025-04-08 +City Hotel,0,200,2017,August,32,8,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,225.26,0,1,Check-Out,Shirley Lucas,joanne10@example.com,740.953.6031,2588317827544804,2024-07-08 +City Hotel,0,30,2017,March,13,26,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,94.4,0,0,Check-Out,Tracy Mcguire,brandi72@example.net,001-689-375-1170,3574662811644720,2026-01-17 +City Hotel,1,17,2017,August,33,13,1,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.49,0,0,Canceled,Donald Roberts,enichols@example.net,+1-710-650-0179,3542759441998655,2025-12-17 +City Hotel,0,2,2017,August,34,17,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,131.08,0,1,Check-Out,Linda French,paul88@example.com,(395)862-2348x0379,30298594623914,2024-11-13 +Resort Hotel,0,121,2017,March,13,28,2,2,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,F,1,No Deposit,18.0,179.0,75,Transient-Party,229.41,1,0,Check-Out,Mary Foster,grantrodriguez@example.org,(489)541-1666,4540155209803,2026-01-11 +Resort Hotel,1,46,2017,August,31,2,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,230.55,0,3,Canceled,Jill Taylor,brendafisher@example.net,246.571.6311x303,4734634367911011143,2024-10-23 +Resort Hotel,1,167,2017,July,29,13,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,194.0,179.0,0,Transient-Party,128.93,0,1,No-Show,Dennis Guerra,wosborne@example.com,(871)695-9178,6011542385135640,2024-10-22 +City Hotel,1,153,2017,July,28,12,1,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,180.12,0,1,Canceled,Ryan Mccarty,jonathan38@example.org,001-931-435-8419x0087,4744840558646,2025-12-27 +City Hotel,1,161,2017,March,13,24,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,101.4,0,2,Canceled,Cory Jones,swallace@example.com,826.717.0675,4912692441324,2025-09-25 +Resort Hotel,0,3,2017,August,35,27,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Check-Out,Maria Smith,christopherharper@example.org,913-848-2283x7211,4049316420390,2024-08-27 +Resort Hotel,0,44,2017,September,37,10,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,48.05,1,3,Check-Out,Benjamin Mclaughlin,emily94@example.net,+1-309-922-8622,349626696313487,2024-11-18 +City Hotel,0,0,2017,January,4,23,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,45.52,0,1,Check-Out,Daniel Wood,asantiago@example.com,742.212.8893x30177,377619348602170,2024-10-30 +City Hotel,1,33,2017,March,12,24,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,80.62,0,1,Canceled,Manuel Taylor,debra50@example.net,296-327-4065,4150011660055218,2026-02-26 +City Hotel,1,88,2017,July,28,11,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,231.02,0,1,Canceled,John Miller,vwilliamson@example.net,(781)257-6128x201,4270033991741,2024-12-13 +City Hotel,0,45,2017,April,18,27,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.94,1,2,Check-Out,Janet Smith,james66@example.org,001-834-669-4781,4750057841955,2025-11-17 +Resort Hotel,1,414,2017,July,28,14,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,26.0,179.0,0,Transient-Party,106.07,0,0,No-Show,Vincent Huynh,kimberly87@example.net,001-982-512-6543x40257,4248117478879378,2025-03-15 +City Hotel,0,7,2017,July,30,25,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,135.0,179.0,0,Transient-Party,62.59,0,1,Check-Out,John Johnson,pattersonhaley@example.com,(416)556-6667x845,213109569074091,2026-01-18 +City Hotel,0,6,2017,April,17,23,1,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,137.21,0,0,Check-Out,James Mclean,gabriel49@example.net,001-323-968-1392x84057,4717496170281535,2024-08-12 +City Hotel,0,186,2017,May,21,21,2,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,138.38,0,0,Check-Out,Sandra Brown,aandrews@example.org,2152066824,6011843760812476,2024-06-15 +City Hotel,0,34,2017,November,45,8,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,77.53,0,2,Check-Out,Sheila Myers,todd46@example.org,+1-595-906-4401,4798945897097220,2025-07-29 +Resort Hotel,1,0,2017,May,18,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,137.31,0,0,No-Show,Joseph Ayers,toddjames@example.com,+1-319-422-0109x0620,4210541931535119062,2026-01-21 +Resort Hotel,1,265,2017,August,32,9,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,84.54,1,0,Canceled,Kenneth Perez,monica30@example.net,426-383-1540x54888,4198779858809778,2024-09-05 +City Hotel,0,2,2017,March,10,4,1,0,1,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,225.0,0,Transient-Party,105.73,0,0,Check-Out,Devon Davis,carriejensen@example.net,359.354.6723,213126601954239,2025-07-19 +Resort Hotel,0,92,2017,June,24,8,3,10,2,2.0,0,BB,IRL,Direct,Direct,0,0,0,G,G,2,No Deposit,250.0,179.0,0,Transient,252.0,1,0,Check-Out,Mary Mathews,youngjames@example.net,9385223877,4766881568507,2024-08-29 +City Hotel,1,251,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,62.86,0,0,Canceled,Christine Dillon,manderson@example.com,456-972-0996,4448674657509240,2025-09-18 +City Hotel,0,47,2017,January,2,2,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,217.18,0,2,Check-Out,Jason Smith,wsalas@example.org,4045603513,343280510997863,2024-08-15 +City Hotel,1,90,2017,June,24,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,101.33,0,0,Canceled,Lisa Campbell,tyler52@example.org,(783)735-6955,4905130701338676945,2025-05-17 +Resort Hotel,0,45,2017,September,39,26,2,2,3,1.0,0,FB,SWE,Direct,TA/TO,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient-Party,159.27,1,0,Check-Out,Jeffrey Taylor,ashley42@example.org,+1-321-267-4533,344804959286840,2024-09-23 +City Hotel,0,51,2017,July,29,16,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient-Party,206.78,0,0,Check-Out,Brett Bailey,hendersonlauren@example.com,290.879.6548,3505750875493953,2025-08-14 +City Hotel,0,51,2017,October,43,22,2,4,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,218.84,0,0,Check-Out,Donna Sexton,omcdonald@example.com,001-408-278-4986,584409444117,2024-09-28 +City Hotel,0,56,2017,March,9,1,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.19,0,0,Check-Out,Christopher Harrison,djohnson@example.com,(940)361-8802,675949761687,2024-06-06 +Resort Hotel,0,204,2017,October,41,8,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,93.01,0,1,Check-Out,Kelly Woods,hamiltonchristina@example.org,+1-448-374-8874,4818572199288004,2024-06-23 +Resort Hotel,0,147,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,43.98,0,0,Check-Out,Thomas Johnson,schwartzedwin@example.org,(903)520-4421x964,2253524612780949,2025-06-30 +City Hotel,0,48,2017,September,39,23,0,4,3,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,C,2,No Deposit,11.0,179.0,0,Transient-Party,126.46,0,0,Check-Out,Christine King,kristen85@example.org,(524)594-3665,213136781388629,2026-03-09 +City Hotel,0,71,2017,August,34,23,1,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,168.76,1,2,Check-Out,Marcus Williams,tonyahill@example.com,(368)375-0418x08434,2242170235535700,2025-06-08 +City Hotel,1,10,2017,February,6,3,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.86,0,0,Canceled,Jeffrey Jones,anna79@example.net,+1-515-993-2835x5779,4069058283130861242,2024-09-06 +City Hotel,0,15,2017,July,30,27,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,133.58,0,1,Check-Out,Gerald Hunt,timothy40@example.org,001-387-521-4552x7118,377352049437361,2024-12-08 +City Hotel,0,12,2017,April,16,17,1,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,221.0,0,Transient,91.41,0,0,Check-Out,Zachary Huff,webbabigail@example.org,826-621-3582,4166289268881225,2025-03-05 +City Hotel,0,0,2017,January,4,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,108.97,0,0,Check-Out,Luis Lopez V,andrewbrady@example.org,(340)900-2239,4532612018174,2024-06-28 +Resort Hotel,0,185,2017,July,30,21,3,5,2,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,146.04,0,2,Check-Out,Stephen Mitchell,markgregory@example.com,308-278-8267x754,213179592966407,2025-05-22 +City Hotel,0,57,2017,August,33,15,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,141.92,0,1,Check-Out,Eric Ingram,jessica92@example.org,977-539-6430x482,4882348159535184,2025-01-26 +City Hotel,0,9,2017,March,10,8,1,1,2,0.0,0,BB,ESP,Complementary,Corporate,0,0,1,A,F,0,No Deposit,11.0,179.0,0,Transient,46.1,1,1,Check-Out,Jon Robinson,zwilson@example.net,7945491800,4377163505387913,2025-09-20 +City Hotel,0,54,2017,August,31,2,1,2,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,221.25,0,3,Check-Out,Richard Flynn,ystevens@example.com,253.742.8400x379,30439203738467,2024-07-17 +City Hotel,0,0,2017,May,22,29,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,135.28,0,1,Check-Out,Jasmine Scott,dweeks@example.org,771.253.8305x514,6011369901223605,2025-03-25 +City Hotel,0,13,2017,May,21,23,1,1,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,109.13,0,0,Check-Out,Yolanda Martin,walkerjason@example.net,(388)954-1880x312,373124528783738,2025-01-04 +City Hotel,0,101,2017,October,42,19,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Group,76.11,0,1,Check-Out,Patricia Wood,garcialaura@example.org,853-848-3133,630493562783,2024-12-28 +City Hotel,0,11,2017,October,42,14,1,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Group,94.01,0,0,Check-Out,Ryan Taylor,lisataylor@example.net,+1-206-677-4442x54967,3565896678182876,2025-09-07 +Resort Hotel,0,158,2017,April,14,1,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,Refundable,13.0,222.0,0,Transient-Party,38.22,0,0,Check-Out,Amanda Watts,marvinbell@example.com,+1-565-621-4639x102,3577975855983672,2024-10-26 +City Hotel,1,277,2017,June,26,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.51,0,0,Canceled,Jose Gross,ericmcdaniel@example.com,3464089409,4393359577462036,2026-01-28 +City Hotel,0,352,2017,May,19,4,0,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,84.85,0,1,Check-Out,Matthew Krause,pbrown@example.com,(813)528-5917x19238,4708459481638283822,2024-06-21 +City Hotel,0,54,2017,September,37,14,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.51,0,1,Check-Out,Gerald Mason,kathleen24@example.net,5468378614,3578605655076828,2026-02-02 +City Hotel,0,162,2017,August,33,13,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,180.39,0,1,Check-Out,Stephen Olson,carolwilson@example.org,332-790-4561x0281,346852982643972,2026-01-15 +City Hotel,1,149,2017,August,32,4,0,2,2,1.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Canceled,Carrie Myers,rsantiago@example.com,769-547-6025,3521251550495686,2025-09-22 +City Hotel,0,0,2017,April,17,25,2,2,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,5.51,0,0,Check-Out,Frank Lawrence,rita89@example.net,702.457.3538,4245347282516,2026-02-15 +City Hotel,0,4,2017,August,35,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,B,B,1,No Deposit,16.0,179.0,0,Transient,7.03,0,0,Check-Out,Robert Perkins,sarahfox@example.com,001-514-288-0582x226,2286305504891700,2024-05-30 +City Hotel,0,20,2017,September,39,26,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient-Party,107.52,0,3,Check-Out,Joseph Green,lvalencia@example.net,253-674-7519,4609353036259869,2024-06-20 +City Hotel,1,2,2017,November,47,20,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,1,No Deposit,17.0,212.0,0,Transient-Party,89.25,0,0,Canceled,Eric Mathis,selenashields@example.com,203-524-1393x31405,38770664938572,2026-02-07 +Resort Hotel,0,7,2017,November,46,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,166.0,179.0,0,Transient-Party,76.57,1,0,Check-Out,Nancy Carter,whoward@example.org,(575)926-5222x18736,4654799941922906,2025-07-11 +Resort Hotel,0,45,2017,October,43,26,2,4,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,10.0,179.0,0,Transient,162.81,0,1,Check-Out,Tyler Mills,sarah19@example.org,001-303-542-5238x99770,2712665301893835,2024-06-14 +City Hotel,0,7,2017,April,16,20,0,1,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,C,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,0,No-Show,Jim Foster,xschneider@example.net,+1-436-267-7739x545,060490370859,2025-12-07 +Resort Hotel,0,31,2017,July,27,8,3,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,133.12,1,2,Check-Out,Joshua Hayes,cody06@example.com,392-843-0697x31396,2700737318142599,2025-04-23 +City Hotel,0,113,2017,May,22,28,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,142.24,0,0,Check-Out,Savannah Johns,willie88@example.org,+1-598-895-3174x633,30071178271305,2024-08-02 +Resort Hotel,1,77,2017,December,49,2,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,104.22,0,0,Canceled,Jason Mcdonald,omar58@example.org,6712993847,3553973806244706,2024-12-07 +City Hotel,0,142,2017,April,16,18,0,2,3,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,D,K,2,No Deposit,9.0,179.0,0,Transient,3.08,0,1,Check-Out,Jasmine Hall,daniel11@example.org,895.987.5689x270,3516172178395362,2024-10-22 +City Hotel,1,414,2017,May,22,25,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,18.0,179.0,0,Transient-Party,108.76,0,0,Canceled,Rhonda Oconnell,jgordon@example.org,+1-451-486-0568,340671226603352,2024-11-17 +City Hotel,1,372,2017,June,26,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,134.11,0,0,Canceled,Matthew Khan,kelseywilson@example.com,(617)233-6621,341318808165520,2024-08-26 +Resort Hotel,0,0,2017,January,2,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,47.2,1,2,Check-Out,Jake Holmes,joseph50@example.com,(303)554-2177x194,3549959293309000,2025-02-12 +Resort Hotel,0,4,2017,September,36,2,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,51.47,0,1,Check-Out,Amanda Brown,kevintaylor@example.net,+1-551-264-6320x1499,4987597851655536000,2024-08-14 +City Hotel,1,46,2017,October,43,24,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,84.61,0,1,No-Show,Tim Jackson,andrewsnyder@example.net,743-243-7524x76770,30300009572031,2025-08-05 +Resort Hotel,1,100,2017,August,31,2,3,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,127.85,0,0,Canceled,Alexandra Holmes,michele90@example.net,(578)457-2686,30088079607254,2025-07-06 +City Hotel,0,17,2017,October,40,5,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,64.13,0,0,Check-Out,Michael Santos,scottbrandy@example.net,6702888094,6567608968234783,2024-04-09 +City Hotel,1,19,2017,June,25,22,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,111.24,0,0,No-Show,Janice Roberts,mmatthews@example.com,+1-289-494-7613x8980,6011270582092683,2026-01-05 +City Hotel,1,12,2017,March,11,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,106.04,0,1,Canceled,Jason Khan,meganbrown@example.com,+1-828-361-5254x44336,180018773004340,2026-03-10 +City Hotel,0,18,2017,October,43,22,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,89.0,172.0,0,Transient-Party,63.19,0,0,Check-Out,Steven Perez,rsullivan@example.com,618-465-4756x03237,4916500429231,2024-07-24 +City Hotel,0,15,2017,September,36,8,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,76.28,0,1,Check-Out,Derek Coleman,karenhall@example.net,001-809-880-4450x34440,180006920051561,2026-03-22 +City Hotel,0,139,2017,December,50,13,2,4,2,0.0,0,Undefined,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,111.26,0,2,Check-Out,Christine Sanders,jefferypatel@example.org,(445)373-4272,30122794444527,2024-10-22 +City Hotel,1,414,2017,June,25,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,128.72,0,0,Canceled,Mary Johnson,villarrealnathan@example.org,001-406-597-3111x819,180036038082356,2024-06-15 +Resort Hotel,0,167,2017,July,29,15,2,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,Michael Clay,megan80@example.org,001-252-765-7254x499,4875934647119779,2025-01-10 +City Hotel,0,9,2017,October,40,7,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.09,0,0,Check-Out,Timothy White,ronnie83@example.org,(619)450-3169,30413261093602,2025-08-18 +City Hotel,0,12,2017,March,12,22,1,0,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.61,0,0,Check-Out,Jason Mathews,jerry89@example.com,+1-514-296-4208x00513,379689148560413,2024-10-30 +City Hotel,0,52,2017,December,49,2,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,145.23,0,1,Check-Out,Maria Parsons,chapmanmary@example.com,851-366-3119x764,30306819541926,2025-11-08 +Resort Hotel,0,14,2017,August,31,4,2,0,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,99.22,1,1,Canceled,Patricia Hayes,mwagner@example.net,830.533.9986,4429379742990370,2025-09-11 +Resort Hotel,0,89,2017,April,17,24,0,6,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,16.0,179.0,0,Transient,131.85,0,3,Check-Out,Jessica Robinson,hramirez@example.com,473-259-0471x72451,6011366613602886,2024-11-21 +City Hotel,0,3,2017,April,18,27,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.36,0,2,Check-Out,Megan Stokes,elizabeth65@example.net,571-824-2378x4523,2254739673211118,2025-06-30 +City Hotel,0,108,2017,September,37,9,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,121.43,0,1,Check-Out,John Harris,michaelconrad@example.net,4733454473,377716468597576,2024-08-09 +City Hotel,1,53,2017,November,45,5,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Contract,121.97,0,0,Canceled,Eric Li,timothy12@example.org,261-689-0304x502,4627679445258045,2024-05-18 +City Hotel,0,1,2017,July,28,9,0,4,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.87,1,0,Check-Out,Melissa Oneill,wendyestrada@example.org,928.782.9745,180023791703113,2026-01-18 +City Hotel,0,154,2017,December,52,31,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,122.58,0,1,Check-Out,Karen Ross,blevinsashley@example.net,+1-528-457-0451x53971,4705698892072,2025-12-19 +City Hotel,0,14,2017,December,48,2,0,5,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,104.89,0,2,Check-Out,Emily Gamble,karenwallace@example.com,+1-501-313-8177,4336976654297057091,2026-02-26 +Resort Hotel,0,16,2017,March,9,2,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,E,0,No Deposit,238.0,179.0,0,Transient,50.1,1,2,Check-Out,Alex Lambert,candiceberger@example.com,(851)800-0186x565,4327482443499650,2025-07-25 +City Hotel,1,407,2017,August,32,9,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Non Refund,244.0,179.0,0,Transient,117.92,0,0,Canceled,Charles Poole,jonesmaria@example.org,328-960-9464x008,30391818560911,2024-10-28 +City Hotel,1,189,2017,October,41,8,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,19,Transient,106.71,0,0,Canceled,Amy Wong,thomasdodson@example.net,(612)614-9024x71473,3545544330738934,2024-07-12 +City Hotel,0,0,2017,April,16,16,2,0,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,115.01,0,2,Check-Out,Pamela Hubbard,ehuang@example.net,609-336-9478x96610,4529325567572661049,2025-11-07 +Resort Hotel,0,144,2017,April,17,23,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,15.0,179.0,0,Transient-Party,101.38,1,1,Check-Out,Jennifer Cummings,walkeralexander@example.org,810-343-4632x815,4926223660343694935,2025-03-29 +City Hotel,1,21,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,100.83,0,0,Canceled,James Lopez,hwilson@example.org,229-422-0786x422,582597114104,2025-09-05 +City Hotel,1,7,2017,November,47,20,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,96.76,0,0,Canceled,Benjamin Hines,andrewedwards@example.org,+1-713-206-2946,4034447734848609186,2025-04-09 +City Hotel,1,161,2017,June,23,4,2,1,2,1.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,11.0,251.0,0,Transient-Party,106.89,0,0,Check-Out,Tonya Kemp,shelbybeasley@example.com,+1-327-662-4869x126,6559112861401029,2025-09-18 +City Hotel,1,46,2017,September,37,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,100.66,0,1,Canceled,Corey Pacheco,jeffrey28@example.com,001-477-412-1145x582,3555097471066042,2025-01-02 +Resort Hotel,0,4,2017,July,29,19,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,211.61,0,0,Check-Out,Pamela Hicks,qfitzgerald@example.org,+1-850-416-3977x38349,2283344075731055,2024-11-07 +City Hotel,0,9,2017,March,13,28,0,1,2,1.0,0,BB,PRT,Corporate,Direct,0,0,0,A,E,2,No Deposit,16.0,221.0,0,Transient,106.83,1,0,Check-Out,Megan Knight,christophercurry@example.org,(353)906-1460,3522254268188337,2024-07-30 +Resort Hotel,0,16,2017,January,2,9,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,237.0,179.0,0,Transient,64.11,0,1,Check-Out,Caitlin Wilson,sullivanjonathan@example.com,(329)876-6640,30549549276905,2025-09-19 +City Hotel,0,40,2017,March,12,19,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,229.0,0,Transient,97.86,0,1,Check-Out,Michael Church,mary07@example.net,001-339-570-0337,3520153636426373,2025-10-05 +Resort Hotel,0,155,2017,July,27,4,4,10,2,1.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,250.0,179.0,0,Transient,230.92,0,0,Check-Out,Patricia Hall,jacob17@example.net,001-383-686-2706x59285,3502474906630789,2024-06-09 +Resort Hotel,0,10,2017,March,13,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,62.62,0,0,Check-Out,Omar Weeks,ostone@example.org,694-681-3940x00756,180034282600833,2024-11-05 +City Hotel,1,266,2017,October,42,19,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,173.0,179.0,0,Transient,110.43,0,0,Canceled,Samantha Parker,cooperthomas@example.org,+1-445-641-3866x410,36278494152358,2025-08-25 +City Hotel,1,171,2017,June,23,4,1,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.33,0,1,Canceled,Jared Carter,tyler83@example.com,293-901-2509x1529,3535536740186557,2024-10-17 +Resort Hotel,0,57,2017,August,31,2,4,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,217.54,0,1,Check-Out,Mitchell Garza,catherine28@example.net,(962)292-9851x54509,4330530877802693,2024-04-28 +City Hotel,1,14,2017,June,24,10,0,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,141.38,0,0,Canceled,Mary Compton,wfuentes@example.net,+1-291-341-4205x10169,4601245021128349,2025-07-11 +Resort Hotel,0,17,2017,January,4,26,2,3,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,201.27,0,1,Check-Out,Ray Rosario,smithryan@example.org,(927)802-6969,3596493583105698,2025-07-30 +City Hotel,1,12,2017,March,11,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.38,0,1,Canceled,William Guzman,smithtimothy@example.net,+1-631-344-0849x9634,4473236867728131,2025-10-25 +Resort Hotel,0,37,2017,March,12,21,1,2,3,1.0,0,BB,ESP,Direct,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,106.01,1,1,Check-Out,Douglas Hampton,colinfarrell@example.com,4302361640,4770401234798,2025-01-03 +City Hotel,1,158,2017,October,41,8,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,100.23,0,0,Canceled,Jennifer Johnson,john53@example.net,(714)314-6771x3409,30496830742346,2025-03-21 +City Hotel,0,38,2017,April,16,19,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,80.23,0,2,Check-Out,Christopher Jensen,darrellholmes@example.org,9425155269,2488172274384845,2025-08-10 +Resort Hotel,0,17,2017,October,40,5,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Contract,47.41,0,2,Check-Out,Jessica Smith,sblake@example.org,217.863.3503,30454829447179,2024-11-12 +City Hotel,0,46,2017,April,15,12,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,105.17,1,2,Check-Out,Lawrence Martin,elizabeth32@example.org,+1-913-288-1636x5039,30094137300841,2026-03-01 +Resort Hotel,0,81,2017,August,34,23,2,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,59.51,0,0,Check-Out,Mrs. Susan Newton MD,steven93@example.net,001-626-875-6912x9238,38751946726027,2025-02-17 +City Hotel,0,154,2017,January,4,23,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,79.45,0,3,Check-Out,Robin Terry,jonathan41@example.org,+1-289-285-8036x2588,4564831039659049146,2025-10-19 +Resort Hotel,0,134,2017,October,41,8,4,7,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Contract,65.29,0,1,Check-Out,Melissa Short,hnewton@example.com,526-915-8877,4928701662551,2025-12-27 +Resort Hotel,0,88,2017,June,26,27,0,2,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,323.0,179.0,0,Transient-Party,46.79,0,1,Check-Out,Nathaniel Rodriguez,zortega@example.net,001-521-257-9956x077,4159834157047138,2025-08-16 +City Hotel,1,1,2017,January,3,16,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,15.0,189.0,0,Transient,109.93,0,1,Canceled,Scott Smith,hrios@example.com,746.816.7212x49824,3565112280188685,2026-02-18 +Resort Hotel,0,15,2017,March,13,29,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,45.13,1,1,Check-Out,Tiffany Nelson,jstokes@example.com,+1-280-640-2940x1167,4227940588977435,2026-01-03 +Resort Hotel,1,396,2017,August,31,4,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,63.51,0,0,Canceled,Brian Ware,bishopchristine@example.org,001-592-262-8578x538,4134295840683,2025-09-30 +City Hotel,1,0,2017,May,20,12,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,168.73,0,0,Canceled,Sharon Blake,joseph27@example.com,+1-459-517-9195x884,342801145870901,2025-04-15 +Resort Hotel,0,142,2017,July,30,28,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,259.0,179.0,0,Transient,127.43,0,1,Check-Out,Ashley Santos,carolynmiller@example.net,001-897-752-7785x07723,4900343315591,2025-05-25 +City Hotel,0,10,2017,January,2,5,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,102.39,0,2,Check-Out,Raymond Mccall,cjohnson@example.org,(348)484-1925,4779614558591805,2025-11-24 +Resort Hotel,0,407,2017,May,22,27,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.49,0,0,Check-Out,Stephanie Valdez,donnabarnett@example.net,+1-902-801-4027x4538,564608183260,2025-03-17 +City Hotel,0,12,2017,March,10,4,1,3,2,1.0,0,BB,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,76.99,0,0,Check-Out,Aaron Ayers,sjordan@example.org,648.396.6463x81544,4674522760733,2024-11-18 +Resort Hotel,0,140,2017,May,20,18,3,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,131.47,1,1,Check-Out,Ashley Brown,cyu@example.org,001-257-803-3914x8984,3502582637421615,2024-11-15 +City Hotel,0,1,2017,October,42,19,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,C,0,No Deposit,10.0,45.0,0,Group,53.01,0,1,Check-Out,Brittney Mccoy,gomezbeverly@example.com,281-941-3921x4930,4823144130152356716,2024-08-14 +City Hotel,0,15,2017,May,19,5,1,0,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.22,0,1,Check-Out,Shawn Harris,tgonzalez@example.org,001-891-434-4359,3581483484944656,2024-11-03 +City Hotel,0,7,2017,October,40,4,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,74.15,0,1,Check-Out,Kimberly Holmes,kellyrandy@example.com,(516)798-3602,36866891184907,2024-03-28 +City Hotel,0,160,2017,July,30,25,1,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.78,0,2,Check-Out,Tonya Jones,beasleyanthony@example.net,001-238-347-1615,3592887479931402,2025-09-13 +City Hotel,0,22,2017,April,15,8,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.62,0,2,Check-Out,Chris Martin,wrightchristopher@example.net,528-210-0177,5389162610032540,2025-04-22 +City Hotel,1,6,2017,February,8,18,1,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,41.46,0,2,Canceled,Krista Curtis,tiffanymccarthy@example.org,709-751-7168x446,4686344680964,2024-08-23 +City Hotel,1,18,2017,February,8,24,0,2,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,226.0,179.0,0,Transient,81.78,0,0,Canceled,Sandra Kirby,elizabeth00@example.net,430.775.4411x642,4495473765271187,2025-09-18 +City Hotel,0,146,2017,April,16,17,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient-Party,128.38,0,2,Check-Out,Travis Guerrero,hudsonangela@example.org,9036992781,2720898190161416,2025-03-08 +Resort Hotel,0,1,2017,November,47,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,56.29,1,0,Check-Out,Charles Romero,amysanchez@example.net,923-689-8265,6011258527193187,2024-05-06 +City Hotel,0,40,2017,May,22,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.67,0,2,Check-Out,Gina Cunningham,smithleslie@example.com,508.232.0748,3517712848109229,2024-12-22 +City Hotel,1,156,2017,July,27,2,0,3,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,110.24,0,0,Canceled,Julie Hill,gary58@example.org,001-672-258-7407,3581443457561754,2024-06-17 +Resort Hotel,1,302,2017,December,51,21,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Canceled,Joshua Henderson,pmoore@example.net,467-811-8313x939,676146659658,2024-10-30 +City Hotel,0,14,2017,March,13,27,2,2,2,0.0,0,BB,ITA,Groups,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,99.31,0,0,Check-Out,Ashley Greene,jgarcia@example.com,606.288.9608,3596228091263617,2024-04-18 +City Hotel,0,147,2017,March,13,25,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,1,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,71.96,0,2,Check-Out,Shannon Jackson,elizabethanderson@example.net,(833)236-2444x465,4122301857262,2025-12-05 +Resort Hotel,0,21,2017,January,3,20,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,71.78,0,1,Check-Out,James Smith,samuelross@example.org,(850)559-7139,6552685493071762,2025-07-03 +City Hotel,0,3,2017,March,10,4,2,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,1,No Deposit,288.0,179.0,0,Transient,47.83,0,1,Check-Out,Casey Smith,randyjenkins@example.com,701.507.7458x8359,4803863395404355,2025-06-09 +City Hotel,0,14,2017,July,30,24,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,113.19,0,1,Check-Out,Joy Reid,adriennemonroe@example.com,001-650-632-1341x333,2375613883617162,2024-04-21 +City Hotel,1,374,2017,September,38,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.82,0,0,Canceled,Wendy Fisher,logan49@example.net,+1-422-505-7094,2583665789461630,2024-08-19 +Resort Hotel,0,114,2017,February,9,28,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,1,No Deposit,29.0,179.0,0,Transient-Party,62.91,0,0,Check-Out,Sonya Ramirez,fowlermichelle@example.net,001-703-989-4280x9935,2277035479760819,2026-03-10 +City Hotel,1,88,2017,July,29,15,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,141.13,0,2,Canceled,Robert James,robinsonjames@example.org,877.315.3032x890,4046953551123,2024-05-26 +City Hotel,1,33,2017,June,24,11,1,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,109.63,0,0,Canceled,Maria Cook,john79@example.com,(364)821-1255,6011194468510958,2025-01-31 +City Hotel,0,61,2017,October,41,9,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Contract,80.49,0,0,Check-Out,Samantha Washington,catherineevans@example.com,2885650825,3571199135763475,2024-05-29 +City Hotel,0,4,2017,October,40,4,0,4,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,B,0,No Deposit,18.0,45.0,0,Transient,0.5099000000000001,1,0,Check-Out,Christopher Fitzgerald,cassandra28@example.net,+1-832-447-6525x70327,4812650806317113,2024-11-13 +City Hotel,0,2,2017,February,6,4,2,4,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,2,No Deposit,13.0,168.0,0,Transient,92.85,0,0,Check-Out,Matthew Barrett,ballheather@example.net,262.915.1344x7991,4936613577643,2024-09-25 +City Hotel,0,12,2017,April,14,5,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,150.85,0,2,Check-Out,Matthew Brooks,deleonteresa@example.com,(934)959-4257x914,3541277283649402,2025-03-07 +City Hotel,0,150,2017,April,16,20,1,3,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,76.0,179.0,0,Transient-Party,75.39,0,1,Check-Out,Albert Davis,patrickdiaz@example.org,+1-934-755-3421x1670,4846710995675521,2026-02-02 +Resort Hotel,1,282,2017,July,28,9,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,C,D,0,Non Refund,262.0,179.0,0,Transient,211.52,0,0,Canceled,Tina Ellis,jamesgray@example.org,4693392676,565829071481,2025-12-21 +Resort Hotel,0,83,2017,March,10,10,1,1,2,0.0,0,Undefined,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient-Party,79.24,0,0,Check-Out,Clayton Blankenship,allenmelissa@example.com,(662)520-2926,4481431766017918775,2026-02-04 +Resort Hotel,0,1,2017,August,31,5,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,107.22,0,1,Check-Out,Jennifer Velasquez,thomasalex@example.net,(524)617-7694x692,3510290621944812,2025-07-11 +City Hotel,0,37,2017,October,40,1,2,6,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,31.0,179.0,0,Transient,78.96,0,0,Check-Out,Danielle Bennett,mary91@example.org,997.706.5381x45083,378953660885595,2025-02-06 +Resort Hotel,0,39,2017,May,22,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,77.09,0,1,Check-Out,April Hull,ericfuller@example.com,264.893.9268,3597549608843503,2026-02-07 +Resort Hotel,0,3,2017,October,41,7,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,68.0,0,Transient,50.26,0,0,Check-Out,James Anderson,osborncristian@example.org,7213866772,4454147036033538920,2025-01-24 +City Hotel,1,414,2017,September,36,9,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,126.25,0,0,Canceled,Melissa Williams,felicia47@example.net,001-402-558-5992x79184,346970937906946,2024-10-07 +City Hotel,1,400,2017,May,22,26,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient-Party,113.43,0,0,Canceled,Michael Coleman,ronniehill@example.org,853.501.0965x4675,6524015175035619,2024-07-22 +City Hotel,0,245,2017,August,32,9,2,5,2,0.0,0,SC,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,194.59,0,2,Check-Out,Angela Patel,wgreen@example.org,001-938-948-3195x0166,379121167788048,2024-12-26 +Resort Hotel,1,121,2017,July,30,25,2,3,2,0.0,0,FB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,69.0,179.0,0,Transient,207.98,0,0,Canceled,Jacob David,nriddle@example.org,(285)817-8236x249,503838460080,2024-08-25 +City Hotel,1,403,2017,April,14,3,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,63,Transient-Party,105.39,0,0,Canceled,Tricia Russo,gmclean@example.net,275-308-8036x5651,340207336246350,2025-12-28 +Resort Hotel,0,1,2017,December,49,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,15.0,179.0,0,Transient,40.98,0,0,Check-Out,Denise Wiley,wagnerjessica@example.com,(598)261-3936,3579265474908005,2025-04-11 +City Hotel,1,109,2017,August,32,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,108.3,0,0,Canceled,Bridget Bell,michaelgreene@example.org,(218)872-2745x26010,4449433343659,2025-02-28 +City Hotel,1,57,2017,August,31,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.28,0,0,No-Show,Jodi Jimenez,lindsaygonzales@example.com,899-545-7771x200,373523555670967,2024-10-28 +City Hotel,1,204,2017,August,32,4,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.66,0,1,Canceled,Destiny Joseph,connorthomas@example.org,295.435.9878,4089284762902,2024-05-25 +City Hotel,0,11,2017,October,43,24,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,76.02,0,0,Check-Out,Zachary Yu,danamitchell@example.net,001-509-301-5543x7271,3582143796725685,2024-10-10 +City Hotel,0,3,2017,July,27,1,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,121.08,0,1,Check-Out,Andrew Powell,higginslaura@example.net,+1-519-763-2833x47707,180086236006384,2025-10-31 +Resort Hotel,0,30,2017,May,21,23,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,315.0,179.0,0,Transient-Party,78.85,0,0,Check-Out,Reginald Cordova,christopherdavis@example.com,3687811801,2285124681804183,2025-04-03 +Resort Hotel,0,7,2017,August,31,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,230.32,1,1,Check-Out,Kevin Anderson,johnsonchristian@example.org,001-721-218-1370,4874715743032151,2026-02-28 +City Hotel,0,42,2017,April,14,3,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,162.68,0,1,Check-Out,Latasha Washington,justin22@example.com,348-445-0500x59292,3501139679660518,2024-08-06 +City Hotel,0,85,2017,May,19,8,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.91,0,1,Check-Out,Stacy Stein,perryglenn@example.com,503.746.7154x711,4723412779624,2024-05-09 +Resort Hotel,0,47,2017,January,3,15,0,2,2,0.0,0,Undefined,ESP,Groups,Corporate,0,0,0,A,A,1,No Deposit,148.0,179.0,0,Transient-Party,42.86,0,0,Check-Out,Anthony Scott,qlee@example.org,+1-384-255-1513,2295586142704848,2025-04-20 +Resort Hotel,1,54,2017,January,4,26,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,170.0,179.0,0,Transient,35.26,0,0,Canceled,Jasmine Martin,byrdjennifer@example.com,749-354-0467x7847,502055585892,2025-08-29 +City Hotel,1,67,2017,April,16,17,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,7.0,179.0,0,Transient,173.08,0,1,No-Show,Manuel Smith,brendasalas@example.org,001-651-681-2934x659,4060165680810,2025-01-05 +Resort Hotel,0,88,2017,April,16,15,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient-Party,44.4,0,0,Check-Out,Benjamin Chavez,rlee@example.net,(991)281-4031x17084,370975553121059,2024-08-03 +City Hotel,0,52,2017,August,33,19,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,211.65,0,0,Check-Out,Lauren Thompson,james10@example.org,707.391.7730,4170084261403410636,2024-10-22 +Resort Hotel,1,16,2017,October,43,25,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,205.78,0,0,Canceled,Jamie Galloway,patriciasloan@example.org,638-944-1546,4971846668489,2024-12-26 +Resort Hotel,0,20,2017,February,6,9,1,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,128.0,179.0,0,Transient,96.48,0,0,Check-Out,Theresa Sandoval,claytonkatherine@example.com,6635325446,4640057464432200,2025-09-11 +City Hotel,1,204,2017,September,36,5,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,77.7,0,0,Canceled,Thomas Morrison,hensleyjulie@example.com,7495025831,4402058601802,2024-09-30 +City Hotel,0,48,2017,November,47,23,0,3,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,104.51,1,0,Check-Out,Kimberly Lewis,sean56@example.net,8764720041,4118002756696,2025-07-20 +Resort Hotel,1,87,2017,July,27,2,2,3,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,249.75,0,0,Canceled,Morgan Grimes,ndavis@example.com,+1-830-983-1769x30222,213152202190643,2025-02-11 +Resort Hotel,0,11,2017,May,19,8,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,225.99,1,1,Check-Out,Jose Mckinney,millertimothy@example.com,(672)499-1200x374,377826502084992,2024-07-08 +City Hotel,1,150,2017,September,37,11,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.39,0,0,Canceled,Cody Hendricks,shawn40@example.net,230.715.7307,3541718736036713,2024-03-30 +City Hotel,0,90,2017,October,42,16,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.58,0,0,Check-Out,Eric Wright,rubenmcbride@example.net,775-364-4764x3677,3539805722947369,2025-08-06 +City Hotel,0,2,2017,September,39,26,2,1,2,0.0,0,BB,GBR,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,82.04,0,1,Check-Out,Amber Meza,austin14@example.net,501-955-2056x3614,30537998158187,2024-09-02 +Resort Hotel,0,39,2017,August,31,1,1,1,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,171.75,1,1,Check-Out,Stephanie Li,stephanie46@example.org,964.582.0817,4526562238468694,2025-09-11 +City Hotel,0,12,2017,February,8,24,0,1,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,A,K,0,No Deposit,15.0,168.0,0,Transient-Party,92.27,0,0,Check-Out,Curtis Rice,palmertara@example.org,001-474-568-2481x7687,2308089939054407,2024-07-16 +City Hotel,0,49,2017,September,39,27,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,110.94,1,2,Check-Out,Phillip Miller,richard50@example.org,(839)412-4985,675917983529,2024-08-07 +City Hotel,0,55,2017,July,28,10,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,125.86,0,0,Check-Out,Jennifer Johnson DVM,stephaniewiley@example.com,973.793.2264x776,180093233775730,2024-06-27 +City Hotel,0,144,2017,June,24,8,0,4,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,173.06,0,1,Check-Out,Anthony Werner,zadkins@example.net,+1-997-221-7383x493,2285679539776859,2025-05-03 +City Hotel,0,0,2017,February,7,11,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,2,No Deposit,37.0,210.0,0,Transient,48.92,0,0,Check-Out,Tara Thomas,murphymary@example.com,586-912-2836,180011899508633,2025-09-09 +City Hotel,0,3,2017,August,31,5,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,201.97,1,1,Check-Out,Nicole Jones,erikarodriguez@example.com,+1-994-829-6741x92410,4141927444707257,2025-11-11 +Resort Hotel,0,52,2017,August,35,30,2,5,2,2.0,0,HB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,217.13,0,1,Check-Out,Natalie Stanley,tsullivan@example.com,001-661-672-7023x719,180093682670135,2024-05-08 +City Hotel,0,3,2017,August,34,25,0,1,3,0.0,0,BB,USA,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient,199.45,0,1,Check-Out,Shelby Simon,yperez@example.net,+1-813-662-9771x94606,4909175601958782,2025-07-13 +Resort Hotel,0,41,2017,December,48,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,238.0,179.0,0,Transient-Party,41.73,0,1,Check-Out,Claudia Wilson,kellyhuang@example.com,(795)679-2689,6011125237525323,2026-02-11 +Resort Hotel,0,1,2017,October,40,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,86.74,1,1,Check-Out,Robert Simpson,gabriellejones@example.net,(470)280-2491x547,4483260852186426,2025-05-04 +Resort Hotel,1,185,2017,November,47,19,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient-Party,74.81,0,0,Canceled,Mark Stephens,larry02@example.com,+1-293-429-3574x594,3597434257719678,2026-02-28 +City Hotel,0,91,2017,October,43,23,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,Kevin Fernandez,annawalker@example.org,(645)990-8226,6011788688010531,2026-02-24 +Resort Hotel,0,0,2017,February,6,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,71.0,0,Transient,49.03,0,0,Check-Out,Sandra Reyes,joseph13@example.net,+1-571-300-7541x9586,4713308297641,2025-10-19 +City Hotel,0,17,2017,May,22,27,1,2,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,2.0,222.0,0,Transient-Party,43.23,0,0,Check-Out,Richard Case,bentleynathaniel@example.net,+1-829-829-4808x227,6011092771796928,2025-05-09 +City Hotel,0,403,2017,April,15,13,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,105.2,0,0,Check-Out,Terry Rivera,shannon39@example.org,9569355586,5229568014025613,2025-10-17 +Resort Hotel,0,41,2017,July,29,17,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,104.6,0,1,Check-Out,Mariah Brown,molinanicholas@example.com,291.348.5529,30492883465489,2024-05-28 +City Hotel,1,44,2017,December,49,9,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,106.67,0,0,Canceled,George Hall,williamchambers@example.com,(552)864-0327x11109,6011237086503986,2025-10-11 +City Hotel,0,8,2017,September,36,5,1,3,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.33,0,0,Check-Out,Kari Simmons,maryharrington@example.com,(722)422-4414,676361131441,2026-01-12 +City Hotel,1,195,2017,October,41,10,2,5,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.25,0,0,Canceled,Rebecca Dean,nancyclark@example.net,(673)442-6066x4999,4871050859462551,2025-02-28 +City Hotel,1,314,2017,October,40,1,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,104.18,0,0,Canceled,Taylor Morales,santosjared@example.com,001-219-830-7063x38785,4687208604512,2025-12-27 +City Hotel,0,4,2017,July,31,30,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,142.07,0,3,Check-Out,Laura Davila,iclark@example.org,001-635-224-9180x63335,4030282881454128,2026-02-11 +City Hotel,1,407,2017,June,25,19,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,109.22,0,0,Canceled,Tammy Werner,lhamilton@example.com,8718194186,4135965471065593,2024-05-11 +Resort Hotel,0,318,2017,March,11,16,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,14.0,222.0,0,Transient-Party,42.22,0,0,Check-Out,William Wood,wwilliams@example.net,+1-364-207-2091x92606,180088050172599,2024-06-24 +City Hotel,1,113,2017,June,26,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,19,Transient,107.05,0,0,Canceled,Sherry Miller,michael20@example.com,977-864-8619x85320,3595274119037436,2025-03-01 +Resort Hotel,0,10,2017,May,20,14,2,6,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,97.51,0,1,Check-Out,Danielle Mcconnell,htate@example.net,904.471.3362x217,3593689593029462,2026-02-01 +City Hotel,0,0,2017,November,45,7,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,11.0,56.0,0,Transient-Party,43.84,0,0,Check-Out,Jason Garcia,elizabeth55@example.com,201-229-5116,579818250238,2024-03-27 +Resort Hotel,0,0,2017,November,44,3,0,5,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,103.0,179.0,0,Transient,53.41,0,0,Check-Out,Laura Spence,jacquelinecummings@example.org,(833)782-4076x14413,4884569376388151706,2025-12-31 +Resort Hotel,1,93,2017,December,49,6,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,206.0,179.0,0,Transient,129.96,0,0,Check-Out,Phillip Herman,zachary63@example.net,+1-485-692-6587x44647,3529588767407539,2024-10-28 +City Hotel,0,46,2017,November,45,8,2,2,2,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,252.0,0,1,Check-Out,Patricia Atkinson,huntercharles@example.net,5233404104,6011977212632973,2024-09-04 +Resort Hotel,1,29,2017,January,3,18,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,44.68,0,0,Canceled,David Ayers,gregorymills@example.com,(515)692-8308x86746,38258645334855,2025-04-02 +Resort Hotel,0,78,2017,December,52,30,2,5,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,64.87,0,1,Check-Out,Bryan Martin II,stephen67@example.com,905-904-2076x4740,676354731868,2024-09-24 +City Hotel,0,112,2017,March,12,16,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,1,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,100.62,0,1,Check-Out,Cory Guerrero,kstrickland@example.net,(663)226-2907,180022779950670,2024-12-11 +City Hotel,0,56,2017,July,28,8,2,1,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,133.5,0,1,Check-Out,Jared Smith,cpowell@example.com,001-204-930-5446x59147,676146341471,2025-12-10 +City Hotel,1,20,2017,April,18,27,1,0,2,0.0,0,BB,IRL,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,108.14,0,0,Canceled,Jon Day Jr.,robbinsdeanna@example.net,001-566-629-1345,4697295155510093235,2024-04-22 +Resort Hotel,0,1,2017,May,19,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,62.7,0,0,Check-Out,Hannah Perez MD,ghuffman@example.net,957.398.4171x817,3552009096219107,2025-06-11 +City Hotel,0,37,2017,December,51,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient,63.46,0,1,Check-Out,Mary Church,jonwall@example.com,4148445672,581035885358,2026-03-27 +Resort Hotel,0,3,2017,June,23,7,2,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,213.03,0,0,Check-Out,Gavin Howell,michaelponce@example.com,(627)249-7016,4806337320937,2024-09-27 +City Hotel,1,2,2017,May,22,27,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Linda Jones,duanebrown@example.net,777-456-6554x335,3538272525280566,2025-08-06 +Resort Hotel,0,45,2017,May,18,4,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,45.25,0,2,Check-Out,John Clark,stephanie65@example.com,+1-585-853-8345,3599854634719133,2025-03-26 +City Hotel,0,4,2017,August,32,9,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.39,0,1,Check-Out,Edward White,hgardner@example.com,+1-271-441-9557x99552,6011076331257901,2025-12-03 +Resort Hotel,0,139,2017,May,21,24,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,47.51,0,1,Check-Out,Zachary Hill,shellyharper@example.org,275-745-2129x19137,4687689039871450173,2025-12-27 +Resort Hotel,0,18,2017,November,47,21,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,165.0,179.0,0,Transient,42.14,1,2,Check-Out,Joshua Smith,ihunter@example.net,742.921.9641x747,675986887569,2025-08-06 +City Hotel,0,58,2017,July,29,19,0,2,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,113.91,0,0,Check-Out,Jeffrey Wallace,christopher51@example.net,9749821929,5392221907699844,2024-07-16 +Resort Hotel,1,24,2017,December,48,2,1,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,27.0,179.0,0,Transient,82.81,0,0,Canceled,Jennifer Anderson,crivera@example.net,(279)498-2939x9585,3549236062076189,2024-10-09 +City Hotel,0,144,2017,August,35,26,0,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,240.04,0,0,Check-Out,William Leblanc,ortizchelsea@example.com,001-838-305-4768x24696,349692109131841,2024-08-23 +City Hotel,1,143,2017,August,33,15,0,6,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,2,Canceled,Melissa Ruiz,michellelee@example.com,(440)868-3031,4982408813001145,2024-11-07 +City Hotel,1,52,2017,March,14,30,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,238.0,179.0,0,Transient,134.85,0,1,Canceled,Richard Franklin,bakermark@example.com,(884)522-0860,4198493928897,2024-04-07 +City Hotel,0,57,2017,October,43,24,1,3,2,0.0,0,BB,SWE,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,81.29,0,0,Check-Out,Lori Madden,nicole13@example.com,(635)413-5427,6011661779189748,2024-04-11 +City Hotel,0,4,2017,September,37,12,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,14.0,215.0,0,Transient-Party,51.5,0,0,Check-Out,Sarah Proctor,whiteregina@example.net,2923535333,3587853907869066,2024-10-31 +City Hotel,1,47,2017,February,7,16,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,72.55,0,1,Canceled,Michael Woodward,brianguerra@example.com,941-768-4565x57203,213115338773277,2026-02-08 +City Hotel,0,76,2017,April,17,27,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,193.0,0,Transient-Party,53.07,0,0,Check-Out,Joshua Reed,brentallen@example.com,581-382-7948x20535,060432685364,2025-09-27 +City Hotel,0,174,2017,September,36,7,0,3,1,1.0,0,SC,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,106.3,0,3,Check-Out,James Bonilla,scarter@example.org,(310)617-4224,6594301554580713,2024-07-03 +City Hotel,0,50,2017,May,19,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,G,0,No Deposit,36.0,179.0,0,Transient-Party,89.04,1,0,Check-Out,Robert Grant,mitchellrobert@example.net,247-805-8981,4300910797420253,2024-04-19 +Resort Hotel,0,94,2017,March,10,9,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,175.0,179.0,0,Transient,100.61,1,1,Check-Out,Aaron Reed,erin07@example.net,(443)990-9266,4105221322590,2025-09-16 +City Hotel,1,2,2017,January,4,24,1,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,93.96,0,2,Canceled,Monica Morton,pagechad@example.com,693.818.1314,213113833066016,2025-07-07 +City Hotel,0,414,2017,October,41,14,0,1,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,221.0,0,Transient-Party,107.76,1,0,Check-Out,Russell Green,carsonjonathan@example.com,001-315-678-2872x32828,3576159286007879,2024-05-23 +City Hotel,0,51,2017,October,42,17,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,11.0,70.0,0,Transient-Party,40.36,0,0,Check-Out,Lisa Caldwell,ganderson@example.net,001-540-738-2695x44086,346885666305294,2026-02-08 +City Hotel,1,152,2017,June,26,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,43,Transient,104.53,0,0,Canceled,Melvin Weeks,jballard@example.net,001-978-899-8529x591,3598221856495522,2026-02-14 +Resort Hotel,0,26,2017,October,41,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,74.0,0,Transient-Party,61.92,0,0,Check-Out,John Kennedy,jamie59@example.com,468.423.9945x9923,676333255096,2025-12-04 +City Hotel,0,2,2017,April,15,12,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,130.38,0,2,Check-Out,Adam Sanchez,leepatrick@example.org,478-686-4315x512,2647316089668714,2025-06-06 +Resort Hotel,1,46,2017,August,33,13,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,52.03,0,2,Canceled,Alexandria Collins,barnescarly@example.net,695.965.7293x44444,4728718360002885,2025-12-15 +City Hotel,0,40,2017,August,32,9,2,1,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,206.68,0,0,Check-Out,Autumn Hill,zsmith@example.com,001-442-547-7196,4818442733367096,2024-07-12 +City Hotel,0,4,2017,October,44,31,1,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,82.15,0,0,Check-Out,Philip Munoz,karen03@example.org,3029753491,343660524157804,2024-11-01 +City Hotel,0,57,2017,March,12,17,0,2,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,146.66,0,0,Check-Out,Kimberly Thompson,brookscassandra@example.com,5866949981,4914308931877553,2025-09-22 +City Hotel,1,89,2017,December,52,27,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,273.0,179.0,62,Transient,111.97,0,0,Canceled,Allison Clark,gregorycox@example.org,001-691-708-8881x08155,2242911322897143,2024-03-29 +City Hotel,0,18,2017,November,48,30,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,H,0,No Deposit,14.0,220.0,0,Transient-Party,100.78,0,0,Check-Out,Randy Wang,alejandra42@example.com,619-227-5150x519,4352360274261,2024-08-28 +Resort Hotel,0,150,2017,March,11,10,2,4,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,226.63,1,3,Check-Out,Amanda Palmer,lthomas@example.com,3679085009,349523522808212,2025-04-14 +Resort Hotel,0,3,2017,March,10,6,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,250.0,179.0,0,Transient,223.98,0,3,Check-Out,Kimberly Ross,vcastro@example.com,936.606.5662x447,3570582442764529,2025-08-31 +City Hotel,0,90,2017,December,49,9,2,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.62,0,0,Check-Out,Lori Steele,vanessa74@example.com,258-585-1077,4894873544920979,2025-05-16 +City Hotel,0,46,2017,April,14,5,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.65,0,0,Check-Out,Jeremy Fernandez,markkim@example.net,585-968-5916x649,4350629107719201138,2024-12-16 +City Hotel,0,85,2017,April,14,3,1,2,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,106.4,0,2,Check-Out,Frank Franklin,johnsantos@example.net,+1-509-260-7968x348,213159009228393,2025-12-06 +City Hotel,0,1,2017,March,14,31,1,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.39,1,0,Check-Out,Wesley Reyes,brian52@example.com,(252)906-5274x61576,180060569392273,2024-10-18 +Resort Hotel,0,16,2017,March,12,25,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,193.0,179.0,0,Transient,54.04,0,0,Check-Out,Michelle Clark,charlesjackson@example.com,892-308-1500,4803748394217984050,2025-05-03 +Resort Hotel,0,39,2017,November,44,2,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,53.91,0,1,Check-Out,David Le,kennedykristopher@example.org,238.786.6505x36242,375819571636786,2025-07-30 +City Hotel,0,46,2017,April,15,10,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,138.51,0,1,Check-Out,Anthony Lee,brodriguez@example.org,302-520-4664x35080,4846298332564721801,2026-03-23 +Resort Hotel,0,155,2017,March,11,11,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient,82.24,0,0,Check-Out,Mrs. Sarah Gordon,hartmanluke@example.net,(686)454-7776x429,30312855576537,2026-01-23 +City Hotel,0,1,2017,April,14,2,0,1,1,0.0,0,BB,DEU,Direct,Corporate,0,0,1,D,D,0,No Deposit,9.0,179.0,0,Transient,113.44,0,2,Check-Out,Amy Mack,hernandezmary@example.com,+1-847-739-7631,3537298366042543,2024-09-05 +City Hotel,1,140,2017,May,20,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,128.86,0,0,Canceled,Andrew Cortez,grossbradley@example.org,7718435429,3568698948653372,2026-01-09 +City Hotel,0,83,2017,June,26,27,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.02,0,1,Check-Out,Karen Novak,elong@example.com,9509881951,3593052575279979,2024-04-10 +Resort Hotel,0,28,2017,November,45,6,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,41.65,1,0,Check-Out,Amanda Shelton,mmccann@example.org,456-311-3092x886,30538170143401,2026-02-04 +City Hotel,1,2,2017,November,45,6,1,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,99.47,0,0,Canceled,Michael Davis,nichole13@example.org,(236)353-4628x91126,36725995084803,2024-05-30 +City Hotel,0,49,2017,September,36,4,0,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,104.94,0,2,Check-Out,Samantha Soto,davidmiller@example.com,802-470-0672x064,4843051678992,2024-08-28 +City Hotel,1,152,2017,February,9,28,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.45,0,1,Canceled,Sharon Miller,grantjohn@example.net,924.329.0642x34294,3529785256632417,2025-08-02 +Resort Hotel,0,12,2017,May,19,10,3,10,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,137.33,0,0,Check-Out,Scott Thomas,barrycrane@example.net,(228)995-1633,6544965866457819,2025-11-01 +Resort Hotel,0,145,2017,August,31,4,2,5,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,H,0,No Deposit,244.0,179.0,0,Transient,182.48,0,1,Check-Out,Brett Rogers,thomasjohns@example.org,001-435-841-8336x606,3525758253323680,2026-01-29 +City Hotel,0,304,2017,September,39,26,2,1,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,1.0,179.0,0,Transient-Party,66.36,0,0,Check-Out,George Williams,natashacrawford@example.net,(868)884-0092x615,4738869767819930,2025-02-02 +City Hotel,0,16,2017,August,34,22,0,2,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,1,No Deposit,32.0,179.0,0,Transient,138.07,1,1,Check-Out,James Lopez,msmith@example.com,(959)216-3296,4229265109428538,2025-01-03 +Resort Hotel,0,107,2017,June,25,15,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,80.45,0,1,Check-Out,Kirk Powell,hilldavid@example.net,7026361149,347214261207756,2025-02-17 +Resort Hotel,0,253,2017,March,14,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,221.0,0,Transient-Party,39.52,0,0,Check-Out,Jesse Sutton,jonathannichols@example.org,704-278-2627,675938292629,2025-04-29 +City Hotel,0,411,2017,September,38,22,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient-Party,43.68,0,1,Check-Out,Bridget Edwards DDS,joshua68@example.org,547-223-6769x2693,4507088002505373507,2025-02-28 +City Hotel,0,18,2017,October,43,22,2,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,67,Transient-Party,100.63,0,0,Check-Out,Adam Woods,adamsandrew@example.net,(658)991-9105,3532647103050224,2025-09-04 +City Hotel,0,14,2017,September,39,27,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,121.83,0,2,Check-Out,Michael Phillips,hopkinscheyenne@example.net,001-694-275-4499x0680,4879750099900437812,2025-01-28 +City Hotel,1,116,2017,June,24,9,1,2,1,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.24,0,1,Canceled,Tina Brown,rhodesalexis@example.com,640-743-7496,4554999374737771737,2025-09-10 +City Hotel,0,24,2017,June,23,2,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.42,0,2,Check-Out,Stephanie Barton,christine34@example.com,976.994.5330,4630745598748,2025-08-15 +City Hotel,1,128,2017,June,25,19,2,4,3,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,137.1,0,0,Check-Out,Stephanie Miller,hannah65@example.org,906.264.5013,639049783223,2025-11-06 +Resort Hotel,1,45,2017,July,28,9,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient-Party,135.24,0,0,No-Show,Donna Reese,chelseawilliams@example.org,(319)685-8615,4431310651022778,2026-03-27 +City Hotel,1,41,2017,October,43,23,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,87.36,0,0,Canceled,Laura Daniel,perezchristopher@example.com,(480)428-4431,4324521319279655,2026-01-10 +Resort Hotel,0,97,2017,March,10,6,2,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,D,0,No Deposit,13.0,331.0,0,Transient,0.5099000000000001,0,1,Check-Out,Jennifer Sparks,stevensonjeffrey@example.org,307.365.5765,639027268841,2025-09-26 +City Hotel,1,46,2017,April,15,7,1,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.01,0,0,No-Show,Yolanda Anderson,steven71@example.org,+1-579-827-8941x5016,6011010607930362,2025-09-06 +City Hotel,0,25,2017,May,19,11,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,87.1,0,2,Check-Out,David Warner,sarahturner@example.org,922-423-0911x15105,5301217227517765,2024-07-24 +City Hotel,1,0,2017,August,32,11,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,10.0,179.0,0,Transient,137.15,0,1,Canceled,Tammy Cox,allison18@example.com,+1-623-529-0302x9523,584513392558,2024-05-13 +City Hotel,1,106,2017,April,18,28,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,50.45,0,0,Canceled,Brenda Cruz,ovelazquez@example.com,580-313-7133x880,180028949934817,2025-10-12 +Resort Hotel,0,54,2017,August,32,3,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,46.84,0,0,Check-Out,Elizabeth Anderson,thomasmelissa@example.net,860-445-2643,503807238889,2026-02-06 +City Hotel,1,160,2017,August,33,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,131.25,0,0,Canceled,Mr. Jerry Robinson,adam46@example.net,7718372737,4574468080641226110,2025-06-25 +City Hotel,0,20,2017,March,13,28,2,2,2,0.0,0,BB,,Direct,Corporate,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Transient-Party,65.41,1,0,Check-Out,James Rivera,nkim@example.com,4138304695,4549212812863,2025-08-24 +City Hotel,1,414,2017,June,25,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,135.8,0,0,Canceled,Jennifer Williams,ginaoneill@example.net,(897)272-0814,5481911216970843,2026-03-15 +Resort Hotel,0,11,2017,August,34,22,0,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient-Party,209.36,0,1,Check-Out,Jeffrey Smith,bparks@example.net,(228)762-1697,4628134434383221,2025-09-21 +City Hotel,1,11,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,42,Transient,84.55,0,0,No-Show,Nicholas Eaton,obrown@example.org,896.644.2686,3595594506275939,2025-09-04 +City Hotel,1,94,2017,June,26,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,139.97,0,1,Canceled,Mark Adams,shelbypetty@example.com,(258)795-5386,4580083095809,2025-06-21 +Resort Hotel,0,5,2017,March,13,26,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,40.55,0,1,Check-Out,Joshua Martinez,julia11@example.org,941-456-8675,36872074925421,2024-08-02 +Resort Hotel,0,202,2017,September,37,14,3,7,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Contract,65.24,0,0,Check-Out,Laurie Vargas,xwatts@example.com,438-868-5541x647,3583882741399760,2025-04-01 +City Hotel,0,13,2017,December,52,24,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,149.91,0,2,Check-Out,Amy Yang DDS,lesliepotter@example.net,001-472-381-6766x0487,4226686676838796,2025-01-01 +Resort Hotel,0,385,2017,March,12,24,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,281.0,179.0,0,Transient,42.01,0,0,Check-Out,Chad Franklin,amendoza@example.org,968-376-3347,180022369616228,2025-07-12 +Resort Hotel,1,161,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,15.0,223.0,75,Transient-Party,92.39,0,0,Canceled,Michael Saunders,youngtrevor@example.com,+1-229-596-8447x549,4396806061519,2026-02-25 +City Hotel,1,257,2017,October,40,2,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,68.29,0,0,Canceled,Jacob Mcdonald,wrichardson@example.com,821.559.5840x98228,38417787096546,2025-02-25 +Resort Hotel,0,125,2017,March,14,30,2,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,15.0,179.0,75,Transient-Party,114.03,1,3,Check-Out,Crystal Rodriguez,brianna46@example.com,(337)346-0919x50584,3566674062400140,2025-09-30 +City Hotel,0,64,2017,March,14,31,1,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,222.27,0,3,Check-Out,Chelsea Long,sandycarey@example.net,(329)403-8455x09531,4252536220736553728,2026-03-08 +City Hotel,0,395,2017,September,36,4,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,110.26,0,1,Check-Out,Mitchell Jordan,jacob21@example.net,+1-634-546-1681,4768553079624161,2025-05-18 +City Hotel,0,7,2017,October,43,24,0,1,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,77.38,0,0,Check-Out,Walter Bailey,zcoleman@example.com,001-998-412-5998,3529788524301567,2024-11-30 +Resort Hotel,1,0,2017,July,29,14,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,F,0,No Deposit,242.0,179.0,0,Transient,52.83,0,1,Canceled,Katherine Phillips,lori07@example.org,546-940-4238,30343063885170,2024-06-23 +City Hotel,0,9,2017,December,49,3,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,50.16,0,0,Check-Out,Robert Jarvis,ortizmatthew@example.net,(284)446-1826x187,3589463633909752,2024-08-15 +Resort Hotel,1,14,2017,July,27,3,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,239.0,179.0,0,Transient,160.45,1,0,Canceled,Breanna Flores,williamseric@example.com,+1-791-380-3033x075,4597243894488895685,2024-07-09 +City Hotel,0,36,2017,July,28,9,1,2,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,86.79,0,1,Check-Out,Tonya Campbell,shelleyrichardson@example.net,+1-348-448-6606x570,38690789717372,2026-02-10 +Resort Hotel,0,0,2017,August,32,5,2,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,G,0,No Deposit,18.0,179.0,0,Transient,138.08,0,0,Check-Out,Gary Palmer,bgray@example.com,001-288-553-9616x1628,4572018603489091277,2024-08-17 +Resort Hotel,0,6,2017,February,6,5,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,81.0,0,Transient,47.25,0,0,Check-Out,Alan Hoffman,jonesmadison@example.net,(697)245-6130,4843882084456965,2025-11-05 +City Hotel,1,173,2017,June,27,30,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,147.37,0,0,Canceled,Linda Bailey,stephen59@example.net,(735)438-8677x15350,4984510313414393414,2024-06-11 +Resort Hotel,0,43,2017,August,33,13,2,10,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,137.71,0,0,Check-Out,Daniel Mercado,stacy77@example.net,529-724-0406,6011265434100122,2025-08-15 +City Hotel,0,2,2017,August,33,14,0,1,1,0.0,0,BB,,Complementary,Direct,1,0,0,A,K,1,No Deposit,10.0,45.0,0,Transient,1.28,0,1,Check-Out,Pamela Sanders,kwilson@example.com,001-326-443-6700,180085687246820,2025-04-16 +City Hotel,1,159,2017,July,28,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,110.64,0,0,Canceled,Sean Harper,jeffrey40@example.net,3155534675,2231427135305797,2024-05-24 +City Hotel,0,16,2017,September,37,10,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,0.97,0,0,Check-Out,Brittany Snyder,johnsonjesse@example.com,(318)562-1717x6269,3587141853399316,2024-10-21 +City Hotel,0,54,2017,December,52,24,2,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,1.35,0,1,Check-Out,Ethan Russell Jr.,bwoods@example.org,+1-522-474-4207x28352,4351459721947468,2025-01-11 +City Hotel,1,109,2017,August,34,17,2,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,216.23,0,3,No-Show,Jennifer Cochran,christopher13@example.com,408.298.7044,6011372710852218,2025-02-24 +Resort Hotel,0,7,2017,November,45,6,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,E,G,0,No Deposit,239.0,179.0,0,Transient,111.62,1,1,Check-Out,Emily Henderson,joshua92@example.org,6327962375,3558794373907110,2024-06-05 +City Hotel,1,35,2017,April,16,17,1,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,117.65,0,0,Canceled,Edward Shields,kscott@example.net,+1-618-724-9863x9336,4951510481238940311,2025-08-21 +City Hotel,0,1,2017,October,40,5,1,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,K,0,No Deposit,11.0,156.0,0,Transient,3.44,0,0,Check-Out,Javier Dorsey,ibarber@example.com,+1-308-798-4843x42873,501860750329,2025-03-17 +City Hotel,0,190,2017,August,32,7,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,252.0,0,3,Check-Out,Craig Marsh,martinezrichard@example.net,(971)455-4214x372,4055853832599599,2025-07-11 +City Hotel,0,115,2017,March,13,27,1,5,2,1.0,0,BB,CHE,Online TA,Direct,0,0,0,A,E,0,No Deposit,245.0,179.0,0,Transient,107.79,0,1,Check-Out,Jonathan Johnson,juliecooper@example.net,477.752.4759,213121749267891,2025-02-01 +Resort Hotel,1,95,2017,July,28,13,2,10,2,1.0,0,BB,,Direct,Direct,0,0,0,F,E,0,No Deposit,16.0,179.0,0,Transient,163.08,0,0,Canceled,Cristian Smith,jacqueline92@example.org,823-429-7672,3500129076855739,2025-09-28 +Resort Hotel,1,212,2017,July,29,19,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,324.0,179.0,0,Transient-Party,40.43,0,0,Canceled,Michael Walters,meyerjeremy@example.org,898-255-6213,3508876225404668,2024-10-08 +City Hotel,1,154,2017,October,42,15,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,16,Transient,82.28,0,0,Canceled,Jonathan Davis,lindsay56@example.org,(592)833-1889x363,30008593382655,2024-12-02 +City Hotel,0,96,2017,August,34,19,2,4,2,0.0,0,HB,,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,3,Check-Out,Gregory Alexander,michaeldennis@example.org,308-927-0934x1990,349636641918884,2025-08-26 +City Hotel,0,265,2017,September,39,28,0,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,80.71,0,0,Check-Out,Carl Scott,nfrench@example.org,993.411.7454,3564387096043040,2026-01-20 +City Hotel,1,97,2017,July,30,24,0,4,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.58,0,0,Canceled,David Nguyen,shawjonathan@example.net,6287578257,4543199467387,2025-01-11 +City Hotel,0,27,2017,June,26,27,1,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,167.48,0,0,Check-Out,Derek Mckinney,bjohnson@example.org,772.571.2510x534,213111155022328,2025-04-21 +Resort Hotel,0,184,2017,March,11,13,0,1,2,0.0,0,BB,RUS,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,221.0,0,Transient-Party,61.33,0,0,Check-Out,Monique Diaz,dawn48@example.com,+1-875-852-8435x526,3522123524336131,2024-07-17 +Resort Hotel,1,146,2017,July,30,24,3,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,196.0,0,0,Canceled,Robert Benson,william43@example.net,001-967-741-2145x8521,580983901886,2025-10-24 +City Hotel,0,0,2017,August,32,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,0,0,B,B,0,No Deposit,4.0,179.0,0,Transient-Party,94.23,0,1,Check-Out,Mrs. Amy Sharp,walleranthony@example.org,523-373-9097,213198561919700,2024-04-08 +City Hotel,0,41,2017,September,37,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,86.64,0,0,Check-Out,Timothy Miller,wagnerhannah@example.org,364-202-3276,375052606586947,2025-12-13 +Resort Hotel,0,11,2017,May,21,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,E,1,No Deposit,40.0,179.0,0,Transient,140.63,1,2,Check-Out,Kelly Johnston,brian96@example.com,978.790.5242x732,4887303956193,2025-07-14 +Resort Hotel,1,41,2017,August,33,15,2,5,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,L,B,0,No Deposit,15.0,179.0,0,Transient,127.04,0,2,Canceled,Vincent Zuniga,lbennett@example.com,473-322-1462,502058593968,2024-06-06 +Resort Hotel,0,44,2017,September,36,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,106.69,0,0,Check-Out,Jennifer Lewis,wendy82@example.com,3104212959,4767582084844,2025-09-10 +Resort Hotel,0,0,2017,January,5,31,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,249.44,1,1,Check-Out,Stephen Spencer,kerri30@example.com,287.618.9458x736,4913075005927777,2024-11-27 +Resort Hotel,1,161,2017,July,28,9,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,Frank Lawson,turnerchristopher@example.com,(657)395-6297x1034,4709748604834143,2025-09-22 +City Hotel,1,151,2017,July,29,14,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,219.23,0,2,Canceled,Michael Stevens,wwalters@example.com,841.230.5008,4604169817674455,2024-08-11 +City Hotel,0,113,2017,October,40,5,2,3,2,0.0,0,BB,ITA,Direct,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,80.36,0,0,Check-Out,Adriana Parks,lhill@example.net,353.643.7546x01024,30105257446626,2024-06-01 +Resort Hotel,1,23,2017,April,18,28,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,238.0,179.0,0,Transient,90.38,0,0,Canceled,Cody Sanchez,dyang@example.org,+1-481-608-5515,30142249728597,2024-12-18 +City Hotel,0,5,2017,May,22,30,1,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,240.19,0,1,Check-Out,Karen Wells,tiffanyhamilton@example.com,586.608.6489x7258,4309138067422699,2024-10-14 +City Hotel,0,97,2017,April,15,9,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,147.69,0,1,Check-Out,Kimberly Sanchez,griffithsteve@example.org,257.528.6998x6666,4649472250395068,2025-08-19 +Resort Hotel,0,4,2017,August,33,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,235.64,0,1,Check-Out,Martin Elliott,tristan27@example.net,4634990693,213102865583402,2024-10-23 +City Hotel,1,25,2017,August,32,11,0,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,195.26,0,0,Canceled,Larry Reynolds,dawn04@example.net,001-315-653-7881x598,578073996337,2024-08-17 +City Hotel,0,13,2017,March,14,30,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.02,0,1,Check-Out,Colton Roth,gjones@example.com,+1-903-365-7437x97409,180061177856626,2025-08-04 +Resort Hotel,1,168,2017,May,22,31,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,E,0,Refundable,13.0,179.0,0,Transient-Party,93.83,0,0,Canceled,Lindsey Mendoza,josephcole@example.net,467.587.4602,4739399054215979639,2025-06-18 +City Hotel,0,4,2017,December,49,5,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,100.53,1,1,Check-Out,Brandi Cunningham,scottrobert@example.org,001-496-888-5292x204,3554054974444474,2026-02-26 +Resort Hotel,1,37,2017,October,42,18,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,54.92,0,1,Canceled,Donna Williams,samantha19@example.net,+1-652-991-7937x4936,4563731009669358608,2025-01-30 +Resort Hotel,0,109,2017,April,17,23,2,2,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,F,D,1,No Deposit,242.0,179.0,0,Transient,131.36,1,1,Check-Out,Tammy Morris,johnjohnson@example.org,920-720-8868,676345941840,2024-06-15 +City Hotel,1,157,2017,June,27,30,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,134.67,0,0,Canceled,Robin Donovan,ramseybrandon@example.net,(339)970-7239,4753935265296279655,2024-05-23 +Resort Hotel,0,159,2017,August,35,27,0,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,244.0,179.0,0,Transient,214.9,0,1,Check-Out,Julia Williamson,michael48@example.org,001-422-250-1666,3512892940527745,2024-04-01 +City Hotel,0,0,2017,May,19,4,1,0,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,D,D,0,No Deposit,187.0,179.0,0,Transient,187.31,0,0,Check-Out,Chelsea Martin,ethompson@example.net,(733)461-9926x3707,3556919849637676,2024-12-04 +City Hotel,0,2,2017,July,28,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,14.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,David Fitzpatrick,chadthomas@example.net,(869)600-1964x077,4349401859904628139,2025-09-08 +Resort Hotel,0,0,2017,January,2,13,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,245.0,179.0,0,Transient,37.87,0,1,Check-Out,Nathan Dillon,justinking@example.org,+1-686-951-5488,3574026267494370,2025-11-08 +City Hotel,1,290,2017,October,42,19,2,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.72,0,0,Check-Out,Amber Allen,jonesjohnny@example.net,(845)513-5816x87435,4259448600004932,2025-04-18 +City Hotel,0,166,2017,April,17,25,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.36,0,3,Check-Out,Kenneth King,jlara@example.net,610-833-7875,213128467284297,2024-08-14 +City Hotel,0,15,2017,April,17,20,1,3,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,115.37,0,0,Check-Out,Ana Jensen MD,epope@example.com,920-700-8943x613,30025643329635,2024-09-25 +City Hotel,0,261,2017,May,21,22,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,22.0,179.0,0,Transient,125.82,0,0,Check-Out,Kelli Carter,moralesandrew@example.net,355.722.7808,4544181437468682,2026-01-06 +City Hotel,0,250,2017,November,45,5,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.2,0,2,Check-Out,Edward Keller,efuller@example.com,435-585-1069x940,676164732569,2025-12-07 +City Hotel,1,19,2017,July,30,25,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,134.2,0,2,Canceled,Kelly Preston,mking@example.com,813.798.3649x51862,4527291906376,2025-07-10 +Resort Hotel,0,64,2017,November,46,17,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,78.0,179.0,75,Transient-Party,39.45,1,0,Check-Out,Michael Rivera,andradekristie@example.org,529.893.4718x8880,4070847367800597,2025-07-25 +Resort Hotel,1,183,2017,August,34,23,1,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Transient,103.83,0,0,Canceled,Bradley Cameron,ogutierrez@example.net,786.316.1564,4752760285471984,2025-05-17 +Resort Hotel,0,2,2017,March,11,14,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,42.94,0,0,Check-Out,Beth Price,figueroaaaron@example.net,(733)251-5866x7154,343171698614711,2024-05-05 +Resort Hotel,0,0,2017,December,50,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,44.98,0,1,Check-Out,Jessica Graham,ahayes@example.net,584.671.0873x3171,4787139356651,2025-08-28 +Resort Hotel,0,172,2017,April,14,1,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,222.0,0,Transient-Party,69.45,0,0,Check-Out,Lisa Harris,johnsoncarl@example.org,001-479-282-5629,3578752706957737,2025-09-27 +City Hotel,1,207,2017,August,34,20,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,81.05,0,1,Check-Out,Becky Smith,benjaminroberts@example.net,943.866.6147x63449,6578331932253329,2025-07-22 +City Hotel,0,37,2017,September,37,12,0,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,99.77,0,1,Check-Out,Rachel Rollins,thompsontimothy@example.org,(360)285-0905x30462,4959110604202804,2025-07-02 +City Hotel,1,137,2017,November,44,2,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,10.0,179.0,42,Transient,109.39,0,0,Canceled,Christopher Ayala,dawsondeborah@example.org,(656)892-3099,6011643925835424,2024-08-13 +City Hotel,1,71,2017,May,21,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,121.35,0,0,Canceled,Mario Maxwell,tiffanyfranklin@example.org,+1-484-758-3053x330,4499330641124923469,2025-08-12 +Resort Hotel,0,138,2017,March,13,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,222.0,0,Transient-Party,63.32,0,0,Check-Out,Katherine Mcdonald,santiagokirk@example.org,(505)340-8449x145,4990581291660872789,2025-12-07 +Resort Hotel,0,0,2017,November,46,18,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,85.67,1,0,Check-Out,Todd Perry,shirley62@example.com,(814)324-4002,2487656941770569,2025-02-28 +Resort Hotel,0,2,2017,October,41,9,2,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient-Party,80.82,0,1,Check-Out,Melissa Johnson,brittany19@example.com,+1-550-437-4354,30433086672810,2025-07-12 +City Hotel,0,7,2017,January,2,2,1,4,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,91.5,0,0,Check-Out,Timothy Blair,jamie89@example.com,(568)826-8103x58609,6011453126158042,2024-05-23 +City Hotel,0,0,2017,August,31,5,1,1,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Robert Smith,robin69@example.net,+1-451-468-0440x616,3574591334878517,2024-10-18 +City Hotel,0,16,2017,November,45,5,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,64.93,0,1,Check-Out,Amy Gray,raychristopher@example.net,(264)895-6721x6944,3510708635545887,2025-07-31 +City Hotel,1,190,2017,July,28,12,2,5,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,189.02,0,1,Canceled,Lucas Jackson,gbraun@example.net,+1-386-348-4791x0031,4554974358860177,2025-07-07 +City Hotel,0,10,2017,March,10,8,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.96,0,1,Check-Out,Elizabeth Mccoy,mary03@example.com,(886)665-9984x685,30077012432219,2024-04-19 +City Hotel,0,1,2017,May,21,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.19,0,1,Check-Out,Roger Bowman,ltownsend@example.org,(453)224-8612,213166316771262,2024-03-31 +City Hotel,0,1,2017,October,40,5,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,107.0,68.0,0,Transient,51.06,0,0,Check-Out,Elizabeth Brown,kwhite@example.com,811-413-3319x70001,6537733644381696,2024-04-26 +City Hotel,0,25,2017,March,13,25,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.01,0,0,Check-Out,Debra Leonard,allenbarbara@example.net,468.745.7405x702,4480222800264419,2025-05-28 +City Hotel,0,10,2017,August,33,18,1,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,134.74,0,2,Check-Out,Kara Blake,brendacontreras@example.org,(347)971-6791x8504,060487936233,2025-01-06 +City Hotel,0,93,2017,June,25,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,137.62,0,2,Check-Out,Jessica Fisher,fanderson@example.com,515.700.2998x160,4719106322172544,2024-12-29 +Resort Hotel,0,143,2017,April,14,5,2,2,3,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,137.0,179.0,0,Transient,100.64,0,1,Check-Out,Timothy Wilkinson,chad14@example.org,824.685.6886x4613,503807644417,2025-01-23 +City Hotel,0,163,2017,July,30,23,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.67,0,2,Check-Out,Christopher Cameron,marywilliams@example.org,825.500.0289x8544,675938336541,2024-10-16 +Resort Hotel,1,10,2017,January,4,24,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,179.0,179.0,0,Transient,85.51,0,0,Canceled,Jared Ballard,sdouglas@example.org,916-251-3658x87246,3593168061468189,2024-12-17 +Resort Hotel,0,5,2017,August,32,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient,252.0,0,3,Check-Out,Heather Bradford,welchpatrick@example.com,454-281-1404x4210,3539159173071760,2025-05-09 +City Hotel,0,42,2017,September,37,14,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.26,0,0,Check-Out,Jennifer Moses,nicholasburns@example.com,9652987451,4376486406301522,2024-10-16 +City Hotel,1,86,2017,April,17,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.68,0,2,Canceled,Jason Jones,kgood@example.org,548-344-4554x920,213144796715513,2024-08-28 +City Hotel,0,0,2017,January,2,4,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,1,A,C,0,No Deposit,15.0,68.0,0,Transient-Party,3.57,0,1,Check-Out,Debra Larson,bmiranda@example.com,(521)392-6523x3235,4045461364987,2025-01-22 +Resort Hotel,0,45,2017,August,35,30,0,3,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,238.99,1,0,Check-Out,Christine Mills,johnnyfoley@example.org,607.265.5155x900,3557964730829825,2024-11-26 +City Hotel,0,39,2017,April,16,17,0,1,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.52,0,0,Check-Out,Kevin Carrillo,gosborn@example.com,+1-880-315-7839,3511716574605082,2024-05-16 +Resort Hotel,0,5,2017,October,41,12,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,281.0,179.0,0,Group,42.51,0,1,Check-Out,Nicole Roberson,victor92@example.org,433.844.9196x82887,342500442816316,2025-03-22 +City Hotel,0,147,2017,April,18,30,1,2,1,1.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,109.04,0,0,Check-Out,Sarah George,mendozajennifer@example.net,(467)332-9459x873,213148829700673,2024-12-20 +City Hotel,0,273,2017,September,38,19,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,107.9,0,0,Check-Out,Kyle Mccarthy,rmiller@example.org,(658)449-1789x890,377987574774686,2024-10-26 +Resort Hotel,0,1,2017,December,50,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,132.66,0,1,Check-Out,Kevin Oliver,scott88@example.org,(600)480-8071,376103943408995,2026-02-20 +Resort Hotel,1,49,2017,March,11,12,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,53.11,0,1,Canceled,Erik Delacruz,morgan81@example.com,001-254-877-7334x988,501807431322,2024-11-23 +Resort Hotel,1,17,2017,March,12,23,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,64.36,0,0,Canceled,Rebecca Clark,zramirez@example.com,(318)598-7212x86080,4555065823253,2024-09-02 +Resort Hotel,0,14,2017,May,20,17,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,133.19,0,1,Check-Out,Patricia Kim,christinasimmons@example.com,6759953708,30454927235542,2024-09-07 +City Hotel,1,102,2017,March,9,3,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,89.21,0,0,Canceled,Carlos Walker,carol51@example.net,363-607-9443x59356,3594162364231161,2025-04-26 +City Hotel,1,170,2017,April,17,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,114.93,0,0,Canceled,Stephanie Garcia,jamesjohn@example.com,479-989-7101x7295,370653237063027,2025-10-27 +City Hotel,1,154,2017,July,27,3,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,159.13,0,2,Canceled,Nathan Willis,vneal@example.net,306-607-7269x978,5410965005858847,2025-05-21 +City Hotel,1,72,2017,June,24,10,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,1.0,179.0,0,Transient,123.48,0,0,Canceled,Kimberly Curtis,matthew14@example.com,001-293-710-1423x0419,180099602545737,2026-02-04 +City Hotel,0,146,2017,March,13,26,2,1,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,137.68,0,1,Check-Out,Susan Rivera,johnsmith@example.org,550.850.7980x9884,30017780213102,2024-05-17 +City Hotel,0,0,2017,March,13,27,2,0,3,0.0,0,SC,ESP,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,3.25,0,1,Check-Out,Timothy Perez,trevorlozano@example.org,001-861-290-8632x8159,379978338692858,2025-07-18 +Resort Hotel,1,166,2017,March,12,22,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,219.92,0,0,No-Show,Michael White,earlmcdonald@example.com,(574)572-0960,30527483785461,2025-06-21 +City Hotel,1,21,2017,March,10,2,1,0,1,0.0,0,SC,CHN,Online TA,GDS,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient,117.26,0,0,Canceled,Patrick Huerta,rebecca68@example.com,+1-581-569-3959x8820,213194017003470,2025-11-12 +City Hotel,0,33,2017,March,12,19,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,41.22,0,1,Check-Out,Brenda Lee,alexanderhaney@example.com,6822244642,344860041302995,2025-09-25 +City Hotel,0,164,2017,June,26,27,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,128.09,0,1,Check-Out,Kiara Sexton,brandon43@example.com,001-350-618-5390,3513838186225865,2024-04-28 +Resort Hotel,1,216,2017,September,36,3,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient,132.82,0,0,Canceled,Elizabeth Serrano,zwade@example.com,457.903.2700x58991,4183197311234590,2025-02-20 +City Hotel,0,37,2017,October,40,4,0,2,2,0.0,0,SC,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,105.97,0,0,Check-Out,Candice Sanders,khudson@example.com,3327371626,3567514638826809,2025-10-01 +Resort Hotel,0,10,2017,February,7,13,1,0,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,38.11,0,1,Check-Out,Jonathan Vasquez,wross@example.net,661.497.1989,3588844472887244,2025-02-10 +Resort Hotel,0,159,2017,September,36,9,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,173.0,179.0,0,Transient-Party,107.24,0,1,Check-Out,Patricia Fox,courtney02@example.net,4968578185,4147628819497429993,2026-03-26 +Resort Hotel,0,144,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,15.0,223.0,0,Transient-Party,42.58,0,0,Check-Out,Betty Cole,gjones@example.net,(306)665-8159x37600,36644345822475,2025-05-06 +City Hotel,1,173,2017,April,17,23,0,2,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,212.0,179.0,0,Transient-Party,83.57,0,0,Canceled,Mariah Brown,johnburke@example.com,(775)786-3712,4404738344163976,2024-09-29 +Resort Hotel,0,166,2017,March,13,31,0,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,D,2,Refundable,13.0,223.0,0,Transient-Party,37.1,0,1,Check-Out,Valerie Roberts,johncook@example.net,244-395-0581,4598495287309365,2026-01-12 +Resort Hotel,0,56,2017,July,30,25,0,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,211.71,0,1,Check-Out,Anthony Terry,alicia07@example.net,500-244-4137x6742,213124010998491,2025-02-23 +City Hotel,0,377,2017,May,19,4,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient-Party,104.31,0,0,Check-Out,Mrs. Miranda Johnston,salazarellen@example.com,489-980-9166x965,4334508479582141,2025-07-19 +City Hotel,0,0,2017,March,13,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,7.0,179.0,0,Transient,78.17,0,1,Check-Out,Eric Adkins,christopherthomas@example.org,+1-962-545-0119x81158,3521595656035451,2025-03-30 +City Hotel,0,136,2017,September,36,3,2,4,2,0.0,0,HB,,Offline TA/TO,Direct,0,0,0,A,B,0,No Deposit,36.0,179.0,0,Transient-Party,88.71,0,0,Check-Out,Kimberly Kane,charles86@example.org,001-303-465-0196x1830,6528207896696391,2024-08-10 +City Hotel,1,280,2017,May,19,5,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,149.49,0,0,Canceled,Alexander Shelton,starkmarissa@example.org,(860)974-5158,4017915708447018,2026-03-10 +Resort Hotel,0,152,2017,October,42,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,105.93,0,0,Check-Out,Melissa Hanson,jeremy08@example.org,+1-620-256-4052x05192,4193195251386824,2026-02-17 +Resort Hotel,0,141,2017,August,33,11,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,242.0,179.0,0,Transient,216.84,1,1,Check-Out,Rebecca Lee,catherine73@example.org,271-993-0808x082,4845580488292402,2024-08-01 +City Hotel,0,2,2017,October,41,10,0,1,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,139.34,0,0,Check-Out,Dana Smith,sandra31@example.net,001-531-614-1765x6932,4083513547995633,2024-04-18 +Resort Hotel,0,51,2017,February,7,11,2,5,3,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,H,H,0,No Deposit,255.0,179.0,0,Transient,63.14,0,0,Check-Out,Tamara Moore,morrismichelle@example.com,761-539-5982x9755,213179554394564,2025-02-09 +City Hotel,0,3,2017,January,2,5,0,1,1,0.0,0,BB,,Corporate,Direct,0,0,0,B,B,0,No Deposit,12.0,239.0,0,Transient-Party,40.9,0,0,Check-Out,Bryan Franco,ashleylong@example.net,366-571-1227x82580,349807215415710,2025-03-13 +City Hotel,0,1,2017,August,34,19,1,4,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,C,2,No Deposit,15.0,222.0,0,Transient,52.15,0,0,Check-Out,Spencer Butler,michael29@example.net,+1-344-433-6095x5141,4920932906132397783,2025-10-04 +Resort Hotel,1,313,2017,October,40,5,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,131.0,179.0,0,Contract,54.76,0,2,Canceled,Casey Garcia,xjackson@example.com,001-285-256-5228x6279,3553794971452340,2024-10-01 +City Hotel,0,0,2017,July,27,5,1,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,252.0,0,0,Check-Out,Steven Oconnor,burnsapril@example.net,300.381.1176,4605182645417848,2025-01-07 +Resort Hotel,1,251,2017,October,42,18,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,311.0,179.0,0,Transient,80.92,0,0,Canceled,Jennifer Ramirez,mortonlinda@example.com,219.333.6105x16354,4727131797148696,2024-08-31 +Resort Hotel,0,2,2017,March,12,20,2,5,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,245.0,179.0,75,Transient-Party,60.08,1,3,Check-Out,Dr. Travis Morris DDS,kimberlyspears@example.org,+1-743-454-9388,6567123374384792,2025-11-09 +City Hotel,0,2,2017,October,42,16,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,A,A,0,No Deposit,14.0,197.0,0,Transient,109.03,0,0,Check-Out,Johnny Garcia,susanzavala@example.net,4884581660,30287053467350,2025-03-07 +Resort Hotel,0,2,2017,March,14,31,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,112.9,0,3,Check-Out,Dawn Jordan,hartjennifer@example.com,001-799-946-1045x796,4762608189646937175,2025-02-26 +Resort Hotel,0,8,2017,March,13,27,0,5,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,64.94,0,1,Check-Out,Anthony Mills,allenkaitlin@example.org,389.630.4409x31261,36571757466451,2024-12-31 +City Hotel,1,389,2017,July,29,17,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.68,0,0,Canceled,Richard Perry,cassandra58@example.org,001-615-200-9197x39235,502055986280,2024-05-05 +City Hotel,1,85,2017,May,21,22,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,101.88,0,0,Canceled,Brandi Vega,john84@example.net,773.217.9740,4829755971391307862,2024-08-12 +Resort Hotel,0,200,2017,April,16,17,4,6,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,242.52,0,1,Check-Out,Jason Gomez,lbeck@example.net,287.448.2084,4248110497329558,2024-09-14 +City Hotel,0,48,2017,October,41,13,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,82.13,1,2,Check-Out,Christian Snow,fowens@example.org,001-453-279-5029x98697,501851184470,2024-04-27 +City Hotel,0,11,2017,February,6,5,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.08,0,1,Check-Out,Debbie Carrillo,michael09@example.com,925.509.6345x7110,3526902780736712,2025-12-17 +City Hotel,0,22,2017,October,42,18,0,4,2,0.0,0,BB,ITA,Groups,Direct,0,0,0,A,A,0,No Deposit,285.0,179.0,0,Transient-Party,78.89,1,0,Check-Out,Kaitlyn Phillips,douglasjones@example.com,219.645.9186,4758119045932440839,2025-01-17 +City Hotel,0,36,2017,November,47,18,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,62.94,0,0,Check-Out,Ryan Harris,abaker@example.net,7268042308,6506803197784328,2025-08-12 +City Hotel,0,13,2017,August,32,8,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,25.0,179.0,0,Transient-Party,167.75,0,0,Check-Out,Susan Bolton,nmullins@example.com,310-591-2833,349703146499263,2025-11-25 +City Hotel,0,2,2017,December,51,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,1,0,A,A,2,No Deposit,9.0,88.0,0,Transient-Party,66.33,0,1,Check-Out,Reginald Copeland,cdunn@example.com,3906921465,3517632698524220,2025-08-24 +City Hotel,0,29,2017,July,29,14,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.82,0,0,Check-Out,Sharon Cross,gfuentes@example.net,(960)736-2602,4138895233892,2026-02-07 +City Hotel,1,94,2017,August,35,27,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,189.36,0,1,No-Show,Tyler Russell,ppaul@example.com,(696)599-9828,3540817413124379,2024-09-08 +Resort Hotel,0,1,2017,April,17,25,1,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,1,C,C,1,No Deposit,320.0,179.0,0,Transient,3.88,1,2,Check-Out,Marcus Patrick,gomezamanda@example.net,4883424777,2272950897672021,2024-10-23 +Resort Hotel,1,4,2017,July,27,8,0,1,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,236.72,0,0,Check-Out,Thomas Hunt,bishoplauren@example.com,(883)984-9424,4925656419123933,2025-06-23 +Resort Hotel,0,2,2017,March,11,9,1,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,117.87,1,0,Check-Out,Christopher Salinas,stevensonkevin@example.com,314-715-8851x6377,4498705931020858,2024-05-17 +Resort Hotel,0,193,2017,March,10,4,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,103.56,1,1,Check-Out,Anthony Carr,henryford@example.net,372.384.2775x504,3559021612986914,2025-06-06 +City Hotel,0,8,2017,May,19,5,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,111.21,0,1,Check-Out,Amanda Franklin,brandy47@example.org,+1-281-530-6130,4047377967135,2024-03-28 +City Hotel,0,14,2017,September,38,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.31,0,0,Check-Out,Nicole Lewis,elizabeth53@example.net,001-341-856-4633x5499,2720493538738362,2024-08-17 +City Hotel,0,1,2017,April,14,5,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,146.48,0,2,Check-Out,Alexandria Carrillo,elaine10@example.net,(331)869-7540x3198,676284296263,2025-02-21 +Resort Hotel,0,253,2017,May,20,13,2,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,147.0,179.0,0,Transient-Party,112.99,0,0,Check-Out,Samantha Alvarez,pespinoza@example.net,666.784.2415x285,3564258769085131,2026-02-05 +City Hotel,0,103,2017,November,47,24,0,2,1,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.52,0,1,Check-Out,Dr. Roberto Johnston,scott90@example.com,505-993-0283x23104,4965841127014238616,2024-11-11 +City Hotel,1,153,2017,May,20,17,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,80.31,0,0,Canceled,Dr. George Hernandez,taylorbenson@example.com,+1-668-785-9148x63400,3588525585898901,2025-12-31 +City Hotel,0,1,2017,May,21,23,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,F,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Daniel Price,maria48@example.com,292.556.2923x19830,582758942160,2025-04-28 +City Hotel,0,17,2017,October,40,4,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.52,0,0,Check-Out,Adam Stewart,gloria00@example.net,001-556-631-3975x79797,4787131621050321,2024-10-09 +City Hotel,1,37,2017,January,3,19,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,40.87,0,1,Canceled,Daniel Molina,nataliemccullough@example.org,001-248-663-5641x548,2670858135979264,2026-03-10 +Resort Hotel,0,2,2017,July,27,6,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,343.0,179.0,75,Transient,222.99,0,1,Check-Out,Michael Evans,vmurphy@example.net,001-631-702-5038x71798,3556644049900613,2025-06-12 +City Hotel,0,205,2017,August,32,8,1,3,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,142.4,0,1,Check-Out,Victoria Berry,mitchelljennifer@example.net,+1-987-777-5202x139,3598678757858910,2025-09-09 +Resort Hotel,0,47,2017,January,3,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,43.77,0,2,Check-Out,Mr. Daniel King Jr.,gwilcox@example.com,507.991.0966x86034,6572289654248933,2024-06-09 +City Hotel,1,39,2017,June,25,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,13,Transient,100.3,0,0,Canceled,Ronald Juarez,dyerryan@example.com,(674)546-4475x16225,4944236478787477,2024-07-05 +Resort Hotel,1,5,2017,December,52,22,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,234.0,179.0,0,Transient,60.62,0,1,Canceled,Matthew Reynolds,acrawford@example.net,728.611.6042,4193732028847843,2025-06-06 +City Hotel,0,21,2017,April,17,28,2,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.45,0,0,Check-Out,Luis Nelson,gpitts@example.net,(350)710-9646,4748490070396998155,2024-07-15 +Resort Hotel,0,1,2017,May,20,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,127.62,0,1,Check-Out,Rhonda Williams,robertreynolds@example.com,(362)269-6550x263,4061852662452525,2024-09-15 +City Hotel,1,89,2017,December,50,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,17,Transient,110.87,0,0,Canceled,Brandon Pruitt,ogeorge@example.net,477.290.3665,4658499077095579,2025-05-20 +Resort Hotel,0,0,2017,December,50,10,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,1,2,Check-Out,Pamela Cook,charlesmiller@example.net,850.821.4062x672,379661549241323,2025-01-31 +Resort Hotel,0,43,2017,October,42,14,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,No Deposit,11.0,179.0,0,Transient-Party,52.47,0,0,Check-Out,Ryan Smith,april82@example.com,764.264.8158x8660,6011465683587348,2025-02-19 +City Hotel,1,245,2017,June,25,15,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.49,0,1,Canceled,Erik Williams,heidialexander@example.net,(786)946-0987x21073,4206079328069644,2025-01-25 +City Hotel,0,26,2017,May,21,24,0,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,13.0,179.0,0,Transient,3.53,0,0,Check-Out,Patrick Ortega,kirkjulie@example.net,(823)760-1287x73969,344598450011836,2024-10-28 +Resort Hotel,1,270,2017,June,23,2,0,2,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,189.76,0,0,Canceled,Joseph Stevens,brianmullins@example.com,610.384.1454x3840,30216750608222,2025-10-29 +City Hotel,1,414,2017,August,32,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,130.46,0,0,Canceled,Tina Wilson,john71@example.com,+1-720-900-7496x0445,4722301022004639337,2024-07-08 +Resort Hotel,1,1,2017,February,7,11,0,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,41.41,0,0,Canceled,Jose Coleman,frankmorales@example.org,905.849.1581x597,30085764250531,2024-04-01 +Resort Hotel,0,133,2017,December,49,8,2,5,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient,79.13,0,2,Check-Out,Terry Mills,samuelmyers@example.com,460-916-3426,4104749563251197,2025-04-26 +City Hotel,1,12,2017,November,47,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,136.0,179.0,0,Transient,80.18,0,0,Canceled,Aaron Boyd,jeffrey27@example.net,(425)414-6791,30002058834631,2024-04-14 +City Hotel,1,205,2017,July,29,15,0,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,108.21,0,0,Canceled,Sara Flores,michael49@example.org,001-950-375-3770,4700479501296033,2024-09-27 +City Hotel,0,48,2017,August,32,9,1,4,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,221.83,0,3,Check-Out,Shelly Horton,jcarney@example.com,676.854.8114,4781005906465220,2025-11-14 +City Hotel,0,88,2017,February,6,6,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,41.74,0,1,No-Show,Destiny Duncan,ngross@example.org,598-416-6361,3556862632530601,2026-02-23 +City Hotel,0,367,2017,July,30,26,0,1,2,0.0,0,BB,USA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,105.15,0,1,Check-Out,Matthew Robinson,jamespatterson@example.org,970.941.8036x66351,4016673184676690944,2026-02-12 +Resort Hotel,1,154,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,159.0,179.0,0,Transient,62.2,0,0,Canceled,Jessica Doyle,hendersonbenjamin@example.com,3757974151,4288554078227,2025-07-09 +City Hotel,0,13,2017,November,46,16,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,65,Transient,43.4,0,1,Check-Out,Joshua Moran,michael17@example.org,001-241-917-3521,4175732675281,2024-06-13 +City Hotel,0,12,2017,August,32,9,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.38,0,0,Check-Out,Carol Fisher,dawnmolina@example.com,480.986.0572,4319605863409052,2024-06-08 +Resort Hotel,1,52,2017,October,43,23,1,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,75.64,0,0,Canceled,Dr. Daniel Sweeney,chambersstephanie@example.com,8688647048,180093306382687,2024-05-31 +City Hotel,1,61,2017,September,36,4,2,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,157.82,0,0,No-Show,Michael Cruz,hicksandrea@example.com,9048407017,586078178702,2026-02-08 +Resort Hotel,0,20,2017,December,52,27,0,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,143.0,179.0,0,Transient-Party,44.4,0,1,Check-Out,Kevin Sandoval,brooke42@example.org,708.261.4275x139,2560215868743677,2024-11-03 +City Hotel,0,18,2017,November,45,10,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,73.0,0,Transient,81.27,0,0,Check-Out,Melanie Watson,mahoneytammy@example.org,001-211-669-7427,4989757489870461,2026-01-22 +City Hotel,1,11,2017,December,49,4,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,84.63,0,0,No-Show,Ms. Stephanie Duran,brian73@example.org,741-416-6503x9352,6555310059748508,2024-03-30 +City Hotel,0,35,2017,October,40,5,2,5,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,2,No Deposit,14.0,179.0,0,Transient,194.99,0,0,Check-Out,Jonathan Phillips,padillaemily@example.net,001-360-329-5216x43024,3585275840342583,2025-05-26 +Resort Hotel,0,34,2017,August,34,21,2,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,E,1,No Deposit,244.0,179.0,0,Transient,107.62,0,1,Check-Out,James Cox,abell@example.net,001-559-473-4914x069,6011663640209820,2024-09-08 +Resort Hotel,1,13,2017,July,30,24,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,42.71,0,0,Canceled,Erik Dean,gregoryfuentes@example.com,(379)598-6240,213121645325538,2025-05-17 +City Hotel,0,2,2017,March,12,18,0,1,2,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,E,1,No Deposit,14.0,179.0,0,Transient,108.01,0,0,Check-Out,Allison Fisher,adamsmelvin@example.com,+1-469-850-4751x902,4469916641250454,2026-02-27 +Resort Hotel,0,1,2017,March,12,21,0,2,2,0.0,0,HB,PRT,Complementary,Direct,1,0,1,E,C,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Casey Hardy,nwiggins@example.com,+1-214-387-9147x5759,4115721403704225222,2025-08-21 +City Hotel,0,13,2017,March,10,6,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,114.13,0,1,Check-Out,John Cole,dcook@example.net,660.778.3271x866,343587121651014,2025-05-09 +Resort Hotel,0,11,2017,December,49,5,0,2,1,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,I,1,No Deposit,16.0,179.0,0,Transient,2.01,1,0,Check-Out,Lauren Hooper,davidvillanueva@example.org,813-207-3995x1548,213158493763287,2025-10-02 +City Hotel,0,52,2017,November,45,9,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,99.85,0,1,Check-Out,Crystal Shelton,webstermark@example.net,+1-683-970-0561x696,343752637493331,2025-10-14 +Resort Hotel,0,125,2017,July,31,31,1,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,2,Refundable,10.0,179.0,0,Transient-Party,84.95,0,0,Check-Out,Amanda Hess,anamcmillan@example.com,228.996.7337,4742099140873941,2025-08-23 +Resort Hotel,1,315,2017,December,49,4,1,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient-Party,157.98,0,0,Canceled,Jessica Holloway,howardronald@example.com,988.390.2682,3568387481544210,2024-11-15 +City Hotel,0,273,2017,June,26,27,1,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,22.0,179.0,0,Transient,142.75,0,0,Check-Out,Michelle Burton,mooreandrew@example.com,218.879.3548x86869,4760246851500,2024-12-23 +Resort Hotel,1,37,2017,May,20,14,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,45.2,0,0,Canceled,Michael Arnold,lknox@example.org,001-415-952-3900x3592,375212425577556,2024-03-27 +City Hotel,1,3,2017,August,33,13,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.61,0,0,Canceled,Victoria Carpenter,christophermartin@example.net,739.575.4252,4652117202006,2024-06-26 +City Hotel,1,405,2017,September,37,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,94.03,0,0,Canceled,Andrea Moody,huntchristopher@example.net,001-511-451-1866x8977,2234128165715825,2024-09-01 +City Hotel,0,1,2017,January,2,3,2,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,242.88,0,1,Check-Out,Erik Harris,dherman@example.org,259.576.2995,2293388448092297,2024-10-08 +City Hotel,1,64,2017,March,11,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,122.48,0,0,Canceled,Virginia Johns,joshua80@example.net,+1-555-910-1971x935,379298248289475,2025-01-23 +Resort Hotel,0,259,2017,July,28,9,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,46.59,0,1,Check-Out,Lori Williams,mmckee@example.net,+1-848-545-8786x7577,3556826120428560,2025-04-12 +City Hotel,1,193,2017,October,43,25,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,A,0,No Deposit,262.0,179.0,0,Contract,67.95,0,0,Canceled,Daniel Palmer,mariebailey@example.com,8613748876,676311544792,2025-05-13 +City Hotel,0,15,2017,December,52,24,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient-Party,84.49,0,1,Check-Out,Austin Snyder,sheri59@example.com,545-918-7778,4587354159412,2025-10-04 +City Hotel,0,187,2017,July,30,28,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,104.7,0,1,Check-Out,Kevin Wood,jasmine83@example.net,693-268-1668x88337,344042094574396,2026-02-04 +City Hotel,1,406,2017,July,30,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,106.04,0,0,Canceled,Dr. Lori Jackson,baileyluis@example.com,+1-233-781-9166x832,4283473969294898384,2025-05-31 +City Hotel,1,206,2017,August,35,30,1,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,117.75,0,0,Canceled,Christine Baker,fortiz@example.com,445.586.0295,30433550464108,2026-02-08 +Resort Hotel,0,152,2017,June,23,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,15.0,179.0,0,Transient,247.52,0,3,Check-Out,Jennifer Warren,robert06@example.org,723.424.9887x05074,372116351174713,2024-08-19 +City Hotel,0,149,2017,August,34,17,2,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,252.0,1,0,Check-Out,Tina Jennings,donaldsonnatasha@example.org,(479)620-7554,30563199043093,2025-04-05 +City Hotel,0,11,2017,August,35,30,2,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,215.54,1,0,Check-Out,Chris Wheeler,sanchezkyle@example.org,2143102732,3503774562520029,2024-09-21 +City Hotel,1,315,2017,December,51,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,42,Transient-Party,64.02,0,0,Canceled,Catherine Walls,mccoykaren@example.com,+1-666-510-6554,4576564066117442,2025-01-17 +City Hotel,1,357,2017,October,44,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,82.4,0,0,Canceled,Lindsey Chen,christinaadams@example.com,263-764-7593,346137777825640,2026-02-12 +City Hotel,0,10,2017,June,24,9,1,1,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,182.0,0,Transient,115.14,0,1,Check-Out,Brandon Johns,brian13@example.net,9279338664,3510263449633875,2024-12-05 +City Hotel,0,114,2017,April,17,24,1,3,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,63.82,0,0,Check-Out,Brittney Bradley,abigailwells@example.com,001-767-291-8691x80404,4944199565308245,2024-07-14 +Resort Hotel,0,5,2017,October,41,12,1,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,241.01,1,0,Check-Out,Kelly Hughes,garrett42@example.net,205-701-4431,213193541281867,2024-05-19 +Resort Hotel,0,12,2017,January,4,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,2,No Deposit,329.0,179.0,0,Transient,45.38,0,0,Check-Out,Pamela Dixon,christopher75@example.com,502-844-2074x51308,6547224615458992,2024-07-26 +Resort Hotel,0,15,2017,December,51,21,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,92.63,0,1,Check-Out,Robert Banks,raymond58@example.net,462.519.5623x5322,213144875519521,2025-06-29 +City Hotel,0,0,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,B,0,No Deposit,14.0,73.0,0,Transient,158.77,0,0,Check-Out,Thomas Hughes DDS,robert18@example.org,4715715287,4409934547664093,2024-12-12 +Resort Hotel,0,154,2017,July,30,22,1,3,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient-Party,81.46,0,0,Check-Out,Amanda Wilson,qmurphy@example.com,712.338.8956,4905520338563,2025-08-29 +Resort Hotel,0,2,2017,October,41,13,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,52.37,0,1,Check-Out,Carlos Castillo,nicholasluna@example.com,+1-869-418-1589x20649,4036147259402,2025-07-23 +City Hotel,0,10,2017,October,41,8,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.21,0,2,Check-Out,Justin Hughes,jonathancole@example.net,+1-951-399-1546x836,4246049915014172,2024-12-27 +City Hotel,1,196,2017,August,32,11,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,114.83,0,1,Canceled,Crystal Hill,christopher06@example.net,956.512.9294,3511038093716732,2024-05-10 +City Hotel,0,3,2017,March,10,5,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,D,0,No Deposit,13.0,179.0,0,Transient,86.03,0,1,Check-Out,Mary Atkinson,barbara27@example.com,+1-915-526-0343x938,4327878801694594,2025-10-25 +Resort Hotel,1,6,2017,October,42,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,45.78,0,1,Canceled,Lisa Gibson,cruzmichael@example.org,480-812-7190x8822,4388884183625889,2025-07-11 +Resort Hotel,0,136,2017,April,14,4,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,130.28,0,2,Check-Out,Miguel Williams,cynthiapowell@example.com,778-841-4400,3508707268007961,2025-06-27 +Resort Hotel,0,19,2017,August,31,2,0,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,235.69,0,0,Check-Out,Joe Mendez PhD,ronaldmccormick@example.com,(942)784-8371,347987304983026,2025-12-17 +City Hotel,0,0,2017,April,16,20,0,1,1,0.0,0,BB,NLD,Aviation,Corporate,0,0,0,D,D,1,No Deposit,14.0,158.0,0,Transient,117.82,0,0,Check-Out,Sharon Barajas,donovanerin@example.com,(864)798-3469x475,3556741522786863,2024-08-22 +City Hotel,1,414,2017,June,26,27,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,75.92,0,0,Canceled,Hector Griffin,ttaylor@example.net,966-934-6144x76289,3593201956898655,2025-10-11 +City Hotel,0,1,2017,June,25,23,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,104.6,0,1,Check-Out,Jessica Singh,sheilaperry@example.org,324.394.5011,30225040799410,2025-10-22 +City Hotel,0,98,2017,April,15,8,1,6,2,2.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,85.25,0,1,No-Show,Sara Barrett,aaron70@example.com,+1-323-590-9933x9315,2702576622011670,2025-01-08 +City Hotel,1,0,2017,August,31,5,1,0,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Canceled,Ariel Murphy,goodmankimberly@example.net,(339)691-3746,6011999562033388,2025-06-25 +City Hotel,1,93,2017,May,19,9,2,6,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,22.0,179.0,40,Transient,135.95,0,1,Canceled,Melanie Saunders,oortiz@example.org,988-826-1274,2616632298758121,2024-08-21 +City Hotel,0,147,2017,July,27,5,1,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,A,0,No Deposit,12.0,179.0,0,Transient,139.98,1,2,Check-Out,Taylor Howard,henry33@example.org,363-678-0274,562450875553,2026-03-22 +Resort Hotel,0,1,2017,February,9,25,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,41.73,1,1,Check-Out,Kelly Williamson,jillshelton@example.net,559.460.9955,4096040944729154,2024-10-19 +City Hotel,0,23,2017,February,5,2,2,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,173.23,0,0,Check-Out,Nancy Black,michaelmartin@example.net,+1-528-612-0128x744,4831913888992207629,2025-04-09 +City Hotel,0,151,2017,April,17,26,2,5,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,107.54,0,1,Check-Out,Diana Williams,terrancemiller@example.org,477-622-5210,676125694908,2025-12-09 +City Hotel,0,5,2017,February,9,29,1,2,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,98.92,0,0,Check-Out,Jordan Clark,michellehorn@example.net,001-228-612-3257x4866,4767577453285,2024-07-06 +City Hotel,0,78,2017,June,26,27,0,3,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,G,0,No Deposit,25.0,179.0,0,Transient,158.14,0,2,Check-Out,Emily Parker,wsmith@example.com,001-642-699-5325x50803,341660583706956,2025-06-22 +Resort Hotel,0,11,2017,October,42,15,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,82.3,0,0,Check-Out,Mr. Thomas Garcia,munozkimberly@example.net,001-349-407-0004,4236146180938556,2025-09-17 +Resort Hotel,0,34,2017,September,36,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,53.42,0,0,Check-Out,Darrell Wong,stacypearson@example.org,545-499-6885,30435773067089,2026-02-13 +City Hotel,0,348,2017,July,30,23,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,110.15,0,0,Check-Out,Anthony Morales,bartonjared@example.net,001-543-762-8631,4369664258865,2025-11-30 +Resort Hotel,0,252,2017,June,25,21,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,132.95,0,1,Check-Out,Ashley Burton MD,robertquinn@example.org,001-380-543-0190x71079,30505503444079,2024-10-15 +City Hotel,0,2,2017,October,43,27,0,2,3,0.0,0,BB,ITA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,134.24,0,0,Check-Out,Kimberly Jones,amandalivingston@example.com,+1-964-315-6500x64765,676172211127,2025-09-05 +Resort Hotel,0,4,2017,July,30,25,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,103.35,1,0,Check-Out,Mark Johns,monicaromero@example.org,428.538.8771x521,370797581654327,2024-09-29 +City Hotel,0,20,2017,March,10,2,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,223.94,0,1,Check-Out,Jeremy Brown,thomas46@example.org,(371)426-4600,2429238315472717,2025-12-28 +Resort Hotel,0,15,2017,July,31,31,2,5,2,2.0,0,BB,FRA,Direct,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,210.08,1,0,Check-Out,Crystal Beltran,ajohnson@example.org,(786)460-8427x37182,3542336792032648,2026-01-07 +Resort Hotel,0,0,2017,January,4,22,0,4,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,83.21,0,1,Check-Out,Lori Howard,margaret52@example.net,279.793.1923x744,3583368557090826,2025-08-04 +City Hotel,1,0,2017,January,2,7,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,31.0,179.0,0,Transient,44.99,0,0,No-Show,Deborah Cherry,mmorse@example.com,+1-921-359-6252x71952,3521145720505103,2025-03-26 +City Hotel,0,3,2017,March,12,21,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,34.0,179.0,0,Transient-Party,64.23,0,1,Check-Out,Elaine Herman,anthony77@example.org,001-758-501-7086x89330,30236444225605,2024-10-17 +City Hotel,0,0,2017,March,12,20,1,2,2,2.0,0,BB,PRT,Direct,Direct,1,0,1,C,L,0,No Deposit,17.0,179.0,0,Transient,45.63,0,1,Check-Out,Sabrina Henderson DVM,hallen@example.net,600.592.4757x817,343206975694513,2025-02-18 +City Hotel,1,316,2017,May,19,8,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,106.13,0,0,Canceled,Robin Jones,garyzimmerman@example.net,543-984-0034x6207,180056194777250,2024-05-17 +City Hotel,0,47,2017,January,4,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,E,E,0,No Deposit,243.0,179.0,0,Transient,141.62,0,1,Check-Out,Chad Flores,wmathews@example.org,677-993-0068x5540,30164433141114,2024-06-14 +City Hotel,1,101,2017,July,30,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.53,0,0,No-Show,Jonathan Stanley,mullenjohn@example.net,2909570370,38031173653859,2025-02-03 +Resort Hotel,0,2,2017,March,11,13,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,37.97,1,2,Check-Out,Heather Duffy,jeremybell@example.net,+1-576-624-5204x80057,4011543507446886,2025-10-27 +Resort Hotel,0,2,2017,July,29,14,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,235.96,1,2,Check-Out,Michael Moore,samantha27@example.net,001-976-944-9678x2530,4431724852862016,2025-04-28 +City Hotel,1,383,2017,October,44,31,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,97.44,0,0,Canceled,Maureen Bates,angelamiller@example.com,488-219-2476x712,348477902123950,2024-12-02 +City Hotel,0,106,2017,April,17,23,2,4,3,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,97.57,0,2,Check-Out,Jordan Nixon,jeremy66@example.org,(272)699-1776,30027583619199,2024-04-30 +Resort Hotel,1,18,2017,March,11,13,0,2,2,1.0,0,FB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,133.62,0,0,Canceled,Christine Johnson,daniel01@example.org,6234104991,3504346205547104,2024-11-30 +City Hotel,0,302,2017,June,25,19,2,4,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,133.0,179.0,65,Transient-Party,63.77,0,1,Check-Out,Ann Hansen,lturner@example.com,(677)261-3959,180036905502239,2025-10-29 +City Hotel,1,330,2017,May,18,2,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.5,0,0,Canceled,Mary Day,amiller@example.com,+1-880-672-8952x35370,213194089932341,2025-06-14 +Resort Hotel,1,86,2017,November,48,26,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,106.99,0,0,Canceled,Cristina Thompson MD,torresdavid@example.net,235-910-7311x25132,3584126234103563,2024-08-18 +Resort Hotel,0,14,2017,October,42,15,2,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,70.0,179.0,0,Transient,47.88,0,1,Check-Out,Nancy Jones,grichardson@example.org,001-500-821-0625x9467,4285480958346730758,2025-09-30 +Resort Hotel,0,17,2017,April,16,20,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,215.0,0,Transient,83.29,0,0,Check-Out,Patrick Medina,lisa75@example.com,+1-526-928-7794x275,4250817812974,2025-04-03 +Resort Hotel,0,1,2017,May,19,11,1,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,91.96,0,1,Check-Out,Rebecca Johnson,stephanie42@example.org,8423037398,3539105336814737,2026-01-05 +City Hotel,1,173,2017,June,25,18,3,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,131.3,0,0,Canceled,Daniel Carter,gbennett@example.org,481-890-3219x778,4321925806876829,2024-11-28 +Resort Hotel,0,38,2017,February,8,23,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,90.7,1,1,Check-Out,John Scott,christina43@example.com,695.413.5967x75287,346800927519245,2024-11-15 +Resort Hotel,0,197,2017,July,30,23,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,H,1,No Deposit,14.0,179.0,0,Transient,210.87,1,0,Check-Out,Bryan Paul,michele20@example.net,001-306-488-3125x68001,4474488755748692,2025-09-23 +City Hotel,0,35,2017,June,25,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,4.78,0,0,Check-Out,Kimberly Santos,zbeasley@example.net,001-852-835-5577,30219736764754,2025-06-29 +City Hotel,1,147,2017,April,14,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.61,0,2,Canceled,Katelyn Yang,sgordon@example.net,2786686785,30403670385939,2025-10-06 +City Hotel,0,2,2017,November,45,10,0,1,1,0.0,0,BB,FRA,Complementary,Direct,0,0,0,A,D,0,No Deposit,12.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Lisa Coleman,alicialee@example.org,001-239-557-1700,213182088794812,2025-11-10 +City Hotel,0,3,2017,March,11,12,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,1,0,0,A,B,0,No Deposit,10.0,215.0,0,Group,53.05,0,2,Check-Out,George Vaughan,eric81@example.org,9829443889,3587102513051911,2024-05-01 +Resort Hotel,1,85,2017,November,45,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,274.0,179.0,0,Transient,45.67,0,0,Canceled,Angela Beck,diamondburton@example.org,514.800.5038x08462,3588565651041267,2024-12-09 +City Hotel,1,58,2017,September,36,4,1,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.67,0,0,Canceled,Juan Brewer,amymacdonald@example.org,(424)642-1961x765,6538034007693424,2024-06-24 +City Hotel,0,3,2017,June,24,10,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,140.12,0,1,Check-Out,Stephanie Garcia,igriffin@example.net,836.737.5744x19481,3508122737933336,2024-10-31 +City Hotel,0,2,2017,August,32,5,1,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.37,0,0,Check-Out,Elizabeth Hill,oharris@example.com,001-576-601-5021,4301398584955195,2024-06-04 +City Hotel,1,0,2017,February,6,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,45.0,0,Transient,45.57,0,0,Canceled,Michael Brown,halltara@example.com,416-725-2294,4629257927282979,2025-04-05 +City Hotel,0,5,2017,October,40,5,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,0.84,0,0,Check-Out,Ruth Harris,johnlane@example.com,(471)233-9212x330,4948561385818107,2025-01-29 +City Hotel,1,39,2017,August,31,1,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,E,0,No Deposit,24.0,179.0,18,Transient,116.96,0,0,Canceled,Mr. Alexander Davies,zhangdebra@example.org,(441)546-5493x72470,30164492546294,2024-07-17 +City Hotel,0,16,2017,November,45,5,0,3,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient-Party,97.28,0,0,Check-Out,Michelle Martinez,grice@example.com,3819027027,30302417017286,2024-12-03 +City Hotel,1,14,2017,July,29,17,0,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,128.24,0,0,Canceled,Matthew Shea,aarongreen@example.org,+1-967-707-1251,4170670312880,2024-06-19 +City Hotel,1,147,2017,June,23,3,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Contract,80.37,0,2,Canceled,Patricia Johnson,mroberts@example.net,(452)309-2133,4024228818549692892,2024-05-28 +City Hotel,0,3,2017,November,45,10,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,85.57,0,1,Check-Out,Vernon Walters,gpowell@example.net,9997820422,30074198277468,2024-07-26 +City Hotel,0,361,2017,October,40,4,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,72.24,0,0,Check-Out,Nicole Andrews,petercarter@example.net,+1-720-221-6762x1632,2283733627969892,2024-07-08 +Resort Hotel,0,13,2017,February,6,4,0,4,2,0.0,0,HB,USA,Online TA,TA/TO,0,0,0,H,I,0,No Deposit,242.0,179.0,0,Transient,1.65,1,1,Check-Out,Janice Fuentes,johnsalinas@example.org,2769824408,4702854992878287897,2026-02-22 +Resort Hotel,0,88,2017,May,19,9,4,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,242.0,179.0,0,Transient,168.93,0,1,Check-Out,Steven Perry,kellywheeler@example.com,879-952-3846x20339,4354964348588485,2025-10-24 +City Hotel,1,149,2017,March,10,9,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,44.85,0,0,Canceled,Bryce Francis,ctownsend@example.org,+1-615-635-9561x2229,374079714708023,2024-07-08 +City Hotel,0,17,2017,June,26,24,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,137.76,0,1,Check-Out,Jennifer Cisneros MD,agray@example.net,292-282-2919,4039821217074935,2025-07-03 +Resort Hotel,0,27,2017,April,17,22,1,0,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,100.0,179.0,0,Transient,0.5099000000000001,0,2,Check-Out,Nicole Herman MD,qharrison@example.net,001-592-232-2924,6011379998282737,2024-08-16 +City Hotel,0,16,2017,October,41,9,2,1,1,0.0,0,SC,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,108.31,0,0,Check-Out,Tammy Taylor,gonzalezjared@example.net,969.609.9455x093,4439951899026,2025-07-04 +City Hotel,1,37,2017,October,41,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,4.0,179.0,0,Contract,61.02,0,0,Canceled,Bethany Frazier,kaylasmith@example.net,468-548-4359,6011562689887472,2025-11-05 +City Hotel,1,305,2017,September,38,21,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,156.1,0,3,Canceled,Debra Chapman,loganlevi@example.com,+1-343-313-5209x6265,630402930410,2025-06-12 +City Hotel,1,170,2017,September,37,10,2,5,1,0.0,0,HB,DEU,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.93,0,0,Canceled,Steven Clark,eadams@example.com,+1-214-322-0178x93163,630405292503,2025-07-07 +City Hotel,0,37,2017,July,30,21,1,4,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,Jay Walker,dvelez@example.net,+1-634-564-3510x28116,639014737485,2024-04-20 +City Hotel,0,1,2017,November,44,4,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Hunter Yang,hamiltondavid@example.org,885-892-2081,4661125885454394,2025-12-23 +City Hotel,0,98,2017,August,31,2,2,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.05,0,2,Check-Out,Sean Mendez,castroalicia@example.org,876.503.1682x109,4711844202880624,2024-06-08 +City Hotel,0,39,2017,March,13,27,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,99.02,0,1,Check-Out,Mark Hill,samuelbrown@example.org,001-936-363-5120,4853553318476306183,2026-01-22 +City Hotel,1,273,2017,December,51,23,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.0,0,0,Canceled,Donald Johnson,valeriehicks@example.org,(318)803-8442x54146,4282663330794971,2025-02-24 +City Hotel,0,16,2017,October,41,9,0,2,2,1.0,0,SC,BRA,Online TA,Direct,0,0,0,A,B,1,No Deposit,180.0,179.0,0,Contract,208.47,1,1,Check-Out,David Garrison,pmartin@example.net,403-823-7304,4924962757038001,2025-01-13 +Resort Hotel,1,25,2017,April,17,28,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient,90.71,0,0,Canceled,Eric Foster,kreid@example.net,636-394-1813x2563,3540394137977425,2025-03-30 +City Hotel,0,12,2017,August,34,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,23.0,179.0,0,Transient,134.77,0,3,Check-Out,Stephen Taylor,jamesduncan@example.net,001-723-884-7266x089,4235682768150991,2024-10-04 +Resort Hotel,1,272,2017,September,38,22,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Contract,86.68,0,0,Canceled,Robin Rodriguez,gregoryfisher@example.com,+1-366-842-8052,30278149298081,2026-01-31 +Resort Hotel,1,150,2017,July,27,2,4,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,65.08,0,0,Canceled,John Anderson,maurice83@example.com,001-487-352-3866x80381,4945320607151174,2025-06-29 +Resort Hotel,0,49,2017,October,40,6,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,93.61,1,3,Check-Out,Keith Casey,juliamorris@example.net,(662)555-0161x6800,4934746891653748084,2025-06-15 +Resort Hotel,0,42,2017,August,32,10,0,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient-Party,130.4,0,2,Check-Out,Tanner James,upowers@example.org,989-530-2374x68012,213115898602023,2024-07-05 +Resort Hotel,0,176,2017,July,27,8,2,4,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,127.0,179.0,0,Transient-Party,53.4,0,1,Check-Out,Frances Aguilar,natalie68@example.net,456-999-0068x8963,2296243307362603,2025-05-24 +City Hotel,0,0,2017,December,50,9,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,2.3,0,0,Check-Out,Clayton Jennings,christinaarnold@example.com,664.930.2991,3575957636504490,2024-06-16 +Resort Hotel,0,22,2017,August,34,24,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,136.49,0,3,Check-Out,Stanley Cain,danielenglish@example.net,5689608649,4370255190360266492,2025-06-10 +Resort Hotel,0,383,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,69.51,0,0,Check-Out,Andrew Robinson,monique95@example.net,001-356-633-6518x31779,4809909066332591,2025-11-18 +City Hotel,1,104,2017,June,27,29,0,3,2,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,143.63,0,2,Canceled,Rebecca Olsen,amychapman@example.net,(257)414-1044,372177876903234,2026-03-27 +City Hotel,0,18,2017,November,46,14,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Group,64.7,0,1,Check-Out,William Paul,maryjohnson@example.org,2217397648,2243084368012578,2025-11-23 +City Hotel,1,114,2017,December,51,20,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,107.52,0,1,No-Show,Arthur Bowen,joanne47@example.net,617-747-1500x836,5473525092594376,2024-03-30 +City Hotel,0,9,2017,September,38,18,1,0,1,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.42,0,0,Check-Out,Timothy Schmitt,zacharyflowers@example.net,432-793-6529,4554078255231,2024-11-19 +City Hotel,1,1,2017,December,50,10,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,D,0,No Deposit,33.0,179.0,0,Transient-Party,128.27,0,0,No-Show,Tammy Scott,kirsten11@example.com,001-598-629-4694x0410,372531915720670,2025-06-04 +City Hotel,0,15,2017,August,34,21,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,131.07,0,2,Check-Out,Karen White,karen85@example.com,267.556.8341x32618,4242202292185,2025-03-08 +Resort Hotel,0,216,2017,August,34,25,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,221.14,1,1,Check-Out,Crystal Smith,elliottnatalie@example.net,(404)719-5450x021,3508099639923336,2024-04-03 +City Hotel,0,2,2017,July,28,8,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,198.67,0,1,Check-Out,David Hall,fuenteskelly@example.net,+1-824-663-7733x4440,3571046141277646,2026-03-20 +Resort Hotel,0,0,2017,February,7,12,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,1,0,E,E,0,No Deposit,190.0,179.0,0,Transient-Party,101.93,0,0,Check-Out,Isaiah Gray,hartmanbrianna@example.net,557-888-0325x212,562103664149,2025-01-11 +Resort Hotel,0,379,2017,October,41,12,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,170.0,179.0,0,Transient,88.53,0,0,Check-Out,Angela Parks,moorebenjamin@example.net,267-802-2928x320,3553714189449979,2026-02-01 +Resort Hotel,0,281,2017,July,30,26,0,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,201.74,0,1,Check-Out,Ronald Hernandez,patelmelissa@example.com,+1-244-316-7434x1000,060488663885,2025-02-02 +City Hotel,1,367,2017,May,21,22,1,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,3.41,0,0,Canceled,Dean Harrington,ellisstephanie@example.org,+1-849-544-4061x514,2273285151632562,2024-11-12 +City Hotel,1,212,2017,August,35,31,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient-Party,139.87,0,1,No-Show,Jose Lawrence,angela83@example.org,001-414-917-4642x5021,6543869052348645,2025-10-06 +City Hotel,1,310,2017,August,32,4,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,169.83,0,1,Canceled,Arthur Golden,smithnicole@example.com,952.956.3677x4402,3500159859763024,2024-05-31 +City Hotel,0,145,2017,July,28,12,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.45,0,1,Check-Out,Adrian Morris,hobbsrebecca@example.net,7135418132,36344285808689,2025-12-12 +Resort Hotel,0,3,2017,August,33,12,0,2,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,79.79,1,0,Check-Out,Jon Graham,ewright@example.org,7749525504,3575127219408481,2025-09-06 +City Hotel,0,60,2017,June,23,4,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Cory Hale,ashleyrios@example.net,3702185392,4492598919727128336,2024-07-06 +Resort Hotel,1,172,2017,March,13,26,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,135.0,179.0,75,Transient-Party,62.72,0,0,Canceled,Kathryn Brown,cgarcia@example.net,+1-957-342-6634,180043786137705,2024-08-13 +City Hotel,0,1,2017,November,45,9,2,2,3,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,D,D,0,No Deposit,41.0,179.0,0,Group,51.47,0,0,Check-Out,Kimberly Hanna,hjones@example.com,201.882.9098x73598,4643849424572241,2025-01-08 +City Hotel,1,0,2017,August,35,28,0,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.11,0,0,Canceled,Daniel Miller,kathryndeleon@example.org,+1-609-806-6935,4343923506919,2025-11-06 +City Hotel,0,2,2017,January,4,24,0,1,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,170.65,0,2,Check-Out,Austin Perez,melodygonzalez@example.com,(726)265-2149,6523745010379795,2024-06-24 +City Hotel,0,0,2017,March,11,10,0,2,3,0.0,0,BB,PRT,Undefined,Direct,1,0,1,D,B,1,No Deposit,14.0,179.0,0,Transient-Party,128.09,0,2,Check-Out,Mr. Mark Landry,justin81@example.org,(205)896-9532,2226135527973885,2024-10-08 +City Hotel,0,0,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,2.59,0,0,Check-Out,Robert Jones,tcochran@example.com,350-494-7920,4994146782986112,2025-03-20 +Resort Hotel,1,1,2017,October,43,25,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,110.27,0,0,Canceled,Andrew Powers,pkim@example.org,001-893-260-2598x30084,30311860585913,2026-01-26 +Resort Hotel,0,15,2017,October,41,10,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,52.92,0,1,Check-Out,Erica Turner,vegabryan@example.org,(222)530-1617x268,2247718517414633,2026-03-14 +Resort Hotel,1,33,2017,November,45,8,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.15,0,0,Canceled,Jesse Brown,xshaffer@example.org,(572)580-1491x642,30597822974241,2025-12-17 +Resort Hotel,0,1,2017,March,10,6,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,43.93,0,1,Check-Out,Marissa Smith,andrewkennedy@example.org,001-760-499-9399x53542,6559888234582732,2025-07-22 +City Hotel,1,2,2017,January,5,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,13.0,53.0,0,Transient,64.27,0,0,Canceled,Samantha Douglas,jeremyscott@example.org,+1-433-795-4463,6011600355164048,2025-01-07 +City Hotel,1,280,2017,June,25,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,62.06,0,0,Canceled,Robert Jones,jessica31@example.net,(399)836-9455,4133584916005779059,2024-09-01 +City Hotel,0,11,2017,November,48,27,1,3,3,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,51.16,0,0,Check-Out,Cassidy Paul,scott12@example.com,459.462.8292x093,4392173113394392,2025-09-05 +Resort Hotel,0,90,2017,November,45,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,D,1,No Deposit,14.0,179.0,0,Transient,85.56,0,0,Check-Out,Andrew Lopez,pricephyllis@example.org,(479)378-0105x3580,4439783125218986,2024-05-27 +City Hotel,0,28,2017,June,26,25,2,2,2,2.0,0,HB,BRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,10.0,179.0,0,Transient,142.96,0,1,Check-Out,Tyler Reynolds,seanduffy@example.com,218.346.5815x3950,2703734781534631,2024-07-20 +City Hotel,0,13,2017,May,20,14,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Group,93.22,0,0,Check-Out,Matthew Dunlap,brett47@example.net,+1-618-327-6264,3523867324802440,2024-09-14 +Resort Hotel,1,35,2017,December,50,14,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,65.02,0,1,Canceled,Alicia Nguyen,eglass@example.net,7754012661,2277875081694777,2026-02-02 +City Hotel,1,210,2017,October,40,2,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,118.06,0,0,Check-Out,Carol Yang,nicoleandrade@example.org,(523)459-1528,2720191144422351,2025-09-21 +Resort Hotel,0,26,2017,December,49,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,97.89,0,1,Check-Out,Richard Johnson,amytorres@example.net,001-253-685-5945x58002,30048053553601,2025-07-08 +Resort Hotel,0,22,2017,May,20,14,2,0,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,Andrew Edwards,natalie95@example.net,215.991.3627x8750,180057956732129,2025-08-22 +Resort Hotel,0,16,2017,March,13,23,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,I,2,No Deposit,181.0,331.0,0,Transient-Party,3.89,1,0,Check-Out,Parker Knight,trevor36@example.net,738.752.7146x637,2394535928835151,2025-02-08 +Resort Hotel,1,199,2017,May,19,12,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,295.0,179.0,0,Transient,96.23,0,0,Canceled,William Morales,oscott@example.org,+1-702-736-0783x5502,378264443444894,2025-12-15 +City Hotel,0,12,2017,March,10,4,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.39,0,2,Check-Out,Christine Singh,jcastro@example.net,813.292.7107x598,349466314405021,2025-03-13 +Resort Hotel,0,7,2017,July,27,8,1,1,2,2.0,0,BB,ESP,Online TA,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,96.54,1,0,Check-Out,Chad Taylor,yangtimothy@example.net,001-548-662-8459x980,3523271172575416,2024-09-07 +City Hotel,0,95,2017,May,19,12,2,3,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Transient,139.83,0,1,Check-Out,William Hall,englishlouis@example.net,584.589.8378x86153,580015359533,2025-01-30 +City Hotel,1,151,2017,September,36,9,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,97.81,0,0,Canceled,Bianca Ortega,murphyian@example.net,693.809.2483x68209,345880574788237,2025-02-24 +Resort Hotel,0,22,2017,September,38,23,2,5,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,29.0,179.0,0,Transient,161.02,0,0,Check-Out,James Pena,chadmartinez@example.com,+1-330-705-1222x24925,6011046548097432,2025-01-24 +Resort Hotel,0,19,2017,May,20,19,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,85.72,1,0,Check-Out,Matthew Austin,christinawilkins@example.net,001-617-703-6106x2420,213111059470904,2024-04-30 +City Hotel,1,157,2017,October,41,13,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,107.33,0,0,Canceled,Bernard Chang,patrickpitts@example.com,412.809.6726,180029164785009,2025-08-20 +City Hotel,0,178,2017,August,34,18,2,5,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,252.0,0,2,Check-Out,Eric Walker,dflores@example.org,(667)697-0741x6512,6011313335361771,2025-08-30 +Resort Hotel,0,0,2017,August,34,22,1,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient-Party,124.33,0,2,Check-Out,Darren Thompson,brownalicia@example.org,+1-211-605-3768x504,4925364205827358275,2026-02-25 +Resort Hotel,0,3,2017,August,35,30,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,223.52,1,2,Check-Out,James Dudley,mwalsh@example.org,(815)668-4715x5085,4692021062283313,2026-03-22 +Resort Hotel,0,278,2017,October,41,12,0,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,75.89,1,0,Check-Out,Brooke Quinn,matthew97@example.com,291.410.0671,4352696162957881,2025-11-12 +City Hotel,0,1,2017,January,3,17,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,50.91,0,1,Check-Out,Ronnie Jenkins,bakercourtney@example.net,+1-387-796-8779,4678985059404371,2024-10-06 +Resort Hotel,0,147,2017,July,31,30,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient,198.76,0,0,Check-Out,Cameron Torres,gcunningham@example.com,(841)553-6919,180055805638380,2024-05-24 +City Hotel,1,162,2017,May,22,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,103.48,0,0,Canceled,Elizabeth Brock,morrisemily@example.org,+1-292-860-1776x00560,6523851649952679,2024-08-30 +Resort Hotel,0,11,2017,September,36,3,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,157.44,1,1,Check-Out,Jessica Smith,campbellnicholas@example.com,001-719-723-7268x9102,4470716825202595,2025-10-20 +City Hotel,1,107,2017,April,17,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,179.03,0,0,Canceled,Jose Jordan,richard74@example.org,958-564-5926x286,4181249221614221,2025-03-20 +Resort Hotel,1,76,2017,October,42,18,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient,50.14,0,0,Canceled,Patrick Blair,sarahclements@example.com,971.397.9311x55925,3520597181562802,2025-06-12 +Resort Hotel,0,108,2017,March,10,2,1,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,73.23,1,0,Check-Out,Heather Kim,robert69@example.net,565-437-0836x6366,3574087813274252,2025-04-05 +Resort Hotel,0,13,2017,September,38,17,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,136.41,1,2,Check-Out,Michael Weber,kevinhamilton@example.com,001-526-940-2785x336,4668387468255050,2025-08-19 +City Hotel,1,414,2017,May,22,28,1,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,99.28,0,0,Canceled,Dana Stanley,hogangrace@example.com,334-406-5649x5797,4397823705898474,2024-07-20 +Resort Hotel,0,246,2017,January,2,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,239.0,179.0,0,Transient,49.58,0,1,Check-Out,Lori Thompson,aaronorozco@example.com,791-716-0849,370356440860631,2024-07-27 +City Hotel,0,34,2017,March,10,10,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,70.96,0,0,Check-Out,David Sullivan,qgonzalez@example.org,(956)533-4138,213161714394734,2025-10-22 +City Hotel,1,49,2017,May,21,19,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,139.34,0,0,No-Show,Felicia Thompson,joshuawalker@example.net,872-541-6063,3505965178189302,2024-12-31 +Resort Hotel,1,42,2017,August,34,24,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,Tyler Watson,lopezalex@example.org,431-836-2329x4530,6551618579924308,2024-09-12 +City Hotel,0,4,2017,October,41,14,0,1,1,0.0,0,BB,IRL,Aviation,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,224.03,0,0,Check-Out,Ryan Adams,yjohnson@example.org,725-362-8399x439,38552263167328,2025-12-05 +City Hotel,1,414,2017,October,40,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,83.15,0,0,Canceled,Jeanette Moore,bmorgan@example.com,677.926.6130,3580752540265665,2024-11-13 +Resort Hotel,0,221,2017,June,23,4,3,10,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,265.0,179.0,0,Transient-Party,125.05,0,1,Check-Out,Shelia Dixon,lewisrichard@example.com,(865)500-7760x560,4084559832651753312,2025-05-09 +City Hotel,0,12,2017,October,43,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient-Party,82.73,0,1,Check-Out,Jennifer Evans,blairlaura@example.com,412.325.7617x76389,4033941813054,2025-02-20 +City Hotel,1,205,2017,December,50,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,68.97,0,0,Canceled,Richard Wood,ericshelton@example.org,(650)761-1793x96490,3537965189556996,2024-08-13 +Resort Hotel,0,20,2017,August,31,2,1,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,236.01,0,1,Check-Out,Samuel Wolfe,daniellemartinez@example.org,(400)329-9385x127,372322988402960,2024-05-19 +Resort Hotel,1,290,2017,February,7,13,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,41.34,0,0,Canceled,Shawn Waters,ywhite@example.com,602.353.6813,639080651990,2024-05-08 +City Hotel,1,12,2017,September,38,19,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,62.48,0,0,Canceled,Tammy Long,sherryburns@example.com,+1-847-937-9726x269,36291740662708,2026-02-20 +Resort Hotel,1,377,2017,December,51,23,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,73.06,0,0,Canceled,Mary Morgan,rosskelli@example.net,(942)923-0843x2247,4865393767455434,2025-10-03 +City Hotel,0,44,2017,April,15,9,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.24,1,2,Check-Out,Melissa Lyons,fgreen@example.org,393-835-6558x11643,3576157550455766,2024-05-07 +City Hotel,0,25,2017,January,2,4,0,2,1,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,80.63,1,1,Check-Out,Philip Gilmore,nhebert@example.com,001-707-480-2728x502,501860325544,2024-11-29 +Resort Hotel,0,89,2017,June,26,26,1,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,159.72,1,2,Check-Out,Stacy Adkins,john46@example.net,001-727-726-6191x95908,4922301506008167,2024-06-30 +Resort Hotel,0,201,2017,April,16,19,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient,152.77,0,0,Check-Out,Dale Bartlett,jennifer05@example.com,001-344-641-1457,4542795821116300,2024-07-22 +Resort Hotel,0,197,2017,July,27,4,2,6,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,140.98,0,2,Check-Out,Jasmine Bradshaw,wilkersonchristopher@example.net,922-491-1251x2534,213196378629116,2024-11-18 +City Hotel,0,39,2017,October,43,26,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,78.04,0,1,Check-Out,Brian Wells,fboyd@example.com,246.544.4274,3559360204854183,2025-10-15 +City Hotel,1,20,2017,April,15,8,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,114.74,0,2,Canceled,Jimmy Newman,mclements@example.com,5738912748,4915690022590,2025-02-03 +Resort Hotel,0,194,2017,March,13,31,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,364.0500000000011,222.0,0,Transient-Party,43.16,0,1,Check-Out,Tiffany Mcgee,nlee@example.net,001-931-202-9836x29330,4116672500865125,2024-05-25 +City Hotel,1,44,2017,January,4,22,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.01,0,2,Canceled,Courtney Nelson,jasonlee@example.org,500-995-7411,6586489312148152,2025-12-23 +City Hotel,1,109,2017,March,10,7,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,21,Transient,62.9,0,0,Canceled,Donna Dunn,darrell42@example.net,473-680-0751x87324,3577945228399260,2024-04-30 +Resort Hotel,0,2,2017,December,51,18,1,2,3,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient-Party,61.9,0,0,Check-Out,Jessica Barnett,juliehiggins@example.com,001-762-750-9444,4638421802649,2025-05-28 +City Hotel,0,3,2017,September,36,8,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.47,0,0,Check-Out,Richard Long,heather24@example.org,(887)365-6146,3579247373341678,2025-07-26 +City Hotel,0,89,2017,March,12,20,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,148.42,0,1,Check-Out,Elizabeth Ruiz,hsanchez@example.org,+1-486-360-8844x1779,3527340102816467,2025-09-16 +City Hotel,0,45,2017,April,18,30,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.3,0,1,Check-Out,Lisa Goodwin,hamiltonkaren@example.net,001-467-687-7505x1276,3502785975494884,2024-11-13 +Resort Hotel,0,0,2017,January,3,15,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,49.4,1,0,Check-Out,Rachel Jones,vkelley@example.org,001-590-896-4492x237,676134599056,2025-01-18 +City Hotel,0,0,2017,December,51,19,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,82.09,1,1,Check-Out,Scott Nunez,zingram@example.net,315-685-8042x87814,3587102935569441,2024-10-11 +City Hotel,1,105,2017,April,16,16,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,90.14,0,0,Canceled,Ashley Prince,pblankenship@example.com,001-881-320-1143x669,3528448330534163,2025-07-19 +City Hotel,1,160,2017,March,11,14,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.15,0,2,Canceled,Christina Murray,blaircarlos@example.net,+1-391-270-4151x680,4472134993903705,2025-04-18 +City Hotel,1,108,2017,March,10,4,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient-Party,74.69,0,1,Canceled,Alexander Drake,robertshaw@example.com,001-898-667-6614x618,30006370417710,2026-01-01 +City Hotel,0,49,2017,February,9,24,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.79,0,1,Check-Out,James Ruiz,hoffmanjeffrey@example.net,364-626-2177x97381,4086916632519811,2025-06-19 +Resort Hotel,0,7,2017,February,5,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,17.0,68.0,0,Transient,47.01,0,0,Check-Out,Ronald Smith,oconnorthomas@example.net,442-729-7610x832,4009044841492783404,2024-03-28 +Resort Hotel,0,3,2017,February,6,6,0,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,180.0,179.0,0,Transient-Party,81.44,0,0,Check-Out,Joshua Henderson,lauriegreen@example.net,+1-344-430-9553,3536158845696353,2025-02-13 +Resort Hotel,1,39,2017,August,35,28,1,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,252.0,1,2,Canceled,Mr. Michael Peters,jamesjanice@example.net,+1-215-257-2812x1421,4843701056016971,2025-08-06 +City Hotel,0,80,2017,March,12,20,2,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.61,0,3,Check-Out,Nicholas Berry,denisemason@example.net,905.433.1074x0129,4836659925596566,2024-05-01 +City Hotel,0,19,2017,August,32,4,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,231.15,0,2,Check-Out,William Werner,gary62@example.net,933.707.2035,2230381883636328,2024-04-19 +Resort Hotel,1,65,2017,October,42,16,2,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,F,1,No Deposit,240.0,179.0,0,Transient,114.36,0,3,Canceled,Craig Tate,jennifer41@example.org,595.401.0296x63318,3527684999381600,2025-08-29 +City Hotel,1,33,2017,March,13,30,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.26,0,2,Canceled,Jessica White,lindsey56@example.com,8242486419,4529075637653136,2024-08-27 +Resort Hotel,1,35,2017,December,50,12,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,237.0,179.0,0,Transient,94.39,0,1,Canceled,Sara Goodman,bpatterson@example.net,001-851-232-7260x43865,4558540497966,2024-07-26 +Resort Hotel,1,60,2017,August,33,18,2,5,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,91.9,0,1,Canceled,Mackenzie Price DDS,abigailholmes@example.com,+1-305-661-8985,180087042102383,2026-03-04 +City Hotel,0,88,2017,March,13,26,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.7,0,1,Check-Out,Jared Stark,mcarroll@example.org,+1-424-432-2124x510,4571438996885944121,2024-04-08 +City Hotel,1,16,2017,May,19,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,112.71,0,1,No-Show,Brian Taylor,wwalter@example.com,(928)567-5389x42817,3541484638653267,2026-02-27 +City Hotel,1,148,2017,March,13,27,0,4,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.66,0,2,Canceled,Shannon Chapman,michael63@example.org,(439)828-2003x132,213111841393257,2025-11-02 +City Hotel,0,104,2017,May,19,6,1,1,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,103.03,0,0,Check-Out,Alexandra Foster,eric26@example.org,+1-277-285-0834x15622,4756644930127389,2024-11-17 +City Hotel,1,95,2017,February,6,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,81.89,0,1,Canceled,Kathy Ortega,barbara26@example.net,001-679-317-4676,675980476914,2025-08-29 +City Hotel,0,50,2017,September,38,17,0,1,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.5,0,2,Check-Out,Ashley May DDS,vaughnsarah@example.net,940.577.5279x015,4936014136236090,2024-04-24 +City Hotel,0,110,2017,October,42,19,0,1,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,97.85,0,0,Check-Out,Edgar Stevens,canderson@example.com,734-287-2006x19456,3553831483697101,2025-04-18 +City Hotel,0,33,2017,August,35,31,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,188.87,0,0,No-Show,Jocelyn Chambers,mkelley@example.net,(782)414-5250x570,4214540412324526,2024-04-01 +City Hotel,1,251,2017,November,45,11,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,111.33,0,1,Canceled,Stephen Walker,kkent@example.com,(657)642-1289,30089710569283,2024-08-07 +City Hotel,1,114,2017,December,51,22,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,91.37,0,0,No-Show,Kyle Johnson,david63@example.com,372-312-1430x95402,342545516837755,2026-01-04 +Resort Hotel,1,333,2017,December,48,1,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,137.0,179.0,0,Transient-Party,97.04,0,0,Canceled,Ashley Bell,timothybeck@example.org,001-309-576-2271x7112,213182856606008,2024-07-09 +City Hotel,0,38,2017,October,41,13,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient-Party,98.91,0,0,Check-Out,Alyssa Morales,lindseywhite@example.net,7326646434,38720087299078,2026-03-05 +Resort Hotel,0,26,2017,October,41,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,79.0,0,3,Check-Out,Latoya Nelson,dunlapaaron@example.net,534-752-4593x233,584571462491,2026-03-24 +City Hotel,1,13,2017,March,13,26,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,16.0,236.0,0,Transient,85.37,0,0,Canceled,Pam Miller,trevor69@example.net,+1-379-979-2306x2324,30322902042409,2025-03-10 +City Hotel,0,2,2017,October,43,21,2,0,2,0.0,0,BB,PRT,Offline TA/TO,Direct,1,0,1,A,D,0,No Deposit,11.0,179.0,0,Group,77.86,0,0,Check-Out,Dillon Nelson,stephanie92@example.com,296-833-1294x62802,6548245962771462,2025-12-15 +City Hotel,0,32,2017,March,13,25,0,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,E,0,No Deposit,182.0,179.0,0,Transient,98.13,0,0,Check-Out,Maxwell Whitaker,danielslisa@example.org,760-458-6418,2720561634867598,2025-07-26 +City Hotel,0,61,2017,December,49,6,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.23,1,1,Check-Out,Christine Jennings,michaelashley@example.net,826.313.8439x5180,373006986512685,2025-12-22 +Resort Hotel,1,202,2017,August,33,14,2,10,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,129.91,0,1,Canceled,Ashlee Williams,franklin36@example.org,+1-510-519-7752x6856,371044008992231,2025-05-22 +City Hotel,1,92,2017,August,31,5,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,248.2,0,0,Canceled,Rebecca Baker,scottjoseph@example.com,001-623-278-1092,4991226166337677929,2025-07-03 +Resort Hotel,0,2,2017,May,22,29,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,240.0,179.0,0,Transient-Party,40.9,1,1,Check-Out,Tina Hancock,coxhunter@example.com,(204)822-2658,343435213809787,2025-08-26 +City Hotel,0,2,2017,September,37,15,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,45.0,0,Transient,90.28,0,0,Check-Out,Daniel Jones III,melissa19@example.net,001-369-506-2092x68867,4601228448851487,2025-02-24 +Resort Hotel,1,18,2017,November,47,24,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,40.14,0,0,Canceled,Ashley Smith,fcrawford@example.com,001-232-446-4633,4611624746566,2025-05-02 +Resort Hotel,0,5,2017,March,10,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,36.0,179.0,0,Transient,81.37,0,0,Check-Out,Matthew Garza,rmiller@example.net,349-473-6444x79346,30075656328263,2024-06-29 +City Hotel,0,90,2017,June,23,5,2,10,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,132.0,179.0,0,Transient,140.37,0,0,Check-Out,Patricia Williams,rowefrank@example.net,9366507385,213172614215325,2025-10-08 +City Hotel,0,36,2017,January,3,19,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,2,No Deposit,39.0,179.0,0,Transient,240.68,0,0,Check-Out,Steven Martin,deleonandrew@example.org,582-929-4037x818,4668546844914442787,2025-05-02 +City Hotel,1,19,2017,September,37,16,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,79.76,0,0,Canceled,Brittany Hoffman,hhensley@example.net,512.414.3654,4727973695564676,2026-02-24 +City Hotel,0,15,2017,January,4,24,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,99.85,0,0,Check-Out,Sarah Frost,jasonwood@example.com,+1-812-782-7595x9242,345585451274223,2024-11-09 +City Hotel,0,17,2017,February,7,13,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.19,1,0,Check-Out,Joshua Johnson,randallquinn@example.net,4894265062,4338666319656222477,2025-10-03 +City Hotel,0,0,2017,October,41,8,0,2,2,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,1.64,0,0,Check-Out,Sherri Guzman,ntran@example.org,+1-935-510-5341x6847,6011651107086930,2024-11-14 +City Hotel,0,2,2017,April,15,10,0,1,2,0.0,0,BB,PRT,Complementary,Corporate,1,1,1,A,C,0,No Deposit,13.0,45.0,0,Transient,0.61,0,1,Check-Out,Charles Blevins,janet90@example.com,657.260.1067x559,5122191728902221,2024-04-30 +Resort Hotel,0,167,2017,August,33,14,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Transient-Party,107.41,0,1,Check-Out,Deanna Woodard,ashley52@example.com,(442)481-0130x35875,4021070466509873436,2024-07-25 +Resort Hotel,0,0,2017,January,2,6,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,177.74,0,1,Check-Out,Elizabeth Green,rchung@example.com,629.668.1520,3532692236700857,2024-08-06 +City Hotel,1,76,2017,March,11,15,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.65,0,0,Canceled,Anthony Flores,jbrown@example.net,318.970.5932x67848,4930301432310,2024-04-05 +Resort Hotel,1,0,2017,March,11,15,2,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,187.0,179.0,0,Transient,63.59,0,0,No-Show,Antonio Woods,qoneal@example.net,+1-571-655-5298x07113,3550016246823607,2024-07-02 +City Hotel,0,7,2017,May,22,25,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,176.04,0,1,Check-Out,Mrs. Sara Hebert,shannonpaula@example.net,+1-506-676-5205,6520957905285549,2026-03-25 +Resort Hotel,0,3,2017,August,32,6,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,C,1,No Deposit,364.0500000000011,216.0,0,Transient-Party,47.98,1,0,Check-Out,Thomas Reyes,scottnathan@example.org,929.800.0302,6525870701500455,2026-02-08 +Resort Hotel,0,29,2017,October,41,8,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,115.25,0,1,Check-Out,Richard Garcia,toddclark@example.com,985.414.5801,4956375790168164384,2024-11-06 +City Hotel,0,63,2017,November,47,20,1,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,161.86,0,2,Check-Out,Angelica Simpson,reevesheather@example.com,737-739-9970,4424346621421962,2025-09-07 +City Hotel,0,86,2017,March,12,24,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient,111.32,0,1,Check-Out,Chad Thornton,michaelcalhoun@example.net,301.277.0015,4095642121739582,2025-02-06 +Resort Hotel,0,0,2017,March,10,5,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,I,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Emily Abbott,megan62@example.org,374.959.4991x98913,38945041490469,2026-01-17 +City Hotel,0,38,2017,March,10,4,2,4,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,135.37,0,1,Check-Out,Chad Escobar,hthomas@example.net,383-459-9283x80374,4342801485054423,2024-05-10 +City Hotel,0,3,2017,August,31,3,1,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,84.79,0,0,Check-Out,April Arellano,rebekahwilliamson@example.net,417-302-6734x519,561714196889,2025-04-15 +Resort Hotel,0,150,2017,April,17,26,1,5,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,A,2,No Deposit,364.0500000000011,179.0,0,Transient-Party,86.39,0,0,Check-Out,Regina Davis,marshalljerry@example.com,4276608463,4537885332211763721,2025-11-22 +City Hotel,0,1,2017,March,10,7,1,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,C,0,No Deposit,12.0,223.0,0,Transient-Party,47.57,1,0,Check-Out,Casey Ferguson,vortiz@example.net,8365460118,6011387109670211,2024-07-27 +Resort Hotel,0,17,2017,March,14,30,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,53.25,0,1,Check-Out,Elizabeth Taylor,john69@example.com,832.958.0208,4727106015112948,2025-03-09 +City Hotel,0,102,2017,March,11,11,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,99.6,0,1,Check-Out,Mr. Raymond Lawson,popebrenda@example.com,001-579-803-7416x830,6540496366559239,2025-12-08 +City Hotel,0,2,2017,October,41,9,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,48.1,0,0,Check-Out,Karen Hicks,brooke34@example.net,552.410.1702x855,38393860544332,2025-03-23 +Resort Hotel,0,2,2017,March,13,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,B,0,No Deposit,17.0,69.0,0,Transient,49.15,1,0,Check-Out,Edward Patterson DDS,dforbes@example.net,786.889.1471x72889,213145446962900,2026-02-27 +City Hotel,0,0,2017,July,30,23,0,1,2,0.0,0,BB,PRT,Corporate,Direct,1,1,1,A,B,0,No Deposit,11.0,45.0,0,Group,2.94,0,1,Check-Out,Richard Miller,dday@example.org,001-916-879-9738x266,38145460039620,2024-08-15 +City Hotel,0,14,2017,August,34,22,1,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,168.37,0,1,Check-Out,Kathryn Mendez,isaac73@example.org,378-358-3101x2461,2237812776967837,2025-02-05 +Resort Hotel,0,42,2017,March,11,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,39.2,0,1,Check-Out,William Martinez,pearsonbrett@example.com,001-418-976-8590x09409,4611833920089199949,2025-03-25 +City Hotel,0,67,2017,March,10,5,1,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,87.44,1,0,Check-Out,Donna Wright,monicawoods@example.com,+1-345-670-9047x946,4747463647521,2024-07-01 +City Hotel,1,310,2017,October,43,26,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,61,Contract,62.47,0,0,Canceled,Gregory Wiley,tammymurray@example.org,+1-509-965-6863x019,4284050724885,2025-03-04 +City Hotel,1,6,2017,August,32,3,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,45.0,0,Transient,93.25,0,0,No-Show,David Mora,markross@example.com,+1-767-670-6909,4995784189307,2025-11-22 +Resort Hotel,1,96,2017,June,26,27,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,139.47,0,1,Canceled,Anthony Carlson,egraves@example.org,(850)407-8915,4370307062921179,2026-03-05 +Resort Hotel,0,141,2017,August,32,7,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,121.27,0,3,Check-Out,Matthew Price,awashington@example.com,(537)631-7960,3578717339447919,2025-10-15 +Resort Hotel,1,1,2017,January,2,3,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient,50.14,0,1,Canceled,David Cooper,ruizjared@example.org,356-576-2129x3183,4187691901665,2025-04-01 +Resort Hotel,0,185,2017,May,18,3,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,44.53,1,1,Check-Out,Frank Todd,rhodesnicole@example.com,911-768-9123,501857429713,2025-03-26 +Resort Hotel,0,27,2017,February,6,5,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.69,0,1,Check-Out,Eric Jones Jr.,catherine00@example.com,889-676-2573,213180203250835,2024-04-05 +Resort Hotel,0,98,2017,December,52,26,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient,110.48,0,0,Check-Out,John Stokes,emilygraham@example.org,(847)358-3042x959,4720417354866870,2025-12-19 +City Hotel,0,2,2017,July,30,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,82.34,0,1,Check-Out,Julie Daniels,elizabethsharp@example.org,553.314.2095x2894,4227427132557317253,2024-09-24 +City Hotel,0,40,2017,April,16,19,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,108.99,0,1,Check-Out,Desiree Fox,andrewsmith@example.net,001-461-944-4740,213123299240930,2024-06-20 +Resort Hotel,0,151,2017,April,16,21,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,140.66,1,0,Check-Out,Jessica Munoz,brodriguez@example.net,(325)920-9492x79909,676201822555,2026-02-24 +Resort Hotel,0,92,2017,March,12,23,1,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,E,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,102.44,0,0,Check-Out,Vicki Harper,ann06@example.com,487.416.6741x713,3572707030217238,2026-01-30 +Resort Hotel,0,49,2017,September,36,3,2,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,161.99,0,1,Check-Out,Mrs. Ashley Mooney,plambert@example.org,001-431-659-4302x90830,2228894955253420,2025-02-21 +City Hotel,0,45,2017,October,40,2,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Group,108.99,1,2,Check-Out,Gina Hayes,james68@example.com,(203)257-7175,3569647423429799,2024-06-10 +City Hotel,0,157,2017,June,25,17,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,10.0,179.0,0,Transient,241.51,0,3,Check-Out,Sylvia Clark,bobbyvillegas@example.net,(862)344-6687x2553,3518251302109283,2025-09-06 +City Hotel,0,44,2017,August,33,17,1,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,144.7,0,2,Check-Out,Jonathan Tanner,chase86@example.com,+1-363-239-8733x340,4647470557436611,2024-06-22 +City Hotel,0,89,2017,March,13,23,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient,85.41,0,0,Check-Out,Cathy Little,otaylor@example.com,512-271-3277x75467,213112728989423,2025-09-24 +Resort Hotel,0,41,2017,May,18,1,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,241.2,1,1,Check-Out,Christopher Powell,marissa30@example.net,5444079991,5562879977456991,2025-08-20 +City Hotel,0,50,2017,October,41,8,1,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,61,Transient-Party,78.45,0,0,Check-Out,Heidi Richardson,dvasquez@example.net,511.763.9363x277,377012039280011,2025-07-30 +City Hotel,1,157,2017,July,30,22,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.78,0,1,Canceled,Shane Alvarez,mooneyregina@example.net,(472)323-4014x082,370930443104526,2024-10-04 +City Hotel,1,136,2017,July,27,2,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,107.96,0,0,Canceled,Angela Trevino,urivera@example.com,+1-757-975-8442x8125,3585458784153535,2024-10-08 +City Hotel,1,98,2017,December,52,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,75,Transient,117.64,0,1,Canceled,Denise Combs,heather90@example.com,647.571.2433x1142,2297003992304529,2024-07-02 +Resort Hotel,1,136,2017,March,13,26,1,3,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,227.83,1,0,Canceled,Robert Hicks,oreyes@example.com,867-958-4252,4866955736313685,2024-08-29 +Resort Hotel,0,19,2017,February,6,3,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,65.15,0,1,Check-Out,Jennifer White,brittanyferrell@example.net,+1-567-697-0941x943,3549509284983915,2024-09-12 +Resort Hotel,1,0,2017,April,14,5,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,79.0,0,Transient,43.11,1,0,Check-Out,Michael Wallace,lbailey@example.com,(865)688-1680,180042326594912,2025-12-27 +Resort Hotel,0,197,2017,March,11,14,2,2,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,13.0,224.0,0,Transient-Party,61.97,0,1,Check-Out,Sherri Smith,phillipwood@example.org,528.704.1201,4246590173198538,2025-12-24 +City Hotel,0,19,2017,March,10,4,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.14,0,1,Check-Out,Robin Ortiz,james42@example.org,357-801-1314,4729987310402257620,2024-08-01 +City Hotel,0,2,2017,July,29,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,204.23,0,1,Check-Out,Megan Mcneil,ebailey@example.com,(403)532-5619,675973298937,2026-03-22 +Resort Hotel,0,255,2017,July,30,26,4,6,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,51.93,0,0,Check-Out,Ariel Taylor,ajones@example.org,001-269-614-5039x574,3525574806581447,2025-09-28 +City Hotel,0,3,2017,February,7,14,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,77.32,0,0,Check-Out,John Jackson,gatesdenise@example.org,001-463-428-8462x1841,4044535438406,2025-04-28 +City Hotel,0,97,2017,March,10,6,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,100.29,0,1,Check-Out,Ashley Bell,paul73@example.org,+1-529-527-6547x7276,378957806218652,2025-12-18 +Resort Hotel,0,35,2017,January,2,4,4,10,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,247.0,179.0,0,Transient,139.86,0,1,Check-Out,Candace Perez,douglas24@example.com,(752)858-7628x3350,30206830642267,2024-06-01 +City Hotel,0,3,2017,September,36,6,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.62,0,1,Check-Out,Catherine Hawkins,bryanhart@example.net,+1-411-507-0793x4107,4634081226229102434,2025-03-07 +City Hotel,0,0,2017,September,38,17,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,128.44,0,0,Check-Out,Joshua Ruiz,susangilbert@example.net,590-586-9715x1250,4345089181547862067,2025-09-26 +Resort Hotel,1,291,2017,August,33,12,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,48.79,0,0,Canceled,Kelly Howard,paula54@example.net,001-491-290-2128x780,38850635494614,2024-06-29 +City Hotel,0,90,2017,December,50,10,0,3,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.03,0,2,Check-Out,Linda Johnson,zacharymoore@example.net,614-242-8784x904,4850603692359041943,2025-06-07 +City Hotel,0,2,2017,May,21,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,1,No Deposit,13.0,222.0,0,Transient-Party,124.87,0,2,Check-Out,Andrew Potter,heather29@example.com,+1-477-243-9343x6924,4888854440971231609,2025-11-10 +City Hotel,1,298,2017,June,23,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,114.47,0,0,Canceled,Larry Wilson,michellejohnson@example.org,(458)691-7526x0137,4899651820083497,2024-10-08 +City Hotel,0,47,2017,March,12,18,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.98,1,0,Check-Out,Richard Bush,michelledavis@example.org,246.309.8079x755,213136150309974,2025-05-01 +City Hotel,1,2,2017,October,43,28,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,85.09,0,0,No-Show,Hannah Johnson,clowery@example.org,215-956-0346,38311871003262,2024-07-04 +City Hotel,0,21,2017,March,12,17,0,2,1,1.0,0,BB,BEL,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,252.0,0,0,Check-Out,Patricia Lee,patricia42@example.com,991.457.0814x843,676313911551,2025-04-19 +City Hotel,1,2,2017,January,3,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,80.52,0,0,Canceled,Terri Pennington,melissa95@example.net,228.574.9543,4138628243238907325,2025-10-25 +Resort Hotel,0,42,2017,July,28,12,4,5,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,218.18,0,1,Check-Out,Marvin Vargas,bryanchad@example.org,7466457470,4562795471742,2024-09-13 +City Hotel,1,16,2017,December,52,30,0,4,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,95.79,0,0,Canceled,Adrienne Noble,fnelson@example.org,+1-351-892-7989x908,3528554634486032,2026-01-13 +City Hotel,1,0,2017,January,2,11,1,0,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,29.69,0,1,Canceled,Mark Boyle,timothy97@example.net,(786)266-4484x38591,4132382627062,2026-02-12 +Resort Hotel,0,81,2017,December,49,4,0,6,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,2,No Deposit,318.0,179.0,0,Transient,88.65,0,1,Check-Out,John Hooper,allison65@example.org,918.993.9484x3181,6011048398959083,2024-08-02 +City Hotel,1,47,2017,March,10,5,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.78,0,1,Canceled,Julie Allen,thompsondonna@example.net,001-225-237-5613,676314104388,2025-11-07 +Resort Hotel,0,0,2017,February,7,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,2,No Deposit,15.0,179.0,0,Transient,42.49,1,0,Check-Out,Joshua York,nathaniel27@example.net,259-375-6460,213118044967738,2025-08-16 +Resort Hotel,1,35,2017,October,43,25,2,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,38.04,0,1,Canceled,Eric Howell,patrickwhite@example.com,(666)985-5549x15835,4264623769500,2024-11-11 +City Hotel,0,4,2017,August,34,20,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,118.76,0,1,Check-Out,Michelle Rivera,wilsonhaley@example.org,9646286523,3511926907446704,2026-02-15 +City Hotel,0,14,2017,May,19,8,1,2,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,A,A,1,No Deposit,12.0,181.0,0,Transient,138.39,0,0,Check-Out,Louis Savage,cooleygina@example.net,(455)982-6917x63837,213170706718404,2024-10-06 +City Hotel,1,160,2017,October,41,9,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,109.37,0,0,Canceled,Philip Hodges,fjohnson@example.net,227.216.4237,4028735645431397,2026-01-21 +Resort Hotel,0,150,2017,June,23,7,4,3,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,G,0,No Deposit,35.0,179.0,0,Transient,130.7,0,0,Check-Out,Matthew Roberts,urocha@example.com,(328)651-3869,348353996584300,2024-11-14 +City Hotel,0,29,2017,October,40,7,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,35.0,179.0,0,Transient,104.33,0,0,Check-Out,Rebecca Roberts,ystanton@example.org,772.569.7071x0805,4435466975898420,2024-07-01 +City Hotel,0,0,2017,January,3,17,0,2,2,1.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,135.21,1,1,Check-Out,Betty Johnson,hporter@example.org,+1-695-266-7442x81380,4412135281853984,2025-05-12 +City Hotel,0,91,2017,April,17,27,1,1,2,0.0,0,HB,RUS,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,81.82,0,0,Check-Out,Jordan Peters,lcooper@example.com,397-951-8116,6511884196802231,2024-08-26 +City Hotel,0,1,2017,March,11,10,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.92,0,2,Check-Out,Alison Walker,jefferymoreno@example.org,874.682.4601,060444395390,2025-07-03 +City Hotel,0,26,2017,March,10,8,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.82,0,1,Check-Out,William Hansen,donna35@example.net,(270)974-3615x748,4260579380713034109,2025-10-18 +Resort Hotel,1,200,2017,July,29,14,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,53.01,0,2,Canceled,Allison Cowan,sharris@example.net,+1-447-259-2177x868,4358135852626594303,2024-04-29 +City Hotel,1,154,2017,May,22,26,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,99.65,0,0,Canceled,Kevin Wilson,michaelgross@example.org,(837)797-6485x940,6526115375340864,2025-01-19 +Resort Hotel,1,96,2017,May,22,28,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,92.78,0,1,Canceled,Daniel Guerrero,susan24@example.org,001-837-685-2718,30328592092992,2024-07-22 +Resort Hotel,0,2,2017,May,19,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,47.3,1,1,Check-Out,Michelle King,jessica79@example.org,001-600-547-8971x85017,3585453699959548,2024-10-06 +City Hotel,0,14,2017,March,10,9,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.41,0,2,Canceled,Cynthia Le,amber53@example.org,426.544.2510x333,4866233293216,2024-09-10 +Resort Hotel,0,1,2017,June,25,20,0,1,2,0.0,0,BB,RUS,Online TA,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,217.83,0,1,Check-Out,Alexis Olsen,franciscobentley@example.com,6618242069,4222296205779788631,2025-08-16 +City Hotel,1,32,2017,August,34,23,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.52,0,3,Canceled,Tina Melendez,stephanie82@example.net,+1-282-545-4665x3335,4810468032956,2024-04-05 +Resort Hotel,0,85,2017,August,35,31,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,1,No Deposit,17.0,179.0,0,Transient,252.0,1,2,Check-Out,Leslie Torres,rachaelstout@example.net,001-283-363-3581x5438,4653120539799151695,2025-02-07 +City Hotel,0,11,2017,December,49,5,0,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,E,B,0,No Deposit,13.0,179.0,0,Transient,83.78,0,0,Check-Out,Kimberly Ramirez,dyerjoseph@example.net,636-672-0384x916,567147359432,2024-09-08 +Resort Hotel,1,261,2017,September,36,8,3,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,301.0,179.0,0,Transient,51.57,0,0,Canceled,Nancy Flowers,jackmunoz@example.com,696-578-6967,3589338886165460,2024-10-26 +City Hotel,0,16,2017,October,41,9,0,2,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,82.52,0,0,Check-Out,Jessica Walsh,shannon18@example.net,6916924903,4585283147051764218,2025-11-23 +Resort Hotel,0,0,2017,January,3,17,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,222.0,0,Transient,48.49,1,0,Check-Out,Heather Hernandez,riverakaitlin@example.com,001-553-546-0019x0543,30231019847743,2024-05-04 +City Hotel,0,48,2017,May,22,29,1,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,81.27,0,1,Check-Out,Kimberly Smith,deborah22@example.org,6663608807,4282717788543155,2024-06-18 +City Hotel,0,66,2017,September,39,26,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,238.0,179.0,0,Transient,145.09,0,1,Check-Out,Anthony Rivera,cynthia35@example.net,(401)476-6734x77643,376437349880575,2024-08-06 +City Hotel,0,17,2017,March,12,21,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,76.0,0,Transient,56.2,1,1,Check-Out,David Avila,dnelson@example.org,+1-979-903-8273,4795095397004624,2025-07-15 +City Hotel,0,43,2017,February,6,10,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.84,0,1,Check-Out,Steven Miller,ryan14@example.org,(289)774-6840,2471865034047219,2025-06-30 +City Hotel,0,106,2017,March,12,18,1,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,82.46,0,2,Canceled,Jeremy Davis,shaffermary@example.net,847-773-3937x205,6591997925370735,2025-04-07 +City Hotel,0,154,2017,October,41,9,1,1,2,1.0,0,BB,BRA,Aviation,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.76,0,0,Check-Out,Matthew Jones,zhunter@example.com,(578)900-2643,3540255399585323,2025-04-29 +City Hotel,1,155,2017,March,14,30,1,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.36,0,1,Canceled,Kristen Taylor,qbrown@example.com,001-324-605-2869x5170,3526174592791976,2025-04-27 +City Hotel,0,294,2017,December,49,5,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,13.0,179.0,0,Transient-Party,106.14,1,1,Check-Out,Alex Ramirez,jennifer72@example.net,(327)799-6912,676333043864,2024-07-05 +City Hotel,1,328,2017,August,32,12,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,98.02,0,1,Canceled,James Austin,iwalker@example.org,(748)292-0008x35664,348253606696710,2025-03-08 +Resort Hotel,0,5,2017,April,15,10,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,247.0,179.0,0,Transient,126.71,0,1,Check-Out,Sarah Phillips,juliebyrd@example.net,(432)931-9087,4375040355770,2024-04-20 +City Hotel,0,9,2017,April,17,23,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient-Party,85.81,0,1,Check-Out,Raymond Porter,pcole@example.net,981-671-7910,6011507866937160,2026-03-04 +Resort Hotel,1,298,2017,July,30,22,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,B,A,0,No Deposit,12.0,179.0,0,Transient,107.62,0,0,Canceled,Erica Walter,zmartinez@example.org,756.734.1355x796,30169645371870,2025-02-15 +City Hotel,1,387,2017,April,17,20,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,160.0,179.0,40,Transient,130.76,0,0,Canceled,Douglas Lopez,rlewis@example.com,(692)242-9049,630434870907,2025-06-12 +City Hotel,0,18,2017,June,23,2,2,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,140.72,0,2,Check-Out,Stephanie Thompson,timothysmith@example.net,+1-269-877-5452x81072,4211577088972335696,2024-06-23 +Resort Hotel,1,266,2017,June,23,5,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,99.96,0,0,Canceled,Aaron Johnson,carterabigail@example.org,893-487-8805x338,676339005982,2024-03-31 +Resort Hotel,0,0,2017,August,32,6,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,152.17,1,0,Check-Out,Michael Parker,vwilliams@example.org,+1-267-724-2754,2720781780283636,2024-09-12 +City Hotel,0,20,2017,June,23,5,0,4,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,241.0,179.0,0,Transient,139.05,0,2,Check-Out,Gloria Dunlap,cpowell@example.com,001-428-345-9147x7608,4760340084321,2024-12-25 +City Hotel,0,89,2017,March,12,24,2,5,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,105.53,0,1,Check-Out,Brian Nichols,douglasrebecca@example.org,+1-638-556-7611x6081,30436901589697,2024-04-16 +City Hotel,1,213,2017,October,40,6,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,76.69,0,0,Canceled,Douglas Frye,dunlapdavid@example.net,001-223-902-6114x545,4442456510028827985,2026-02-06 +City Hotel,0,208,2017,August,32,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,14.0,179.0,0,Transient,110.27,0,0,Check-Out,Janet Flowers,jriley@example.net,974.599.8433,4076360385401,2024-12-12 +City Hotel,1,147,2017,July,27,5,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,200.13,0,0,Canceled,Jamie Martin,john96@example.org,+1-772-226-4563x533,4918599476852292,2025-03-25 +Resort Hotel,1,399,2017,October,42,20,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,159.0,179.0,0,Transient,129.52,0,0,Canceled,Jesse Allen,ginapalmer@example.org,+1-619-776-5696,4257857371314274,2026-01-05 +City Hotel,0,79,2017,June,25,19,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,108.42,0,0,Check-Out,Connie Thomas,jdunn@example.net,965-235-9374,4758534436992337,2025-02-28 +City Hotel,0,41,2017,April,18,29,1,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.29,0,0,Check-Out,Megan Carter,robertjacobs@example.net,(648)512-9882,340886959678351,2024-12-10 +Resort Hotel,0,15,2017,March,11,15,2,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,14.0,179.0,75,Transient-Party,86.94,1,1,Check-Out,Daniel Miller,hensleyjessica@example.net,+1-764-417-9957x4526,4877029553378283,2025-07-27 +City Hotel,1,15,2017,August,32,3,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,226.8,0,1,Canceled,Tammy Taylor,kberry@example.com,+1-206-249-0326x154,2707430598037571,2024-04-19 +City Hotel,0,145,2017,August,32,3,0,2,2,0.0,0,BB,PRT,Undefined,Direct,0,0,0,B,H,0,No Deposit,12.0,179.0,0,Transient,116.71,0,1,Check-Out,Angel Smith,deanjames@example.org,200.659.3853x56963,4415094500341,2024-09-07 +Resort Hotel,1,200,2017,May,19,9,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,51.5,0,2,Canceled,Lisa Long,daniel18@example.com,(776)588-9715x2103,6594535883972816,2024-05-07 +City Hotel,0,16,2017,February,6,3,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,37.67,0,1,Check-Out,Melissa Greene,kimberlymunoz@example.net,374.342.0319,3538001528773941,2025-02-09 +City Hotel,1,54,2017,August,33,14,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,197.06,0,1,No-Show,Brett Phillips,davisjennifer@example.org,563-868-7624x02444,5102454358346190,2025-09-05 +Resort Hotel,0,9,2017,March,14,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,90.24,0,0,Check-Out,Charles Anderson,claireramos@example.org,(644)426-7144x593,4571537805402281018,2025-09-04 +Resort Hotel,0,2,2017,August,35,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,120.74,1,1,Check-Out,Jason Weaver,johnthompson@example.net,787-223-8396,3520623378141802,2025-05-17 +City Hotel,0,3,2017,October,42,20,0,1,2,0.0,0,BB,,Corporate,Direct,0,0,0,E,B,0,No Deposit,9.0,179.0,0,Transient,83.21,0,0,Check-Out,Susan Howard,bradshawluis@example.org,881.689.6998x034,3519894206688529,2026-03-01 +Resort Hotel,1,1,2017,November,44,3,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,50.52,0,0,Canceled,Christopher Sullivan,smithstephen@example.net,001-716-379-0783x364,502068970479,2025-03-20 +Resort Hotel,0,1,2017,July,29,21,4,10,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,132.83,0,1,Check-Out,Karen Mooney,jasonbailey@example.com,001-727-277-1440x186,4366384927466258,2025-04-28 +City Hotel,0,105,2017,July,27,5,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,75.53,0,1,Check-Out,Daniel Martinez,campbellanita@example.com,391-433-3745x42638,180084044283568,2024-09-02 +City Hotel,0,12,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,9.0,45.0,0,Transient,107.87,0,0,Check-Out,Andrew Lewis,carolyn22@example.com,001-725-912-9549x0455,378990148536382,2024-08-18 +Resort Hotel,0,1,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,0,No Deposit,17.0,179.0,0,Transient,2.63,1,0,Check-Out,Laurie Porter,kingdaniel@example.org,(627)343-3779x23689,213126233928668,2024-08-26 +Resort Hotel,0,97,2017,March,11,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,302.0,179.0,0,Transient,63.44,0,1,Check-Out,Richard Nicholson,jessica01@example.com,001-982-450-2408x95225,30146287552389,2025-10-17 +City Hotel,1,158,2017,July,29,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,145.13,0,0,No-Show,Chris Butler,jgarcia@example.com,418.965.5946x89047,375097143523572,2025-08-24 +City Hotel,0,33,2017,April,15,12,2,2,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,1,D,D,0,No Deposit,9.0,179.0,0,Transient,107.3,1,1,Check-Out,Amber Ray,hardinjill@example.net,867-744-3348x209,4541973646169449644,2026-03-16 +City Hotel,0,14,2017,October,44,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,119.29,0,0,Check-Out,Christine Montgomery,riverarobert@example.com,531-505-1804,572203833262,2026-03-10 +City Hotel,1,15,2017,March,12,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,2,No Deposit,15.0,45.0,0,Transient,103.53,0,0,Canceled,John Munoz Jr.,kimtyrone@example.org,+1-722-553-2710x05752,377322055194578,2025-06-05 +City Hotel,1,340,2017,June,23,9,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.69,0,0,Canceled,Catherine Perkins,shelleyharris@example.net,704.800.2816,5231953441834090,2024-08-15 +City Hotel,0,263,2017,October,42,19,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,64,Transient-Party,113.5,0,0,Check-Out,Brett Thomas,bradleykendra@example.net,+1-303-432-7730x6561,4217221494780983528,2025-07-25 +Resort Hotel,0,28,2017,March,11,16,1,3,2,1.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,50.36,0,0,Check-Out,Jamie Robbins,ashley69@example.com,(900)227-5224x824,676349929635,2024-11-22 +Resort Hotel,0,87,2017,July,30,28,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,100.59,0,0,Check-Out,Johnathan Palmer,ashleywiggins@example.org,(784)812-9987,4545687344936446,2025-12-13 +Resort Hotel,0,2,2017,October,42,16,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,229.0,179.0,0,Transient-Party,50.87,0,0,Check-Out,Wayne Parker,angelica07@example.org,4976666930,4100815205855747,2025-04-07 +City Hotel,0,22,2017,August,32,9,0,1,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.59,0,1,Check-Out,Lauren Howell,whardin@example.com,2507516824,3575188195667458,2025-03-22 +City Hotel,1,117,2017,June,26,27,3,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,144.46,0,1,Canceled,Crystal Mitchell,millerdawn@example.com,544-630-7440x487,213166630854851,2024-09-25 +Resort Hotel,0,11,2017,June,24,11,1,2,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,A,D,0,No Deposit,317.0,179.0,0,Transient,49.06,0,1,Check-Out,Monica Madden,brent74@example.net,564-937-1092x456,3563091451607529,2025-08-02 +Resort Hotel,0,38,2017,March,12,22,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,I,1,No Deposit,242.0,179.0,0,Transient,2.85,0,0,Check-Out,David Rivers,hodgesdavid@example.com,(425)299-4303,213116866829846,2024-07-28 +City Hotel,0,13,2017,March,14,30,2,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,107.05,0,2,Check-Out,Julie Moon,james01@example.com,540.705.6768x78685,676355782084,2026-02-12 +City Hotel,0,23,2017,October,43,27,2,1,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,87.03,0,1,Check-Out,Angela Rivera,slee@example.org,869.347.0523x705,3538684884565355,2024-09-11 +Resort Hotel,0,181,2017,July,27,4,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,82.52,0,0,Check-Out,Nicholas Massey,kara07@example.org,312-373-2087x13443,30185494260279,2024-12-22 +City Hotel,1,157,2017,August,34,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient,214.46,0,0,Canceled,Richard Wilson,fullerchristine@example.net,299.691.8080,213167473206183,2024-05-17 +City Hotel,1,96,2017,October,41,10,0,3,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Peter Gonzalez,aaron50@example.net,+1-535-341-0981x54158,4958169388898317285,2025-04-09 +City Hotel,1,155,2017,July,27,1,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,18.0,179.0,41,Transient,103.77,0,0,Canceled,Susan Mora,yreilly@example.org,7148279251,4562419237853860,2025-02-19 +City Hotel,0,11,2017,October,41,13,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,123.3,0,2,Check-Out,Valerie Patterson,smalldaniel@example.net,(566)978-4812,3554068601177638,2025-09-07 +City Hotel,0,28,2017,December,52,27,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,88.67,0,0,Check-Out,Jeffrey Brown,sward@example.net,642-833-7391x81863,6525722464563735,2024-08-31 +Resort Hotel,0,1,2017,March,11,14,2,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,1,A,C,0,No Deposit,174.0,222.0,0,Transient,51.03,0,0,Check-Out,John Kemp,ashleygraves@example.org,+1-805-611-3528x924,6543812194415773,2024-08-14 +City Hotel,1,95,2017,October,42,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,81.67,0,0,Canceled,Calvin Bowers,adam42@example.org,001-989-945-4448x4394,213180100016453,2024-12-02 +City Hotel,0,0,2017,January,3,13,0,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,41.82,0,1,Check-Out,Brandon Graves,tiffany20@example.org,+1-436-922-1300x0137,4883003388928,2025-07-13 +Resort Hotel,0,8,2017,April,16,15,1,2,1,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,45.05,1,0,Check-Out,Joshua Russell,bpoole@example.com,504-971-1987,4223241369929248,2025-12-11 +Resort Hotel,0,205,2017,March,10,10,0,2,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,A,1,No Deposit,171.0,179.0,0,Transient-Party,52.2,0,0,Check-Out,Nathan Brown,jamiecook@example.com,(762)808-8167,3531935246409774,2024-06-29 +City Hotel,1,166,2017,March,13,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.21,0,1,Canceled,Benjamin Wilson,ryanking@example.org,(365)564-6002x3381,376870671419135,2025-01-02 +City Hotel,0,16,2017,August,33,15,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,235.01,1,1,Check-Out,Joshua Ho,cuevasmitchell@example.com,566-571-9247x8023,4504418005930331,2024-05-25 +City Hotel,0,0,2017,May,19,8,1,2,2,2.0,0,BB,PRT,Complementary,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,2.92,1,0,Check-Out,Mark Woods,melissareed@example.org,(237)869-5874,371936707590259,2026-03-16 +Resort Hotel,0,40,2017,October,41,8,2,5,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,95.9,0,0,Check-Out,George Taylor,jessica93@example.net,799-914-4307x3455,4227258886556250,2024-09-20 +City Hotel,1,414,2017,August,32,8,0,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,98.06,0,0,Canceled,John Ryan,kimberlyramirez@example.com,385.568.4267x764,4550530114818,2025-07-07 +City Hotel,1,325,2017,August,33,12,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,159.19,0,2,Canceled,Andrea Taylor,cgordon@example.net,604.238.5789,4639286619797026,2024-11-22 +City Hotel,1,319,2017,July,29,16,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,107.47,0,0,Canceled,Kellie Mitchell,vthomas@example.com,(341)380-0142x2537,580849453023,2025-02-23 +City Hotel,0,156,2017,May,19,9,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,141.57,0,1,Check-Out,Jennifer Buck,johnsonjeffery@example.net,001-507-814-9163x07996,3597183332202420,2024-07-26 +City Hotel,0,0,2017,May,18,1,2,5,1,1.0,0,BB,SWE,Direct,Direct,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,110.05,1,0,Check-Out,Dustin Hernandez,andre18@example.org,001-807-859-1644x68550,4020149552204,2025-02-27 +Resort Hotel,0,0,2017,March,13,27,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,1,No Deposit,251.0,179.0,0,Transient,45.16,0,1,Check-Out,Alex Johnson,christian05@example.org,+1-732-724-4031,501827087096,2024-09-11 +City Hotel,1,388,2017,January,2,1,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,190.13,0,1,Canceled,Jody Rogers,duncanlisa@example.org,637.454.4305,6553713336373119,2025-02-27 +City Hotel,0,53,2017,September,38,19,2,5,3,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,141.73,0,0,Check-Out,Laura Medina,waltonjustin@example.org,001-311-627-2961x30654,3543392489459767,2024-04-02 +City Hotel,0,10,2017,July,30,23,1,0,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,90.54,0,0,Check-Out,Brittany Sanchez,daniel58@example.net,+1-600-519-5564x6932,4665484393257260,2025-02-06 +City Hotel,0,41,2017,December,49,5,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,85.11,0,1,Check-Out,Christine Green,devinthomas@example.net,783-802-1943x065,3522620732734098,2025-07-02 +City Hotel,1,414,2017,August,32,7,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,115.92,0,0,Canceled,Matthew Shaw,steven70@example.org,561-326-7084x042,4002566996319737,2024-11-21 +Resort Hotel,0,30,2017,August,35,25,2,5,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,F,G,1,No Deposit,244.0,179.0,0,Transient,249.66,0,1,Check-Out,Lonnie Martinez,dudleyjasmine@example.org,(362)410-0938x6678,3517914003864941,2024-12-03 +City Hotel,0,21,2017,March,12,19,2,1,1,0.0,0,BB,ITA,Online TA,GDS,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,143.95,0,2,Check-Out,Vincent Reeves,robert52@example.net,317.578.9532x1339,3525040504970712,2025-07-16 +City Hotel,1,288,2017,October,41,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,91.7,0,0,Canceled,Matthew Harris,sarah62@example.com,781.508.6317,4055558964193,2025-03-24 +City Hotel,1,414,2017,August,33,16,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.47,0,0,Canceled,Jennifer Hudson,darlene13@example.net,001-356-940-3961x3986,347788135231860,2026-03-01 +City Hotel,0,1,2017,June,24,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,197.0,67.0,0,Transient,61.64,0,0,Check-Out,Gina Clark,amcintosh@example.org,001-631-607-9330,676147715863,2025-04-26 +City Hotel,0,2,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Amanda Garcia,williamsdiana@example.net,601.698.1513x4331,3571287813957574,2024-06-20 +Resort Hotel,0,10,2017,March,13,26,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,82.06,1,1,Check-Out,Seth Olsen,xmoore@example.net,328-206-6919,372491933747769,2024-09-11 +City Hotel,0,189,2017,November,46,13,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,85.01,0,3,Check-Out,Carla Patterson,peggy21@example.org,314-514-5827,3585145859973349,2025-12-26 +Resort Hotel,0,110,2017,March,13,26,1,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,D,0,Refundable,11.0,223.0,0,Transient-Party,38.01,0,0,Check-Out,Jeffrey Glenn,danmurphy@example.com,001-719-305-6084x682,374230791235915,2024-07-20 +City Hotel,1,158,2017,July,28,6,2,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.76,0,2,Canceled,Shelby Wood,danielramirez@example.com,(461)242-5554x09301,346539479741050,2024-09-13 +City Hotel,1,26,2017,January,4,21,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,39.76,0,1,Canceled,Katherine Holder,adamsevelyn@example.net,641.506.7358x236,3510188400110359,2024-07-14 +Resort Hotel,0,29,2017,November,47,25,2,2,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,335.0,179.0,0,Transient-Party,107.9,0,0,Check-Out,Gregory Rivers,rebekah77@example.com,001-629-366-7137x394,4262371222457046,2026-01-26 +City Hotel,0,166,2017,September,39,23,0,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient-Party,92.74,0,0,Check-Out,Katherine Davenport,nmartin@example.org,9699508149,4046358889714,2024-09-18 +City Hotel,0,4,2017,January,2,7,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,55.07,0,2,Check-Out,Emily Potter,gregory29@example.org,+1-652-545-6528x227,38636274855003,2025-07-04 +City Hotel,0,414,2017,July,28,9,1,2,2,0.0,0,HB,BRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,76.21,0,0,Check-Out,Vanessa Green,yrodriguez@example.net,572-521-1921,4012074077448,2025-10-02 +City Hotel,1,12,2017,August,35,26,1,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,108.89,0,0,Canceled,Edward Simmons,csullivan@example.com,(468)369-2558,4774817963149,2025-04-11 +Resort Hotel,0,0,2017,November,48,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,E,0,No Deposit,242.0,179.0,0,Transient,48.98,0,0,Check-Out,Robert Lane,courtney31@example.org,509.671.8636x4783,4381268085552861,2025-08-16 +City Hotel,1,264,2017,October,41,12,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,106.99,0,1,Canceled,Sandra Smith,pateldaniel@example.org,577.735.4759x9285,3579125774890354,2024-10-27 +City Hotel,0,10,2017,June,26,25,0,1,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,B,0,No Deposit,13.0,179.0,0,Transient,180.38,0,1,Check-Out,Charles Smith,samantha93@example.org,373-420-9227,3561972515466915,2025-09-20 +City Hotel,0,45,2017,January,2,1,0,1,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,109.61,1,2,Check-Out,Carl Bradley,peterlittle@example.org,468.536.4740,676184691886,2026-02-02 +City Hotel,1,174,2017,August,32,8,2,3,3,0.0,0,BB,,Direct,Direct,0,0,0,C,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Canceled,Joseph Cook,gardnerryan@example.net,428-572-1509,3502553429286789,2025-09-21 +City Hotel,0,96,2017,May,21,23,1,0,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,95.46,0,3,Check-Out,Robert Brown,owenspaula@example.com,(254)803-4135x3010,4186784679758,2025-09-15 +City Hotel,0,3,2017,April,15,10,1,1,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,136.23,0,0,Check-Out,Cameron West,tranelizabeth@example.com,490-615-4262x929,6011155106223171,2024-11-11 +Resort Hotel,0,158,2017,April,16,19,2,2,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,106.77,0,0,Check-Out,Johnathan Harper,mary66@example.net,8457185824,4896342174346,2025-06-02 +Resort Hotel,0,2,2017,May,21,26,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Contract,81.61,1,2,Check-Out,Francisco Johnson,perezjames@example.net,6698968408,4062969033743041,2024-12-09 +City Hotel,0,90,2017,March,11,14,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.56,0,1,Check-Out,Richard Scott,lisareyes@example.net,001-621-891-0981x247,4315551625691781,2026-01-24 +Resort Hotel,0,150,2017,March,13,31,1,2,2,0.0,0,Undefined,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,44.37,0,0,Check-Out,Sharon Jones,christopherorr@example.org,457.209.3912,4207986381017,2024-09-17 +City Hotel,0,7,2017,November,47,20,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,84.18,0,0,Check-Out,Elizabeth Melton,ibaker@example.net,(229)576-6119,180032047770214,2026-02-12 +Resort Hotel,0,291,2017,September,38,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,111.41,0,1,Check-Out,Stephanie Lopez,kellersheila@example.com,+1-235-942-5567x7527,3505305799677577,2026-01-30 +City Hotel,0,24,2017,March,10,4,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,21.0,179.0,0,Transient-Party,109.17,0,1,Check-Out,Eileen Snyder,rpowell@example.org,3039034680,4839926010172281,2025-07-09 +Resort Hotel,0,245,2017,July,28,12,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Shannon Donovan,juliasingh@example.org,415.666.5573x167,6598465679593152,2024-06-25 +City Hotel,1,155,2017,March,12,20,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,77.18,0,2,Canceled,Monica Smith,brentmorgan@example.net,(465)539-6237x314,4497176531621704,2024-10-05 +City Hotel,0,63,2017,March,10,6,2,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,K,0,No Deposit,33.0,237.0,0,Transient-Party,102.24,1,0,Check-Out,Valerie Sharp,maddenlindsey@example.com,001-973-491-9263,4671865906472616685,2025-04-08 +City Hotel,1,12,2017,February,8,23,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.53,0,2,No-Show,Shawn Brooks,greenemichael@example.org,522.448.7070,373874595313880,2025-04-18 +City Hotel,1,0,2017,August,32,11,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,64.74,0,1,Canceled,Doris Rios,timothytaylor@example.org,001-543-424-9622x852,4283341763363,2025-05-04 +City Hotel,1,161,2017,August,35,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,40,Transient,100.45,0,0,Canceled,Dalton Santos,maryferguson@example.org,856.377.0169x861,3548769244445238,2025-10-06 +Resort Hotel,0,47,2017,April,16,18,2,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,A,2,No Deposit,311.0,179.0,0,Transient-Party,53.42,0,1,Check-Out,Anna Chavez,bbailey@example.net,646.912.2922x15333,6551603916767826,2025-11-06 +Resort Hotel,1,202,2017,December,49,4,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,77.34,0,0,Canceled,Theresa Mercer,hollyhunter@example.com,437-512-9303x363,4729888801874521717,2024-06-16 +City Hotel,1,197,2017,August,35,30,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.44,0,0,Canceled,David Wallace,davidwood@example.org,(923)315-8406,630493369452,2026-03-01 +City Hotel,1,40,2017,December,50,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,41,Transient,111.26,0,0,Canceled,Brittney Brown,nancyjohnson@example.com,+1-335-769-9451,180042059276778,2025-06-03 +Resort Hotel,0,10,2017,June,23,4,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Group,62.96,0,0,Check-Out,Michele Stewart,johnmarsh@example.net,962-310-2513x844,180024157811482,2024-12-06 +Resort Hotel,0,1,2017,January,2,4,1,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,222.0,0,Transient,51.92,0,0,Check-Out,Jennifer Ross,schroedergeorge@example.com,001-361-611-7628,502060279085,2026-01-03 +City Hotel,1,112,2017,September,38,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,97.0,0,0,Canceled,Alexandra Gonzalez,ryanmorales@example.org,634-487-7964x7980,180070046534645,2025-05-24 +City Hotel,1,0,2017,December,50,12,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,15.0,275.0,0,Transient,2.49,0,0,Canceled,Megan Allison,mariagonzalez@example.org,001-733-560-3940x476,4859847046914,2024-11-12 +Resort Hotel,0,3,2017,August,32,6,2,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,2,No Deposit,17.0,179.0,0,Transient,252.0,1,0,Check-Out,Rhonda Simmons,garciajames@example.net,822.331.7195x752,2255420858238650,2024-11-10 +Resort Hotel,0,259,2017,August,32,5,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,231.0,179.0,0,Transient,192.91,0,1,Check-Out,Austin Taylor,wellsdavid@example.org,418-797-3476x2422,2492510939491048,2024-10-09 +Resort Hotel,0,2,2017,September,36,4,2,1,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient-Party,62.82,1,0,Check-Out,Brittany Underwood,romanchristopher@example.net,(292)759-5588x437,4537389380939,2026-01-30 +Resort Hotel,1,41,2017,August,35,27,0,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,214.3,0,0,Canceled,Stephanie Cortez,michellethompson@example.org,001-278-285-8472,6509611010002100,2025-06-09 +City Hotel,1,179,2017,July,28,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,9.0,179.0,0,Transient,134.76,0,1,Canceled,Kathy Adams,millerstephanie@example.org,209-224-6995x33036,180040140097203,2024-07-10 +Resort Hotel,1,283,2017,May,18,3,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,50.48,0,2,Canceled,David Oconnell,jcarter@example.net,+1-380-384-2003x9388,4267646033327529949,2025-10-25 +Resort Hotel,0,0,2017,December,49,2,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,52.51,0,1,Check-Out,Christine Mullins,ryan46@example.net,001-830-705-5445x466,4124091822538494,2024-10-07 +Resort Hotel,0,14,2017,October,43,27,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,215.81,1,1,Check-Out,Jerry Johnston,tracy13@example.net,+1-728-320-9787x393,4128737867549608,2024-10-08 +City Hotel,0,10,2017,March,10,10,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,30.0,179.0,0,Transient-Party,79.22,0,0,Check-Out,Richard Jackson,trujillolauren@example.org,970-873-1457x70449,6011604434894542,2025-02-19 +City Hotel,0,137,2017,April,16,15,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,104.86,0,1,Check-Out,Kimberly Sullivan,fisheradam@example.net,2232399919,4988869179707817049,2026-01-07 +City Hotel,0,44,2017,August,33,16,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient-Party,99.15,0,1,Check-Out,Margaret Terry,joshuapatterson@example.org,450-540-4380x060,3542353136603240,2025-06-02 +Resort Hotel,1,144,2017,August,35,24,2,5,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,188.87,0,0,Canceled,Samuel Bowman,qgarrett@example.org,(929)490-5322,180033470230767,2025-11-02 +City Hotel,1,390,2017,August,32,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.35,0,1,Canceled,Thomas Macdonald,scurry@example.net,001-634-403-6129x2723,6585909417605666,2025-12-10 +City Hotel,0,17,2017,February,8,20,0,2,1,1.0,0,BB,,Direct,Direct,0,0,0,A,L,1,No Deposit,15.0,223.0,0,Transient,43.75,0,0,Check-Out,Linda Johnson,darinharris@example.com,561-440-2554x2646,4330050050567183968,2025-03-26 +City Hotel,1,199,2017,May,21,20,0,1,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,222.43,0,0,Canceled,Dr. Diana Espinoza,thompsonluis@example.net,(406)757-1805x96183,6011545246907974,2025-06-05 +City Hotel,1,42,2017,December,50,10,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient,46.99,0,0,No-Show,Sean Thomas,hrose@example.net,486.554.1387x5917,3552539295972783,2024-07-04 +Resort Hotel,0,145,2017,June,23,3,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,252.0,0,2,Check-Out,Pamela Davis,nunezlaura@example.com,(769)732-9457,4091010491680717,2024-08-19 +Resort Hotel,0,89,2017,April,17,23,3,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,49.81,0,0,Check-Out,Cindy Williams,tracybarron@example.net,001-310-621-6555x6070,377950959485674,2025-04-11 +City Hotel,1,50,2017,December,52,24,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,82.77,0,0,No-Show,Stacy Smith,taylorpeter@example.org,(245)828-7434x72900,675989831796,2024-08-07 +City Hotel,0,82,2017,September,36,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,90.0,179.0,0,Contract,109.19,0,1,Check-Out,Gary Myers,sschwartz@example.net,+1-406-238-1675x70810,2269990702643887,2024-05-23 +Resort Hotel,0,204,2017,October,43,22,1,3,1,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,87.78,0,0,Check-Out,Richard Schmidt,johnpierce@example.com,(345)911-8339x8708,630455356398,2024-06-02 +Resort Hotel,0,24,2017,September,36,8,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,208.23,1,2,Check-Out,Michelle Brown,phillipsjulia@example.net,+1-352-857-4106x80384,5327247878832262,2025-02-26 +City Hotel,0,133,2017,October,42,16,0,6,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,64.0,179.0,0,Transient-Party,99.59,0,0,Check-Out,Claire Warren,jeremygonzalez@example.net,+1-239-929-2746x39427,213134266995646,2024-03-29 +City Hotel,0,52,2017,April,15,10,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.22,0,1,Check-Out,Margaret Chandler,frederick73@example.org,6537267699,180051572400005,2024-05-15 +City Hotel,1,2,2017,November,47,18,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient-Party,83.54,0,0,Canceled,David Jones,andrewgriffin@example.org,(508)899-5466,375092413790654,2025-08-15 +City Hotel,1,12,2017,June,25,23,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,109.79,0,1,Canceled,Dillon Brown,ncastaneda@example.com,(477)358-8446x053,3528760269694531,2025-09-14 +City Hotel,0,16,2017,June,26,26,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.59,0,2,Check-Out,Steven Morgan,rnelson@example.com,+1-270-435-5771,3586809621011030,2024-08-01 +City Hotel,0,100,2017,May,21,22,1,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient-Party,102.5,0,0,Check-Out,Sandra Lee,alexander30@example.com,587-610-1918,4057788268896911,2026-02-16 +City Hotel,0,11,2017,May,21,22,2,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,133.89,1,1,Check-Out,Ashley Robertson,deborah12@example.org,001-391-826-6529,180075877664072,2025-02-26 +Resort Hotel,0,103,2017,December,50,9,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,153.64,1,0,Check-Out,Eric Flores,kylethomas@example.org,+1-476-636-2399,4393878981146,2025-03-06 +Resort Hotel,0,2,2017,April,15,8,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,125.07,1,0,Check-Out,Christina Weber,katherine94@example.com,420.281.1041,6011789757282357,2024-10-08 +Resort Hotel,0,7,2017,December,52,27,1,2,2,0.0,0,Undefined,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,196.0,331.0,0,Transient,42.26,0,0,Check-Out,Thomas Black,brownrobert@example.net,7908554636,3570008616505118,2025-07-02 +City Hotel,1,57,2017,February,9,27,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.94,0,0,Canceled,Douglas Rodriguez,shannonbrandon@example.org,001-550-329-2198x4354,213172020292215,2024-08-13 +City Hotel,1,149,2017,August,33,12,1,0,2,0.0,0,SC,ITA,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,118.44,0,2,No-Show,Joanne Baker,lsimpson@example.net,436-508-9583x80104,501855653637,2025-03-20 +City Hotel,0,1,2017,March,13,23,0,1,2,0.0,0,BB,PRT,Online TA,Corporate,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,133.08,0,1,Check-Out,Timothy Johnson,taylormichael@example.com,+1-669-793-5657x416,4617448644758805,2024-05-23 +Resort Hotel,1,210,2017,August,33,13,1,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,64.01,0,0,Canceled,Rachel Sandoval,langalejandro@example.org,666.823.5145,180023039617695,2025-04-07 +City Hotel,0,16,2017,July,30,21,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,183.8,0,1,Check-Out,Larry Benson,connornolan@example.net,+1-305-276-6624,4934242752955482864,2025-07-05 +City Hotel,0,25,2017,December,52,30,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,117.33,0,3,Check-Out,Christina Miles,paula90@example.com,001-574-363-1709x634,6011219961516952,2025-10-24 +City Hotel,0,22,2017,June,26,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,98.06,0,1,Check-Out,Brian Black,arthurvillegas@example.org,+1-636-911-3650,3542853277504123,2025-06-30 +Resort Hotel,0,34,2017,February,8,21,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,39.84,0,1,Check-Out,William Holmes,rcole@example.net,(679)595-8548x16987,213179874287647,2024-12-25 +Resort Hotel,0,46,2017,November,44,3,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,43.03,0,1,Check-Out,Bradley Duncan,christopher31@example.com,263.203.5258,6011816059411333,2024-09-25 +Resort Hotel,0,156,2017,March,13,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,223.0,0,Transient-Party,62.27,0,0,Check-Out,Janice Kelly,helen55@example.net,4177701315,4117344758859932,2025-06-15 +Resort Hotel,0,141,2017,August,33,13,0,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,250.0,179.0,0,Transient,198.25,0,0,Check-Out,Kelly Beck,cunderwood@example.com,(747)544-8429,4479424775502,2025-02-07 +Resort Hotel,0,0,2017,April,15,9,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,245.0,179.0,0,Transient,111.43,0,2,Check-Out,Austin Kane,renee48@example.org,946-294-1825x3254,4452565136636303594,2024-12-06 +Resort Hotel,0,14,2017,March,10,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,14.0,221.0,0,Transient,63.75,0,0,Check-Out,Sharon Cook,qchurch@example.com,2929483072,4692945608273307,2025-12-28 +Resort Hotel,1,132,2017,March,13,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,237.0,179.0,0,Transient,38.41,0,1,Canceled,Christine Lopez,proctorfrederick@example.org,836-959-1022x98054,3594325949840265,2025-06-07 +Resort Hotel,0,1,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,47.0,0,Transient-Party,40.2,0,0,Check-Out,Joshua Chapman,ricky39@example.com,622.790.7024x1676,4835187265974566,2026-01-05 +Resort Hotel,1,109,2017,April,15,11,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,314.0,179.0,0,Transient-Party,102.55,0,0,Canceled,Jeremiah Hernandez,stanleybarr@example.com,946.421.7819,376363760522613,2025-01-29 +City Hotel,0,94,2017,June,25,19,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,119.86,0,1,Check-Out,Jacob Allen,brianbrown@example.com,(592)753-3740x26353,6011605837039254,2025-06-27 +City Hotel,1,91,2017,February,9,26,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.44,0,0,Canceled,Matthew Townsend,anita71@example.org,686-620-0483x2704,341218909439453,2025-01-01 +City Hotel,1,50,2017,June,24,10,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,85.95,0,1,No-Show,Diane Hughes,thomassmith@example.net,(489)754-5526x83028,503831226710,2025-07-23 +Resort Hotel,0,87,2017,May,19,6,1,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,128.54,0,2,Check-Out,Anna Whitehead,elizabethduncan@example.net,+1-694-852-3959,4144199654442253149,2026-02-13 +City Hotel,1,51,2017,June,25,16,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Canceled,Frances Williams,curtis77@example.net,001-512-495-4358x017,370659262751402,2025-06-18 +City Hotel,1,242,2017,June,24,8,0,2,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,107.19,0,1,Canceled,Kimberly Adams,kelly40@example.org,+1-689-486-4044x2651,180069810065299,2025-09-09 +Resort Hotel,0,51,2017,February,8,20,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,31.0,179.0,75,Transient-Party,90.47,1,0,Check-Out,Joshua Jacobs,omarjenkins@example.org,785.658.6869,213155649536211,2024-07-09 +City Hotel,1,118,2017,March,12,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,19,Transient,125.55,0,1,Canceled,Robert Frank,nstewart@example.org,001-690-499-4936x633,3561413010147973,2025-09-28 +City Hotel,0,2,2017,February,8,23,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.71,0,1,Check-Out,Richard Peterson,yatesanthony@example.org,813-349-6885x3797,2265768399510427,2024-08-22 +City Hotel,0,16,2017,September,37,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Contract,62.74,0,1,Check-Out,Roger White,jonesdouglas@example.net,(639)919-2660,6011642460019469,2026-03-02 +Resort Hotel,1,13,2017,April,14,2,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,101.91,0,1,Canceled,Jessica Castro,debrawilliams@example.com,355-393-3070,180092368739941,2026-01-14 +City Hotel,0,27,2017,June,23,9,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.59,0,1,Check-Out,Dawn Jones,ccisneros@example.org,574-775-5309x18103,4748248699140848,2024-05-25 +City Hotel,0,29,2017,December,49,2,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,85.86,0,0,No-Show,Parker Brown,lisasullivan@example.net,001-203-878-0759x3708,561882884019,2025-08-12 +City Hotel,0,14,2017,December,52,27,2,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,158.7,0,1,Check-Out,Shaun Wood,evansjennifer@example.net,946-371-9993x9817,4955868532182190,2024-09-29 +Resort Hotel,1,148,2017,December,49,4,0,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.92,0,0,Canceled,Brian Allen,brian54@example.org,+1-206-587-7788x1249,36993533535567,2025-04-01 +City Hotel,1,107,2017,June,26,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.23,0,2,Canceled,Julie Lee,sherryprice@example.net,(906)578-2932x5869,213139263970609,2025-08-27 +City Hotel,0,10,2017,January,3,16,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,68.79,0,0,Check-Out,Kimberly Elliott,jpatton@example.org,(339)540-9633x62160,379216770375645,2025-06-12 +City Hotel,1,11,2017,July,29,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.15,0,1,Canceled,Stephen Kirby,brian22@example.net,001-746-249-2471x7325,213192216248375,2025-10-26 +Resort Hotel,0,49,2017,September,39,24,1,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,G,1,No Deposit,243.0,179.0,0,Transient,144.53,0,0,Check-Out,Pamela Walker,nicholewebb@example.net,001-226-888-9000x6458,4298006438036832,2025-12-07 +City Hotel,0,2,2017,July,27,2,3,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,236.79,0,0,Check-Out,Sarah Clements,edwardgreene@example.com,001-876-422-9271x3168,2232232291818925,2024-09-03 +City Hotel,0,47,2017,May,19,9,1,1,1,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,30.0,179.0,0,Transient,98.63,1,0,Check-Out,Julie Gillespie,hcruz@example.org,7395960778,4966270167055714404,2025-07-12 +City Hotel,0,1,2017,September,36,5,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,1,No Deposit,10.0,156.0,0,Transient,136.79,0,0,Check-Out,Audrey Koch,eclayton@example.org,+1-773-940-3891x25279,4941880955253314,2026-01-18 +City Hotel,1,233,2017,July,28,13,1,1,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,Non Refund,188.0,179.0,0,Transient,98.74,0,0,Canceled,Brenda Anderson,phillip71@example.net,(711)426-4643x59184,3516245469285672,2024-08-25 +Resort Hotel,1,284,2017,November,44,3,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,236.0,179.0,0,Contract,116.86,0,2,Canceled,Marissa Dorsey,aterry@example.org,001-938-760-8377x775,4294522577732784815,2025-02-04 +City Hotel,1,151,2017,July,31,30,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,10.0,179.0,0,Contract,216.84,0,0,Canceled,Richard Brown,jporter@example.org,716-231-5674x7628,30244428464935,2025-05-10 +Resort Hotel,0,93,2017,December,52,25,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,364.0500000000011,179.0,0,Transient-Party,81.48,1,0,Check-Out,Bradley Jones,nelsondebra@example.com,+1-566-628-4641,6011918473630116,2025-05-16 +City Hotel,0,13,2017,November,46,15,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,45.0,0,Transient-Party,91.76,1,1,Check-Out,Michelle Ramirez,jennifer50@example.org,(486)389-1363,3553346882110903,2024-11-10 +Resort Hotel,0,2,2017,August,35,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,126.3,1,1,Check-Out,Michael Burns,qmartinez@example.com,754-606-0648x647,372552468154232,2025-02-01 +City Hotel,1,9,2017,April,14,4,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,82.35,0,0,Canceled,Tracey Bailey,orodriguez@example.com,812-999-5905x465,180005311121777,2024-09-12 +City Hotel,1,313,2017,June,24,13,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,E,E,0,No Deposit,14.0,179.0,0,Transient,112.63,0,0,Canceled,Sarah Holt,mclaughlinjohn@example.com,677-533-1794x655,342042181747295,2026-02-08 +City Hotel,0,104,2017,August,31,3,2,2,2,0.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,172.78,0,0,Check-Out,John Todd,jimenezcourtney@example.net,(671)944-1537,4871040744933486,2024-05-04 +Resort Hotel,1,108,2017,March,10,2,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,256.0,179.0,0,Transient-Party,83.02,0,0,Check-Out,Rachel Berger,miabarrera@example.net,(205)768-3865x49049,2368036233369566,2026-01-31 +City Hotel,0,2,2017,April,17,24,1,3,1,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,117.85,0,0,Check-Out,Megan Aguilar,dkane@example.com,(640)684-7745x4832,4684522050158458,2024-06-21 +City Hotel,0,0,2017,April,15,12,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,10.0,179.0,0,Transient,81.68,0,2,Check-Out,James Mckinney,tina95@example.net,8097351824,180057882730015,2025-10-21 +Resort Hotel,1,16,2017,March,11,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,239.0,179.0,0,Transient,64.05,0,1,Canceled,Raymond Powell,jrobinson@example.com,726-706-7072,6565762267525169,2025-01-02 +City Hotel,0,4,2017,June,26,22,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,52.08,0,1,Check-Out,Edward Lawson,richardvaughn@example.org,683-524-3044,6553842496551592,2024-11-16 +Resort Hotel,0,0,2017,March,13,28,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,77.36,0,2,Check-Out,Jamie Bond,mendozachristine@example.org,+1-211-344-5864,30072540897249,2025-07-16 +City Hotel,0,17,2017,July,30,24,2,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,B,A,0,No Deposit,14.0,179.0,0,Transient,113.31,0,1,Check-Out,Richard Smith,jonescarla@example.net,642-540-9383x17156,4735854344824,2024-07-27 +City Hotel,1,200,2017,August,33,17,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,10.0,179.0,0,Transient,100.18,0,0,Canceled,Holly Martin,jasminemason@example.org,001-680-767-7183x5313,4107517101004164936,2024-05-06 +City Hotel,1,166,2017,July,31,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.52,0,0,Canceled,Diane Taylor,andrew25@example.net,972.884.5435,30448416219355,2024-06-14 +Resort Hotel,1,24,2017,January,4,21,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Transient,52.23,0,1,Canceled,Melanie Diaz,nmartin@example.net,+1-629-507-2726,347593458005580,2024-11-24 +City Hotel,0,139,2017,October,43,23,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,222.24,0,0,Check-Out,Lori Krueger,blackomar@example.org,+1-387-528-6196x024,4481329301754217,2025-02-28 +City Hotel,1,0,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,1,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Canceled,Ryan Riley,iyoung@example.org,+1-721-917-6896x2386,502009285177,2024-04-22 +Resort Hotel,0,193,2017,July,27,3,2,5,2,1.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,146.73,0,3,Check-Out,Dana Hanson,byrdalicia@example.org,+1-734-251-9613x313,3501404438078927,2024-09-15 +City Hotel,1,68,2017,December,52,24,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,64.28,0,1,Canceled,Alex Steele,thayes@example.org,(383)873-6347,4899630146646,2025-03-10 +City Hotel,0,414,2017,August,32,6,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,85.64,0,0,Check-Out,David Williams,kyle35@example.com,883.425.6785,3594091112086520,2026-03-22 +Resort Hotel,0,19,2017,July,26,1,2,5,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,115.37,0,2,Check-Out,Johnathan Davidson,zachary78@example.net,(223)440-6361x815,6011321564218380,2026-01-02 +City Hotel,1,125,2017,April,17,23,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,111.22,0,0,Canceled,Terry Murphy,brian27@example.net,(238)371-2717x6667,340902077455661,2024-09-25 +City Hotel,1,166,2017,June,27,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,109.25,0,0,Canceled,Anne Jones,bradyrogers@example.net,+1-285-509-7185x4796,3550054667531557,2025-08-09 +City Hotel,1,38,2017,July,27,4,2,5,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,C,B,0,No Deposit,10.0,179.0,0,Transient-Party,132.32,0,0,Canceled,Susan Barnes,jparker@example.net,836-204-1236x6852,3510907504020978,2025-09-22 +City Hotel,0,12,2017,March,13,25,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,138.72,0,1,Check-Out,Andrew Morales,ncannon@example.com,3878626539,3574393705044948,2025-04-17 +City Hotel,1,46,2017,October,41,12,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,47.54,0,0,Canceled,Michelle Caldwell,smartin@example.net,478.474.8005x0636,4903445358368008724,2025-12-29 +Resort Hotel,1,229,2017,September,37,9,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,147.36,0,0,Canceled,Susan Harper,iramirez@example.net,+1-255-878-4335,4496773756666678,2026-02-12 +City Hotel,0,1,2017,May,21,24,0,1,1,0.0,0,BB,USA,Corporate,Corporate,1,0,0,D,B,1,No Deposit,12.0,45.0,0,Transient-Party,63.47,0,1,Check-Out,Tamara Harris,kmack@example.org,310-425-5575,571661599456,2024-06-28 +City Hotel,0,64,2017,August,34,18,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,222.48,0,1,Check-Out,Jordan Reeves,corycross@example.net,641-493-8037x604,4879626685552884152,2025-03-07 +City Hotel,0,19,2017,July,30,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,139.03,0,0,Check-Out,Steven Greene,patriciayork@example.org,580-740-7016,4102950104272443,2024-10-18 +Resort Hotel,0,70,2017,April,16,19,0,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,106.71,1,3,Check-Out,Kelly Kennedy,littlestacey@example.org,+1-823-796-6624x2643,3559326930921554,2024-05-02 +City Hotel,0,211,2017,June,25,16,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,72.0,179.0,0,Transient,139.48,0,0,Check-Out,David Sanchez,susan69@example.org,+1-509-456-6389,4754679821159499,2025-10-11 +Resort Hotel,0,15,2017,August,32,7,1,5,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,183.56,0,0,Check-Out,Kathy Gutierrez,laura49@example.com,506-364-7183,3561304958547649,2025-10-19 +City Hotel,1,4,2017,August,33,13,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,90.85,0,2,Canceled,Sarah Shelton,ryanmitchell@example.org,605-982-5943x1804,341477635669979,2024-09-18 +City Hotel,0,141,2017,August,34,19,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,141.82,1,1,Check-Out,Christopher Mcdowell,erik03@example.net,+1-408-481-3913x9400,30487800243639,2025-11-27 +City Hotel,1,414,2017,August,31,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.94,0,0,Canceled,Zachary Simpson,adambarnes@example.net,775.922.8700,4865364649564435762,2025-08-13 +City Hotel,0,2,2017,October,40,6,2,0,2,0.0,0,BB,FRA,Corporate,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,64.18,0,1,Check-Out,Matthew Henderson,walkermary@example.com,333-699-2348x33254,6011786801929686,2025-05-15 +City Hotel,0,23,2017,September,37,11,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,62.0,179.0,0,Transient,136.25,0,1,Check-Out,Joseph Collins,barbarayoung@example.net,+1-928-458-8565x660,4251078194401182,2024-11-08 +City Hotel,1,57,2017,July,27,5,1,4,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.33,0,3,Canceled,Deborah Small,samantha24@example.net,240-602-2554,30277089035073,2025-07-31 +City Hotel,0,0,2017,October,43,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,53.88,0,1,Check-Out,Virginia Jimenez,hernandezaaron@example.net,249.497.1094x546,3555464776577570,2025-08-27 +City Hotel,0,42,2017,November,47,24,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,11.0,179.0,0,Transient,101.86,0,1,Check-Out,Aaron Cochran,joseph13@example.com,4023892544,4232304151314026,2025-01-02 +City Hotel,1,4,2017,August,33,14,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,92.29,0,0,Canceled,Morgan Barrett,robertvelasquez@example.net,831.649.6830,2364301571483559,2025-10-21 +Resort Hotel,0,1,2017,March,13,23,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,1,No Deposit,12.0,179.0,0,Transient,77.89,0,1,Check-Out,James Williams,smithmichael@example.org,550.861.0625,6567870530753977,2025-09-06 +City Hotel,0,105,2017,July,28,11,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,2,Check-Out,Paul Tyler,oconnortiffany@example.net,(604)932-1784x48195,2247344278830329,2024-12-13 +City Hotel,0,36,2017,April,14,4,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.69,0,1,Check-Out,Kevin Hansen,lunasarah@example.com,(363)861-7766x41034,4357937240283550986,2025-09-08 +Resort Hotel,0,29,2017,July,30,20,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,248.0,179.0,0,Transient,139.39,0,1,Check-Out,Daniel Thomas,taylor41@example.org,001-837-454-3520x872,377689903795164,2025-07-08 +City Hotel,1,140,2017,July,28,8,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,227.23,0,0,Canceled,Jennifer Pearson,benjamin19@example.com,421.283.8264x65651,4133680811899302667,2025-08-20 +City Hotel,0,12,2017,November,44,4,2,1,1,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,60.84,0,0,Check-Out,Sherry Horton,wisedarryl@example.com,309-513-7806x2590,341589581166816,2024-06-22 +City Hotel,0,59,2017,July,29,15,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.17,0,2,Check-Out,David Roach,nicholstracy@example.net,(790)935-8124,3516435142719656,2024-10-13 +City Hotel,1,375,2017,October,43,25,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.35,0,0,Canceled,Susan James,ericyoung@example.com,472.646.3606x5812,4733905953349871,2026-02-19 +City Hotel,1,63,2017,August,31,4,1,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,165.37,0,0,Canceled,Sandra Gonzalez,kenneth76@example.net,856-240-1167,4817534631752,2024-04-19 +City Hotel,1,325,2017,August,31,3,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient-Party,127.15,0,0,Canceled,Terry Brown,steven67@example.com,(933)219-7751x525,38775431932055,2024-07-14 +City Hotel,0,51,2017,September,38,17,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,116.0,1,3,Check-Out,Anthony Hoover,vaughnnancy@example.org,467-289-2031x448,4290423024119,2025-02-05 +Resort Hotel,0,262,2017,November,45,8,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,79.0,179.0,0,Transient-Party,62.22,0,0,Check-Out,Andrea Ramos,johnny09@example.com,976.443.8625x1630,38905498750617,2026-01-15 +City Hotel,1,34,2017,August,31,3,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,116.16,0,0,Canceled,Aaron Shepard,kenneth74@example.org,001-916-370-5803,180075148310448,2024-11-08 +Resort Hotel,1,248,2017,December,52,25,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,C,0,Non Refund,305.0,179.0,0,Transient,54.25,0,0,Canceled,Kim Williams,rsullivan@example.com,001-389-231-6667x92365,30149369505945,2024-04-04 +City Hotel,1,249,2017,July,27,3,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient-Party,127.44,0,1,No-Show,Vickie Hall,david61@example.net,247.617.6321x38649,4321903590216023,2025-06-12 +City Hotel,0,150,2017,June,25,19,0,1,1,0.0,0,BB,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,114.15,0,0,Check-Out,Diana Rogers,brandonpalmer@example.net,001-816-488-5421x99136,2442469627213720,2025-01-04 +City Hotel,0,36,2017,November,47,21,1,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,87.87,0,0,No-Show,Lindsay White,karen22@example.org,(356)748-6134,213149525713069,2025-07-08 +City Hotel,1,392,2017,March,12,22,1,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,49.93,0,0,Canceled,Lisa Hall,mercadojohn@example.net,+1-528-936-8180x0300,501856866923,2025-08-27 +Resort Hotel,1,48,2017,November,47,19,3,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,238.0,179.0,0,Transient,94.95,0,0,Canceled,Michelle Schultz,bcohen@example.com,679.482.4385x4990,3523651225914516,2025-01-13 +City Hotel,0,10,2017,September,35,1,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,89.9,0,0,Check-Out,Brandon Townsend,erindaniel@example.org,+1-288-680-5607x336,343077746881881,2025-03-12 +City Hotel,0,153,2017,May,22,28,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,97.99,0,1,Check-Out,Joseph Day,hicksmichelle@example.org,(435)495-0949x282,30440786492845,2025-12-12 +Resort Hotel,0,43,2017,September,36,5,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,G,D,0,No Deposit,239.0,179.0,0,Transient,203.22,0,0,Check-Out,Rita Taylor,devonlane@example.net,+1-526-350-5398,2717460269921504,2024-05-12 +Resort Hotel,0,48,2017,June,26,22,0,1,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,231.27,1,0,Check-Out,Mark Meyer,kevindiaz@example.net,(724)948-5536,36932533686574,2025-04-27 +City Hotel,0,17,2017,November,48,25,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,102.56,0,0,Check-Out,William Juarez,harmonjustin@example.org,296-758-6981,2461317442120115,2025-11-05 +Resort Hotel,0,44,2017,April,17,23,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,52.3,0,2,Check-Out,Jimmy Terry,xduffy@example.com,929.795.3275,2277445988078910,2024-12-16 +Resort Hotel,0,57,2017,June,23,8,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,105.38,0,3,Check-Out,Jimmy Smith,kennethmartin@example.org,(322)805-7977,630421878533,2025-06-25 +Resort Hotel,1,52,2017,July,30,20,0,4,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,250.0,179.0,0,Transient,252.0,0,0,Canceled,Mitchell Jones,fsmall@example.net,+1-358-985-9022x6719,3519926201031212,2024-05-31 +Resort Hotel,0,19,2017,January,2,6,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,135.0,179.0,0,Transient,37.83,0,1,Check-Out,Yolanda Johnson,danielchavez@example.net,739.717.0018,3509635547523178,2025-02-07 +Resort Hotel,0,6,2017,March,12,23,0,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,I,1,No Deposit,247.0,179.0,0,Transient,65.08,1,0,Check-Out,Joshua Lewis,anthony37@example.com,6106949524,2272432559164282,2024-07-15 +City Hotel,0,4,2017,April,14,5,2,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,152.0,179.0,0,Transient,92.86,0,0,Check-Out,Dana Atkins,john97@example.net,689.658.9756,585183384338,2025-03-24 +Resort Hotel,0,68,2017,February,8,22,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,83.0,179.0,0,Transient-Party,80.68,0,1,Check-Out,Timothy Jacobs,jonathan39@example.com,362-348-4268x556,639091841143,2024-05-22 +Resort Hotel,0,177,2017,July,30,26,4,10,3,0.0,0,BB,GBR,Offline TA/TO,Direct,0,1,0,E,E,0,No Deposit,38.0,179.0,0,Contract,45.16,0,0,Check-Out,Donna Taylor,williamoconnell@example.net,8192650890,6584693557456665,2024-06-20 +Resort Hotel,0,110,2017,December,51,19,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,54.24,0,0,Check-Out,Victoria Burgess,vjohnson@example.net,001-785-271-9104x152,213195223277295,2024-10-23 +Resort Hotel,0,259,2017,October,43,23,1,1,2,0.0,0,Undefined,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,64,Transient-Party,83.63,0,0,Check-Out,Jay Hall,williamgomez@example.net,539-602-9992,345095289526521,2025-05-17 +City Hotel,0,1,2017,July,30,23,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,1,No Deposit,8.0,45.0,0,Transient-Party,5.02,0,0,Check-Out,Dr. Heather Johnson PhD,wilsonkatie@example.com,424.320.8315,4804253806825878,2024-04-02 +City Hotel,0,1,2017,March,11,9,2,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient,2.06,0,1,Check-Out,John Mendoza,gibsonchristian@example.net,(484)641-7691x726,6557576450572279,2024-11-20 +Resort Hotel,0,47,2017,April,17,26,1,2,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,75.1,1,0,Check-Out,Katrina Mendoza,andrea13@example.net,001-814-248-9417x3844,4134608136753,2025-02-21 +City Hotel,1,35,2017,April,16,18,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,74.15,0,0,No-Show,Beth Schmidt,beverlycastaneda@example.org,410-203-8355x3258,213141068891428,2026-03-16 +Resort Hotel,0,33,2017,January,2,9,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,318.0,179.0,0,Transient,49.34,0,0,Check-Out,Claire Mcintosh,simonzachary@example.org,+1-953-646-8601x600,3508968306530873,2024-04-03 +City Hotel,1,62,2017,March,10,4,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,240.0,179.0,0,Transient,91.76,0,2,Canceled,Joseph Ortega,joseph15@example.net,350-928-9137x931,583601277333,2025-01-21 +Resort Hotel,1,191,2017,May,20,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,Non Refund,241.0,179.0,0,Transient,118.53,0,0,Canceled,Brandon Pena,whitneymurphy@example.net,201-455-7762x00346,30369749880350,2024-09-10 +City Hotel,1,108,2017,May,20,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,109.18,0,0,Canceled,Rachel Martin,millsjuan@example.com,001-340-212-7254x613,3501563446440856,2024-08-25 +Resort Hotel,1,86,2017,July,27,5,2,5,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,F,G,2,No Deposit,241.0,179.0,0,Transient,113.98,0,1,Canceled,Carolyn Moore,parcher@example.com,001-387-244-0038x3704,2253971784424113,2024-04-16 +City Hotel,0,33,2017,August,32,9,0,1,1,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,187.06,0,0,Check-Out,Jeffrey Robertson,johngibson@example.net,001-209-577-1712,2247880309840308,2025-10-26 +Resort Hotel,0,0,2017,February,6,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,293.0,179.0,0,Group,49.83,0,1,Check-Out,Alexandra Lyons,terri74@example.org,313.232.6341x013,379466452306679,2026-02-11 +Resort Hotel,1,39,2017,July,30,29,0,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient-Party,243.36,1,1,Canceled,Mason Miller,jamesclark@example.com,(370)474-9025x8124,580566580479,2025-08-30 +Resort Hotel,0,4,2017,March,12,18,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,A,I,1,No Deposit,11.0,331.0,0,Transient-Party,30.19,1,1,Check-Out,Robert Jackson,martinezconnie@example.org,463-400-9960x493,3512189856165598,2025-06-09 +Resort Hotel,0,153,2017,July,28,9,4,10,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,E,E,1,No Deposit,90.0,179.0,0,Transient,110.05,0,2,Check-Out,Margaret Lowe,maria14@example.net,454.350.6688x7075,2704920148442993,2026-03-19 +Resort Hotel,0,17,2017,December,50,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,66.75,0,1,Check-Out,Tracy Smith,qrodgers@example.org,687.615.6163x441,4791647101486456291,2025-03-02 +City Hotel,1,51,2017,June,26,22,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,61,Transient,128.77,0,1,Canceled,Kevin Stokes,garywillis@example.net,3537318944,180019007721113,2024-04-15 +Resort Hotel,0,270,2017,November,45,7,3,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,304.0,179.0,0,Transient-Party,48.04,0,1,Check-Out,Ashley Morris,briangoodwin@example.net,912-315-2116x5582,4652948851082902,2024-09-09 +Resort Hotel,1,79,2017,May,21,21,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,79.29,0,0,Canceled,Karen Hernandez,alanturner@example.com,+1-460-302-8476x12476,180035291969820,2024-09-29 +City Hotel,0,24,2017,February,9,27,0,2,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,68.0,0,Transient,107.38,0,0,Check-Out,Larry Crawford,aliciaparker@example.org,786-368-6602x14626,060409882747,2026-02-27 +City Hotel,0,2,2017,November,48,28,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,1,No Deposit,15.0,225.0,0,Transient-Party,54.53,0,0,Check-Out,Joshua Lopez,james58@example.com,895.939.1191x1242,6526530225903069,2025-03-03 +City Hotel,0,49,2017,September,40,30,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,115.72,0,1,Check-Out,Tina Patel,davidmccoy@example.net,(901)215-3584x05911,4665465610190,2026-03-05 +Resort Hotel,0,170,2017,August,33,15,4,5,2,0.0,0,HB,CN,Direct,Direct,0,0,0,D,E,1,No Deposit,247.0,179.0,0,Transient,227.98,1,2,Check-Out,Thomas Sellers,christopher80@example.net,4097587419,4036732590401,2024-08-29 +City Hotel,0,209,2017,October,41,9,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,74.0,179.0,0,Transient-Party,88.0,0,0,Check-Out,Donna Mejia,cwilson@example.net,253-857-3132,180092838414950,2024-07-23 +City Hotel,1,93,2017,August,31,2,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,208.55,0,1,Canceled,Travis Hughes,elliottamanda@example.com,788-383-4894x46753,6574271619878911,2025-11-06 +City Hotel,0,42,2017,February,5,1,1,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.09,0,0,Check-Out,Mr. Kenneth Ashley,stacey17@example.org,(341)518-0927x720,6586125196767267,2024-09-26 +Resort Hotel,1,121,2017,December,50,13,0,2,1,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,50.44,0,0,Canceled,Tyler Roy,theresaphillips@example.org,+1-533-769-9160x5303,346861846802740,2024-11-06 +Resort Hotel,1,94,2017,June,26,28,1,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,131.96,0,0,No-Show,Heather Davis,david38@example.com,639.672.6713x42500,30030653767294,2024-06-23 +City Hotel,0,23,2017,April,17,20,2,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,188.86,0,2,Check-Out,Angela Wilson,gonzalesdawn@example.com,001-674-362-5628x6709,378194732174524,2025-11-13 +Resort Hotel,1,414,2017,May,18,1,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient-Party,97.0,0,0,Canceled,Kelly Williams,calvin39@example.com,(456)546-5898x757,6011371605341659,2025-01-30 +City Hotel,0,124,2017,January,3,14,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,75,Transient,103.36,0,1,Check-Out,Heather Williams,richardrodgers@example.net,001-486-604-9148,6588305473073898,2025-04-30 +City Hotel,0,9,2017,September,36,5,1,0,1,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,84.0,224.0,0,Transient,85.59,0,0,Check-Out,Catherine Nelson,gmiddleton@example.net,506.203.1624x48705,36422199716626,2025-06-11 +City Hotel,0,216,2017,June,25,15,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,110.49,0,1,Check-Out,Catherine Gould,lisa34@example.net,001-364-390-3272x69269,3504987248421409,2026-01-14 +City Hotel,0,13,2017,January,2,3,1,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,116.69,0,1,Check-Out,Stacy Bailey,frank58@example.com,+1-521-707-9181x231,3557005860253806,2025-07-29 +City Hotel,0,2,2017,April,15,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,2,No Deposit,16.0,45.0,0,Transient,106.5,0,0,Check-Out,Anthony Hall,oblair@example.org,001-416-589-3711x34120,213184830185463,2025-03-22 +Resort Hotel,1,195,2017,June,26,27,3,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,114.35,0,0,Canceled,Charles Gonzalez,justin12@example.com,965-628-3607,2237574949184548,2025-05-12 +City Hotel,1,15,2017,October,41,11,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.81,0,0,Canceled,Nicholas Hernandez,tony84@example.org,525-523-2825x7636,3524081473641687,2025-01-09 +City Hotel,0,1,2017,February,9,26,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,C,1,No Deposit,13.0,227.0,0,Transient-Party,36.91,0,0,Check-Out,Amy Hunter,smithgrace@example.net,4046150872,180035666788607,2025-03-18 +Resort Hotel,0,1,2017,January,3,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,57.61,1,0,Check-Out,Amanda Hill,heather73@example.com,001-405-737-9685x93775,2264506893005739,2025-08-18 +City Hotel,0,16,2017,October,41,8,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.18,0,2,Check-Out,Tracy Morales,markwhite@example.com,001-339-675-2643x98449,343672218078220,2024-05-15 +City Hotel,0,39,2017,May,19,4,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,101.01,0,2,Check-Out,Haley Cowan,cheryl95@example.net,+1-669-659-0200x615,6547005523061436,2025-05-24 +City Hotel,0,90,2017,July,30,25,2,3,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,21,Transient-Party,89.63,0,0,Check-Out,Samuel Russell,msexton@example.com,424.899.6266x0855,4189002626495720382,2024-11-30 +Resort Hotel,0,35,2017,December,49,3,2,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,138.98,1,1,Check-Out,Bryan Castro,hwalsh@example.org,840.669.9690x362,30040163170863,2024-10-02 +City Hotel,0,67,2017,March,10,8,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.74,0,1,Check-Out,Stephen Smith,nsmith@example.com,+1-642-512-6933x663,4609567073040581,2025-09-05 +City Hotel,0,342,2017,September,39,29,2,5,2,1.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,29.0,179.0,0,Transient-Party,82.46,0,0,Check-Out,Margaret Smith,juliadalton@example.org,3978203221,2265751388850616,2026-01-07 +City Hotel,1,345,2017,October,40,3,2,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,99.63,0,0,Canceled,Dennis Thompson,paul46@example.net,969.765.2366,38629286041167,2026-02-27 +City Hotel,1,102,2017,August,31,4,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Canceled,Michael Taylor,ewells@example.com,001-809-513-6889x212,630475042192,2024-09-14 +Resort Hotel,0,23,2017,June,23,5,2,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,128.14,0,3,Check-Out,Laura Cox,arobbins@example.org,308.705.7984x9258,2582159616310484,2024-04-02 +City Hotel,0,89,2017,June,26,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.01,0,1,Check-Out,Ricky Reid,sanchezcharles@example.net,411-804-6363x0818,4225769501568399,2025-08-06 +City Hotel,1,374,2017,June,23,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,93.42,0,0,Canceled,Melissa Nguyen DVM,darrellgarcia@example.org,992.610.0852,6594144440453061,2024-10-04 +City Hotel,0,11,2017,April,17,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,128.0,179.0,0,Transient,100.32,0,1,Check-Out,Renee Farmer,jessica42@example.org,210.677.0609x88198,3504294197172335,2024-06-19 +Resort Hotel,1,47,2017,March,11,17,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,45.3,0,1,Canceled,Tracy Woodward,kmoss@example.com,285.865.8755x34780,213196934203034,2025-07-24 +Resort Hotel,0,18,2017,April,14,1,0,2,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,88.02,1,1,Check-Out,Jason Waters,byrdscott@example.org,434.997.1596x658,4140844239958683,2025-02-21 +City Hotel,0,150,2017,May,20,14,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.16,0,1,Check-Out,Anthony James DVM,ponceadrian@example.com,001-352-889-2885x56876,372918535883956,2024-03-27 +City Hotel,1,71,2017,April,16,18,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,150.0,179.0,0,Transient,141.73,0,0,Canceled,Heidi Torres,haynesjennifer@example.org,438.305.1050x912,4762438091843534,2026-01-27 +Resort Hotel,0,1,2017,August,32,9,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,243.0,179.0,0,Transient,57.59,0,1,Check-Out,Colleen Rivera,ryanfoster@example.com,(888)686-0895,3532174176155657,2024-10-27 +City Hotel,1,93,2017,March,13,26,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,2,No Deposit,12.0,179.0,0,Transient,93.51,0,3,Canceled,James Patterson,ifoster@example.com,800.548.5630x2011,3553778521622478,2024-09-14 +City Hotel,0,0,2017,March,9,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,74.0,0,Transient,89.97,1,1,Check-Out,Kimberly Carson,romerochristina@example.com,3022086822,4090077089469708109,2025-09-18 +City Hotel,1,109,2017,October,41,12,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,102.32,0,2,Canceled,Shane Gonzalez,andrea83@example.net,001-636-852-4339,376962972083858,2024-08-13 +Resort Hotel,0,151,2017,July,29,19,4,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,119.0,0,1,Check-Out,Debra Gonzalez,crusso@example.org,803-828-4841x5965,6550759664074186,2025-03-04 +City Hotel,1,89,2017,June,25,18,0,5,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,A,A,0,No Deposit,11.0,190.0,0,Transient,112.14,0,0,Canceled,Patrick Perez,cristina84@example.com,(699)865-2516,4972520725576881,2024-04-22 +City Hotel,0,92,2017,April,15,10,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,75,Transient-Party,110.65,0,0,Check-Out,Heather Payne,stephaniecrawford@example.net,+1-700-227-6377,30246429644787,2026-03-26 +Resort Hotel,0,191,2017,July,27,8,2,1,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,82.0,179.0,0,Transient-Party,193.16,0,1,Check-Out,Christopher Butler,srosario@example.org,(634)783-3602x78896,6522099407928868,2025-02-04 +City Hotel,0,2,2017,July,27,8,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.09,0,1,Check-Out,Jeffrey Myers V,qcollins@example.com,(371)466-7063,3553772030278294,2024-03-30 +City Hotel,0,26,2017,June,24,11,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,9.0,179.0,0,Transient,231.84,0,2,Check-Out,Christian Valencia,hebertsusan@example.org,371.865.9084,4156266024287121,2025-01-16 +City Hotel,0,283,2017,September,36,7,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.87,0,1,Check-Out,Kaitlyn Warren,taylordavid@example.net,+1-429-283-1984x703,675979507703,2024-07-31 +Resort Hotel,0,2,2017,January,2,11,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,10.0,72.0,0,Group,55.25,0,2,Check-Out,Jordan Lynch,linda88@example.com,751.614.2107x681,4164418439328061,2024-11-05 +Resort Hotel,0,48,2017,July,29,18,2,5,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,154.54,0,0,Check-Out,Raymond Santos,yatesjamie@example.org,903.202.9135x20823,5266134572847742,2024-12-21 +City Hotel,0,93,2017,July,31,30,1,7,2,0.0,0,FB,CHE,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,111.1,0,0,Canceled,Lisa Robinson,ericksonteresa@example.com,586-684-1745x05376,3579606256962894,2026-01-13 +City Hotel,1,230,2017,July,27,6,1,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,85.44,0,1,No-Show,Darlene Sanchez,williamsbethany@example.net,001-942-620-4979,2250594350961343,2025-10-21 +City Hotel,1,3,2017,August,34,19,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,123.44,0,1,Canceled,Jessica Harper,enguyen@example.org,440.436.8117x63186,30193416915806,2024-06-18 +City Hotel,1,316,2017,October,41,11,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,63.38,0,0,Canceled,Joseph Kelly,juliebooker@example.com,(714)963-8504,6562987519176635,2025-07-21 +City Hotel,1,45,2017,November,47,20,2,2,1,0.0,0,HB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.42,0,0,Canceled,Rachel Flores,brad71@example.net,001-905-542-3861x7939,4770272580663586,2026-02-08 +City Hotel,1,152,2017,August,33,12,2,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,244.0,0,0,Canceled,Zachary Johnson,kmurphy@example.com,(605)607-3944x41130,4802799515146131,2025-06-12 +City Hotel,0,11,2017,February,9,28,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,63.26,0,1,Check-Out,Derrick Ford,ble@example.net,(226)996-7438x1681,4531833690003722,2026-01-12 +City Hotel,1,353,2017,October,41,11,0,3,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,83.03,0,0,Canceled,Alejandra Ellis,lisafranklin@example.org,222.248.5642x01493,4583071886500683,2025-12-13 +City Hotel,1,157,2017,July,28,15,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,108.27,0,0,Canceled,Thomas Chang,adrianbriggs@example.com,001-976-947-1054x0939,6011999958357359,2026-01-02 +City Hotel,1,51,2017,August,34,22,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.91,0,0,Canceled,Latoya Terry,brittanysanders@example.com,(513)705-1046,3561263244269113,2024-11-19 +Resort Hotel,0,1,2017,March,12,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,53.4,0,1,Check-Out,Thomas Burns,peterfritz@example.com,691-830-4072,4322314434228639,2025-10-02 +City Hotel,0,1,2017,January,2,2,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,12.0,179.0,0,Transient-Party,42.61,0,0,Check-Out,William Edwards,amy13@example.com,768.428.6471,3511666787393101,2024-11-07 +City Hotel,0,31,2017,April,15,12,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,87.64,0,1,Check-Out,Tammy Estrada,zjames@example.com,711.364.5520,6011100091678476,2025-11-21 +Resort Hotel,0,59,2017,April,16,17,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.09,0,1,Check-Out,Abigail Hart,adam12@example.net,226.661.9984,4237438276944971,2025-02-17 +City Hotel,0,0,2017,August,31,5,2,1,3,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient-Party,119.81,0,1,Check-Out,Javier Rogers,davisjohn@example.org,984-963-6984x1022,4274438684828,2024-10-06 +City Hotel,1,158,2017,March,11,12,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,96.24,0,0,Canceled,Ashley Johnson MD,justinlopez@example.net,437.459.1884,4489369395620,2024-12-29 +City Hotel,0,58,2017,July,28,14,2,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.36,0,2,Check-Out,Abigail Riddle,powellmaria@example.org,001-464-600-1718,566763589702,2025-06-10 +City Hotel,1,11,2017,June,24,12,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,D,E,1,No Deposit,14.0,179.0,0,Transient,3.13,0,1,No-Show,Cody Hart,kennethhall@example.org,(975)258-0005x63125,345277121593469,2024-10-08 +Resort Hotel,0,288,2017,September,36,5,2,0,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,L,C,0,No Deposit,13.0,179.0,0,Transient,3.53,0,0,Check-Out,Greg Dyer,uknight@example.com,(284)571-0714x47650,4004213880481499198,2026-02-08 +Resort Hotel,0,49,2017,October,41,13,1,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,44.01,0,0,Check-Out,John Baker,gabrieldavis@example.org,7485013794,3541911741620908,2026-02-13 +City Hotel,0,78,2017,May,20,19,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient,83.63,0,2,Check-Out,Megan Hall,sandracurry@example.org,(828)916-6412,4971769384577,2025-02-16 +Resort Hotel,1,241,2017,July,27,4,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.04,0,1,Canceled,John Garrison,andrearobinson@example.org,(704)649-8240x49653,568683987446,2024-07-28 +City Hotel,1,14,2017,February,8,21,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,129.8,0,1,Canceled,Chelsea Salinas,dgilbert@example.org,001-729-467-0963,213199918260376,2025-12-28 +City Hotel,0,96,2017,March,13,27,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,103.23,0,0,Check-Out,Ashlee Thomas,brucewhite@example.net,001-307-778-0387,4430198288520087956,2026-03-18 +City Hotel,1,315,2017,March,10,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,98.7,0,0,Canceled,Laura Hill,nataliemurray@example.net,+1-389-278-6722x559,4385599542308083,2025-05-08 +Resort Hotel,1,245,2017,August,32,4,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,209.19,0,1,Canceled,Jennifer Lopez,colinlong@example.net,750-525-0679x11525,3511299819410063,2026-01-24 +Resort Hotel,0,9,2017,December,51,23,2,4,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,50.59,0,1,Check-Out,Dennis Arnold,nicolemiller@example.net,+1-951-525-3092x45594,2231731807420796,2024-08-10 +Resort Hotel,0,11,2017,January,4,24,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,73.0,0,Transient,61.5,1,0,Check-Out,Jamie White,hardingchristopher@example.com,001-510-991-8375x16211,38625061995148,2024-12-18 +Resort Hotel,1,199,2017,June,26,24,2,5,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,A,1,No Deposit,246.0,179.0,0,Transient,116.73,0,0,Canceled,Ashley Williams,rfrank@example.net,(562)860-7296x4720,2235910224102817,2025-09-30 +City Hotel,0,414,2017,August,33,16,1,3,1,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,1,No Deposit,13.0,232.0,0,Transient-Party,90.6,0,2,Check-Out,Danny Lee,rebecca15@example.org,+1-747-619-5525x21736,341577864101956,2026-01-01 +City Hotel,1,51,2017,September,39,27,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,147.53,0,0,Canceled,Hayley Carter,michaelkelley@example.net,+1-574-832-1602,4204761055959236,2024-04-24 +Resort Hotel,0,41,2017,July,27,8,0,2,3,2.0,0,BB,,Online TA,Direct,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,214.18,0,3,Check-Out,Debbie Sherman,baldwinmartha@example.org,618-636-6656x7341,180045275561246,2025-07-14 +City Hotel,0,99,2017,April,17,27,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,30.0,179.0,0,Transient,81.62,0,2,Check-Out,Rebecca Colon,andersonjonathan@example.org,001-486-433-9491x009,3586935596392582,2025-07-24 +Resort Hotel,0,4,2017,July,30,26,3,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,75,Transient,137.2,0,1,Check-Out,Lauren Nguyen,fbuchanan@example.com,8995431160,2277457430124929,2024-06-14 +City Hotel,0,1,2017,September,37,13,1,6,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,179.0,179.0,0,Transient,165.33,1,0,Check-Out,Max Leblanc,hlawson@example.com,+1-305-221-4584,2614006795648113,2025-07-29 +City Hotel,1,41,2017,February,7,16,2,3,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.71,0,0,Canceled,Hunter Campos,hernandezamanda@example.net,556-409-6066x50769,3534870900616934,2025-01-16 +Resort Hotel,0,0,2017,August,32,6,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,252.0,179.0,0,Transient,161.29,1,0,No-Show,Jesse Johnson,obrienbrittany@example.org,001-668-247-3640x39787,4441767129697,2025-11-14 +City Hotel,0,11,2017,June,26,24,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,191.69,0,1,Check-Out,Brandy Lopez,yjackson@example.net,(873)690-3864,2408729436153884,2025-03-03 +Resort Hotel,1,102,2017,December,49,5,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,2.0,179.0,0,Transient-Party,62.62,0,0,Canceled,Jennifer Gonzalez,revans@example.net,(676)670-0402x06204,371868845934927,2025-02-12 +City Hotel,0,31,2017,May,21,23,1,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,157.53,0,1,Check-Out,James Cuevas,michaelsmith@example.net,386-935-7889,342969605347973,2024-08-30 +City Hotel,1,114,2017,December,52,25,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,39,Transient,97.44,0,0,No-Show,Brandon Stewart,lthomas@example.com,622-607-9785x85343,4909060741434,2026-02-13 +City Hotel,0,4,2017,October,40,7,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,B,1,No Deposit,14.0,221.0,0,Transient-Party,219.04,0,0,Check-Out,Victor Ball,maryjohnson@example.net,+1-292-558-3847x52433,3508910285894656,2026-01-24 +City Hotel,0,3,2017,March,13,27,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,1,F,F,0,No Deposit,16.0,179.0,0,Transient,3.67,0,2,Check-Out,Nicole Juarez,ojenkins@example.org,+1-486-378-3719x1658,503834272224,2025-07-27 +City Hotel,0,13,2017,August,35,27,0,2,2,2.0,0,BB,,Direct,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,227.73,0,0,Check-Out,Brian Mullins,cobbgary@example.org,001-748-649-5595x66665,6011129800708241,2025-09-01 +City Hotel,0,112,2017,August,35,28,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,B,1,No Deposit,15.0,179.0,0,Transient,128.28,0,0,Check-Out,David Wilson,david44@example.net,001-228-466-4000,503821852970,2025-02-28 +City Hotel,1,155,2017,August,35,29,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,68.0,179.0,0,Transient,86.5,0,0,Canceled,Mary Myers,david78@example.net,474-659-3198x732,180057550136438,2024-07-05 +City Hotel,0,31,2017,May,19,5,2,3,3,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,234.43,0,1,Check-Out,Marc Brown,scott01@example.org,+1-546-206-2938,3527103765383112,2025-10-07 +Resort Hotel,0,13,2017,December,51,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Group,106.75,0,1,Check-Out,Angela Collier,kjuarez@example.com,+1-822-354-8284x45904,3521999426446305,2024-12-27 +Resort Hotel,1,100,2017,December,49,3,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,103.09,0,0,Canceled,Richard Young,hbaker@example.com,899.892.0155x38209,676228606676,2024-07-05 +City Hotel,0,392,2017,May,21,20,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,110.03,0,1,Check-Out,Gabriella Jones,hgamble@example.com,001-820-300-6329x0111,4840090005161515,2026-01-02 +City Hotel,1,96,2017,October,44,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,62.32,0,0,Canceled,Teresa Collins,woodemily@example.net,+1-926-381-5005,3562438890959097,2026-03-02 +City Hotel,1,15,2017,September,38,20,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,167.68,0,0,Canceled,Gary Gilbert,hobbschristina@example.com,001-386-402-8068x6078,2237188763152299,2025-09-15 +Resort Hotel,0,11,2017,October,43,24,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,56.35,0,1,Check-Out,Brenda Nicholson,millercynthia@example.com,560.283.9682x968,2299795629408403,2025-11-07 +City Hotel,0,4,2017,February,8,21,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,63.9,0,1,Check-Out,Michele Barnes,estradapaula@example.net,506.550.9427,4381960268140031,2025-12-15 +Resort Hotel,0,155,2017,July,29,14,2,5,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,133.0,179.0,0,Transient-Party,88.08,0,0,Check-Out,Robert Meza,ferrellfernando@example.com,+1-561-570-6160x0091,3511559021991931,2024-06-19 +City Hotel,1,96,2017,May,19,8,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.38,0,2,Canceled,Cindy Harrington,shelleywells@example.org,+1-474-407-7982x53270,213176539177189,2024-09-15 +City Hotel,1,414,2017,September,36,7,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,63.26,0,0,Canceled,Kiara Hawkins,timothydominguez@example.org,001-453-326-2498x933,060490294711,2025-09-10 +Resort Hotel,1,45,2017,July,27,3,1,3,2,1.0,0,BB,BRA,Groups,TA/TO,0,0,0,C,I,0,No Deposit,244.0,179.0,0,Transient,62.52,1,0,No-Show,Elizabeth Cooper,garymitchell@example.org,+1-255-933-7312,2257079892113523,2025-11-16 +Resort Hotel,0,18,2017,May,20,18,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,113.97,0,0,Check-Out,Mary Santos,gabrielbenson@example.org,735-862-5477x514,377589011415905,2024-12-08 +Resort Hotel,1,53,2017,December,49,6,2,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,78.41,0,0,Canceled,Jacob Cabrera,dsloan@example.net,776-832-3451x6166,4609422877351,2025-02-14 +Resort Hotel,1,96,2017,July,28,12,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,Non Refund,240.0,179.0,0,Transient,183.28,0,0,Canceled,Jacob Trevino,ericksonpaul@example.org,630-812-0664,6549621908256447,2025-07-14 +City Hotel,0,116,2017,October,42,15,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,2.0,222.0,0,Transient-Party,64.14,0,0,Check-Out,Christopher Bowen,youngjoseph@example.org,001-437-303-0348x37985,3544769619579409,2025-06-05 +City Hotel,1,11,2017,February,9,28,0,7,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,331.0,0,Transient,104.62,0,0,Canceled,David Ruiz,tking@example.org,001-731-906-6929x9954,3592430833001750,2026-03-02 +Resort Hotel,0,56,2017,September,36,9,1,5,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,61.81,0,3,Check-Out,Jessica Owens,jball@example.org,802.291.5759x416,3522081064342630,2026-03-26 +Resort Hotel,1,9,2017,November,46,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,331.0,0,Transient,51.56,0,0,Canceled,Amy Higgins,rebeccafox@example.org,001-931-241-3037x970,2268865425565727,2025-11-24 +Resort Hotel,0,44,2017,August,33,13,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,89.07,0,1,Check-Out,Alexander Mitchell,ybrown@example.com,(813)456-6144x94965,3535978624082298,2025-03-19 +City Hotel,0,0,2017,March,12,23,1,0,1,0.0,0,BB,PRT,Undefined,Corporate,1,0,0,A,B,0,No Deposit,16.0,331.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Steven Boyd,christinalopez@example.net,223.375.4158,3513503043361952,2025-03-21 +Resort Hotel,0,64,2017,May,19,5,1,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,135.67,0,3,Check-Out,Maria Wright,qschultz@example.org,522-623-5507x74893,6570794830887373,2025-08-21 +City Hotel,0,47,2017,March,12,22,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,29.0,179.0,0,Transient,82.19,0,0,Check-Out,Jacqueline Herman,samuellopez@example.com,277.601.0629,4548579545319585989,2024-11-20 +Resort Hotel,1,272,2017,June,26,25,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,64,Transient-Party,87.58,0,1,Canceled,Andrew Delgado,nmoore@example.org,+1-348-476-3742x643,4610444910360977,2026-02-08 +City Hotel,1,0,2017,July,28,12,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,137.01,0,0,Canceled,William Webb,jcooper@example.org,495.229.6882,676106073619,2024-09-07 +Resort Hotel,0,17,2017,May,19,10,4,7,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,154.85,0,1,Check-Out,Marvin Flores,hcastillo@example.net,001-302-944-1014x591,180001845367580,2025-05-17 +City Hotel,0,92,2017,June,26,28,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.64,0,1,Check-Out,Michael Wilson,omartinez@example.net,(369)347-1177x17102,3513202141011235,2025-04-26 +Resort Hotel,1,144,2017,July,30,26,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,132.84,0,1,Canceled,Julie Martinez,rrogers@example.net,(728)211-2835,4526189144588786524,2026-01-13 +Resort Hotel,1,15,2017,April,18,30,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,15.0,217.0,0,Transient,38.51,0,0,Canceled,Toni Lamb,joseguzman@example.org,001-252-407-3208,6011967626816114,2026-01-07 +City Hotel,0,39,2017,May,22,30,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Contract,143.52,0,1,Check-Out,Cindy Martin,davidryan@example.net,001-446-653-6886x53445,180081375504570,2025-08-09 +City Hotel,1,114,2017,November,48,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,Non Refund,1.0,179.0,63,Transient,104.27,0,0,Canceled,Jeffery Jennings,adamskeith@example.com,+1-827-828-0221x4876,2296467284395860,2026-01-11 +Resort Hotel,1,18,2017,November,46,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,85.58,0,2,Canceled,Anthony Gordon,speterson@example.com,912.599.6792x1299,4730489193043,2024-11-05 +City Hotel,1,48,2017,April,17,23,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.38,0,0,Canceled,Luke Moore,sydneyprice@example.com,(874)464-3535x559,2682615888233778,2025-11-09 +Resort Hotel,0,96,2017,September,36,6,0,6,2,0.0,0,HB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,120.3,1,0,Check-Out,Danielle Bradley,rebeccabrown@example.net,+1-298-332-4090x589,6561070225471391,2025-09-21 +Resort Hotel,0,32,2017,November,48,26,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,88.56,0,2,Check-Out,Frank Robinson,tracey61@example.net,001-670-563-0671x3250,4279311668566,2025-04-22 +Resort Hotel,0,134,2017,November,45,5,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,241.0,179.0,0,Transient,44.99,1,1,Check-Out,Richard Wilson,jasminemeadows@example.com,341-662-5233,676339296961,2024-06-27 +Resort Hotel,0,30,2017,December,48,1,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,49.89,0,1,Check-Out,Chad Palmer,timothy91@example.net,+1-754-543-4826x28015,675916904120,2025-05-28 +Resort Hotel,0,137,2017,September,39,26,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,136.0,179.0,0,Contract,51.14,0,2,Check-Out,Aaron Schneider,rogermaldonado@example.com,(842)781-2842,675959099051,2025-12-05 +City Hotel,1,91,2017,May,21,23,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,227.77,0,1,Canceled,Kurt Montgomery,davisjeffrey@example.com,460-711-3128,4707261799450345738,2024-06-10 +Resort Hotel,0,6,2017,March,13,25,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,48.3,0,1,Check-Out,Jacqueline Gonzalez,lisawalker@example.org,001-978-334-6908,4000964285269881,2026-01-13 +Resort Hotel,1,300,2017,January,2,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,85.0,179.0,0,Transient,41.95,0,0,Canceled,Evan Smith,dawn65@example.net,5808182745,4919777965926966625,2025-10-13 +Resort Hotel,1,64,2017,July,29,13,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,208.51,0,2,Check-Out,Abigail Parsons MD,ericmejia@example.com,3138594615,4745901414298,2025-11-08 +City Hotel,0,94,2017,December,49,2,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,146.19,0,0,Check-Out,Dana Snyder,angelamurray@example.com,(361)285-7721x9911,180068783733297,2026-03-22 +Resort Hotel,0,16,2017,September,36,8,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,50.29,0,1,Check-Out,Stacy Garner,michaelfoley@example.net,690.256.6255,502081128964,2025-10-09 +City Hotel,1,38,2017,July,27,2,1,2,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,235.57,0,0,Canceled,Gregory Brown,william71@example.net,(917)296-2828,213195020328804,2025-08-09 +City Hotel,0,0,2017,February,8,19,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,91.39,0,2,Canceled,Kathryn Chavez,ipeters@example.org,648-705-3564,213188026495362,2024-12-06 +City Hotel,0,3,2017,March,13,25,1,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,80.66,0,1,Check-Out,David Maxwell,jeremygomez@example.com,001-704-958-1949x05067,345333402676117,2024-09-13 +City Hotel,0,115,2017,March,13,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.04,1,1,Check-Out,Larry Higgins,hgonzalez@example.net,001-564-830-8776,676289023241,2026-02-16 +City Hotel,1,301,2017,November,47,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,16,Transient,118.68,0,0,Canceled,Jason Norris,belinda34@example.org,+1-642-868-4085x8859,36413141687932,2025-05-27 +Resort Hotel,0,14,2017,March,13,24,0,3,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,1,No Deposit,12.0,210.0,0,Transient-Party,102.06,0,0,Check-Out,Elizabeth Jones,kennethwilkins@example.com,001-610-685-8112x49585,3546722890051968,2024-11-26 +City Hotel,1,46,2017,October,43,21,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,102.29,0,0,Canceled,Brianna Mccormick,hartcristian@example.com,3288084736,501826519354,2024-10-29 +Resort Hotel,1,25,2017,August,32,9,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,160.17,0,2,Canceled,Anne Jones,sstewart@example.org,888-781-4740,6011149420879420,2025-04-10 +City Hotel,0,89,2017,October,40,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,73.11,0,1,Check-Out,Joshua Anderson,jason74@example.com,+1-368-770-2275x30095,4567738508879741,2024-08-14 +City Hotel,0,213,2017,August,32,12,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,29.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,Anthony Christensen,karen55@example.org,(825)526-6338,213159553664258,2024-07-08 +City Hotel,1,154,2017,March,12,22,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,42,Transient-Party,90.79,0,1,No-Show,David Brooks,silvadouglas@example.com,(254)772-2713x596,676152570716,2026-03-15 +Resort Hotel,0,33,2017,July,27,3,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,55.64,1,1,Check-Out,Eric Hernandez,pgarcia@example.net,001-682-616-5402,4121172848879007668,2024-10-27 +City Hotel,1,94,2017,December,52,25,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,Non Refund,2.0,179.0,63,Transient,60.89,0,0,Canceled,Joseph Payne,colonjeanne@example.com,+1-392-968-8569x04674,4472047676648910734,2024-04-02 +City Hotel,0,3,2017,July,28,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,86.68,0,0,Check-Out,David Johnson,jonathanhill@example.net,741-480-6053,4685660340364735469,2025-05-12 +Resort Hotel,0,29,2017,March,13,23,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,245.0,179.0,0,Transient,62.6,0,2,Check-Out,Christina Simon,amandarangel@example.net,859.536.7240x1135,676211386906,2025-05-28 +Resort Hotel,0,16,2017,August,33,15,0,1,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,240.0,179.0,0,Transient-Party,163.77,0,1,Check-Out,Megan Mills,masonlawson@example.net,(777)266-5751,6011919628227725,2024-05-19 +City Hotel,1,37,2017,February,9,27,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.28,0,2,Canceled,Mandy Walker,kevin55@example.org,884.642.2963x00011,30154324382026,2024-05-16 +Resort Hotel,0,23,2017,August,33,13,0,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,H,A,1,No Deposit,240.0,179.0,0,Transient,140.35,0,1,Check-Out,Cynthia Cunningham,stephanie15@example.net,4625256424,36799753161202,2024-11-27 +Resort Hotel,1,17,2017,November,47,25,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,90.17,0,0,Canceled,Angelica Mays,ybrewer@example.org,616.927.4302x366,4821539804106710,2024-08-03 +City Hotel,1,212,2017,June,26,22,2,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,119.19,0,1,Canceled,David James,william06@example.org,243.655.5080x0920,4830661605591624,2026-01-24 +Resort Hotel,1,2,2017,August,32,6,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,198.69,0,0,Check-Out,Paul Watkins,qmcdonald@example.net,581.698.8360x26863,4443792602774773330,2025-01-06 +City Hotel,1,164,2017,June,27,29,0,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,134.97,0,0,Canceled,John Olson,nicoleerickson@example.net,996-855-0899x91116,30272914743744,2025-08-24 +City Hotel,0,0,2017,January,2,3,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,106.38,1,1,Check-Out,Alexander Anderson,shellyanderson@example.org,887.930.5903x13729,4754777091909,2025-09-05 +City Hotel,0,107,2017,May,18,4,1,0,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.58,0,1,Check-Out,Mitchell Deleon,adrianmacias@example.net,988.873.8257x83087,4651475047777881,2025-05-08 +Resort Hotel,0,0,2017,July,30,28,2,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,209.19,0,0,Check-Out,Susan Bryant,evansraymond@example.net,(532)428-4050x7978,6011544840140298,2024-07-06 +Resort Hotel,0,82,2017,February,9,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,36.81,0,0,Check-Out,Derrick Diaz,madison89@example.com,877-392-6122x80034,30369548912289,2024-06-16 +City Hotel,0,98,2017,January,4,26,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,221.01,0,0,Check-Out,Rebecca Lambert,montgomerynicole@example.org,849-775-4745,3513147360621745,2024-04-25 +Resort Hotel,0,56,2017,September,37,14,4,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,101.85,0,1,Check-Out,Erica White,troy47@example.net,637.597.4373,3550113794845486,2024-10-28 +Resort Hotel,0,0,2017,October,41,11,2,2,2,2.0,0,HB,GBR,Direct,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,209.63,0,0,Check-Out,Joseph Miller,hknight@example.org,545.586.1446,30271621166694,2024-05-13 +City Hotel,1,1,2017,August,34,19,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,60.55,0,1,Canceled,Richard Molina,bdixon@example.org,(868)848-1612x3928,3523811996762540,2024-04-26 +Resort Hotel,1,46,2017,March,13,27,4,6,2,0.0,0,BB,GBR,Online TA,GDS,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,97.16,0,2,Canceled,Rebecca Torres,marcus83@example.org,621.304.6731,3516794211003735,2025-04-06 +City Hotel,1,17,2017,February,8,23,2,2,2,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.6,0,1,Canceled,Jack Jacobs,austin17@example.org,429-525-4156,4693938658873760,2025-04-13 +City Hotel,1,216,2017,August,34,23,1,4,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,137.45,0,0,Canceled,James Morgan,timothy70@example.org,001-911-327-8176x855,3590797161461539,2025-07-27 +Resort Hotel,0,163,2017,November,45,9,2,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,82.04,0,1,Check-Out,Lindsay Chavez,bridgetbaker@example.net,(970)998-2130,371070240933246,2024-09-25 +City Hotel,0,385,2017,September,39,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,169.0,179.0,0,Transient-Party,102.21,0,1,Canceled,Mr. Jeremy Cohen Jr.,manuelhall@example.org,+1-647-891-6659x215,4197119714537746,2025-11-21 +Resort Hotel,0,84,2017,December,50,10,0,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,136.65,0,1,Check-Out,Kathryn Perry,christyburns@example.com,+1-298-744-5803x4538,4264578529321,2026-01-13 +City Hotel,0,1,2017,July,28,10,0,5,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,175.42,0,1,Check-Out,Jeffery Richards,kimjessica@example.com,(726)890-0186,6011834825893494,2025-09-07 +Resort Hotel,0,19,2017,March,14,30,0,1,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,259.0,179.0,0,Transient-Party,88.53,0,1,Check-Out,Chad Morales,karenthompson@example.net,8387736641,4973889280512899,2025-11-23 +City Hotel,1,315,2017,November,46,13,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,122.51,0,0,Canceled,Tammy Alexander,micheal90@example.com,+1-895-217-8843,4749685570751393598,2025-02-18 +Resort Hotel,0,260,2017,July,30,20,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,177.9,0,2,Check-Out,Alexander Cox,baldwinjulie@example.com,492-391-9007x96360,4925191914776969,2025-06-07 +Resort Hotel,0,5,2017,May,20,12,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,47.98,1,1,Check-Out,Brett Stephens,william62@example.org,833-692-1615x06420,30024384075846,2024-10-03 +City Hotel,1,15,2017,June,25,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,132.93,0,0,Canceled,Karen Mitchell,gonzalezpaul@example.com,(251)818-8621x807,345826133350969,2025-01-10 +City Hotel,0,1,2017,July,27,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,73.58,0,1,Check-Out,Carol Taylor DDS,john14@example.com,001-960-924-3721,213191333146462,2025-10-17 +Resort Hotel,0,0,2017,April,16,13,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,E,E,0,No Deposit,12.0,179.0,0,Transient,1.46,0,2,No-Show,Pam Roberts,pjones@example.org,(231)757-7026x12799,676188962093,2025-11-25 +City Hotel,1,25,2017,August,34,20,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,189.83,0,0,No-Show,Benjamin Phillips,reillykenneth@example.org,540.576.6977x23097,630448465561,2024-06-20 +Resort Hotel,0,17,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,12.0,224.0,0,Transient-Party,38.49,0,0,Check-Out,James Snyder,jclark@example.net,6134434382,347939405013237,2025-08-29 +City Hotel,0,53,2017,December,52,28,0,2,2,1.0,0,Undefined,FRA,Groups,Direct,0,0,0,A,E,2,No Deposit,11.0,179.0,0,Transient,86.42,0,1,Check-Out,Daniel Phillips,jonesjamie@example.net,759.824.5864x812,3552139584280681,2026-03-27 +City Hotel,1,165,2017,August,33,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,132.01,0,3,Canceled,Andrea Bryant,jennywillis@example.com,488.839.6859,4984146162483104,2026-02-15 +Resort Hotel,1,53,2017,August,32,6,3,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,237.0,179.0,0,Transient,102.9,0,2,Canceled,Melinda Thompson,maxwell44@example.com,487-850-3712,4664589058539082,2025-09-22 +City Hotel,0,305,2017,October,41,13,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,79.31,0,0,Check-Out,Jade Phillips,smithanthony@example.com,882.611.8785,349108764497708,2024-12-28 +Resort Hotel,0,166,2017,March,13,30,1,0,2,0.0,0,BB,RUS,Groups,Direct,0,0,0,A,A,1,Refundable,11.0,223.0,0,Transient-Party,61.78,0,0,Check-Out,Kyle Mooney,ashort@example.com,950-228-1214x43877,4592021966306,2024-04-02 +City Hotel,0,0,2017,April,16,19,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,94.5,0,0,Check-Out,Christine Leblanc,dominic00@example.org,+1-756-689-5461x2360,30316269263434,2024-12-20 +City Hotel,0,10,2017,October,43,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,227.0,0,Transient-Party,83.54,0,0,Check-Out,Alexander Wright,becky41@example.org,(657)749-0275,30120889929972,2024-12-13 +Resort Hotel,0,242,2017,November,46,11,2,5,2,0.0,0,HB,NOR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,253.0,179.0,0,Contract,132.12,0,1,Check-Out,Joshua Cunningham,david92@example.com,203.342.9234x54642,4616665370114835,2024-11-24 +Resort Hotel,0,0,2017,April,17,23,0,1,2,0.0,0,Undefined,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,51.86,0,1,Check-Out,Stephanie Mcintosh,kristopher84@example.org,609.210.4940,2293976562796592,2025-01-20 +City Hotel,1,388,2017,August,34,22,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.59,0,0,Canceled,Juan Chan,spenceamber@example.com,288-515-9696x80592,3586230899941552,2026-03-12 +City Hotel,1,157,2017,March,12,19,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,61,Transient,94.78,0,0,Canceled,Allen Weaver,justincontreras@example.org,(864)892-1601,3550236925125013,2025-01-19 +Resort Hotel,0,43,2017,August,32,8,2,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Check-Out,Mr. Martin Morales,hayley46@example.com,001-659-948-1431x53407,4370870341055633182,2026-01-15 +Resort Hotel,1,23,2017,July,28,10,3,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,267.0,179.0,0,Transient,135.94,0,0,Canceled,Ryan Cannon,ckoch@example.com,+1-305-673-3249x1680,4654103940474,2026-03-22 +City Hotel,1,386,2017,August,33,11,0,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,201.52,0,0,Canceled,Catherine Crane,ureynolds@example.org,255-879-8990x51373,213132960887499,2025-05-11 +City Hotel,1,59,2017,August,33,13,2,2,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,201.02,0,1,Canceled,Michelle Gould,lynnthomas@example.net,(765)532-3395,5144770208100747,2025-11-30 +City Hotel,0,42,2017,March,13,27,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,77.55,0,1,Check-Out,Mathew Olson,dlee@example.org,4119397241,372123873944029,2025-12-05 +City Hotel,1,9,2017,June,26,25,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,135.74,0,2,Canceled,Gary Walker,salascolleen@example.net,553-716-9081,4065233705429380,2025-02-09 +City Hotel,0,397,2017,July,27,1,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,162.03,0,0,Check-Out,Terry Williams,dawntodd@example.net,+1-665-858-1717x445,4100584604562227,2025-11-08 +City Hotel,0,2,2017,April,18,30,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,213.0,0,Transient,96.05,0,0,Check-Out,Melissa Riley,williamhubbard@example.com,(221)510-5863,4006584254174,2026-01-12 +Resort Hotel,0,106,2017,March,10,3,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,243.0,179.0,0,Transient,42.31,0,2,Check-Out,Jesse Anderson,russellclaudia@example.com,753.740.9363x07443,30182396636334,2024-04-20 +City Hotel,1,408,2017,June,26,28,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,107.55,0,0,Canceled,John Stone,ccurry@example.org,(565)913-4081x069,588568887420,2024-04-10 +Resort Hotel,0,161,2017,April,17,20,1,5,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,D,C,1,No Deposit,16.0,179.0,0,Transient-Party,165.38,0,0,Check-Out,Joshua Griffin,khall@example.com,(444)841-7941x1839,30190270701264,2025-01-26 +City Hotel,0,3,2017,August,32,9,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,149.96,0,0,Check-Out,Virginia Morales,vyang@example.net,001-887-812-3136x4534,4985524882477797,2024-04-27 +City Hotel,0,139,2017,October,40,2,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.87,0,0,Check-Out,Ronald Cook,brandi19@example.com,(825)739-4055x32233,375232900337730,2024-06-21 +Resort Hotel,0,0,2017,May,20,16,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,12.0,179.0,0,Group,81.8,0,0,Check-Out,Louis Tyler,john27@example.org,001-954-677-1192x90222,4650114882199928872,2024-09-14 +City Hotel,0,368,2017,July,29,22,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,103.69,0,0,Check-Out,Mary Wall,robin17@example.org,9924663385,4473142205233224,2025-12-11 +Resort Hotel,1,31,2017,December,2,31,1,6,2,2.0,0,BB,PRT,Online TA,TA/TO,0,1,0,G,G,0,No Deposit,244.0,179.0,0,Transient,144.04,0,0,Canceled,Dustin Mendez,rebeccafritz@example.org,689.845.8027,5256895067929847,2025-05-16 +Resort Hotel,0,5,2017,June,23,2,2,10,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,113.27,0,1,Check-Out,Amy Martin,turnerwhitney@example.com,600-625-1463x0180,377838536614389,2025-02-28 +Resort Hotel,0,172,2017,April,15,9,2,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,20.0,179.0,0,Transient,252.0,0,2,Check-Out,Ashley Martinez,nicholeshaw@example.org,(997)518-3327x3807,4529798155622,2024-04-21 +City Hotel,0,1,2017,July,30,22,0,1,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.65,0,2,Check-Out,Scott Gibbs,pburton@example.net,001-479-277-9550x9378,4467951145369304,2024-06-21 +City Hotel,0,0,2017,July,30,22,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,1,D,D,0,No Deposit,12.0,179.0,0,Transient,3.17,0,1,Check-Out,Heather Rojas DDS,rowekenneth@example.net,(751)252-3176x020,348198891808142,2026-03-14 +Resort Hotel,0,9,2017,April,16,15,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,134.92,0,1,Check-Out,Ashley Shepard,othompson@example.com,627.939.4172,4506168452119379,2025-11-26 +City Hotel,0,0,2017,December,51,23,0,1,1,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Group,87.06,0,2,Check-Out,Jessica Vasquez,penakaren@example.org,557.716.2701x413,4380201960461552,2026-03-24 +City Hotel,0,1,2017,August,34,23,1,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,135.92,0,0,Check-Out,Melinda Rosario,ascott@example.com,(747)971-0676x8813,4544174894703907,2024-10-26 +City Hotel,1,20,2017,August,35,28,0,5,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,249.19,0,0,No-Show,Jennifer Sanchez,pgarcia@example.com,6236231379,6011542629435590,2025-03-24 +City Hotel,0,13,2017,December,49,6,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,85.64,0,0,Check-Out,Christina Davis DDS,cassandrapatel@example.org,5898518785,372437426754390,2024-03-30 +Resort Hotel,0,1,2017,January,3,19,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,313.0,179.0,0,Transient,56.18,0,0,Check-Out,Mrs. Heather Meyers,amanda29@example.net,+1-426-201-9722x693,4298699460941,2025-02-23 +Resort Hotel,0,1,2017,December,49,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,16.0,232.0,0,Transient,46.98,0,1,Check-Out,Nicole Garcia,isaiahwhitaker@example.com,+1-324-432-6056x6804,371195316089340,2025-12-03 +City Hotel,1,107,2017,August,35,29,2,5,2,1.0,0,BB,,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Canceled,Lisa Robinson,davidschwartz@example.com,(242)503-5295,2296123051509494,2025-12-28 +Resort Hotel,1,391,2017,October,43,22,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,86.36,0,0,Canceled,Katie Davis,strongchris@example.org,(324)538-6630,36080478835259,2025-06-05 +Resort Hotel,0,49,2017,September,35,2,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,65.9,0,1,Check-Out,Christine Farrell,patriciareed@example.com,+1-369-547-6884x3612,2225890966873779,2024-10-04 +City Hotel,0,14,2017,March,13,23,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,106.13,0,1,Check-Out,Mariah Eaton,mitchellnicole@example.org,980.836.6380,371679803641523,2024-10-28 +Resort Hotel,0,101,2017,March,10,8,2,7,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,312.0,179.0,0,Transient,83.48,0,1,Check-Out,Joseph Gould,whitebenjamin@example.net,+1-638-378-5922x896,213109359311539,2024-06-09 +Resort Hotel,0,65,2017,October,40,1,1,2,2,0.0,0,FB,CHE,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,75,Transient-Party,78.81,0,0,Check-Out,Ashley Clark,kayla58@example.org,+1-768-281-3203x0496,4305608783950217618,2026-03-20 +Resort Hotel,0,87,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,251.0,179.0,0,Contract,53.72,0,1,Check-Out,Kathryn Simmons,nnunez@example.org,207.871.4320x661,3551245415421914,2024-07-31 +City Hotel,0,2,2017,October,43,21,2,0,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Colin Vega Jr.,alexander18@example.net,2226539050,4443648110351197,2024-04-24 +Resort Hotel,1,252,2017,June,24,10,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient,128.12,0,0,Canceled,Robert Vazquez,dbenson@example.com,001-558-686-4918x0267,4675266562714512,2025-09-09 +City Hotel,0,223,2017,October,41,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,28.0,179.0,0,Contract,45.64,0,1,Check-Out,Bryan Monroe,gpacheco@example.org,(542)750-1763,346380813104618,2025-11-17 +City Hotel,0,324,2017,April,16,16,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,109.27,0,0,Check-Out,Louis Rose,anthony45@example.com,001-204-255-1870x903,343030616416288,2025-08-23 +City Hotel,0,11,2017,September,36,5,2,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,172.67,0,1,Check-Out,Andrew Abbott,mariasellers@example.com,447-723-8623,4846315555137746,2025-02-28 +City Hotel,1,414,2017,July,27,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.05,0,1,Canceled,Lance Brown,joshua06@example.com,+1-891-666-4443x203,4316890178581,2025-03-28 +City Hotel,1,34,2017,May,22,27,2,0,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,81.42,0,0,Canceled,Christopher Howard,rickykelley@example.org,(891)953-9082x734,503822770015,2026-02-16 +City Hotel,1,0,2017,August,35,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,131.53,0,0,Canceled,Jose Cook,kennethbrooks@example.org,814.890.1396x036,2706064976674258,2026-01-02 +Resort Hotel,1,37,2017,March,10,5,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,28.0,179.0,75,Transient,46.89,0,0,Canceled,Michael Mckee,arobbins@example.org,+1-592-997-6087x68229,4076940610617431,2024-07-03 +City Hotel,0,39,2017,October,40,5,2,2,2,0.0,0,BB,IRL,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,44.43,0,2,Check-Out,Cynthia Harper,andrewskara@example.com,001-496-651-3104x206,372247047932584,2026-02-02 +City Hotel,1,140,2017,March,12,17,1,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,81.74,0,0,No-Show,Olivia Martinez,manuel37@example.com,387.985.4161x221,4130361871279492605,2025-07-22 +City Hotel,0,1,2017,September,38,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,83.88,0,1,Check-Out,Mr. Nicholas Munoz,joanna78@example.net,+1-578-696-4400,371473994915684,2026-02-18 +City Hotel,0,9,2017,February,7,16,1,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,78.78,0,0,Check-Out,Thomas Waters,perezjesse@example.org,(654)905-2786,4406942718101053000,2025-04-18 +Resort Hotel,0,61,2017,January,5,28,1,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,125.03,0,2,Check-Out,Ashley Stokes,mendozaryan@example.net,001-984-515-7100,3530333284521604,2024-09-09 +Resort Hotel,0,91,2017,August,34,24,0,2,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,L,H,0,No Deposit,16.0,179.0,0,Transient-Party,65.74,0,0,Check-Out,Kyle Singh,hduncan@example.org,935-727-8413x88213,6011979764499686,2024-04-30 +Resort Hotel,1,44,2017,November,44,4,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,45.58,0,0,Canceled,Spencer Jones,michelle68@example.org,784.834.6020x620,4864354099403576,2025-11-30 +Resort Hotel,0,46,2017,April,17,24,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,97.97,1,0,Check-Out,Vicki Fry,vincent77@example.com,863.859.0676,6011204990576086,2025-03-08 +City Hotel,0,1,2017,November,48,27,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,99.78,0,1,Check-Out,Johnny Fisher,glee@example.com,502.698.1251x95184,346211497858346,2024-10-29 +Resort Hotel,0,0,2017,October,40,5,2,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,A,0,No Deposit,239.0,179.0,0,Transient,45.63,0,2,Check-Out,Timothy Fuentes,sandovalandrea@example.com,471.576.6520,3581849270664601,2025-12-01 +City Hotel,0,47,2017,July,30,26,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,127.94,0,1,Check-Out,Michelle Sullivan MD,deborah53@example.com,(214)949-1097x310,578185407447,2025-04-21 +City Hotel,0,0,2017,January,4,21,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,14.0,179.0,0,Transient,52.92,0,1,Check-Out,Jennifer Duncan,cramos@example.net,+1-461-790-5032x6860,6011688495113025,2025-05-23 +City Hotel,0,13,2017,March,13,25,0,2,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,153.17,0,2,Check-Out,David Summers,christopher10@example.com,526-900-7952,213149332827730,2024-05-01 +Resort Hotel,0,125,2017,August,35,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,85.1,0,0,Check-Out,Kristen Flores,strongmichelle@example.net,254-595-2814,30432733514987,2025-09-17 +Resort Hotel,0,1,2017,July,30,22,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,157.84,1,2,Check-Out,James Parsons,douglas06@example.org,252-775-1541x19826,30318017174491,2025-04-04 +City Hotel,0,2,2017,October,43,24,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,73.44,0,1,Check-Out,Alexa Ingram,shane93@example.com,(387)371-7447x0771,4381253178230445650,2025-09-11 +Resort Hotel,0,141,2017,July,30,23,4,10,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,D,1,No Deposit,248.0,179.0,0,Transient,139.58,0,2,Check-Out,James Stanley,mullensherry@example.org,(687)827-7698x715,2243386804915961,2025-01-18 +Resort Hotel,1,113,2017,May,18,3,2,6,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,220.37,0,0,Canceled,Tyler Williams,wayne85@example.org,+1-218-780-3686,30130425060257,2025-09-16 +City Hotel,1,85,2017,July,29,20,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,123.91,0,2,Canceled,Melissa Torres,matthew79@example.com,001-477-526-7363,6011331894238644,2025-03-14 +City Hotel,1,58,2017,June,23,4,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.16,0,1,Canceled,Lauren Marshall,awilliams@example.org,001-824-503-4129x0396,30375693118952,2025-07-31 +City Hotel,1,42,2017,September,38,18,1,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.58,0,1,Check-Out,Suzanne Johnson,callen@example.org,+1-827-332-3624x455,639099396009,2025-09-02 +City Hotel,1,100,2017,April,17,23,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.95,0,2,Canceled,Miss Sharon Park,hunterrebecca@example.net,(338)229-1866,213180190394935,2024-10-03 +City Hotel,1,281,2017,September,39,27,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,75.61,0,0,Canceled,Mark Mcclain,natalie05@example.org,(698)398-3550x15214,060485842508,2026-01-07 +City Hotel,0,19,2017,June,26,24,1,4,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient-Party,239.74,1,0,Check-Out,Tracy Frost,nicholasyoung@example.org,001-641-975-0576x314,4611137049888,2025-08-06 +City Hotel,0,17,2017,April,18,30,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,Jordan Jones,moralesdaniel@example.net,(841)415-9121,676332843439,2025-03-05 +Resort Hotel,1,41,2017,July,30,24,1,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,231.29,0,0,Canceled,Victor Ruiz,evelyn17@example.org,001-726-233-6017x30485,6011254337026576,2026-02-18 +City Hotel,1,7,2017,May,21,20,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.88,0,0,Canceled,Jodi Mendoza,gmullins@example.com,515.218.1319x2012,4914750654705893,2024-04-21 +City Hotel,0,65,2017,April,15,9,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,B,F,0,No Deposit,31.0,179.0,0,Transient,211.25,0,0,Check-Out,John Perez,hailey14@example.org,904.750.7342x57377,6011932418402838,2025-08-27 +Resort Hotel,1,107,2017,December,49,6,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,79.0,179.0,0,Transient,100.1,0,1,Canceled,Adam Gillespie,bobjackson@example.net,8578071126,30139623775483,2025-10-21 +Resort Hotel,0,145,2017,March,10,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,75,Transient-Party,80.74,0,0,Check-Out,Matthew Lucas,blairdeborah@example.net,737.390.3568,3577589996876644,2025-09-12 +City Hotel,1,389,2017,May,19,4,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,85.83,0,0,Canceled,Theresa Davis,jenniferrasmussen@example.com,+1-789-559-4230x3134,3549680889796158,2026-01-27 +Resort Hotel,0,4,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,0.5099000000000001,1,0,Check-Out,Sherry Franco,gracecohen@example.com,+1-526-309-2383,343767060535150,2024-12-01 +City Hotel,1,44,2017,July,30,22,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,167.91,0,2,Canceled,Robert Jenkins,patricia75@example.com,+1-612-499-3198x37511,3573924658978665,2024-09-08 +City Hotel,0,89,2017,October,41,12,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,84.12,0,1,Check-Out,Cathy Young,wendychavez@example.org,938-696-4362x8554,5225622763801429,2025-08-20 +City Hotel,0,55,2017,August,32,8,2,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,176.96,0,1,Check-Out,Steven Davis,regina12@example.com,+1-282-804-6750x47332,6569868149561003,2025-08-14 +City Hotel,1,102,2017,May,21,25,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,130.0,179.0,0,Transient,99.12,0,0,Canceled,Mariah Collins,coltonmiller@example.net,8928425418,4250101188972645,2025-10-03 +City Hotel,0,96,2017,March,12,23,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,177.01,0,2,Check-Out,Edward Stanton,lloydrebecca@example.net,(838)268-0990x783,3555496276247650,2025-09-06 +City Hotel,0,142,2017,October,41,13,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,108.28,0,0,Check-Out,Debra Caldwell,caguilar@example.net,+1-206-603-1059x1121,6011080652112273,2025-01-22 +Resort Hotel,1,47,2017,June,26,23,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,110.13,0,0,Canceled,Brooke Ramirez,michellefoster@example.com,(979)816-5081x26114,3556447651633955,2024-08-20 +Resort Hotel,0,6,2017,May,21,22,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient-Party,85.99,0,0,Check-Out,Nicole Smith,adam80@example.org,(446)349-0109x9331,370322557613395,2025-10-06 +City Hotel,0,26,2017,December,49,6,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,81.95,0,1,Check-Out,Jessica Bell,james65@example.org,484.930.5438x0015,213173458649652,2025-06-23 +City Hotel,0,113,2017,June,25,23,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,89.0,179.0,43,Transient-Party,68.47,0,0,Check-Out,Ann Barnett,snash@example.org,4297674142,4595016229035555111,2024-11-06 +Resort Hotel,0,209,2017,August,32,5,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,123.55,0,1,Check-Out,Mary Whitney,bchurch@example.com,837.790.3540x9222,4931004980254294,2024-12-18 +Resort Hotel,0,3,2017,July,28,10,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,148.0,179.0,0,Transient-Party,76.89,0,0,Check-Out,Donald Salazar,christinameza@example.org,556.977.3382x394,4707656827116,2025-08-31 +City Hotel,0,125,2017,August,33,10,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,225.38,0,0,Check-Out,Ashley Simpson,ayerstonya@example.net,3688434294,502013435149,2024-10-08 +Resort Hotel,1,95,2017,December,51,21,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,2,No Deposit,246.0,179.0,0,Transient,156.08,0,0,Canceled,Joshua Mann,sarah13@example.com,(969)774-6982x1906,4707388431906,2024-06-26 +Resort Hotel,0,48,2017,August,32,5,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,52.79,0,2,Check-Out,Julie Flores,robert56@example.com,974-548-1311x031,4690271801378278,2025-03-25 +City Hotel,1,87,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Contract,77.22,0,0,Canceled,Brandi Roberson,pfoster@example.org,(487)442-5786,630483422378,2025-01-23 +City Hotel,1,144,2017,June,24,9,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,162.0,179.0,21,Transient,108.67,0,0,Canceled,Melinda Hanson DDS,vaughnangela@example.org,292.682.0031x11661,4900811107207,2024-12-21 +City Hotel,0,24,2017,November,45,9,0,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,128.48,1,3,Check-Out,Janice Jones,jonathan73@example.org,+1-770-874-2641,180011458592333,2025-07-18 +Resort Hotel,0,14,2017,November,45,10,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,61.6,0,0,Check-Out,Penny Johnson,nwest@example.net,854.852.7300x67563,4274942379317880,2024-05-31 +City Hotel,0,53,2017,October,41,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,2.0,45.0,0,Transient-Party,112.26,0,0,Check-Out,James Jensen,hedwards@example.net,+1-659-668-8845,180009398630007,2024-11-19 +Resort Hotel,0,2,2017,January,2,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,17.0,179.0,0,Transient,106.38,1,0,Check-Out,Kenneth Branch,jessica46@example.org,6215473065,180002970240816,2024-04-05 +City Hotel,0,49,2017,July,28,9,0,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,246.0,179.0,0,Transient,216.69,0,1,Check-Out,Tyler Allen,ulopez@example.net,+1-746-227-6711,376460213715420,2025-11-06 +City Hotel,0,6,2017,March,13,29,2,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,74.5,0,1,Check-Out,James Aguilar,johnsonamy@example.org,(522)401-3989,2707690299492389,2025-10-25 +Resort Hotel,0,46,2017,August,32,10,2,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,15.0,179.0,0,Transient,1.14,0,0,Check-Out,Jessica Thompson,jonesstephen@example.com,207-648-5370,3577641898661135,2025-12-10 +Resort Hotel,0,0,2017,February,6,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,52.11,0,0,Check-Out,Gregory Hall,kevin96@example.com,+1-696-909-2092,4449276467345457,2024-07-14 +Resort Hotel,0,87,2017,December,52,23,0,2,2,0.0,0,BB,,Groups,Direct,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,45.54,0,0,Check-Out,Keith Davis,rogervelez@example.net,001-713-208-1356x3088,6577199060819208,2024-12-28 +City Hotel,0,119,2017,October,43,24,0,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,75,Transient,102.4,0,0,Check-Out,Rodney Patton,pgonzalez@example.org,(533)673-7628x878,2278796726120292,2026-03-20 +City Hotel,1,125,2017,December,49,4,0,4,2,0.0,0,Undefined,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,48.33,0,0,Canceled,Michael Houston,lopezkathleen@example.net,284-363-8838x73613,5354771759698910,2025-05-28 +City Hotel,0,252,2017,March,10,5,1,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.11,0,1,Check-Out,Rachel Torres,connie66@example.org,509-527-5594x7047,4055789540588781,2025-09-22 +Resort Hotel,1,162,2017,October,40,2,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,50.95,0,1,Canceled,Mark Hernandez,marmstrong@example.com,3876335292,572065480343,2024-06-17 +Resort Hotel,0,44,2017,February,8,18,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,40.53,0,0,Check-Out,Jeff Thompson,jamie60@example.com,3457457667,30045057299371,2024-08-26 +City Hotel,0,103,2017,May,19,9,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,141.45,0,1,Check-Out,Debra Lee,ashley21@example.net,001-618-222-0127,3588024587398532,2025-09-15 +Resort Hotel,1,18,2017,December,48,1,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,92.58,0,1,Canceled,Megan Ryan,ujordan@example.net,001-322-497-5888x42361,30375350936423,2024-10-10 +City Hotel,0,310,2017,March,13,29,2,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.68,1,1,Check-Out,David Clark,tsandoval@example.net,7506390829,4070560980476295,2024-07-21 +City Hotel,1,150,2017,March,10,8,1,2,2,1.0,0,BB,AUT,Direct,Direct,0,0,0,D,A,2,No Deposit,15.0,179.0,0,Transient,70.79,0,1,Canceled,Todd Rojas,lemarissa@example.com,826.210.9258,6575153416970878,2024-11-05 +City Hotel,1,98,2017,August,31,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,199.61,0,1,Canceled,Steven King,bowmanchristopher@example.org,305.594.4045x40262,3524685896046454,2025-04-02 +City Hotel,1,248,2017,August,31,1,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,161.68,0,1,Canceled,Jeffrey Stokes,christinewillis@example.com,346-922-0069x5160,4663446306301,2025-10-22 +Resort Hotel,0,58,2017,September,36,8,4,7,2,0.0,0,FB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,239.99,0,1,Check-Out,Casey Wright,karenvang@example.org,499-921-7009x94591,4557823112466,2025-04-24 +Resort Hotel,0,0,2017,April,14,5,1,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,0.55,1,0,Check-Out,Janet Oliver,carlos84@example.org,(430)588-5029x5738,675978476652,2025-08-24 +Resort Hotel,1,229,2017,October,40,2,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,94.45,0,0,Canceled,Gary Smith,xbyrd@example.com,886.275.5025,4035726546589103,2025-12-14 +City Hotel,1,11,2017,March,13,25,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,61.28,0,0,Canceled,Gerald Wall,lorettayoung@example.com,527.248.7973x876,376633019937626,2026-03-24 +City Hotel,1,14,2017,November,45,4,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.99,0,2,Canceled,Hannah Dickson,licarrie@example.net,001-681-268-5277x3207,6510903178911025,2024-06-25 +Resort Hotel,1,2,2017,April,17,23,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,141.48,0,0,Canceled,Madeline Boyle,jordantiffany@example.net,334.675.9799,2296472040972408,2024-04-15 +Resort Hotel,0,30,2017,July,27,2,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,177.72,0,3,Check-Out,Virginia Lynch,kimberlysmith@example.com,338.785.0710x9235,345126779003794,2024-06-20 +Resort Hotel,0,238,2017,March,13,31,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,40.52,0,1,Check-Out,Tammy Bridges,daniel68@example.org,+1-566-489-8957x9734,3562261230514921,2024-07-12 +City Hotel,1,12,2017,October,40,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,105.43,0,0,Canceled,Danielle Simmons,codygould@example.org,3929981514,30050726560534,2025-03-11 +City Hotel,0,2,2017,August,34,20,1,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,B,0,No Deposit,12.0,179.0,0,Transient,143.35,0,1,Check-Out,Shelly Henderson,prichardson@example.net,8779150544,4235917053568493505,2026-03-10 +Resort Hotel,1,40,2017,May,18,3,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,242.0,179.0,0,Transient,134.07,0,1,Canceled,Frank Davis,royhuerta@example.net,001-893-822-1764x760,4711909103838,2024-05-21 +City Hotel,0,10,2017,March,11,14,1,1,1,0.0,0,BB,ESP,Direct,Corporate,0,0,1,A,D,1,No Deposit,9.0,179.0,0,Transient,40.86,0,1,Check-Out,Jennifer Williams,ronaldshea@example.com,(591)854-2310x687,4121697369109086,2025-02-25 +City Hotel,0,1,2017,November,45,9,0,2,2,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,39.0,231.0,0,Transient-Party,78.74,0,0,Check-Out,Robert Mills,gonzalesamy@example.net,430.674.0661x08604,4174837316891073,2026-01-16 +City Hotel,0,132,2017,June,26,28,2,1,1,0.0,0,BB,BEL,Online TA,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,142.82,0,0,Check-Out,Philip Yates,chenjames@example.org,001-266-900-1455x11504,4157101678535108471,2024-05-05 +Resort Hotel,0,150,2017,August,33,11,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,G,E,2,No Deposit,33.0,179.0,0,Transient,89.14,0,3,Check-Out,Chad Romero,murphybrian@example.net,001-863-515-6588x073,4557206865284,2025-08-02 +City Hotel,0,18,2017,June,25,22,0,2,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,153.29,0,0,Check-Out,Timothy Odom,acarr@example.com,738-805-6830x562,30242219222280,2025-12-26 +City Hotel,1,21,2017,September,37,13,2,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,162.95,0,0,No-Show,Lisa Morales,alexanderwest@example.org,+1-442-837-0825,30276718782295,2026-03-18 +City Hotel,0,51,2017,June,25,15,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,116.62,0,1,Check-Out,Victor Jordan,garciajames@example.net,(743)807-1693x28781,4844578028992,2025-08-31 +City Hotel,0,17,2017,March,10,5,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,132.78,0,1,Check-Out,Lisa Scott,xmcclure@example.org,+1-770-499-6095,3591373125774836,2024-06-11 +City Hotel,0,47,2017,April,16,17,0,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,1,No Deposit,11.0,171.0,0,Transient,114.65,0,1,Check-Out,Michael Ellis,ojohnson@example.net,(981)522-2740x4359,3553541728527027,2025-04-26 +City Hotel,0,47,2017,October,42,15,0,3,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,G,0,No Deposit,12.0,179.0,0,Transient,76.48,1,1,Check-Out,Maria Brennan,hsosa@example.net,(637)382-0120x1373,371768220991502,2024-10-29 +City Hotel,0,22,2017,August,32,5,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,181.76,0,2,Check-Out,Jessica Williams,meredith48@example.com,744-571-5018x95150,4593463478081446,2025-07-03 +Resort Hotel,0,182,2017,July,28,9,3,4,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,A,1,No Deposit,316.0,179.0,0,Transient-Party,106.51,0,0,Check-Out,Lisa Odonnell,benderkyle@example.net,815-301-8919,4788971846422147,2024-11-16 +Resort Hotel,0,90,2017,July,30,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient-Party,127.0,1,1,Check-Out,Victor Lewis,barkerkimberly@example.net,(760)634-6507,4821232722286004548,2024-09-16 +City Hotel,0,12,2017,October,44,28,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Rebecca Tapia,pkent@example.com,828.404.2501,3506396093596471,2025-03-08 +City Hotel,1,107,2017,March,11,9,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.63,0,0,Canceled,Joan Rogers,clarkkeith@example.com,(385)996-4738,501809670687,2024-06-30 +City Hotel,0,157,2017,April,14,4,2,2,1,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,112.37,0,0,Check-Out,Mr. Jeffrey Nguyen,donald57@example.com,899-497-2074x0315,30485717666603,2025-09-12 +City Hotel,0,5,2017,October,40,4,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,239.0,0,Transient,42.09,0,0,Check-Out,Angela Luna,adam07@example.com,001-806-505-0521x118,4109503209046,2025-06-28 +City Hotel,1,346,2017,September,36,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.63,0,0,Canceled,Alejandro Davis,chelsea42@example.org,519-312-2910x8669,4647456659238401,2024-04-18 +Resort Hotel,0,0,2017,February,7,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,17.0,67.0,0,Transient,35.93,0,0,Check-Out,Eduardo Hart DDS,courtneymurray@example.org,(543)259-3878,180098584275560,2024-07-03 +Resort Hotel,1,2,2017,February,9,25,1,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,64.45,0,0,Canceled,Duane Clark,petersonmandy@example.org,7926796761,676221884700,2025-02-02 +Resort Hotel,0,89,2017,May,20,17,4,10,2,0.0,0,BB,SWE,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,179.0,0,Transient,107.91,0,0,Check-Out,Lisa Bowman,nharvey@example.net,+1-269-626-3082x8625,180007651400217,2025-01-22 +City Hotel,1,158,2017,August,31,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,226.16,0,1,Canceled,Jose Smith,sandrawong@example.com,275.598.0355x688,4961809352551068379,2024-11-07 +Resort Hotel,0,33,2017,December,51,22,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,131.55,1,2,Check-Out,Tammy Nguyen,bobby87@example.com,001-335-439-5263,4800991311840667167,2025-02-06 +City Hotel,1,140,2017,September,37,9,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.28,0,1,Canceled,Maria Harrington,robertsonrick@example.net,(690)471-8003,2573507950107067,2025-10-31 +City Hotel,0,52,2017,February,7,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,78.87,0,0,Canceled,Michael Gibbs,pruittmatthew@example.com,001-743-245-5673x5020,180073508591343,2025-07-27 +Resort Hotel,0,33,2017,November,47,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient-Party,104.0,0,1,Check-Out,Greg Williams,mitchellzachary@example.org,(719)332-2721,180095581715887,2025-12-21 +Resort Hotel,0,260,2017,August,35,26,3,6,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,185.0,0,1,Canceled,Nicole Baker,sosabriana@example.net,807-382-6511x689,2405661748377773,2025-10-31 +City Hotel,1,266,2017,May,20,12,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,98.13,0,0,Canceled,Justin Jones,xlopez@example.org,669.466.1067,577124837995,2025-05-09 +City Hotel,0,120,2017,August,32,8,2,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,137.48,1,1,Check-Out,Kimberly Jackson,ralph89@example.net,3683951529,4302940030560928,2025-12-03 +City Hotel,1,84,2017,August,34,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,93.8,0,1,Canceled,Jeremy Turner,erinkane@example.net,001-909-862-5636x39527,30551594427961,2025-01-09 +Resort Hotel,0,35,2017,February,6,9,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,311.0,179.0,0,Transient,62.23,0,0,Check-Out,Carlos Brown,cyoung@example.com,+1-907-422-9033x243,676134123287,2024-04-17 +City Hotel,0,5,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,13.0,45.0,0,Transient,86.04,0,1,Check-Out,Shannon Ryan,hhorton@example.org,528.487.6137x28671,3522656006294898,2025-11-28 +City Hotel,0,167,2017,August,32,9,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,169.0,179.0,0,Transient,109.22,1,2,Check-Out,Yvonne Patterson,anthonybennett@example.org,626-661-7457,4327528378675,2024-12-09 +City Hotel,1,16,2017,August,34,21,2,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,252.0,0,3,Canceled,James Rivas,thompsonwilliam@example.com,383.629.6421,4544277734911653,2025-05-01 +City Hotel,0,79,2017,May,21,23,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.88,0,0,Check-Out,Rachel Soto,jasonhooper@example.org,299-940-7863x44510,5160457891006972,2024-06-05 +Resort Hotel,0,103,2017,April,16,19,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,102.07,0,0,Check-Out,Danielle Lucas,rcoleman@example.org,+1-596-255-9169x57392,639051951619,2025-04-05 +City Hotel,0,165,2017,July,30,25,1,4,3,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,7.0,179.0,0,Transient,215.02,0,2,Check-Out,Olivia Russell,cooperemily@example.com,364.930.6590x98720,060491088856,2024-09-21 +Resort Hotel,0,29,2017,June,22,1,4,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,120.84,1,2,Check-Out,Amber Cruz,victoria99@example.net,864-551-9184x22284,6543601037812688,2025-03-09 +City Hotel,1,206,2017,June,25,16,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,134.66,0,1,Canceled,Gregory Smith,michelle31@example.org,292.927.7245x048,378775446448608,2024-05-08 +City Hotel,1,165,2017,July,31,29,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,114.79,0,0,Canceled,Alison Miller,blanchardstephanie@example.net,+1-441-681-5586x352,213115683347206,2025-12-05 +City Hotel,1,248,2017,May,21,20,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,103.46,0,0,Canceled,Jessica Lane,clarkphillip@example.com,(590)302-4288,4873143630602526,2024-08-09 +Resort Hotel,0,159,2017,May,21,20,1,3,1,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,68.25,0,0,Check-Out,Angela Drake,pratttimothy@example.org,964-958-7260x1228,30488135940121,2024-05-04 +City Hotel,0,2,2017,September,36,5,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.99,0,2,Check-Out,April Carter,williambriggs@example.com,288-947-1762x483,583604018262,2024-04-07 +City Hotel,1,42,2017,October,43,23,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.09,0,2,Canceled,Shannon Hernandez,davidschmidt@example.net,824-390-0820x67271,3552081985408513,2025-10-29 +Resort Hotel,0,102,2017,May,21,24,2,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,250.0,179.0,0,Transient,129.21,0,0,Check-Out,Michelle Stevens,emedina@example.org,510.426.4338x21956,213100024755440,2025-03-23 +City Hotel,0,7,2017,May,19,4,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.89,0,2,Check-Out,Olivia Williams,collierjacob@example.com,515.842.0526,30136899953356,2025-02-28 +City Hotel,0,50,2017,November,47,23,0,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient-Party,82.83,0,1,Check-Out,Garrett Thomas,courtney21@example.org,+1-778-641-4670x6907,3593760668022235,2024-08-12 +City Hotel,0,39,2017,May,19,8,1,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,317.0,179.0,41,Transient-Party,127.8,0,1,Check-Out,Nicole Lewis,fmoore@example.org,+1-447-419-7898,4750784306892,2025-03-28 +City Hotel,1,409,2017,September,37,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,107.39,0,0,Canceled,Douglas Fuller,bthomas@example.net,+1-745-463-5803x08624,3551613655186432,2025-12-02 +City Hotel,0,29,2017,March,10,8,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.96,0,0,Check-Out,Jordan Harper,erinfrey@example.org,413-426-2985x682,630480420946,2025-09-27 +City Hotel,1,137,2017,August,32,5,2,5,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,113.3,0,2,Canceled,Michelle Hall,margaretrivas@example.com,(438)879-5090x8229,2291508756352395,2024-11-12 +Resort Hotel,0,6,2017,December,48,2,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,85.89,0,2,Check-Out,Megan Hernandez,kellygilbert@example.net,793.986.4260x6802,4280596352517015,2024-10-12 +City Hotel,0,2,2017,March,12,17,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,57.63,0,1,Check-Out,Jeremiah Fisher,iwilkins@example.com,+1-333-465-6481x33803,30354217964175,2024-04-02 +City Hotel,0,220,2017,June,23,2,2,7,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,G,D,1,No Deposit,245.0,179.0,0,Transient,136.09,0,1,Check-Out,Ryan Barrera,madison06@example.net,+1-652-370-0604x906,30291464227387,2024-10-24 +Resort Hotel,0,43,2017,July,30,23,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,132.91,0,2,Check-Out,Daniel Martinez,jason20@example.net,001-553-364-1302x9241,3535549999477536,2024-05-08 +City Hotel,0,14,2017,March,12,21,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,75.78,0,0,Check-Out,Douglas Howard,jaredrhodes@example.com,8893269608,180075289997581,2025-03-09 +City Hotel,1,149,2017,July,27,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,104.81,0,0,Canceled,Jeffrey Leonard,halllindsay@example.net,391.473.8044x5090,3585025433128133,2024-07-15 +City Hotel,0,82,2017,December,49,4,1,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,66.0,0,2,Check-Out,Jasmine Hahn,anthony37@example.net,597.944.5146x2301,630408566762,2026-02-22 +City Hotel,0,6,2017,February,8,21,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.87,0,1,Check-Out,Erik Williams,msherman@example.com,947.640.1693x08434,4054838368699187,2025-04-02 +City Hotel,1,151,2017,June,23,4,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,2.0,179.0,38,Transient,102.41,0,0,Canceled,Susan Melendez,melinda15@example.net,961-697-9255x594,341892585250291,2024-12-03 +Resort Hotel,0,148,2017,August,32,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,30.0,179.0,0,Transient,116.45,0,0,Check-Out,Robin Baker,qmorris@example.net,+1-970-334-4717,4633238422755095274,2024-04-14 +Resort Hotel,0,144,2017,July,28,12,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,212.71,0,0,Check-Out,Raymond Brooks III,boonejonathan@example.com,001-535-341-2485x4445,370756745965078,2025-03-07 +Resort Hotel,1,318,2017,August,32,5,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,Non Refund,11.0,179.0,0,Transient,153.45,0,0,Canceled,David Mitchell,travisbrown@example.net,398-671-4440x08212,4123277400696678,2025-10-11 +City Hotel,1,150,2017,March,10,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,82.83,0,0,Canceled,Felicia Matthews,englishthomas@example.org,+1-740-554-8039,2252708597065993,2026-02-13 +City Hotel,0,0,2017,March,11,9,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.09,0,1,Check-Out,Jill Stevens,adampowell@example.com,+1-653-978-3233x311,4874556029955735,2025-02-24 +City Hotel,1,405,2017,November,45,5,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,40,Transient,49.92,0,0,Canceled,Roger Johnson,llowery@example.org,(357)740-5635x985,4724149450889680,2025-04-25 +City Hotel,0,34,2017,December,49,4,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Contract,52.13,0,2,Check-Out,Cynthia Price,oscarlopez@example.org,(742)600-4734x252,213140769771764,2026-01-31 +City Hotel,0,215,2017,August,33,12,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,104.02,0,1,Check-Out,John Johnson,pturner@example.org,5295936375,4995874140778789994,2024-11-22 +City Hotel,0,2,2017,July,28,13,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,132.82,0,1,Check-Out,Alison Delacruz,anna35@example.com,787.513.5490,341047466667374,2025-03-20 +Resort Hotel,0,187,2017,July,27,2,2,10,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,233.03,0,1,Check-Out,Henry Parker,williamsmelissa@example.com,001-560-346-3678x2927,6593754584217618,2025-08-02 +City Hotel,1,15,2017,June,27,29,0,2,1,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.38,0,1,Canceled,Curtis Davis,davismichelle@example.net,(547)664-9516,6599799792461213,2025-09-13 +Resort Hotel,0,240,2017,October,43,26,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,268.0,179.0,0,Transient,40.57,1,1,Check-Out,John Clark,hayessandra@example.org,001-489-958-0533x157,4347754149938389,2025-01-07 +Resort Hotel,0,0,2017,March,11,11,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,12.0,76.0,0,Transient-Party,43.55,0,0,Check-Out,Amy Chapman,bochoa@example.org,233-209-0040x2231,3581539691491359,2025-02-17 +Resort Hotel,0,0,2017,October,42,15,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,120.18,0,0,Check-Out,Maria Williams,andrea31@example.com,266.748.6455x49512,2256438168165727,2025-11-11 +City Hotel,0,13,2017,September,36,3,1,0,1,0.0,0,SC,IRL,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,133.61,0,0,Check-Out,Nancy Hogan,hburnett@example.org,(252)604-7812x7141,676250192652,2024-09-05 +City Hotel,0,92,2017,May,21,25,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,64.0,179.0,0,Transient,112.7,0,1,Check-Out,Howard Hunter,sean75@example.org,(797)581-3593x319,576238607088,2024-08-09 +City Hotel,1,314,2017,May,20,11,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,41,Transient-Party,61.43,0,0,Canceled,Dylan Baker,yatesdawn@example.org,(883)438-0344x3283,213137254954657,2025-06-06 +City Hotel,0,13,2017,November,44,4,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Group,61.53,0,0,Check-Out,William Mcbride,atkinsterry@example.org,740.522.6584,6567413397511582,2024-04-19 +Resort Hotel,0,146,2017,April,15,10,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,133.0,179.0,0,Transient-Party,79.32,0,0,Check-Out,Jenny Sanchez,williamsmartin@example.org,+1-594-932-1028,676220445867,2025-06-01 +City Hotel,1,13,2017,June,25,20,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,41,Transient,104.64,0,0,Canceled,Suzanne Hancock,natasha77@example.net,001-375-211-7805,4047399775364899,2025-10-28 +City Hotel,0,98,2017,May,22,31,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,42,Transient,104.56,0,0,Check-Out,Jason Riggs,amymorse@example.net,+1-779-845-6984x413,180024855433902,2024-06-14 +City Hotel,0,22,2017,March,12,19,0,1,1,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,129.5,0,2,Check-Out,Suzanne Lambert,vkramer@example.net,949.730.3716,4404018515513930203,2025-07-30 +Resort Hotel,0,95,2017,September,37,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient-Party,67.41,0,0,Check-Out,Tyler Green,lindsay12@example.net,8003135244,180034450835435,2025-10-05 +City Hotel,1,12,2017,September,39,26,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.83,0,0,Canceled,Zachary Doyle,jennifercampbell@example.com,372-935-2784,180032153053744,2025-08-26 +Resort Hotel,0,44,2017,April,14,2,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,309.0,179.0,0,Transient-Party,80.06,0,1,Check-Out,Noah Briggs,sbrown@example.net,(768)243-0307x869,373174897690584,2025-05-23 +Resort Hotel,1,102,2017,July,27,4,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,223.03,0,2,Canceled,Nicole Ward,juanjarvis@example.com,+1-991-861-4527x6305,4845355553103382,2026-01-17 +City Hotel,0,3,2017,October,43,26,1,0,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.6,0,2,Check-Out,Blake Norris,melanie46@example.net,471-360-7199x039,30523838527757,2025-07-08 +Resort Hotel,1,48,2017,April,17,28,2,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,88.45,0,2,Canceled,Latoya Fitzgerald,larsondebra@example.com,+1-590-391-6105x6931,3592088498264285,2024-12-08 +Resort Hotel,0,35,2017,February,8,19,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,39.0,222.0,0,Transient-Party,56.17,0,0,Check-Out,Wendy Miller,paulmorales@example.org,9048861136,36479690240357,2025-04-17 +City Hotel,1,317,2017,July,30,27,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.2,0,0,Canceled,Stephen Shaw,shannon04@example.org,752-691-5858x823,4851357813646946,2025-11-17 +City Hotel,0,368,2017,September,36,4,0,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.46,0,0,Check-Out,Jo Hickman,cpayne@example.org,204-874-5213x1275,213163941039835,2025-05-26 +City Hotel,0,10,2017,August,34,24,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,216.82,1,1,Check-Out,Billy Cross,lopezsteven@example.net,733.259.3826x91314,30371609634505,2026-01-13 +Resort Hotel,0,2,2017,August,34,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,40.4,0,0,Check-Out,Jeffery Davis,jamesjames@example.org,962-489-5149x3173,4805939208743938,2025-05-25 +City Hotel,1,46,2017,February,8,23,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,89.03,0,0,Canceled,Maria Dixon,oshaw@example.net,269.416.8946x43836,213107357333174,2025-02-14 +City Hotel,0,23,2017,August,31,4,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,234.0,179.0,0,Transient,208.56,0,1,Check-Out,Diana Murray,hooverjason@example.net,(681)561-0127x4363,2562934816224998,2025-10-30 +City Hotel,1,394,2017,October,41,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,9.0,179.0,0,Transient-Party,120.14,0,0,Canceled,Jennifer Curtis,marshgina@example.net,001-681-680-6459x52156,4814382599918,2026-02-25 +Resort Hotel,0,21,2017,March,12,22,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,298.0,179.0,0,Transient,74.75,0,1,Check-Out,Janet Mcclure,mark65@example.com,001-722-583-0430x7579,630450825470,2025-01-27 +City Hotel,1,109,2017,August,31,1,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,A,0,Non Refund,7.0,179.0,0,Transient,168.62,0,1,Canceled,Alexis Watson,benjamincole@example.org,(330)756-7675x2337,4020571751253392931,2025-10-07 +City Hotel,0,92,2017,September,36,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,98.65,1,0,Check-Out,Jared Spence,katherinegordon@example.org,+1-367-243-2606,6573683427610842,2025-07-19 +Resort Hotel,1,248,2017,October,42,19,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,1,No Deposit,11.0,179.0,0,Contract,63.12,0,2,Canceled,Alice May,johnthompson@example.org,758.911.3480x6518,36946808994596,2025-03-30 +City Hotel,1,338,2017,October,43,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Group,88.66,0,0,Canceled,Nathan Miles,lukeknight@example.org,928.988.4381x84835,4673685612112744,2026-01-27 +Resort Hotel,0,152,2017,March,13,29,1,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,63.36,1,0,Check-Out,April White,cummingsjohn@example.com,3296017979,30204407378001,2024-10-20 +Resort Hotel,0,86,2017,March,10,4,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,300.0,179.0,0,Transient,54.2,0,1,Check-Out,Kathleen Odonnell,kelsey36@example.net,465.231.8191,4490571076949386,2026-03-21 +City Hotel,0,18,2017,January,2,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,2,No Deposit,13.0,63.0,0,Transient,99.69,0,0,Check-Out,Emily Massey,bradleylisa@example.net,811-418-7078,343347594684889,2024-10-30 +Resort Hotel,0,181,2017,July,29,16,2,5,2,1.0,0,HB,GBR,Direct,Direct,0,0,0,C,C,1,No Deposit,252.0,179.0,0,Transient,211.27,1,2,Check-Out,Lisa Henderson,bshepherd@example.com,001-245-279-0033,371586921193685,2025-06-20 +Resort Hotel,0,4,2017,June,23,5,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,138.16,0,1,Check-Out,Andrea Brown,ashley71@example.net,001-363-743-6302x164,4033602678122413,2024-10-31 +City Hotel,0,387,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.52,0,1,Check-Out,Shawn Patel,kathleen71@example.org,440-486-2697x18579,4034004837447105,2025-01-29 +Resort Hotel,0,242,2017,March,12,20,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,69.95,0,1,Check-Out,Eric Parker,melissa09@example.org,251-561-3688x10975,347096399910934,2025-03-29 +City Hotel,0,83,2017,March,10,8,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,237.0,179.0,0,Transient,91.53,0,1,Check-Out,Cindy Garza,cbrown@example.net,291-680-3200,3574910739127223,2025-03-04 +Resort Hotel,0,131,2017,July,29,21,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,124.0,179.0,0,Transient-Party,63.73,0,0,Check-Out,Jesse Yang,millerrick@example.com,001-967-899-3787x7220,3595473563265929,2024-12-11 +Resort Hotel,0,94,2017,October,42,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,295.0,179.0,0,Transient,41.43,0,0,Check-Out,Dean Evans,lauraalvarez@example.com,(982)736-9000x24711,3592761693808177,2024-05-26 +Resort Hotel,1,138,2017,July,31,30,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,Refundable,13.0,331.0,0,Transient,0.87,0,0,Canceled,Carl Lopez,robert28@example.com,001-257-299-4920x2867,4498123045022556,2024-08-15 +City Hotel,0,25,2017,October,41,8,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,29.0,179.0,0,Contract,44.26,0,0,Check-Out,Diane Smith,fosterpaul@example.org,001-871-918-2610x141,3598803868837757,2025-05-09 +City Hotel,0,16,2017,May,19,6,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.48,0,2,Check-Out,Shelly Jackson,jeannesingh@example.org,001-414-861-1724x412,4478669496360,2024-09-27 +City Hotel,0,0,2017,January,4,23,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,41.19,0,1,Check-Out,Rachel Castillo,xhenry@example.net,686-570-2860x2120,4150934811455,2024-12-30 +Resort Hotel,0,39,2017,June,26,23,0,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,136.05,0,0,Check-Out,Hunter Miller,mlopez@example.net,573-373-6809x69977,36959431830491,2025-08-29 +Resort Hotel,1,44,2017,December,51,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,315.0,179.0,0,Transient,81.47,0,0,Canceled,Melanie Fischer,nicole07@example.net,926-382-9684x799,6578063213686113,2024-12-31 +Resort Hotel,1,13,2017,July,29,13,4,7,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,144.74,0,0,Canceled,Eric Camacho,evansjanet@example.net,546.295.6309x717,4792250306189007,2024-07-30 +City Hotel,1,147,2017,April,17,25,1,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,109.31,0,2,Canceled,Eric Harris DVM,peterserica@example.com,314-757-1391,4940514555316921,2025-12-25 +Resort Hotel,1,9,2017,March,13,27,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,145.0,179.0,0,Transient,46.59,0,0,Canceled,Angela Craig,clarencevillanueva@example.net,001-951-457-6193,4284569480872228,2024-09-28 +City Hotel,1,107,2017,May,18,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,94.45,0,0,Canceled,Henry Brooks,alicehernandez@example.net,240.725.3295x07481,4096300601334049,2024-09-11 +City Hotel,1,205,2017,May,19,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.65,0,2,Canceled,Tony Barnes,collinscaleb@example.org,(670)841-7686,6507737776647101,2026-03-27 +City Hotel,1,54,2017,November,44,2,2,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,25.0,179.0,0,Transient,106.65,0,0,Canceled,Robert Bailey,debbie87@example.org,519-606-6272x6020,6011256286364429,2024-08-07 +City Hotel,1,18,2017,August,31,2,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,145.79,0,0,Canceled,Taylor Parsons,katie61@example.org,(370)680-6994x532,180058926138280,2025-04-13 +Resort Hotel,1,58,2017,January,2,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,240.0,179.0,0,Transient,45.52,0,1,Canceled,Christopher Wilson,adamandrade@example.com,+1-227-384-5951x64244,4452358820894506,2025-08-23 +City Hotel,0,18,2017,February,7,16,0,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.02,0,1,Check-Out,Erin Mcdowell,ujones@example.com,637.391.5114x58555,180004113408995,2024-04-11 +City Hotel,0,32,2017,September,36,9,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,2.29,0,0,Check-Out,Amy Ray,raymond04@example.net,558-444-9932,4554252632945258,2024-04-14 +City Hotel,0,32,2017,May,22,27,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,157.84,1,1,Check-Out,Stephen Leon,xramos@example.com,204-212-8488x2777,180077560682007,2025-04-08 +Resort Hotel,0,162,2017,July,27,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient-Party,164.87,1,1,Check-Out,Christopher Bolton,coopersamuel@example.com,+1-921-597-9998,6011628178668101,2025-11-03 +City Hotel,0,143,2017,September,38,20,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,63,Transient-Party,132.42,0,0,Check-Out,Erin Aguirre,yanderson@example.net,615-610-3260,180015695795336,2024-09-07 +City Hotel,0,1,2017,March,10,5,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,D,0,No Deposit,10.0,45.0,0,Transient,108.06,0,1,Check-Out,Valerie Rodriguez,stephanie48@example.org,3987771259,4668906061374973102,2024-03-27 +City Hotel,0,50,2017,August,34,20,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,132.74,0,1,Check-Out,Peter Thompson,salazaranne@example.com,(219)478-3107x6580,372730070415858,2025-07-25 +City Hotel,0,36,2017,March,13,29,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,99.95,0,1,Check-Out,Terri Davis,scastillo@example.com,+1-910-921-7346x861,676241691424,2025-06-04 +Resort Hotel,0,172,2017,August,33,18,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,250.73,1,1,Check-Out,Joseph Blevins,umoore@example.org,+1-570-236-5517x663,213145467065674,2026-02-15 +City Hotel,0,52,2017,September,37,9,2,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,108.73,0,1,Check-Out,Steven Cannon,maykimberly@example.net,(923)325-9097,4054367615844412,2025-08-19 +City Hotel,1,139,2017,January,5,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,10.0,179.0,0,Transient,113.07,0,0,Canceled,Wendy Horne,dianajackson@example.com,001-492-874-2363x42056,4792288827353,2024-07-30 +Resort Hotel,0,153,2017,October,43,23,3,10,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,19.0,179.0,0,Transient,126.24,1,0,Check-Out,David Cruz,kristy81@example.net,(704)588-1545x82281,4901018041117994862,2024-12-28 +Resort Hotel,0,2,2017,October,40,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,58.0,0,Transient,52.99,0,1,Check-Out,Michael Hendrix,emily27@example.com,744.862.7089,4269152140903987,2024-09-29 +City Hotel,0,14,2017,February,6,8,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,D,A,0,No Deposit,23.0,179.0,0,Contract,63.74,0,1,Check-Out,Thomas Garcia,brucemichelle@example.org,446.266.8059x96138,501813359376,2024-09-26 +City Hotel,1,48,2017,March,13,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,42,Transient,110.87,0,0,Canceled,Jacqueline Ford,david76@example.com,573.803.7336x2162,213165215992821,2025-09-10 +City Hotel,1,156,2017,December,51,20,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.61,0,1,Canceled,Vanessa Boone,johnhoward@example.org,(678)253-9747,213160941470986,2024-04-12 +Resort Hotel,0,59,2017,August,32,5,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,F,1,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,Nancy Garcia,michaelthompson@example.com,001-532-916-5990,3507248803687166,2026-02-05 +Resort Hotel,0,146,2017,March,10,6,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,Refundable,13.0,224.0,0,Transient-Party,37.45,0,0,Check-Out,Ernest Kennedy,jeffreymiller@example.net,001-201-324-0002x7237,4389353730824295,2025-09-27 +Resort Hotel,1,200,2017,May,20,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,79.69,0,1,Canceled,Brandon Miller,bradley80@example.net,813-995-0400,3596479033983669,2025-02-25 +City Hotel,0,34,2017,June,26,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,7.0,179.0,0,Transient,133.25,0,2,Check-Out,Anita Wright,dballard@example.net,238.730.9629,372021233153689,2024-04-06 +City Hotel,0,150,2017,May,21,25,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,99.28,0,0,Canceled,Martin Cox,bryan45@example.org,762.717.0378x528,30417083595827,2024-06-30 +City Hotel,1,192,2017,July,29,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,43,Transient,87.69,0,0,Canceled,Tiffany Flores,harold38@example.com,294-266-7367x018,502080731420,2025-10-17 +City Hotel,1,17,2017,May,20,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.77,0,0,Canceled,Anthony Parker,dking@example.org,971-846-4907,4642902836557268712,2025-10-22 +City Hotel,0,0,2017,January,2,11,1,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.44,0,1,Check-Out,Jeremy Miller,dallen@example.net,001-292-214-8811,30475039073521,2024-08-30 +City Hotel,1,385,2017,June,23,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,97.75,0,0,Canceled,Stephanie Jensen,jeffery95@example.net,322.419.7486,4587268720322664,2025-06-11 +City Hotel,0,285,2017,February,7,17,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,83.65,0,0,Check-Out,Jennifer Austin,jessica42@example.org,757-299-9651,3508184654523383,2025-01-08 +Resort Hotel,0,92,2017,June,25,18,2,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,D,1,No Deposit,237.0,179.0,0,Transient,109.53,1,2,Check-Out,Randy Flores,charlescarter@example.org,001-747-327-9594x26394,2285423343217325,2024-06-11 +Resort Hotel,0,3,2017,August,32,5,1,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,331.0,0,Transient,2.24,0,0,Check-Out,Ryan Reynolds,fordderrick@example.com,223-410-1950x871,4276626764669666239,2025-08-31 +City Hotel,0,0,2017,November,46,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,87.3,0,1,Check-Out,Elizabeth Travis,nashjessica@example.net,900.918.6898x70662,3551661788320212,2025-11-10 +Resort Hotel,0,42,2017,February,7,10,2,2,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,166.0,179.0,0,Group,39.48,0,1,Check-Out,Richard Harmon,ganderson@example.org,001-405-282-2700x7368,4217512553906,2025-10-20 +Resort Hotel,0,19,2017,May,19,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,2.75,1,0,Check-Out,Kevin Thomas,lvance@example.org,700.202.2660x88411,3586034815721092,2024-11-16 +Resort Hotel,0,205,2017,November,47,20,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,41.67,0,0,Check-Out,Shannon Harper,kroth@example.com,323-333-6424x069,30211353324699,2025-05-24 +Resort Hotel,0,41,2017,May,18,5,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,I,1,No Deposit,244.0,179.0,0,Transient,3.13,0,0,Check-Out,Anthony Parker,ugreene@example.org,001-879-771-1076x85798,3519797112260004,2025-06-27 +Resort Hotel,0,143,2017,March,10,5,1,3,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,76.16,0,0,Check-Out,Luke Gross,gstewart@example.com,353.928.5049x4138,3573186792028977,2025-12-04 +Resort Hotel,0,26,2017,March,11,9,1,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,68.17,1,1,Check-Out,Jason Garcia,millerjessica@example.com,(818)825-1112,213121422798477,2025-07-17 +City Hotel,0,154,2017,March,13,26,1,2,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,105.69,0,1,Check-Out,Janet Davidson,edwardcasey@example.net,+1-689-644-8219,4995890821101980174,2024-05-08 +City Hotel,1,168,2017,August,33,13,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,161.76,0,0,Canceled,Anna Brown,jamesyates@example.com,+1-791-284-7888x1909,30296148872979,2024-03-31 +Resort Hotel,1,257,2017,October,43,27,4,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,179.0,179.0,0,Transient,109.42,0,0,Canceled,Sara Park,ejohnson@example.com,+1-449-283-7367x6331,3590106285176967,2026-02-18 +City Hotel,1,142,2017,September,37,9,2,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,132.57,0,0,Canceled,Brandi Beck,renee54@example.org,(322)650-0098x51309,4820032363634539,2025-04-13 +City Hotel,0,46,2017,June,25,20,2,5,3,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient-Party,177.56,0,0,Check-Out,Patrick Sullivan,jesse37@example.net,357.404.3758,341344010990430,2026-01-05 +City Hotel,1,22,2017,June,24,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,66.0,0,Transient,162.26,0,0,No-Show,Roger Buckley,websterkrystal@example.org,677.625.3645,4579539698414092585,2025-10-26 +City Hotel,0,202,2017,September,38,17,2,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.14,0,0,Check-Out,Bradley Cochran,middletonlisa@example.net,220.755.9173x9652,4645453844141780255,2025-07-27 +Resort Hotel,1,83,2017,May,21,24,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,116.91,0,0,Canceled,Mark Jackson,grahamlawrence@example.net,997.430.7178,6011355476694585,2024-07-28 +City Hotel,0,11,2017,November,47,21,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,173.0,77.0,0,Transient,64.23,0,0,Check-Out,Sara Carroll,bhernandez@example.com,606.233.5547x779,6593407764534829,2024-06-18 +City Hotel,0,9,2017,October,42,15,1,2,1,0.0,0,BB,NOR,Direct,Direct,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Transient-Party,45.68,0,2,Check-Out,Charles Rice,larry98@example.org,810-718-2235x1650,501802538527,2024-11-01 +Resort Hotel,0,10,2017,January,2,5,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,41.59,0,0,Check-Out,Kathleen Marsh,wattssusan@example.org,001-354-783-5216x574,4386297779134707,2025-06-15 +Resort Hotel,1,140,2017,February,8,19,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,138.0,179.0,0,Transient,42.44,0,0,Canceled,Nichole Smith,henrymorales@example.net,001-225-481-8645,370556665394915,2024-06-04 +Resort Hotel,0,35,2017,April,14,8,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,240.0,179.0,0,Transient,49.08,0,1,Check-Out,Brenda Marsh,qbrown@example.net,+1-866-637-5321x87841,4640877550196564945,2024-07-13 +City Hotel,0,4,2017,August,34,21,1,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,D,1,No Deposit,17.0,45.0,0,Transient,128.68,0,2,Check-Out,Taylor Schultz,reedcarol@example.org,001-439-606-2512x973,3568468082801728,2025-04-14 +City Hotel,1,151,2017,September,37,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.15,0,1,Canceled,Peter Arnold MD,bennettmeghan@example.com,668.833.0673x87858,561113021357,2025-05-11 +Resort Hotel,0,283,2017,October,42,19,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,79.35,0,1,Check-Out,Brooke Johnson,wcook@example.net,001-739-475-8416,6011564054737696,2025-05-09 +City Hotel,0,10,2017,July,31,30,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,129.0,179.0,0,Transient,130.28,0,1,Check-Out,Mary Durham,crystal46@example.com,001-871-688-6237,3519636163644627,2026-03-27 +City Hotel,0,15,2017,June,23,5,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,177.44,0,1,Check-Out,Gerald Snyder,hullvalerie@example.com,(426)947-0186x1918,4449329626654,2025-11-16 +City Hotel,1,162,2017,August,33,11,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.98,0,0,Canceled,Robert Hawkins,masonpatrick@example.org,+1-542-302-8934x1111,4220457218903118,2025-04-05 +Resort Hotel,0,94,2017,May,21,24,1,2,2,1.0,0,Undefined,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,142.0,179.0,0,Transient-Party,82.49,0,0,Check-Out,Brianna Bailey,hlove@example.net,(351)513-5451x3429,3542150425099399,2025-01-24 +Resort Hotel,1,365,2017,March,10,4,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient-Party,45.75,0,0,Canceled,Cody Love,cheryl35@example.org,576-563-1650,213162394810866,2024-09-25 +City Hotel,1,14,2017,April,15,12,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.54,0,1,Canceled,Michael Hunt,zmartinez@example.org,222.447.9944,3544410543999344,2025-10-28 +City Hotel,1,84,2017,December,52,24,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,85.2,0,0,Canceled,Maria Mccarthy,amandaturner@example.com,+1-402-245-6704x089,4439746434793890,2025-01-11 +City Hotel,1,9,2017,June,26,23,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,133.92,0,2,Canceled,Mark Black,myerskenneth@example.com,555.883.4983x015,340772642593829,2024-12-17 +Resort Hotel,0,32,2017,March,10,4,1,6,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,95.0,179.0,0,Transient-Party,44.79,1,2,Check-Out,James Roberts,guerramichelle@example.org,548-284-2722x68096,503855770429,2026-02-05 +Resort Hotel,0,32,2017,April,17,23,2,2,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,119.64,0,0,Check-Out,Rick Decker,sparksjared@example.org,+1-340-582-0972x40428,4154700838749860,2025-12-18 +Resort Hotel,1,6,2017,December,52,29,1,3,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,238.0,179.0,0,Transient,241.51,0,2,Canceled,Jason Howard,scampbell@example.org,401.489.7885,639060076861,2024-11-15 +City Hotel,0,12,2017,August,33,12,0,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,75.0,179.0,0,Transient-Party,101.05,0,0,Check-Out,John Hayes,twilkins@example.com,516.877.0857x8786,4953115794101340,2025-05-02 +Resort Hotel,0,1,2017,January,4,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,I,0,No Deposit,243.0,90.0,0,Transient,2.47,0,1,Check-Out,Melissa Lawson,willie14@example.net,001-809-316-7214x4286,4835961853817051380,2024-05-13 +City Hotel,1,51,2017,August,34,21,2,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,260.0,179.0,0,Transient,133.88,0,0,Canceled,Mitchell Johnson,xchung@example.net,+1-434-803-3626x754,4414490234548,2024-11-25 +Resort Hotel,0,7,2017,March,11,9,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.92,0,2,Check-Out,Madison Stanton,elliottjennifer@example.com,625.912.2533,4578452381947313,2024-05-13 +City Hotel,1,1,2017,December,49,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,D,0,No Deposit,7.0,179.0,0,Transient,230.9,0,1,Canceled,Erin Myers,autumn38@example.org,(684)548-6980x478,4933550944775251,2025-08-30 +City Hotel,0,14,2017,July,31,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Christina Davis,gaguilar@example.com,552.382.8801,3552980733148620,2025-10-26 +Resort Hotel,0,64,2017,August,32,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,245.0,179.0,0,Transient,241.45,0,1,Check-Out,Mark Gomez,gvega@example.com,+1-965-787-7993x9584,2433597693426676,2024-06-01 +City Hotel,1,171,2017,June,27,30,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.81,0,2,Canceled,Connie Hansen,cbrown@example.net,(441)275-4113x74799,563693041367,2025-08-01 +Resort Hotel,0,308,2017,April,14,4,1,5,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient-Party,42.59,0,0,Check-Out,Tammy Ramos,dcole@example.org,(696)259-7575,30371002397171,2024-07-07 +City Hotel,1,19,2017,April,17,24,1,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,135.61,0,2,No-Show,Hannah Terry,michelle52@example.com,+1-666-336-0564x7027,30083433012390,2026-01-01 +Resort Hotel,1,26,2017,January,3,15,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,49.59,0,3,Canceled,Lisa Gallegos,lmontgomery@example.net,488-731-6501,4463707000432362087,2024-06-25 +Resort Hotel,0,196,2017,April,14,3,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient-Party,59.83,1,1,Check-Out,James Haley,jesse41@example.org,542.875.9229x6715,5505207734917685,2026-03-08 +Resort Hotel,0,3,2017,March,10,4,0,2,1,0.0,0,HB,CN,Online TA,Direct,1,1,1,A,D,1,No Deposit,12.0,179.0,0,Transient-Party,53.0,0,1,Check-Out,Carl Pennington,tmejia@example.org,(731)210-6739x1026,3518076789860870,2025-06-25 +City Hotel,0,1,2017,May,20,15,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,15.0,179.0,0,Transient,5.8,1,0,Check-Out,Allison Davis,leedanielle@example.org,984.746.5156x4380,4772917620429,2025-07-30 +Resort Hotel,1,230,2017,May,18,5,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,0,Transient,99.81,0,0,No-Show,Nicholas Lee,acostaanthony@example.org,+1-595-979-6239x939,30217111117317,2026-01-02 +Resort Hotel,1,154,2017,July,30,22,2,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,14.0,179.0,0,Transient,214.32,0,0,Canceled,Thomas Olson,daniel86@example.net,980-336-9452x78662,4672265813669247,2026-02-15 +City Hotel,0,139,2017,August,31,2,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,252.0,0,1,Check-Out,Mary West,jacob35@example.net,817.575.8863,2279162787792975,2025-12-10 +Resort Hotel,0,162,2017,October,41,12,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient-Party,132.07,0,0,Check-Out,Nicole Gilbert,njohnson@example.net,3635481135,377417629185407,2024-09-20 +City Hotel,0,87,2017,March,12,22,1,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.68,0,3,Check-Out,Alan Murphy,kmejia@example.com,236-395-0162,3584539700198364,2026-01-08 +Resort Hotel,0,194,2017,July,30,26,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,178.64,0,1,Check-Out,Monica Vincent,sforbes@example.net,+1-678-288-6943x203,213163357143675,2024-05-12 +City Hotel,0,3,2017,March,13,27,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,239.0,179.0,0,Transient,129.56,0,1,Check-Out,Rebecca Hubbard,tarawilliamson@example.net,(414)327-9591x570,3511297203638018,2024-12-14 +City Hotel,1,3,2017,November,45,9,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,231.0,0,Transient,41.65,0,0,Canceled,Kristin Sampson,awilson@example.org,931-233-4581x727,6587364386816100,2025-10-12 +City Hotel,0,4,2017,January,2,4,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,127.0,179.0,0,Transient-Party,154.51,0,0,Check-Out,Elizabeth Lawrence,eric67@example.org,962.419.9674x37603,30560284669923,2024-08-05 +City Hotel,0,13,2017,February,8,18,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.43,0,0,Check-Out,Debbie Lamb,jason14@example.org,980-457-1187x0132,6581149605088169,2025-09-12 +City Hotel,0,2,2017,October,41,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,47.85,0,1,Check-Out,Tina Hall,meganzimmerman@example.com,(553)658-1846x251,2681162765505227,2024-11-06 +City Hotel,0,9,2017,December,50,12,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,6.0,179.0,0,Transient,84.33,1,2,Check-Out,Justin Chapman,erinlevy@example.net,+1-556-885-9214x475,4455307383292548,2024-08-10 +City Hotel,0,14,2017,January,2,3,0,2,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,111.04,0,0,Check-Out,Tina Ortiz,brandygarcia@example.com,(802)586-6037x171,2720690482854067,2025-08-26 +City Hotel,1,39,2017,October,41,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,159.1,0,0,Canceled,Anthony Elliott,lynn01@example.net,(510)905-6406,4472534271504457,2024-11-10 +Resort Hotel,0,22,2017,March,11,9,2,5,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,227.0,0,Transient,146.3,0,0,Check-Out,Beth Cross,alexander52@example.net,431-787-7796x691,38341128994096,2025-12-29 +City Hotel,0,3,2017,October,40,4,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,108.43,0,0,Check-Out,Robert Scott MD,teresa03@example.org,363-301-9600x12641,6011261760936460,2026-03-01 +City Hotel,0,55,2017,April,17,27,0,2,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,112.39,0,1,Check-Out,Robin Rice,barbercrystal@example.com,+1-415-836-7727x494,36337326101627,2024-04-17 +City Hotel,1,161,2017,August,35,29,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,167.34,0,2,Canceled,Sandra Rivera,scarey@example.org,+1-653-813-2289,4585820919386520,2025-09-28 +City Hotel,0,1,2017,March,13,28,1,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,1,No Deposit,15.0,179.0,0,Transient,109.65,0,2,Check-Out,Brittany Macdonald,ysweeney@example.org,260.851.9748x93793,4950154222553064,2024-12-01 +City Hotel,0,52,2017,May,19,10,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,140.38,0,1,Check-Out,Matthew Bates,matthewjohnson@example.net,001-357-441-9557x1418,38185515634082,2024-09-20 +City Hotel,0,256,2017,July,30,24,1,4,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,94.91,0,0,Check-Out,Shelia Moore,sydney56@example.com,001-771-570-9197,3557116591813485,2025-10-11 +City Hotel,0,33,2017,June,25,19,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.39,0,1,Check-Out,Michelle Santana,michellebarber@example.net,(873)869-8772x735,342059030290335,2025-10-12 +City Hotel,0,19,2017,April,17,25,0,1,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,136.29,0,0,Check-Out,Ashley Robinson,jonescorey@example.org,4504845515,4734153460631864239,2025-02-28 +Resort Hotel,0,8,2017,December,50,9,1,3,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,55.02,0,2,Check-Out,Daniel Kim,charles51@example.com,001-826-248-7646,372932599406463,2026-01-11 +Resort Hotel,0,144,2017,March,11,15,1,0,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,80.57,0,0,Check-Out,Grace Nichols,brenda64@example.net,001-372-873-7705x66239,4894743238057113979,2026-01-28 +City Hotel,0,43,2017,April,15,10,1,2,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,84.58,0,1,Check-Out,Tom Henderson,ugonzalez@example.net,+1-693-487-6049x49894,3537067581641276,2024-09-09 +City Hotel,0,22,2017,September,38,21,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,109.2,0,0,Check-Out,Margaret Shaw,millerjenny@example.org,001-917-896-2486,2259241633306240,2024-07-17 +City Hotel,0,88,2017,April,17,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,254.0,0,Transient,51.63,0,0,Check-Out,Jennifer Nguyen,greeneabigail@example.com,(493)386-7602,6556342272572356,2025-06-15 +City Hotel,0,94,2017,July,29,14,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,216.97,0,2,Check-Out,Karen Adams,jason31@example.org,698.435.3881,3569890240489196,2025-05-20 +City Hotel,1,414,2017,August,32,11,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.27,0,0,Canceled,Gabriel Andrews,nathan71@example.net,001-661-710-5782x99398,2257529861490278,2025-04-16 +City Hotel,0,17,2017,March,12,21,2,4,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,105.72,0,2,Check-Out,Bobby Howard,spearson@example.com,494.470.2900x648,4450911210725227801,2025-09-08 +City Hotel,0,32,2017,October,42,16,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,99.91,0,0,Check-Out,Timothy Morris,robertmurphy@example.org,+1-430-687-3662x45641,378883552991120,2026-02-19 +City Hotel,0,0,2017,July,28,8,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.9,0,0,Check-Out,Richard Rivera,edwardpotts@example.org,(615)614-1053,4232109843660250,2026-03-17 +Resort Hotel,1,39,2017,February,6,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,169.0,179.0,0,Transient,83.74,0,0,Check-Out,Tammy Graves,hgreene@example.org,714-853-9756x4732,4777092578249450,2024-05-06 +City Hotel,0,161,2017,July,30,22,2,5,2,1.0,0,BB,ITA,Direct,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,134.12,0,2,Check-Out,Joshua Ellis III,matthewwilliams@example.org,377.469.2808x97007,6011644155859597,2024-05-28 +Resort Hotel,0,32,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,237.0,179.0,0,Transient,205.26,0,1,Check-Out,Amy Fields,ronalddiaz@example.net,8124789467,6540786354080218,2025-05-16 +Resort Hotel,0,0,2017,March,11,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,16.0,78.0,0,Transient,49.22,0,0,Check-Out,Janice Clay,lindamitchell@example.net,(232)761-9457,378781384497151,2025-06-24 +Resort Hotel,0,173,2017,July,28,11,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,222.58,1,2,Check-Out,Jessica Morris,wrightdavid@example.org,001-538-698-1485,3563243997013114,2025-05-04 +Resort Hotel,0,16,2017,January,4,24,1,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,56.77,0,1,Check-Out,Paul Wilson,jeff49@example.net,445-947-5593x331,3505749545272391,2026-03-05 +Resort Hotel,0,1,2017,March,13,23,1,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,15.0,179.0,0,Transient,141.22,1,0,Check-Out,Katherine Scott,bhunter@example.net,001-352-291-1636,4571338976292073,2025-02-18 +Resort Hotel,0,202,2017,August,33,16,3,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,62.45,0,1,Check-Out,Louis Kelly,crystal13@example.org,001-928-307-1446x17080,3530171038879567,2025-08-06 +City Hotel,0,68,2017,June,26,25,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,119.74,0,1,Check-Out,Randall Osborne,jessicabrown@example.com,5185742831,4009591929402244919,2025-11-11 +Resort Hotel,0,29,2017,April,15,9,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,127.21,0,1,Check-Out,Stephen Carr,williamskatrina@example.org,264.727.1607,347675574225737,2025-05-16 +Resort Hotel,1,145,2017,June,26,25,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,108.93,0,1,Canceled,Kyle Young,noah89@example.org,+1-865-623-8217,30124514947367,2025-04-23 +City Hotel,0,147,2017,September,37,13,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,168.98,0,1,Check-Out,Susan Williams,kimberly81@example.com,001-551-462-1276,378162788310664,2025-12-05 +City Hotel,0,18,2017,October,41,13,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.97,0,0,Check-Out,Heather Gordon,gallegosjennifer@example.net,+1-729-231-9847x874,30525398374785,2025-07-03 +Resort Hotel,0,21,2017,March,13,23,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,72.0,179.0,0,Transient,78.37,0,2,Check-Out,Russell Foster,brandymoore@example.org,5594506218,4102894644228,2025-11-17 +City Hotel,0,16,2017,June,25,21,1,2,2,2.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.95,0,2,Check-Out,Andrew Blake,comptonfred@example.com,7853459871,377609783453205,2025-10-27 +Resort Hotel,0,96,2017,June,26,24,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,38.0,179.0,0,Transient,113.51,0,0,Check-Out,John Fowler,heather64@example.org,793-284-1592,4519002459050545715,2024-06-04 +City Hotel,0,54,2017,December,49,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,16.0,222.0,0,Transient,42.31,0,0,Check-Out,Douglas Martinez,fdalton@example.com,201-755-4760x542,5196804494241191,2024-10-15 +Resort Hotel,0,149,2017,April,16,15,0,2,2,1.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,332.0,179.0,0,Transient-Party,131.14,0,0,Check-Out,Joshua Mcgee,guerrawilliam@example.net,001-868-415-2986,6552480388827688,2026-03-10 +City Hotel,0,8,2017,May,19,5,1,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,13.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Matthew Jackson,tryan@example.com,+1-390-687-6229x05951,30101249390626,2026-02-16 +Resort Hotel,0,138,2017,August,33,13,0,4,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient,150.91,1,2,Check-Out,Juan Bradley,spencerlance@example.org,5015255064,6011160488551694,2024-06-04 +City Hotel,0,295,2017,July,27,3,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,120.27,0,0,Check-Out,Dawn Pena,john52@example.com,001-631-348-1184x60055,4382828711850028,2025-01-09 +City Hotel,0,0,2017,October,40,5,0,1,2,0.0,0,BB,ISR,Online TA,Direct,0,0,0,A,E,1,No Deposit,80.0,179.0,0,Transient,50.32,0,2,Check-Out,Bradley Schultz,vanessamorales@example.org,716.812.5068x94965,377774887341670,2024-12-29 +City Hotel,0,46,2017,April,17,24,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,87.03,0,3,Check-Out,Amanda Smith,freemantheresa@example.net,(565)204-0842,4776815939005,2026-01-25 +City Hotel,1,4,2017,August,35,30,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,18.0,179.0,0,Transient,242.72,0,0,No-Show,Thomas Spencer,amberblackwell@example.net,652-867-6175,3577565845469617,2024-07-23 +Resort Hotel,0,21,2017,March,11,14,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,101.06,0,1,Check-Out,Scott Harrell,cmullins@example.com,(780)778-8783x380,3507459670993898,2025-07-28 +City Hotel,0,288,2017,August,32,5,0,4,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.72,0,2,Check-Out,David Norton,danielsmason@example.org,653.680.7241x0074,6531889847873115,2025-03-16 +City Hotel,0,40,2017,March,12,18,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,88.37,0,2,Check-Out,Jennifer Burgess,singhmichael@example.com,(295)890-0954x18789,344514178411463,2024-08-26 +City Hotel,0,62,2017,September,36,6,0,1,3,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,215.8,0,0,Check-Out,Gregory Green,mitchellwendy@example.com,(750)464-0144,6011711747765614,2026-01-08 +Resort Hotel,0,105,2017,April,14,4,2,7,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,108.2,0,0,Check-Out,Alan Sanchez,joshua07@example.com,+1-789-760-1956x48189,30329501285818,2025-02-18 +Resort Hotel,0,168,2017,March,14,30,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient-Party,59.82,0,0,Check-Out,James Gilbert,jameswalsh@example.com,552.682.4115,4640074314415921,2026-02-22 +Resort Hotel,0,1,2017,January,4,24,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,Scott Velazquez,sean11@example.org,576.597.8319x801,3589626077016348,2024-08-06 +Resort Hotel,0,101,2017,September,36,8,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,80.46,0,1,Check-Out,Jennifer Graves,tiffanylopez@example.org,(383)413-1783x25054,6521682831564069,2024-04-27 +Resort Hotel,0,226,2017,October,42,19,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,177.0,179.0,0,Transient,40.56,0,0,Check-Out,Anthony Cook II,kenneth48@example.com,929-342-2785x074,6515123145560574,2024-03-30 +City Hotel,1,41,2017,December,52,24,0,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,87.46,0,1,Canceled,Sarah Evans,perezjulie@example.org,(624)844-2317,5195210517643168,2024-09-14 +Resort Hotel,0,57,2017,October,40,6,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,241.0,179.0,0,Group,54.54,0,1,Check-Out,Ashley Vazquez,pmunoz@example.org,001-688-228-2419x32650,4507482873745030400,2024-04-14 +City Hotel,0,92,2017,June,27,30,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient,131.44,0,1,Check-Out,Samantha Bailey,qrivas@example.net,242-510-6312,4703471536608081,2025-11-20 +City Hotel,0,29,2017,March,12,18,1,3,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,74.86,0,1,Check-Out,Mark Vega,geraldryan@example.com,913.646.5349x422,3561683688755758,2024-04-13 +Resort Hotel,1,81,2017,June,26,28,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,2,Non Refund,37.0,179.0,0,Transient,105.23,0,0,Canceled,Holly Williams,lnelson@example.com,598.352.3687x60651,573515373278,2026-03-01 +City Hotel,0,262,2017,July,30,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,106.59,0,1,Check-Out,Dr. Tiffany Booker,wongmaria@example.com,697-844-0471x78717,5117783462187980,2025-07-25 +City Hotel,1,30,2017,December,49,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,88.14,0,0,Canceled,Sarah Banks,rodriguezdenise@example.net,727.925.0863,4639304111210172,2025-08-13 +City Hotel,0,207,2017,September,38,16,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,123.39,0,1,Check-Out,Kristin Valencia,jeffrey66@example.com,844.364.8379,213162383089522,2024-10-17 +City Hotel,0,0,2017,March,14,30,1,1,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,112.37,0,2,Check-Out,Jordan Baxter,millerdavid@example.org,001-488-294-7933,3538193668309121,2025-06-25 +City Hotel,0,45,2017,July,27,5,2,5,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.19,0,1,Check-Out,Ann Moore,ntorres@example.org,9977090453,676128370597,2025-11-13 +City Hotel,0,1,2017,August,34,22,2,0,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient,164.73,0,0,Check-Out,David Dunlap,zroberts@example.org,(646)757-0537,377588252426902,2024-04-22 +City Hotel,1,324,2017,July,28,12,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,F,A,0,Non Refund,11.0,179.0,0,Contract,62.71,0,0,Canceled,John Hunt,baileyevelyn@example.org,245.201.3483x772,4362965457211,2025-03-26 +City Hotel,1,302,2017,September,36,9,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,D,D,0,Non Refund,1.0,179.0,0,Contract,64.71,0,0,Canceled,James Griffin,weavermichael@example.com,+1-597-614-3409,6011455510612849,2025-09-05 +City Hotel,1,108,2017,June,27,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.68,0,0,Canceled,Sandra Guerra,katherine57@example.net,+1-475-835-2441x76679,3556675683113295,2025-10-17 +City Hotel,0,19,2017,October,40,6,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.6,0,2,Check-Out,Angela Harrington,carrillomichael@example.com,290.254.8350,5589928951589472,2025-12-08 +City Hotel,0,24,2017,September,35,2,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,11.0,45.0,0,Group,1.33,0,1,Check-Out,Laura Garcia,foleymichelle@example.org,+1-494-951-8487x1867,3521859517251925,2025-02-22 +City Hotel,0,135,2017,December,49,5,0,3,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,135.0,179.0,0,Transient,125.79,0,1,Check-Out,Joy Brooks,gonzaleswayne@example.org,+1-278-297-1566x7148,374019786456275,2026-02-27 +City Hotel,0,59,2017,June,24,13,2,4,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,75,Transient,104.06,0,2,Check-Out,Kenneth Watts,cmorrow@example.com,(929)444-0949x34916,30291291920055,2025-11-27 +City Hotel,0,10,2017,November,47,23,1,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,140.29,0,0,Check-Out,Ricky Munoz,dwaynejohnson@example.org,8454685892,3582348377353274,2025-02-27 +Resort Hotel,1,268,2017,March,9,3,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient-Party,47.4,0,0,Canceled,Daniel Garcia,james20@example.net,2516613447,3504211945777017,2025-08-02 +Resort Hotel,0,10,2017,March,13,25,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.7,0,1,Check-Out,Lisa Thompson,teresahogan@example.com,001-345-872-1824x87872,4947321385252,2024-07-08 +City Hotel,0,8,2017,December,52,29,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,90.74,0,1,Check-Out,Olivia Holmes,fmontoya@example.org,(220)330-0388,213161694423404,2024-04-05 +City Hotel,0,59,2017,October,43,21,2,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,155.53,0,0,Check-Out,Mary Alvarez,corey41@example.org,(970)629-1826x029,4331395127438089,2025-06-24 +City Hotel,1,9,2017,February,8,17,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,43.56,0,0,Canceled,Jeffrey Gray,gillkimberly@example.org,930.354.3303x17986,6011900550195551,2024-06-23 +City Hotel,0,128,2017,July,30,24,2,4,3,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,113.38,0,1,Check-Out,Steven Olson,edwardsjared@example.org,+1-876-968-7772,213169686645397,2025-10-20 +City Hotel,0,0,2017,March,11,9,2,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.8,0,1,Check-Out,Eric Salazar,bennettmichael@example.net,542.657.6428x434,4133497218983088,2025-06-23 +City Hotel,1,93,2017,April,17,27,2,2,2,0.0,0,HB,,Online TA,Direct,0,0,0,D,D,2,No Deposit,237.0,179.0,0,Transient,128.46,0,1,No-Show,Michelle Fowler,stonebrandon@example.org,+1-507-257-8928x87561,676258661401,2026-02-02 +City Hotel,0,19,2017,October,41,10,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.52,0,1,Check-Out,William Reynolds,jaredmaddox@example.net,(967)783-3538,2524873592566262,2025-12-09 +City Hotel,1,10,2017,April,14,6,0,1,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.71,0,0,Canceled,Johnathan Rogers,tmunoz@example.com,(705)222-7568,180080484585405,2024-07-30 +City Hotel,1,135,2017,June,23,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient,126.59,0,1,Canceled,Justin Sampson,cindymccoy@example.org,307.609.9593x2746,36290032162427,2025-08-17 +City Hotel,1,17,2017,March,12,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,80.52,0,0,Canceled,Sandra Baker,adamwillis@example.net,936.705.2681x987,213177848740170,2024-05-31 +City Hotel,0,49,2017,December,2,31,1,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,141.16,0,2,Check-Out,Stephanie Tucker,jeremycole@example.org,001-899-904-5461x7831,30020788620609,2025-06-27 +Resort Hotel,0,52,2017,December,51,18,2,7,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,28.0,179.0,0,Transient,85.82,0,0,Check-Out,Melissa Evans,obass@example.com,854.648.5137,6562517073770554,2025-10-04 +City Hotel,0,4,2017,August,35,30,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,167.88,0,2,Check-Out,Daniel Wheeler,zachary71@example.net,597.990.1580,3539255565606765,2024-09-08 +City Hotel,0,8,2017,August,34,23,1,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,99.6,0,0,Check-Out,Zachary Beck,davidsanders@example.com,+1-881-343-1054x49437,4159119733721734584,2025-12-23 +Resort Hotel,0,48,2017,March,11,12,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,270.0,179.0,0,Transient-Party,51.02,0,0,Check-Out,Travis Schneider,mendozaanthony@example.com,474-584-3628,3517171512072124,2025-11-28 +City Hotel,0,22,2017,December,49,3,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,8.0,179.0,0,Transient,76.67,0,2,Check-Out,Scott Miranda,johnsonkevin@example.net,261.881.3671,4242297462511,2024-10-15 +City Hotel,0,170,2017,July,30,29,0,3,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,62.23,0,0,Check-Out,Deborah Alvarado,alexandriafletcher@example.net,001-752-749-7077x8688,3538319067412519,2024-04-30 +Resort Hotel,0,22,2017,August,33,16,0,2,1,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,E,1,No Deposit,244.0,179.0,0,Transient-Party,132.12,0,2,Check-Out,Mary Benson,qwillis@example.org,864-334-6058,3546689432021355,2024-07-21 +Resort Hotel,1,52,2017,May,19,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,123.26,0,0,Canceled,Mr. Tommy Mcdonald,rachelbarker@example.com,(865)586-0480,4612120396666,2024-08-30 +City Hotel,1,211,2017,September,38,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,10.0,179.0,17,Transient,136.35,0,0,Canceled,Jennifer Garcia,torreskathleen@example.net,001-251-848-5047x259,3556061723477539,2025-12-05 +City Hotel,1,38,2017,February,7,15,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.07,0,0,Canceled,Matthew Simon,gonzalesangela@example.org,211.282.4223,2252235205583480,2025-07-28 +Resort Hotel,0,42,2017,December,49,2,1,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,84.81,0,2,Check-Out,Brandon Ferguson PhD,jacobsondavid@example.org,686-645-1277x926,4130200748409899021,2024-05-30 +City Hotel,0,60,2017,August,32,12,1,3,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,112.02,1,1,Check-Out,Daniel Ortega,williamsjamie@example.com,(384)618-4929x9882,570934812886,2024-12-29 +City Hotel,1,49,2017,September,38,19,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,221.01,0,1,Canceled,Scott Herrera,calhounhenry@example.net,(694)977-3779x37819,6545238896094021,2025-10-18 +City Hotel,0,10,2017,October,40,4,2,4,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,102.42,0,1,Check-Out,Hannah Smith,perry56@example.org,452-982-9821x0186,6500399003336250,2025-02-15 +City Hotel,0,37,2017,November,48,26,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.47,0,2,Check-Out,Nicole Floyd,brandi29@example.org,+1-567-772-6671x846,6011420128620519,2026-01-15 +City Hotel,0,0,2017,September,36,6,1,0,2,0.0,0,SC,FRA,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,Katelyn Harper,serranorose@example.org,001-629-638-1312x8398,4193298046488176,2025-04-02 +City Hotel,0,259,2017,August,34,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,111.3,0,0,Check-Out,Heidi Mason,lblackwell@example.org,(346)903-4764x15784,30250697657190,2025-03-02 +Resort Hotel,1,38,2017,December,50,10,1,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,52.23,0,0,Canceled,Jennifer Moore,vbanks@example.com,349.631.1784x51181,180014387841912,2025-04-18 +City Hotel,0,147,2017,December,51,23,0,2,2,0.0,0,HB,,Groups,Corporate,0,0,0,D,E,0,No Deposit,31.0,179.0,0,Transient,55.77,0,0,Check-Out,Kiara Stout,vmitchell@example.org,617-274-5926x13688,3521529961468149,2025-10-31 +Resort Hotel,0,150,2017,March,11,15,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,82.08,0,1,Check-Out,Autumn Lee,deborah49@example.com,+1-557-599-7152x1676,341128479508811,2024-09-12 +Resort Hotel,0,281,2017,June,26,28,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,111.83,1,1,Check-Out,Daniel Fitzgerald,karla92@example.org,3034392498,3585747279852092,2024-08-24 +City Hotel,1,50,2017,June,26,22,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.47,0,1,Check-Out,Margaret Wallace,zmejia@example.org,001-254-307-4562x272,3591557178444277,2025-12-19 +City Hotel,0,94,2017,September,36,5,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,104.08,0,2,Check-Out,John King,jimenezmelissa@example.org,+1-556-647-1979x56570,4315450872737787,2025-01-11 +City Hotel,1,39,2017,August,32,5,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,134.12,0,0,Canceled,Yolanda Wallace,stephanie33@example.com,513-271-4288x6544,3537334873911761,2024-07-25 +City Hotel,1,254,2017,November,48,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient,81.32,0,0,Canceled,Dawn Werner,adamsbrandi@example.com,562-392-2422x552,4767387698060258575,2025-08-13 +Resort Hotel,0,17,2017,January,2,5,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,111.3,0,1,Check-Out,Katherine Pacheco,brookevelasquez@example.org,(210)346-4317x711,30483071354460,2025-02-03 +City Hotel,1,165,2017,June,23,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,F,A,2,Non Refund,11.0,179.0,0,Transient,119.55,0,0,Canceled,Danielle Carter,blairsabrina@example.net,866.924.3108x9206,30050371059675,2025-08-27 +Resort Hotel,0,30,2017,October,40,5,0,3,2,2.0,0,BB,BEL,Online TA,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,167.8,1,0,Check-Out,Michelle Armstrong,ugrant@example.org,001-393-551-6735x04860,4566516793874200,2025-10-07 +City Hotel,1,53,2017,April,15,8,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.17,0,0,Canceled,Kelly Robinson DVM,lisanewman@example.net,7282271364,3579226904559685,2025-01-17 +Resort Hotel,0,306,2017,July,27,4,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,103.38,1,0,Check-Out,Randall Johnson,mikesanchez@example.com,338-492-7801,6510011474515969,2024-06-24 +City Hotel,0,95,2017,April,18,28,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,3,Check-Out,Connor Summers,kimberlywhite@example.net,001-535-931-0219,3524690516394854,2024-12-15 +Resort Hotel,0,2,2017,December,49,9,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,104.67,1,1,Check-Out,Blake Bailey,lhendricks@example.org,6187288776,3548451928888088,2026-01-15 +City Hotel,0,140,2017,March,14,30,2,4,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.06,0,2,Check-Out,Mary Williams,murrayjames@example.net,(956)857-8295x37798,4813385578861,2024-05-06 +Resort Hotel,0,32,2017,September,36,3,3,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,94.77,1,2,Check-Out,Paul Bentley,phooper@example.org,8179815147,570204465050,2024-06-15 +Resort Hotel,0,143,2017,March,13,23,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,141.98,1,1,Check-Out,Richard Nelson,ischwartz@example.net,+1-679-755-9571x09388,4704313467428353,2025-02-28 +City Hotel,0,360,2017,September,38,17,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.44,0,1,Check-Out,Joshua Haynes,amywall@example.org,439-838-1424x27665,213127404038451,2025-12-29 +Resort Hotel,0,8,2017,June,25,20,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,F,E,0,No Deposit,238.0,179.0,0,Transient,55.09,1,1,Check-Out,Joseph Edwards,vlong@example.net,+1-615-895-7408,4981287360751547,2025-08-27 +City Hotel,1,414,2017,July,27,5,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,108.25,0,0,Canceled,Steven Moore,gwhite@example.com,(590)923-6518,5409811137131500,2025-10-24 +City Hotel,1,223,2017,June,26,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,103.65,0,0,Canceled,Holly Cochran,paulmiller@example.net,001-400-315-2773,3535585272024579,2025-12-07 +City Hotel,1,111,2017,May,22,28,1,3,3,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,129.8,0,0,Canceled,Joshua Moody,frank19@example.com,001-285-401-2685x8344,4817216273225400049,2026-01-16 +Resort Hotel,0,2,2017,March,10,4,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient,130.49,0,0,Check-Out,Jill Rhodes,vbarker@example.com,457.232.6754x1217,6567383820304840,2024-06-16 +Resort Hotel,0,2,2017,December,49,5,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,331.0,0,Transient,53.46,1,1,Check-Out,Craig Patterson,randytrevino@example.org,001-898-909-3829,180053083844846,2025-05-30 +City Hotel,1,0,2017,March,11,9,0,2,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.22,0,0,Canceled,Mrs. Megan Kelly DDS,veronicalarson@example.net,514.432.6262x60509,6011368174817986,2024-09-27 +City Hotel,0,10,2017,September,36,8,1,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,145.02,0,0,Check-Out,John Gibson,jamesnorton@example.org,930.565.0452x1524,30302291497521,2025-10-19 +City Hotel,0,99,2017,December,49,5,2,5,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,98.13,0,0,Check-Out,Joshua Nelson,norman09@example.net,869-830-6021,3516994536273563,2024-07-02 +City Hotel,1,20,2017,August,32,9,1,1,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,131.27,0,0,Canceled,Daniel Owen,toddsanchez@example.org,2929826532,4820104227290,2024-05-27 +City Hotel,0,19,2017,October,42,17,1,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,143.47,0,0,Check-Out,Nicole Salazar,teresabrown@example.org,+1-323-752-5709x065,6555347457646041,2025-03-10 +City Hotel,0,37,2017,July,30,27,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,145.99,0,1,Check-Out,Colton Munoz,tiffany06@example.com,+1-308-658-5881x861,4392551187579487,2025-10-07 +City Hotel,1,17,2017,July,31,29,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.49,0,0,Canceled,Emily Vasquez,debra20@example.org,353.425.8840x02123,4423462366430133,2025-07-18 +City Hotel,0,165,2017,June,26,23,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,103.57,0,1,Check-Out,Lucas Reynolds,pwilliams@example.org,(461)787-2614,180064151028253,2025-10-07 +City Hotel,0,29,2017,April,15,9,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,132.49,0,1,Check-Out,Tammy Edwards,torressusan@example.com,624.660.1289x03954,180062483448355,2025-10-18 +City Hotel,0,54,2017,March,10,6,2,3,2,2.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,76.46,0,1,Check-Out,Monica Gutierrez,jonathan99@example.net,+1-909-710-4266x805,6011700585377855,2024-06-24 +Resort Hotel,0,19,2017,August,35,24,1,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,139.65,0,3,Check-Out,Stacey Sampson,swatkins@example.com,522-641-6487x76204,5353928199175252,2024-06-05 +City Hotel,1,83,2017,September,36,3,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,80.33,0,0,Canceled,Victor Gonzalez,gabriel72@example.org,(695)330-2248,3554990342225931,2025-09-14 +City Hotel,0,58,2017,September,37,15,2,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,139.97,0,1,Check-Out,Valerie Contreras,john81@example.com,+1-764-630-5762,2720287015393976,2025-09-03 +City Hotel,1,104,2017,October,41,9,0,3,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,85.79,0,0,Canceled,Suzanne Nunez,hernandezjoshua@example.com,503-407-9157x7291,180003781962853,2025-03-08 +City Hotel,1,161,2017,June,27,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,106.23,0,0,Canceled,Jackson Fuller,robert44@example.net,499.508.1844,4503624427396071466,2025-01-18 +City Hotel,1,307,2017,July,31,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,121.0,0,0,Canceled,Kristina Hernandez,thomas72@example.org,874.594.9068x7927,4983019056335,2026-01-13 +City Hotel,1,91,2017,August,33,13,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,115.24,0,0,Canceled,Kayla Mccann,petersandrew@example.com,267.564.0040,2712210656247574,2024-09-11 +Resort Hotel,1,38,2017,June,25,20,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,90.57,0,2,Canceled,Travis Caldwell,nixonzachary@example.com,952-415-9151x978,676353358416,2024-06-28 +Resort Hotel,0,36,2017,August,35,30,3,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,207.84,0,3,No-Show,Nicholas Pacheco,amanda54@example.org,616-278-6194,2327044819636531,2025-10-15 +Resort Hotel,0,117,2017,April,18,27,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,91.2,0,0,Check-Out,Michelle Marsh,ian15@example.net,361-535-4996x8410,6011245874023687,2025-01-05 +Resort Hotel,1,81,2017,July,27,5,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,133.26,0,0,Check-Out,Jonathon Gallagher,emilythomas@example.org,396-541-4184x950,4725710955372081,2025-01-12 +Resort Hotel,0,99,2017,April,14,2,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,100.79,1,2,Check-Out,Todd Garcia,brittney38@example.com,450.635.6993,30093947362538,2025-05-16 +Resort Hotel,0,144,2017,July,27,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,49.43,1,0,Check-Out,Megan Krueger,asanders@example.org,275.332.8034,6011898903553783,2026-03-11 +Resort Hotel,1,0,2017,November,45,5,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,308.0,179.0,0,Transient,43.76,0,0,Canceled,Carol Baker,vincenttaylor@example.com,+1-300-671-9006x42307,3538201628896846,2024-05-08 +City Hotel,0,30,2017,August,33,15,0,1,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,241.74,1,3,Check-Out,Erica Moore,susan98@example.com,(422)816-5745x4113,3570852652653435,2024-12-19 +Resort Hotel,1,266,2017,June,23,2,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,111.77,0,0,Canceled,Thomas Richards,samantha91@example.com,001-845-840-0165x670,4080308579013028618,2024-11-11 +City Hotel,0,116,2017,March,12,20,2,2,3,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,79.0,179.0,0,Transient,85.9,0,0,Check-Out,Kimberly Shaffer,wgilbert@example.com,001-673-329-7826x237,3552754986720512,2024-12-22 +City Hotel,0,181,2017,April,17,23,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,364.0500000000011,179.0,0,Transient,140.43,0,1,Check-Out,Gary Montgomery,branchwhitney@example.com,(719)611-7249,4788031207326252,2024-08-17 +City Hotel,0,174,2017,August,32,4,1,5,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,135.29,0,0,Canceled,William Blake,wlopez@example.net,915.779.7983x51245,6011136889936379,2025-05-07 +City Hotel,1,68,2017,March,13,27,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,169.0,179.0,0,Transient,84.85,0,1,No-Show,Dennis Soto,wmathis@example.net,+1-409-295-8373,4487038115489613,2025-01-22 +Resort Hotel,0,145,2017,April,14,1,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,1,Refundable,11.0,223.0,0,Transient-Party,78.89,0,0,Check-Out,Jaime Lewis,tara02@example.net,9138077160,3586000377784356,2024-06-25 +City Hotel,0,11,2017,September,37,15,0,2,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,98.91,0,0,Check-Out,Robert Ramirez,qschwartz@example.com,3688154467,4853215727311279423,2024-07-08 +Resort Hotel,0,35,2017,April,14,2,2,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,87.53,0,0,Check-Out,Ashley Davis,oedwards@example.net,(593)311-1628x44376,4280353992794020,2024-05-23 +City Hotel,0,2,2017,August,31,4,0,1,1,0.0,0,BB,,Undefined,Direct,0,0,0,A,B,0,No Deposit,18.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Kim Horn,james80@example.com,871.836.8704,4493476695133866,2025-01-19 +City Hotel,0,96,2017,June,26,23,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient-Party,105.52,0,0,Check-Out,Grace Lewis,meghanbaker@example.org,(858)736-6078x6623,2720389558604205,2025-12-19 +Resort Hotel,0,42,2017,September,37,16,2,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,B,0,No Deposit,30.0,179.0,0,Transient-Party,81.14,0,0,Check-Out,Chelsea Burch,grogers@example.net,833-501-8503,4772257054593,2025-01-01 +Resort Hotel,0,74,2017,March,10,8,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,45.5,1,2,Check-Out,Brianna Harris,thomashunter@example.org,507.849.8788,501851637253,2025-09-20 +Resort Hotel,1,154,2017,August,36,31,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,231.51,0,0,Canceled,Maria Garcia,alexander88@example.com,(456)703-7289,38635268212098,2025-11-08 +City Hotel,1,2,2017,April,16,18,2,1,3,0.0,0,BB,,Aviation,Corporate,0,0,0,D,E,0,No Deposit,13.0,163.0,0,Transient,108.36,0,2,Canceled,Jill Bean,wyattgarrett@example.net,277-811-0035x140,342176897139585,2025-04-11 +City Hotel,1,44,2017,May,19,9,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.04,0,0,Canceled,Eric Garcia,zamorasean@example.com,241.765.9347,2226619693353642,2024-07-06 +Resort Hotel,0,48,2017,March,9,1,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,1,No Deposit,19.0,179.0,0,Transient,40.2,0,1,Check-Out,Diana Crawford,rhondawilliams@example.com,9384436469,3526603556970838,2024-07-04 +City Hotel,1,95,2017,January,2,2,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,99.62,0,0,Canceled,James Taylor,vincentwatson@example.com,477-667-1071,3594635921159520,2025-08-09 +City Hotel,1,53,2017,April,16,14,1,0,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,167.34,0,0,Check-Out,Benjamin Stanley,hevans@example.org,898.807.7970x671,3522331198579817,2025-11-28 +Resort Hotel,0,49,2017,October,42,16,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,123.87,0,1,Check-Out,David Adams,mary86@example.net,2104415922,676280812212,2025-10-18 +Resort Hotel,0,122,2017,March,11,14,0,7,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,187.0,179.0,75,Transient-Party,0.5099000000000001,1,1,Check-Out,Brent Lopez,cookmegan@example.org,578.425.4534,4467011102772758,2024-09-19 +City Hotel,0,33,2017,October,40,4,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Group,43.87,0,0,Check-Out,Daniel Price,carrollchristopher@example.org,001-741-707-9707,2533974771406418,2024-07-04 +City Hotel,0,23,2017,May,19,5,1,2,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.45,0,0,Check-Out,Jordan Johns,kmiller@example.net,(323)425-0566x8157,2252880011445513,2025-10-29 +Resort Hotel,1,90,2017,August,33,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient,135.74,0,0,Canceled,Eddie Velez,trevorjohnson@example.org,968-567-9520x93864,2232656506840649,2024-07-08 +City Hotel,0,14,2017,August,35,27,2,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,182.45,0,2,Check-Out,Kenneth Esparza,tracylopez@example.com,(659)875-2122,2274553114163952,2024-11-04 +Resort Hotel,1,100,2017,June,24,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,25.0,179.0,0,Transient,3.17,0,0,Canceled,Karen Rodriguez,kristenreid@example.org,256-235-5958x93811,4241547082202,2025-01-23 +City Hotel,0,151,2017,April,14,2,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,141.65,0,2,Check-Out,Patricia Bennett,grace94@example.com,2013795052,30434440879042,2024-03-29 +City Hotel,0,36,2017,August,33,10,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,179.87,0,2,Check-Out,Jacqueline Webb,greensteven@example.com,+1-405-495-2727,501805241673,2024-11-07 +Resort Hotel,1,152,2017,April,16,18,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,83.67,0,2,Check-Out,Melissa Jones,bonnie19@example.org,+1-376-263-7130x6907,371684271184345,2024-06-04 +City Hotel,1,121,2017,September,38,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,178.26,0,0,Canceled,Tyler Porter,makaylaknight@example.net,(901)644-8771,3541162056931833,2025-02-05 +City Hotel,0,7,2017,December,52,30,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,140.34,0,1,Check-Out,Joshua Singleton,joann02@example.com,001-485-720-5693,4848379065152,2024-12-21 +Resort Hotel,0,40,2017,August,32,3,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,27.0,179.0,0,Transient-Party,232.81,1,3,Check-Out,Anthony Evans,jessica94@example.org,(252)607-0298x765,377800881018145,2025-07-05 +City Hotel,0,10,2017,October,42,15,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,136.26,0,1,Check-Out,Robin Walker,cpadilla@example.com,001-633-337-1949x9490,4544618748644009558,2024-06-30 +Resort Hotel,0,8,2017,March,12,17,0,4,2,2.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,243.0,179.0,0,Transient,98.38,1,0,Check-Out,Ronald Martin,hskinner@example.org,8226847190,3580539887251071,2024-12-06 +City Hotel,0,4,2017,August,33,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,220.61,1,3,Check-Out,Martha Flynn,colsen@example.org,001-758-907-4365x939,4846579748124156,2026-02-13 +Resort Hotel,0,169,2017,July,31,31,4,7,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,219.0,0,0,Check-Out,Jeffrey Evans,kristinacruz@example.net,882-441-9452,342237260698365,2024-05-06 +Resort Hotel,0,117,2017,June,25,17,4,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,239.72,0,1,Check-Out,Angela Johnson,dramsey@example.org,001-283-958-1699x1226,676163601765,2024-06-14 +Resort Hotel,0,48,2017,November,45,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,46.62,0,0,Canceled,Melinda Hall,dustinbryant@example.net,(894)355-7956,2283451906542468,2025-01-18 +Resort Hotel,1,27,2017,December,52,29,1,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,70.46,0,0,Check-Out,Jasmine Buck,robynjohnson@example.net,(525)573-9310,180090766432614,2024-05-28 +City Hotel,0,1,2017,March,11,9,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,7.0,179.0,0,Transient,140.74,0,2,Check-Out,Laura Sanford,owensterri@example.org,892.707.2392x5874,180092089550460,2025-09-26 +City Hotel,0,11,2017,March,13,27,1,3,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,129.09,0,0,Check-Out,Nicole Brewer,lauren70@example.org,474.392.4068,30145168700737,2025-09-24 +Resort Hotel,0,0,2017,January,2,8,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,C,0,No Deposit,14.0,179.0,0,Transient,34.58,1,0,Check-Out,Carlos Olsen,ckirby@example.com,+1-917-981-5142x182,2720839993921713,2026-02-17 +Resort Hotel,1,263,2017,July,30,26,3,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,218.57,0,1,Canceled,Dr. Linda Fleming MD,farleychristina@example.org,001-261-978-2922x3344,3512063111095181,2024-12-22 +City Hotel,0,33,2017,December,49,5,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Contract,223.98,0,1,Check-Out,Scott Hansen,fspencer@example.org,(718)636-9837,30384330064926,2025-02-15 +City Hotel,1,254,2017,September,35,2,1,5,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,103.27,0,0,Canceled,James Gardner,rosstammy@example.com,001-840-588-9069x93249,379965879222914,2025-10-30 +City Hotel,1,44,2017,October,42,19,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,76.01,0,0,Check-Out,Julie Smith,martinezanna@example.net,726.623.4178x05760,213114280035223,2024-12-06 +City Hotel,0,46,2017,April,14,2,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.12,0,0,Check-Out,Bruce Rivera,stephaniebarnes@example.com,559-485-3575x18291,180080302591692,2026-02-28 +Resort Hotel,1,379,2017,July,28,14,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,309.0,179.0,0,Transient-Party,64.01,0,0,Canceled,Kyle Walsh,johnsontammy@example.net,955-334-3925,341273374635481,2024-04-29 +City Hotel,1,246,2017,July,27,6,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,241.0,179.0,0,Transient,61.27,0,0,Canceled,Charles Baxter,coxamy@example.org,001-586-934-4766x660,5373453222658055,2025-06-25 +City Hotel,1,0,2017,February,7,16,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,61.5,0,0,Canceled,Jennifer Smith,jamie71@example.net,365-442-5497x59709,6011223563023425,2025-07-22 +City Hotel,0,33,2017,February,8,20,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,189.0,179.0,64,Transient-Party,79.38,0,0,Check-Out,Jay Moss,clarkdenise@example.org,202.311.1319,4671149241997381,2025-12-14 +City Hotel,1,17,2017,August,34,20,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,76.31,0,0,Canceled,Krista Hicks,michelle92@example.com,001-389-752-3811,342820152549133,2024-12-15 +City Hotel,0,0,2017,March,10,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,49.79,1,0,Check-Out,Donald Smith,patrick16@example.org,(492)399-6012x05168,4472866089277687912,2024-07-16 +Resort Hotel,1,58,2017,June,26,27,4,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,147.49,0,1,Canceled,Tanya Hall,mooreapril@example.net,001-587-675-1612x24448,4372486924922076,2025-08-16 +City Hotel,0,36,2017,May,22,27,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,92.22,0,2,Check-Out,Isabel Hall,seandavis@example.com,(796)773-5088,3561559312880834,2024-11-10 +Resort Hotel,0,0,2017,February,8,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,64.88,0,0,Check-Out,Elizabeth Fleming,cervantesjoseph@example.com,001-549-874-7226x020,342225632608337,2025-09-11 +City Hotel,0,39,2017,September,38,19,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,10.0,179.0,0,Contract,64.1,0,2,Check-Out,Angela Russell,wendyevans@example.com,(796)228-2568x2511,4619385747966174,2024-09-08 +Resort Hotel,0,93,2017,August,31,3,2,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,87.0,179.0,0,Transient-Party,105.09,0,0,Check-Out,Stephen Nguyen,rodriguezjohn@example.org,(464)237-6697,4734096584172012,2026-01-21 +City Hotel,1,186,2017,April,14,5,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,107.7,0,1,Canceled,Eric Hull,kperez@example.com,+1-492-526-4452,4744819235504020,2024-12-06 +City Hotel,0,54,2017,July,29,19,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,47.01,0,0,Check-Out,Daniel Vaughn,tmarsh@example.com,(924)735-2200,2705254454999704,2025-03-02 +Resort Hotel,0,195,2017,June,22,2,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,322.0,179.0,0,Transient,50.2,0,0,Check-Out,Alexander Martin,yvonnebryant@example.net,+1-216-936-3898x5574,639085283633,2025-02-21 +City Hotel,1,91,2017,May,18,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,238.0,179.0,0,Transient,111.26,0,0,Canceled,Anthony Morton,sarahbowen@example.org,480.409.4120x82998,4409054306087707,2025-01-24 +City Hotel,1,147,2017,March,14,30,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,89.25,0,0,Canceled,Thomas Sanchez,weaverdanielle@example.com,831-874-9661,6011624651519382,2024-12-27 +City Hotel,1,403,2017,August,32,5,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,221.27,0,0,Canceled,Gary Palmer,collinsbrandi@example.org,757-374-6793x95907,3533723413897478,2025-04-26 +City Hotel,0,9,2017,May,21,21,2,0,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,G,0,No Deposit,13.0,179.0,0,Transient,110.87,1,2,Check-Out,Michelle Knight,sfoster@example.net,366-225-0878x914,2645762872100963,2025-06-11 +Resort Hotel,0,18,2017,September,37,15,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,242.0,179.0,0,Transient,210.0,0,1,Check-Out,Daniel Morton,casey77@example.com,202.528.4722,3596459621320391,2024-04-21 +City Hotel,1,156,2017,July,30,23,2,4,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,236.0,179.0,0,Transient,214.48,0,2,Canceled,Jordan Vasquez,jessesimmons@example.net,+1-979-752-4669x2581,2494669427758603,2025-02-19 +Resort Hotel,1,141,2017,June,26,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,100.77,1,2,Canceled,Scott Lyons Jr.,cnelson@example.org,+1-448-212-3666x76118,4714669162931035630,2024-10-20 +Resort Hotel,1,320,2017,July,28,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,128.64,0,1,Canceled,Jonathan Solomon,xjohnson@example.com,(814)501-0088x98120,6502337526219445,2025-08-18 +City Hotel,0,2,2017,August,32,7,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,123.92,0,0,Check-Out,Elizabeth Anderson,alithomas@example.com,001-929-267-9634x373,4696129003901160,2025-05-13 +City Hotel,1,311,2017,September,39,27,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,121.05,0,0,Canceled,Melissa Smith,robertmay@example.com,(367)892-5521,2715319978452312,2025-02-02 +Resort Hotel,0,151,2017,May,18,1,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,181.37,1,2,Check-Out,James Fernandez,dmays@example.com,3957288561,4169688782506,2025-11-26 +Resort Hotel,0,69,2017,August,32,6,3,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,E,E,2,No Deposit,240.0,179.0,0,Transient,64.74,0,1,Check-Out,Mark Peters,karen63@example.com,700.609.0038x242,6011221630393672,2024-07-26 +City Hotel,1,299,2017,April,15,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,86.58,0,0,Canceled,David Cruz,krista53@example.org,310.501.4904x91681,374562889442064,2025-06-05 +City Hotel,0,2,2017,February,7,14,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.88,0,1,Check-Out,Peter Chavez,james86@example.org,001-518-245-3852x086,4059337596555183,2024-05-13 +Resort Hotel,1,414,2017,March,11,13,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,62.0,0,1,Canceled,Judith Glenn,xmarshall@example.org,+1-497-348-1007x55935,347471482095036,2024-09-09 +City Hotel,1,110,2017,June,23,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.26,0,2,Canceled,Antonio Hughes,jennifercoffey@example.org,(371)939-6659x87916,676265889482,2024-08-06 +City Hotel,0,16,2017,July,29,18,2,1,2,0.0,0,SC,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.61,0,1,Check-Out,Frederick Finley,ryan96@example.net,660-905-6139x10517,2225798849407469,2025-09-12 +Resort Hotel,0,4,2017,March,13,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,53.21,0,1,Check-Out,Tara Lloyd,chris67@example.org,+1-975-745-2142,180008259840085,2024-05-15 +Resort Hotel,0,102,2017,November,45,5,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,99.36,0,0,Check-Out,Mark Wilkinson,crossmelinda@example.com,+1-876-429-8536x303,4920110088395,2024-08-05 +City Hotel,0,140,2017,June,25,23,2,4,3,0.0,0,BB,,Direct,Direct,0,0,0,D,B,1,No Deposit,12.0,179.0,0,Transient,144.2,0,0,Check-Out,Margaret Kennedy,elizabeth83@example.com,001-374-971-5531x2630,180028008904446,2024-10-07 +City Hotel,1,59,2017,April,14,2,1,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.33,0,0,Canceled,Darren Thompson,bob25@example.net,001-986-896-2088,3576091662234084,2025-02-23 +City Hotel,0,5,2017,November,47,23,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,128.43,0,2,Check-Out,Jennifer Poole,gerald84@example.net,708.464.0446x6150,4123204393629,2025-09-25 +Resort Hotel,0,252,2017,November,46,16,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,94.34,0,1,Check-Out,Felicia Fischer,alvaradobrian@example.org,(814)916-7967,213142546274328,2025-05-03 +Resort Hotel,1,157,2017,March,12,21,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,267.0,179.0,0,Transient,117.48,0,1,Canceled,Dr. Zachary Peterson DDS,jeff24@example.com,+1-418-645-4686x1895,3520567568246584,2024-05-17 +City Hotel,1,4,2017,July,28,13,2,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,214.05,0,0,Canceled,Douglas Ferguson,samuel88@example.net,+1-503-363-5978,676245555195,2024-05-09 +City Hotel,0,92,2017,March,13,26,0,3,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,95.11,0,0,Check-Out,Eric Marks,jasondavis@example.com,868.307.9259,3508201713869720,2025-09-27 +Resort Hotel,1,1,2017,March,10,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,331.0,0,Transient,101.58,0,0,Canceled,Robert Anthony,porterjacob@example.com,+1-625-296-8290,30199203602937,2025-01-04 +Resort Hotel,1,154,2017,August,32,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,212.11,1,1,No-Show,Wanda Hughes,dyoder@example.org,438.325.6158x001,4801671772358967,2026-03-04 +City Hotel,0,18,2017,March,13,25,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.56,0,2,Check-Out,Sarah Martin,ahunt@example.net,8614128970,4921664743327307,2024-08-30 +City Hotel,0,0,2017,January,4,25,0,3,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.04,0,1,Check-Out,Kristopher Allison,mhayes@example.net,563.675.7825x015,6590602776177533,2025-11-02 +Resort Hotel,0,16,2017,August,33,17,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,128.42,0,1,Check-Out,Heather Riley,ulynn@example.org,443-887-8187x6233,371387164606610,2025-04-27 +City Hotel,1,51,2017,April,17,23,2,2,3,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,178.39,0,2,Canceled,Rebekah Gutierrez,alexanderdelgado@example.org,249-912-1363,180013894775993,2024-10-06 +City Hotel,0,137,2017,March,13,29,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.44,0,1,Canceled,Brian Webb,sonyarobbins@example.com,5898597435,4196143760338453,2025-09-12 +Resort Hotel,1,46,2017,June,26,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,125.86,0,0,Canceled,Kaitlyn Parker MD,llowery@example.org,001-897-363-9674x815,4676082789047050473,2025-04-07 +Resort Hotel,0,2,2017,January,4,23,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,H,0,No Deposit,13.0,63.0,0,Transient-Party,62.3,1,0,Check-Out,Patrick Barnes,fgregory@example.org,718.882.0769,3577672933070164,2025-07-28 +Resort Hotel,0,0,2017,March,11,11,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,55.47,0,1,Check-Out,Jorge Tyler,eriksweeney@example.net,+1-769-240-6052x829,4648251866721,2026-02-27 +City Hotel,0,16,2017,March,13,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,50.1,0,1,Check-Out,James Ray,murrayemily@example.com,697-882-6210x47607,5151929962511479,2024-08-05 +City Hotel,0,14,2017,March,13,27,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,48.25,0,1,Check-Out,George Harding,petersanna@example.org,(497)738-9975x17637,2323547825555150,2024-05-16 +City Hotel,0,18,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,0,Refundable,1.0,179.0,0,Transient-Party,141.73,0,0,Check-Out,Olivia Carpenter,marco77@example.com,+1-312-353-3564x018,213106515059796,2024-09-21 +City Hotel,1,49,2017,July,31,29,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,11.0,179.0,0,Transient,112.94,0,0,Canceled,Deanna Jennings,scott96@example.org,803-213-0792,3568157707860751,2024-08-13 +City Hotel,1,39,2017,August,33,15,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,167.13,0,2,No-Show,Hannah Butler,garciacharlene@example.org,733.464.5790x1362,3502971996902770,2024-04-18 +City Hotel,0,11,2017,July,27,4,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,139.94,0,1,Check-Out,Jamie Lawrence,carramanda@example.net,3072250955,180033186528157,2024-08-10 +City Hotel,0,136,2017,May,19,8,2,5,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,177.33,0,2,Check-Out,Tammy Finley,harperdouglas@example.com,526-714-9623x0906,676143437439,2025-08-21 +Resort Hotel,0,41,2017,December,50,12,2,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,89.73,0,1,Check-Out,Jennifer Robinson,weekskyle@example.com,588-793-3233x229,6011762799609416,2025-02-22 +City Hotel,0,127,2017,November,47,23,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,81.01,0,0,Check-Out,Jason Kelley,pheath@example.net,001-819-553-3491x22391,3539628766653804,2024-07-12 +Resort Hotel,0,0,2017,May,20,18,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,39.51,0,0,Check-Out,Randall Ramos,boydjermaine@example.net,303-337-3555x83286,2285975035429682,2026-02-01 +City Hotel,0,112,2017,January,2,5,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,K,0,Non Refund,28.0,179.0,0,Transient,74.76,0,0,Check-Out,Jesus Carlson,longpatricia@example.org,+1-534-548-4863x98302,4579784446442750,2026-03-18 +Resort Hotel,1,39,2017,August,32,8,4,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,312.0,179.0,0,Transient-Party,82.51,0,0,Check-Out,Peter Harris,franklinkane@example.org,+1-911-386-4905x943,4635241590380734,2025-07-26 +City Hotel,0,161,2017,August,32,10,0,2,1,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,1,No Deposit,36.0,179.0,0,Transient,85.03,0,0,Check-Out,Samantha Thomas,singhrichard@example.com,(245)480-9357x014,4392590567027,2025-01-19 +Resort Hotel,1,156,2017,November,45,5,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,106.43,0,0,Canceled,John White,nduncan@example.com,+1-257-913-0390x05944,3563395594851617,2025-11-24 +City Hotel,0,47,2017,March,10,8,2,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,E,1,No Deposit,15.0,179.0,0,Transient,148.47,0,1,Check-Out,Olivia Wallace,henrymorgan@example.net,001-542-384-6844x51543,3511371783080071,2025-03-09 +City Hotel,1,39,2017,November,47,18,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,1,No Deposit,12.0,182.0,0,Transient,111.92,0,2,Canceled,Angela Potts,zbarrett@example.org,001-832-816-7310x503,4617142236909393,2024-09-07 +Resort Hotel,1,95,2017,December,51,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,41,Transient,125.92,0,0,Canceled,Virginia Martinez,burnettmonica@example.com,957.576.1150,213152134535402,2025-02-27 +Resort Hotel,0,2,2017,January,2,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,60.96,0,1,Check-Out,Jennifer Lopez,rossadrian@example.org,937.225.0329,630477199131,2024-10-25 +Resort Hotel,0,40,2017,October,40,5,2,1,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,58.83,0,0,Check-Out,Jennifer Rasmussen,onguyen@example.org,871.823.7676x82530,676391463558,2024-08-13 +Resort Hotel,0,247,2017,April,16,16,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,C,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,101.13,0,0,Check-Out,Carol Harris,sarahfisher@example.com,4743918477,4488915439890,2024-04-21 +City Hotel,1,142,2017,July,30,22,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,220.3,0,0,Canceled,Michael Parsons,kirknicholas@example.com,+1-901-875-0955x636,4855605284081314579,2024-08-30 +Resort Hotel,0,101,2017,March,13,27,2,7,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,298.0,179.0,0,Transient,48.09,0,0,Check-Out,Charles Jensen,ediaz@example.org,6417668765,213156458963975,2025-07-01 +Resort Hotel,0,93,2017,July,27,3,2,4,2,0.0,0,HB,,Groups,Direct,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,134.36,1,1,Check-Out,Darlene Gray,stephen17@example.org,+1-487-412-0595x394,4960448154596846,2025-05-09 +City Hotel,0,107,2017,December,49,4,1,2,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,88.08,0,1,Check-Out,Robin Preston,michael24@example.org,5094298132,4989707336740931138,2024-08-20 +City Hotel,0,10,2017,June,25,20,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,200.51,0,1,Check-Out,Tiffany Gray,julie91@example.net,7069644131,2244006470685156,2025-10-02 +Resort Hotel,0,94,2017,April,17,22,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,77.6,0,2,Check-Out,Mrs. Cristina Stark,kerrkristen@example.net,(396)572-3081x9075,3520608953184830,2026-03-22 +Resort Hotel,0,399,2017,March,11,11,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,235.0,0,Transient-Party,100.23,0,0,Check-Out,Gregg Anderson,morgan90@example.com,3588618984,4417984175247505,2025-06-23 +Resort Hotel,0,148,2017,March,13,29,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,E,1,Refundable,31.0,179.0,0,Transient-Party,60.76,0,0,Check-Out,Joshua Myers,brownjoseph@example.com,+1-536-893-1892x358,503857776747,2024-07-29 +Resort Hotel,0,195,2017,August,32,5,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,C,0,No Deposit,249.0,179.0,0,Transient,106.0,1,0,Check-Out,Linda Davis,daniel81@example.com,001-278-923-9640x937,4464449068718313430,2024-03-31 +City Hotel,1,43,2017,February,8,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.48,0,1,Canceled,Dana Baldwin,oarroyo@example.com,731-291-5631x0047,6566987049259956,2024-05-27 +Resort Hotel,1,303,2017,August,34,23,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,61.51,0,0,Canceled,Richard Hensley,spencerjeffery@example.com,(686)866-9101,373866772657097,2024-07-17 +City Hotel,0,15,2017,March,11,12,1,0,2,0.0,0,SC,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.76,0,0,Check-Out,Joseph Clayton,williamspeter@example.net,001-231-709-9046x39295,180006112125116,2025-10-10 +City Hotel,0,59,2017,August,33,18,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,223.7,0,1,Check-Out,Joseph Chan,rvaughn@example.net,+1-478-939-7306,6535864285699591,2026-02-09 +City Hotel,0,64,2017,February,7,10,2,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,B,A,0,No Deposit,13.0,179.0,0,Transient,106.14,0,0,Check-Out,Brian Nixon,jasongross@example.org,(820)410-5011x4198,4618974529971,2025-03-19 +City Hotel,0,213,2017,May,22,30,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Transient-Party,98.38,1,0,Check-Out,Pamela Meyer,bmunoz@example.com,+1-723-589-2539x11808,630436151462,2025-04-04 +City Hotel,1,247,2017,September,36,5,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,116.34,0,2,Canceled,Christopher Bell,amandawoods@example.com,(617)404-1924,3550892950109098,2026-02-25 +City Hotel,1,3,2017,February,8,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,22,Transient,78.06,0,1,No-Show,Charles Pham,fweber@example.org,278.236.2057x83172,4496931251004091657,2024-06-22 +City Hotel,0,10,2017,August,33,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,85.69,0,0,Check-Out,William Ortiz,warenicholas@example.org,484.275.7328x50168,578709351683,2024-09-18 +Resort Hotel,0,0,2017,February,9,26,0,2,1,0.0,0,HB,PRT,Groups,Direct,1,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,47.23,0,1,Check-Out,Tracy Diaz PhD,eric23@example.net,001-316-957-4569x72147,4732827814314,2025-04-07 +Resort Hotel,1,139,2017,July,29,17,4,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,154.5,0,0,Canceled,Scott Bean,hhall@example.com,001-950-374-8757x88603,378765837382367,2024-10-09 +City Hotel,0,19,2017,June,23,5,0,2,3,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,1,No Deposit,178.0,179.0,0,Transient,95.09,0,0,Check-Out,Marcia Griffin,pamelaweaver@example.net,3879528333,4348811372582271301,2025-02-01 +City Hotel,1,147,2017,August,35,31,1,3,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,8.0,179.0,0,Transient,236.11,0,2,No-Show,Michael Williams,ismith@example.com,200-329-4313x4547,5578529313174723,2024-11-23 +Resort Hotel,0,32,2017,November,44,2,1,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,243.0,179.0,0,Transient,72.97,0,0,Check-Out,Tiffany Jackson,cshaw@example.net,(872)976-6887,4869593371980364,2026-03-17 +City Hotel,1,18,2017,April,14,3,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,25.0,179.0,0,Transient,95.17,0,0,Canceled,Benjamin Castillo,pamelabaker@example.net,473.337.4777,3517030930633372,2024-04-27 +Resort Hotel,0,28,2017,December,52,25,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,73.24,1,0,Check-Out,Anna Novak,kpowell@example.org,836-246-0461,4087699084388021,2024-10-07 +City Hotel,0,84,2017,April,14,6,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,137.01,0,1,Check-Out,Kristin Brandt,kimberly55@example.com,001-494-973-3724x7635,2382281653051300,2025-12-02 +City Hotel,1,164,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,103.7,0,0,Canceled,Tiffany Rowe,markfrench@example.com,6652621288,4050853768364614462,2024-12-04 +Resort Hotel,0,44,2017,September,36,2,2,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,201.83,1,2,Check-Out,Kimberly Kennedy,latoyagreer@example.net,485.784.7198x971,3527908175937095,2025-08-09 +City Hotel,1,23,2017,August,32,11,1,0,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,110.32,0,0,No-Show,Karen Gillespie,tiffany33@example.net,4873309481,6011636125930706,2025-01-27 +City Hotel,0,3,2017,March,12,20,2,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,9.0,179.0,0,Transient,104.2,0,2,Check-Out,Christina Salinas,omorales@example.com,+1-855-561-9455x3822,30086177431429,2024-05-07 +City Hotel,1,112,2017,December,52,24,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.4,0,0,Canceled,Robert Shaffer,angela40@example.net,(357)954-4631x155,180008003473936,2024-09-02 +Resort Hotel,0,31,2017,October,41,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Group,120.33,0,1,Check-Out,Rebecca Thompson,josephkelly@example.net,320-528-2155x731,342769642003419,2025-05-31 +City Hotel,0,147,2017,April,14,2,0,1,1,0.0,0,BB,AUT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,15.0,184.0,0,Transient,178.22,0,0,No-Show,Kara Estrada,anna93@example.com,426-494-3977,2224415128381098,2025-05-19 +Resort Hotel,0,18,2017,March,13,23,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.19,0,0,Check-Out,Eric Simmons,xwilliams@example.net,2222895688,3548527239934800,2024-10-06 +City Hotel,1,3,2017,August,33,12,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,231.69,0,1,No-Show,Philip Weaver,scotthunt@example.net,+1-659-442-3363x7152,4751769185400,2026-03-25 +City Hotel,0,13,2017,October,40,4,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,154.09,0,2,Check-Out,Kaitlin Smith,barreraashley@example.org,(747)471-8588,6011087477538020,2025-06-05 +City Hotel,1,16,2017,February,8,23,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,19,Transient,129.59,0,0,Canceled,Andrew Rose,bnewton@example.org,(816)399-7056x73179,4638350985599557056,2024-07-10 +City Hotel,1,91,2017,April,15,10,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,156.25,0,1,No-Show,Michael Hernandez,xgordon@example.com,669.231.7429x551,38046187349864,2025-11-13 +Resort Hotel,0,14,2017,December,49,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,67.0,0,Transient-Party,44.99,0,0,Check-Out,Michael Cross,knelson@example.org,001-449-290-4090x76526,4120386011390968231,2025-06-18 +City Hotel,1,18,2017,April,16,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,45.0,0,Transient,99.61,0,0,Canceled,April Cummings,thomas89@example.com,5742806103,4407048606587509,2025-03-15 +City Hotel,1,182,2017,July,28,12,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,142.33,0,1,Canceled,Edward Valentine Jr.,eric95@example.org,+1-539-685-2424x779,4976526354144,2024-07-10 +City Hotel,0,1,2017,May,19,9,0,1,2,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,138.26,0,0,Check-Out,Jonathan Taylor,christina72@example.com,+1-747-683-8556x53370,639083032016,2025-11-28 +City Hotel,1,159,2017,September,38,18,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,109.32,0,0,Canceled,Andrea Oneill,odavis@example.org,296-455-3473x763,4685327550107545,2025-02-19 +Resort Hotel,1,151,2017,June,26,25,0,6,2,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,Non Refund,174.0,179.0,0,Transient,55.43,0,0,Canceled,Jason Baxter,jamestate@example.org,001-372-222-5012x0294,5206000214007909,2025-01-05 +City Hotel,0,138,2017,July,29,19,2,0,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,2.84,0,2,Check-Out,Patrick Chan,brandon33@example.com,283-332-7495,4986192052187,2025-11-22 +City Hotel,1,13,2017,August,35,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,2.34,0,0,Canceled,Jared Becker,collinsmichael@example.net,001-303-946-8831x5455,4076090605228182294,2025-09-27 +City Hotel,0,55,2017,October,42,20,0,3,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,116.4,0,1,Check-Out,Donald Bryan,heidi38@example.net,229-678-1000,581814891189,2025-12-24 +Resort Hotel,0,13,2017,February,7,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,2,No Deposit,16.0,242.0,0,Transient,35.33,0,0,Check-Out,Nathan Brown,vgordon@example.org,(407)377-9567,379917185469069,2025-07-22 +City Hotel,0,11,2017,October,40,3,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.89,0,0,Check-Out,Pamela Carter,montgomeryjessica@example.net,(972)988-3234,4049339811179,2025-02-05 +City Hotel,0,12,2017,August,34,20,0,4,2,1.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Group,217.85,0,1,Check-Out,Teresa Lopez,lindsey93@example.com,253-250-5204x034,4921073022551637142,2025-07-02 +City Hotel,0,50,2017,June,26,30,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,74.0,0,Transient-Party,64.29,0,0,Check-Out,Walter Romero,richard88@example.com,567-714-9978x40149,4399101670791869,2024-11-07 +City Hotel,1,94,2017,May,19,4,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,62.36,0,0,Canceled,Steven Barker II,wfernandez@example.org,(898)579-8892x44977,4270481041988483,2025-08-15 +Resort Hotel,0,0,2017,December,50,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,E,C,0,No Deposit,245.0,179.0,0,Transient,54.56,1,1,Check-Out,Maria Simmons,olsencassandra@example.org,7717067547,060483672964,2024-04-01 +City Hotel,1,51,2017,September,36,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,107.52,0,0,Canceled,Sharon Rogers,samantha64@example.net,902.617.8445x1935,2235921403638703,2026-03-27 +City Hotel,0,16,2017,January,5,30,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,123.37,0,1,Check-Out,Brittany Taylor,christinekennedy@example.net,574.772.3163x8932,676340751228,2025-11-19 +Resort Hotel,0,289,2017,May,21,24,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,133.55,0,1,Check-Out,Mr. Matthew Peterson,mferguson@example.com,273-266-2758,375039700874543,2026-02-12 +City Hotel,1,9,2017,April,14,2,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,179.0,0,Transient,117.13,0,0,Canceled,Lisa Stevens,hurstjohn@example.org,+1-801-285-2162x603,676173925063,2025-12-29 +City Hotel,0,7,2017,June,23,5,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,138.4,0,1,Check-Out,Andrew Rodriguez,john20@example.com,(392)696-1196x33590,3577498739225822,2024-12-22 +City Hotel,0,12,2017,March,13,26,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,65.05,0,0,Check-Out,Lee Boone,laurenjensen@example.org,614-365-2242x5436,5529983907330425,2025-03-23 +City Hotel,0,107,2017,September,39,23,2,1,2,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,107.24,0,0,Check-Out,Mr. Luis Bell,bvillarreal@example.net,(348)950-2104x0512,213133180090161,2025-03-08 +City Hotel,0,32,2017,August,34,22,2,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,205.58,0,0,Check-Out,Amber Allison,rebekah84@example.net,669-257-3569,213157867129695,2025-10-14 +Resort Hotel,0,35,2017,December,50,9,1,10,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,85.84,0,2,Check-Out,Nathaniel Gomez,williamssusan@example.org,(338)442-4629x0998,4851358543254884330,2024-05-10 +City Hotel,0,20,2017,July,27,4,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,238.67,0,0,Check-Out,Michael Montes,cchambers@example.net,820.976.5474,675914816037,2025-09-05 +Resort Hotel,0,5,2017,August,35,26,0,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,239.0,179.0,0,Transient,243.22,0,1,Check-Out,Aaron Adams,dylanlopez@example.com,(794)545-5094x60948,4732542770398317484,2025-10-30 +Resort Hotel,1,2,2017,July,31,27,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,C,A,0,No Deposit,247.0,179.0,0,Group,112.81,0,0,Canceled,Christina Woods,kimsparks@example.org,001-616-229-1818x693,4941937344776163,2024-10-27 +City Hotel,0,0,2017,March,13,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,93.98,0,1,Check-Out,Christopher Blankenship,mario62@example.com,779-320-4572,3565565821805028,2024-06-03 +Resort Hotel,0,52,2017,May,19,5,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,319.0,179.0,0,Transient,118.83,0,1,Check-Out,Vincent Welch,marissathompson@example.com,(438)425-1463,2300976836187033,2024-11-15 +City Hotel,1,30,2017,March,10,3,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,44.43,0,2,Canceled,Frank Martinez,chenkevin@example.com,(400)873-2625,3556137743613780,2025-04-28 +City Hotel,1,1,2017,July,28,6,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,16.0,179.0,0,Transient,235.47,0,0,Canceled,Daniel Munoz,jeffrey01@example.net,(913)641-0822,344678992038123,2024-12-14 +Resort Hotel,0,1,2017,March,11,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,178.0,73.0,0,Transient,1.59,0,1,Check-Out,Douglas Martin,amberevans@example.com,(944)941-8699,38412328819001,2024-12-23 +Resort Hotel,0,15,2017,July,30,26,1,2,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,252.0,1,0,Check-Out,Richard Cook,conwaykevin@example.net,920-531-3806x11430,5583284420730503,2024-08-25 +City Hotel,0,56,2017,September,39,23,0,2,1,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,136.01,0,2,Check-Out,Elizabeth Villarreal,wmckinney@example.org,+1-622-259-2533x38962,6537240134708453,2024-09-18 +Resort Hotel,1,13,2017,March,13,29,1,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,129.41,0,3,Canceled,Tracey Melendez MD,gary56@example.com,213.562.1533,3536856693716344,2024-10-28 +Resort Hotel,0,30,2017,September,36,8,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,324.0,179.0,0,Transient-Party,57.79,0,0,Check-Out,Samantha Aguilar,amyedwards@example.org,+1-934-786-9945x7877,4350396120962535,2025-08-13 +City Hotel,0,21,2017,March,12,17,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,81.38,0,2,Canceled,Carlos Burke,victoria02@example.org,612-304-8940,2706846205332843,2024-04-08 +City Hotel,0,93,2017,June,26,23,2,0,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,78.35,0,0,Check-Out,Kimberly Steele,iolson@example.org,434.683.1932x0565,4539474671044031522,2025-11-30 +City Hotel,0,43,2017,September,39,27,1,3,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.42,0,2,Check-Out,Matthew Farley,paige67@example.net,247.606.7507,340268439013956,2025-08-06 +Resort Hotel,1,94,2017,April,17,24,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,107.62,0,0,Canceled,Suzanne Luna,pyates@example.org,7429853510,4051641217320366,2025-10-22 +City Hotel,1,49,2017,September,36,5,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,75,Transient,77.07,0,0,Canceled,Thomas Hamilton,millerjason@example.net,(555)573-7596x232,2445326676967076,2025-08-31 +City Hotel,0,143,2017,February,7,14,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,102.09,1,0,Check-Out,Karen Macias,julia03@example.net,344-292-5728x11966,3567970114458287,2025-04-14 +City Hotel,0,104,2017,March,12,24,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,90.13,0,2,Check-Out,Corey Torres,davisjames@example.com,9609062206,2258713559856375,2024-07-17 +Resort Hotel,0,11,2017,February,9,24,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,48.19,0,0,Check-Out,Grace Torres,lopezkristy@example.com,(529)751-1215,180058434543245,2025-05-18 +City Hotel,0,17,2017,March,10,8,2,1,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,231.9,0,0,Check-Out,Kelly Martin,carol61@example.net,+1-700-321-2641x6368,4103287976675717360,2025-01-08 +Resort Hotel,0,154,2017,March,13,31,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,103.47,0,0,Check-Out,Jamie Woods,ichase@example.org,721.720.7007x88339,36671270807346,2025-02-26 +City Hotel,0,60,2017,November,44,2,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.14,0,1,Check-Out,Jared Dawson,desiree03@example.org,7112529243,30174824062399,2024-10-07 +City Hotel,1,17,2017,June,25,21,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient-Party,221.06,0,0,Check-Out,Steven Delacruz,jcastillo@example.org,8752249000,213110562358333,2024-12-28 +Resort Hotel,1,12,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,47.99,0,0,Canceled,Sandy Austin,williambradley@example.org,717-666-6172,4039655396715,2025-07-23 +Resort Hotel,1,227,2017,November,45,4,2,0,1,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient,37.95,0,0,Canceled,Pamela Perez,fbutler@example.org,763-431-6451,4855640788769,2025-04-23 +City Hotel,0,1,2017,May,21,24,0,1,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.86,0,1,Check-Out,Maria Davidson,hroth@example.org,001-398-921-9712,3538290926890957,2025-06-12 +City Hotel,1,53,2017,September,38,22,0,3,2,0.0,0,FB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,120.37,0,1,Canceled,John Lin,simsamanda@example.net,4059513967,379338003569800,2024-12-23 +City Hotel,0,27,2017,August,32,7,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.2,0,3,Check-Out,Lori Le,autumn32@example.net,+1-338-680-3945x9440,4188173549774678,2024-11-02 +City Hotel,1,103,2017,April,15,12,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.87,0,0,Canceled,Alexandra Jones,erikmorris@example.com,750-800-9092,4508339272522328,2026-03-27 +City Hotel,1,414,2017,July,29,19,0,2,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,116.47,0,0,Canceled,Karen Woods,kelly56@example.net,674-530-3709x5112,347913285403917,2024-08-11 +City Hotel,0,18,2017,February,6,9,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,140.86,0,0,Check-Out,Shawn Sullivan,nathanperez@example.com,+1-862-801-1995,5136259021227218,2024-05-27 +City Hotel,0,25,2017,March,12,20,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,83.48,0,1,Check-Out,Tracy Whitaker,brownjames@example.net,288.936.5339x0938,3564983272692392,2024-07-04 +Resort Hotel,1,300,2017,December,49,4,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,237.0,179.0,0,Transient,95.17,0,1,Canceled,Dennis Moore,jford@example.com,389-497-5972,3587780693128003,2025-03-02 +City Hotel,1,409,2017,September,36,3,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.95,0,0,Canceled,Jason Greene,tchristian@example.com,447-532-3471x99853,569885778963,2025-10-03 +City Hotel,0,391,2017,October,40,4,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,79.22,0,0,Check-Out,Philip Robbins,martinezaaron@example.com,+1-835-211-5160,213103960141054,2025-03-02 +City Hotel,1,17,2017,May,22,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,125.41,0,0,Canceled,Ronald Villegas,kevin10@example.com,586-354-2744,5270612167779846,2024-12-27 +Resort Hotel,0,39,2017,November,47,24,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,55.96,0,1,Check-Out,Meghan Hernandez,bschmidt@example.com,3275487515,4699921028850934037,2025-09-30 +Resort Hotel,0,86,2017,May,20,11,0,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,42.56,0,0,Canceled,Tony Wilson,stephensanders@example.org,001-549-765-0716,213197566176969,2024-09-30 +Resort Hotel,0,0,2017,August,34,23,1,4,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,251.0,179.0,0,Transient,202.28,1,0,Check-Out,Robert Foster,jonathan89@example.org,001-989-511-8720x3791,370685932250392,2025-12-14 +City Hotel,1,59,2017,June,24,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,105.01,0,0,Canceled,Deanna Choi,ostewart@example.com,787-867-7561x280,4692028363126315,2024-06-04 +City Hotel,1,333,2017,October,40,1,1,4,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Transient-Party,128.53,0,0,Canceled,Kenneth French,marybrown@example.net,272.563.1239x9255,4418058819198306,2024-10-18 +City Hotel,1,23,2017,January,3,18,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,83.81,0,1,Check-Out,Madison Boyd,brownjennifer@example.com,001-845-737-6428x2589,3570741954391192,2025-05-18 +City Hotel,1,308,2017,September,35,1,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,100.86,0,0,Canceled,Leroy Walker,jordansuzanne@example.net,472.675.8767,675923594047,2025-03-14 +Resort Hotel,1,95,2017,July,29,19,0,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,14.0,179.0,0,Transient-Party,101.07,0,0,Canceled,Lisa Mercer,jeffrey18@example.net,819.586.9504x7345,4556236883994337,2026-03-01 +City Hotel,1,155,2017,July,30,24,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,124.0,0,0,Canceled,Robert Martin,olivia68@example.com,(492)512-1567,6580347565466505,2025-08-13 +City Hotel,1,1,2017,January,4,22,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,B,0,No Deposit,9.0,179.0,0,Transient,124.32,0,1,Canceled,Marcia Flowers,ievans@example.net,548.391.6713,3516385457869614,2025-01-16 +City Hotel,0,3,2017,October,42,16,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.8,0,0,Check-Out,Maria Morris,shane58@example.com,001-726-683-7461x4730,3543100268836539,2024-09-09 +Resort Hotel,0,150,2017,July,27,5,4,10,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,339.0,179.0,0,Transient,210.06,0,1,Check-Out,Jason Steele,marissadavis@example.com,001-366-970-4933,4052387409405236178,2024-09-28 +City Hotel,1,414,2017,October,40,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,60.71,0,0,Canceled,Rebecca Miller,justin06@example.com,671-284-4105x8446,4144052603708705108,2024-06-10 +City Hotel,0,1,2017,April,15,10,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,1,No Deposit,24.0,179.0,0,Transient,131.16,1,1,Check-Out,Scott Smith,jsmith@example.org,+1-379-368-2626x73657,4538204201846350,2025-02-05 +City Hotel,0,18,2017,October,41,8,0,3,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,221.0,0,Transient-Party,55.98,0,0,Check-Out,Jeffrey Durham,matthew52@example.com,450-885-9386x438,4002036812668233818,2024-05-20 +City Hotel,1,0,2017,October,41,14,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,49.61,0,0,Canceled,Julie Chan,posborne@example.org,(276)849-8395x180,6509123599064493,2025-05-31 +Resort Hotel,1,145,2017,February,5,2,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,110.02,0,1,No-Show,Adam Cortez,samantha76@example.org,001-673-526-5244x37276,4446366366534898,2025-08-24 +City Hotel,1,34,2017,December,51,20,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,107.59,0,0,Canceled,Justin Andrews,wilsonelizabeth@example.org,776-702-0605,4764499986156414,2024-07-23 +Resort Hotel,1,48,2017,May,20,12,0,2,2,1.0,0,BB,ESP,Direct,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,136.6,0,1,Canceled,Makayla Reynolds,jamesberger@example.org,(815)623-3928x04796,30429390708340,2025-05-14 +City Hotel,0,373,2017,October,40,2,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,62.71,0,0,Check-Out,Jennifer Hancock,jamesgriffith@example.org,792.366.4118x792,675964993421,2024-04-28 +City Hotel,0,103,2017,June,23,2,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,149.91,1,1,Check-Out,Elizabeth Hayes,brent33@example.com,+1-389-634-7439x91339,6526611787008479,2025-03-18 +Resort Hotel,0,90,2017,August,32,4,1,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Check-Out,Ryan Thornton MD,rwebb@example.com,+1-607-968-8546x30453,3563498551099756,2025-11-29 +Resort Hotel,0,241,2017,May,19,4,2,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,282.0,179.0,0,Transient,86.93,0,0,Check-Out,Amy Morse,tstephenson@example.com,646-389-5701x4174,2381503308753209,2025-11-03 +City Hotel,0,182,2017,June,23,7,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.51,0,0,Check-Out,David Morales,vburch@example.net,(428)861-0294,4133219469035719,2024-12-16 +Resort Hotel,0,58,2017,February,5,3,2,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,61.18,1,0,Check-Out,Charles Thornton Jr.,aramsey@example.org,519.897.4310,6011574233878410,2024-12-18 +Resort Hotel,0,28,2017,July,30,27,0,2,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,F,E,1,No Deposit,249.0,179.0,0,Transient,237.85,1,1,Check-Out,Trevor Shepherd,kimberlyjohnson@example.com,4806982417,5131441824465527,2024-10-09 +Resort Hotel,0,63,2017,August,34,21,1,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,315.0,179.0,0,Transient,122.55,0,2,Check-Out,Kenneth Howell,charlespatrick@example.net,(682)855-2802x580,180000847374263,2026-03-22 +City Hotel,0,42,2017,October,40,6,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Group,113.25,0,2,Check-Out,David Andrews,dpham@example.org,(263)923-2282x586,4014222729236667,2024-07-14 +Resort Hotel,0,109,2017,June,23,1,1,3,2,0.0,0,Undefined,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient-Party,63.97,0,0,Check-Out,Destiny Nash,kristinsanford@example.net,(335)748-0787x12655,4016885279274629122,2025-02-24 +City Hotel,0,11,2017,December,52,30,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,98.4,0,1,Check-Out,Megan Grimes,phillipsjustin@example.com,404.536.6964x362,6011804069910676,2025-05-13 +City Hotel,0,107,2017,May,20,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,113.28,0,0,Check-Out,Melissa Thompson,jamesmelissa@example.org,983.658.4846x9712,3575201674952752,2026-02-21 +City Hotel,0,298,2017,July,30,25,2,6,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,112.52,0,1,Check-Out,Michael Cook,tjackson@example.net,(934)502-0582,4239284889271404,2025-02-18 +Resort Hotel,0,29,2017,December,51,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,82.16,0,2,Check-Out,Ronald Mckenzie,matthew45@example.com,806.830.7656x3435,4716861109673,2025-10-28 +City Hotel,0,162,2017,March,11,9,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,68.0,179.0,0,Transient,203.19,0,1,Check-Out,Daniel Smith,raymond34@example.net,811-437-4540x9907,180085434329424,2026-03-15 +City Hotel,1,9,2017,May,21,23,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,130.81,0,1,No-Show,Mr. David Villanueva,deborahgriffin@example.net,283-740-1195x39988,4398803974114699605,2024-06-02 +City Hotel,0,147,2017,September,37,9,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.02,0,1,Check-Out,Amber Odom,jonathanwarren@example.net,938-663-5624x409,2720963865616431,2025-10-14 +City Hotel,0,15,2017,October,40,3,1,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.92,0,0,Check-Out,Brian White,jamesrobinson@example.com,001-215-582-2175x5619,503841777975,2026-03-05 +City Hotel,1,3,2017,March,13,26,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.82,0,0,Canceled,John King,sherrycrosby@example.net,+1-348-437-3739,676148124883,2024-07-11 +Resort Hotel,0,13,2017,April,14,2,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,108.11,1,1,Check-Out,Kimberly Lee,bauerandrew@example.org,768-301-2118x04960,3568702612851013,2024-05-12 +City Hotel,1,44,2017,August,32,8,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.84,0,2,Canceled,Brooke Allen,rayjamie@example.com,001-339-893-7413x8946,4652641278710830234,2025-02-20 +City Hotel,1,156,2017,December,49,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.19,0,0,Canceled,Frederick Jones,pleonard@example.org,(276)845-6918x72441,2234796750283894,2024-11-09 +Resort Hotel,0,107,2017,October,44,28,2,5,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,E,0,No Deposit,282.0,179.0,0,Contract,89.72,0,0,Check-Out,David Anderson,steven32@example.net,+1-786-337-8547,4286385573398718,2024-11-06 +Resort Hotel,0,139,2017,October,40,4,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,113.69,1,3,Check-Out,Allen Erickson,bruceross@example.net,627.802.9985x03167,2250957159886740,2025-04-11 +City Hotel,1,59,2017,May,19,5,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,111.84,0,2,Canceled,Herbert Ferguson,danabradshaw@example.net,890-872-7535,4839061678857286,2025-11-03 +City Hotel,1,299,2017,October,40,3,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,81.46,0,0,Canceled,Dr. Tyler Adams DVM,donna41@example.org,001-672-487-4062x682,4247455691870639,2026-01-09 +City Hotel,0,31,2017,May,22,29,1,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,164.45,1,2,Check-Out,Christian Woodard,lauramaxwell@example.net,(839)878-8836,30085831493049,2024-09-21 +City Hotel,0,101,2017,July,29,16,0,2,2,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,226.83,0,1,Check-Out,Megan Shah,jennifer55@example.net,4909207744,4381944246365696,2025-01-08 +Resort Hotel,0,15,2017,September,39,24,3,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,303.0,179.0,0,Contract,102.07,0,0,Check-Out,Benjamin Wheeler,brian45@example.org,001-210-327-8189x5853,4128593910239139,2024-09-02 +Resort Hotel,0,164,2017,August,35,30,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Check-Out,Robert Foley,rhodestodd@example.net,+1-339-777-4249,4239490152121,2024-06-27 +City Hotel,0,42,2017,May,21,20,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,Non Refund,14.0,179.0,16,Transient,110.11,0,0,Check-Out,David Owen,tinawilliams@example.org,616-859-1708x9396,4800395031433510853,2024-10-19 +City Hotel,0,14,2017,August,34,17,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,132.4,0,1,Check-Out,John Black,maryvargas@example.org,+1-475-966-4495,5476296718843186,2025-09-16 +City Hotel,0,93,2017,October,43,21,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Contract,88.8,0,2,Check-Out,Sarah Short,ealexander@example.net,475-397-3052,6510520625826851,2025-01-22 +Resort Hotel,0,114,2017,February,6,3,1,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,48.36,0,3,Check-Out,Stacey Berger,xmurphy@example.org,001-997-857-6763x44281,676166563038,2025-12-26 +Resort Hotel,0,32,2017,November,45,7,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient-Party,83.99,0,0,Check-Out,Patrick Daniel,paige62@example.org,(500)721-5100,2253448603601163,2024-08-03 +Resort Hotel,1,38,2017,December,52,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,137.8,0,0,Canceled,Tyler Huynh,hodgesjames@example.net,620.352.0808x04625,4232848030085321238,2024-11-19 +City Hotel,1,120,2017,September,39,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,62.89,0,0,Canceled,Lisa Baxter,thomas53@example.net,417-835-2436,4625618240212,2025-03-23 +City Hotel,1,147,2017,May,22,27,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.46,0,0,No-Show,Michael Garrison,househarold@example.net,001-565-626-6218,573032767200,2025-01-06 +City Hotel,0,12,2017,November,44,2,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,83.82,0,1,Check-Out,Jon Martinez,lemichelle@example.org,324.214.4125,180097091816502,2025-01-29 +City Hotel,0,25,2017,January,3,17,1,3,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.57,0,1,Check-Out,Jessica Hall,andersonmichele@example.org,001-843-292-9020x3312,370588659370395,2025-07-24 +Resort Hotel,0,94,2017,February,8,20,2,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,Lynn Anderson,perezgabrielle@example.com,5457514762,4820406995682613,2025-01-06 +City Hotel,1,46,2017,December,49,5,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,64.85,0,0,Canceled,David Larsen,millerdaniel@example.com,672.535.8116x900,4688695402366429,2025-05-17 +City Hotel,0,8,2017,November,48,30,0,1,2,0.0,0,BB,SWE,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,30.0,54.0,0,Transient-Party,61.46,0,0,Check-Out,Patrick Anderson,williehampton@example.com,836.547.1019,4790775447964522,2024-11-19 +City Hotel,0,12,2017,August,33,14,2,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,12.0,179.0,0,Transient,140.71,0,1,Check-Out,Megan Salas,jennayu@example.net,538.916.7750x5253,060435493337,2025-05-05 +City Hotel,1,11,2017,August,33,15,1,0,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Stephanie Moran,robleserica@example.com,+1-746-870-7728x2739,375444759458547,2025-06-13 +City Hotel,0,5,2017,May,19,4,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,138.65,1,1,Check-Out,Carlos Sawyer,anthony86@example.org,962-548-4755,4358821841184,2024-10-13 +Resort Hotel,0,21,2017,February,8,21,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,131.0,179.0,0,Transient-Party,35.73,0,0,Check-Out,Jeffrey Jones,erinmoreno@example.net,341.313.4885x141,639072650232,2025-08-07 +Resort Hotel,1,46,2017,December,51,23,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,25.0,179.0,0,Transient,61.9,0,0,Canceled,Christian Edwards,andrew01@example.net,481-415-8841x6197,4134665607688,2025-08-04 +City Hotel,1,84,2017,May,22,28,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,79.18,0,0,Canceled,Janice Stokes,usimmons@example.net,634.386.0385,4078475517134,2025-09-14 +City Hotel,1,191,2017,August,33,19,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.08,0,2,Canceled,Jennifer Griffin,sarahneal@example.net,293-238-6800x6352,3593851245850162,2026-02-14 +City Hotel,1,10,2017,May,19,7,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,7.0,179.0,0,Transient,140.05,0,1,No-Show,Elizabeth Jennings,fordrachel@example.com,(533)214-1648x940,3521777277317399,2025-06-26 +City Hotel,0,6,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,115.75,1,2,Check-Out,Jenny Durham,orrjessica@example.net,373-517-8065x04025,2264755564274161,2024-05-17 +City Hotel,0,161,2017,July,27,8,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,B,K,0,No Deposit,8.0,179.0,0,Transient,2.3,0,0,Check-Out,Natasha Watkins,nancy59@example.com,(271)617-6553x9822,6011623583146413,2024-07-13 +City Hotel,1,3,2017,July,30,25,2,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,48.34,0,1,Canceled,Blake Mitchell,ugonzalez@example.net,600.397.8211,4786082068990,2026-01-22 +City Hotel,0,10,2017,October,43,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.44,0,0,Check-Out,Morgan Atkinson,ktorres@example.com,001-865-391-1989,2701593477405197,2024-08-31 +City Hotel,1,84,2017,May,21,22,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,136.16,0,1,No-Show,Lindsay Washington,melissacharles@example.com,+1-493-934-5126x3570,4526397783044,2024-10-03 +City Hotel,1,414,2017,May,22,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,81.01,0,0,Canceled,Kathryn Garcia,youngchristine@example.net,567.933.9393x728,30424071293332,2024-10-02 +City Hotel,1,0,2017,December,49,9,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,85.33,0,0,Canceled,Amanda Lloyd,stacyhoward@example.net,+1-406-629-1866x521,5381829742306541,2025-06-23 +City Hotel,1,21,2017,December,50,8,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.24,0,0,Canceled,Mary Cruz,veronica52@example.net,362-501-9314x3038,3555816288369939,2026-03-01 +City Hotel,0,0,2017,May,19,9,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,110.69,0,0,Check-Out,Joseph Russell,christopherhardy@example.org,765-610-3335x81973,4786537529300722634,2025-08-21 +City Hotel,0,0,2017,May,18,5,2,2,2,0.0,0,BB,,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,112.43,0,0,Check-Out,Michelle Gross,nicholepaul@example.com,566-234-9289,675937350956,2025-05-03 +City Hotel,0,3,2017,October,40,2,0,1,1,0.0,0,BB,FRA,Direct,GDS,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,147.93,0,0,Check-Out,Robert Gomez,thompsonlindsey@example.com,001-935-815-1738x067,4796130746646877779,2024-07-20 +City Hotel,0,24,2017,May,18,3,1,2,2,0.0,0,BB,IRL,Corporate,TA/TO,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,98.84,0,1,Check-Out,Kyle Kaiser,stephen63@example.net,+1-341-585-2245x3798,630419935584,2024-08-23 +Resort Hotel,0,2,2017,December,50,9,1,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,P,D,1,No Deposit,14.0,178.0,0,Transient,64.75,0,2,Check-Out,Mary Reyes,kedwards@example.com,001-993-644-9227x269,4064644522689652,2025-10-03 +City Hotel,0,27,2017,March,13,27,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,138.75,0,2,Check-Out,Olivia Herrera MD,dennisgoodwin@example.com,592.443.9009x002,374341257471637,2024-12-09 +City Hotel,0,122,2017,May,19,4,0,4,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,126.93,0,1,Canceled,Joseph Smith,yarnold@example.com,384.343.4696,2358804884065342,2025-09-10 +City Hotel,0,47,2017,July,30,27,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,214.47,0,0,Check-Out,Michelle Moore,wjames@example.org,724.701.8890x44459,4356647845868,2025-02-04 +City Hotel,0,2,2017,August,32,9,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,105.46,0,1,Check-Out,Mark Spencer,richardellis@example.com,(647)372-1102,4354288036409733,2024-09-15 +City Hotel,1,257,2017,April,17,23,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,93.23,0,0,Canceled,Terri Roberts,drogers@example.net,+1-476-757-5824x307,4901092604921360,2026-02-19 +Resort Hotel,0,0,2017,December,52,30,1,1,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,H,B,0,No Deposit,10.0,179.0,0,Transient,40.52,0,1,Check-Out,Corey Clark,marcfarmer@example.net,767.605.3448x69593,503815739043,2025-10-06 +City Hotel,0,10,2017,September,38,20,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Contract,112.98,0,3,Check-Out,Albert Black,tchristensen@example.org,001-846-371-9346,4482596850090081,2025-04-17 +City Hotel,0,22,2017,October,42,19,2,5,1,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,92.02,0,0,Check-Out,Michelle Johnson,taylorjennifer@example.org,8949362622,343279376639676,2024-04-06 +Resort Hotel,1,158,2017,March,10,3,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,48.72,0,1,Canceled,Amber Ross,carterchristopher@example.net,826.721.1985x958,676175957353,2025-01-09 +Resort Hotel,0,0,2017,January,2,6,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,41.19,0,0,Check-Out,Stephen Wolf,antoniopetty@example.org,+1-700-920-5428,213177012966601,2025-01-06 +Resort Hotel,1,182,2017,September,37,15,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,106.75,0,2,Canceled,Virginia Watson,connermichael@example.org,548.798.2051,4395488417080,2024-05-06 +City Hotel,0,21,2017,September,38,23,1,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,101.03,0,1,Check-Out,Hannah Campbell,wilsoncrystal@example.net,001-244-856-8507,213169538529849,2026-03-17 +City Hotel,0,141,2017,May,22,26,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.61,0,2,Check-Out,Jennifer Snow,devonmckenzie@example.net,438.664.7866,30346295836457,2026-03-04 +Resort Hotel,0,34,2017,December,52,30,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,194.0,179.0,0,Transient,106.44,0,0,Check-Out,John Elliott,rgutierrez@example.org,001-407-696-0205x81366,4932333540753845,2024-10-28 +City Hotel,1,51,2017,April,14,2,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,142.89,0,1,Canceled,Jamie Robertson,yspence@example.com,(791)502-7655x4231,38040395104815,2025-08-16 +Resort Hotel,1,235,2017,October,40,1,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,240.0,179.0,0,Transient,89.22,0,0,Canceled,Jaime Oneill,carriemarquez@example.net,(308)626-6193,501863310170,2025-08-14 +City Hotel,1,88,2017,February,8,17,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.63,0,0,Canceled,John Garcia,graydana@example.net,(894)837-0241x993,4668811535661937247,2025-05-05 +City Hotel,1,54,2017,October,42,20,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,103.26,0,2,Canceled,Hector Williams,longkathryn@example.net,937-755-1487,213145048292318,2024-10-21 +Resort Hotel,0,163,2017,July,29,16,0,7,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Contract,108.52,0,1,Check-Out,Rebecca Nicholson,stephensoncrystal@example.com,+1-914-370-2510x854,4399410482865,2024-08-03 +City Hotel,1,200,2017,June,24,12,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,123.86,0,2,Canceled,Eric Howe,joel49@example.com,+1-576-564-6693x58827,4167018178261809,2024-06-05 +City Hotel,0,2,2017,March,10,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,88.03,0,1,Check-Out,Anthony Garrett,hcarlson@example.org,(335)752-8120x40497,5358828688058479,2025-05-17 +City Hotel,0,2,2017,September,36,9,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,45.0,0,Transient-Party,93.94,0,0,Check-Out,Kevin Thomas,edwardevans@example.org,001-770-699-1992x449,180054009261750,2025-11-14 +City Hotel,1,2,2017,February,6,10,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,No Deposit,11.0,83.0,0,Transient,47.24,0,1,No-Show,Brandy Moreno,glasssamuel@example.net,435.927.3441,4124066459545099783,2025-04-26 +City Hotel,0,8,2017,October,41,8,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,79.51,0,0,Check-Out,Jessica Chang,awells@example.net,001-851-298-6425x23890,4641472355947,2025-04-19 +City Hotel,0,1,2017,May,18,5,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,92.91,1,1,Check-Out,Randy Warner,ellisbrittany@example.com,(635)787-3832x066,4803149987744030,2025-01-06 +City Hotel,0,2,2017,January,4,22,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,14.0,179.0,0,Transient,61.41,0,0,Check-Out,Mr. Michael Garcia,luiswood@example.net,744.884.1047x4548,4697492267051380,2025-04-06 +City Hotel,1,14,2017,September,35,2,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,124.9,0,3,Canceled,Justin Rodriguez DDS,smithryan@example.com,001-222-692-3465x2096,6011613510622917,2025-08-15 +City Hotel,1,146,2017,August,31,2,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,137.63,0,1,Canceled,Ashley Campbell,thompsonkrystal@example.com,6566955668,4635662877880007579,2025-11-07 +City Hotel,0,95,2017,May,20,15,2,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,101.69,0,1,Check-Out,Mr. Samuel Thomas,david20@example.net,813-778-9155x2445,377230533120497,2025-07-09 +Resort Hotel,0,18,2017,October,41,10,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Contract,46.76,0,1,Check-Out,Brenda Brooks,oharris@example.com,753-964-2796,4070829729201698,2025-09-13 +Resort Hotel,1,306,2017,January,2,1,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,C,0,No Deposit,241.0,179.0,0,Transient,42.13,0,1,Canceled,Gabrielle Johnson,khanna@example.org,8103892846,180079823083908,2025-04-26 +Resort Hotel,1,24,2017,May,20,17,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Canceled,Glenn Lawrence,thomasmark@example.org,6105843591,572695155257,2026-01-18 +Resort Hotel,0,86,2017,December,50,10,1,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient-Party,83.98,0,0,Check-Out,Wyatt Cortez,osmith@example.net,774-464-4128x708,3524085188963773,2024-10-30 +Resort Hotel,0,1,2017,April,14,4,1,0,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,C,B,0,No Deposit,17.0,179.0,0,Transient,113.91,0,0,Check-Out,Laurie Pierce,coxgabriel@example.com,+1-334-899-2325,4512242820085372,2025-06-25 +City Hotel,1,100,2017,April,17,23,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,74.31,0,2,Canceled,Ryan Morales,nathanwalter@example.com,+1-352-246-4413,5540171676482925,2026-01-03 +City Hotel,0,94,2017,August,32,6,1,1,3,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,129.69,0,0,Check-Out,Joseph Mendoza,salazaredward@example.net,949-474-9561x2130,3515848232223861,2024-10-16 +Resort Hotel,0,0,2017,December,49,4,1,4,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,242.0,179.0,0,Transient-Party,63.51,0,2,Check-Out,Brent Lewis,edwardslaura@example.net,(981)472-9825x3006,585023970973,2025-02-06 +City Hotel,0,22,2017,July,29,15,2,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,235.24,0,1,Check-Out,Ricky Campbell,fmiller@example.net,921-307-5868,583449340780,2024-06-23 +City Hotel,1,15,2017,July,28,9,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,237.29,0,0,Canceled,Patricia Brown,vrose@example.net,001-797-467-8206,6518191991058057,2025-11-02 +City Hotel,1,141,2017,August,33,15,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient,206.96,0,1,Canceled,Bobby Walker,sharongriffin@example.com,620.581.8410,349905252914627,2025-01-13 +City Hotel,0,96,2017,December,51,18,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,182.0,179.0,0,Transient-Party,74.75,0,0,Check-Out,Eric Giles,lwhite@example.com,(467)688-1205,5415239528708474,2024-11-10 +City Hotel,0,93,2017,June,24,13,0,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,B,F,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,Mrs. Valerie Ramirez,johnsonhunter@example.org,(292)369-4764x11646,4836515686614057,2024-12-10 +City Hotel,1,1,2017,December,51,20,0,3,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,80.78,0,0,Canceled,Keith Nixon,davidmercado@example.com,(569)601-6335x481,3585745756700545,2024-08-12 +Resort Hotel,0,41,2017,January,2,12,0,1,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,307.0,179.0,0,Transient-Party,62.48,0,0,Check-Out,William Gutierrez,maxmccarthy@example.org,772-566-5089,36747879019226,2025-05-18 +Resort Hotel,0,20,2017,March,9,1,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,90.4,1,0,Check-Out,Jose Crawford,leonardchristopher@example.net,001-444-244-8763x854,213145864131186,2024-06-19 +City Hotel,1,246,2017,July,30,24,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.22,0,2,Canceled,Brett Obrien,ingrammorgan@example.org,753-439-2512x34945,180035761576402,2025-01-06 +City Hotel,0,34,2017,October,40,1,0,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,211.0,179.0,0,Transient-Party,62.93,0,0,Check-Out,Charles Moore,qwilliams@example.net,507.366.3927,340277650686713,2025-02-07 +City Hotel,1,105,2017,December,52,29,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.33,0,2,Canceled,Lynn Brown,qlowe@example.org,882.729.2758x275,4793701090757523,2025-07-07 +City Hotel,0,10,2017,August,32,9,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,163.66,0,3,Check-Out,David Anderson,manderson@example.org,(319)711-7881x8713,3502890359924009,2024-08-06 +City Hotel,0,86,2017,March,14,30,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,2,No Deposit,16.0,179.0,0,Transient,139.37,0,3,Check-Out,Donna Watson,devindelgado@example.net,405.689.6575,30276379728256,2025-11-14 +City Hotel,1,156,2017,April,15,9,2,6,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Contract,64.39,0,0,Canceled,Jocelyn Charles,katherinephillips@example.org,(790)309-2964,180066880283620,2024-11-20 +City Hotel,0,28,2017,October,43,21,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,194.0,0,Transient,114.39,0,0,Check-Out,Cathy Miller,genemurray@example.com,(669)461-5870x969,2720354193257892,2025-08-03 +City Hotel,0,52,2017,August,34,19,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.66,0,3,Check-Out,Justin Williams,charlesdean@example.org,(872)862-7667x66791,4841387015889088,2024-12-07 +Resort Hotel,0,149,2017,April,14,1,1,4,2,1.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,1,Refundable,11.0,223.0,0,Transient-Party,44.21,0,0,Check-Out,Thomas Rosales,dmorris@example.com,300-354-5703x497,6550460214885805,2024-10-27 +City Hotel,1,95,2017,May,18,2,0,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.93,0,3,Canceled,Scott Khan,zacharygonzales@example.com,001-200-434-6396x859,36334491498292,2024-12-06 +Resort Hotel,1,35,2017,July,27,7,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,252.0,0,1,Canceled,Benjamin Powell,yward@example.com,+1-891-487-5714,374521902682601,2024-12-03 +City Hotel,0,1,2017,April,18,27,0,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,161.5,0,1,Check-Out,Joshua Wilson,jacquelinefoster@example.net,(947)491-2481,372879436642711,2024-05-30 +City Hotel,1,51,2017,September,37,10,2,5,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,B,B,2,No Deposit,16.0,179.0,0,Transient,132.97,0,0,Canceled,Kent Freeman,mgonzalez@example.com,(968)863-5533x9851,378570090265659,2026-03-22 +City Hotel,1,97,2017,May,18,4,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,132.08,0,0,Canceled,Patricia Tucker,rebekah24@example.org,(457)911-6216x0982,2283939466649996,2025-10-07 +Resort Hotel,1,264,2017,September,37,13,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,92.31,0,0,Canceled,Lauren James,foxcarl@example.net,+1-499-363-4208x16476,180094488885109,2024-04-14 +City Hotel,0,20,2017,April,14,5,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,11.0,179.0,0,Transient,111.06,1,1,Check-Out,Bradley Taylor,smithangela@example.com,+1-986-267-2801x677,377263965333759,2026-03-27 +City Hotel,1,150,2017,July,29,14,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,170.5,0,2,Canceled,Frank Arnold,ofrancis@example.net,556-666-6553,569011925579,2025-06-02 +City Hotel,1,64,2017,September,36,8,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,63,Transient-Party,101.16,0,0,Canceled,Shannon Turner,vgillespie@example.com,+1-597-891-4498x70274,213121262802918,2025-09-30 +Resort Hotel,0,18,2017,July,30,23,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,240.0,179.0,0,Transient,252.0,1,0,Check-Out,Charles Lloyd,laura51@example.net,564.519.8128x8788,4232140626626523,2024-05-30 +City Hotel,0,13,2017,June,23,5,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,161.19,1,0,Check-Out,Justin King,marcusblair@example.org,(202)995-3742x3085,3591513771466159,2024-10-31 +City Hotel,0,101,2017,April,16,20,1,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.44,0,0,Check-Out,Jenna Ramsey,stevensrobert@example.net,789-351-1272,30183731788293,2024-07-02 +City Hotel,0,47,2017,September,36,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,45.0,0,Transient-Party,64.38,0,0,Check-Out,Joel Murray,iromero@example.com,+1-363-473-3540x988,6511533474989646,2024-04-23 +Resort Hotel,0,141,2017,June,23,7,4,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,132.84,0,2,Check-Out,Andrew Hahn,kaitlin84@example.net,(330)566-3729x3321,347115716267115,2024-08-11 +City Hotel,0,18,2017,February,6,7,1,0,2,0.0,0,SC,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.38,1,1,Check-Out,Shelby Gentry,oparsons@example.org,(907)399-6853,630459474007,2025-02-16 +City Hotel,0,58,2017,October,40,6,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.42,0,1,Check-Out,Christian Shelton,kevingeorge@example.org,001-651-896-4260,6011864514288524,2024-05-12 +Resort Hotel,0,13,2017,January,2,12,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,140.0,179.0,0,Transient,89.47,0,2,Check-Out,Robin Mora,steveruiz@example.org,464-714-1428x81986,4104872488412,2025-05-25 +City Hotel,0,111,2017,June,26,27,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient-Party,111.34,0,1,Check-Out,Lindsey Wright,esmith@example.org,(572)390-3142,213145289722098,2025-05-24 +City Hotel,0,29,2017,December,52,27,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,49.97,0,1,Check-Out,Abigail Miller,browncharles@example.com,+1-806-913-9868x1497,4024957300087975,2024-07-09 +Resort Hotel,0,0,2017,April,18,29,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,15.0,251.0,0,Transient,49.0,0,0,Check-Out,Timothy French,lindseythomas@example.com,777.426.4399,4792142944567548,2024-08-29 +Resort Hotel,0,32,2017,March,13,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,1,No Deposit,240.0,179.0,0,Transient,61.94,0,3,Check-Out,Laura Garner,gcollins@example.org,984.407.6972,30326521029218,2026-02-01 +Resort Hotel,1,94,2017,December,51,17,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,237.0,179.0,0,Transient,99.6,0,0,Canceled,Robin Brock,gordonamy@example.org,285.780.3481x3760,5507158467060292,2025-03-27 +Resort Hotel,1,48,2017,October,41,8,0,5,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,E,1,No Deposit,298.0,179.0,0,Transient,95.34,0,1,Canceled,Morgan Boone,christopherdouglas@example.com,(318)474-1132x823,370162940185465,2026-03-21 +City Hotel,1,408,2017,June,23,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,102.94,0,0,Canceled,Matthew Greene,brandonsmith@example.net,365.652.7979,4617506770756131011,2025-03-21 +Resort Hotel,0,106,2017,June,26,25,4,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,159.61,0,1,Canceled,Molly Ortiz,arellanoamber@example.net,9019567359,30217449222151,2025-05-07 +City Hotel,1,324,2017,October,41,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,40,Transient,127.3,0,0,Canceled,Paula Roberts,cflynn@example.org,423-787-1534x122,213110861437218,2025-01-15 +City Hotel,0,86,2017,November,44,4,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.49,0,0,Check-Out,Connie Miller,bishopbrittney@example.com,2534996688,6011875192936358,2024-10-17 +City Hotel,1,0,2017,January,3,19,0,1,2,0.0,0,SC,AUT,Online TA,Direct,0,0,0,A,D,0,No Deposit,9.0,232.0,0,Transient,83.35,0,1,No-Show,Perry Black,waterslauren@example.org,+1-466-283-1081x6374,6011596760618174,2024-04-27 +Resort Hotel,0,106,2017,July,29,17,4,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,345.0,179.0,0,Transient,226.62,0,0,Check-Out,Scott Bond,sawyerjohn@example.com,+1-515-921-7374,379584622087357,2026-01-17 +City Hotel,1,60,2017,March,9,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,16,Transient-Party,60.32,0,0,Canceled,Emily Rush,patriciabaker@example.com,(322)247-0554x85581,3584815795480994,2024-06-06 +Resort Hotel,0,103,2017,March,10,5,0,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,212.43,0,0,Check-Out,Brady Padilla,fortiz@example.net,(954)660-1653,2702836070892207,2024-04-29 +Resort Hotel,0,0,2017,August,31,4,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,161.8,0,1,Check-Out,Mark Wallace,carolinemartinez@example.com,607-786-7449x82429,4302212383835387291,2025-02-02 +City Hotel,0,21,2017,September,37,13,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.39,0,2,Check-Out,April Collins,todd90@example.net,443.778.8875,576852777225,2024-06-21 +Resort Hotel,0,16,2017,March,10,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,69.0,0,Transient,51.23,0,0,Check-Out,Isaac Smith,smitchell@example.net,001-979-515-1066x11583,4374568236107237,2024-07-10 +Resort Hotel,0,5,2017,May,21,20,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,E,0,No Deposit,13.0,179.0,0,Transient,111.66,0,0,Check-Out,Rebecca Roman,johnward@example.org,001-971-926-7064x9275,30495870747074,2024-06-22 +Resort Hotel,0,34,2017,December,49,6,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,52.36,0,2,Check-Out,Jody Phillips,leeclaudia@example.net,001-440-644-3208,6538379876872488,2026-03-04 +City Hotel,0,24,2017,August,33,17,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,83.43,0,1,Check-Out,Judy Lewis,lopezkerri@example.net,+1-863-332-8490x91800,4586665858050,2025-07-19 +Resort Hotel,1,207,2017,July,28,9,4,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,141.0,0,2,Canceled,Brian Pacheco,jennahudson@example.com,+1-525-444-5037x8355,3564993102399126,2024-06-28 +City Hotel,1,261,2017,July,29,19,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.61,0,0,Canceled,Thomas Nelson,nford@example.org,+1-669-401-4794,2257585400380719,2024-09-19 +City Hotel,1,154,2017,June,25,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,107.1,0,0,Canceled,Travis Hernandez,powellalexander@example.net,(690)837-8093x375,578505845995,2026-02-24 +City Hotel,0,2,2017,March,10,5,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,15.0,179.0,0,Transient,50.64,0,3,Check-Out,William Greene,xmoore@example.net,971-430-6465,213194846679656,2025-05-18 +City Hotel,0,19,2017,January,3,19,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.11,0,1,Check-Out,Jordan Adams,katherine05@example.net,(609)784-4434,4964182584188,2025-03-13 +City Hotel,0,229,2017,August,34,23,0,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,218.74,0,2,Check-Out,Scott Pineda,tmcguire@example.net,4029276860,3530086841841887,2025-09-11 +Resort Hotel,1,18,2017,January,3,13,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,245.19,1,1,Canceled,Luke Carpenter,delgadochristina@example.com,(676)603-2348x024,4918145570203230278,2024-11-27 +City Hotel,1,202,2017,December,52,25,2,4,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,84.4,0,0,No-Show,Kelly Smith,ashleylloyd@example.org,(501)910-2245x51073,501804829171,2024-08-22 +Resort Hotel,0,3,2017,March,13,23,1,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,G,2,No Deposit,16.0,179.0,0,Transient-Party,2.67,1,0,Check-Out,Danielle Rodriguez,zpeterson@example.org,001-359-505-4096x28314,4051684774135,2026-03-06 +City Hotel,0,52,2017,August,34,20,1,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,162.84,0,1,Canceled,Paul Duarte,mariah86@example.net,+1-242-238-8751x20853,3549200389118207,2025-01-04 +Resort Hotel,0,0,2017,August,32,12,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,0,No Deposit,245.0,179.0,0,Transient,93.75,1,2,Check-Out,Cody Mccoy,martinbrett@example.com,+1-291-735-5409x4135,630490105214,2025-04-10 +City Hotel,0,1,2017,December,49,5,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,G,1,No Deposit,12.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Andrea Bass,amberrodriguez@example.org,797.921.0264x392,6011793271315800,2024-06-08 +Resort Hotel,0,39,2017,December,49,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,135.0,179.0,0,Transient-Party,84.89,0,0,Check-Out,Christopher Blake,susan16@example.org,001-574-412-2045,2225168422551622,2025-07-15 +City Hotel,1,0,2017,July,30,22,1,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,121.18,0,0,Canceled,David Jones,richardhammond@example.com,(634)580-7423,6011738604983691,2024-10-04 +City Hotel,0,21,2017,March,13,27,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,92.73,0,2,Check-Out,Amber Burns,mcintoshkathryn@example.com,(904)962-4705x84175,676203976300,2025-06-01 +City Hotel,1,40,2017,June,23,3,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,118.77,0,0,Canceled,Dana Jennings,gwendolyngreene@example.net,400.792.0946x98478,676265543667,2024-06-02 +City Hotel,0,52,2017,March,14,30,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.29,0,0,Check-Out,Alexander Ferguson,shawn35@example.org,8853545446,4285145999663,2026-02-01 +City Hotel,1,35,2017,September,37,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,60.31,0,0,Canceled,Gary Russell,russellbrenda@example.net,001-970-612-8010,4282063253883580,2024-08-06 +City Hotel,0,198,2017,April,16,15,0,4,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,45.0,0,Transient-Party,129.16,0,0,Check-Out,Frank Foster,jamespratt@example.com,579-270-4160x1513,30585409140351,2024-09-16 +City Hotel,0,1,2017,April,18,30,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,93.0,0,1,Check-Out,Dylan Brown,morrisbrandon@example.com,001-317-284-3061x335,38430539199658,2024-12-11 +City Hotel,0,96,2017,March,10,5,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,116.59,0,1,Check-Out,Trevor Ross,samuelhenderson@example.net,001-417-864-9391,6011959762138858,2025-03-02 +Resort Hotel,1,0,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,58.41,0,0,Canceled,Sherri Gray,ijones@example.net,001-730-944-6590x38599,4222499317238952,2025-03-04 +Resort Hotel,0,56,2017,January,2,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,50.75,0,2,Check-Out,Lauren Stone,paul66@example.net,001-302-477-5760x982,4948640509440,2024-05-27 +City Hotel,1,414,2017,September,36,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.43,0,0,Canceled,David Jones,timothy81@example.com,+1-560-755-4061,213142658254043,2024-06-04 +City Hotel,0,32,2017,October,43,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,134.49,1,2,Check-Out,Matthew Sullivan,steven45@example.net,+1-279-804-0877x6333,6011452347244714,2025-04-10 +City Hotel,0,14,2017,December,49,6,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,8.0,179.0,0,Transient,139.08,0,1,Check-Out,William Morse,thomasdanielle@example.com,711.776.6362x30462,4701801240096938,2025-02-18 +Resort Hotel,0,3,2017,October,41,10,2,1,1,0.0,0,BB,RUS,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,61.0,0,Transient-Party,49.65,0,0,Check-Out,John Molina,blaircynthia@example.net,878.372.0665x361,3523011773351464,2025-10-11 +Resort Hotel,0,17,2017,August,35,27,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,14.0,179.0,0,Transient,231.69,1,0,Check-Out,Travis Hubbard,johnsonrenee@example.net,(980)698-3350x158,3599256002846672,2026-01-26 +Resort Hotel,1,307,2017,July,27,2,3,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,252.0,0,2,Canceled,John Andrews,jamesowens@example.org,605-570-7224,2264502781304730,2025-06-16 +City Hotel,0,301,2017,July,28,9,1,2,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,138.05,0,1,Check-Out,Craig Harris,kmckay@example.net,688-479-8752,213138887416833,2026-02-16 +Resort Hotel,0,89,2017,April,17,25,0,1,2,0.0,0,Undefined,ESP,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient-Party,129.67,0,0,Check-Out,Amanda Rose MD,dillonvanessa@example.org,(785)915-3037x94434,588321463733,2024-05-26 +Resort Hotel,0,40,2017,December,50,12,1,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,65.61,0,1,Check-Out,Jessica Berry,tommy65@example.org,405-975-8896x2169,213144600196033,2025-12-29 +City Hotel,0,3,2017,January,2,6,1,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,202.84,0,0,Check-Out,Sandra Haney,norrisryan@example.net,(417)999-4794x76505,3525422378615435,2024-07-18 +City Hotel,0,1,2017,October,40,6,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.68,0,2,Check-Out,Alexander Weeks,jillclark@example.com,(951)248-1627x492,213122923051788,2025-10-30 +City Hotel,1,211,2017,October,43,25,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,85.0,179.0,0,Contract,98.4,0,0,Canceled,Edward Duffy,vickimccall@example.com,585.401.0342,6011290273709973,2024-07-10 +City Hotel,0,4,2017,August,32,12,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Felicia Vargas,jasmine06@example.net,(682)290-6185x108,503858531877,2024-12-23 +Resort Hotel,0,48,2017,October,41,8,1,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,314.0,179.0,0,Transient-Party,62.57,0,0,Check-Out,Darren Hall,jasmin61@example.com,877-857-5538x67408,4529256323021669,2024-06-18 +City Hotel,0,3,2017,July,27,4,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,239.34,0,2,Check-Out,Elizabeth Cunningham,katrina58@example.net,207.452.4210x320,6011165762889512,2025-02-14 +City Hotel,0,54,2017,November,46,16,0,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,87.59,0,0,Check-Out,Michael Peterson,parkersherri@example.net,001-644-985-9939x55166,4957805562607,2025-05-13 +Resort Hotel,1,76,2017,May,22,30,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,56.41,0,1,No-Show,Crystal Duke,frazierlaura@example.net,(329)543-2415x323,4807121263309,2025-03-25 +City Hotel,0,47,2017,November,46,14,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,8.0,179.0,0,Transient,211.59,0,1,Check-Out,Michael Cardenas,kellygillespie@example.net,001-580-426-6827x481,4788856813985888699,2025-12-20 +City Hotel,1,2,2017,July,27,7,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,180.0,179.0,0,Transient,129.39,0,1,No-Show,Heather Meadows,rkelly@example.net,691.554.9929,3580148675410343,2025-03-13 +Resort Hotel,0,137,2017,October,42,18,4,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,0,No Deposit,202.0,179.0,0,Transient,83.3,0,0,Check-Out,Nicole Collins,williamspedro@example.org,239-788-1728,587600931162,2024-10-10 +City Hotel,0,9,2017,October,40,6,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,102.57,0,0,Check-Out,Laurie White,tonymiller@example.org,001-904-300-0196x703,4479298599192097,2025-12-19 +City Hotel,0,9,2017,December,49,2,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,99.0,0,2,Check-Out,Veronica Lewis,smithrebecca@example.net,7474185584,30403513431643,2025-09-05 +City Hotel,1,252,2017,June,26,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,293.0,179.0,0,Transient,102.92,0,0,No-Show,Brian Singh,ttorres@example.org,+1-358-413-5819x47758,3540678543700094,2025-06-22 +City Hotel,0,105,2017,May,22,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,87.63,0,0,Check-Out,Ronald Young,brownryan@example.net,(977)964-7707,502064332138,2025-05-11 +Resort Hotel,1,46,2017,August,32,8,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,240.6,0,0,Canceled,Cindy Bradley MD,roydavid@example.com,896.378.1651x367,4569454550571008,2024-10-11 +City Hotel,1,47,2017,March,10,6,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.98,0,0,Canceled,Thomas Nelson,rossjoseph@example.com,(798)887-1985,571076609775,2025-06-23 +City Hotel,1,62,2017,February,8,18,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,138.0,179.0,0,Transient,77.98,0,0,Canceled,Nathan Hickman Jr.,david25@example.org,(888)959-6210x815,3509669970899938,2025-04-11 +City Hotel,0,33,2017,November,48,29,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,61.68,0,0,Check-Out,Kristin Bailey,wlewis@example.net,2288561711,676109977857,2025-11-14 +Resort Hotel,0,22,2017,December,2,30,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,101.51,0,1,Check-Out,Shannon Booker,christopher75@example.org,(734)792-3069,30322497557332,2025-05-25 +Resort Hotel,1,149,2017,June,25,20,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,155.48,1,1,Canceled,Marc Glenn,tiffanythomas@example.net,859.510.6188x237,4417980251245,2025-04-20 +City Hotel,1,160,2017,November,47,21,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,75,Transient,107.75,0,0,Canceled,Jasmine Chavez,elizabethmartinez@example.net,(744)250-4125,4439041895737,2025-11-15 +City Hotel,0,24,2017,April,17,25,2,1,3,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,8.0,179.0,0,Transient,95.4,0,1,Check-Out,Michael Ritter,dustin59@example.net,880.413.4134x791,3561407120015237,2025-03-02 +City Hotel,0,22,2017,October,41,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,66.0,0,Transient,49.18,0,1,Check-Out,Denise Gonzalez,annarios@example.org,329-682-3281,3564588640847857,2025-09-25 +City Hotel,0,145,2017,July,27,2,0,4,3,0.0,0,SC,ITA,Online TA,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,206.13,0,0,Check-Out,Phillip Lowery,mayoevan@example.com,656.330.5615,4794831415371,2025-04-15 +City Hotel,0,13,2017,October,43,24,0,1,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient,230.15,0,0,Check-Out,Timothy Jordan,rojasshannon@example.net,889-402-7360x2453,589871695781,2024-09-28 +City Hotel,0,13,2017,October,40,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,80.95,0,2,Check-Out,Justin Garcia,andersonapril@example.com,757.916.9000,3502641523069860,2025-05-11 +City Hotel,1,162,2017,July,27,6,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,127.09,0,0,Canceled,Samantha Ford,kelly27@example.org,+1-734-356-3969x016,4864627140018554,2024-04-10 +Resort Hotel,0,6,2017,July,28,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,79.02,0,1,Check-Out,Stanley Martinez,andrewvance@example.com,351.910.0280x804,4657147282203549317,2024-04-02 +Resort Hotel,0,148,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,225.0,0,Transient-Party,39.78,0,0,Check-Out,Alexander Terry,matthew46@example.org,+1-661-489-1951x364,213182529061185,2024-07-24 +City Hotel,0,7,2017,December,49,5,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,88.58,0,2,Check-Out,Lisa Michael,gallagherkelly@example.org,001-320-611-1301x1571,342333451175360,2024-09-17 +City Hotel,0,0,2017,December,52,23,0,2,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,116.25,0,1,Check-Out,Dennis Turner,danielcoleman@example.org,+1-619-884-2352x7637,630443067438,2024-09-29 +Resort Hotel,0,14,2017,February,6,10,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,224.0,0,Transient,44.76,0,0,Check-Out,Kevin Benson,bryantalexa@example.org,001-674-703-0887x159,344467606905426,2024-08-09 +City Hotel,0,414,2017,July,27,4,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,136.2,1,0,Check-Out,Brian Phillips,icook@example.net,855.817.5846,502019234462,2024-09-20 +Resort Hotel,0,146,2017,October,43,25,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,10.0,222.0,0,Transient-Party,62.97,0,0,Check-Out,Maria Ward,myerscory@example.org,(529)563-1814x5573,4381625346598,2025-07-27 +City Hotel,1,355,2017,June,24,8,2,7,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,76.87,0,0,Canceled,Shane Greene,mary92@example.net,(932)465-0577,4537208581216374682,2025-09-17 +City Hotel,0,154,2017,August,34,20,2,5,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,203.92,0,2,Check-Out,Matthew Alvarez,orodriguez@example.net,210.570.3569,4156745695432835,2025-07-22 +Resort Hotel,0,76,2017,July,28,13,1,2,2,1.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient-Party,136.65,0,0,Check-Out,Annette Weaver,zstanley@example.com,236-529-4251x137,3521825761169980,2025-01-15 +City Hotel,0,307,2017,August,33,16,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,100.13,0,0,Check-Out,Troy Aguilar,martinrachel@example.com,+1-366-762-8846x337,377921926306087,2025-11-15 +City Hotel,1,24,2017,January,4,23,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,H,1,No Deposit,12.0,179.0,0,Transient,93.56,0,1,Canceled,Frank Munoz,danielrichardson@example.com,429.891.7864x04441,345390141783539,2025-06-29 +City Hotel,1,9,2017,February,7,12,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,145.0,179.0,0,Transient,46.1,0,0,No-Show,Amy Johnson,christina86@example.net,573-275-0435x4074,4761119843262022647,2026-03-19 +City Hotel,1,12,2017,September,39,26,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.45,0,0,Canceled,Jean Brown,mblevins@example.net,230-919-8931x2589,4165496072445,2024-10-18 +City Hotel,1,106,2017,May,20,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,72.61,0,0,Canceled,Bobby Mullen,lewislisa@example.org,(412)805-1752x533,3539509439059068,2024-05-22 +Resort Hotel,1,209,2017,May,21,18,0,3,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,133.08,0,0,Canceled,Mary Brady,michael09@example.org,+1-558-228-9768x5120,3577237934608329,2025-06-08 +City Hotel,0,7,2017,August,31,5,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,106.18,0,1,Check-Out,Gabriel Jones,joshua08@example.org,(500)217-7666x66371,2228735435477685,2024-11-12 +City Hotel,0,9,2017,June,26,29,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,144.24,0,2,Check-Out,Kevin Lee,paula12@example.net,763.225.7511x2468,3548176229573622,2026-02-02 +Resort Hotel,0,12,2017,July,29,15,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,125.44,0,1,Check-Out,David Wise,pearsonvalerie@example.net,+1-909-283-4360x8635,4205250284474828,2025-08-20 +Resort Hotel,0,22,2017,May,19,7,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,176.0,179.0,0,Transient,67.26,0,1,Check-Out,Kayla Taylor,vwilliams@example.org,480.423.6157,2264101981139267,2025-04-13 +City Hotel,0,90,2017,May,21,22,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,113.93,0,0,Check-Out,David Williams,xclark@example.net,+1-740-543-9671x79932,2226121908440884,2025-05-12 +Resort Hotel,0,7,2017,March,13,25,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient,48.69,1,0,Check-Out,Kayla Rios,scottthompson@example.com,976-681-4854x152,4719140970329,2024-05-13 +City Hotel,1,96,2017,October,43,22,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,23.0,179.0,0,Transient,65.48,0,0,Canceled,Scott Wade,jason63@example.com,547-402-5343,213160249613881,2024-11-26 +City Hotel,1,51,2017,June,25,22,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,219.11,0,0,Canceled,Kenneth Williams,moorebeverly@example.net,001-210-847-2495x986,586633084668,2026-02-26 +Resort Hotel,0,0,2017,October,41,13,1,0,2,0.0,0,SC,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,61.38,0,0,Check-Out,Tiffany Gentry,erinwade@example.com,378.702.9399x55735,2241526332480531,2026-02-02 +City Hotel,1,20,2017,June,24,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,16.0,228.0,0,Transient,83.78,0,0,Canceled,Sarah Woods,timothy08@example.net,2263222352,4849419367455375265,2025-09-06 +City Hotel,0,158,2017,August,31,5,1,1,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,2.28,0,0,Check-Out,Timothy Jones,qbartlett@example.com,+1-645-354-2692x860,3597064972663123,2024-04-30 +City Hotel,1,1,2017,March,13,29,1,2,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,133.69,0,0,Check-Out,Dennis Martinez,imckee@example.net,929-615-3834,213154755374913,2025-02-28 +Resort Hotel,0,38,2017,April,17,24,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,52.03,0,1,Check-Out,Terry Owens,rpeters@example.net,525.982.0006x410,38206388087172,2024-08-31 +City Hotel,1,159,2017,April,18,28,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,139.57,0,3,Canceled,Lori Gutierrez,james47@example.net,001-680-380-3502,2251909892926159,2024-11-09 +City Hotel,1,162,2017,May,22,25,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Canceled,Heidi Stewart,edavis@example.com,5087407177,4204087186833203109,2025-11-12 +Resort Hotel,0,1,2017,March,11,9,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,16.0,179.0,0,Transient,203.73,1,0,Check-Out,Larry Martinez,josedixon@example.org,(584)366-5753x632,30463505875033,2025-02-02 +City Hotel,0,41,2017,October,43,23,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,71.89,0,0,Check-Out,William Payne,anthony89@example.com,973-267-8371x79669,4171106337635767,2024-10-17 +City Hotel,0,127,2017,June,24,10,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,133.11,0,1,Check-Out,Alisha Lewis,kenneth46@example.net,310.936.3479,340024684943565,2025-04-27 +City Hotel,1,127,2017,June,24,16,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,Non Refund,16.0,179.0,0,Transient,200.1,0,0,Canceled,Nicholas Sanders,rmartinez@example.net,(927)281-8275,4306593118481958,2024-06-19 +City Hotel,0,44,2017,April,15,12,1,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,95.61,0,1,Check-Out,John Brown,mendeztina@example.com,6817188812,4807364623465470,2025-02-22 +City Hotel,0,11,2017,November,44,4,1,1,2,0.0,0,BB,SWE,Corporate,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,47.41,0,0,Check-Out,Vanessa Walker,cherylwise@example.org,+1-382-597-1726x57340,4035508949400197676,2025-03-04 +City Hotel,0,3,2017,January,4,23,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,B,0,No Deposit,11.0,61.0,0,Transient,77.54,1,2,Check-Out,Colton Green,ndavis@example.com,(509)927-3521x49518,3596255936737489,2025-04-26 +Resort Hotel,1,44,2017,February,6,5,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,105.95,0,2,Canceled,Mark Lawson,jamie17@example.net,443-653-6207x47842,676300872683,2025-11-19 +City Hotel,0,47,2017,April,15,10,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.86,1,3,Check-Out,Collin Gentry,lawrencedaniel@example.com,760-964-4369x730,180060618395285,2024-07-23 +Resort Hotel,0,102,2017,April,18,27,1,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,2,No Deposit,31.0,179.0,0,Transient,113.07,0,0,Check-Out,Andrea Abbott,qburgess@example.com,001-638-237-3984x38184,3596232911546581,2024-04-15 +City Hotel,1,387,2017,July,28,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,125.6,0,0,Canceled,Adrian Sanchez,ycollins@example.net,556.269.9377x20893,38725527415911,2024-12-01 +Resort Hotel,0,0,2017,December,50,11,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient,53.06,0,0,Check-Out,Kenneth Jones,alejandra89@example.net,(687)453-7806,3575724299871891,2024-09-03 +City Hotel,1,213,2017,May,19,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,139.3,1,1,Canceled,Crystal White,cassandra14@example.com,(777)228-6969,213190314780869,2025-05-28 +City Hotel,0,36,2017,April,17,24,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.96,0,1,Check-Out,Richard Ferguson,amber70@example.net,+1-987-464-9950x73197,2712965993160265,2025-10-26 +City Hotel,0,375,2017,October,41,10,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,58.68,0,0,Check-Out,Madison Morales,anthony92@example.com,292-514-4408x57574,2315614173035944,2025-11-02 +City Hotel,0,0,2017,August,31,4,1,1,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,0.5099000000000001,1,1,Check-Out,Brian James,danielle69@example.net,972.624.8335,675942964452,2024-07-23 +City Hotel,1,55,2017,October,43,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,99.0,0,0,Canceled,Julia Green,andersonnathan@example.net,354.449.0219x0323,4587091963818754,2024-05-26 +Resort Hotel,1,82,2017,December,48,2,0,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,Non Refund,1.0,179.0,42,Transient-Party,63.81,0,0,Canceled,Latoya Singleton,kimberly25@example.org,001-655-591-2241x92542,4536692350313910144,2024-11-02 +Resort Hotel,0,13,2017,February,8,23,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,56.92,0,1,Check-Out,Cody Lopez,lwilson@example.com,001-298-841-3514x08081,4367882744164963,2024-11-30 +City Hotel,0,1,2017,May,22,28,2,1,1,0.0,0,BB,RUS,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,143.0,0,Transient,95.69,0,0,Check-Out,Pamela Scott,anthony79@example.net,+1-504-584-3933x46672,36753975095235,2024-10-06 +Resort Hotel,0,267,2017,August,33,15,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,82.57,0,3,Check-Out,Diana Ali,michael98@example.net,+1-927-755-9421x261,4215630735355,2026-02-11 +City Hotel,0,83,2017,June,27,30,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,141.79,0,2,Check-Out,Nicole Patterson,jonathanlee@example.org,+1-533-442-3769x2563,3529328209881144,2025-06-19 +City Hotel,1,262,2017,June,26,26,2,7,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.43,0,1,Canceled,Kimberly Hunter,justinjones@example.com,(851)778-3938x266,3510783374848420,2026-01-27 +City Hotel,1,129,2017,August,33,14,2,4,1,0.0,0,SC,,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.44,0,1,No-Show,Stacey Jones,williamyoung@example.net,+1-547-361-5351x185,30269419497586,2025-01-28 +Resort Hotel,0,8,2017,April,14,4,1,4,1,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,118.35,1,2,Check-Out,Courtney Williams,mbowen@example.org,+1-792-382-0045x477,213177747810041,2025-04-20 +Resort Hotel,1,91,2017,December,49,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,41.54,0,0,Canceled,Larry Stone,gentryjerry@example.com,+1-544-555-9582x8091,3592949909440410,2025-11-20 +City Hotel,0,0,2017,May,19,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,44.99,0,1,Check-Out,Jonathan Miller,david27@example.org,(232)443-0417x85502,348638395199977,2024-07-24 +City Hotel,0,99,2017,April,18,28,2,1,1,0.0,0,SC,AUT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,90.56,0,1,Check-Out,Michael Wheeler,melissa77@example.net,(616)552-5767,630459614180,2024-08-18 +City Hotel,0,159,2017,September,36,7,2,5,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.79,0,0,Check-Out,Melissa Wise,williamsonalexander@example.net,9167145586,343840305497641,2025-09-05 +City Hotel,1,97,2017,July,28,7,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,231.28,0,0,Canceled,Melissa Jackson,jonesann@example.org,001-939-563-7865x804,4224420302610862,2025-12-05 +City Hotel,0,6,2017,July,28,7,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.96,0,1,Check-Out,Mr. Leonard Jackson,cwilliams@example.net,+1-277-954-1472x738,6562714170207156,2025-07-13 +City Hotel,1,409,2017,September,36,4,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,86.96,0,0,Canceled,Brent Hernandez,davidneal@example.org,8009814961,6578416448475597,2026-03-19 +City Hotel,0,154,2017,September,39,22,1,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.46,0,2,Check-Out,Deborah Price,eric36@example.org,+1-887-227-0726,374587179779941,2025-08-01 +City Hotel,0,29,2017,July,28,9,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,106.19,0,2,Check-Out,Christopher Gutierrez,raymondmelendez@example.net,+1-216-709-5176x1195,4941196437342710,2025-04-11 +City Hotel,1,100,2017,June,26,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,75,Transient,88.13,0,0,Canceled,Tracy Foster,steve06@example.net,766-638-0166x09188,560003967752,2025-11-14 +City Hotel,1,387,2017,September,38,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,127.44,0,0,Canceled,Charles Nguyen,tylervazquez@example.net,(446)261-5981,3504000824567320,2025-12-30 +City Hotel,1,36,2017,October,41,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,45.41,0,0,Canceled,Joseph Smith,curtiswalker@example.com,471-603-2449,586124462282,2024-11-24 +City Hotel,1,222,2017,May,22,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,162.27,0,0,Canceled,Haley Harvey,amberwilson@example.com,(444)688-7833x6157,5566675587609250,2026-02-08 +City Hotel,0,244,2017,November,45,9,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,86.83,0,0,Check-Out,Katherine Hammond,davidperry@example.org,7253103438,4126666734902843,2026-01-08 +City Hotel,0,92,2017,May,21,23,0,2,1,0.0,0,SC,ITA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,104.32,0,0,Check-Out,Tracy Hogan,cannondavid@example.org,+1-778-448-6568x41563,180083628467589,2026-01-05 +Resort Hotel,1,91,2017,March,12,19,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,62.74,0,0,Canceled,Ronald Davila,brianna63@example.com,(360)714-9948x3432,372745993012004,2025-07-16 +Resort Hotel,0,12,2017,December,50,16,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,235.0,179.0,0,Transient,63.04,0,1,Check-Out,Emily Reed,kwilliams@example.com,+1-301-272-6767x913,4999491750729507,2026-03-21 +City Hotel,1,11,2017,June,26,25,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.45,0,2,Canceled,Maria Thomas,johnsongregg@example.org,(614)359-9981x132,180020579520743,2026-01-29 +City Hotel,0,15,2017,August,35,25,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,13.0,179.0,0,Transient,230.98,0,1,Check-Out,Debra Miller,guerrerokaren@example.net,2508742071,4246322862553348,2025-09-29 +City Hotel,0,40,2017,October,43,21,2,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,123.87,0,1,Check-Out,Michael Huerta,silvalisa@example.net,444.763.9499,502074093316,2025-06-11 +City Hotel,0,0,2017,April,17,21,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,204.0,0,Transient,74.34,0,0,Check-Out,Joy Robinson,yolandapaul@example.com,+1-965-447-6550x1682,180036839347065,2026-02-26 +City Hotel,0,0,2017,August,33,13,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,16.0,45.0,0,Transient,52.65,0,0,Check-Out,Brittany Kelly,agoodwin@example.net,876.736.7998x1494,3522221946738023,2024-07-17 +Resort Hotel,0,145,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,2,Refundable,14.0,222.0,0,Transient-Party,61.62,0,0,Check-Out,Julie Jordan,boyerrachel@example.net,9803527152,4939945065626362,2025-02-11 +City Hotel,0,48,2017,June,26,26,0,1,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,160.0,179.0,0,Transient,113.17,0,0,Check-Out,Jacob Peters,alexander88@example.net,791.607.2617,4546149455433605,2024-12-08 +City Hotel,1,210,2017,July,28,10,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,173.5,0,0,Canceled,Caitlyn Clark,michelle36@example.com,815-749-3479,4319513036772,2024-07-14 +City Hotel,0,55,2017,April,17,23,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.34,0,3,Check-Out,Kimberly Ward,bryantlucas@example.com,001-955-397-0931x4925,2273356059789026,2024-12-01 +Resort Hotel,0,104,2017,July,29,18,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,B,0,No Deposit,241.0,179.0,0,Contract,224.03,0,0,Check-Out,Amanda Gould,pperez@example.com,(220)239-2333x22865,342303149265907,2025-03-21 +City Hotel,0,2,2017,August,32,6,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,251.63,0,0,Check-Out,Laura Martin,dianacampos@example.com,498.212.0115x043,5513714679057740,2025-06-14 +City Hotel,1,2,2017,July,30,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,132.99,0,1,No-Show,Mark Taylor,kirkalicia@example.org,781.452.7290,6011020468136371,2024-09-25 +Resort Hotel,1,12,2017,March,13,25,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,86.36,0,1,Canceled,Tyrone Roberson,heather71@example.net,596.694.8151,5257437470175780,2025-09-02 +City Hotel,0,0,2017,April,14,6,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,L,A,0,No Deposit,12.0,45.0,0,Transient,0.5099000000000001,0,1,Check-Out,Brian Barron,andrewwilkerson@example.net,770.722.0421x2528,4184696212081,2025-12-08 +City Hotel,1,10,2017,October,41,9,1,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,114.16,0,0,No-Show,Kelly Harris,johnsonchristian@example.org,6608226630,4459185390754825,2025-09-10 +City Hotel,0,13,2017,October,40,3,2,0,1,0.0,0,SC,,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,176.0,179.0,0,Transient,130.7,0,0,Check-Out,Jeremy Moran,cgreen@example.net,542-962-4085,4046587526925809,2025-07-28 +Resort Hotel,0,12,2017,August,34,20,0,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,178.0,179.0,0,Transient,234.51,0,1,Check-Out,Dr. Donna Bailey,keith98@example.com,378.210.1123,4147889519281,2025-02-19 +City Hotel,1,358,2017,August,33,12,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.49,0,0,Canceled,John Smith,yellis@example.net,001-978-555-7218x86990,4587397731662130395,2024-08-12 +City Hotel,0,6,2017,January,2,11,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,0,No Deposit,35.0,184.0,0,Transient,57.43,0,0,Check-Out,Sarah Pierce,christopherking@example.com,001-909-918-1080x73370,3552950600508768,2026-03-03 +Resort Hotel,0,143,2017,June,22,1,1,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,14.0,221.0,0,Transient-Party,78.28,0,0,Check-Out,John Gallegos,michele79@example.com,+1-324-917-5434x991,4981363995157,2024-05-05 +Resort Hotel,0,21,2017,November,47,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,50.25,0,2,Check-Out,Michael Moore,urodriguez@example.com,+1-379-557-3992x864,3526133456728847,2024-04-05 +Resort Hotel,0,318,2017,March,11,13,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,46.89,0,0,Check-Out,Jessica Barron,john66@example.org,900.939.2814,4433696993615362,2026-03-27 +Resort Hotel,0,1,2017,August,33,13,1,2,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient,164.45,0,0,Check-Out,Erika Moore,brandon84@example.com,7498335621,3596900338786200,2025-03-07 +City Hotel,0,0,2017,May,20,17,2,1,1,0.0,0,BB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,107.38,0,1,Check-Out,Erin Rivera,paynekatherine@example.net,(371)670-1922x2355,2693023303229967,2026-03-20 +Resort Hotel,0,2,2017,February,7,10,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,43.71,0,0,Check-Out,Alicia Krueger,lisa81@example.net,815-703-3787x114,6011594288672922,2025-03-20 +City Hotel,1,10,2017,May,21,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,184.0,179.0,0,Transient,88.54,0,0,No-Show,Amanda Wilson,josephhoffman@example.org,+1-428-644-1466x4645,180072476077483,2025-09-20 +City Hotel,1,126,2017,July,29,18,2,7,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,206.46,0,1,Canceled,Joshua Scott,wilkinsjoseph@example.org,(745)404-0533,4359580516272,2025-07-05 +City Hotel,0,7,2017,October,40,3,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,102.39,1,1,Check-Out,Jeffrey Thompson,burkemichael@example.net,001-662-978-8014,30574333292470,2025-04-23 +City Hotel,0,2,2017,June,26,25,1,1,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,132.61,0,2,Check-Out,Alexandria Barnes,jenniferjefferson@example.net,4854180483,372971829069857,2024-05-25 +Resort Hotel,0,36,2017,June,23,5,0,2,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,219.96,1,1,Check-Out,Brandy Allen MD,holtmaureen@example.net,001-396-390-5683x15328,4264134155822737,2025-08-02 +Resort Hotel,0,50,2017,August,31,2,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,172.0,179.0,0,Transient,223.32,1,2,Check-Out,Kendra Smith,ssullivan@example.org,298.327.2482x6458,213144306843698,2025-06-10 +City Hotel,0,60,2017,March,13,27,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.81,0,1,Check-Out,Mckenzie Vega,sandovaljose@example.org,298-369-5895x078,3596708672212901,2025-10-07 +City Hotel,1,148,2017,August,32,8,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,Margaret Gonzalez,fsteele@example.com,(605)564-4009x2587,060413480835,2024-12-31 +Resort Hotel,0,88,2017,December,49,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,313.0,68.0,0,Transient-Party,46.1,0,1,Check-Out,Robert Andrews,brandon39@example.net,886-718-4833x9790,30027606170568,2024-12-29 +City Hotel,1,19,2017,March,11,15,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.34,0,2,Canceled,Dr. Brenda Frye,tmiles@example.org,(506)448-4567x583,4504063655424,2026-03-11 +City Hotel,1,3,2017,September,37,14,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.14,0,0,Canceled,Larry Pitts,jonesangela@example.org,570.324.4790x95965,378079276079272,2025-03-20 +City Hotel,0,13,2017,November,48,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,69.0,0,Transient-Party,113.44,0,0,Check-Out,Connie Henderson,yking@example.net,5349313677,676207182731,2025-02-21 +City Hotel,0,0,2017,March,9,1,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,81.49,0,0,Check-Out,Jessica Cruz,ashley20@example.com,822-399-9826x98594,4897776797704213,2024-10-03 +City Hotel,1,373,2017,June,24,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,103.21,0,0,Canceled,Monica Torres,kristinbarrett@example.com,(321)850-2760x07151,2707379044082691,2025-11-03 +City Hotel,0,158,2017,June,26,23,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,19,Transient,97.93,0,0,Check-Out,Scott King,chaas@example.org,958-590-4771x26414,213101115279647,2025-12-29 +City Hotel,0,0,2017,May,18,1,0,3,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,D,0,No Deposit,13.0,45.0,0,Transient,50.78,0,2,Check-Out,David Hahn,brendaray@example.com,532.832.9317x4641,30126345301433,2026-03-13 +Resort Hotel,0,1,2017,February,9,26,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,46.22,1,0,Check-Out,Jeffrey Baker,leecharles@example.net,(250)202-1770x69786,180067975397192,2024-04-19 +City Hotel,0,1,2017,October,42,15,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,A,0,No Deposit,15.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Andre Payne,elizabeth84@example.com,589.687.0118x358,3518248063361186,2026-02-01 +Resort Hotel,1,48,2017,February,6,8,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,138.39,0,1,Canceled,Nicholas Tran,manncameron@example.com,9209921346,4630505271764548,2026-02-25 +City Hotel,0,2,2017,February,7,15,1,2,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,45.82,0,0,Check-Out,Nicholas Davis,laurenestrada@example.org,390.493.5223x8768,30134605976126,2024-07-18 +Resort Hotel,1,28,2017,November,46,17,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,128.0,179.0,0,Transient,40.21,0,0,Canceled,Charles Dougherty,richard01@example.org,(290)245-1072,30487504420665,2024-10-03 +Resort Hotel,0,9,2017,November,48,26,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,200.31,1,1,Check-Out,Carolyn Smith,pamela76@example.com,+1-314-432-7688x9127,501850125524,2026-03-04 +Resort Hotel,1,227,2017,October,44,29,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,263.0,179.0,0,Transient,111.64,0,0,Canceled,Brendan Howard,michael62@example.org,+1-578-254-8644x455,4756618348132076480,2026-01-04 +City Hotel,1,54,2017,February,7,12,0,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,36.6,0,0,Canceled,Albert Bishop,valdezeric@example.org,463.787.9938x6510,3545804886009597,2026-01-14 +City Hotel,1,32,2017,April,17,26,2,5,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,171.6,0,0,No-Show,Lisa Good,aherrera@example.net,+1-204-351-0052,569800847588,2024-07-06 +Resort Hotel,1,90,2017,December,49,3,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,87.88,0,0,No-Show,Nicholas Mejia,alawrence@example.org,(517)662-0442x3240,676203679128,2025-06-10 +City Hotel,0,20,2017,August,36,31,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,127.53,1,2,Check-Out,Russell Erickson,andrearamos@example.org,001-664-899-1205,180014009417273,2025-06-26 +City Hotel,1,112,2017,April,17,24,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,114.03,0,0,No-Show,Michael Horton,jeffrey71@example.net,529.872.8596,2709740686071771,2024-04-28 +City Hotel,0,55,2017,November,46,12,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,110.22,0,0,Check-Out,Ricky Tran,mcguiretamara@example.org,461.982.7196,6591171689927300,2024-09-06 +City Hotel,0,101,2017,October,40,5,0,1,2,0.0,0,HB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,111.04,0,1,Check-Out,Jonathan Kelley,kaitlynperez@example.com,987.816.6287x3718,4796413703137195,2025-07-05 +City Hotel,1,87,2017,June,27,30,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,175.83,0,2,Canceled,Miss Makayla Young,rwatts@example.com,939-471-4257x661,5129943563587746,2025-07-27 +Resort Hotel,1,103,2017,June,27,29,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,244.0,179.0,0,Transient,126.24,0,1,Canceled,Natalie Blevins,elizabethwilliams@example.org,228-585-1280,371787335040716,2025-05-21 +City Hotel,0,127,2017,March,14,30,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,1,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,49.11,0,1,Check-Out,Elizabeth Carney,kristihaas@example.org,721-271-6249x6054,2296320516719169,2024-12-09 +City Hotel,1,160,2017,July,27,3,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.06,0,0,Canceled,Gerald Berg,ashleylove@example.com,001-959-973-0990x373,4463016220384869,2025-05-31 +City Hotel,1,165,2017,June,24,8,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,109.68,0,0,Canceled,Jackson Ingram,annettegreene@example.org,001-634-960-5512x2022,6011266881262027,2025-03-23 +Resort Hotel,0,3,2017,March,11,13,0,2,1,0.0,0,HB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,187.0,179.0,0,Transient,49.46,1,0,Check-Out,Thomas Parsons,klong@example.org,796.206.2771x8976,180010938190643,2025-10-02 +Resort Hotel,0,336,2017,October,44,30,2,5,2,0.0,0,BB,FRA,Complementary,Direct,0,0,0,G,G,1,No Deposit,352.0,179.0,0,Transient,1.57,1,1,Check-Out,Emma Jennings,chasealicia@example.net,617.319.0293x26461,213146253711489,2024-10-25 +Resort Hotel,0,3,2017,January,2,10,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,43.82,0,0,Check-Out,Julie Padilla,hodgejessica@example.com,692-411-8023x88879,4000394494161,2024-08-01 +Resort Hotel,0,23,2017,August,32,5,0,1,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,249.05,1,2,Check-Out,Cassandra Williams,deckermackenzie@example.org,+1-821-685-1212x1635,180037549510554,2025-07-24 +Resort Hotel,0,85,2017,December,50,14,2,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient-Party,57.2,0,1,Check-Out,Jeremy Schmidt,kbarr@example.net,001-328-242-9312,6011184056366871,2025-09-15 +Resort Hotel,0,1,2017,July,27,5,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,279.0,179.0,0,Transient,0.57,0,0,Check-Out,David Scott,amy72@example.net,001-729-920-8260x8080,4256799682002918278,2024-04-27 +Resort Hotel,0,31,2017,May,19,10,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,199.0,179.0,0,Transient,41.38,0,0,Check-Out,Rebekah Ferguson,scottwilliam@example.com,001-305-420-2908x4402,6011419097905075,2025-07-07 +Resort Hotel,1,93,2017,August,35,30,4,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,237.0,179.0,0,Contract,222.87,0,1,Canceled,Adriana Malone,kellythompson@example.com,278-830-2190,4875486032773502114,2024-12-05 +Resort Hotel,0,123,2017,July,30,25,1,0,2,1.0,0,BB,ESP,Groups,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient-Party,196.71,1,1,Check-Out,Russell Reynolds,scottveronica@example.com,001-313-223-1798,38859174335138,2024-12-02 +City Hotel,1,192,2017,July,27,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,211.62,0,0,Canceled,Sarah Collins,raven63@example.org,+1-891-969-2883x168,4487363254774108,2025-10-25 +City Hotel,1,400,2017,March,12,19,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,93.64,0,0,Canceled,Cassandra Frey,simpsonthomas@example.org,+1-763-774-1659x35863,4517648923385141429,2025-08-11 +City Hotel,1,309,2017,March,13,29,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,76.17,0,0,Canceled,Tyler Murphy,taylorkristin@example.com,+1-657-564-2583x64472,213115819352609,2024-06-01 +City Hotel,0,103,2017,April,14,6,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,127.1,0,1,Check-Out,Elizabeth Simon,tcruz@example.com,247.895.0859x62795,213115367935532,2025-09-05 +City Hotel,1,53,2017,November,48,26,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,75.87,0,0,Check-Out,Catherine Nguyen,morozco@example.com,+1-646-608-8588x310,501829158002,2025-01-17 +City Hotel,1,13,2017,August,35,30,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,144.45,0,1,Canceled,Kristy Ramos,krodriguez@example.net,001-740-613-4938x61313,4147511913856512794,2024-09-05 +City Hotel,0,11,2017,March,13,25,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,156.0,179.0,0,Transient,47.53,0,2,Check-Out,Kyle Haas,ppacheco@example.net,685-273-0811,4483817227923,2025-09-20 +City Hotel,0,1,2017,December,52,26,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,117.27,0,2,Check-Out,Michael Glover,valenzuelajerome@example.net,622.249.6968,4732500732163,2025-09-11 +Resort Hotel,0,191,2017,July,29,15,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,217.86,1,2,Check-Out,Rebecca Walker DDS,jenniferclark@example.net,878-511-7625x08810,30520061631108,2025-02-16 +City Hotel,1,414,2017,July,29,15,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.38,0,0,Canceled,Julie Mata,smithamanda@example.net,(237)752-0772x88101,3514438257452818,2025-09-11 +City Hotel,1,10,2017,December,52,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,102.01,0,0,Canceled,David Wang,bridgetflynn@example.com,+1-606-881-7900,213123682286532,2026-02-26 +Resort Hotel,1,100,2017,May,20,13,1,5,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,155.57,0,2,No-Show,Anita Price,ocollins@example.net,5947068943,213187242574349,2025-10-03 +City Hotel,0,17,2017,August,35,29,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,111.15,0,0,Check-Out,Veronica Sweeney,david81@example.net,400.438.6154x64005,4220053600581239400,2024-06-21 +City Hotel,1,372,2017,March,13,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,105.21,0,0,Canceled,Laura Buck,hicksnancy@example.net,(961)977-7052x642,4976847947600301226,2025-10-08 +Resort Hotel,0,0,2017,April,17,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,35.42,1,1,Check-Out,Peter Humphrey,brendamiles@example.net,894-680-7700,4896885214981220,2024-05-02 +Resort Hotel,0,59,2017,July,28,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,64.43,0,1,Check-Out,Tracey White,alexiswilliams@example.com,769.617.9824,3517490415882748,2025-03-12 +City Hotel,0,3,2017,November,47,19,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,61.0,0,Transient-Party,74.46,0,0,Check-Out,Christina Fletcher,gregoryherrera@example.org,6749858208,38615526901518,2025-08-27 +City Hotel,0,116,2017,July,30,20,1,1,1,0.0,0,BB,BEL,Groups,Corporate,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,107.73,0,0,Check-Out,Jamie Smith,downsjustin@example.net,(496)775-9301,5267564067974651,2024-10-31 +City Hotel,0,11,2017,June,24,14,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,92.65,0,1,Check-Out,Denise Reynolds,mpierce@example.net,9892553776,345921044362532,2024-11-27 +City Hotel,0,10,2017,May,18,3,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,55.35,0,1,Check-Out,Beverly Romero,jeremytucker@example.org,4436777721,3512283411336800,2025-06-06 +City Hotel,0,108,2017,May,19,6,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,97.18,0,0,Check-Out,Kelli Williamson,mortonmichael@example.com,846-921-7307x8046,5338739460655090,2025-07-25 +City Hotel,0,45,2017,July,27,8,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,125.9,0,1,Check-Out,Michael Mccall,christinamcclure@example.com,001-850-539-9037x631,6011287205601716,2024-12-13 +City Hotel,0,10,2017,March,10,6,1,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,9.0,179.0,0,Transient,100.34,0,1,Check-Out,Steven Yang,adam78@example.com,+1-719-307-9136x36777,30288851872163,2025-09-13 +City Hotel,0,14,2017,October,42,15,0,1,3,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,200.06,0,1,Check-Out,Monica Armstrong,erin60@example.com,829-926-0543x147,676250515126,2025-11-18 +City Hotel,0,155,2017,November,44,3,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,90.48,0,2,Check-Out,Karen Henson,charles88@example.org,911-510-7191x006,502019037121,2025-03-29 +Resort Hotel,1,102,2017,August,32,4,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,169.0,179.0,0,Transient-Party,67.79,0,0,Canceled,Beth Garcia,halljustin@example.com,6177685595,2263422401376086,2025-02-09 +Resort Hotel,0,149,2017,March,13,28,1,3,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,D,D,0,Refundable,10.0,223.0,0,Transient-Party,64.56,0,0,Check-Out,Erin Long,christopher85@example.com,001-825-808-3962x65813,6505744669281636,2024-12-21 +Resort Hotel,1,249,2017,October,42,15,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,265.0,179.0,0,Contract,54.38,0,0,Canceled,Richard Sweeney,allisonperez@example.org,(944)602-6069,675942483909,2024-08-12 +City Hotel,0,14,2017,September,36,3,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,106.85,0,0,Canceled,Michael Goodman,opeterson@example.org,818-347-3513x3349,4013429350456,2025-09-08 +Resort Hotel,0,53,2017,October,40,2,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,134.62,0,2,Check-Out,Megan Khan,kirkbeverly@example.com,+1-567-603-7245x61949,3514417004695499,2024-05-13 +Resort Hotel,0,0,2017,July,27,3,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,131.6,0,1,Check-Out,Jacob Day,glennangelica@example.net,(770)435-0285x1928,3553937044997078,2025-02-04 +City Hotel,0,106,2017,May,19,4,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,112.24,0,0,Check-Out,Shannon Hunt,levinecharles@example.org,509-624-6903x1722,503840985983,2025-05-21 +City Hotel,1,143,2017,April,14,5,1,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.21,0,0,Canceled,Ashley Mejia,james93@example.net,(208)876-0927x3426,4943401721094,2024-11-28 +City Hotel,1,107,2017,March,9,3,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,80.0,179.0,0,Transient,45.1,0,0,Canceled,David Johnston,omccall@example.com,001-499-664-8914x9755,2291022050767019,2026-01-09 +Resort Hotel,0,50,2017,May,21,23,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,49.37,0,1,Check-Out,David Joseph,john15@example.net,001-880-780-5588x23029,30222388490389,2025-01-07 +City Hotel,0,139,2017,May,21,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,80.98,0,0,Check-Out,Alexa Smith,deborahortiz@example.com,+1-865-793-0432,213103444411131,2024-09-20 +City Hotel,1,272,2017,August,33,12,2,5,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,158.58,0,2,Check-Out,Kevin Gilbert,michaelgreen@example.com,(283)848-1690x9931,3537697458501706,2025-11-10 +City Hotel,1,9,2017,March,13,26,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,80.19,0,0,No-Show,Dr. Terri Valdez,lucas52@example.net,413.614.2401,3572033957619169,2024-06-20 +Resort Hotel,0,21,2017,March,11,10,1,2,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,83.87,0,1,Check-Out,Donald Ford,zsharp@example.org,720.441.8913x25141,3554226752291919,2024-05-18 +Resort Hotel,1,2,2017,February,8,23,0,2,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,90.0,179.0,0,Transient,43.04,0,1,No-Show,Mary Kane,sabrinagallagher@example.net,+1-373-656-6651x821,346184598893811,2024-10-23 +City Hotel,1,59,2017,September,38,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,20,Transient,63.65,0,0,Canceled,Brian Mccarty,zbrady@example.org,965-403-7088,180022788724819,2026-03-25 +Resort Hotel,0,51,2017,September,38,20,2,7,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,85.0,179.0,0,Transient,63.59,0,0,Check-Out,Kevin Clayton,alexwilson@example.com,(454)398-2298x110,4909229247174,2026-03-05 +City Hotel,1,141,2017,June,25,20,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,127.28,0,2,Canceled,Brandy Bowman,katherinerodriguez@example.net,8328513588,346829372711585,2025-02-20 +City Hotel,0,19,2017,November,45,9,0,2,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,E,E,2,No Deposit,12.0,179.0,75,Transient,104.51,0,1,Check-Out,Dominique Hall,terrymargaret@example.com,641-296-6840x956,6546267221741385,2025-10-12 +Resort Hotel,0,36,2017,September,36,5,1,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,111.12,0,1,Check-Out,Sandra Holder,lwalker@example.org,985-927-8477,3536869808348564,2024-07-16 +City Hotel,1,271,2017,July,27,7,0,2,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,103.5,0,0,Canceled,James Zuniga,amandarios@example.org,(282)495-6689,4614310792059373,2024-11-21 +City Hotel,1,110,2017,August,31,2,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.15,0,1,No-Show,Danielle Riley,faulknerjanice@example.org,001-626-485-9210x750,213174258702022,2026-01-29 +City Hotel,0,15,2017,September,37,11,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.74,0,0,Check-Out,Christine Carr,lyates@example.org,360-866-7750,180043097928453,2024-07-03 +Resort Hotel,0,89,2017,July,28,12,3,6,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,241.0,179.0,0,Transient,120.55,0,3,Check-Out,Mark Page,tammy24@example.net,(549)313-5814x7329,570426802940,2025-10-08 +City Hotel,0,106,2017,May,18,5,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,133.08,0,1,Check-Out,Amy Burnett,watkinscynthia@example.net,+1-862-218-5913x44997,501864820060,2024-05-16 +Resort Hotel,1,21,2017,November,48,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Contract,51.31,0,0,Canceled,Laura Patterson,boydcatherine@example.org,802.895.1164x570,3542958740025489,2024-05-08 +City Hotel,1,166,2017,December,49,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,75,Transient,80.0,0,0,Canceled,Emily Romero,estradabrandi@example.org,776-793-4244,4017114696689803,2025-12-06 +City Hotel,0,23,2017,October,41,10,1,2,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,D,D,0,No Deposit,168.0,179.0,0,Transient,158.83,0,0,Check-Out,Michael Rivera,nathanlee@example.org,(971)807-9240x175,3578546100274933,2025-10-09 +City Hotel,0,143,2017,March,13,23,2,5,1,2.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,13.0,179.0,0,Transient,230.52,0,1,Check-Out,Rebecca Jones,melissale@example.net,4125835081,502063178078,2024-08-20 +City Hotel,0,156,2017,August,34,19,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,223.74,0,2,Check-Out,Eric Colon,steven27@example.net,437.814.3090x4520,4817053443985,2025-07-21 +City Hotel,1,44,2017,June,24,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,65,Transient,82.94,0,0,Canceled,Megan Burns DVM,smithheather@example.org,001-782-991-4720x3894,675912009551,2024-10-02 +Resort Hotel,1,253,2017,May,18,5,1,10,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,84.4,0,0,Canceled,Zachary Pearson,charles25@example.net,001-629-688-6870x278,4412594007085307,2024-07-25 +Resort Hotel,0,273,2017,May,19,5,2,5,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,16.0,232.0,0,Transient-Party,50.98,0,0,Check-Out,Michael Owens,colonjohn@example.org,001-975-434-8985x07492,4539056832382,2024-08-17 +Resort Hotel,1,1,2017,May,22,27,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.84,0,1,No-Show,Anna Morse,jonathanrogers@example.com,986.468.8633x3421,4046988774054,2024-09-15 +Resort Hotel,0,9,2017,June,24,8,2,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,236.0,179.0,0,Transient,147.45,1,1,Check-Out,Cheryl Sandoval,michael02@example.com,001-598-851-2254,3595996190789846,2024-09-12 +Resort Hotel,1,1,2017,March,11,13,0,2,2,1.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,201.64,0,1,Canceled,April Romero,jessicajohnson@example.org,001-674-636-5657,630443279009,2025-02-07 +City Hotel,1,384,2017,May,18,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,41,Transient,88.09,0,0,Canceled,Kevin Hernandez,hooverjohn@example.net,001-571-233-5472x12936,6011424815888454,2025-11-21 +Resort Hotel,1,25,2017,May,18,5,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,46.24,1,0,Canceled,Michael Morris,blake60@example.org,001-912-378-9006x4293,3502165717079410,2025-09-16 +City Hotel,0,14,2017,March,10,9,2,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,166.49,0,2,Check-Out,Tanner Ortiz,cynthia51@example.org,(810)499-0029,4713946747304,2024-09-22 +City Hotel,0,9,2017,March,9,3,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.24,0,1,Check-Out,Gina Finley,bmeadows@example.com,861.258.8292,4834695524226264,2024-06-28 +City Hotel,1,91,2017,May,22,31,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,109.14,0,1,Canceled,Ralph Luna,tmooney@example.com,492-383-8229x9993,4666675557379,2025-11-05 +City Hotel,0,1,2017,March,13,27,0,2,1,0.0,0,BB,DEU,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.74,1,0,Check-Out,Phillip Hayden,patricia37@example.net,7695923619,4799681072218906,2026-01-23 +Resort Hotel,0,158,2017,May,21,24,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient,49.17,0,0,Check-Out,Melinda Long,cboone@example.net,2565185785,372104613818152,2024-08-09 +City Hotel,1,38,2017,March,10,4,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,D,0,No Deposit,9.0,179.0,0,Transient,111.14,0,0,Canceled,Jimmy Edwards,michaelbradley@example.com,(675)218-8839x641,6524033318974750,2025-04-15 +City Hotel,0,14,2017,March,14,30,0,3,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,127.3,0,1,Check-Out,Erin Wilson,eric79@example.net,395.875.1491,4669637012035500,2025-02-02 +City Hotel,1,90,2017,November,45,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.33,0,0,Canceled,Brittney Wheeler,adamszachary@example.net,318.726.0255x412,3534080121893649,2025-06-03 +City Hotel,0,1,2017,November,45,8,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,64.0,0,Transient,40.21,0,0,Check-Out,Charles Anderson,kennethayers@example.org,915-959-0064x62042,4954445275090140281,2024-10-29 +City Hotel,1,31,2017,February,8,22,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,99.4,0,0,Canceled,John Carter,tommy91@example.net,8217373275,180061089212488,2025-02-13 +Resort Hotel,1,23,2017,September,35,1,0,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,1,0,A,H,0,No Deposit,239.0,179.0,0,Transient-Party,158.24,0,0,Canceled,Erin Johnson,brittanythompson@example.net,(383)690-0489,38569824488555,2025-02-19 +City Hotel,0,11,2017,April,14,4,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,125.43,0,2,Check-Out,Howard Richardson,tracy16@example.net,524-279-4085x95051,3532348238149219,2024-06-26 +Resort Hotel,0,53,2017,July,27,5,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,230.15,0,1,Check-Out,Victoria Williams,cgarcia@example.org,001-324-721-0979,6591653481632063,2025-03-11 +Resort Hotel,0,27,2017,September,37,14,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,98.02,1,1,Check-Out,Mrs. Jennifer Ruiz,wgilbert@example.org,+1-634-600-7101x315,3526309015123346,2026-03-16 +Resort Hotel,1,210,2017,April,14,1,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,66.72,0,0,Canceled,Jason Parker,kathybuck@example.org,983-367-5666,30016669767725,2024-09-21 +Resort Hotel,0,14,2017,October,41,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,74.83,0,1,Check-Out,Rebecca Elliott,adamsjohn@example.net,7292247475,213119330182198,2024-10-09 +City Hotel,0,163,2017,November,46,12,2,1,3,0.0,0,BB,FRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,36.0,221.0,0,Transient-Party,93.74,0,0,Check-Out,Rebecca Rodriguez,oaguilar@example.com,(477)920-3878,3590669211801800,2025-11-04 +Resort Hotel,1,100,2017,April,17,24,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,104.39,0,0,Canceled,Juan Wright,griffinbeth@example.com,+1-585-763-6735x2549,4716969433876,2024-05-06 +City Hotel,1,9,2017,March,10,7,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.4,0,0,Canceled,Anna Reid,danielmendoza@example.org,699.776.3175x541,6575581712543769,2024-07-03 +City Hotel,1,22,2017,May,21,20,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,112.38,0,0,Canceled,Nicholas Floyd,tinaharris@example.com,+1-903-957-8558x544,343383527893552,2024-11-06 +Resort Hotel,0,35,2017,August,34,24,2,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,145.6,0,0,Check-Out,Erika Kim,wendydominguez@example.org,+1-238-855-3447,584251740885,2024-10-17 +Resort Hotel,0,40,2017,March,10,10,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.69,0,1,Check-Out,Terrance Jackson,william96@example.com,646-615-8652,4340853854853390,2024-10-14 +City Hotel,0,51,2017,June,23,5,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.81,0,1,Check-Out,William Banks,donnastrong@example.org,(672)945-3045,4272048366367003,2025-02-01 +City Hotel,0,54,2017,June,23,4,1,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.42,0,1,Check-Out,Mackenzie Diaz,kimberly62@example.org,001-554-506-4147,5501726909793716,2025-03-15 +City Hotel,0,167,2017,August,32,9,0,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,213.79,0,2,Check-Out,Jason Neal,kimberlydyer@example.net,664-527-0970x994,3521252218045855,2026-02-06 +City Hotel,0,1,2017,February,7,13,0,1,1,1.0,0,BB,NLD,Direct,Direct,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Aaron Scott,fosterstacey@example.org,001-751-950-8003,213185720863069,2026-02-09 +Resort Hotel,1,363,2017,October,40,5,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,143.0,179.0,16,Transient,62.06,0,0,Canceled,Robert Peterson,samantha19@example.com,611-382-4273,5162379844871179,2025-05-14 +Resort Hotel,0,2,2017,January,2,12,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,56.47,0,2,Check-Out,Cameron Russell,john28@example.com,917-215-9946x42398,30215041604651,2025-09-28 +City Hotel,1,121,2017,June,25,20,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,144.63,0,2,Canceled,Jessica Porter,richardsjeffrey@example.net,924.855.0829,4148587004814923492,2025-12-20 +Resort Hotel,0,70,2017,December,52,29,2,5,2,1.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient,85.55,0,2,Check-Out,Mr. Robert Collins,douglas35@example.org,398.474.3121x92757,4342654705021,2025-09-20 +City Hotel,0,39,2017,December,49,3,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.33,0,0,Check-Out,Crystal Taylor,jerryhenderson@example.com,607.679.2720x15084,30404263967950,2024-04-16 +City Hotel,0,19,2017,July,30,23,0,1,2,1.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,10.0,179.0,0,Transient,126.43,0,0,Check-Out,William Ray,christopher16@example.org,840-943-2137,38632728523438,2025-11-11 +City Hotel,0,50,2017,April,18,29,1,0,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,L,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,Deborah Colon,adamwheeler@example.com,001-597-411-5953x126,6591023333033177,2025-11-01 +Resort Hotel,0,112,2017,April,15,8,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,212.33,0,1,Check-Out,Joseph Benson,jimenezrachael@example.net,335.889.1796x762,4464766188757021127,2026-01-30 +Resort Hotel,0,56,2017,October,40,4,1,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,109.63,0,1,Check-Out,Jennifer Bennett,fschmidt@example.org,838-334-8023,213171589779695,2024-10-03 +City Hotel,1,13,2017,December,51,17,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.81,0,0,Canceled,Sally Thomas,castrosteven@example.net,(505)402-8393x51941,3533164849393719,2024-11-09 +Resort Hotel,1,194,2017,August,35,26,2,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Canceled,Stacy Hart,jonathananderson@example.net,+1-922-362-1485x070,676280874816,2025-09-09 +City Hotel,1,35,2017,October,40,6,0,1,3,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,10.0,179.0,0,Transient,101.79,0,0,No-Show,Michael Hernandez,maciaslinda@example.org,858.916.5990,4104086002235569257,2025-02-28 +Resort Hotel,1,21,2017,December,49,5,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,0,No Deposit,249.0,179.0,0,Transient,47.82,0,2,Canceled,Jade Rogers,oburns@example.net,(788)275-4181x466,4324858351938131,2025-11-01 +Resort Hotel,0,14,2017,August,31,2,1,7,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,224.11,1,1,Check-Out,Brian Mejia,kristinwalker@example.org,(317)706-9809x56679,3566947482439504,2025-05-16 +City Hotel,1,37,2017,May,20,12,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,39,Transient,104.37,0,0,Canceled,Mason Moon,david26@example.net,+1-595-664-3031x6873,3565439962599321,2024-04-17 +Resort Hotel,0,6,2017,May,19,9,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,309.0,179.0,0,Transient-Party,119.5,0,0,Check-Out,Nathan Blanchard,johndavis@example.com,702.211.2970x884,3558210461313947,2026-02-11 +Resort Hotel,1,18,2017,February,8,20,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,90.58,0,0,Canceled,Carrie Brown,jeremy17@example.org,898.834.0235,346227669741508,2025-07-21 +City Hotel,0,54,2017,November,44,2,0,2,2,0.0,0,Undefined,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,98.82,0,0,Check-Out,Christine Parker,robersonrichard@example.org,565.934.8563,2223144170348646,2024-06-06 +Resort Hotel,0,2,2017,January,3,14,3,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,1,No Deposit,241.0,179.0,0,Transient,56.37,0,1,Check-Out,Jeffrey Alvarez,tblair@example.com,288-948-6809x654,3503275788571747,2025-12-23 +City Hotel,0,2,2017,November,48,27,0,1,1,0.0,0,SC,ESP,Direct,GDS,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,143.89,0,0,Check-Out,Brian White,gilbertcharlotte@example.com,9405387673,2404124934664547,2025-06-30 +City Hotel,0,55,2017,September,36,5,1,2,2,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,77.05,0,0,Check-Out,Matthew Jennings,smalljustin@example.net,419.441.3325x7430,213191941689473,2026-03-01 +Resort Hotel,0,104,2017,March,11,13,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,74.9,0,2,Check-Out,Sabrina Chapman,shanejohnson@example.com,6684010492,3581456398996368,2025-10-10 +City Hotel,1,414,2017,April,17,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,104.12,0,2,Canceled,Sara Yang,tinaaustin@example.org,424-236-1618,2599800022051359,2025-05-15 +City Hotel,0,155,2017,June,23,3,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,111.97,0,3,Check-Out,Thomas Logan,jbrown@example.org,001-425-568-5459x789,38954817915808,2024-10-25 +Resort Hotel,0,32,2017,March,10,6,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Contract,77.92,0,2,Check-Out,Ashley Horn,swansonbrittany@example.com,590.538.2762,30245140823902,2024-12-25 +Resort Hotel,0,20,2017,February,8,19,2,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,195.99,1,0,Check-Out,John Moore,whensley@example.net,816.720.3674x261,501865614843,2026-02-19 +Resort Hotel,1,88,2017,June,25,17,4,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,243.0,179.0,0,Transient,122.73,0,2,No-Show,Amanda Brown,johnsoncharles@example.com,001-584-549-2628x898,639044055932,2026-02-20 +Resort Hotel,0,2,2017,March,12,21,2,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,I,1,No Deposit,11.0,79.0,0,Transient,38.89,0,1,Check-Out,Stacey Dixon,rubioscott@example.net,930-899-6220x525,4959690916336,2025-05-15 +Resort Hotel,0,27,2017,December,51,19,0,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,85.17,0,0,Check-Out,Jill Ramirez,stacy23@example.net,(671)616-4349x5033,180046634500024,2026-03-03 +City Hotel,0,63,2017,September,36,8,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,96.43,0,2,Check-Out,Anthony Mitchell,maxwelltammy@example.net,718.228.2630,370575383597880,2026-01-13 +Resort Hotel,1,151,2017,July,29,14,2,10,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,242.0,179.0,0,Transient,160.49,0,0,Canceled,Katherine Weaver,ydaniels@example.org,+1-703-754-5112x2378,30039175024258,2025-03-04 +Resort Hotel,0,33,2017,April,15,9,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,E,0,No Deposit,319.0,179.0,0,Transient,106.95,0,0,Check-Out,Rachel Macdonald,haydenkatrina@example.net,+1-702-465-0792x18954,3575595454690783,2025-06-06 +City Hotel,0,19,2017,August,32,9,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,143.15,0,3,Check-Out,Amy Lee,rmerritt@example.com,724-681-5130x327,341569867130702,2025-02-12 +City Hotel,1,15,2017,September,38,20,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,139.27,0,0,Canceled,Matthew Rivas,amanda61@example.org,561.830.0370,342758312448087,2024-08-14 +City Hotel,1,87,2017,June,23,1,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,155.41,0,1,Canceled,Allison Miller,acruz@example.org,(226)321-6722x0590,374149042488075,2026-03-17 +City Hotel,0,98,2017,April,14,4,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,101.57,0,2,Check-Out,Jennifer Ray MD,slopez@example.net,7682448254,3530634002140795,2025-03-21 +City Hotel,1,92,2017,September,39,27,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,88.44,0,2,No-Show,Jason Barnes,ilong@example.org,9332536204,4640387057275,2024-09-05 +City Hotel,1,135,2017,April,14,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,65,Transient,105.64,0,0,Canceled,Erica Yang,kendramiller@example.org,762-733-1947,346932352249665,2025-06-06 +City Hotel,0,11,2017,May,19,5,2,0,1,0.0,0,BB,CHE,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,158.22,0,0,Check-Out,Jason Kirk,snyderwilliam@example.com,949-857-1841x519,5177026108078800,2026-01-21 +Resort Hotel,0,102,2017,December,51,23,0,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,264.0,179.0,0,Transient-Party,81.26,0,0,Check-Out,Michael Smith,wadecory@example.com,964.498.8288,503862422063,2024-12-16 +City Hotel,1,160,2017,March,11,17,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,83.17,0,0,Canceled,Ronald Baker,thomasjeffery@example.com,724-589-0139x649,4458833757504928122,2026-02-06 +Resort Hotel,0,289,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,74.73,0,0,Check-Out,Mark Rangel,allen99@example.org,001-700-251-6835x79879,3592853554218115,2024-10-21 +City Hotel,1,96,2017,November,47,18,0,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,1,A,A,2,No Deposit,239.0,179.0,0,Transient,109.17,0,1,Canceled,Mrs. Julia Chavez DDS,tyrone09@example.org,661.437.0118x42063,213177930110217,2024-08-03 +City Hotel,0,17,2017,November,44,2,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.96,0,1,Check-Out,Johnny Escobar,dconrad@example.com,247.252.3519,4582357257737021186,2024-07-21 +City Hotel,1,0,2017,May,19,5,0,1,1,0.0,0,SC,,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,2.51,0,0,Canceled,Jeremy Cochran,kayla23@example.net,277-658-0194,4742892680296446282,2024-11-13 +Resort Hotel,0,47,2017,November,45,10,2,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,301.0,179.0,0,Transient,77.54,0,0,Check-Out,Denise Stewart,gjacobs@example.net,(251)785-6415,2671835401903821,2026-01-15 +City Hotel,0,247,2017,September,37,9,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,110.16,0,1,Check-Out,Reginald Brown,nathanholmes@example.com,246-644-4841x5154,5306791190853063,2024-12-12 +Resort Hotel,0,46,2017,June,24,12,2,5,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,D,1,No Deposit,34.0,179.0,0,Transient-Party,78.86,0,0,Check-Out,Charles Mendez,schwartztiffany@example.net,315.993.0314x43844,565679483612,2025-07-24 +Resort Hotel,0,13,2017,December,51,22,2,5,2,1.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,31.0,179.0,0,Transient,81.88,1,1,Check-Out,Jordan Morse,eugenemitchell@example.org,001-427-726-4780,213170471586952,2024-12-16 +City Hotel,0,403,2017,July,30,20,1,5,2,0.0,0,SC,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.73,0,0,Check-Out,Brittney Boyd,espinozalindsay@example.com,427-768-5691x318,4321133307976525,2026-02-15 +Resort Hotel,1,196,2017,January,3,18,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,124.48,0,0,Check-Out,Brandy Hogan,oreyes@example.net,7878556931,4484503308829,2026-01-24 +City Hotel,1,49,2017,August,35,24,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,63.68,0,0,Canceled,James Ball,cunninghammichelle@example.com,428-999-9329,4438576097517877,2024-07-22 +City Hotel,0,54,2017,October,43,23,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,106.08,0,0,Check-Out,Nicole Scott,reynoldsjessica@example.com,(220)272-1248x4587,676235326979,2025-06-17 +City Hotel,1,36,2017,June,26,25,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,188.02,0,1,No-Show,Aaron Gonzalez,cooperteresa@example.net,275-207-9935x1259,180078499397626,2024-11-15 +City Hotel,0,165,2017,June,26,23,0,3,1,0.0,0,BB,GBR,Corporate,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,135.25,0,0,Check-Out,Matthew David Jr.,jeannegalloway@example.com,+1-385-940-6466x397,2264491975598481,2024-10-30 +City Hotel,0,250,2017,October,42,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,178.0,179.0,0,Contract,151.85,0,3,Check-Out,Mitchell Daniels,amandawaller@example.org,(497)820-1741x74690,2290279584205855,2024-04-05 +Resort Hotel,0,188,2017,March,10,5,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,51.04,0,2,Check-Out,Dakota Vaughn,michael30@example.org,(415)702-2340,4200795068178577811,2025-03-20 +Resort Hotel,1,125,2017,June,24,14,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,245.21,1,0,Canceled,Jennifer Torres,trevor31@example.net,001-900-798-8751x510,6011792893180675,2024-12-24 +City Hotel,1,5,2017,August,34,23,1,1,1,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,131.91,0,0,No-Show,Sergio Massey,heather16@example.com,870-902-6575,4125911296698,2024-04-25 +City Hotel,1,23,2017,June,24,8,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.72,0,0,Canceled,Brianna Aguilar,jordan33@example.com,001-319-733-0311x5961,676328520934,2024-08-25 +City Hotel,0,1,2017,July,28,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,135.86,1,1,Check-Out,Bryce Thompson,jacob67@example.net,794-489-1226,4278031461096,2025-12-17 +City Hotel,0,98,2017,November,45,8,0,2,1,0.0,0,BB,ITA,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,106.93,0,0,Check-Out,Deborah Hawkins,yatesandrea@example.com,001-528-347-7939x8270,4389187908342965,2024-04-03 +City Hotel,0,1,2017,June,24,10,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,60.0,0,Transient,90.89,0,2,Check-Out,William Chambers,alexander37@example.org,756-982-5841,6011190781091270,2025-01-14 +City Hotel,0,8,2017,July,29,21,1,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,72.0,179.0,0,Transient,114.61,0,0,Check-Out,Ryan Conner,ijones@example.com,(920)921-7525,675954234018,2025-06-17 +City Hotel,0,24,2017,April,17,24,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,118.8,0,3,Check-Out,Larry Rowland,kgates@example.net,(846)249-7589x06082,2234072008590799,2024-10-09 +City Hotel,0,224,2017,June,24,9,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,133.97,0,1,Check-Out,Deborah Smith,garciajasmine@example.com,4847414553,3509303539147692,2025-05-06 +City Hotel,0,14,2017,October,41,9,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Contract,64.0,0,1,Check-Out,Timothy Wilson,lisa53@example.org,+1-515-501-6109,2242848095161978,2026-01-26 +City Hotel,0,3,2017,March,13,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,16.0,71.0,0,Transient,47.47,0,1,Check-Out,Jose Ramsey,kevinperry@example.net,947-567-9989,4069522179448072670,2024-07-20 +Resort Hotel,1,152,2017,May,22,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,240.0,179.0,0,Transient,140.74,0,0,Canceled,Shane Garcia,dbrown@example.net,+1-917-618-6634x8581,4939120389112941,2026-02-19 +City Hotel,0,166,2017,September,38,19,2,1,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient-Party,214.44,1,2,Check-Out,John Banks,halltheresa@example.com,709.253.2859,4389433610246,2025-12-12 +Resort Hotel,0,46,2017,August,32,10,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Group,214.2,0,1,Check-Out,Amy Wilcox,jeff18@example.org,+1-604-558-6041x45022,4139285634262417,2025-10-28 +City Hotel,0,100,2017,June,24,15,0,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,179.05,0,1,Canceled,Darrell Coleman,robertrodriguez@example.org,(613)231-6746x741,30280420305460,2025-10-15 +Resort Hotel,0,19,2017,June,24,12,2,3,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,72.0,0,Transient,44.37,0,0,Check-Out,Jacqueline Ramos,asalazar@example.com,261.365.2072,4328196625389,2025-03-13 +City Hotel,0,131,2017,June,26,24,4,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,140.38,0,3,Check-Out,Michael Wong,cynthia76@example.net,001-467-399-0871,4530840344578,2024-08-28 +City Hotel,1,147,2017,July,28,12,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,137.09,0,2,Canceled,Bradley Brown,wallharold@example.org,931-314-4953x89262,2287589419143435,2024-05-21 +Resort Hotel,0,0,2017,October,40,2,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient,47.16,0,0,Check-Out,Anna House,monicaromero@example.com,+1-373-345-3399x427,3567969345095744,2024-11-01 +City Hotel,1,381,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.9,0,0,Canceled,April Rhodes,douglasgolden@example.net,614-313-0356x78424,6011299665031805,2024-11-14 +City Hotel,0,13,2017,August,31,2,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,135.06,0,2,Check-Out,Brian Peters,samanthacasey@example.net,535.331.6370x1066,4091346423832723,2025-02-17 +Resort Hotel,1,41,2017,September,37,16,2,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,260.0,179.0,0,Transient-Party,109.82,0,0,Canceled,Nicholas Smith,pdavis@example.com,+1-910-977-5209x4885,4210278120082037,2025-08-06 +Resort Hotel,1,153,2017,June,23,5,2,5,2,0.0,0,SC,AUT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,266.0,179.0,0,Transient,98.21,0,0,Canceled,Gregory Roberts,martinbrooks@example.net,618.441.7241x56926,4872528876116812,2026-01-02 +City Hotel,0,59,2017,May,20,14,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.1,0,1,Check-Out,Michael Conrad,gtaylor@example.org,496-500-9851x49757,213127758248987,2026-01-26 +City Hotel,0,240,2017,July,30,24,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,74.86,0,0,Check-Out,Michael Thompson,janderson@example.com,+1-817-935-1198x628,2720683699973747,2024-04-06 +Resort Hotel,0,13,2017,March,10,4,2,0,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,62.32,0,0,Check-Out,William Jackson,kowens@example.com,+1-311-446-5408x2194,3575712687495456,2025-08-09 +City Hotel,0,47,2017,June,23,9,1,2,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,250.67,0,0,Check-Out,Julie Conway,choimatthew@example.com,425.670.6648,370258197569607,2025-01-11 +Resort Hotel,1,43,2017,July,30,23,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,Kara Wong,kerrnicole@example.org,8128733891,213171742009626,2024-05-26 +City Hotel,0,16,2017,November,45,8,1,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,128.9,1,1,Check-Out,Martha Dalton,swillis@example.net,882-249-4710x293,4052065011428,2024-09-29 +City Hotel,0,20,2017,October,43,27,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,80.42,0,1,Check-Out,David Greene,zhernandez@example.net,706-784-8543,060432814014,2026-03-15 +Resort Hotel,0,0,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,1,No Deposit,17.0,179.0,0,Transient-Party,226.23,0,0,Check-Out,Sean Huerta,gabriellachen@example.com,6867480216,4126410841521,2024-11-30 +City Hotel,1,49,2017,May,20,12,1,3,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,120.22,0,2,Canceled,Dawn Wolf,coopertodd@example.org,+1-937-676-0775x523,30410149795325,2025-03-20 +City Hotel,1,146,2017,August,32,5,2,4,2,2.0,0,BB,ITA,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,167.91,0,0,Canceled,James Gregory,joseph12@example.org,206-935-9362x6545,213145203454026,2025-11-21 +City Hotel,1,39,2017,July,28,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,113.23,0,2,No-Show,Natalie Caldwell,scott63@example.net,+1-533-780-4046x11534,4742969741853122,2025-12-17 +Resort Hotel,0,197,2017,October,43,27,2,6,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,75,Transient,78.31,0,0,Check-Out,Douglas Sullivan,henry46@example.net,+1-865-965-7701x3824,3544001953019440,2026-01-16 +Resort Hotel,0,1,2017,January,2,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,1,No Deposit,240.0,331.0,0,Transient,53.98,1,2,Check-Out,Richard Clark,jlee@example.org,001-980-673-9617x4747,4981342059299,2025-10-17 +City Hotel,0,181,2017,April,16,19,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.87,0,0,Check-Out,Todd Buchanan,gsmith@example.org,+1-208-772-4472x6262,4626316643665,2025-02-28 +City Hotel,0,77,2017,December,50,15,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,90.96,0,1,Check-Out,Anna Villanueva,griffinlaurie@example.net,(829)789-3951,2707964535975964,2025-02-27 +City Hotel,1,159,2017,May,18,1,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,136.77,0,0,Canceled,Jimmy Norman,cory33@example.org,347.524.4609x099,3580962226339540,2024-08-23 +City Hotel,0,90,2017,August,33,16,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,123.79,0,1,Check-Out,Crystal Wallace,qbartlett@example.net,(407)488-5713,180079597865241,2025-01-07 +Resort Hotel,0,1,2017,July,27,8,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,240.0,179.0,0,Transient,168.39,0,0,Check-Out,Paul Figueroa,cbowman@example.org,618.941.9749x7835,372138866341462,2026-03-21 +Resort Hotel,0,46,2017,March,10,8,1,2,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,E,1,No Deposit,242.0,179.0,0,Transient,46.39,1,2,Check-Out,Melissa West,stephanie21@example.net,+1-489-292-5809x558,4533367130602,2024-08-05 +City Hotel,0,14,2017,May,20,13,1,2,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,135.94,0,1,Check-Out,Natasha Lester,hortonkrista@example.com,2495871254,4457879568912312,2024-11-07 +Resort Hotel,0,12,2017,December,52,27,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,44.0,179.0,0,Transient,56.24,0,0,Check-Out,Abigail Moreno,downscarl@example.org,001-765-861-1897,4009418062080822,2026-02-10 +Resort Hotel,0,43,2017,September,37,13,3,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,364.0500000000011,179.0,0,Transient,46.25,0,0,Check-Out,Randall Stokes,uwright@example.com,(496)651-8870x71587,3541261430771012,2026-02-28 +City Hotel,1,113,2017,August,31,2,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,99.5,0,0,Canceled,Kyle Williams,aadams@example.net,(527)911-3377,3550768203791868,2025-02-01 +Resort Hotel,0,2,2017,April,17,24,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,16.0,224.0,0,Transient,42.07,0,1,Check-Out,Edward Cummings,hulleric@example.org,700-826-0902x978,3545019763340714,2025-10-27 +Resort Hotel,0,126,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,221.0,0,Transient-Party,36.9,0,0,Check-Out,Angela Nelson,laurawu@example.org,924-690-7036x903,4146898692893849,2024-05-03 +Resort Hotel,0,28,2017,October,40,5,2,7,2,0.0,0,BB,NLD,Online TA,Direct,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,96.18,1,2,Check-Out,Kaylee Lewis,morrisonsarah@example.org,784.875.3745x1949,213175996867522,2024-09-02 +City Hotel,0,160,2017,July,27,4,0,4,3,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,110.4,0,0,Check-Out,Gail Morales,deandouglas@example.net,854.420.3132,30048535205580,2026-01-23 +Resort Hotel,0,162,2017,August,32,9,2,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,118.39,0,0,Canceled,Andrew Kelly,benjamindavid@example.com,259-604-2723,4625559910043648620,2024-08-24 +Resort Hotel,0,272,2017,September,39,25,2,1,1,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,87.43,1,0,Check-Out,Gary Cunningham,danielstammy@example.net,858.834.0326x68079,372706437252655,2024-08-12 +Resort Hotel,0,8,2017,March,12,18,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,51.87,0,2,Check-Out,Jessica White,masonlisa@example.net,(873)800-1609,3597434542264522,2025-05-24 +City Hotel,1,191,2017,June,23,1,4,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,112.89,0,0,Canceled,David Thomas,kathleen46@example.org,(279)532-1570,3500768023278063,2024-05-02 +City Hotel,0,0,2017,January,4,23,0,1,1,0.0,0,BB,ITA,Online TA,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.44,0,2,Check-Out,Kevin Davis,kjones@example.org,419.524.3223,342605604272420,2026-01-28 +Resort Hotel,1,391,2017,May,19,8,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.88,0,0,Canceled,Michael Brown,grahamalison@example.net,281.210.0814x4035,2237407901651941,2024-08-10 +City Hotel,0,4,2017,December,52,30,1,2,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,88.27,0,1,Check-Out,Jacqueline Steele,rubioanna@example.com,+1-608-858-9619x2386,6515909776370543,2024-12-24 +Resort Hotel,0,3,2017,March,12,16,2,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,1,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,41.74,0,3,Check-Out,Joseph Jenkins,codyallen@example.org,001-381-941-3420x935,676237591703,2025-03-07 +City Hotel,0,10,2017,May,20,11,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.26,0,0,Check-Out,Jorge Spencer,moorechad@example.org,+1-290-234-1191,346099736299442,2024-08-31 +Resort Hotel,0,36,2017,April,17,25,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,75,Transient-Party,106.21,0,0,Check-Out,Erica Walker MD,tamara62@example.net,(759)844-9791x083,349832283426035,2025-11-04 +City Hotel,0,25,2017,February,9,26,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient-Party,161.9,0,0,Check-Out,Ronald Jenkins,john44@example.org,622.497.1109x0501,3562499053608749,2025-06-06 +City Hotel,0,14,2017,March,12,19,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,224.13,0,1,Check-Out,Christine Cardenas,jreynolds@example.net,649-925-9449,3554230572369327,2025-04-26 +City Hotel,0,8,2017,June,24,9,0,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,143.96,0,2,Check-Out,Michael Curtis,kingadam@example.org,361.260.9306,3556443493867596,2026-01-17 +City Hotel,0,58,2017,April,15,6,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,83.0,179.0,0,Transient,128.33,0,1,Check-Out,Sarah Smith,bbeard@example.org,001-402-831-3565x514,2717883278159552,2025-09-11 +Resort Hotel,0,22,2017,December,49,4,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,54.05,0,1,Check-Out,Stacey Hernandez,margaretreid@example.com,+1-278-650-6134x229,4906810099474395916,2024-07-03 +Resort Hotel,0,2,2017,January,5,30,1,0,2,1.0,0,BB,PRT,Direct,Direct,1,0,1,G,G,1,No Deposit,17.0,179.0,0,Transient,51.46,1,3,Check-Out,Deborah Reed,wball@example.org,895-229-9916,2720573290057943,2025-09-28 +City Hotel,0,54,2017,August,35,27,0,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,104.13,0,1,Check-Out,Kathleen Randolph,suarezsteven@example.net,460.231.8663x13936,378936425818480,2024-04-30 +Resort Hotel,0,21,2017,May,21,23,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,1,0,0,A,I,0,No Deposit,244.0,179.0,0,Transient,1.71,0,1,Check-Out,Samuel Phillips,jamiedavenport@example.net,680-287-1388x37426,3557297580900184,2026-02-17 +Resort Hotel,0,297,2017,July,29,15,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,153.44,1,0,Check-Out,Samantha Holmes,damon88@example.org,+1-480-919-0312x41072,4493144712266487,2025-08-13 +Resort Hotel,0,99,2017,October,41,10,2,1,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,86.61,0,0,Check-Out,Kari Conner,greenmelissa@example.org,858.932.3752,344620319364089,2026-01-25 +Resort Hotel,1,2,2017,October,41,9,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,236.0,179.0,0,Transient,135.04,0,1,Canceled,Michelle Thomas,kristinehernandez@example.net,453.250.2900,180099235661992,2024-09-09 +Resort Hotel,0,1,2017,April,16,13,1,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Group,64.17,0,1,Check-Out,Peter Campbell,guzmandavid@example.com,+1-717-436-7111x4207,30176815994001,2024-10-14 +City Hotel,0,12,2017,March,11,12,0,1,1,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,103.17,0,0,Check-Out,Dawn Daniel,jasmin58@example.org,(276)470-2073x9360,4268277789998443,2024-10-03 +City Hotel,0,141,2017,March,10,6,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.8,0,1,Check-Out,Eric Smith,rhernandez@example.net,831-787-6862,4347319153213537560,2026-03-13 +City Hotel,0,146,2017,August,34,23,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,239.41,0,3,Check-Out,David Bryant,olee@example.net,225.322.0280,3568723971861922,2024-07-15 +Resort Hotel,0,55,2017,August,31,2,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,240.0,179.0,0,Transient,119.2,0,1,Check-Out,Nathan Ellison,gruiz@example.com,538.585.5788x508,3581235705243395,2024-06-26 +City Hotel,0,111,2017,November,47,18,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,105.94,0,3,Check-Out,Victoria Hobbs,dmurphy@example.org,352-794-9815,6011607163550540,2025-08-20 +City Hotel,0,49,2017,December,50,9,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.19,0,0,Check-Out,Jeffrey Ellis,millskayla@example.org,001-297-734-0919x40924,38360223895644,2025-11-12 +City Hotel,0,169,2017,August,34,22,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,215.1,0,1,Check-Out,Mr. Robert Cooper Jr.,russell21@example.com,001-731-758-2582x573,2720120882535918,2024-10-04 +City Hotel,0,58,2017,September,36,8,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,104.32,0,1,Canceled,Catherine Griffin,joshuajohnston@example.org,+1-599-269-1273x68616,4980035298622475,2025-08-04 +City Hotel,1,150,2017,March,12,20,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,127.16,0,2,Canceled,Jessica Calhoun,melanieanderson@example.com,338-508-2010x117,3546919802366670,2026-02-07 +Resort Hotel,0,155,2017,July,31,30,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,241.0,179.0,0,Transient,251.86,0,2,Check-Out,Lisa Lawrence,cforbes@example.org,(280)622-4184x035,373611048959848,2025-05-19 +Resort Hotel,1,36,2017,August,33,13,2,6,2,2.0,0,BB,,Online TA,Direct,0,0,0,C,G,0,No Deposit,247.0,179.0,0,Transient,207.1,0,0,No-Show,Julia Ruiz,ashleystevens@example.net,937-336-4348x68610,6501952457832163,2024-11-23 +Resort Hotel,1,41,2017,November,47,19,2,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,321.0,179.0,0,Transient,82.77,0,0,No-Show,Gary Scott,wburns@example.com,556.376.0216,4598167357713,2024-04-04 +City Hotel,0,43,2017,November,46,17,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.44,0,0,Check-Out,Edward Jones,rsmith@example.org,986-726-0659x030,345911594346506,2024-10-24 +City Hotel,1,0,2017,March,13,27,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,67.0,0,Transient,100.12,0,0,Canceled,Brian Bishop,nancymontes@example.org,+1-210-214-7059,569326909706,2025-12-12 +Resort Hotel,1,52,2017,August,32,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,74.0,179.0,65,Transient,199.48,0,1,Canceled,Miranda Perkins DDS,melissa87@example.net,328-515-2004x0189,5211798619803094,2024-05-08 +City Hotel,0,77,2017,April,14,5,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.62,1,1,Check-Out,Zachary Stark,bullockcatherine@example.org,001-362-266-7318x1377,4159544830938,2024-11-14 +City Hotel,0,12,2017,August,33,12,2,1,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,124.0,179.0,0,Transient,177.94,0,1,Check-Out,Tonya Graham,kimberly25@example.com,478-747-4586x011,5312295528477050,2025-11-23 +City Hotel,0,4,2017,May,19,8,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.9,0,1,Check-Out,Faith Ritter,travissmith@example.net,(465)368-8273x12445,213161220615309,2024-12-28 +City Hotel,0,18,2017,August,32,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,8.0,179.0,0,Transient,174.1,0,0,Check-Out,Lauren King DVM,luisherman@example.org,001-210-411-0600x622,344302191713051,2024-05-27 +City Hotel,1,0,2017,November,44,2,0,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.7,0,1,No-Show,Alyssa Hernandez,adkinsbrittany@example.org,390.672.4686x09635,213130567445752,2025-05-17 +City Hotel,0,33,2017,December,51,19,0,1,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,28.0,179.0,0,Transient,98.76,0,0,Check-Out,William Mitchell,pacosta@example.org,+1-353-484-3505x9055,4786237442439,2024-10-25 +Resort Hotel,0,162,2017,May,18,5,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,45.88,1,0,Check-Out,Larry Henderson,ubell@example.org,(655)823-1783x54313,4676866648824240,2025-08-27 +City Hotel,0,5,2017,March,12,22,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,72.47,0,2,Check-Out,Hannah Wilson,todd73@example.org,229-856-6439,4843740649142423,2025-05-04 +Resort Hotel,1,20,2017,August,32,8,2,5,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Canceled,Veronica Ortiz,nmartin@example.com,+1-464-682-6776x27632,348096314030429,2026-01-20 +City Hotel,1,0,2017,August,32,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,206.41,0,2,Canceled,Brandy Anderson,conniehumphrey@example.org,2709342122,3502093803921933,2025-06-22 +Resort Hotel,0,19,2017,May,18,1,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,1,A,E,0,No Deposit,243.0,179.0,0,Transient,50.33,0,3,Check-Out,Shawna Brown,acoleman@example.com,5056089996,4818535811302,2025-10-21 +City Hotel,0,10,2017,May,18,1,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,1,No Deposit,13.0,175.0,0,Transient,46.82,0,2,Check-Out,Julie Sandoval,shannon53@example.org,001-941-957-5089x0171,580089267919,2025-09-09 +City Hotel,0,34,2017,June,25,19,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.01,0,0,Check-Out,David Johnson,erin73@example.net,306.253.0517,341516265850092,2026-03-03 +City Hotel,0,152,2017,July,29,20,2,5,2,0.0,0,FB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,29.0,179.0,0,Transient,128.24,0,0,Check-Out,David Gray,keithunderwood@example.net,001-317-329-4102,4362728153750,2024-08-20 +Resort Hotel,0,47,2017,August,32,10,2,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,0,No Deposit,206.0,179.0,0,Transient-Party,205.53,1,0,Check-Out,Carlos Reid,lauracook@example.net,2258628245,3553210590314035,2026-03-09 +City Hotel,0,0,2017,April,16,20,1,0,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,16.0,277.0,0,Transient,4.79,0,0,Check-Out,David Lewis,teresa50@example.com,001-348-773-8352x60039,3527592516746843,2025-06-10 +City Hotel,0,110,2017,November,45,9,2,1,2,0.0,0,BB,ITA,Online TA,Corporate,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient-Party,62.5,0,1,Check-Out,Michael Stokes,erinwilliams@example.net,330-470-6222x60057,6011953636848172,2024-06-04 +City Hotel,0,38,2017,July,28,10,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,136.02,0,2,Check-Out,Michelle Kerr,johnbrown@example.net,962.414.3924x33088,3533419616866655,2026-02-27 +City Hotel,0,190,2017,August,35,26,0,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,104.57,0,1,Check-Out,Jason Wong,hwilliamson@example.org,381-249-9957,4321597527770465224,2025-02-13 +Resort Hotel,0,1,2017,July,28,12,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,C,2,No Deposit,12.0,179.0,0,Transient,104.51,0,1,Check-Out,Jesus Sawyer,derek55@example.com,+1-272-606-1493x5236,4421181722327623868,2024-07-02 +Resort Hotel,0,6,2017,May,21,23,2,1,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,213.43,1,2,Check-Out,Scott Marsh,jgonzalez@example.org,803-670-0154x25204,348932327076258,2025-01-11 +Resort Hotel,0,47,2017,January,4,25,1,6,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,125.19,1,0,Check-Out,Mario Clark,jhernandez@example.org,724-749-2036,4078679295412038737,2026-02-01 +City Hotel,0,94,2017,July,30,22,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,140.33,0,2,Check-Out,Katherine Boone,anthonynichols@example.net,691.233.6524x394,6509162977886861,2024-03-27 +Resort Hotel,1,2,2017,January,2,11,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,D,0,No Deposit,305.0,179.0,0,Transient,53.38,0,1,Canceled,Katherine Chang,lamnicole@example.com,+1-426-671-8774x658,342399944274649,2024-12-19 +City Hotel,1,16,2017,February,7,14,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.26,0,0,Canceled,James Jones,christina87@example.org,649-681-7165x673,2282733131103484,2024-06-15 +City Hotel,0,1,2017,March,12,20,1,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,108.58,0,2,Check-Out,Elizabeth Dean,kimberly21@example.net,001-479-269-3402x2597,6561019307978385,2025-06-11 +City Hotel,0,2,2017,August,35,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,L,A,0,No Deposit,14.0,179.0,0,Transient-Party,225.77,1,1,Check-Out,Kayla Bennett,jesselang@example.com,+1-405-576-6701,3535232856771644,2024-07-27 +City Hotel,0,10,2017,March,13,26,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,15.0,76.0,0,Transient,43.84,0,1,Check-Out,Gabriel Whitaker,paul60@example.com,001-311-765-5261x43579,2232414883198565,2025-09-23 +City Hotel,1,21,2017,January,5,27,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.5,0,1,Canceled,Timothy Martin,angela45@example.org,001-711-836-9835x0843,4222912102418043,2025-02-26 +Resort Hotel,0,18,2017,November,45,8,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient,57.17,1,2,Check-Out,Melanie Thompson,amybowen@example.net,8617029277,370224513409167,2024-12-09 +City Hotel,0,1,2017,August,32,9,1,2,1,0.0,0,SC,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,222.0,0,Group,84.88,0,1,Check-Out,Todd Melendez,michaelmcbride@example.net,886-859-1533x0909,4719966588908034,2025-03-29 +City Hotel,0,178,2017,April,15,9,1,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,113.97,0,1,Check-Out,Kimberly Reynolds,shawn15@example.net,275-331-3037x081,372058980449324,2025-06-08 +City Hotel,0,90,2017,July,27,2,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,136.9,0,1,Check-Out,Timothy Flowers,daniel97@example.org,(434)205-2662x809,4590999981167390020,2025-04-12 +City Hotel,0,17,2017,June,26,24,0,1,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,74.21,0,0,Check-Out,Jeanette Nielsen,michelle41@example.org,354.216.3290x3736,349166361569287,2024-08-01 +Resort Hotel,0,55,2017,August,32,9,1,5,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,192.53,1,2,Canceled,Paige Thompson,michael04@example.net,545.981.8252x603,676315359437,2025-10-24 +Resort Hotel,0,98,2017,December,51,23,1,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient-Party,64.51,0,0,Check-Out,Brooke Schwartz,deborah35@example.com,2857337260,375061772485453,2025-01-30 +Resort Hotel,0,46,2017,August,32,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,E,1,No Deposit,71.0,179.0,0,Transient-Party,65.52,0,1,Check-Out,Donna Stephenson,dmann@example.org,398.926.5455x8475,3507205207022572,2025-01-23 +City Hotel,0,42,2017,April,14,4,0,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.28,0,2,Check-Out,Andrew Miller,lbauer@example.com,568-764-2525x538,375383221203802,2025-06-06 +City Hotel,0,108,2017,December,2,31,1,2,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,29.0,179.0,0,Transient,104.18,0,0,Check-Out,Michael Olsen,yjackson@example.com,+1-625-590-0739,348416538532994,2025-06-23 +Resort Hotel,0,6,2017,December,49,3,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,83.0,179.0,0,Transient,103.08,0,0,Check-Out,Sharon Stevens,ashley62@example.net,+1-699-244-0216x255,5181009521699612,2025-03-02 +Resort Hotel,0,158,2017,March,13,31,1,3,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,95.31,0,0,Check-Out,Nicole Jackson,philip08@example.org,930.269.1508,6582707270600037,2025-12-28 +City Hotel,0,382,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,108.74,0,1,Check-Out,Tabitha Clark,hartscott@example.net,665-290-8428x43634,4925078448425025,2026-03-10 +City Hotel,1,44,2017,June,23,5,1,4,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.18,0,1,Canceled,James Kim,smithmichael@example.net,444.223.7889x68398,4758654943588888858,2026-02-14 +City Hotel,0,69,2017,October,41,14,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,80.66,0,0,Check-Out,Richard Noble,joshuaharper@example.com,2628803438,4762617372865619,2025-04-09 +City Hotel,0,50,2017,July,28,8,2,4,2,0.0,0,BB,CN,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,88.21,0,0,Check-Out,Kimberly Taylor,griffinrobert@example.com,001-217-574-4584x507,4596308951685758,2024-05-08 +Resort Hotel,0,0,2017,July,29,20,1,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,H,0,No Deposit,90.0,179.0,0,Transient-Party,61.22,0,0,Check-Out,Michaela Strickland,davidsmith@example.com,(878)656-8358x48909,213113362921433,2025-01-04 +City Hotel,0,49,2017,April,17,28,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,9.0,179.0,0,Transient,81.28,0,2,Check-Out,Charles Ford,ann44@example.net,(448)391-4203,639096984112,2024-08-03 +City Hotel,1,414,2017,August,31,1,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,124.81,0,0,Canceled,Allen Sanchez,yvalenzuela@example.net,+1-923-933-8445x04633,4171884455713,2024-10-30 +City Hotel,1,153,2017,August,35,27,2,4,1,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.03,0,0,Canceled,Xavier Webb,ashley85@example.com,001-968-663-8455,4113689073028,2025-09-02 +City Hotel,0,37,2017,May,19,5,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,126.68,0,3,Check-Out,Sandra Kim,brian78@example.org,(767)504-7340x37785,3565516847972466,2025-05-03 +Resort Hotel,0,200,2017,October,42,17,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,1,No Deposit,258.0,179.0,0,Transient-Party,44.99,0,0,Check-Out,Patrick Russell,kelly64@example.net,899.274.8640x00569,3536990195649941,2024-07-03 +City Hotel,0,90,2017,July,27,4,2,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,41,Transient,89.25,0,1,Check-Out,Crystal Walker,dawn99@example.org,687-938-5676x538,6011758080197426,2024-07-04 +City Hotel,0,21,2017,July,29,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,141.84,0,1,Check-Out,Hannah Berg,amy59@example.net,(457)315-7995x3192,570074317530,2024-08-10 +Resort Hotel,0,0,2017,May,18,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,I,1,No Deposit,314.0,179.0,0,Transient-Party,4.12,0,0,Check-Out,Tina Padilla,huangryan@example.com,433-971-9361x6956,213150171559012,2026-02-20 +Resort Hotel,0,300,2017,August,33,10,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,240.0,179.0,0,Transient,226.11,0,1,Check-Out,Mr. Jeffery Lee,lindsaywalker@example.com,+1-724-413-2949x88977,4754410490752124029,2024-03-29 +Resort Hotel,0,138,2017,March,13,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,41.42,0,0,Check-Out,Shannon York,gwells@example.net,868-800-7160x060,4247295019325332,2024-10-20 +City Hotel,1,94,2017,May,22,30,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.65,0,1,Canceled,Matthew Wang,andreaacosta@example.org,(459)608-5950,501899808544,2026-01-18 +City Hotel,1,3,2017,March,10,8,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,2,No Deposit,203.0,179.0,0,Transient,94.13,0,0,No-Show,Gary Morgan,jenningsscott@example.net,818.406.9704x3715,3548902219494598,2025-10-27 +City Hotel,1,222,2017,June,25,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,87.06,0,0,Canceled,Kevin Robinson,smithlaura@example.net,(779)813-7207x6568,180000450179017,2025-11-26 +City Hotel,1,84,2017,July,31,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,88.19,0,1,Canceled,Patty Walker,lorraine82@example.com,(956)552-6207x2493,5588864238230260,2024-11-03 +Resort Hotel,1,0,2017,May,21,20,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,51.57,0,0,Canceled,Samantha Jackson,crawfordjulian@example.net,(456)283-7683,3537672058384290,2025-06-07 +City Hotel,0,24,2017,March,13,29,0,3,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.16,0,2,Check-Out,Tim West,jackson25@example.com,(468)215-8359x0228,4734141670000,2024-07-27 +Resort Hotel,0,6,2017,July,30,27,0,2,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,252.0,1,1,Check-Out,Emily Martin,xmartin@example.org,001-930-688-1456x75037,6011557240664220,2025-01-25 +City Hotel,1,32,2017,July,28,13,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,191.61,0,3,Canceled,Phillip Maddox,karenvazquez@example.org,(538)394-4695,375078710394514,2025-05-02 +City Hotel,1,201,2017,August,34,19,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,138.81,0,2,Canceled,George Odonnell,reedsusan@example.org,734.206.3484,5364662776371300,2025-11-21 +Resort Hotel,0,1,2017,March,13,31,0,7,2,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient,48.49,0,1,Check-Out,Molly Graves,troymason@example.org,638-869-2844x4594,344282288548307,2025-02-03 +City Hotel,0,2,2017,October,40,6,0,2,1,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,141.23,0,0,Check-Out,Kent Cole,erica46@example.com,001-893-869-8086,4625354087896526,2025-11-08 +City Hotel,1,146,2017,February,8,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,82.33,0,0,No-Show,Judith Johnson,frederickwilliams@example.net,8502334470,4759750790121896,2024-08-01 +City Hotel,0,1,2017,February,9,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Jason Maddox,vbowers@example.net,001-271-367-2078x9131,342193328558499,2025-11-03 +City Hotel,1,0,2017,May,18,2,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,113.07,0,2,No-Show,Tiffany Ward,markalvarez@example.org,825.538.4081,675972806623,2024-07-07 +City Hotel,0,37,2017,October,41,10,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,74.0,179.0,0,Transient,168.01,0,0,Check-Out,Marcia Lin,jameswalton@example.com,(272)984-9917,3549214032617580,2025-04-01 +Resort Hotel,0,98,2017,May,19,5,3,10,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,304.0,179.0,0,Transient-Party,85.92,0,3,Check-Out,Matthew Hall,nstewart@example.com,001-595-639-5969x849,30462949947143,2025-11-21 +Resort Hotel,1,395,2017,March,11,11,1,3,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,83.25,0,0,Canceled,Richard Russo,xriley@example.net,(746)415-6262x36827,3511422459344067,2026-03-10 +City Hotel,1,94,2017,March,12,22,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.54,0,0,Canceled,Adam Maynard,christopherguzman@example.net,425-791-7774x19607,4257201135276,2024-12-15 +Resort Hotel,1,147,2017,July,30,29,3,5,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,229.69,0,0,Canceled,Michael Hurst,ebrown@example.com,001-450-274-1342x2203,3576393824175415,2024-11-23 +City Hotel,1,31,2017,March,10,2,2,0,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,181.0,179.0,0,Transient,0.96,0,0,Canceled,Jessica Reese,cluna@example.net,(967)635-8053,6571754626140543,2025-07-16 +City Hotel,0,159,2017,October,41,13,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,79.52,0,0,Check-Out,Michael Hanson,paulfriedman@example.org,268.276.4816x29403,4112893251178294,2025-04-12 +Resort Hotel,0,45,2017,June,25,19,1,2,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,216.27,0,1,Check-Out,Michael Campbell,kevinjohnson@example.org,332-638-4725x232,6530057857326462,2024-05-03 +City Hotel,1,112,2017,June,25,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,135.11,0,0,Canceled,Heather Marshall,ileonard@example.com,001-306-583-8268x5442,36706892578386,2025-09-07 +City Hotel,1,13,2017,September,36,4,0,1,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient-Party,114.59,0,2,No-Show,Alyssa Hopkins,ythomas@example.com,001-768-538-6529x8978,4401544542969120,2025-02-17 +Resort Hotel,0,37,2017,August,35,25,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,H,0,No Deposit,242.0,179.0,0,Transient,116.14,1,2,Check-Out,Christopher Byrd,ortizlynn@example.net,843.806.6851x5872,565364749590,2025-03-27 +City Hotel,0,13,2017,April,18,27,2,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.65,0,0,Check-Out,Erik Pittman,blandry@example.org,5087692678,4486923918147891,2024-12-05 +City Hotel,1,153,2017,March,13,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,44,Transient,131.75,0,0,Canceled,Diana Moore,timothy70@example.com,943-805-2861x25253,4458956817006309,2026-02-07 +City Hotel,0,90,2017,March,12,22,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,236.0,0,Transient,52.59,0,0,Check-Out,John Johnson,dchurch@example.org,408.578.9655x127,30018122518166,2024-09-04 +City Hotel,0,0,2017,March,10,3,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,1,G,G,1,No Deposit,13.0,179.0,0,Transient-Party,3.31,0,3,Check-Out,Erica Brown,williamsjacqueline@example.org,718-289-5980,4969044741906498,2025-06-16 +City Hotel,0,50,2017,April,15,10,2,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,111.8,0,1,Check-Out,Nathan Perez,millerelizabeth@example.com,001-735-283-8336x487,4841917371214701,2026-03-21 +Resort Hotel,1,1,2017,December,50,11,0,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,C,D,0,No Deposit,243.0,179.0,0,Transient,64.12,0,3,Canceled,Laura Johnson,ggraham@example.org,(561)845-4046x05216,340156726488975,2024-09-20 +City Hotel,0,44,2017,March,12,24,2,4,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,119.46,0,1,Check-Out,Nathan Wagner,jhampton@example.net,+1-808-592-6389,30455508119583,2024-12-26 +City Hotel,1,3,2017,April,15,9,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,61.07,0,0,Canceled,Peter Thomas,danavaldez@example.org,969.561.2325x031,4012922600326,2025-11-07 +City Hotel,0,104,2017,May,22,27,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,112.46,0,3,Check-Out,Henry Dunn,angela65@example.com,001-599-844-4140x7818,4948564358825273,2024-12-31 +Resort Hotel,0,236,2017,July,27,6,4,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,199.05,0,0,Check-Out,Steven Kelley,clarkedavid@example.net,+1-363-922-9109,213194576224517,2024-10-25 +Resort Hotel,0,43,2017,March,10,9,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,44.55,0,1,Check-Out,Mrs. Megan Potts MD,amanda55@example.org,001-702-454-5426x4178,4491210350218,2025-07-21 +City Hotel,0,20,2017,July,28,8,1,1,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient,96.56,0,1,Check-Out,Jim Monroe,ryan53@example.org,7809280181,4408061234605501,2026-03-02 +City Hotel,1,165,2017,March,10,6,0,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,115.04,0,1,Canceled,Jamie Smith,calexander@example.org,467.862.8814x153,501810721032,2025-08-27 +City Hotel,0,103,2017,March,11,17,1,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,91.61,0,0,Check-Out,Joanna Martin,charles07@example.org,521.499.9261x7044,378032442285497,2024-10-25 +City Hotel,0,47,2017,August,31,2,0,5,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,Andrea Flores,dylan46@example.com,876.592.2238x707,349328650764074,2024-09-07 +City Hotel,0,70,2017,April,18,27,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,98.36,1,2,Check-Out,Lee Keller,stevensonlisa@example.org,+1-589-440-5008x018,373823698927385,2024-10-23 +City Hotel,0,0,2017,March,12,20,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,2,No Deposit,14.0,331.0,0,Transient,41.64,0,0,Check-Out,Michael Perkins,ashleystephens@example.org,+1-434-766-9642x1471,3507117442643528,2024-06-29 +City Hotel,0,2,2017,May,21,24,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,3.74,0,1,Check-Out,Heather Simpson,ellisonwesley@example.net,7422681243,4368268010901305,2025-04-23 +City Hotel,1,89,2017,January,3,18,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,101.56,0,0,Canceled,Lisa Wood,wesley59@example.org,+1-244-335-5685x13366,4602604469618,2026-01-06 +City Hotel,0,0,2017,March,10,9,1,0,2,0.0,0,SC,,Undefined,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,Steven Nguyen,krystalwilson@example.org,(835)891-5998x4399,5586768016162706,2025-01-03 +City Hotel,0,49,2017,October,43,23,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,89.18,1,0,Check-Out,Melissa Hughes,pattersondarren@example.net,7015708266,4944566965641,2025-10-27 +City Hotel,1,163,2017,October,43,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,17,Contract,63.18,0,0,Canceled,Lynn Ramos,reginalewis@example.org,001-312-830-2831,6552024031449613,2025-03-07 +Resort Hotel,0,1,2017,July,27,7,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,185.16,1,2,Check-Out,Jacob Wu,diane94@example.com,(787)507-6887x491,3514628697869916,2025-04-03 +City Hotel,0,44,2017,November,48,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,71.0,0,Transient-Party,52.59,1,0,Check-Out,Stephanie Hansen,haynesmegan@example.net,3922499735,3572358655055576,2025-03-30 +City Hotel,0,414,2017,September,37,10,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,100.04,0,0,Check-Out,Teresa Norris,daniel15@example.net,+1-663-736-3867x967,3535577924183606,2024-07-07 +City Hotel,0,74,2017,July,30,23,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,Samuel Prince,xcummings@example.org,713.520.3223,4267052035184960,2026-02-27 +Resort Hotel,0,11,2017,July,30,23,1,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,178.72,0,3,Check-Out,Timothy Dunlap,christopher90@example.com,622.979.6031x0603,4440343755315314830,2025-02-09 +Resort Hotel,0,3,2017,March,13,23,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Patricia Brewer,crawfordjeffery@example.org,4347022538,180069392546138,2024-10-05 +City Hotel,0,150,2017,June,24,14,4,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,222.08,0,1,Check-Out,Patricia Jones,iguzman@example.net,448.742.1063x71209,676110253116,2025-05-09 +City Hotel,0,138,2017,October,41,12,1,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,21.0,179.0,0,Transient,119.94,0,0,Check-Out,Anne Jones,barbaracoleman@example.net,8799974450,377249269285332,2024-05-29 +City Hotel,0,13,2017,November,45,9,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,121.19,0,1,Check-Out,Cathy Evans,llambert@example.org,584-781-7017,2716216685740832,2025-09-30 +City Hotel,1,199,2017,December,52,27,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.95,0,1,Canceled,Katherine Page,hwright@example.net,001-568-673-6317,577549711999,2025-11-12 +Resort Hotel,0,16,2017,July,27,4,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,214.97,1,1,Check-Out,Anthony Harris,ihunt@example.org,+1-420-564-9090x93244,378717912998237,2025-08-29 +Resort Hotel,0,414,2017,March,13,27,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,63.95,0,0,Check-Out,Mary Wells,debrafranco@example.org,(303)251-4372x9110,3531976067169923,2024-05-07 +Resort Hotel,0,39,2017,April,14,5,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,48.18,1,1,Check-Out,Marcus Baker,sellersdustin@example.org,(621)864-3860x2837,3583757349803910,2024-07-24 +City Hotel,0,134,2017,March,12,22,2,4,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,75,Transient,78.4,1,0,Check-Out,Jose Hampton,racheljones@example.net,819.703.7290,503802363914,2025-05-08 +City Hotel,1,318,2017,July,28,15,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,141.72,0,0,Canceled,Trevor Lopez,daniellestokes@example.com,(494)978-6788,4175610332830337,2026-03-27 +Resort Hotel,0,165,2017,October,43,25,2,5,2,0.0,0,HB,GBR,Groups,GDS,0,0,0,D,D,1,No Deposit,296.0,179.0,0,Contract,41.49,0,0,Check-Out,Melinda Allen,stevewebb@example.com,207-855-3801,4032494566010,2024-06-04 +City Hotel,1,367,2017,May,20,14,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,135.18,0,1,Canceled,Anna Jackson,ryanjones@example.com,(950)204-9094,675980580863,2025-11-09 +City Hotel,0,2,2017,November,46,11,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,1.66,0,0,Check-Out,Sherry Mitchell PhD,adkinsvictor@example.net,961.490.0794,344482314330569,2025-09-20 +Resort Hotel,1,304,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,11.0,221.0,0,Transient-Party,38.71,0,0,Canceled,Curtis Mejia,hessamanda@example.com,580-499-6703,3538873737584172,2024-08-30 +Resort Hotel,0,94,2017,June,26,24,2,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,137.0,179.0,0,Transient,94.27,0,0,Check-Out,Mathew Bauer,stevendavis@example.org,+1-421-264-5768,378936961589305,2025-08-16 +City Hotel,0,413,2017,June,24,13,0,3,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,76.85,0,0,Canceled,David Thompson,pscott@example.com,3112998757,4312041252370415,2025-09-15 +Resort Hotel,0,44,2017,August,31,2,2,5,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,203.14,0,0,Check-Out,Samantha Santana,sethwall@example.net,800.461.9388x795,4012449241268751,2025-04-08 +Resort Hotel,1,213,2017,August,32,4,2,5,2,0.0,0,FB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Ronald Martin,nromero@example.org,001-263-464-8947x399,4477870207558602524,2024-10-30 +City Hotel,0,3,2017,August,34,24,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,171.33,0,1,Check-Out,Evan Carroll,adam97@example.org,9662561806,4393577198929261,2025-07-02 +City Hotel,1,321,2017,April,15,12,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,102.84,0,0,Canceled,Diane Roth,plopez@example.com,906.875.4385x231,3583249051096685,2024-09-27 +City Hotel,1,198,2017,June,25,21,0,1,1,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,129.18,0,1,Canceled,Dawn Taylor,imorgan@example.org,640.640.1085,3535849296544289,2024-03-28 +City Hotel,0,13,2017,November,47,25,1,1,1,0.0,0,BB,ITA,Groups,Corporate,0,0,0,D,D,0,No Deposit,14.0,60.0,0,Transient-Party,158.91,0,0,Check-Out,Cynthia Moore,atkinsontracey@example.org,935-508-2073,36197622308171,2025-11-06 +City Hotel,1,112,2017,July,29,15,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,223.92,0,0,Canceled,Adam Spencer,nelsonryan@example.com,(223)434-8053,675959351320,2024-10-30 +Resort Hotel,0,24,2017,August,31,4,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,27.0,179.0,0,Contract,53.34,0,0,Check-Out,Tina Harrington,rickysmith@example.net,(414)244-5804,373575242708691,2026-02-13 +City Hotel,0,13,2017,April,17,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,45.0,0,Transient-Party,55.55,0,0,Check-Out,Eric Richmond,ybrown@example.org,782-919-6015,2276320639713200,2025-12-10 +Resort Hotel,0,3,2017,January,3,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,92.74,0,0,Check-Out,Deborah Shaw,lmcmillan@example.org,5177490992,6011407403483390,2025-01-11 +City Hotel,1,129,2017,April,17,20,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,93.7,0,0,Canceled,Barry Lewis,yjohnson@example.net,4495678189,4368758669391,2025-03-22 +City Hotel,1,38,2017,August,32,8,1,0,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,Loretta Holt,douglas09@example.net,309.971.6036x63083,2410241183564160,2024-07-22 +City Hotel,0,61,2017,September,37,13,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,104.92,0,1,Check-Out,Jessica Perry,curryrachel@example.com,001-728-763-4079,30006775987564,2025-08-13 +Resort Hotel,0,43,2017,March,13,26,0,6,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,84.72,1,0,Check-Out,David Weiss,marksbrandon@example.org,672.812.1813,213142789460782,2025-11-20 +City Hotel,1,150,2017,June,23,4,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,125.28,0,1,Canceled,Bruce Johnson,dhampton@example.net,+1-876-775-8132x70507,676310202996,2024-10-16 +City Hotel,0,4,2017,September,38,19,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,133.38,0,3,Check-Out,Brandon Dominguez,whiterobert@example.net,+1-607-327-1688,4373834662014,2024-09-27 +City Hotel,0,1,2017,March,10,7,0,1,1,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.24,0,0,Check-Out,Bradley Walker,iross@example.org,7237291476,6011804285094677,2025-05-21 +City Hotel,1,149,2017,June,25,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,41,Transient,116.36,0,0,Canceled,Kevin Torres,alexandrabarker@example.net,001-286-772-2320x74663,4969499468378320955,2025-11-08 +Resort Hotel,0,14,2017,December,51,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,56.71,0,1,Check-Out,Luke Sampson,smithjamie@example.net,674-510-7822,4782165014696,2024-08-17 +City Hotel,1,113,2017,October,42,15,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,103.11,0,0,Canceled,Joshua Rice,candicegrant@example.net,(221)231-3642,4530754788274784131,2025-02-09 +City Hotel,1,9,2017,October,42,15,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,48.43,0,0,No-Show,James Jenkins,smithgabriella@example.org,241-369-6934x1650,6011927553190511,2025-09-07 +City Hotel,0,34,2017,November,48,27,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.6,0,1,Check-Out,Brooke Wilson,veronica41@example.org,+1-394-758-6327x30749,180031736799997,2024-11-16 +Resort Hotel,0,13,2017,December,52,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,74.38,1,2,Check-Out,Megan Melton,bryanbolton@example.net,711.977.8691,4419709612988,2025-03-17 +City Hotel,0,102,2017,August,35,30,2,5,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,252.0,0,2,Check-Out,Christian Lambert,fgriffin@example.org,645-620-7419x31412,30314619917577,2024-12-30 +Resort Hotel,0,31,2017,January,2,2,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,A,1,No Deposit,354.0,179.0,0,Transient,47.55,0,0,Check-Out,James Hoffman,sarahjones@example.net,(526)893-6570x266,374360407713169,2024-06-19 +City Hotel,0,26,2017,June,24,11,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,E,E,0,No Deposit,31.0,63.0,0,Transient,133.78,0,0,Check-Out,Christine Ramos,andreaburns@example.net,001-296-391-4931x4737,6540128860359853,2024-06-27 +City Hotel,1,35,2017,October,41,8,2,5,3,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,82.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Philip Ibarra,christinawright@example.org,261-922-4659x3511,4760976719935762,2025-10-14 +City Hotel,1,164,2017,March,12,20,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,223.0,0,Transient-Party,74.98,0,0,Canceled,Katherine Frey,robinsonchristopher@example.org,+1-338-585-5934x2238,4413563686242385827,2024-04-08 +City Hotel,0,242,2017,October,41,9,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,91.0,179.0,75,Transient,89.81,0,0,Check-Out,Michelle Dominguez,chenamy@example.net,+1-675-432-4127x464,2390606472426533,2025-07-29 +City Hotel,1,90,2017,May,20,12,0,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.84,0,0,Canceled,John Smith,masonjamie@example.net,834.583.7047,4789682137165,2025-03-31 +City Hotel,0,144,2017,April,14,1,1,3,2,2.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,73.97,0,0,Check-Out,Melissa Winters,richardcampbell@example.com,(841)894-2362,6571309097772074,2025-10-15 +City Hotel,0,6,2017,November,47,21,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,98.52,0,0,Check-Out,Brian Hunter,ronnie34@example.com,+1-978-834-2489x4491,6011099755456247,2025-08-14 +City Hotel,0,114,2017,April,17,27,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,83.42,0,1,Check-Out,Donna Morris,gonzalesamanda@example.net,8017574961,30580445332948,2025-08-24 +City Hotel,1,0,2017,August,33,14,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,240.53,0,1,Canceled,Ashley Bowen,sbarnett@example.net,001-492-638-8489x828,566835153362,2025-07-17 +Resort Hotel,0,31,2017,December,52,24,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,36.0,179.0,0,Contract,133.23,1,1,Check-Out,Allison Clay,laurafry@example.org,4126117886,676372319027,2025-06-07 +Resort Hotel,0,0,2017,March,11,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,D,0,No Deposit,181.0,179.0,0,Transient,114.03,0,2,Check-Out,Troy Baker,christianwyatt@example.net,527.966.2890x04239,3521616248983584,2024-08-21 +City Hotel,0,12,2017,August,35,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,45.0,0,Transient,53.51,1,0,Check-Out,Alexis Snyder,ronaldclark@example.org,(709)394-2212x3054,377264726596973,2025-12-06 +Resort Hotel,1,102,2017,March,11,12,1,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,241.46,0,1,Canceled,Joseph Carrillo,carol94@example.net,3088711656,6575160795223753,2024-06-30 +Resort Hotel,1,1,2017,March,9,2,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,0,Non Refund,316.0,179.0,0,Transient,45.82,0,0,Canceled,Ronald Crawford,zunigagloria@example.org,+1-244-375-1763x5876,4397184370799139341,2025-03-03 +Resort Hotel,0,154,2017,July,28,9,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,E,0,No Deposit,312.0,179.0,0,Transient-Party,62.6,1,2,Check-Out,Michael Howard,ryanstokes@example.com,(718)355-2541x576,4335899221897484,2024-04-10 +Resort Hotel,0,1,2017,November,46,12,0,1,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,216.26,0,0,Check-Out,Judy Perez,harrisjohn@example.net,805-319-8582,4086029528598,2025-10-14 +City Hotel,0,0,2017,October,41,13,0,1,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,105.07,0,1,Check-Out,Nicole Clark,rcraig@example.org,(832)894-7565x65453,38871080811342,2025-01-12 +Resort Hotel,1,44,2017,July,31,30,1,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,239.0,179.0,0,Transient,145.83,0,1,Canceled,Russell Bates,emily86@example.org,+1-887-462-0809x50904,4395229868724,2024-07-20 +Resort Hotel,0,10,2017,March,10,5,2,5,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,45.41,1,0,Check-Out,Kathy Jones,robert53@example.net,(961)308-2511x4817,4262878109281,2024-10-21 +City Hotel,0,1,2017,December,51,19,0,1,1,0.0,0,SC,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,45.0,0,Transient-Party,91.8,1,0,Check-Out,Sarah Garner,taylorkenneth@example.com,237-808-5394,3565811550148325,2025-12-18 +Resort Hotel,0,77,2017,March,12,19,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,90.12,0,2,Check-Out,Emily Oneal,vwoods@example.net,240.877.9906,213159795050274,2024-11-24 +City Hotel,1,414,2017,July,28,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.9,0,0,Canceled,Vanessa Maddox,wilkinsjonathan@example.net,9055752534,6551739610863345,2025-10-26 +City Hotel,1,37,2017,May,19,4,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,112.7,0,2,Canceled,Olivia Berry,david69@example.net,4547634002,4191320766397049,2024-05-29 +City Hotel,0,256,2017,August,32,9,2,2,2,1.0,0,HB,,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,236.12,1,0,Check-Out,Raymond Brown,benjaminholden@example.com,+1-843-730-2640,503891060066,2025-04-26 +City Hotel,0,110,2017,April,17,26,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.29,1,1,Check-Out,Joel Smith,kwolfe@example.org,596-700-5676x07121,4774504022159,2025-07-17 +City Hotel,0,28,2017,July,27,2,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.27,0,1,Check-Out,Diana Sloan,davidgonzales@example.net,242-585-7714,6533845129936135,2025-03-08 +City Hotel,0,8,2017,November,44,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,63.0,0,Transient-Party,107.35,1,0,Check-Out,Tracy Sanders,huffmankatherine@example.org,320.724.1433x0081,4327505877750386,2025-09-06 +Resort Hotel,0,77,2017,March,13,30,0,3,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,322.0,179.0,0,Transient-Party,93.05,0,0,Check-Out,Shannon Taylor,megan87@example.net,3207647671,3508406887801272,2026-02-16 +Resort Hotel,1,33,2017,December,51,22,0,3,3,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,314.0,179.0,0,Transient-Party,123.27,0,0,Canceled,Colleen Murray,stacywebb@example.org,(717)947-3578x0266,4923851856032406,2025-01-22 +City Hotel,1,259,2017,January,3,15,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,38.95,0,0,Canceled,Brian Maldonado,cwells@example.net,446.453.4604x61397,4332454380117,2024-04-28 +City Hotel,1,167,2017,June,25,21,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,108.91,0,0,Canceled,Alexa Johnson,herringmegan@example.com,(345)838-2535,4261478916459,2024-12-27 +City Hotel,0,92,2017,March,12,19,1,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,78.88,0,2,Check-Out,Thomas Hill Jr.,brennanerin@example.org,959-274-4518,2256713628292141,2025-11-29 +City Hotel,1,9,2017,February,5,1,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient,98.0,0,0,Canceled,David Robinson,ghenderson@example.org,+1-751-386-1438x171,630454608138,2025-07-26 +City Hotel,0,14,2017,April,15,10,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,67,Transient,79.32,0,0,Check-Out,Andre Goodwin,mossangela@example.com,9344553834,4757957741836637,2024-10-30 +City Hotel,1,165,2017,April,14,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,39,Transient,103.57,0,0,Canceled,Joseph Henry,zburns@example.org,485-533-2996x3431,4266513966885306,2024-10-29 +City Hotel,0,0,2017,January,4,25,1,2,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,C,0,No Deposit,187.0,179.0,0,Transient,87.75,0,0,Check-Out,Michael Steele,mannadam@example.com,512-499-7457,38853017076488,2025-05-12 +Resort Hotel,0,3,2017,January,2,9,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,45.36,0,0,Check-Out,Lisa Curtis,barbara71@example.com,+1-352-941-4232x41758,4467370227601136391,2025-08-27 +City Hotel,1,297,2017,August,34,25,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,1,Non Refund,13.0,179.0,0,Transient-Party,204.09,0,0,Canceled,George Oconnor,mhernandez@example.com,285.260.4141x05867,4059154610831932,2025-11-19 +City Hotel,0,18,2017,July,27,3,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,108.57,0,1,Check-Out,Katherine Thomas,walkerpaul@example.net,(433)697-0372,3528318843572820,2024-12-28 +City Hotel,0,18,2017,April,16,13,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,118.18,0,0,Check-Out,Erika Weaver,crystal93@example.com,901-461-1719x14064,4970736891534924579,2025-03-14 +City Hotel,1,39,2017,April,17,23,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient,91.5,0,2,No-Show,Melissa Pierce,jasoncosta@example.com,629.841.0476x235,676312616946,2026-02-18 +City Hotel,0,7,2017,February,9,25,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,76.81,0,0,Check-Out,Donald Stewart,robert73@example.org,785.478.0337x29123,2234059986151223,2025-11-20 +City Hotel,1,154,2017,July,29,13,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,134.08,0,1,Canceled,Christine Hammond,myersmichelle@example.net,5534466830,583474549446,2024-09-02 +Resort Hotel,0,134,2017,March,11,14,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient,25.88,1,3,Check-Out,Tina Harrington,preston61@example.org,(539)265-1183x7349,060449072689,2025-01-28 +City Hotel,0,15,2017,April,16,14,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,68.0,0,Transient,51.76,0,0,Check-Out,Tamara Stone,joannataylor@example.com,709.317.4203,6011034525408285,2025-12-03 +City Hotel,1,326,2017,July,30,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,1,Non Refund,8.0,179.0,0,Contract,101.22,0,0,Canceled,Paul Patterson,alexandramartinez@example.net,500.530.0467x23331,3515479018300507,2026-03-03 +City Hotel,0,45,2017,April,14,3,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.73,0,2,Check-Out,Susan Kelley,jessicagates@example.net,8275988925,213127756501932,2025-01-20 +Resort Hotel,0,0,2017,January,2,2,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,35.17,1,2,Check-Out,James Hart DDS,jacob49@example.org,2239448570,4602533378906,2026-03-24 +City Hotel,0,13,2017,September,38,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,86.49,0,1,Check-Out,David Smith,elizabeth52@example.net,301.991.9501,3540311730463165,2025-10-30 +City Hotel,0,104,2017,July,27,4,3,4,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,87.57,0,3,Check-Out,David Scott,dean16@example.org,(837)654-7294,374689505829489,2026-01-31 +Resort Hotel,0,0,2017,November,45,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient-Party,50.64,0,2,Check-Out,Eric Fisher,yharrington@example.org,(510)337-8321x131,4749095727741330,2024-07-30 +City Hotel,0,37,2017,September,37,9,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,162.53,0,1,Check-Out,Kelly Rojas,pwhite@example.net,(961)509-6179,341879313123833,2024-04-20 +City Hotel,1,11,2017,December,50,11,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,115.63,0,0,Canceled,Deborah Long,kristina74@example.com,5188595343,4173933740624,2025-06-22 +City Hotel,0,51,2017,October,41,13,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient-Party,121.9,0,0,Check-Out,Brandon Johnson II,tylerjoseph@example.org,+1-939-216-7070x185,4186771256827662,2024-06-13 +City Hotel,1,60,2017,May,19,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,116.7,0,0,No-Show,Gregory Jackson,dwaynenunez@example.com,+1-869-878-7538x87796,3540599888488337,2026-01-27 +City Hotel,0,0,2017,October,41,10,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.98,0,1,Check-Out,James Martinez,mlucas@example.org,369-638-7230,4102892202176267006,2025-12-20 +City Hotel,0,15,2017,April,16,16,0,1,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,123.97,0,1,Check-Out,Eric Hunt,justin16@example.net,291.927.4026,4312535968945097,2026-01-10 +Resort Hotel,1,156,2017,August,35,30,1,4,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,241.0,179.0,0,Transient,248.66,0,1,Canceled,Ricardo King,scottmonroe@example.net,315-807-2644x727,639017974796,2026-01-08 +City Hotel,0,9,2017,June,25,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,331.0,0,Transient-Party,78.16,0,0,Check-Out,Jeffrey Stephens,ralphmitchell@example.net,(456)951-8431x92435,3559018248865645,2024-12-03 +City Hotel,0,0,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,15.0,81.0,0,Transient,43.35,0,1,Check-Out,Michelle Warner,zoe27@example.net,+1-494-328-2308x55429,4561190292018,2024-11-11 +City Hotel,1,203,2017,July,28,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,252.0,0,2,Canceled,Angel Ryan,orodriguez@example.net,(831)460-9113x0122,3594437992282517,2025-06-21 +City Hotel,0,271,2017,May,21,24,1,1,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,134.8,1,0,Check-Out,Eric Lowery,glennparks@example.org,308-661-0678x2771,4613730672254922767,2024-09-19 +City Hotel,0,2,2017,October,44,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,45.0,0,Transient-Party,135.92,0,0,Check-Out,Sherry Jones,rebeccarodriguez@example.org,001-462-498-1282x1412,4590531484995058419,2025-03-25 +City Hotel,0,33,2017,March,10,6,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,105.88,0,1,Check-Out,Carol Goodman,shannonsharp@example.org,001-756-350-7610x808,3541805968501512,2025-06-08 +City Hotel,1,381,2017,October,44,29,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,95.99,0,0,Canceled,Gary Morgan,edavis@example.org,001-791-248-6460,6550663089964254,2025-08-01 +City Hotel,1,102,2017,October,42,18,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,105.59,0,0,Canceled,Jamie Bell,erin16@example.net,(659)653-7408,4973369053819888,2024-09-12 +City Hotel,0,9,2017,April,14,4,1,1,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.36,0,1,Check-Out,Patrick Mason,higginslauren@example.org,(294)274-1114x197,38165327358526,2025-06-27 +Resort Hotel,1,144,2017,October,41,9,0,6,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,113.96,0,0,Canceled,Jonathon Scott,gabrielmorris@example.org,001-776-679-2984x646,3507659723439076,2024-04-23 +City Hotel,0,372,2017,June,24,8,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.76,0,0,Check-Out,Peggy Singleton,arnoldelizabeth@example.com,5178648880,3528692501652565,2024-09-13 +Resort Hotel,0,3,2017,March,12,19,0,1,1,1.0,0,BB,GBR,Direct,Direct,1,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,52.08,0,1,Check-Out,Jesse Hinton,amymcbride@example.com,001-384-535-1577x4161,4061219025671,2024-07-08 +City Hotel,1,91,2017,May,20,15,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,66.55,0,0,Check-Out,Christina Wiley,walterrivera@example.org,795-932-3186x0169,4873880244104,2024-04-09 +City Hotel,1,45,2017,September,38,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,80.51,0,0,No-Show,Lynn Edwards,rschroeder@example.net,+1-760-593-0849,3546784311819480,2025-05-12 +City Hotel,0,196,2017,October,40,3,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Contract,109.63,0,3,Check-Out,Sarah Gomez MD,osmith@example.org,(699)716-1985x3960,4308067039578495856,2026-02-05 +City Hotel,0,186,2017,January,2,5,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.39,0,0,Check-Out,Adam Riddle,rhardy@example.org,001-543-735-0233x737,3576856303703402,2024-07-29 +Resort Hotel,1,234,2017,July,27,3,4,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,114.86,0,1,Canceled,Anna Moses,millerconnie@example.net,001-653-962-8867x02040,4455867702039755,2026-01-21 +City Hotel,0,43,2017,October,41,14,2,2,2,0.0,0,BB,NLD,Groups,TA/TO,0,1,0,A,A,0,No Deposit,93.0,179.0,0,Contract,112.89,0,2,Check-Out,Brenda Crawford,langkristin@example.com,001-984-886-2436x490,6551604712315026,2025-10-12 +Resort Hotel,1,166,2017,March,13,28,2,6,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,83.3,0,0,Canceled,Daniel Mills,yowens@example.net,(592)779-0925,213134431767177,2025-08-23 +City Hotel,0,9,2017,March,11,11,0,2,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,123.37,0,0,Check-Out,Kaitlyn Adams,gregknox@example.com,640-674-4540x3276,4816498126442725484,2025-05-23 +City Hotel,0,93,2017,May,22,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,124.47,1,2,Check-Out,Brett Vincent,psmith@example.com,+1-360-906-0972x24054,4747195249835610,2025-06-11 +Resort Hotel,0,242,2017,October,44,28,1,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,127.01,1,3,Check-Out,Jill Brennan,haleyheather@example.com,969.757.2193x063,30328706085668,2025-08-10 +City Hotel,1,251,2017,August,32,9,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.94,0,0,Canceled,Robert Hall,daycynthia@example.org,391.241.5652x40731,6540201097643728,2025-10-01 +City Hotel,0,4,2017,October,41,13,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Richard Brown,joserichmond@example.com,001-921-316-3794x0527,4532694359085946969,2024-11-14 +Resort Hotel,0,174,2017,July,27,6,1,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,309.0,179.0,0,Transient,189.17,0,1,Check-Out,Sara Mccoy,alyssajackson@example.com,3298152192,4922382563537827,2025-06-15 +City Hotel,0,99,2017,August,35,30,2,2,2,0.0,0,Undefined,,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,12.0,179.0,0,Transient,134.89,0,2,Check-Out,Richard Lee,collinsdanielle@example.org,+1-624-317-1684x0488,4690622394845661,2025-07-17 +Resort Hotel,0,0,2017,January,2,7,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,H,L,1,No Deposit,15.0,331.0,0,Transient,47.35,0,0,Check-Out,Mike Berry,vdavis@example.net,824.480.9573,4105215302957204,2025-08-25 +City Hotel,0,5,2017,August,33,10,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,139.87,0,2,Check-Out,Thomas Ward,tammysharp@example.net,001-524-587-3370x90927,4091593417842081,2024-07-19 +Resort Hotel,1,382,2017,October,41,11,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,104.81,0,0,Canceled,Andrea Jenkins,mnolan@example.org,001-259-829-9407x8135,6011318080540016,2024-08-08 +City Hotel,0,2,2017,November,47,24,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,131.04,0,1,Check-Out,Debbie Snow,gibsonhenry@example.org,+1-807-799-8583x496,6527002085994330,2024-12-01 +Resort Hotel,1,153,2017,July,29,13,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,Alicia Hill,cherylbowman@example.net,+1-360-298-3192x75306,180078694498450,2025-10-02 +Resort Hotel,0,7,2017,September,36,4,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,123.47,0,0,Check-Out,Darlene Nelson,hernandezsandy@example.org,001-350-273-2410x6822,371423040725827,2024-04-30 +City Hotel,0,56,2017,August,32,11,1,1,3,0.0,0,BB,,Direct,Direct,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,136.42,1,3,Check-Out,Tonya Hess,jamesfoley@example.com,248.593.5558x7179,4583403612428,2025-11-27 +City Hotel,0,2,2017,March,14,30,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.13,0,1,Check-Out,Michael Thompson,dawn00@example.com,905-266-1410x850,3568997357540876,2025-06-13 +City Hotel,0,258,2017,September,38,23,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Contract,64.3,0,0,Check-Out,Mr. Micheal Ray,farrellaaron@example.org,001-341-989-4625x186,4602181653304503,2025-07-23 +City Hotel,0,2,2017,October,43,23,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.03,0,1,Check-Out,Becky Shepherd,gmcknight@example.com,(453)321-4706x3999,30458189818648,2025-06-08 +Resort Hotel,1,162,2017,August,33,15,0,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,252.0,0,2,Canceled,Heather Mitchell,briana99@example.org,001-283-812-2110x4708,213152084339045,2025-02-19 +City Hotel,0,11,2017,March,10,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,87.57,0,1,Check-Out,Jessica Murphy,qjensen@example.org,001-613-923-4693x60645,4669945227989,2024-12-07 +City Hotel,1,159,2017,September,36,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.7,0,0,Canceled,Bradley Harmon,porterkayla@example.com,9963244549,30282217198066,2025-11-10 +Resort Hotel,1,247,2017,July,26,1,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,239.0,179.0,0,Transient,128.35,0,2,Canceled,Sarah Wolfe,munozsara@example.net,482.650.0538x310,3520707557390908,2025-01-29 +Resort Hotel,0,147,2017,July,28,9,3,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,G,0,No Deposit,14.0,179.0,0,Transient,232.52,0,2,Check-Out,Jeffrey Wells,jose06@example.net,961-625-4337x47897,30187318500609,2024-09-21 +City Hotel,0,388,2017,July,28,12,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,121.48,0,0,Check-Out,Adam Smith,danacox@example.com,869.309.9514x577,2700893338714139,2024-12-30 +City Hotel,1,86,2017,March,13,31,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,60.39,0,0,Canceled,Timothy Small,carolynlane@example.org,(657)545-9356x376,180062674587193,2025-07-29 +City Hotel,0,37,2017,February,6,7,2,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.56,0,2,Check-Out,Michelle Jones,heidi75@example.org,246.871.1056,4723730366093466,2025-10-04 +City Hotel,0,62,2017,June,26,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,156.35,0,0,Check-Out,Christine Torres DDS,jennifer72@example.com,(729)329-2235x08304,4042102849925467842,2025-01-03 +Resort Hotel,0,0,2017,January,3,18,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,239.0,179.0,0,Transient-Party,45.61,1,1,Check-Out,Melissa Flores,kpayne@example.org,(239)820-7925x9701,4270431298511958088,2025-03-08 +City Hotel,0,156,2017,August,35,30,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,G,0,No Deposit,16.0,179.0,0,Transient,234.33,0,3,Check-Out,Erik Wilson,jonathan20@example.net,+1-997-959-3836x88622,5149887567104279,2024-07-04 +City Hotel,0,2,2017,October,40,3,1,1,1,0.0,0,SC,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.99,1,0,Check-Out,Daniel Perez,jwang@example.net,(567)451-6916,370308836749068,2025-10-24 +City Hotel,1,59,2017,January,3,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,0,Contract,41.33,0,0,Canceled,Donald Oconnor,william19@example.net,001-459-378-6443x56885,4081879470413,2025-02-28 +Resort Hotel,0,0,2017,January,3,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,41.37,0,0,Check-Out,Michelle Mcdaniel,leecameron@example.net,(471)849-8741x4731,3560149291490796,2024-11-12 +Resort Hotel,0,158,2017,March,12,24,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,246.0,179.0,0,Transient,43.25,0,0,Check-Out,Amber Davis,cabreratracey@example.org,001-991-323-8724x269,4258720997908433,2024-06-30 +City Hotel,1,152,2017,August,34,22,1,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,135.42,0,0,Canceled,Justin Bautista,monicacox@example.org,435-514-3615x79066,2703374002239627,2025-10-30 +City Hotel,0,5,2017,May,19,8,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,163.59,1,2,Check-Out,Michael Campbell,xgreen@example.com,+1-876-410-0901x836,6011690334144096,2024-09-11 +Resort Hotel,0,201,2017,September,38,23,0,3,1,0.0,0,BB,IRL,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,211.44,0,1,Check-Out,Joan Crane,ymathews@example.org,(928)489-9339,4334365093983266,2026-02-21 +City Hotel,1,414,2017,October,43,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,13.0,179.0,41,Transient,127.12,0,0,Canceled,Cynthia Gates,christinamay@example.net,001-755-203-2143x8135,4604204169714755,2025-04-27 +City Hotel,0,414,2017,June,26,24,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,18,Transient-Party,116.43,0,0,Check-Out,Paula Case,bondanthony@example.com,9429154684,342339774909385,2025-12-11 +City Hotel,1,220,2017,September,36,8,4,1,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,230.37,0,0,No-Show,Douglas Hale,pamelarodriguez@example.org,(545)775-3547x4138,38486340582433,2025-09-27 +City Hotel,0,127,2017,December,49,5,2,2,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,132.8,0,0,Check-Out,Carrie Thornton,diana17@example.org,508.214.7019x72574,4329559421268989,2025-02-21 +City Hotel,0,30,2017,July,30,26,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,123.8,0,2,Check-Out,Stacy Sanchez,james77@example.net,368.711.6629,4096219384193499,2025-02-27 +City Hotel,0,33,2017,April,17,24,0,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,134.67,0,1,Check-Out,Patricia Cobb,whitekatherine@example.org,406.952.9777,180075357031289,2025-06-07 +Resort Hotel,0,5,2017,February,8,24,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,44.46,0,1,Check-Out,Stephanie Harris,dawsonzachary@example.com,+1-232-939-3542,180080377242114,2025-03-03 +Resort Hotel,0,135,2017,March,13,31,1,3,2,1.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,15.0,221.0,0,Transient-Party,60.98,0,0,Check-Out,Christopher Nichols,kristopher95@example.org,(341)202-5579x40293,3590087923270893,2025-05-03 +Resort Hotel,0,2,2017,August,31,2,0,10,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,54.34,0,1,Check-Out,Ian Sullivan,christopher10@example.net,8745224042,4728875651117549,2025-12-05 +Resort Hotel,0,28,2017,August,33,14,3,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,247.0,179.0,0,Transient,49.12,0,1,Check-Out,Wyatt Martinez II,rcardenas@example.org,291.707.6682x4817,4126473571865260,2024-04-06 +Resort Hotel,1,197,2017,August,35,26,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,134.99,0,0,Canceled,Jennifer Nguyen,lvaughn@example.net,+1-509-877-8787,2254733156953965,2025-06-21 +Resort Hotel,1,11,2017,July,28,10,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,130.78,0,1,No-Show,Jesus Dawson,suzannekelley@example.org,+1-841-623-5328x037,4983989007325613,2025-02-17 +Resort Hotel,1,17,2017,March,13,28,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,35.08,0,1,Canceled,Bradley Holmes,rayamber@example.org,001-732-859-7174x2911,4464544830288873471,2026-02-08 +City Hotel,0,84,2017,June,26,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,81.9,1,0,Check-Out,Nicholas Rollins,obrienscott@example.net,579.310.5024,3588150758183666,2026-01-05 +City Hotel,0,55,2017,March,12,19,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,106.99,0,0,Check-Out,Sharon Choi,allenkayla@example.net,857.593.4991x62502,3573537571108119,2024-09-05 +City Hotel,0,18,2017,February,8,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,95.99,0,1,Check-Out,Megan Boyd,thomasrusso@example.org,847.429.1731x114,30586375593383,2025-09-15 +Resort Hotel,0,159,2017,March,11,12,1,1,3,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,118.38,0,0,Check-Out,Angel Griffith,nknight@example.net,705-218-4399,588686919402,2025-07-16 +City Hotel,1,297,2017,September,37,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,86.44,0,2,Canceled,Nicholas Martinez,garyjackson@example.net,9365509118,378375555965011,2024-09-22 +City Hotel,1,414,2017,July,30,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,126.58,0,0,Canceled,Barbara Turner MD,crystalrangel@example.com,900-615-4633x9755,346488587421587,2025-05-23 +Resort Hotel,0,1,2017,July,29,17,2,6,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,104.42,0,1,Check-Out,Micheal Miller,johnsonamanda@example.net,+1-607-725-8864,4992826877539569,2024-08-02 +City Hotel,0,11,2017,May,21,24,0,1,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,54.0,0,Transient-Party,101.37,0,0,Check-Out,Kevin Wagner,robertsmelissa@example.com,(592)324-0296x66859,4325871551815747089,2024-08-26 +City Hotel,1,323,2017,June,23,4,1,2,2,0.0,0,BB,CN,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,112.63,0,0,Canceled,Kenneth Cox,sonyacooke@example.net,480-262-5191x3759,3523667171817313,2025-04-23 +City Hotel,0,3,2017,August,35,30,0,3,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,1,No Deposit,15.0,179.0,0,Transient,144.09,1,3,Check-Out,Nicholas Turner,wflowers@example.org,001-880-538-0013x498,30437772226963,2026-03-02 +City Hotel,0,10,2017,May,22,26,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,141.08,0,1,Check-Out,Christy Dennis,vevans@example.net,(320)900-7306x4788,583506279178,2025-01-15 +City Hotel,1,21,2017,August,35,26,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,168.74,0,2,Canceled,Kelli Payne,seanthomas@example.net,(851)412-1028,4009927450939,2024-12-30 +City Hotel,0,1,2017,December,52,26,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,97.8,0,1,Check-Out,Gabrielle Page,tracy14@example.org,001-558-408-9820x6414,4586452303073107,2024-09-09 +City Hotel,0,0,2017,June,23,1,2,7,2,1.0,0,BB,,Direct,Direct,0,0,0,E,L,2,No Deposit,15.0,179.0,0,Transient,166.89,0,2,Check-Out,Zachary Caldwell,karenjohnson@example.org,660.901.3048,569307560924,2025-11-19 +City Hotel,1,42,2017,May,18,5,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,Non Refund,243.0,223.0,0,Transient,113.55,0,0,Canceled,Kristin Roberson,arielcooper@example.net,001-571-966-7693,30289117997976,2024-09-14 +City Hotel,1,18,2017,March,10,4,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.89,0,1,Canceled,Judy Brown,pburch@example.org,(516)908-9957x8067,2256642503080885,2024-05-10 +Resort Hotel,0,111,2017,April,14,1,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,97.91,1,1,Check-Out,Stacy Chen,ncook@example.org,499-918-6860x079,36203860874138,2024-05-17 +City Hotel,1,9,2017,May,20,19,1,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient-Party,123.36,0,1,No-Show,Christopher Velazquez,victoriathornton@example.com,710-632-3287x104,3570002425231743,2025-06-05 +City Hotel,0,97,2017,May,20,17,0,1,2,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.9,0,1,Check-Out,Paul Acosta,hbridges@example.net,921.961.4595,2251690052352374,2024-08-22 +Resort Hotel,1,326,2017,August,32,4,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,85.39,0,1,Canceled,Amanda Novak,hwagner@example.org,+1-639-389-3121x36101,4176209640949,2024-07-01 +City Hotel,1,20,2017,May,18,2,0,2,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,149.93,0,0,Canceled,Jennifer Armstrong,melissa89@example.org,+1-904-251-7056x5031,370771592082737,2024-06-17 +City Hotel,0,12,2017,September,38,23,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,79.75,0,2,Check-Out,Lisa Wade,gnielsen@example.com,(648)691-1442,6011085020595695,2024-06-27 +Resort Hotel,1,34,2017,December,48,2,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,237.0,179.0,0,Transient,132.32,0,1,Canceled,Alejandro Weaver,tiffany55@example.org,(714)660-0321x25291,6011799976034489,2024-09-05 +City Hotel,1,194,2017,April,17,25,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,107.72,0,2,Canceled,Nathan Harris,mitchelljamie@example.org,207.301.1623x31533,6593097557352859,2025-01-06 +City Hotel,0,163,2017,June,26,28,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.73,0,1,Check-Out,Sandra Lucas MD,johncarrillo@example.org,340.582.0993x905,3520551805850499,2024-04-10 +Resort Hotel,1,110,2017,March,12,18,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,306.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Eric Chang,domingueztara@example.org,001-784-421-1455x1231,30048189198248,2026-01-29 +Resort Hotel,0,13,2017,August,32,8,2,0,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,167.75,0,1,Check-Out,Brandi Rodriguez,cjones@example.org,489-504-9440x11550,6011321855040006,2025-06-19 +Resort Hotel,0,0,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,61.0,0,Transient-Party,48.34,0,0,Check-Out,Sandra Lopez,avilatina@example.net,7509504592,675946735858,2024-08-17 +City Hotel,1,203,2017,April,16,14,2,2,1,0.0,0,BB,,Aviation,Corporate,0,0,1,A,D,0,No Deposit,13.0,151.0,0,Transient,110.51,0,1,Canceled,Kaitlyn Collier PhD,kevin13@example.net,+1-587-749-4002x060,639062433078,2024-09-01 +City Hotel,0,24,2017,January,4,25,0,2,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.14,0,1,Check-Out,Alisha Williams,vasquezjoseph@example.com,371.937.7648,6011426410866223,2024-09-12 +Resort Hotel,0,26,2017,June,24,12,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,127.67,0,1,Check-Out,Joseph Brown,gary39@example.com,7408665005,3543721097192958,2025-10-14 +City Hotel,0,18,2017,August,33,13,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,194.51,0,1,Check-Out,Nicole Butler,donald45@example.net,591.607.8424x14627,639066879805,2025-08-29 +City Hotel,1,2,2017,August,31,2,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,3.72,0,0,No-Show,Pamela Walton,davidalexander@example.net,001-261-920-3086x5692,4213241740328690,2026-01-27 +City Hotel,1,15,2017,June,24,13,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,242.6,0,1,Canceled,Courtney Johnson,fitzgeraldtravis@example.com,337.440.7781,4946369812263893,2024-12-22 +City Hotel,1,146,2017,April,15,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,81.43,0,0,Canceled,Rebecca Mccarthy,stephanieperez@example.com,497-368-3404,345762484078968,2024-11-20 +City Hotel,0,154,2017,March,12,24,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,67.0,179.0,0,Transient,106.7,0,0,Check-Out,Stacy Robertson,davidjohnson@example.org,(939)739-8838x99286,3532581983751017,2024-11-17 +City Hotel,0,44,2017,August,34,23,2,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,233.02,0,2,Check-Out,Devon Moore,bateslaura@example.com,487.500.8736x16149,3596725011749328,2024-08-30 +City Hotel,0,148,2017,February,7,16,0,1,2,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,91.59,0,0,Check-Out,Jessica Sharp,cdouglas@example.org,(320)469-0859x87756,2271219496754643,2025-06-23 +City Hotel,0,13,2017,November,45,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,139.0,331.0,0,Transient-Party,84.72,0,1,Check-Out,Sharon Peck,justin49@example.org,+1-246-594-9985x49072,2514119314825780,2024-10-18 +Resort Hotel,0,148,2017,August,32,9,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Check-Out,Jason Brown,kmorrow@example.org,001-792-529-2132x9669,6011890928171980,2025-08-21 +Resort Hotel,0,0,2017,March,13,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,84.0,0,Transient,44.9,1,1,Check-Out,Dustin Boyer,lewisjulie@example.com,+1-710-679-4762,4143453315975299155,2025-10-06 +Resort Hotel,1,131,2017,January,3,19,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,Non Refund,245.0,179.0,0,Transient,142.39,0,2,Canceled,Jennifer Alexander,olivia62@example.com,(261)557-9530,213143091310921,2026-03-27 +City Hotel,0,35,2017,May,21,24,1,2,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,91.8,0,2,Check-Out,James Rhodes,vboone@example.com,001-969-688-5525x58907,4836981091047103,2025-01-19 +City Hotel,0,13,2017,April,17,24,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.42,1,1,Check-Out,Kyle Moore,anthony61@example.com,(676)218-2218,36358029628294,2025-02-15 +Resort Hotel,1,86,2017,July,27,3,1,0,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,227.34,0,0,Check-Out,Zachary Nelson,clopez@example.net,207-673-7341x8563,6525063396661515,2025-01-07 +Resort Hotel,0,85,2017,April,16,15,0,1,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,226.0,179.0,0,Transient-Party,62.28,0,0,Check-Out,Gregory Villarreal,bwatson@example.com,+1-249-740-5389x76060,4455920592997,2025-11-05 +City Hotel,0,12,2017,October,41,8,2,1,1,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,104.89,0,1,Check-Out,Cheryl Cook,joshuahansen@example.org,001-915-554-1421,3550038335747695,2025-08-02 +City Hotel,0,262,2017,October,41,8,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,63.07,0,2,Check-Out,Chase Lopez,xadkins@example.org,953.384.8337x0736,6011755904822882,2024-08-27 +City Hotel,0,7,2017,February,9,26,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,39,Transient-Party,63.34,0,0,Check-Out,Jennifer Frey,bakerjohn@example.net,+1-854-736-8917x5909,3513711726948280,2025-11-19 +City Hotel,0,8,2017,August,32,8,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient-Party,92.72,0,0,Check-Out,Daniel Bruce,wpatel@example.com,001-586-428-1471x339,3547260121033397,2024-12-20 +Resort Hotel,0,57,2017,November,48,28,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,239.0,179.0,0,Transient,130.78,0,1,Canceled,Tristan Scott,qsmith@example.net,+1-675-515-9745x45726,4041669352496340925,2024-10-19 +City Hotel,0,204,2017,August,34,20,1,3,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,126.73,0,0,Check-Out,Timothy Farley,hodgesdennis@example.com,305-274-6174x9876,6011667777566647,2024-09-06 +City Hotel,1,139,2017,May,22,26,0,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,194.55,0,1,Canceled,Adam Lozano,odavis@example.org,001-974-398-8676,4544544014999,2026-01-26 +City Hotel,1,113,2017,March,10,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,31.0,179.0,0,Transient,89.77,0,1,Canceled,Yvonne Murray,jjohnson@example.net,001-625-561-1194x621,4332624382741815,2025-05-03 +City Hotel,0,59,2017,February,7,15,0,2,1,0.0,0,SC,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,143.97,0,0,Check-Out,Deanna Hodges,greencourtney@example.org,632.717.9376x88921,6011987973047675,2026-02-04 +Resort Hotel,0,203,2017,July,29,22,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,26.0,179.0,0,Contract,107.56,0,0,Check-Out,Crystal Miller,kimberly50@example.com,3686642996,4442886650829,2024-09-09 +Resort Hotel,0,43,2017,August,34,23,1,2,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,247.21,1,0,Check-Out,Bridget Hernandez,aperez@example.org,320-580-0445x831,213180578214135,2025-04-24 +City Hotel,0,10,2017,January,5,28,2,3,2,0.0,0,BB,GBR,Offline TA/TO,Corporate,0,0,0,E,E,1,No Deposit,36.0,179.0,0,Transient-Party,63.63,0,0,Check-Out,Patrick Richardson,melissasharp@example.com,386.485.0901x721,676320747931,2025-03-03 +City Hotel,0,2,2017,December,52,25,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,74.49,0,1,Check-Out,Michael Gonzalez,alexisgraham@example.com,500.597.6370x90914,4728652843901633160,2025-12-27 +Resort Hotel,0,14,2017,June,23,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,313.0,179.0,0,Group,41.26,0,0,Check-Out,Laura Lucero,bakerdylan@example.org,865-323-3755,180049006660202,2025-12-14 +City Hotel,1,165,2017,August,34,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.17,0,2,Canceled,Robert Pittman,vbrewer@example.com,+1-586-257-3868x7627,4368348926374373,2024-05-21 +City Hotel,0,2,2017,August,32,8,1,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,45.72,0,0,Check-Out,Jennifer Glass,gwhite@example.net,+1-960-903-2832x737,503834758636,2025-09-28 +Resort Hotel,1,210,2017,July,28,12,4,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,130.73,0,0,Canceled,Timothy Lee,sandra77@example.com,519-855-5616x7815,576136638052,2024-12-23 +Resort Hotel,0,42,2017,March,12,16,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,2,No Deposit,11.0,179.0,0,Transient,46.21,0,1,Check-Out,David Haney Jr.,angelamckinney@example.org,864-346-3050,3539070187064453,2024-04-10 +City Hotel,1,412,2017,May,20,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,113.77,0,0,Canceled,Heather Ross,kristenwilson@example.com,+1-369-358-4271x6184,4272246557120716,2025-06-03 +City Hotel,0,3,2017,February,6,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,83.23,0,0,Check-Out,Patricia Hall,trevorortiz@example.com,+1-625-791-3786,3565216733713344,2025-07-18 +City Hotel,0,15,2017,August,32,4,0,2,3,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,11.0,176.0,0,Transient,138.44,0,0,Check-Out,Richard Bond,nclayton@example.org,263.431.5664x22890,6011008945148663,2026-01-11 +Resort Hotel,0,109,2017,September,38,20,0,5,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,D,E,0,No Deposit,38.0,179.0,0,Transient-Party,134.56,0,0,Check-Out,Michael Lopez,lindacontreras@example.net,+1-958-830-5626x7740,3508704210465975,2025-01-07 +City Hotel,0,56,2017,July,30,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,K,0,No Deposit,10.0,179.0,0,Transient,224.09,0,1,Check-Out,Christine Johnson,kelly82@example.com,(601)228-4465x3395,4900846842667486,2026-02-24 +Resort Hotel,0,109,2017,April,16,13,1,3,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,C,C,2,No Deposit,12.0,179.0,0,Transient-Party,201.47,1,0,Check-Out,Michelle Summers,emily96@example.net,239.934.2580,4256395131243641,2024-08-18 +City Hotel,0,61,2017,October,41,12,2,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,139.44,0,1,Check-Out,Michelle Brown,charlesruiz@example.net,+1-971-806-0443,2720738519695886,2025-08-02 +Resort Hotel,0,13,2017,December,49,3,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,53.38,1,1,Check-Out,Lauren Thomas,tylervazquez@example.net,233.809.8243x45007,4718567947258975911,2024-09-01 +City Hotel,0,12,2017,August,32,6,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,236.0,179.0,0,Transient,252.0,0,1,Check-Out,Timothy Johnson,hutchinsonbrian@example.com,(696)515-2634x88054,503831674265,2025-10-10 +Resort Hotel,0,96,2017,March,13,30,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,182.0,179.0,0,Transient-Party,49.03,0,0,Check-Out,Alexandra Gonzalez,patriciasmith@example.org,001-440-837-8608x7474,30497931292611,2024-04-14 +Resort Hotel,0,22,2017,December,50,14,1,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,246.0,179.0,0,Transient,44.26,0,2,Check-Out,Philip Vega,courtney78@example.net,001-244-261-1763x0872,581832557937,2025-02-08 +City Hotel,1,241,2017,May,20,17,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,126.51,0,0,Canceled,Kimberly Cochran,rick18@example.com,+1-334-808-1109,3527402420874980,2024-12-07 +City Hotel,1,15,2017,August,34,23,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,66.36,0,1,Canceled,Douglas Ross,butlerlori@example.org,(268)600-9948,4147229080063127809,2025-03-08 +City Hotel,0,319,2017,October,40,7,2,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,80.49,1,0,Check-Out,Angela Ward,dorothy55@example.com,001-700-692-3047x388,30118660284252,2024-09-24 +Resort Hotel,0,176,2017,October,42,14,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,17.0,179.0,0,Transient,108.72,1,0,Check-Out,Mr. Thomas Adams,brandiblackwell@example.org,+1-569-202-0381,4984965756250204949,2024-05-24 +Resort Hotel,0,7,2017,May,19,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,40.98,0,1,Check-Out,Brian Mills,zwebster@example.com,401-635-7717x591,2297829486643737,2024-07-01 +City Hotel,0,176,2017,July,29,14,1,2,3,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,244.37,0,2,Check-Out,Lori Mullins,rebeccasimpson@example.org,460.530.9600,630422294284,2024-10-10 +Resort Hotel,0,9,2017,August,35,25,2,7,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,205.24,0,0,Check-Out,Ashley Herring,mahoneyjoseph@example.com,(427)427-5525x366,3569681434017608,2025-02-10 +City Hotel,0,106,2017,August,35,27,1,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,140.29,0,1,Check-Out,Janice Smith,carlcampbell@example.net,296-330-8694x283,30181773494051,2024-08-13 +Resort Hotel,1,35,2017,August,35,30,0,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,251.0,179.0,0,Transient,225.33,0,0,Canceled,Lori Phillips,elizabethhernandez@example.net,+1-380-806-9394x07698,4921206772947892,2025-04-28 +City Hotel,1,166,2017,July,28,11,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.07,0,0,Canceled,Heather Turner,carloskrueger@example.com,7942768951,4952732868708346,2024-06-26 +Resort Hotel,0,144,2017,May,22,26,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,169.78,0,3,Check-Out,Brianna Richardson,amberpierce@example.org,627.903.8102x38302,3575388235580683,2024-07-25 +City Hotel,1,87,2017,June,24,13,0,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,236.0,179.0,0,Transient,233.45,0,0,Canceled,Kimberly Walker,tiffanymccormick@example.net,001-368-635-9778x66822,180049502449514,2025-06-13 +Resort Hotel,1,40,2017,July,27,4,1,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,50.31,0,2,No-Show,Brooke Roberts,jcunningham@example.net,(428)574-7247x08064,2641214797274907,2024-08-30 +City Hotel,0,95,2017,September,38,16,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.15,0,1,Check-Out,Micheal Soto,jeremyjohnson@example.org,001-751-467-5390,213155888431694,2024-12-22 +City Hotel,0,59,2017,November,47,24,1,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,110.38,0,0,Check-Out,Matthew Ewing,tammyyang@example.net,540.757.0855x45837,4732270154639831,2025-12-01 +City Hotel,0,53,2017,July,27,4,0,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,175.0,179.0,0,Transient,101.38,0,1,Check-Out,Kelly Cox,smiththeresa@example.com,369.357.8187x67371,6011577357659003,2025-03-07 +City Hotel,0,98,2017,November,46,17,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,235.0,179.0,0,Transient,97.39,0,1,Check-Out,Nicholas Anderson,justin14@example.com,+1-643-912-5737x01021,4712501547109,2026-02-21 +Resort Hotel,0,8,2017,October,41,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,223.0,179.0,0,Transient-Party,87.46,0,0,Check-Out,Cindy Lang MD,xrivas@example.com,3462999098,4637773537752947979,2025-07-22 +City Hotel,1,44,2017,November,46,15,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.09,0,0,Canceled,Lisa Lawson,reyesdiana@example.com,855.296.8341,4095777842630304,2025-08-19 +City Hotel,0,2,2017,June,27,30,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,234.72,0,3,Check-Out,Megan Holmes,lauramorgan@example.org,282-858-5653x94293,4494606363560110,2025-07-08 +City Hotel,0,308,2017,September,37,12,0,2,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,65,Transient-Party,87.11,0,0,Check-Out,Daniel Steele,angelabriggs@example.com,685-519-1560,060434408468,2024-08-02 +City Hotel,0,22,2017,July,27,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,63.0,0,Transient-Party,161.1,0,1,Check-Out,Christopher Wheeler,nicholaspruitt@example.com,(486)442-0910,589683433421,2024-07-05 +City Hotel,0,254,2017,June,23,9,2,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.59,0,0,Check-Out,Kevin Craig,johnsonadrienne@example.com,(738)646-6855,213156237992030,2024-11-02 +Resort Hotel,1,44,2017,June,24,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,104.25,0,1,Canceled,Rebecca Chan,griffinjacob@example.org,001-359-896-9391x799,3506108068503527,2025-07-14 +Resort Hotel,1,108,2017,December,50,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,Non Refund,241.0,179.0,0,Transient,83.1,0,0,Canceled,Monica Anderson,udiaz@example.com,950.483.2653,3506974307623651,2025-02-23 +Resort Hotel,0,29,2017,March,11,15,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,47.05,1,1,Check-Out,Jeffrey Mcdowell,rebeccagonzalez@example.net,6618568906,2249233509155671,2025-11-01 +City Hotel,1,368,2017,June,24,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,40,Transient,130.26,0,1,Canceled,Kelly Little,villegasjames@example.org,7482212127,30418402177156,2024-11-03 +City Hotel,0,356,2017,January,3,17,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,1,1,0,A,A,1,No Deposit,135.0,179.0,0,Transient-Party,86.37,0,1,Check-Out,Jennifer Ellis,fishermarcia@example.org,+1-844-956-2777x4041,4043589598592171,2025-06-26 +City Hotel,0,20,2017,March,12,23,1,4,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.24,0,1,Check-Out,Kathleen Ruiz DVM,mcmahoncathy@example.net,001-675-310-3537x437,30463121418549,2024-09-13 +City Hotel,1,391,2017,June,23,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,124.26,0,0,Canceled,Laura Patel,kmyers@example.net,(897)880-1515x9847,4758123024811,2024-10-15 +City Hotel,0,12,2017,May,19,8,1,2,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,G,0,No Deposit,246.0,179.0,0,Transient,134.9,0,0,Check-Out,Justin Howard,perryelizabeth@example.com,(722)426-3133x567,6011680528030532,2025-05-21 +City Hotel,1,162,2017,June,24,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,62.43,0,0,Canceled,Stephanie Smith,wilsonjessica@example.org,592-888-2546,577610306752,2024-11-27 +City Hotel,0,88,2017,November,45,5,2,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.6,0,1,Check-Out,Cathy Thomas,wyoung@example.org,938-468-2397,3534163584806009,2024-11-16 +Resort Hotel,0,57,2017,November,45,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,49.48,0,0,Check-Out,Christopher Garcia,eestrada@example.com,(740)553-1337,6562206104483490,2024-06-12 +City Hotel,1,407,2017,July,27,3,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.8,0,0,Canceled,Peter Allen,ivan64@example.net,228-349-2569x3498,4504550653145950,2025-02-19 +Resort Hotel,0,148,2017,May,21,22,4,6,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,G,0,No Deposit,248.0,179.0,0,Transient,136.12,0,3,Check-Out,Elizabeth Armstrong,ashleyday@example.org,001-556-255-8102,5450667992750463,2024-04-18 +City Hotel,0,4,2017,March,12,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,13.0,45.0,0,Transient,90.01,0,0,Check-Out,Mrs. Lindsey Gilbert,davidball@example.net,001-251-200-7252x8519,675926782185,2025-12-04 +City Hotel,0,302,2017,August,32,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,96.67,0,0,Canceled,Donna Harris,tmorgan@example.org,889.229.6239,347656604019001,2024-05-08 +City Hotel,0,0,2017,October,41,8,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,85.0,0,Transient,88.08,0,0,Check-Out,Erica Manning,matthewclark@example.com,(942)987-5724,3555892666186443,2025-10-24 +Resort Hotel,0,0,2017,March,12,24,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,28.0,179.0,0,Transient-Party,42.73,0,0,Check-Out,Jeffrey Bates,williamskathleen@example.org,675.428.2596x67490,373533615368841,2026-01-24 +City Hotel,0,4,2017,June,24,14,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,83.12,0,0,Check-Out,Benjamin Brown,susan40@example.com,677-434-0232x5152,4592948882735,2024-12-18 +City Hotel,0,164,2017,June,23,5,2,4,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient-Party,140.59,0,0,Check-Out,Andre Hernandez PhD,kevin51@example.org,(652)916-8986,3592717959084283,2025-01-18 +City Hotel,0,58,2017,August,33,15,1,1,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,45.0,0,Transient,110.12,0,3,Check-Out,Charles Roman,pmcdaniel@example.net,641-753-2429,3577817772440362,2025-02-16 +Resort Hotel,0,79,2017,October,43,26,2,5,2,0.0,0,BB,FRA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,38.94,0,0,Check-Out,Damon Powers,andrea51@example.org,698-322-5885,4315057079271369,2024-09-29 +City Hotel,1,19,2017,January,3,19,0,2,1,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,117.0,0,0,Canceled,Patrick Jackson,perrybrandon@example.org,5464888589,4739475695671655,2024-04-13 +Resort Hotel,0,13,2017,April,17,23,2,5,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,D,D,0,No Deposit,276.0,179.0,0,Transient,45.03,0,0,Check-Out,Mary Murray,mallory95@example.net,587-859-5124x665,213142871022094,2024-05-09 +Resort Hotel,1,51,2017,May,22,30,2,6,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,138.16,0,0,Canceled,Samantha Jackson,courtneymills@example.com,469-922-7123x3086,213152020883809,2025-09-22 +Resort Hotel,1,147,2017,June,26,24,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,109.97,0,0,Canceled,Dominique Wagner,georgesarah@example.com,(300)616-1273x3989,377038505670310,2026-01-31 +City Hotel,0,261,2017,May,20,19,2,0,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,33.0,179.0,0,Transient,67.19,1,0,Check-Out,Daniel Petty,michaelfrederick@example.org,+1-650-341-0543,6011295794240390,2024-06-26 +City Hotel,1,387,2017,August,33,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.76,0,0,Canceled,James Robles,jodi95@example.com,+1-579-734-3765x52843,3540034332964402,2025-12-09 +Resort Hotel,0,97,2017,December,49,9,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,13.0,179.0,75,Transient-Party,89.34,0,0,Check-Out,Amanda Smith,adavies@example.org,+1-430-635-4458x13099,4565694804577877230,2025-11-21 +Resort Hotel,1,52,2017,April,16,18,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,245.0,219.0,0,Transient,65.92,0,0,Canceled,Jessica Cortez,othompson@example.net,001-800-351-9770x10049,4419852600921,2024-12-12 +City Hotel,0,2,2017,January,4,26,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,49.95,1,1,Check-Out,Nicole Clark,sharpdiane@example.net,(475)769-4385x31804,180094053356635,2024-07-30 +City Hotel,1,414,2017,July,28,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,101.95,0,0,Canceled,Brittany Collins,newmanjames@example.com,7824491610,4101916548504155,2025-08-23 +City Hotel,0,37,2017,November,45,9,0,2,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,207.0,0,Transient-Party,79.89,0,0,Check-Out,Jillian Mack,brichardson@example.com,201.905.4150x73230,30454616655992,2025-06-10 +City Hotel,0,255,2017,May,20,13,2,4,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,76.0,179.0,0,Group,83.88,0,0,Check-Out,Lori Gonzalez,ericaodonnell@example.com,930.960.3512x5087,4660705048954751,2025-07-26 +City Hotel,1,168,2017,May,22,26,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,182.0,179.0,41,Transient,104.52,0,0,Canceled,Hunter Cox,aimeeclark@example.com,645-288-8519x22349,376873319509218,2025-04-14 +City Hotel,0,10,2017,July,30,29,2,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,241.0,179.0,0,Transient,215.08,0,3,Check-Out,Anna Frey,aaronramos@example.org,001-877-588-4356x44617,180041272124906,2024-11-27 +City Hotel,0,24,2017,February,8,22,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,98.96,1,1,Check-Out,Rachel Jensen,kristin84@example.net,001-498-419-2469x266,340293316099480,2025-12-23 +Resort Hotel,0,91,2017,May,22,26,1,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,81.87,0,0,Check-Out,Craig Davis,mary43@example.org,426-597-3812x3931,4359841810669727,2025-02-23 +City Hotel,0,49,2017,August,32,5,0,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,G,1,No Deposit,9.0,179.0,0,Transient,252.0,1,1,Check-Out,Thomas Wise,tracystafford@example.org,851.403.1342,30317003416684,2024-08-04 +City Hotel,1,21,2017,January,2,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,158.94,0,2,Canceled,Holly Herring,martinezmegan@example.net,310.904.1416x61057,4718083903819739,2024-10-23 +City Hotel,1,211,2017,September,38,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,97.03,0,0,Canceled,Dustin Potter,williamgrimes@example.net,8857723015,4965063000115579,2025-03-13 +City Hotel,1,37,2017,August,34,23,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.52,0,1,Canceled,Michelle Barnes,huntandrea@example.net,548.347.4793x0422,30189349169388,2025-08-04 +City Hotel,0,10,2017,July,27,4,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,99.14,0,1,Check-Out,Sara Scott,john83@example.org,451.932.4071,348754301553007,2025-02-17 +City Hotel,1,11,2017,December,51,22,0,2,2,0.0,0,HB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,103.5,0,1,Canceled,Daniel Horne II,carrillojade@example.org,001-628-610-3250x27964,4438223100789083877,2024-10-03 +City Hotel,1,28,2017,July,28,11,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,175.18,0,0,Canceled,Joshua Brown,nielsendenise@example.net,908.363.1246x16694,3520179298501633,2024-06-16 +Resort Hotel,1,105,2017,June,26,25,1,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Canceled,Stephanie Dawson,poolecynthia@example.com,6505435078,3513095422529879,2025-07-24 +City Hotel,0,28,2017,October,41,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.91,0,0,Check-Out,Tony Johnson,jacob78@example.net,601-921-6064x961,4708224237584166716,2024-08-17 +Resort Hotel,1,1,2017,January,3,16,0,2,1,0.0,0,SC,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,244.0,179.0,0,Transient,44.23,0,0,Canceled,Jeffrey Hull,hhooper@example.net,766.587.6764x725,4680502852251625564,2026-02-01 +Resort Hotel,1,50,2017,November,44,2,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,58.04,0,2,Canceled,Corey Daniels,tanya81@example.net,4154670630,4569559420364531,2025-07-06 +City Hotel,0,0,2017,September,36,7,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,B,0,No Deposit,1.0,179.0,0,Transient,105.91,0,0,Check-Out,Natalie Ramos,sara96@example.net,(687)806-7261x989,344004510591230,2025-03-10 +City Hotel,1,111,2017,March,10,8,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,99.41,0,0,Canceled,Tammy Fernandez,catherine21@example.com,217.498.5687x4408,503816334208,2025-12-27 +City Hotel,1,90,2017,December,52,23,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,90.96,0,2,Canceled,Jeremy Sanchez,robertsims@example.net,694-791-4309x2945,3515539491160742,2025-08-01 +City Hotel,0,100,2017,June,24,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Andrew Weiss,coreyfuller@example.net,2294247731,4010302707046454,2025-06-26 +Resort Hotel,0,39,2017,March,10,7,1,5,3,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,64.44,0,0,Check-Out,Lisa Gordon,jacksonsamantha@example.net,389.746.3960,3510542573822093,2025-10-16 +Resort Hotel,1,95,2017,July,31,30,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,128.6,0,0,Canceled,Paul Brown,haleyperez@example.org,5997108504,4891077367023056764,2026-03-14 +City Hotel,1,257,2017,July,28,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,73.11,0,0,Canceled,Jorge Duncan,schase@example.com,979.271.8520,3507866962275224,2024-04-24 +City Hotel,0,4,2017,August,32,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,215.08,0,1,Check-Out,Megan Ramirez,ohaynes@example.com,001-864-250-2364x60510,6555700077504596,2024-11-30 +Resort Hotel,0,1,2017,October,43,25,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,137.81,1,0,Check-Out,Tiffany Martin,czimmerman@example.net,001-503-944-1449x1196,4389596147351423,2025-06-13 +City Hotel,0,14,2017,July,30,20,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,45.0,0,Transient,107.77,0,1,Check-Out,Elizabeth Golden,ryanfrank@example.org,243-486-0937x24630,3593116753682484,2025-05-12 +City Hotel,0,149,2017,September,36,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient-Party,106.92,0,1,Check-Out,Joseph Larson,jclark@example.org,802.693.2196,4452593997027220937,2024-07-24 +City Hotel,0,16,2017,July,30,21,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,85.13,0,1,Check-Out,Brian Wilkins,todom@example.net,234-985-0655x054,4033067611194665,2026-02-16 +City Hotel,0,4,2017,December,49,2,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,135.84,1,0,Check-Out,Jasmine Carson,zsloan@example.com,(748)209-8795,3592963401185878,2024-05-23 +City Hotel,0,256,2017,September,35,1,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,64.38,0,1,Check-Out,Amy Boyd,sanchezdenise@example.com,679.869.3618x6098,4704406084694815512,2025-03-30 +Resort Hotel,1,153,2017,June,25,19,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,238.0,179.0,0,Transient,140.8,0,1,Canceled,Gary Collins,margaretmccoy@example.com,7329684705,6011296102728258,2026-01-11 +City Hotel,1,210,2017,March,13,30,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,64.91,0,0,Canceled,Jane Smith,csmith@example.com,+1-340-834-1844x56524,4158022639902789040,2025-04-08 +City Hotel,0,58,2017,August,35,29,2,2,2,0.0,0,FB,USA,Direct,Direct,0,0,0,A,F,0,No Deposit,14.0,179.0,0,Transient,100.64,0,0,Check-Out,Robert Lewis,krodriguez@example.net,+1-293-222-7024x1137,2254120177521957,2024-06-03 +Resort Hotel,0,26,2017,October,41,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,76.64,0,2,Check-Out,Jeremy Stevens,campbellwilliam@example.net,+1-801-324-9875x47383,4380464649062,2024-10-03 +City Hotel,0,19,2017,August,33,12,1,2,3,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Check-Out,Lauren Sandoval,michael21@example.org,6523678151,3516493063351538,2025-06-22 +Resort Hotel,0,58,2017,February,6,4,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,38.93,0,1,Check-Out,Jessica Lopez,christinecollins@example.org,573.313.3224x3432,372835647458230,2025-10-16 +Resort Hotel,0,3,2017,October,40,6,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,18.0,179.0,0,Transient,224.23,0,0,Check-Out,George Mercer,joseph06@example.org,+1-719-685-5978,4113667030780328710,2024-08-20 +City Hotel,0,147,2017,June,25,19,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.03,0,1,Check-Out,Kenneth Becker,walshheather@example.com,+1-774-985-6190x27673,4689860662400296564,2024-11-11 +City Hotel,0,3,2017,August,32,6,2,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,125.95,0,1,Check-Out,Veronica Arnold,wheelerlisa@example.com,289-249-4758,342480062436564,2024-05-06 +Resort Hotel,0,2,2017,February,8,24,0,1,1,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,252.0,1,0,Check-Out,Jonathan Howe,henryrandy@example.net,687-603-1379x99386,4435735668059,2024-04-28 +City Hotel,1,249,2017,June,23,2,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,D,D,0,No Deposit,13.0,172.0,0,Transient,111.52,0,1,Canceled,Justin Fowler,danielmargaret@example.com,818.241.2994,676257310042,2026-02-02 +Resort Hotel,0,2,2017,May,20,11,2,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Group,109.87,0,1,Check-Out,Ronald Martinez,hkelly@example.com,(922)825-4245x856,4194988619903440,2024-06-28 +City Hotel,0,3,2017,September,38,18,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,108.38,0,2,Check-Out,Connie Robinson,andreafigueroa@example.net,001-249-991-1489x92782,4213041250916,2025-08-15 +Resort Hotel,0,1,2017,December,50,8,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,18.0,331.0,0,Transient,3.75,0,0,Check-Out,Joshua Espinoza,jill31@example.net,375-378-7801x2354,4927076134998,2025-05-06 +City Hotel,1,164,2017,August,32,9,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,132.0,179.0,0,Transient-Party,105.46,0,0,Canceled,April Briggs,yjuarez@example.net,895-762-8332x669,4873329288122210,2026-03-12 +City Hotel,0,36,2017,September,36,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,102.2,0,1,Check-Out,Emily Smith,steve08@example.org,(970)245-8776x633,4926470162118,2025-12-08 +City Hotel,0,0,2017,June,23,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,93.0,219.0,0,Transient,133.12,0,0,Check-Out,Carol Morgan,gabriella50@example.net,001-421-557-6931,6011112410585415,2025-01-06 +Resort Hotel,0,0,2017,December,49,8,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,237.0,179.0,0,Transient,56.95,1,2,Check-Out,Cheryl Stone,veronicarobinson@example.com,845.201.5747,4411374829656481,2024-10-17 +City Hotel,0,41,2017,March,12,22,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.04,0,1,Check-Out,Shawn Johnson,williamhammond@example.com,001-221-278-0559x360,639034576962,2024-10-18 +Resort Hotel,0,46,2017,February,7,13,0,1,1,0.0,0,BB,PRT,Online TA,Direct,1,0,0,A,I,1,No Deposit,184.0,231.0,0,Transient-Party,1.44,1,1,Check-Out,Edward Gomez,heatherhaynes@example.org,5753289092,4471772847038622014,2025-10-24 +City Hotel,1,1,2017,March,12,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,33.0,179.0,0,Transient-Party,104.75,0,1,Canceled,Victor Davis,ryan58@example.net,946-588-9935,213175047947422,2024-07-24 +City Hotel,1,109,2017,November,45,7,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,Non Refund,10.0,179.0,0,Transient-Party,117.46,0,0,Canceled,Anthony Adkins,kristinrhodes@example.com,5795271590,6011350073327325,2025-09-22 +City Hotel,0,2,2017,January,2,5,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,126.36,0,0,Check-Out,Ann Phillips,sarahjohnson@example.org,001-805-454-8202x69972,3568821273725751,2024-12-13 +Resort Hotel,0,201,2017,December,2,31,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,100.34,0,0,Check-Out,Laura Lopez,ericksontina@example.org,930-809-2269x307,4587846057976,2024-06-04 +Resort Hotel,0,65,2017,July,27,2,4,10,2,1.0,0,BB,CN,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,249.55,0,1,Check-Out,Richard Brooks,mariahoover@example.net,3662783032,3525203809810476,2026-01-13 +Resort Hotel,0,7,2017,May,18,5,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,52.92,0,0,Check-Out,Gabriella Johnston,williamsjeremy@example.net,001-922-313-9966x6237,4917272968013366,2024-08-13 +City Hotel,0,54,2017,October,43,25,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.24,0,2,Check-Out,Nancy Watkins,coxjoshua@example.org,5855970660,180097129494025,2025-05-11 +City Hotel,1,373,2017,June,26,24,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.17,0,0,Canceled,Laura Patel,bbrown@example.com,001-976-812-3950x217,4048927810395,2024-12-31 +City Hotel,0,18,2017,March,11,12,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,88.29,0,1,Check-Out,Jeffrey Keller,esims@example.com,001-701-764-8985x50439,4847171358658,2024-10-20 +Resort Hotel,1,99,2017,November,46,17,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,237.0,179.0,0,Contract,110.82,0,1,Canceled,Adam Smith,hoffmancaleb@example.org,765.990.2310x20011,4186893996339306914,2026-01-07 +Resort Hotel,0,134,2017,February,8,17,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,40.49,0,3,Check-Out,Travis Harper,christopherwilliams@example.org,937-686-1670x214,6591642281525197,2024-11-30 +City Hotel,0,96,2017,May,21,25,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,127.71,0,1,Check-Out,Christopher Houston,stephen65@example.net,(518)976-2464x130,3529993530710047,2025-08-07 +City Hotel,1,387,2017,August,34,24,0,1,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient-Party,118.45,0,0,Canceled,Kristin Baldwin,arellanojason@example.com,517.986.2529,2525799263994815,2025-04-06 +Resort Hotel,0,12,2017,March,10,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,55.73,1,1,Check-Out,Taylor Diaz,williamdavis@example.net,(269)774-8572x6100,180011031879470,2025-03-20 +Resort Hotel,1,283,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,168.0,179.0,44,Transient,108.83,0,0,Canceled,Thomas Garcia MD,xnixon@example.com,421-481-5871,371695603576172,2025-05-05 +Resort Hotel,1,28,2017,December,51,20,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,238.0,179.0,0,Transient,205.01,0,2,Canceled,Kevin Clark,silvakevin@example.net,001-552-458-7382,4049054365750084,2024-06-18 +Resort Hotel,1,39,2017,August,34,19,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,240.0,179.0,0,Transient,194.24,0,2,Canceled,Phillip Ramirez,sandra45@example.com,9789962060,347667124040492,2024-09-22 +City Hotel,0,16,2017,October,42,15,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,140.68,0,1,Check-Out,Vernon Williams,kayla98@example.net,227.406.0004x29208,213194196406395,2025-07-11 +City Hotel,1,414,2017,August,32,5,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.51,0,0,Canceled,Shannon Stokes,steven38@example.net,926.707.4244x221,2671402128282359,2025-02-17 +City Hotel,0,0,2017,May,18,2,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,1,No Deposit,17.0,173.0,0,Transient,5.16,0,0,Check-Out,Anthony Braun,batesisaac@example.com,001-963-412-2373,675947235734,2024-06-28 +City Hotel,0,100,2017,February,7,12,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.89,0,1,Check-Out,Shane Jones,joseph86@example.net,+1-463-374-8018,4990515907632963,2024-11-04 +City Hotel,1,55,2017,September,39,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,137.03,0,1,Check-Out,Kathleen Boyd,roachtimothy@example.com,2395038986,180087235319430,2025-01-19 +City Hotel,0,47,2017,August,34,25,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,134.15,0,3,Check-Out,Christopher Cole,michael56@example.com,001-308-749-1570x4763,6597802670265045,2025-08-30 +City Hotel,1,367,2017,July,27,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.19,0,0,Canceled,Jasmine Rodriguez,iobrien@example.org,(588)679-9655,4513611657506966,2025-10-30 +Resort Hotel,0,52,2017,July,27,3,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,259.0,179.0,0,Transient-Party,62.75,0,0,Check-Out,Stephanie Jarvis,ashley09@example.org,5845690802,4294644669465249,2024-04-05 +City Hotel,0,55,2017,March,12,20,0,3,1,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.78,0,2,Check-Out,Rachel Yang,autumn44@example.com,544-752-8814,30492220349339,2024-05-12 +Resort Hotel,0,61,2017,January,4,24,0,2,1,0.0,0,HB,IRL,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,50.55,0,1,Check-Out,Marie Rangel,wardnathan@example.net,+1-563-415-7353x48370,4152147613902425,2024-09-12 +City Hotel,1,42,2017,September,36,3,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient-Party,109.35,0,0,Canceled,Leslie Greer DVM,katie97@example.org,(337)344-3335x60437,4660793941826565,2025-11-08 +Resort Hotel,0,15,2017,March,14,30,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,53.12,1,1,Check-Out,John Davis,wdavis@example.org,2748175022,4960442018397,2025-08-30 +City Hotel,1,36,2017,March,11,9,0,1,2,0.0,0,BB,PRT,Groups,GDS,0,1,0,A,A,0,Non Refund,161.0,179.0,0,Transient,77.53,0,0,Canceled,Julian Williams,teresamartinez@example.net,001-651-779-3404x67825,2266087673561363,2025-05-24 +Resort Hotel,0,0,2017,August,34,22,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,107.28,1,0,Check-Out,Kimberly Nolan,williamsamanda@example.org,283-491-4434,4353212756467540,2024-09-30 +Resort Hotel,0,153,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,14.0,222.0,0,Transient-Party,37.52,0,0,Check-Out,Bonnie Barnett,holly77@example.net,+1-797-995-4606x47375,6011532635125178,2024-10-16 +Resort Hotel,0,47,2017,January,3,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,237.0,179.0,0,Transient,51.32,0,1,Check-Out,Crystal Frazier,kchan@example.org,001-204-201-9102x459,4230659871157357,2024-05-30 +Resort Hotel,1,140,2017,December,2,31,0,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,240.0,179.0,0,Transient,112.18,0,0,Canceled,Tammy Gonzalez,vschneider@example.net,476-904-0296,6556109082104567,2024-06-16 +City Hotel,0,150,2017,October,41,8,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,70.0,179.0,0,Transient,134.54,0,0,Check-Out,Howard Golden,joshua27@example.com,900.780.7696,676144494363,2026-02-15 +Resort Hotel,1,50,2017,August,34,20,0,4,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,252.0,0,2,Canceled,Kathleen Le,jeremyadams@example.net,6662081788,180096283895043,2025-05-21 +City Hotel,0,248,2017,December,52,29,2,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,63,Transient-Party,62.41,0,0,Check-Out,Jeffrey Hernandez,milespatrick@example.org,001-654-283-3689,4580872565087,2026-02-17 +City Hotel,0,57,2017,August,33,16,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,17.0,179.0,0,Transient,226.55,0,0,Check-Out,Duane Bates,hoffmanselena@example.net,907-985-9624,6586096490879043,2025-11-12 +Resort Hotel,0,2,2017,January,3,17,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,46.84,0,1,Check-Out,Kristen Watts,stephanieevans@example.org,001-560-335-2466,379607457998081,2024-06-15 +City Hotel,0,113,2017,August,32,9,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,165.4,0,1,Check-Out,Whitney Ochoa,bvasquez@example.com,(578)299-6030,343193672618195,2024-08-16 +Resort Hotel,0,309,2017,September,36,9,3,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,89.78,0,3,Check-Out,Sierra Padilla,angelamyers@example.org,654.740.7934x08140,3530471251306797,2024-09-09 +City Hotel,0,21,2017,April,18,27,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,120.73,0,3,Check-Out,Laura Sullivan,iparker@example.net,4597411830,4676974893284,2025-06-03 +City Hotel,0,1,2017,January,3,18,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,105.49,0,0,Check-Out,Tracy Howard,savannah49@example.net,001-297-962-8257x9040,371508897248442,2025-11-15 +Resort Hotel,1,390,2017,October,41,11,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,314.0,179.0,0,Transient-Party,65.1,0,0,Canceled,Brandon Thomas,zwells@example.org,627.230.4447,6011113090541033,2024-03-27 +Resort Hotel,0,22,2017,February,6,6,1,2,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Contract,62.28,0,1,Check-Out,Daniel Henderson,sullivanjoshua@example.org,001-264-976-0514,373083958583093,2024-10-28 +City Hotel,1,106,2017,April,16,17,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,3.66,0,0,Canceled,Jennifer Hill,donna22@example.net,918-571-0572,4369025862314,2025-11-25 +Resort Hotel,1,32,2017,December,49,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.28,0,1,No-Show,Michael Hawkins,camposkathy@example.net,(765)736-6235x41256,4668011459691822,2026-01-27 +City Hotel,0,20,2017,April,17,23,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,114.96,0,2,Check-Out,David Hogan,martin90@example.org,(654)742-5270,4572494642554146,2024-07-18 +City Hotel,1,19,2017,July,29,15,2,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.08,0,2,Canceled,Andrew Weaver,katherinesmith@example.net,+1-826-812-7829x23660,3509948277163044,2025-03-03 +Resort Hotel,1,117,2017,May,20,19,2,3,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,123.44,0,0,Canceled,Levi Meadows,veronica04@example.net,(666)437-9675,4464219035213,2026-03-02 +Resort Hotel,0,203,2017,July,30,26,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,H,B,0,No Deposit,240.0,179.0,0,Transient,214.05,0,1,Check-Out,Robert Arnold,serranoamy@example.org,625.522.4300x04902,3570158585577463,2026-03-22 +City Hotel,0,163,2017,July,27,6,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,126.28,0,1,Check-Out,Jeffery Nguyen,awilliams@example.net,001-901-627-7914,4746843657267,2026-02-03 +Resort Hotel,0,10,2017,August,32,6,4,5,2,1.0,0,BB,,Direct,Direct,0,0,0,F,E,2,No Deposit,18.0,179.0,0,Transient,138.63,1,2,Check-Out,Shaun Johnson,phoward@example.com,7742495338,3579593140244202,2025-12-30 +City Hotel,1,3,2017,April,16,18,0,1,1,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,130.97,0,0,No-Show,Kevin Cain,ashley96@example.com,(952)530-7927x30853,3579440575502227,2025-01-02 +City Hotel,0,5,2017,November,44,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,41.53,0,0,Check-Out,Sandra Buck,franciscoayala@example.com,+1-383-205-9881x5935,180098295944165,2025-05-11 +Resort Hotel,0,148,2017,July,29,15,2,5,2,2.0,0,HB,GBR,Direct,Direct,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,252.0,1,2,Check-Out,Ronald Schwartz,conwayrachel@example.net,796.902.8467x01518,3531901412072507,2025-09-12 +Resort Hotel,0,25,2017,April,15,6,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,237.0,179.0,0,Transient,100.99,0,1,Check-Out,Gilbert Reynolds,nicholasrogers@example.com,001-809-845-3808x49812,4344465529737464,2025-06-16 +City Hotel,0,112,2017,July,28,7,1,4,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,126.8,1,0,Check-Out,Melinda Little,dwilliams@example.net,6846541562,4119380683200816,2025-12-11 +City Hotel,0,30,2017,March,11,13,1,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,84.12,0,1,Canceled,Hannah Valdez,russellbrenda@example.org,(752)471-6773x2432,340175156695495,2025-07-29 +City Hotel,1,207,2017,June,23,5,1,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,179.33,0,0,Canceled,Mr. William Miller,johnlopez@example.com,(388)543-2679x081,4838672177079338,2025-05-08 +Resort Hotel,0,10,2017,December,50,12,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,128.92,1,1,Check-Out,Luke Smith,rbarton@example.com,(783)677-4760x65325,3522328806488365,2024-07-27 +City Hotel,0,47,2017,August,31,2,0,2,1,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,178.06,0,0,Check-Out,Jordan Villarreal,christianritter@example.org,(510)272-9228x82413,4576250643222588,2024-05-06 +City Hotel,1,148,2017,May,21,23,0,3,2,0.0,0,BB,NLD,Direct,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,125.35,0,0,Canceled,Susan White,lori50@example.com,(502)676-2787,30090908725687,2024-09-17 +Resort Hotel,0,1,2017,January,4,23,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,45.89,0,1,Check-Out,Megan Burton,doris90@example.org,486-418-6624,581832265903,2025-08-27 +City Hotel,1,106,2017,June,25,19,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,80.52,0,0,Canceled,Jared Myers,fcox@example.com,(448)675-3162x6472,6570467142601564,2024-08-05 +City Hotel,0,101,2017,May,19,4,1,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Transient,176.17,0,1,Check-Out,Kyle Reed,imiller@example.org,305.868.8535x446,3525934001317858,2026-02-12 +Resort Hotel,1,29,2017,November,44,4,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,43.59,0,0,Canceled,James Gates,jason02@example.net,001-847-551-3539x26970,5382362277284601,2025-06-05 +Resort Hotel,0,14,2017,June,24,12,2,0,2,1.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,200.77,0,2,Check-Out,Charles Baird,jessicacruz@example.com,(371)756-7665,6569684464612887,2025-12-10 +City Hotel,0,139,2017,June,26,24,0,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,104.98,1,0,Check-Out,John Carter,sneal@example.org,(761)508-3563x8117,6011882243949976,2025-08-13 +City Hotel,0,44,2017,December,49,3,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,111.53,1,1,Check-Out,Stefanie Flores,andersonsteven@example.net,230-273-7993x80595,3529945808334421,2025-08-01 +Resort Hotel,0,1,2017,July,30,24,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,2,No Deposit,249.0,179.0,0,Transient,76.88,0,1,Check-Out,Brandy Casey,jason88@example.org,933.628.8148,2319393566708559,2025-01-17 +Resort Hotel,0,18,2017,December,51,21,1,2,2,1.0,0,Undefined,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,62.42,1,1,Check-Out,Beverly Roman,daniel13@example.com,(894)949-9544,3541903464612840,2025-01-02 +Resort Hotel,0,149,2017,July,29,13,4,7,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,217.56,0,0,Check-Out,Angela Blake,qgarza@example.com,745.362.8359x17829,4708736748900,2024-10-28 +Resort Hotel,0,2,2017,May,20,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,44.91,0,1,Check-Out,Randy Fernandez,jennifer64@example.org,9714082613,213173341030615,2025-10-04 +Resort Hotel,0,55,2017,March,9,1,1,0,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Group,39.85,0,1,Check-Out,Randy Parker,hmanning@example.net,570-761-3283x69918,3510111527989851,2025-07-01 +City Hotel,1,386,2017,June,23,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,114.47,0,0,Canceled,Debra Pugh,sullivanvicki@example.com,(409)739-2474,379943599039124,2024-06-08 +Resort Hotel,0,308,2017,July,29,17,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,139.0,179.0,0,Transient-Party,164.52,0,1,Check-Out,Linda Welch,francisco68@example.com,352.700.3072x898,675996199799,2024-08-15 +City Hotel,1,12,2017,August,32,3,2,1,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.67,0,2,Canceled,Jennifer Santos,theresa46@example.net,+1-942-509-6861x45336,4922545343554086,2025-01-15 +Resort Hotel,0,117,2017,July,28,9,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,238.0,179.0,0,Transient,134.7,0,2,Check-Out,Jacob Moore,moorejill@example.com,+1-461-606-2119x06904,4811302031111046674,2024-08-31 +City Hotel,0,18,2017,June,25,20,3,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,0,Contract,106.64,0,0,Check-Out,Mr. Michael Williams Jr.,lindsey58@example.org,001-540-741-4952x470,4487335119244675,2026-03-23 +City Hotel,1,250,2017,June,23,5,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.7,0,0,Canceled,Timothy Crane,hpayne@example.com,493-472-4908x4051,4500702718985672,2024-10-08 +City Hotel,1,380,2017,October,41,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,99.53,0,0,Canceled,Mitchell Hernandez,lopezmaria@example.org,349-206-4368,3516644283035026,2024-08-27 +Resort Hotel,0,0,2017,February,7,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,87.13,0,0,Check-Out,Christopher Harris,jgreer@example.com,252-842-7722x0393,5331267930418631,2024-06-04 +City Hotel,0,4,2017,January,2,4,2,2,1,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,43.35,0,0,Check-Out,Ronald Myers,cookjanice@example.com,001-844-928-9396x73113,180057590030013,2025-12-24 +City Hotel,1,20,2017,December,51,23,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.29,0,1,Canceled,Joseph Mcgee,jamesalvarez@example.net,692.776.3720,180065729234356,2024-10-11 +City Hotel,1,37,2017,January,5,29,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,133.03,0,1,Canceled,Lisa Greene,medinajasmine@example.com,493-426-8992,4690526089354121,2024-06-04 +City Hotel,0,12,2017,April,15,6,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,G,1,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Jodi Rodriguez,sfarrell@example.org,001-566-454-5861x21382,180009211526929,2025-04-15 +City Hotel,0,75,2017,March,13,29,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.79,0,1,Check-Out,Amy Mejia,qaustin@example.net,+1-619-975-1355x74921,6589453763568588,2025-07-01 +City Hotel,0,160,2017,July,31,27,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.24,0,2,Check-Out,Ian Dennis,kaylee34@example.com,716-511-2325,6011515730085066,2024-08-17 +Resort Hotel,0,2,2017,January,4,24,2,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,56.76,0,1,Check-Out,Curtis Miller,vasquezelizabeth@example.org,(639)656-8338,4212220768870,2025-08-28 +City Hotel,1,15,2017,November,45,9,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.94,0,0,Canceled,Kayla Watson,cnichols@example.net,899-558-7444x1581,3553158638780776,2024-06-24 +Resort Hotel,0,135,2017,March,11,14,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,28.64,1,3,Check-Out,Gary Yu,arielkelley@example.net,(602)811-5841,370275737213256,2025-01-16 +Resort Hotel,0,16,2017,August,32,7,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,202.35,1,1,Check-Out,Donna Hernandez,jonathon76@example.com,760.527.9303x35147,2452721025315409,2024-04-26 +City Hotel,1,63,2017,May,21,23,0,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,139.41,0,2,Canceled,Nicholas Dawson,steventhomas@example.net,590.376.0650,3511514239853126,2025-04-12 +City Hotel,0,37,2017,April,17,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.94,1,2,Check-Out,Bradley Thomas,uroberts@example.org,244-689-6274,3573949730536827,2025-08-31 +Resort Hotel,0,25,2017,August,32,8,1,2,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,E,E,1,No Deposit,244.0,179.0,0,Transient-Party,168.2,0,2,Check-Out,Denise Scott,margaretmartin@example.com,971-933-2070,4506152156557576160,2025-12-01 +City Hotel,0,21,2017,September,39,27,2,1,1,0.0,0,SC,NLD,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,121.5,0,0,Check-Out,Molly Mcguire,nataliepacheco@example.org,001-735-572-3316x6761,30025576899836,2024-06-23 +Resort Hotel,1,194,2017,May,19,9,2,7,2,0.0,0,HB,CN,Groups,Direct,0,0,0,A,C,0,No Deposit,327.0,179.0,0,Transient,85.35,0,0,No-Show,Michael Lindsey,drewscott@example.org,361.211.3309,503898442655,2026-03-13 +Resort Hotel,0,163,2017,June,23,2,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,142.06,0,3,Check-Out,Andre Berger,rosariofelicia@example.net,228.949.8191,4603920455165607,2025-12-04 +City Hotel,0,19,2017,July,29,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient-Party,133.05,1,1,Check-Out,Karla Walker,douglaspeterson@example.org,+1-855-702-3637x3478,4305144076056730357,2025-03-17 +City Hotel,1,17,2017,October,42,21,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,275.0,179.0,62,Transient-Party,102.89,0,0,Canceled,Rebecca Gonzalez,zrogers@example.org,580.318.6895,2255398086328883,2024-12-29 +Resort Hotel,0,43,2017,December,52,30,2,5,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient-Party,63.75,0,0,Check-Out,Julie Davenport,anthony87@example.com,739.937.2739,4370239569845644087,2024-12-13 +City Hotel,1,143,2017,August,34,23,0,2,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,136.14,0,3,Canceled,Kimberly Norris,tony94@example.com,(218)892-5907x4053,346182978303542,2024-04-30 +Resort Hotel,0,149,2017,March,11,12,2,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,232.42,0,1,Check-Out,Peter Davis,candace59@example.net,270.642.1290,4059266140963,2025-01-16 +City Hotel,0,33,2017,October,43,27,0,2,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,82.74,0,0,Check-Out,Timothy Thomas,brucegraham@example.net,360.852.2172,348526009895181,2026-01-16 +Resort Hotel,0,43,2017,April,15,9,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,56.68,0,2,Check-Out,Johnathan Bentley,ann87@example.org,+1-337-351-3104x981,6534313660526350,2025-02-17 +Resort Hotel,0,17,2017,October,41,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,55.15,0,0,Check-Out,Stephanie Holmes,aimeerodriguez@example.org,805-388-4191x087,213167457323996,2025-03-11 +City Hotel,0,0,2017,January,2,5,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.93,0,0,Canceled,Marissa Choi,joshua92@example.org,(207)791-5439x8386,3585693790492044,2024-12-13 +City Hotel,0,0,2017,October,40,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,41.0,179.0,0,Transient,78.4,0,0,Check-Out,Latasha Hernandez,roygaines@example.net,(446)700-1140x115,180066693587084,2025-11-09 +City Hotel,0,401,2017,October,40,4,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.1,0,2,Check-Out,William Cooper,hunttanya@example.com,(982)858-8274x435,4234844948738,2024-05-10 +City Hotel,1,78,2017,June,23,4,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,132.49,0,0,No-Show,Raymond Fischer,johnwilson@example.org,001-240-485-6742x1258,349165329420096,2024-04-07 +City Hotel,0,2,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,217.99,0,1,Check-Out,Daniel Cook,longgeorge@example.org,(947)622-5319,6011743256575696,2025-02-24 +Resort Hotel,0,15,2017,August,32,9,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,242.54,0,2,Check-Out,Jocelyn Campbell,ostanton@example.net,001-525-551-4919x8218,4023996988625028923,2025-06-21 +Resort Hotel,1,153,2017,July,29,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,132.89,0,1,Canceled,Hannah Anderson,charlesmills@example.org,351.384.3921,343524336504621,2025-01-31 +City Hotel,1,56,2017,December,2,31,2,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,B,A,0,No Deposit,12.0,179.0,19,Transient-Party,55.32,0,1,No-Show,Michael Shaw,gmorris@example.net,(368)854-6231,378026145298146,2025-07-27 +City Hotel,1,10,2017,July,31,31,0,3,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,183.8,0,0,Canceled,Briana Curry,jessica23@example.net,319.510.8546,3567169259380659,2026-02-06 +City Hotel,0,32,2017,May,21,23,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Group,106.35,0,1,Check-Out,Samantha Hernandez MD,ewilliams@example.net,001-232-488-4869,4739812509791248,2025-06-04 +City Hotel,0,14,2017,August,34,19,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.65,0,1,Check-Out,Bethany Morris,lewisryan@example.org,+1-866-908-2635x254,6583327922118772,2025-06-20 +Resort Hotel,0,45,2017,October,40,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,113.68,0,1,Check-Out,Austin Owens,emmabaker@example.net,257-946-9956x9554,4021394452290087,2026-03-08 +Resort Hotel,0,144,2017,July,30,23,3,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,54.91,1,0,Check-Out,Kristin Lopez,shane28@example.net,(675)524-1463,4369234010959199565,2025-12-14 +City Hotel,0,197,2017,August,32,9,0,4,2,1.0,0,BB,CHN,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,142.67,1,0,Check-Out,Angel Wright,adiaz@example.org,663-436-5760,6529730428713128,2024-06-27 +City Hotel,1,122,2017,April,18,30,1,4,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.29,0,2,Canceled,David Fitzgerald,brad53@example.com,001-578-618-9156x5157,4184614554655058,2025-12-26 +City Hotel,1,326,2017,October,40,4,0,2,2,0.0,0,BB,GBR,Groups,Corporate,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,96.23,0,0,Canceled,Victor Moore,michael25@example.com,931-319-4508x354,4681793326318,2026-01-25 +City Hotel,1,15,2017,December,2,30,2,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,10.0,179.0,0,Transient,205.19,0,0,Canceled,Mrs. Kaitlyn James,richardblankenship@example.net,243-902-7896x90503,30100496980451,2025-09-09 +City Hotel,0,24,2017,July,30,21,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,105.5,0,1,Check-Out,Andrew Anderson,annawillis@example.com,(745)744-3489x9534,180016672098751,2025-08-23 +City Hotel,1,92,2017,August,33,13,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.43,0,1,Canceled,Kathleen Flores,shirley41@example.org,001-956-559-9863x9391,3593110372953327,2024-10-28 +Resort Hotel,0,29,2017,March,12,24,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient-Party,83.36,1,3,Check-Out,Kathryn Miller,jessica72@example.com,(893)212-5064x3704,3551589835639138,2025-10-22 +Resort Hotel,1,154,2017,July,27,1,2,7,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,242.0,179.0,0,Transient,88.67,0,1,No-Show,Amy Kennedy,gilbert07@example.com,495.818.1249x6066,213118672626424,2024-09-26 +City Hotel,0,16,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,B,0,No Deposit,2.0,179.0,0,Contract,61.62,0,1,Check-Out,Michael Underwood,jeffreyacosta@example.net,2373540498,3570162505878977,2025-11-07 +City Hotel,0,158,2017,August,32,5,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,160.76,1,0,Check-Out,Jean Ward,laurastewart@example.com,369.677.0204,4040241297973624,2024-07-27 +City Hotel,1,114,2017,May,21,20,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,105.56,0,0,Canceled,Jacob Brady,tamarawilson@example.org,+1-850-415-0762x9253,3541686751006822,2025-06-05 +City Hotel,0,88,2017,September,37,9,1,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,105.24,0,2,Check-Out,Carl Douglas,juliejones@example.net,329.930.2448x3024,375591637025714,2024-05-13 +Resort Hotel,1,42,2017,March,12,16,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,240.0,179.0,0,Transient,42.42,0,1,Canceled,Ryan Joseph,fieldsjoseph@example.org,214-258-0006,639006736826,2025-03-08 +City Hotel,1,188,2017,June,23,5,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,161.76,0,0,Canceled,Dawn Blevins,morganrichard@example.net,001-832-729-2539,180019370698997,2024-04-06 +Resort Hotel,0,20,2017,March,14,30,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,242.0,179.0,0,Transient,63.91,1,1,Check-Out,Mark Martinez,julia82@example.net,+1-790-637-0503x900,5214865243207955,2024-10-09 +Resort Hotel,0,138,2017,June,23,3,2,10,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,133.45,0,1,Check-Out,Angela Weeks,parkerjulie@example.org,705-809-9043x6095,588888448523,2024-06-01 +City Hotel,1,166,2017,December,48,2,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,69.72,0,0,Canceled,Kevin Camacho,brittanybaker@example.net,+1-964-757-9758,3581936631752959,2025-11-07 +Resort Hotel,0,12,2017,November,47,22,0,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,87.45,0,1,Check-Out,Eric Zimmerman,ruthrussell@example.net,+1-598-462-3210x440,2709458609901996,2025-02-15 +Resort Hotel,0,34,2017,November,45,5,1,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,86.56,0,1,Check-Out,Timothy Lewis,rileywayne@example.org,(542)993-0757x1253,6011115793971664,2024-11-14 +City Hotel,0,183,2017,October,44,29,2,0,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,72.04,0,0,Check-Out,Lisa Mendoza,vscott@example.net,(967)915-5312x3087,4352543730291668,2024-11-13 +Resort Hotel,0,2,2017,April,14,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.55,1,1,Check-Out,Melinda Cox,willieortiz@example.com,917.681.1396x4482,4555819234039,2025-04-25 +Resort Hotel,1,280,2017,October,40,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,E,0,Non Refund,1.0,179.0,0,Transient-Party,62.51,0,1,Canceled,David Hill,travisnatalie@example.net,001-834-663-6805,6591204413934563,2025-10-09 +City Hotel,0,356,2017,April,17,28,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,42.15,0,1,Check-Out,Joanne Dean,traciramirez@example.net,001-668-370-1910,4234604099289562,2024-12-31 +City Hotel,1,106,2017,August,33,16,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,177.64,0,3,Canceled,Julie Davis,timothywilson@example.com,(388)782-0450x326,2249318501088382,2025-12-20 +City Hotel,1,41,2017,July,27,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,238.0,179.0,0,Transient,250.21,0,1,Canceled,Nicole Conner,dfuller@example.com,(540)854-1007,213128035352659,2025-12-04 +Resort Hotel,0,0,2017,February,8,20,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient,51.99,1,1,Check-Out,Edward Greene,seanserrano@example.net,281-810-4846x402,564727232030,2026-02-20 +Resort Hotel,0,46,2017,December,51,17,1,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,C,1,No Deposit,41.0,179.0,0,Transient-Party,93.17,0,0,Check-Out,Patrick Daniels MD,sparker@example.org,(905)587-7282x61503,3504773348366680,2025-01-04 +Resort Hotel,0,22,2017,October,43,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,D,E,0,No Deposit,15.0,241.0,0,Transient-Party,50.39,0,0,Check-Out,Jennifer Jones,thompsonteresa@example.com,(871)487-3994,4009342446488701,2026-02-11 +Resort Hotel,0,0,2017,August,32,10,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,B,1,No Deposit,16.0,179.0,0,Transient,5.26,1,0,Check-Out,Katie Massey,smithraymond@example.net,386-471-1083,2622318817520364,2025-07-12 +Resort Hotel,0,4,2017,January,3,20,0,1,2,1.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,179.0,179.0,0,Transient,121.49,0,0,Check-Out,Jamie Gould,ipeterson@example.net,420-971-1232x4178,6011711634366849,2024-09-03 +Resort Hotel,0,162,2017,May,21,24,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,2,No Deposit,16.0,179.0,0,Transient,129.69,0,3,Check-Out,Rhonda Anderson MD,sandra69@example.net,(929)449-0421x626,3596884135249887,2024-11-02 +Resort Hotel,0,21,2017,November,46,15,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,239.0,179.0,0,Transient,108.5,1,1,Check-Out,Kathryn Scott,eric21@example.net,685.612.5366x8165,4549540769314,2026-02-28 +Resort Hotel,1,257,2017,August,35,31,2,5,1,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,244.0,179.0,0,Transient,180.29,0,0,No-Show,William Robinson,walkercaleb@example.org,823-421-6886x2490,36047572694320,2024-09-25 +Resort Hotel,0,12,2017,March,13,28,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,53.24,0,0,Check-Out,Steven Aguilar,renee70@example.net,+1-910-918-8837,4519462099667020356,2025-01-25 +Resort Hotel,0,9,2017,March,13,27,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,308.0,179.0,0,Transient,45.28,0,0,Check-Out,Thomas Lewis,jacksoncynthia@example.com,(690)992-9259,180024082849961,2025-01-09 +City Hotel,1,141,2017,June,26,23,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,122.88,0,0,Canceled,Cody Pitts,whitneylambert@example.com,210-696-0261x706,4244932398498,2025-08-17 +Resort Hotel,1,148,2017,August,33,17,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,D,A,0,Non Refund,240.0,179.0,0,Transient,99.6,0,0,Canceled,Justin Noble,patriciasweeney@example.com,(499)533-3088x0761,5590268053506083,2024-11-18 +City Hotel,1,211,2017,May,20,17,2,3,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.89,0,2,Check-Out,Dylan Clark,smithdebra@example.org,913.408.8873x317,4181206623560793155,2025-08-25 +Resort Hotel,1,48,2017,March,13,23,4,5,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,34.0,179.0,41,Transient,83.36,0,1,Canceled,Erik David,danderson@example.org,001-921-982-7317x5902,574146076322,2025-02-01 +Resort Hotel,0,45,2017,January,4,25,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,E,E,0,No Deposit,240.0,179.0,0,Transient,64.78,1,0,Check-Out,Stephanie Robinson,brittanynavarro@example.org,302.285.6482x094,30462431138862,2025-04-17 +City Hotel,0,93,2017,March,10,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,138.54,0,2,Check-Out,Joel Stevens,jasmine47@example.net,(455)416-6896,30138232654923,2024-08-17 +Resort Hotel,1,259,2017,October,40,3,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,49.14,0,0,Canceled,Kathleen Smith,carolsteele@example.net,001-865-947-6321x6531,6011319481658787,2025-06-11 +Resort Hotel,0,2,2017,January,2,5,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,78.43,1,1,Check-Out,James Jenkins,jameswu@example.com,7739787331,213161796796517,2024-07-07 +City Hotel,0,43,2017,November,45,9,2,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,95.02,0,0,Check-Out,Dr. Jennifer Smith DVM,paulbaker@example.net,+1-386-635-5703x8144,3539314957060261,2025-12-10 +Resort Hotel,0,74,2017,March,12,22,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,241.0,179.0,0,Transient,153.23,1,2,Check-Out,Mitchell Martin,cmiller@example.net,348-295-8464x613,3540380502122812,2025-01-25 +Resort Hotel,0,206,2017,June,26,23,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.14,0,2,Check-Out,Sarah Wilson DVM,franciscoskinner@example.com,(634)774-9373,4055190568233659,2026-03-17 +Resort Hotel,0,267,2017,September,36,5,3,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,258.0,179.0,0,Transient,157.96,0,0,Check-Out,Maria Martinez,hwebster@example.net,394.898.7578x54246,3513639043315166,2025-04-19 +City Hotel,1,248,2017,December,50,16,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,113.19,0,2,Canceled,Tanya Trevino,reginaldhill@example.com,001-531-381-4062x615,30416205015615,2025-09-17 +Resort Hotel,0,39,2017,December,49,5,0,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,134.21,0,1,Check-Out,Sharon Medina,norriskeith@example.com,001-522-926-8597x4345,349410754030873,2026-01-26 +City Hotel,1,249,2017,December,52,23,2,4,2,0.0,0,BB,PRT,Online TA,Undefined,0,1,0,B,B,0,Non Refund,11.0,179.0,0,Transient,67.46,0,1,Canceled,Dr. Phillip Anderson,martinezjon@example.com,001-850-417-3388x88293,4918225938636371857,2025-07-21 +City Hotel,1,57,2017,August,35,29,1,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,109.96,0,0,Canceled,Richard George,smithmatthew@example.org,(973)710-9782,4083117676485190,2024-09-11 +Resort Hotel,0,16,2017,October,40,2,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Contract,54.88,0,1,Check-Out,Adam Evans,zdennis@example.net,001-840-791-2620,4411213681864,2024-10-22 +City Hotel,1,131,2017,December,52,30,2,4,2,1.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,H,A,0,No Deposit,10.0,179.0,0,Transient,87.23,0,1,Canceled,Maria Murillo,travis25@example.org,001-463-834-9646x4369,6011342013410741,2025-05-13 +Resort Hotel,0,46,2017,August,35,30,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,54.69,0,1,Check-Out,Christopher Hodges,ryan61@example.net,5938140743,4132272543908,2025-02-13 +City Hotel,0,1,2017,February,8,23,2,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient,170.88,0,0,Check-Out,Jennifer Levy,ericmayo@example.net,001-684-657-0394x60269,4085952962774,2024-05-25 +Resort Hotel,0,14,2017,January,5,27,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,130.18,1,1,Check-Out,Donald Gomez,smithjeffrey@example.com,(290)295-0370,4759820034715,2024-11-08 +City Hotel,1,414,2017,April,14,1,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,100.69,0,0,Canceled,Christopher King,olopez@example.org,909-765-8737,3538892092467914,2025-11-11 +City Hotel,0,1,2017,February,6,8,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,42.91,0,1,Check-Out,Christine Peterson,taylorkaitlyn@example.org,547.403.3409x2702,3501784548211793,2024-08-07 +City Hotel,1,24,2017,September,37,12,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,137.99,0,1,Canceled,Destiny Johns,patrick27@example.org,(685)829-8262x111,6515889727625510,2024-12-20 +City Hotel,0,12,2017,April,17,24,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,14.0,179.0,0,Transient,79.92,0,0,Check-Out,Ashley Meyer,hooveraaron@example.net,5323835106,501892746717,2025-09-17 +City Hotel,0,2,2017,July,28,11,2,0,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,108.96,0,1,Check-Out,Scott Hamilton,fgarcia@example.net,(768)988-8422x3044,2257046598096971,2026-03-01 +Resort Hotel,0,45,2017,April,14,5,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,C,E,0,No Deposit,136.0,179.0,0,Transient-Party,124.4,0,1,Check-Out,Walter White,stevensteresa@example.net,4103910373,4119070019863329800,2025-01-09 +City Hotel,0,19,2017,August,35,25,0,1,3,1.0,0,BB,,Direct,Direct,0,0,0,A,D,1,No Deposit,16.0,179.0,0,Transient,252.0,0,3,Check-Out,James Young,kara36@example.net,224.583.2664,4349719444804964,2025-09-23 +City Hotel,0,107,2017,September,37,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,43,Transient-Party,109.35,0,0,Check-Out,Anita Sherman,bgallagher@example.org,001-910-435-1827,3585751946263782,2025-06-11 +City Hotel,0,0,2017,March,12,21,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,16.0,173.0,0,Transient-Party,3.87,0,0,Check-Out,Justin Swanson,mmarshall@example.com,557-909-9989x49902,4948225831019450686,2025-07-03 +City Hotel,1,150,2017,June,23,4,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,157.22,0,1,Canceled,James Garrett,xharrison@example.org,001-225-668-9428x385,371239421505186,2025-09-23 +City Hotel,0,13,2017,August,35,28,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.33,0,3,Check-Out,Angela Jenkins,ronald75@example.net,(831)302-5784x87541,2584991795822709,2025-07-06 +Resort Hotel,1,8,2017,June,26,26,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,240.0,179.0,0,Transient,218.18,0,1,Canceled,Gregory Ward,daniellewood@example.org,590.784.7436,4400579771724,2025-11-11 +City Hotel,0,39,2017,September,39,26,3,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,269.0,179.0,0,Transient-Party,106.0,0,0,Check-Out,Ms. Lori Watson,aroberts@example.org,(596)620-9539x5819,3500792732116471,2024-10-31 +City Hotel,0,2,2017,March,10,6,1,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,1,A,A,1,No Deposit,11.0,207.0,0,Transient,61.92,0,0,Check-Out,Carol Dean,vlewis@example.org,764.450.6956x9923,180088779027884,2024-11-22 +City Hotel,1,122,2017,June,24,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,44,Transient,120.56,0,0,Canceled,Dr. Thomas Clark PhD,kennethcastro@example.com,593.304.4181x5710,4380056991928509012,2025-03-31 +City Hotel,1,191,2017,June,25,18,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,74.84,0,2,Canceled,Michael Rogers,ywilson@example.org,001-445-666-7582x080,3557824284392705,2025-01-28 +Resort Hotel,1,294,2017,July,29,15,3,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,242.0,179.0,0,Transient,134.99,0,1,Canceled,John Murray MD,dbanks@example.net,537.449.2928x65160,3508145578159356,2025-03-07 +City Hotel,0,68,2017,July,28,9,2,5,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Jacob Clark,autumnbailey@example.net,001-409-727-7562x9448,3526954439631422,2024-12-10 +City Hotel,0,31,2017,April,14,5,1,1,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,190.0,179.0,0,Transient,90.31,1,0,Check-Out,Jessica Clark,tammybuck@example.com,(436)295-6766x31436,4906762452245,2024-08-30 +City Hotel,0,3,2017,July,27,8,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,106.13,0,2,Check-Out,Ann Scott,jamiecoleman@example.net,585-371-1090,4464347037104338429,2024-11-23 +Resort Hotel,0,1,2017,October,40,4,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,C,0,No Deposit,16.0,76.0,0,Transient-Party,84.29,0,0,Check-Out,Lauren Robinson,bentoneugene@example.org,319-662-5531x4735,5397809001781735,2025-07-11 +City Hotel,1,55,2017,August,31,2,1,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,235.03,0,1,Canceled,Kristi Choi,scottvargas@example.net,+1-937-449-5463,3565191573976329,2025-12-09 +City Hotel,0,252,2017,October,43,25,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient-Party,77.86,0,0,Check-Out,Rebecca White,david46@example.org,+1-742-376-1499x501,2412063066841723,2026-02-12 +City Hotel,0,10,2017,August,32,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,112.52,0,1,Check-Out,Sarah Lee,krussell@example.net,977-294-3547x597,6519263415953970,2025-04-05 +City Hotel,1,39,2017,October,40,1,0,2,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,85.74,0,2,Canceled,Alexandria Shepherd,flemingjames@example.net,(588)693-0985,2315886786102093,2024-06-25 +City Hotel,1,1,2017,October,41,13,0,1,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,E,0,Non Refund,11.0,179.0,0,Transient,79.19,0,0,Canceled,Ashley Glenn,wallerjo@example.org,001-338-904-1016x061,5518741761218158,2024-09-28 +City Hotel,1,49,2017,August,31,3,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,220.64,0,0,Canceled,Benjamin Walker,snyderamy@example.com,730.799.8251x2756,2272226102173687,2025-03-14 +City Hotel,0,3,2017,April,14,5,2,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,Eric Rasmussen,hoganerin@example.org,(716)655-2800x4300,3569021670173361,2025-11-20 +Resort Hotel,0,1,2017,May,21,22,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,19.0,179.0,0,Transient,246.81,1,0,No-Show,Clifford Gonzalez,tara18@example.net,+1-366-649-4030x2265,3586394701589502,2024-06-18 +City Hotel,0,3,2017,August,35,28,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,88.89,0,1,Check-Out,Kathryn Moore,simmonsrobert@example.net,441-807-0907x59738,4975759380446,2025-12-15 +Resort Hotel,1,239,2017,July,30,20,3,5,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,241.67,0,1,Canceled,Willie Munoz,vhenry@example.org,(211)854-1436,4564745170311436143,2024-10-04 +City Hotel,1,160,2017,September,38,19,2,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,109.79,0,0,Canceled,Sean Warren,morgankelly@example.com,220.865.4820,2246806426530382,2026-01-30 +Resort Hotel,0,4,2017,July,27,5,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,57.19,0,1,Check-Out,Robert Cruz,laurathomas@example.net,976.348.6971x74337,374762122755575,2024-06-28 +City Hotel,0,24,2017,August,31,1,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,241.85,1,3,Check-Out,Samantha Petersen,johnwashington@example.net,824-373-6364x31693,4021712258003497,2024-08-12 +City Hotel,1,36,2017,February,9,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,80.0,179.0,46,Transient,54.12,0,0,Canceled,Alicia Combs,longjeffrey@example.net,001-875-791-5228x5375,4165098459710141324,2025-01-19 +City Hotel,1,1,2017,November,47,21,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,125.62,0,1,Canceled,Miss Laura Davis,caitlyn58@example.org,+1-258-899-6340x38002,4078912963833053,2024-11-05 +City Hotel,0,0,2017,October,42,14,0,2,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.86,0,1,Check-Out,Mrs. Kerri Weeks,meyertodd@example.org,001-752-339-5536x66317,349703188971468,2024-06-25 +City Hotel,0,95,2017,May,19,9,1,3,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,141.38,0,1,Check-Out,Louis Armstrong,zunigacarrie@example.org,001-807-507-8116,2281550812463719,2024-11-03 +Resort Hotel,0,203,2017,July,28,8,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,109.15,0,0,Check-Out,David Hayes,qmiller@example.net,+1-541-263-1900x662,30358248323939,2024-12-10 +City Hotel,0,133,2017,June,26,28,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,136.76,0,0,Check-Out,Lauren Foster,julie66@example.org,253-839-7464x93302,4628097053315248,2026-01-13 +City Hotel,0,35,2017,March,13,27,2,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,75.55,0,2,Check-Out,Christopher Lee,zmiller@example.org,957-835-5197x2612,3502824087951596,2024-10-28 +City Hotel,0,42,2017,February,8,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,40.55,0,3,Check-Out,Eric Craig,janice56@example.net,001-506-523-8879x79672,6011070981358796,2024-10-17 +City Hotel,1,312,2017,July,27,2,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,C,A,0,Non Refund,2.0,179.0,0,Transient,75.08,0,0,Canceled,Jordan Hughes,nbennett@example.com,238.356.5505,3551871082192742,2026-01-29 +Resort Hotel,1,9,2017,December,50,13,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,92.86,0,0,Canceled,Veronica Huang,nparker@example.net,9275601914,4194599034560556,2025-06-05 +City Hotel,1,9,2017,August,35,27,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,217.65,0,0,Canceled,Lisa Harrison,jamesmichael@example.net,+1-263-668-4966,2235150856907213,2025-01-20 +City Hotel,0,12,2017,December,48,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.06,0,1,Check-Out,Nicole Cox,vrobinson@example.net,(643)821-8801,5411562272612095,2025-05-10 +City Hotel,0,93,2017,May,18,5,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Group,100.68,0,0,Check-Out,Jill Gonzalez,rsmith@example.net,848.861.2562x728,346225044552053,2024-12-19 +Resort Hotel,0,51,2017,October,41,11,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Contract,93.64,0,2,Check-Out,Katherine Smith,jlane@example.net,(867)579-8252x641,3591392167494442,2024-08-01 +Resort Hotel,1,189,2017,July,30,26,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,252.0,0,2,Check-Out,George Byrd,patricia21@example.com,(699)739-2228x40793,342434753964269,2025-06-29 +City Hotel,1,49,2017,July,30,24,0,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,84.93,0,1,Canceled,Vincent Lowe,juliebryant@example.com,805.575.2712,30059451428031,2025-08-04 +City Hotel,0,277,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Robert Cross,mcmillanleslie@example.org,836.664.3316x9123,370448961152942,2024-05-25 +Resort Hotel,1,1,2017,March,10,4,0,3,3,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,229.94,0,1,Check-Out,Abigail Burch,dennissarah@example.org,6138705876,30079520568047,2024-04-07 +City Hotel,1,3,2017,December,52,30,0,2,2,0.0,0,Undefined,PRT,Undefined,Corporate,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,68.04,0,0,Canceled,Gerald Romero,qmartin@example.org,840.613.2987x29647,341267592304854,2024-11-03 +City Hotel,1,110,2017,September,39,22,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,168.76,0,3,Canceled,Sharon Parks,jhall@example.net,001-730-350-0345x451,376548587789235,2025-01-18 +City Hotel,0,17,2017,May,22,26,1,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,115.25,0,3,Check-Out,Arthur Reilly,morganerin@example.net,437.953.8494,4872948303503186,2025-10-14 +Resort Hotel,0,118,2017,August,33,13,4,7,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,Megan Wells,kevinhicks@example.org,308-992-6787x8094,576003673497,2024-10-12 +Resort Hotel,1,51,2017,November,46,17,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,63.56,0,0,Canceled,Kathryn Downs,richard07@example.com,(513)321-9838,180047990381900,2025-05-24 +Resort Hotel,1,227,2017,October,41,14,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient,109.02,0,0,Canceled,Ronald Knapp,zgarcia@example.net,001-645-248-4582x447,30399666492848,2026-02-08 +City Hotel,0,338,2017,October,43,21,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,118.65,0,1,Check-Out,Sandra Rush,arodriguez@example.net,227.328.3063x52320,4581343043304701,2024-11-12 +City Hotel,0,46,2017,October,43,24,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,8.0,179.0,0,Group,115.56,0,1,Check-Out,Wendy Jenkins,ojohnson@example.net,658.402.1923x99627,4065982964833845,2025-12-23 +Resort Hotel,0,48,2017,April,18,27,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,260.0,179.0,0,Transient-Party,101.57,0,0,Check-Out,Jon Jackson,hooverjason@example.org,829.371.6296x1803,3590444006372775,2026-01-15 +Resort Hotel,0,0,2017,November,48,30,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,A,I,1,No Deposit,12.0,179.0,0,Transient,3.64,0,0,Check-Out,John Franco,kristine67@example.com,001-642-835-9327x712,3561873933660222,2025-08-01 +City Hotel,0,219,2017,August,33,18,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient-Party,104.13,0,1,Check-Out,Stacey Hubbard,william79@example.net,785-577-7834x606,4940364390032,2025-01-20 +City Hotel,0,11,2017,October,43,27,2,2,1,0.0,0,BB,RUS,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,195.0,179.0,0,Transient,118.13,0,0,Check-Out,James Wiggins,vincent95@example.com,831-556-0294x8142,3528708655514821,2025-12-24 +Resort Hotel,1,158,2017,June,25,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,83.86,0,0,Canceled,George Wallace,cristina87@example.net,347-480-3352x64998,4779922723970345,2025-03-10 +City Hotel,1,111,2017,April,17,27,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.29,0,0,No-Show,Janice Green,jenniferwalker@example.org,001-929-905-9100,6011400987403124,2025-01-02 +Resort Hotel,0,218,2017,April,17,23,2,2,1,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,98.55,1,0,Check-Out,Deborah Ramos,charles12@example.com,(908)529-8806,38438192613089,2025-11-24 +City Hotel,0,1,2017,March,12,18,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,69.14,0,1,Check-Out,Hayden Fuller,choffman@example.com,001-483-461-3743x680,3576109520894152,2025-03-28 +City Hotel,0,1,2017,May,20,11,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,223.7,0,1,Check-Out,Denise Ramos,alicia72@example.net,001-696-521-2795x972,4296802157491444,2025-09-05 +City Hotel,0,24,2017,May,20,11,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.22,0,1,Check-Out,Francisco Johnson,timjones@example.com,(698)726-4403x110,4462042163779692,2024-06-21 +City Hotel,0,1,2017,April,15,6,2,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,116.49,1,0,Check-Out,Dawn Hampton,jenningscraig@example.com,+1-438-201-0550x554,180067344396636,2024-04-30 +City Hotel,0,44,2017,April,18,30,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,226.0,0,Transient-Party,111.25,0,1,Check-Out,Jon Burke,robertsonjoshua@example.com,206.842.6758x0190,6551485853199159,2026-03-06 +Resort Hotel,1,30,2017,February,7,10,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,101.0,0,2,Canceled,Nathaniel Shelton,markgraves@example.net,807.702.5447,6504102328683695,2024-04-07 +City Hotel,1,276,2017,June,26,28,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,153.0,179.0,0,Transient,87.6,0,1,Canceled,Lisa Edwards,uhawkins@example.com,743.607.3290x7400,3522387294447762,2024-08-24 +City Hotel,0,4,2017,November,45,6,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,69.0,0,Transient,112.24,1,0,Check-Out,Marcus Cook,ystone@example.com,996.313.9480x688,4762492727475,2025-03-17 +City Hotel,0,1,2017,January,5,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,53.89,0,1,Check-Out,Jeremy Briggs,jeffrey55@example.com,4747922735,6523865662466987,2024-05-21 +Resort Hotel,1,149,2017,August,33,15,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,D,1,No Deposit,14.0,179.0,0,Transient,226.68,0,1,Check-Out,Sean Johnson,psmith@example.com,(976)655-7974x83946,4943881902559797954,2025-12-20 +City Hotel,1,110,2017,October,44,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,96.39,0,0,Canceled,Kelly Brooks,jamesgonzalez@example.net,216-616-6873x9351,4050488828063,2024-05-21 +City Hotel,0,46,2017,April,15,6,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,112.1,0,1,Check-Out,Christina Ferguson,robertbutler@example.com,001-301-705-3786x68242,3555169229441197,2025-12-16 +City Hotel,0,408,2017,June,26,25,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,68.0,179.0,0,Transient,108.62,0,1,Check-Out,Lauren Lopez,ryandunn@example.org,914.508.7447x8407,3505876505118577,2025-05-30 +Resort Hotel,0,31,2017,May,18,2,1,2,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,65.16,1,1,Check-Out,Danielle Burke,anthony36@example.net,(622)581-7172x93379,4486410233312483,2025-05-12 +City Hotel,0,41,2017,October,40,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,89.33,0,0,Check-Out,Patrick Williams,kevinwade@example.net,(899)231-0989x9901,6580972136105850,2025-01-23 +City Hotel,0,175,2017,July,28,12,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,145.35,0,2,Check-Out,Roberta Johnson,russellsean@example.net,001-892-915-1834,2711968681796771,2024-05-02 +City Hotel,0,41,2017,December,2,30,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,124.5,0,0,No-Show,Daniel Ponce,tranfelicia@example.org,(241)651-8663x8346,3587980425384011,2024-12-29 +City Hotel,0,1,2017,August,31,5,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,153.89,0,1,Check-Out,Anita Smith,stricklandkatie@example.net,2445653147,30546914885997,2026-01-30 +City Hotel,1,6,2017,December,49,3,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.16,0,2,Canceled,Colleen Cochran,fhendricks@example.org,001-202-888-7807x2251,4742163730119402,2025-05-15 +City Hotel,1,107,2017,August,32,3,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.17,0,3,Canceled,Sara Edwards,michael73@example.org,+1-405-507-0751x138,4274171933065872,2024-12-11 +City Hotel,0,36,2017,July,31,31,1,4,3,1.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,158.28,0,2,Check-Out,Oscar Thomas,gchristian@example.net,001-744-367-5093x520,4453743700871,2026-02-08 +City Hotel,1,3,2017,July,31,30,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,13.0,45.0,0,Transient,51.24,0,1,Canceled,David Patel,christian23@example.com,(330)212-3515x02624,3559888239673988,2026-02-14 +Resort Hotel,0,39,2017,September,37,10,1,4,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,2,No Deposit,253.0,179.0,0,Transient,227.38,1,0,Check-Out,Jessica Harris,johnnybean@example.org,(545)607-9320x9532,3546521134326214,2025-03-09 +Resort Hotel,1,48,2017,December,49,6,3,5,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,11.0,179.0,75,Transient-Party,114.2,0,0,Canceled,James Campbell,mark27@example.org,787.901.6045x940,4190096720495746,2024-06-04 +Resort Hotel,0,46,2017,September,36,5,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Contract,63.95,0,0,Check-Out,Michael Cuevas,qmoore@example.net,7967951002,3595514800131794,2026-03-10 +Resort Hotel,1,258,2017,October,41,12,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,299.0,179.0,0,Transient,150.62,0,0,Canceled,Jennifer Reynolds,ginasanchez@example.net,(670)763-6003x6298,4873990472311347,2025-07-29 +Resort Hotel,0,18,2017,March,13,27,1,1,2,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,46.12,1,0,Check-Out,Daniel Vincent,joel33@example.net,(230)561-1531,30097535043095,2025-12-07 +City Hotel,0,11,2017,August,34,23,0,2,3,0.0,0,HB,NOR,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,217.56,0,3,Check-Out,John Short,nunezpatricia@example.org,001-309-669-4616x970,4448556053507013492,2025-04-13 +Resort Hotel,1,13,2017,January,2,4,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,83.97,0,1,No-Show,Karen Rodriguez,rodonnell@example.org,001-863-261-2265x4944,30574233220787,2025-11-28 +Resort Hotel,0,370,2017,March,9,3,1,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,271.0,179.0,0,Transient-Party,72.54,0,0,Check-Out,Rachel Erickson,ryan13@example.net,(365)941-1296,30317474806181,2025-01-07 +City Hotel,1,146,2017,June,26,23,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,133.34,0,0,Canceled,Diane Cabrera,paulmartin@example.com,+1-329-221-4384x6801,180014711453590,2024-11-05 +City Hotel,1,57,2017,August,33,15,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient-Party,111.37,0,0,Canceled,Brandon White,alexandra56@example.org,4629565051,2230694897169239,2025-09-21 +Resort Hotel,0,1,2017,May,20,18,0,1,2,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,A,I,0,No Deposit,245.0,179.0,0,Transient,2.5,0,1,Check-Out,Andrew Brock Jr.,lijoanne@example.net,4897411665,639021593061,2025-12-16 +City Hotel,1,14,2017,July,27,1,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,111.02,0,1,Canceled,Erin Myers,jessicahunt@example.com,314.774.3709,30463467017145,2025-01-15 +Resort Hotel,0,142,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Transient-Party,77.69,0,0,Check-Out,Deborah Ibarra,matthew24@example.org,421.751.3845x410,213197171769687,2025-01-19 +City Hotel,0,209,2017,July,28,11,1,4,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.01,0,2,Check-Out,Mark Harris,morgantimothy@example.org,427.457.0126,4095463942861319,2024-06-19 +City Hotel,1,160,2017,August,32,7,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,116.77,0,0,Canceled,David Davenport,tracy79@example.com,4095776954,370752926608603,2024-08-25 +City Hotel,1,269,2017,September,37,11,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,114.75,0,0,Canceled,Dennis Lewis,stevenmcneil@example.net,(513)210-7653x05258,3541442302298678,2025-04-15 +City Hotel,0,1,2017,February,9,24,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,45.2,0,1,Check-Out,Scott Watson,bryce52@example.net,(883)354-8428,376378932987353,2024-08-11 +City Hotel,1,282,2017,September,36,5,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,109.09,0,0,Canceled,Kara Lawrence,kwilliams@example.net,+1-410-227-6981x77480,375910994343314,2025-11-11 +Resort Hotel,1,0,2017,July,30,25,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,40.37,0,0,Canceled,Allison Stokes,crystalallen@example.net,501-850-8525x0079,38341120632496,2026-01-06 +City Hotel,0,259,2017,July,28,8,2,2,2,1.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,211.51,0,1,Check-Out,Peter Davidson,gibsontimothy@example.com,+1-905-841-2194x45255,2268579257719035,2025-12-19 +City Hotel,0,10,2017,May,19,9,1,1,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,101.6,0,0,Check-Out,Andres Hodges,jennifer77@example.net,001-699-757-6424x1517,4674871904902856,2026-03-17 +City Hotel,1,142,2017,April,16,13,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,267.0,179.0,0,Transient,100.07,0,0,Canceled,Jamie Rose,taylor01@example.net,605-643-1685,3552594185731138,2024-06-25 +City Hotel,0,257,2017,May,18,1,2,3,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,164.0,179.0,0,Transient,107.7,1,1,Check-Out,Peter Brown,fsantiago@example.net,001-657-819-5816x63282,5446768482962985,2025-06-08 +City Hotel,0,15,2017,March,12,22,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.85,0,1,Check-Out,Ryan Lyons,erikahood@example.com,+1-327-659-2053x095,347967036131219,2025-01-16 +City Hotel,0,214,2017,May,19,8,0,2,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,120.42,0,2,Check-Out,Barbara Moore,brooksrebecca@example.com,232.550.4967x072,676380360435,2025-12-30 +Resort Hotel,0,65,2017,June,26,25,4,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,48.46,0,1,Check-Out,Stephen Ross,michaelriley@example.net,+1-465-360-4567x376,676372448503,2024-10-26 +Resort Hotel,0,0,2017,December,49,5,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,0,No Deposit,243.0,179.0,0,Transient,94.05,0,1,Check-Out,Daniel Rodriguez,christinafuentes@example.org,001-890-469-6019x2183,4411454840564664,2025-12-26 +City Hotel,1,176,2017,July,31,28,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,36.0,179.0,0,Transient,134.3,0,0,Canceled,Joel Cox,moonjuan@example.com,728.873.7457,3511878443752006,2025-07-08 +Resort Hotel,0,52,2017,December,50,9,0,3,3,1.0,0,Undefined,ESP,Direct,Direct,0,0,0,H,H,2,No Deposit,248.0,179.0,0,Transient,216.74,1,1,Check-Out,Kelly Evans,hfowler@example.com,6456161334,3597530659775315,2025-02-04 +City Hotel,1,297,2017,October,40,3,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,263.0,179.0,0,Transient,104.64,0,0,Canceled,Melissa Church,maria27@example.com,+1-831-935-2118x37713,4319026150928763,2024-10-31 +Resort Hotel,0,210,2017,June,25,20,1,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,254.0,179.0,0,Transient,195.38,0,1,Check-Out,Danielle Jenkins,jennamiller@example.com,001-660-317-6207x08687,4222922297097189,2026-02-28 +Resort Hotel,0,336,2017,August,34,22,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,C,0,No Deposit,177.0,179.0,0,Transient-Party,86.48,0,0,No-Show,Alexa Rangel,laura38@example.com,825-277-0620,6547859450793498,2024-04-20 +Resort Hotel,0,133,2017,October,40,1,2,1,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,75.61,0,0,Check-Out,Veronica Burns,travis16@example.org,249.351.6048x71170,30416645829278,2025-10-26 +City Hotel,1,162,2017,August,32,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,220.51,0,0,Canceled,Andrew Lang,kevin12@example.net,001-844-553-5384,213117496882825,2024-05-17 +City Hotel,0,15,2017,March,14,30,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.28,0,1,Check-Out,Martin Wilson,davidwilliamson@example.net,+1-751-543-6208,213172349573394,2025-02-05 +Resort Hotel,0,1,2017,August,34,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,F,0,No Deposit,15.0,179.0,0,Transient,105.88,1,2,Check-Out,Jeffery Williams,collinsmelvin@example.org,001-916-401-2158x580,3596530710155284,2026-01-08 +Resort Hotel,0,50,2017,March,10,4,2,7,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,344.0,179.0,0,Transient,91.71,0,0,Check-Out,Jesse Harris,joshuagarcia@example.com,815-968-2467,4803390581858277,2024-12-30 +Resort Hotel,0,0,2017,September,39,27,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,237.0,179.0,0,Transient,202.01,0,1,Check-Out,Maria Alexander,sharpdavid@example.com,+1-368-912-3959x952,3541890187049063,2025-09-10 +Resort Hotel,0,3,2017,November,44,2,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,172.0,179.0,0,Transient,51.99,0,1,Check-Out,Kayla Gonzalez,daniel17@example.org,001-868-288-8449,4133579041048507172,2025-08-12 +Resort Hotel,0,45,2017,May,21,18,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,287.0,179.0,0,Transient-Party,95.08,0,2,Check-Out,David Skinner,smithchristina@example.com,+1-694-272-0772,180096242239812,2025-12-07 +City Hotel,0,370,2017,July,27,5,1,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,77.5,0,0,Check-Out,Daniel Spears,ronaldcooper@example.org,2962416396,2601931935179593,2024-04-22 +City Hotel,1,154,2017,June,26,26,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.99,0,0,Canceled,Dustin Gregory,kyle01@example.net,864-396-6022x0281,30365574295540,2024-10-01 +City Hotel,1,13,2017,June,24,14,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,150.46,0,2,Canceled,Sherry Oliver,ksimpson@example.org,001-801-472-5487x485,38684213887851,2026-02-21 +City Hotel,0,50,2017,April,15,9,2,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,104.57,0,0,Canceled,Jose Mendez,huynhryan@example.com,001-367-895-2667x252,4085075563454042,2026-01-31 +Resort Hotel,0,242,2017,October,40,4,2,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,289.0,179.0,75,Transient-Party,81.55,0,1,Check-Out,Sean Spencer,rpalmer@example.com,+1-390-267-5849x9090,213140095626096,2024-04-17 +City Hotel,1,219,2017,June,23,6,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,126.67,0,0,Canceled,Danielle Alvarado,zpeterson@example.net,540-392-4069x38435,30300914929888,2026-03-22 +City Hotel,0,132,2017,March,13,25,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.55,0,1,Check-Out,William Sanchez,lucaskrista@example.com,+1-963-648-3267x126,30354900661922,2026-01-15 +City Hotel,0,36,2017,June,23,5,0,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,118.82,0,0,Check-Out,Jessica Manning,jsanders@example.com,390.384.1621,180090664167460,2024-05-27 +Resort Hotel,0,85,2017,December,52,28,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,98.62,0,1,Check-Out,Marcus Poole,shawnwu@example.net,621.521.7137x9538,4109315689057655,2024-06-05 +Resort Hotel,0,53,2017,July,29,17,2,10,2,1.0,0,BB,CHE,Online TA,Direct,1,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,233.59,0,2,Check-Out,Wendy Oneal,patrick25@example.com,+1-809-625-9254x89439,6506844632758329,2024-04-10 +City Hotel,1,98,2017,November,47,20,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,129.19,0,1,Canceled,Mary Santana,wjohnson@example.net,958-885-5461,2247145053421998,2024-09-18 +City Hotel,1,260,2017,October,43,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.0,0,0,Canceled,Laurie Johnson DVM,anne83@example.com,231.955.7190,501802200946,2024-07-30 +City Hotel,0,14,2017,August,34,23,2,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,G,0,No Deposit,15.0,179.0,0,Transient,121.05,0,0,Check-Out,Amanda Sims,maryowens@example.net,001-592-708-1286x780,30288159593412,2025-12-01 +City Hotel,0,27,2017,August,34,25,0,4,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,G,0,No Deposit,13.0,179.0,0,Transient,214.37,0,2,Check-Out,Aaron Reeves,powellemily@example.org,691.450.7964x518,4615341084854,2025-03-03 +City Hotel,1,21,2017,April,15,13,2,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,146.39,0,2,Canceled,Jay Weber,lisa58@example.org,862-890-8170,373185074972371,2024-06-24 +Resort Hotel,0,7,2017,October,44,31,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,86.59,0,0,Check-Out,Patrick Moore,donovankathryn@example.org,+1-286-348-2287x89432,3524821526248109,2025-03-09 +Resort Hotel,1,168,2017,July,27,2,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,317.0,179.0,0,Transient,43.88,0,0,Canceled,Mariah Nolan,wagnersamuel@example.net,548.271.7521x86704,4163396321465991754,2025-01-24 +City Hotel,1,12,2017,February,6,5,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.2,0,1,Canceled,Linda Dean,kevintucker@example.net,(770)918-4506,30289662878852,2024-11-09 +Resort Hotel,0,3,2017,October,42,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,E,0,No Deposit,240.0,179.0,0,Transient,47.1,1,1,Check-Out,Daniel Chung,stevenhenry@example.net,853-341-8942x10259,213135959950343,2025-05-10 +City Hotel,1,99,2017,November,45,9,0,4,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,64,Transient-Party,105.82,0,0,Canceled,Carmen Sanchez,michaelgarcia@example.net,473-547-1823x987,30329046248099,2025-10-26 +City Hotel,0,109,2017,March,12,19,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,119.26,0,1,Check-Out,Jennifer Baker,dthornton@example.net,914.823.7047x0577,4651481863224649124,2025-01-02 +Resort Hotel,0,90,2017,April,16,17,2,5,2,0.0,0,BB,POL,Direct,Direct,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,52.05,0,1,Check-Out,David Alexander,lsawyer@example.org,(685)475-9831x13958,6598915082139811,2024-08-07 +Resort Hotel,1,101,2017,September,37,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,134.0,179.0,0,Transient,138.74,0,0,No-Show,Autumn Gomez,patricia81@example.com,442-409-8826x651,180086941645146,2024-08-25 +City Hotel,0,1,2017,April,14,2,2,3,1,0.0,0,BB,,Corporate,Direct,0,0,0,D,B,1,No Deposit,12.0,179.0,0,Transient-Party,170.3,0,0,Check-Out,Sarah Brock,udonovan@example.com,(279)628-0501x9583,36397080856006,2024-07-31 +Resort Hotel,0,198,2017,June,24,11,1,5,2,2.0,0,HB,PRT,Online TA,TA/TO,1,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,144.29,0,1,Check-Out,Christine Martin,timothycampbell@example.com,438-365-6831x908,4429576505306864,2024-11-22 +City Hotel,1,106,2017,October,40,2,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Contract,114.98,0,0,Canceled,Sean Burton,charles10@example.org,6784982199,3543314248242847,2025-10-23 +City Hotel,0,379,2017,November,46,17,2,4,2,0.0,0,SC,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.7,0,0,Check-Out,Brandon Bray,sweeneydaniel@example.org,282-640-7413,4835897294190,2025-06-02 +City Hotel,0,20,2017,July,28,10,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,36.45,0,0,Check-Out,Alex Anderson,agibbs@example.org,001-912-836-1329x39713,4493179100756095,2024-11-10 +Resort Hotel,0,160,2017,March,12,24,2,3,2,0.0,0,BB,POL,Groups,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,89.73,1,1,Check-Out,Travis Taylor,coffeycharles@example.org,(630)293-8782,346908143235767,2024-06-24 +City Hotel,1,117,2017,April,17,21,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.32,0,1,Canceled,Zachary Dickerson,tonya67@example.com,7555959030,3527528922288939,2024-04-03 +City Hotel,1,302,2017,August,32,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,17.0,179.0,0,Transient-Party,103.42,0,1,Canceled,Beth Kerr,tbrown@example.org,6836901193,4196737696857732,2026-01-28 +City Hotel,1,110,2017,April,14,4,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,40,Transient,105.47,0,0,Canceled,Shannon Casey,vanessaanderson@example.org,001-526-834-5233x75751,371896847689017,2025-06-12 +Resort Hotel,0,151,2017,May,19,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,143.0,179.0,0,Transient,80.49,0,1,Check-Out,David Ponce,edwin70@example.org,+1-889-364-3394x3032,30222815506021,2025-01-27 +City Hotel,1,297,2017,October,43,23,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,35.0,179.0,42,Contract,82.54,0,0,Canceled,Hannah Schmidt,ymercado@example.org,573.444.5769x9707,180069203324246,2024-04-10 +Resort Hotel,0,191,2017,May,20,17,2,10,1,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,56.34,0,1,Check-Out,Claudia Black,edwinjenkins@example.org,828-904-9289,30592139118814,2025-04-19 +City Hotel,1,94,2017,December,49,7,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,247.61,0,2,Check-Out,Roger Greene,duane62@example.org,(525)801-9131x45145,4953587166950910,2024-10-30 +Resort Hotel,0,1,2017,January,2,11,2,4,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,248.0,179.0,0,Transient,224.4,1,1,Check-Out,Laurie Fox,vcook@example.org,(808)538-6194,4690742497831,2024-10-17 +Resort Hotel,0,42,2017,April,17,24,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,71.73,0,0,Check-Out,Denise Moran,dthomas@example.com,6193461595,4138898537865929,2024-09-21 +Resort Hotel,0,292,2017,January,3,13,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,21.0,179.0,0,Transient-Party,71.62,0,0,Check-Out,Erin Fox,bellkaitlyn@example.org,001-558-286-2932,3508635861544462,2025-05-08 +City Hotel,0,14,2017,March,13,31,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,107.66,0,1,Check-Out,Scott Nichols,acastro@example.org,280.826.4648x362,6011935662157040,2024-04-07 +Resort Hotel,0,164,2017,March,14,30,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,H,0,No Deposit,243.0,179.0,0,Transient,129.21,1,0,Check-Out,Dr. Cole Robertson,amandaestrada@example.net,+1-352-770-1346x062,4227263590031,2025-07-28 +City Hotel,0,16,2017,October,41,12,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient-Party,63.23,0,0,Check-Out,Timothy Christian,martinkelly@example.com,+1-393-390-4913x461,4069532966604,2026-01-11 +Resort Hotel,1,2,2017,July,29,17,0,2,3,0.0,0,SC,PRT,Complementary,Undefined,0,0,0,P,K,0,No Deposit,12.0,179.0,0,Transient,3.43,0,0,Canceled,Shawna Garcia,karengordon@example.net,319-691-3178x80068,6513399797783894,2025-01-06 +City Hotel,1,1,2017,August,33,17,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,119.43,0,1,Canceled,Seth Diaz,kimberlykerr@example.org,+1-299-518-4495x164,3548728579702688,2025-05-19 +City Hotel,0,54,2017,November,45,10,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient,84.35,0,1,Check-Out,Jason Rose,edward14@example.net,(657)842-5075,4884643274163369,2024-09-17 +City Hotel,1,106,2017,August,35,30,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,227.46,0,0,Canceled,Misty Rogers,nbaker@example.com,001-737-583-6294,30143770020321,2025-01-28 +City Hotel,1,3,2017,February,6,4,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient,77.9,0,0,No-Show,Andrew Brown,vedwards@example.org,917-543-7992x91385,4355599029342932,2024-04-26 +City Hotel,0,96,2017,July,27,5,0,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,114.72,0,1,Check-Out,Laura Luna,vcampbell@example.org,613-944-0497x182,6011584276312755,2025-08-15 +City Hotel,0,3,2017,September,37,7,1,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,1,1,1,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,62.06,0,1,Check-Out,Lisa Kirk,jacob56@example.org,(542)472-6569x258,2222947398809236,2026-03-20 +City Hotel,1,165,2017,July,29,18,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,6.0,179.0,0,Transient,171.42,0,1,Canceled,Jonathan Hughes,tracy07@example.net,+1-816-634-5107x633,6563433630712544,2025-07-22 +City Hotel,1,15,2017,March,13,30,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,61.29,0,0,Canceled,Gina Summers,rodriguezsara@example.org,+1-569-358-1286x75096,2700963355334507,2025-12-16 +Resort Hotel,0,62,2017,September,36,5,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,G,0,No Deposit,237.0,179.0,0,Transient,100.33,0,0,Check-Out,Kayla Campbell,ryanburgess@example.org,001-805-468-8115,4858017997555098,2024-05-01 +City Hotel,0,80,2017,March,13,30,1,3,2,2.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,73.96,0,2,Check-Out,Stacey Bruce,richardsonmatthew@example.com,552.632.7598x9139,4761206722442203,2024-11-04 +City Hotel,1,93,2017,May,22,28,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,102.26,0,2,No-Show,Kayla Taylor,qthomas@example.org,4855353108,2282445345016028,2025-01-29 +City Hotel,1,55,2017,March,10,8,0,2,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.05,0,1,Canceled,Jason Roberts,ashleyflores@example.net,999-661-5755x961,4876646496967,2025-12-28 +City Hotel,0,18,2017,October,40,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,108.54,0,1,Check-Out,Gary Wallace,marvin30@example.org,001-287-926-6398x734,3560094979909909,2025-06-12 +Resort Hotel,0,8,2017,December,52,29,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,33.0,179.0,0,Transient-Party,94.38,0,0,Check-Out,Linda Ward,hudsonjason@example.org,2715644758,4496776644462143,2026-03-11 +City Hotel,0,384,2017,January,3,18,2,2,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,107.59,0,0,Check-Out,Lindsay Marsh,bmerritt@example.org,+1-425-467-9870x96349,3513834154111518,2025-06-20 +City Hotel,1,292,2017,October,41,12,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,62,Transient,72.37,0,0,Canceled,Isabella Cook,william45@example.com,838-692-6159x5695,340588911031592,2024-12-13 +City Hotel,1,146,2017,January,2,9,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,115.24,0,1,Canceled,Shannon Romero,ortizaudrey@example.org,473-804-0670x4603,574111757112,2025-04-22 +City Hotel,1,13,2017,November,44,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,73.64,0,0,Canceled,Mary Griffin,zdavies@example.net,3922071683,3526641120709480,2026-03-22 +Resort Hotel,0,148,2017,July,27,5,3,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,162.24,0,1,Check-Out,Elizabeth Saunders,chelsea38@example.org,(367)800-3986,30375239489255,2025-07-20 +City Hotel,1,4,2017,July,27,5,0,2,2,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.16,0,1,No-Show,Jonathan Snyder,ericspencer@example.org,781.875.3962x20539,578335191768,2025-03-29 +Resort Hotel,1,5,2017,May,22,27,1,4,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,227.68,0,0,Canceled,Shane Wood,catherine55@example.com,455.245.8220,376350291470271,2025-08-17 +City Hotel,0,108,2017,January,5,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,62.71,1,1,Check-Out,Autumn Robinson,vrodriguez@example.net,(740)381-0904x561,4325032580894379,2024-10-20 +Resort Hotel,0,174,2017,April,17,26,2,5,1,0.0,0,BB,GBR,Aviation,Corporate,0,0,0,D,D,2,No Deposit,15.0,167.0,0,Contract,98.33,0,0,Check-Out,Samuel Doyle,diane01@example.net,001-841-326-1702,3572769023586151,2024-12-05 +City Hotel,0,28,2017,April,17,26,1,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.86,0,0,Check-Out,Danielle Carlson,jrose@example.org,001-890-994-6458x4300,6562174672148616,2025-07-11 +Resort Hotel,0,5,2017,August,31,2,2,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,B,1,No Deposit,192.0,179.0,0,Transient,192.54,0,1,Check-Out,Alicia Brown,johnsonanthony@example.net,+1-933-680-5435,4846316921578,2024-08-30 +Resort Hotel,0,17,2017,December,52,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,53.0,0,1,Check-Out,Gary Diaz,durankevin@example.org,825.798.7523x3817,4972072530000566,2024-08-20 +City Hotel,0,10,2017,October,42,16,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,131.07,0,1,Check-Out,Ms. Emily Watts,ybrown@example.org,+1-622-669-7833x52317,4527808132849433,2025-04-20 +City Hotel,0,1,2017,January,4,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,B,0,No Deposit,17.0,45.0,0,Transient,3.65,0,0,Check-Out,Steven Weeks,lweaver@example.net,535-624-8080x333,2232491206997105,2025-05-04 +Resort Hotel,1,162,2017,October,40,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,0,Transient-Party,65.31,0,0,Canceled,Ashley Simmons,dawnbryant@example.com,737-369-1946,4774743621196493,2024-12-15 +City Hotel,1,141,2017,July,28,12,0,3,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,236.79,0,2,Canceled,Justin French,poliver@example.net,296.628.8860x854,3596823641046544,2025-05-10 +City Hotel,0,2,2017,May,22,26,1,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,B,0,No Deposit,16.0,45.0,0,Transient,2.26,0,0,Check-Out,Katherine Moore,prestonpacheco@example.org,821.627.8372x23696,2713390009078642,2024-06-10 +City Hotel,1,42,2017,June,25,18,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient,127.77,0,1,Canceled,Daniel Valenzuela,gregorybrenda@example.com,001-582-749-1775,3559567444543042,2024-08-22 +City Hotel,0,1,2017,July,27,3,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,1,0,A,B,0,No Deposit,13.0,45.0,0,Contract,0.5099000000000001,0,0,Check-Out,Paula Jordan,russelljessica@example.com,993-781-3182,3596797667285808,2025-02-25 +City Hotel,0,0,2017,January,3,16,1,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,37.43,0,1,Check-Out,Nicholas Smith,galvarez@example.com,992.626.9259x9527,6519467433448638,2025-04-03 +Resort Hotel,1,97,2017,December,50,11,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient,63.76,0,0,Canceled,Richard Pruitt,zrodriguez@example.net,(455)268-3630,4121097905657502294,2025-12-23 +City Hotel,0,191,2017,August,33,15,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,188.06,0,2,Check-Out,Mrs. Meghan Sanders,ywilson@example.org,570.471.3658x53742,060461900973,2025-08-27 +City Hotel,0,3,2017,October,41,8,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,40.18,0,0,Check-Out,Arthur Campbell,martinezamanda@example.net,+1-457-652-3341x842,4124962698233,2024-12-08 +City Hotel,0,118,2017,March,10,7,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,75,Transient,44.23,0,1,Check-Out,Brian Burton,toddkelley@example.com,001-552-919-6176x356,060448749816,2025-06-14 +Resort Hotel,0,2,2017,March,10,7,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,50.98,0,0,Check-Out,Jon Hickman,leonard61@example.net,+1-202-220-0279,4232037762770638,2025-04-30 +Resort Hotel,0,3,2017,October,43,27,4,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,1,No Deposit,251.0,179.0,75,Transient,93.35,0,1,Check-Out,Amy Campbell,mooretroy@example.net,+1-849-987-2873x3198,4035510326795462484,2026-02-16 +City Hotel,0,108,2017,February,9,24,1,4,2,0.0,0,BB,RUS,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Contract,167.61,0,1,Check-Out,Justin Tyler,kennethcoleman@example.com,289.980.9822,348534990883794,2025-11-29 +Resort Hotel,1,173,2017,March,11,14,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,61.62,0,0,Canceled,Marcus Rogers,danny85@example.org,(302)507-4112x369,4628220214757,2026-01-10 +City Hotel,1,154,2017,June,26,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,230.0,0,0,Canceled,Tammy Solis,staciewalker@example.org,561-463-0865,6555120027870171,2024-10-31 +City Hotel,1,42,2017,May,21,24,1,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.88,0,0,Canceled,Jessica Grant,lewischristine@example.net,342-615-4716,4626786350221255,2025-07-09 +City Hotel,1,296,2017,June,23,2,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,114.0,0,0,Canceled,Cindy Watson,pameladavis@example.com,+1-633-499-2783x78778,060407163983,2026-02-15 +City Hotel,0,104,2017,April,18,30,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,105.96,0,3,Check-Out,Mary Lyons,lisajarvis@example.com,+1-687-638-7483x916,6011060899671497,2026-03-15 +Resort Hotel,0,228,2017,October,42,15,2,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,30.0,179.0,0,Contract,63.51,0,1,Check-Out,Jennifer Hicks,khall@example.org,001-447-585-7233x87419,4769150096249004,2025-12-03 +Resort Hotel,1,2,2017,April,15,11,1,0,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,15.0,179.0,0,Transient,129.45,0,1,Check-Out,Rachel Kelly,timothy94@example.com,7155056130,4752643528230351483,2026-01-31 +City Hotel,1,0,2017,August,35,27,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Canceled,William Manning,parkjamie@example.com,+1-307-948-4892x0475,3581187531156913,2024-07-17 +City Hotel,1,84,2017,June,27,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,144.19,0,1,Canceled,Jonathan Malone,ywilliams@example.org,001-608-926-4127,4354430965241,2025-04-11 +City Hotel,1,156,2017,June,25,19,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,136.8,0,0,Canceled,Curtis Wells,sheilaporter@example.org,+1-861-734-3017,4403084329558,2025-02-19 +City Hotel,1,141,2017,August,34,17,2,4,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,D,A,0,No Deposit,14.0,179.0,0,Transient,224.03,0,0,Canceled,Gary Ruiz,marksmarc@example.org,262.329.6459x392,180072639392563,2025-08-31 +City Hotel,1,216,2017,April,18,30,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,74.0,179.0,0,Transient,132.16,0,0,Canceled,Christopher Garrett,christophersmith@example.net,001-994-209-8637x27381,4603064654483,2025-09-29 +City Hotel,0,12,2017,September,37,10,1,4,2,0.0,0,BB,RUS,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,124.19,0,3,Check-Out,Lauren Walker,mercedesmcdonald@example.org,4402039095,4889363976998377,2025-11-19 +City Hotel,0,32,2017,April,15,8,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,98.41,0,0,Check-Out,Stacy Osborne,wrightelizabeth@example.net,888.479.1194x834,2281980703241694,2025-01-28 +Resort Hotel,0,58,2017,April,15,10,1,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,135.0,179.0,0,Transient-Party,41.21,0,0,Check-Out,Tracie Berg,amy37@example.org,9593341232,2262084406379738,2024-08-06 +City Hotel,0,13,2017,September,39,26,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,63.5,0,0,Check-Out,Jennifer Mills,fjones@example.net,297-249-1475,377579411476383,2024-06-04 +Resort Hotel,0,25,2017,March,10,5,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,52.28,0,0,Check-Out,Sophia Lucero,wilsonheather@example.org,286-999-2826,3505079132122639,2024-06-12 +Resort Hotel,0,1,2017,July,27,3,2,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,222.88,0,2,Check-Out,Maria Johnson,rickysmith@example.net,+1-286-839-9652,213162401545513,2025-08-31 +City Hotel,1,39,2017,October,40,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,85.56,0,0,Canceled,Jacob Tyler,milesmatthew@example.net,001-822-762-9913x909,3531831691687651,2026-01-05 +Resort Hotel,1,248,2017,December,51,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,253.0,179.0,65,Transient,53.54,0,0,Canceled,Linda Davis,daniel67@example.com,(911)207-9815,213158395583726,2025-01-30 +City Hotel,1,52,2017,December,49,9,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,175.0,179.0,62,Contract,90.93,0,0,Canceled,Daniel Williams,tware@example.net,512-465-8678x7242,6506870986146571,2024-07-30 +City Hotel,1,340,2017,October,42,17,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,64,Transient,99.49,0,0,Canceled,Anthony Carr,daniel49@example.net,8027946696,4675702688651,2025-10-09 +Resort Hotel,0,49,2017,March,10,9,2,6,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,344.0,179.0,0,Transient,129.65,0,1,Check-Out,Michael Young,laura82@example.com,6285629814,341003044473264,2024-12-01 +Resort Hotel,0,3,2017,September,37,10,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,52.83,0,1,Canceled,Kenneth Sanchez,dennisellis@example.com,749-581-6858x80507,4072495311953274,2025-06-09 +City Hotel,0,209,2017,August,33,14,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,110.38,0,1,Check-Out,Cathy Smith,nicolewatts@example.net,504.427.6108,30069970836440,2024-10-20 +City Hotel,1,203,2017,July,27,1,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,42,Transient,140.9,0,0,Check-Out,Cynthia Castro,tjackson@example.net,(212)371-8946x84294,30060850529312,2025-11-24 +Resort Hotel,0,57,2017,July,28,9,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,106.17,0,0,Check-Out,Christopher Pena,paul10@example.com,(717)410-3863x06622,4450206710066,2024-09-26 +City Hotel,0,24,2017,November,47,22,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,61,Transient-Party,61.63,0,0,Check-Out,Kristin Mendez,alec82@example.com,4642453845,4267795329489367667,2024-08-15 +Resort Hotel,0,0,2017,February,9,28,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,103.0,1,1,Check-Out,Diane Crosby,zjackson@example.net,(264)378-8742x846,3503503907461627,2024-10-10 +City Hotel,1,72,2017,March,14,30,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,105.68,0,1,Canceled,Nicole Gutierrez,emurray@example.com,339.273.9836x9511,4061034375213854,2024-10-24 +Resort Hotel,1,337,2017,July,29,15,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,88.62,0,1,Canceled,Jared Adkins,robert89@example.net,7779890461,3551788284690564,2024-07-19 +Resort Hotel,0,53,2017,September,38,17,2,5,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,39.0,331.0,0,Transient-Party,42.26,0,0,Check-Out,Ryan Taylor,ppotter@example.net,787-635-3842x309,376059407155441,2025-10-30 +City Hotel,0,4,2017,February,7,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,45.93,0,1,Check-Out,David Hunt,michaelharris@example.com,670.916.0546x141,180095762204537,2024-11-24 +City Hotel,0,312,2017,July,27,1,0,1,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,133.9,1,1,Check-Out,Edward Newton,seanbird@example.net,001-395-852-4756x227,4725431917418751,2025-06-27 +City Hotel,1,276,2017,October,40,5,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,100.8,0,0,Canceled,Edgar Ramirez,garrett36@example.net,961-448-3526,501864718488,2024-05-19 +Resort Hotel,0,166,2017,March,13,31,1,3,1,0.0,0,BB,PRT,Groups,Direct,1,0,0,A,A,0,Refundable,13.0,224.0,0,Transient-Party,62.64,0,0,Check-Out,Jennifer Hill,farias@example.com,2062155464,4319350552953292956,2025-09-21 +City Hotel,0,47,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,64,Transient-Party,98.06,0,1,Check-Out,Joel Hansen,mike33@example.com,428.373.4698,4034960065953992613,2025-09-21 +City Hotel,1,94,2017,July,30,22,0,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,134.14,0,1,Canceled,Pamela Gill,fsteele@example.com,8419101191,347967263543011,2024-12-31 +Resort Hotel,0,56,2017,March,11,14,1,3,2,1.0,0,BB,IRL,Direct,Direct,0,0,1,E,E,1,No Deposit,244.0,179.0,0,Transient,90.39,0,2,Check-Out,Jessica Allen,veronicamckee@example.net,281.324.3252x56355,3520607836450996,2025-01-25 +City Hotel,0,16,2017,March,13,26,1,2,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,63,Transient,107.75,0,1,Check-Out,Marilyn Holmes,myersjuan@example.com,434-412-4405x1383,4155835216335252590,2025-12-31 +Resort Hotel,0,15,2017,February,8,17,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,53.59,0,1,Check-Out,Krista Wallace,hectorbriggs@example.com,(743)655-1139,213170610001947,2024-09-04 +Resort Hotel,1,153,2017,July,30,26,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,233.57,0,0,Canceled,Denise Knight,wcameron@example.org,+1-582-685-7331x8055,374807631644693,2024-11-30 +Resort Hotel,1,2,2017,May,20,13,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Contract,64.18,0,0,Canceled,Joseph Alvarado,catherine80@example.net,857.333.3352x2355,4586020090813026870,2025-07-15 +City Hotel,0,88,2017,May,19,9,1,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient,102.12,0,1,Check-Out,Travis Cruz,travisparsons@example.org,3026882221,6011249870386239,2025-05-28 +City Hotel,1,116,2017,June,23,3,0,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient,111.64,0,2,Canceled,Vickie Carroll,marquezcrystal@example.net,001-711-648-5285x01889,4606393843537,2025-08-21 +Resort Hotel,0,2,2017,February,8,21,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,132.0,179.0,0,Transient-Party,37.19,0,0,Check-Out,Danielle Patrick,tammyavila@example.org,(876)728-0079x17909,6582067009203078,2026-01-31 +City Hotel,1,414,2017,September,37,13,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,106.59,0,0,Canceled,Jeffrey Collins,thomaslindsey@example.com,849.723.6625x07459,213118225633117,2025-03-04 +City Hotel,0,388,2017,October,43,21,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,65,Transient-Party,103.53,0,0,Check-Out,Lucas Smith,stephanierodriguez@example.net,480.401.6783,180042032413266,2024-04-15 +City Hotel,0,50,2017,March,13,27,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.84,0,0,Check-Out,James Bauer,tammy82@example.net,+1-566-927-0834,4128934394252378776,2025-09-25 +City Hotel,1,111,2017,July,27,3,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.42,0,2,Canceled,Sarah Mcmillan,rachael22@example.org,001-809-587-1865,4141133974291917,2024-07-20 +City Hotel,0,61,2017,March,12,20,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,45.0,0,Transient,104.11,0,1,Check-Out,Debra Friedman,faulknernancy@example.net,(640)623-0815x62345,3549462847060104,2024-10-24 +City Hotel,0,0,2017,November,45,5,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.54,0,2,Check-Out,Jason Ferrell,laura02@example.com,001-913-593-6020x787,213131876994779,2024-10-09 +City Hotel,0,30,2017,October,40,2,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,50.56,0,1,Check-Out,Tina Martinez,anthonyadams@example.org,704.910.8965x023,371852136741613,2025-11-25 +City Hotel,1,211,2017,March,13,25,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,2,Non Refund,14.0,179.0,0,Transient,131.22,0,0,Canceled,Mrs. Brenda Harrington,ryan81@example.net,8877693462,2714946678622587,2025-06-11 +City Hotel,0,13,2017,November,45,5,1,3,1,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.13,0,1,Check-Out,Maurice Santos,qchandler@example.org,365.911.5554x848,4097345911046,2026-01-06 +City Hotel,1,17,2017,June,25,19,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,2,Canceled,Maria Adams,raymond37@example.net,(366)456-1773x90785,3523800675119742,2024-11-22 +Resort Hotel,1,301,2017,November,45,9,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,95.39,0,0,Canceled,Brenda Berger,pchristensen@example.net,483.608.1459x17107,3563248933911966,2024-04-13 +City Hotel,0,149,2017,June,23,4,1,4,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.44,0,1,Check-Out,Daniel Tucker,allisonmichael@example.net,682.848.4272,213182550026982,2025-12-18 +City Hotel,0,78,2017,March,13,29,1,3,1,0.0,0,BB,BEL,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.98,0,3,Check-Out,Debra Zavala,nancy96@example.com,422-801-8178x73928,4942834912869828,2025-10-29 +Resort Hotel,1,257,2017,May,18,5,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,83.32,0,1,No-Show,Amy Robertson,uryan@example.org,+1-458-673-6458x1836,4989232296871,2024-06-16 +City Hotel,1,53,2017,January,4,23,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,87.09,0,1,Check-Out,Eric Ware MD,esparzakimberly@example.net,+1-471-347-6393x2352,347029072138515,2024-07-15 +City Hotel,0,7,2017,May,20,17,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,201.0,0,Transient,111.2,0,3,Check-Out,Jonathan Williams,scott23@example.org,+1-262-818-8118x195,3550865964123545,2024-08-13 +Resort Hotel,0,79,2017,June,23,6,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,107.74,0,1,Check-Out,Gary Silva,aprilclayton@example.com,229.774.0781x583,6011124214962575,2025-04-28 +Resort Hotel,0,0,2017,April,14,5,2,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,250.0,179.0,0,Transient,54.6,0,0,Check-Out,Susan Nguyen,obrandt@example.net,001-546-410-9059x33371,4832631826038133,2024-07-16 +City Hotel,1,153,2017,July,30,22,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.01,0,2,No-Show,Mary Pearson,longdennis@example.org,837.559.9617,4086661307102655,2026-01-09 +City Hotel,0,21,2017,September,36,5,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.46,0,1,Check-Out,Rachel Watson,vanessashepard@example.org,+1-633-695-4582x40078,571297072878,2025-05-15 +City Hotel,0,86,2017,May,21,24,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,135.35,0,1,Check-Out,Kathryn Hoffman,hsmith@example.com,001-935-943-4407,503858468104,2024-11-03 +City Hotel,1,141,2017,July,27,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.97,0,1,Canceled,Stephen Rogers,carlprice@example.com,815.954.2884,4858044980206,2025-09-02 +City Hotel,0,248,2017,October,41,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Contract,106.36,0,0,Check-Out,Bonnie Foster,jenniferfernandez@example.net,001-208-615-9904x257,340633612765328,2024-11-27 +Resort Hotel,1,145,2017,June,25,20,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,163.0,179.0,0,Transient,130.59,0,0,Canceled,Marissa Green,andrew90@example.net,001-852-234-1810,2225695292439918,2025-07-21 +Resort Hotel,0,54,2017,December,49,8,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,175.0,179.0,75,Transient-Party,104.43,0,0,Check-Out,Kyle Lewis,morenobrenda@example.com,+1-863-785-9983x370,4188705066898628,2026-03-11 +City Hotel,0,109,2017,June,24,13,1,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,81.57,0,0,Check-Out,Danny Owens,nguyenjack@example.org,6985260751,2289029183958765,2024-11-20 +Resort Hotel,0,35,2017,April,15,12,2,6,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.23,0,2,Check-Out,Brian Hayden,riggsrobert@example.net,(936)753-7787x2977,213127796352130,2025-10-09 +City Hotel,0,41,2017,April,17,20,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,171.64,0,1,Check-Out,Stephen Marsh,stacyhardin@example.net,001-565-805-7691,341020372552857,2025-10-06 +Resort Hotel,0,153,2017,June,23,4,4,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,241.47,0,2,Check-Out,Antonio Hernandez,shepparddavid@example.org,+1-372-274-6494x34954,3563823553539477,2024-06-13 +Resort Hotel,0,19,2017,December,52,27,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,26.0,179.0,0,Transient,106.65,0,0,Check-Out,Ms. Jessica Bryant,christopher58@example.org,(474)210-0551x4652,5540965545249955,2024-08-16 +City Hotel,1,3,2017,April,17,23,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,152.15,0,1,Canceled,Jacob Williams,thomasgarcia@example.com,001-323-562-2689x6027,30427130105744,2025-04-04 +City Hotel,0,49,2017,April,17,23,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,131.52,0,1,Check-Out,Mark Davis,suzanne78@example.com,+1-779-743-0482,6011780371689739,2024-08-31 +City Hotel,0,1,2017,November,45,9,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.07,0,0,Check-Out,Hannah Raymond,kaylaolson@example.org,+1-715-596-0992,6011646680471004,2025-08-02 +Resort Hotel,1,144,2017,August,31,5,1,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,217.26,0,0,Canceled,Gerald Brooks,chendanielle@example.net,+1-615-690-2000,676196616806,2024-06-26 +City Hotel,0,1,2017,May,19,6,0,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,131.9,1,1,Check-Out,Danny Koch,rebeccachristian@example.com,(379)589-3439,213103794453758,2025-06-15 +Resort Hotel,1,82,2017,February,8,21,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,135.0,179.0,0,Group,44.6,0,1,Canceled,Amber Miller,sarah20@example.net,772.958.2285x30928,4745153535532187,2026-02-13 +Resort Hotel,0,16,2017,November,47,20,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,129.7,1,0,Check-Out,Cody Lopez,edwardsmichele@example.org,(557)975-3728x6893,4280712750869995,2024-08-22 +City Hotel,0,155,2017,March,12,17,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.1,0,2,Check-Out,Justin Parrish,dclark@example.org,454-851-9128x587,4690280264198230,2025-02-26 +City Hotel,1,94,2017,February,7,10,0,2,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,12.0,238.0,0,Transient,62.01,0,0,Check-Out,Jay Mckinney,jenniferfarrell@example.com,8689497283,2353128845554441,2025-02-14 +City Hotel,0,14,2017,June,25,17,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.68,0,0,Check-Out,Scott Powers,deborah53@example.com,001-229-784-8407x018,4680897874460320,2024-07-14 +City Hotel,0,2,2017,August,34,25,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,B,0,No Deposit,12.0,179.0,0,Transient,110.76,0,2,Check-Out,Amber Ramirez,erik05@example.net,650-986-7619x3206,213141132775813,2024-04-26 +City Hotel,0,265,2017,May,20,17,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,74.15,1,0,Check-Out,Joshua Smith,ashleybrooks@example.com,888.326.4763,561352359815,2026-03-03 +Resort Hotel,0,6,2017,March,14,30,0,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,126.75,1,1,Check-Out,William Mcbride,william47@example.org,300-365-1694x1714,2246631468053816,2025-02-10 +City Hotel,0,4,2017,March,13,31,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,E,0,No Deposit,14.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Angela Colon,moniqueweaver@example.net,(836)550-5354,3582098159352370,2025-09-20 +City Hotel,0,383,2017,May,21,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.96,0,2,Check-Out,Jack Martinez,brandonsilva@example.net,(334)404-3986,3584518047195168,2024-09-06 +City Hotel,0,113,2017,August,32,10,1,1,3,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.28,0,2,Check-Out,Derek Stevens,lward@example.com,688.952.0251x8641,060404675708,2025-06-29 +City Hotel,0,17,2017,June,24,9,0,3,1,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,132.76,1,0,Check-Out,Paula Hull,andersonkim@example.net,(311)691-7544,6561489605841199,2024-04-20 +City Hotel,0,35,2017,April,15,9,2,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,231.24,0,3,Check-Out,Pamela Cox,lcarson@example.net,631-897-6774,6554544565688078,2024-08-14 +City Hotel,0,166,2017,March,10,7,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,224.0,0,Transient-Party,63.06,0,0,Check-Out,Felicia Anderson,laurawilliams@example.org,286.681.6877x33556,4363468574247,2025-06-14 +Resort Hotel,0,299,2017,July,31,30,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,92.0,179.0,0,Transient-Party,85.39,0,0,Check-Out,Christopher Jensen,kelly00@example.org,918-976-4807x9545,5434014591133752,2024-06-21 +City Hotel,1,1,2017,May,20,18,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,Non Refund,15.0,331.0,0,Transient,0.5099000000000001,0,0,Canceled,Tyler Pham,petersontyler@example.org,361.674.3670x554,3541949232676724,2024-10-30 +City Hotel,1,9,2017,July,31,27,2,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,165.54,0,2,Canceled,Steven Gordon,juarezraymond@example.com,350-367-9830,3512838496264928,2025-06-09 +Resort Hotel,1,37,2017,November,48,26,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,94.79,0,0,Canceled,Erik Dillon,diane13@example.org,001-842-333-5780x1251,4214193434500325,2025-02-19 +City Hotel,1,40,2017,September,38,19,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,1.0,179.0,0,Transient-Party,94.17,0,1,Check-Out,Karen Prince,wesley03@example.org,989.506.1489,3576201984040727,2024-07-10 +City Hotel,1,54,2017,September,36,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,110.22,0,0,Canceled,Becky Williams,davidmoss@example.org,636.634.6280x316,4686466144005,2025-12-18 +City Hotel,0,1,2017,June,24,14,2,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,138.41,0,1,Check-Out,Kurt Hernandez,iwashington@example.org,(851)513-3162,4297213303545472,2024-12-26 +City Hotel,0,14,2017,February,8,24,1,0,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.88,0,1,Check-Out,Brenda Morales,porterroberta@example.net,(279)903-3041,2225942032937508,2025-06-22 +Resort Hotel,0,155,2017,July,30,27,2,2,2,2.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient-Party,211.68,0,0,Check-Out,Donna Lara,elizabeth51@example.com,(848)918-1643x798,4874112366046,2024-06-23 +Resort Hotel,0,158,2017,August,31,5,2,1,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient-Party,77.18,0,0,Check-Out,Joe Campbell,patriciagarcia@example.net,5966106635,3559761818589596,2024-07-04 +Resort Hotel,0,15,2017,March,13,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,239.0,179.0,0,Transient,114.9,0,3,Check-Out,Vincent Moore,stephanie56@example.net,001-279-996-3809x0400,30405319767492,2026-02-27 +Resort Hotel,0,10,2017,December,48,2,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,62.92,1,2,Check-Out,Bradley Martinez,courtney23@example.org,(767)629-5690,4550620185292776951,2025-09-29 +City Hotel,0,51,2017,September,36,4,2,4,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,212.97,0,0,Check-Out,Robert White,jessica54@example.com,419-667-7139x4671,3575522148660634,2024-08-19 +Resort Hotel,0,138,2017,July,27,4,2,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,252.0,0,2,Check-Out,Gregory Chase,christopher91@example.org,(783)504-2259x1210,4101801580505332019,2026-02-06 +City Hotel,1,7,2017,July,31,30,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,166.46,0,1,Canceled,Dakota Miller,krista54@example.org,(930)973-8226,30201184103081,2024-04-23 +City Hotel,1,387,2017,May,19,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,79.1,0,0,Canceled,Henry Dixon,scottmorales@example.net,+1-604-715-2168x8805,6011012671561875,2024-09-17 +City Hotel,0,17,2017,January,3,13,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,105.11,0,1,Check-Out,Charles Chavez,douglasparker@example.net,618-302-0735x9679,344036585397556,2024-10-26 +City Hotel,0,170,2017,June,26,27,0,6,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.28,0,2,Check-Out,Chase Bryant,samanthagomez@example.net,754-940-3711,4815237213854636,2025-08-09 +Resort Hotel,0,145,2017,August,32,4,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,105.81,0,1,Check-Out,Anthony Allen,daniel17@example.com,+1-615-885-6146x559,4288230467711117952,2025-07-02 +Resort Hotel,1,41,2017,December,2,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,67.14,0,0,Canceled,Kara Brown,martinezryan@example.org,+1-390-251-1230,348200719653781,2024-03-27 +Resort Hotel,1,214,2017,July,30,29,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,234.07,0,0,Canceled,Ernest Smith,ugould@example.com,206-511-2994x763,378171099473665,2025-06-25 +City Hotel,0,104,2017,March,11,14,1,1,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,4.33,0,0,Check-Out,Heather Goodman,victordodson@example.net,(380)245-6157,3552754382828109,2024-06-09 +City Hotel,0,45,2017,September,38,19,2,2,1,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,115.63,0,3,Check-Out,Melinda Kim,spencerthomas@example.net,5493434379,180002897979496,2025-03-14 +Resort Hotel,0,47,2017,March,13,25,2,4,2,0.0,0,FB,DEU,Groups,TA/TO,0,0,0,A,E,0,No Deposit,176.0,179.0,0,Transient,74.77,1,0,Check-Out,Mr. Aaron Ford,wpearson@example.net,(580)211-5119x598,4796342419487,2024-11-12 +City Hotel,0,6,2017,January,4,26,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,B,0,No Deposit,3.0,179.0,0,Transient-Party,63.33,1,0,Check-Out,Benjamin Thompson,gabrielle84@example.net,790.803.8547x9499,4244939698908,2025-09-15 +Resort Hotel,1,160,2017,May,18,2,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,83.6,0,0,Canceled,Anna Reyes,mistygray@example.com,001-935-858-3491x684,30546314494069,2024-05-08 +Resort Hotel,1,323,2017,January,2,14,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,0,Non Refund,73.0,179.0,0,Transient-Party,42.25,0,0,Canceled,Linda Patrick,ccarr@example.org,961-962-1786x297,375038149987395,2025-11-18 +City Hotel,1,21,2017,October,42,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,160.64,0,0,Canceled,Holly Flynn,atorres@example.net,(747)219-7183x752,346673228509821,2024-11-25 +City Hotel,0,13,2017,September,36,8,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,166.98,0,0,Check-Out,Crystal Horton,bpetersen@example.org,+1-341-821-7202,3535205238091667,2024-06-16 +Resort Hotel,0,0,2017,January,2,2,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,18.0,179.0,0,Transient,54.77,0,1,Check-Out,Mark Wood,johnbautista@example.org,999-332-9800x771,4142125405739562,2024-04-26 +City Hotel,1,16,2017,December,52,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,92.91,0,0,Canceled,Morgan Haynes,vlarson@example.org,(754)868-0946x6331,4376680799752968150,2024-07-21 +City Hotel,0,7,2017,November,46,13,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Group,113.94,0,1,Check-Out,Shelby Barnes,james91@example.com,001-260-706-6127x345,2719169360175849,2024-04-29 +City Hotel,0,138,2017,October,43,25,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,24.0,179.0,0,Transient,120.23,0,0,Check-Out,Anthony Ramos,jwinters@example.net,(279)755-4236x626,4197965515952689891,2024-07-28 +Resort Hotel,0,224,2017,August,33,19,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,45.54,0,0,Check-Out,Charles Rodriguez,aorozco@example.org,891.379.7913,180062449850678,2025-12-29 +Resort Hotel,0,23,2017,July,27,5,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Canceled,Amanda Nelson,cathyburton@example.org,+1-848-545-7521x9136,213124146025110,2025-07-05 +City Hotel,1,161,2017,March,11,12,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,48.69,0,1,Canceled,Derek Brady,bweaver@example.org,(712)294-3895,676337850926,2025-03-09 +City Hotel,1,31,2017,April,14,3,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,107.18,0,2,Canceled,Lori Sutton,butlerjohn@example.com,436.742.9246x78118,370144262527854,2025-12-18 +City Hotel,1,190,2017,May,21,24,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,144.0,179.0,0,Transient,65.65,0,0,Canceled,Laura Thomas,joseph69@example.org,001-859-563-7105x585,4346217368543356,2024-10-03 +Resort Hotel,0,3,2017,March,10,4,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient,46.1,1,0,Check-Out,Benjamin Hampton,dianejones@example.org,252.656.7427,3514635457090773,2026-03-21 +City Hotel,0,115,2017,May,21,20,1,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,172.71,0,1,Check-Out,Erica Torres,bakerjessica@example.com,579.388.2438,4658202831550352202,2024-09-20 +Resort Hotel,1,143,2017,April,14,1,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,44.54,0,0,No-Show,Peggy Garcia,hurleyandrew@example.com,(253)776-9808x485,3557010181884552,2024-10-19 +City Hotel,1,54,2017,April,15,7,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,63.28,0,1,Canceled,Cheryl Myers,rebecca38@example.org,(681)465-8056x019,373460177867434,2024-09-14 +City Hotel,0,0,2017,November,46,16,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,225.0,0,Transient-Party,108.82,0,2,Check-Out,David Hooper,sdavis@example.net,217.932.6707x39464,3594170165330967,2024-07-18 +City Hotel,0,62,2017,April,14,3,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,138.93,0,1,Check-Out,David Stewart,robinsonsteve@example.com,(742)549-8801,30535947436928,2025-07-14 +Resort Hotel,1,135,2017,June,24,13,4,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,104.32,0,1,Canceled,Isabella Turner,simpsonjulia@example.org,001-872-688-5732x747,2298973519154764,2024-08-12 +City Hotel,1,188,2017,June,24,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,112.0,0,0,Canceled,Seth Smith,michelle37@example.com,8089129649,30469577202063,2024-05-10 +Resort Hotel,0,14,2017,October,41,9,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,53.6,0,0,Check-Out,Stephanie Wilson,qreed@example.net,+1-241-860-3766x560,676298235356,2024-05-23 +City Hotel,0,114,2017,May,19,4,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,125.0,0,1,Check-Out,Deborah Hayes,marcrocha@example.com,(822)962-3270,4669790603392473,2025-07-11 +City Hotel,0,2,2017,August,35,27,2,1,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,181.73,1,1,Check-Out,Mark Thomas,watsonbrian@example.org,565-297-0198x656,30200385125133,2025-12-11 +Resort Hotel,0,2,2017,October,44,29,0,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,103.15,0,3,Check-Out,Alexandra Levy,andrew53@example.net,612.336.0669,4491341756983199,2026-01-03 +City Hotel,1,24,2017,August,34,21,2,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,62.72,0,0,No-Show,Antonio Fuentes,meredith33@example.net,001-371-874-5658x31877,4544203212386810484,2024-08-16 +Resort Hotel,1,48,2017,May,22,30,1,2,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,218.4,1,0,Check-Out,Michael Dean,david94@example.net,372-762-4254x309,676117416302,2025-07-16 +Resort Hotel,0,9,2017,July,29,13,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,141.0,179.0,0,Transient-Party,103.63,0,2,Check-Out,Melanie Ballard,stacy37@example.net,745-541-6182,5445823855119092,2025-02-12 +Resort Hotel,0,2,2017,April,14,5,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,48.4,0,0,Check-Out,Tami Burton,stevenslinda@example.org,912.547.7789x96882,3562268997492969,2026-03-20 +City Hotel,1,63,2017,June,24,9,2,4,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.97,0,1,Canceled,Julie Cole,crystal98@example.com,(996)237-1873x49662,3559168896187667,2024-05-13 +Resort Hotel,0,3,2017,January,2,5,1,1,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,53.45,0,1,Check-Out,Kimberly James,kelsey73@example.org,(890)981-3266,3569383190042215,2025-11-20 +City Hotel,0,14,2017,January,2,6,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.68,1,2,Check-Out,James Wallace,kfloyd@example.net,001-269-325-9227x48220,4936614095983,2026-01-31 +City Hotel,1,44,2017,March,13,26,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient,110.56,0,0,Canceled,Larry Snyder,katherine47@example.com,001-816-456-5581,3599797075112104,2025-06-23 +Resort Hotel,0,34,2017,October,44,30,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,78.97,0,2,Check-Out,Tracy Schroeder,craigthompson@example.com,634-939-6684,30301045359490,2025-06-26 +Resort Hotel,0,20,2017,October,43,24,1,3,2,0.0,0,BB,IRL,Online TA,GDS,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,112.84,0,2,Check-Out,Phillip Jones,vhanna@example.org,475.932.3890x2335,36982129798887,2025-01-10 +Resort Hotel,0,154,2017,March,10,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,80.29,0,1,Check-Out,Gregory Cox,adavis@example.org,(240)799-8473,675981468027,2026-03-05 +City Hotel,1,168,2017,September,39,25,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,133.4,0,2,Canceled,Angela Gray,christiancarolyn@example.org,512.376.8706x075,5206283400472521,2025-05-25 +City Hotel,0,0,2017,March,11,14,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,80.0,179.0,0,Transient,75.23,0,0,Check-Out,Chelsea Love,hortonjoe@example.org,+1-694-751-8819,4193685548181,2025-01-05 +City Hotel,0,14,2017,March,11,12,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,0.99,0,1,Check-Out,Kevin Carney,brandonwarren@example.org,913-238-5684,2239339995872166,2024-08-14 +City Hotel,0,19,2017,April,14,6,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,101.44,0,2,Check-Out,Mason Johnson,taylorpatrick@example.net,001-969-291-2359x096,3537183573381068,2025-08-02 +City Hotel,0,1,2017,August,33,11,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.28,0,0,Check-Out,Ruth Sharp,patelgary@example.com,255-635-7680,4790093139384755,2025-11-09 +City Hotel,0,265,2017,August,32,9,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,85.99,0,0,Check-Out,Gregory Love,cgomez@example.net,679-397-7118x651,349840303397185,2024-06-15 +Resort Hotel,0,128,2017,July,28,8,3,6,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,236.33,0,0,Check-Out,Tanya Berg,delgadonicole@example.org,540.541.6888x729,371386493733756,2026-03-18 +Resort Hotel,0,90,2017,July,27,2,2,4,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.42,0,1,Check-Out,Veronica Cook,jennysmith@example.net,001-666-753-8057x69199,6011693400269920,2026-02-11 +City Hotel,0,1,2017,October,42,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,48.04,1,0,Check-Out,Ryan Mcdonald,osbornlisa@example.org,+1-906-437-3266x59570,30540318158564,2025-08-11 +City Hotel,1,274,2017,April,17,25,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,1,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,112.44,0,0,Canceled,Sarah Mooney,barbara56@example.com,+1-708-234-2941x29036,3574357243369141,2025-09-22 +City Hotel,0,5,2017,September,37,11,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,B,0,No Deposit,13.0,45.0,0,Transient,3.98,0,1,Check-Out,Adriana Green,ravery@example.net,(891)632-9856x6569,5317739127806271,2025-11-18 +Resort Hotel,1,194,2017,May,22,26,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,106.55,0,0,Canceled,Adam Medina,joeedwards@example.org,703-596-6602x48412,3568139418098814,2025-10-07 +Resort Hotel,0,1,2017,March,13,27,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Group,63.08,1,1,Check-Out,Jessica Delgado,ambernicholson@example.org,6664094543,180010536366694,2024-11-14 +Resort Hotel,1,55,2017,April,17,28,2,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,237.0,179.0,0,Transient,86.58,0,1,Canceled,Joanna Carpenter,wesleyscott@example.net,(221)579-8872,30336700274642,2024-04-04 +City Hotel,1,12,2017,May,21,20,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,40,Transient,108.87,0,0,Canceled,Jennifer Wolf,greencory@example.org,638-240-9678,4194187356040551598,2025-01-31 +City Hotel,1,304,2017,June,26,22,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.14,0,0,Canceled,Sandra Sandoval,susan69@example.com,(726)451-5986,4842804684491120952,2024-07-13 +Resort Hotel,1,192,2017,August,34,22,2,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,9.0,179.0,0,Transient,210.6,0,1,Canceled,Sabrina Brown,hunterdaniel@example.com,(699)241-5826x61711,6011188925641315,2024-05-03 +City Hotel,1,258,2017,September,37,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.6,0,0,Canceled,Kayla Grimes,melissathornton@example.com,+1-384-470-7358x6299,343566825152057,2024-05-11 +City Hotel,0,14,2017,June,26,28,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,80.68,0,1,Check-Out,Allison Obrien,jake09@example.org,633-427-5233,6511311011059698,2024-06-02 +City Hotel,0,100,2017,July,30,23,0,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,143.07,0,2,Check-Out,Connie Roberson,samueledwards@example.com,(469)758-6237,4331360214725762971,2025-11-16 +Resort Hotel,0,11,2017,December,49,2,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,222.51,0,2,Check-Out,Andrea Ramirez,gardnerkelly@example.org,001-580-564-5198x2483,630484184050,2024-06-07 +City Hotel,1,397,2017,June,24,15,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,79.75,0,0,Canceled,Robin Jones,katherinedaniels@example.org,429.475.6342,6011340032303814,2024-06-07 +City Hotel,0,95,2017,April,15,9,2,1,2,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,94.68,1,2,Check-Out,Anthony Gonzalez,wangjessica@example.net,001-726-666-4797,3532161951283689,2024-04-19 +Resort Hotel,0,93,2017,March,11,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,101.59,0,3,Check-Out,Michael Estrada,lori25@example.net,6899871155,4638874359391802,2025-05-01 +City Hotel,0,110,2017,February,6,5,1,2,1,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,G,L,0,No Deposit,11.0,179.0,0,Transient,58.99,0,1,Check-Out,Haley Anthony,joseph45@example.com,575.269.7079,4218463509616,2025-02-14 +Resort Hotel,1,74,2017,June,24,9,1,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,252.0,0,0,Canceled,Melissa Murray,christopherwilliams@example.com,(524)787-5507x37138,4519991454319118,2025-01-27 +City Hotel,0,49,2017,August,32,5,0,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,6.0,179.0,0,Transient,241.89,0,1,Check-Out,Sarah Glover,masonwilliam@example.org,3573467228,3501674087050340,2025-12-13 +Resort Hotel,0,93,2017,September,36,8,2,5,2,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,278.0,179.0,0,Transient,80.06,0,2,Check-Out,Michael Marshall,jonathan48@example.com,+1-952-850-2771,6011308349719931,2024-06-29 +Resort Hotel,0,36,2017,December,50,9,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,140.47,0,1,Check-Out,Katie Ibarra,petersensteven@example.com,001-354-321-1479x571,4585089632935679134,2024-05-13 +City Hotel,1,189,2017,September,36,3,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,104.63,0,0,Canceled,Justin Simmons,rhonda59@example.org,593.968.2032x92801,2237999020127068,2025-02-10 +City Hotel,0,48,2017,March,12,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,94.16,0,1,Check-Out,Nancy Kerr,ariley@example.net,+1-886-574-5522x133,3534571582873344,2025-07-01 +City Hotel,0,100,2017,April,17,26,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,B,1,No Deposit,16.0,221.0,0,Transient-Party,117.11,0,0,Check-Out,Alfred Henry,craig14@example.com,322.966.2053x994,213154407894896,2025-08-04 +City Hotel,0,0,2017,January,2,2,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,39.82,0,0,Check-Out,Evan Wheeler,jenningslance@example.com,928-293-1365x0330,3514331185328657,2026-02-10 +City Hotel,0,140,2017,February,8,21,2,5,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,B,2,No Deposit,10.0,179.0,0,Transient,136.05,0,0,Check-Out,Robert Jennings,nancyhoward@example.org,887-419-7164,3508590653927278,2025-01-21 +City Hotel,0,20,2017,September,39,26,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,138.84,0,1,Check-Out,Ruth Hernandez MD,brianna30@example.org,866.627.7657,4386849271984274382,2025-05-27 +City Hotel,1,191,2017,September,36,7,2,4,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.89,0,1,Canceled,Sarah Maddox,singhsusan@example.net,615-609-7000x14407,4273939945924356,2025-05-06 +City Hotel,0,28,2017,November,44,3,2,1,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,100.35,0,0,Check-Out,David Pennington,zcook@example.net,537.318.5781x3461,3548102923152851,2024-12-13 +City Hotel,0,12,2017,March,11,13,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,48.62,0,0,Check-Out,Taylor Bates,katrina55@example.net,7469149439,38825905547028,2025-08-18 +Resort Hotel,0,72,2017,January,2,3,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,46.55,0,2,Check-Out,Monica Patton,shannonhall@example.com,(629)273-7023x018,503894419939,2025-12-22 +City Hotel,1,183,2017,June,25,23,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,105.76,0,0,Canceled,Heather Williams,jeffreyfields@example.net,+1-360-639-7764x85561,6011822240857244,2025-01-25 +Resort Hotel,0,111,2017,November,47,18,2,7,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,44.33,0,0,Check-Out,Jeff Burgess,whitejennifer@example.org,630-659-8149x24537,347336925022022,2026-02-10 +City Hotel,0,17,2017,June,23,4,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,131.17,0,0,Check-Out,Miranda Perry,ryanhoward@example.net,465-307-6654x31657,4610480113146490,2025-04-20 +City Hotel,1,23,2017,January,2,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.12,0,0,Canceled,Jack Martinez,victoria63@example.com,+1-864-283-9366x270,4339259887055933,2025-07-26 +Resort Hotel,0,39,2017,July,28,8,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient-Party,202.34,1,0,Check-Out,Brian Acosta,lcastillo@example.com,493-942-2380x047,3501622698314308,2026-01-21 +City Hotel,0,1,2017,November,44,2,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,156.38,0,0,Check-Out,Jerry Baird,fjones@example.org,226-545-5353x4273,30001696503764,2026-01-14 +Resort Hotel,1,105,2017,June,23,6,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,48.25,0,1,Canceled,Mr. James Mercer DVM,jonesdwayne@example.net,001-974-807-9043x2762,4665547488870,2025-06-25 +Resort Hotel,0,142,2017,June,25,20,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,179.0,179.0,0,Transient,82.76,0,0,Check-Out,Theresa Pena,sandra87@example.net,473-567-0307x79602,30215409524400,2025-07-31 +City Hotel,1,15,2017,August,34,23,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.45,0,1,Canceled,Joshua Watson,andrewolson@example.net,714-838-5195x25159,676111922867,2025-12-06 +City Hotel,1,96,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,42,Transient,80.88,0,0,Canceled,Leslie Walton,thomasosborne@example.com,(967)897-2063x778,213156381491706,2025-04-07 +Resort Hotel,1,89,2017,December,50,10,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,50.51,0,0,No-Show,Charles Johnson,johnsonjacob@example.com,001-498-600-8998x07555,4177863554760744,2026-01-30 +City Hotel,0,59,2017,June,23,2,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,7.0,179.0,0,Transient,171.16,0,1,Check-Out,Curtis Terry,ffritz@example.com,001-962-695-1988x61391,30171837410607,2025-05-08 +City Hotel,0,41,2017,March,13,23,1,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,D,0,No Deposit,12.0,179.0,0,Transient,125.3,1,1,Check-Out,Jessica Lane,patriciamorales@example.net,(951)744-6149,675921894266,2024-10-16 +City Hotel,0,0,2017,July,31,29,1,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,2.88,0,1,Canceled,Robert Rodriguez,cdecker@example.net,(937)262-4575x59785,676343136237,2024-07-15 +City Hotel,0,2,2017,August,32,6,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,77.62,0,1,Check-Out,Jason Richards,dustinrogers@example.org,001-515-321-0465,676392416597,2025-09-15 +Resort Hotel,0,50,2017,March,13,24,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,166.9,1,1,Check-Out,Jacob Gregory,dvasquez@example.net,(650)466-0512,213159070791071,2025-10-27 +City Hotel,0,5,2017,October,42,16,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.63,0,2,Check-Out,Billy Duran,michaelhaley@example.com,247.699.9820,4990421596295,2025-07-07 +City Hotel,1,264,2017,September,38,17,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,B,0,No Deposit,2.0,179.0,0,Contract,62.19,0,0,Canceled,Daniel Flores,kevinflores@example.net,(783)692-1751x298,4619213918819,2024-10-16 +Resort Hotel,0,8,2017,November,46,12,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,82.64,0,1,Check-Out,Casey Yates,sandersjessica@example.net,688-950-6201,3500136397818635,2024-03-29 +Resort Hotel,0,39,2017,December,49,4,2,6,2,0.0,0,Undefined,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,28.0,179.0,0,Transient-Party,100.3,0,0,Check-Out,Karen Hall,pmartin@example.com,999-911-9638x943,4867303343398691,2024-07-02 +City Hotel,1,255,2017,September,38,17,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,1.0,179.0,0,Transient,86.18,0,0,Canceled,Gary Henderson,romerokristine@example.com,(723)482-3692x817,180088854342786,2024-12-26 +City Hotel,1,50,2017,May,21,18,2,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.87,0,1,Canceled,Chad Lowe,aliciahudson@example.com,960.397.3736,4967812680821361,2025-05-29 +City Hotel,0,14,2017,December,2,31,2,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,122.79,0,2,Check-Out,Tina King,hlawrence@example.com,001-705-562-1011x865,4176248914743138,2025-04-12 +Resort Hotel,1,31,2017,July,28,11,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,244.0,179.0,0,Transient,115.92,1,2,Canceled,Ashley Hansen,carolyn06@example.com,001-276-845-6683x918,3525343567961549,2024-05-13 +Resort Hotel,1,3,2017,July,30,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,252.0,1,1,Canceled,Scott Lawrence,michelefloyd@example.com,+1-606-425-5252x294,3542059887821432,2024-06-24 +Resort Hotel,0,3,2017,August,33,12,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,D,D,0,No Deposit,11.0,179.0,0,Group,58.27,0,1,No-Show,Jacob Hayes,qgarcia@example.net,+1-510-499-1103x67041,4124514262306,2024-05-09 +Resort Hotel,0,298,2017,September,37,12,2,4,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,108.68,0,0,Check-Out,Carmen Anderson,dylansmith@example.net,640-919-2931,4407340128464,2026-03-04 +City Hotel,0,28,2017,May,21,20,1,1,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.72,0,0,Check-Out,Angela Newman,sandrabrown@example.net,4818330231,30062365541915,2024-12-18 +Resort Hotel,0,13,2017,December,52,26,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,51.9,0,0,Check-Out,Gabriela Cantu,gmiller@example.org,+1-482-350-2957,30170108617486,2024-10-17 +City Hotel,0,2,2017,January,2,6,0,1,1,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,113.29,0,1,Check-Out,Latoya Hill,kennedypatricia@example.com,+1-356-828-4433x7085,3557278246664398,2025-10-06 +City Hotel,0,153,2017,March,13,25,2,3,2,1.0,0,BB,RUS,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,222.91,0,1,Check-Out,Sarah Brooks,elizabeth76@example.net,614-658-6156x994,4099202803233,2025-11-22 +City Hotel,1,22,2017,March,13,28,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,227.37,0,1,Canceled,Mariah Stewart,alexanderwerner@example.com,(943)326-6642x91919,2459153763363933,2025-02-24 +City Hotel,1,106,2017,August,34,23,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.59,0,0,Canceled,Melissa Simpson,johnsonkevin@example.org,800-559-6269,4026178773396417,2024-07-25 +Resort Hotel,0,56,2017,May,21,20,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,85.98,0,0,Check-Out,Dr. Blake Turner,millerkenneth@example.net,555-976-1096,2248702386312804,2025-02-20 +City Hotel,0,228,2017,October,42,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,64,Transient,87.12,0,0,Check-Out,Calvin Turner,mcbridecrystal@example.net,957-449-1635,213153666796081,2026-01-15 +Resort Hotel,0,42,2017,December,49,8,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,2,No Deposit,241.0,179.0,0,Transient,77.18,0,0,Check-Out,Francisco Bailey,hmckenzie@example.org,972.557.8659,676176683388,2024-10-27 +City Hotel,1,166,2017,August,33,15,0,2,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,135.32,0,0,Canceled,Melissa Jones,brianamckinney@example.com,496.592.6188,501811269601,2025-05-24 +City Hotel,0,11,2017,July,27,5,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,143.46,0,1,Check-Out,Guy Vincent,hendersonkimberly@example.net,(876)713-5735,2236250336346765,2024-07-29 +City Hotel,1,58,2017,October,41,10,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,48.29,0,0,Canceled,Wayne Moore,crystalnelson@example.org,321-244-7651,4125907934096474825,2025-05-08 +Resort Hotel,0,20,2017,October,41,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Contract,47.66,0,0,Check-Out,Kaylee Quinn,sara30@example.org,+1-605-811-4037x366,676329598608,2024-05-01 +City Hotel,0,1,2017,December,51,16,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,129.42,0,1,Check-Out,Kevin Bond,ywallace@example.org,520.429.6477x651,30106401672315,2025-03-09 +City Hotel,1,57,2017,June,25,21,1,7,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.59,0,1,Canceled,Harold Butler,pauljohnson@example.com,683-951-5290x383,4628207992805015,2025-11-30 +City Hotel,1,2,2017,January,2,1,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,62.25,0,0,Canceled,Dawn Gonzalez,kelly63@example.org,(771)524-6049,3510863728580638,2025-11-25 +Resort Hotel,1,206,2017,October,42,17,1,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,30.0,179.0,0,Transient,77.81,0,0,Canceled,Joshua Wu,lauramurphy@example.net,001-579-765-9959x7150,5264738444505965,2025-03-06 +City Hotel,1,284,2017,October,41,10,1,3,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,160.0,179.0,44,Transient,111.13,0,0,No-Show,Vanessa Drake,stephanie11@example.net,+1-695-273-1861x246,374134011813313,2024-10-15 +Resort Hotel,0,88,2017,March,10,8,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,74.67,0,0,Check-Out,Erika Ross,njackson@example.org,001-270-500-0004x9378,2260377162454196,2025-03-22 +Resort Hotel,1,144,2017,May,21,20,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,149.68,1,0,Canceled,Crystal Livingston,scontreras@example.com,256-723-3187x25401,376604825354801,2025-03-24 +City Hotel,0,102,2017,December,49,5,2,1,2,2.0,0,BB,NLD,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,227.71,0,0,Check-Out,Denise Pham,alexisvillarreal@example.net,372-672-5789x3474,4838510617675085,2024-10-08 +City Hotel,0,5,2017,October,41,9,0,3,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,14.0,284.0,0,Transient,1.36,0,2,Check-Out,Mitchell Smith,margaret94@example.net,+1-284-324-4661x91716,4125181965733,2025-04-27 +City Hotel,1,265,2017,May,20,17,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,313.0,179.0,0,Transient,131.2,0,0,Canceled,John Goodman,aclark@example.org,001-416-770-2526x74760,630484907245,2024-07-07 +City Hotel,0,187,2017,January,3,16,0,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,233.0,179.0,0,Transient,47.86,0,0,Check-Out,Marcus Bailey,dthomas@example.org,(631)481-0605,4902629595139426,2024-12-28 +City Hotel,1,81,2017,November,45,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,136.46,0,1,No-Show,Brittany Mccall,jdavis@example.com,(885)872-6396x946,3523965255958924,2024-05-23 +Resort Hotel,1,24,2017,March,10,5,2,2,1,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.05,0,0,Canceled,Samuel Marsh,sware@example.org,+1-401-647-9483,347018827928585,2024-10-12 +City Hotel,0,57,2017,January,3,16,0,2,2,2.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.08,0,1,Check-Out,Sherry Mendez,howard83@example.org,693-242-8647x1912,4276350807859663,2026-02-12 +City Hotel,0,24,2017,April,15,14,2,4,2,0.0,0,SC,FRA,Complementary,TA/TO,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Teresa May,wdavenport@example.net,(952)530-0660,2328862547063333,2025-04-20 +City Hotel,1,317,2017,July,30,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.52,0,0,Canceled,Christopher Abbott,castanedajustin@example.org,+1-943-203-4070x8712,180097589321361,2024-07-25 +Resort Hotel,1,139,2017,March,11,11,2,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,53.72,0,2,Canceled,Danielle West,kristinajimenez@example.com,+1-957-638-4966x4941,4661064007057287669,2025-04-02 +Resort Hotel,1,210,2017,June,24,15,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,308.0,179.0,0,Transient,105.74,0,0,Canceled,Christine Parker,perezjon@example.com,+1-249-977-6041x80911,503815328094,2024-05-14 +Resort Hotel,0,90,2017,January,3,18,1,0,2,1.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,194.52,0,0,Check-Out,Madison Garcia,jamesturner@example.com,470-691-0341x676,4499297809691,2025-01-20 +Resort Hotel,0,14,2017,August,32,10,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,221.06,0,1,Check-Out,Jonathan Wyatt,stephanie93@example.org,001-970-635-6222x5283,676274432563,2024-08-25 +Resort Hotel,1,137,2017,March,9,1,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,130.0,179.0,18,Transient,39.78,0,0,Canceled,Jacob Brown,carlosgraham@example.com,635-959-5236,30554330267113,2025-11-26 +City Hotel,1,37,2017,June,26,27,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.64,0,2,Canceled,William Jenkins,anthony38@example.org,(814)242-4209x26384,180039463035147,2026-02-08 +Resort Hotel,0,2,2017,February,7,13,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,45.56,0,1,Check-Out,Sherry Martin,stewarttyler@example.org,001-595-804-1283x45362,38413300124550,2024-09-17 +Resort Hotel,0,152,2017,March,13,30,1,2,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient,27.7,0,0,Check-Out,Ronnie Cook,browningbradley@example.com,626-980-1852,4836196728602929,2025-05-01 +Resort Hotel,0,88,2017,August,33,13,2,5,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,C,0,No Deposit,188.0,179.0,0,Transient-Party,50.97,0,0,Check-Out,Jason Martin,tpowell@example.org,(443)982-7175x2544,4998910304500396276,2026-02-14 +City Hotel,0,1,2017,December,49,5,0,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.41,0,0,Check-Out,Tonya Rivas,thowell@example.net,4714437526,3548673144061246,2026-03-27 +Resort Hotel,0,19,2017,May,19,6,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,C,2,No Deposit,241.0,179.0,0,Transient-Party,83.82,1,1,Check-Out,David Price,jessica88@example.org,(765)839-1442,4245655898846,2024-11-14 +City Hotel,0,11,2017,July,27,4,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.56,0,2,Check-Out,Carolyn Alvarado,ashley51@example.net,223.225.1755x41589,3513141453560738,2024-12-21 +Resort Hotel,1,262,2017,May,18,5,1,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,102.76,0,1,Canceled,April Copeland,cohenalexis@example.net,8618530211,3512298259841687,2025-06-11 +City Hotel,0,53,2017,May,18,1,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,131.38,0,2,Check-Out,Jeremy Estrada,wilsonerin@example.net,2534039978,373249062096948,2025-01-14 +Resort Hotel,1,414,2017,November,46,18,1,2,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,94.8,0,0,Canceled,James Gentry,brandonbean@example.net,+1-218-888-1944x88026,377850746903734,2025-11-15 +Resort Hotel,0,28,2017,August,35,30,0,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,H,0,No Deposit,241.0,179.0,0,Transient,224.41,0,1,Check-Out,Rebecca Howe,heatherrodriguez@example.org,325-200-2635x5580,2708579245420892,2024-10-09 +City Hotel,1,35,2017,August,33,13,2,5,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient-Party,135.13,0,0,Canceled,Deanna Jennings,julia74@example.com,918.283.4809,378260512938303,2024-11-26 +City Hotel,0,2,2017,July,27,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.21,0,0,Check-Out,Amber Williams,andrewoconnor@example.com,(665)431-1040x7416,3560199175980586,2024-12-12 +City Hotel,0,2,2017,August,33,11,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,83.82,0,1,Check-Out,Tammy Fox,amanda48@example.com,741-821-6172x7145,3515495753605777,2024-05-14 +Resort Hotel,0,0,2017,February,6,10,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient,46.49,0,0,Check-Out,Mrs. Laura Ayala,jessicawilson@example.net,+1-725-460-7237x10849,4997190336668492,2025-05-14 +City Hotel,1,6,2017,August,33,13,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,252.0,0,1,No-Show,Colton Anderson,osmith@example.org,395-611-5428x004,3514875013619232,2025-05-03 +City Hotel,0,3,2017,August,32,5,0,1,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,2.73,0,2,Check-Out,Phillip Miller,samantha58@example.com,001-769-774-2370x965,3540430707333084,2025-08-04 +Resort Hotel,0,25,2017,October,43,26,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,86.77,0,2,Check-Out,Thomas Martin,josephmorgan@example.net,+1-873-794-1467,2285106039061129,2024-10-09 +City Hotel,1,95,2017,July,29,20,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,1,Refundable,242.0,179.0,0,Transient,98.51,0,1,Canceled,Katherine Ross,janderson@example.org,513-338-5361x6764,3595364450970954,2024-04-19 +City Hotel,0,15,2017,January,3,13,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,49.44,0,1,Check-Out,Andrew Lawson,william14@example.net,+1-487-241-4728x094,5222577702570340,2026-02-09 +Resort Hotel,0,13,2017,December,51,17,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,89.59,0,1,Check-Out,Matthew Miller,harveyjennifer@example.com,(459)394-5955,584376950542,2024-10-03 +City Hotel,1,255,2017,July,31,29,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,130.3,0,2,Canceled,Susan Nelson,christian92@example.org,988-568-3196x8357,30172782757455,2025-05-22 +Resort Hotel,0,129,2017,March,11,9,2,5,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,I,1,No Deposit,16.0,179.0,75,Transient-Party,109.88,1,3,Check-Out,Michael Graham,michael15@example.net,894-431-8785,213153362100349,2025-07-13 +City Hotel,0,408,2017,October,42,18,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.22,0,0,Check-Out,Robert Taylor,wdavidson@example.org,(225)683-9431x751,370924037395665,2025-03-09 +City Hotel,0,14,2017,January,2,6,1,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,26.64,0,0,Check-Out,Todd Mcbride,sherrihall@example.net,001-432-212-6538x658,581550816556,2026-02-25 +City Hotel,1,4,2017,August,31,4,2,0,3,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,72.67,0,1,Canceled,Taylor Horton,brownrichard@example.com,585-685-8876x04090,4100691800430242694,2025-05-27 +City Hotel,0,54,2017,August,33,18,2,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,63.56,0,0,Check-Out,Kristen Gonzales,ryan78@example.net,001-258-573-3714x47143,3502860483232405,2024-11-01 +Resort Hotel,0,229,2017,November,47,24,2,5,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,48.64,0,2,Check-Out,Mary Acosta,zgomez@example.com,(330)870-6856x06712,2720347271725095,2026-02-24 +City Hotel,0,189,2017,September,36,4,2,7,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,156.9,0,0,Check-Out,Krystal Padilla,robinsondiane@example.org,537.701.4486x021,630459496026,2025-11-25 +City Hotel,1,63,2017,September,36,6,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.02,0,0,Canceled,Robert Watkins,tbrandt@example.org,(987)638-9718x2562,344731541820416,2025-05-30 +City Hotel,1,28,2017,December,50,12,2,4,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,123.32,0,1,Canceled,Robert Roy,ygutierrez@example.org,742-445-8021,3553245566812778,2025-07-18 +Resort Hotel,0,33,2017,October,43,26,2,7,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,248.0,179.0,0,Transient,105.82,1,0,Check-Out,Ashley Campbell,ncrosby@example.net,(401)712-2841,4003358896710,2025-11-18 +City Hotel,1,9,2017,January,2,12,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,127.79,0,1,Canceled,Susan Nelson,john06@example.net,001-565-664-9876x35920,4080401280461554,2024-05-25 +Resort Hotel,1,149,2017,March,11,9,1,3,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,239.02,0,0,Canceled,Brian Smith,shannon08@example.net,587.264.2542,3500159817595708,2024-11-18 +Resort Hotel,0,23,2017,December,52,24,2,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient-Party,45.32,0,0,Check-Out,Robert Ali,melissa58@example.net,+1-381-782-6563,2715778799708592,2026-02-15 +City Hotel,1,0,2017,June,27,30,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.5,0,1,Canceled,Jennifer Ray,dmercer@example.org,(331)537-4786x716,213188088040932,2024-04-20 +City Hotel,1,391,2017,July,28,10,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,88.14,0,0,Canceled,Bryan Bond,ocollins@example.com,+1-211-549-0070x1817,38787377566946,2025-06-22 +City Hotel,0,43,2017,December,50,15,0,3,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.71,0,1,Check-Out,Christian Bullock,thompsondominique@example.org,744.868.5043,3556744986729833,2024-08-28 +City Hotel,0,169,2017,August,33,14,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,100.25,0,0,Check-Out,Samantha Johnson,smithsandra@example.com,001-549-928-2474x97233,3599107791935541,2024-05-31 +City Hotel,0,2,2017,May,19,5,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,334.0,221.0,0,Transient-Party,50.05,0,0,Check-Out,Steve Hernandez,huertarichard@example.net,001-694-697-9774x4872,347882163724316,2024-06-11 +City Hotel,0,50,2017,September,39,24,2,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient,129.76,0,1,Check-Out,Katie Turner,vmorris@example.com,+1-801-672-7497x3123,30549978409225,2024-12-23 +City Hotel,0,78,2017,August,33,14,2,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.62,0,2,Check-Out,Luke Gordon,jessica92@example.org,(804)822-1955x8449,4349162837003235,2025-12-10 +City Hotel,0,0,2017,June,24,10,0,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,2,No Deposit,12.0,187.0,0,Transient,87.04,0,0,Check-Out,Jeanne Cox,bobbyhumphrey@example.net,001-507-345-6824x8277,4526100634674,2025-07-09 +City Hotel,0,15,2017,July,26,1,1,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Benjamin Daniels,jonathan16@example.net,737.407.1461,4437112391474986,2025-10-02 +Resort Hotel,1,154,2017,June,27,29,2,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,241.0,179.0,0,Transient,142.74,0,2,Canceled,Todd Greene,dnelson@example.com,+1-344-966-6027x1865,180070678214904,2025-07-14 +Resort Hotel,1,152,2017,July,27,5,2,5,2,2.0,0,HB,,Direct,Direct,0,0,0,G,G,2,No Deposit,247.0,179.0,0,Transient,230.09,0,3,Canceled,James Eaton,eblackwell@example.org,900-992-6198x51981,4981685889228857,2024-04-09 +City Hotel,1,291,2017,June,25,23,4,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,128.16,0,0,Canceled,Lawrence Garcia,waltonmichael@example.net,707-298-0873x1470,676139841370,2024-07-13 +City Hotel,0,48,2017,January,2,12,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,213.94,0,0,Check-Out,Tyler Benson,handerson@example.net,5719808249,4429635161091,2025-08-13 +Resort Hotel,0,157,2017,February,9,27,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient-Party,94.73,0,0,Check-Out,Whitney Levy,lorettawade@example.com,+1-434-647-2810,376925070879204,2026-01-04 +Resort Hotel,0,55,2017,November,45,5,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,59.0,0,Transient,72.38,0,0,Check-Out,Chase Wilson,jessicagomez@example.com,+1-531-708-6841x45916,4709291138893422772,2025-07-17 +City Hotel,0,52,2017,February,7,10,0,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,76.08,0,1,Check-Out,Stephanie Garcia,jharper@example.com,813.258.0043,4848411614447,2026-01-15 +City Hotel,0,28,2017,November,45,5,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,26.0,179.0,0,Transient-Party,103.59,0,0,Check-Out,Ernest Taylor,vhaley@example.org,(228)545-5952,4250327381031,2024-05-01 +City Hotel,1,1,2017,March,12,18,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.78,0,0,Canceled,James Rich,lorigray@example.org,309.825.0753x654,3504851775312144,2025-03-13 +Resort Hotel,0,16,2017,September,37,12,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,200.27,1,1,Check-Out,Stacy Young,hamiltoncrystal@example.org,+1-878-869-7602,4269045414033191898,2025-09-27 +City Hotel,0,52,2017,October,43,21,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,David Espinoza,welchjason@example.org,001-735-928-2994x0395,180056094753666,2025-03-08 +City Hotel,0,16,2017,July,28,8,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,136.09,0,2,Check-Out,Calvin Keith,hunterjackson@example.org,9705403878,180064219261318,2024-05-04 +City Hotel,1,100,2017,July,30,23,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,219.7,0,0,Canceled,Tammy Foster,fletchermatthew@example.net,001-962-891-2542x519,3530799202173290,2024-04-13 +City Hotel,1,324,2017,May,19,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,87.22,0,0,Canceled,Karen Miller,perezangela@example.com,619.243.9773x4020,348743116333788,2025-02-06 +City Hotel,1,7,2017,February,6,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,1,No Deposit,13.0,45.0,0,Transient,48.52,0,0,Canceled,Richard Smith,tnoble@example.com,001-664-973-8414x17464,3582959352854068,2026-01-19 +Resort Hotel,1,43,2017,December,49,5,1,6,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,76.61,0,0,Canceled,David Conley,kgarrison@example.net,+1-517-280-3432,4294416023385,2024-11-14 +City Hotel,0,43,2017,July,30,26,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.97,0,1,Check-Out,Dawn Allen,renee70@example.com,001-569-248-6479x783,6011495892912011,2025-08-15 +Resort Hotel,1,11,2017,July,31,30,2,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Canceled,Robert Li,greenesheila@example.net,(960)413-5125,3522438385557926,2025-04-14 +Resort Hotel,1,12,2017,May,20,16,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,319.0,179.0,0,Transient,107.12,0,0,Canceled,Allen Mejia,aperry@example.com,240-927-0335,4296461019183688755,2025-03-30 +City Hotel,0,1,2017,December,50,10,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.85,0,1,Check-Out,Monique Pearson,emilymaddox@example.org,3704282054,378890116762772,2024-04-06 +City Hotel,1,111,2017,March,11,9,0,3,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.18,0,1,Canceled,Mary Lawrence,djacobson@example.org,(864)276-7072x68820,4440086457412691381,2025-05-20 +Resort Hotel,0,64,2017,August,35,30,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,185.32,0,1,Check-Out,Margaret Browning,danawilliams@example.com,+1-593-551-2470x16486,30133531040429,2024-10-26 +Resort Hotel,0,144,2017,August,31,1,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,63.3,0,0,Check-Out,James Harrison,orozcodouglas@example.com,(354)623-3739,3552292175941953,2024-07-29 +City Hotel,0,12,2017,April,15,9,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,121.85,0,1,Check-Out,Joshua Walter,macdonaldkendra@example.com,385.255.0467x0489,2720250032572246,2024-12-25 +City Hotel,1,9,2017,May,20,17,0,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,16.0,195.0,0,Transient,122.2,0,0,Canceled,Katelyn Anderson,lisaferguson@example.net,(596)813-6110,4349945848601,2025-08-17 +City Hotel,0,15,2017,March,10,8,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Contract,62.21,0,1,Check-Out,Matthew White,yterry@example.com,(537)752-1015,6011377341856777,2025-01-02 +City Hotel,1,205,2017,August,34,17,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,252.0,0,2,Canceled,Michael Smith,mjones@example.org,697-629-9279,38498784644330,2025-09-10 +Resort Hotel,0,188,2017,May,18,3,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,249.0,179.0,0,Transient,139.95,1,1,Check-Out,Melissa Khan,gutierrezlisa@example.com,+1-704-360-5276x872,501835952653,2024-07-31 +Resort Hotel,0,47,2017,May,20,14,4,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,239.0,179.0,0,Transient,183.25,1,1,Check-Out,Benjamin Watts,jamesmoore@example.org,+1-210-655-2969x2292,4447239151843575120,2024-10-25 +City Hotel,1,0,2017,August,31,5,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,75.97,0,1,Canceled,Nicole Espinoza,piercedeborah@example.org,(722)307-6660,4766208893774401,2025-10-10 +City Hotel,0,56,2017,March,10,5,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,80.46,0,1,Check-Out,Thomas Campbell MD,icoleman@example.org,(464)623-7627,30334641560427,2025-12-25 +City Hotel,1,16,2017,January,3,17,0,1,1,0.0,0,SC,DEU,Online TA,GDS,0,1,0,A,A,0,No Deposit,173.0,179.0,0,Transient,83.46,0,1,Canceled,Haley White,tlucas@example.net,(387)208-1486x889,3565751851334267,2026-01-14 +City Hotel,0,26,2017,March,13,29,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,D,0,No Deposit,11.0,179.0,0,Transient,129.4,0,0,Canceled,Stephen Kim,vsmith@example.org,241-996-3754x38131,4522110984044220,2025-12-22 +City Hotel,0,149,2017,June,26,27,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,136.0,179.0,0,Transient-Party,112.18,0,1,Check-Out,Virginia Watkins,edwardlee@example.net,953.965.4176x698,3592315623998960,2025-11-26 +City Hotel,0,29,2017,August,32,4,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient-Party,242.74,0,1,Check-Out,Christopher Bolton,cbush@example.net,001-539-334-7545x73859,4188071256197408,2025-12-01 +City Hotel,0,1,2017,April,15,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,81.54,0,0,Check-Out,Nathaniel Molina,dixonjennifer@example.com,910-417-2891,4439851099101508164,2024-04-08 +Resort Hotel,0,1,2017,March,13,25,0,4,3,1.0,0,BB,NLD,Direct,Direct,0,0,0,H,H,1,No Deposit,249.0,179.0,0,Transient,231.19,1,0,Check-Out,Lauren Flores,hwilliams@example.org,542-753-3140x70982,676263733104,2025-12-27 +City Hotel,1,49,2017,November,44,2,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,102.07,0,0,Canceled,Justin Garcia,laura98@example.com,2774193411,4210802954379225,2025-10-21 +City Hotel,0,18,2017,June,23,6,1,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,152.61,0,2,Check-Out,Rebecca Dixon,whitemary@example.com,(240)725-9559,3524946378187749,2024-08-27 +City Hotel,0,2,2017,May,18,4,2,0,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,0,No Deposit,16.0,45.0,0,Transient,0.5099000000000001,1,0,Check-Out,James Lee,kellysanchez@example.net,344-779-6855,4498599379668,2024-08-21 +Resort Hotel,0,12,2017,April,16,19,4,10,2,1.0,0,HB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,111.35,0,1,Check-Out,Carol Flowers,bradleyburgess@example.net,(821)471-1607,3540015230843087,2025-05-16 +Resort Hotel,1,90,2017,May,21,23,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,85.54,0,0,Canceled,Jessica Smith,davidmarquez@example.org,(260)373-7949,630443899228,2025-03-31 +Resort Hotel,0,1,2017,August,32,11,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,148.64,1,1,Check-Out,Nancy Williams,jamiejohnson@example.org,7389365733,213141655260870,2026-01-14 +Resort Hotel,0,57,2017,December,49,4,0,2,2,0.0,0,FB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,2,No Deposit,140.0,179.0,0,Transient-Party,96.0,0,0,Check-Out,Shawn Bell,masondeborah@example.com,906-698-7493,676249582641,2025-03-06 +City Hotel,1,154,2017,May,20,16,1,0,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,137.17,0,0,Canceled,Patricia Hall,franklinrobert@example.net,691.386.4838,4703568624517106,2026-02-28 +City Hotel,0,19,2017,August,31,4,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,F,B,0,No Deposit,11.0,179.0,0,Transient,211.69,0,0,Check-Out,Lindsey Riley,perezkaren@example.net,443-769-0238,375091353309806,2025-09-10 +Resort Hotel,0,34,2017,April,15,8,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,243.0,179.0,0,Transient,84.55,0,3,Check-Out,Bobby Simmons,dchristian@example.net,+1-820-970-0558x6116,2462561113319006,2025-02-26 +City Hotel,0,107,2017,July,29,16,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient-Party,101.03,0,0,Check-Out,Chelsea Miller,fernandohunter@example.com,240-386-7920,38397443691668,2024-10-07 +City Hotel,1,246,2017,January,4,24,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,236.01,0,1,Canceled,David Mann,nchoi@example.org,+1-557-672-6491x65829,4692882403431949,2024-06-24 +City Hotel,1,49,2017,August,32,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,F,0,No Deposit,9.0,179.0,0,Transient,115.14,0,0,Canceled,Hannah Briggs,williamsfrancisco@example.org,+1-818-285-1163x00634,6538676290589717,2025-10-12 +Resort Hotel,0,148,2017,April,15,9,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,364.0500000000011,179.0,0,Transient,120.2,0,3,Check-Out,Dr. April Mendoza,lindseyboyle@example.org,672-623-1204,3520103123657154,2025-12-17 +Resort Hotel,0,31,2017,August,33,12,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,199.7,1,2,Check-Out,Justin Ellison,ssnyder@example.com,+1-251-630-0872x49973,4829057385932117,2024-04-03 +City Hotel,0,17,2017,July,27,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,130.27,0,2,Check-Out,Lacey Hopkins,richardparker@example.net,+1-702-438-2939x984,340957900603333,2024-05-07 +Resort Hotel,0,64,2017,July,30,20,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,D,1,No Deposit,236.0,179.0,0,Transient,237.98,1,1,Check-Out,Rebecca Ross,rmason@example.net,(569)213-9170x96516,6562561363826973,2025-02-11 +Resort Hotel,0,84,2017,June,26,26,0,4,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,135.05,1,2,Check-Out,Joy Wagner,randy28@example.com,5336501103,676183332615,2025-10-23 +Resort Hotel,0,244,2017,March,13,26,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,98.95,0,0,Check-Out,Jennifer Mack,brandy17@example.com,001-947-854-5876x10794,6011832292731122,2024-11-25 +City Hotel,1,119,2017,October,42,21,0,4,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,97.62,0,0,Canceled,Timothy Cain,grahamjames@example.com,428-297-2601x713,4284339837230672,2025-11-11 +City Hotel,0,1,2017,January,2,4,1,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,64.8,0,1,Check-Out,Heather Carr,gilbert11@example.com,001-561-441-1887,6011499740507023,2026-01-25 +City Hotel,0,24,2017,September,36,4,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient-Party,101.72,0,0,Check-Out,Kristen Singh,amylawson@example.org,(830)476-3958x99806,6011338773829302,2026-01-30 +City Hotel,1,19,2017,November,48,27,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,117.22,0,2,Canceled,Christopher Mccullough,robert11@example.net,+1-472-319-0941x002,5512029078218137,2025-07-07 +City Hotel,1,317,2017,August,31,3,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,182.08,0,0,Canceled,Gabrielle Gonzalez,johnstonwilliam@example.net,(999)340-6866,4543023484463583892,2026-03-18 +City Hotel,1,319,2017,February,5,2,1,0,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,59.58,0,0,Canceled,Chelsea Johnson,sellersjay@example.com,352-646-6108,3540372400337899,2024-08-07 +City Hotel,0,13,2017,November,45,6,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,184.0,0,Transient,2.4,0,0,Check-Out,Austin Phillips,michelledalton@example.org,679-632-1752x707,180074109740156,2025-12-11 +Resort Hotel,0,1,2017,February,8,24,1,3,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,2,No Deposit,13.0,223.0,0,Transient,35.91,1,0,Check-Out,Christine Barker,murphyaustin@example.org,+1-354-258-8237x5891,4619568208671747653,2024-05-05 +Resort Hotel,0,50,2017,December,50,9,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,59.63,0,1,Check-Out,Paul Bradshaw,morenocourtney@example.org,001-972-600-8034x16473,3508281229139776,2026-02-15 +Resort Hotel,0,153,2017,December,49,7,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,0,Transient,102.2,0,0,Check-Out,Kyle Jimenez,johnatkinson@example.org,+1-250-746-3578x616,4576166015155250916,2024-06-24 +City Hotel,0,17,2017,July,28,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,234.2,0,0,Check-Out,Michael Madden,brettturner@example.net,+1-469-276-8368x451,4956591552834859,2025-02-07 +Resort Hotel,1,198,2017,June,25,21,4,10,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,107.9,0,0,Canceled,Jessica Morales,wmiranda@example.com,(271)350-5101x1855,4602159105260,2024-11-09 +City Hotel,0,17,2017,September,36,7,0,2,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,112.56,0,1,Check-Out,Larry Bender,margaret25@example.net,253.808.9709,3555608326990119,2024-06-26 +City Hotel,0,155,2017,November,45,6,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,89.8,0,0,Check-Out,Andre Brown,rmadden@example.org,(257)666-6929,4967359865426035878,2024-12-27 +City Hotel,0,44,2017,October,40,2,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.43,0,1,Check-Out,Stephen Whitehead,holtcurtis@example.net,623-275-5842x9996,4451671456367,2025-11-29 +City Hotel,1,2,2017,July,28,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,B,0,No Deposit,14.0,179.0,0,Transient,224.21,1,0,Canceled,Dean Barnes,phillipsjason@example.com,222.618.1478,502000453584,2024-07-01 +City Hotel,1,217,2017,August,32,4,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,250.04,0,0,Canceled,Sarah Buchanan,walterreed@example.org,(734)986-9589x3384,6505081542543035,2024-12-12 +Resort Hotel,0,53,2017,October,42,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,134.0,179.0,0,Transient,53.36,0,2,Check-Out,Tyler Williams,lorraine08@example.org,001-450-260-6602x420,3509791714122086,2024-11-24 +City Hotel,1,363,2017,September,36,3,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,70.0,179.0,0,Transient,102.4,0,0,Canceled,Sophia Mckenzie,ryan01@example.com,+1-228-437-6689x5971,2295024622165595,2024-10-30 +City Hotel,0,3,2017,October,42,17,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,135.88,0,0,Check-Out,Mark Gardner,curtis49@example.net,488.728.0929x595,3542562063470809,2024-10-26 +City Hotel,0,12,2017,August,33,14,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,110.74,0,1,Check-Out,Bobby Brown,rperry@example.com,001-804-818-8549x748,4237968903035095271,2024-11-19 +City Hotel,1,262,2017,December,52,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient-Party,77.84,0,0,Canceled,Kelsey Howell,shawn99@example.org,319.660.2031,4542279954823149,2024-08-21 +City Hotel,0,27,2017,March,10,5,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,90.11,0,0,Check-Out,Nicole Gomez,igarrison@example.com,721-783-9923x67611,630422410641,2025-04-28 +City Hotel,0,112,2017,May,19,6,1,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,66,Transient-Party,80.78,0,1,Check-Out,Megan Harmon,cartercaroline@example.net,+1-868-372-2344x27442,4425584036901264,2025-05-26 +Resort Hotel,0,158,2017,August,32,6,1,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.82,0,0,Check-Out,Erica Taylor,weberwilliam@example.com,361.425.3981x35109,180081616209211,2024-08-19 +City Hotel,0,17,2017,August,32,5,2,4,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.78,0,1,Check-Out,Andrea Martin,jonathanjones@example.net,001-250-924-2310,4758194158065133,2025-02-25 +Resort Hotel,0,1,2017,April,17,22,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,242.95,1,0,Check-Out,Theresa Henderson,vasquezaustin@example.net,591.676.4472x572,676240654415,2024-10-04 +Resort Hotel,0,21,2017,July,28,10,4,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,142.1,1,2,Check-Out,Kathleen Montoya,robertchandler@example.com,956-213-7158x3909,675959006916,2025-12-27 +City Hotel,0,104,2017,May,20,16,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.19,0,2,Check-Out,Eric Skinner,oware@example.net,208.928.4269x162,6011359644369047,2024-05-12 +City Hotel,1,133,2017,June,23,3,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,34.0,179.0,0,Transient,124.89,0,1,Canceled,William Garcia,oadams@example.com,+1-267-459-6126x087,349674202616225,2025-07-11 +City Hotel,0,38,2017,July,27,5,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.13,0,2,Check-Out,Joseph Powell,rachel92@example.com,9923893084,3554574873844698,2024-08-12 +City Hotel,0,94,2017,April,17,20,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,9.0,179.0,0,Transient,119.76,1,2,Check-Out,Amy Reynolds,craigparsons@example.net,(727)881-3428x6612,675902359545,2025-10-13 +Resort Hotel,0,55,2017,November,47,19,1,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,27.0,179.0,0,Transient-Party,105.54,0,0,Check-Out,Rachael Perkins,dunnjonathan@example.net,256-979-2144x62034,30147743921812,2025-01-23 +Resort Hotel,0,38,2017,October,40,5,0,2,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient-Party,125.49,1,0,Check-Out,Ronald Johnson,alvaradojacob@example.org,(785)932-1746x6058,3571725039720201,2025-12-27 +Resort Hotel,0,118,2017,March,14,30,0,5,3,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,15.0,179.0,75,Transient-Party,115.73,1,3,Check-Out,Kim Hicks,bakereric@example.com,335-305-6490,4955004654704,2025-08-07 +City Hotel,0,8,2017,August,32,6,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Contract,250.9,1,1,Check-Out,Michael Evans,tparker@example.com,872-688-7249x51108,4669777169520050,2025-12-30 +City Hotel,0,107,2017,May,19,4,1,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.83,0,0,Check-Out,Michelle Byrd,hufffrank@example.org,001-234-986-1831,676381771267,2025-10-30 +Resort Hotel,0,2,2017,November,48,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,67.0,0,Transient,40.0,0,0,Check-Out,Betty Mason,gilmoredaniel@example.org,(549)827-5808,213174235454390,2025-03-02 +Resort Hotel,1,85,2017,August,33,14,4,7,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,199.11,0,2,Canceled,Michael Johnson,haileycox@example.org,001-474-468-1527x48068,676278870073,2024-09-25 +Resort Hotel,0,102,2017,April,17,28,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,83.81,1,2,Check-Out,Angel Holmes,smithrhonda@example.net,300.573.9514,3572830238453767,2025-01-14 +Resort Hotel,0,1,2017,February,7,17,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,48.16,1,0,Check-Out,Amy Walters,breed@example.net,275-494-6128x7972,38040485985271,2025-05-20 +Resort Hotel,0,11,2017,August,32,10,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,107.63,1,2,Check-Out,Jeremy Sparks,jose68@example.org,+1-736-914-0888x66381,6011533062189984,2024-07-18 +City Hotel,0,156,2017,March,12,17,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,250.64,0,1,Check-Out,Peter Campbell,joshua78@example.net,(709)691-4435x12773,4841217683997,2025-02-07 +City Hotel,0,3,2017,September,36,5,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,74.28,0,3,Check-Out,Karen Melendez,emartinez@example.com,001-466-898-7950,4923671376597,2025-05-18 +City Hotel,1,108,2017,March,13,28,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,B,1,No Deposit,86.0,179.0,0,Transient-Party,81.4,0,0,Canceled,Maurice Estes,emcdonald@example.org,766-426-4636x052,3518949130318907,2025-11-09 +City Hotel,1,39,2017,March,12,23,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,109.05,0,1,Canceled,Mathew Beck,simsshannon@example.net,001-417-835-9596,3503080633659360,2026-03-15 +City Hotel,1,154,2017,July,27,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient-Party,186.6,0,1,Canceled,Nathaniel Parker,james68@example.org,692.661.1397x65210,6011131314878940,2024-07-23 +City Hotel,1,370,2017,March,10,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,82.0,179.0,23,Transient,61.53,0,0,Canceled,Andrew Ward,yrowe@example.net,930-922-8665,6011319671770012,2025-12-19 +City Hotel,1,372,2017,November,47,23,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,75,Transient-Party,76.55,0,1,Canceled,Regina Phillips,sarah22@example.org,001-494-545-1468x970,213168770427480,2024-10-26 +City Hotel,0,56,2017,August,33,12,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,185.42,0,1,Check-Out,Austin Fuller,ldavidson@example.org,752.604.4216x5629,4154398905563,2024-10-09 +City Hotel,0,114,2017,August,33,16,1,1,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,110.94,0,1,Check-Out,Bryan Rogers,uford@example.com,443-230-0139,4858154421980392,2024-11-04 +Resort Hotel,1,71,2017,December,49,6,1,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,132.54,0,1,No-Show,Patrick Duncan,jillwatkins@example.net,+1-437-280-5539x677,4821261247980,2025-09-16 +City Hotel,0,154,2017,March,10,9,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,82.09,0,0,Check-Out,Nathan Wolf,qthompson@example.com,001-613-311-9121x23907,213174184539563,2026-01-31 +City Hotel,0,412,2017,May,19,8,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,65.22,0,0,Check-Out,Miss Bethany Hall DVM,walter78@example.com,+1-611-757-1170,639061468794,2024-08-16 +City Hotel,0,105,2017,December,52,29,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,84.54,0,0,Check-Out,Scott Schwartz,zmcdonald@example.net,883.555.8284x37378,3530653094014841,2024-11-13 +City Hotel,1,18,2017,June,23,4,1,5,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,90.53,0,0,Canceled,Bradley Gray,sanchezanthony@example.net,949.819.0428x5462,3568623450991234,2024-07-28 +City Hotel,0,3,2017,February,7,11,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,L,1,No Deposit,15.0,179.0,0,Transient,87.78,0,0,Check-Out,Michelle Owen,dustindavis@example.net,+1-942-550-1460x58440,6540339502866151,2025-05-30 +City Hotel,1,203,2017,August,32,9,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,131.81,0,2,Canceled,Olivia Everett,taylorchristian@example.com,8698136970,180046052745911,2025-06-27 +Resort Hotel,0,2,2017,February,7,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,177.0,179.0,0,Group,34.77,0,1,Check-Out,Michelle Escobar,brownjade@example.com,930-826-4884x7504,213111987565106,2024-05-13 +Resort Hotel,1,56,2017,June,25,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,78.21,0,2,Canceled,Katherine Alvarez,jennifercraig@example.net,001-723-685-5131x6417,30427631988234,2026-02-24 +City Hotel,0,3,2017,November,45,7,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,43.85,0,0,Check-Out,Jacob Brown,benjamin74@example.net,(764)929-6954x3888,6011337182045484,2026-02-05 +City Hotel,1,414,2017,October,44,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,101.44,0,0,Canceled,Julie Jones,duncanerin@example.org,506-701-6075,344735475603961,2025-02-21 +City Hotel,0,2,2017,February,9,27,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.12,0,1,Check-Out,Lisa Miller,tmoore@example.com,478-666-0793x016,3526813247318699,2024-04-19 +City Hotel,1,88,2017,October,40,2,1,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,40,Transient,83.24,0,0,Canceled,Courtney Bryant,xlove@example.net,714-995-0563x97245,4199580544652666,2025-08-13 +Resort Hotel,0,0,2017,April,17,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,71.0,0,Transient,45.87,1,0,Check-Out,Caitlyn Ramirez,grantjulie@example.net,+1-617-245-1100x3735,213158836773316,2025-12-16 +City Hotel,1,260,2017,May,21,24,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,92.9,0,1,Canceled,Andrew Ward,michaelreynolds@example.org,001-992-891-8439x254,4160078511320826,2025-03-25 +City Hotel,1,149,2017,September,36,4,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,101.73,0,0,Canceled,Emma Stevenson,zcampbell@example.com,(831)887-0470x12935,630495319927,2024-09-04 +Resort Hotel,1,158,2017,July,30,27,2,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,252.0,0,0,Canceled,Jordan Calderon,raymondbrown@example.net,+1-584-544-8502x9106,3573907070732356,2025-10-29 +Resort Hotel,1,14,2017,August,33,18,2,5,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Canceled,Rachel Clayton,lsherman@example.com,327.339.7867x138,3550546623226289,2025-06-07 +City Hotel,0,294,2017,August,34,19,2,5,2,1.0,0,HB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.0,0,2,Check-Out,Brian Peters,lisean@example.com,259.780.8947x1377,3572593300083140,2024-06-21 +Resort Hotel,1,200,2017,July,28,13,1,5,2,0.0,0,Undefined,NLD,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient-Party,106.59,0,0,Canceled,Kathleen Villegas,michael93@example.net,+1-660-891-1954x5062,6011904143236047,2025-07-10 +City Hotel,1,46,2017,July,27,5,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.48,0,0,Canceled,Peggy Luna,michael91@example.com,2236744818,4614405944327,2024-08-21 +City Hotel,0,0,2017,August,32,9,1,0,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,97.84,1,2,Check-Out,Mark Pope,jayowens@example.org,001-396-245-9823x72373,639020400508,2025-10-12 +Resort Hotel,0,89,2017,May,19,4,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,246.0,179.0,0,Transient,1.59,0,0,Check-Out,John Flores,dawn28@example.org,(936)972-6196,4447567853253,2024-07-06 +City Hotel,1,414,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,86.07,0,0,Canceled,Corey Carroll,donaldbaker@example.net,(857)925-8495x59561,4426282948275120,2024-06-06 +Resort Hotel,0,50,2017,April,17,20,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,110.14,0,2,Check-Out,Kimberly Nguyen,hparker@example.com,+1-739-742-8222,3557475701321866,2026-01-24 +City Hotel,1,248,2017,October,41,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.78,0,0,Canceled,Michelle Johnson,jlee@example.net,+1-689-429-2677x85676,567822484646,2025-05-26 +City Hotel,1,11,2017,July,29,21,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Samantha Burke,kimberly24@example.com,(605)359-6649,30047799640821,2024-12-24 +City Hotel,0,21,2017,November,46,13,0,1,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,E,2,No Deposit,15.0,179.0,0,Transient,85.25,0,0,Check-Out,Lauren West,lauren93@example.net,001-351-264-9877,4836254011001257,2024-06-14 +Resort Hotel,1,21,2017,July,27,4,1,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,159.35,0,1,Canceled,Emily Johnson,stevenray@example.org,+1-398-997-5167x1507,4612761984341,2025-01-11 +City Hotel,1,3,2017,August,35,25,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient-Party,87.09,0,0,Canceled,Jose Abbott,cranedaniel@example.org,569-976-6887,4429260670887,2024-04-27 +City Hotel,0,170,2017,September,39,26,0,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,93.5,0,0,Check-Out,Alejandra Rowland,jason54@example.org,346.689.0081x367,4940756176147348,2025-03-13 +Resort Hotel,1,107,2017,August,32,8,3,5,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,252.0,0,0,Canceled,Tracey Jones,patricia95@example.com,(365)483-5846,4995383690251110,2024-10-21 +Resort Hotel,0,146,2017,October,42,18,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,0,Transient-Party,44.23,0,0,Check-Out,Jimmy Douglas,richardbrewer@example.com,434.434.7577,3553773121922196,2024-03-30 +City Hotel,0,173,2017,July,27,4,2,5,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.76,0,2,Check-Out,Michael Reed,awatkins@example.net,703.515.1264,3564937823587477,2026-03-22 +Resort Hotel,0,174,2017,August,33,11,4,10,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,53.65,0,0,Check-Out,Hannah Rogers,jeffreyaguilar@example.net,844-358-7518x2430,342696820293944,2026-03-14 +City Hotel,0,6,2017,July,28,9,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Contract,210.38,0,0,Check-Out,Francisco Campbell,gonzalezcurtis@example.com,(769)988-0275x1253,213117332133185,2024-04-04 +City Hotel,1,27,2017,May,21,24,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,43.15,0,2,Canceled,Amanda Blake,wrightangela@example.org,315-685-7488,3527888062575515,2025-11-20 +City Hotel,1,252,2017,October,41,12,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,82.99,0,0,Canceled,Michelle Byrd,njenkins@example.net,849.618.0861x7850,5270727790912034,2025-11-13 +Resort Hotel,1,80,2017,October,40,7,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,84.36,0,1,Canceled,Michael Gordon,gordonstephen@example.org,(900)774-6210,6538131539993866,2024-08-13 +City Hotel,1,11,2017,August,34,23,0,1,2,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient-Party,174.38,0,2,No-Show,Valerie Matthews,edunlap@example.org,910.283.3440x69838,6011603804978299,2025-03-01 +Resort Hotel,1,47,2017,December,51,18,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,61.88,0,1,Canceled,Maria Merritt,leslie40@example.net,392-359-5318x15359,4778547986432313721,2026-03-13 +City Hotel,0,12,2017,February,7,14,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,98.83,0,1,Check-Out,William Rodriguez,xnelson@example.com,+1-848-212-5634x974,2275284791308012,2025-07-28 +Resort Hotel,0,0,2017,August,32,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,17.0,179.0,0,Transient,133.03,1,1,Check-Out,Natalie Gibson,estevens@example.net,001-707-618-2835x253,4621973263733214593,2024-04-12 +Resort Hotel,0,0,2017,October,40,5,1,2,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,353.0,179.0,0,Transient,54.75,0,0,Check-Out,Maxwell Frost,christinefoster@example.net,528.871.4863x75162,3548734963361693,2024-08-09 +City Hotel,0,357,2017,August,32,9,0,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,96.2,0,0,Check-Out,Peter Collins,mary62@example.com,419-347-0697,676196653684,2024-10-31 +City Hotel,0,13,2017,October,40,5,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,I,0,No Deposit,34.0,179.0,0,Transient-Party,85.41,0,0,Check-Out,Andrea Martinez,ylopez@example.com,001-475-712-7762x259,4043086996456554,2024-09-05 +City Hotel,0,15,2017,March,13,29,0,1,2,0.0,0,BB,CHN,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,106.48,0,1,Check-Out,James Watts,spearsdaniel@example.com,425.888.2792x26428,4102936001444490,2025-05-28 +Resort Hotel,1,127,2017,December,52,30,2,4,2,2.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,244.0,179.0,0,Transient,61.25,0,1,Canceled,John Schwartz,gmiller@example.net,+1-559-825-1178x49570,3515213806363058,2025-07-29 +Resort Hotel,0,10,2017,April,14,3,2,3,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,259.0,179.0,0,Transient,43.68,0,1,Check-Out,Diana Bender,tamaradavis@example.com,+1-228-245-9168x409,4273161794255283,2026-02-12 +City Hotel,0,43,2017,November,45,5,0,2,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,83.85,0,1,Check-Out,Michael Collins,daniel43@example.org,001-404-780-2538x3053,4203183980555149655,2025-12-20 +Resort Hotel,0,43,2017,July,28,10,1,1,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,213.68,1,2,Check-Out,John Boyd,rickygordon@example.org,943-609-5414x1404,3557084814203241,2025-11-08 +City Hotel,0,108,2017,May,21,22,1,0,1,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.14,0,0,Check-Out,Donald Choi,robertsimpson@example.net,9092101069,180041011751597,2025-07-27 +Resort Hotel,0,38,2017,December,49,3,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,170.0,179.0,0,Transient,41.61,0,0,Check-Out,Eduardo Colon,bsmith@example.org,(428)749-0948x5494,4671034318810,2024-09-01 +City Hotel,0,108,2017,October,44,29,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient-Party,106.62,0,0,Check-Out,Amy Green,transtephanie@example.com,988-659-7899,3516080855291970,2025-10-06 +City Hotel,1,40,2017,August,34,21,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,111.22,0,2,Canceled,Julie Wilson,lindapatterson@example.org,353.737.2622,4917170829460356,2025-11-19 +City Hotel,0,7,2017,May,22,30,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,114.04,0,1,Check-Out,Bruce Ford,gregory49@example.org,339-781-0728x927,501838662614,2025-05-05 +Resort Hotel,1,15,2017,March,13,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Refundable,82.0,179.0,0,Transient,39.84,0,1,Canceled,Crystal Moore,michaelwilliams@example.org,(325)470-4963,4309274001174625747,2025-01-12 +City Hotel,0,12,2017,May,19,12,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Transient,132.92,0,0,Check-Out,Anthony Mitchell,walterdavis@example.com,+1-310-404-8468x811,2720016110542231,2025-05-22 +City Hotel,1,103,2017,May,18,5,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,75.02,0,0,Check-Out,Richard Johnson,vjackson@example.org,(736)996-2885x3462,4012555990598,2024-12-24 +City Hotel,0,3,2017,September,35,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,218.0,0,Transient,44.33,0,1,Check-Out,Eric Bennett,mccormicksamantha@example.org,(727)325-6787,4714639564509697,2025-05-10 +City Hotel,0,17,2017,July,27,4,1,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,213.98,0,2,Check-Out,Joseph Braun,codyvelez@example.net,341-441-9690x66689,4261604576901164,2025-01-08 +Resort Hotel,0,38,2017,December,49,4,2,1,2,0.0,0,Undefined,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,90.46,0,1,Check-Out,Mary Scott,marcus32@example.com,001-910-840-1697,4612182478124134442,2025-07-03 +City Hotel,0,12,2017,May,21,25,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,127.47,0,0,Check-Out,Meghan Fischer,nealthomas@example.com,412.492.0092,4326299899610684,2025-02-13 +City Hotel,1,89,2017,April,17,26,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,12.0,179.0,0,Transient,2.85,0,2,No-Show,Amy Yates,ramirezmark@example.net,001-307-468-7444x2625,4596905931524930,2026-02-04 +Resort Hotel,0,148,2017,August,32,5,2,7,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,F,1,No Deposit,19.0,179.0,0,Transient,233.06,1,0,Check-Out,William Lang,gregorylewis@example.org,492-580-7424x05951,30179898640525,2025-03-24 +City Hotel,0,56,2017,June,26,24,1,10,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,1,No Deposit,12.0,179.0,0,Transient,252.0,1,3,Check-Out,Kurt Yang,samanthawatkins@example.net,687-244-3205,36287481762822,2024-09-24 +City Hotel,1,174,2017,May,18,1,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,98.89,0,0,Canceled,Laura Green,brian80@example.net,679-516-9064x016,3581446793502572,2026-03-03 +City Hotel,0,154,2017,August,32,6,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,11.0,179.0,0,Transient,123.04,0,2,Check-Out,Candace Mcdonald,gcabrera@example.net,(356)636-4572x74445,213170102199704,2024-05-21 +City Hotel,0,55,2017,September,37,12,0,1,3,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient-Party,139.39,1,1,Check-Out,Joseph Garcia,wilsonvictoria@example.net,970.935.5853,3568817131437670,2025-08-31 +Resort Hotel,0,241,2017,September,37,10,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,274.0,179.0,0,Transient-Party,112.18,0,0,Check-Out,Cheryl Davis,luke19@example.net,5813909826,345602792061605,2025-05-20 +Resort Hotel,0,3,2017,January,2,11,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,33.22,1,1,Check-Out,William Sanchez,ashlee03@example.com,001-227-863-6614,4889715870004,2024-05-07 +City Hotel,0,103,2017,April,14,6,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.11,0,1,Check-Out,Robert Nielsen,davidschneider@example.net,(949)908-2147x191,213181824754163,2024-09-11 +City Hotel,0,36,2017,September,37,15,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.38,0,0,Check-Out,Robyn Davis,alan29@example.com,(351)884-2858x17272,5572374539859906,2025-09-19 +City Hotel,1,9,2017,June,23,1,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.49,0,1,Check-Out,Carol Richardson,tammy06@example.com,423-707-4382,30124573307560,2025-12-18 +City Hotel,0,53,2017,September,36,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient-Party,130.02,0,1,Check-Out,Robert Brown,aguilarjudith@example.org,768-347-3862x60422,4746944387445299,2024-04-11 +City Hotel,1,382,2017,July,31,30,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,127.68,1,0,Canceled,David Blake,robinmeza@example.net,303.338.3808x159,4566397937979219250,2025-06-15 +Resort Hotel,0,2,2017,October,40,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,15.0,331.0,0,Transient,45.67,0,0,Check-Out,Nicholas Moore,matthew15@example.com,269-943-4948,2263116118557570,2025-12-05 +City Hotel,0,1,2017,August,33,10,0,1,2,1.0,0,Undefined,ESP,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,235.34,1,0,Check-Out,Renee Harrison,cochranteresa@example.com,(332)599-2382x8141,6011956718750505,2024-12-23 +City Hotel,1,414,2017,July,30,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,81.47,0,0,Canceled,Robert Ponce,yrodriguez@example.net,(449)657-6211x593,30182293059010,2025-12-23 +City Hotel,0,0,2017,May,19,10,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,3.78,0,0,Check-Out,Christine Taylor,gjones@example.com,6525841841,4345436489015153244,2025-05-28 +Resort Hotel,0,16,2017,August,33,15,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,236.0,179.0,0,Transient,248.53,0,1,Check-Out,Matthew Moore,charles41@example.org,+1-732-422-5806,4915163368247559,2024-11-23 +City Hotel,0,77,2017,July,29,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,82.0,179.0,0,Transient-Party,78.79,0,0,Check-Out,Roberto Scott,grahamjason@example.net,3492016196,180050364266046,2024-08-20 +City Hotel,1,0,2017,August,31,3,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Contract,133.42,0,0,Canceled,Ashley Huff,tinahowell@example.net,700-212-0498,343292622924974,2025-10-12 +Resort Hotel,1,41,2017,October,40,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Contract,42.03,0,2,Canceled,Margaret Johnson,xwade@example.org,(531)235-6858x211,4419434310902935,2025-10-21 +City Hotel,0,149,2017,July,28,12,2,7,3,0.0,0,BB,AUT,Aviation,Corporate,0,0,1,D,D,0,No Deposit,175.0,179.0,0,Transient,163.99,0,1,Check-Out,Brian Mclaughlin,joseph61@example.com,(524)678-2278,3599440851170943,2025-06-14 +City Hotel,0,17,2017,August,33,15,0,2,3,1.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,135.86,1,3,Check-Out,Christina Bowers,veronica63@example.com,421-617-5115x1844,343918770522992,2025-12-19 +City Hotel,0,89,2017,April,17,25,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.44,0,1,Check-Out,Carl Jones,jacksonvictor@example.org,+1-698-504-0995x11774,3545593318759628,2024-07-17 +Resort Hotel,0,150,2017,March,13,31,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,41.63,0,0,Check-Out,Deborah Lucas,john15@example.org,768-441-8701,4040929018993406,2026-03-21 +City Hotel,0,56,2017,July,30,26,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.61,0,0,Check-Out,Timothy Valdez,hcoleman@example.com,884.856.4125,373505058202117,2025-04-05 +Resort Hotel,0,0,2017,February,8,23,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,41.9,1,0,Check-Out,Nicole Diaz,shenson@example.com,(784)459-5660,4859054425371978080,2025-10-21 +Resort Hotel,0,1,2017,March,12,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,63.3,0,1,Check-Out,Derek Taylor,blairgregory@example.com,(806)600-3986,180075088904937,2026-02-21 +City Hotel,1,414,2017,September,37,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,104.01,0,0,Canceled,Barbara Wall,morgankristin@example.org,812.788.6078,4741825961187974,2025-07-05 +City Hotel,1,94,2017,June,26,28,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,112.12,0,0,No-Show,Michael Barnett,yduffy@example.net,001-576-301-9856x94078,4454578024494294,2025-05-27 +Resort Hotel,0,15,2017,July,27,3,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,81.46,1,2,Check-Out,Michelle Collins,paulwilson@example.org,(300)430-1215,213194964029577,2025-09-22 +Resort Hotel,0,16,2017,October,41,8,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,57.88,1,2,Check-Out,Jennifer Miles,franconancy@example.com,+1-915-663-0502x640,4610780062677,2025-04-15 +City Hotel,0,131,2017,October,41,9,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,87.91,0,0,Check-Out,Sarah Rivera,hward@example.org,658-420-7902x023,373053589459070,2026-03-04 +City Hotel,0,2,2017,June,25,17,2,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,138.67,0,0,Check-Out,Phillip Barajas,lindseystephen@example.net,355-561-3292x16396,676193903777,2024-10-05 +Resort Hotel,0,102,2017,February,5,2,2,7,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,46.53,0,2,Check-Out,Wesley Morales,jmartin@example.org,(777)941-8225,180075557013608,2025-06-28 +City Hotel,1,39,2017,June,25,17,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.02,0,1,Canceled,Martin Wood,melissaharrison@example.com,+1-742-234-4880,4004016566799098,2025-12-08 +Resort Hotel,1,253,2017,August,35,26,2,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,H,C,2,No Deposit,239.0,179.0,0,Transient,106.19,0,3,Canceled,Debra Salazar,matthewthompson@example.org,001-439-985-1260,345354373248488,2024-10-08 +City Hotel,0,102,2017,May,22,26,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,113.85,0,0,Check-Out,Mary Ponce,pramos@example.net,001-703-669-4057x299,2434116863489643,2024-08-22 +City Hotel,1,36,2017,February,8,22,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,22,Transient,72.47,0,0,Canceled,Corey Lee,vegakimberly@example.org,271-458-5429,340542662425107,2025-10-16 +City Hotel,0,45,2017,October,40,2,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,75,Transient,132.89,0,0,Check-Out,Leslie Petersen,thompsonheather@example.com,(957)818-3902,180034078520245,2024-05-07 +City Hotel,0,204,2017,September,37,12,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,45.52,0,2,Check-Out,Melissa Rush,harrisonjennifer@example.net,(383)787-9046,36457081545063,2025-04-30 +City Hotel,1,291,2017,June,25,23,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,B,E,0,No Deposit,10.0,179.0,41,Transient,132.94,0,0,Canceled,Lori Liu,aalvarez@example.org,266.968.8322x361,36025614475767,2024-06-19 +City Hotel,0,161,2017,June,24,8,2,5,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,123.72,0,0,Check-Out,Joseph Rogers,heathersimmons@example.com,271-736-7933x98576,4976401096437639,2025-05-02 +City Hotel,1,164,2017,April,15,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.77,0,0,Canceled,Kathleen Williams,umiller@example.com,+1-852-782-2471x9698,4408383084653518,2025-02-05 +Resort Hotel,0,14,2017,October,43,27,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,51.48,0,2,Check-Out,Max Miller DDS,raymond28@example.net,829-876-0931,3599068361353269,2025-11-26 +City Hotel,1,113,2017,February,9,26,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,82.2,0,0,Canceled,Samantha Stokes,hannah14@example.org,659-264-1780,30322372753626,2025-10-12 +City Hotel,0,147,2017,June,25,20,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.85,0,1,Check-Out,Richard Carson,catherinemoore@example.com,(765)228-6040x49054,4598992565938659,2024-10-07 +City Hotel,0,35,2017,April,14,5,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,127.55,0,1,Check-Out,Heather Ramirez,gwatson@example.org,799-636-7604x6756,6503875759325107,2024-07-28 +City Hotel,0,16,2017,December,51,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,224.0,0,Transient,47.36,0,0,Check-Out,Katherine Olson,amanda79@example.org,(209)268-9359,30426681249042,2024-11-24 +Resort Hotel,0,1,2017,August,31,3,0,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,109.33,1,2,Check-Out,Theodore Cunningham,davilajames@example.com,389.729.3802,180049328346407,2025-05-07 +City Hotel,0,39,2017,August,32,4,2,1,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,230.68,0,2,Check-Out,Kevin Johnson,moraleswilliam@example.com,9314674078,4521473499326883,2024-06-26 +City Hotel,1,8,2017,February,9,26,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.58,0,2,Canceled,Robert Williams,gina23@example.com,(423)884-5222x122,4469445166525496,2026-02-10 +City Hotel,1,269,2017,July,28,8,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.79,0,0,Canceled,Keith Russo,harrismichael@example.com,+1-502-849-7777x313,4571849152547,2024-11-13 +City Hotel,0,0,2017,November,48,29,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,81.83,0,1,Check-Out,Jeanette Payne,fstrong@example.org,001-726-466-1477x638,2410640122198255,2024-10-10 +Resort Hotel,0,13,2017,October,40,4,2,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,C,I,1,No Deposit,332.0,179.0,0,Transient-Party,64.28,1,0,Check-Out,Patrick Ellis,david97@example.org,238.263.3318,4056171559907,2024-09-08 +City Hotel,0,79,2017,May,19,4,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.21,0,1,Check-Out,Rebekah Crawford,mendozaluis@example.com,753-537-3243,3575856296651239,2025-07-06 +Resort Hotel,0,25,2017,March,10,4,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,231.48,1,0,Check-Out,Rachel Ochoa,robertshelton@example.net,271-577-8848,4796959700818153,2024-05-05 +Resort Hotel,0,4,2017,March,13,31,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient,107.18,1,1,Check-Out,Stephanie Grimes,jordanbailey@example.net,730.389.9443x75551,3537283628243329,2025-09-07 +City Hotel,0,97,2017,October,40,3,2,3,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,103.17,0,0,Check-Out,Jamie Aguilar,paulmiller@example.org,641-704-0553x720,4174979171710061,2025-09-19 +Resort Hotel,1,0,2017,March,12,23,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,51.39,0,2,Canceled,Alex Mathis,christopher81@example.org,2568127754,676281783396,2024-07-15 +City Hotel,0,0,2017,December,52,24,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,87.86,1,0,Check-Out,Christopher Ward,bestjennifer@example.org,346-586-2427x1792,2716447928560238,2024-11-29 +City Hotel,0,153,2017,July,28,10,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,138.73,0,2,Check-Out,Heather Gonzalez,troy@example.org,001-860-703-6134x1573,3523032706050239,2026-01-08 +Resort Hotel,1,167,2017,July,30,26,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,205.12,0,1,No-Show,Brandon Hamilton,maurice12@example.org,246.613.3210,676266233060,2025-11-01 +Resort Hotel,0,211,2017,March,11,15,2,5,2,1.0,0,HB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,49.83,0,1,Check-Out,Wendy Dickerson,gabriel29@example.net,920-833-4484,4213613672513,2024-08-17 +City Hotel,1,43,2017,April,15,13,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,152.26,0,0,Canceled,Brenda Chen,ihill@example.net,+1-235-935-6275,213189740387299,2024-10-28 +Resort Hotel,0,34,2017,September,39,24,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,80.0,179.0,0,Transient,90.42,0,2,Check-Out,Andre Elliott,davidcook@example.com,001-958-355-2834x16002,3576901104766396,2024-08-23 +City Hotel,0,56,2017,March,13,24,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,97.6,0,2,Check-Out,Chad Barnett,gatesadam@example.com,561-722-5714,4721657364623,2025-01-08 +Resort Hotel,0,17,2017,May,18,2,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,82.05,0,0,Check-Out,Ashley Woods,higginsadam@example.org,641-940-1466,4990534953375,2025-07-13 +Resort Hotel,1,164,2017,July,27,5,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,C,I,0,No Deposit,315.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Canceled,Michael Ayala,alexandrabeasley@example.net,001-503-422-3268,4649851692609949,2025-03-04 +City Hotel,0,18,2017,February,8,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,87.92,0,0,Check-Out,Jacob Banks,robin28@example.com,695.531.7526x3638,30353634827627,2024-03-30 +City Hotel,0,53,2017,November,45,9,2,3,2,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,106.53,0,0,Check-Out,Michael Schwartz,kaitlyn29@example.net,001-967-458-7982,2329576027942654,2024-04-14 +Resort Hotel,0,137,2017,October,41,8,2,5,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,36.0,179.0,0,Transient,101.82,1,3,Check-Out,Danielle Walters,jillianhuff@example.net,+1-586-838-2407x125,2720986084415723,2024-05-07 +City Hotel,1,109,2017,October,43,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,87.67,0,0,Canceled,Kim Gould,susan20@example.com,001-238-553-5754x501,3564520170157464,2026-01-29 +City Hotel,0,375,2017,June,26,22,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,82.53,0,0,Check-Out,Julia Berry,smithdavid@example.com,+1-505-369-1884x31661,180032926923421,2025-02-23 +Resort Hotel,1,3,2017,January,3,13,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,52.32,0,1,Canceled,Tim Simmons,davidjohnson@example.com,698-823-9830,2483106916127365,2025-02-25 +Resort Hotel,0,24,2017,October,41,12,2,5,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,161.0,179.0,0,Transient-Party,52.34,0,0,Canceled,Kathryn Lozano,kimjohnson@example.net,001-752-673-4518x00488,676100527867,2024-12-07 +Resort Hotel,1,160,2017,March,12,19,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,0,Transient-Party,62.15,0,0,Canceled,Molly Rogers,nguyencaroline@example.net,6195385400,4323089646239538,2024-04-10 +City Hotel,1,373,2017,January,2,3,0,3,2,1.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,125.51,0,1,Canceled,Lindsey Goodman,ocalderon@example.org,(990)480-3608x261,6572752367268084,2025-04-16 +Resort Hotel,0,0,2017,April,18,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,16.0,232.0,0,Transient,48.12,1,0,Check-Out,Marcus Cameron,keith70@example.net,963-511-9496x412,4632014680633499040,2026-01-07 +City Hotel,0,412,2017,September,39,26,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,135.61,0,0,Check-Out,Sherri Thompson,lawrence93@example.net,+1-988-984-6806x695,3558888228041685,2025-09-01 +City Hotel,0,1,2017,February,8,21,0,1,1,0.0,0,BB,FRA,Direct,Corporate,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Group,84.23,0,0,Check-Out,Molly Snyder,charles75@example.org,+1-714-745-0808x685,213130537219212,2024-08-22 +City Hotel,1,274,2017,May,18,3,2,5,2,0.0,0,BB,BEL,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,92.08,0,0,Canceled,Melanie Roy,mitchellrachel@example.com,(578)838-4396x9783,3508837709390666,2025-12-02 +Resort Hotel,1,414,2017,February,7,12,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,64.25,0,0,Canceled,Jessica Rodriguez,graynichole@example.com,(848)674-4196x22448,2272916350817601,2025-08-05 +City Hotel,0,68,2017,July,31,31,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,252.0,0,2,Check-Out,Samuel Huynh,rlewis@example.net,001-590-649-2934x194,562557134821,2024-09-04 +Resort Hotel,0,37,2017,March,13,27,0,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,73.48,0,0,Canceled,Alexander Lewis,derekflynn@example.net,(885)490-1642,4432045415719,2025-12-26 +City Hotel,0,398,2017,September,36,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,62.62,0,0,Check-Out,Jennifer Wade,jenniferwright@example.net,(678)590-6946x23057,4940616565502455,2025-01-07 +City Hotel,1,42,2017,August,35,31,0,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,233.85,0,0,Canceled,James Murray,monicahenson@example.org,+1-824-236-1764x592,3558270250435301,2024-03-28 +City Hotel,1,378,2017,May,20,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,96.48,0,0,Canceled,Debra Johnson,wolfemichelle@example.com,(558)481-6520,180046050567853,2024-08-18 +City Hotel,0,145,2017,June,26,22,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,252.0,0,3,Check-Out,Veronica Ramirez,slewis@example.com,795.958.7586,3511274607990949,2024-12-31 +Resort Hotel,0,80,2017,April,17,22,2,5,1,0.0,0,HB,ESP,Groups,Corporate,0,0,0,A,I,1,No Deposit,103.0,179.0,0,Transient-Party,1.55,0,0,Check-Out,Gabrielle Richardson,mcdanielmatthew@example.net,(973)293-7659x7280,4477803295294832,2025-10-27 +City Hotel,0,160,2017,March,11,12,1,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,8.0,179.0,0,Transient,95.16,0,2,Check-Out,Juan Hall,lromero@example.com,4627824864,6011972060624750,2026-03-11 +Resort Hotel,0,1,2017,July,28,11,0,10,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,157.08,0,0,Check-Out,Bryan Smith,ernestwilliams@example.com,727-869-7445,3563225175151956,2026-01-19 +Resort Hotel,0,39,2017,October,42,16,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,80.29,0,2,Check-Out,Chad Booth,bdavis@example.com,001-875-827-4215,503879116534,2024-08-10 +City Hotel,0,130,2017,June,23,4,2,10,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,182.59,0,0,Check-Out,Nathan Martin,butlerderek@example.net,(619)517-9156x55919,4969092173105766,2025-06-14 +Resort Hotel,0,16,2017,March,11,14,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,13.0,213.0,0,Transient,51.27,0,1,Check-Out,Matthew Shelton,rebeccamartin@example.com,001-867-233-5722x496,4547744370393477,2025-06-27 +City Hotel,1,152,2017,October,42,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,98.36,0,0,Canceled,Herbert Mcguire,jacob98@example.org,(517)861-6288,340648149031283,2024-07-31 +City Hotel,0,44,2017,January,4,23,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,108.29,1,0,Check-Out,Vanessa Meza,craigmichael@example.org,900-909-2326,3546174984192995,2025-03-06 +City Hotel,0,47,2017,May,22,27,2,1,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,94.65,0,1,Check-Out,Timothy Fisher,emalone@example.net,754.334.6286x08029,3556827921335004,2025-10-18 +City Hotel,1,2,2017,March,10,5,0,1,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,0.95,0,0,Canceled,Mr. Daniel Clark,klewis@example.org,+1-882-958-5743x0387,4399013022577644280,2024-05-09 +Resort Hotel,0,13,2017,July,30,23,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Group,110.14,0,2,Check-Out,Claire Walton,ian28@example.com,814.640.1592,347334162518240,2024-08-22 +Resort Hotel,0,14,2017,March,10,6,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,44.44,1,1,Check-Out,Wendy Bryant,uyoung@example.com,7862597790,341795571952699,2024-09-30 +City Hotel,0,18,2017,March,13,23,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,96.15,0,1,Check-Out,Brandi Alexander,robert62@example.com,9087532950,676122250456,2024-09-04 +City Hotel,0,19,2017,October,43,25,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.66,1,0,Check-Out,Lisa Carrillo,kleinbryan@example.net,001-438-852-4419x59386,180070371399689,2025-05-19 +Resort Hotel,0,12,2017,March,11,12,1,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,42.33,1,1,Check-Out,Angela Mullen,thomasaaron@example.net,001-779-697-8957,6569589089791679,2024-09-05 +City Hotel,1,318,2017,June,25,17,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,80.0,0,0,Canceled,Adam Gray,hendersonerik@example.com,404-838-5102,4022818889001906,2024-04-27 +City Hotel,1,97,2017,December,51,18,1,6,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,24.0,179.0,0,Transient,112.34,0,0,Canceled,Peter Jones Jr.,mackenziemurray@example.org,+1-314-617-0543x946,2255201303588018,2025-05-24 +City Hotel,0,9,2017,October,41,13,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,170.41,0,1,Check-Out,Danielle Barajas,catherine28@example.org,(824)366-2851x2382,3548371648340790,2024-03-31 +City Hotel,0,22,2017,March,12,20,2,1,1,1.0,0,BB,BEL,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.98,0,2,Check-Out,Tina Carroll,sloanmaria@example.com,944-636-1120x46076,4478194763777949,2025-04-09 +City Hotel,0,8,2017,November,44,3,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,0,Transient,206.49,0,1,Check-Out,Valerie House,djenkins@example.org,852.381.5539x9210,30594885187621,2024-06-24 +Resort Hotel,0,0,2017,March,10,5,1,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,43.21,1,0,Check-Out,Shannon Jones,bcarpenter@example.org,+1-582-342-4300x0156,379029887674010,2026-03-21 +City Hotel,0,34,2017,June,23,3,0,4,1,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,60,Transient-Party,84.38,0,2,Check-Out,Karen Rodriguez,davidberry@example.com,461.827.7377,6011645869690475,2025-10-15 +City Hotel,1,3,2017,December,49,2,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,178.0,179.0,45,Transient,50.7,0,1,No-Show,Christopher Castro,padillathomas@example.net,922.636.8806x155,5478715401945980,2024-08-25 +City Hotel,1,206,2017,January,2,10,1,4,2,0.0,0,BB,CHN,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,101.86,0,0,Canceled,Ana Chavez,egillespie@example.net,+1-592-666-9565x80003,3572125896366348,2025-12-14 +Resort Hotel,0,15,2017,February,8,22,0,1,1,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,41.06,0,0,Check-Out,Robert Mcneil,martinezchristopher@example.org,(931)825-7767x024,378581485933827,2025-01-11 +City Hotel,1,2,2017,May,21,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,80.13,0,0,Canceled,Marcus Skinner,emilydean@example.net,(648)755-7659,3591874622612940,2026-03-04 +City Hotel,0,22,2017,October,42,18,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,87.0,179.0,0,Transient-Party,64.29,0,1,Check-Out,Samuel Conway,danielhale@example.org,835-889-7479,503809181327,2024-06-02 +City Hotel,0,46,2017,July,29,18,0,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,D,2,No Deposit,12.0,179.0,0,Transient,107.68,0,1,Check-Out,Carlos Alvarez,kim52@example.org,764.900.2066,4859151420197019,2024-06-24 +Resort Hotel,0,12,2017,August,33,12,1,5,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,236.28,1,1,Check-Out,Travis Pugh,jonessteven@example.com,(237)418-9390x320,30009502639029,2025-10-11 +City Hotel,0,0,2017,May,22,30,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Kelly Williams,andrew58@example.org,(539)693-1259x9831,30437767943002,2025-01-29 +City Hotel,0,31,2017,October,41,10,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Contract,59.37,0,1,Check-Out,Caitlin Vaughn,cassandra97@example.org,+1-922-444-8380,2700744484611787,2024-09-02 +Resort Hotel,0,128,2017,October,41,10,2,3,2,0.0,0,FB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,249.0,179.0,0,Transient,47.89,0,0,Check-Out,Yolanda Obrien,margaret88@example.net,329.327.0144,676360879370,2024-07-27 +Resort Hotel,0,50,2017,September,36,4,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,312.0,179.0,0,Contract,80.43,0,1,Check-Out,Melissa Fox,janetbowman@example.net,001-784-677-3172x3793,2447378443667024,2026-02-09 +Resort Hotel,0,7,2017,October,40,3,0,1,1,0.0,0,BB,RUS,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,161.51,0,0,Check-Out,Mike Smith,grahamjulie@example.net,001-345-885-5768,4469498919228793,2024-10-09 +Resort Hotel,0,2,2017,February,9,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,1,No Deposit,175.0,179.0,0,Transient,0.51,0,1,Check-Out,Chris Johnson,perezkara@example.net,217.514.5650x1577,6595121462302953,2025-06-12 +City Hotel,0,1,2017,January,5,28,1,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,150.61,0,0,Check-Out,Karen Savage,benjamin53@example.com,+1-741-885-1550x9656,213193998284794,2024-03-31 +Resort Hotel,0,45,2017,October,43,21,1,2,1,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,H,A,0,No Deposit,260.0,179.0,0,Transient-Party,101.49,0,0,Check-Out,Barbara Silva,uwhite@example.com,(347)792-7486,4760978697605315742,2024-11-07 +City Hotel,0,11,2017,March,10,3,1,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,115.84,0,0,Check-Out,Diana White,rita36@example.com,+1-652-623-0015x185,3531418412279578,2024-05-22 +City Hotel,1,36,2017,June,23,9,0,2,2,0.0,0,BB,AUT,Aviation,Direct,0,0,0,A,A,0,No Deposit,14.0,183.0,0,Transient,122.78,0,0,Canceled,Maria Morris,leah80@example.com,001-677-202-9401x2283,3510955830587269,2024-10-24 +City Hotel,0,53,2017,January,2,10,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient,47.11,0,0,Check-Out,Andrew Young,nicole04@example.net,(916)546-1930x2695,581047271126,2024-07-05 +City Hotel,0,45,2017,November,48,26,1,1,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,77.99,0,0,Check-Out,Garrett Oliver,burnettkristin@example.net,9649018481,4569743595316,2025-12-15 +Resort Hotel,1,85,2017,November,46,16,2,2,2,0.0,0,Undefined,PRT,Direct,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,102.0,0,1,Canceled,Loretta Griffith,dstewart@example.com,373.713.9012,4108030502693516714,2026-01-10 +Resort Hotel,0,0,2017,May,19,12,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,3.38,0,1,Check-Out,Ashley Ward,coffeycharles@example.org,781-828-7884x7965,6011553870858034,2025-12-13 +Resort Hotel,1,149,2017,March,12,21,2,5,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,E,A,0,Non Refund,364.0500000000011,179.0,0,Transient,52.08,0,0,Canceled,Alyssa Jackson,edward81@example.net,(592)848-9469x3766,4220730672676041737,2025-02-23 +City Hotel,0,136,2017,January,2,5,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,K,2,No Deposit,12.0,179.0,0,Transient-Party,88.83,0,1,Check-Out,Timothy Fox,paul59@example.com,(318)557-7715x761,2589273547665016,2025-12-26 +City Hotel,0,11,2017,October,41,13,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.12,0,0,Check-Out,Jeffrey Smith,rubiodouglas@example.org,882.324.9662x11604,4046019645927,2025-10-12 +City Hotel,1,35,2017,August,34,20,1,4,3,2.0,0,BB,ESP,Direct,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,240.5,0,0,Canceled,Teresa Marshall,rwilkinson@example.net,322.649.2376,3535543940301069,2024-06-07 +City Hotel,0,104,2017,April,16,16,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,165.38,1,0,Check-Out,Troy Navarro,lydiareeves@example.org,239.589.5683x0620,060476216217,2026-01-03 +City Hotel,1,110,2017,September,36,3,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient-Party,160.51,0,0,Canceled,Daniel Johnson,averymitchell@example.net,001-703-608-8512x3000,3553076024632387,2025-07-17 +City Hotel,1,70,2017,November,47,23,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,148.56,0,1,Canceled,Mario Henderson,dylan59@example.com,4113267015,180080634355766,2025-05-26 +Resort Hotel,0,236,2017,July,30,23,2,5,2,2.0,0,HB,FRA,Direct,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,225.42,1,1,Check-Out,Kelli Harrington,emilysnyder@example.org,(435)888-2623x6084,4235385919391668,2024-11-18 +Resort Hotel,1,22,2017,December,49,3,0,3,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,29.0,179.0,75,Transient,80.99,0,0,Canceled,Michael Morgan,fvasquez@example.net,655-829-4284,6011840761048993,2025-12-13 +City Hotel,0,1,2017,December,49,3,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.53,0,2,Check-Out,Laurie Andrews MD,april31@example.com,801-903-8032,38763578749532,2025-07-24 +City Hotel,0,53,2017,April,14,6,1,3,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.16,0,1,Check-Out,Edward Poole,fcombs@example.net,+1-654-896-9063x6350,4776112445370940,2024-09-08 +City Hotel,1,161,2017,July,31,31,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,129.73,0,1,Canceled,Steven Myers,jessica26@example.org,001-420-649-5020,4081647779285491589,2025-02-01 +City Hotel,0,2,2017,August,34,20,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,228.09,0,1,Check-Out,Megan Anderson,mcollins@example.org,(946)984-0918,180040228407191,2024-08-24 +Resort Hotel,0,11,2017,January,4,26,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,320.0,231.0,0,Transient,43.15,0,0,Check-Out,Jeffrey Morgan,walkerandrea@example.org,001-621-898-4057x9525,4287274619713826,2025-03-16 +City Hotel,1,115,2017,July,27,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,139.35,0,0,No-Show,Belinda Wang,colekrystal@example.com,409.254.7594,4642419463232,2024-07-09 +City Hotel,0,56,2017,August,35,27,0,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,235.61,0,1,Check-Out,Eric Ponce,nicholas95@example.net,845.302.3868x3925,3587623887065393,2024-10-09 +City Hotel,1,383,2017,March,12,19,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,1,No Deposit,12.0,179.0,63,Transient-Party,83.75,1,2,No-Show,Juan Cannon,fmadden@example.com,001-369-485-7715x1541,6011778017716114,2024-05-11 +Resort Hotel,0,21,2017,May,20,16,2,10,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,Refundable,245.0,179.0,0,Transient,131.38,1,1,Check-Out,Angel Best,dleblanc@example.net,+1-809-362-1944,639017944120,2025-09-08 +City Hotel,0,0,2017,January,4,27,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,James Rodriguez,hopkinsmelanie@example.net,(325)683-9323,4365128371484,2025-10-06 +City Hotel,1,0,2017,March,9,1,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,162.0,179.0,0,Transient,62.02,0,0,No-Show,Debbie Lee,moorejohn@example.com,370-972-5207x182,3547754884491172,2024-05-07 +City Hotel,0,14,2017,August,32,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient-Party,226.26,0,2,Check-Out,Sergio Garrison,christianhart@example.com,888.595.8557,3573604798817409,2025-03-25 +City Hotel,0,18,2017,March,11,15,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.87,0,1,Check-Out,Ashley Mueller,sarahhernandez@example.org,316.298.5925x974,4547078599970,2026-01-09 +City Hotel,1,390,2017,August,31,4,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,103.48,0,0,Canceled,Michelle Tanner,efowler@example.com,811.470.3188x78513,4329407014016045,2025-09-08 +City Hotel,0,2,2017,October,40,2,0,7,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,106.49,0,0,Check-Out,Wayne Alexander,kathleen21@example.net,+1-243-774-0706,4610135216977825,2025-03-11 +Resort Hotel,1,81,2017,December,52,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient-Party,48.09,0,0,No-Show,Kristin Wiley,nicholasharmon@example.org,816-501-5907,676352814443,2024-06-08 +Resort Hotel,1,19,2017,February,8,20,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,241.0,0,Transient,58.0,0,0,Canceled,Jorge Flowers,joneill@example.org,275-269-1914x11968,3576941057494562,2025-01-29 +City Hotel,1,19,2017,April,17,22,2,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,106.61,0,1,No-Show,Stephanie Arroyo,chavezdoris@example.com,(624)703-7900,4969023871787852,2026-01-16 +City Hotel,1,203,2017,March,12,17,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,62.64,0,0,Canceled,Jill Oliver,aprilalexander@example.com,(763)263-3228x553,676277879125,2025-07-17 +City Hotel,0,124,2017,May,21,26,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,22.0,179.0,19,Transient-Party,134.96,0,0,Check-Out,Angelica Foster,carolynfernandez@example.org,001-985-350-3850,4681272124103832,2024-06-19 +City Hotel,0,3,2017,April,18,27,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,B,1,No Deposit,15.0,179.0,0,Transient,109.96,0,3,Check-Out,Jessica Davidson,kmarshall@example.org,+1-426-528-1652x4437,4925411574966203227,2024-11-08 +City Hotel,0,1,2017,February,6,3,0,2,2,0.0,0,SC,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,45.8,0,0,Check-Out,Donna Davis,karen19@example.com,+1-635-600-0787x800,4910697028567,2025-08-28 +City Hotel,1,101,2017,July,29,21,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,2,No Deposit,80.0,179.0,0,Transient-Party,110.68,0,1,No-Show,David Riley,tschmidt@example.org,302-339-6067,675900540351,2025-07-04 +City Hotel,0,22,2017,June,24,10,0,6,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,28.0,45.0,0,Transient-Party,135.72,0,0,Check-Out,Stephanie Robinson,johnwang@example.org,+1-405-549-6769x76075,30288850896429,2025-04-16 +Resort Hotel,0,204,2017,July,30,23,2,1,2,0.0,0,HB,CN,Direct,Direct,0,0,0,E,D,0,No Deposit,246.0,179.0,0,Transient,234.81,1,2,Check-Out,Benjamin Moore,jacobmurphy@example.org,001-955-855-2582x256,4575146588105,2024-06-08 +City Hotel,1,213,2017,December,50,10,1,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.23,0,0,Canceled,Sherry Rodriguez,howellmichael@example.com,+1-667-518-2739x14464,568256694619,2025-03-06 +Resort Hotel,0,16,2017,February,8,18,2,5,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,141.0,179.0,0,Transient,75.54,0,1,Check-Out,Heather Santiago,zwatkins@example.org,+1-443-379-5049x2386,4861168099748829,2026-01-11 +City Hotel,0,40,2017,October,43,24,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,0,Transient,87.56,0,0,Check-Out,Bridget English,blairkaitlin@example.com,(676)603-5439x0446,36918617099321,2025-04-27 +City Hotel,1,217,2017,September,38,14,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,130.04,0,0,Canceled,Dr. Jessica Smith,jamiestark@example.org,281.991.3595x9147,4195121677045,2025-06-25 +City Hotel,0,47,2017,September,38,20,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,129.4,0,2,Check-Out,Edward Olson,velasquezashley@example.net,(543)634-8032x94050,4702741850553191,2024-06-09 +City Hotel,1,23,2017,June,26,27,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,162.62,0,0,Canceled,Jasmine Jones,jeffreymayer@example.com,+1-771-918-9173x009,345178646614618,2025-07-19 +Resort Hotel,0,59,2017,January,5,31,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,40.47,0,0,Check-Out,Jillian Long,jeffreymolina@example.net,001-385-445-6382x708,587266705942,2024-05-16 +Resort Hotel,0,27,2017,January,4,22,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,315.0,179.0,0,Transient,58.33,0,0,Check-Out,Victoria Yoder,caseyromero@example.org,353-765-7718,30199820549305,2025-11-22 +City Hotel,0,168,2017,April,15,8,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,82.0,179.0,0,Transient-Party,139.02,0,0,Check-Out,Brenda Williams,ginasmith@example.com,290-797-7180x64575,3560621837784593,2024-04-22 +City Hotel,1,151,2017,April,18,30,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,164.0,179.0,21,Transient,63.98,0,0,Canceled,Paula Choi,blackyvonne@example.org,848.423.2254x956,6575860248312844,2026-03-06 +City Hotel,0,21,2017,May,18,4,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,113.5,0,0,Check-Out,Tiffany Moore,kevin44@example.net,001-209-237-4251x97850,30191095168531,2024-07-06 +Resort Hotel,0,149,2017,August,35,30,2,5,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,220.92,1,3,Check-Out,Tracey Parsons,pmedina@example.com,7017839119,575151897023,2024-12-27 +City Hotel,1,104,2017,March,10,5,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.4,0,0,Canceled,Jackson Vance,tamaramorton@example.org,+1-411-500-8618x121,3557012735319267,2025-07-08 +City Hotel,0,96,2017,March,13,27,1,2,2,0.0,0,SC,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,82.02,0,0,Check-Out,Virginia Moore MD,peterclay@example.org,(720)793-8449,4327091234287990,2024-10-15 +City Hotel,0,13,2017,May,18,1,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,89.06,0,1,Check-Out,Richard Ellis,mariamanning@example.net,944-981-5676x41891,2298217125531787,2025-11-13 +City Hotel,0,291,2017,July,27,5,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,106.36,0,1,Check-Out,Laura French,cobbkyle@example.net,(532)247-0946x369,4401666086021131,2025-06-08 +City Hotel,0,50,2017,August,32,5,2,1,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,251.85,0,0,Check-Out,David Thornton,joshua34@example.net,782-349-8142x04859,6537660931160832,2025-07-18 +City Hotel,0,148,2017,October,41,10,0,3,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,11.0,179.0,0,Transient-Party,3.03,0,1,Check-Out,Reginald James,wendypennington@example.net,425.778.6685x208,4551202317652864010,2024-09-07 +City Hotel,0,2,2017,January,4,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,243.0,0,Transient-Party,167.52,1,0,Check-Out,Joshua Ramsey,amandaharris@example.com,001-240-214-5485x48204,5570276321235611,2025-05-06 +City Hotel,0,39,2017,October,44,30,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,1,D,D,1,No Deposit,239.0,179.0,0,Transient,133.68,1,3,Check-Out,Shane Rangel,romanjames@example.net,001-628-223-9777x697,180013101392855,2025-12-27 +City Hotel,0,88,2017,April,14,5,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,115.21,0,1,Check-Out,Christy Valdez,kingjennifer@example.com,+1-937-572-1747x17716,3539032945695184,2025-08-03 +City Hotel,1,46,2017,December,49,4,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,121.06,0,2,Canceled,Troy Johnson,murphymichael@example.org,+1-431-544-9077,5155693224804215,2025-02-01 +City Hotel,0,87,2017,March,11,11,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,127.33,0,1,Check-Out,Debra Nicholson,christopher68@example.com,666.382.6846x51147,213161737469968,2024-11-13 +City Hotel,0,310,2017,October,40,2,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,103.55,0,0,Check-Out,Samantha Sullivan,kayla31@example.com,932.650.8812x166,6571476668926536,2025-02-21 +City Hotel,0,1,2017,December,52,24,0,1,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.95,0,0,Check-Out,Beth Robertson,jdelacruz@example.org,001-953-212-1221x70478,2314794045357063,2025-03-07 +City Hotel,0,101,2017,April,17,26,2,5,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,226.34,1,1,Check-Out,Timothy Adams,victor06@example.com,+1-396-730-8886,3522512996867179,2025-10-19 +City Hotel,0,2,2017,July,30,24,1,0,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,88.83,0,0,Check-Out,Lindsey Villarreal,bsanchez@example.org,+1-487-970-2138x4192,4549266786652854626,2026-01-11 +City Hotel,1,373,2017,September,37,12,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,177.41,0,0,Canceled,Rebekah Velasquez,shawnenglish@example.com,787.569.5224,3520803639575564,2024-04-23 +City Hotel,1,167,2017,June,26,26,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,12.0,179.0,0,Transient,139.35,0,0,Check-Out,Jonathan Williams,kimberlymcdaniel@example.net,2988630943,639058292413,2026-01-31 +City Hotel,0,21,2017,November,46,15,0,5,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,83.68,0,0,Check-Out,Jonathan Mcmillan,mirandatravis@example.org,001-262-676-3527,3520409358918710,2024-08-09 +City Hotel,1,47,2017,May,20,13,2,0,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.51,0,0,No-Show,Donald Allen,reedkathleen@example.net,+1-683-889-4366x1823,4539421192849073,2024-12-12 +Resort Hotel,1,138,2017,July,29,17,0,3,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,164.3,0,1,Canceled,Amanda Williams,laurietaylor@example.org,383-716-7669x74343,4958636028012172,2025-07-06 +Resort Hotel,0,19,2017,July,28,9,4,6,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,133.5,0,2,Check-Out,Kevin Blair,veronicamanning@example.com,5209737523,4354125923299,2025-11-14 +City Hotel,0,57,2017,August,35,25,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,113.41,0,2,Check-Out,Wendy Snow,gonzaleskevin@example.org,918-850-4296,4776355457894030,2026-01-20 +City Hotel,0,52,2017,April,17,26,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.74,0,1,Check-Out,James Kim,johnguerrero@example.org,(251)409-0089x373,4796742462557411,2025-11-19 +Resort Hotel,0,389,2017,January,5,30,0,1,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,229.0,179.0,0,Transient,203.37,0,0,Check-Out,Mallory Abbott,maria92@example.com,+1-858-753-9049x3382,4254162057540,2024-08-27 +City Hotel,1,157,2017,August,35,31,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,173.64,0,2,Canceled,Jonathan Park,velezaustin@example.com,(218)366-0127x82156,6573784726602066,2025-01-20 +City Hotel,1,412,2017,October,41,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.93,0,0,Canceled,Shaun Knox,jamesyang@example.com,+1-612-817-1585x83446,213120581061263,2025-04-26 +Resort Hotel,0,53,2017,November,48,27,1,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,86.86,0,2,Check-Out,Michelle Marsh,mariah63@example.net,785.494.9711,563570274354,2025-01-10 +Resort Hotel,1,88,2017,June,26,26,3,4,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,D,0,No Deposit,243.0,179.0,0,Transient,106.86,0,1,No-Show,Nancy Scott,whiteallison@example.net,248-703-5164x72035,4437439059290523,2026-01-29 +City Hotel,0,2,2017,January,3,16,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,11.0,81.0,0,Transient-Party,52.56,0,1,Check-Out,Jonathan Patterson,donna99@example.org,(792)659-9002x871,4761185913467,2025-07-15 +Resort Hotel,0,50,2017,September,36,6,1,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,241.0,179.0,0,Transient,176.45,0,0,Check-Out,Donna Ryan,jonesjacqueline@example.com,701-859-7245x410,346007094672670,2024-10-02 +City Hotel,0,27,2017,June,27,29,0,6,3,1.0,0,BB,,Direct,Direct,0,0,0,G,G,2,No Deposit,14.0,179.0,0,Transient,250.2,1,3,Check-Out,Mr. Christopher Hunter PhD,wmcdaniel@example.com,(485)617-9369x7066,213102977229803,2024-09-27 +City Hotel,1,99,2017,July,30,20,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,105.14,0,0,No-Show,Danielle Swanson,hamiltonpaula@example.org,688-956-7197x726,30532241530431,2025-08-05 +City Hotel,0,29,2017,November,46,17,1,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,103.78,0,1,Check-Out,Kathryn Thompson,romeroheidi@example.org,692.782.2445,38069221947303,2025-02-08 +Resort Hotel,0,27,2017,April,17,22,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Check-Out,David Armstrong,eric20@example.org,(945)320-4936,3575593227051375,2025-04-29 +Resort Hotel,1,105,2017,December,49,5,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,85.22,0,0,Canceled,Christopher Harris,csnyder@example.org,(231)867-8239,373198053050739,2025-08-19 +City Hotel,1,1,2017,June,24,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.89,0,0,No-Show,Sean Davenport,ashleydavis@example.org,520-570-8501,4054727088591887138,2024-08-08 +Resort Hotel,1,238,2017,April,17,20,2,7,2,0.0,0,Undefined,GBR,Undefined,Corporate,0,0,0,A,D,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,92.14,0,0,Canceled,Sara Hull,cestrada@example.net,+1-274-744-8969x764,4635118876574992,2024-08-10 +City Hotel,1,3,2017,July,29,22,2,0,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,204.0,215.0,0,Transient,46.35,0,0,Canceled,Justin Johnson,xbell@example.com,(648)207-5835,180082609037882,2024-05-06 +City Hotel,0,105,2017,August,32,9,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,137.01,0,0,Check-Out,Rodney Lewis,hsmith@example.net,+1-735-979-1822x51343,3564359611311855,2026-01-20 +Resort Hotel,0,2,2017,March,12,21,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,16.0,76.0,0,Transient-Party,41.46,0,0,Check-Out,Mary Smith,rebeccadavis@example.net,732.994.3765x24530,580906538427,2024-08-01 +Resort Hotel,0,1,2017,March,13,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,C,1,No Deposit,18.0,215.0,0,Transient,38.57,0,0,Check-Out,Tiffany Green,tlee@example.org,571-800-3308,2479467578529579,2025-05-22 +City Hotel,0,1,2017,October,40,5,1,0,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Jennifer Mclean,nsanchez@example.org,001-497-531-0840,38492681129495,2024-08-30 +City Hotel,0,24,2017,December,50,9,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,138.32,0,1,Check-Out,Mr. Ronald Adams,jessicasullivan@example.com,929-456-1476x35775,30407661610304,2024-10-10 +Resort Hotel,0,8,2017,November,47,24,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,63.69,1,1,Check-Out,Julie Dominguez,paulkirby@example.org,601-578-4424,4545427893367,2025-06-05 +City Hotel,0,53,2017,April,15,8,0,2,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.01,0,2,Check-Out,Edward Butler,yblackwell@example.org,2822290595,2559482006851043,2025-08-04 +Resort Hotel,0,150,2017,July,30,22,0,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,G,1,No Deposit,24.0,179.0,0,Transient,102.27,0,1,Check-Out,Crystal Miller,schmittdanielle@example.net,436.527.8386x488,3591114322091768,2025-07-02 +City Hotel,0,51,2017,July,28,12,1,4,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,252.0,0,1,Check-Out,Michael Rodgers,douglastiffany@example.com,848.630.1086,3563031240796787,2025-08-07 +Resort Hotel,0,0,2017,January,2,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,11.0,223.0,0,Transient,44.27,0,0,Check-Out,Matthew Vasquez,elizabeth44@example.net,548-204-3004,573611782240,2025-03-20 +City Hotel,0,195,2017,July,27,5,2,7,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.76,0,1,Check-Out,Mary Cole,donna37@example.net,830.302.6399,6590896869359574,2025-09-01 +Resort Hotel,1,54,2017,April,17,26,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,61.7,0,0,Canceled,Tara Velasquez,zmacdonald@example.net,709-332-8511,4691150212224470,2024-11-12 +City Hotel,1,77,2017,May,20,13,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,112.13,0,1,Canceled,Janice Callahan,danielgarza@example.org,001-973-961-8890x229,346147974313753,2025-02-16 +City Hotel,0,277,2017,July,28,8,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,165.12,0,0,Check-Out,Mr. Justin Martinez,michaelrodriguez@example.com,(851)812-3745,180086810970138,2024-06-11 +Resort Hotel,0,393,2017,June,24,14,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,102.23,0,1,Check-Out,Nancy Peterson,tbailey@example.net,780.877.5893,4877106388420850496,2026-03-21 +Resort Hotel,1,156,2017,January,5,27,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,49.27,0,0,Canceled,Laurie Collins,jose09@example.org,(985)616-1054,3561159334491643,2025-02-13 +City Hotel,0,19,2017,March,9,1,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,9.0,179.0,0,Transient,86.53,0,2,Check-Out,Tammy Jones,alexwilson@example.org,559-383-7807x6357,4457820134690636,2025-01-18 +City Hotel,0,14,2017,February,6,3,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.39,0,1,Check-Out,Dustin Hanson,janemarquez@example.org,(850)490-5813x738,6011213459122035,2025-05-24 +Resort Hotel,0,0,2017,November,45,6,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,81.65,0,2,Check-Out,Kendra Watkins,benjamingay@example.net,9224544075,6011608832283794,2025-03-02 +Resort Hotel,1,100,2017,May,20,15,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,104.87,0,0,Canceled,Whitney Mcdonald,griffinkeith@example.com,+1-413-813-0026,30521833775785,2024-11-28 +City Hotel,1,35,2017,December,52,23,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,78.43,0,1,Canceled,Donald Jackson,kimberly76@example.org,752-917-6557,213104247857561,2025-03-24 +City Hotel,0,26,2017,December,52,30,0,2,2,1.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.19,0,0,Check-Out,Michael Spencer,bsawyer@example.net,282.282.4309x628,4386409285328299,2024-09-05 +Resort Hotel,0,236,2017,May,22,27,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,119.71,0,0,Check-Out,Jennifer Lawson,luis65@example.net,772-592-6032x0428,4149927897073771628,2025-01-17 +City Hotel,0,93,2017,March,10,9,2,2,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,135.87,0,2,Check-Out,Kimberly Bowers,jonathanking@example.com,6409654139,6011843382644018,2026-03-20 +City Hotel,0,1,2017,January,2,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,91.55,0,1,Check-Out,Joseph Glover,thomasanthony@example.org,750.316.2988x909,3503347388585458,2025-06-29 +City Hotel,1,0,2017,August,32,7,2,0,1,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,14.0,331.0,0,Transient,3.96,0,0,Canceled,Antonio Mcbride,nelsonsarah@example.org,+1-598-226-5796x919,3542256555145918,2025-08-22 +City Hotel,0,17,2017,January,4,22,2,2,3,0.0,0,BB,,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.05,0,0,Check-Out,Jason Choi,jameswells@example.net,(709)272-8203x787,675919863844,2024-09-18 +Resort Hotel,1,305,2017,December,49,8,1,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,277.0,179.0,0,Transient-Party,64.05,0,0,Canceled,Andrew Martin,patricia48@example.org,838-744-8455,2622618219356162,2025-04-09 +City Hotel,0,109,2017,April,15,9,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,160.0,179.0,0,Transient,127.58,0,1,Check-Out,Dawn Brown,ashley88@example.com,960.748.6682x81947,340745766166853,2024-11-25 +City Hotel,0,155,2017,March,11,15,1,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.23,0,2,Check-Out,Michael Cooke,jessica47@example.com,001-632-836-6860x4265,502006966951,2025-01-05 +City Hotel,0,315,2017,July,29,18,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,120.21,0,0,Check-Out,Cynthia Hoover,ryanhayes@example.net,897-792-2099,30111439603316,2025-06-18 +City Hotel,0,56,2017,April,14,5,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,96.88,0,2,Check-Out,Ashley Rodriguez,haroldwilliams@example.net,626.454.9540,213144010918802,2024-05-18 +Resort Hotel,1,240,2017,October,41,13,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,146.0,179.0,0,Transient,65.75,0,0,Canceled,Deborah Smith,david57@example.org,(603)803-6367x023,3589212757957505,2024-09-02 +Resort Hotel,0,3,2017,August,35,24,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,1,No Deposit,19.0,179.0,0,Transient,138.65,0,1,Check-Out,Jonathan Morris,kurttorres@example.org,450.540.4033x10708,2224033860735999,2025-10-01 +City Hotel,0,95,2017,June,27,29,0,4,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,140.04,0,1,Check-Out,Emma Anderson,muellernathaniel@example.net,+1-386-819-0627x0290,180060851078952,2024-10-30 +City Hotel,1,149,2017,May,20,14,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,103.61,0,0,Canceled,Christian Long,michellelarsen@example.com,695-610-4786x7244,213141859406139,2024-12-30 +Resort Hotel,0,50,2017,February,9,27,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,238.0,179.0,0,Transient,63.17,0,2,Check-Out,Donald Jenkins,jonathonsmith@example.com,794.360.6780x03477,4160384518591,2026-01-05 +Resort Hotel,0,112,2017,March,13,23,1,6,2,2.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,1,No Deposit,16.0,179.0,75,Transient-Party,118.84,1,1,Check-Out,David Gibson,lisa67@example.com,788-927-3350,213168925275743,2025-01-27 +City Hotel,1,45,2017,October,42,15,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,83.0,179.0,59,Transient,80.76,0,0,Canceled,Christine Jones,gabriela93@example.net,+1-694-249-3992,3554648554168815,2025-11-04 +City Hotel,1,157,2017,April,15,9,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,73.0,179.0,0,Transient,142.45,0,0,Canceled,Kenneth Payne,jonesjessica@example.com,538.285.3371x59357,213134360230932,2025-05-31 +City Hotel,0,182,2017,June,26,23,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,0,No Deposit,14.0,179.0,0,Transient,162.93,0,0,Check-Out,Joy Schaefer,hsmith@example.net,544-816-5446x0516,4397910439724,2025-09-20 +City Hotel,0,43,2017,June,26,26,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,177.05,0,2,Check-Out,Erin Novak,josecooley@example.org,954.567.0666x787,30088901149491,2024-11-12 +City Hotel,0,96,2017,October,42,20,0,2,2,0.0,0,HB,DEU,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,130.98,0,1,Check-Out,Suzanne Reynolds,fernandokelly@example.com,001-925-321-5510x87113,3535962669206632,2024-05-21 +City Hotel,1,4,2017,October,43,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,75.9,0,0,Canceled,Mary Harris,debra02@example.org,5545622201,378358336694753,2024-12-06 +City Hotel,1,147,2017,December,2,31,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient,131.96,0,0,Canceled,Michelle Andrews,powersjulian@example.com,(737)667-3560x6749,3547734373155934,2025-09-28 +Resort Hotel,1,250,2017,August,33,13,1,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,211.91,0,0,Canceled,Natasha Kim,danielellis@example.org,(624)908-4447x106,4794664353640,2025-06-25 +Resort Hotel,1,322,2017,January,2,8,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Contract,51.76,0,2,Canceled,John Ferguson,jessica27@example.net,470.536.0585,675978504164,2025-05-11 +City Hotel,1,50,2017,June,24,14,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,120.49,0,1,Canceled,Tony Hughes,francisashley@example.com,(231)813-4395,342776634414918,2024-06-01 +Resort Hotel,1,79,2017,December,50,12,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,257.0,179.0,0,Transient,82.3,0,1,Canceled,Bryan Mendez,williamjohnson@example.org,7395490281,589271651897,2025-10-20 +Resort Hotel,1,215,2017,September,35,2,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,88.0,179.0,0,Transient-Party,97.54,0,0,Canceled,Ashley Short,afrost@example.org,427.623.6016x77173,30559308515757,2025-02-05 +City Hotel,0,13,2017,January,2,6,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.23,1,1,Check-Out,Betty Valencia,thomaswilliams@example.com,(872)246-1766,4921611763841,2025-11-16 +City Hotel,0,183,2017,February,7,17,0,2,2,0.0,0,SC,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,79.76,0,0,Check-Out,Elizabeth Ruiz,johnnyhill@example.com,577.284.3601x5748,3505924153516443,2024-09-11 +Resort Hotel,0,90,2017,July,29,13,3,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,G,0,No Deposit,247.0,179.0,0,Transient,225.06,1,2,Check-Out,Carol Gonzalez,ashleywilliams@example.org,412-904-1797,3579592787456111,2024-08-02 +City Hotel,0,68,2017,September,36,9,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.74,0,0,Check-Out,Melinda Herrera,amber11@example.org,001-522-980-6084x74262,2240220853929016,2025-09-15 +City Hotel,0,122,2017,August,34,20,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,219.21,0,1,Check-Out,Joseph Cox,qallison@example.org,(759)574-7059x99561,4712615466881,2025-01-25 +Resort Hotel,1,62,2017,November,45,7,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,331.0,0,Transient-Party,76.13,0,0,Canceled,Vincent Ellis,canderson@example.net,+1-431-905-8638x7077,348694032266240,2024-07-09 +City Hotel,0,16,2017,August,31,2,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,235.82,0,1,Check-Out,Justin Roberson,daniel58@example.com,715.497.0277,4947070701733,2024-09-02 +City Hotel,0,0,2017,September,36,8,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.0,0,0,Check-Out,Amber Hess,jasonbrown@example.net,285.788.3276x809,630458737487,2025-03-22 +Resort Hotel,0,22,2017,November,46,16,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,47.86,1,1,Check-Out,Matthew Arias,justin19@example.com,727-365-7891,3534754530821785,2024-04-28 +City Hotel,0,15,2017,August,33,12,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,C,A,0,No Deposit,15.0,179.0,0,Transient,252.0,0,1,Check-Out,Robin Lawson,ricky88@example.org,(765)539-1195,3530385202076459,2025-02-15 +City Hotel,0,358,2017,August,35,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,78.56,0,0,Check-Out,Richard Oliver,michellegarcia@example.org,632.765.1625x51587,676307016607,2025-03-14 +City Hotel,1,253,2017,July,27,5,0,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,113.87,0,0,Canceled,Natalie Shields,brianrice@example.com,(974)528-8160x82322,4420696005026090,2024-05-09 +City Hotel,0,2,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,18.0,224.0,0,Transient-Party,68.19,0,0,Check-Out,Chelsea Friedman,mcclurerobert@example.net,(583)774-8318,676118487252,2024-12-25 +Resort Hotel,0,9,2017,April,18,27,2,6,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,E,0,No Deposit,345.0,179.0,0,Transient,56.81,0,1,Check-Out,Brian Anderson,njohnson@example.net,426.728.1997x968,4218653814313,2025-10-02 +City Hotel,0,7,2017,December,50,10,0,2,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,92.51,0,0,Check-Out,Rebecca Walsh,fcasey@example.com,264-563-4851x46151,38561849943839,2025-11-24 +City Hotel,0,14,2017,November,47,23,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient-Party,93.55,0,0,Check-Out,Madison Nolan,donaldbolton@example.net,529-370-5458x42639,4217647683304710,2024-10-02 +City Hotel,0,39,2017,March,11,12,0,2,2,0.0,0,SC,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.37,0,0,Check-Out,Janet Mckenzie,ryanflowers@example.org,685-648-0479x6875,2252541765870260,2024-08-16 +Resort Hotel,1,98,2017,April,17,26,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,129.0,179.0,0,Transient-Party,81.74,0,0,Canceled,Miranda Butler,ashleysalazar@example.net,001-912-615-2280x557,36654106896485,2025-05-29 +City Hotel,0,115,2017,June,26,24,0,1,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,26.0,179.0,0,Transient,104.23,0,0,Check-Out,Andrew Myers,aadams@example.net,001-468-671-4913x3669,213141446910676,2025-10-28 +Resort Hotel,0,0,2017,April,17,24,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,140.11,1,2,Check-Out,Daniel Conner,andersonjenna@example.org,274-307-6968,4852637079426458,2024-11-26 +Resort Hotel,0,127,2017,April,14,1,1,3,1,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,102.44,0,2,Check-Out,Victoria Gomez,teresa25@example.com,8845684745,4793921649361739366,2024-04-05 +City Hotel,1,12,2017,June,26,30,0,1,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.19,0,0,Canceled,Donna Dennis,melissa84@example.com,450.894.7488x071,6579054162034073,2024-06-29 +City Hotel,0,0,2017,May,19,12,0,7,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,1,1,Check-Out,Frank Nunez,paulfrancis@example.net,001-544-294-7781x169,3595976316854625,2024-05-24 +Resort Hotel,1,18,2017,December,50,13,4,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,328.0,179.0,0,Transient-Party,199.76,0,0,Canceled,Donald Young,thompsonerin@example.com,(525)470-5701x3965,4232014844463,2025-11-25 +Resort Hotel,0,41,2017,May,22,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,52.69,1,2,Check-Out,Emily Blackburn,johnnynorman@example.net,+1-480-827-7273,4953362683928,2025-06-23 +City Hotel,0,414,2017,September,38,16,2,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.6,0,1,Check-Out,Kelsey Campbell,jrichardson@example.org,732.954.2863,180022592373233,2025-01-02 +Resort Hotel,0,19,2017,January,2,4,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,64.94,1,1,Check-Out,Stephanie Brown,ryan34@example.org,746-724-0337x215,180020668269210,2024-04-27 +City Hotel,0,1,2017,August,34,20,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,178.72,0,3,Check-Out,Kendra Lopez,nelsonmichelle@example.com,219.769.4309,630414942221,2026-03-22 +City Hotel,0,53,2017,May,20,16,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,129.06,0,1,Check-Out,Amber Ramirez,hmitchell@example.net,001-621-645-6849x05161,4067355314262577,2024-11-11 +Resort Hotel,0,38,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Group,89.21,0,1,Check-Out,Troy Burke,wgarcia@example.org,600-876-7830x84509,6515640178014195,2024-12-23 +City Hotel,0,21,2017,October,42,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.58,0,1,Check-Out,Danielle White,edwardsscott@example.org,(734)437-9763,4081315497434465229,2024-07-18 +City Hotel,1,18,2017,April,15,11,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.08,0,1,Canceled,Kevin Bentley,amy43@example.org,4794594316,4495085165908,2026-01-23 +City Hotel,0,42,2017,November,45,9,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,113.97,0,3,Check-Out,Raven Johnson,michael81@example.net,+1-534-279-8394,4168861289159639,2025-05-08 +Resort Hotel,0,1,2017,March,10,2,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,51.32,0,2,Check-Out,Aaron Reilly,ilee@example.com,953-765-6017,4493297074951409,2025-11-16 +Resort Hotel,0,9,2017,January,4,22,2,3,3,1.0,0,BB,GBR,Direct,Direct,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,54.61,1,0,Check-Out,Alexander Harvey,james59@example.com,636.428.1265x4776,4126144707358709034,2024-12-28 +City Hotel,0,43,2017,October,40,4,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,237.0,0,Transient-Party,47.85,0,0,Check-Out,Brendan Grant,daniel75@example.com,(515)286-0879,180020789592078,2025-02-28 +City Hotel,1,248,2017,July,27,5,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,124.15,0,0,Canceled,Gary Norris,randyjackson@example.com,504-204-3074,3583987908966770,2025-02-09 +Resort Hotel,0,10,2017,August,31,2,0,3,2,2.0,0,BB,ESP,Online TA,Direct,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,237.27,1,0,Check-Out,Beverly Kane,eric92@example.org,426-880-2619x2982,375185202941171,2026-02-24 +Resort Hotel,0,1,2017,August,35,30,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,248.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Marvin Burns,perezbrian@example.com,349.521.1893x7202,4039159979891,2025-11-24 +City Hotel,0,16,2017,October,42,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,50.8,0,1,Check-Out,David Sanders,kcarr@example.com,001-401-768-9382,3518989760037641,2025-02-07 +City Hotel,0,4,2017,August,32,9,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.13,0,0,Check-Out,Jeremy Alvarez,andersontyler@example.org,+1-484-925-5415x604,213191955401195,2025-06-16 +Resort Hotel,1,108,2017,December,49,3,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,0,Transient,43.33,0,0,Canceled,Frank Grant,james32@example.org,417-305-7381x7735,2296935983653326,2025-11-10 +City Hotel,0,26,2017,August,32,6,0,3,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,239.0,179.0,0,Transient,252.0,0,2,Check-Out,John Davis,greensandra@example.org,+1-245-535-3585x43694,30382708852203,2024-08-24 +City Hotel,1,213,2017,March,10,6,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.86,0,2,Canceled,Jennifer Rodriguez,joshua72@example.net,(523)919-6639x183,4970684831824536,2024-05-06 +City Hotel,1,22,2017,October,43,24,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,88.03,0,0,Canceled,Danielle Robinson,paulwilson@example.net,389.554.6639x68912,2228147042569260,2024-07-30 +City Hotel,0,4,2017,August,35,26,0,1,1,0.0,0,BB,PRT,Online TA,Direct,1,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,222.72,0,1,Check-Out,Natasha Anderson,zwells@example.com,557-905-8805,341000979351325,2025-02-12 +Resort Hotel,1,2,2017,March,12,20,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,45.65,0,1,No-Show,Joel Williams,traviscooper@example.net,(655)261-2833x57483,6509053943855884,2026-03-16 +City Hotel,1,100,2017,September,38,15,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,19,Transient,113.75,0,0,Canceled,Benjamin Brown,carolyn60@example.org,614-625-0316,2617525571278586,2025-09-23 +City Hotel,1,142,2017,November,48,30,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,173.52,0,1,Canceled,Christine Scott,pwells@example.net,(786)246-0361x38033,4538162444926,2024-11-01 +City Hotel,0,1,2017,March,11,11,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.68,0,2,Check-Out,Mallory Hudson,ryan21@example.net,(830)694-0648,6544624470413110,2026-02-02 +City Hotel,0,12,2017,April,17,24,0,2,3,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,139.62,0,1,Check-Out,John Bond,bjones@example.com,+1-248-943-3873x1494,4158524728578500402,2024-07-19 +Resort Hotel,1,96,2017,August,33,13,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,61.94,0,0,Canceled,Lisa Mcclure,denise18@example.net,(954)677-8145x55536,4224857159521,2025-10-01 +City Hotel,0,267,2017,August,34,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.61,0,0,Check-Out,Stephanie Burnett,edwardsmatthew@example.org,+1-519-664-2060x72015,341274253880255,2025-10-04 +City Hotel,1,52,2017,December,51,20,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,90.84,0,2,No-Show,Daniel Wilkerson,hilleric@example.net,(618)533-3718,503876968721,2026-01-04 +City Hotel,0,101,2017,August,32,7,2,6,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,145.7,0,2,Check-Out,Sandra Morrison,paula17@example.net,7969555436,370988491531396,2024-06-22 +City Hotel,0,1,2017,July,28,10,2,2,1,0.0,0,SC,PRT,Corporate,TA/TO,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,2.79,0,1,Check-Out,Amanda Cole,tyrone81@example.net,+1-780-997-2990x918,676171751099,2025-05-28 +City Hotel,1,164,2017,August,34,17,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,241.0,179.0,0,Transient,227.47,0,0,Canceled,Kyle Hernandez,piercejeffrey@example.net,862-311-0793x7599,3544557853637557,2024-08-15 +City Hotel,1,367,2017,July,29,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,101.36,0,0,Canceled,Kyle Bradley,ellisrobert@example.net,8519125938,4139250045027610801,2025-08-01 +City Hotel,1,34,2017,February,9,27,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.84,0,1,Canceled,Emily Contreras,elizabethmaddox@example.com,(387)802-9756,4919388601244,2024-05-10 +Resort Hotel,1,43,2017,November,44,3,2,2,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,201.17,0,3,Canceled,Dwayne White,dylanreid@example.org,(450)632-5473x542,3595742071661336,2024-07-25 +Resort Hotel,0,12,2017,September,38,19,2,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,269.0,179.0,75,Transient-Party,128.02,0,0,Check-Out,Ann Shepard,michael39@example.org,(450)453-7804x1463,2233026819023102,2024-11-27 +City Hotel,0,14,2017,April,14,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.33,0,0,Check-Out,Christopher Whitaker,zhall@example.com,(254)566-0156,564969257653,2025-08-15 +Resort Hotel,0,8,2017,January,5,27,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,238.0,179.0,0,Transient,51.87,0,3,Check-Out,Selena Griffith,adamspaula@example.com,428-482-1310x090,2241714804395193,2025-08-21 +Resort Hotel,0,15,2017,January,2,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,63.03,1,1,Check-Out,Brandon Smith,jordanbrandon@example.com,001-233-714-7854x857,501877033313,2025-09-07 +City Hotel,0,38,2017,September,38,20,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,80.0,0,1,Check-Out,David Long,pbaker@example.net,+1-487-679-7941x1579,4335375383703570,2025-03-22 +City Hotel,0,2,2017,March,11,9,0,2,1,0.0,0,BB,DEU,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,89.16,0,0,Check-Out,Jenna Roberts,walkersamantha@example.net,2029574764,4815616707409,2025-01-08 +City Hotel,1,246,2017,October,42,20,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,110.07,0,0,Canceled,Christopher Strickland,holmeslarry@example.net,595.256.0864,4871439817875,2026-01-21 +Resort Hotel,1,98,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,78.23,0,0,Canceled,Jennifer Davis,bjohnson@example.com,001-834-440-3512x3026,30083262645096,2025-02-23 +City Hotel,1,167,2017,April,17,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,114.64,0,0,Canceled,Michael Hooper,robin48@example.org,961-704-7702x18605,4423302146011173479,2024-04-05 +City Hotel,0,143,2017,September,37,10,0,1,1,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,159.27,0,1,Check-Out,Lynn Ford,youngsara@example.com,001-391-919-7047x722,4558980148939,2025-04-18 +Resort Hotel,1,184,2017,May,18,5,0,2,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,1,No Deposit,362.0,179.0,0,Transient,115.8,0,0,Canceled,Thomas Rosario,wdeleon@example.net,(756)528-0977x8212,4225067928070267,2025-01-29 +City Hotel,1,1,2017,February,8,19,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,75.62,0,1,No-Show,Jonathan Flores,nathanmason@example.net,672-484-1140x085,3533139656458904,2025-06-01 +City Hotel,0,101,2017,November,47,23,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.02,1,1,Check-Out,Anthony Burton,lchang@example.net,(537)729-2167x61531,4053446871326313,2025-06-21 +City Hotel,1,33,2017,July,31,30,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,159.54,0,0,Canceled,Tamara Dorsey,mark92@example.org,(393)372-5564x5796,379580202665778,2024-08-05 +Resort Hotel,1,137,2017,July,28,12,4,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,121.28,0,0,Canceled,John Brown,hortonraymond@example.net,220-812-1759x54459,213195568792767,2025-11-21 +City Hotel,0,9,2017,January,5,29,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,88.11,0,1,Check-Out,Chelsea Christensen,lisaleblanc@example.com,001-637-822-4655,4920623409765926279,2025-07-27 +Resort Hotel,0,205,2017,May,19,6,1,1,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,222.0,0,Transient-Party,83.88,0,0,Check-Out,Adrian Chapman,horodney@example.com,286.575.6649x2798,30049778391970,2024-09-22 +Resort Hotel,0,156,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,11.0,223.0,0,Transient-Party,35.6,0,0,Check-Out,Mary Lewis,denisecain@example.org,001-763-814-4065x2047,4994062590955,2025-01-21 +City Hotel,0,297,2017,September,36,8,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,103.77,0,0,Check-Out,Gloria Simon,michaelwagner@example.org,(431)490-2879,213136747833809,2025-03-30 +Resort Hotel,0,9,2017,December,51,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Contract,92.31,0,1,Check-Out,Tyler Frederick,rhondagonzalez@example.org,001-228-940-9251x3597,374356678480272,2024-11-10 +Resort Hotel,0,157,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,38.16,0,0,Check-Out,Diane Wood,emilyvargas@example.net,+1-422-250-0103x2326,213186050031848,2025-10-13 +City Hotel,0,49,2017,February,8,23,0,2,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,D,1,No Deposit,72.0,179.0,0,Transient-Party,83.81,0,1,Check-Out,John Tran,qfields@example.org,316.236.8227x802,502041118121,2025-02-03 +Resort Hotel,0,36,2017,July,30,23,1,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,250.0,179.0,0,Transient-Party,98.57,0,2,Check-Out,Joel Johnson,owensnancy@example.com,001-292-661-6396x8472,6011276447224577,2025-01-11 +City Hotel,0,102,2017,April,15,9,1,2,2,0.0,0,BB,CHE,Direct,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,128.35,0,2,Check-Out,Robert Little,karen39@example.net,(840)356-6337,4745557032888605,2025-03-06 +City Hotel,0,25,2017,April,14,5,0,1,1,0.0,0,BB,,Direct,Direct,0,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,112.88,0,1,Check-Out,Michael Wilkins,alexhess@example.org,(792)472-5203x79644,503873100914,2024-10-12 +Resort Hotel,0,4,2017,January,2,10,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,64.82,0,0,Check-Out,Richard Hodges,huertajoseph@example.net,+1-877-699-1457,4880473350958,2025-03-10 +Resort Hotel,0,1,2017,February,7,14,0,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,121.31,0,2,Check-Out,Scott Mitchell,imorris@example.org,238.825.4326,563738062014,2025-01-08 +Resort Hotel,0,7,2017,July,29,18,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,133.34,0,1,Check-Out,Ana Phillips,stephen77@example.com,(252)741-4268,6011576303470887,2025-12-01 +City Hotel,0,56,2017,June,25,21,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,145.28,0,1,Check-Out,Curtis Martinez,adam18@example.org,(465)716-5027x27870,4247172938307618740,2026-03-06 +Resort Hotel,0,76,2017,May,21,23,4,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,59.08,0,1,Check-Out,Damon Dudley,thompsonmatthew@example.net,863-501-6099x0522,4648692474986,2025-10-05 +City Hotel,0,37,2017,September,38,18,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,123.27,0,1,Check-Out,Sabrina Robertson,danielskatherine@example.org,+1-460-581-9811,4690067007309632,2025-05-31 +City Hotel,0,14,2017,March,13,27,1,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.96,0,1,Check-Out,Nicholas Riddle,jamesnelson@example.net,001-691-349-4659x50227,4840791753807825,2026-01-27 +City Hotel,1,213,2017,August,33,19,0,3,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,173.01,0,0,Canceled,Michael Howard,flogan@example.com,998.456.8478x580,2293763065713153,2024-04-05 +Resort Hotel,0,151,2017,March,11,13,0,2,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,1,Refundable,12.0,223.0,0,Transient-Party,83.65,0,0,Check-Out,Heather Carpenter,mark70@example.com,001-881-971-9996x7323,344960678702622,2025-12-28 +City Hotel,0,10,2017,January,4,25,0,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,176.0,331.0,0,Transient,50.77,0,0,Check-Out,Jason Williams,willisjennifer@example.com,806.559.1738,4817493365325713,2025-10-25 +City Hotel,1,67,2017,August,34,22,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,G,D,0,No Deposit,13.0,179.0,0,Transient,133.46,0,0,Canceled,Tammy Hull,olsonsarah@example.net,969.350.2781,4954566347196301449,2025-12-31 +City Hotel,1,166,2017,October,42,16,0,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,155.85,0,0,Canceled,Daniel Manning,susan60@example.net,395.648.8653x38037,4106995363513,2024-04-16 +Resort Hotel,0,100,2017,July,28,10,3,4,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,240.0,179.0,0,Transient,119.84,0,1,Check-Out,Keith Foster,tammie56@example.com,+1-706-796-8887x55543,4981899798778,2024-08-25 +Resort Hotel,1,103,2017,June,25,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,94.61,0,0,Canceled,David Taylor,angela94@example.net,001-618-774-1589x95115,4040049289999212,2025-02-23 +City Hotel,1,14,2017,December,52,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,175.0,72.0,0,Transient,47.91,0,0,No-Show,Christopher Arellano,gabriellabrowning@example.org,+1-377-684-1988x70974,213140472451423,2024-09-10 +Resort Hotel,0,48,2017,September,37,15,1,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,126.68,1,1,Check-Out,Brandon Baker,carlymorgan@example.net,(755)731-4742x267,3511572966241386,2025-06-22 +City Hotel,1,414,2017,March,10,5,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.44,0,1,Check-Out,Thomas Walters,owensmatthew@example.net,(242)912-4786x06855,4838268928461,2024-10-16 +City Hotel,0,46,2017,September,38,17,0,2,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,246.68,0,3,Check-Out,Christina Davidson,jonesanita@example.org,729-849-5108x49272,2227129268246287,2026-02-15 +City Hotel,1,300,2017,September,35,1,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,113.26,0,0,Canceled,James Williams,justinsmith@example.net,(576)750-9122,3578471546360107,2025-03-30 +Resort Hotel,0,2,2017,February,9,27,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,2,No Deposit,305.0,233.0,0,Transient,1.88,0,0,Check-Out,Charles Jordan,katherinehenderson@example.org,(563)679-8335,4873224091940165,2025-07-14 +Resort Hotel,1,17,2017,July,28,12,1,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient-Party,49.39,0,0,Canceled,Cody Mathis,nwalker@example.net,(290)356-1523x072,2713001578854665,2025-10-20 +City Hotel,0,158,2017,August,35,28,2,5,2,1.0,0,BB,CHE,Direct,TA/TO,0,0,0,F,G,2,No Deposit,12.0,179.0,0,Transient,108.59,0,3,Check-Out,Billy Tyler,bankssara@example.net,+1-707-465-1947x168,30232779806473,2025-10-18 +City Hotel,0,52,2017,November,45,7,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,72.56,0,3,Check-Out,Kevin Thomas,griffithmichael@example.org,506.244.0965,676204829607,2025-02-12 +City Hotel,1,104,2017,December,50,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,63.64,0,0,No-Show,Richard Ward,thomassarah@example.org,845-439-1781,377643669432835,2025-02-17 +City Hotel,0,41,2017,August,35,30,1,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,248.48,0,3,Check-Out,Emily Werner,veronicamccarthy@example.com,+1-594-756-1070x47868,3598615333398367,2025-05-24 +Resort Hotel,0,1,2017,February,9,26,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,34.78,0,1,No-Show,Christian Lawson,btaylor@example.net,(383)358-6328x772,4892760860417076927,2025-04-02 +Resort Hotel,0,3,2017,February,8,18,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,48.58,0,1,Check-Out,Brandon Hays,lharrison@example.org,(883)415-7494x93022,4287306593326371,2025-09-21 +Resort Hotel,0,148,2017,February,7,10,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,46.45,1,2,Check-Out,Taylor Bradley,vwinters@example.net,001-697-798-5146x21726,3513710724382336,2024-11-03 +City Hotel,1,44,2017,October,40,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,130.0,179.0,43,Transient,115.71,0,0,Canceled,Kristin Johnson,crystalroberts@example.net,001-540-401-7639x1496,3524535396979144,2024-09-02 +City Hotel,0,0,2017,August,34,23,1,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,0,No Deposit,16.0,179.0,0,Transient,236.22,0,2,Check-Out,Megan Contreras,michaelstokes@example.org,(919)336-7897,370731629625213,2025-04-09 +City Hotel,0,49,2017,October,43,26,0,2,1,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,25.0,179.0,0,Transient-Party,76.72,0,1,Check-Out,Christina Brown,oramsey@example.org,(854)724-2025x547,5209113360857907,2024-10-01 +City Hotel,1,308,2017,July,27,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,43.9,0,0,Canceled,Kimberly Lewis,pwalker@example.net,(264)468-2939x954,3548254563061635,2025-05-29 +Resort Hotel,0,0,2017,December,52,24,2,5,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,44.4,0,2,Check-Out,Mrs. Kathleen Ellis DDS,fcase@example.net,001-393-214-0874x7739,4481571517571147,2024-07-04 +Resort Hotel,1,183,2017,August,31,2,4,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,242.0,179.0,0,Transient,200.78,0,0,Canceled,William Wagner,blackkatie@example.net,499-779-4529,340463497244920,2024-08-06 +Resort Hotel,1,94,2017,June,26,26,2,0,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,126.95,0,1,No-Show,James Hooper,mpierce@example.org,+1-577-487-8732x255,3518481439624041,2025-09-25 +Resort Hotel,1,53,2017,July,30,24,2,5,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Eric Hoffman,udixon@example.com,425-790-0636x6924,2700746205804047,2025-07-31 +City Hotel,0,50,2017,February,9,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,37.53,0,0,Check-Out,Michael Smith,shannonallen@example.com,+1-796-311-7394x22289,4832742100368174606,2025-08-11 +City Hotel,0,349,2017,September,36,7,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.61,0,2,Check-Out,Madeline Clark,doylerandy@example.net,(913)917-0191,4185856136543919,2024-04-14 +City Hotel,0,0,2017,August,32,10,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,65.0,1,1,Check-Out,Christopher Fleming,webbanna@example.net,5024806083,3538210233808815,2024-09-16 +City Hotel,1,262,2017,April,16,19,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,117.65,0,1,Canceled,Nicholas Moreno,rsmith@example.com,275-815-5239x834,213161839739623,2025-10-08 +City Hotel,1,23,2017,March,13,26,1,1,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,43,Transient,112.59,0,0,Canceled,Christopher Cobb,powens@example.org,(250)318-4508x7955,378415546953906,2024-08-02 +City Hotel,1,395,2017,June,23,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,97.79,0,0,Canceled,Kenneth Sparks,woconnell@example.org,837.221.7174,4746015500552806,2025-03-04 +City Hotel,1,101,2017,July,28,12,0,4,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.81,0,2,Canceled,Keith Jefferson,kelseywatkins@example.org,379-637-4146x64615,4054782524550,2024-09-28 +Resort Hotel,1,79,2017,December,49,2,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,63.75,0,0,Canceled,Thomas Thomas,llynn@example.net,+1-802-792-8405,4119801939249570,2025-12-16 +Resort Hotel,1,250,2017,May,18,2,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,121.26,0,1,Canceled,Robert Freeman,riverabrad@example.net,001-740-681-3346x61843,4843045778054112,2026-02-01 +City Hotel,0,19,2017,February,7,16,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,27.0,179.0,0,Transient-Party,77.64,0,0,Check-Out,Elizabeth Carey,dbrown@example.net,526-463-6947x359,6588043494503326,2026-02-27 +City Hotel,1,92,2017,July,31,27,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,218.14,0,0,Canceled,Joshua Robbins,ibarracarol@example.org,(260)320-4069x97589,4437720625708316,2025-05-30 +City Hotel,0,186,2017,May,18,2,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.5,0,0,Check-Out,Kara Brown,kara83@example.com,001-854-333-7302x92231,370199943813107,2025-04-20 +City Hotel,0,45,2017,March,10,2,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,47.37,1,0,Check-Out,Julie Lee,ian54@example.com,(383)813-5831,30285067154915,2026-02-19 +City Hotel,0,201,2017,June,25,15,1,0,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.76,0,1,Check-Out,Daisy Little,vbarker@example.org,(513)816-4340x8747,562970912894,2025-03-22 +City Hotel,1,246,2017,October,41,12,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,118.42,0,0,Canceled,Vanessa Butler,smithhunter@example.org,643-278-6408,4348692661670,2024-11-10 +Resort Hotel,0,0,2017,December,50,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,0,No Deposit,17.0,179.0,0,Transient,134.39,1,0,Check-Out,Hayden Pineda,mckeejustin@example.net,+1-332-738-9942,3553824883632828,2025-09-10 +City Hotel,0,17,2017,April,15,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,101.53,0,1,Check-Out,Nicholas Hughes,thompsonsusan@example.net,870-537-7032x97046,38969025000052,2024-12-17 +Resort Hotel,0,0,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,1,No Deposit,15.0,235.0,0,Transient,46.66,0,0,Check-Out,Veronica Berg,holson@example.net,504.356.1724,4828594964708220,2025-05-10 +City Hotel,1,203,2017,May,18,2,2,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,238.0,179.0,0,Transient,127.62,0,1,No-Show,Jonathan Dunn,bartonbrittany@example.org,357-750-8040,213111750441493,2024-11-01 +City Hotel,1,218,2017,September,36,7,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,99.43,0,0,Canceled,Nichole Dominguez,lwilliams@example.org,329-718-4028,4446627869822084,2025-05-24 +Resort Hotel,0,55,2017,July,26,1,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,86.08,0,1,Check-Out,Terri Jensen,paulandrews@example.com,850-549-9767,503812806423,2025-06-01 +Resort Hotel,0,44,2017,August,32,8,2,5,2,0.0,0,HB,FRA,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient-Party,119.6,0,0,Check-Out,Wesley Munoz,bonnierivas@example.com,507-251-1606,213134637279662,2024-12-13 +City Hotel,1,142,2017,July,29,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,118.81,0,0,Canceled,Dr. Nicole Frazier,davidware@example.org,358.950.3700,6552064753432512,2025-05-14 +Resort Hotel,0,59,2017,October,41,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,285.0,179.0,0,Transient,80.7,0,0,Check-Out,Marie Stout,jjohnson@example.com,(323)244-1894x043,180051302041293,2025-01-19 +Resort Hotel,0,41,2017,April,18,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,311.0,179.0,0,Transient,44.14,0,0,Check-Out,Joseph Simmons,william71@example.net,635.451.1625,30591993096207,2025-05-13 +Resort Hotel,0,11,2017,February,7,13,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,246.0,223.0,0,Transient,47.51,1,0,Check-Out,Jennifer Miller,jennifercooke@example.com,213.833.0891x151,4705946168086217,2024-09-28 +Resort Hotel,0,2,2017,December,49,5,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,D,D,0,No Deposit,177.0,67.0,0,Transient,94.14,0,0,Check-Out,Denise Horn,ljordan@example.com,(409)639-9559x25144,6011926239577976,2025-02-25 +City Hotel,0,33,2017,March,13,23,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.02,0,0,Check-Out,Crystal Rios,garzachristina@example.org,948-459-1346x2881,6011671093107607,2025-11-10 +City Hotel,1,0,2017,January,3,16,0,3,1,1.0,0,BB,POL,Direct,Corporate,0,0,0,B,D,1,No Deposit,12.0,179.0,0,Transient,100.08,0,2,No-Show,Kimberly Stephens,obenson@example.net,3806774686,4110152351954079840,2026-02-19 +Resort Hotel,1,8,2017,November,44,2,0,2,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,C,1,No Deposit,137.0,179.0,0,Transient,49.54,0,0,Check-Out,Kerry Lee,deleondavid@example.com,(887)960-7772x3096,3551229176863209,2024-08-14 +City Hotel,1,302,2017,October,40,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.45,0,0,Canceled,Kevin Ballard,gjimenez@example.org,416-558-0534x05172,213178376000292,2024-12-29 +City Hotel,0,3,2017,July,27,4,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,80.71,0,0,Check-Out,Rachel Harris,randy89@example.com,5734191567,3539533677392890,2024-07-27 +City Hotel,0,14,2017,September,38,20,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,78.59,0,0,Check-Out,Lindsey Glover,stanleylamb@example.com,(705)510-0529,4119089074908792,2025-09-26 +Resort Hotel,1,82,2017,July,30,22,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,237.0,179.0,0,Transient,148.43,0,2,Canceled,Lisa Roman,hufftimothy@example.net,+1-971-479-0160x488,676359790190,2024-12-05 +City Hotel,0,46,2017,August,32,5,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,165.19,1,0,Check-Out,Michael Moore,aprilchapman@example.com,+1-216-978-1211,676129960008,2025-05-17 +City Hotel,0,19,2017,October,41,11,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,86.72,0,1,Check-Out,Alyssa Cruz,carolyn23@example.net,735-810-1181,5529442009954053,2024-04-11 +City Hotel,0,135,2017,March,13,28,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,73.0,179.0,0,Transient,125.39,0,0,Check-Out,Phillip White,wrightmatthew@example.net,(566)703-5380,3508807947080155,2026-03-18 +City Hotel,0,16,2017,March,13,23,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.09,1,1,Check-Out,Christian Carpenter,probinson@example.org,503.865.3006x90794,4834720796898441696,2024-11-14 +City Hotel,0,35,2017,November,45,9,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,51.72,0,0,Check-Out,Daniel Hebert,maryfernandez@example.net,6793791659,2292841857214605,2026-03-01 +Resort Hotel,1,63,2017,June,26,23,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,107.59,0,2,Canceled,Roger Walsh,morantanya@example.net,001-404-378-7961x4021,378905155582319,2025-03-09 +Resort Hotel,0,11,2017,March,10,10,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,300.0,179.0,0,Transient,89.45,0,1,Check-Out,Meghan Carter,shelbytate@example.net,001-538-682-4957x5211,6506422319682573,2024-08-31 +Resort Hotel,1,51,2017,March,13,29,2,5,2,1.0,0,HB,DEU,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.7,0,1,Canceled,Juan Miller,santiagokenneth@example.net,289.315.4228,180092132283028,2024-06-21 +Resort Hotel,0,142,2017,April,14,1,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,0,Refundable,13.0,222.0,0,Transient-Party,84.34,0,0,Check-Out,Mr. Bryan Larson,kimberly12@example.com,3948471067,377769811361505,2024-08-26 +Resort Hotel,0,239,2017,October,42,20,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,80.32,0,0,Check-Out,Cody Bass,timothy38@example.net,554.362.8904,4525456270037800968,2024-05-15 +City Hotel,1,250,2017,June,25,19,0,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,D,A,0,Non Refund,10.0,179.0,0,Transient,91.0,0,0,Canceled,Gregory Smith,hblanchard@example.net,678-521-0758x3898,5452526637206596,2025-04-02 +Resort Hotel,0,136,2017,January,4,22,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,Refundable,11.0,331.0,0,Transient,42.99,0,1,Check-Out,Danielle Alvarado,hoffmandavid@example.net,579.597.3863x2818,346566771442632,2025-07-28 +City Hotel,1,163,2017,June,24,12,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,81.71,0,1,Canceled,Mark Ross,stoneelizabeth@example.com,6565377804,6011149998480353,2025-07-11 +Resort Hotel,0,144,2017,March,13,31,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,64.24,0,0,Check-Out,Melissa Smith,heathscott@example.com,978.505.9450x1221,4559595111686487,2025-07-22 +City Hotel,0,1,2017,July,28,9,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,100.58,0,1,Check-Out,Brian Perkins,daniel01@example.com,824-731-5093x11863,588382454324,2024-12-06 +Resort Hotel,1,93,2017,May,21,23,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,79.14,0,0,Canceled,Dr. Tiffany Bennett MD,daniel67@example.com,2652892103,30585477901973,2026-03-03 +City Hotel,1,103,2017,March,10,3,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,99.49,0,0,Canceled,Christy Todd,kellyanderson@example.com,(341)747-2172x52747,3588555344857989,2025-03-11 +Resort Hotel,1,160,2017,April,17,20,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,C,1,No Deposit,237.0,179.0,0,Transient,112.46,0,1,Canceled,Sarah Moreno,sanchezashley@example.org,001-733-776-4541x0448,3527596015873503,2024-10-10 +Resort Hotel,0,22,2017,April,18,30,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,138.24,0,2,Check-Out,Daniel Shields,davisjuan@example.org,001-785-875-9710x4027,3513976019959563,2025-07-07 +City Hotel,1,193,2017,May,19,11,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,272.0,179.0,0,Transient,124.29,0,0,Canceled,Karen Watson,gary38@example.net,9284776049,213152264250129,2024-10-16 +City Hotel,0,0,2017,October,40,5,2,1,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,G,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Dustin Vasquez,ashleymoore@example.com,766-929-5092,370561453825484,2024-12-06 +City Hotel,0,48,2017,November,45,10,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,63.0,0,Transient-Party,62.22,0,1,Check-Out,Brian Marshall,zrichard@example.org,+1-233-578-6656,2232427902399477,2024-12-19 +City Hotel,0,6,2017,December,49,3,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,109.21,0,1,Check-Out,Stephanie Vaughn,lewisjose@example.com,001-478-511-9256x25504,2242885270908369,2024-11-24 +City Hotel,1,48,2017,October,42,16,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,88.58,0,0,Canceled,Casey Taylor,campbellangela@example.net,(310)590-5665x3248,3518119238007055,2024-04-25 +City Hotel,0,18,2017,December,52,28,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.56,0,1,Check-Out,Susan Anthony,zcantu@example.net,+1-934-442-8057,6545255738239036,2025-04-20 +Resort Hotel,0,21,2017,March,13,27,0,1,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,185.0,179.0,0,Transient,62.18,0,1,Check-Out,Marcus Douglas,adavis@example.net,(448)278-9960,4247763061590281855,2024-10-26 +Resort Hotel,0,0,2017,May,22,25,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,323.0,179.0,0,Transient,82.25,1,0,Check-Out,Kelly Callahan,brittany12@example.org,513-974-3355,4758989201681098719,2024-10-23 +City Hotel,0,31,2017,October,40,1,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient,81.0,0,1,Check-Out,Monica Campbell,ejenkins@example.org,(596)719-1893x3215,3591081660647230,2025-03-24 +City Hotel,0,239,2017,March,10,5,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,81.06,0,1,Check-Out,Margaret White,uhiggins@example.com,(919)289-7216x94120,347967463501397,2026-01-14 +City Hotel,1,47,2017,August,32,6,0,5,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,140.57,0,0,Canceled,Brian Wade,sreed@example.org,001-264-853-9960x4994,180059752814572,2025-01-09 +Resort Hotel,0,0,2017,February,6,8,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,163.0,179.0,0,Transient,87.43,1,1,Check-Out,James Burke,nguyenregina@example.org,5649809062,4241123660424707,2026-03-05 +City Hotel,0,89,2017,March,10,9,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,25.0,179.0,0,Transient-Party,98.69,0,0,Check-Out,Cassandra Wolfe,tshaffer@example.com,+1-702-493-7428,4985332371278292133,2025-02-26 +City Hotel,0,97,2017,June,24,8,0,1,1,1.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,115.84,0,3,Check-Out,Brenda Fitzgerald,colemankevin@example.com,001-535-705-9567x17837,4358066672797315038,2024-11-11 +City Hotel,0,158,2017,April,18,30,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,71.53,0,1,Check-Out,Michael Cruz,brian90@example.net,446.777.1161x918,4213463632062,2025-12-28 +Resort Hotel,0,171,2017,August,32,8,0,4,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,3.72,0,1,Check-Out,Matthew Williams,joseph83@example.org,(778)380-9037,6011310899959701,2024-09-26 +Resort Hotel,1,146,2017,December,48,2,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,110.21,0,0,Canceled,Daniel Garcia,jrichards@example.org,798-669-0547x3439,676311677816,2025-06-25 +Resort Hotel,0,33,2017,December,48,2,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,290.0,179.0,0,Transient-Party,49.89,0,1,Check-Out,Gregory Roberts,mary26@example.org,(295)803-4994x927,4525215134944903244,2025-11-16 +Resort Hotel,0,113,2017,March,13,28,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,117.33,0,1,Check-Out,Susan Lewis,tsalinas@example.net,569-717-4405x8834,38062104112376,2025-12-26 +City Hotel,1,2,2017,February,9,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,57.0,0,Transient,41.85,0,1,No-Show,Kathleen Johnson,hendersonjacob@example.org,(630)970-0941x1336,4917695368091071,2026-01-29 +City Hotel,0,10,2017,September,39,25,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,108.0,1,0,Check-Out,Angela Griffin,nicholas43@example.net,001-440-919-9994x4344,343335110543606,2025-10-08 +City Hotel,1,118,2017,May,21,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,139.47,0,0,Canceled,Robert Benitez,johnathan71@example.net,001-681-800-2651x5591,180064202952675,2026-01-17 +City Hotel,1,52,2017,March,13,27,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,127.09,0,1,Canceled,Ronald Herrera,xrowland@example.org,(621)595-6306x817,4918842319922,2025-12-30 +City Hotel,0,113,2017,May,21,23,2,2,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,141.2,0,2,Check-Out,Tiffany Smith,alison57@example.org,366-590-9902x75581,675924657371,2024-07-05 +Resort Hotel,0,0,2017,January,2,1,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,2,No Deposit,240.0,179.0,0,Transient,63.11,0,2,Check-Out,Gary Hunter,amy44@example.com,+1-347-693-8848x64299,3520220748741062,2025-10-02 +City Hotel,1,0,2017,July,30,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,B,B,0,No Deposit,8.0,179.0,0,Transient-Party,78.37,0,1,Canceled,Nicole Reynolds,angela24@example.com,930.232.9134,4062807696600928,2025-12-09 +City Hotel,0,14,2017,July,30,20,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.58,0,2,Check-Out,Alan Jackson,lambertkimberly@example.com,278.526.4998x51427,6517875601649021,2024-05-07 +Resort Hotel,1,85,2017,April,18,27,1,4,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,1,Canceled,Elizabeth Webb,richardsdavid@example.org,638.352.5985,4092224715790496,2025-04-12 +Resort Hotel,1,40,2017,May,20,17,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,216.73,0,2,Canceled,Terri Clark,rosegeorge@example.org,642-664-1746x5276,4813976198160970,2024-11-28 +City Hotel,1,67,2017,November,45,8,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.24,0,0,Canceled,Diane Nunez,daviddunn@example.org,+1-968-579-2807x356,343817785993588,2025-05-25 +Resort Hotel,0,12,2017,March,12,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,123.0,179.0,0,Transient,41.4,0,1,Check-Out,Craig Franklin,michaelhammond@example.net,+1-262-338-3428,4832902461534870923,2024-07-13 +Resort Hotel,0,13,2017,July,30,24,2,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,87.11,0,0,Check-Out,Benjamin Ortega,smithemma@example.org,670-988-6896,676238756024,2025-05-21 +City Hotel,0,3,2017,February,8,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,118.94,0,0,Check-Out,Frank Flores,roypeggy@example.net,+1-664-629-5332x15675,371788712350702,2024-09-01 +City Hotel,1,0,2017,April,15,8,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,266.0,0,Transient,5.68,0,0,Canceled,Kathryn Martin,espinozageorge@example.net,210.514.4631,38506475259976,2025-08-22 +City Hotel,0,99,2017,March,10,8,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,43,Transient,106.5,0,0,Canceled,Timothy Griffin,pamela28@example.com,(649)718-4447x017,3545238134584566,2025-08-16 +City Hotel,1,311,2017,October,41,8,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient,91.78,0,0,Canceled,Jonathan King,danielle44@example.net,(427)757-9593x0694,6577085199377004,2024-06-01 +City Hotel,0,53,2017,October,41,13,2,2,1,0.0,0,SC,DEU,Groups,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,80.43,0,0,Check-Out,Johnathan Gross,nicole66@example.net,546-240-1588x103,348945709263005,2024-07-30 +City Hotel,0,3,2017,August,32,6,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,228.51,0,0,Check-Out,Molly Ferrell,staffordkenneth@example.com,+1-641-735-2963x91944,213108424586596,2024-06-03 +City Hotel,1,156,2017,July,30,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient,98.99,0,2,Canceled,Jenna Keller,todd34@example.com,524-885-7082,4178024230431940,2026-03-01 +City Hotel,0,18,2017,October,44,31,1,1,1,1.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,246.0,170.0,0,Transient,2.29,1,1,Check-Out,Gina Hicks,johnstonmichael@example.org,759.838.7448x5958,4793170489529094216,2024-10-25 +City Hotel,1,141,2017,May,20,19,3,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,108.35,0,0,Canceled,Mitchell Smith,charles79@example.com,(703)847-9411x1902,2717077276874185,2026-03-03 +Resort Hotel,0,2,2017,July,27,7,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,242.67,0,1,Check-Out,Mr. Christopher Davidson DVM,loricook@example.net,+1-948-541-7855x59021,30582522534719,2025-06-26 +Resort Hotel,1,314,2017,December,49,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,55.2,0,2,No-Show,Neil Dunn,brandonbrown@example.org,381-992-8176x221,346249932315084,2026-01-05 +Resort Hotel,0,38,2017,May,18,3,1,5,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,2,No Deposit,247.0,179.0,0,Transient,252.0,0,0,Check-Out,Autumn Norris,gavin28@example.com,001-983-790-6995x43947,580974374002,2024-07-25 +Resort Hotel,0,125,2017,July,29,15,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,141.93,0,1,Check-Out,Bianca Ward,simondwayne@example.com,001-809-942-2570x62152,4965116751728,2025-04-28 +City Hotel,0,7,2017,April,15,11,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,64.98,0,1,Check-Out,Christopher Mckenzie,kgarcia@example.com,200.979.1192,4564071301890,2025-02-28 +City Hotel,0,19,2017,June,23,3,0,3,2,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,108.29,0,0,Check-Out,Jeffery Gonzalez,ysanchez@example.com,994.936.9759x1008,30176375947639,2026-02-24 +City Hotel,1,149,2017,October,42,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,109.06,0,0,Canceled,Andre Blackwell,jjohnson@example.net,001-971-296-9462x853,4632797372022268,2025-07-13 +Resort Hotel,0,2,2017,July,30,24,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,236.93,1,1,Check-Out,Helen White,mitchellbobby@example.org,717.384.6290x88811,4288406378259869,2024-07-10 +Resort Hotel,1,39,2017,September,36,8,2,6,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,182.0,179.0,0,Transient,75.88,0,0,Canceled,Ernest Jones,margaret20@example.com,+1-832-316-8886x47807,6011103711131876,2025-06-19 +Resort Hotel,0,32,2017,December,2,31,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,83.65,0,1,Check-Out,Micheal Nelson,mandrews@example.com,602-257-5414,38183853225217,2024-11-18 +City Hotel,0,177,2017,September,39,24,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.56,0,2,Check-Out,Rebecca Ball,jacobrose@example.net,+1-617-424-1353,4402327959566947,2024-07-15 +City Hotel,1,2,2017,May,22,27,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,159.34,0,0,No-Show,Michael Nelson,ymills@example.org,752-739-6392x98764,2244377271693974,2025-05-25 +Resort Hotel,1,190,2017,August,33,14,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,83.75,0,0,Canceled,Robert Gonzales,erollins@example.org,(619)866-9369x312,582457094222,2025-01-18 +Resort Hotel,0,37,2017,March,12,24,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,1,A,C,2,No Deposit,16.0,222.0,0,Transient,50.31,0,1,Check-Out,Jordan Sullivan,kristenowens@example.net,728.570.5087x2274,3573947566233592,2025-06-03 +City Hotel,1,414,2017,October,40,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.39,0,0,Canceled,Matthew Martin,lewismichael@example.net,885.310.8061,676392780398,2025-08-23 +Resort Hotel,0,66,2017,October,41,13,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,80.95,0,0,Check-Out,Rebecca Gallegos,christine76@example.com,(556)390-2149x8450,3585468619653245,2025-09-20 +City Hotel,0,13,2017,October,40,2,4,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,28.0,179.0,0,Contract,62.69,0,1,Check-Out,Matthew Johnson,logan90@example.org,(860)576-2229x22023,4812125300703928,2025-12-27 +City Hotel,0,164,2017,July,28,8,2,5,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,102.37,0,1,Check-Out,Kimberly Miller,jason84@example.net,(222)376-6084x7335,213166416315960,2024-10-07 +City Hotel,1,11,2017,March,12,21,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,162.98,0,1,No-Show,William Boyd,esmith@example.org,608-470-5044x14543,5264109653932714,2024-05-10 +Resort Hotel,0,13,2017,January,2,9,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,48.33,1,0,Check-Out,Suzanne Garcia,jennifersmith@example.org,614-487-9050x3439,30069404786625,2025-11-17 +City Hotel,0,414,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.54,0,0,Check-Out,Sarah Nicholson,cesar14@example.com,728-877-9061x36502,2331978148034583,2025-01-04 +City Hotel,1,380,2017,June,23,6,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,172.0,0,Transient,107.76,0,0,Canceled,Jason Flynn,colleenjohnson@example.net,9978323485,2243400973595650,2025-11-27 +Resort Hotel,1,15,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,D,E,0,No Deposit,238.0,179.0,0,Group,57.68,0,1,Canceled,Jeffrey Barrera,dawnpadilla@example.com,243.310.5099x49702,4235645617652400,2025-05-23 +City Hotel,1,206,2017,June,24,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,Non Refund,10.0,179.0,0,Transient,197.1,0,0,Canceled,Gina Adams,stonelauren@example.org,969.634.4736x292,3559049785686623,2024-08-22 +City Hotel,1,204,2017,June,24,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,39,Transient,103.16,0,2,Canceled,Allen Webb,kboyle@example.net,(221)562-1309x0560,30078213747835,2025-10-08 +City Hotel,1,10,2017,December,51,18,2,2,2,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,147.43,0,0,Canceled,Rachel Cole,hallstephanie@example.org,+1-971-871-1936x38774,30330942719555,2024-09-21 +Resort Hotel,1,147,2017,June,23,3,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,248.0,179.0,0,Transient,64.32,0,1,No-Show,Benjamin Lam,bryantjulie@example.net,+1-551-263-1848x795,2287609976108819,2025-03-01 +Resort Hotel,1,1,2017,October,41,13,4,0,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,364.0,179.0,0,Transient,38.41,0,0,Canceled,Julie Lindsey,francis56@example.net,7035706721,6556329545074138,2024-08-07 +Resort Hotel,1,143,2017,December,2,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,111.43,0,0,Canceled,Christian Harris,staffordmichael@example.net,(204)540-5452,6551515284709562,2025-10-02 +City Hotel,0,15,2017,November,47,23,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Group,85.78,0,1,Check-Out,Michael Bell,qhall@example.org,001-928-415-5011x4176,060467178335,2024-05-25 +City Hotel,1,33,2017,August,31,4,0,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,178.33,0,0,No-Show,Jesse Sawyer,delliott@example.net,5653727037,2331820058456093,2025-10-10 +City Hotel,0,40,2017,July,30,27,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,78.27,1,1,Check-Out,Matthew Morris,joneswilliam@example.net,001-800-633-8293x109,30253170621378,2025-02-23 +Resort Hotel,1,38,2017,August,34,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,86.28,0,0,Canceled,Charles Williamson,sberg@example.net,438.322.9504x7066,4364105919282,2024-10-15 +Resort Hotel,0,93,2017,June,24,14,0,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,252.0,0,2,Check-Out,Kevin Norris,christopher99@example.com,(351)883-5622x65759,344772123251760,2024-09-19 +City Hotel,0,62,2017,September,37,12,2,2,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.46,0,3,Check-Out,Kelly Peters,bcook@example.org,(666)722-7820x992,4046976815847016,2026-03-02 +Resort Hotel,1,14,2017,January,3,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,46.33,0,0,Canceled,Heather Shaw,zacharymccullough@example.net,001-562-430-8802x08552,4439345028909176,2026-01-24 +City Hotel,1,324,2017,July,28,11,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.7,0,0,Canceled,Jimmy Jackson,loriwhite@example.com,951-300-4032x94774,676112146383,2025-05-19 +City Hotel,0,163,2017,April,18,29,2,7,1,1.0,0,BB,BEL,Direct,Direct,0,0,0,C,G,1,No Deposit,14.0,179.0,0,Transient,115.66,0,1,Check-Out,Tiffany Lewis,ggilbert@example.net,(826)952-0412,4264331574358,2026-02-17 +Resort Hotel,0,9,2017,August,34,24,1,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,308.0,209.0,0,Transient,50.48,1,0,Check-Out,Mercedes Snow,gibsonbenjamin@example.org,001-739-334-9556,4783589124585990,2025-10-10 +Resort Hotel,0,41,2017,September,38,20,2,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,Carla Santana,yking@example.org,835.989.2908x711,30280645418411,2025-10-07 +Resort Hotel,1,104,2017,March,10,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,235.0,179.0,0,Transient,65.94,0,0,Canceled,Robert Sanchez,katelyndavis@example.org,+1-756-678-6949x98393,4162001741393619,2024-12-31 +Resort Hotel,0,0,2017,February,5,3,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,243.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Mary Gonzalez,christopherlong@example.net,459.484.6358x58952,3585004147199532,2025-09-16 +City Hotel,0,380,2017,July,29,14,0,3,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,107.35,1,0,Check-Out,Kelsey Cannon,jamie96@example.org,+1-534-828-2675,345971770872881,2024-09-21 +Resort Hotel,0,36,2017,June,25,20,2,2,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,F,G,1,No Deposit,241.0,179.0,0,Transient,85.38,0,3,Check-Out,Dustin Taylor,awilliams@example.com,479.781.2636,4718820648805469,2024-12-06 +Resort Hotel,0,299,2017,August,32,9,4,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,85.13,0,1,Check-Out,Kevin Hall,iblack@example.com,(702)582-5105x151,213146445516440,2024-08-12 +City Hotel,1,155,2017,April,15,12,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,163.0,179.0,0,Transient,105.13,0,0,Canceled,Jenna Rhodes,zhall@example.net,8525258305,4994459314128826,2025-04-21 +Resort Hotel,1,337,2017,September,36,3,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,132.02,0,3,Canceled,David Jones,wcarney@example.net,972.336.4469,4813085997999,2025-10-03 +City Hotel,0,33,2017,November,46,12,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.79,0,1,Check-Out,Jennifer Gibson,jasonbennett@example.org,264.282.7041,4008909294950,2024-09-28 +Resort Hotel,0,15,2017,July,29,14,4,10,1,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,51.19,0,0,Check-Out,Wesley Kennedy,mcleanrobert@example.com,(922)275-0915,3589963931266532,2025-12-19 +Resort Hotel,0,17,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,65.21,0,2,Check-Out,William Perez,ochavez@example.net,370.954.8836,6530599316612511,2024-07-31 +City Hotel,1,50,2017,October,41,8,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,82.61,0,0,Canceled,Eric Smith,amyhart@example.org,375-503-3849x63790,675996172325,2024-05-04 +Resort Hotel,0,56,2017,September,39,27,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,68.07,0,0,Check-Out,Christopher Christian,brittneyharrell@example.com,001-981-420-1311x553,2253278441041318,2026-02-16 +Resort Hotel,0,65,2017,October,41,13,2,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,87.47,0,1,Check-Out,Cory Nelson,johndennis@example.com,+1-905-507-5034x4224,38258896230927,2025-09-04 +City Hotel,1,2,2017,December,50,13,1,1,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,E,0,No Deposit,13.0,179.0,0,Transient,62.3,0,0,No-Show,Dennis Rich,natasha95@example.org,485.643.2214x2127,4605826831705,2024-07-03 +Resort Hotel,0,1,2017,March,10,8,1,7,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,16.0,179.0,75,Transient-Party,62.86,1,3,Check-Out,James Gonzalez,davidrussell@example.net,001-860-834-5827x3622,3568535250070110,2024-04-16 +City Hotel,1,38,2017,October,40,5,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,81.41,0,0,Canceled,Victoria Thompson,pmoody@example.net,+1-640-877-9374x199,676124995835,2025-11-21 +Resort Hotel,0,0,2017,August,31,5,1,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,228.31,1,2,Check-Out,Christy Jackson,colecharles@example.com,001-375-903-7005,4959860586423451,2025-02-09 +City Hotel,1,197,2017,August,33,14,1,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,107.39,0,1,Canceled,Kristin White,vanessa69@example.com,(470)505-0586x82774,3513407839751709,2025-01-02 +Resort Hotel,0,245,2017,August,32,6,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,H,G,0,No Deposit,248.0,179.0,0,Transient,136.6,0,2,Check-Out,Jacob Johnson,fdickerson@example.org,(372)716-5671x0356,379733724527378,2024-04-02 +City Hotel,0,22,2017,February,8,20,0,3,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,38.0,179.0,0,Transient-Party,125.62,0,1,Check-Out,Jack Lloyd,richard73@example.net,001-840-337-9819x54064,4619592359731097611,2025-07-27 +City Hotel,0,8,2017,October,40,4,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.47,0,0,Check-Out,Terry Delgado,fanderson@example.com,688-848-8241,060472951890,2025-01-29 +Resort Hotel,1,105,2017,March,12,19,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,0,Non Refund,309.0,179.0,0,Transient,106.97,0,0,Canceled,Devin Roberts,michaelchavez@example.com,(992)904-8936x29942,577168405212,2025-12-09 +Resort Hotel,1,392,2017,June,25,16,1,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,231.47,0,1,Canceled,Billy Mcdonald,ashleychambers@example.com,419.743.1291,502091489273,2026-02-10 +City Hotel,0,4,2017,November,47,23,0,3,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.19,0,2,Check-Out,Kenneth Carter,christopherhunt@example.com,300-317-1737x232,2287880282449334,2025-10-12 +Resort Hotel,1,35,2017,August,31,2,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,113.0,0,0,Canceled,Karen Roberts,jodilane@example.com,001-913-932-7683,30200744422205,2026-01-14 +City Hotel,1,20,2017,April,18,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,175.65,0,0,Canceled,Angela Spencer,hughesisabel@example.com,+1-766-251-6874x0084,3563673316041935,2024-05-08 +City Hotel,0,14,2017,September,38,21,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,156.29,0,3,Check-Out,Catherine Garrett,hboyd@example.org,+1-383-436-7047x787,4916904438294934,2025-11-25 +City Hotel,1,136,2017,April,15,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,121.43,0,0,Canceled,David Rodriguez,chelseastout@example.com,(702)682-5616x940,4963363685132015516,2024-12-14 +Resort Hotel,0,123,2017,March,12,20,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,179.0,75,Transient-Party,61.44,1,3,Check-Out,Christopher Rodriguez,xsullivan@example.net,783-514-9125,5498501796655798,2025-04-28 +Resort Hotel,0,92,2017,April,14,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,89.21,0,0,Check-Out,Jennifer Goodwin,daniellefuller@example.org,(824)653-4151x6692,4697450015371369,2025-01-07 +City Hotel,0,22,2017,August,32,12,0,1,2,0.0,0,SC,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,94.75,0,3,Check-Out,Carrie King,bradblankenship@example.com,475.645.7034,213152151845056,2026-01-14 +Resort Hotel,0,0,2017,August,35,30,1,4,2,1.0,0,HB,,Direct,Direct,1,0,1,E,L,0,No Deposit,244.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,Christopher Carlson,michellerichardson@example.org,(321)330-6673x008,4015160331076866,2025-11-18 +City Hotel,1,18,2017,August,32,12,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,128.05,0,0,Canceled,Jessica King,karen40@example.com,(404)468-7547x60063,6550080038711233,2025-04-13 +City Hotel,0,138,2017,December,2,31,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,140.25,0,1,Check-Out,Erica Pearson,annatran@example.net,(906)706-8509x5140,4000438454973,2025-10-23 +Resort Hotel,0,145,2017,May,22,29,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,85.0,179.0,0,Transient,80.33,0,1,Check-Out,Kelsey Simpson,wayala@example.com,001-786-994-3704x809,180033801754956,2026-01-01 +Resort Hotel,0,1,2017,May,21,20,2,2,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,142.14,0,1,Check-Out,Laura Wilson,glennstephanie@example.org,(934)780-0164,3530244287396458,2024-07-14 +Resort Hotel,0,17,2017,October,41,9,0,3,2,0.0,0,FB,NLD,Groups,Corporate,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,68.23,0,0,Check-Out,Aaron Marshall,hamiltonanna@example.com,(994)999-1621,3503695061757129,2026-01-14 +Resort Hotel,0,152,2017,April,14,6,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,48.38,0,0,Check-Out,Debbie Jarvis,belinda41@example.org,(514)385-2495,4718515047846,2025-05-16 +City Hotel,0,150,2017,March,11,9,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,9.0,179.0,0,Transient,96.16,0,2,Check-Out,Rebecca Robinson,wyattkeith@example.net,702.710.4263,4159914429759247,2025-12-19 +City Hotel,1,216,2017,October,42,21,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,102.59,0,0,Canceled,Stephen Thompson,steventaylor@example.com,502-492-3558,4401981766302,2025-12-10 +Resort Hotel,1,41,2017,May,21,23,1,10,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,135.78,0,1,Canceled,Cynthia Morgan,lopezangela@example.net,(244)584-1939,3583677171558673,2025-06-08 +Resort Hotel,1,196,2017,March,13,31,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,1,Refundable,12.0,223.0,0,Transient-Party,62.27,0,0,Canceled,Stephen Jackson,franciscopatton@example.org,688-840-5552,3586382129459267,2025-12-12 +Resort Hotel,0,43,2017,August,33,16,2,1,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,238.0,179.0,0,Transient,228.05,1,1,Check-Out,Craig Jones,jeandickerson@example.net,307-410-1982x32128,4855284576314460,2025-09-16 +Resort Hotel,0,42,2017,August,35,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,139.83,1,2,Check-Out,Anna King,phillipbrown@example.org,756.694.2088x0095,4345280307082143,2025-01-12 +City Hotel,0,93,2017,June,23,4,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,141.94,0,3,Check-Out,Sue Allen,mccormickryan@example.org,553.951.6069x897,4272746463169012,2024-09-19 +City Hotel,1,331,2017,June,24,13,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,104.56,0,0,Canceled,Mark Petersen,dsanders@example.com,396.982.2438x77147,6593599720885145,2025-08-01 +City Hotel,0,14,2017,June,26,22,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,116.86,0,1,Check-Out,Christopher Harris,oanderson@example.org,288-681-5266x7049,3572333625898082,2025-11-06 +Resort Hotel,1,105,2017,August,31,2,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,239.0,179.0,0,Transient,243.83,0,3,Canceled,Robert Jones,michael84@example.com,001-508-291-6520x6757,30220168303509,2024-07-29 +Resort Hotel,1,204,2017,July,28,8,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Contract,194.26,0,1,Canceled,Jason Simmons,ilee@example.com,(632)791-8249,2710344899384886,2025-11-15 +City Hotel,0,36,2017,October,43,25,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,12.0,179.0,0,Transient,77.38,0,1,Check-Out,Leslie Wilson,benjaminterry@example.org,424-710-7240x60611,4555397905469384,2025-11-11 +City Hotel,0,30,2017,February,6,6,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Transient,77.8,1,2,Check-Out,Robert Larson,christianthomas@example.org,963-850-5031,4619274214617082663,2026-02-07 +Resort Hotel,0,157,2017,April,17,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,24.0,179.0,0,Transient,105.04,0,0,Check-Out,Paul Gentry,josephrogers@example.org,(800)441-1301,30455659320493,2025-12-29 +Resort Hotel,0,82,2017,August,34,25,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,239.0,179.0,0,Transient,149.57,1,0,Check-Out,Shirley Thomas,xleon@example.org,545.222.6057x0882,38105534127785,2025-04-08 +Resort Hotel,1,131,2017,August,34,23,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Contract,211.71,0,0,Canceled,Amy Durham,jennifergarcia@example.net,470.299.6808x1378,4101505203560663801,2025-04-27 +City Hotel,0,21,2017,November,44,3,1,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,62.79,0,2,Check-Out,Melissa Johnson,youngjoseph@example.com,(738)333-8029x9567,6595656517509573,2025-07-08 +Resort Hotel,0,8,2017,April,17,23,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,331.0,229.0,0,Transient,43.33,0,0,Check-Out,Jeff Atkinson,calhounjoel@example.org,657.737.7549x10385,6585849977183854,2025-01-24 +City Hotel,0,54,2017,March,13,26,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,64.46,0,1,Check-Out,Bradley Perkins,josecuevas@example.net,001-331-842-2992x64142,675950155035,2025-12-27 +City Hotel,0,0,2017,November,46,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,45.0,0,Transient-Party,2.67,0,1,Check-Out,Steven Flores,thomas83@example.org,904-549-6877,6541393976110611,2025-06-28 +City Hotel,0,4,2017,October,41,13,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,E,1,No Deposit,16.0,179.0,0,Transient,126.69,0,0,Check-Out,William Miller,evargas@example.org,869.430.4180x56575,213131163275106,2025-10-11 +Resort Hotel,1,36,2017,October,44,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient,122.67,1,0,Canceled,Theodore Juarez,vgonzalez@example.org,001-910-848-2001,6011476949594051,2024-06-22 +City Hotel,0,50,2017,September,39,26,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,3.0,179.0,0,Transient-Party,65.68,0,0,Check-Out,William Martin,shelby49@example.com,+1-568-924-1677x28204,3528147286274242,2025-05-11 +City Hotel,1,399,2017,June,23,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,16,Transient,125.56,0,0,Canceled,Lisa Perry,lleblanc@example.org,356.446.1452,4192381213850,2025-06-22 +City Hotel,1,7,2017,December,48,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,154.88,0,1,Check-Out,Shannon Hayden DDS,davisstacy@example.org,918.308.5417,3575507081593363,2024-07-26 +City Hotel,0,0,2017,March,13,28,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,43.87,0,1,Check-Out,Christopher Spencer,cordovajohnny@example.com,3602487612,4953232022531865,2024-11-28 +City Hotel,0,202,2017,August,34,23,2,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,139.92,0,3,Check-Out,Deborah Miles,andrew19@example.net,+1-795-522-9613x724,584153684942,2024-11-06 +Resort Hotel,0,106,2017,March,11,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,127.28,0,3,Check-Out,Brenda Johnson,bpalmer@example.net,001-210-490-4875x8407,30447171278564,2025-10-28 +Resort Hotel,0,239,2017,August,31,4,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Contract,44.03,0,1,Check-Out,James James,whall@example.com,989.230.7804x26510,30262679103887,2026-01-28 +City Hotel,1,0,2017,December,52,24,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,215.95,0,0,No-Show,Mallory Hanna,amckenzie@example.net,(547)728-1761x895,3517198991706476,2025-04-26 +City Hotel,0,17,2017,August,32,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,89.59,0,0,Check-Out,Debbie Johnson,parkerholly@example.net,001-618-302-7977x26638,3571509708384923,2025-02-11 +City Hotel,0,40,2017,October,40,4,2,0,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,77.0,179.0,0,Transient,95.43,0,1,Check-Out,Austin Miller,qvaldez@example.com,001-870-923-7699x95888,4967545742955,2025-10-11 +Resort Hotel,0,31,2017,May,22,26,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,243.0,179.0,0,Transient,185.0,1,0,Check-Out,Brandy Myers,adam14@example.org,(801)973-2082x59927,6011496794724629,2025-07-29 +City Hotel,1,154,2017,March,14,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,42.59,0,0,Canceled,Courtney Freeman,deborah25@example.com,874.303.6390x9532,4746523020125821,2026-02-25 +Resort Hotel,0,16,2017,February,8,24,0,2,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient-Party,43.37,0,2,Check-Out,Ryan Lowery,erichall@example.org,+1-532-683-2200x49269,4859399975208927,2025-08-12 +City Hotel,1,39,2017,June,23,10,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.48,0,0,Canceled,William Riley,ryanpowell@example.org,+1-738-541-6025,6011815060251985,2024-09-23 +City Hotel,1,57,2017,January,2,5,0,4,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.52,0,1,Canceled,Michael Cameron,sharonkelley@example.org,+1-988-953-4665,4725371805342412138,2025-12-30 +City Hotel,1,106,2017,August,33,15,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,153.72,0,0,Canceled,Michelle Greene,wwoods@example.com,+1-507-573-8433x620,180054646040831,2025-01-03 +Resort Hotel,1,54,2017,April,14,5,2,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,252.0,0,0,Canceled,Franklin Ruiz,anthonywolfe@example.org,(699)939-2355,30262399529791,2025-01-03 +Resort Hotel,0,143,2017,August,34,20,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,221.18,0,1,Check-Out,Steven Hurst,twilson@example.com,+1-997-646-2933x026,4110303952895157716,2025-09-02 +City Hotel,0,0,2017,January,2,1,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,70.19,0,1,Check-Out,Lisa Jackson,amysanchez@example.com,+1-733-468-2615,371911325092269,2024-10-27 +Resort Hotel,0,1,2017,June,27,29,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,121.77,0,1,Check-Out,Gerald Porter,heather70@example.net,878.282.9226,180064710401249,2024-05-10 +City Hotel,0,13,2017,December,52,24,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,178.0,179.0,0,Group,65.88,0,1,Check-Out,Mary Burke,ssmith@example.org,001-418-214-3403x699,4979271945186498,2025-09-24 +Resort Hotel,0,0,2017,January,3,15,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,43.0,179.0,0,Transient,2.89,1,0,Check-Out,Sandra Price,npowell@example.com,363.758.2335x7323,36743344314052,2025-04-24 +City Hotel,1,155,2017,March,10,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,44,Transient,109.02,0,0,Canceled,John Cortez,egarcia@example.com,417.859.2748,4949010551720373,2024-07-19 +City Hotel,0,107,2017,May,21,22,1,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,144.33,0,0,Check-Out,Jacob Robinson,amyharris@example.net,001-519-585-4237x197,4299674453708137,2025-05-15 +Resort Hotel,1,43,2017,March,11,12,1,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,Non Refund,133.0,179.0,0,Transient-Party,101.55,0,0,Canceled,Michael Garcia,rebekah63@example.org,619-453-8992,3509821537633181,2025-01-20 +City Hotel,1,1,2017,January,3,17,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,65.44,0,0,Canceled,Douglas Boone,leslie93@example.org,(562)445-8186x596,30200852070622,2024-08-02 +City Hotel,0,13,2017,August,31,5,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,Vanessa Peterson,chris86@example.org,8429387155,4603089750886,2026-01-31 +City Hotel,1,210,2017,August,33,14,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,85.0,179.0,0,Transient-Party,230.38,0,0,No-Show,Natalie Baxter,olsenrhonda@example.net,587.838.5487x831,3549828396159622,2025-01-26 +City Hotel,0,0,2017,February,8,21,0,1,2,0.0,0,HB,,Complementary,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,57.97,0,0,Check-Out,Patricia Chen,gford@example.org,+1-948-790-5728x00758,30598654108551,2025-06-03 +Resort Hotel,0,2,2017,March,10,8,0,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,198.0,179.0,0,Transient,61.57,0,1,Check-Out,Tracey Coleman,brandon48@example.org,001-234-384-7470,4847821507255931,2025-11-29 +Resort Hotel,0,1,2017,March,14,30,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,20.0,82.0,0,Transient,44.75,0,0,Check-Out,Luis Lewis,rjones@example.org,+1-988-727-7737x16568,4790468685009131,2024-12-22 +City Hotel,0,8,2017,October,41,11,0,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,1,No Deposit,186.0,179.0,0,Transient-Party,108.67,0,0,Check-Out,John Stark,mccarthynicholas@example.org,(602)335-9826x4172,180017786985123,2026-02-24 +Resort Hotel,0,6,2017,December,49,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,241.0,179.0,0,Transient,64.17,0,1,Check-Out,John Bruce,danielle91@example.com,4587996751,30336748486158,2025-11-22 +City Hotel,0,21,2017,October,44,29,1,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,15.0,235.0,0,Transient-Party,42.49,0,0,Check-Out,Anita Davis,beththomas@example.net,+1-801-322-0255x07979,4313829341713689,2024-06-15 +Resort Hotel,0,31,2017,October,40,6,3,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,248.0,179.0,0,Transient,127.97,0,0,Check-Out,James Alvarado,wcrawford@example.org,981-341-3024x6073,213180626324480,2024-11-08 +City Hotel,1,20,2017,October,40,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,160.15,0,2,Canceled,Ryan Mitchell,abigailmooney@example.net,(264)854-4596x1676,4892219632489232,2025-08-05 +City Hotel,1,12,2017,September,37,13,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,117.9,0,0,Canceled,Alexander Glover,mariadalton@example.com,360-530-7488,30025510266399,2024-09-14 +City Hotel,0,1,2017,March,12,21,2,1,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,85.54,0,0,Check-Out,Haley Carter,kevin29@example.org,001-983-788-4267x6279,4912600756030108,2024-04-03 +City Hotel,1,34,2017,November,44,2,0,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,91.28,0,1,Canceled,Vickie Obrien,linda54@example.com,858-620-3891x67913,30586763243427,2024-07-06 +City Hotel,1,30,2017,December,50,15,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,160.57,0,1,Canceled,Jared Allen,yolandaperry@example.com,249.835.1139x106,3586098953425303,2025-08-28 +City Hotel,0,86,2017,June,26,22,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,144.65,0,1,Check-Out,Donald Sanchez,sherry75@example.com,835-354-6844x80061,36819143419852,2024-05-27 +City Hotel,0,2,2017,February,6,5,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,0,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,1,Check-Out,Pamela Landry,davispaige@example.org,(577)563-9244x9742,5249257335546731,2025-01-25 +City Hotel,0,77,2017,March,10,5,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,95.49,0,1,Check-Out,Rodney Sharp,justin30@example.org,001-278-442-5720x35241,6581104674829399,2025-07-29 +City Hotel,1,15,2017,May,21,24,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,C,0,Non Refund,36.0,179.0,0,Transient,127.94,0,0,Canceled,Michael Cox,morristeresa@example.net,+1-841-364-0960x6400,4451738148262,2025-10-20 +City Hotel,0,105,2017,July,30,20,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,152.04,0,2,Check-Out,Judy Walker,raven14@example.org,001-879-807-1988x88416,3574257930295338,2025-01-03 +City Hotel,0,91,2017,July,27,5,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient-Party,119.42,0,1,Check-Out,Darlene Burnett,perrygina@example.net,(533)383-2182x58812,4304235991819,2024-05-01 +City Hotel,0,0,2017,January,3,16,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient,78.18,0,2,Check-Out,Heather Knapp,tammy32@example.org,965-612-6172x5132,3506044970744638,2026-01-19 +City Hotel,0,1,2017,August,33,15,0,1,2,0.0,0,HB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,56.43,0,1,Check-Out,Billy Jackson,davidsmith@example.org,9747920069,3517122119501924,2024-04-18 +Resort Hotel,0,75,2017,October,41,8,0,3,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,B,D,0,Refundable,12.0,221.0,0,Transient-Party,75.21,0,0,Check-Out,Robert Pierce,jday@example.org,901.505.7110,375153660240171,2024-12-06 +Resort Hotel,0,258,2017,June,26,25,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,97.67,0,1,Check-Out,Jimmy Watkins,cameronperez@example.org,+1-466-276-3768x300,4541910317342481,2024-09-27 +City Hotel,1,267,2017,December,50,15,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,168.0,179.0,75,Transient,117.02,0,0,Canceled,Angela Vasquez,mitchellsierra@example.com,+1-548-309-8244x12315,3584203251100614,2024-07-11 +Resort Hotel,0,131,2017,April,17,26,0,2,2,0.0,0,HB,POL,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,241.0,179.0,0,Transient-Party,126.26,0,0,Check-Out,Christopher Moore,jennifer49@example.org,545-351-5968x4650,3573685484538334,2024-12-23 +Resort Hotel,0,1,2017,October,43,23,2,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,B,0,No Deposit,16.0,179.0,0,Transient,55.26,0,0,Check-Out,Dr. Terry Howell,lrodriguez@example.org,(676)370-4929,4455719179121600,2025-08-13 +Resort Hotel,0,14,2017,August,33,16,1,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,133.65,0,2,Check-Out,Paige Gay,johnlarson@example.org,(251)992-1351x4693,2276194123876595,2024-04-02 +Resort Hotel,0,0,2017,August,33,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Group,5.07,0,1,Check-Out,Christopher Buchanan,jenniferwood@example.com,694-525-7029x4965,213164760181716,2024-07-08 +City Hotel,0,108,2017,March,10,4,2,5,2,0.0,0,FB,NLD,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,172.0,179.0,0,Transient,102.85,0,0,Check-Out,David Marks,longconnor@example.net,(743)946-0764,4236136344216212105,2024-04-17 +City Hotel,1,260,2017,August,34,23,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,7.0,179.0,0,Transient,121.62,0,0,Canceled,Kristy Brown,meagansparks@example.com,+1-623-481-0457x372,6590639298968841,2026-03-13 +Resort Hotel,1,289,2017,February,6,4,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,315.0,179.0,64,Transient,47.31,0,2,Canceled,Danny Holmes,angela41@example.net,813.394.1379x6176,30259855104960,2024-09-16 +Resort Hotel,1,52,2017,August,32,9,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient,101.29,0,0,Canceled,Jeffrey Brown,melendezmichael@example.net,257-799-9092x4414,630429984853,2025-11-08 +Resort Hotel,0,1,2017,August,32,9,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Contract,180.39,0,1,Check-Out,Brandon Hudson,grossmaria@example.net,(893)753-6582,3582883523620606,2024-09-22 +City Hotel,0,15,2017,April,15,10,2,1,1,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.6,0,2,Check-Out,Carl Thomas,wstrickland@example.org,(910)812-1380x311,2719972723885388,2025-07-02 +City Hotel,0,16,2017,March,11,12,2,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,76.77,0,2,Check-Out,Erica Small,hwilson@example.com,001-211-848-9073x970,3582949002608717,2024-08-08 +City Hotel,1,4,2017,November,44,2,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,75,Transient,101.74,0,0,Canceled,Michael Peterson,powersdonald@example.org,+1-656-752-8057x670,30136409144223,2025-03-19 +City Hotel,0,12,2017,October,42,21,2,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,L,C,0,No Deposit,13.0,179.0,0,Transient,2.56,0,0,Check-Out,Christina David,jamesmiller@example.net,369-372-2710x5441,3522976647970239,2025-07-16 +Resort Hotel,0,46,2017,May,20,16,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,G,2,No Deposit,243.0,179.0,0,Transient,44.39,1,1,Check-Out,Jaime Wright,david16@example.org,459-810-6736x712,4799728293403091114,2024-04-10 +City Hotel,1,289,2017,October,43,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,61,Transient-Party,45.8,0,0,Canceled,Duane Jones,stevenrichardson@example.net,(475)665-0880x236,379863815751866,2025-05-22 +City Hotel,1,17,2017,December,51,22,1,4,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.88,0,0,Canceled,Jeffrey Jackson,mariarussell@example.com,865-584-0281x221,180056861922973,2024-10-03 +City Hotel,1,153,2017,September,37,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,17,Transient,86.09,0,0,Canceled,Jorge Taylor,myersbilly@example.com,909-992-6279x6836,3549707985091745,2026-02-23 +Resort Hotel,1,14,2017,March,11,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,264.0,179.0,0,Transient,43.9,0,0,Canceled,David Baker,brownkaren@example.com,(382)200-8639x5300,3597878213236161,2025-09-16 +City Hotel,0,47,2017,April,17,26,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,203.04,0,0,Check-Out,Benjamin George,btorres@example.org,685.662.4435x1719,6011745407466469,2024-05-27 +City Hotel,0,6,2017,October,40,3,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,62,Transient,122.5,0,1,Check-Out,Chelsea Thomas,ryan32@example.net,6124700612,6011926036471514,2025-06-06 +City Hotel,1,3,2017,September,36,4,1,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.09,0,0,Check-Out,James Bailey,robinsonjuan@example.org,001-610-955-1932x53789,4476675290124,2026-02-07 +City Hotel,0,10,2017,December,49,4,2,2,2,1.0,0,Undefined,ITA,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,134.43,1,2,Check-Out,Sandra Hopkins,joseph97@example.com,+1-345-725-1577,4204817096669620,2024-10-14 +City Hotel,0,46,2017,March,14,30,0,2,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient-Party,52.41,0,0,Check-Out,Amanda Garcia,justindavis@example.net,001-361-772-6641x947,2230235719317497,2026-01-18 +City Hotel,0,42,2017,March,13,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient-Party,103.86,1,2,Check-Out,Andrea Miller,williamstodd@example.net,001-204-548-1617x104,3524978091056778,2025-01-28 +City Hotel,1,86,2017,November,48,25,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,24.0,179.0,20,Transient,85.74,0,0,Canceled,Janice Riddle,chadanthony@example.com,295.922.6297x5266,5152088266139690,2025-10-28 +Resort Hotel,0,0,2017,July,29,17,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,63.04,1,2,Check-Out,Ronald Lara,kingchristine@example.net,759.478.8105,5571414737129677,2024-08-03 +City Hotel,1,3,2017,December,50,15,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,112.91,0,0,Canceled,Jonathan Brooks,jenniferhull@example.com,(660)271-1371x4206,30024279043560,2024-12-28 +City Hotel,1,21,2017,March,13,29,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,131.67,0,1,Canceled,Joseph Turner,bestmichelle@example.org,(922)812-4830x56995,30175205600376,2026-02-08 +City Hotel,1,110,2017,June,26,29,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,105.68,0,0,No-Show,Robert Jordan,shannonsally@example.net,(781)395-5309,3579674817780163,2025-11-30 +Resort Hotel,0,0,2017,December,52,26,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,58.01,0,1,Check-Out,Megan Mccoy,solomonrobert@example.net,344.236.7953,4726631825797,2026-02-10 +City Hotel,1,3,2017,July,27,6,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.41,0,0,No-Show,Anita Ruiz,julie47@example.org,+1-718-912-0849x7297,372060069909137,2025-08-10 +Resort Hotel,0,11,2017,November,47,23,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,63.91,1,1,Check-Out,Amber Moore,sonia06@example.org,285.307.1507x0662,4433773829555060,2025-08-12 +Resort Hotel,0,45,2017,April,15,9,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,364.0500000000011,179.0,0,Transient,90.93,0,1,Check-Out,Amanda Allen,hturner@example.net,(593)766-7573x965,4556084250980510470,2024-12-16 +City Hotel,1,220,2017,August,34,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,82.7,0,1,Canceled,Nathaniel Cummings,ghill@example.com,785-759-4665,5447007982544897,2024-04-07 +Resort Hotel,1,145,2017,September,40,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,252.0,0,1,Canceled,Todd Logan,ogibson@example.org,+1-450-744-5522,30388507902925,2025-06-22 +Resort Hotel,1,29,2017,March,12,17,0,2,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,46.27,0,0,Canceled,Samuel Peterson,angelaholden@example.org,9258040359,3588067325437914,2025-05-18 +City Hotel,1,35,2017,May,19,9,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,131.48,0,0,Canceled,Jamie Kelly,gregoryjones@example.com,2363774505,2705339062782517,2024-10-22 +City Hotel,1,276,2017,September,38,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.3,0,0,Canceled,Luis Brown,tmendez@example.com,557-750-5974x5853,2239958348597665,2024-07-13 +City Hotel,0,0,2017,December,51,18,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,5.98,0,0,Check-Out,Victor Rodriguez,christine77@example.net,880.633.7452x26746,503829250730,2024-05-13 +City Hotel,0,153,2017,October,41,13,0,2,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,87.19,0,1,No-Show,Scott Wright,mreed@example.org,+1-423-771-5217x422,4831681424717019,2024-07-22 +Resort Hotel,1,156,2017,October,40,3,3,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,303.0,179.0,0,Transient,84.16,0,0,Canceled,Patrick Rodriguez,beth21@example.net,(453)563-3867,372293621745851,2024-10-26 +City Hotel,0,39,2017,December,52,27,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,112.05,0,2,Check-Out,Brenda Weber,kochtimothy@example.com,894.884.3659,213129042053629,2024-04-09 +City Hotel,0,9,2017,October,42,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,48.41,0,2,Check-Out,Jacqueline Young,pattersonemma@example.com,(634)621-9001,6011531405115559,2025-05-06 +City Hotel,0,84,2017,June,25,22,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.05,0,1,Check-Out,Luke Potter,whitneysharp@example.org,(858)580-5413x4808,346839973130069,2025-08-10 +Resort Hotel,0,46,2017,May,19,11,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,239.0,179.0,0,Transient,104.3,1,1,Check-Out,David Delgado,kimberlydavenport@example.net,847.485.0485x2242,584464097727,2024-04-10 +City Hotel,0,0,2017,August,33,13,1,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient-Party,56.22,0,1,Check-Out,Christine Shelton,toddwilson@example.com,745.773.4876x2893,4758082933946539,2025-01-19 +Resort Hotel,1,16,2017,April,17,25,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,0,A,A,1,No Deposit,181.0,179.0,0,Group,3.99,0,1,Canceled,Mrs. Mary Edwards,dfernandez@example.net,521-446-2317x22590,213148672341633,2024-07-05 +City Hotel,1,5,2017,October,40,6,2,5,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,0,No Deposit,204.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Alyssa Johnson,randalljohnson@example.com,830-793-8164x895,4727373483399076356,2025-09-13 +Resort Hotel,0,19,2017,August,35,30,2,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,100.3,0,0,Check-Out,Alan Taylor,michael01@example.com,(881)522-7875,213132758096584,2025-07-31 +City Hotel,1,88,2017,May,21,23,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,127.01,0,0,Canceled,Alexis Alexander,sarah38@example.com,773.848.3302,577599536890,2024-09-19 +Resort Hotel,0,1,2017,December,51,22,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,E,1,No Deposit,16.0,179.0,0,Transient,53.14,0,0,Check-Out,Erica Duarte,danielburton@example.org,571-538-8439x266,2526965333448590,2025-04-01 +City Hotel,0,18,2017,May,20,13,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,126.42,0,1,Check-Out,Elizabeth Briggs,william47@example.net,8116003134,562419941314,2026-02-10 +City Hotel,0,101,2017,April,17,26,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient-Party,97.48,0,1,Check-Out,Christopher Cantu,zhardy@example.net,(448)371-9727,3546776675355820,2025-04-18 +City Hotel,0,18,2017,June,23,6,1,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,102.59,0,2,Canceled,Jennifer Mitchell,maryhill@example.org,+1-871-829-1275x510,378509789464504,2025-07-24 +City Hotel,0,17,2017,May,21,23,0,1,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,0,Transient,138.06,0,1,Check-Out,Dr. Dawn Taylor,mlopez@example.org,221.935.0560,4372403968744274,2024-12-17 +City Hotel,0,30,2017,April,16,16,2,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,64.19,0,1,Check-Out,Sara Riley,kayla79@example.org,2388365823,4918776275721650,2025-01-06 +City Hotel,0,163,2017,September,39,23,0,1,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,1.0,179.0,0,Transient-Party,105.95,0,1,Check-Out,Christopher Campbell,smithangela@example.com,433-628-5700x5029,2222137549551487,2025-04-08 +Resort Hotel,0,105,2017,January,3,14,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,187.0,179.0,0,Transient,42.12,0,1,Check-Out,Gabriel Woods,qmartin@example.org,372.480.9269x966,2681737025376392,2025-06-29 +City Hotel,1,10,2017,June,24,9,1,3,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.33,0,1,Canceled,Christopher Johnson,david74@example.org,908-252-1939x1472,571893463802,2025-08-16 +Resort Hotel,0,97,2017,September,38,17,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,126.09,0,3,Check-Out,Robert Rosario,cdouglas@example.org,(407)938-0536,373893804118849,2025-01-24 +Resort Hotel,1,104,2017,October,42,17,1,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,Non Refund,12.0,179.0,0,Contract,95.85,0,0,No-Show,Christine Murray,charleshickman@example.org,295.717.5117x72849,4130121304082884850,2025-06-06 +Resort Hotel,1,343,2017,July,27,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,130.0,179.0,61,Transient,83.94,0,0,Canceled,James White,nathan19@example.org,2073006118,4936984163433770,2025-03-05 +City Hotel,0,45,2017,October,40,7,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,256.0,179.0,0,Transient-Party,47.31,0,1,Check-Out,William Hansen,jackriley@example.com,001-483-986-9484x4777,4053406557035853351,2024-09-29 +City Hotel,0,1,2017,May,21,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,216.0,0,Transient,49.6,0,0,Check-Out,Leslie Zamora,charles61@example.org,855-539-1757,4685096957272992,2024-08-03 +City Hotel,0,39,2017,June,23,9,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,76.49,0,0,Check-Out,Tiffany Evans,zimmermanelizabeth@example.net,(849)837-5669x5306,567325984290,2025-12-10 +City Hotel,0,35,2017,November,48,27,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.06,0,0,Check-Out,Tiffany Cruz,williamsangela@example.org,3585817339,375960730497163,2024-04-19 +City Hotel,0,48,2017,May,18,1,2,2,3,2.0,0,HB,NLD,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,229.84,0,1,Check-Out,Lori Jones,williamsonscott@example.com,(292)736-6649x6149,30041339107805,2024-11-28 +City Hotel,1,280,2017,October,40,6,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,103.35,0,0,Canceled,Lauren Edwards,rgentry@example.net,+1-205-403-5798x47420,3572661068491167,2024-06-25 +City Hotel,1,33,2017,August,33,19,0,4,2,2.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.52,0,0,Canceled,Mary Carter,wmendoza@example.org,9518119198,5110759991222685,2024-06-10 +City Hotel,0,59,2017,April,14,3,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,110.04,0,1,Check-Out,David Morris,cjones@example.net,7533465701,3544479695845894,2024-08-02 +Resort Hotel,0,151,2017,March,13,31,1,3,2,1.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,223.0,0,Transient-Party,78.21,0,0,Check-Out,Kevin Johnson,torresnatasha@example.net,001-288-395-4279x2873,3507996135467687,2025-05-04 +City Hotel,0,17,2017,November,45,6,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,107.9,0,2,Check-Out,Jacob Turner,rogersdanielle@example.org,(508)272-3299x2280,4546684607196020047,2026-02-09 +City Hotel,0,27,2017,February,8,23,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.49,0,1,Check-Out,Shawn Nash,ugibson@example.net,(417)556-5470,377254487805044,2025-10-14 +Resort Hotel,0,9,2017,July,31,31,2,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,109.2,1,2,Check-Out,Kathleen Diaz,riverazachary@example.org,+1-623-435-4299x851,3577774358403266,2025-11-28 +City Hotel,1,414,2017,September,37,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.98,0,0,Canceled,Steve Cobb,ronaldlove@example.com,(392)864-2491,3580025870307534,2024-11-17 +City Hotel,1,46,2017,March,10,4,1,4,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,B,0,No Deposit,11.0,179.0,0,Transient,98.88,0,3,Canceled,Julie Freeman,iansnow@example.com,(247)259-3946,6011764527904853,2024-06-08 +Resort Hotel,0,0,2017,February,9,24,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,I,2,No Deposit,325.0,179.0,0,Transient,1.49,0,1,Check-Out,Pamela Martinez,johnsonchad@example.org,001-935-733-3123,370097282176971,2024-06-14 +Resort Hotel,0,277,2017,August,35,27,2,5,2,0.0,0,HB,NOR,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,31.0,179.0,0,Transient-Party,207.28,0,0,Check-Out,Jaime Mcmillan,wpowell@example.com,+1-761-610-9768x884,180059193512728,2026-03-17 +City Hotel,1,55,2017,April,15,9,0,4,2,1.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,157.07,1,0,No-Show,Lisa Molina,ericdavis@example.org,(489)405-1774x87819,6011270442497015,2024-09-08 +Resort Hotel,0,100,2017,March,12,21,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,90.99,0,0,Check-Out,Charles May,rileybrittney@example.com,(598)587-0092,4310381370550460,2024-10-04 +City Hotel,1,6,2017,May,19,7,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient-Party,137.67,0,1,Canceled,Andrew Anderson,nicole67@example.com,001-538-775-8795x69889,30405382228398,2024-10-01 +City Hotel,1,161,2017,April,16,19,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,138.15,0,0,Canceled,Alyssa Salinas,brandy96@example.com,979.423.2745x18292,4590951471876559,2025-10-12 +City Hotel,0,97,2017,September,38,19,1,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.0,0,1,Check-Out,Billy Webb,vrodriguez@example.net,(796)673-1290x3970,38998223691099,2025-02-19 +Resort Hotel,0,110,2017,April,14,4,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,115.62,0,2,Check-Out,Sandra Simpson,clopez@example.com,4519245134,4212674950384030,2024-12-13 +City Hotel,0,13,2017,March,14,30,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,15.0,45.0,0,Transient,88.07,0,1,Check-Out,Samuel Williams,mark49@example.com,411-544-6200,4394638833509752983,2025-04-11 +Resort Hotel,0,2,2017,August,31,5,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient-Party,198.24,0,2,Check-Out,Jason Walker,andersonmichael@example.net,453.432.8816x35081,6553961265829359,2024-08-21 +Resort Hotel,0,87,2017,November,45,8,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,109.2,1,2,Check-Out,Paul Matthews,erobinson@example.net,(395)804-8447x92112,180015248560443,2025-06-01 +City Hotel,0,44,2017,June,23,2,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,134.66,0,0,Check-Out,Michael Miller,snyderheather@example.com,326.543.1946x13541,3527428519868302,2024-09-11 +City Hotel,0,17,2017,April,17,24,2,1,2,2.0,0,BB,CHE,Online TA,Direct,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,236.57,0,2,Check-Out,Hannah Morris,michaelreid@example.org,+1-546-445-8766x7447,4518226570200111,2026-03-15 +City Hotel,0,96,2017,April,16,13,2,0,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,51.72,0,0,Check-Out,Gregory Holland,alexanderwagner@example.net,+1-945-300-8602x2993,6011624674384319,2025-02-08 +City Hotel,0,23,2017,August,35,27,1,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,138.99,0,1,Check-Out,Michelle Estrada,smithkatie@example.com,(638)699-1134x402,4578243054360995,2024-07-13 +City Hotel,0,27,2017,October,40,5,2,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,94.62,0,0,Check-Out,Calvin Hoffman,patricia18@example.org,781-946-1416x4469,4825459992879890374,2024-06-28 +Resort Hotel,0,155,2017,August,35,25,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,241.0,179.0,0,Transient,252.0,1,3,Check-Out,Michael Shaw,morrisleslie@example.net,252.277.6981x366,4497291597151316186,2025-05-02 +City Hotel,1,62,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,121.31,0,0,Canceled,Tina Frazier,claire63@example.net,(320)845-5068,6011697802725983,2025-01-24 +City Hotel,0,17,2017,April,15,6,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,198.87,0,2,Check-Out,Stephen Meyer,leah38@example.com,609.201.4143x9153,4072465901749150,2024-04-03 +Resort Hotel,1,148,2017,September,38,20,1,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,251.0,179.0,0,Transient,222.04,0,0,Canceled,Hannah Newton,codygibson@example.org,814-503-3029,213192144975156,2024-05-09 +City Hotel,0,22,2017,July,28,8,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,215.42,0,2,Check-Out,Frederick Houston,mosleymichaela@example.net,745-845-5223x979,3590889473951446,2025-05-19 +City Hotel,1,107,2017,July,28,9,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.14,0,0,Canceled,Angela Fisher,zacharycummings@example.org,793-983-3404x753,675902912962,2024-08-04 +Resort Hotel,0,2,2017,March,10,6,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,331.0,0,Transient,44.74,1,1,Check-Out,Lauren Turner,johnsonrachael@example.com,+1-573-889-8411x670,2226067332378382,2025-07-31 +Resort Hotel,1,16,2017,July,30,28,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,236.0,179.0,0,Transient-Party,233.08,0,0,Canceled,David Villa,rking@example.com,628.621.1200,4439105911142990140,2024-06-26 +Resort Hotel,1,46,2017,July,28,9,3,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Contract,104.15,0,2,Canceled,David Fowler,chasestephenson@example.com,001-269-653-7970,30402694310873,2026-03-14 +City Hotel,0,1,2017,December,49,5,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.18,0,1,Check-Out,Stephen Edwards,uhenderson@example.net,+1-891-709-7679x27546,6520879330176798,2025-04-30 +Resort Hotel,0,25,2017,March,11,12,1,5,2,1.0,0,HB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,229.43,0,2,Check-Out,Audrey Knox,benjaminwashington@example.org,473.922.5830x14020,342365024164679,2025-03-06 +City Hotel,1,157,2017,December,51,22,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,62,Transient,92.69,0,0,Canceled,Kevin Perry,cantucarla@example.net,+1-919-385-2644x7523,3536501995907791,2025-10-09 +Resort Hotel,1,21,2017,July,28,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,59.01,0,1,Canceled,Carlos Escobar,josephhardy@example.com,7932551383,4958676815721031,2025-08-26 +City Hotel,0,0,2017,January,4,27,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient-Party,65.33,0,0,Check-Out,Kayla Brooks,tstewart@example.org,648-333-9023,180087352340573,2024-11-29 +City Hotel,1,28,2017,October,42,12,2,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Contract,62.99,0,0,Canceled,Andrea Anderson,austinschroeder@example.org,9885732697,3544372242185304,2025-03-10 +City Hotel,1,271,2017,July,30,23,2,6,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,3,Canceled,Margaret Jordan,ryan33@example.org,001-947-962-2477,4870070757903,2024-04-20 +City Hotel,0,164,2017,February,8,23,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.4,0,1,Check-Out,Sarah Mcclain,juliewood@example.com,824.211.9209,3569761146355460,2025-07-05 +Resort Hotel,0,1,2017,October,40,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,87.49,0,0,Check-Out,Olivia Wiley,rmiller@example.org,358.262.5223x7024,4061406427611022479,2025-08-13 +Resort Hotel,0,10,2017,June,23,5,0,2,1,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,108.24,1,1,Check-Out,Kristen Fox,amber15@example.net,(950)318-1141x454,575139311097,2024-04-29 +Resort Hotel,0,12,2017,August,32,9,2,5,2,2.0,0,BB,USA,Direct,Direct,0,0,0,G,G,2,No Deposit,249.0,179.0,0,Transient,217.87,0,0,Check-Out,Samantha Burton,molinaashley@example.org,+1-590-392-8081x9364,6535745287007117,2024-04-10 +City Hotel,0,20,2017,April,17,22,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,143.65,0,3,Check-Out,Nancy Miller MD,kevinpalmer@example.net,254-740-1045x46011,371014115738249,2025-07-15 +Resort Hotel,0,247,2017,August,35,30,1,5,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,9.0,179.0,0,Transient,217.97,0,0,Check-Out,Gregory Simpson,cmcgee@example.com,331-765-2743x877,3553553503252853,2025-04-03 +City Hotel,1,72,2017,August,31,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,134.78,0,0,Canceled,Michael Price,jonathanriley@example.org,6198737373,373216890995633,2025-10-23 +City Hotel,0,20,2017,September,37,9,2,1,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient-Party,172.97,1,0,Check-Out,Virginia White,randy41@example.com,001-694-970-2671,502089406974,2024-11-02 +Resort Hotel,0,152,2017,January,2,12,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,C,0,No Deposit,337.0,179.0,0,Transient,47.85,0,2,Check-Out,Justin Miller,brian71@example.net,+1-972-468-2178x64038,3575242852273512,2024-08-06 +Resort Hotel,1,54,2017,March,10,6,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,311.0,179.0,0,Contract,63.18,0,1,Canceled,David Pugh,jeffrey74@example.net,(745)442-8926,4968583279881030836,2025-09-08 +City Hotel,1,414,2017,July,27,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.22,0,0,Canceled,Douglas Willis,gregorywelch@example.com,(848)923-9849,4506399144878334,2024-10-30 +Resort Hotel,1,200,2017,August,31,4,0,1,3,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,238.0,179.0,0,Transient,246.6,0,1,Canceled,Alexandra Freeman,laura38@example.net,949.474.6407x5122,4002517256931,2024-08-07 +City Hotel,0,1,2017,December,52,26,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,E,0,No Deposit,12.0,53.0,0,Transient,88.25,0,0,Check-Out,Brian Obrien,smithchristine@example.com,(660)494-5082x059,6557092466255115,2024-10-19 +City Hotel,0,10,2017,October,41,10,0,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Contract,107.8,1,0,Check-Out,Kathryn Coleman,qsullivan@example.org,452.866.9880,503824305042,2024-07-05 +City Hotel,0,1,2017,April,15,8,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,2,Check-Out,Michael Smith,alexander57@example.org,331-973-2561,6011795204753312,2024-10-12 +Resort Hotel,0,2,2017,March,11,15,2,2,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,240.0,179.0,0,Transient,205.15,0,1,Check-Out,Mary Perez,msullivan@example.org,001-780-975-1558x577,4266209821447867,2025-10-05 +Resort Hotel,1,108,2017,October,40,4,3,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,82.08,0,2,Check-Out,Jason Hernandez,gcooper@example.net,792-273-5182x07973,4655277318205741,2026-02-02 +City Hotel,0,391,2017,September,38,22,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.45,0,1,Check-Out,Jason Bailey,christopher25@example.org,(625)356-1999x790,3592602962536166,2024-04-03 +City Hotel,1,143,2017,October,41,8,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,93.71,0,0,Canceled,Martin Gomez,lopezpaul@example.org,648-247-0395,6011461462518505,2024-07-12 +City Hotel,1,89,2017,February,8,21,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,94.26,0,0,Canceled,James Simon,frazierdrew@example.net,936-944-9729x00121,4729806525952802,2025-10-14 +Resort Hotel,0,87,2017,March,12,18,2,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,2,No Deposit,174.0,179.0,0,Transient,64.35,0,0,Check-Out,Lawrence Parker,mstrong@example.net,+1-415-417-8733x94247,379737241438837,2025-08-29 +Resort Hotel,0,12,2017,March,13,28,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,82.0,179.0,0,Transient,125.49,0,0,Check-Out,Robert Hobbs,lauragreen@example.net,+1-607-575-8943,4090762128133673,2024-07-27 +City Hotel,0,127,2017,October,40,7,4,6,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,27.0,179.0,0,Transient,83.33,0,0,Check-Out,Michelle Robinson,fowlernicole@example.com,(467)448-7381x27163,4544509840842,2025-01-17 +Resort Hotel,0,0,2017,March,14,30,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,E,2,No Deposit,20.0,179.0,0,Transient,5.49,1,0,Check-Out,Julie Smith,clarencerusso@example.net,483.586.2459x826,3513099857519926,2025-04-11 +City Hotel,1,323,2017,August,31,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.13,0,0,Canceled,Elizabeth Mills,thompsonjohn@example.com,934.703.1756,378280242724021,2025-10-25 +City Hotel,0,12,2017,May,20,12,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,147.53,0,1,Check-Out,Elizabeth Neal,steven22@example.org,428.921.3890x37634,30176362613426,2025-05-07 +City Hotel,0,38,2017,May,21,23,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,139.52,0,0,Check-Out,Paul Nguyen,james39@example.org,827.770.1597x94455,3581911975464768,2026-01-19 +Resort Hotel,1,45,2017,December,49,6,2,2,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,44.37,0,2,No-Show,Crystal Peterson,alexandriaferguson@example.com,001-386-845-4710x884,4389019573305,2024-10-13 +City Hotel,0,13,2017,October,42,19,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,14.0,331.0,0,Transient-Party,45.87,0,0,Canceled,Brian Robertson,jeanette87@example.com,(287)982-9957x3951,4179748263694,2024-12-14 +City Hotel,0,414,2017,August,32,9,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,91.1,0,2,Check-Out,Alexandria Sanchez,wilcoxdonald@example.net,(545)696-9605,3548818651399758,2024-09-30 +City Hotel,0,38,2017,May,21,23,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.18,0,1,Check-Out,April Cameron,baxterwilliam@example.org,216.614.7947x83777,4336560213475650,2025-11-09 +City Hotel,0,40,2017,September,36,6,2,5,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,113.37,0,1,Check-Out,Megan Cortez,kaylacantrell@example.org,+1-664-928-1466,3571777123565844,2024-06-11 +City Hotel,1,143,2017,June,25,20,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.75,0,0,Canceled,Melvin Gutierrez,taraoliver@example.com,+1-486-856-5898x268,4841903940982,2024-04-22 +City Hotel,0,3,2017,January,2,4,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,64.62,0,1,Check-Out,Austin Rogers,walterjames@example.net,(517)929-1324x1717,3580816034098724,2025-07-28 +Resort Hotel,0,116,2017,April,17,24,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,301.0,179.0,0,Transient-Party,100.9,0,0,Check-Out,Tracy Baxter,jill81@example.org,(490)402-2783,4572768202119065371,2025-10-26 +City Hotel,0,1,2017,August,32,5,1,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,0.6,0,1,Check-Out,Anna Conrad,josephfitzpatrick@example.org,(883)766-5926,342855081872172,2024-11-13 +City Hotel,1,92,2017,August,32,5,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,192.77,0,0,Canceled,Angela Washington,fbond@example.org,750-247-0530x77918,30372995881759,2024-03-30 +City Hotel,1,136,2017,June,23,9,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,163.79,0,0,Canceled,Rhonda Clark,nlyons@example.org,+1-960-853-6659x7928,630462731039,2025-06-08 +City Hotel,0,75,2017,April,16,14,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,169.64,0,1,Check-Out,James Perez,georgeperez@example.org,(431)314-6485,2720369422732655,2024-10-31 +Resort Hotel,0,150,2017,April,14,1,0,1,2,0.0,0,BB,CN,Groups,Direct,0,0,0,A,D,1,Refundable,14.0,222.0,0,Transient-Party,76.34,0,0,Check-Out,Teresa Torres,tshepard@example.com,(539)922-1913x88656,2289680200574439,2024-09-08 +Resort Hotel,0,51,2017,June,24,14,4,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,101.21,0,1,Check-Out,Benjamin Sanchez,websterkaitlyn@example.org,001-873-530-7876x49863,3553750575154591,2025-03-03 +City Hotel,1,22,2017,May,21,21,0,2,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,130.47,0,0,Canceled,Samuel Perkins,psmith@example.net,001-770-477-9285x48457,213122031883841,2025-04-15 +City Hotel,1,3,2017,February,9,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,68.74,0,1,Check-Out,Adam Harris,katherine13@example.org,+1-934-528-7345x218,375638268086620,2024-11-15 +City Hotel,0,23,2017,September,35,1,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,45.0,0,Transient-Party,44.56,0,0,Check-Out,Lisa Love,brandonholmes@example.net,685.479.2296x77944,5247301424179020,2025-10-30 +City Hotel,1,14,2017,July,29,17,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,231.61,0,1,Canceled,Lindsay Travis,mrivera@example.net,445-263-0013x52676,4955293858064635,2024-06-07 +City Hotel,0,1,2017,August,34,26,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Group,117.49,0,1,Check-Out,Danny Ward,cgutierrez@example.net,910.935.3233x934,3507848991668652,2025-05-04 +City Hotel,0,27,2017,April,18,30,0,1,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,165.77,0,1,Check-Out,Michael Wade,williamssally@example.org,669-489-2210,4685224513904086,2025-05-12 +City Hotel,0,101,2017,April,18,30,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.52,0,0,Canceled,Curtis Page,sanchezrobert@example.com,577.961.5643,4397701765471419552,2026-02-27 +Resort Hotel,1,129,2017,July,30,27,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,135.75,1,3,Canceled,Beth Norris,johnsonrachel@example.net,(859)267-6111,373291422327209,2025-03-05 +Resort Hotel,0,50,2017,August,34,23,0,4,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,106.19,0,0,Check-Out,Erin Hayes,pwoods@example.net,936-644-1403,4742320471321577,2024-07-26 +City Hotel,0,22,2017,January,4,23,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,8.0,179.0,0,Transient,93.74,0,1,Check-Out,Mark Williams,richard44@example.net,587.543.9233x743,4656233750376,2026-03-11 +Resort Hotel,0,185,2017,October,43,23,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,101.91,1,1,Check-Out,Rachel Wright,dawn78@example.net,001-208-277-4293x95697,4645688220961853,2024-07-03 +Resort Hotel,1,355,2017,October,44,30,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,191.7,0,0,Canceled,Jonathan Peters,warren86@example.org,001-518-510-2027x012,4385426627007,2025-03-17 +Resort Hotel,1,305,2017,May,21,20,0,3,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,Refundable,241.0,179.0,0,Transient,127.25,0,0,Canceled,Austin Haynes,ashleycamacho@example.com,(971)992-2836,3558370366464565,2025-12-07 +City Hotel,0,10,2017,August,32,10,2,5,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.94,0,0,Check-Out,Erin Campbell,grahamkerri@example.net,(867)886-9588x730,4681258239134929,2025-10-14 +Resort Hotel,0,144,2017,August,32,6,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,20.0,179.0,0,Transient,222.21,0,0,Check-Out,Dorothy Weaver,denise46@example.com,455.206.3928,378586566937878,2025-12-02 +City Hotel,0,10,2017,November,45,7,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,103.82,0,2,Check-Out,Henry Lloyd,salinasryan@example.com,477-919-9312,4882428989215106,2026-02-12 +City Hotel,0,6,2017,January,4,23,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,11.0,179.0,0,Transient,79.87,0,1,Canceled,Kathy Romero,lori45@example.org,+1-439-868-7312x7471,371419714380550,2025-08-07 +Resort Hotel,0,6,2017,June,24,13,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,146.96,0,1,Check-Out,Susan Meadows,ricky00@example.net,4886728644,4759966239098459,2024-06-25 +Resort Hotel,0,14,2017,March,13,26,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,242.0,179.0,0,Transient,64.17,0,3,Check-Out,Bryan Matthews,thester@example.com,+1-477-845-0786x39294,6507899082820408,2025-06-28 +Resort Hotel,1,161,2017,August,31,1,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,104.42,0,2,Canceled,Jason Andrews,crystal37@example.net,(649)771-3511x48467,30292102307821,2025-04-25 +Resort Hotel,0,138,2017,July,28,12,4,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,B,F,0,No Deposit,247.0,179.0,0,Transient,82.3,0,1,Check-Out,Nicholas Russell,amandalee@example.net,+1-504-896-6393x3634,30569692350547,2025-10-15 +City Hotel,1,99,2017,August,34,24,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,1,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Jason Reed,wolfemelissa@example.com,787.664.3396x85569,3510017465088293,2025-08-19 +City Hotel,0,346,2017,October,40,4,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,67.25,0,0,Check-Out,Whitney Benjamin,ibarrett@example.org,(743)886-7062,3541208594652165,2025-03-08 +City Hotel,0,114,2017,September,38,16,1,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,139.59,0,0,Check-Out,Renee Hughes,olsonkimberly@example.net,(819)611-3139x9659,6011357969004082,2024-12-28 +Resort Hotel,1,144,2017,June,25,22,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,111.21,0,1,Canceled,Mary Douglas,umata@example.net,+1-505-830-1852x915,4623451048823557,2025-01-25 +Resort Hotel,0,9,2017,March,10,5,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,88.26,0,1,Check-Out,Kristy Olsen,ejohns@example.org,387-636-7084x3252,3598088627828152,2025-08-24 +Resort Hotel,0,71,2017,March,12,24,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,1,0,1,A,I,1,No Deposit,244.0,179.0,0,Transient,85.03,1,2,Check-Out,Tina Hart,petersonshawn@example.com,(694)838-4912,584481057894,2024-09-17 +Resort Hotel,0,93,2017,June,23,3,4,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,128.77,0,1,Check-Out,Deborah Osborne,amy44@example.org,(401)893-1983,2462409158839985,2026-03-11 +Resort Hotel,0,32,2017,October,43,25,2,5,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,134.18,0,1,Check-Out,Samuel Olsen,christensennicole@example.org,001-566-542-9889x080,5518182276144441,2024-11-26 +City Hotel,0,39,2017,February,6,9,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.29,0,0,Check-Out,Erica Castillo,thomasperry@example.net,655-709-1847x9008,3501456205368865,2025-10-17 +City Hotel,0,91,2017,June,23,9,2,0,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,98.51,0,0,Check-Out,Jennifer Foster,pattersonkristy@example.org,650.526.8086,5233731240926723,2025-08-16 +Resort Hotel,1,190,2017,July,31,31,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Cynthia Daniels,joshuagilbert@example.com,(289)840-6907x45896,3505614696539222,2025-10-21 +City Hotel,0,28,2017,April,16,22,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,186.46,0,2,Check-Out,Gwendolyn Morgan,lisayoung@example.com,3148066343,180006383729158,2025-06-28 +Resort Hotel,0,26,2017,October,40,5,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,87.0,179.0,0,Transient-Party,39.86,0,0,Check-Out,Tina Sexton,samanthalam@example.org,+1-844-721-5701x378,30436722334570,2026-02-22 +City Hotel,1,203,2017,March,10,4,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,91.73,0,1,Canceled,Lauren Davis,morrisandrew@example.org,(802)476-0791,060467847434,2025-12-08 +Resort Hotel,1,237,2017,June,27,30,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,167.84,0,0,Canceled,Gregory Ross,palmerkeith@example.com,3896771951,3550788145726749,2024-09-09 +Resort Hotel,0,0,2017,March,10,8,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,58.58,1,1,Check-Out,Cody Shah,proy@example.org,313-332-2437,30169904863302,2025-08-27 +Resort Hotel,1,381,2017,April,15,11,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,111.08,0,0,Canceled,Marilyn Figueroa,laura44@example.org,(906)312-0455x864,060452149770,2025-10-27 +Resort Hotel,1,266,2017,December,49,8,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,157.0,179.0,0,Transient,65.24,0,0,Canceled,Tina Sherman,foleygary@example.net,650-758-8829x602,3593704686382775,2025-02-05 +City Hotel,1,313,2017,August,35,27,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,85.06,0,0,Canceled,Janet Smith,brandon96@example.net,5613006532,3546326331057632,2024-11-23 +City Hotel,0,11,2017,May,18,1,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,74.61,1,1,Check-Out,Richard Miller,adamsrobert@example.net,+1-981-348-9755,4175511947475130,2025-11-10 +Resort Hotel,0,276,2017,October,41,13,2,5,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient-Party,48.63,0,0,Check-Out,Amanda Reyes,lindsay92@example.net,380.441.1775x56132,3584378951937166,2024-07-12 +City Hotel,0,46,2017,September,36,3,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.58,0,2,Check-Out,Erin Hall,nicholas78@example.net,001-754-992-5296x938,503806967660,2024-10-17 +Resort Hotel,0,0,2017,January,2,5,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,44.69,1,2,Check-Out,Joseph Nichols,holdertiffany@example.org,001-624-231-8801,30258653346856,2024-06-11 +Resort Hotel,0,82,2017,July,29,20,2,0,2,0.0,0,HB,PRT,Direct,Undefined,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient-Party,196.02,1,1,Check-Out,Jessica Smith MD,thomasdickerson@example.net,819-790-1232,4303606087355616,2025-10-05 +City Hotel,0,2,2017,April,17,20,2,5,2,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,137.67,0,0,Check-Out,Stephanie House,rodriguezjames@example.com,684-666-5592x80764,676276030118,2024-10-14 +Resort Hotel,1,207,2017,July,27,5,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,75.04,0,0,Canceled,Krista Dunn,matthew95@example.com,6908828787,6011936198462821,2025-03-23 +Resort Hotel,0,9,2017,December,51,22,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,64.88,0,0,Check-Out,Brooke Chang,matthew99@example.com,(832)394-8668x2119,4447108723361,2024-07-08 +Resort Hotel,0,55,2017,August,34,17,2,4,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,170.23,0,2,Check-Out,Jessica Phelps,dianaflores@example.net,(658)695-4576,3560606433947280,2024-09-10 +Resort Hotel,0,89,2017,March,10,5,1,1,1,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient-Party,78.13,0,0,Check-Out,Daniel Martin,lroberts@example.net,735-210-5356,4844437469685386978,2025-08-10 +City Hotel,1,28,2017,December,49,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,Non Refund,77.0,179.0,0,Transient,85.96,0,0,Canceled,Matthew Walker,joshuageorge@example.org,+1-698-614-7820x860,4272627614163507694,2024-08-05 +City Hotel,1,249,2017,August,34,23,0,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,224.0,179.0,0,Transient-Party,110.77,0,0,Canceled,Kathy Benitez,heatheranderson@example.net,001-956-373-1869x1670,4920577512821451,2025-03-19 +City Hotel,0,52,2017,October,41,11,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,84.39,0,0,Check-Out,Jason Smith,reneeshah@example.com,854-775-3375,2435244938750085,2025-01-19 +City Hotel,0,9,2017,October,40,1,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,Lauren Horton,qhodge@example.net,001-666-562-1437x325,501882690925,2025-09-09 +Resort Hotel,0,138,2017,June,23,6,4,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,129.96,1,2,Check-Out,Matthew Nguyen,sstewart@example.org,001-316-364-4331x58044,503839086611,2025-06-20 +City Hotel,1,38,2017,July,29,15,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,132.21,0,1,Canceled,Sara Bradford,jenniferrichardson@example.com,(879)304-5036x37252,585475100236,2025-12-09 +City Hotel,1,414,2017,October,42,15,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,99.0,0,0,Canceled,Katherine Johnson,carsonbobby@example.com,972-483-7986,4664989958169,2024-11-07 +City Hotel,1,261,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,115.57,0,0,Canceled,Robert Harris,xbailey@example.net,(210)631-5651x8476,3551653822076504,2024-06-03 +City Hotel,0,9,2017,March,11,13,0,2,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,210.0,0,Transient-Party,105.57,1,0,Check-Out,James Swanson,jenna59@example.com,330.468.4757x65555,3546371724278932,2025-09-15 +City Hotel,1,13,2017,May,22,26,1,3,1,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.38,0,0,No-Show,Tracy Vang,daniel12@example.net,8893429987,4601461891411653434,2026-03-20 +Resort Hotel,0,10,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,46.47,1,2,Check-Out,Jeffery Pierce,sloansarah@example.com,385.762.1727x9284,213123434487826,2026-01-25 +City Hotel,1,287,2017,October,44,28,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,81.03,0,2,Canceled,Nicole Allen,davisjason@example.com,+1-731-810-4381x060,4772996759831602,2024-07-06 +City Hotel,0,39,2017,September,36,4,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.2,0,1,Check-Out,Nicole Holmes,phillipgonzalez@example.com,614-364-5432x186,6535236624355211,2025-06-17 +Resort Hotel,0,39,2017,November,46,12,1,0,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,8.0,179.0,0,Transient,55.65,0,1,Check-Out,Kimberly Brown,econner@example.com,001-650-428-1473x5236,4589917608975064189,2025-01-12 +City Hotel,1,115,2017,June,26,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,18,Transient,81.61,0,0,Canceled,Daniel Davis,ohill@example.org,888-900-2832,2553231565565296,2024-11-28 +City Hotel,0,0,2017,March,12,20,0,2,2,0.0,0,HB,PRT,Complementary,Direct,1,1,1,A,B,1,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Rebecca Henderson,josebrowning@example.net,439-794-1669,30530001677251,2025-01-18 +City Hotel,0,2,2017,June,27,29,1,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,235.21,0,0,Check-Out,Bethany Nelson,bryan18@example.org,539-267-2619x047,4940881521154987,2025-07-31 +City Hotel,1,18,2017,July,27,4,0,1,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,138.8,0,2,Canceled,Jordan Williams Jr.,douglasmclaughlin@example.org,5912275795,2249079631104321,2025-06-26 +Resort Hotel,1,102,2017,October,41,10,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,41,Transient,92.89,0,0,Canceled,Anthony Smith,munoztyler@example.org,920.789.7720,676349265055,2025-01-03 +City Hotel,1,13,2017,April,17,27,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,18.0,179.0,0,Transient,109.17,0,1,Canceled,Edward Martinez,fernandocole@example.org,704-254-7263x3138,370874795172683,2025-01-07 +City Hotel,0,4,2017,September,39,23,1,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,76.25,0,2,Check-Out,Richard Mack,yhammond@example.com,(413)809-4760,180058672738168,2025-06-10 +City Hotel,0,87,2017,May,19,6,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.55,0,1,Check-Out,Alexander Hendricks,howelljames@example.com,929.377.4469x62661,4700202139348442,2024-08-11 +Resort Hotel,1,157,2017,June,25,17,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,86.9,0,0,Canceled,Tracy Schaefer,sharonshaw@example.com,001-879-751-6161x697,30535204495138,2025-04-19 +City Hotel,0,20,2017,June,25,22,0,2,2,0.0,0,HB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,121.48,0,0,Check-Out,Joseph Hurley,ymills@example.org,001-923-718-4093x1083,4965427588081646,2024-12-27 +Resort Hotel,0,9,2017,April,16,15,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,123.36,1,1,Check-Out,Jeremy Chang,lmullins@example.net,+1-959-804-0820x8981,36579808439641,2025-04-25 +Resort Hotel,0,144,2017,August,32,6,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,347.0,179.0,0,Transient,44.51,0,0,Check-Out,Eric Crawford,andrew55@example.com,+1-885-598-3844x390,3521986505807390,2026-02-14 +City Hotel,1,49,2017,January,2,5,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Transient,63.89,0,1,Canceled,James Armstrong,johnluna@example.com,(373)764-4581x3155,4366943721064171707,2024-12-10 +City Hotel,1,93,2017,June,23,3,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,174.0,179.0,0,Transient,107.03,0,0,Canceled,Makayla Johnson,sandraruiz@example.org,562-851-6432x862,3535592200807182,2024-12-20 +City Hotel,0,145,2017,July,27,3,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,85.29,0,0,Check-Out,Ashley Rodriguez,zpatel@example.com,331.259.8091x675,3530918522502257,2025-02-01 +City Hotel,1,205,2017,August,32,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.35,0,0,Canceled,Theresa Gray,perezsylvia@example.org,420.886.2422x0743,3523160307577142,2025-12-21 +City Hotel,0,368,2017,October,41,8,1,3,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,85.13,0,0,Check-Out,Daniel Rodriguez,ehogan@example.net,269-575-9118,4368528732628,2025-07-28 +Resort Hotel,0,38,2017,March,11,12,3,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,44.71,0,2,Check-Out,Hayley Martinez,michael38@example.net,(418)844-7801x383,6571710057625857,2025-12-11 +Resort Hotel,0,1,2017,January,2,11,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,16.0,179.0,0,Transient,49.72,1,0,Check-Out,Marcia Pena,hgreen@example.com,(999)592-6242,5197759486603296,2025-04-21 +City Hotel,0,129,2017,July,27,4,0,2,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Heather Jones,walter92@example.com,6922009881,6011838270588855,2026-03-25 +City Hotel,0,160,2017,July,27,3,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,Steven Douglas,nicole26@example.com,558-342-8112x2356,4983381136818900,2026-01-02 +City Hotel,0,56,2017,August,31,3,1,2,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,109.06,0,0,Check-Out,Harry Evans,stevefrazier@example.net,284-462-2429x83134,340745452795171,2025-09-07 +Resort Hotel,1,49,2017,July,27,3,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,226.91,0,0,Canceled,Laura Martin,hbaker@example.com,653.874.8961x568,30277429375502,2026-02-06 +Resort Hotel,0,30,2017,May,22,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient-Party,75.36,0,1,Check-Out,Amy White,john73@example.org,+1-490-415-6349x8808,630418708289,2025-04-09 +City Hotel,1,61,2017,July,28,12,0,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.53,0,0,Canceled,Lisa Rodgers,drose@example.org,414-669-2813x87066,4037107808954376,2025-03-10 +Resort Hotel,0,192,2017,May,22,26,0,7,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,101.87,0,0,Check-Out,Monica Perez,barkerjohnny@example.net,+1-624-234-3486,30100607608868,2025-10-28 +City Hotel,1,414,2017,June,24,13,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,39,Transient,108.21,0,0,Canceled,Danielle Daniels,michaelyoung@example.com,636.381.7668,2225268134907946,2024-08-26 +City Hotel,1,93,2017,May,22,29,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,103.87,0,0,Canceled,Jason Mcdonald,zdominguez@example.com,8966428167,349326347776865,2024-06-25 +City Hotel,0,160,2017,May,19,9,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,22.0,179.0,0,Group,131.86,0,1,Check-Out,Amanda Chen,amy87@example.org,287.521.3454,4714913312656971,2024-07-26 +City Hotel,0,32,2017,May,19,9,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,8.0,179.0,0,Transient,102.2,0,2,Check-Out,Sarah Mills,gilbertjordan@example.org,588.601.5585,4597667964994243691,2024-11-01 +City Hotel,0,9,2017,January,4,25,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.11,0,2,Check-Out,Stephanie Monroe,brandtchristopher@example.com,607-301-8212x5474,4797110760029,2026-03-10 +City Hotel,1,14,2017,October,41,11,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,85.7,0,0,Canceled,Priscilla Decker,alexis16@example.net,537-553-2512x1564,4748898704476320,2025-04-15 +City Hotel,0,56,2017,August,35,27,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,243.97,0,1,Check-Out,Daniel Salazar,riveratyler@example.net,357-740-3202x25592,30566580137937,2024-07-09 +Resort Hotel,1,273,2017,August,33,15,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,A,1,No Deposit,10.0,179.0,0,Transient,112.35,1,3,Canceled,Krista Ferguson,snowrobert@example.net,415.832.7522,4846052479732,2025-07-27 +City Hotel,0,1,2017,March,11,11,1,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,111.7,0,1,Check-Out,Michael Delgado,rmorse@example.com,334.687.5930x260,4524227899249393,2026-01-18 +City Hotel,0,21,2017,November,46,17,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,1,No Deposit,13.0,179.0,0,Transient,128.48,0,2,Check-Out,Brett Gonzalez,holly22@example.org,+1-649-445-1950,213140037602510,2025-02-07 +Resort Hotel,0,2,2017,March,11,9,2,0,3,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,13.0,242.0,0,Transient,37.7,0,0,Check-Out,Michael Carroll,tanyastevens@example.com,786-938-0578,4231074936723416916,2025-08-14 +City Hotel,0,16,2017,January,2,4,0,1,2,0.0,0,BB,CHN,Online TA,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,100.06,0,2,Check-Out,Marcus Sutton,jessica09@example.net,001-891-778-7714x79374,349021142018148,2025-04-07 +City Hotel,0,203,2017,July,29,15,1,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,117.09,0,2,Check-Out,Adam Cruz,rachelpeterson@example.com,+1-451-429-5923,4794918164066,2024-07-06 +City Hotel,0,14,2017,November,45,4,1,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,232.0,0,Transient-Party,99.43,0,0,Check-Out,Jordan Rich,davidramirez@example.org,311.753.7833,2297523036871068,2024-11-10 +City Hotel,0,10,2017,August,33,13,0,2,2,1.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,236.87,0,2,Check-Out,Gregory Parker,eking@example.org,413-522-6277,38275618764215,2024-12-16 +City Hotel,0,13,2017,October,41,8,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,153.1,1,2,Check-Out,Gabriel Walker,christopherklein@example.org,(654)401-5699x6947,4657394399920,2024-03-29 +City Hotel,1,195,2017,June,25,18,4,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,129.29,0,0,Canceled,Ashley Hess,victor16@example.org,(608)838-2324x366,4898286372540684,2024-03-30 +Resort Hotel,0,0,2017,July,29,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,E,0,No Deposit,13.0,179.0,0,Transient,1.14,0,0,Check-Out,Amy Kim,williamsandrew@example.org,(986)440-4946,6568980261457380,2026-02-02 +Resort Hotel,0,265,2017,September,39,27,1,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,177.47,0,2,Check-Out,Ryan Snyder,jameshart@example.net,543.682.1605x4155,3588353150907399,2025-11-09 +City Hotel,0,38,2017,April,14,6,1,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,120.04,0,2,Check-Out,Victoria Casey,vsmith@example.org,(318)365-1388x7138,5286505315383085,2024-09-23 +Resort Hotel,1,42,2017,April,15,7,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,131.4,0,2,Canceled,Kristin Lawson,michael95@example.org,681-423-9320,6011406660842306,2024-09-28 +Resort Hotel,0,0,2017,October,41,9,1,0,2,0.0,0,BB,GBR,Complementary,Direct,0,0,0,A,A,0,No Deposit,16.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,Shelly Brown,jbaker@example.org,001-283-426-0058x705,3508058151967071,2025-12-04 +City Hotel,1,0,2017,May,22,31,0,1,1,0.0,0,SC,PRT,Complementary,Direct,0,0,0,P,P,0,No Deposit,19.0,331.0,0,Transient,3.99,0,0,No-Show,Wayne Ritter,erikajensen@example.org,9642887651,213129168971026,2024-06-23 +City Hotel,1,104,2017,December,49,7,0,3,1,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,53.41,0,1,No-Show,Jeffrey Johnson,paul99@example.com,+1-368-533-4009x65094,30258801377704,2024-12-02 +Resort Hotel,0,34,2017,January,2,4,1,4,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,G,0,No Deposit,186.0,179.0,0,Transient,40.79,0,0,Check-Out,Nicole Lopez,jarvissarah@example.org,482-986-3056x102,4240499300981103,2026-02-15 +City Hotel,1,276,2017,June,25,21,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,82.82,0,0,Canceled,Alexandria Butler,arthur66@example.net,(568)494-0705,4034983955905381571,2024-11-08 +Resort Hotel,0,296,2017,July,27,3,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,239.0,179.0,0,Contract,96.97,0,1,Canceled,John Olson,zlawson@example.org,206-848-0336,3589590517732106,2025-09-21 +Resort Hotel,1,38,2017,August,35,28,2,3,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,240.51,0,2,Canceled,Maria Adams,cschmidt@example.com,+1-364-307-6908x28357,6579014791919318,2025-02-11 +City Hotel,1,12,2017,December,50,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,64,Transient,73.16,0,0,Canceled,Mary Thompson,tsantiago@example.org,001-448-331-4412,501857908419,2025-10-16 +City Hotel,1,142,2017,June,25,15,0,4,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Paul Marshall,robinsonrobert@example.net,+1-281-626-7742x75666,3508749829405292,2024-06-08 +City Hotel,1,32,2017,June,23,1,2,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,153.35,0,0,Canceled,Jared Johnston,mschneider@example.org,(672)560-6715x12507,4086926512562,2024-06-17 +City Hotel,0,1,2017,November,45,7,1,1,3,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient-Party,84.65,0,0,Check-Out,Travis Wolfe,knoxchristie@example.com,+1-290-395-8509,347715950412598,2024-03-27 +Resort Hotel,1,178,2017,June,24,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,116.12,0,0,Canceled,Patrick Stewart,nicholas06@example.net,+1-895-276-6033x012,30563633276820,2024-07-01 +City Hotel,0,0,2017,September,37,13,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Contract,80.98,0,0,Check-Out,Ralph Kelly,davisjustin@example.net,001-675-941-6343x07701,38619366055955,2024-07-03 +City Hotel,1,361,2017,May,20,14,0,1,1,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,110.73,0,0,Canceled,Valerie Phillips,shannonpetersen@example.org,(833)845-4105x148,6594350678059690,2025-02-17 +Resort Hotel,0,11,2017,May,18,1,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,G,1,No Deposit,249.0,179.0,0,Transient,152.63,0,1,Check-Out,Samantha Schmidt,smithgina@example.com,(661)892-3344,4395931802741828530,2025-09-01 +Resort Hotel,1,62,2017,August,31,2,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,Non Refund,25.0,179.0,0,Transient,252.0,0,2,Canceled,Mrs. Michelle Pena,sfrench@example.net,623-677-4489x7217,213125318791652,2025-10-23 +Resort Hotel,1,151,2017,March,13,28,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,223.0,0,Transient-Party,73.22,0,0,Canceled,Laura Williams,hinesdiane@example.net,482-463-0070,3594389506313850,2024-05-14 +City Hotel,1,154,2017,July,30,26,2,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,225.86,0,0,Canceled,Joseph Vaughan,bkane@example.com,+1-255-632-9924,180041257839577,2024-08-12 +Resort Hotel,1,200,2017,August,33,16,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,248.0,179.0,0,Transient,131.92,0,0,Canceled,Ashley Rodriguez,henry07@example.com,680-688-3522,4094887650543829,2024-04-30 +City Hotel,1,107,2017,December,49,5,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,61.24,0,0,Canceled,Karen Wright,henry01@example.net,699.534.7406x7987,501826305275,2025-11-29 +Resort Hotel,1,248,2017,November,46,18,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,51.47,0,0,Canceled,Sean Jones,gerald96@example.net,+1-647-486-2610x115,374463516033840,2024-09-16 +City Hotel,0,158,2017,July,31,31,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,139.77,0,1,Check-Out,Dustin Fisher,steven93@example.net,568.896.3037,373807397162451,2024-11-30 +Resort Hotel,0,11,2017,August,33,17,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,239.0,179.0,0,Contract,56.54,0,1,Check-Out,Mariah Brown MD,josephhall@example.org,9046036677,676301299662,2024-03-27 +Resort Hotel,0,0,2017,February,6,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient,48.4,0,1,Check-Out,Wanda Smith,tiffanywilson@example.org,(307)918-0575,3521219750635450,2025-12-14 +City Hotel,0,13,2017,February,7,11,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,108.19,0,1,Check-Out,Christina Moss,victoria45@example.com,958.928.8663x6989,675996072046,2025-06-05 +City Hotel,1,3,2017,December,50,9,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,52.27,0,1,Canceled,Shannon Walker MD,moorekristine@example.net,+1-870-333-6959,060405593199,2026-03-18 +City Hotel,1,151,2017,December,50,15,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,102.43,0,1,Canceled,Cassandra Washington,brandon89@example.net,916-270-7797x82602,3556646363037542,2024-09-07 +City Hotel,0,17,2017,November,48,27,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,238.0,0,Transient,49.87,0,0,Check-Out,Jessica Wright,burchjason@example.net,472-265-4618x590,3594803228205616,2025-02-04 +Resort Hotel,0,0,2017,March,14,30,2,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,229.0,0,Transient,49.5,0,0,Check-Out,Nicole Yoder,monicawashington@example.org,(424)217-4234x60825,30303247164876,2025-02-15 +City Hotel,1,50,2017,March,13,27,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,96.88,0,1,Canceled,Michael Dickerson,jmiller@example.com,+1-297-952-9066,30048331944424,2026-02-23 +City Hotel,1,52,2017,March,11,9,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,206.18,0,2,Canceled,Laura Sanchez,fmonroe@example.com,001-506-421-4838x99192,060419486224,2024-10-22 +City Hotel,1,149,2017,December,52,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,13,Transient,107.0,0,0,Canceled,Stacey Taylor,clifford41@example.com,505-370-5903,6011820781811109,2026-01-27 +City Hotel,1,165,2017,August,35,29,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,143.71,0,1,No-Show,Jodi Morgan,jeffery39@example.net,943.554.0991,3554064198927873,2024-09-18 +City Hotel,0,28,2017,March,11,11,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,B,0,No Deposit,11.0,222.0,0,Transient-Party,62.82,0,1,Check-Out,Spencer Rogers,craigingram@example.com,596-255-6202x355,4915803348953384,2025-05-21 +City Hotel,0,0,2017,November,45,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,83.19,0,0,Check-Out,Joseph Cisneros,andrewsmargaret@example.org,001-633-709-8805,3524898785943471,2025-07-06 +City Hotel,0,44,2017,February,8,22,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,99.01,0,1,Check-Out,Corey Stephens,jenny06@example.com,228.631.1701,3505147805438192,2024-08-15 +City Hotel,0,104,2017,May,19,6,1,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,60.77,0,0,Check-Out,Christina Martin,ian41@example.com,5876527625,2232969413622574,2026-03-24 +Resort Hotel,0,36,2017,July,28,10,1,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,136.56,0,1,Check-Out,Michael Russo,kbernard@example.net,(325)669-8547,6524355961481076,2025-05-28 +City Hotel,1,6,2017,May,21,21,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.2,1,3,Canceled,Brandon Rodriguez,joneslisa@example.com,+1-925-992-9948x055,5583186741701057,2026-01-04 +Resort Hotel,0,49,2017,October,40,5,3,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,91.15,0,1,Check-Out,Megan Mejia,hensleydylan@example.net,001-477-664-9472,4905100058586223250,2024-04-08 +City Hotel,1,250,2017,May,21,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,88.63,0,0,Canceled,Melissa Blankenship,jonathanlong@example.com,341-466-4900,4915198037044447273,2024-07-03 +Resort Hotel,0,2,2017,February,8,22,1,1,3,1.0,0,BB,ESP,Online TA,Direct,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,89.51,0,0,Check-Out,Timothy Benjamin,bwhite@example.org,001-491-391-0890,3591175911324183,2025-12-17 +City Hotel,0,159,2017,August,32,9,2,6,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,114.17,0,0,Check-Out,Jason Trujillo,shannonbradley@example.org,5257000912,349652032025544,2025-04-07 +Resort Hotel,1,147,2017,July,28,11,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,41.64,0,0,Canceled,Yolanda Chen,nicholas28@example.com,470-967-6529,5184208209971957,2025-12-30 +City Hotel,0,300,2017,October,41,9,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,83.0,179.0,0,Transient-Party,97.4,0,0,Check-Out,Michael Cooper,brendasanchez@example.org,779-743-6231x2970,4558070668805766,2025-03-07 +City Hotel,1,16,2017,March,13,25,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,78.38,0,0,Check-Out,Julie Todd PhD,sanchezbrandon@example.net,001-758-829-1740x1832,30396303599795,2025-12-18 +City Hotel,1,44,2017,October,42,18,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,28.0,179.0,0,Transient,65.53,0,0,Canceled,Jennifer Davis,bobbybean@example.net,417-290-8875x64484,30401744066543,2024-09-27 +City Hotel,0,79,2017,May,22,27,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.26,0,1,Check-Out,Chelsea Martinez DDS,amy07@example.com,+1-248-432-0890x9660,4327657291739464448,2024-11-11 +Resort Hotel,1,367,2017,February,9,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Contract,60.77,0,0,Canceled,Kenneth Ramirez,amybecker@example.com,+1-941-897-3801x7879,4744225414936,2025-11-20 +Resort Hotel,0,2,2017,May,20,17,2,4,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,137.37,1,1,Check-Out,Michelle Thompson,brewercarrie@example.net,675.263.3544,3582432578260734,2025-04-19 +City Hotel,0,2,2017,March,13,23,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,0,No Deposit,15.0,236.0,0,Transient,53.72,0,1,Check-Out,Courtney Dixon,gwilson@example.net,+1-464-854-8310x166,180068122222457,2025-04-08 +City Hotel,1,145,2017,November,46,15,0,4,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,104.42,0,0,Canceled,Sharon Duran,taylor24@example.com,(494)819-2712,213124716767968,2026-01-24 +Resort Hotel,0,299,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,3.59,0,0,Check-Out,Cathy Allen,janetwells@example.com,+1-953-540-5347x1708,6011377915245456,2025-11-27 +Resort Hotel,1,154,2017,July,30,24,0,6,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,19,Transient,84.54,0,0,Canceled,Sharon Davis,wilkersoncatherine@example.org,635-617-7845x156,30490645268407,2024-09-20 +Resort Hotel,1,29,2017,January,2,6,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,252.0,1,3,Canceled,Denise Richardson,murphykelly@example.com,386-952-8061x31027,501819741874,2024-04-28 +City Hotel,1,16,2017,June,26,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,100.64,0,0,Canceled,Joshua Martin,breweranthony@example.org,(727)442-0982,345770447180482,2024-05-19 +City Hotel,0,365,2017,October,40,6,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,64.0,179.0,0,Transient-Party,41.78,0,0,Check-Out,Kendra Nielsen,williamseric@example.net,812.243.3817x9431,3558999610738091,2025-01-11 +Resort Hotel,1,172,2017,July,31,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,133.5,0,2,Canceled,Dean Smith,ysanchez@example.com,(610)711-0628x5498,4235094394598462,2025-07-08 +City Hotel,0,24,2017,February,9,25,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,106.61,0,1,Check-Out,Hannah Walker,aguilartyler@example.com,975-506-7703x27659,501893269354,2024-04-14 +City Hotel,1,46,2017,February,6,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,2,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,1,Canceled,Thomas Wagner,blewis@example.org,001-607-614-4317,180024873514030,2026-01-17 +City Hotel,0,59,2017,July,29,15,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,237.16,0,1,Check-Out,Connor Contreras,gonzalezallen@example.net,001-473-352-1574x9445,3576426716766386,2026-03-17 +Resort Hotel,0,0,2017,April,17,23,1,0,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,C,I,0,No Deposit,364.0500000000011,179.0,0,Transient,0.5099000000000001,1,0,Check-Out,Alexa Riggs,william84@example.com,270.386.3842x3063,4365645614402064242,2025-08-01 +Resort Hotel,0,1,2017,March,13,25,1,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,55.43,0,1,Check-Out,Nicole Bean,dana31@example.net,(824)510-4779x4795,4170587553739170,2025-04-19 +City Hotel,0,1,2017,May,22,31,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.0,1,1,Check-Out,Brett Clayton,dblack@example.net,(627)233-5837,30147290883126,2024-05-30 +Resort Hotel,0,9,2017,February,6,9,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,29.0,179.0,0,Transient,42.1,0,0,Check-Out,Michelle Pena,jason95@example.com,543.237.2320x12769,4845435199615328,2024-06-03 +City Hotel,0,55,2017,November,44,3,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,147.47,0,0,Check-Out,Charles Stevenson,jermainejones@example.net,001-387-308-8262x3011,4645252028673,2025-09-26 +City Hotel,0,141,2017,December,48,2,1,3,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.14,0,0,Check-Out,Joseph Thompson,swatson@example.com,+1-444-900-7524,4014399796382531,2024-08-21 +City Hotel,0,23,2017,December,48,1,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,17.0,252.0,0,Transient-Party,82.85,0,0,Check-Out,Susan Edwards,lrobinson@example.com,747-797-2551,4802461504744299,2024-07-23 +City Hotel,1,45,2017,October,42,18,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,9.0,179.0,0,Transient,104.13,0,0,Canceled,Mario Evans,elizabethquinn@example.org,772-230-5152x351,4544332250875061,2025-09-26 +City Hotel,1,18,2017,March,12,20,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,237.0,179.0,0,Transient,106.83,0,0,Canceled,Michael Warren,jessica13@example.org,846.391.7229x47611,4142301800955,2024-07-16 +City Hotel,0,17,2017,November,45,7,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.91,0,1,Check-Out,Kimberly Clark,marytorres@example.com,(868)785-3228x033,3524368334011188,2025-06-04 +City Hotel,0,82,2017,March,12,20,2,2,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,9.0,179.0,0,Transient,81.23,0,1,Check-Out,Sarah Stephens,kturner@example.net,(871)857-2534x7852,4902908112900,2024-07-23 +City Hotel,1,111,2017,April,17,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,141.02,0,1,Canceled,Kyle Curtis,christina56@example.org,+1-963-793-7151x387,630497186290,2024-11-10 +City Hotel,1,210,2017,August,34,21,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,252.0,0,3,No-Show,John Golden,qwatson@example.org,+1-432-998-6029x8454,4229037594075,2025-03-30 +Resort Hotel,0,14,2017,April,14,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,236.0,179.0,0,Transient,65.49,1,1,Check-Out,Daniel Sanders,edward66@example.org,377-877-7386x40986,213140926295186,2024-10-12 +City Hotel,1,106,2017,June,26,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,140.79,0,0,Canceled,Samuel Carter,jacquelinemolina@example.net,(627)316-8605x07878,4326832071581933,2025-03-16 +City Hotel,1,159,2017,September,36,5,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,0,Transient,79.02,0,0,Canceled,John Garner,smithgregory@example.net,(402)543-8508,371231965470653,2025-04-24 +City Hotel,1,53,2017,January,2,11,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,86.11,0,0,Canceled,Brittany Hammond,travis29@example.org,775-452-4997,4748637870171681,2026-02-26 +City Hotel,0,0,2017,February,6,5,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Daniel Zamora,mark36@example.net,+1-994-790-2745x8205,3523952305664314,2025-05-29 +Resort Hotel,1,152,2017,June,23,5,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,2,No Deposit,239.0,179.0,0,Transient,110.16,0,1,Canceled,Anthony Bryan,pearsonmatthew@example.com,706.942.6785x9839,374019866088600,2024-10-22 +City Hotel,0,65,2017,May,19,6,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,76.46,0,0,Check-Out,Stephen Porter,sierra04@example.org,317.377.7050x63664,213156634302874,2025-02-25 +City Hotel,0,62,2017,March,13,24,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,129.47,0,2,Check-Out,Lynn Hamilton,bankspeggy@example.org,(957)291-7917,376978143314527,2025-09-10 +City Hotel,0,104,2017,June,24,8,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.69,0,2,Check-Out,Mrs. Marissa Walker DVM,sarah51@example.com,725.973.9927x1046,4437014493621,2025-05-29 +City Hotel,0,150,2017,March,14,30,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,84.0,179.0,0,Group,84.42,0,1,Check-Out,Tommy Brown,piercekristin@example.com,502-997-8468x94357,3515364534297942,2024-08-06 +City Hotel,0,13,2017,April,17,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,108.87,0,2,Check-Out,Annette Jenkins,kgaines@example.org,001-793-397-9395x0534,676206529791,2024-06-09 +City Hotel,0,50,2017,January,5,28,2,0,2,0.0,0,SC,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,129.38,0,0,Check-Out,Jessica Rollins,davidgibbs@example.org,4958407613,3543708433160260,2025-03-17 +City Hotel,1,162,2017,July,28,12,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,124.03,0,1,Canceled,Kelly Cox,knightjennifer@example.org,001-245-457-9448x653,575485083209,2025-02-17 +Resort Hotel,0,16,2017,May,18,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,240.0,179.0,0,Transient-Party,46.24,0,2,Check-Out,Benjamin Christensen,calhounjason@example.com,718.403.7776x363,2481795541799366,2026-03-14 +City Hotel,0,0,2017,December,52,29,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient,111.25,0,1,Check-Out,Erin Gilbert,janicepierce@example.org,+1-277-921-9502x9155,3588206049409615,2024-10-20 +Resort Hotel,0,37,2017,August,32,10,2,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient-Party,84.25,0,1,Check-Out,Tiffany Hernandez,nelsoncarlos@example.org,384-633-3661,6504062095006415,2024-11-28 +Resort Hotel,0,96,2017,May,21,23,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,77.19,0,2,Canceled,Heather Gallagher,denise83@example.net,6164327522,4433597647741,2024-04-25 +City Hotel,1,85,2017,December,49,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,75,Transient,115.07,0,1,Canceled,Aaron Collins,uramirez@example.net,+1-505-488-2035x98177,3546270733907723,2024-08-30 +City Hotel,1,0,2017,September,36,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Contract,89.17,0,0,Check-Out,Andrew Simon,candice23@example.com,001-739-523-1909x1232,4190726972487237,2024-10-13 +Resort Hotel,0,195,2017,April,15,8,1,6,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,244.0,179.0,0,Transient,107.58,0,1,Check-Out,Nicole Singh,tonya82@example.org,001-526-627-4902,676301226343,2025-10-25 +Resort Hotel,1,167,2017,January,2,3,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,118.7,0,1,Canceled,Catherine Price,hillkevin@example.com,507.559.0799x655,6513642923794818,2025-04-02 +Resort Hotel,1,26,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,238.0,179.0,0,Transient,40.66,0,1,Canceled,Jason Smith,andrea02@example.com,+1-349-581-7188,30167456338913,2026-03-15 +City Hotel,1,98,2017,March,9,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,109.92,0,0,Canceled,Dennis Keller,chelseaandrews@example.org,406.825.5761,180041757302993,2025-01-10 +Resort Hotel,0,5,2017,September,37,11,0,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,I,0,No Deposit,295.0,179.0,0,Transient,5.55,0,0,Check-Out,Ronald Weber,wooddeborah@example.org,393-266-1619x12673,6011938423566459,2026-02-17 +Resort Hotel,0,0,2017,December,51,23,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,84.03,1,1,Check-Out,Michelle Vance,qstout@example.com,001-681-223-8381,4419200313430848,2024-12-03 +Resort Hotel,1,34,2017,April,14,2,1,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,119.7,0,0,Canceled,Erik Jones,masonanthony@example.org,829.308.7290x95997,30507755813571,2025-12-27 +City Hotel,1,49,2017,December,52,24,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,130.08,0,0,Canceled,James Vasquez,kellybrowning@example.net,(872)413-3196,4379908941845970039,2024-12-19 +City Hotel,1,84,2017,April,16,17,1,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.41,0,2,Canceled,Emma Ruiz,barbara37@example.org,001-413-963-4130x961,3546274751024528,2024-12-29 +City Hotel,1,20,2017,August,32,12,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,197.13,0,0,Canceled,Sarah Hernandez,zburnett@example.com,001-643-247-3672,3588965882329012,2026-01-18 +City Hotel,0,3,2017,August,34,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,202.0,0,Transient,102.9,0,1,Check-Out,Gregory Golden,joseph08@example.com,+1-475-743-8877x452,560072487153,2024-05-08 +City Hotel,0,43,2017,May,20,16,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.72,0,1,Check-Out,Denise Prince,keith03@example.com,001-236-521-2710,3587540544277320,2025-03-19 +City Hotel,0,20,2017,September,36,3,1,2,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,133.43,0,1,Check-Out,Laura Reed,brownsamantha@example.org,001-284-880-7402x58068,3533843215285654,2024-04-03 +Resort Hotel,1,0,2017,April,18,29,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,K,1,No Deposit,15.0,179.0,0,Transient,1.59,0,0,Canceled,Sarah Smith,phudson@example.com,+1-240-240-2916x9442,4119575808960096068,2025-10-09 +Resort Hotel,0,51,2017,February,6,8,1,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,82.66,0,1,Check-Out,Barry Buckley,qgreer@example.org,001-823-743-5123x141,5440166442054678,2024-11-23 +City Hotel,0,46,2017,October,41,8,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,E,E,0,No Deposit,96.0,179.0,0,Transient,62.7,0,0,Check-Out,Nicole Jensen,carlhuffman@example.com,797-401-5796,6591592316422722,2024-04-19 +City Hotel,0,385,2017,October,41,11,0,2,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient-Party,96.8,0,0,Check-Out,Christopher Stanley,meganshields@example.com,582.437.3498,3518993398687256,2024-07-27 +Resort Hotel,0,2,2017,April,16,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,15.0,331.0,0,Transient,46.78,0,0,Check-Out,Gregory Conrad,jonespaul@example.com,446.459.2712x6902,6011423866100678,2024-09-24 +City Hotel,0,44,2017,August,32,6,1,3,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.16,0,1,Check-Out,Jeffery Wallace,lmontgomery@example.com,9083999845,4697456267029,2024-09-29 +City Hotel,1,150,2017,April,17,27,1,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,101.28,0,0,Canceled,Gerald Conrad,schmidtanthony@example.com,001-413-547-5357x9194,180031766436890,2025-05-16 +City Hotel,0,24,2017,August,33,17,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,225.16,0,0,Check-Out,Paula Porter,ashleyaustin@example.com,+1-274-616-4164x6579,4270496950453121,2024-05-14 +Resort Hotel,1,98,2017,March,13,23,1,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,15.0,179.0,0,Transient,147.02,0,0,Canceled,Jesse Hodges,andersonjerry@example.com,527-772-9344,585822714408,2025-02-03 +City Hotel,0,11,2017,October,40,3,2,0,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,80.27,0,0,Check-Out,Nicolas Jones,jerrynelson@example.com,513-635-9516,36224617085992,2024-09-12 +City Hotel,1,0,2017,August,32,12,2,0,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Canceled,Rebecca Tran,singhashley@example.com,5318332840,4415709830112272505,2024-09-17 +Resort Hotel,0,20,2017,August,32,12,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,93.44,0,0,Check-Out,Paul Riley,thomas71@example.com,001-700-340-9754x17416,4213541282740,2026-01-04 +City Hotel,1,324,2017,September,37,15,1,2,2,0.0,0,SC,PRT,Groups,GDS,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient,173.98,0,0,Canceled,Robert White,dkrueger@example.org,993-924-7782x19739,4254242482504524874,2025-08-21 +City Hotel,0,46,2017,June,23,9,2,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,106.26,1,1,Check-Out,Stephanie Jones,gallegosvanessa@example.org,001-642-862-9914x290,3518800452970793,2025-08-17 +City Hotel,1,12,2017,September,36,5,0,2,2,0.0,0,SC,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,79.09,0,3,Canceled,Catherine Hicks,cory41@example.org,811-551-3498,3585923617537899,2026-03-06 +Resort Hotel,0,48,2017,April,15,14,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,246.0,179.0,0,Transient,135.53,0,3,Check-Out,Melanie Taylor,pmata@example.org,(370)705-7352x6967,3519012877943681,2024-09-13 +City Hotel,1,132,2017,June,23,5,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,108.83,0,0,Canceled,Shelley Kelley,lisaallen@example.net,(671)459-5124x9183,4131196476536586,2025-10-11 +City Hotel,0,53,2017,October,42,21,0,3,2,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,79.0,0,Transient,109.37,0,2,Check-Out,Robert Butler,david28@example.net,(240)915-5237,4764996085756684456,2024-05-28 +Resort Hotel,0,290,2017,October,42,17,2,5,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,232.3,1,2,Check-Out,Geoffrey Williams,kendratate@example.org,+1-791-662-2195x84641,3543115178427484,2026-02-21 +City Hotel,1,0,2017,January,4,21,1,3,1,0.0,0,BB,,Direct,Direct,0,0,0,H,A,0,No Deposit,13.0,179.0,0,Transient,94.74,0,0,Canceled,Anthony Doyle,matthew75@example.org,+1-947-688-5557,3563124349758475,2025-11-20 +City Hotel,0,3,2017,November,44,4,1,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,213.0,0,Transient-Party,101.5,0,0,Check-Out,Mrs. Nicole Greene,kelly38@example.net,515-471-9238x412,4130429184824,2026-02-24 +City Hotel,0,20,2017,April,15,13,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.28,0,1,Check-Out,Kyle Allen,jonathanhurst@example.com,853.621.9575x19394,4936466522639,2025-04-30 +City Hotel,0,8,2017,December,52,25,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,93.09,1,2,Check-Out,Victor Christensen,michaelwade@example.com,001-322-893-8041x3243,3599511561469062,2025-01-30 +Resort Hotel,0,10,2017,July,29,17,0,2,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,135.37,1,1,Check-Out,Patrick Jackson,theresaharrington@example.org,+1-418-356-7635x3250,2272613254578187,2024-10-04 +City Hotel,0,1,2017,April,18,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,64.0,0,Transient,93.01,0,0,Check-Out,James Hernandez,qreed@example.org,+1-636-460-6841x01269,38748950301796,2025-10-17 +City Hotel,1,95,2017,May,18,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,294.0,179.0,0,Transient,123.27,0,0,Canceled,Kristina Wagner,baxtermichelle@example.org,001-633-512-3409x51819,4874663369917902224,2025-02-22 +City Hotel,1,203,2017,August,31,1,2,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,8.0,179.0,0,Transient,134.04,0,3,Canceled,Anthony Gaines,williamsontimothy@example.org,(632)719-0574,3553464623737205,2024-11-16 +City Hotel,0,19,2017,February,9,26,2,0,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,37.82,0,1,Check-Out,Tracy Franco,melissa05@example.org,981.900.7078x35965,4851482250802,2026-01-31 +Resort Hotel,0,0,2017,October,40,5,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,141.0,179.0,0,Contract,42.76,0,2,Check-Out,Mr. David Carlson,uhayes@example.org,4459434453,3507009600709250,2025-03-23 +Resort Hotel,0,44,2017,May,19,4,0,3,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,188.44,0,1,Check-Out,Brittany Simon,pharris@example.org,715-594-2940,5201155988002794,2025-03-22 +City Hotel,0,7,2017,March,12,20,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,7.0,179.0,0,Transient,98.66,0,1,Check-Out,Nancy Smith,jeffreypeterson@example.org,6955034280,676341855770,2025-05-28 +City Hotel,1,274,2017,July,27,1,2,4,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,106.6,0,1,Canceled,Alexander Jenkins,trevorlee@example.com,809.271.0079x874,370856849387490,2025-11-30 +City Hotel,0,14,2017,April,17,26,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,102.81,0,0,Check-Out,Brendan Hawkins,chuang@example.org,(563)684-3246x1062,30087536846729,2025-09-23 +Resort Hotel,0,16,2017,April,14,5,4,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,101.5,0,1,Check-Out,Sandra Garza,christopher09@example.org,001-666-544-1767x9091,213138142984039,2025-05-14 +Resort Hotel,0,8,2017,October,42,18,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,85.0,179.0,0,Transient,53.28,1,1,Check-Out,Francisco Smith,robertwilson@example.org,5094604620,30403694651910,2025-05-07 +City Hotel,0,271,2017,July,28,12,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,64.27,0,0,Check-Out,Nicole Nelson,tracycarpenter@example.org,345.477.0803x39164,180020635624091,2025-01-22 +Resort Hotel,1,187,2017,July,31,30,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,239.0,179.0,0,Transient,78.5,0,2,Canceled,Sarah Guerrero,garciaandrew@example.com,517-498-8106x66025,4310168913163655559,2024-09-23 +Resort Hotel,1,59,2017,December,52,26,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,304.0,179.0,0,Transient,197.42,0,0,Canceled,Alexis Edwards,phillipsjeremy@example.com,8077791192,4178106937897265,2024-08-26 +City Hotel,0,69,2017,August,32,7,1,2,2,0.0,0,BB,POL,Online TA,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.96,0,1,Check-Out,Susan Owens,michael76@example.net,+1-268-541-3925x34018,373714302632273,2025-07-12 +City Hotel,1,314,2017,August,34,24,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,0,Non Refund,3.0,179.0,0,Transient,63.36,0,0,Canceled,Anthony Williams,jamesterry@example.org,846-578-6028x243,3542829718390181,2024-12-31 +Resort Hotel,0,29,2017,June,24,12,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,55.11,0,1,Check-Out,David Armstrong,paulharmon@example.net,001-419-783-7493x7115,4338640632667893,2025-02-19 +City Hotel,1,331,2017,July,29,19,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,87.05,0,0,Canceled,Brian Jones,ramoswendy@example.org,232-421-6474x7603,180006214916420,2025-08-04 +City Hotel,1,169,2017,May,21,22,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,129.74,0,0,Canceled,Todd Dickerson,lawrenceyolanda@example.org,+1-287-847-3242x495,4727415650500,2024-08-04 +Resort Hotel,0,0,2017,March,13,30,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,262.0,0,Transient,47.19,1,0,Check-Out,Curtis Scott,nicholasshea@example.org,655.311.9179x181,6576200947080534,2024-04-11 +City Hotel,0,33,2017,September,36,5,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,12.0,179.0,0,Transient,77.73,0,3,Check-Out,Michael Gordon,blucas@example.net,654.707.9142,3587260433282923,2025-11-23 +City Hotel,0,8,2017,November,44,4,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,78.99,0,2,Check-Out,Travis Foster,brooksmonica@example.net,484.890.8921x25221,675952077674,2025-05-10 +City Hotel,1,146,2017,June,26,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,138.54,0,0,Canceled,Katelyn Clark,scottbarry@example.org,(593)639-6935x529,3537244415897271,2025-08-10 +Resort Hotel,1,272,2017,November,48,30,2,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient-Party,106.26,0,0,Canceled,Donald Gray,alanbarber@example.net,(474)401-9420,370955992057353,2025-05-22 +Resort Hotel,0,0,2017,October,41,11,0,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,16.0,179.0,0,Transient,54.12,0,0,Check-Out,Aaron Taylor,stanleylonnie@example.net,(356)588-8385x6409,5260891842028298,2024-09-03 +City Hotel,0,52,2017,May,21,20,2,2,1,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,A,1,No Deposit,86.0,179.0,0,Transient-Party,87.06,0,0,Check-Out,Nicholas Saunders,kristinharrison@example.org,(242)767-5404x6621,4896656472815,2024-12-24 +City Hotel,0,218,2017,October,41,10,2,1,1,1.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,85.34,0,0,Check-Out,Rebecca Baker,catherine76@example.net,+1-228-212-8986,501826815836,2026-03-01 +City Hotel,0,100,2017,April,17,28,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,90.63,0,0,Check-Out,Justin Daniels,wpope@example.net,001-341-526-6284x37768,379692408489430,2024-12-14 +Resort Hotel,1,47,2017,January,4,26,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,128.72,1,1,Canceled,Jose Clark,justin03@example.com,311.593.7061x1341,3555342720310217,2026-01-01 +City Hotel,0,11,2017,May,20,17,2,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,10.0,179.0,0,Transient,142.04,0,1,Check-Out,Heather Mathews,kennethnichols@example.com,001-524-906-4453x396,3582113827509846,2024-07-27 +Resort Hotel,0,2,2017,October,42,18,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,92.84,1,0,Check-Out,Meghan Richards,jeromelopez@example.com,+1-862-410-7072x9604,379141559388298,2026-03-14 +City Hotel,0,94,2017,March,13,27,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,133.38,0,1,Check-Out,Eric Carpenter,kiddjanet@example.org,(633)666-5748,6011010229162741,2025-07-01 +Resort Hotel,0,151,2017,March,10,8,1,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,230.68,1,2,Check-Out,Autumn Smith,johnsonwilliam@example.org,001-728-305-9984,3559696988932319,2024-03-28 +City Hotel,1,256,2017,June,24,9,2,3,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,129.0,0,1,Canceled,Raymond Murphy,michael25@example.net,550-934-6724x3282,4961115978001530,2024-05-16 +Resort Hotel,1,89,2017,April,16,14,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,167.05,0,1,No-Show,Jacqueline Vaughn,whiteapril@example.net,001-531-726-2915x0053,4378111979094597,2025-05-05 +City Hotel,0,47,2017,November,47,20,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,51.98,0,3,Check-Out,Justin Valentine,alyssacarter@example.org,(517)274-6857,5501318110652731,2025-11-23 +Resort Hotel,0,94,2017,March,12,20,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,50.55,1,0,Check-Out,Claire Yang,carolyn31@example.net,(935)417-1444x75681,4088177249930932067,2024-03-30 +City Hotel,1,0,2017,November,45,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,46.49,0,0,No-Show,James Mills,valerie16@example.net,+1-470-914-8501x8767,4958884494430979,2024-12-10 +City Hotel,1,51,2017,August,32,6,0,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,210.44,0,0,Canceled,Chase Flowers,rjuarez@example.net,519-855-8113,676197682500,2025-10-10 +City Hotel,0,109,2017,December,49,8,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,24.0,179.0,0,Transient,112.26,0,2,Check-Out,Danielle Sanchez,kylemitchell@example.org,001-960-791-5715x9932,4164367352736555246,2024-06-10 +City Hotel,1,302,2017,June,24,12,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,136.12,0,0,Canceled,Derek Bishop,zacharyrivera@example.com,5989909294,4801219813116536947,2025-07-20 +Resort Hotel,0,88,2017,November,45,6,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient-Party,75.13,0,0,Check-Out,Kaylee Campos,donnalopez@example.org,001-241-386-3073,213128791679279,2025-03-05 +Resort Hotel,0,231,2017,July,31,29,4,9,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,157.88,0,2,Check-Out,Daniel Hanson,amy29@example.net,453.726.4629,4721735724842287900,2024-05-23 +City Hotel,0,59,2017,November,47,23,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,107.69,0,2,Check-Out,Cynthia Richardson,fwilson@example.net,+1-587-732-2970x660,349405831304374,2025-06-28 +City Hotel,1,414,2017,May,19,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,77.22,0,0,Canceled,Sonya Sanders,andrew17@example.com,001-999-258-0709x28866,374543878036182,2026-01-20 +Resort Hotel,1,165,2017,July,30,26,2,3,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,241.0,179.0,0,Transient,250.33,1,2,No-Show,Kimberly Reed,lyonskathryn@example.org,001-347-303-3726x743,4769555304239281000,2025-09-14 +Resort Hotel,0,2,2017,July,29,19,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,110.19,0,1,Check-Out,Robert Copeland,stephanie45@example.net,+1-353-728-4949x213,3566824250827899,2024-04-29 +City Hotel,0,58,2017,April,17,28,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,222.25,0,2,Check-Out,Donna Grimes,alexis45@example.org,(289)776-6748,346325076121510,2025-06-21 +Resort Hotel,0,14,2017,September,36,5,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,122.05,0,0,Check-Out,David Pacheco,markgarcia@example.com,(599)438-0903x564,36084503411904,2024-06-17 +City Hotel,0,325,2017,September,37,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,72.17,0,0,Check-Out,Nathan Gibson MD,matthew22@example.org,381.315.6170x29193,6011337762170793,2025-01-30 +Resort Hotel,0,138,2017,July,28,14,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient,49.97,1,1,Check-Out,Christina Booth,justinsmith@example.net,001-287-248-7594x59161,213136118695316,2025-10-14 +City Hotel,1,414,2017,July,27,3,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,122.85,0,0,Canceled,Joel Hill,aaron13@example.com,(645)674-6475x32465,060402579696,2024-06-28 +Resort Hotel,0,0,2017,February,7,15,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient-Party,61.09,0,0,Check-Out,Lisa Johnston,ilong@example.com,+1-582-521-5764x585,6011286359956215,2025-12-15 +Resort Hotel,0,302,2017,December,51,23,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,87.49,0,0,Check-Out,Joseph Morrison,michelle68@example.net,8312786017,38709105315354,2025-10-04 +City Hotel,0,15,2017,August,32,7,1,1,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,236.82,0,3,Check-Out,Ricky Davila,shunt@example.org,+1-346-776-2856x282,4820516187556148509,2026-02-22 +Resort Hotel,0,331,2017,October,43,24,1,5,2,0.0,0,HB,CN,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,119.62,0,0,Check-Out,John Hayes,floressylvia@example.com,001-775-506-7060x22493,4260611167460440740,2025-10-17 +Resort Hotel,0,152,2017,December,2,31,3,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,242.0,179.0,0,Transient,75.58,0,1,Check-Out,Anna Noble,tmason@example.net,(535)703-7634x52266,347453515720830,2025-11-21 +Resort Hotel,1,18,2017,January,4,23,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,No-Show,Patricia King,breannamason@example.net,7732233727,4060057590937594,2025-04-18 +City Hotel,1,41,2017,September,38,17,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,101.13,0,0,Canceled,Daniel Prince,waynewall@example.net,(777)681-3184,4231565598221,2025-01-16 +City Hotel,1,15,2017,November,45,8,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,84.27,0,0,Canceled,Sarah Carpenter,aliciarich@example.org,+1-323-210-5424x009,503864469187,2026-03-15 +City Hotel,1,155,2017,July,28,8,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,252.0,0,0,Canceled,Kelly Reese,tylersmith@example.net,001-725-705-3375x9903,2331007787960310,2025-11-17 +City Hotel,0,91,2017,February,6,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,20.0,179.0,0,Transient-Party,79.71,0,0,Check-Out,Brian Craig,kolson@example.com,(441)344-6722x74739,341756280866331,2025-12-02 +City Hotel,0,18,2017,August,35,30,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.64,0,0,Check-Out,Emily Weber,copelandwalter@example.org,756-868-9447x66157,3591036930163798,2025-10-20 +City Hotel,0,12,2017,November,45,8,1,1,3,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,213.0,0,Transient-Party,113.16,0,0,Check-Out,Daniel Wells,armstrongdarrell@example.com,(376)983-7369x3050,4220756821914,2025-06-20 +Resort Hotel,0,114,2017,June,23,5,4,10,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,D,E,0,No Deposit,276.0,179.0,0,Transient,125.33,0,0,Check-Out,Candice Garcia,yanderson@example.net,202.947.0272x280,3567919674208350,2024-05-12 +City Hotel,0,36,2017,August,31,4,2,4,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,128.61,1,2,Check-Out,Mary Hunter,jennifermelendez@example.net,+1-746-892-1167,2707486391991745,2026-01-02 +City Hotel,1,108,2017,May,21,24,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,272.0,179.0,0,Transient,130.98,0,0,Canceled,Rebecca Byrd,daniellewilliams@example.net,781.867.3741,3585402698361412,2025-02-06 +Resort Hotel,1,41,2017,October,40,2,4,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,224.31,0,1,Canceled,Thomas Chapman,randallchristopher@example.net,001-984-558-5581x65692,4557781270199,2025-12-14 +City Hotel,1,13,2017,June,26,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.87,0,1,Canceled,Jonathan White,andrew36@example.net,308-293-5885,213182597091817,2025-05-26 +City Hotel,0,233,2017,October,40,4,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,29.0,179.0,0,Contract,46.48,0,0,Check-Out,Eric Jones,daniel49@example.net,(407)964-1307x810,3568567584821694,2024-12-27 +City Hotel,1,159,2017,April,15,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,63.86,0,0,Canceled,Joshua Rivera,troynelson@example.org,6306666635,6575223679887547,2025-06-05 +City Hotel,1,92,2017,July,31,30,2,6,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,144.72,0,2,Canceled,Sylvia Barnes DVM,jorge64@example.net,850.553.3334x604,180011400780788,2024-06-09 +City Hotel,0,76,2017,July,30,25,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,7.0,179.0,0,Group,117.02,0,1,Check-Out,Charles Murphy,jessicawheeler@example.com,(991)674-6051,3580434426347905,2024-12-06 +City Hotel,1,47,2017,December,51,21,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,63.59,0,1,Canceled,Christopher Decker,cgaines@example.com,256-812-9898x2134,060437341724,2024-09-28 +City Hotel,0,41,2017,September,37,10,2,5,1,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,97.1,0,0,Check-Out,Briana Carrillo,horncarrie@example.org,+1-653-546-6434x2365,5342227998125210,2025-03-31 +City Hotel,1,16,2017,July,28,12,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,147.95,0,2,Canceled,Carol Henry,mary54@example.com,+1-972-973-6904x794,349635520369755,2024-10-07 +City Hotel,1,156,2017,May,18,1,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,112.73,0,0,Canceled,Margaret Ferguson,robertmiller@example.net,+1-454-286-5678x902,371664992240493,2025-12-17 +City Hotel,0,1,2017,March,11,13,1,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,145.09,1,1,Check-Out,Matthew Scott,sortiz@example.com,3486487057,630473014136,2024-04-17 +Resort Hotel,0,16,2017,August,31,4,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,41.52,0,1,Check-Out,Lauren Weber,dawn36@example.net,001-977-937-2674x7960,4462593674797,2024-03-27 +Resort Hotel,0,19,2017,October,41,9,1,1,1,0.0,0,BB,USA,Corporate,Corporate,0,0,0,A,H,1,No Deposit,17.0,331.0,0,Transient-Party,50.01,0,0,Check-Out,Mark Carter,frodriguez@example.com,337.730.9742x806,3506438577500023,2024-08-29 +City Hotel,1,15,2017,February,7,15,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,45.99,0,2,Canceled,Hannah Kidd,martinezseth@example.org,001-567-634-0710x732,3521452745602687,2025-11-24 +City Hotel,0,145,2017,September,36,5,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,7.0,179.0,0,Transient,109.65,0,1,Check-Out,Sheri Lee,lunajeremiah@example.net,(618)567-6492,3558073913820632,2026-01-13 +City Hotel,0,14,2017,June,24,14,0,2,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,61.23,0,0,Check-Out,Amy Norton,emily65@example.net,616.421.5017x63465,4778182080832287360,2025-09-06 +City Hotel,0,24,2017,April,15,6,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,137.97,0,1,Check-Out,Steven Harris,whitedebbie@example.com,603-452-0413x86270,371788729635053,2026-02-07 +City Hotel,0,48,2017,October,44,30,2,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,90.23,0,3,Check-Out,Isabella Powell,garzajacob@example.com,001-637-919-7439,180022927639860,2025-11-15 +Resort Hotel,1,15,2017,December,49,8,0,1,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,218.04,0,1,Canceled,Johnny Martinez DDS,wross@example.net,+1-514-441-3191x87303,379163642473143,2024-04-04 +City Hotel,0,21,2017,July,29,22,1,1,1,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,129.63,1,0,Check-Out,Dawn Mckinney,monica23@example.org,331-219-8772x482,2299198155171026,2026-02-02 +City Hotel,0,157,2017,October,43,27,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,113.42,0,2,Check-Out,Denise Torres,nicholas19@example.net,(527)437-2026x3694,4756988110741,2024-07-07 +City Hotel,0,92,2017,August,32,6,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,17.0,179.0,0,Transient,133.51,0,2,Check-Out,Paul Nelson,jefferyburch@example.com,443-347-2205,4975119297663313,2024-10-03 +Resort Hotel,0,21,2017,December,52,24,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,87.88,0,1,Check-Out,Jaclyn Williams,cwalker@example.org,001-277-502-0580,6011872173704269,2025-05-02 +Resort Hotel,0,123,2017,June,26,30,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,110.38,0,1,Check-Out,Scott Martinez,nelsonjose@example.com,+1-385-715-6850,213188031370808,2025-12-15 +Resort Hotel,0,12,2017,June,26,24,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,1,0,1,D,F,2,No Deposit,242.0,179.0,0,Transient,135.02,0,1,Check-Out,Emily Rowe,kathryn19@example.net,(359)380-3033,503887616863,2025-07-19 +Resort Hotel,0,316,2017,September,36,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,227.0,179.0,0,Transient-Party,107.0,0,0,Check-Out,William Tucker,ricechad@example.com,682-574-8094x9742,4329961787204147,2025-04-09 +City Hotel,1,398,2017,October,42,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,65,Transient,74.05,0,0,Canceled,Kelly Martin,ptrevino@example.net,225-731-2056,3544018799501175,2026-02-15 +Resort Hotel,0,0,2017,September,36,4,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,59.0,0,Transient,34.02,0,0,Check-Out,Kathy Villanueva,connormatthews@example.org,649.845.1507x69696,4672220677787,2025-11-20 +Resort Hotel,1,151,2017,April,14,1,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient-Party,61.1,0,0,Canceled,Elizabeth Chavez,jeffreywilliamson@example.net,775.928.0497x85913,3530860783591175,2025-02-10 +City Hotel,1,195,2017,May,22,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,309.0,179.0,40,Transient,84.92,0,0,Canceled,Derek Cooley,hughessherry@example.com,+1-335-688-2982x698,30420381432875,2025-06-06 +Resort Hotel,0,92,2017,June,24,12,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,2,No Deposit,243.0,179.0,0,Transient,117.67,0,1,Check-Out,Laura Yang,dmason@example.org,+1-873-839-6172x94488,4808240342557194,2024-12-22 +City Hotel,1,21,2017,August,35,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,227.35,0,0,Canceled,Scott Wilson,alvarezrenee@example.com,(760)876-7162,4665528415850,2024-10-09 +City Hotel,1,59,2017,March,11,12,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,95.68,0,0,No-Show,Tamara Castillo,daviszachary@example.net,718.589.2099x01824,30581273019334,2025-03-10 +City Hotel,0,27,2017,August,33,10,1,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,6.0,179.0,0,Transient,252.0,0,2,Check-Out,Jason Welch,estradaelizabeth@example.net,+1-309-378-3258,4979227004752,2025-03-03 +City Hotel,1,27,2017,September,36,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,226.0,0,Transient-Party,65.68,0,1,Canceled,Wendy Griffin,ortizrobert@example.com,(917)346-1574,675937345642,2025-03-07 +Resort Hotel,1,114,2017,March,12,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,295.0,179.0,0,Transient-Party,45.86,0,1,Canceled,Katie Houston,kathryn17@example.com,965.975.6337x69101,180072457124841,2026-01-18 +City Hotel,0,56,2017,April,17,28,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,92.1,0,2,Check-Out,Michaela Case,marc68@example.org,315.484.5100x38875,2720021281455130,2025-03-06 +City Hotel,0,104,2017,July,30,27,2,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,61.42,0,0,Check-Out,Dana Estrada,carmen57@example.com,474-205-0289x241,4129205512356,2024-05-10 +City Hotel,0,18,2017,July,30,23,0,2,1,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,133.78,1,2,Check-Out,Susan Franco,zwu@example.org,+1-983-409-9494x949,6011890119819546,2025-03-27 +Resort Hotel,1,44,2017,December,49,6,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,140.0,179.0,0,Transient-Party,55.95,0,2,No-Show,William Garner,william66@example.org,5762809678,2286186990970939,2024-12-05 +City Hotel,0,18,2017,April,16,19,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,14.0,226.0,0,Transient,52.2,0,0,Check-Out,Matthew Lawrence,kingbeverly@example.net,001-617-741-4221x233,565811454703,2025-08-08 +City Hotel,1,53,2017,May,19,9,0,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.28,0,0,Canceled,Melissa Simpson,isharp@example.net,898-835-4715,2379648883991411,2026-02-11 +City Hotel,0,44,2017,February,8,20,3,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.16,0,1,Check-Out,Fred Espinoza,perezedward@example.org,889-671-0278x799,6011665382251225,2025-03-04 +City Hotel,1,19,2017,July,28,11,2,2,3,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,166.05,0,0,No-Show,Mark Alvarez,jason06@example.com,(343)708-8083,6547147376193385,2025-10-19 +City Hotel,1,18,2017,November,48,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.53,0,0,Canceled,Mercedes Scott,masonwilliam@example.net,434-577-7055x84798,4686409654731542,2025-11-03 +City Hotel,1,116,2017,August,35,30,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,232.88,0,1,Canceled,Brooke Bennett,fberry@example.com,3313789433,3506407670277581,2025-10-15 +City Hotel,0,11,2017,March,10,8,1,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,23.0,179.0,0,Transient,63.75,0,0,Check-Out,Amber Martinez,johnsonjason@example.org,835-374-6764,4368354589860,2026-01-05 +Resort Hotel,0,16,2017,March,11,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,241.0,179.0,0,Group,51.75,0,1,Check-Out,Jennifer Sanders,sarah87@example.com,784.754.8260,4865126583846620,2024-06-14 +City Hotel,1,18,2017,May,19,4,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,102.32,0,0,Canceled,Harold Castillo DVM,megan11@example.org,+1-586-351-6011x311,4952009955939,2025-06-15 +Resort Hotel,0,183,2017,March,13,26,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,73.58,1,0,Check-Out,William Keith,terriblack@example.org,609-405-5524,6011164651732685,2024-12-26 +City Hotel,1,57,2017,June,24,13,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,111.62,0,1,Canceled,Michelle Barker,jefferyeverett@example.org,365-563-2185,676334181713,2024-12-12 +City Hotel,0,0,2017,May,21,21,0,1,1,0.0,0,BB,ISR,Direct,Direct,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,175.83,0,1,Check-Out,Jeffrey Figueroa,lramos@example.org,374.268.1293x80044,4898006084548,2025-10-31 +City Hotel,0,4,2017,October,41,11,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,160.17,1,1,Check-Out,Jason Robles,beardstacy@example.net,+1-402-862-1019x7264,4777315494200150393,2024-04-25 +Resort Hotel,0,4,2017,April,16,18,2,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,64.52,1,0,Check-Out,Zachary Ellis,nielsenjoanna@example.com,551.319.9264,4161031060368614031,2024-06-07 +City Hotel,0,10,2017,May,18,4,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,6.0,179.0,0,Transient,116.96,0,1,Check-Out,Lisa Johnson,gmann@example.org,363-496-3795x1210,4128756426943367,2024-12-02 +Resort Hotel,0,138,2017,July,27,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,242.0,179.0,0,Transient,131.08,1,2,Check-Out,Jorge Soto,lisaball@example.net,337.354.7849,3540507992237995,2025-12-05 +City Hotel,0,302,2017,January,2,5,1,2,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,A,0,No Deposit,13.0,179.0,0,Transient,106.93,0,1,Check-Out,Dr. Joel Taylor,josephbeck@example.net,391.712.7859x587,4789335162814738371,2026-01-23 +Resort Hotel,0,45,2017,December,49,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,65.2,0,1,Check-Out,Sarah Gonzales,careyamanda@example.com,850-752-9651x405,502093836455,2025-02-06 +City Hotel,0,0,2017,October,44,28,1,2,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,222.0,0,Transient-Party,47.5,0,0,Check-Out,Gregory Wright,laura31@example.net,312.245.8422,2691966246898391,2025-08-04 +City Hotel,0,13,2017,May,20,19,1,2,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,106.06,0,0,Check-Out,Martin Esparza,durhamtravis@example.com,+1-936-546-9263,4743108727667623,2025-07-16 +Resort Hotel,0,1,2017,August,33,15,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,1.09,1,2,Check-Out,Emma Parker,danielwilson@example.org,(815)564-2708,4604595726278048,2024-12-14 +Resort Hotel,0,52,2017,January,2,5,2,10,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,D,D,2,No Deposit,30.0,179.0,0,Transient,106.77,0,0,Check-Out,Stephen Martinez,prestonalexis@example.org,2048587217,4325670240069046249,2024-10-09 +City Hotel,1,106,2017,August,35,28,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,107.87,0,0,Canceled,Ronald Cruz,kwells@example.org,249-619-0791x7766,213140767131748,2024-11-04 +City Hotel,0,6,2017,January,4,21,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,125.87,1,1,Check-Out,Steven Moore,heather01@example.net,(902)255-1705,2720849080245934,2025-02-10 +Resort Hotel,0,42,2017,March,10,5,1,3,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,35.0,179.0,0,Transient-Party,100.31,0,0,Check-Out,Melanie Graham,shamilton@example.org,595.886.4645,346765221413306,2025-01-06 +City Hotel,1,27,2017,November,47,18,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,50.36,0,0,Canceled,Michael Rodriguez,weeksbrandi@example.com,964-347-1637,30063384685980,2024-12-03 +City Hotel,1,300,2017,June,23,3,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,102.23,0,0,Canceled,Michele Johnson,gonzalezphilip@example.net,551.661.5094x75485,3594045241906040,2025-11-24 +City Hotel,1,19,2017,August,34,19,0,2,1,0.0,0,SC,ESP,Complementary,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,109.96,0,0,Canceled,Jenna Brown,maddenjoanna@example.org,(977)365-0897x983,4000375776327022461,2024-04-17 +Resort Hotel,0,0,2017,March,10,8,1,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,93.83,0,0,Check-Out,Michael Pitts,porterlisa@example.com,(589)591-9881,3543137937192639,2025-01-01 +City Hotel,0,10,2017,October,43,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Group,103.91,0,0,Check-Out,Brandon Taylor,cassidyvaughan@example.com,565-507-4223x5886,4513139632111952711,2024-07-19 +City Hotel,1,161,2017,March,14,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,169.0,179.0,0,Transient,104.09,0,0,Canceled,Megan Ochoa,breannadavis@example.com,(970)524-2656x17453,3549008207334843,2025-10-10 +City Hotel,1,52,2017,March,14,30,0,3,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,69.0,179.0,0,Transient,138.68,0,0,Canceled,Janet Graham,williamsbrenda@example.org,(377)840-9602x143,574338552213,2025-06-07 +City Hotel,0,66,2017,September,37,15,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,19.0,179.0,0,Transient-Party,86.04,0,0,Check-Out,Donna Smith,joseph49@example.org,4943928305,6011260628018230,2025-05-20 +City Hotel,0,1,2017,October,44,27,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,180.84,0,2,Check-Out,Mark Ramirez,ehawkins@example.com,699-946-3685x895,4042632507016,2026-01-01 +City Hotel,0,86,2017,April,17,26,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,93.18,0,1,Check-Out,Marissa Holt,victoria01@example.com,+1-408-429-3522,6011072926146674,2025-12-11 +City Hotel,1,357,2017,November,45,7,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,125.51,0,0,Canceled,Keith Walker,hunterbrittany@example.org,726.460.2249x6237,4489091262062168254,2024-11-04 +City Hotel,0,9,2017,December,49,4,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,42.65,0,2,Check-Out,Christopher Burch,emilyrivera@example.org,932-547-7980x741,2249400471037738,2025-03-20 +Resort Hotel,0,177,2017,March,13,29,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,65.07,0,0,Check-Out,Susan Owens,vcook@example.org,(893)794-0860,4481875927087,2024-09-09 +City Hotel,0,153,2017,March,13,23,1,0,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,50.43,0,0,Check-Out,Holly Preston,amy80@example.org,001-543-419-0687x9670,4586375763129,2024-03-29 +Resort Hotel,0,196,2017,October,41,13,2,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient-Party,88.76,0,0,Check-Out,Walter Johnson,mike55@example.net,(272)923-3398,4269668351319245970,2024-09-04 +City Hotel,0,11,2017,June,27,29,1,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,130.56,0,0,Check-Out,Danny Wilson,kingbrandon@example.org,+1-387-586-2193x25803,630420994596,2026-01-20 +Resort Hotel,1,159,2017,July,27,4,1,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,138.66,0,0,Canceled,Robert Mathews,tracy94@example.com,920-537-2879x689,676395466466,2026-01-25 +City Hotel,1,104,2017,September,39,27,2,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,216.92,0,0,Canceled,Susan Castro,zbennett@example.org,(497)512-3490,180088726930248,2026-02-23 +Resort Hotel,0,2,2017,March,11,13,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,17.0,77.0,0,Transient,51.48,0,0,Check-Out,Gary Watson,jmendoza@example.org,(262)343-8069,213187270848367,2025-09-08 +Resort Hotel,1,170,2017,August,33,12,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,195.94,0,0,Canceled,Ethan Johnson,uwu@example.org,651-916-6545x02411,3503209606584558,2026-03-08 +City Hotel,0,43,2017,February,6,8,1,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,68.16,0,1,Check-Out,Nicholas Wade,pchavez@example.org,(927)842-6684,3516773229278729,2024-04-06 +City Hotel,0,11,2017,October,42,19,2,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,1.47,0,0,Check-Out,Mrs. Tracey Moore,catherine15@example.org,001-234-600-1078,6011945353356918,2025-06-19 +Resort Hotel,0,0,2017,January,4,20,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,33.43,0,1,Check-Out,Amanda Ross,millerdamon@example.net,584.390.8285,4839494959303914649,2024-09-18 +City Hotel,1,39,2017,October,42,16,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,88.72,0,0,Canceled,Robert Roberts Jr.,rachelrodriguez@example.net,(531)848-6262,4738691034861259,2026-01-07 +City Hotel,0,13,2017,December,51,21,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,86.65,0,1,Check-Out,Timothy Willis,amandarobinson@example.net,+1-450-682-6339,30570629288578,2026-02-15 +City Hotel,1,115,2017,November,46,16,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,89.36,0,0,Canceled,Tracy Payne,melissa28@example.com,001-860-510-1949x6820,213111389782317,2026-02-06 +Resort Hotel,0,0,2017,January,4,21,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,51.06,1,1,Check-Out,Christopher Peck,kristen53@example.net,+1-965-961-1180x2895,4513124925429,2024-08-05 +Resort Hotel,0,93,2017,July,28,11,1,0,3,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,202.03,1,0,Check-Out,Linda Sawyer,camposjames@example.net,+1-377-790-8399,4422849727644412228,2024-06-15 +Resort Hotel,0,54,2017,August,34,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,108.5,0,0,Check-Out,Jeffrey Johnson,gcrawford@example.net,729.841.7106,4818771463881052,2025-01-11 +City Hotel,0,197,2017,March,12,19,0,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,2.0,179.0,0,Transient-Party,64.0,0,0,Check-Out,Frances Reed,suarezashley@example.net,9023106458,3526393523017588,2025-05-07 +Resort Hotel,0,40,2017,August,33,14,2,6,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,176.11,0,2,Check-Out,John Juarez,stephaniehernandez@example.org,+1-726-984-0022x2352,2235613465465105,2024-08-17 +City Hotel,0,88,2017,July,27,5,0,2,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.41,0,2,Check-Out,Nicole Neal,williamvelez@example.com,(961)745-3997x8856,3594643893944846,2025-04-16 +City Hotel,0,7,2017,March,10,6,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,11.0,179.0,0,Transient,80.31,0,1,Check-Out,Sean Gonzalez,larsenann@example.com,001-804-366-7236x640,4287344807362031,2025-11-10 +Resort Hotel,1,37,2017,August,32,8,0,2,2,2.0,0,BB,,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,223.06,0,0,Canceled,Danielle Cook,eugene11@example.com,713.767.3322x91922,375195207054656,2025-10-07 +City Hotel,1,410,2017,May,22,26,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.03,0,0,Canceled,William Gibson,hebertjoanna@example.net,245-641-8813x190,060436146991,2024-09-21 +Resort Hotel,0,71,2017,June,26,27,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,243.0,179.0,0,Transient,246.21,1,0,Check-Out,Preston King,fbernard@example.com,764.232.9844x553,2254552779451151,2025-06-28 +City Hotel,1,44,2017,July,28,8,0,1,2,0.0,0,SC,PRT,Direct,Undefined,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,2.36,0,0,Canceled,Kendra Smith,tlittle@example.com,695-746-3580,4768444347525201932,2025-08-06 +Resort Hotel,1,158,2017,July,30,20,1,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,241.0,179.0,0,Transient,85.37,0,1,Canceled,Wyatt Henderson,ajackson@example.com,+1-809-745-7624x9795,3591812627373290,2025-10-22 +Resort Hotel,1,13,2017,February,8,20,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,61.49,0,0,Canceled,Craig Adams,lucasbrandon@example.org,+1-406-558-0786x008,503851816416,2025-09-10 +City Hotel,0,42,2017,January,2,5,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.78,0,1,Check-Out,Jennifer Vega,atkinslisa@example.net,839-428-5122x22831,30158875984460,2026-03-23 +Resort Hotel,1,252,2017,August,32,9,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,303.0,179.0,0,Transient,44.41,0,0,Canceled,Charles Graves,amy50@example.net,597-783-4556x9456,4606821796329141,2025-06-16 +City Hotel,0,55,2017,March,12,24,0,2,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,C,1,No Deposit,14.0,222.0,75,Transient-Party,93.31,0,0,Check-Out,Patricia Wright,zimmermanmark@example.net,(607)732-6702,4147928746713,2025-11-10 +Resort Hotel,0,6,2017,May,20,12,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Group,137.8,0,2,Check-Out,Bethany Leonard,edwardthomas@example.com,+1-385-846-6056,060460370863,2025-11-02 +City Hotel,1,12,2017,December,52,28,2,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,311.0,179.0,43,Transient,87.31,0,1,No-Show,Shawn Cole,clarkamy@example.com,+1-583-306-5809,5108449275943115,2025-08-05 +City Hotel,1,211,2017,May,22,30,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,104.28,0,3,Canceled,Katrina Baird,boonealexander@example.com,951-592-6706x3415,4294616758830517,2026-03-25 +Resort Hotel,0,37,2017,March,9,3,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,89.88,0,1,Check-Out,Derrick Vazquez,emilyscott@example.com,001-943-512-3945,3503005002451792,2026-01-21 +City Hotel,1,53,2017,November,44,2,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.17,0,0,Canceled,Nathan Jones,ojones@example.com,386-486-9726,3591142153950091,2024-09-23 +Resort Hotel,0,0,2017,December,52,27,2,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,E,2,No Deposit,30.0,179.0,0,Transient,38.97,0,0,Check-Out,Denise Schroeder,hmcdonald@example.org,658.644.9713x764,213112812815229,2024-09-06 +Resort Hotel,0,12,2017,August,35,28,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Check-Out,Sheryl Barrett,kdennis@example.org,001-525-324-4724,30171928260069,2025-09-19 +City Hotel,1,49,2017,April,17,21,0,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,6.0,179.0,0,Transient,250.08,0,0,Canceled,Randy Fry,petersenbrian@example.com,+1-802-735-1821x461,3599851790302357,2025-10-22 +Resort Hotel,1,268,2017,October,41,10,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,84.0,179.0,0,Transient-Party,48.5,0,0,Canceled,Pamela Lin,ryan80@example.com,4409215050,4617592428855282673,2024-04-25 +Resort Hotel,0,6,2017,January,4,23,0,7,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,E,E,0,No Deposit,307.0,179.0,0,Transient,88.59,1,0,Check-Out,Morgan Wilson,qwalter@example.org,539.540.5058x540,6011051235890768,2024-08-10 +City Hotel,1,55,2017,May,20,16,1,0,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,107.48,0,0,No-Show,James Rodriguez,leslie96@example.org,7069383141,3546448068421987,2026-01-11 +Resort Hotel,1,263,2017,July,27,1,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,241.0,179.0,0,Transient,116.5,0,2,Canceled,Lindsay Smith,powellandrea@example.com,(533)315-2937,3517466821390245,2026-03-19 +City Hotel,0,16,2017,December,49,4,1,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,238.0,179.0,0,Transient,110.34,0,1,Check-Out,Samuel Morris,gknapp@example.org,395-785-2300x6448,6011192176255544,2025-04-16 +Resort Hotel,0,49,2017,October,41,10,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,125.37,1,2,Check-Out,Leslie Salas,adrian72@example.com,(784)525-9746x87366,2246048698103321,2024-11-24 +Resort Hotel,1,0,2017,December,51,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,54.88,0,0,Canceled,Matthew Hays,alexandra74@example.net,001-562-509-4211x3283,6011639786063015,2024-08-01 +Resort Hotel,0,28,2017,December,49,3,2,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,179.9,1,2,Canceled,Bryan Smith,carlsoncrystal@example.com,+1-723-632-5991x33753,4259314093263882,2025-04-21 +City Hotel,0,6,2017,March,10,4,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,93.22,0,1,Check-Out,Micheal Johnson,thomasfreeman@example.net,(753)620-7228x1708,3516836326339171,2025-08-29 +Resort Hotel,1,40,2017,December,48,2,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,75,Transient,39.8,0,0,Check-Out,Kristen Figueroa DDS,derrick66@example.org,601-357-8408x7756,563698484430,2025-09-05 +City Hotel,0,47,2017,October,43,25,1,0,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,2,No Deposit,13.0,179.0,0,Transient,224.18,0,1,Check-Out,Gina Pollard,rasmussencatherine@example.com,468.591.8366,341277560632129,2024-05-29 +City Hotel,0,23,2017,February,9,25,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.0,1,0,Check-Out,Gloria May,erinsmith@example.net,875-879-8550,676205173286,2025-05-06 +Resort Hotel,0,8,2017,January,2,7,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient,47.41,1,0,Check-Out,Mary Patrick,briannadavis@example.net,2298079712,340720832684585,2025-06-22 +City Hotel,0,13,2017,August,32,8,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.96,0,1,Check-Out,Amanda Lopez,shannonmartinez@example.com,(260)292-6297x9018,3505748860135704,2025-05-22 +City Hotel,0,58,2017,October,41,14,0,2,1,0.0,0,HB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,219.0,0,Transient-Party,86.37,0,0,Check-Out,David Jones,melissaburns@example.org,+1-480-458-8027,4931965507663029,2025-10-12 +City Hotel,0,4,2017,March,12,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.72,0,1,Check-Out,Jason Turner,bergershannon@example.net,+1-596-856-6794x257,4518487191777370,2024-04-12 +City Hotel,1,414,2017,July,28,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,114.73,0,0,Canceled,Chad Fields,kellymoore@example.org,001-488-991-4813x5193,6594101100402572,2025-07-25 +City Hotel,0,4,2017,April,14,5,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,3.56,0,0,Check-Out,Tyler Roberts,zrojas@example.com,+1-820-925-7327x99337,344238706466324,2025-10-18 +City Hotel,1,118,2017,April,16,17,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,144.07,0,0,Canceled,Jerome Henderson,evan23@example.com,001-699-984-5926x7586,4372368140981039,2025-11-25 +Resort Hotel,0,13,2017,October,40,1,0,2,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,56.04,0,1,Check-Out,Jonathan Hernandez,curtisshane@example.net,723.896.1955x160,6517389498592229,2024-05-20 +Resort Hotel,1,17,2017,July,28,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,64.48,0,1,Canceled,Monica Knight,ohorn@example.org,001-450-418-2051,4350164072782774810,2024-09-27 +City Hotel,0,32,2017,June,23,3,1,2,2,0.0,0,SC,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.22,0,0,Check-Out,Jennifer Moore,christian44@example.com,001-543-502-8643,4592214255335,2025-01-19 +City Hotel,1,135,2017,October,43,21,4,3,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,205.9,0,2,No-Show,Robert Howell,vroberts@example.org,(295)860-9598,38171134482004,2024-07-02 +City Hotel,1,102,2017,July,30,28,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,236.25,0,0,No-Show,Rachel Baker,fjohnson@example.com,001-830-636-5991,342924467684716,2024-06-04 +Resort Hotel,0,46,2017,December,51,23,2,6,2,0.0,0,HB,,Direct,Direct,0,0,0,D,E,1,No Deposit,13.0,179.0,0,Transient,87.31,0,0,Check-Out,Misty George,dereknichols@example.org,001-870-708-9306,4680610860434617522,2024-04-05 +City Hotel,1,144,2017,October,44,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,63.13,0,0,Canceled,Jasmine Atkins,katelynsmith@example.com,671.289.4511,3568963451519372,2024-09-07 +Resort Hotel,0,2,2017,January,2,8,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,H,0,No Deposit,17.0,179.0,0,Transient,5.56,0,1,Check-Out,David Miller,patrick02@example.com,356.269.3175x241,4593930455498009,2024-08-27 +City Hotel,0,159,2017,April,14,5,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,107.35,0,3,Check-Out,Natasha Wood,lindajimenez@example.com,(793)595-2048x49104,6011838623879472,2025-10-23 +Resort Hotel,0,154,2017,August,34,23,1,3,2,2.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,122.46,0,1,Check-Out,Heather Baldwin,greenchelsea@example.net,001-309-711-3228,4779007441279544369,2026-01-11 +Resort Hotel,0,5,2017,November,47,20,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,68.0,0,Transient,49.03,0,2,Check-Out,Olivia Myers,martinchristopher@example.net,279-483-9178x137,4878376856741,2024-11-24 +Resort Hotel,0,2,2017,March,10,4,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,52.35,0,1,Check-Out,Scott Hunt Jr.,charleswilliam@example.org,(584)432-1327,3540151332978784,2024-12-23 +City Hotel,1,14,2017,January,2,8,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,1,0,A,A,1,Non Refund,14.0,179.0,0,Transient,64.26,0,0,Canceled,William Hanson,ewinghaley@example.net,222.713.5590x341,180049276517876,2025-02-25 +City Hotel,0,18,2017,September,39,27,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.5,0,2,Check-Out,Elizabeth Ho,lfrank@example.com,222-891-3823x850,3544337106904280,2026-01-22 +Resort Hotel,0,2,2017,December,49,6,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,331.0,0,Transient,2.5,0,0,Check-Out,Nicole Roberts,sellersstephanie@example.org,001-803-618-4015x60055,371951234399215,2024-04-06 +Resort Hotel,1,35,2017,December,50,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,243.0,179.0,0,Transient,52.46,0,1,No-Show,Devin Williams,ffrazier@example.com,716-952-4997x62555,5567421788463083,2025-12-23 +City Hotel,0,14,2017,March,14,30,0,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,130.46,0,0,Check-Out,Shawn Mccarthy,williamsbrandon@example.com,561.935.2481,4128215647408544,2024-04-16 +Resort Hotel,0,12,2017,May,22,26,1,4,2,1.0,0,BB,PRT,Online TA,TA/TO,1,0,1,F,I,1,No Deposit,241.0,179.0,0,Transient,4.28,0,1,Check-Out,Erica Bauer,courtney05@example.org,949-277-7426x58743,38605214066682,2025-11-19 +Resort Hotel,0,150,2017,May,18,3,0,5,1,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,2.28,0,0,Check-Out,Cameron Perez,meghan92@example.org,2009745988,4360345183114337464,2025-04-17 +City Hotel,1,40,2017,January,2,4,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,125.11,0,0,Canceled,Charles Nelson,christianmiller@example.com,756.211.2736x12371,3550760104953291,2024-11-13 +City Hotel,1,108,2017,November,46,18,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.26,0,1,Canceled,Vickie Lowery,savannah15@example.org,001-796-345-0077x7465,371547650785810,2025-10-20 +City Hotel,0,21,2017,August,34,17,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,131.21,0,2,Check-Out,Brandon Lopez,lowejoshua@example.com,250.650.1571x9236,180061297854618,2024-12-21 +City Hotel,0,94,2017,May,20,18,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,82.57,0,0,Check-Out,Daniel Delacruz,barnettmichelle@example.net,(630)254-5727,4227301663974740,2025-12-08 +City Hotel,1,387,2017,October,41,12,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,63.27,0,0,Canceled,Ryan Maxwell,palmermichael@example.com,635-266-3458x777,4722536603556756,2024-07-22 +City Hotel,0,108,2017,July,31,30,2,3,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,6.0,179.0,0,Transient,121.26,0,1,Check-Out,Frank Sanders MD,charles50@example.com,+1-487-508-7643x27572,4405883538908794330,2025-03-20 +City Hotel,0,98,2017,June,23,3,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,100.93,0,1,Check-Out,Frank Gordon,irichardson@example.com,(370)994-1502,676278441107,2025-06-17 +Resort Hotel,1,37,2017,May,19,6,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,146.79,0,0,Canceled,Emily Brandt,tflores@example.org,9094031760,373275452196212,2024-09-11 +City Hotel,1,254,2017,June,25,22,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.47,0,1,Canceled,Jackie Schultz,alexgarcia@example.org,+1-648-620-3812x9848,4241163054546772,2026-01-30 +City Hotel,1,153,2017,July,30,24,0,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,64.36,0,0,Canceled,Sara Leonard,lindseyjanet@example.com,+1-667-320-1927x36079,3520759491451486,2025-04-19 +Resort Hotel,0,52,2017,October,41,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,55.87,0,1,Check-Out,Joseph Cunningham,russellrobert@example.net,909.405.6246x3539,4998808505788333,2026-03-14 +Resort Hotel,0,13,2017,December,48,1,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.52,0,0,Check-Out,Beth Jackson,jolson@example.org,(497)232-5975,4978290745678927,2025-10-01 +City Hotel,0,39,2017,August,33,17,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,134.04,0,0,Check-Out,James James,castanedajessica@example.net,+1-347-360-4585x752,587987547961,2026-02-26 +City Hotel,1,36,2017,August,33,12,2,5,3,0.0,0,BB,PRT,Direct,Direct,0,1,0,B,D,0,No Deposit,12.0,179.0,0,Transient-Party,131.77,0,1,Canceled,Jacob Sexton,brownlisa@example.net,5138299168,3526867788664416,2025-09-27 +Resort Hotel,0,13,2017,November,45,8,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,268.0,179.0,0,Transient-Party,64.01,0,0,Check-Out,Charles Ellis,kristy82@example.org,404.815.0648x1856,4307128794660051,2025-01-17 +City Hotel,0,2,2017,April,14,5,1,0,3,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,B,K,0,No Deposit,10.0,179.0,0,Transient,2.83,0,1,Check-Out,Brenda Perry,jeremymorgan@example.org,471.895.1379x43753,4111234603703,2025-08-08 +Resort Hotel,0,85,2017,March,12,19,1,4,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,65.66,0,0,Check-Out,Robert Harrison,hbrown@example.net,(812)425-0506x8235,30193313685700,2024-12-28 +City Hotel,1,159,2017,August,34,19,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient-Party,115.34,0,0,No-Show,David Patel,sanchezjohn@example.net,001-586-864-9164x7283,213110362419137,2024-07-23 +Resort Hotel,0,33,2017,July,31,29,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,218.77,0,1,Check-Out,Lisa Goodwin,vdavis@example.com,001-875-539-3733x056,2282827990578511,2025-11-04 +City Hotel,1,48,2017,August,33,14,1,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,232.79,0,0,Canceled,Gerald Branch,bbowers@example.com,001-258-669-0542,30536677828136,2024-06-20 +City Hotel,0,371,2017,September,39,29,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.72,0,1,Check-Out,Samantha Maxwell,mary63@example.com,+1-879-403-1330x7983,4230685467585800,2025-08-14 +Resort Hotel,0,0,2017,September,36,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,52.49,1,1,Check-Out,Taylor Logan,monicajohnson@example.net,852.547.6253x4001,345454324582645,2024-06-30 +City Hotel,1,135,2017,June,24,12,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,238.0,179.0,0,Transient,82.08,0,0,Canceled,Sarah Shannon,hboyd@example.net,+1-394-710-4954x158,2262898622407985,2025-01-27 +City Hotel,0,23,2017,December,49,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.23,0,1,Check-Out,Scott Crawford,michael48@example.net,001-261-326-9592x92670,3523716631748038,2025-02-13 +Resort Hotel,0,3,2017,December,49,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,15.0,222.0,0,Transient-Party,47.84,1,0,Check-Out,Alyssa Anderson,fernandezsamantha@example.com,9768332030,30425890834297,2026-02-18 +City Hotel,0,16,2017,May,19,5,1,1,2,0.0,0,HB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.66,0,1,Check-Out,Sean Smith,kaitlinjones@example.net,519-256-2385x623,3566554993628722,2024-11-07 +City Hotel,0,24,2017,June,26,26,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,107.76,0,1,Check-Out,Mary Duncan,lcharles@example.net,785-999-3304,4580486943715590,2024-04-25 +City Hotel,0,11,2017,October,40,5,2,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,142.47,0,0,Check-Out,Daniel Diaz,ksalinas@example.net,(729)422-2795x4129,4971604601326,2025-12-27 +Resort Hotel,0,57,2017,December,49,7,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient-Party,54.53,0,0,Check-Out,Brandon Beard,jamesbrown@example.net,(441)973-0892x188,502033163481,2025-12-10 +City Hotel,1,66,2017,February,5,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,100.56,0,0,Canceled,Melissa Howell,paulgriffin@example.com,980-795-6560x27665,6011193228285513,2024-08-06 +City Hotel,0,12,2017,September,38,23,0,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,82.46,0,0,Check-Out,Daniel Dodson,victoriaware@example.net,443.254.9819x165,566835528266,2026-01-04 +City Hotel,1,144,2017,May,19,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,113.53,0,0,Canceled,Becky Rice,thomas26@example.org,811-505-0757,4745633670246214,2024-10-28 +City Hotel,0,18,2017,November,47,24,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,72.0,59,Transient,81.93,0,0,Check-Out,Nicole Burch,bwilliams@example.org,6084184888,30595808943396,2025-09-13 +City Hotel,0,146,2017,May,20,17,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,130.85,0,1,Check-Out,Mandy Beasley,david92@example.org,6802111964,3563675659529970,2024-09-07 +City Hotel,0,45,2017,July,27,6,1,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.08,0,1,Check-Out,John Garner,cameron11@example.net,359-799-9622,4189222842459,2025-01-25 +City Hotel,1,136,2017,April,18,27,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,106.53,0,0,Canceled,Matthew Taylor,kjoseph@example.net,571.214.1380x288,4365187595963932287,2025-09-10 +Resort Hotel,0,14,2017,February,7,17,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,299.0,179.0,0,Transient,77.42,0,0,Check-Out,Timothy Miller,alyssacuevas@example.org,(995)796-5003,4433351557113376,2025-05-13 +City Hotel,1,16,2017,December,48,2,1,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,59.91,0,0,Canceled,Elizabeth Arnold,brandon76@example.org,001-884-436-7859x424,4517067764627238959,2024-05-20 +City Hotel,1,61,2017,November,47,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,92.0,179.0,61,Transient-Party,91.37,0,0,No-Show,Danielle Mcdonald,pshaffer@example.org,323.765.3983x080,346998216726362,2024-09-08 +City Hotel,0,0,2017,November,47,19,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,D,2,No Deposit,34.0,68.0,0,Transient-Party,42.91,0,0,Check-Out,Jennifer Sparks,johnsonlisa@example.net,655-968-5927x9678,675912088274,2024-09-02 +City Hotel,1,1,2017,February,6,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,76.59,0,0,Canceled,Jillian Dawson,ambersmith@example.net,001-618-343-7008x41994,377178288909608,2025-10-15 +City Hotel,1,157,2017,June,23,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,41,Transient-Party,77.33,0,0,Canceled,Nicole Newman,terri97@example.org,+1-411-226-9885x0797,6582363638834783,2025-12-01 +City Hotel,0,0,2017,October,41,13,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,189.46,0,1,Check-Out,Timothy Randolph,higginseric@example.net,(618)677-7421x2604,349672282314737,2025-09-15 +Resort Hotel,1,0,2017,May,18,1,1,2,3,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,D,D,0,No Deposit,15.0,179.0,0,Transient,82.19,0,1,Canceled,Frederick Vargas,michele51@example.net,490-733-3005x33101,4584273026720161862,2024-04-08 +City Hotel,0,13,2017,March,13,26,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,D,D,1,No Deposit,294.0,45.0,0,Transient-Party,106.33,0,0,Check-Out,Beverly Baker,woodssharon@example.org,001-571-691-1516x04902,5541512707230602,2025-04-27 +City Hotel,1,45,2017,September,35,2,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.46,0,0,Canceled,Phillip Woods,butlerstephen@example.net,530.565.7271,4599338252254,2024-07-03 +City Hotel,1,167,2017,June,26,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,40,Transient,114.43,0,0,Canceled,Joy King,diane27@example.net,(870)780-6615,6510750224574533,2024-04-23 +City Hotel,1,269,2017,May,18,3,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.23,0,1,Check-Out,Gerald Martin,qford@example.net,871.886.5472x50230,2711215054530167,2024-07-19 +City Hotel,1,366,2017,October,40,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,140.0,179.0,0,Transient,70.3,0,0,Canceled,Robert Fox,huffmankatherine@example.org,+1-494-493-0165x02435,5252245156051455,2024-08-31 +Resort Hotel,0,0,2017,May,18,2,1,0,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,I,0,No Deposit,17.0,179.0,0,Transient-Party,2.59,1,0,Check-Out,Brandon Walls,sarahmejia@example.com,231-976-6299,4124144806115028970,2025-11-14 +City Hotel,0,3,2017,October,43,27,1,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,K,0,No Deposit,16.0,45.0,0,Transient,1.19,0,0,Check-Out,Eric Carney,cruzpeter@example.com,614-317-0655x89607,30363359847973,2025-08-12 +City Hotel,0,177,2017,July,30,28,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,63.07,0,0,Check-Out,James Schmidt,johnmorales@example.net,(341)982-6484x29575,4476154996815660,2024-08-17 +City Hotel,0,82,2017,June,23,7,4,7,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,110.89,0,1,Check-Out,Jennifer Cannon,michelledavis@example.net,2264524997,566614081123,2024-09-30 +City Hotel,1,52,2017,June,26,22,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.01,0,2,Canceled,Ronnie Marks Jr.,lward@example.com,+1-395-500-9469,501836815545,2025-09-20 +City Hotel,0,40,2017,May,19,8,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.78,0,2,Check-Out,Norma Flynn,dfrancis@example.com,001-653-410-5558,4499208839737158247,2025-01-27 +Resort Hotel,0,6,2017,July,30,24,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,C,1,No Deposit,14.0,179.0,0,Transient,217.66,0,0,Check-Out,Gary Watts,gmoreno@example.com,626.208.1576,340028026530212,2025-07-18 +Resort Hotel,0,135,2017,August,32,3,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,190.0,179.0,0,Transient,137.7,0,3,Check-Out,Leah Castro,ballnicole@example.org,797.427.3856x731,675994501475,2024-06-01 +City Hotel,1,4,2017,February,8,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,74.69,0,2,No-Show,Jonathan Wheeler,rjones@example.net,9663005897,3553951005357156,2026-02-23 +City Hotel,1,95,2017,April,14,3,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient-Party,99.53,0,0,No-Show,John Gilmore,edwardsjasmine@example.org,+1-389-443-4535,4602938182739438,2025-11-02 +City Hotel,0,16,2017,June,26,23,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,115.03,0,1,Check-Out,Tiffany Calderon,thompsonmatthew@example.net,825.712.9983x349,30275807612371,2025-10-25 +City Hotel,0,29,2017,September,36,8,0,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient-Party,92.9,0,0,Check-Out,Cassandra Peterson,washingtonkari@example.net,+1-859-750-1129x56295,180034193107506,2025-03-22 +City Hotel,1,3,2017,June,26,25,0,2,1,0.0,0,BB,RUS,Online TA,GDS,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,125.45,0,0,No-Show,Mark Hernandez,harold15@example.org,601-438-8646x8163,3578613710575123,2025-09-25 +City Hotel,0,254,2017,July,27,2,1,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,101.67,0,0,Check-Out,Emily Russell,olivia74@example.com,+1-373-229-3084x785,060438877346,2024-05-26 +Resort Hotel,0,13,2017,July,28,12,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,131.55,0,1,Check-Out,Michelle Padilla,mark09@example.net,345-591-1393,676313176676,2024-09-27 +Resort Hotel,0,80,2017,December,51,16,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,I,1,No Deposit,30.0,179.0,0,Transient-Party,116.34,0,0,Check-Out,Travis Jenkins,xgarcia@example.net,(325)225-4164,4596397532709,2024-04-16 +Resort Hotel,0,160,2017,March,14,31,2,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,87.26,1,0,Check-Out,Miss Kelly Mcguire,levineandrea@example.net,+1-414-866-3874x03343,4160054812099435,2025-09-01 +City Hotel,0,0,2017,October,43,21,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,K,0,No Deposit,15.0,179.0,0,Transient,4.59,0,0,Check-Out,Pamela Black,leehatfield@example.com,899-243-8198x26661,4317115483730822,2024-09-08 +City Hotel,1,397,2017,June,26,24,1,3,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.24,0,1,Canceled,Mitchell Francis,cookstephen@example.com,(337)491-0323,5170507119989603,2024-10-10 +Resort Hotel,1,101,2017,October,41,8,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,102.09,0,0,Canceled,Danny Andrews,loganmario@example.net,548-773-8511,4192148894150173,2024-04-22 +City Hotel,1,169,2017,June,24,9,2,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.06,0,1,Canceled,Donna Walsh,hjohnson@example.com,494.923.2397x2474,36702679736214,2024-04-15 +City Hotel,0,0,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,49.98,1,0,Check-Out,Laurie Padilla,brandi89@example.net,001-545-289-4747x539,4139107140347,2025-08-17 +City Hotel,0,0,2017,May,19,6,0,2,1,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,87.68,1,0,Check-Out,Michael Rogers,tylerdrake@example.com,873-647-8608,213100256014706,2024-07-23 +City Hotel,0,0,2017,May,19,12,0,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,113.69,0,1,Check-Out,David Chen,pbaker@example.org,322.834.3696,180052574203264,2025-02-13 +Resort Hotel,1,3,2017,September,38,19,0,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,165.92,0,0,No-Show,Amber Montgomery,michaelperry@example.net,673-766-0810x109,4749701337295,2025-02-12 +City Hotel,0,104,2017,December,51,21,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,25.0,179.0,0,Transient,97.13,0,1,Check-Out,Johnny Duncan,autumn88@example.com,614.632.5531,630407415797,2026-01-30 +City Hotel,0,42,2017,October,42,17,0,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,152.36,0,0,Check-Out,Michael Wagner,xreed@example.net,001-216-345-1020,4481018621979689321,2025-10-31 +City Hotel,0,81,2017,May,19,12,2,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,102.36,0,0,Check-Out,Jamie Rivas,colton26@example.org,+1-596-638-0927x76539,4055296365655372,2024-05-16 +City Hotel,0,44,2017,May,19,6,2,2,1,0.0,0,BB,DEU,Online TA,TA/TO,1,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,134.8,0,1,Check-Out,Tyler Acevedo,madison43@example.com,5495224535,675986799970,2025-07-26 +Resort Hotel,0,52,2017,March,9,3,2,5,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,98.75,0,0,Check-Out,Meghan Hudson,christinewright@example.net,699.854.9261,3588206817767038,2025-08-16 +City Hotel,0,59,2017,July,29,15,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,252.0,0,0,Check-Out,Kristen Welch,richard15@example.org,001-453-818-4799,4231734492617971956,2024-09-14 +Resort Hotel,0,2,2017,March,10,9,1,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,364.0500000000011,179.0,0,Transient,1.83,0,0,Check-Out,Rebecca Smith,cthomas@example.org,+1-921-349-0618x266,342824929081867,2025-07-01 +Resort Hotel,1,170,2017,July,29,21,2,5,2,0.0,0,HB,AUT,Corporate,Corporate,0,0,0,A,E,0,Non Refund,323.0,179.0,0,Transient,83.87,0,0,Canceled,Maria Johnson,nicolethomas@example.com,937-891-3169x967,213191929107456,2025-12-26 +Resort Hotel,0,3,2017,March,12,22,1,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,252.0,1,0,Check-Out,Patrick Thompson,anthony65@example.net,(508)222-2701x56315,4826838038465,2025-03-28 +Resort Hotel,0,19,2017,April,15,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,63.64,1,1,Check-Out,Mary Carlson,monique03@example.net,440.562.0826x76131,3588396491710345,2024-03-28 +City Hotel,0,124,2017,July,30,24,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,220.93,0,0,No-Show,Francisco Morris,jackie72@example.net,(609)695-9123,6011388132081178,2026-01-25 +Resort Hotel,0,0,2017,July,30,24,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,80.12,1,1,Check-Out,Gerald King,santanaalexis@example.org,(387)974-8375x6167,6011088522177996,2025-01-28 +City Hotel,1,0,2017,August,32,5,0,7,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,221.62,0,0,Canceled,Nicole Williams,kathrynquinn@example.org,(869)428-9229x8017,4730066029518859,2025-07-29 +Resort Hotel,0,49,2017,August,35,30,1,3,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,223.97,0,1,Check-Out,Jill Chen,jamie35@example.org,+1-220-412-5109x6534,5386274885844765,2025-11-23 +City Hotel,0,12,2017,March,11,9,0,2,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,99.12,1,1,Check-Out,Wendy Smith,michael75@example.com,(530)852-2024x46596,4498321744536690,2025-06-10 +Resort Hotel,0,2,2017,April,14,6,0,1,2,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,49.44,1,1,Check-Out,April Baker,shannonjudy@example.net,001-552-657-1766x231,6011840498737868,2025-02-14 +City Hotel,0,1,2017,January,3,20,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,64.88,0,1,Check-Out,Kayla Webb,caseyjohn@example.org,596.204.3875x0147,4134153327591,2024-10-25 +Resort Hotel,1,42,2017,January,3,15,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,59.73,0,2,Canceled,Christopher Thompson,timothysmith@example.com,(737)542-9810x0879,630469486108,2025-10-24 +City Hotel,0,103,2017,March,13,25,0,1,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,75,Transient,122.35,0,0,Check-Out,Stephanie Carter,ssmith@example.org,001-558-680-4693,4980818161045811,2024-12-21 +Resort Hotel,0,0,2017,January,4,22,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,D,0,No Deposit,15.0,75.0,0,Transient,50.35,0,1,Check-Out,Melissa Benjamin,cadkins@example.com,+1-734-202-5452x858,4144001917964,2025-08-23 +Resort Hotel,1,89,2017,June,25,21,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,Michael Anderson,tiffany76@example.net,(787)212-6796,4724167444591881,2024-10-29 +Resort Hotel,0,42,2017,May,18,1,2,4,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,235.72,0,0,Check-Out,Jose Castaneda,christopher58@example.com,(376)753-0788x6565,4681821605620720,2026-03-05 +Resort Hotel,0,14,2017,January,3,18,2,2,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,D,1,No Deposit,173.0,179.0,0,Transient,45.55,0,0,Check-Out,Haley Bryant,ydouglas@example.com,+1-260-704-0068x3365,378997193107316,2024-11-11 +Resort Hotel,1,201,2017,June,23,5,2,5,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,179.0,179.0,0,Transient,158.93,0,0,Canceled,Brittney Rivera,garciachristopher@example.com,2056483371,375331561185881,2026-02-12 +City Hotel,1,150,2017,April,15,10,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,Non Refund,27.0,179.0,0,Transient,105.52,0,0,Canceled,Daniel Kent,rodriguezkim@example.org,624-361-7212,3533754027734591,2025-07-12 +Resort Hotel,0,81,2017,November,47,23,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,135.53,1,1,Check-Out,Tommy Murphy,mjones@example.com,6823899826,2720577940172408,2026-01-04 +City Hotel,0,17,2017,April,14,5,1,1,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.42,0,1,Check-Out,Julie Lowe,margaret54@example.net,892.800.7199,4255293406993,2025-03-10 +City Hotel,0,16,2017,March,9,1,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,F,0,No Deposit,12.0,222.0,0,Transient,102.91,0,2,Check-Out,Kathleen Lewis,lamdennis@example.com,+1-870-882-1601x645,180066789566125,2024-04-25 +City Hotel,0,17,2017,July,29,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,110.33,0,3,Check-Out,Rachel Anderson,john22@example.net,+1-800-468-7715,349894110685837,2025-09-22 +City Hotel,0,0,2017,October,41,12,0,2,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,D,0,No Deposit,13.0,179.0,0,Transient,106.94,0,0,Check-Out,Patricia Patel,gravescourtney@example.net,(330)445-6424x217,3575950374616592,2024-09-01 +City Hotel,0,42,2017,October,41,8,1,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,122.9,0,0,Check-Out,Mr. Max Smith,whayes@example.com,(920)399-2398x41707,2715106481751987,2025-04-29 +Resort Hotel,0,12,2017,December,51,17,2,5,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,32.0,179.0,0,Transient,104.16,1,1,Check-Out,Leslie Greene,iortega@example.net,001-534-390-3752x88139,180095909083737,2025-03-15 +City Hotel,0,13,2017,February,7,17,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,45.0,0,Transient-Party,44.76,0,0,Check-Out,John Woods,nlarson@example.com,001-544-877-3670x23601,30023380983086,2026-03-10 +Resort Hotel,0,60,2017,October,40,2,3,7,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,87.51,0,2,Check-Out,Melissa White,vthompson@example.org,7957659408,4184360959700236,2025-10-31 +City Hotel,1,378,2017,October,40,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,76.59,0,0,Canceled,Tina Gutierrez,dylan45@example.org,(763)301-1550,213112410180166,2024-07-24 +Resort Hotel,0,40,2017,July,27,4,2,4,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,215.84,0,1,Check-Out,Wendy Carlson,bartoncarol@example.net,887.520.2196x1980,4947754694774,2025-09-22 +City Hotel,0,0,2017,April,16,18,0,1,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,15.0,45.0,0,Transient,6.3,0,0,Check-Out,Mr. James Clay,marksmith@example.org,+1-262-295-1152x6562,349653995529688,2025-01-03 +Resort Hotel,0,11,2017,December,52,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,52.85,1,0,Check-Out,Lindsey Jimenez,mlee@example.org,936.268.9522,4109260367821,2025-12-16 +Resort Hotel,1,11,2017,July,27,2,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,211.74,0,2,Canceled,Karen Leon,dgates@example.org,747.588.0204,30259056633536,2025-01-26 +City Hotel,0,93,2017,March,12,19,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,92.36,0,0,Check-Out,Nicole Stevens,wsummers@example.org,724-706-3927x00190,4767356679316,2024-11-17 +City Hotel,1,262,2017,July,29,21,1,4,2,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,74.1,0,1,Canceled,Carolyn Tate,bradyjason@example.org,001-959-978-2614,4452459016484725818,2025-08-07 +Resort Hotel,1,206,2017,October,43,26,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,317.0,179.0,0,Contract,45.72,0,2,No-Show,Jay Douglas,lisa04@example.com,001-272-403-4788x299,180043462118557,2025-08-09 +Resort Hotel,0,200,2017,April,14,5,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,294.0,179.0,0,Transient,152.82,0,1,Check-Out,William Williams,laurenmcbride@example.net,455-406-9466x02833,213146960956112,2024-11-06 +Resort Hotel,0,0,2017,May,22,26,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,18.0,179.0,0,Transient,47.72,0,1,Check-Out,Peter Hughes,dgarcia@example.net,638.697.4067,373530639088462,2025-04-02 +City Hotel,0,22,2017,May,19,4,0,2,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.5,0,0,Check-Out,Sylvia Watson MD,sarah18@example.com,+1-802-497-3607,2720996336446004,2024-12-17 +City Hotel,0,6,2017,July,28,13,0,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,142.9,0,2,Check-Out,Joseph Luna,olivermichael@example.com,(829)374-6271,2701724491257955,2025-06-14 +City Hotel,0,0,2017,December,50,12,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.55,0,1,Check-Out,Katherine Flores,paul47@example.org,(842)740-7049,341459991263936,2025-10-02 +City Hotel,1,0,2017,April,14,3,0,1,3,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,P,P,0,No Deposit,15.0,277.0,0,Transient,3.82,0,0,Canceled,Wayne Malone,tylerstanton@example.org,001-587-909-2906x01872,5136504008544253,2025-12-12 +City Hotel,1,41,2017,December,49,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,12.0,179.0,64,Transient-Party,77.53,0,1,Canceled,Mary Thompson,qroman@example.net,+1-834-525-6271x811,3561820743829752,2025-01-03 +City Hotel,0,2,2017,March,10,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient-Party,88.24,0,0,Check-Out,Marissa Evans,browndevin@example.net,+1-421-489-9702x8909,3522019952268467,2026-03-22 +City Hotel,1,116,2017,March,13,31,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,83.56,0,0,Canceled,James Valentine,davidjackson@example.com,805.698.9303,3555266459642617,2025-05-24 +Resort Hotel,0,101,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,222.0,0,Transient-Party,62.27,0,2,Check-Out,Michael Ayers,steve72@example.org,9133210210,6533704417592755,2024-12-07 +City Hotel,1,105,2017,June,26,30,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,93.79,0,0,Canceled,James Green,jeffreymason@example.org,(412)576-8539x941,3586981701218353,2025-07-04 +City Hotel,0,57,2017,September,39,30,2,0,2,0.0,0,BB,,Direct,Direct,0,0,0,E,A,0,No Deposit,14.0,179.0,0,Transient,109.17,1,0,Check-Out,Rachel Harris,davissamantha@example.net,001-828-361-9947x0025,376406756379579,2026-01-22 +Resort Hotel,1,202,2017,May,19,6,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,1,A,A,0,No Deposit,240.0,179.0,0,Transient,47.52,0,1,Canceled,Timothy Rodriguez,toddhanson@example.com,2875804635,3520081092698740,2026-01-31 +Resort Hotel,0,23,2017,October,41,8,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,77.75,0,0,Check-Out,Casey Hayden,frederickcampbell@example.com,5369901812,2274786541664958,2025-03-06 +Resort Hotel,1,273,2017,September,36,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,175.0,179.0,0,Transient-Party,101.54,1,0,Canceled,James Evans,monroekristin@example.net,725-861-3666x62157,4458541507911503163,2024-10-06 +Resort Hotel,0,0,2017,December,49,3,1,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,246.0,179.0,0,Transient,211.68,1,0,Check-Out,Sean Johnson,loricastro@example.com,+1-432-818-0478,501848355423,2026-01-23 +City Hotel,0,13,2017,July,30,23,2,1,2,1.0,0,HB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,133.73,0,0,Check-Out,Mark Copeland,adougherty@example.net,001-993-552-5659,6584425450034780,2024-04-19 +Resort Hotel,0,2,2017,March,11,15,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,216.0,0,Transient,51.58,1,0,Check-Out,Willie Robinson,nathan25@example.org,730.689.8070x36215,4679821326070044618,2025-09-06 +Resort Hotel,0,141,2017,February,9,27,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,54.85,0,0,Check-Out,Matthew Harris,qroth@example.net,9198769289,6011069279759087,2024-09-14 +City Hotel,0,155,2017,March,12,22,0,3,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,96.15,0,0,Check-Out,Timothy Sparks,troy84@example.org,3204200210,630495002192,2025-04-21 +Resort Hotel,0,41,2017,September,38,19,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,84.0,179.0,0,Transient-Party,62.44,0,1,Check-Out,Michael Price,jenniferarnold@example.org,851.746.7601x4279,2233715199956614,2026-02-22 +Resort Hotel,0,281,2017,September,38,16,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,35.23,0,0,Check-Out,Jordan Berg,carrillovanessa@example.com,(729)748-3665x03035,180046276100232,2026-03-01 +Resort Hotel,0,40,2017,July,28,7,4,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,239.0,179.0,0,Transient,52.6,1,2,Check-Out,Rhonda Bradford,jeffreyford@example.com,001-960-620-7898,4698721581136077108,2025-11-08 +City Hotel,1,160,2017,March,12,19,2,2,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,122.3,0,2,Canceled,Eric Blankenship,kevinking@example.net,567-976-5472x10520,4383171643278482,2026-03-09 +Resort Hotel,0,103,2017,December,52,28,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,84.79,1,3,Check-Out,Dan Valdez,wendysilva@example.com,916-688-4624x5205,4020957614021,2024-12-13 +Resort Hotel,0,86,2017,May,19,10,1,2,2,0.0,0,FB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,74.56,0,0,Check-Out,Stephanie Gonzalez,oballard@example.org,3696400156,4418380381931546,2024-05-14 +City Hotel,0,14,2017,February,9,24,1,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.9,0,1,Check-Out,Monica Goodman,brownkiara@example.com,001-965-722-0692x1791,3520168742447246,2025-10-26 +City Hotel,0,4,2017,July,28,6,1,1,1,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,252.0,0,0,Check-Out,Lynn Munoz MD,hartmanelizabeth@example.net,356.400.1071x10934,6011562265441199,2024-12-21 +Resort Hotel,1,139,2017,September,36,3,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,226.96,1,0,Canceled,Thomas Eaton,deborahluna@example.org,394-352-1471x91543,4891659974230,2025-08-20 +Resort Hotel,0,32,2017,November,45,6,1,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,50.93,1,3,Check-Out,Linda Carpenter,jordanmiranda@example.net,001-563-302-0151x733,342665230255082,2025-11-22 +Resort Hotel,0,152,2017,March,13,31,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,2,Refundable,12.0,221.0,0,Transient-Party,65.17,0,0,Check-Out,Jessica Harrison,tblack@example.com,204-847-7420,4741700178564,2025-07-17 +Resort Hotel,0,209,2017,October,41,9,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,14.0,221.0,0,Transient-Party,50.54,0,0,Check-Out,Isaac Black,john48@example.org,(525)579-8401x2101,30378608168567,2025-05-20 +City Hotel,1,414,2017,August,34,20,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,152.66,0,0,Canceled,Patricia Wells,kimberly83@example.com,7149056314,374114227905970,2024-06-23 +City Hotel,1,12,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,96.69,0,0,Canceled,Miss Tamara Cruz,valerie99@example.net,(682)327-8329x6787,3504557131717468,2024-08-23 +City Hotel,0,112,2017,July,30,24,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,107.62,0,0,Check-Out,Tara Nguyen,tdavis@example.net,(787)499-4566x07366,4437205223890831,2024-08-26 +Resort Hotel,1,50,2017,November,45,5,2,5,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,94.0,179.0,0,Transient-Party,125.68,0,0,Canceled,Catherine Short,sanchezsamuel@example.net,+1-505-661-8909x32826,180072018329418,2025-01-30 +City Hotel,0,38,2017,October,42,19,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,75.0,179.0,0,Transient,112.97,0,0,Check-Out,Anthony Anderson,brianmurray@example.org,001-669-628-1532,3520492708122563,2026-01-15 +Resort Hotel,0,30,2017,February,7,15,0,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,27.0,179.0,42,Transient,76.32,0,0,Check-Out,Ricardo Bryan,williamsroger@example.net,481-958-8999x0596,4361319192086416289,2025-03-16 +Resort Hotel,1,147,2017,May,19,9,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,135.79,0,2,No-Show,Carl Hicks,lauren06@example.com,476.553.3535,180028382867615,2024-04-16 +City Hotel,1,59,2017,August,31,4,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.26,0,0,Canceled,Robert Fisher,nicole50@example.com,239.218.7017x072,4433203734893315,2024-08-26 +City Hotel,0,0,2017,May,19,11,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,166.9,0,1,Check-Out,David Chang,upatterson@example.org,871.659.7366x53858,4754006292339242039,2025-03-29 +City Hotel,1,108,2017,July,28,9,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,78.06,0,1,Canceled,Donna Ward,kenneth46@example.com,652.424.2705x33411,6011056906380643,2024-07-21 +Resort Hotel,0,20,2017,March,11,15,1,5,1,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,B,1,No Deposit,13.0,220.0,75,Transient-Party,69.96,1,1,Check-Out,Mr. Patrick Ewing,andrea02@example.org,556.769.6109x052,4530081285651524739,2025-08-17 +City Hotel,1,132,2017,November,44,3,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,0,Contract,102.78,0,0,Canceled,Carrie Garrett,michaelgeorge@example.com,908.415.8949x89821,2277191312908071,2024-08-20 +Resort Hotel,1,95,2017,May,19,7,1,2,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,179.73,0,3,Canceled,Nathan Gomez,matthewmyers@example.com,524-657-2748,6552234240909691,2024-12-05 +City Hotel,0,35,2017,August,34,19,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,H,G,0,No Deposit,14.0,179.0,0,Transient,109.64,0,0,Check-Out,Bradley Graham,ulong@example.net,(792)336-1309x3963,3511077527469062,2025-07-20 +City Hotel,0,88,2017,May,22,26,2,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,140.78,0,0,Check-Out,Holly Grant MD,jshort@example.com,769-317-5922x9515,3531627163448113,2025-02-25 +City Hotel,0,99,2017,October,41,12,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.96,0,1,Check-Out,Jacob Andrade,robertroberson@example.com,258-297-1311,4943860974218,2024-12-06 +Resort Hotel,0,21,2017,April,17,22,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,52.01,0,1,Check-Out,Erica Henry,lbrooks@example.org,9089312880,6011169297066083,2025-07-26 +City Hotel,0,2,2017,April,18,28,2,3,2,0.0,0,BB,,Direct,Direct,0,0,0,D,B,0,No Deposit,15.0,179.0,0,Transient,143.16,1,2,Check-Out,William Kim,alexissmith@example.net,+1-871-425-1945x75495,2264399975371710,2025-02-02 +City Hotel,1,133,2017,December,50,13,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,0,Transient,83.58,0,0,Canceled,Michael Saunders,nancy64@example.com,001-806-704-8725x408,30449721681230,2025-09-29 +City Hotel,1,98,2017,April,16,13,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,118.39,0,0,Canceled,Sheila Thompson,mccoycrystal@example.org,001-905-470-3569x72143,4532677226522,2025-10-15 +City Hotel,0,38,2017,March,12,20,1,4,2,1.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient,192.71,0,1,Check-Out,Rebecca Kelly,emily47@example.net,(302)426-1999,2720658982125692,2025-06-18 +City Hotel,0,2,2017,July,28,9,2,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient-Party,64.25,0,0,Check-Out,Scott Rose,benjamin05@example.com,001-564-926-9655x2631,3513081411145364,2024-07-31 +City Hotel,0,1,2017,September,38,22,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,7.0,179.0,0,Group,0.98,0,1,Check-Out,Mr. Steven Bell DVM,sullivanalexandra@example.com,261.479.5359x1851,4146646997550790053,2026-03-02 +Resort Hotel,1,65,2017,February,9,26,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,46.03,1,0,Canceled,Elizabeth Harding,maria70@example.net,539.243.1779x253,5291705640445186,2025-04-15 +Resort Hotel,0,43,2017,November,48,27,2,5,2,0.0,0,Undefined,,Corporate,Corporate,0,0,0,E,E,0,No Deposit,113.0,223.0,0,Transient-Party,82.19,0,0,Check-Out,Matthew Jefferson,dburton@example.net,464-205-8189x91830,3570212567264010,2025-10-02 +City Hotel,1,159,2017,June,24,11,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,75,Transient,108.17,0,0,Canceled,Mr. Michael Flores MD,hconner@example.com,353.521.2077x8264,4157046920967763,2025-12-22 +City Hotel,0,47,2017,March,10,8,0,2,3,0.0,0,BB,NOR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,111.01,0,1,Check-Out,Joseph Garcia,ericmartinez@example.com,+1-452-356-2047x29248,213198352931492,2025-12-22 +City Hotel,1,15,2017,February,8,24,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.76,0,1,Canceled,Vincent Lutz,cynthiabaker@example.org,+1-273-321-6648x31976,3588267912558474,2024-12-12 +Resort Hotel,0,153,2017,July,28,9,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,137.86,1,1,Check-Out,Molly Williams,smithreginald@example.org,(448)704-1292x515,6546819763331403,2025-10-04 +City Hotel,0,414,2017,September,36,7,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.52,1,0,Check-Out,Taylor Castillo,jessica65@example.org,916-459-1535x090,6011350390527268,2024-10-06 +Resort Hotel,0,98,2017,March,13,28,0,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient-Party,53.65,0,0,Check-Out,Eric Walls,joe06@example.net,001-675-452-1586x677,4711698840023116,2025-12-05 +City Hotel,0,3,2017,May,21,20,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,9.0,179.0,0,Transient,83.32,0,1,Check-Out,Alexander Byrd,hillrichard@example.org,734-377-7833x9861,4614617333498088,2025-09-22 +City Hotel,0,13,2017,November,44,4,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,104.12,0,0,Check-Out,Marie Flores,timothy34@example.com,271.732.6225x06869,3589465608260087,2025-07-18 +City Hotel,1,167,2017,June,23,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,129.0,179.0,0,Transient,109.74,0,0,Canceled,Aaron Conway,zroberts@example.net,(436)500-2192x727,4161453846322566,2024-12-03 +City Hotel,1,171,2017,September,36,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,115.88,0,0,Canceled,Melanie Fisher,reillylaura@example.com,515.738.0554x814,377771503746787,2024-11-20 +City Hotel,0,37,2017,July,29,21,2,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,145.33,0,1,Check-Out,Regina Green,kpierce@example.net,+1-575-468-7509x46596,3595876864231723,2025-09-05 +City Hotel,0,164,2017,July,30,24,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.87,0,1,Check-Out,Mr. Daniel Schmidt DDS,garciamorgan@example.net,(483)574-1533x0499,502063991124,2024-09-10 +Resort Hotel,0,74,2017,March,10,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient-Party,112.74,0,2,Check-Out,Jessica Lee,apowell@example.net,262-243-1562,3562648095881199,2024-05-09 +City Hotel,0,25,2017,September,37,10,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,62.78,0,0,Check-Out,Mark Price,watkinsdebbie@example.org,+1-204-261-9087x703,341628642144865,2024-06-06 +City Hotel,0,1,2017,March,12,19,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,83.21,1,2,Check-Out,Timothy Young,alexanderrichard@example.org,+1-687-967-5111x8395,213112241900972,2025-04-14 +City Hotel,0,1,2017,June,26,22,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,1,No Deposit,13.0,171.0,0,Transient,142.26,0,1,Check-Out,Jessica Manning,toddromero@example.com,001-672-969-2773x3121,4199560985000,2024-09-23 +City Hotel,1,21,2017,August,34,21,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Canceled,Darryl Cisneros,ohardy@example.net,(522)686-8770x7348,347049479343609,2026-02-09 +Resort Hotel,0,27,2017,February,6,5,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,51.08,0,1,Check-Out,Shannon Moore,ktaylor@example.net,+1-448-566-2721x5296,4280878604780355,2025-02-16 +City Hotel,0,97,2017,December,51,22,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,109.52,0,1,Check-Out,Melissa Gillespie,victoria79@example.com,(241)970-7739x63873,3575882411615255,2025-05-26 +City Hotel,0,33,2017,December,52,28,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,2,No Deposit,10.0,179.0,0,Transient,102.74,0,1,Check-Out,Brian Buckley,isaiah38@example.net,(616)201-0331,4582549676809738,2024-04-04 +City Hotel,1,11,2017,June,23,3,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.81,0,1,No-Show,Christopher Washington,jamesfrey@example.com,9563253026,180056007421062,2024-06-30 +City Hotel,1,36,2017,July,29,15,1,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,6.0,179.0,0,Transient,213.71,0,0,Canceled,Stephen Jimenez,pvasquez@example.com,(653)679-9693,4608808818921748,2025-12-03 +City Hotel,0,17,2017,April,17,24,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.85,0,2,Check-Out,Erik Morris,joe05@example.net,+1-845-201-7491x236,3523040968545424,2026-02-06 +Resort Hotel,0,18,2017,October,40,2,4,10,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,170.06,0,1,Check-Out,Kyle Smith,patrickhoward@example.net,+1-413-644-6598,676101674759,2024-09-26 +Resort Hotel,0,157,2017,April,18,27,1,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,252.0,179.0,0,Transient,221.31,0,3,Check-Out,April Kennedy,michael12@example.net,001-292-507-2899x58842,343057700774306,2024-09-30 +Resort Hotel,1,56,2017,March,13,30,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,50.09,0,1,Canceled,Allison Mendoza,scole@example.net,508-395-9723x744,4872947125256,2024-10-01 +City Hotel,0,19,2017,June,26,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,86.99,0,0,Check-Out,Kristy Martin,bradleysuarez@example.com,656.642.9790x328,30195304024542,2025-01-08 +City Hotel,0,12,2017,March,11,12,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.94,0,1,Check-Out,Henry Matthews,nedwards@example.net,953-833-5601x0462,36286980675972,2025-11-27 +Resort Hotel,0,0,2017,August,32,8,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,C,D,0,No Deposit,71.0,179.0,0,Transient,198.3,0,0,Check-Out,William Ortiz,christopher13@example.org,968.566.8718x81521,4339527053311300,2024-05-27 +Resort Hotel,0,11,2017,July,30,24,4,3,3,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,244.0,179.0,0,Transient,232.8,0,0,Check-Out,Joseph Figueroa,greenvanessa@example.org,001-350-677-7566x9601,2705428443053530,2025-08-04 +Resort Hotel,1,409,2017,April,17,29,2,5,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,114.13,0,0,Canceled,Brian Hawkins,lthompson@example.org,442.413.1329x2384,6011973429048350,2025-04-23 +City Hotel,0,148,2017,March,10,6,2,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,71.23,0,0,Check-Out,Edward Rowland,philip15@example.com,439.662.3298x78354,4691947995732862,2026-03-17 +Resort Hotel,1,44,2017,October,44,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,241.0,179.0,0,Contract,40.55,0,3,Canceled,Jeffrey Harris,william53@example.com,967-506-5922x608,4083076712522,2024-08-30 +Resort Hotel,0,195,2017,March,14,30,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,14.0,223.0,0,Transient-Party,44.94,0,0,Check-Out,Joseph Bell,pcarlson@example.net,001-207-663-4805,347792176217291,2025-02-18 +City Hotel,0,51,2017,August,35,26,0,4,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,169.09,0,2,Check-Out,Edwin Adkins,aliciawilliamson@example.net,279-753-8673,3537868677297919,2024-12-03 +City Hotel,1,399,2017,June,24,8,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,110.82,0,1,Canceled,Hannah Pena,amyhall@example.net,493.723.0385x20511,4032412740995973,2025-12-19 +City Hotel,0,94,2017,March,13,27,1,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,110.06,0,2,Check-Out,Bruce Wilson,jeremyprice@example.com,001-342-796-1599x137,6011437912418918,2024-12-01 +City Hotel,0,23,2017,October,41,9,2,1,1,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Kimberly Haley,oliviasmith@example.com,(947)669-8606x9065,3507740022340460,2025-09-26 +Resort Hotel,1,105,2017,December,49,8,1,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,B,A,0,Non Refund,36.0,179.0,75,Transient,84.29,0,0,Canceled,Ricky Burke,xkline@example.com,+1-646-214-6951x628,30138718403563,2026-03-19 +City Hotel,1,0,2017,February,8,23,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Transient,77.04,0,0,No-Show,Thomas Sanchez,davisthomas@example.com,001-792-965-6018,4522761436581944,2025-05-13 +City Hotel,1,161,2017,June,25,19,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,118.25,0,2,No-Show,Catherine Mendoza,shannondominguez@example.com,001-550-280-1025x6961,379304975627000,2024-11-10 +City Hotel,0,1,2017,April,17,28,2,0,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,104.39,0,2,Check-Out,John Young,monicadavis@example.net,001-367-709-3514x21603,4733160433696,2025-11-17 +Resort Hotel,0,53,2017,April,18,30,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,241.0,179.0,0,Transient,174.98,0,3,Check-Out,Angela Walker,sanchezkurt@example.com,(865)437-7814x612,377742724876612,2025-12-25 +City Hotel,1,411,2017,May,18,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,Non Refund,29.0,179.0,17,Transient,130.18,0,0,Canceled,Jesse Wood,jross@example.com,529.394.1581x654,30213041425003,2024-08-10 +City Hotel,0,3,2017,April,15,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,45.0,0,Transient,85.35,1,1,Check-Out,Angel Vincent,donaldoconnor@example.com,(252)904-5866x70119,4100977782937213,2025-08-22 +City Hotel,0,2,2017,June,27,29,1,2,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.77,0,1,Check-Out,Tanya Avila,jennifer95@example.net,2334032739,4050958461723819,2025-08-02 +Resort Hotel,1,314,2017,March,13,26,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,C,C,0,No Deposit,299.0,179.0,0,Transient,49.31,0,0,Canceled,Julie Brooks,eburnett@example.com,(750)498-7243,3582526632323147,2024-06-26 +Resort Hotel,0,105,2017,December,52,22,2,5,3,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,185.0,179.0,0,Transient-Party,86.88,0,0,Check-Out,Maureen Charles,zrodriguez@example.com,001-920-211-8059x5924,4530496857165204,2024-10-05 +Resort Hotel,0,8,2017,June,26,24,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,E,E,0,No Deposit,250.0,179.0,0,Transient,211.77,0,1,Check-Out,Nicholas Cervantes,yubrian@example.org,(901)372-6071x36692,4655756740694689,2024-04-17 +City Hotel,1,14,2017,August,32,9,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.72,0,0,Canceled,Richard Hull,jenna19@example.com,824-467-8156x1473,30127218138241,2024-06-28 +Resort Hotel,1,196,2017,July,31,30,0,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,132.15,0,0,Canceled,Adam Mitchell,johnnygoodwin@example.com,(537)306-6420x538,4772664487895699250,2025-02-16 +Resort Hotel,0,20,2017,February,7,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,236.0,179.0,0,Transient,56.42,0,2,Check-Out,Jessica James,wbowman@example.org,+1-614-383-5007x94925,4683185772161290,2026-02-02 +City Hotel,1,153,2017,July,27,1,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,117.18,0,1,Canceled,Diane Morris,gcohen@example.com,340.878.3861x4183,5469841620998880,2026-03-05 +City Hotel,1,97,2017,November,48,30,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,19,Transient,104.18,0,0,Canceled,Laura Ramirez,ayalastacey@example.org,001-543-841-3170x34293,180036015300409,2024-05-24 +Resort Hotel,1,97,2017,July,28,8,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,62.57,0,0,Canceled,Donna Martinez,fordkristi@example.org,001-548-737-5789x247,373045542818624,2025-04-08 +City Hotel,0,141,2017,June,25,17,2,10,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,22.0,179.0,0,Transient,101.23,0,1,Check-Out,Sheila Garcia,lwilliams@example.net,937.282.3348,2272015275677727,2025-03-20 +Resort Hotel,0,30,2017,May,21,24,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,53.98,0,1,No-Show,Leonard Wright,cruzjohnny@example.net,001-318-262-0399,6572648720820621,2025-06-13 +Resort Hotel,1,0,2017,February,7,11,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,246.0,0,Transient-Party,40.06,0,0,No-Show,Amy Werner,rachel47@example.com,(629)423-0048,4322833290794974653,2025-07-19 +Resort Hotel,0,39,2017,May,19,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,50.77,0,1,Check-Out,David Watson,zdavis@example.org,602.647.4917x3991,4937491931663497940,2025-12-14 +City Hotel,1,92,2017,May,19,5,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,73.51,0,0,Canceled,Sherri Richardson,alyssagarrett@example.org,001-634-855-4649,582505149556,2024-05-24 +City Hotel,1,71,2017,May,22,28,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.1,0,1,Canceled,Emily Meadows,johnsonryan@example.org,(378)312-1353x853,4474696811280266,2025-02-16 +City Hotel,0,35,2017,October,44,29,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,82.93,0,0,Check-Out,Kimberly Hudson,ngriffith@example.net,(485)695-6400x95413,503871833904,2024-11-09 +City Hotel,0,118,2017,July,27,2,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,143.57,0,3,Check-Out,Mrs. Charlene Padilla DDS,carolynjohnson@example.org,(391)775-1990x61080,3558071246246533,2025-05-19 +City Hotel,0,96,2017,November,45,2,1,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,75.91,0,3,Check-Out,Kelly Castro,alexandersavage@example.org,+1-549-739-7153x117,4501359860984927,2025-09-30 +City Hotel,0,124,2017,March,11,13,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,135.21,0,1,Check-Out,Erika Ruiz,kelly13@example.net,(487)716-5722x145,4167748505755012,2024-11-14 +City Hotel,0,2,2017,May,21,23,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,181.9,0,1,Check-Out,Kristen Osborne,bobbybarron@example.net,001-436-820-1144x15032,3540333610903599,2025-11-21 +City Hotel,1,275,2017,November,44,3,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,75,Transient,105.98,0,1,Canceled,Victoria Marshall,gonzalezsarah@example.org,(570)992-8084x566,4927641438601,2024-05-10 +Resort Hotel,0,33,2017,September,35,2,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,2,No Deposit,243.0,179.0,0,Transient,107.12,1,1,Check-Out,Danielle Chapman,sarah93@example.net,327-609-9828x4291,349486479581663,2026-02-17 +Resort Hotel,0,0,2017,September,36,2,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,63.02,1,1,Check-Out,Daniel Davidson,tallen@example.com,572.462.7535,5587887528796485,2025-09-01 +City Hotel,0,165,2017,September,36,4,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,114.48,0,2,Check-Out,Danielle Kim,klogan@example.org,386-550-4073,213117072887289,2025-02-06 +City Hotel,0,146,2017,June,26,22,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,155.0,179.0,0,Transient,136.69,0,1,Check-Out,Alexander Porter,wsmith@example.com,419-959-1927,4841339674094076087,2026-02-26 +Resort Hotel,0,195,2017,August,32,5,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,249.31,1,3,Check-Out,Kathleen Cochran,ballardjudith@example.net,525.747.2717x5252,3542677454277926,2025-07-23 +City Hotel,1,331,2017,July,30,23,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,64.66,0,1,Canceled,Vanessa Gibbs,paul12@example.org,(821)842-3297x4305,4844470708902300348,2024-12-15 +Resort Hotel,0,100,2017,January,4,23,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,11.0,179.0,0,Transient-Party,62.22,0,1,Check-Out,Melissa Carter,rhonda17@example.com,(473)231-0755x261,2716577499169538,2025-10-09 +Resort Hotel,0,60,2017,May,19,5,2,5,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,C,2,No Deposit,364.0500000000011,179.0,0,Transient-Party,101.37,0,0,Check-Out,Mary Wallace MD,broman@example.org,236.585.8221,3504858348078466,2025-02-11 +City Hotel,0,159,2017,June,25,17,0,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,135.17,0,0,Check-Out,Tony Kline,karenbishop@example.com,(259)566-0727x86356,3596472718300903,2025-12-11 +City Hotel,1,0,2017,August,34,25,2,1,2,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,72.58,0,2,Canceled,Tricia Yang,kevin23@example.com,(346)316-8460x92494,4745202868127909051,2025-09-22 +City Hotel,0,31,2017,October,41,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,109.27,0,0,Check-Out,Alicia Alexander,elizabethmoody@example.com,+1-657-986-8507x71140,4184836186081045,2025-12-09 +Resort Hotel,0,2,2017,January,2,2,0,1,2,0.0,0,BB,PRT,Online TA,Direct,1,0,1,A,D,0,No Deposit,244.0,179.0,0,Transient,41.53,0,1,Check-Out,Christopher Herring,michelleholt@example.org,656-411-2618x89149,30154652108456,2024-12-04 +City Hotel,1,207,2017,August,31,2,2,6,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,202.57,0,0,Canceled,Charles Black,barrettalexis@example.net,+1-328-274-5315x7259,3593410793225424,2025-07-30 +Resort Hotel,0,0,2017,August,35,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,53.65,0,0,Check-Out,James Smith,eric97@example.net,694-256-6145,5170424973634830,2024-08-23 +Resort Hotel,0,6,2017,March,12,23,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,A,E,0,No Deposit,330.0,179.0,0,Transient,46.32,0,0,Check-Out,Megan Rojas,ryanperez@example.org,229.508.4264x08829,30268830220080,2025-10-09 +City Hotel,0,3,2017,October,43,24,0,2,1,1.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,45.0,0,Transient,63.83,0,0,Check-Out,Bryan Ellis,lori28@example.net,+1-432-765-0484x87362,373976909329997,2024-07-29 +City Hotel,0,324,2017,June,25,17,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,106.49,1,0,Check-Out,Kevin Larsen,mariehill@example.net,8538467867,3559075721593649,2025-09-20 +Resort Hotel,0,100,2017,April,15,9,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,364.0500000000011,179.0,0,Transient,89.68,1,1,Check-Out,Theresa Ramos,nolson@example.net,+1-357-989-1326x64247,6011879111576824,2024-11-27 +City Hotel,1,68,2017,September,38,21,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,62.65,0,0,Canceled,Mark Spencer,martinezrichard@example.net,392-513-8097,501814878416,2025-04-18 +City Hotel,1,300,2017,May,20,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,103.65,0,0,Canceled,Leslie Mathis,julie65@example.net,2124553339,4485048526833,2025-01-18 +City Hotel,1,117,2017,July,27,1,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,23.0,179.0,0,Transient,141.98,0,0,Canceled,Meagan Hendrix,danny69@example.org,(381)506-3129x2763,2275820327724949,2025-03-29 +Resort Hotel,0,14,2017,May,22,28,4,10,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,354.0,179.0,0,Transient,132.7,0,1,Check-Out,Elizabeth Simpson,stephenmelendez@example.com,+1-243-520-4076x43227,6011871105957011,2025-02-20 +City Hotel,1,26,2017,April,16,21,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,108.67,0,0,Canceled,Pamela Vazquez,raysamantha@example.net,001-440-499-6149,3553305948220676,2024-12-21 +Resort Hotel,0,134,2017,March,11,10,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,215.0,179.0,75,Transient,72.18,0,1,Check-Out,Holly Harmon,mcknightdaniel@example.org,297.854.1261x93989,3551640070942503,2024-08-14 +City Hotel,0,287,2017,May,21,23,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,99.14,0,2,Check-Out,Mark Thomas,rmills@example.org,811.627.0746x118,582507427018,2025-06-21 +Resort Hotel,1,141,2017,June,23,5,3,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,243.0,179.0,0,Transient,132.08,0,1,Canceled,Sheila Dougherty,gmacias@example.com,5716927384,4498985026690530,2025-03-09 +City Hotel,1,114,2017,May,20,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,40,Transient,131.77,0,0,Canceled,Jesse Wolfe,armstrongjessica@example.net,246.310.7650x00011,4502218238908530,2025-10-14 +City Hotel,0,17,2017,February,8,17,0,2,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Bradley Lee,woodcharles@example.net,394.600.5215x8140,4768994403762,2024-06-30 +Resort Hotel,1,48,2017,October,41,12,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient-Party,105.36,0,2,Canceled,Larry West,dkent@example.net,414-557-7175,30436332547736,2025-06-02 +City Hotel,0,11,2017,October,42,18,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,40,Transient,127.44,0,0,Check-Out,Carl Rodriguez,robertjones@example.net,799-317-5423x50657,30205495263070,2024-04-06 +Resort Hotel,0,9,2017,September,37,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient-Party,90.38,0,1,Check-Out,David Cole,brenda97@example.net,7412286581,4352934850061017943,2025-12-04 +Resort Hotel,0,3,2017,November,45,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,75.61,0,0,Check-Out,Timothy Webb,connorbriggs@example.org,284-451-9874x9326,3591006901783163,2024-11-09 +Resort Hotel,1,1,2017,February,9,27,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,331.0,0,Transient,43.29,0,0,Canceled,Taylor Walker,jcollins@example.com,4206567909,4202939991903334,2024-10-11 +City Hotel,0,12,2017,November,47,22,0,1,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,7.0,179.0,0,Transient,155.15,0,2,Check-Out,Robin Wise,imartinez@example.org,537.401.5846x123,4879229365469993,2024-06-21 +City Hotel,0,253,2017,September,39,24,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Group,191.53,0,1,Check-Out,William Hardy,cooklori@example.org,(717)272-0830x0909,4977878750976607,2025-02-14 +Resort Hotel,0,21,2017,May,19,8,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,138.16,0,1,Check-Out,Bradley Kennedy,melissa45@example.net,283.718.3161,346484991444356,2025-08-31 +Resort Hotel,0,0,2017,January,2,9,0,3,1,0.0,0,BB,DEU,Corporate,Corporate,0,0,0,D,D,1,No Deposit,13.0,331.0,0,Transient,92.72,0,0,Check-Out,Aaron Mercado,fmorales@example.org,001-917-601-4883,6011075421266020,2025-11-24 +Resort Hotel,0,98,2017,August,35,30,1,0,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,212.63,0,2,Check-Out,Lacey Poole,debra97@example.com,+1-538-244-2138x1302,36479766511020,2025-03-05 +Resort Hotel,0,73,2017,March,13,24,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient-Party,47.11,0,1,Check-Out,Kerry Johnson,perezdavid@example.org,(348)954-6848x643,342316147799891,2024-05-05 +City Hotel,0,15,2017,September,36,7,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,242.0,179.0,0,Transient-Party,82.5,0,1,Check-Out,Melinda Shaw,adavis@example.com,(919)220-1505x34684,3508918151397035,2025-12-29 +City Hotel,1,163,2017,August,31,1,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,232.17,0,0,Canceled,Jessica Mahoney,corey78@example.com,+1-749-275-6941x398,4612546474714189,2026-03-16 +City Hotel,1,142,2017,June,25,17,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,138.03,1,1,Canceled,Becky Ramos,riggsdylan@example.com,+1-618-286-5994,3551510082060422,2025-05-31 +Resort Hotel,1,120,2017,July,30,23,0,10,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,242.0,179.0,0,Transient,109.68,0,1,Canceled,James Rogers,davisbrian@example.net,4443795399,4128926519076934,2024-09-15 +City Hotel,1,0,2017,May,19,10,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,3.17,0,0,No-Show,Timothy Wells,boyersherry@example.com,844-513-9294,2270162968794013,2025-09-06 +Resort Hotel,0,15,2017,December,49,5,2,4,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,11.0,179.0,0,Transient,99.03,0,2,Check-Out,Timothy Elliott,ywallace@example.net,229-824-7569,2299110808179819,2025-01-03 +Resort Hotel,0,0,2017,August,31,1,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,1.87,1,0,Check-Out,David Sloan,karen53@example.net,(689)999-8448,2230431357625115,2024-05-23 +City Hotel,0,57,2017,November,47,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,71.0,0,Transient,51.42,0,0,Check-Out,Donna Cochran,garciabetty@example.net,8957246572,2278196195162471,2026-01-16 +Resort Hotel,0,10,2017,August,32,12,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,92.0,0,0,Check-Out,Patrick Fowler,ctate@example.org,+1-815-593-3581,4362533281234,2025-01-13 +City Hotel,0,68,2017,December,51,23,0,1,1,0.0,0,BB,FRA,Direct,Corporate,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,112.82,0,1,Check-Out,Karen Hopkins,williamscurtis@example.com,6856458650,6526892865116604,2025-08-31 +City Hotel,0,10,2017,August,33,12,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,200.96,0,1,Check-Out,Adam Williams,andrevillegas@example.com,001-612-613-7085x14611,2578010707215478,2025-01-20 +City Hotel,0,2,2017,November,46,12,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,0,No Deposit,15.0,54.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Roger Goodman,chungcarol@example.com,+1-672-736-1521x99548,4155706294367922,2024-07-26 +Resort Hotel,0,1,2017,March,11,15,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,42.0,223.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Nancy Kelley,burnettelizabeth@example.net,268.837.1123x40984,2304406878458734,2024-06-06 +City Hotel,1,21,2017,April,14,5,2,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,88.27,0,1,Canceled,Joshua Flores,christina40@example.com,844-784-0851,3506682484446164,2024-08-25 +City Hotel,0,100,2017,December,48,1,1,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,14.0,179.0,75,Transient-Party,98.67,0,0,Check-Out,Jermaine Clark,james50@example.com,917.509.6567,4044379757482813,2025-11-17 +Resort Hotel,0,286,2017,March,13,31,0,3,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,B,1,Refundable,13.0,222.0,0,Transient-Party,73.17,0,0,Check-Out,Mr. Ian Kennedy,joan49@example.org,+1-429-474-0529x398,4920722274839,2025-04-30 +City Hotel,0,87,2017,December,52,28,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,92.29,0,1,Check-Out,Joseph Hernandez,hvasquez@example.net,459-277-9392,586154218042,2024-07-31 +Resort Hotel,0,152,2017,March,12,20,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,127.46,0,2,Check-Out,Alexis Mitchell,asanchez@example.org,001-573-712-3442x2905,30248735735697,2025-12-27 +City Hotel,0,53,2017,April,18,29,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,111.01,0,2,Check-Out,Richard Moss,ptorres@example.org,001-656-563-3987x771,30449357350613,2025-10-19 +City Hotel,1,11,2017,August,32,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Contract,63.58,0,1,Canceled,Elizabeth Sanchez,juliesmith@example.net,9053624230,30228788143411,2025-12-30 +City Hotel,0,218,2017,April,16,14,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,84.09,0,1,Check-Out,Adam Lambert,michael36@example.com,+1-672-657-6008x3670,341736987133581,2025-04-10 +Resort Hotel,0,8,2017,April,17,20,1,1,1,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,C,1,No Deposit,17.0,179.0,0,Transient-Party,103.86,0,0,Check-Out,Michael Wilson,megan12@example.net,(850)837-9677x4987,3575178617769925,2024-05-06 +City Hotel,0,22,2017,March,13,23,1,2,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,H,E,2,No Deposit,15.0,179.0,0,Transient,123.95,0,3,Check-Out,Jacob Reyes,kevin64@example.com,+1-629-741-5891x2601,3589092522879956,2025-01-29 +City Hotel,1,105,2017,March,10,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,209.31,0,0,Canceled,David Mitchell,andrea91@example.org,326.248.2411x873,4061493082030645501,2025-01-31 +City Hotel,1,196,2017,June,24,11,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.56,0,2,No-Show,Jessica Pena,shannon53@example.org,7167356140,4513103286819671,2025-11-25 +City Hotel,1,12,2017,April,17,24,0,1,3,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,0.76,0,1,Check-Out,Andrew Calderon,alecsantiago@example.com,+1-690-894-0576x05848,2697338856885718,2024-06-02 +Resort Hotel,0,93,2017,March,13,28,1,6,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient-Party,51.14,0,0,Check-Out,Eric Rush,jonathan76@example.org,926-978-5386x678,3594634241089061,2024-05-16 +City Hotel,0,41,2017,May,18,2,0,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.8,0,1,Check-Out,Brenda Sims,garciakevin@example.com,532-510-6577x4254,3597874063888375,2024-07-04 +City Hotel,1,236,2017,July,27,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.94,0,0,Canceled,Shane Duncan,lisa20@example.org,394.928.2777,4874629959980849,2025-06-27 +Resort Hotel,0,14,2017,July,27,6,4,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,224.77,0,3,Check-Out,Tammy Cruz,webbmanuel@example.com,271.254.3539,30317665488997,2024-12-18 +Resort Hotel,1,166,2017,June,24,12,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,113.78,0,0,Canceled,Elizabeth Allen,greenashley@example.com,(626)277-3145x8219,4451557402383314,2025-02-15 +City Hotel,1,140,2017,September,37,14,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,59.41,0,0,Canceled,Gregory Horton,gregorybowers@example.org,001-543-587-5449x22108,3574865036596712,2025-08-06 +City Hotel,0,14,2017,October,41,8,0,1,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,79.47,0,0,Check-Out,Samantha Dougherty,parksamantha@example.com,(830)746-5611x792,3538178727142472,2024-10-17 +City Hotel,0,157,2017,August,35,30,0,1,2,1.0,0,BB,FRA,Complementary,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,166.77,0,3,Check-Out,Courtney Rios,edward09@example.org,523-563-9555,3583117769967358,2025-12-13 +City Hotel,1,168,2017,October,41,8,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,127.25,0,0,Canceled,Daniel Carter,mary90@example.com,936-490-5244,3567320193782340,2025-12-16 +Resort Hotel,0,13,2017,February,7,10,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,331.0,0,Transient,39.77,0,1,Check-Out,Christopher Cox,fcross@example.org,+1-564-377-9184,4139940633052,2025-09-22 +City Hotel,0,0,2017,August,31,3,0,1,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,2,No Deposit,19.0,179.0,0,Transient-Party,62.7,0,0,Check-Out,Sydney Davis,eric47@example.org,+1-738-763-7975,4477548222450,2025-10-23 +City Hotel,1,108,2017,March,9,3,1,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,102.89,0,0,No-Show,Nicholas Young,roberto06@example.com,+1-532-908-1647x00806,3525513303818233,2025-03-13 +City Hotel,1,375,2017,June,24,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,305.0,179.0,0,Transient,127.84,0,0,Canceled,Phillip Phillips,courtney02@example.net,371-584-2374,213184266533053,2024-09-21 +Resort Hotel,0,2,2017,April,16,13,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient-Party,106.42,0,0,Check-Out,Catherine Nelson,sellersrachael@example.net,589.210.6841x79979,4197804191856,2026-03-16 +City Hotel,0,8,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,126.14,0,1,Check-Out,Rachel Mccoy,lwang@example.org,717.628.9268x2343,3534410038051777,2025-02-12 +City Hotel,0,41,2017,May,19,5,1,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,215.0,0,Group,81.58,0,1,Check-Out,Jennifer Wright,xcampbell@example.com,+1-887-886-8917,4702151625091529,2026-03-11 +City Hotel,0,9,2017,January,4,25,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.65,0,2,Check-Out,Patricia Blair,wmoore@example.com,309.699.0818x4317,3526883876703834,2024-08-03 +City Hotel,0,52,2017,June,23,4,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,125.0,179.0,0,Transient,105.9,0,2,Check-Out,Daniel Meadows,eugenebell@example.net,+1-491-417-7731x5506,4835061348202,2025-08-25 +City Hotel,0,259,2017,April,17,22,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,160.0,179.0,0,Transient-Party,117.56,0,0,Check-Out,Alicia Miles,mosesjeffrey@example.com,549.900.0556x9388,36074112516672,2025-08-13 +City Hotel,1,225,2017,December,51,17,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,86.34,0,0,Canceled,Misty Parrish,christopher67@example.net,001-309-834-5208x1458,676375359145,2024-07-10 +City Hotel,0,31,2017,November,48,26,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,110.51,0,1,Check-Out,Nancy Simpson,aprilperkins@example.com,+1-507-292-0051x26532,6011792674289877,2025-08-24 +City Hotel,1,148,2017,September,36,5,2,5,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,8.0,179.0,0,Transient,141.43,0,2,Canceled,Eugene Turner,jay52@example.net,(838)652-0270,374714803187529,2025-04-23 +City Hotel,0,31,2017,October,40,5,1,2,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,104.75,0,2,Check-Out,Jamie Rodgers,rick10@example.org,938-314-5635,3560283530765484,2024-09-15 +City Hotel,0,18,2017,April,16,17,0,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.74,0,3,Check-Out,Kevin Landry,tgeorge@example.com,840.483.7865x9651,676212732652,2025-06-22 +Resort Hotel,0,99,2017,March,10,4,2,5,1,0.0,0,BB,BEL,Groups,Direct,0,0,0,E,E,1,No Deposit,302.0,179.0,0,Transient-Party,132.93,1,0,Check-Out,Jonathan Smith,williamkelley@example.net,+1-768-876-8280,3576759637502922,2025-12-04 +City Hotel,1,156,2017,September,39,24,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,114.12,0,0,Canceled,Tracy Clay,qcooper@example.net,5097129545,378065387362814,2025-09-14 +Resort Hotel,1,102,2017,August,34,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,252.0,179.0,0,Transient-Party,211.65,0,0,Canceled,Tina Bartlett,rvillarreal@example.org,617-436-7108,3533482818641094,2026-02-25 +Resort Hotel,0,19,2017,July,29,19,0,1,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,26.0,179.0,0,Transient-Party,79.17,1,0,Check-Out,Steven Hall,lthompson@example.net,787-487-4196x99913,343653007905260,2024-04-04 +City Hotel,1,363,2017,September,37,13,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,100.61,0,0,Canceled,Elizabeth Morrison,denise92@example.org,(530)727-6824,213161527100542,2026-01-06 +Resort Hotel,0,202,2017,October,42,15,2,5,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,51.31,1,0,Check-Out,Kirsten Diaz,susanpaul@example.net,+1-918-486-9462x946,3588431233850396,2025-05-26 +City Hotel,0,18,2017,August,33,13,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,198.3,1,2,Check-Out,David Green,vwatson@example.org,622-636-3807x31929,4270420585163,2024-05-26 +City Hotel,0,360,2017,September,38,19,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Contract,96.69,0,0,Check-Out,Zachary Wood,brittanyconley@example.org,749.307.0699x97462,3593657777213335,2024-04-24 +City Hotel,0,44,2017,March,13,26,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,124.48,0,3,Check-Out,Christopher Bailey,qmorrison@example.org,(683)212-1074x4131,342675949106583,2025-09-18 +City Hotel,0,2,2017,August,35,30,0,1,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,148.83,0,2,Check-Out,Cameron Powell,scase@example.net,+1-537-760-5445x89810,4973731900936,2025-11-24 +Resort Hotel,1,159,2017,July,28,12,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient-Party,108.6,0,0,Canceled,Jennifer Townsend,nmurray@example.org,878-898-3857x7023,371550198289956,2025-11-02 +Resort Hotel,0,41,2017,November,46,15,2,2,1,0.0,0,HB,PRT,Groups,Corporate,0,0,0,D,D,1,No Deposit,42.0,179.0,75,Transient-Party,46.18,0,0,Check-Out,Peter Mercado,stephanie68@example.org,7918554806,4400644994605890,2025-05-09 +City Hotel,1,0,2017,April,15,12,2,5,3,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,D,D,0,No Deposit,13.0,168.0,0,Transient,47.44,0,0,Canceled,Jonathan Reese,kylelin@example.org,(868)207-8044x5117,347310830646282,2024-07-12 +City Hotel,0,51,2017,December,50,10,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,58.0,0,2,Check-Out,Ellen Ramirez,tranjames@example.com,001-617-340-4027,3550401229584865,2024-08-24 +City Hotel,1,51,2017,February,6,10,2,0,2,0.0,0,BB,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,0.5099000000000001,0,0,Canceled,Anthony Elliott,diazkayla@example.net,945.583.0926x960,6537118417251575,2025-11-16 +Resort Hotel,1,132,2017,August,32,8,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,240.89,0,1,Canceled,Rachel Wilson,tyler28@example.net,674-563-0930,5156453665680759,2025-10-05 +City Hotel,0,372,2017,October,43,27,2,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient-Party,75.84,0,0,Check-Out,Marissa Davis,williamsjacqueline@example.com,970-427-1860,4698900815251707,2024-12-06 +Resort Hotel,1,10,2017,December,49,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,2,No Deposit,239.0,179.0,0,Transient,63.61,1,2,Canceled,Jon Cantu,bethmcintosh@example.net,393.987.4913,180046819352159,2024-11-21 +Resort Hotel,0,2,2017,May,21,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,239.0,179.0,0,Group,88.15,0,2,Check-Out,Donald Reyes,brandonjackson@example.net,+1-563-546-2604x818,3558698931397492,2025-09-17 +Resort Hotel,1,50,2017,October,44,31,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,268.0,179.0,0,Transient,78.6,0,0,Canceled,Angela Flowers,amendoza@example.org,672-956-1677x062,4810914984768,2025-07-20 +Resort Hotel,0,96,2017,July,28,11,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Group,102.91,0,1,Check-Out,Jo Mosley,jasongentry@example.org,(393)903-4594x60638,3569547104261596,2026-03-18 +Resort Hotel,0,150,2017,March,13,26,1,4,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,41.0,179.0,0,Transient,46.56,0,0,Check-Out,Ryan Baker,coopermatthew@example.net,497-912-5472,3588864853255837,2025-03-17 +City Hotel,0,15,2017,August,32,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,75.0,179.0,0,Group,125.76,0,1,Check-Out,Cody Green,michael11@example.org,+1-620-889-1610x20860,30061151519507,2025-02-17 +City Hotel,0,91,2017,December,49,3,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,199.24,0,0,Check-Out,Melanie Mason,lori60@example.net,(559)785-8987,4582815476643514,2025-01-12 +Resort Hotel,0,0,2017,January,3,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,161.0,179.0,0,Transient,37.26,0,1,Check-Out,Linda Moody,esmith@example.net,(635)792-8265x9628,4072709039874,2025-12-24 +City Hotel,0,93,2017,April,15,12,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,114.79,1,2,Check-Out,Donna Andersen,clarkjeremy@example.com,(851)984-2579x514,4923873816358,2024-06-07 +Resort Hotel,1,0,2017,February,5,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,17.0,222.0,0,Transient,44.5,0,0,Canceled,Matthew Combs,thomaslewis@example.org,573-224-8877x395,371482644055833,2024-12-09 +City Hotel,1,38,2017,June,25,19,2,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.97,0,1,Canceled,Ashley Robinson,margaret33@example.com,728-830-5627,3575799228111395,2024-12-22 +City Hotel,1,153,2017,August,35,30,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,8.0,179.0,0,Transient,117.09,0,2,Canceled,Julie Williams,desireewilkins@example.net,334-405-8295,180085268237909,2025-09-12 +Resort Hotel,0,86,2017,March,13,26,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,120.61,0,3,Check-Out,Karina Patterson,lorifoster@example.com,953.362.1861x92355,6500526119664726,2024-09-19 +City Hotel,0,5,2017,October,40,1,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Transient-Party,73.19,0,0,Check-Out,Collin Kelley,pamela31@example.com,8817754396,6568146171940903,2026-03-18 +City Hotel,0,1,2017,August,33,15,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,76.0,179.0,0,Transient-Party,133.21,0,0,Check-Out,David Myers,smithanthony@example.org,3728571348,30280447168636,2025-08-31 +City Hotel,0,0,2017,August,32,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,207.18,0,0,Check-Out,Christopher Nolan,jgutierrez@example.org,(576)301-4149x345,4098390949553341,2025-06-21 +City Hotel,0,1,2017,August,32,10,1,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,189.2,0,0,Check-Out,Meagan Smith,smithsteven@example.org,+1-793-845-7702x8967,4754060592951,2025-06-19 +Resort Hotel,0,57,2017,April,17,24,1,6,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,249.0,179.0,0,Transient,252.0,0,1,Check-Out,Diana Lowe,uthompson@example.com,473-481-3131x86427,6011348263878487,2024-09-17 +Resort Hotel,0,1,2017,January,2,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,L,C,1,No Deposit,19.0,179.0,0,Transient,59.85,0,0,Check-Out,Dean Hines,haileyjohnson@example.org,939.750.6099,4120106182844953,2024-09-07 +City Hotel,0,9,2017,November,45,9,0,2,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,206.0,0,Transient-Party,105.2,0,0,Check-Out,Robert Graham,hestermatthew@example.org,+1-849-244-0442,3548134665335543,2025-03-23 +City Hotel,1,27,2017,December,2,31,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,42,Transient,114.14,0,3,Check-Out,Harold Campbell,juanaguirre@example.org,521.421.0545,676251363567,2026-01-08 +City Hotel,0,69,2017,August,33,14,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.64,1,3,Check-Out,Glenn Miller,timothywarner@example.org,001-475-727-1099x267,580911430842,2024-04-19 +Resort Hotel,1,41,2017,December,49,8,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient-Party,41.22,0,0,Canceled,Robert Jordan,rbrooks@example.org,445.629.2531x50699,36285610102233,2025-07-14 +City Hotel,0,0,2017,March,12,19,0,1,1,1.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,1,No Deposit,16.0,60.0,0,Transient,56.11,0,3,Check-Out,Brandon Ferguson,nlawrence@example.net,760-209-6118x76349,4450402325803527595,2024-04-14 +City Hotel,0,151,2017,April,15,10,1,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,84.06,0,0,Check-Out,Sharon Ward,matthew83@example.com,+1-679-986-1314,4227052657410106,2024-12-19 +Resort Hotel,1,10,2017,March,13,31,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,55.43,0,0,Canceled,Adam Estrada,cynthiakeller@example.com,+1-223-660-0134x0132,4692223930223,2025-12-31 +Resort Hotel,0,1,2017,May,18,5,1,0,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,I,0,No Deposit,17.0,179.0,0,Transient,2.82,0,0,Check-Out,Casey Faulkner,virginia60@example.net,+1-381-355-2851,213126024890002,2024-07-02 +City Hotel,1,159,2017,September,36,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,61,Transient,81.49,0,0,Canceled,Charles Olson,kennethbaker@example.org,(650)281-7666x15577,2570668654527159,2025-07-14 +Resort Hotel,0,66,2017,July,30,23,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,148.96,1,2,Check-Out,James Weaver,johnsonjoshua@example.org,+1-789-416-9185x69830,4063070715610852,2025-09-18 +City Hotel,1,107,2017,June,24,15,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,117.02,0,3,Canceled,Kayla Hill,thomasmatthew@example.com,(815)367-9861,4897450850304978,2025-10-07 +City Hotel,0,10,2017,January,2,6,0,3,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,93.34,0,1,Check-Out,Tammy Terry,robertroberson@example.com,(277)258-4761,4623769472491847361,2024-04-19 +Resort Hotel,0,203,2017,July,28,8,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,245.0,179.0,0,Transient,58.21,0,2,Check-Out,John Hernandez,jason92@example.net,654.686.8404x4441,4886430297125,2026-01-22 +City Hotel,1,264,2017,July,30,20,0,4,2,0.0,0,SC,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,132.3,0,0,No-Show,Eric Schwartz,nhoward@example.com,208-398-1527,4972503963728901,2024-10-29 +City Hotel,1,3,2017,April,17,25,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,134.98,0,0,Canceled,Luke Burns,jhayden@example.org,001-492-678-4886x90510,3504193441446125,2024-04-22 +Resort Hotel,1,97,2017,May,22,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,136.58,0,2,Canceled,Morgan Wright,michellegarcia@example.com,563.434.0838x887,4217532562200975,2024-09-17 +Resort Hotel,1,48,2017,February,7,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,42.98,0,1,Canceled,Christopher Wright,kathleen97@example.org,731-801-0012x5351,370935332415685,2024-11-02 +Resort Hotel,0,46,2017,April,17,22,1,4,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,192.6,0,2,Check-Out,Jason Cole,wolferin@example.org,001-274-539-8610x703,36482931914517,2025-12-02 +Resort Hotel,0,12,2017,May,19,7,1,2,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,101.78,0,0,Check-Out,Jessica Carter,james93@example.net,889.671.7152x359,4368558916253983126,2025-10-24 +Resort Hotel,0,3,2017,January,3,13,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,46.58,0,2,Check-Out,Gabriela Hunter,shortkristen@example.org,444.605.6059x410,213187300591458,2024-05-03 +Resort Hotel,1,82,2017,July,29,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,115.39,0,0,Canceled,Becky Walters,natalie98@example.org,676.806.0739,4069254383742766417,2025-02-04 +City Hotel,0,12,2017,September,37,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.9,0,0,Check-Out,James Montes,james42@example.com,599-811-0583,4783385473027,2024-09-26 +City Hotel,1,0,2017,August,35,31,0,1,3,0.0,0,SC,PRT,Complementary,Direct,0,0,0,P,P,0,No Deposit,18.0,331.0,0,Transient,6.93,0,0,Canceled,Judith Phillips,arthurward@example.com,9884460825,060471052534,2025-06-19 +City Hotel,1,94,2017,June,24,16,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.67,0,1,Canceled,Vanessa Roberts,anthony90@example.com,342-620-1087,4006659609348874,2024-05-22 +City Hotel,1,110,2017,February,5,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.67,0,0,Canceled,Cheyenne Jones,ocarlson@example.net,+1-429-433-3844,6011406826404983,2024-11-13 +City Hotel,0,10,2017,January,4,20,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,77.19,0,1,Check-Out,Gregory Dyer,ujones@example.net,(774)457-3889,4013774654852836,2025-12-04 +City Hotel,0,84,2017,July,31,30,2,5,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,C,A,0,No Deposit,10.0,179.0,0,Transient,203.11,0,1,Check-Out,Sean Luna,ruiznicholas@example.org,+1-821-243-6680x90065,3557022611479648,2024-09-16 +City Hotel,1,208,2017,April,18,30,0,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,132.27,0,0,Canceled,Jennifer Green,corey36@example.org,+1-523-911-9099x9597,213167816691448,2024-12-26 +City Hotel,0,97,2017,April,14,2,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,115.02,0,2,Check-Out,Tracey Smith,wilsonjason@example.net,001-363-457-6398x1608,4926500049240448997,2025-03-02 +Resort Hotel,0,36,2017,August,34,18,2,0,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,236.0,179.0,0,Transient,134.46,0,2,Check-Out,Crystal Banks,jarmstrong@example.org,498.494.3049x0315,4236137581246954,2025-11-08 +City Hotel,0,2,2017,December,49,8,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.64,0,1,Check-Out,Maria Clark,nnavarro@example.org,(492)280-8929x963,2233632027847362,2024-08-22 +Resort Hotel,0,4,2017,July,30,23,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,171.73,0,0,Check-Out,Corey Sanders,mcgeekimberly@example.org,9386123702,348922617363797,2024-08-04 +Resort Hotel,1,241,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient-Party,96.87,0,0,Canceled,Michelle Clark,robert98@example.net,266-995-3531,3582869174025229,2025-10-16 +City Hotel,0,0,2017,May,19,9,1,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,2.97,0,0,Check-Out,Jerry Smith,tgraham@example.net,001-254-896-2113,4387313966126,2025-04-21 +City Hotel,0,135,2017,March,12,20,0,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,215.58,0,3,Check-Out,Andrew Clark,joseph21@example.org,771.984.0807x7139,3590048531948122,2025-01-24 +City Hotel,0,165,2017,March,11,14,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,130.07,0,1,Check-Out,Connie Gonzalez,ritterbrett@example.net,487.419.6321x5547,588075615355,2024-08-21 +Resort Hotel,0,101,2017,April,14,3,1,2,2,1.0,0,Undefined,ESP,Direct,Direct,0,0,0,L,C,1,No Deposit,16.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Rebecca Ortega,jeffrey64@example.com,939.938.4898x303,2720448998229187,2024-12-10 +City Hotel,0,4,2017,September,37,9,0,1,2,0.0,0,SC,AUT,Direct,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,92.94,0,0,Check-Out,Anne Smith,vwest@example.org,(807)940-9634x71611,30419593700707,2024-05-06 +Resort Hotel,0,0,2017,June,23,5,0,1,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,252.0,0,0,Check-Out,Douglas Meyers,nicolewatson@example.org,(326)827-4879,3584649883064307,2025-01-02 +City Hotel,1,196,2017,June,25,17,0,4,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,113.28,0,0,No-Show,Jay Medina,brianhess@example.org,753.946.7140x04281,3528771872924082,2024-05-16 +City Hotel,1,356,2017,October,40,6,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.93,0,0,Canceled,Shelby Walker,brownbobby@example.org,+1-391-561-3664x240,213109831039328,2026-03-05 +City Hotel,0,26,2017,March,12,23,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,60.99,0,0,Check-Out,Melissa Rocha,lucasthompson@example.net,843.461.7626x95691,3533124072768672,2026-03-25 +Resort Hotel,0,99,2017,May,21,21,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient-Party,41.47,0,0,Check-Out,Holly Lee,youngrobert@example.org,5358029519,3592734056705728,2025-03-14 +City Hotel,0,0,2017,May,19,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,87.0,179.0,0,Transient-Party,82.64,0,0,Check-Out,Donald Mcclure,craigmolina@example.com,(975)796-7993,6509372347530673,2025-12-25 +City Hotel,0,11,2017,February,9,24,0,1,1,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.51,0,1,Check-Out,Kristine Stephens,johnbrown@example.com,(529)868-4835,4262706464306353,2026-03-09 +Resort Hotel,0,83,2017,July,30,26,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,52.55,0,2,Check-Out,John Green,barnettralph@example.org,001-227-722-2067x687,4960576947628550243,2024-06-30 +City Hotel,0,10,2017,November,45,6,0,1,1,0.0,0,SC,,Complementary,Direct,0,0,0,P,K,0,No Deposit,12.0,179.0,0,Transient,2.1,0,0,Check-Out,Evan Lara,andrewsdennis@example.com,392-974-8084x7773,4524921606996078,2025-11-23 +City Hotel,0,50,2017,November,45,7,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.17,0,1,Check-Out,James Simmons,justin83@example.org,001-473-240-5244x3411,4962264635449,2026-01-10 +City Hotel,1,265,2017,July,28,13,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,125.67,0,1,No-Show,Sarah Young,ewhite@example.com,001-875-859-3021x93278,2239029754320008,2025-07-10 +City Hotel,1,139,2017,October,40,2,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,117.85,0,0,Canceled,Anthony Sanders,dianemorrison@example.org,6165239437,3562525118147479,2024-05-24 +Resort Hotel,0,1,2017,July,27,6,1,0,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,C,0,No Deposit,246.0,179.0,0,Transient,5.63,0,0,Check-Out,Jennifer Zhang,jimreynolds@example.com,001-582-975-9736,213115647547016,2025-05-18 +Resort Hotel,0,1,2017,August,32,5,0,3,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,0.78,1,3,Check-Out,Charles Roy,woodsstephen@example.org,939.378.7008,3525266042813748,2024-07-10 +Resort Hotel,1,31,2017,December,49,7,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,99.44,0,1,No-Show,Mark Anderson DVM,samantha11@example.com,424-719-7411,4115662426352443251,2024-08-12 +City Hotel,1,206,2017,October,41,8,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,65.16,0,0,Canceled,Ashley Casey,brucerhonda@example.net,(597)646-9748,180047437766556,2025-08-02 +Resort Hotel,0,22,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,55.26,0,1,Check-Out,Brianna Mullen MD,alexapadilla@example.net,001-349-935-1663,6583446148461087,2025-09-13 +Resort Hotel,1,153,2017,June,24,13,0,1,1,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,14.0,179.0,0,Transient,108.05,0,0,Canceled,Terri Frank,ewalsh@example.com,6783305869,3594599594523349,2024-09-02 +City Hotel,0,86,2017,April,15,8,2,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,226.44,0,0,Check-Out,Tyler Martinez,whitney79@example.net,283-790-9534x1257,503844370174,2025-11-28 +City Hotel,1,91,2017,June,26,26,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Transient,178.82,0,0,Canceled,Dylan Jones,bakervictoria@example.com,454.279.4390x86268,503888487579,2025-05-10 +City Hotel,1,21,2017,September,35,1,2,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,73.76,0,0,Canceled,Sarah Wu,marcusanderson@example.org,770-611-6156x3976,3554944815822245,2025-06-22 +City Hotel,0,0,2017,January,3,17,0,1,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,46.68,0,2,Check-Out,Matthew Foster DDS,patriciahudson@example.net,703.488.5919,6011709639446277,2024-06-23 +Resort Hotel,0,7,2017,February,9,26,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,264.0,179.0,0,Transient,49.49,0,0,Check-Out,Amy Elliott,jennifer35@example.net,2883371353,348872101426479,2025-07-07 +Resort Hotel,1,97,2017,May,22,31,1,7,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,C,0,Refundable,242.0,179.0,0,Transient,124.53,0,0,Canceled,Maria White,nicholsalyssa@example.net,(775)758-1625,6011334031664029,2025-02-14 +Resort Hotel,0,9,2017,March,12,18,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,331.0,0,Transient,50.56,0,1,Check-Out,Kiara Barnes,figueroadavid@example.com,564.887.3769x688,3532243404349927,2025-05-10 +City Hotel,0,147,2017,July,30,22,0,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,89.0,179.0,0,Transient,120.99,0,0,Check-Out,William Lewis,tyler17@example.net,801.678.1980,4334846402518,2024-12-06 +Resort Hotel,0,9,2017,December,49,4,0,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,49.04,0,2,Canceled,Pamela Hawkins,jordan59@example.net,(734)753-1111x20964,3515598071556588,2025-05-30 +City Hotel,1,15,2017,April,14,2,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.34,0,0,Canceled,Tasha Wilson,carterlaura@example.net,430.968.1698,4996902345862,2024-10-05 +Resort Hotel,1,16,2017,July,28,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,11.0,179.0,0,Transient,206.79,0,0,Canceled,Troy Ruiz,xhurley@example.net,797.775.4580x652,372814753613250,2026-02-10 +City Hotel,0,12,2017,March,11,9,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,130.82,0,2,Check-Out,Joseph Beltran,patty52@example.org,3282644662,2236619561191288,2024-04-24 +City Hotel,1,155,2017,December,2,31,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,106.38,0,1,Canceled,Douglas Gonzalez,isaiahgonzales@example.org,001-285-931-3502x15767,3572332370852450,2024-09-16 +City Hotel,0,142,2017,January,2,1,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,90.13,0,1,Check-Out,Manuel Morrison,james24@example.org,2643505632,180014843948442,2025-05-24 +City Hotel,1,88,2017,August,32,8,1,0,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,146.5,0,2,Canceled,Allison Williams,sarahlowery@example.org,001-440-538-4099x63423,4162951617771922907,2025-02-23 +City Hotel,1,107,2017,June,26,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.52,0,0,Canceled,Nancy Myers,ortizbrent@example.net,+1-591-813-1493x908,38563296447256,2025-03-23 +City Hotel,0,93,2017,March,11,13,1,1,1,0.0,0,BB,ITA,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,123.61,0,1,Check-Out,Andrew Smith,ddrake@example.net,993-324-3831,376062777787975,2025-04-16 +City Hotel,0,154,2017,December,52,24,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,65,Transient,84.75,0,1,Check-Out,Matthew Mitchell,bradley90@example.org,324-643-7783x7713,374833545152037,2024-05-03 +City Hotel,0,17,2017,March,13,26,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.57,1,1,Check-Out,Roger Orozco,garciamonica@example.net,(720)715-6389x918,180003329917195,2025-08-10 +City Hotel,0,92,2017,March,13,28,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.89,0,1,Check-Out,Joseph Ferguson,alexanderrhodes@example.com,(442)871-4858x1679,4958875450221469,2026-01-12 +City Hotel,1,158,2017,June,25,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,144.61,0,0,Canceled,Carolyn Hall,nicholsmichael@example.com,+1-690-745-7175x2264,6543544505546075,2024-08-19 +City Hotel,1,213,2017,August,32,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,110.17,0,0,Canceled,Joseph Preston,katherinemartinez@example.net,789-502-1170x55007,3576026024353974,2025-05-04 +City Hotel,0,34,2017,January,3,14,0,3,2,1.0,0,BB,POL,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,130.26,1,2,Check-Out,Brittany Mueller,ntaylor@example.net,8188754726,3504714662064857,2024-08-22 +City Hotel,0,399,2017,May,22,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,30.0,179.0,0,Group,110.64,0,0,Check-Out,Chad Chavez,thomasparks@example.com,(480)261-8340x775,38988472846353,2024-09-04 +City Hotel,0,45,2017,October,41,7,1,3,2,2.0,0,HB,CHE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,131.57,1,3,Check-Out,Tracey Murphy,ralphhudson@example.com,001-895-832-2384x02755,30569963245509,2025-03-31 +Resort Hotel,1,91,2017,December,49,2,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,2,No Deposit,13.0,331.0,0,Transient-Party,78.83,0,0,Canceled,Edward Lambert,hobbskelsey@example.net,(815)230-9496,4540413855686,2024-08-09 +City Hotel,0,1,2017,August,35,27,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,228.19,0,0,Check-Out,Krista Sampson,richardedwards@example.org,+1-910-436-4129,374819766854260,2024-07-01 +City Hotel,0,58,2017,March,11,15,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,141.86,0,1,Check-Out,Katherine Ware,thomasrodriguez@example.com,001-269-376-3858x809,4601535269761680,2025-08-24 +City Hotel,1,94,2017,June,23,6,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,126.99,0,0,Canceled,Martin Wagner,daniel89@example.com,(279)663-1396x0617,6011610254674898,2025-04-05 +City Hotel,1,92,2017,July,27,5,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,140.17,0,1,Canceled,Eric Greene,prichardson@example.org,001-408-808-1498x14155,3525540744905006,2025-08-08 +Resort Hotel,0,13,2017,February,7,12,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,34.35,0,1,Check-Out,Anthony Alvarez,woodjennifer@example.net,870-331-1674x36880,3557247315824928,2025-07-09 +Resort Hotel,0,47,2017,July,30,26,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,166.4,1,2,Check-Out,Sandra Thompson,johnroberts@example.com,489-217-7139,4143459284398,2025-05-24 +Resort Hotel,0,12,2017,April,17,23,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,331.0,0,Transient,43.64,0,0,Check-Out,Dr. Claire Jenkins,zacharyhanson@example.net,848.289.4231,4026780048253263,2024-05-26 +Resort Hotel,0,0,2017,March,14,30,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,I,2,No Deposit,175.0,179.0,0,Transient,3.69,0,1,Check-Out,Kelly Woods,nperez@example.com,327.588.1232,3592564001512964,2024-05-31 +Resort Hotel,0,11,2017,January,5,28,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,39.0,179.0,0,Transient,61.2,0,3,Check-Out,William Banks,mcdowelljoseph@example.org,(259)865-4006x987,2597172148579453,2026-01-30 +City Hotel,0,1,2017,March,13,23,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,114.81,0,1,Check-Out,Diana Hull,bfischer@example.com,+1-865-739-9350x889,213186499710853,2025-05-20 +City Hotel,0,28,2017,January,2,13,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.2,0,1,Check-Out,Kimberly Ward,stacey78@example.com,(300)472-6607,3592881364687880,2024-10-17 +City Hotel,0,244,2017,September,38,19,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.62,0,0,Check-Out,Patrick Adkins,brandon77@example.com,864-322-9239x06214,4370640453918691221,2024-05-14 +City Hotel,0,3,2017,June,23,2,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,125.19,0,0,Check-Out,Lisa Brown,rmarshall@example.com,830.924.1423,2414435186913012,2025-04-20 +City Hotel,1,149,2017,February,7,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,30.0,179.0,42,Transient,95.42,0,0,Canceled,Jeremy Thomas,beckerkevin@example.org,001-389-304-4999x657,3508764284920206,2024-04-25 +Resort Hotel,1,42,2017,March,10,4,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,56.73,0,1,Check-Out,Angela Perez,thomasmartin@example.com,758.920.0308x999,4135697982452,2024-12-23 +Resort Hotel,0,1,2017,January,3,19,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,1,No Deposit,14.0,45.0,0,Transient,42.71,0,1,Check-Out,Kevin Mason,millerangela@example.com,001-678-536-5835x970,4986402588210,2026-03-02 +Resort Hotel,0,12,2017,January,2,2,0,10,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,129.51,1,1,Check-Out,Daniel Rodriguez,lisamcknight@example.net,001-317-990-0624,4481196779285663,2024-05-09 +City Hotel,0,42,2017,February,7,12,2,0,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,84.49,0,0,Check-Out,Megan Carpenter,linjohn@example.com,001-848-682-3011x5892,3596204050509555,2025-12-22 +City Hotel,0,94,2017,December,52,25,1,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,35.0,179.0,0,Transient-Party,128.85,0,0,Check-Out,Brian Miller,robert75@example.com,(310)499-6733,213155553565032,2024-11-09 +City Hotel,0,143,2017,June,25,17,0,3,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,75.0,179.0,0,Transient,113.93,1,1,Check-Out,Brandon Montgomery,cathyleonard@example.net,(574)367-4956,4269444765105143563,2024-10-22 +City Hotel,0,2,2017,January,4,23,0,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,38.49,0,1,Check-Out,Thomas Clark,susan92@example.com,001-728-659-8945x572,6011065262874768,2024-08-27 +City Hotel,0,28,2017,May,22,28,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,105.29,0,0,Check-Out,Samuel Graham,wisematthew@example.com,6895885682,3543017629373582,2025-01-03 +Resort Hotel,0,13,2017,September,37,10,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,289.0,179.0,0,Transient,104.29,0,0,Check-Out,Dr. Janet Parks,griffithkatie@example.org,(960)493-4849x5603,3508076016778905,2024-10-29 +City Hotel,0,2,2017,June,25,20,1,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,147.55,0,0,Check-Out,William Paul,ubrennan@example.org,001-444-493-0082x507,6551339515262865,2024-04-28 +Resort Hotel,0,0,2017,November,47,23,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,82.41,0,0,Check-Out,James Massey,derrickcollins@example.net,333-806-7225x0667,30439185256660,2024-12-14 +City Hotel,0,29,2017,March,12,16,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,117.73,0,0,Check-Out,Bruce Davis,pricebrandon@example.org,935-513-9718x952,3520171643794344,2024-10-31 +City Hotel,0,2,2017,January,2,8,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.71,0,1,Check-Out,Joshua Moore,andersonemily@example.net,(827)235-9430x31945,4717837706835197,2026-02-12 +City Hotel,1,161,2017,March,13,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,75,Transient,129.82,0,0,Canceled,Arthur Miller,mark89@example.com,953.277.4141,3533635026466212,2025-10-27 +Resort Hotel,0,414,2017,October,43,23,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,138.05,0,2,Check-Out,Lance Perkins,pdrake@example.com,739.513.6342x2753,3575971257145368,2025-03-14 +City Hotel,1,305,2017,January,5,27,0,2,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,1,1,1,A,A,0,Non Refund,156.0,179.0,0,Transient,48.69,0,0,Canceled,Thomas Wright,josephkatherine@example.org,001-204-269-9314x200,213127390962862,2024-06-14 +City Hotel,0,101,2017,October,42,18,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,202.34,0,0,Check-Out,Brian Wade,andrea28@example.com,279.512.5138x8051,2267086667180189,2024-10-09 +Resort Hotel,0,0,2017,August,34,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.7,1,1,Check-Out,Alyssa Jones,garysanchez@example.org,+1-828-432-8477,6011892124820857,2025-09-11 +City Hotel,0,19,2017,April,17,24,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,109.92,0,0,Check-Out,Alexandra Skinner,rossshawna@example.net,541-739-3039x9253,4808283562417541,2024-07-20 +Resort Hotel,0,15,2017,January,4,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,1,No Deposit,16.0,179.0,0,Transient-Party,64.93,0,0,Check-Out,Faith Wise,ryan76@example.net,4006644243,4048089214637398,2025-04-25 +Resort Hotel,0,15,2017,March,9,1,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,130.0,179.0,60,Transient-Party,159.67,1,0,Check-Out,Crystal Howard,carolynthomas@example.org,983.796.5687,4658272666455,2025-10-24 +City Hotel,0,18,2017,October,40,5,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,131.2,0,3,Check-Out,Yolanda Diaz,pedwards@example.com,+1-750-908-2081x41660,30312698847996,2026-03-21 +City Hotel,1,17,2017,July,27,6,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.35,0,0,Canceled,John Reynolds,danielhooper@example.org,971.740.4577,2277579396615424,2026-03-15 +City Hotel,1,1,2017,June,23,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.68,0,2,No-Show,Dennis Allen,alishaallen@example.org,(781)232-7635x731,180084085427686,2025-12-16 +City Hotel,1,1,2017,August,34,25,0,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,96.57,0,0,Canceled,Brittany Lopez,gonzalezkimberly@example.net,692-323-4749x457,36706040440463,2024-06-26 +City Hotel,1,96,2017,April,17,22,2,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.36,0,0,Canceled,Kelsey Sherman,josephturner@example.org,+1-259-348-8596x5758,3565148821909593,2025-04-02 +City Hotel,0,10,2017,August,31,2,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,177.03,0,3,Check-Out,Brent Sanders,kyle66@example.org,732-670-5598x4546,4292586292016008728,2025-02-02 +Resort Hotel,1,112,2017,August,31,1,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,G,0,No Deposit,237.0,179.0,0,Transient,123.68,0,0,Canceled,Jay Jackson,nholmes@example.org,+1-441-938-7320x7529,4324834700501391,2025-10-05 +City Hotel,0,5,2017,September,36,5,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,106.85,0,1,Check-Out,Tracy Diaz,yhuber@example.net,410.261.4367x300,503869808124,2025-03-03 +City Hotel,1,108,2017,October,42,20,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,101.37,0,0,Canceled,Jeremy Miller,jessicagreen@example.net,376.448.8511,4573192953772915542,2025-12-16 +City Hotel,1,117,2017,October,42,20,1,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.54,0,2,No-Show,Andrew Ruiz,sellison@example.org,286-659-8830x8519,3524255248559677,2024-07-27 +City Hotel,0,2,2017,July,29,18,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,213.34,1,0,Check-Out,Mr. Carl Crawford DDS,zachary57@example.com,001-374-605-1257x6293,4910981363456031,2025-03-19 +Resort Hotel,0,6,2017,August,33,10,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,242.0,179.0,0,Transient,252.0,1,2,Check-Out,Sarah Snyder,michelle88@example.com,001-855-604-0956x93804,180097478420175,2025-06-04 +Resort Hotel,0,25,2017,November,45,9,2,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,44.03,0,2,Check-Out,Patricia Martin,stacywilson@example.org,(789)588-0096x32525,4911643161261893,2025-07-27 +City Hotel,0,150,2017,May,21,20,2,5,2,0.0,0,BB,BEL,Direct,TA/TO,0,0,0,D,F,0,No Deposit,364.0500000000011,179.0,0,Transient,165.25,0,0,Check-Out,Mrs. Julie Durham,guzmancandice@example.org,(232)620-2236,6577346543007899,2025-03-10 +City Hotel,1,408,2017,October,41,9,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Contract,65.37,0,0,Canceled,Susan Middleton,carol89@example.com,938.895.3230x796,4186688197241953,2025-04-06 +Resort Hotel,1,49,2017,October,41,9,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient-Party,97.23,0,0,Canceled,Michelle Morales,utate@example.net,949-700-2665x3500,3534563673723819,2024-11-18 +City Hotel,1,0,2017,January,2,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,60.71,0,1,Canceled,Shannon Garcia,ericolson@example.org,001-568-886-4080x077,6011833005448061,2024-12-28 +Resort Hotel,1,374,2017,October,43,22,0,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,101.62,0,0,Canceled,Emily Krueger,rodgersterri@example.com,216-897-1460x6216,30242726673140,2025-06-21 +City Hotel,0,35,2017,July,30,24,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,6.0,179.0,0,Transient,174.73,0,2,Check-Out,David Cummings,dsmith@example.com,+1-316-384-7509,4809394176614,2024-06-26 +City Hotel,1,211,2017,June,25,17,0,1,1,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,113.45,0,1,Canceled,Edward Shaffer,sandra75@example.com,554.535.0858x6344,2284822811213602,2025-12-06 +City Hotel,0,189,2017,June,25,23,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,96.58,0,0,Check-Out,Jackson Torres,edoyle@example.net,001-671-249-5861x153,3528870992938574,2024-09-16 +City Hotel,0,11,2017,April,18,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,2,No Deposit,17.0,70.0,0,Transient,53.59,1,0,Check-Out,Daniel Herman,hdelgado@example.org,528.695.4290x195,6519841187995376,2024-11-12 +City Hotel,0,53,2017,September,38,22,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,86.79,0,0,Check-Out,Jill Leblanc,imatthews@example.org,(267)382-7262x87760,4042833040898302,2025-02-23 +City Hotel,1,116,2017,February,5,2,2,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.71,0,0,No-Show,Ryan Klein,anthonycarter@example.net,502-851-3777x97054,6545787928389817,2024-06-05 +City Hotel,0,8,2017,February,7,13,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.61,0,2,Check-Out,Steven Smith,karenwashington@example.net,001-760-635-5124,4651479227685898,2024-05-29 +City Hotel,0,34,2017,March,13,27,1,4,3,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,127.28,0,2,Check-Out,Kyle Collins,julieriddle@example.com,978.627.4714x0913,377298908370401,2025-06-07 +Resort Hotel,0,28,2017,November,46,12,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,92.57,0,2,Check-Out,Mary Daniels,fwelch@example.org,+1-474-572-5092x654,3584824604899113,2024-11-10 +Resort Hotel,0,31,2017,January,5,28,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,99.82,0,3,Check-Out,Robert Lee,srichmond@example.org,+1-861-682-1204x2723,4905442016005458,2025-03-09 +City Hotel,1,22,2017,August,34,21,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,238.19,0,1,Canceled,Bryan Hooper,efry@example.com,+1-451-764-0352x2416,4871780573007148,2024-08-03 +City Hotel,1,225,2017,August,33,13,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,106.79,0,0,Canceled,Johnny Andrade,anthony63@example.net,(852)823-5744x0632,4647608921688590535,2024-10-26 +City Hotel,0,61,2017,August,34,19,0,2,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.82,0,2,Check-Out,Allen Garcia,tammy52@example.com,405-338-7249,346629971404776,2025-12-02 +City Hotel,1,150,2017,August,34,21,2,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.91,0,3,Canceled,Amanda Garcia,michelle41@example.com,+1-385-875-8567,3516699273091942,2026-03-18 +City Hotel,0,24,2017,July,30,23,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,91.03,0,1,Check-Out,Daniel Walker,durandawn@example.org,770-674-8803,4204972119091151,2025-01-30 +Resort Hotel,1,88,2017,July,29,19,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,212.62,0,0,Canceled,Tristan Welch,pkim@example.net,+1-619-607-0612x52155,4280478325969075959,2026-02-21 +Resort Hotel,0,21,2017,August,32,6,2,7,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,163.9,0,1,Check-Out,Jordan Johnson,shannonbrittany@example.net,(413)928-3897x604,180087527521735,2024-09-01 +City Hotel,0,55,2017,September,36,9,2,1,2,0.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,174.75,0,1,Check-Out,Evan Matthews,lisabarnes@example.net,(895)705-6457x825,4295108497374703479,2025-03-11 +City Hotel,0,79,2017,June,23,8,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,94.92,0,2,Check-Out,Ryan Green,patrick20@example.org,+1-544-864-8419x579,6011991100056468,2026-02-20 +City Hotel,0,2,2017,September,37,10,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,134.4,0,2,Check-Out,Kelly Wade,ggarcia@example.com,919.310.2133,4561462340511,2024-04-30 +Resort Hotel,0,48,2017,October,40,4,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,173.0,179.0,0,Transient-Party,76.67,0,0,Check-Out,Tara Bartlett,daryl67@example.org,(580)779-2715x15094,4359748165749,2024-08-08 +Resort Hotel,1,113,2017,June,23,6,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,238.0,179.0,0,Transient,211.74,0,2,Canceled,Carlos Ross,aneal@example.com,838-240-8474x04933,213161086661470,2024-08-07 +City Hotel,0,180,2017,December,49,5,2,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,98.44,0,3,Check-Out,Steven Kim,mrodriguez@example.com,842-950-3959x8715,30442975797133,2026-03-23 +Resort Hotel,0,5,2017,April,15,8,1,2,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,138.27,0,0,Check-Out,Brittany Carter,whitejeffrey@example.org,766.273.4147x12077,344295628344252,2024-04-13 +Resort Hotel,0,108,2017,July,29,13,0,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,145.0,0,1,Check-Out,Sergio Harris,greeneric@example.com,7993738965,4573845864521,2025-10-03 +City Hotel,0,14,2017,March,12,21,2,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,116.18,0,0,Check-Out,Carrie Horne,amanda14@example.net,(934)483-5279,213173085381935,2024-08-04 +Resort Hotel,1,98,2017,November,45,9,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,78.98,0,0,Canceled,Sarah Huff,zjohnson@example.org,821.501.1414x2430,6011738270569774,2025-06-10 +Resort Hotel,1,59,2017,June,23,2,2,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,224.3,0,0,Canceled,Zachary Stewart,johnny85@example.org,001-563-907-2769x440,4450710206491541,2026-02-13 +City Hotel,0,151,2017,September,38,20,2,5,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,294.0,179.0,0,Transient,86.22,0,0,Check-Out,James Kim,mullinselaine@example.net,4257583093,4592380931629630516,2024-04-28 +City Hotel,0,17,2017,May,21,24,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.57,0,1,Check-Out,Paul Thomas,calvin13@example.org,363-912-6531x201,2284326047995917,2025-03-02 +City Hotel,0,2,2017,July,27,2,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,109.49,0,1,Check-Out,Ryan Newman,savannahwalker@example.net,454.742.1984,3559947770840370,2024-07-02 +City Hotel,0,2,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,64.75,0,1,Check-Out,Sonya Martinez,daniel93@example.com,001-355-859-6591x6461,4544320434058867349,2025-10-21 +City Hotel,0,2,2017,January,2,8,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.63,0,1,Canceled,Bobby Knapp,herreralisa@example.net,561-855-4736x957,3512134062356334,2024-10-28 +Resort Hotel,1,93,2017,August,33,16,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.67,0,0,Canceled,Anthony Stone,patriciamartinez@example.net,329.960.2825,3532046456038490,2025-07-16 +City Hotel,1,306,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,86.53,0,0,Canceled,Linda Bailey,robert45@example.org,+1-990-718-0739x1222,3586217244293367,2024-11-19 +City Hotel,0,158,2017,October,43,23,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,A,0,No Deposit,1.0,179.0,65,Contract,65.29,0,0,Check-Out,Gail Hernandez,ernest25@example.com,(403)801-0336x49801,4898329463155663,2026-02-15 +City Hotel,1,49,2017,August,35,27,2,2,3,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,219.57,0,2,Canceled,Michael Myers,paulsamantha@example.net,001-547-668-1829x0868,4462139756279484,2026-03-07 +City Hotel,0,0,2017,September,37,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,45.0,0,Transient,86.48,0,0,Check-Out,Ryan Simpson,sharon28@example.net,5244310253,213180226628611,2024-07-12 +Resort Hotel,1,146,2017,January,4,24,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,244.0,179.0,0,Transient,74.75,0,0,Canceled,Frederick Juarez,peggycarter@example.com,238.832.9179,4076598333941619,2025-10-14 +City Hotel,1,179,2017,August,34,17,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,137.44,0,1,Canceled,Travis Goodwin,charlesmoss@example.org,974.317.8992,3591538306110931,2024-03-30 +City Hotel,0,18,2017,August,32,5,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,136.74,0,2,Check-Out,Ricky Smith,lozanoelizabeth@example.com,703.663.9467x44239,2419728118577623,2025-11-01 +City Hotel,1,0,2017,November,47,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,215.0,0,Transient,82.43,0,0,Canceled,Franklin Underwood,davidboyle@example.org,893.467.0335,4124715743329829,2026-03-03 +City Hotel,0,160,2017,May,19,4,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,230.07,0,2,Check-Out,Michael Lewis,mharrison@example.net,+1-569-786-9897,343997794626153,2025-09-27 +Resort Hotel,0,87,2017,April,17,22,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,147.43,0,2,Check-Out,Dr. Ashley Walker,bridget05@example.org,(763)727-6055x814,4558169163292294044,2025-01-31 +Resort Hotel,1,144,2017,November,48,30,1,3,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,62.9,0,0,Canceled,Margaret Newton,jacob32@example.net,374.572.4594,213191311357966,2025-08-26 +Resort Hotel,1,102,2017,March,10,4,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,61.78,0,0,Canceled,Mackenzie Sherman,bmccormick@example.net,503.763.9651x98149,3525771939280232,2024-07-15 +City Hotel,0,45,2017,August,34,23,0,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Group,155.27,0,0,Check-Out,Jon George,schapman@example.com,610.511.0411x86332,4940812756875996,2024-12-15 +City Hotel,1,113,2017,March,14,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,102.34,0,0,Canceled,Margaret Nichols,ramirezstacey@example.com,941.612.5028x658,4393738978133217381,2025-11-21 +City Hotel,1,135,2017,March,12,16,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,132.61,0,1,Canceled,Melinda Morris,danielsmith@example.org,754-842-8158,4602980577790147,2025-02-25 +Resort Hotel,1,388,2017,January,5,31,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,1,A,A,0,No Deposit,10.0,179.0,0,Transient,89.63,0,1,Canceled,Amy Grant,kaylastout@example.com,+1-514-313-3352x0099,4801829551262525,2025-09-06 +City Hotel,0,5,2017,April,16,16,2,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,127.91,1,1,Check-Out,Crystal Smith,fostermelissa@example.org,540-816-0439,348705202419029,2025-04-13 +City Hotel,0,15,2017,February,6,7,2,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,44.35,0,0,Check-Out,Michael Walters,wrightzachary@example.net,001-827-578-2813,6011098165399559,2025-03-20 +City Hotel,1,158,2017,July,30,25,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,88.68,0,1,No-Show,Margaret Freeman,courtneyhill@example.org,(757)402-5213x41653,4746667058596641,2024-04-01 +City Hotel,0,17,2017,June,27,30,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,120.47,0,0,Check-Out,Cynthia Adams,selena24@example.net,5949574108,376052095971039,2024-10-14 +City Hotel,1,12,2017,December,49,6,1,4,1,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.74,0,0,No-Show,William Gallegos,knightjordan@example.com,001-806-868-6658x9944,2720982331482335,2024-06-20 +City Hotel,0,20,2017,July,31,30,2,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,103.12,0,1,Check-Out,Julie Reynolds,theresareynolds@example.org,001-313-680-1548x81401,213100279091020,2025-06-01 +Resort Hotel,0,5,2017,January,2,2,2,2,2,1.0,0,BB,SWE,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,78.68,0,0,Check-Out,Amanda Ortega,awalsh@example.org,(549)248-9466x53369,3525405911343847,2024-05-05 +Resort Hotel,0,36,2017,April,15,9,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,14.0,222.0,0,Transient,48.49,1,2,Check-Out,Heather Huff,lsantos@example.org,827.818.1740,6011409184589213,2026-02-20 +Resort Hotel,1,16,2017,July,29,16,0,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,236.0,179.0,0,Transient,214.66,0,2,Canceled,David Wade,roberthernandez@example.org,001-429-225-4734x1823,4912838412357933,2024-11-10 +City Hotel,0,93,2017,December,2,31,2,1,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.46,0,2,Check-Out,Karen Huffman,acevedotravis@example.com,430-727-5033,5532509174348074,2024-10-09 +City Hotel,0,283,2017,October,40,7,0,3,2,0.0,0,HB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,63,Transient-Party,83.44,0,0,Check-Out,William Pope,melissa34@example.com,304-609-3485,2720781474801297,2025-05-29 +Resort Hotel,0,28,2017,May,20,17,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,300.0,179.0,0,Transient,48.38,0,0,Check-Out,Albert Barr,jsingh@example.net,(376)679-9589,4847752238381417,2025-01-12 +City Hotel,0,98,2017,March,13,29,2,1,2,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,135.85,0,1,Check-Out,Garrett Sanders,tyu@example.net,001-383-615-6667x64349,580814150810,2025-08-10 +City Hotel,1,139,2017,December,49,5,2,5,2,0.0,0,Undefined,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,112.15,0,2,Canceled,Jo Newman,courtney28@example.com,(732)504-1551,3580312997305934,2024-05-13 +City Hotel,1,49,2017,August,34,23,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,233.21,0,0,Canceled,Heather Cunningham,michelereyes@example.net,(310)626-5265x2835,38387265814860,2025-06-11 +Resort Hotel,1,94,2017,December,52,29,2,5,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,Non Refund,84.0,179.0,75,Transient,82.44,0,0,Canceled,Richard Hurley,ycarpenter@example.net,+1-778-349-2324x203,4217984318491532786,2024-11-06 +City Hotel,0,157,2017,June,26,23,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.8,0,1,Check-Out,Gregory Dorsey,sararojas@example.org,7268889119,3549440735865628,2024-04-10 +City Hotel,0,16,2017,December,50,12,1,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,225.75,0,0,Check-Out,Austin Adams,igraham@example.com,2642910563,30329675178948,2024-09-04 +Resort Hotel,1,235,2017,June,25,19,4,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,261.0,179.0,0,Group,155.25,0,1,Canceled,Jeanette Wagner,edwinsweeney@example.org,881-294-1698x326,3537939547420138,2024-07-17 +Resort Hotel,0,1,2017,December,51,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,241.0,179.0,0,Contract,114.83,0,1,Check-Out,Daniel Koch,jerome23@example.com,8767602321,676189900340,2025-08-18 +City Hotel,1,1,2017,December,52,27,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,42,Transient-Party,96.36,0,0,Canceled,Stephanie Roberts,lynn60@example.net,303.320.7365,4365486291359584704,2025-08-01 +City Hotel,0,302,2017,August,33,17,1,0,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,133.27,0,0,Check-Out,Mark Davis,millercourtney@example.org,769-216-4911x27741,4883291671330701,2024-12-26 +Resort Hotel,1,11,2017,July,30,23,2,5,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,240.0,179.0,0,Transient,251.96,1,0,Canceled,Derrick Burnett,mary02@example.org,225.898.9941,4464962747807674292,2024-04-26 +City Hotel,1,187,2017,August,32,4,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,1,No Deposit,8.0,179.0,0,Contract,108.98,0,3,Canceled,Tammy Fields,michaeltaylor@example.net,574-558-2470x4396,213138656663482,2025-11-21 +City Hotel,0,3,2017,August,34,21,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,150.09,0,1,Check-Out,Jane Singh,monique99@example.net,+1-720-265-3560,180016937159703,2025-10-31 +City Hotel,0,1,2017,December,50,9,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,2.17,0,0,Check-Out,Stephanie Carr,thompsonstephen@example.net,001-311-358-8161,4221347178000625073,2025-03-11 +City Hotel,0,3,2017,August,32,6,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,3.75,0,3,Check-Out,Kim Fitzgerald,elainechavez@example.com,5104138259,374001772809196,2025-01-06 +City Hotel,0,43,2017,August,33,13,2,5,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,C,A,1,No Deposit,15.0,179.0,0,Transient,226.26,0,0,Check-Out,Jennifer Lloyd,blackwelldanielle@example.net,+1-772-448-8050,30516278369938,2025-10-14 +City Hotel,1,13,2017,December,50,16,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,199.87,0,0,No-Show,Bryan Choi,gregory68@example.net,001-236-457-6758x441,4151298989922785,2025-10-30 +Resort Hotel,0,0,2017,April,14,3,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,0,No Deposit,245.0,179.0,0,Transient,238.87,1,1,Check-Out,Julia Aguilar,taylorwilliam@example.net,970-583-3872x396,630402690329,2024-11-05 +City Hotel,0,407,2017,October,43,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,63.77,0,2,Check-Out,Sherry Hernandez,udavis@example.org,417-977-2607,4309616577349544,2024-12-13 +Resort Hotel,0,0,2017,July,28,12,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,247.07,1,1,Check-Out,Caitlin Allen,harrisjessica@example.com,(705)721-4698x189,3548467334318155,2025-08-03 +City Hotel,0,49,2017,October,43,22,2,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.94,0,2,Check-Out,Gary Tucker,melissa93@example.net,001-423-292-1518,4944514656208809,2024-09-28 +Resort Hotel,0,128,2017,July,28,8,2,6,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,252.0,1,0,Check-Out,Aaron Vaughn,tiffanymiller@example.org,+1-475-735-3400x144,582856531758,2025-04-26 +City Hotel,1,273,2017,July,28,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,78.0,179.0,0,Transient,160.05,0,1,Canceled,Kelly Cooper,gutierrezbrittany@example.org,285.874.3681,4774114388160894323,2024-05-16 +City Hotel,1,22,2017,September,37,12,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.95,0,0,Canceled,Jessica Coleman,james08@example.net,001-830-815-4938x13772,4493102642786008,2024-12-03 +City Hotel,1,250,2017,April,15,10,0,1,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,98.95,0,1,Canceled,Melissa Rubio,wendy79@example.com,001-321-342-3118x10473,2289408171433157,2024-10-18 +City Hotel,0,19,2017,September,39,26,0,2,2,1.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.81,0,1,Check-Out,Collin Moody,cbrown@example.org,895.583.6447,4000905417870617,2025-08-30 +City Hotel,0,0,2017,October,40,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,47.33,0,0,Check-Out,Michael Lopez II,aaron68@example.com,001-458-212-5878,345447550540485,2024-05-12 +City Hotel,0,0,2017,October,41,11,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,63.47,0,0,Check-Out,Crystal Henry,shanejimenez@example.net,001-944-378-9731x94027,4192384918240,2025-10-21 +City Hotel,0,0,2017,January,3,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,F,F,0,No Deposit,12.0,179.0,0,Transient,225.9,0,1,Check-Out,Terry Garcia,aaronmclaughlin@example.net,(961)966-4742,3510468937480966,2024-08-26 +Resort Hotel,0,13,2017,August,34,23,2,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,235.0,179.0,0,Transient,252.0,0,0,Check-Out,Miranda Smith,perryjonathan@example.org,813.798.0472x7243,4097528605189782,2024-11-22 +Resort Hotel,1,276,2017,July,27,1,0,3,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,Andrew Wheeler,pburns@example.net,941-510-5331,4143626317385500893,2025-08-18 +City Hotel,1,21,2017,December,51,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,78.41,0,0,Canceled,Debbie Wood,trivera@example.org,+1-311-258-6757x7870,4481404353894151,2026-02-01 +Resort Hotel,0,6,2017,March,13,24,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient,61.9,0,0,Check-Out,Ana Fletcher,james94@example.org,+1-997-539-0934x9654,2401231029990126,2026-01-06 +City Hotel,0,16,2017,March,13,27,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,B,1,No Deposit,11.0,179.0,0,Transient,98.87,0,2,Check-Out,Gordon Madden,rmurray@example.net,275-719-0698x3431,345389898069019,2024-04-18 +Resort Hotel,1,12,2017,August,34,25,0,3,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,212.0,0,1,Canceled,Whitney Taylor,brittany36@example.net,5774463890,3534909835653461,2025-06-27 +City Hotel,1,0,2017,March,10,4,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,18.0,331.0,0,Transient,2.43,0,2,Canceled,Rebecca Perez,juanmay@example.org,803-448-5452x3782,675990054792,2026-03-09 +Resort Hotel,0,2,2017,January,3,18,0,6,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,67.94,0,1,Check-Out,Margaret Meadows,meghan31@example.net,+1-410-367-6256,374891748245735,2024-04-03 +City Hotel,1,147,2017,June,26,26,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,84.78,0,0,Canceled,Laura Howard,thompsonjean@example.net,+1-424-708-0915,4975018690764234909,2025-12-12 +City Hotel,1,111,2017,December,49,6,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,129.4,0,0,Canceled,Melinda Vasquez,andrewhopkins@example.org,001-322-861-0654x9660,3592036022864906,2025-09-21 +City Hotel,0,31,2017,October,40,4,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Group,86.29,0,0,Check-Out,Tracy Lawson,ryan63@example.org,(901)487-9631,4365073916606,2024-07-24 +City Hotel,0,102,2017,April,17,25,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.74,0,1,Check-Out,Michael White,zpowers@example.com,7325757953,676220819772,2024-05-06 +City Hotel,1,49,2017,February,6,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient,61.02,0,0,Canceled,Kevin Chavez,john60@example.com,775.860.3238x36979,30394265397639,2024-10-03 +City Hotel,0,6,2017,October,40,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.29,0,0,Check-Out,Nathan Garcia,bobbywilson@example.com,922-261-3060,4879378553993080,2025-12-23 +Resort Hotel,0,20,2017,July,30,25,0,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,227.49,1,1,Check-Out,Rachel Jones,patriciamiranda@example.net,001-378-509-0247,4377356130792529,2024-11-07 +City Hotel,0,12,2017,August,34,21,2,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,239.65,0,2,Check-Out,Angela Flores,rodriguezwarren@example.net,753-604-0276,4683307626816388,2024-07-02 +Resort Hotel,0,3,2017,August,31,2,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,2,No Deposit,241.0,179.0,0,Transient,157.71,1,1,Check-Out,Stephen Jones,tmiller@example.net,(451)742-3815,180050383367080,2025-04-14 +City Hotel,1,9,2017,October,43,26,1,2,1,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.66,0,0,Canceled,Amber Johnson,jasonjimenez@example.org,451.671.4554,4563159981979,2026-03-27 +Resort Hotel,0,38,2017,January,2,7,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,306.0,179.0,0,Transient-Party,54.78,0,1,Check-Out,Jake Hubbard,vasquezjames@example.org,+1-692-298-6516x87501,676110144331,2025-12-16 +Resort Hotel,1,8,2017,June,24,11,0,3,2,2.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,Sean Sullivan,ymorales@example.org,5836268045,38818714228666,2024-10-23 +City Hotel,0,134,2017,March,12,19,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,115.03,0,1,Check-Out,Tina Collier,michealbates@example.org,7773600832,30575972535962,2025-07-22 +Resort Hotel,0,46,2017,September,36,2,2,2,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,241.0,179.0,0,Transient,226.37,0,2,Check-Out,Michelle Mcdowell,kellyduarte@example.org,4689755974,3592213104426447,2024-11-24 +City Hotel,0,11,2017,January,4,23,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,102.74,0,1,Check-Out,Charles Daniel,stephaniebrown@example.net,672-570-9507,4931985794544831,2025-07-16 +City Hotel,0,2,2017,March,9,1,2,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,218.44,0,0,Check-Out,Scott Escobar,martinezjulie@example.com,(290)536-9713x84924,3516774083825480,2024-11-12 +Resort Hotel,1,258,2017,October,40,3,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,242.0,179.0,0,Transient,126.8,0,0,Canceled,Rachel Mills,williamsonnicole@example.com,(364)646-7611,585937415461,2025-08-30 +Resort Hotel,0,115,2017,May,21,25,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient-Party,119.48,0,1,Check-Out,Michael Trujillo,alexanderharvey@example.com,(358)398-8748x00620,6011133482297036,2025-01-18 +City Hotel,0,54,2017,June,23,8,1,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,94.56,0,1,Check-Out,Randy Duran,joseph17@example.com,525.449.6231x91398,2223922287559506,2025-08-20 +Resort Hotel,0,44,2017,September,37,12,2,5,3,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,240.0,179.0,0,Transient,156.55,0,0,Check-Out,Christine Guerra,jacquelinewilliams@example.net,+1-607-827-8599x785,4635080250416853,2025-04-16 +City Hotel,0,0,2017,May,21,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,2,No Deposit,13.0,179.0,0,Transient,1.74,1,0,Check-Out,John Riggs,msnyder@example.net,001-703-998-1563,3514044434825114,2024-09-30 +City Hotel,0,10,2017,August,34,17,0,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,234.19,0,0,Check-Out,Kristina Gonzales,sharon00@example.net,+1-394-305-1285,180038957691381,2025-02-23 +City Hotel,0,3,2017,July,28,10,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.44,0,2,Check-Out,Karen Jackson,murraymichael@example.net,6532743017,377741619335726,2025-04-12 +Resort Hotel,0,0,2017,February,6,4,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,38.82,1,2,Check-Out,William Coleman,johnsonkevin@example.org,001-984-878-4184x682,180053171774004,2025-10-17 +City Hotel,0,1,2017,December,50,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,211.0,0,Transient,45.48,0,1,Check-Out,Kristen Taylor,jeremyreyes@example.com,401-880-7396,4593554529636,2025-04-03 +City Hotel,0,3,2017,June,26,27,1,0,2,2.0,0,BB,USA,Direct,Direct,0,0,0,B,B,2,No Deposit,14.0,179.0,0,Transient,132.03,0,1,Check-Out,Kelli Williamson,melissa92@example.com,+1-654-394-8971x7898,2235750270476065,2024-06-19 +City Hotel,0,4,2017,March,10,7,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,95.17,0,1,Check-Out,Christine Jones,madison82@example.org,416.487.6875x56367,4084958244278743,2024-05-24 +City Hotel,0,37,2017,November,45,8,2,5,2,0.0,0,HB,FRA,Corporate,Corporate,0,0,0,D,D,1,No Deposit,364.0500000000011,251.0,0,Transient,52.94,0,2,Check-Out,David Schaefer,yholden@example.com,001-864-799-3994,4345658315184,2025-12-16 +Resort Hotel,0,118,2017,March,11,14,1,2,2,0.0,0,HB,PRT,Direct,Corporate,1,0,1,E,I,1,No Deposit,12.0,224.0,75,Transient-Party,95.66,1,1,Check-Out,Elizabeth Klein,churchcharles@example.com,(632)303-4738,3516494357797212,2024-11-26 +City Hotel,1,0,2017,December,49,2,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,1,No Deposit,18.0,331.0,0,Transient,5.19,0,0,Canceled,Rachel Brock,patrick29@example.net,001-247-669-6609x56460,3562417473867141,2024-05-05 +City Hotel,0,2,2017,December,48,1,1,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,196.54,0,0,Check-Out,Christina Little,phillipslatoya@example.org,709.252.1345x01805,4153799799190651,2026-02-20 +Resort Hotel,0,2,2017,May,20,18,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient-Party,2.82,0,0,Check-Out,Mrs. Natalie Hall,cmckinney@example.net,530-756-6135,342359887180724,2025-08-07 +City Hotel,1,154,2017,June,25,20,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,125.51,0,0,Canceled,Daniel Clark,brianmiller@example.com,629-558-8414x764,6011303387564240,2026-02-28 +Resort Hotel,1,31,2017,August,33,11,1,6,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,242.0,179.0,0,Transient,110.65,0,1,Canceled,David Adams,hholland@example.com,+1-253-555-3690,587020096166,2025-10-21 +City Hotel,1,58,2017,November,45,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,91.45,0,0,Canceled,Ryan Edwards,uboyer@example.org,001-500-408-9872x615,349460804166532,2024-10-26 +Resort Hotel,0,248,2017,April,15,12,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,127.26,0,3,Check-Out,Scott Khan,cgonzales@example.com,941.265.9135,3565821750149445,2025-10-01 +City Hotel,1,162,2017,August,35,30,0,4,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,0,Canceled,Frank Hall,lancelopez@example.org,+1-333-743-2099x016,4665862238100730,2025-09-01 +Resort Hotel,0,235,2017,January,4,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,198.0,64.0,0,Transient,51.72,0,0,Canceled,Matthew Romero,elaine53@example.com,(249)626-9781x1006,4109131996341215,2025-07-22 +City Hotel,0,1,2017,February,8,21,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.84,0,1,Check-Out,Dan Baker,ebrown@example.com,590-680-9147x65718,374349609870414,2024-12-08 +City Hotel,1,142,2017,November,47,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,62,Transient,99.58,0,0,Canceled,Mary Maxwell,kristina22@example.net,001-328-224-7561,4609097331536,2025-05-19 +Resort Hotel,0,17,2017,February,6,10,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,55.0,0,0,Check-Out,Justin White,jasonrichardson@example.net,001-417-879-7217x428,346147764200509,2026-02-23 +Resort Hotel,0,96,2017,February,6,5,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,311.0,179.0,0,Transient,46.25,0,0,Check-Out,Crystal Riddle,sierrarichmond@example.net,001-674-640-2102x5606,4686670054115319,2024-12-08 +City Hotel,0,1,2017,March,12,16,0,2,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,80.28,0,1,Check-Out,Timothy Daniel,ymalone@example.com,001-225-272-6582x469,372116874687605,2026-02-14 +City Hotel,1,206,2017,September,38,14,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,176.5,0,0,Canceled,Katherine Vargas,ssmith@example.com,360-791-0164,4798927386343637128,2025-11-24 +City Hotel,1,284,2017,October,42,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,1,1,D,A,0,No Deposit,9.0,179.0,0,Contract,62.62,0,1,Canceled,Carol Peterson,manningjesse@example.org,001-676-809-1497x60620,4768379428684593,2024-12-31 +City Hotel,1,205,2017,June,24,12,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,121.01,0,0,Canceled,Mr. John Gay,jessicaburns@example.net,917-972-3270x43576,4017305506417995261,2024-08-19 +City Hotel,0,39,2017,June,23,5,0,4,2,2.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,128.29,0,1,Check-Out,Edward Morris,danielle87@example.com,4816456297,3533964620635174,2024-11-21 +Resort Hotel,0,2,2017,March,10,6,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,257.0,331.0,0,Transient,48.12,0,0,Check-Out,Theresa Robinson,hhughes@example.com,795-612-1817x9286,4569689331437,2025-11-01 +Resort Hotel,1,41,2017,August,32,7,1,4,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Raymond James,courtneyswanson@example.net,893.272.9075x4298,568808356758,2024-12-14 +Resort Hotel,1,240,2017,June,26,23,2,5,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,196.0,179.0,0,Transient,89.88,0,0,Canceled,Steven Brown,charlesmason@example.net,(583)954-8490x02019,4863145610050263,2024-08-14 +City Hotel,0,176,2017,August,33,16,0,2,1,1.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,209.45,1,3,Check-Out,Melissa Lewis,fgibbs@example.com,763.475.3381x12061,3541213790173073,2024-04-25 +Resort Hotel,1,15,2017,June,25,21,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,233.91,0,1,Canceled,Ann Berry,paula76@example.net,(296)546-6032x107,2720880000140590,2024-06-27 +Resort Hotel,0,50,2017,October,42,20,2,5,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,82.31,0,3,Check-Out,Dr. Melissa Duarte,erinlang@example.com,7125182224,213119046797487,2026-01-20 +Resort Hotel,0,11,2017,May,19,5,2,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,37.34,0,1,Check-Out,Leslie Rogers MD,seth61@example.org,926-563-4084,4907048251644568,2025-06-14 +Resort Hotel,0,42,2017,May,21,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,137.98,1,1,Check-Out,Katherine Barber,courtneygregory@example.org,001-876-738-8385x298,675926406645,2024-10-14 +City Hotel,1,322,2017,August,32,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,103.1,0,0,Canceled,Dawn Brown,christina78@example.org,001-535-739-7766,2221920360803454,2024-05-07 +City Hotel,0,91,2017,March,12,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,38.4,0,1,Check-Out,Marcus Kaufman Jr.,lynn38@example.net,+1-209-952-2126x761,4639791357899771743,2025-05-01 +City Hotel,0,15,2017,September,36,9,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,68.0,0,Transient,104.32,0,1,Check-Out,Karla Welch,nathanbonilla@example.com,(352)471-8755x5637,3573975024248621,2025-08-16 +City Hotel,0,3,2017,April,15,9,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,128.74,0,1,Check-Out,Jason Cochran,suzanneschroeder@example.org,(277)712-1417x812,4395647955459,2024-11-04 +Resort Hotel,0,54,2017,March,13,25,2,5,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,110.58,0,1,Check-Out,Sherry Kemp,cgarza@example.org,822.861.7246x8151,5445424433249970,2025-07-11 +Resort Hotel,1,44,2017,October,43,21,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,239.63,0,1,Canceled,Thomas Holmes,john02@example.com,896-761-4001,4130569766638,2025-11-20 +City Hotel,1,7,2017,September,36,4,0,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,103.64,0,0,Canceled,Charles Davis,pamelamercer@example.com,+1-848-495-4384x59583,379603448442339,2026-02-23 +City Hotel,0,157,2017,August,34,20,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,140.49,0,1,Check-Out,Devin Beltran,dcarpenter@example.net,2692144934,4937279321244303,2026-03-15 +Resort Hotel,0,215,2017,October,42,15,1,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,1.0,179.0,0,Contract,62.45,0,1,Check-Out,Edwin Hansen,cynthia16@example.org,844-397-0469,4793761040907503,2025-12-06 +City Hotel,1,93,2017,May,18,1,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,130.85,0,1,Canceled,Dana Ward,jdavis@example.net,689.289.6660x273,374749774118822,2025-06-11 +Resort Hotel,0,13,2017,October,41,12,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,81.0,179.0,0,Contract,48.26,0,0,Check-Out,Erica Saunders,elarsen@example.com,900-206-4442x3888,180010991844847,2024-09-08 +City Hotel,1,100,2017,January,2,4,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,124.78,0,1,Canceled,Sandra Johnston,michael49@example.org,+1-952-250-7536x230,3529147169395162,2026-03-05 +Resort Hotel,0,11,2017,August,34,23,1,6,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,113.8,0,1,Check-Out,Gabriela Vance,justin77@example.org,821-803-4142,213147582986792,2025-06-11 +City Hotel,0,241,2017,August,33,14,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,103.76,0,0,Check-Out,Thomas Alexander,john54@example.com,595.628.9640x55280,30096277379014,2024-07-03 +City Hotel,0,0,2017,January,4,23,0,2,1,0.0,0,BB,BRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,135.66,0,0,Check-Out,Beverly Olsen,susan23@example.net,+1-423-424-5291x7619,3552050618984869,2025-02-27 +City Hotel,0,251,2017,June,22,2,2,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,22.0,179.0,0,Transient,110.95,0,0,Check-Out,Dr. Nicole Johnson,mathisdean@example.net,564.324.3909x36204,3533511178199374,2025-08-17 +City Hotel,1,154,2017,August,33,13,2,5,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,D,2,No Deposit,12.0,180.0,0,Transient,112.74,0,0,Canceled,Joshua Stanley,wknight@example.org,3659568098,4966179960966,2026-03-12 +Resort Hotel,0,159,2017,January,2,4,3,5,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,83.84,1,0,Check-Out,Sarah Edwards,pcaldwell@example.com,+1-851-340-3334x19295,3525242632169171,2024-09-14 +City Hotel,0,96,2017,December,52,23,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.82,0,1,Check-Out,Erica Knapp,chelseyanderson@example.net,001-474-224-5901x88516,3584801141514215,2024-10-26 +Resort Hotel,1,369,2017,February,9,26,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,49.51,0,0,Canceled,Laura Molina,sjones@example.org,898-865-6901x998,6515616016376756,2025-04-22 +Resort Hotel,0,14,2017,August,32,9,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,E,1,No Deposit,17.0,223.0,0,Transient,47.49,0,3,Check-Out,Sarah Ryan,rebeccatrujillo@example.org,+1-372-736-6183x1601,4493326356615539,2024-08-13 +City Hotel,1,19,2017,October,41,11,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.29,0,1,Canceled,Taylor Baker,cheryl82@example.net,(386)360-7940x88366,4219561817448,2026-03-06 +Resort Hotel,0,236,2017,March,13,27,3,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,124.13,0,3,Check-Out,Gabriel Padilla,howard55@example.com,001-231-315-3535x064,180034571309039,2025-07-30 +City Hotel,0,154,2017,May,21,23,1,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,151.14,0,1,Check-Out,Dr. Michelle Chan DVM,robertsonlori@example.com,7143954609,501842492560,2025-04-25 +Resort Hotel,1,414,2017,January,2,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,171.0,222.0,0,Transient-Party,38.27,0,0,Canceled,Edward Lopez,benjaminmoore@example.net,001-269-970-5580x0707,4186560644310493,2025-10-19 +City Hotel,0,45,2017,October,41,13,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.53,0,1,Check-Out,Debbie House,martinstephens@example.com,479-822-5957x96035,4731106231352868,2024-11-29 +Resort Hotel,0,17,2017,March,11,17,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,60.27,1,1,Check-Out,Sue Beltran,lsingleton@example.com,+1-393-381-6040x9341,569069681702,2025-03-16 +Resort Hotel,1,313,2017,September,36,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,C,G,0,No Deposit,244.0,179.0,0,Transient,61.1,0,0,Canceled,Tammy Wade,ann85@example.org,(991)635-8423,4285493204704899,2025-03-21 +Resort Hotel,0,29,2017,August,34,22,2,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,159.02,0,0,Check-Out,Robert Ramirez,annewilliams@example.net,(736)374-0614x671,30079049101411,2024-10-03 +Resort Hotel,0,148,2017,March,11,17,0,1,1,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,222.0,0,Transient-Party,62.08,0,0,Check-Out,Carrie Wilson,steventhompson@example.com,619-700-3306,4665325060362,2024-05-24 +Resort Hotel,0,66,2017,December,49,9,1,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,241.0,179.0,0,Transient,116.08,0,1,Check-Out,Jonathan Stewart,taylormichele@example.com,001-292-531-7606x742,5579556497579970,2025-12-04 +City Hotel,1,53,2017,August,34,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,231.8,0,1,Canceled,Meghan Johnson,brandonevans@example.net,293.559.9778x6319,4237003905489784547,2025-08-12 +City Hotel,0,8,2017,March,13,26,1,3,1,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,54.09,0,0,Check-Out,Mrs. Stacey Shields,caroljacobs@example.net,407.367.3073x9474,4805472788330108389,2025-01-10 +City Hotel,1,0,2017,December,49,4,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,48.8,0,1,No-Show,Shane Bailey,hendersonbrittany@example.net,5854371098,501895932017,2024-06-16 +City Hotel,0,0,2017,February,9,28,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,74.0,0,2,Check-Out,Amy Mccoy,kellydavid@example.org,738.237.7498x78126,4603109195914,2025-11-22 +Resort Hotel,1,247,2017,June,26,24,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,158.02,0,0,Canceled,Benjamin Scott,toddbowen@example.com,495-492-0292,3528079900136053,2025-07-10 +City Hotel,1,40,2017,June,23,2,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.11,0,0,Canceled,Tiffany Howard,jeremy10@example.com,(833)870-3083,4728966086136,2025-12-08 +Resort Hotel,0,15,2017,November,44,1,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,85.93,1,3,Check-Out,Abigail Williams,daleneal@example.net,(577)990-4147x4177,3551502443521416,2025-03-19 +City Hotel,1,355,2017,October,43,26,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Contract,87.68,0,0,Canceled,Edward Johnson,thomasbrian@example.org,699-891-1824x60355,5492142461511614,2025-08-07 +City Hotel,0,4,2017,March,12,22,2,0,3,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,22.0,179.0,0,Group,98.86,0,0,Check-Out,Dawn Howard,fitzgeraldamanda@example.net,464.805.5772x69707,4507489488502,2025-02-26 +City Hotel,1,414,2017,October,40,1,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.68,0,0,Canceled,Janice Conner,thomasreed@example.net,+1-604-685-5907x4583,342780399953573,2024-04-23 +City Hotel,0,289,2017,March,12,19,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,111.93,0,1,Check-Out,Walter Pacheco,ujohnson@example.com,715-738-7376,2539168790282777,2026-03-10 +City Hotel,0,152,2017,September,40,30,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.88,0,1,Check-Out,Isaiah Smith,michaellewis@example.com,475-379-0615x29017,3595609018490568,2025-01-02 +Resort Hotel,0,0,2017,March,13,26,1,2,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,1,0,0,C,I,0,No Deposit,35.0,179.0,0,Transient,0.5099000000000001,1,0,Check-Out,Kristen Jacobs DVM,stevenslawrence@example.org,8349378962,4481793156865750,2024-05-06 +City Hotel,1,382,2017,October,43,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,100.42,0,0,Canceled,Chad Ramos,rachelcoleman@example.net,+1-605-829-6473x2654,4979121775364774,2024-05-20 +City Hotel,0,195,2017,June,26,25,2,3,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,17,Transient-Party,128.17,0,0,Check-Out,Vincent Moreno,epollard@example.org,+1-354-886-5086x604,501891689876,2026-01-29 +City Hotel,1,39,2017,October,42,19,1,2,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,109.01,0,0,Canceled,Lindsey Rodgers,amy65@example.org,+1-316-762-5627x19548,3507732061780813,2024-12-23 +Resort Hotel,1,200,2017,May,20,17,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,100.07,0,0,Canceled,Jonathon Jackson,nwalker@example.com,+1-704-619-8630x77840,4743314895799012609,2025-06-17 +Resort Hotel,0,12,2017,April,17,23,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,11.0,179.0,0,Transient-Party,128.98,1,1,Check-Out,Rebecca Cruz,schultzjonathan@example.com,997-351-7851,676337970427,2024-05-13 +Resort Hotel,0,44,2017,January,2,8,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,1,No Deposit,325.0,179.0,0,Transient-Party,62.93,1,0,Check-Out,Matthew Brown,manuelgalvan@example.com,442.880.4898x71313,060461178414,2025-01-27 +City Hotel,0,104,2017,July,30,20,1,0,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,224.35,0,1,Check-Out,Isabel Rivera,burtonlisa@example.com,+1-305-664-0563x30814,213123763853226,2025-08-17 +Resort Hotel,0,1,2017,August,35,29,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient,252.0,0,0,Check-Out,David Morgan,jenkinscarol@example.org,+1-558-226-0519x27218,3582883516087136,2024-11-03 +City Hotel,1,265,2017,June,23,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,105.36,0,0,Canceled,Sean Spears,jerry33@example.net,226-201-0127,38463684349653,2024-04-25 +City Hotel,1,1,2017,March,13,23,0,2,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,1,Canceled,Jonathan Jones,sarah47@example.com,810-609-7006,3549522871424482,2025-03-04 +City Hotel,1,2,2017,March,10,5,0,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.38,0,1,Canceled,Donald Avery,sanchezjennifer@example.net,(732)685-5014x4111,563457929575,2024-09-09 +City Hotel,1,160,2017,August,34,20,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,9.0,179.0,0,Transient,126.59,0,0,Canceled,Dr. Nathan Hughes,christopher74@example.org,001-537-271-2537x9041,6011595735190608,2025-09-27 +City Hotel,1,16,2017,March,12,23,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,21,Transient,45.18,0,1,No-Show,Randy Briggs,mosleypatricia@example.org,+1-411-375-2092x510,2510953666694541,2025-10-15 +Resort Hotel,1,100,2017,November,45,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,50.82,0,2,Check-Out,Melissa Orozco,eunderwood@example.org,6237276332,6582320201897225,2025-12-12 +City Hotel,0,106,2017,September,38,20,2,2,2,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,79.54,0,0,Check-Out,Brooke Wright,justinwallace@example.com,001-817-631-5846x663,30347591248132,2025-02-19 +City Hotel,1,107,2017,September,37,13,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,91.0,179.0,0,Transient,110.39,0,0,Canceled,Jennifer Brown,sherijohnson@example.org,+1-414-697-3396x00329,4841582919796166742,2025-04-13 +Resort Hotel,1,2,2017,December,52,29,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,35.0,179.0,0,Transient-Party,39.56,0,0,No-Show,Victor Garcia,ramoscheyenne@example.net,8345152687,4551389036624437,2024-07-14 +City Hotel,0,1,2017,October,42,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,64,Transient-Party,61.26,0,0,Check-Out,Tammie Ramirez,levinekenneth@example.org,001-326-763-9246x67918,4771546880607065,2025-04-22 +City Hotel,1,286,2017,October,40,5,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,102.5,0,0,Canceled,Diane Juarez,samantha77@example.org,542-753-8066x31858,564356651518,2025-04-26 +City Hotel,0,54,2017,October,41,9,0,1,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,20.0,179.0,0,Contract,159.16,0,1,Check-Out,Lisa Malone,brittney25@example.org,271.826.4220x71425,676151395248,2025-12-17 +City Hotel,0,15,2017,April,18,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,143.5,0,2,Check-Out,Eric David,vmoore@example.net,+1-470-425-0236x678,180089573356792,2025-07-08 +City Hotel,1,147,2017,August,34,22,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,166.03,0,0,Canceled,Cathy Kline,stevencruz@example.com,(880)333-0931,4769022887048804330,2026-01-09 +Resort Hotel,1,39,2017,December,48,2,0,5,2,0.0,0,BB,POL,Online TA,TA/TO,0,1,0,E,A,0,No Deposit,240.0,179.0,0,Contract,57.83,0,2,Canceled,Brandon Lloyd,andrew44@example.net,001-409-296-0615x1373,213185679626673,2024-07-30 +City Hotel,1,43,2017,March,13,26,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,88.09,0,1,Canceled,Jeremy Martinez,michael37@example.org,912-561-0012x0681,4882905666870337,2025-06-21 +Resort Hotel,0,1,2017,February,9,25,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,2,No Deposit,13.0,222.0,0,Transient-Party,49.47,1,0,Check-Out,Melanie Ramirez,clarkcrystal@example.org,701-882-0505,2355343088042677,2025-01-13 +City Hotel,1,47,2017,June,24,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.97,0,1,Canceled,Michael Montoya Jr.,christopher29@example.net,001-387-996-7482x236,4738570831900162362,2025-03-05 +City Hotel,1,94,2017,March,11,15,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,98.08,0,0,Canceled,Nicole Nguyen,xcurry@example.net,(292)995-3613,4595797143965595689,2025-10-24 +City Hotel,0,316,2017,October,42,19,2,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,0,No Deposit,32.0,179.0,0,Transient-Party,61.62,0,0,Check-Out,Michelle Adams,markporter@example.net,001-296-871-8095x6645,180050311814609,2024-11-17 +Resort Hotel,0,158,2017,March,10,8,0,3,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,C,1,Refundable,17.0,221.0,0,Transient-Party,42.06,0,0,Check-Out,Valerie Blankenship,jacqueline08@example.org,001-810-624-4578x085,374964488008462,2024-05-04 +City Hotel,1,390,2017,April,15,8,0,2,1,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,76.93,0,0,Canceled,Elizabeth Small,mcdanieltracy@example.com,001-352-401-9615x6585,346660491575514,2025-07-07 +City Hotel,0,60,2017,March,10,4,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.15,0,1,Check-Out,Emily Morgan,jenniferbarajas@example.com,(446)813-2321x91387,213180517424738,2024-06-05 +Resort Hotel,0,0,2017,October,41,10,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient,48.17,0,0,Check-Out,Kimberly Prince,wardcasey@example.org,319.965.9871,676277616162,2025-08-01 +Resort Hotel,0,37,2017,December,52,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,54.0,0,2,Check-Out,Wesley Carpenter,novakjacob@example.com,001-960-928-6055,180072078033603,2025-08-06 +City Hotel,1,389,2017,August,32,9,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,124.02,0,0,Canceled,Donna Figueroa,ebrown@example.org,001-361-705-1231x509,342642149469906,2024-10-10 +City Hotel,0,153,2017,August,32,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,12.0,179.0,0,Transient-Party,195.15,0,1,Check-Out,Kathleen Smith,shawn14@example.com,001-240-349-4273x8283,30286697461043,2024-06-27 +Resort Hotel,0,18,2017,March,11,9,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,103.13,1,0,Check-Out,Nicole Mendoza,kristyrodriguez@example.net,001-776-939-2223x17436,213145138394743,2024-04-21 +City Hotel,1,285,2017,July,27,5,2,4,2,2.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,165.71,0,0,Canceled,Megan Woods,hobbslauren@example.net,(615)351-8248,4629897556221200,2024-11-09 +City Hotel,1,204,2017,August,32,9,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.32,0,2,Canceled,Sarah Harrison,kbyrd@example.com,895.694.3142,4717336068251838,2025-09-21 +City Hotel,0,54,2017,March,12,22,1,2,2,1.0,0,SC,CHN,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,90.47,0,3,Check-Out,Joseph Morris,olivertraci@example.org,(378)695-4742x65492,4272550745426430687,2024-12-25 +Resort Hotel,1,51,2017,August,32,9,4,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,E,0,No Deposit,14.0,179.0,0,Transient,220.9,0,0,Canceled,Charles Rodriguez,andrew02@example.net,921-636-1985,30383180931168,2025-08-17 +City Hotel,0,298,2017,October,41,13,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,116.31,0,1,Check-Out,Joshua Martinez,wleonard@example.org,638-757-8400,502079843616,2025-06-03 +City Hotel,1,16,2017,February,8,20,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,19.0,179.0,0,Transient-Party,129.34,0,0,Check-Out,Joshua Griffin,cooknicole@example.net,(972)864-8080,4863922733087954,2024-09-21 +Resort Hotel,0,15,2017,May,20,12,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,309.0,179.0,0,Transient-Party,48.45,0,1,Check-Out,Robert Reynolds,kimberly87@example.net,001-939-299-1624x09274,4657779044596,2024-07-05 +City Hotel,1,40,2017,April,14,3,1,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.82,0,0,Canceled,Jennifer Brown,gibsonjessica@example.com,813-412-5209,30526845011459,2024-06-05 +Resort Hotel,0,1,2017,October,41,10,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,54.39,0,0,Check-Out,Leah Guzman,elizabeth54@example.com,(873)526-0661,6011319564953824,2025-02-23 +Resort Hotel,0,50,2017,May,21,23,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,89.24,0,3,Check-Out,Carla Roberson,arroyomichelle@example.com,(479)208-5211x8194,4436547464422522,2024-04-06 +City Hotel,1,166,2017,August,33,16,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,160.83,0,0,Canceled,Kenneth Wong,mirandascott@example.net,+1-300-264-0520x846,377665145975962,2024-05-04 +City Hotel,1,343,2017,October,42,19,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,106.26,0,0,Canceled,Jerome Hancock,rebecca34@example.net,(858)785-9725,36506431611320,2024-12-03 +City Hotel,1,156,2017,April,16,16,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,115.07,0,0,Canceled,Timothy Smith DDS,michelle68@example.org,661-556-2288x625,3546692153058788,2024-08-16 +City Hotel,0,13,2017,November,48,27,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.91,0,0,Check-Out,Scott Flores,zwallace@example.com,859-560-8527x867,3574339979909597,2024-03-31 +Resort Hotel,0,12,2017,August,33,12,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,252.0,0,3,Check-Out,Mark Singleton,michael18@example.org,943.615.0375x972,3586693643785312,2024-03-28 +City Hotel,1,414,2017,November,45,10,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,75,Transient-Party,77.79,0,0,Canceled,Richard Hogan,santanastacey@example.org,677.799.9041x643,30209773556932,2025-08-23 +Resort Hotel,1,266,2017,July,30,25,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,82.47,0,1,Canceled,Marissa Holloway,lbailey@example.net,207.273.2996,375783501453623,2024-07-17 +Resort Hotel,0,43,2017,March,11,9,0,3,1,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,240.0,179.0,0,Transient,129.58,0,1,Check-Out,Anthony Turner,vfrazier@example.net,308.287.6741,4366425740549109,2024-12-01 +Resort Hotel,0,314,2017,October,41,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,315.0,179.0,0,Contract,133.75,0,2,Check-Out,Jeremy Church,april54@example.com,905-503-3630x325,347633438550063,2025-02-06 +City Hotel,0,2,2017,March,9,1,1,1,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,105.14,1,0,Check-Out,Wendy Nelson,jbrandt@example.net,+1-790-201-0262x853,4168905630109791,2024-11-02 +City Hotel,1,0,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,K,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Jerry Abbott,michael35@example.com,228.568.1773x4159,6563213911839061,2025-08-24 +City Hotel,1,42,2017,October,43,27,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,94.95,0,0,Canceled,Amy Costa,michael24@example.org,+1-996-884-8598x5414,4388310374210502638,2024-07-23 +City Hotel,0,0,2017,October,41,14,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,240.0,179.0,0,Transient,0.5099000000000001,0,2,Check-Out,Nicole Terry MD,wardgreg@example.org,244-336-8480x800,4681393653988169,2024-09-12 +City Hotel,0,46,2017,April,16,14,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,136.68,0,1,Check-Out,Dawn Campbell,pmay@example.org,432-348-0725x98265,4199181383342426,2025-05-26 +City Hotel,0,156,2017,September,39,27,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient-Party,153.89,0,1,Check-Out,Rachel Holt,mbrock@example.net,734-947-0844x697,180085354866819,2025-05-18 +Resort Hotel,0,12,2017,January,5,27,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,16.0,179.0,0,Transient,60.62,0,1,Check-Out,Erica Burnett,ffrench@example.org,(282)844-5597x61969,4968775290392513077,2024-10-02 +Resort Hotel,0,17,2017,October,40,3,0,2,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,67.0,0,Transient,86.04,0,0,Check-Out,James Soto,morganrobert@example.net,+1-993-242-1801,4991612782946896,2025-07-21 +City Hotel,0,16,2017,March,11,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,K,1,No Deposit,11.0,179.0,0,Transient,132.09,0,1,Check-Out,Travis Adams DDS,langjames@example.com,(628)254-4765x4857,180028315111008,2025-01-31 +City Hotel,0,14,2017,December,49,8,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Group,65.14,0,2,Check-Out,George Rogers,kellie47@example.org,(622)624-1304x242,6011798650988911,2025-04-06 +City Hotel,0,3,2017,April,17,25,1,0,2,0.0,0,SC,PRT,Complementary,Direct,1,1,1,A,A,1,No Deposit,14.0,252.0,0,Transient,0.5099000000000001,0,0,Check-Out,Kara Dunlap,marypowers@example.org,(253)235-7703,4247842662749001,2025-11-29 +Resort Hotel,1,95,2017,August,31,2,1,0,2,2.0,0,FB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,95.94,0,0,Canceled,Megan Clark,nguyenernest@example.com,768.500.6225x173,4705242902761061,2025-10-30 +Resort Hotel,1,66,2017,August,34,23,1,5,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,266.0,179.0,0,Transient-Party,86.05,0,0,Canceled,Melissa Mata,johnpeters@example.org,001-561-433-4271x8162,4187061029953829500,2025-12-21 +Resort Hotel,1,55,2017,April,14,1,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,106.05,0,0,Canceled,Tanner Cook,masondouglas@example.com,(865)915-6265x95388,30496446750683,2025-12-21 +City Hotel,0,34,2017,March,13,25,2,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,116.09,0,3,Check-Out,Dr. Tiffany Deleon DDS,jsandoval@example.org,(491)914-0140x765,349859162827884,2025-12-25 +City Hotel,0,90,2017,May,21,23,1,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.26,0,0,Check-Out,Timothy Harrison,mpearson@example.org,335.329.5000,4253863288844161404,2025-08-23 +City Hotel,1,35,2017,March,10,3,0,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,Michelle Hampton,kimberlylucero@example.org,682.272.4837x357,3510911800398955,2026-01-08 +Resort Hotel,0,291,2017,July,29,17,4,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,314.0,179.0,0,Contract,51.31,0,1,Check-Out,Kenneth Chambers,lowens@example.org,(959)210-1181x22259,3576496145890818,2026-03-12 +Resort Hotel,1,152,2017,May,21,22,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,147.01,0,0,Canceled,Kathleen Arroyo,smithandrea@example.com,(329)798-5216x8647,4643180049610988,2025-03-23 +City Hotel,0,3,2017,January,3,18,1,2,1,0.0,0,SC,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,56.0,0,Transient,79.96,0,1,Check-Out,Wendy Skinner,millerkristen@example.net,5838599461,060483668343,2024-11-18 +City Hotel,0,28,2017,March,12,21,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.54,1,2,Check-Out,Nancy Brewer,navarrodebra@example.net,540.620.1938x7954,341466260406377,2025-10-04 +City Hotel,0,256,2017,July,28,8,0,2,2,0.0,0,Undefined,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,158.02,0,0,Check-Out,Jamie Young,taylorjoseph@example.net,(339)673-7383x77659,180052292372433,2024-08-08 +City Hotel,0,42,2017,August,32,8,1,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,170.69,0,0,Check-Out,Rita Fernandez,erik22@example.net,6204289644,4539399544637,2024-09-09 +City Hotel,1,330,2017,July,28,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,94.25,0,0,Canceled,Chelsea Marshall,camachocatherine@example.net,718-517-9785x6260,4433500216336352,2026-02-23 +Resort Hotel,0,98,2017,February,7,17,2,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,164.0,179.0,40,Transient-Party,81.98,0,0,Check-Out,Elizabeth Weaver,ramirezmark@example.com,376-760-7650,4743796429146746,2026-03-17 +Resort Hotel,0,29,2017,August,32,8,0,2,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,132.11,0,1,Check-Out,Patricia Rivers,robertmoore@example.net,8465654783,630460044245,2025-10-10 +City Hotel,0,6,2017,January,3,16,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,L,1,No Deposit,75.0,179.0,0,Transient,43.09,0,0,Check-Out,Donna Holt,sarah03@example.org,952.536.9609x332,3506176917218696,2026-02-07 +City Hotel,1,153,2017,August,33,12,1,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.92,0,0,Canceled,Tyler Morrison,dwayneyu@example.org,841-524-8983,180074681643711,2024-07-08 +Resort Hotel,1,255,2017,December,51,22,1,4,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,45.5,0,0,Canceled,Brian Kelly,nancycarlson@example.com,(579)383-0386x539,6011614441927706,2024-11-09 +City Hotel,1,191,2017,January,5,31,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,99.34,0,0,Canceled,Seth Owens,matthewsnina@example.com,001-685-728-7851x6713,3516544680614748,2025-01-27 +Resort Hotel,1,248,2017,October,41,11,0,2,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient-Party,83.64,0,0,Canceled,Brenda Henry,krausejon@example.org,001-945-505-6068,36794317461990,2025-05-10 +Resort Hotel,0,16,2017,April,17,22,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,244.0,179.0,0,Transient,1.53,0,0,Check-Out,Dwayne Cooley,keaton@example.org,001-602-321-3643x6159,4839443776758345,2025-10-29 +Resort Hotel,1,11,2017,December,51,18,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,87.19,0,0,Canceled,Jean Duffy,laurenmckinney@example.com,(250)356-3161x757,3502133554636395,2024-10-17 +Resort Hotel,0,141,2017,March,13,31,1,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,62.76,0,0,Check-Out,Gene Bond,turnerkathleen@example.org,393.569.2486x42230,3520367891245035,2024-04-26 +City Hotel,0,148,2017,October,42,18,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,173.23,0,0,Check-Out,Rebekah Cooper,daniel86@example.net,436.529.2055x799,639091557996,2026-01-03 +Resort Hotel,0,46,2017,October,40,7,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,312.0,179.0,0,Transient-Party,82.28,0,1,Check-Out,Andrew Price,fmayer@example.com,742-326-6174x647,3553891819217503,2025-09-26 +City Hotel,1,15,2017,April,16,19,3,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,93.21,0,3,Canceled,Jeffery Alvarez,kellyrichardson@example.net,001-638-579-6820,4948444157069477063,2025-02-13 +City Hotel,0,40,2017,September,37,12,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,88.91,0,0,Check-Out,Mario Thomas,craigtina@example.com,(688)737-1389,3511703395253201,2024-05-15 +Resort Hotel,0,219,2017,April,18,30,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,98.8,0,1,Check-Out,Michael Smith,clifford24@example.com,+1-849-270-7898x3634,3541741849062905,2025-05-22 +City Hotel,0,2,2017,April,17,26,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,1,A,D,1,No Deposit,10.0,179.0,0,Transient,87.85,0,1,Check-Out,Daniel Horn,estone@example.net,+1-618-360-3654,4405974694276089,2025-10-16 +Resort Hotel,0,136,2017,October,40,2,3,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Contract,48.15,0,0,Check-Out,Omar Smith,chelseanewton@example.com,750.386.8512,30118987774043,2025-12-24 +Resort Hotel,0,38,2017,September,37,13,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,328.0,179.0,0,Transient,132.6,0,0,Check-Out,Randy Evans,espinozahailey@example.com,(218)399-2278x86217,4948514322495711,2025-05-20 +City Hotel,0,0,2017,January,3,17,2,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,80.6,0,2,Check-Out,William Andrews,ibraun@example.net,216.580.6433x66643,4559718349653058680,2025-08-11 +City Hotel,0,25,2017,May,18,3,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,81.01,0,1,Check-Out,Norma Ramirez,nicholas67@example.com,001-315-956-3177x648,4088778142605,2026-02-23 +City Hotel,1,163,2017,July,31,30,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,138.58,0,0,Canceled,Juan Davis,stevejackson@example.net,371.801.6879x672,4862384611678,2025-08-08 +City Hotel,0,301,2017,August,33,17,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,101.58,0,2,Check-Out,Kenneth Gomez,robertpetersen@example.net,+1-867-693-1310x920,2233178153777577,2025-05-20 +City Hotel,0,54,2017,December,50,16,0,1,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,84.46,0,0,Check-Out,Autumn Newman,nwoodard@example.org,001-569-830-4569,30411650722328,2024-10-03 +City Hotel,1,22,2017,July,29,17,2,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,213.08,0,2,Canceled,Ryan Fisher,jennifer67@example.org,+1-240-921-0760x076,4298180895876921,2024-12-29 +City Hotel,0,54,2017,August,31,2,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,205.08,0,3,Check-Out,David Ritter,rileychad@example.net,649.365.8975,4164225675420,2025-07-04 +City Hotel,0,101,2017,August,35,27,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,Kristen Holder,gonzalezjames@example.com,415-931-7573x10326,564041665493,2025-08-18 +City Hotel,1,20,2017,January,3,18,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,42.45,0,2,Check-Out,Deborah Melendez,tamaracunningham@example.net,698-353-5899,4948188513511790,2026-02-17 +Resort Hotel,0,3,2017,August,34,21,1,2,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,248.0,179.0,0,Transient,228.59,0,2,Check-Out,Anne Miller,william02@example.net,226-399-7128x9800,502084393599,2024-12-22 +Resort Hotel,1,40,2017,August,32,8,2,5,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,132.22,0,0,Canceled,Robert Mckenzie,smithshannon@example.com,+1-998-245-5097x54204,180007470558823,2025-08-22 +City Hotel,1,70,2017,October,43,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.38,0,0,Canceled,Susan Jarvis,mitchelljennifer@example.net,866-536-7736,30240216816468,2025-12-20 +City Hotel,0,48,2017,August,32,9,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,15.0,179.0,0,Transient,234.91,1,3,Check-Out,Lindsey Cruz MD,nicole96@example.net,506.745.8936x7054,6587279036028320,2026-02-18 +City Hotel,0,378,2017,October,42,17,0,2,2,0.0,0,SC,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,91.78,0,0,Check-Out,Kevin Moore,pserrano@example.net,+1-528-927-1460x001,36930866683572,2024-08-29 +City Hotel,1,16,2017,August,35,30,0,4,2,2.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,166.13,0,2,Canceled,Tammy Wilcox,amandanelson@example.net,001-291-615-0712x997,30388849940625,2025-01-16 +City Hotel,1,156,2017,October,41,10,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,105.54,0,0,Canceled,Christine Olson,santosbarbara@example.org,871.420.7355x850,4068552496983454,2025-05-08 +City Hotel,0,1,2017,April,14,5,1,1,1,0.0,0,BB,,Aviation,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,94.86,0,3,Check-Out,Megan Mcclure,christophermeyer@example.org,001-874-864-9744x1077,4004523998758444,2024-06-28 +Resort Hotel,0,11,2017,October,40,6,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,47.33,1,2,Check-Out,Christopher Mason,robert42@example.net,(235)551-0189x795,3585046999688872,2025-03-31 +City Hotel,0,14,2017,December,49,3,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,98.43,0,0,Check-Out,John Mendoza,angelarodriguez@example.org,(924)798-4944x302,6011502536947129,2024-10-27 +City Hotel,0,202,2017,August,31,2,2,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,8.0,179.0,0,Transient,228.94,0,3,Check-Out,Joshua Strickland,veronica24@example.com,839-294-6494x57277,341700901115512,2025-10-20 +Resort Hotel,0,47,2017,August,32,4,3,5,2,1.0,0,BB,GBR,Online TA,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,226.94,0,1,Check-Out,David Velasquez,camposchristopher@example.net,001-539-879-3104x75986,4450195618130,2025-07-17 +City Hotel,0,3,2017,August,34,24,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,177.29,0,1,Check-Out,Shelly Wells,haynesdenise@example.com,+1-382-825-3515,3598961095414905,2025-11-13 +Resort Hotel,0,15,2017,January,2,5,0,1,1,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient,54.0,0,0,Check-Out,Ricky Cowan,aliciadyer@example.net,+1-459-373-5762x74444,4154614839242215,2025-07-09 +Resort Hotel,0,50,2017,July,27,7,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,77.88,0,0,Check-Out,Robin Morales,kathleen78@example.net,001-834-268-5459,2241193490874482,2025-03-21 +City Hotel,1,50,2017,July,27,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,22,Transient,136.04,0,0,Canceled,Travis Rivera,charles97@example.com,528-672-2855,4302799898789528,2025-03-09 +City Hotel,1,12,2017,May,22,31,2,4,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Jeff Williamson,michelechristensen@example.org,(715)378-8543x6742,4388017989534225,2025-10-25 +City Hotel,0,2,2017,July,31,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.44,0,1,Check-Out,Scott Pena,alexball@example.com,(351)744-6270,4580113489494576,2024-04-04 +City Hotel,1,214,2017,March,14,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,100.46,0,0,Canceled,Raymond Dixon,sfisher@example.net,272.268.9824x90448,639000475686,2025-07-18 +City Hotel,1,140,2017,June,23,2,2,4,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,226.34,0,0,Canceled,Briana Finley,thompsonkatrina@example.com,001-635-264-1396x2085,4070205170641582880,2025-06-30 +Resort Hotel,0,44,2017,August,35,27,2,4,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,239.0,179.0,0,Transient,44.12,1,1,Check-Out,Pamela Freeman,mcooper@example.net,+1-893-934-9156,30264746089560,2024-12-07 +City Hotel,1,20,2017,May,21,24,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,37,Transient,92.07,0,0,Canceled,Morgan Hobbs,ericamoore@example.com,(364)724-8058,4335558335263948,2025-08-29 +Resort Hotel,0,14,2017,December,49,4,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,85.98,1,1,Check-Out,Sandra Valencia,fritzsara@example.net,+1-821-544-8429x883,342094737817437,2026-01-10 +City Hotel,0,51,2017,April,18,30,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,128.8,0,2,Check-Out,Christopher Rose,warrenshannon@example.net,9682885033,3570131019969747,2024-12-25 +City Hotel,0,8,2017,March,13,26,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,8.0,179.0,0,Transient-Party,82.76,0,1,Check-Out,Christopher Freeman,vkirby@example.net,001-419-643-1248x2150,503852463986,2025-06-01 +City Hotel,1,18,2017,April,15,8,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.25,0,2,Canceled,Richard Reyes,william62@example.net,307-474-9273x3239,370294146660700,2025-11-03 +City Hotel,0,129,2017,July,29,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.16,0,0,Check-Out,Amber Smith,robertsonmark@example.net,(340)921-1860x675,4639806939585641000,2025-01-27 +City Hotel,0,130,2017,June,23,4,2,1,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,55.0,179.0,0,Transient,110.79,0,1,Check-Out,Shane Mueller,patrickguzman@example.com,576.483.2926x342,4054362701081,2025-03-05 +City Hotel,1,46,2017,July,27,1,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.91,0,2,Canceled,Sharon Krueger,carolynsteele@example.com,001-719-354-0256x85652,30463511053195,2024-07-23 +City Hotel,0,38,2017,April,14,4,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,247.0,0,Transient,131.86,0,0,Check-Out,Clayton Curry,christopher90@example.net,5182613842,4937268014444489543,2025-03-20 +City Hotel,1,59,2017,April,16,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,113.91,0,0,Canceled,Evan Robinson,ellenwells@example.com,(997)521-6141,4053019024742981,2024-10-01 +Resort Hotel,1,55,2017,February,9,24,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,24.0,179.0,75,Transient,86.41,0,1,Canceled,Amber Smith,marcus79@example.net,(638)561-3159,4714824398046,2025-05-07 +Resort Hotel,0,55,2017,April,18,29,0,3,1,1.0,0,Undefined,DEU,Direct,Direct,0,0,0,H,C,1,No Deposit,17.0,179.0,0,Transient,124.23,0,0,Check-Out,Billy Huang,elizabethhubbard@example.com,483.842.0037x82443,4712910247044,2025-09-17 +City Hotel,0,49,2017,September,36,8,1,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,33.0,179.0,0,Transient,248.89,0,1,Check-Out,Brian Jones,laurasmith@example.net,(300)358-7639x56748,4408601025521076,2025-03-24 +City Hotel,1,16,2017,August,33,13,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,109.66,0,1,Canceled,Regina Wright,jeffreyperez@example.net,546-786-2900x7348,4366651813439,2024-06-06 +City Hotel,0,17,2017,December,50,15,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,105.21,0,1,Check-Out,Joyce Mcneil,dgarcia@example.net,2944001410,180009048025061,2024-05-30 +City Hotel,1,107,2017,April,14,4,1,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,E,E,0,Non Refund,8.0,179.0,0,Transient,94.96,0,0,Canceled,Jacob Rice,garrettnicole@example.net,+1-430-330-4042,30580698526105,2024-07-17 +City Hotel,0,117,2017,July,30,22,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,128.12,0,1,Check-Out,Manuel Walker,wwong@example.net,+1-222-690-6018x355,639088259804,2026-03-24 +City Hotel,0,224,2017,April,15,10,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,E,0,No Deposit,16.0,248.0,0,Transient-Party,108.6,1,0,Check-Out,Alvin Aguilar,jaredburns@example.net,(321)793-3499,30416167826181,2025-11-25 +Resort Hotel,1,246,2017,July,30,23,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,107.29,0,0,Canceled,Steven Stanley,adrianstone@example.com,001-705-211-3193x04823,38582943054430,2024-10-07 +City Hotel,0,48,2017,June,25,18,0,3,2,1.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,109.08,0,1,Check-Out,Brian Morris,ywilkinson@example.net,960.349.5678x1815,676164388727,2025-10-13 +City Hotel,1,176,2017,April,17,27,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.81,0,0,Canceled,James Bridges,clinejacob@example.com,669-884-3125x34551,4446772322355072,2024-08-08 +City Hotel,0,8,2017,August,31,5,0,2,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient-Party,176.24,0,0,Check-Out,Anna Robinson,steelediane@example.net,001-366-419-1398x14670,6554853371357459,2024-08-26 +Resort Hotel,0,5,2017,March,12,18,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,82.79,0,1,Check-Out,Anthony Terry,brianna09@example.net,7446318781,180064079712350,2026-02-22 +City Hotel,1,402,2017,October,41,11,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,103.41,0,0,Canceled,Matthew Murray,cynthia02@example.com,(916)713-4498,3561257711879222,2025-05-17 +Resort Hotel,1,10,2017,July,30,27,1,3,3,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,248.02,0,1,Canceled,Anna Tapia,thompsondavid@example.com,+1-880-840-0084x11229,2227419207542106,2024-04-23 +Resort Hotel,1,25,2017,February,7,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,149.0,179.0,0,Transient,54.83,0,0,Canceled,Trevor Pham,thomaschristopher@example.org,8172422016,581011449724,2024-10-06 +City Hotel,0,16,2017,March,10,5,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,221.0,0,Transient-Party,63.41,0,1,Check-Out,Mrs. Terri Thornton DDS,russellmarissa@example.net,489.592.5292x11917,4974262200987345,2025-05-03 +Resort Hotel,0,10,2017,February,5,1,2,3,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,1,No Deposit,15.0,79.0,0,Transient,46.99,0,2,Check-Out,Dr. Christy Lewis DVM,hmartinez@example.net,2849510418,213163015945040,2026-02-17 +City Hotel,0,101,2017,September,39,27,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,171.43,0,2,Check-Out,Mr. Andrew Skinner,alvarezanna@example.com,001-802-643-3787,370541266973895,2024-09-13 +Resort Hotel,1,90,2017,October,42,19,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,1,1,L,E,0,No Deposit,13.0,179.0,75,Transient,107.69,0,0,Canceled,Anne Ibarra,perkinscynthia@example.com,945.666.4996x4668,4571522490476518319,2024-09-29 +City Hotel,0,22,2017,August,32,8,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.51,0,0,Check-Out,Christopher Moore,erios@example.com,001-925-855-4733,4831678719630279,2024-08-13 +Resort Hotel,1,16,2017,August,31,2,2,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Canceled,Veronica Jensen,michael05@example.net,001-449-254-9595,30189720813745,2024-09-28 +Resort Hotel,1,13,2017,February,8,20,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,0,Transient,42.82,0,0,No-Show,Sean Avery,lawrence01@example.com,284-500-3480,213187415476207,2024-06-14 +City Hotel,1,161,2017,June,23,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,148.91,0,0,Canceled,Debbie Mcgrath,gstewart@example.net,(882)904-4243x3576,371175763022515,2024-12-13 +Resort Hotel,1,5,2017,November,45,9,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,F,A,0,No Deposit,239.0,179.0,0,Transient,48.05,0,0,Canceled,Daniel James,cynthia69@example.net,6347925442,4681183975027798508,2025-05-17 +Resort Hotel,0,162,2017,May,22,30,1,2,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,124.23,0,0,Check-Out,Michael Simmons,owillis@example.org,650.568.4313,3576067180211598,2024-10-29 +City Hotel,0,1,2017,December,49,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,17.0,179.0,0,Transient,63.33,0,0,Check-Out,Christopher Santos,kdixon@example.net,823.947.3265x98283,213136991699435,2024-07-09 +City Hotel,0,2,2017,May,18,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,50.54,0,1,Check-Out,Vanessa Nelson,owall@example.net,332.395.5670,5472717158608692,2025-09-02 +City Hotel,0,45,2017,April,14,1,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.69,0,1,Check-Out,Nathan Davenport,sadams@example.org,720-888-6753x4152,3509658225426233,2025-06-03 +City Hotel,1,71,2017,July,30,24,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,108.38,0,0,No-Show,Angela Greer,dickersonlisa@example.org,(520)352-6704x19832,6565435723524098,2024-11-12 +City Hotel,0,10,2017,July,27,5,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,138.45,0,1,Check-Out,Amanda Hartman,adam67@example.com,639.348.6288,3533764030865985,2025-07-04 +Resort Hotel,0,14,2017,March,12,22,2,5,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,15.0,179.0,75,Transient-Party,63.61,1,3,Check-Out,Gina Miller,melissa77@example.org,(522)659-5294x20098,3580159623860919,2025-03-03 +City Hotel,0,21,2017,May,19,4,0,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.08,0,2,Check-Out,David Jones,ubeltran@example.org,(651)302-5476,4342046414578353,2025-11-04 +City Hotel,1,48,2017,June,24,12,2,4,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.76,0,0,Canceled,Tony Carr,stephaniemack@example.org,8702355999,501870247688,2025-12-26 +City Hotel,1,408,2017,July,27,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,139.97,0,0,Canceled,Tonya Hess,cheryl46@example.com,+1-946-995-7482x0328,180089371241121,2024-12-12 +Resort Hotel,0,190,2017,February,7,12,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,81.13,0,0,Check-Out,Ronald Hernandez,richard25@example.com,638-447-4991x48221,3574389315631371,2025-05-24 +Resort Hotel,0,255,2017,October,44,28,2,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,133.81,1,1,Check-Out,Richard Lindsey,meganbautista@example.net,001-360-483-9094x9594,180065190985551,2026-03-04 +City Hotel,0,48,2017,July,30,25,0,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,42.0,214.0,0,Transient,127.85,0,2,Check-Out,Denise Mcintosh,lhouston@example.net,4478080478,676370297639,2025-05-18 +City Hotel,0,90,2017,April,17,24,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,99.0,0,1,Check-Out,Yesenia Lawson,rpalmer@example.com,999-254-2588,4167351907334047,2024-10-09 +City Hotel,0,85,2017,August,34,23,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,25.0,179.0,0,Transient,201.87,0,0,Check-Out,Ryan Scott,edgarbennett@example.org,(991)827-3543x28899,3506127404790804,2025-09-12 +Resort Hotel,0,95,2017,June,23,7,1,2,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,236.69,1,0,Check-Out,Stephanie Bennett,jesse71@example.net,(794)622-5567x355,373200317339856,2025-07-02 +City Hotel,1,410,2017,December,50,15,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,106.33,0,0,Canceled,Gregory Monroe,timothybrennan@example.org,001-791-744-4076,4777622178857151,2024-04-19 +City Hotel,0,52,2017,December,51,17,0,3,2,0.0,0,BB,CHE,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,109.76,0,0,Check-Out,Eric Hancock,david12@example.com,+1-486-864-2100x42555,4457783573200624,2026-02-24 +Resort Hotel,0,21,2017,August,31,3,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,92.82,0,1,Check-Out,Jasmine Mcdowell,swalker@example.org,635.272.5417x5974,6578749486129340,2024-07-22 +Resort Hotel,1,147,2017,January,2,13,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,49.91,0,1,No-Show,Melissa Perry,kingrobin@example.com,(453)505-3513,372138225789617,2024-09-26 +City Hotel,1,89,2017,May,19,9,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.14,0,0,Canceled,Nicholas Vasquez,fraziersheila@example.net,677.698.9480x45760,4762216394125704,2025-10-13 +City Hotel,1,163,2017,July,28,9,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,149.07,0,0,Canceled,Sheryl Rodgers,anne31@example.com,977.913.1325,36969636900031,2025-01-27 +City Hotel,0,85,2017,June,23,6,0,2,1,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,129.57,0,0,Check-Out,Richard Rodriguez,smithjeffery@example.net,614.327.2867x733,3571270801715691,2025-10-21 +Resort Hotel,0,54,2017,August,32,12,2,5,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,13.0,179.0,0,Transient,126.4,1,0,Check-Out,Justin Wilcox,wardchase@example.org,941.878.2890x2128,570737948077,2025-08-13 +Resort Hotel,1,18,2017,October,42,15,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Contract,75.57,0,0,Canceled,Anthony Oconnell,tfisher@example.com,+1-283-575-7846x153,343584157188136,2024-10-31 +Resort Hotel,0,185,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,105.15,0,0,Check-Out,Bill Porter,wilsonchloe@example.com,707.393.7811x346,3566628219450846,2025-03-28 +City Hotel,1,280,2017,November,46,13,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,176.62,0,0,Canceled,Erin Lozano,austinlawrence@example.com,672-935-8284,4589034468716899,2026-02-25 +City Hotel,1,21,2017,August,34,23,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,114.25,0,1,Canceled,Christopher Vasquez,bethany60@example.org,794.398.3064x609,4000737829028578852,2024-10-15 +City Hotel,0,155,2017,March,13,26,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,99.67,0,2,Check-Out,Sarah Nguyen,stacy50@example.org,+1-332-392-1482,2231336069622590,2025-11-06 +City Hotel,0,71,2017,August,33,15,2,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,85.6,0,1,Check-Out,Devin Roberts,jacob78@example.org,001-529-205-4110x53610,4690160478587032,2025-10-13 +Resort Hotel,0,98,2017,March,12,22,1,2,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,61.7,0,0,Check-Out,Susan Ramirez,robertramirez@example.org,871-369-7275x9629,4278762900668155,2025-03-02 +City Hotel,0,48,2017,June,26,23,0,3,2,0.0,0,BB,AUT,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.99,0,1,Check-Out,William Green,timothy51@example.net,(902)392-3627x1507,30447955265845,2025-02-17 +Resort Hotel,0,105,2017,February,7,16,2,2,1,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,268.0,179.0,0,Transient,49.09,0,2,Check-Out,Jared Gibbs,morrissteven@example.net,346-602-9649x0235,2256658973039078,2024-05-04 +City Hotel,1,156,2017,March,14,30,1,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,77.53,0,0,Canceled,Joshua Graves,johnwilson@example.net,345.569.1484,4845466135230757,2024-08-09 +City Hotel,1,381,2017,March,13,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,90.0,179.0,0,Transient,63.38,0,0,Canceled,Amy Fuentes,paulalamb@example.org,+1-806-593-6486x25552,4877046703200,2025-09-20 +City Hotel,0,10,2017,December,50,13,1,3,3,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,6.0,179.0,0,Transient,88.63,0,1,Check-Out,Michael Barrett,ellisnathan@example.net,(329)739-9056x999,213157655983352,2025-10-12 +City Hotel,0,150,2017,August,32,4,0,4,2,0.0,0,BB,,Direct,Direct,0,0,0,C,L,0,No Deposit,13.0,179.0,0,Transient,252.0,0,2,Check-Out,Sonia Jenkins,johnsonanthony@example.net,(207)228-6065,4278788826169929,2025-11-26 +City Hotel,1,147,2017,July,27,4,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient-Party,204.52,0,0,Canceled,Luis Mcknight,chase85@example.net,001-783-511-9197x800,3576391724705612,2025-05-26 +City Hotel,1,291,2017,October,40,7,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.11,0,0,Canceled,Charles Brown,simonjulie@example.org,(817)278-5033,4990316160074,2025-07-22 +Resort Hotel,1,6,2017,December,50,14,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,242.0,179.0,0,Transient,162.64,0,1,Canceled,Mary Wilson,eugenewhite@example.com,7485761658,373229883868709,2024-12-09 +City Hotel,0,6,2017,September,37,10,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,104.85,0,0,Check-Out,Terry Smith,hsanchez@example.com,(872)959-1224x288,6011678402020108,2025-02-13 +Resort Hotel,0,6,2017,August,31,2,2,1,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,241.0,179.0,0,Transient,252.0,1,3,Check-Out,Mary Miller,karafuller@example.com,+1-721-821-5805x4801,4452352642854418763,2024-10-20 +City Hotel,1,145,2017,May,20,17,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,136.79,0,1,Canceled,Amanda Nichols,rbush@example.net,590.211.5830x1559,3526770125517018,2025-05-22 +City Hotel,1,109,2017,November,48,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,75,Transient,104.49,0,0,Canceled,Connie Ward,judy54@example.org,307.635.9530x1603,4686469250123510957,2025-02-21 +Resort Hotel,1,1,2017,July,29,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,53.78,0,0,Canceled,Michael Perez,burnsmatthew@example.com,001-454-232-2829x24470,4539882499794,2024-12-04 +City Hotel,0,41,2017,March,12,20,0,1,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,80.79,0,0,Check-Out,Rachel Myers,smithnathaniel@example.com,001-800-761-6267x553,349711892975410,2024-07-04 +City Hotel,0,36,2017,July,27,4,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.91,0,1,Check-Out,Melanie Edwards,sdavidson@example.net,4679442684,180000733971008,2025-04-27 +City Hotel,0,0,2017,October,41,8,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Group,0.5099000000000001,0,0,Check-Out,Jimmy Miller,smithheather@example.org,(393)609-5019x354,4689403048506709,2025-07-25 +City Hotel,0,0,2017,October,42,16,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,112.81,0,0,Check-Out,Robert Reynolds,alexisdavenport@example.com,+1-739-718-7687x1747,6011562348733323,2026-02-03 +City Hotel,0,13,2017,August,33,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,217.26,0,1,Check-Out,Ronald Bryant,hayesedward@example.com,602-733-1257x491,30235944902754,2026-02-17 +City Hotel,1,95,2017,July,31,31,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.62,0,2,Canceled,Ashley Newton,dtaylor@example.net,704.360.9737,4714765137924,2025-02-03 +City Hotel,1,142,2017,October,41,7,1,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.32,0,0,Canceled,Abigail Cole,solisjohn@example.com,+1-923-967-8625x86570,4645630291119888,2024-07-04 +City Hotel,0,255,2017,September,37,9,2,5,3,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,156.86,0,0,Check-Out,David Hunter,lopezkatelyn@example.net,(860)343-4985,6539886066535484,2025-02-06 +Resort Hotel,0,132,2017,December,51,17,3,3,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,175.34,1,1,Check-Out,Heidi Kim,kramirez@example.org,+1-696-306-2711x532,30349265153945,2024-11-14 +City Hotel,0,27,2017,September,36,4,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,82.15,1,0,Check-Out,Jessica Webb,dcoleman@example.com,001-810-360-7676x42411,213137753913535,2025-12-16 +City Hotel,0,10,2017,April,16,17,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,111.24,0,0,Check-Out,Jessica Freeman,wdavis@example.net,386.319.5049x3090,6518712498691353,2025-10-03 +Resort Hotel,0,1,2017,October,40,6,1,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,52.49,1,1,Check-Out,Lindsey Moore,patriciaboyd@example.com,496-379-7948,213151176728354,2024-07-04 +City Hotel,0,2,2017,January,3,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,222.0,0,Transient-Party,64.4,0,0,Check-Out,Kristen Hall,zyoung@example.com,001-759-687-8863x87594,3545791953082153,2025-12-19 +Resort Hotel,0,52,2017,October,41,10,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Transient,109.06,0,1,Check-Out,Autumn Harris,wstephens@example.com,+1-831-516-0568x1362,3533359351405626,2024-10-09 +Resort Hotel,0,0,2017,March,13,24,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient,44.66,1,0,Check-Out,Leslie Hernandez,cindymiller@example.org,201.453.4847x4229,503820283466,2024-04-09 +Resort Hotel,0,27,2017,May,18,2,0,3,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,29.0,179.0,0,Transient-Party,99.69,0,0,Check-Out,Jesse Thompson,lisa47@example.com,(516)221-4250x6121,180069044640222,2025-03-21 +Resort Hotel,0,42,2017,December,49,4,2,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Contract,85.49,0,2,Check-Out,John Walker,evan04@example.com,479-899-9749x25079,4009577687614958,2024-06-08 +City Hotel,0,24,2017,August,32,10,2,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,127.26,1,0,Check-Out,Ronald Buck,jessica70@example.org,262-234-8843x468,30006017171589,2025-07-09 +Resort Hotel,0,0,2017,October,40,4,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,E,1,No Deposit,241.0,179.0,0,Transient-Party,63.29,1,1,Check-Out,Michael Woodard,justinpatterson@example.net,(862)591-2565,342187104990876,2024-05-24 +City Hotel,1,159,2017,May,18,1,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,40.0,179.0,0,Transient,134.66,0,0,Canceled,Ashley Mcdaniel,jennifer76@example.net,001-776-967-0760x1839,4707648950759699606,2024-09-25 +Resort Hotel,0,1,2017,October,42,16,1,2,2,0.0,0,BB,ESP,Corporate,Direct,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,40.21,0,0,Check-Out,Kevin Stokes,aramirez@example.net,001-878-446-7902x30444,4432894507380428965,2025-05-09 +City Hotel,0,11,2017,March,13,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Transient-Party,65.35,1,1,Check-Out,Melissa Burton,randyfitzpatrick@example.com,+1-571-548-7148x1082,2720056621069480,2024-09-22 +City Hotel,1,366,2017,April,15,10,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,62,Transient,124.73,0,0,Canceled,Leslie Boone,fuenteskyle@example.org,603-481-4116,4637023453640224,2025-07-02 +City Hotel,0,43,2017,August,32,8,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Contract,80.63,0,3,Check-Out,Kimberly Davis DDS,jordangriffin@example.net,774.508.8934x7255,4507701692441333,2024-10-21 +City Hotel,1,1,2017,March,12,16,1,4,2,0.0,0,SC,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,131.08,0,0,No-Show,Pedro Salinas,stacey58@example.net,828.383.1639x25148,6586836990428779,2025-05-31 +Resort Hotel,0,31,2017,March,13,24,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,58.4,1,2,Check-Out,Daniel Davis,aliceriggs@example.org,338.755.4472,3511544929606674,2025-10-11 +City Hotel,0,63,2017,August,35,24,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,10.0,179.0,0,Transient,135.17,0,1,Check-Out,Justin Johnson,nathanblair@example.org,6736575845,4517208510582487150,2025-01-20 +Resort Hotel,1,320,2017,May,20,13,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,132.2,0,0,Canceled,Rodney Johnson,sharon78@example.net,387.843.8300x43209,4237213961595714809,2025-07-22 +Resort Hotel,0,20,2017,December,51,23,2,1,2,0.0,0,Undefined,IRL,Groups,Direct,0,0,0,E,E,0,No Deposit,33.0,179.0,75,Transient-Party,82.46,0,0,Check-Out,Jamie Banks,jack76@example.org,(903)499-5980,4908405483478380,2025-07-23 +City Hotel,0,0,2017,October,40,2,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,72.19,1,1,Check-Out,Nancy Sanders,christine83@example.com,242-458-8357,4902970122850717,2026-03-24 +City Hotel,0,12,2017,March,12,23,1,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,96.5,0,0,Check-Out,Antonio Valenzuela,sharonmendoza@example.net,(711)963-7856x9035,4361377264487569,2024-05-19 +City Hotel,1,144,2017,February,9,26,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,79.68,0,0,No-Show,Lisa Dyer,olivia53@example.com,001-200-728-5968x326,4054495668670452944,2026-01-14 +City Hotel,0,0,2017,January,4,24,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,76.61,0,0,Check-Out,Emily Myers,heatherwagner@example.net,315-840-3395x2607,4719879004696,2025-03-06 +Resort Hotel,0,148,2017,August,32,9,2,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,F,1,No Deposit,240.0,179.0,0,Transient,223.33,0,2,Canceled,Nicole Graham,raven25@example.net,(444)278-7502x19976,30280830964047,2024-11-29 +Resort Hotel,0,0,2017,April,15,8,1,0,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,122.62,0,2,Check-Out,William Sullivan,fitzgeraldmark@example.com,3559930497,3574767758256915,2025-05-26 +City Hotel,1,144,2017,September,39,24,0,3,2,0.0,0,SC,ITA,Online TA,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,97.02,0,0,Canceled,Hannah Heath,davisjames@example.org,001-230-476-0980x353,213197246853060,2025-07-09 +City Hotel,0,152,2017,September,37,13,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient,81.57,0,2,Check-Out,Nichole Cruz,zjackson@example.com,+1-814-483-5636,4383412096792607,2025-01-12 +City Hotel,1,0,2017,December,49,8,0,4,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,242.0,0,Transient,0.5099000000000001,0,0,Canceled,Mrs. Heather Pollard,garrett90@example.com,570-704-4864x0338,36093185245613,2024-11-16 +Resort Hotel,0,9,2017,October,43,24,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Group,219.62,1,0,Check-Out,John Howe,kempchristy@example.com,536-677-8490x4484,676206645597,2024-07-01 +Resort Hotel,0,0,2017,January,4,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,73.97,0,0,Check-Out,Lisa Thompson,markrivers@example.com,001-902-328-9586x579,3501903675420791,2024-11-02 +Resort Hotel,0,27,2017,November,44,4,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,27.0,179.0,0,Transient-Party,94.17,0,0,Check-Out,Heather Trujillo,lisacopeland@example.org,8537827984,3597944559325503,2025-04-24 +City Hotel,1,26,2017,December,50,14,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,17,Transient,150.1,0,0,Canceled,Susan Hughes MD,michael50@example.net,+1-695-858-4700,2708439795755132,2025-12-26 +City Hotel,0,100,2017,March,13,30,1,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,100.61,0,0,Check-Out,Kristin Huynh,robinsonkathleen@example.net,295.654.0970,3530552413736730,2025-04-21 +City Hotel,0,3,2017,December,50,16,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,1,0,G,L,1,No Deposit,246.0,179.0,0,Transient,111.35,0,3,Check-Out,Samantha Bullock,alexanderjones@example.org,001-649-804-4035,213153744650953,2025-09-02 +City Hotel,1,63,2017,May,20,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,121.03,0,0,Canceled,Kathleen Davis,riverajoshua@example.com,(391)642-5398,213125355743798,2025-04-28 +City Hotel,0,34,2017,September,35,1,0,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,84.86,0,1,Check-Out,Suzanne Fields,drew69@example.com,2269870990,4846533763704,2024-05-10 +City Hotel,1,317,2017,June,25,20,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,114.28,0,0,Canceled,Bruce Brown,rmorris@example.net,001-936-344-6839x159,4517396159126876023,2025-04-21 +City Hotel,0,21,2017,May,21,24,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,107.38,0,0,Check-Out,Aaron Price,timothy59@example.com,(412)344-9901x13693,3500288442582771,2025-11-09 +City Hotel,0,103,2017,August,33,17,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,86.22,0,2,Check-Out,Kaylee Gay,beth01@example.net,836-623-7801x7117,5490142026579629,2025-07-12 +City Hotel,0,22,2017,April,18,27,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,2,No Deposit,15.0,219.0,0,Transient,109.99,0,0,Check-Out,Cynthia Dawson,kim38@example.com,700.762.2704x48964,4349823427987540231,2024-09-09 +City Hotel,1,47,2017,October,42,16,2,5,1,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,78.35,0,0,Canceled,Kristy Blevins,timothyhughes@example.com,+1-997-445-9275x9408,378363664288582,2025-03-26 +Resort Hotel,0,268,2017,August,33,16,2,7,2,1.0,0,Undefined,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,94.42,0,1,Check-Out,Destiny Brown,zmorris@example.com,2317491981,4691418515979380271,2024-08-22 +City Hotel,1,40,2017,October,41,9,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,79.15,0,1,Check-Out,Emily Santos,jennifermartin@example.net,525.818.6639x40145,4253425769163671,2025-06-30 +City Hotel,0,12,2017,November,47,24,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,79.93,0,0,Check-Out,Michael Lynch,brian70@example.net,+1-546-760-3046x35181,586945420618,2024-03-31 +City Hotel,0,44,2017,June,24,11,0,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,165.98,0,2,Check-Out,Lori Clay,fernandeznicholas@example.com,001-412-282-3232,180083467959399,2024-04-19 +City Hotel,0,1,2017,May,19,6,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.43,0,1,Check-Out,Keith Sweeney,kelly45@example.org,275.496.4459,379744092351945,2025-11-04 +City Hotel,0,175,2017,April,18,28,1,2,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,139.7,0,1,Check-Out,Jake Robles,cmcdowell@example.com,001-571-241-2449x0876,213171473061242,2024-10-16 +City Hotel,0,199,2017,August,32,4,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,225.73,1,3,Check-Out,John Bishop,amy83@example.org,001-503-840-1628x2965,4272669458270324,2025-01-14 +Resort Hotel,0,19,2017,March,12,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,240.0,179.0,0,Transient,50.05,0,1,Check-Out,Ronald Edwards,kvaughan@example.com,659-919-3678x702,502025083135,2024-12-05 +City Hotel,1,44,2017,September,36,8,0,1,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,103.53,0,0,Canceled,Dana Baker,meltonjoseph@example.com,756.844.0361x291,180086103217288,2025-12-05 +Resort Hotel,0,42,2017,April,14,5,2,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,87.35,1,0,Check-Out,John Moreno,ggentry@example.com,798-940-2278x362,4734315780340425,2024-05-02 +Resort Hotel,0,0,2017,January,3,19,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,243.0,179.0,0,Transient,60.95,0,3,Check-Out,Samuel Coleman,cvincent@example.org,478.212.0470,3560043864945312,2024-09-19 +City Hotel,1,0,2017,November,48,28,1,1,2,0.0,0,SC,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,125.59,0,1,No-Show,Zachary Smith,omoran@example.org,(808)964-9036,3524925794066174,2025-10-19 +Resort Hotel,1,105,2017,August,32,12,0,4,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,63.57,0,0,Canceled,Amber Morse,angel61@example.net,591-529-9389x80051,4024624510976,2024-04-24 +City Hotel,0,397,2017,July,30,22,2,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,88.65,0,0,Check-Out,Stephanie Wilson,alexisdeleon@example.org,001-224-643-7142,30532649287170,2025-03-23 +City Hotel,1,170,2017,May,22,30,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,42,Transient,109.85,0,0,Canceled,Tanya Murphy,johnathanhernandez@example.com,822.887.5884,4252831092272462,2025-10-25 +Resort Hotel,0,58,2017,September,38,18,2,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Contract,101.73,0,0,Check-Out,Edwin Clark MD,pestes@example.org,2567958974,4191438808785662843,2025-08-11 +City Hotel,1,47,2017,December,52,28,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,84.93,0,1,Canceled,Kimberly White,mcdonaldlaura@example.com,001-633-866-8503x89227,6011980376732324,2025-01-05 +Resort Hotel,1,33,2017,June,26,27,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Canceled,James Dixon,haynesnicole@example.net,+1-263-282-0707,30311554605175,2024-07-24 +Resort Hotel,0,9,2017,November,47,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,77.42,0,0,Check-Out,Rachel Wallace,jefferykeller@example.net,001-431-403-3280x78341,060440218158,2025-04-24 +City Hotel,1,263,2017,July,29,14,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,219.4,0,0,Canceled,Danny Smith,shafferadam@example.org,(988)384-4668x6992,347845705212033,2024-06-13 +Resort Hotel,1,88,2017,April,14,5,0,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,49.13,0,0,Canceled,Tonya Ward,raymond19@example.net,+1-570-745-5259x84781,639050720650,2025-01-28 +City Hotel,1,10,2017,June,23,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,86.97,0,1,No-Show,Jacob Brown,murphysabrina@example.org,001-367-241-5338x89224,4814119631604,2025-11-02 +Resort Hotel,0,0,2017,July,27,8,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,194.87,0,1,Check-Out,Christopher Mcdonald,jared66@example.com,358.707.3970,30248950858075,2024-09-30 +City Hotel,1,245,2017,October,42,19,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient,99.71,0,0,Canceled,Jeffrey Dixon,scotthenry@example.net,(483)230-2566,4717589150343808918,2025-05-16 +City Hotel,1,5,2017,May,20,16,1,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,99.13,0,1,Canceled,Veronica Reed,charlesguerra@example.net,+1-820-828-6708x11347,6542585580722058,2024-09-04 +Resort Hotel,1,223,2017,October,43,22,2,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,123.79,0,0,Canceled,Barbara Lucero,michelelane@example.com,3512797502,4405958903979450,2024-06-14 +City Hotel,0,37,2017,February,7,13,2,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,134.15,0,1,Canceled,Melissa Wiley,xmoore@example.com,+1-539-683-7161,4500051062763,2024-05-11 +City Hotel,0,183,2017,April,17,26,2,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.38,0,1,Check-Out,Anita Johnson,millerbryan@example.org,+1-776-997-1422x9707,4080372514727781,2025-03-26 +City Hotel,1,157,2017,August,31,2,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Canceled,Samantha Garcia,patelsarah@example.org,957.827.2825x36072,213107933091882,2025-03-25 +City Hotel,0,0,2017,October,42,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient,48.56,0,0,Check-Out,Micheal Summers,karl82@example.net,9575937189,060475213231,2025-03-02 +Resort Hotel,0,6,2017,December,51,18,2,5,2,0.0,0,HB,PRT,Offline TA/TO,GDS,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,86.6,0,0,Check-Out,Mark Williams III,jessicawilkins@example.net,291-345-4677x1581,3547448113243278,2025-12-16 +City Hotel,1,3,2017,May,21,23,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,138.0,179.0,0,Transient,75.69,0,0,Canceled,Andrea Patterson,brandoncohen@example.net,001-565-510-1303,676129099542,2025-05-17 +Resort Hotel,0,20,2017,January,3,17,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,21.0,179.0,0,Transient-Party,68.66,0,0,Check-Out,Sara Robinson,wking@example.net,608.902.8999x59792,341770603100047,2025-09-14 +City Hotel,0,94,2017,May,20,13,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,80.79,0,0,Check-Out,Kaitlyn Graves,leahburke@example.org,001-305-276-2211x7588,4743023809482431341,2025-08-07 +City Hotel,0,12,2017,March,12,18,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,104.06,0,1,Check-Out,Raymond Hoffman,ualvarez@example.com,5004796519,36050519867835,2024-12-03 +City Hotel,0,16,2017,January,5,31,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.74,0,1,Check-Out,Lauren West,jacquelineforbes@example.com,385-770-2780,4615217795891117,2024-07-06 +Resort Hotel,0,101,2017,July,31,28,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,95.08,0,1,Check-Out,Sara Harris,kimdavid@example.com,001-444-747-1221x07672,4881454539700,2024-06-19 +City Hotel,0,21,2017,April,17,24,0,3,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,50.0,0,Transient-Party,107.57,0,0,Check-Out,Brittany Wood,jonathanparker@example.com,(998)438-3736,341905927273639,2024-09-17 +City Hotel,1,42,2017,May,19,10,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,252.0,0,2,Canceled,Lindsey Bennett,maria14@example.com,398-306-5873,6556227908481926,2025-06-06 +City Hotel,0,3,2017,February,7,13,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,66.0,179.0,0,Transient,85.26,0,2,Check-Out,Jason Jenkins,carriekelley@example.com,8652575183,3589504277143800,2024-05-05 +City Hotel,1,0,2017,May,19,6,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,237.0,179.0,0,Transient,88.02,0,1,No-Show,Brad Turner,heather33@example.net,478-569-6091,4173961588163820,2025-03-26 +Resort Hotel,0,45,2017,July,27,5,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,47.48,0,3,Check-Out,Barbara Woods,kenneth12@example.com,+1-321-200-1126x99499,4814510201482037,2026-02-03 +Resort Hotel,1,10,2017,October,41,10,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,40.82,0,0,Canceled,Elizabeth Miller,hchavez@example.org,573-753-4489,060408177164,2025-02-09 +City Hotel,0,0,2017,May,19,10,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,0,No Deposit,14.0,45.0,0,Transient,0.56,0,0,Check-Out,Kimberly Olsen,scottsmith@example.net,(500)847-0548,2236724240491974,2025-09-17 +City Hotel,1,3,2017,July,27,4,2,1,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,88.64,0,0,Canceled,Stephanie Price,pkane@example.org,890-795-7828x862,180058153383419,2025-04-05 +City Hotel,0,136,2017,March,10,5,1,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,99.13,0,0,Check-Out,Colton Evans,jennifermorse@example.net,(694)714-0072,4362366358075,2024-10-01 +Resort Hotel,0,1,2017,February,8,17,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,44.62,0,0,Check-Out,Hannah Steele,dcopeland@example.com,952.941.9525,4573250045403599,2024-10-26 +Resort Hotel,0,2,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,19.0,179.0,0,Transient,143.5,1,0,Check-Out,Eric Stevenson,sandra85@example.net,+1-500-353-1462,4429647661749946302,2025-10-10 +Resort Hotel,0,94,2017,February,7,10,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,137.0,179.0,0,Transient-Party,41.1,0,0,Check-Out,Wayne Proctor,gabriella94@example.org,+1-216-809-3736x1903,36321850937523,2024-08-21 +City Hotel,0,50,2017,January,4,22,0,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,49.54,0,1,Check-Out,Tristan Arnold,bakermanuel@example.com,459-995-2726,4275447851829,2024-07-31 +Resort Hotel,0,301,2017,March,12,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient-Party,66.11,1,1,Check-Out,Andres Daniels,jessicaspencer@example.net,792-373-9694,6011333596289727,2025-02-25 +City Hotel,0,139,2017,March,13,25,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Contract,112.78,0,2,Check-Out,Brian Carter,james34@example.com,469.285.5255,2253729701141719,2025-05-26 +Resort Hotel,0,1,2017,October,41,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,42.49,0,0,Check-Out,Rachel Hickman,david16@example.com,001-427-722-0191x96116,4905657826567567,2025-05-29 +Resort Hotel,1,276,2017,March,12,16,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,Non Refund,242.0,179.0,0,Transient,48.99,0,0,Canceled,Jerome Pierce,robert16@example.org,422.323.9906x67399,3569729242448687,2024-11-08 +City Hotel,1,413,2017,August,31,1,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.27,0,0,Canceled,Jason Perez,lhall@example.net,444.589.3875,589527177994,2025-12-17 +Resort Hotel,0,101,2017,May,18,2,1,4,3,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,244.68,1,0,Check-Out,Olivia Anderson,vegarichard@example.com,492.268.8891,4093702837117143,2024-08-27 +City Hotel,0,158,2017,August,34,22,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,217.66,0,2,Check-Out,Christopher Summers,dylan31@example.org,(303)784-9925x71700,3531184720443625,2025-10-11 +City Hotel,1,2,2017,September,36,5,0,3,2,0.0,0,SC,ESP,Online TA,Direct,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,123.28,0,2,Canceled,Daniel Holmes,adam11@example.com,+1-606-512-9704,2248697918258261,2024-04-03 +City Hotel,1,281,2017,June,24,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,110.76,0,1,Canceled,Cynthia Stanley,mathismaria@example.net,+1-402-904-3532x77373,3519651334267737,2025-09-25 +City Hotel,0,160,2017,March,10,6,2,5,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,75.82,0,0,Check-Out,Randy Nguyen,jthomas@example.com,939.854.3760x2656,2296624232138426,2025-01-01 +City Hotel,1,4,2017,September,36,2,0,3,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,145.27,0,0,Canceled,Michelle Hernandez,mjones@example.org,+1-275-675-7928,4951105321572073,2024-11-08 +City Hotel,0,17,2017,October,41,13,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,241.0,0,Transient-Party,88.48,0,0,Check-Out,Aaron Osborne,uroy@example.net,+1-770-580-2221x40595,4371118390820853,2025-03-06 +Resort Hotel,0,87,2017,February,9,26,2,5,2,0.0,0,FB,,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,79.24,0,0,Check-Out,Ruben Stark,kparker@example.org,702.480.7103,377495885228756,2025-06-08 +City Hotel,1,0,2017,April,15,12,1,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,40.0,179.0,0,Transient,228.27,0,0,Canceled,Jessica Turner,taylorchristina@example.net,+1-900-825-6066x4080,3502341869266853,2024-06-05 +City Hotel,0,148,2017,August,33,13,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.48,0,0,Check-Out,Jonathan Hernandez,lauragriffin@example.com,+1-322-416-3035,4170172096834417310,2024-10-04 +City Hotel,1,148,2017,December,49,6,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,62.39,0,0,Canceled,Christopher Edwards,ygonzalez@example.org,240-207-0807x31237,4309000886876654370,2024-06-12 +City Hotel,0,34,2017,August,32,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.37,0,0,Check-Out,Lisa Farley,qchapman@example.org,001-625-277-6069x38342,3529123470868742,2024-04-26 +City Hotel,0,42,2017,August,32,8,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,152.65,0,1,Check-Out,Jonathan Kelly,weekstammy@example.com,001-222-367-1350x1082,3532628498059830,2024-10-23 +City Hotel,1,58,2017,August,32,4,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,236.0,179.0,0,Transient,121.84,0,1,Canceled,Karla Moreno,kathleen04@example.com,236-372-3310x1731,4122973017033259974,2025-08-22 +City Hotel,0,21,2017,September,39,29,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,1,No Deposit,12.0,157.0,0,Transient,134.13,0,1,Check-Out,Patricia Cherry,npearson@example.com,564-999-2129,4517356680891,2025-02-10 +Resort Hotel,0,48,2017,May,22,27,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,214.3,1,1,Check-Out,Colton Dickerson,robert31@example.org,+1-864-398-0892x6204,3508670645599060,2024-11-03 +Resort Hotel,0,0,2017,December,51,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,103.35,0,1,Check-Out,Alyssa Franklin,calvin13@example.org,9842212462,4017406286534,2024-09-13 +Resort Hotel,0,2,2017,August,34,21,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,2,No Deposit,246.0,179.0,0,Transient,250.77,1,1,Check-Out,Kimberly Phillips DDS,noahscott@example.org,567-824-8826,4154711621354578,2024-04-16 +City Hotel,0,40,2017,October,40,2,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,110.37,0,2,Check-Out,Julie Garcia,ysantos@example.org,8645147311,4371560881520021607,2025-08-26 +Resort Hotel,0,0,2017,August,32,10,3,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,18.0,179.0,0,Transient,3.21,0,0,Check-Out,Jennifer Garcia,bradley64@example.net,4295673196,180058909877250,2024-05-10 +City Hotel,0,17,2017,May,22,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Group,139.72,0,2,Check-Out,Mary Walter,qpowell@example.com,001-407-481-0321x155,4434049472913798378,2024-11-26 +Resort Hotel,1,204,2017,July,27,2,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,143.5,0,1,Canceled,Stephanie Franco,hperez@example.org,2542469715,6508923947669203,2025-07-08 +Resort Hotel,0,14,2017,August,33,18,1,10,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,217.62,1,0,Check-Out,Joseph Galloway,fcobb@example.org,001-428-486-6449x072,4786020118433330574,2026-02-18 +City Hotel,0,1,2017,March,13,30,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,B,0,No Deposit,13.0,179.0,0,Transient,63.93,0,1,Check-Out,Matthew Jones,christopher81@example.net,(872)337-6936,213191241537950,2024-07-02 +Resort Hotel,0,55,2017,April,14,5,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,241.0,179.0,0,Transient,49.47,0,0,Check-Out,Travis Hughes,larsonann@example.net,001-671-406-4779x905,4330672964662,2025-12-12 +City Hotel,0,41,2017,March,11,11,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,66.0,179.0,0,Transient,80.9,0,1,Check-Out,Reginald Roach,iadkins@example.net,834-257-1219,4719419230583078,2025-06-22 +City Hotel,1,2,2017,November,48,28,0,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient-Party,86.47,0,0,Canceled,Kathy Odonnell,danielsderek@example.com,(527)414-7088x02282,36949089266726,2025-11-25 +Resort Hotel,0,0,2017,December,49,6,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,239.0,179.0,0,Transient,49.97,1,1,Check-Out,Terry Tucker,christopherhicks@example.com,900.215.7112,4808036241503028,2024-09-20 +City Hotel,0,42,2017,December,51,21,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.5,0,1,Check-Out,Nicholas Martin,victoriabowers@example.com,001-419-488-3936x6477,4731544205715,2025-03-16 +City Hotel,1,169,2017,December,50,13,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,A,0,Non Refund,10.0,179.0,75,Transient,97.67,0,0,Canceled,Michael Bennett,swilson@example.org,280.587.5044x17655,3567160611630717,2024-10-28 +City Hotel,0,13,2017,October,44,29,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,111.61,0,1,Check-Out,Allison Gardner,gibbseric@example.org,+1-939-417-3088x4667,346871758416660,2025-07-06 +Resort Hotel,0,87,2017,May,19,8,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient,77.91,0,2,Check-Out,Jerry Anderson,smithcharles@example.net,001-718-537-5978,3550504513045954,2024-06-17 +City Hotel,0,148,2017,August,34,20,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,195.41,0,3,Check-Out,Ashlee Carr,dominiqueclark@example.com,513-286-0870x07814,3518528163755050,2025-07-20 +City Hotel,0,23,2017,June,24,11,0,2,2,0.0,0,BB,DEU,Complementary,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,125.47,0,0,Check-Out,Wendy Ramos,jacob38@example.net,263.968.0772,4938849776024729227,2024-04-07 +Resort Hotel,0,318,2017,July,30,26,2,6,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,50.98,0,2,Check-Out,Andrew Brown,eayers@example.org,+1-209-935-6453x7236,4904078422381223645,2024-12-27 +City Hotel,0,9,2017,December,2,31,1,2,2,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,63.97,0,1,Check-Out,Justin Smith,douglas54@example.com,9544912916,347646830103612,2025-02-06 +City Hotel,0,11,2017,October,40,3,0,2,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,154.89,0,0,Check-Out,Sarah Dyer,curtiscaroline@example.com,(673)483-5870x8636,6576152168733699,2024-11-29 +City Hotel,0,101,2017,July,27,6,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,211.98,0,1,Canceled,Terry Andersen,jbrown@example.net,001-899-674-5276x972,30390532508271,2024-12-15 +City Hotel,1,403,2017,November,47,20,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.75,0,0,Canceled,Amanda Wilkins,gmedina@example.net,303.643.2924x82338,3519956880339388,2025-07-24 +Resort Hotel,0,60,2017,September,36,8,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,77.81,0,0,Check-Out,Stephanie Ferguson,guerraterri@example.com,+1-283-794-6768x84592,569187476704,2026-01-20 +City Hotel,0,32,2017,November,47,24,2,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,63.45,0,0,Check-Out,Jason Flynn,stevenperkins@example.com,+1-549-976-1197x795,501815795890,2024-11-16 +Resort Hotel,0,11,2017,May,22,25,1,4,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,244.0,179.0,0,Transient,252.0,1,2,Check-Out,Tabitha Ellis,brenda12@example.com,001-599-726-9266x7297,180092147231624,2025-07-14 +City Hotel,0,164,2017,March,11,15,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,142.55,0,2,Check-Out,Brandy Brown,tina96@example.net,651.905.6994,639095751447,2024-12-04 +City Hotel,1,25,2017,July,29,16,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,B,D,1,No Deposit,9.0,179.0,0,Transient-Party,131.06,0,3,No-Show,Benjamin Forbes,kaylafisher@example.net,240-355-0237,5309170744325398,2025-09-08 +City Hotel,1,15,2017,January,2,5,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,26.0,179.0,0,Transient,126.52,0,0,Canceled,Jennifer Henderson,xdelacruz@example.com,(327)838-1679,3553610956276019,2024-07-31 +City Hotel,0,15,2017,October,40,7,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,86.31,0,0,Check-Out,Elizabeth Flores,kellianderson@example.org,001-719-707-6822x60121,4225920852249606,2024-12-26 +Resort Hotel,0,2,2017,May,20,18,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,H,I,1,No Deposit,18.0,179.0,0,Transient,4.17,1,0,Check-Out,Stacey Alvarez,coopermichele@example.org,525.832.7283x221,4682037408813,2024-10-20 +City Hotel,0,38,2017,May,19,4,0,3,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,112.2,0,0,Check-Out,Courtney Johnson,charlesrodriguez@example.net,219.598.3016x19961,213132537180014,2025-07-30 +City Hotel,1,103,2017,June,26,22,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.93,0,1,Canceled,Mr. Ryan Lewis MD,jessicawhite@example.org,585-331-2454,2282098561527291,2025-02-09 +City Hotel,0,104,2017,June,24,15,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,106.72,0,3,Check-Out,Maria Cook,nixonlisa@example.org,001-787-740-0124x71769,675904274577,2025-08-13 +City Hotel,1,34,2017,July,27,2,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,123.01,0,0,Canceled,Daisy Rodriguez,kelly28@example.net,731.848.7777,4105062303564476,2024-09-16 +City Hotel,1,106,2017,December,52,26,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,0,Non Refund,1.0,179.0,62,Transient-Party,63.97,0,0,Canceled,Shawn Fox,steven06@example.org,(856)858-5914,344686070717609,2025-09-10 +Resort Hotel,1,22,2017,January,4,23,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,4.92,1,0,Canceled,Dustin Woodard MD,campbellfrank@example.com,001-279-236-4278x23589,6597569511144313,2024-08-01 +City Hotel,0,17,2017,March,11,11,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.07,0,1,Check-Out,Katelyn Sampson,griffithkeith@example.com,(744)735-8343x0340,4147366692917389,2024-09-18 +City Hotel,1,14,2017,December,52,28,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,1,1,0,E,D,0,No Deposit,10.0,179.0,0,Transient,116.29,0,2,Canceled,Mark Gonzales,bhouston@example.net,399.774.3083x06573,060451503860,2025-11-14 +City Hotel,1,187,2017,October,41,9,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,104.62,0,0,Canceled,Diane Jackson,josephcollins@example.org,839-816-2511,30296245857881,2024-08-05 +City Hotel,0,3,2017,September,37,11,0,2,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,129.28,0,1,Check-Out,Sara Barnett,jporter@example.net,001-528-948-4021x36669,6543385182097275,2024-04-30 +Resort Hotel,0,278,2017,August,34,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,239.0,179.0,0,Contract,64.15,0,2,Check-Out,Chad Castillo,matthew83@example.org,520.309.7093x859,676278489155,2026-02-23 +City Hotel,0,30,2017,March,13,30,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,49.62,0,1,Check-Out,Tracie King,hunter53@example.org,(612)993-3637,4720274886824079,2024-10-30 +Resort Hotel,1,192,2017,July,29,14,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,91.19,0,0,Canceled,Brian Cherry,delacruzmichelle@example.org,295-620-0312,378664384810138,2024-04-22 +Resort Hotel,0,92,2017,March,10,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,28.0,179.0,16,Contract,53.36,0,0,Check-Out,Darrell Aguirre,fschmidt@example.org,(630)409-9146x8816,30076844489041,2026-02-17 +Resort Hotel,0,11,2017,September,36,9,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,52.21,0,0,Check-Out,Sean Woods,jessica49@example.org,001-498-997-1262,4129105909210685482,2025-06-04 +Resort Hotel,1,313,2017,July,29,19,4,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,278.0,179.0,0,Contract,112.42,0,0,Canceled,Andrew Parker,jason94@example.com,(676)804-0584,4240819070818328,2024-10-11 +City Hotel,0,14,2017,March,13,29,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,67.6,0,1,Check-Out,Thomas Meyer,sheilagrant@example.net,439-653-5566,2289023669016842,2025-03-17 +City Hotel,1,253,2017,September,37,15,0,2,2,0.0,0,HB,RUS,Groups,Direct,0,0,0,A,D,0,No Deposit,2.0,179.0,0,Transient-Party,53.55,0,0,Canceled,Jennifer Prince,michael87@example.com,+1-768-729-7877x8861,30241865743557,2024-07-17 +City Hotel,1,20,2017,June,26,24,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,123.4,0,0,Canceled,Evelyn Cole,katiekirby@example.net,418.807.0814x81193,4013820656316184106,2024-11-13 +City Hotel,1,102,2017,April,15,9,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,105.08,0,0,Canceled,James Wilson,rodriguezjonathan@example.net,735.326.5990x525,38985129351332,2025-12-23 +City Hotel,0,126,2017,June,23,1,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,115.03,0,1,Check-Out,Karla Bates,gonzalezedward@example.org,(527)990-8159x3327,4081373692124,2025-06-28 +City Hotel,1,397,2017,June,26,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,63,Transient,127.34,0,1,Canceled,Grace Martinez,arielwilliams@example.net,2807161801,4321712728718382055,2024-08-05 +Resort Hotel,0,0,2017,May,21,22,0,1,2,0.0,0,BB,,Undefined,Corporate,0,0,0,A,A,0,No Deposit,362.0,179.0,0,Transient-Party,72.29,0,0,Check-Out,Mary Turner,ntaylor@example.com,(581)948-9049x45580,3553115692720619,2024-07-30 +City Hotel,0,15,2017,March,10,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Contract,106.93,0,1,Check-Out,Justin Henderson,mjohnson@example.org,+1-845-479-2176x890,4169457419944013,2025-08-31 +City Hotel,0,0,2017,April,17,24,2,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,B,0,No Deposit,15.0,179.0,0,Transient,78.87,0,0,Check-Out,Leonard Armstrong,charlenebarrett@example.org,+1-679-593-0970x14504,4733283776704999,2024-04-21 +City Hotel,0,47,2017,May,18,1,1,5,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,181.91,0,2,Check-Out,Joel Taylor,ogallegos@example.com,513-494-7279,4100157074454619248,2024-05-21 +City Hotel,1,146,2017,July,29,15,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,252.0,0,0,Canceled,Kaitlyn Nelson,nataliebailey@example.net,871.703.7562x8434,373621214081541,2025-02-04 +City Hotel,1,108,2017,March,9,2,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,A,0,Non Refund,28.0,179.0,0,Transient,120.18,0,0,Canceled,Alexander Edwards,hawkinsbrandon@example.com,001-898-846-8896x37778,4486198553544,2025-11-04 +City Hotel,0,58,2017,September,37,10,0,1,2,0.0,0,SC,IRL,Online TA,GDS,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,99.05,0,0,Check-Out,Ashley Black,zachary41@example.net,932.965.1842,3510994927892746,2025-02-09 +City Hotel,1,176,2017,June,25,15,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,102.51,0,0,Canceled,Thomas Hall,kfrazier@example.org,+1-749-722-7412x238,4946713559326,2024-08-15 +City Hotel,1,1,2017,April,18,30,2,0,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,0,0,D,D,0,No Deposit,11.0,221.0,0,Transient,113.32,0,1,No-Show,Joshua Robinson,matthewgarner@example.net,001-382-379-3992x832,3591510718780874,2026-03-16 +City Hotel,0,285,2017,July,30,26,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,74.87,0,0,Check-Out,Chad Harris,davidsanders@example.net,+1-498-549-2111x27716,4308214840761710,2025-11-03 +City Hotel,0,181,2017,March,13,28,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.71,0,1,Check-Out,Nicole Warren,meyeryvette@example.com,001-787-726-9175,341191093162415,2024-11-20 +Resort Hotel,0,34,2017,April,14,8,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,242.0,179.0,0,Transient,135.47,1,2,Check-Out,Hunter Ibarra,aaron56@example.org,+1-204-292-1897x9950,4732468855054272,2025-05-15 +City Hotel,0,202,2017,August,36,31,1,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,E,2,No Deposit,13.0,179.0,0,Transient,252.0,0,3,Check-Out,Jonathan Fisher,qstone@example.org,+1-296-511-4877x05564,3515850351633342,2025-04-25 +Resort Hotel,1,231,2017,October,41,12,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,45.73,0,0,Canceled,Stephanie Bird,kyledixon@example.net,837.483.0126x20367,3584386427053229,2024-08-04 +Resort Hotel,0,171,2017,July,28,8,0,3,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Check-Out,Isaac Watson,kimberlygonzalez@example.net,515-672-1479x450,180070376026493,2024-12-10 +Resort Hotel,1,134,2017,December,49,1,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,80.63,0,0,Canceled,Justin Hansen,april66@example.net,001-378-435-5071x8349,3590715075529670,2025-06-08 +Resort Hotel,0,44,2017,February,8,19,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Transient-Party,40.62,0,0,Check-Out,John Howe,mmitchell@example.org,+1-563-393-5625x0574,180010971512398,2024-09-23 +Resort Hotel,0,0,2017,July,31,30,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,2,No Deposit,251.0,179.0,0,Transient-Party,62.11,1,1,Check-Out,Sandra Riley,charles81@example.net,(410)248-8743x671,6011548673035277,2024-04-29 +Resort Hotel,0,8,2017,July,30,23,0,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Transient,126.32,0,1,Check-Out,John Sims,sydney89@example.com,(966)738-9604x390,2605133404207486,2024-04-03 +Resort Hotel,1,304,2017,August,31,2,2,5,2,0.0,0,HB,,Groups,TA/TO,0,0,0,E,E,0,Non Refund,9.0,179.0,0,Transient,224.97,0,0,Canceled,James Williams,yoneill@example.com,687.539.5941x94284,4259850065274192253,2024-07-30 +Resort Hotel,0,1,2017,October,41,11,0,2,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,77.5,0,0,Check-Out,Rodney Gutierrez,oramirez@example.com,001-468-653-2279x922,180093712351516,2024-06-03 +City Hotel,0,2,2017,August,32,12,2,2,2,1.0,0,BB,ITA,Direct,Direct,0,1,1,D,D,0,No Deposit,10.0,179.0,0,Contract,111.4,0,1,Canceled,James Clayton,iburns@example.com,477.217.3164x7356,213112135998942,2024-04-29 +Resort Hotel,0,0,2017,August,32,6,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,241.0,179.0,0,Transient,208.61,0,0,Check-Out,Jessica Mitchell,staceycarroll@example.net,(711)548-3879x148,6011160178019010,2025-08-29 +City Hotel,1,414,2017,October,43,22,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,88.06,0,0,Canceled,Lacey Vincent,tracygamble@example.com,458-518-9291x8680,3512915044812067,2024-09-25 +City Hotel,1,108,2017,July,30,26,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.96,0,1,Canceled,Kyle Jordan,wongmargaret@example.com,5015033581,30537151744401,2025-12-13 +City Hotel,1,43,2017,December,48,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.4,0,0,Canceled,Maxwell Salas,shelley59@example.com,9813366949,2720944151218439,2024-08-04 +Resort Hotel,0,227,2017,May,18,4,1,5,2,0.0,0,HB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,41.01,1,2,Check-Out,Tommy Walls,zanderson@example.net,001-923-836-0947x3855,4933169545475490,2025-06-08 +Resort Hotel,1,130,2017,May,20,11,2,4,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient,44.15,0,0,Canceled,Anthony Wells,watkinssarah@example.org,647.398.5185,3543125080182051,2024-11-16 +City Hotel,0,94,2017,May,22,30,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,122.63,1,3,Check-Out,Debra Ross,jose80@example.net,+1-942-616-0831x186,180085009653216,2025-03-30 +Resort Hotel,1,1,2017,August,33,14,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,200.3,0,3,Canceled,Sheila Acosta,stevenporter@example.net,001-300-720-2349x448,4964889344738,2025-06-03 +Resort Hotel,0,63,2017,August,34,19,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,A,I,1,No Deposit,239.0,179.0,0,Transient,5.07,0,3,Check-Out,Marilyn Moore,joseph50@example.net,001-860-438-2714,3588812606052274,2024-04-28 +City Hotel,1,106,2017,August,35,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Contract,125.54,0,0,Canceled,Susan Edwards,frankgonzalez@example.net,661-893-4377x82873,4563361904678478172,2025-09-18 +City Hotel,0,7,2017,March,11,14,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,72.81,0,1,Check-Out,Bianca Ortega,csanchez@example.com,+1-919-473-0013x32241,4669473650045282,2024-10-16 +City Hotel,1,40,2017,July,29,17,2,0,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient,215.24,0,0,Canceled,Katie Orozco,collierhannah@example.com,726-880-7835x3218,676158117496,2024-09-13 +City Hotel,1,10,2017,November,48,27,2,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.92,0,0,Canceled,Samantha Brown,morganstevenson@example.org,498.513.9355x6282,4184472323145434,2024-08-24 +City Hotel,1,414,2017,May,19,4,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,24.0,179.0,0,Transient-Party,158.67,0,0,Canceled,Christina Rodriguez,jermaine57@example.org,+1-235-967-2759x58467,4938632673019963,2025-01-31 +Resort Hotel,0,233,2017,October,43,25,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,43.14,0,0,Check-Out,Jacqueline Schroeder MD,daniellewalker@example.com,+1-499-867-9429,3566463093548402,2024-11-05 +Resort Hotel,1,163,2017,December,51,17,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,31.0,179.0,0,Transient-Party,127.95,0,0,Canceled,Amber West,brittanyjackson@example.net,001-750-268-2812,060432879546,2025-11-08 +City Hotel,0,37,2017,October,41,9,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,62,Transient,92.55,0,0,Check-Out,Meghan Powell,ilopez@example.com,001-217-896-6726x6922,502077535032,2024-11-25 +City Hotel,0,94,2017,May,20,12,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,123.63,0,0,Check-Out,Sharon Cervantes,jeffrey94@example.net,+1-880-252-8475,6593343260765809,2024-04-16 +City Hotel,0,102,2017,March,14,30,1,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.88,0,1,Check-Out,Michael King,christopher35@example.org,001-506-964-9999x4341,4617407210921411881,2024-12-08 +Resort Hotel,0,50,2017,August,32,11,2,5,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient-Party,133.45,0,1,Check-Out,Heather Sampson,pbarnes@example.org,+1-442-863-3281,2277283101521445,2026-03-13 +Resort Hotel,0,94,2017,March,12,22,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,80.0,0,0,Check-Out,Christopher Irwin,norman41@example.org,+1-585-465-3081x25169,060406409767,2025-10-08 +City Hotel,1,100,2017,June,23,4,2,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,113.04,0,0,Canceled,Susan Scott MD,wangmary@example.com,+1-966-407-1150x863,4329451960297,2024-11-11 +City Hotel,1,135,2017,July,27,5,3,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,104.34,0,2,No-Show,Elizabeth Powers,uhuff@example.net,262.576.6402x1179,30349263688215,2025-03-19 +City Hotel,1,65,2017,December,49,4,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,81.45,0,1,No-Show,Thomas Nunez,kyledelgado@example.net,001-979-401-9039,3584732910167606,2025-04-21 +City Hotel,0,0,2017,March,11,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,45.0,0,Transient,44.55,1,0,Check-Out,Amy Flores,blairrebecca@example.org,001-398-668-7610x6172,6511838455570608,2025-03-08 +City Hotel,0,26,2017,October,41,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,65,Contract,91.21,0,0,Check-Out,Jonathan Henry,nkent@example.org,+1-795-854-1398x3180,3566419328995198,2024-11-03 +City Hotel,0,14,2017,May,18,2,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,1.76,0,2,Check-Out,Angela Ferrell,nicholas68@example.com,(489)369-6048,4474672856986405053,2025-04-25 +City Hotel,0,12,2017,January,2,1,0,1,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,27.0,179.0,0,Transient-Party,83.04,0,0,Check-Out,Jordan Haynes,harriselizabeth@example.com,531-737-5227,060470082870,2025-11-19 +City Hotel,1,1,2017,December,49,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.91,0,0,Canceled,Cheryl Roberson,nelsonholly@example.net,396-429-5631x45365,6582859619969514,2024-05-13 +City Hotel,0,30,2017,November,45,5,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,21.0,179.0,0,Contract,62.8,0,0,Check-Out,Kirsten Griffith,bcunningham@example.com,001-596-296-7047x37078,3563256488121824,2024-11-03 +Resort Hotel,0,3,2017,February,7,15,1,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,179.03,1,3,Check-Out,Kyle Mccullough,laurengreen@example.com,3852134578,2221246139318503,2024-12-02 +City Hotel,1,383,2017,July,28,15,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,1,A,A,0,Non Refund,25.0,45.0,0,Transient,102.91,0,0,Canceled,Eugene Frederick Jr.,jeffreymaldonado@example.net,+1-241-330-7712x0844,3578184503664151,2024-05-21 +Resort Hotel,0,126,2017,August,35,30,2,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,193.21,0,0,Check-Out,Benjamin Cooper,tgarrison@example.org,+1-309-422-8975x1611,4355003034766281646,2025-03-29 +Resort Hotel,0,41,2017,March,11,12,2,5,2,1.0,0,BB,ITA,Direct,Direct,0,0,0,D,F,0,No Deposit,343.0,179.0,0,Transient,49.33,0,0,Check-Out,Victor Brandt,sjones@example.org,(557)259-3578,6011067036711441,2024-07-19 +City Hotel,0,95,2017,July,29,13,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,129.95,0,1,Check-Out,Sara Martin,melaniehenry@example.com,+1-500-838-3210x36484,3547779234840331,2025-12-21 +City Hotel,1,380,2017,October,41,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,266.0,179.0,0,Transient,77.36,0,0,Canceled,Robert Garcia,bbishop@example.com,(832)300-9747x61117,4985535657849846,2025-03-28 +City Hotel,0,6,2017,January,2,1,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,92.27,0,1,Check-Out,Denise Hall,heather93@example.net,891-751-4281x618,060453976072,2024-07-10 +City Hotel,1,0,2017,February,7,14,2,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,160.89,0,0,No-Show,Danielle Burch,yjohnson@example.org,4149840598,30038976866917,2025-02-06 +Resort Hotel,0,12,2017,September,38,15,2,7,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Group,51.46,0,0,Check-Out,Tyler Ellis,patrick60@example.com,986.781.5483,4653396559597004,2024-09-11 +Resort Hotel,0,27,2017,May,21,24,0,1,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,79.97,1,0,Check-Out,Mason Mitchell,stephanie41@example.com,001-853-346-9048x3629,349800092810624,2026-03-06 +Resort Hotel,0,100,2017,March,12,20,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,61.69,0,2,Check-Out,Mitchell Thomas,ronniefrost@example.net,(693)659-5123x9759,4443784005298,2024-12-20 +Resort Hotel,0,0,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,2,No Deposit,17.0,260.0,0,Transient,37.08,1,0,Check-Out,Haley Bryant,phillipsrachel@example.com,+1-903-201-8416x6351,6011781098723959,2026-03-06 +City Hotel,0,45,2017,April,14,2,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,203.2,0,2,Check-Out,Thomas Porter,diazeric@example.net,+1-312-680-5292x0704,4414318767687,2025-12-05 +City Hotel,1,38,2017,December,49,5,2,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,131.84,0,2,Canceled,Diane Zimmerman,yateskaitlyn@example.net,7374973942,213135547908043,2025-04-10 +Resort Hotel,0,0,2017,April,15,10,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,135.51,1,0,Check-Out,Scott Kennedy,swilson@example.net,+1-593-706-2876x6533,6011807912198217,2024-11-06 +City Hotel,0,94,2017,October,41,9,1,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient-Party,63.92,0,0,Check-Out,Dennis Fields,uowens@example.com,001-234-508-9535x910,3576541847672723,2025-06-09 +City Hotel,0,1,2017,February,6,9,2,1,1,0.0,0,BB,NLD,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,42.72,0,0,Check-Out,Donald Oliver,brittanyjames@example.org,858-560-6289x3200,573652544236,2025-07-16 +City Hotel,0,46,2017,April,14,5,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.58,0,2,Check-Out,Sean Rodgers,allenchristopher@example.net,(279)938-2554x6425,6011825595646104,2026-03-24 +City Hotel,0,0,2017,August,32,6,2,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,L,E,0,No Deposit,17.0,179.0,0,Transient,208.63,1,0,Check-Out,Mary Phillips,villasamantha@example.com,241-380-9462x698,3577265286668716,2025-05-13 +City Hotel,0,138,2017,March,13,31,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,99.15,0,0,Canceled,Alexandra Hayes,jbuck@example.com,+1-615-335-5236,36974591174341,2024-11-04 +City Hotel,0,42,2017,February,5,2,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.65,0,0,Check-Out,Mary Jones,tannerjohnson@example.com,001-989-529-9889x6747,2249887366437892,2026-02-07 +City Hotel,0,0,2017,July,29,20,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,136.58,0,0,Check-Out,Kenneth Hansen,ajohnson@example.net,(760)564-5778x099,3536392086510193,2026-01-18 +Resort Hotel,0,91,2017,August,32,8,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,65.04,0,1,Check-Out,Christopher Romero,allison27@example.net,+1-331-523-8923x29407,060400342543,2026-01-24 +City Hotel,0,51,2017,April,17,21,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,80.91,0,3,Check-Out,Danielle Gray,josephedwards@example.net,+1-519-589-6888x723,213173529334102,2024-03-28 +City Hotel,1,100,2017,December,49,9,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,54.73,0,0,No-Show,Bryan Shaw,jcollins@example.org,+1-873-389-6474x6643,378118918132816,2025-10-29 +Resort Hotel,1,2,2017,October,41,12,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,55.11,0,1,Canceled,Jonathan Horne,sullivanjames@example.com,752-335-2922,376476778341238,2024-10-21 +City Hotel,0,17,2017,October,41,11,1,0,2,0.0,0,SC,PRT,Complementary,Corporate,1,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,1.66,0,0,Check-Out,Raymond Ponce,brandoncook@example.net,762.577.7706x320,676165791960,2025-09-20 +City Hotel,0,0,2017,February,6,9,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Catherine Black,jonathan13@example.net,794-568-8058,4115929849844,2024-10-07 +City Hotel,1,150,2017,March,12,16,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,15,Transient,80.37,0,0,Canceled,Gordon Cox,cjohnson@example.com,(702)418-0907x86914,3518313594750768,2025-11-02 +Resort Hotel,1,96,2017,April,18,30,0,3,2,0.0,0,FB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,89.0,179.0,0,Transient,82.02,0,0,Canceled,Laura Ward,victoriamccann@example.org,001-296-450-9151x972,3544402006333830,2024-07-31 +Resort Hotel,1,198,2017,August,31,1,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,F,0,No Deposit,239.0,179.0,0,Transient,64.99,1,3,Canceled,Kendra Green,burgessterri@example.net,889-275-0677x08666,370669455132161,2024-10-24 +City Hotel,1,105,2017,May,22,25,2,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,138.35,0,0,Canceled,William Mcclain,bassalexander@example.net,905-318-4081x42655,4603748254064,2025-11-25 +City Hotel,0,126,2017,August,34,24,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,175.54,0,2,Check-Out,Bruce Hernandez,alexander24@example.net,6854510062,4696131621530434907,2024-12-02 +City Hotel,1,216,2017,July,28,9,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,Non Refund,1.0,179.0,0,Transient,124.42,0,0,Canceled,Donna Ellison,brownrandy@example.org,+1-634-407-5649x83421,3573535493282087,2025-03-08 +City Hotel,0,92,2017,November,45,9,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,60,Transient,86.92,0,0,Check-Out,Mitchell Mcdonald,julie12@example.org,+1-846-797-2199x164,4530629745367,2024-09-22 +Resort Hotel,0,105,2017,April,16,14,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,1,No Deposit,34.0,179.0,0,Transient-Party,62.93,0,0,Check-Out,Raymond Perry,mlewis@example.org,+1-501-259-3429x893,213103326549982,2024-08-31 +City Hotel,0,98,2017,November,48,26,2,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,184.0,0,Transient-Party,98.66,0,0,Check-Out,Andrea Gross,phamtara@example.org,374-446-8782x64732,3535727557730039,2025-04-20 +Resort Hotel,1,25,2017,August,34,18,2,5,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Lisa Carter,vli@example.com,001-491-640-8043x354,180053219381218,2025-10-07 +Resort Hotel,0,28,2017,December,49,3,1,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,43.63,0,0,Check-Out,Jerry Brady,robert67@example.org,757.852.1578x225,4521736494059836,2024-05-13 +City Hotel,0,77,2017,July,28,13,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.27,0,1,Check-Out,Debra Nguyen,gregoryellis@example.net,001-809-621-4757x77994,3502482963783888,2024-05-20 +City Hotel,0,102,2017,June,25,20,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Group,83.19,0,1,Check-Out,John Shea,hortonmark@example.com,254-998-0914x076,4826621186235732,2025-08-13 +City Hotel,0,25,2017,June,26,25,0,4,1,0.0,0,SC,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,113.66,0,1,Check-Out,Becky Mills,danny13@example.net,+1-819-214-3071x3707,30259751453073,2024-09-14 +City Hotel,0,150,2017,November,44,3,1,3,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,238.0,179.0,0,Transient,102.62,0,1,Check-Out,Brian Jones,taylorjerry@example.org,001-524-626-2857,377870010260967,2025-03-24 +City Hotel,1,1,2017,October,43,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,102.78,0,0,Canceled,Mark Davis,kimberly27@example.net,8538686996,4231801625564,2025-08-07 +Resort Hotel,1,82,2017,April,16,19,4,7,2,1.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,75,Transient,138.55,0,1,Canceled,Angela Scott,oliverdavid@example.com,+1-524-424-5903x10134,3543498620275846,2024-09-10 +City Hotel,1,278,2017,July,27,2,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,233.47,0,0,Canceled,Vanessa Wagner,richmondeddie@example.com,+1-296-945-6566x5166,6011773196371989,2025-02-18 +City Hotel,0,162,2017,September,39,23,2,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,78.0,179.0,0,Transient,209.2,0,1,Check-Out,John Bonilla,boonenancy@example.net,796.750.4628,2297597711209877,2026-02-21 +Resort Hotel,0,33,2017,August,32,8,4,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,251.51,0,1,Check-Out,Anthony Foley,burnsmichael@example.com,+1-970-765-6047x67937,3576184314538828,2024-09-19 +City Hotel,1,48,2017,March,10,6,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.73,0,1,Canceled,Marc Arroyo,cody35@example.net,(688)868-2252x34945,345309896654554,2024-11-06 +Resort Hotel,0,36,2017,August,33,15,0,4,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,246.0,179.0,0,Transient,252.0,0,1,Check-Out,Margaret Cantu,stevenwood@example.net,624.415.2843,4851378387990177880,2025-08-05 +Resort Hotel,1,247,2017,July,29,16,2,5,2,2.0,0,HB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,112.19,0,0,Canceled,Daniel Wallace,michellejohnson@example.net,001-927-705-6382,4975554103969,2025-03-17 +Resort Hotel,0,35,2017,September,36,8,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,284.0,179.0,0,Transient-Party,65.59,0,1,Check-Out,David Douglas,mark03@example.net,001-591-594-6020x7027,3504039246307808,2024-08-10 +City Hotel,0,3,2017,October,43,26,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.31,0,2,Check-Out,Virginia Anderson,cheryl28@example.org,(575)722-7411x634,4867774201121,2024-10-15 +City Hotel,1,128,2017,June,24,9,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.37,0,2,Canceled,Christian Rosario,robert36@example.org,(892)609-0672x19600,2292058079782794,2024-08-22 +City Hotel,1,388,2017,May,19,4,1,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,97.35,0,0,Canceled,Joseph Scott MD,fgarcia@example.net,001-873-689-6327x22315,4371058136406205,2025-09-08 +Resort Hotel,0,2,2017,December,51,20,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,C,C,1,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,1,Check-Out,Mr. Rick Abbott,charlesrogers@example.org,367.406.8215x2980,4032722330107146273,2024-05-30 +City Hotel,0,143,2017,March,10,5,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,203.83,0,2,Check-Out,Larry Holmes,tgarrett@example.org,344.793.4233,581633922009,2025-01-07 +Resort Hotel,0,259,2017,April,17,23,2,5,2,0.0,0,HB,DEU,Direct,Direct,0,0,0,D,D,2,No Deposit,332.0,179.0,0,Transient-Party,162.05,0,0,Check-Out,Gary Graves DDS,rscott@example.org,001-781-399-3180x575,213149618116287,2025-04-08 +City Hotel,0,414,2017,September,36,8,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,134.82,0,0,Check-Out,Lisa Houston,robertruiz@example.net,+1-360-820-0089x6234,2291799574037488,2024-08-08 +City Hotel,1,154,2017,December,50,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,109.58,0,1,Canceled,Keith Rodriguez,fwhite@example.net,4826937570,379484538220939,2026-02-21 +City Hotel,1,414,2017,August,33,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,63.14,0,0,Canceled,Heidi Adams,jason11@example.org,001-283-463-1789x3337,213183989186173,2024-12-12 +City Hotel,0,177,2017,July,29,17,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,8.0,179.0,0,Transient,250.03,0,2,Check-Out,Renee Gardner,wintersandrew@example.com,001-324-676-7558x341,3531400242476608,2024-10-31 +Resort Hotel,0,46,2017,March,13,26,2,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,101.78,0,2,Check-Out,Jonathon Cox,joshuasmith@example.com,+1-961-345-2140,4407485489861,2025-09-26 +City Hotel,0,40,2017,May,20,16,1,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,138.57,0,3,Check-Out,Stefanie Hernandez,dawnperez@example.org,+1-579-269-0222x750,345090104862953,2025-11-07 +Resort Hotel,0,49,2017,April,16,17,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,311.0,179.0,0,Transient,50.44,0,1,Check-Out,Robert Newton,pnewman@example.com,949-929-2751x7336,30385859333105,2024-06-05 +Resort Hotel,0,160,2017,August,32,9,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,249.0,179.0,0,Transient,139.03,0,1,Check-Out,Jason Hardin,sandrawelch@example.com,+1-816-593-8164x0492,501893522653,2024-07-18 +City Hotel,1,20,2017,November,47,24,1,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,175.86,0,0,Canceled,Larry Ray,troy10@example.net,659.416.7139x18637,348713613229557,2024-11-15 +Resort Hotel,0,93,2017,June,25,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,40.3,0,0,Check-Out,Timothy Griffin,duartecindy@example.net,607-797-5963,3513754018579652,2024-07-21 +City Hotel,1,144,2017,June,26,24,0,2,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,103.85,0,0,Canceled,Sandra Mcknight,johnsonbrandi@example.org,+1-467-306-0186x59357,342442418936515,2025-05-04 +City Hotel,1,112,2017,May,21,24,1,4,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,46.17,0,2,Canceled,Heather Rivera,amontoya@example.com,261-689-1798x68734,4347530346574926447,2025-04-07 +Resort Hotel,0,1,2017,January,4,26,0,1,1,0.0,0,BB,,Corporate,TA/TO,0,0,0,H,D,1,No Deposit,11.0,179.0,0,Transient,40.94,1,1,Check-Out,Tyrone Jones,mary08@example.net,816-997-4635,3507044842884660,2024-10-18 +City Hotel,0,253,2017,July,29,22,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,26.0,179.0,0,Contract,100.51,0,2,Check-Out,Laura Schroeder,daniel36@example.org,001-845-264-6927,4184595800445297,2024-06-19 +Resort Hotel,0,0,2017,March,10,4,0,1,1,0.0,0,HB,PRT,Direct,Direct,1,0,1,A,I,1,No Deposit,15.0,179.0,0,Transient,45.69,1,1,Check-Out,Maurice Davidson,kellypamela@example.net,(654)434-8696x18792,6506928932220492,2024-09-26 +City Hotel,1,196,2017,June,26,26,0,3,2,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,154.6,0,0,Canceled,Erin Reyes,thomasandrew@example.com,(224)868-4041x52827,30441619482441,2025-04-14 +City Hotel,0,276,2017,July,30,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,128.85,0,0,Check-Out,Ronnie Curry,davismatthew@example.com,272-307-4444x46371,503837639874,2025-08-31 +City Hotel,1,134,2017,June,24,16,1,0,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,G,E,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Jamie Mccoy,wheelersherry@example.com,(239)501-6379,4175374594784761,2025-11-14 +Resort Hotel,0,26,2017,October,40,4,1,6,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,61,Contract,83.61,0,1,Check-Out,Robert Pham,dconner@example.com,521.207.8069x04119,3594783598411871,2025-09-20 +Resort Hotel,0,1,2017,September,36,5,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,1,A,A,2,No Deposit,10.0,179.0,0,Transient,50.81,0,2,Check-Out,Carolyn Rice,trevordaniels@example.com,(724)241-5475x742,378705102533757,2024-07-06 +Resort Hotel,1,49,2017,November,45,5,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,78.49,0,0,Canceled,Leslie Hart,matthewingram@example.com,343.895.9031,348696661456653,2025-02-03 +City Hotel,0,155,2017,July,30,23,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,134.15,0,1,Check-Out,Samantha Santiago,emoore@example.org,001-971-724-5906x66777,4225108645796170,2025-05-13 +Resort Hotel,0,91,2017,March,11,11,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,178.05,0,0,Check-Out,Sherry Brown,xkeller@example.com,001-859-955-2119x34810,676340614244,2025-09-07 +Resort Hotel,0,10,2017,September,37,9,3,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient-Party,160.43,0,0,Check-Out,Bryan Martinez,samuelbernard@example.com,931.857.7976x947,213134165668575,2026-02-21 +Resort Hotel,0,9,2017,August,31,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,238.0,179.0,0,Transient,107.39,1,1,Check-Out,Jose Pearson,vharris@example.org,(320)201-6646x508,4424560425863113782,2025-03-12 +City Hotel,0,10,2017,November,47,19,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,92.49,0,1,Check-Out,Rachel Lee,patricia03@example.org,(903)831-3340x29433,4035008979020266572,2025-07-26 +Resort Hotel,1,315,2017,September,36,1,1,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,110.9,0,0,Canceled,April Mccullough,josephtaylor@example.net,001-543-418-3365,4535963720656037,2025-02-20 +Resort Hotel,0,51,2017,March,14,31,1,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,49.21,0,1,Check-Out,Sandra Reyes,wendylewis@example.com,+1-285-684-4456x40950,180084296793736,2025-08-12 +City Hotel,1,410,2017,September,36,9,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,78.74,0,0,Canceled,Carolyn Hawkins,cunninghamryan@example.com,001-700-951-2952x61057,2230583173340954,2025-12-08 +Resort Hotel,1,144,2017,March,13,31,0,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,97.19,0,0,Canceled,Susan Sutton,patriciaodom@example.net,+1-802-663-8152,3598731310044625,2025-12-17 +City Hotel,0,143,2017,August,33,12,3,6,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,136.34,0,1,Check-Out,Tammy Jimenez,youngkatherine@example.org,284.452.9133,2266219241834531,2026-01-29 +Resort Hotel,0,2,2017,October,40,1,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,28.0,45.0,0,Transient-Party,49.25,0,0,Check-Out,Rebecca Hampton,michael54@example.net,(333)419-2949x24947,2720624796025262,2026-02-12 +City Hotel,0,99,2017,September,39,23,0,2,2,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,130.5,0,0,Check-Out,Thomas Rhodes,pamela77@example.org,001-368-425-9473x0028,3548760646928137,2025-03-09 +City Hotel,0,160,2017,March,13,23,2,4,1,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient,114.18,0,0,Check-Out,Cory Jones,campbellchristine@example.com,2063709455,3519811407419546,2025-08-12 +Resort Hotel,1,158,2017,August,35,31,0,3,1,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,88.15,0,2,Canceled,Carla Green,samantha22@example.com,494.719.3207,36891647930205,2025-10-03 +Resort Hotel,0,0,2017,August,35,30,2,3,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,A,G,1,No Deposit,42.0,179.0,0,Transient,224.43,0,0,Check-Out,Kimberly Anderson,michael32@example.net,001-296-877-4530x87447,4316634895016274,2025-03-11 +Resort Hotel,0,0,2017,October,44,29,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,50.79,0,2,Check-Out,Jill Griffin,stephensashley@example.net,543-732-8070,3520647522480279,2024-07-27 +Resort Hotel,1,113,2017,May,19,9,1,3,2,0.0,0,Undefined,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,83.94,0,0,Canceled,Brent Callahan,tcruz@example.org,(702)875-7983x084,2708129263538868,2025-06-24 +City Hotel,1,414,2017,July,31,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.16,0,0,Canceled,Matthew Adams,martinanita@example.com,547.689.6775x3563,630463243398,2024-10-09 +City Hotel,1,158,2017,September,36,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,79.47,0,0,Canceled,Ashley Mccarthy,nguyenmichael@example.com,737-581-8124,347869886834274,2025-02-04 +Resort Hotel,0,2,2017,March,12,21,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,237.0,179.0,0,Transient,116.15,1,1,Check-Out,Devin Costa,steven65@example.com,+1-208-826-9139x69652,639012709783,2025-03-05 +City Hotel,0,47,2017,October,43,24,2,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,172.85,0,0,Check-Out,Valerie Hines,lchavez@example.com,(980)639-0738,5165108419087375,2025-10-05 +City Hotel,0,0,2017,July,31,31,1,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,184.47,0,0,Check-Out,Mark Caldwell,wvargas@example.net,+1-666-902-5993x86961,4628968137444669,2025-08-24 +City Hotel,0,68,2017,August,32,7,0,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,E,1,No Deposit,16.0,179.0,0,Transient,243.44,1,3,Check-Out,Abigail Andrews,josephbond@example.org,8955979348,4424204899838708,2025-08-05 +Resort Hotel,1,46,2017,May,21,21,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,86.85,0,0,Canceled,Sandra Wang,mendezmallory@example.org,823-453-3863x4915,4220608443052184,2024-09-24 +Resort Hotel,0,184,2017,March,11,15,0,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,12.0,222.0,0,Transient-Party,73.96,0,0,Check-Out,Maurice Anthony,cindy04@example.net,9183405036,4816888413045406920,2026-03-10 +City Hotel,0,20,2017,February,7,10,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.12,0,1,Check-Out,Thomas Wade,keithclark@example.org,+1-248-531-1626,5208089927092215,2024-09-08 +Resort Hotel,0,25,2017,May,19,6,0,2,2,1.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,H,I,1,No Deposit,27.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Gary Holland,garyryan@example.net,745.774.1016x39043,4880794981345496873,2024-08-27 +City Hotel,1,0,2017,February,5,2,2,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,17.0,179.0,0,Transient,44.98,0,0,No-Show,Michael Huang,hgreen@example.com,7192054941,4631152513923,2025-03-14 +City Hotel,0,148,2017,July,27,5,0,1,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,100.72,0,0,Check-Out,Brandon Velez,raymondaguirre@example.com,(276)794-6998,30189986524283,2024-09-22 +City Hotel,0,13,2017,May,18,5,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,200.2,0,1,Check-Out,Teresa Davis,wberry@example.com,734-892-8868x608,3550356751452537,2025-08-17 +City Hotel,0,168,2017,June,25,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,90.14,0,0,Check-Out,Jodi Osborn,andresmith@example.net,(861)522-7924x1646,4596345085883,2026-02-28 +City Hotel,0,4,2017,August,34,23,0,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,E,A,0,No Deposit,29.0,179.0,0,Transient,218.89,1,2,Check-Out,Kent Hill,petersenaaron@example.com,(947)810-2631,30397847628611,2025-07-18 +City Hotel,0,49,2017,July,28,14,2,5,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,159.08,0,1,Check-Out,Jacqueline Jordan,thompsondaniel@example.net,8556408670,379906183413617,2025-12-08 +Resort Hotel,1,43,2017,December,2,31,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,42.55,0,1,Canceled,Lisa Shaffer,nelsonangela@example.net,(206)731-4300x213,4660286497901,2025-02-08 +Resort Hotel,0,0,2017,July,30,26,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,50.69,0,0,Check-Out,Melissa Hogan,norma83@example.org,001-232-785-7017x921,3564822444493927,2024-10-21 +City Hotel,0,31,2017,May,19,8,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,143.94,1,1,Check-Out,Michelle Brown,kvargas@example.net,459.769.7074x517,4954066787742,2026-01-29 +City Hotel,0,23,2017,August,31,4,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,170.0,179.0,0,Transient-Party,112.47,0,0,Check-Out,Dillon Smith,garysmith@example.com,268.376.1409,4188552721581805,2026-01-18 +City Hotel,1,203,2017,May,22,27,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,90.72,0,0,Canceled,William Myers,eric65@example.net,(248)345-1439x996,4321422932975725,2025-09-03 +City Hotel,0,35,2017,October,41,11,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,79.67,0,3,Check-Out,Jesse Benson,jessicarios@example.org,698.270.3488,570046186690,2025-10-15 +City Hotel,1,278,2017,October,40,5,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Contract,35.68,0,0,Canceled,Jason Day,rmccarthy@example.org,3564281795,3537059326295823,2024-10-10 +City Hotel,1,98,2017,June,25,16,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,147.04,0,1,No-Show,Tanya Cox,collinsjames@example.com,+1-810-388-3741x63101,4540192055196269,2025-06-28 +City Hotel,0,95,2017,December,49,7,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,131.59,0,1,Check-Out,Corey Taylor,donaldhill@example.net,(558)521-9314,630483390906,2024-07-25 +City Hotel,1,135,2017,July,31,30,0,2,1,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.93,0,0,Canceled,Karen Turner,benjamin98@example.net,744.398.3962x9634,30007164379884,2026-03-11 +City Hotel,1,13,2017,February,5,3,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,106.4,0,0,Canceled,Gail Hamilton,michaelsmith@example.net,885-564-3790x65728,30331642270931,2024-11-02 +City Hotel,0,47,2017,November,45,8,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,26.0,179.0,0,Transient-Party,64.81,0,0,Check-Out,Alex Goodwin,ygardner@example.net,(324)928-2068,4626725487878,2024-05-12 +City Hotel,0,0,2017,November,47,19,0,1,2,0.0,0,SC,FRA,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,0.72,0,0,Check-Out,Daisy Brown,lfuentes@example.org,(602)352-1617x478,2272168458751023,2025-05-10 +Resort Hotel,0,40,2017,September,36,3,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient,115.05,0,0,Check-Out,Stephanie Simmons,garycarson@example.com,001-412-744-5362x5086,3517226299686619,2024-10-10 +City Hotel,0,53,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,106.29,0,0,Check-Out,Autumn Warner,emilysoto@example.com,670.376.0302,4959924109949713,2025-05-28 +City Hotel,1,50,2017,August,32,9,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.91,0,0,Canceled,Sharon Massey,austinderek@example.org,+1-334-357-6429x351,4872526008405202116,2025-03-24 +Resort Hotel,0,65,2017,October,40,2,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,77.93,1,2,Check-Out,Tiffany Cook,fsnow@example.org,687-762-8676,4266637028229,2024-10-12 +City Hotel,0,405,2017,October,40,5,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,83.98,0,2,Check-Out,Stephanie Robinson,qmacdonald@example.org,4084119064,3598838241993562,2024-12-26 +Resort Hotel,0,29,2017,January,5,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,307.0,179.0,0,Transient-Party,51.13,0,1,Check-Out,Alexandria Harris,brian32@example.com,447-871-1438,4222519371160924614,2024-11-14 +Resort Hotel,1,151,2017,March,11,11,2,5,2,0.0,0,Undefined,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,75,Contract,102.48,0,0,Canceled,Elizabeth Daniels,washingtonveronica@example.com,+1-927-255-8955x7795,213174325815294,2025-09-02 +City Hotel,0,4,2017,August,33,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,200.18,1,1,Check-Out,John Rice,foxkathy@example.net,(405)804-1326x8520,4481925874885658,2024-06-08 +City Hotel,0,264,2017,September,37,9,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,75,Transient-Party,99.87,0,0,Check-Out,Sandra Hernandez,mary69@example.net,323-845-8997,3595175576788462,2025-06-26 +City Hotel,1,1,2017,July,28,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,331.0,0,Transient,4.22,0,0,Canceled,Timothy Pratt,mmiddleton@example.net,001-237-415-7851x731,5109473876426741,2026-03-03 +City Hotel,0,407,2017,August,33,16,0,4,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.73,0,0,Check-Out,Guy Brown,marthaklein@example.org,(912)824-7217x8015,30534541273241,2025-01-14 +City Hotel,0,16,2017,March,10,5,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,61.0,0,Transient-Party,62.77,0,0,Check-Out,Ryan Reynolds,marktaylor@example.com,001-472-791-9127,2490793433055426,2024-12-21 +City Hotel,1,150,2017,March,13,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,104.08,0,1,Canceled,Larry Robinson,jeremymarsh@example.com,286-495-8089,378437296875568,2024-10-10 +City Hotel,0,19,2017,August,33,13,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,175.11,0,2,Check-Out,Julia Rivera,staceyleonard@example.com,867.974.6432x6575,3517720434743350,2024-11-22 +City Hotel,1,39,2017,May,18,2,1,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,111.87,0,1,Canceled,Bryan Stevens,alexandria74@example.net,+1-486-567-8605x37363,5447449930194948,2024-12-19 +City Hotel,0,46,2017,October,43,27,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,6.0,179.0,0,Transient,127.17,0,1,Check-Out,Margaret Becker,sarahhorne@example.com,340-623-4808x193,4985976527924398761,2025-10-25 +City Hotel,1,394,2017,June,26,28,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,119.79,0,0,Canceled,Jeffrey Harris,moralestina@example.com,+1-324-245-3373x0076,3542298325805322,2025-08-09 +City Hotel,0,155,2017,April,16,14,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,131.56,0,1,Check-Out,Veronica Gutierrez,jessicanelson@example.net,(601)237-2338,4624948326059894,2024-05-16 +City Hotel,0,0,2017,February,9,26,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,E,0,No Deposit,33.0,179.0,0,Transient-Party,40.15,0,0,Check-Out,Timothy Hughes,prodgers@example.org,001-848-212-8472,060423328883,2025-04-10 +City Hotel,1,12,2017,June,26,24,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.7,0,1,Canceled,Joel Gilbert,qpowers@example.net,001-395-590-8400x6918,213143482382059,2024-06-16 +City Hotel,1,393,2017,July,27,3,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,60.55,0,0,Canceled,Sharon Hernandez,torresjohnny@example.org,568-610-9191,30494165527572,2025-08-27 +City Hotel,0,12,2017,July,27,4,1,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,75.83,0,1,Check-Out,Kayla Smith,parkerjames@example.com,(328)296-0735x11519,4005243786249480852,2025-02-18 +City Hotel,1,77,2017,August,33,14,1,1,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,205.51,0,0,Canceled,Katherine Holmes,xwalker@example.com,+1-798-361-1930x3656,3584932233284738,2024-05-22 +City Hotel,0,25,2017,January,2,9,0,2,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,1,No Deposit,179.0,179.0,0,Transient,118.29,0,0,Check-Out,Jodi Hart,stephen43@example.net,001-515-500-7938,180025279011059,2024-12-06 +Resort Hotel,0,146,2017,December,50,10,0,6,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,133.99,0,2,Check-Out,Kathy Scott,riveralarry@example.net,327-328-5146x4643,4670053167172956,2025-12-07 +City Hotel,0,97,2017,March,12,21,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,79.12,0,0,Check-Out,Gregory Powell,michael23@example.net,001-556-671-0992x379,3507316544177233,2024-11-24 +City Hotel,1,204,2017,September,36,5,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.15,0,0,Canceled,Jenna Parks,jeremyneal@example.net,644.339.6795x796,3517027106674503,2025-02-04 +Resort Hotel,0,147,2017,July,30,20,3,3,2,2.0,0,HB,FRA,Online TA,Direct,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,141.14,1,0,Check-Out,Jillian King DDS,garzacatherine@example.com,+1-441-892-4313x2721,3513192148197030,2024-06-19 +Resort Hotel,1,233,2017,October,42,15,0,2,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,D,E,0,No Deposit,243.0,179.0,0,Transient,89.72,0,0,Canceled,Cynthia Salas,wrightmichael@example.org,001-474-306-2481x76707,4912761262197,2025-03-28 +City Hotel,1,153,2017,July,27,5,2,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.75,0,1,Canceled,Laura Alexander,lamberttonya@example.org,402.596.3178x91488,3585148021645019,2025-07-14 +Resort Hotel,1,71,2017,May,22,25,0,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,48.35,1,0,Canceled,Dawn Olsen,thompsonrachael@example.net,(741)246-2938x9295,213155454597258,2024-04-25 +Resort Hotel,1,10,2017,December,49,2,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient-Party,47.89,0,0,Canceled,Heather Wilson,virginia69@example.com,(704)880-8482x31712,349791996280214,2025-09-04 +City Hotel,0,16,2017,December,49,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,110.12,1,1,Check-Out,Sarah Pham MD,hamiltonrobert@example.com,828.889.5322,4106142911200900,2024-06-26 +Resort Hotel,0,198,2017,August,34,18,2,1,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,307.0,179.0,0,Transient-Party,105.26,1,1,Check-Out,Christian Barrett,brandongardner@example.com,748.222.8288,30235463687109,2026-03-20 +City Hotel,0,5,2017,August,31,1,0,2,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,149.12,0,2,Check-Out,Garrett Griffin,derekjackson@example.org,+1-649-563-6608x981,38393205928729,2026-03-22 +City Hotel,1,246,2017,May,20,15,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,115.53,0,0,Canceled,Tracy Hill,richardsonnicholas@example.com,790.568.2526x62706,3588576583923746,2025-02-11 +Resort Hotel,0,3,2017,December,51,23,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,109.47,1,1,Check-Out,Susan White,david28@example.org,977-883-7378x15920,213126850753670,2025-06-26 +City Hotel,0,12,2017,October,43,23,2,1,1,0.0,0,BB,SWE,Direct,Direct,0,0,0,A,G,1,No Deposit,14.0,179.0,0,Transient,106.21,1,0,Check-Out,Ronnie Parker,alexandraclarke@example.net,(303)950-3974,347116073943132,2024-10-30 +City Hotel,1,111,2017,March,12,17,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.25,0,0,Canceled,Sandra Flynn,kenneth69@example.com,8039135641,4272341745369570,2025-08-04 +Resort Hotel,1,1,2017,September,37,13,1,2,1,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,Margaret Cole,kimberlydeleon@example.org,650-422-4773x741,180057608010619,2025-09-23 +Resort Hotel,0,151,2017,March,10,8,1,0,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,105.94,0,3,Check-Out,Gabriel Bradley,elizabethparker@example.com,8356035983,2707363704635386,2025-09-04 +Resort Hotel,0,96,2017,April,18,30,0,3,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,1,Refundable,280.0,179.0,0,Transient,101.31,0,0,Check-Out,Carol Patrick,wyattaaron@example.com,(976)296-4529x921,213130226375093,2025-09-08 +City Hotel,0,37,2017,July,27,5,1,1,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,183.51,0,2,Check-Out,Brian Escobar,evansdarrell@example.net,001-375-242-4729,630444173003,2024-12-18 +Resort Hotel,1,49,2017,August,35,26,1,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Canceled,David Lucero,mullinsdenise@example.com,759.761.2981x544,180058103960803,2025-03-16 +City Hotel,1,146,2017,June,25,19,0,3,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,132.95,0,0,Canceled,Daniel Macias,bryanmiranda@example.com,(955)972-2514x050,180078024281626,2024-11-07 +Resort Hotel,0,1,2017,October,40,6,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,119.64,0,1,Check-Out,Amy Rodriguez,cainangela@example.net,474.976.7378,36514579523133,2025-06-05 +City Hotel,0,285,2017,October,41,8,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,33.96,0,0,Check-Out,Michelle James,spencer62@example.org,+1-664-421-1322x57884,4953239128162075434,2026-03-17 +City Hotel,1,309,2017,October,40,5,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.84,0,0,Canceled,Allison Hill,clarktabitha@example.org,307.528.5997x764,4117883803583807,2025-06-24 +City Hotel,0,11,2017,November,45,8,2,4,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,78.2,0,0,Check-Out,Anthony Reynolds,xstephens@example.com,6146225428,30549838838621,2026-03-21 +City Hotel,1,16,2017,December,51,20,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.43,0,0,Canceled,Kyle Brown,whitney36@example.com,865.805.9305x4018,2245874719512351,2024-12-10 +Resort Hotel,0,1,2017,January,4,24,1,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,E,E,1,No Deposit,250.0,179.0,0,Transient,48.4,0,0,Check-Out,Robert Brown,skeller@example.org,378-775-6216,180021133655504,2024-04-21 +City Hotel,0,44,2017,August,34,21,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,124.47,0,0,Check-Out,Philip Jensen,wheelerolivia@example.org,952-372-0742x50031,6560240024384399,2024-08-23 +Resort Hotel,1,295,2017,May,19,4,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,133.11,0,1,Canceled,Kathleen Cunningham,kingtodd@example.com,342-461-0812x41188,6011216581700677,2024-09-24 +Resort Hotel,1,165,2017,January,3,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,239.0,179.0,0,Transient,142.43,0,1,Canceled,Sean Garrett,ulutz@example.com,001-971-291-8162x74178,30267423980514,2025-07-26 +Resort Hotel,0,0,2017,April,14,4,1,0,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,238.0,0,Transient,61.43,0,0,Check-Out,William Martin,qklein@example.net,(261)392-6073x56158,30221584169904,2024-06-28 +Resort Hotel,0,145,2017,March,10,5,1,1,1,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,L,E,2,No Deposit,15.0,179.0,0,Transient-Party,106.51,0,0,Check-Out,Kimberly Brown,justinlewis@example.net,835.852.7585x16960,676380261104,2026-01-27 +City Hotel,1,51,2017,August,34,18,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.41,0,1,Canceled,Sarah Simmons,amberali@example.net,(440)292-7525,213183719196310,2024-11-16 +City Hotel,0,113,2017,June,26,24,2,3,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,31.0,179.0,0,Transient,186.94,0,3,Check-Out,Margaret Serrano,camachomatthew@example.com,393-384-0265x3965,371423333327703,2025-12-08 +City Hotel,1,208,2017,May,19,5,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.67,0,2,Canceled,Stephanie Wall,jamie49@example.org,(490)984-2445x484,4503906306674815,2024-07-22 +Resort Hotel,0,46,2017,October,43,23,1,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,136.05,0,3,Check-Out,Bobby Mosley,susan60@example.net,437.419.4289x93095,4645347837304482,2025-11-19 +Resort Hotel,0,0,2017,May,19,6,1,0,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,C,0,No Deposit,364.0500000000011,179.0,0,Group,0.5099000000000001,0,0,Check-Out,Nathan Davis,fthompson@example.com,579.664.3308x77472,3583754757545380,2025-11-30 +City Hotel,0,14,2017,July,28,9,0,3,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,166.66,0,2,Check-Out,John Hernandez,samantha04@example.com,+1-685-434-9753x302,4771146410945893,2025-06-01 +Resort Hotel,1,194,2017,July,29,16,1,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,41.42,0,0,Canceled,Carla Smith,newmanleah@example.com,(276)348-8980,36110495137908,2025-07-09 +City Hotel,0,12,2017,April,18,27,1,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,144.38,0,1,Check-Out,Julie Hawkins,michelletorres@example.org,+1-547-824-3004x9707,4112049921028431,2025-05-31 +Resort Hotel,1,2,2017,January,3,17,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,10.0,331.0,0,Transient-Party,44.39,0,0,No-Show,Patrick Manning,sblackburn@example.net,+1-654-525-1024x80569,4786946997828464663,2025-09-28 +City Hotel,0,16,2017,September,38,21,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,99.1,0,1,Check-Out,Christian Duarte,knightwilliam@example.com,(815)575-5581x4320,30070339839638,2025-08-03 +City Hotel,0,139,2017,July,29,19,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,142.42,0,2,Check-Out,Marcus Castillo,maria45@example.org,410-882-1345,4944197770565584329,2025-09-17 +City Hotel,1,41,2017,March,10,9,2,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient-Party,104.27,0,0,Canceled,Leah Park,nicole99@example.com,719.696.3122x990,4747258715095,2025-07-17 +City Hotel,1,40,2017,February,6,6,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,106.75,0,1,Canceled,Cassandra Murillo,lisataylor@example.com,(233)884-1166,060478232865,2026-02-13 +City Hotel,1,101,2017,March,13,27,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,121.81,0,1,Canceled,Anthony Miller,megan20@example.org,001-509-591-2707,36853525779385,2024-08-07 +Resort Hotel,0,95,2017,August,31,3,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,109.29,1,2,Check-Out,Richard Hancock,katie49@example.com,+1-415-894-9883,6526688900619242,2024-09-08 +Resort Hotel,0,0,2017,January,2,8,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,16.0,179.0,0,Transient,61.14,1,0,Check-Out,Gregory Hansen,steven23@example.org,204-887-9772,502002947021,2025-04-11 +City Hotel,1,21,2017,October,42,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,127.07,0,0,Canceled,Raymond Parks,michael09@example.com,402-322-9407x2335,4098793954591102933,2024-06-17 +City Hotel,0,32,2017,November,45,7,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,239.0,179.0,0,Transient,85.47,0,1,Check-Out,Madeline Mcdonald,jared42@example.com,244.485.1453,180079610936821,2026-03-16 +City Hotel,0,381,2017,May,21,21,0,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,136.55,0,1,Check-Out,Tyler Bishop,jessica20@example.net,(381)248-1838x6396,36143705968168,2024-09-24 +City Hotel,0,57,2017,June,26,27,2,4,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,113.43,0,1,Check-Out,Sarah Shields,dmartin@example.com,+1-892-498-7258x052,30245855546789,2025-03-10 +City Hotel,0,17,2017,August,34,23,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,63.53,0,1,Check-Out,Catherine Cox,masonroy@example.com,(522)746-4452x303,213112624751000,2024-08-22 +City Hotel,1,42,2017,May,18,2,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,112.28,0,0,Canceled,Amanda Smith,clarkdaisy@example.org,(405)838-3936x5927,4925535100130509231,2025-01-02 +City Hotel,0,89,2017,April,15,7,2,5,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,154.75,0,2,Check-Out,Rhonda Hall,brenda86@example.com,503.744.6993x68456,36443268679644,2024-05-18 +Resort Hotel,0,9,2017,March,11,10,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,Refundable,15.0,222.0,0,Transient-Party,63.36,0,0,Check-Out,Marcus Anderson,bgonzales@example.net,001-674-976-2980x625,180083974611368,2026-03-27 +Resort Hotel,1,86,2017,July,27,5,0,4,2,0.0,0,FB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,69.59,0,0,Canceled,Thomas Tucker,bradleysheila@example.com,001-560-885-0048,38135380208504,2025-04-12 +Resort Hotel,0,7,2017,April,17,23,1,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,111.2,1,0,Check-Out,Amy Murphy,donnamckenzie@example.org,+1-318-334-2530x4727,3583831312550210,2024-12-17 +Resort Hotel,0,145,2017,June,22,2,1,6,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,105.7,0,0,Check-Out,Michael Henderson,williamgordon@example.com,412.341.6851,4207887564157801,2025-11-21 +Resort Hotel,0,13,2017,March,13,23,2,3,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,131.26,0,3,Check-Out,Luis Paul,michaeltorres@example.net,+1-843-772-6338x77356,4974565256783,2025-02-06 +Resort Hotel,0,10,2017,March,12,20,0,2,1,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient-Party,44.82,0,0,Check-Out,Deborah Benson,loganjake@example.org,787.405.7617x467,2258122557133052,2025-09-08 +City Hotel,0,45,2017,April,16,16,1,2,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,118.82,0,1,Check-Out,Richard Davis,mary22@example.net,701-276-9514x81744,2720097924539043,2024-06-06 +City Hotel,0,171,2017,August,34,17,2,1,2,0.0,0,BB,GBR,Direct,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,135.47,0,1,Check-Out,April Martinez,ellisonstephen@example.com,001-942-393-3902x1496,6011996746963514,2025-04-30 +City Hotel,1,362,2017,May,19,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,77.98,0,0,Canceled,Gina Sullivan,anthony47@example.org,+1-895-905-8020x0119,4560274334289065949,2025-01-10 +City Hotel,0,248,2017,September,36,5,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,2,No Deposit,1.0,179.0,0,Transient-Party,78.55,0,1,Check-Out,Brett Sheppard,michellevillegas@example.net,258-323-2440x8551,2272082262813236,2025-03-02 +Resort Hotel,0,153,2017,July,30,22,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,214.93,1,2,Check-Out,Ashley Dean,misty30@example.com,510.205.6797x0849,6011312338867297,2025-09-18 +Resort Hotel,0,31,2017,May,20,16,2,10,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,0,No Deposit,246.0,179.0,0,Transient,50.31,0,0,Check-Out,Heidi Richardson,brooke81@example.net,8038202896,372148961371454,2024-08-08 +City Hotel,0,97,2017,June,25,17,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,41,Transient,94.92,0,0,Check-Out,Brooke Mcconnell,richardsonkathy@example.com,538-251-0844,4649106346405292236,2026-02-09 +City Hotel,1,16,2017,June,24,10,2,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,73.0,0,Transient,48.29,0,0,Canceled,Adrian Chang,gdouglas@example.org,(292)241-8554x6604,4652080669348604,2024-08-26 +Resort Hotel,0,0,2017,December,51,18,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,241.0,179.0,0,Transient,57.44,0,0,Check-Out,Dana Ford,paul18@example.com,001-968-231-6648x65414,3532124348028076,2025-10-06 +City Hotel,0,0,2017,May,20,14,0,1,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,14.0,331.0,0,Transient,4.27,0,0,Check-Out,Robyn Hernandez,smullen@example.net,+1-932-944-4388x97981,3563945575579379,2025-01-21 +Resort Hotel,0,22,2017,December,52,25,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,238.0,179.0,0,Transient,54.68,0,2,Check-Out,Mrs. Diana King,nthompson@example.net,317-534-3732x124,676393617839,2024-05-07 +City Hotel,0,3,2017,April,15,13,0,1,2,0.0,0,BB,DEU,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,110.87,0,1,Check-Out,Parker Carroll,steven94@example.org,001-547-798-1763x57806,3539551391407315,2024-05-16 +Resort Hotel,0,25,2017,January,3,19,0,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,50.94,0,2,Check-Out,Karen Johnston,davisjohn@example.com,001-848-700-5574,372084465087900,2025-05-22 +Resort Hotel,0,38,2017,March,10,10,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,81.03,0,2,Check-Out,Tony Martin,zimmermanbenjamin@example.org,+1-919-721-8336x2463,180043300024405,2024-12-19 +Resort Hotel,0,0,2017,July,30,25,4,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Group,125.05,0,2,Check-Out,Craig Walker,rhoward@example.net,374.322.8111,060491585125,2024-05-15 +Resort Hotel,0,97,2017,February,9,27,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,45.31,0,1,Check-Out,Jason Green,fosterdorothy@example.com,234.864.8296,4159488458697222,2024-06-16 +City Hotel,0,0,2017,October,40,3,0,3,1,1.0,0,BB,,Complementary,Direct,0,0,0,A,K,0,No Deposit,17.0,179.0,0,Transient,1.69,0,0,Check-Out,Patricia Le,amyharvey@example.com,830-952-1357x619,4089382162302,2024-09-15 +City Hotel,0,150,2017,July,27,4,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,75.51,0,0,Check-Out,Steven Casey,nkennedy@example.net,+1-899-236-1719x649,3533407454647956,2025-03-04 +City Hotel,0,55,2017,July,30,22,0,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,120.01,0,0,Check-Out,Steven Williams,michael00@example.com,+1-899-818-9432x93906,4704899117655365509,2025-03-03 +Resort Hotel,1,36,2017,August,32,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,241.0,179.0,0,Contract,65.15,0,0,Canceled,Kimberly Stone,sara16@example.com,900.662.7834,3586343285536041,2026-01-12 +City Hotel,0,8,2017,July,28,12,1,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,98.45,1,1,Check-Out,Nicholas Boyd,aherring@example.org,+1-950-556-3839x503,3585920090331014,2025-02-03 +City Hotel,0,1,2017,April,18,27,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,128.11,1,0,Check-Out,Laura Dillon,lisa42@example.net,+1-556-962-1971x2211,4990951164874847297,2024-06-16 +City Hotel,0,33,2017,December,49,3,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.06,0,2,Check-Out,Allison Patterson,stephen99@example.net,712.683.4356x1712,3550486171069577,2024-10-26 +City Hotel,0,18,2017,December,50,13,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Contract,65.23,0,1,Check-Out,Lorraine Ward,emilygallagher@example.com,+1-370-539-9608,4009833875829977,2024-09-29 +Resort Hotel,1,3,2017,November,45,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,188.0,179.0,0,Transient,49.03,0,0,Canceled,Julie Robinson,raythomas@example.com,001-295-675-8374x72605,371401278028395,2024-11-16 +City Hotel,0,162,2017,October,42,15,2,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,104.89,0,0,Check-Out,Antonio Bell,mia94@example.net,4868018224,30439176764458,2025-12-11 +Resort Hotel,1,179,2017,July,27,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,242.0,179.0,0,Transient,209.88,1,1,Canceled,Michael Barnes,amy39@example.org,423.237.5102x934,4637844923998192932,2025-03-11 +City Hotel,0,1,2017,March,13,28,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.05,0,1,Check-Out,Teresa Beck,adamsjesse@example.net,553.885.7083x98720,38777150863628,2024-12-16 +Resort Hotel,1,96,2017,February,5,1,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient-Party,51.25,0,0,Canceled,Wendy Brooks,vrogers@example.com,+1-292-647-7996x809,4408819406225,2025-08-28 +Resort Hotel,0,15,2017,March,13,25,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,C,1,No Deposit,172.0,179.0,0,Transient-Party,62.59,1,2,Check-Out,Bradley Gonzalez,martinrobert@example.net,001-727-470-4918,3584010864146284,2025-08-24 +Resort Hotel,1,158,2017,March,12,20,1,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient-Party,61.02,0,0,Canceled,Todd Burgess,juangreen@example.com,+1-561-571-1980x313,4950941250278,2024-12-15 +Resort Hotel,0,16,2017,February,5,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,319.0,179.0,0,Transient,53.57,0,1,Check-Out,Cindy Turner MD,bsmith@example.com,8256477209,6570350322895653,2025-12-19 +City Hotel,0,2,2017,November,45,4,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,82.46,0,1,Check-Out,Donna Hahn,marissa16@example.net,+1-832-243-3116,30413343928882,2025-03-02 +City Hotel,1,13,2017,October,42,15,1,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,108.01,0,0,Canceled,George James,tracey68@example.com,001-396-556-4303,676290944229,2025-10-29 +City Hotel,0,41,2017,July,27,4,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Check-Out,Katrina Lowe,davissteven@example.com,7183611656,4613247423937577859,2025-08-17 +Resort Hotel,1,45,2017,October,41,13,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,1,No Deposit,14.0,179.0,0,Transient,190.41,0,0,Canceled,John Young,shepardtommy@example.com,001-257-776-7949x083,4362259070482324,2026-03-03 +Resort Hotel,1,276,2017,August,33,14,2,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,102.64,0,0,Canceled,Kevin Medina,david15@example.com,420-974-5439,2251594089405611,2024-06-04 +Resort Hotel,1,406,2017,April,16,14,2,5,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient,105.23,0,0,Canceled,Andre Lamb,nsanchez@example.net,957-292-4637x0780,4472791870881,2024-04-09 +Resort Hotel,0,25,2017,August,31,2,2,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,172.72,0,0,Check-Out,Faith Wagner,edward60@example.net,(308)937-1471x324,3588608263379384,2024-12-30 +City Hotel,0,88,2017,July,29,17,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,234.75,0,2,Check-Out,Lauren Rodgers,jamesvaughn@example.com,001-455-427-6425x75995,2232473172917846,2025-04-09 +City Hotel,0,0,2017,June,26,23,1,1,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,222.66,0,0,Check-Out,Christopher Hernandez,jessica29@example.org,911-473-2776x879,564307041892,2025-09-30 +Resort Hotel,1,18,2017,June,23,4,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,226.23,0,1,No-Show,Courtney Hopkins,sbaker@example.com,+1-633-868-1520,6586371628872107,2025-10-31 +City Hotel,0,12,2017,December,49,3,0,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,68.96,0,0,Check-Out,Rebecca Rivera,torrestonya@example.com,570-984-0532x432,375990857073265,2024-06-15 +City Hotel,0,2,2017,August,34,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,1,0,A,B,1,No Deposit,16.0,45.0,0,Transient-Party,63.69,0,1,Check-Out,Helen Lee,darrengreen@example.com,(495)690-4050x6835,3519611632471225,2024-11-02 +City Hotel,0,36,2017,August,33,13,2,3,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,233.23,0,0,Check-Out,Rebecca Price,kristina88@example.org,+1-944-380-9166x014,4998294109822041633,2025-10-04 +Resort Hotel,0,49,2017,July,28,9,3,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,C,D,0,No Deposit,247.0,179.0,0,Transient,136.7,0,0,Check-Out,Evelyn Moore,jessicahubbard@example.com,986.582.7666x20288,3515120847109319,2024-12-21 +Resort Hotel,0,145,2017,December,51,20,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,72.0,179.0,0,Transient-Party,84.11,0,2,Check-Out,James Ayers,kellyjennifer@example.com,001-719-458-0515x31493,6011418557881057,2025-01-27 +City Hotel,0,37,2017,October,44,27,2,2,2,1.0,0,BB,BRA,Direct,Direct,0,0,0,A,G,2,No Deposit,12.0,179.0,0,Transient,125.79,0,3,Check-Out,Joshua Mcdowell,tjohnson@example.net,+1-277-245-4500x748,4846029664265609,2025-01-29 +Resort Hotel,1,130,2017,August,31,1,1,6,2,0.0,0,FB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,179.0,75,Transient-Party,159.09,0,0,Canceled,Douglas Russell,david25@example.com,376.381.6096x241,676249187847,2025-06-01 +City Hotel,0,159,2017,March,14,30,1,5,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.04,0,1,Check-Out,Derrick Haas,marshallanthony@example.net,001-947-346-7803x4235,4271821149588425319,2025-08-13 +City Hotel,0,56,2017,October,41,9,0,2,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,113.31,0,0,Check-Out,Melissa Hughes,kim84@example.org,(565)709-7030,2240855129435031,2025-01-14 +City Hotel,1,414,2017,August,33,16,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,110.59,0,0,Canceled,Anthony Jones,johncastillo@example.com,001-671-531-3955x316,4882056592317730709,2024-06-23 +City Hotel,0,53,2017,August,33,12,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,235.77,0,2,Check-Out,Terri Williams,melissafrazier@example.net,9487883815,676361969154,2025-12-30 +Resort Hotel,0,13,2017,August,33,13,1,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,216.67,1,0,Check-Out,Laura Salinas,charlespeterson@example.org,001-681-810-8274,213167327619755,2024-12-05 +City Hotel,0,147,2017,May,18,2,2,1,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,106.35,0,1,Check-Out,Kyle Morgan,oliverelizabeth@example.org,+1-632-737-8636,4076415155274823,2024-10-20 +Resort Hotel,0,13,2017,December,51,20,0,1,1,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,10.0,179.0,0,Transient-Party,64.82,1,1,Check-Out,James Sweeney,barneskyle@example.net,2993342705,676362260793,2025-10-07 +City Hotel,1,8,2017,June,24,14,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.42,0,0,Canceled,Nathan Jensen,emorgan@example.net,001-728-622-0940x148,4958538525732189,2024-04-19 +Resort Hotel,0,98,2017,March,11,12,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,47.34,0,2,Check-Out,Charles Perkins,pwilson@example.net,(772)524-4418x2527,375921988110288,2025-11-27 +City Hotel,0,17,2017,September,37,11,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.67,0,2,Check-Out,Mrs. Elizabeth Lopez DDS,ichavez@example.org,+1-771-918-1154,344300491422480,2024-11-12 +City Hotel,1,414,2017,October,42,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,61.38,0,0,Canceled,Rebecca Rodriguez,holly04@example.org,(689)906-9381x73559,4061912792860474,2025-12-25 +Resort Hotel,0,1,2017,January,3,15,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,C,0,No Deposit,10.0,179.0,0,Transient,44.5,0,1,Check-Out,Javier Lee,braunjoseph@example.org,971-424-8105x0146,4543386978127297,2026-01-12 +City Hotel,0,0,2017,September,36,5,0,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,164.09,0,2,Check-Out,James Cook,samuel58@example.org,001-701-733-7883,4927120960612,2024-04-08 +Resort Hotel,0,80,2017,December,52,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,110.12,0,2,Check-Out,Nicole Durham,anguyen@example.com,467.235.0188x215,4651877607296667,2024-11-26 +Resort Hotel,0,28,2017,January,3,19,0,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,310.0,179.0,0,Group,56.47,0,2,Check-Out,Andrew Perkins,victoria76@example.org,(491)594-2285,4393522203769880174,2024-03-27 +Resort Hotel,0,341,2017,March,12,19,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,79.0,222.0,0,Transient-Party,84.81,0,0,Check-Out,Angel Lewis,saraholloway@example.com,+1-426-845-7430x197,6011005541403591,2025-04-11 +Resort Hotel,0,34,2017,February,5,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,2,No Deposit,13.0,223.0,0,Transient,43.77,0,0,Check-Out,Joseph Mendez,haneykatelyn@example.com,478.459.1851x427,4701193100277,2025-03-10 +Resort Hotel,1,6,2017,February,5,1,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,141.0,179.0,0,Transient-Party,51.13,0,0,No-Show,Samantha Byrd,canderson@example.org,551-280-5191x948,3551133916555796,2025-05-04 +City Hotel,1,88,2017,April,17,20,1,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,4.0,179.0,0,Transient,147.0,0,1,Canceled,Stacy Malone,emathis@example.com,+1-510-803-2402x3488,213197808693177,2024-11-17 +City Hotel,1,58,2017,October,40,3,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,79.46,0,0,Canceled,Janet Johnson,bushkristen@example.com,001-633-424-6562x9482,4269131929667292063,2025-12-04 +Resort Hotel,0,151,2017,June,25,24,2,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,344.0,179.0,0,Transient,2.84,0,0,Check-Out,Stephen Smith,joshuamiller@example.org,839-595-9369x84419,676312836320,2024-12-08 +City Hotel,1,100,2017,August,35,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,131.5,0,1,Canceled,Kyle Thompson,robert07@example.org,(873)639-0035,3568098259816132,2024-06-14 +City Hotel,0,203,2017,June,23,4,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.68,0,2,Check-Out,Michele Johnson,jonathanryan@example.com,001-238-437-3747x75542,3536672637915045,2025-02-02 +City Hotel,0,395,2017,October,41,14,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,89.48,0,0,Check-Out,Jennifer Johnson,schneidercarla@example.com,(211)409-3604,341376751042633,2025-06-06 +Resort Hotel,0,13,2017,October,41,11,0,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,45.11,1,2,Check-Out,Vicki Bates,wintersjaclyn@example.net,335-252-1014,4952283655683409087,2025-11-13 +City Hotel,0,4,2017,April,15,7,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,157.07,0,0,Check-Out,Richard Nelson,zhayes@example.org,(972)357-1921x43742,676136793426,2026-01-15 +City Hotel,0,1,2017,September,36,4,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Katherine Chan,brookskelsey@example.org,4653448332,4340935944740073,2024-09-27 +Resort Hotel,1,75,2017,June,24,15,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,224.92,0,0,Canceled,Carrie Trevino,andersontimothy@example.org,686-598-2119x7767,2561425051455505,2024-04-16 +City Hotel,0,2,2017,March,13,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,2,No Deposit,19.0,179.0,0,Transient,120.29,0,0,Check-Out,Kathleen Simpson,sydney61@example.org,(585)793-9784,213150826775310,2024-06-24 +Resort Hotel,0,0,2017,August,32,4,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,217.08,0,0,Check-Out,Sean Harrington,wwall@example.com,+1-390-895-9776x4228,4496609218470,2025-10-16 +City Hotel,1,1,2017,January,2,6,1,2,3,0.0,0,SC,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,80.69,0,1,Canceled,Tommy Espinoza,aclark@example.com,001-840-319-3569x33074,3586100378791515,2025-08-20 +Resort Hotel,0,0,2017,March,10,10,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient,72.78,0,2,Check-Out,Thomas Brown,vincent38@example.com,652-818-0696x556,30241502822467,2025-05-12 +Resort Hotel,1,33,2017,September,36,8,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,241.0,179.0,0,Contract,59.54,0,2,Canceled,Jose Phillips,bjacobson@example.org,6973864741,2711381184906626,2024-07-21 +City Hotel,0,26,2017,July,30,22,1,3,3,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,138.37,0,1,Check-Out,Ray Lucero,parksmary@example.com,+1-912-284-6056x8283,4657192955618924,2025-05-13 +Resort Hotel,0,42,2017,June,24,14,0,7,2,0.0,0,HB,IRL,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,112.86,0,1,Check-Out,Katherine Benjamin,abigail08@example.net,+1-403-750-7711x875,374095408763702,2024-11-21 +Resort Hotel,0,162,2017,April,15,8,4,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,103.02,0,0,Check-Out,Mike Green,harringtonmatthew@example.net,676-234-6118x01221,180050555585188,2025-08-27 +City Hotel,0,30,2017,October,41,12,2,5,2,2.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,88.0,179.0,0,Contract,207.77,0,1,Check-Out,Bryan Malone,riggsjaime@example.com,383.445.6007,4274520469989,2025-01-14 +Resort Hotel,1,222,2017,December,50,13,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,242.0,179.0,0,Transient,52.3,0,0,Canceled,Robert Charles,alisonstuart@example.com,(566)912-1465,4889458698148473,2025-07-02 +Resort Hotel,1,110,2017,May,21,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Group,82.83,0,0,Canceled,Joel George,jwatson@example.com,202.398.3690x3923,4247226297822534,2024-11-25 +City Hotel,0,13,2017,January,3,16,0,2,2,0.0,0,BB,,Direct,Direct,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,50.41,1,1,Check-Out,Melissa Perez,kathryn09@example.com,001-743-815-2726x738,060479304861,2024-12-05 +Resort Hotel,0,105,2017,September,38,17,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,30.0,179.0,0,Contract,81.74,0,2,Check-Out,Vincent Kelly,edwardsjacob@example.net,+1-320-667-8122x6987,4494801695215,2024-10-15 +Resort Hotel,1,102,2017,March,12,23,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,51.41,0,0,Canceled,Ellen Smith,kellybush@example.net,001-691-966-7627x591,2258486019810700,2024-11-04 +City Hotel,0,296,2017,July,28,12,1,2,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.06,0,0,Canceled,Michael Rodriguez,ureeves@example.org,950.425.5995x390,4485909178591,2025-04-30 +City Hotel,1,410,2017,June,27,29,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,112.23,0,0,Canceled,Joseph West,wwells@example.org,714-949-0516,4133800124687037312,2024-08-23 +City Hotel,1,100,2017,May,18,3,0,2,2,0.0,0,SC,PRT,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Elizabeth Warner,sherry90@example.net,+1-285-595-1937x68438,565597147117,2024-05-15 +Resort Hotel,0,30,2017,April,17,27,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,86.78,0,2,Check-Out,Kathleen Edwards,pjohnson@example.com,3732038357,4109507297256642,2024-05-23 +City Hotel,0,20,2017,September,38,19,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient,161.89,0,0,Check-Out,Anna Miller,sonia87@example.org,+1-304-911-3277x8065,371350761416965,2024-05-15 +Resort Hotel,1,25,2017,March,9,2,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,236.0,179.0,0,Transient,57.28,0,1,Canceled,Robert Johnson,carneyalisha@example.net,626.580.9245,502079070012,2025-07-07 +City Hotel,1,67,2017,March,13,23,2,5,3,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,30.0,179.0,0,Transient,102.33,0,0,No-Show,Scott Wilson,brodriguez@example.com,001-681-923-3079,6584550965534329,2025-11-20 +Resort Hotel,0,0,2017,December,51,19,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,B,2,No Deposit,249.0,179.0,0,Transient-Party,135.09,1,1,Check-Out,Sean Jackson,carpenterbarbara@example.org,(520)751-9311,566034036004,2025-11-26 +City Hotel,1,0,2017,February,9,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,204.0,179.0,0,Transient,47.31,0,0,No-Show,Juan Knight,brandon43@example.com,507-497-5854,4902139328836989626,2025-06-02 +City Hotel,0,0,2017,March,13,28,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,70.0,179.0,0,Transient,103.24,1,1,Check-Out,Gregory Davis,yolanda50@example.com,(797)622-2468x6565,581475793831,2025-09-01 +City Hotel,0,31,2017,August,32,11,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,215.14,1,1,Check-Out,William Petersen,jodioliver@example.net,+1-257-567-9667x844,4563181788517,2025-02-26 +City Hotel,1,242,2017,April,15,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,109.68,0,0,Canceled,Matthew White,wagnerrebecca@example.org,001-952-243-1146x93769,4265052885769276,2025-12-22 +City Hotel,1,368,2017,August,32,8,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,75.84,0,0,Canceled,Darin Dillon,ilewis@example.com,+1-551-410-3819x5482,4634599465908009,2025-06-03 +City Hotel,0,56,2017,December,49,4,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,30.0,179.0,75,Transient-Party,106.56,0,1,Check-Out,Cory Pearson,jerry81@example.org,+1-985-265-3193,3547718703647272,2025-09-18 +City Hotel,1,23,2017,August,31,5,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,128.75,0,0,Canceled,Matthew Friedman,crossbryan@example.org,4042396681,6568171127228393,2024-06-08 +City Hotel,0,33,2017,August,35,30,2,0,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,1,No Deposit,17.0,179.0,0,Transient-Party,119.92,0,0,Check-Out,Samuel Delgado,dlewis@example.org,221-836-8218x405,180056991234794,2025-05-05 +City Hotel,1,172,2017,April,14,4,1,0,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.83,0,0,Canceled,Sarah Wall,adamsabigail@example.org,(558)890-8339x458,30557913104272,2026-01-23 +City Hotel,1,97,2017,January,5,27,2,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,196.68,0,2,No-Show,Benjamin Moon,paul90@example.org,924.500.0064x0683,3574538372931146,2026-03-13 +City Hotel,0,1,2017,April,16,19,2,1,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.6,0,3,Check-Out,Luis Miller,bryanweber@example.org,467-205-9698x008,4201340436422117189,2024-07-24 +Resort Hotel,0,307,2017,September,37,14,2,4,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Contract,89.51,0,1,Check-Out,Rose Johnson,julia34@example.org,516.956.5193,180035575867765,2025-06-02 +Resort Hotel,1,7,2017,December,48,1,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,153.0,179.0,75,Transient,81.67,0,0,Canceled,Charles Henry,brandonrivers@example.net,001-565-312-4612x92175,4268823836315504044,2024-05-19 +City Hotel,1,43,2017,May,20,17,0,2,3,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,249.76,0,2,No-Show,Patrick Diaz,zking@example.org,(208)305-6499,6011833349265577,2024-05-26 +City Hotel,0,0,2017,March,10,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient-Party,47.14,0,0,Check-Out,Laura Arnold,lindseylogan@example.net,340.201.1846x11462,6011707526066935,2026-01-12 +City Hotel,0,99,2017,April,16,15,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,134.83,0,2,Check-Out,Ryan Harris,abigailadams@example.org,001-835-583-9604x8578,30460613294586,2026-03-12 +City Hotel,1,13,2017,August,33,17,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,215.72,0,1,Canceled,Stacey Perez,dking@example.org,001-430-565-1919x3903,4167863686726128,2025-05-26 +City Hotel,0,0,2017,January,2,2,1,1,1,1.0,0,BB,,Direct,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,126.06,0,1,Check-Out,Heidi Rodriguez,david69@example.org,500-609-3732,4766130116306,2024-05-21 +City Hotel,0,99,2017,April,18,28,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,112.93,0,2,Check-Out,Cody Anderson,mayobetty@example.org,+1-605-309-1631x2661,4102000247387,2024-04-21 +Resort Hotel,0,0,2017,February,7,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,C,1,No Deposit,16.0,81.0,0,Transient,35.48,0,1,Check-Out,Amanda Cameron,qmorris@example.net,(249)959-4475x75760,4443051213565773,2024-04-26 +City Hotel,1,295,2017,August,32,8,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,84.35,0,0,Canceled,Jamie Wilson,clarkkevin@example.org,(803)937-2265x513,180097084750056,2025-01-31 +Resort Hotel,0,157,2017,May,20,12,0,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,242.0,179.0,0,Transient,54.7,0,3,Check-Out,Shawn Cox,william54@example.net,788-381-4569x142,6011263659091928,2025-05-17 +City Hotel,1,3,2017,March,13,26,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,42,Transient,62.47,0,0,Canceled,Nicholas Morgan,michael02@example.com,727.379.9089x9706,2292833402323361,2024-09-23 +Resort Hotel,1,210,2017,June,25,15,1,2,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,126.71,0,0,Canceled,Matthew Johnson,vjones@example.com,506.479.6436x4465,4334981638984211,2026-01-06 +City Hotel,0,19,2017,June,26,27,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,232.8,0,1,Check-Out,Dale Hancock,davisteresa@example.com,+1-919-514-2803x11049,341653071981629,2026-03-14 +City Hotel,1,119,2017,September,35,2,0,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.59,0,0,Canceled,Sandy Wilcox,carlcarter@example.com,406-700-9271,587005502444,2025-01-08 +City Hotel,1,389,2017,March,12,24,2,2,1,0.0,0,HB,GBR,Direct,Corporate,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,101.22,0,0,Canceled,William Woods,ewillis@example.com,919-322-2241,3577263605592675,2025-09-09 +City Hotel,1,8,2017,April,17,23,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.82,0,1,Canceled,Ryan Morgan,mitchellaaron@example.net,(399)518-6765x383,630479784849,2025-02-28 +Resort Hotel,0,0,2017,May,20,15,4,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,145.5,0,1,Check-Out,Jennifer Rogers,sherryhoffman@example.net,+1-222-339-5331x5624,6551726692271174,2025-05-21 +City Hotel,1,13,2017,August,32,12,0,1,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,A,0,No Deposit,13.0,184.0,0,Transient-Party,174.64,0,0,Canceled,Anthony Pope,vvega@example.org,(540)693-4009x753,30587102289675,2025-03-11 +City Hotel,0,146,2017,October,41,10,0,1,1,0.0,0,BB,,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,78.0,0,0,Check-Out,William Blanchard,graymichael@example.com,481-752-9565x7116,3506270771735190,2024-09-28 +City Hotel,1,159,2017,August,32,9,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,168.74,0,2,Canceled,Donald Walker,michaelhall@example.org,(557)798-4576x068,2653939060564163,2026-02-09 +City Hotel,1,170,2017,August,32,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,196.68,0,0,Canceled,Francisco Gordon,weaverkatherine@example.net,+1-899-876-8452,2313957447597542,2025-07-06 +Resort Hotel,0,159,2017,June,24,12,4,10,3,0.0,0,HB,CHE,Offline TA/TO,TA/TO,0,0,0,D,G,2,No Deposit,248.0,179.0,0,Transient,194.65,0,0,Check-Out,Alyssa Tran,kscott@example.com,7975335190,3582277105976124,2024-07-24 +Resort Hotel,0,9,2017,June,23,6,4,10,3,0.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,229.5,0,0,Check-Out,Charles Bennett,thompsonclifford@example.net,(803)826-9907,2265394162792694,2024-09-25 +City Hotel,1,18,2017,July,28,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,2,Non Refund,1.0,179.0,0,Transient,64.64,0,0,Canceled,Brandon Collins,parkerkenneth@example.com,637.377.4774,4409348400638388480,2026-01-14 +Resort Hotel,0,137,2017,April,17,26,2,2,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient,139.58,0,0,Check-Out,Mariah Adams,melissamills@example.org,001-556-339-0562x483,639014944222,2025-04-11 +Resort Hotel,0,166,2017,June,26,23,4,7,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,212.35,0,1,Check-Out,Vincent Harrington,oscar74@example.com,001-590-521-1780x96607,2716521044597694,2025-03-03 +Resort Hotel,1,174,2017,March,13,27,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,223.0,0,Transient-Party,68.44,0,0,Canceled,David Schultz,cassandra41@example.org,+1-401-665-0474x61399,4491727399391247090,2025-11-21 +Resort Hotel,0,49,2017,February,6,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,241.0,179.0,0,Transient,107.58,0,2,Check-Out,Dr. Heather Moran,jlong@example.com,224-903-3950x88740,3521047456646954,2024-07-19 +Resort Hotel,0,49,2017,August,33,11,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,F,1,No Deposit,241.0,179.0,0,Transient,231.03,1,2,Check-Out,Tiffany Price,millstabitha@example.com,001-644-886-1155,4964695434168719502,2025-05-29 +Resort Hotel,1,39,2017,August,32,3,2,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,200.28,0,0,Canceled,Maria Brown,cardenaspaul@example.com,+1-445-428-5446,3565675922579438,2025-09-30 +Resort Hotel,0,87,2017,August,32,5,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,99.08,0,0,Check-Out,Pamela Melendez,ocoleman@example.org,+1-910-704-3777,5543514091100647,2024-12-25 +City Hotel,0,48,2017,March,14,30,2,5,1,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,88.74,0,1,Check-Out,Daniel Smith,fosterleslie@example.com,001-576-484-6128x032,213127999170594,2024-05-18 +City Hotel,0,2,2017,October,40,5,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,B,0,No Deposit,12.0,179.0,0,Transient,156.65,0,0,Check-Out,Gregory Greene,aharper@example.com,207-996-7159x116,4443348726737359652,2024-07-12 +Resort Hotel,0,45,2017,February,8,23,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,43.0,331.0,0,Transient-Party,53.41,0,0,Check-Out,Lindsey Sullivan,elizabeth75@example.org,(243)315-8152,4042856473661483,2025-03-27 +City Hotel,1,1,2017,March,12,20,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,93.2,0,0,Canceled,Kirk York,nicholasallen@example.com,421.232.4935,3586746569983988,2025-08-30 +City Hotel,0,325,2017,May,19,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,253.0,179.0,0,Transient,107.49,0,0,Check-Out,Amanda Costa,reyespeter@example.net,(644)308-8090x49489,4245523370134577,2025-11-02 +City Hotel,0,36,2017,November,46,12,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,194.0,0,Transient-Party,54.86,0,0,Check-Out,William Lane,mdowns@example.org,001-236-473-7315,2221471737911265,2024-08-27 +City Hotel,0,11,2017,September,36,7,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,76.78,0,2,Check-Out,Robert Murray,upage@example.org,431-610-5187x389,3573884844040871,2024-12-23 +Resort Hotel,0,6,2017,December,52,27,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,120.53,1,1,Check-Out,Rebekah Ramirez,escobartaylor@example.org,736.511.7974x57999,375307914584715,2025-03-19 +Resort Hotel,1,327,2017,June,25,20,1,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,242.13,0,0,Canceled,James Moore,alan60@example.com,942-207-6687x618,6584824377769793,2025-06-18 +City Hotel,0,14,2017,August,32,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,61.0,0,Transient,114.58,1,0,Check-Out,Mark Robertson,waynewoods@example.net,260-743-7856x128,4947745935872,2025-05-29 +Resort Hotel,1,7,2017,May,22,25,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,320.0,179.0,0,Transient,93.42,0,0,Canceled,Wendy Quinn,sbell@example.net,001-993-774-7809x2960,676254912360,2024-12-03 +Resort Hotel,0,12,2017,April,16,16,2,10,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,237.92,0,2,Check-Out,Haley Medina,faithharrington@example.com,274-518-8198x46713,6533739242110175,2024-12-11 +City Hotel,0,8,2017,March,9,1,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,214.0,0,Transient,43.02,0,0,Check-Out,Mallory Decker,rebecca96@example.com,850-439-5358x68758,5343143391524314,2024-12-11 +City Hotel,0,0,2017,October,43,21,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,A,K,1,No Deposit,12.0,45.0,0,Transient,1.02,0,0,Check-Out,Rachel Martin,caldwellsusan@example.net,456.706.0448x03049,4065995990180,2025-05-14 +City Hotel,0,0,2017,March,12,16,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,2,No Deposit,14.0,166.0,0,Transient,137.9,0,0,Check-Out,Aaron Bruce,david62@example.org,557-701-1146,3579297863701782,2025-10-23 +Resort Hotel,0,62,2017,October,41,9,2,5,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,D,1,No Deposit,243.0,179.0,0,Transient,99.6,0,3,Check-Out,Veronica Miller,mosesjohn@example.com,474-664-9308x466,3562356723687851,2024-10-27 +Resort Hotel,0,0,2017,December,49,6,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,49.24,1,1,Check-Out,Darren Logan,kimprice@example.org,269.469.7408,213109690500410,2024-10-22 +Resort Hotel,1,85,2017,March,11,11,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,47.79,0,0,Canceled,Duane Bennett,rpotter@example.com,5549936471,3526871981094744,2026-03-14 +City Hotel,0,16,2017,September,36,9,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,74.0,179.0,0,Transient-Party,213.91,0,0,Check-Out,David Glover,anitathompson@example.com,637.624.8839,4503494193545232,2024-08-28 +Resort Hotel,0,138,2017,July,30,28,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,194.0,179.0,0,Transient,81.07,0,0,Check-Out,Michelle Francis,rosariochristopher@example.com,516.217.1120x99560,4116594377762013,2026-03-05 +City Hotel,1,315,2017,July,28,11,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,127.97,0,0,Canceled,Terry Walls,austin90@example.net,(223)711-2753,4455204457093797,2025-12-27 +Resort Hotel,0,42,2017,January,3,17,0,3,2,1.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,295.0,179.0,0,Transient,48.69,1,0,Check-Out,Gabrielle Brown,smithraymond@example.org,211-381-2298,6581744605454377,2024-11-25 +Resort Hotel,0,118,2017,November,46,16,2,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient-Party,88.85,0,1,Check-Out,Kevin Kelly,barry26@example.net,001-227-745-4016x48853,6590823037943725,2024-11-24 +Resort Hotel,1,283,2017,June,26,22,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,101.98,0,1,Canceled,Tonya Williams,jamie13@example.org,+1-433-620-8158x57611,4198563662578351,2024-11-30 +Resort Hotel,0,121,2017,July,27,4,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,240.0,179.0,0,Transient,150.13,0,2,Check-Out,Stephanie Whitney,marymorgan@example.com,480-872-0758,3592110522235808,2025-01-17 +City Hotel,0,70,2017,July,31,30,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.69,0,1,Check-Out,Hayley Ruiz,usmith@example.com,(577)587-6248x5547,2261607808970646,2026-01-24 +Resort Hotel,1,30,2017,March,10,10,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,42.56,0,0,Canceled,Jessica Lowery,madison94@example.net,(805)921-0897x167,4932862313977726441,2026-02-23 +Resort Hotel,0,2,2017,November,47,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,246.0,179.0,0,Transient,78.4,0,0,Check-Out,Jerry Taylor,oliverkurt@example.net,317-818-6352x7016,3592517338309116,2024-10-25 +Resort Hotel,0,86,2017,December,50,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,50.18,1,2,Check-Out,Jason Davis,lance92@example.net,(911)821-3402,3597814699830532,2025-06-21 +Resort Hotel,0,0,2017,May,21,24,1,0,1,0.0,0,SC,PRT,Complementary,Corporate,0,0,1,A,I,0,No Deposit,315.0,179.0,0,Transient,5.6,0,0,Check-Out,Lisa Cunningham,pcollins@example.net,8363906008,213156805562504,2025-03-11 +Resort Hotel,0,150,2017,May,19,7,3,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,15.0,179.0,0,Transient,214.73,0,3,Check-Out,Debbie Brown,angelasolomon@example.org,+1-991-696-8024x98383,630494590312,2024-12-09 +City Hotel,0,0,2017,April,14,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.24,1,1,Check-Out,Deborah Jordan,jeffreydavis@example.net,(461)882-1026x59656,3526298057841685,2025-05-11 +City Hotel,0,8,2017,October,43,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,1,1,0,A,B,0,No Deposit,25.0,179.0,0,Contract,47.02,0,0,Check-Out,Andrew Huff,michaelhahn@example.org,001-905-827-3028,4635588604487289,2024-05-30 +City Hotel,0,5,2017,December,49,4,0,2,3,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,118.36,0,1,Check-Out,Jeffrey Rodriguez,zflores@example.com,+1-573-900-0499x61812,4189002814932241,2025-10-24 +City Hotel,0,161,2017,July,29,17,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,227.95,0,1,Check-Out,Jeffrey Jackson,susangarcia@example.com,001-982-344-8098x742,30498910291053,2024-06-14 +City Hotel,0,2,2017,May,19,6,0,6,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,110.19,0,1,Check-Out,George Odonnell,cherylclay@example.org,780.406.2451,2244327861492709,2024-03-31 +City Hotel,1,113,2017,March,11,9,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,62.66,0,0,Canceled,Matthew Lopez,ravenstanley@example.com,978.280.0798x457,374686265501829,2024-08-17 +City Hotel,1,111,2017,December,51,21,2,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,28.0,179.0,75,Transient,126.66,0,0,Canceled,Joanna Lopez,anthonycherry@example.net,420-282-0885,5233947992344598,2025-06-23 +City Hotel,0,15,2017,April,17,20,0,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,D,D,1,No Deposit,15.0,226.0,0,Transient-Party,54.45,1,0,Check-Out,Alfred Johnston,robertlindsey@example.org,230.441.4145,2233567393242253,2024-12-17 +Resort Hotel,0,1,2017,April,15,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,247.0,179.0,0,Transient,210.47,1,0,Check-Out,Benjamin Wood,justinsavage@example.net,574-904-6774x839,060455372239,2025-05-22 +Resort Hotel,0,144,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,83.06,0,0,Check-Out,Anne Wright,kaitlynsanchez@example.net,(961)936-5482x8089,4523519342395865014,2024-04-15 +Resort Hotel,1,191,2017,September,36,8,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,238.0,179.0,0,Transient,125.38,0,1,Canceled,Lisa Bell,larryballard@example.org,851.575.2623,342672088247229,2024-12-25 +Resort Hotel,0,371,2017,October,42,20,0,1,2,0.0,0,HB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,80.97,0,0,Check-Out,Kristen Spencer,linda88@example.com,+1-311-684-0749x26499,36544677348513,2024-09-05 +City Hotel,0,91,2017,May,22,25,1,2,2,0.0,0,SC,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,62,Transient-Party,74.0,0,3,Check-Out,Louis Lewis,wilsonaaron@example.com,001-729-472-8003x2739,30241184582637,2025-09-02 +Resort Hotel,1,148,2017,May,19,8,1,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,108.36,0,0,Canceled,Natalie Montgomery,anitahayes@example.net,803-560-9472x7455,502077615073,2025-07-27 +City Hotel,0,87,2017,August,33,14,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,228.1,1,1,Check-Out,Allison Stark,rileyjessica@example.com,(518)979-5013,30230645667772,2024-06-14 +City Hotel,0,24,2017,December,51,22,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,106.1,0,2,Check-Out,Tiffany Martin,allenlisa@example.org,427.618.0013,579185242347,2026-03-09 +City Hotel,0,22,2017,January,5,30,0,1,3,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,65.28,0,1,Check-Out,Marissa Cantrell,fshort@example.net,(545)510-4377x01168,501830336878,2025-03-06 +City Hotel,0,38,2017,August,32,5,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,107.37,0,1,Check-Out,Brian Burnett,parkerpaul@example.net,499-688-0533x6019,4517176401148,2026-01-30 +City Hotel,1,414,2017,January,2,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.41,0,0,Canceled,Terri Mitchell,ejohnson@example.org,+1-438-469-2810x33322,2720155242983341,2025-02-15 +City Hotel,1,414,2017,August,32,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,124.04,0,0,Canceled,Jason Dunlap,robert73@example.org,750.367.7724x6818,6594130954455014,2025-12-25 +City Hotel,1,385,2017,August,34,23,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,63.5,0,1,Canceled,David Peters,jmontgomery@example.com,698-975-2664,060460351632,2025-12-27 +Resort Hotel,1,275,2017,May,21,24,3,4,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,103.13,0,0,Canceled,Christopher Nolan,qgutierrez@example.net,001-503-513-0147x0930,349085330724981,2025-03-02 +City Hotel,1,57,2017,April,17,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,86.07,0,1,Canceled,Tammy Brown,bianca26@example.net,001-936-606-5406,4447856962735849,2025-03-20 +Resort Hotel,0,159,2017,May,20,12,0,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,1,No Deposit,15.0,179.0,0,Transient,210.27,0,0,Check-Out,Mariah Lutz,wadejon@example.org,+1-917-629-8885x085,377352425634052,2024-12-12 +Resort Hotel,0,46,2017,October,41,8,2,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,0,Transient-Party,147.44,0,2,Check-Out,Danielle Joyce,robert44@example.com,001-746-667-9846x7615,378163108750167,2024-06-10 +Resort Hotel,0,11,2017,February,6,4,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,22.0,179.0,0,Transient-Party,49.94,0,0,Check-Out,Lauren Moore,mathisdustin@example.net,+1-917-527-7713x3608,3570695868931883,2024-10-19 +City Hotel,1,221,2017,August,32,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,96.55,0,0,Canceled,Alan Carpenter,peaton@example.net,+1-229-610-8279x507,4588351974952958826,2024-04-21 +Resort Hotel,0,1,2017,December,52,27,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient-Party,53.01,0,2,Check-Out,Kayla Wilson,williamsjoseph@example.net,+1-457-871-2231x12500,4936839914030335,2025-12-18 +City Hotel,0,390,2017,June,23,4,0,1,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,94.07,0,0,Check-Out,Gregory Rogers,kshah@example.net,475.910.5775,30310187583338,2025-02-03 +Resort Hotel,1,273,2017,May,22,26,0,2,3,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,C,A,0,Non Refund,243.0,179.0,0,Transient,106.8,0,1,Canceled,Danielle Rice,johnrodriguez@example.org,(371)654-0265,2423145354704270,2024-07-17 +City Hotel,0,47,2017,November,45,9,0,1,1,0.0,0,BB,NLD,Direct,Corporate,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,62.0,0,0,Check-Out,Erica Cook,wburke@example.org,(503)492-3269x898,4555689541224,2024-12-11 +City Hotel,1,16,2017,May,19,5,2,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,108.37,0,1,Canceled,Cody Schaefer,hannah01@example.net,782-394-8269,38892158394151,2024-04-26 +Resort Hotel,0,15,2017,March,12,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,57.52,1,1,Check-Out,Kimberly Ortiz,amber94@example.com,833-457-1620x6583,180079708447285,2024-05-20 +City Hotel,0,13,2017,May,20,11,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,125.95,0,2,Check-Out,Autumn Farmer,franklinjesus@example.com,268.484.7385x382,349452761285876,2026-03-12 +Resort Hotel,1,13,2017,January,4,21,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,165.8,1,0,Canceled,Ryan Conner,jhernandez@example.com,001-781-419-2252,371314524504699,2026-01-18 +City Hotel,0,41,2017,September,37,15,1,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,E,A,0,No Deposit,3.0,179.0,0,Transient-Party,102.31,0,0,Check-Out,Peggy Lopez,angel78@example.org,413.859.2892,4930009180614461,2024-12-20 +City Hotel,1,16,2017,May,18,3,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,15.0,209.0,0,Transient,107.85,0,0,Canceled,Rhonda Wise,nday@example.net,001-259-794-9967x36411,4776920802461658566,2025-04-22 +City Hotel,0,8,2017,November,47,23,0,4,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Group,52.56,0,0,Check-Out,Sarah Morgan,pcisneros@example.com,525.369.2493x8904,4960459379391050502,2025-02-16 +City Hotel,0,35,2017,October,40,6,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,65,Transient-Party,73.68,0,0,Check-Out,Jeffrey Robinson,scottchen@example.org,(256)290-7259x9131,676151961031,2026-01-08 +City Hotel,1,383,2017,June,24,10,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,Non Refund,83.0,179.0,0,Transient,79.51,0,0,Canceled,Michael Walker,peggywashington@example.net,+1-464-423-5485,38778872365751,2025-07-05 +City Hotel,0,0,2017,March,12,23,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,B,1,No Deposit,15.0,45.0,0,Transient,90.96,0,0,Check-Out,Justin Rose,mikelong@example.net,+1-630-308-1576,213180285743350,2025-04-20 +City Hotel,0,6,2017,August,33,13,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.01,0,1,Check-Out,Oscar Walsh,gilljessica@example.org,(764)363-7141x971,180043523980474,2025-08-09 +Resort Hotel,1,410,2017,July,30,26,1,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,191.0,179.0,0,Transient,72.7,0,0,Canceled,James Thomas,aaronsmith@example.com,+1-857-888-1456x753,6011449579788699,2024-07-23 +City Hotel,0,108,2017,April,15,12,0,1,2,0.0,0,FB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,117.98,0,0,Check-Out,Ana Grimes,sampsonalicia@example.org,+1-339-376-9762,6546994739291237,2026-03-26 +City Hotel,1,94,2017,June,26,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,75.0,179.0,0,Transient,85.89,0,1,Canceled,Alan Smith,tracy17@example.com,472.866.9154,5576889374595642,2024-08-31 +Resort Hotel,0,86,2017,July,27,8,3,6,2,1.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,130.57,0,1,Check-Out,Brian Ellis DDS,kelly91@example.org,658-311-0837x709,341101363818935,2024-09-29 +Resort Hotel,0,55,2017,October,41,9,0,3,1,0.0,0,BB,IRL,Online TA,GDS,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,121.57,0,0,Check-Out,Elaine Pruitt,anthony06@example.net,001-654-721-6930x526,2371109744899747,2024-10-09 +City Hotel,0,164,2017,July,28,9,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,110.42,0,1,Check-Out,Timothy Ramirez,foxbruce@example.com,001-880-502-2326x7679,373879616086688,2024-06-19 +Resort Hotel,0,29,2017,March,11,17,0,2,1,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,61.83,1,0,Check-Out,Leslie Mcneil,owensalicia@example.com,354.950.6693,180039252862107,2025-02-05 +City Hotel,1,149,2017,July,29,18,0,1,1,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,104.72,0,1,Canceled,Eric Hicks,howardsharon@example.net,553-290-8324x74223,374349012235171,2025-01-21 +City Hotel,0,0,2017,September,36,4,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,161.85,0,1,Check-Out,Kaitlin Tran,jonathan54@example.org,5216132326,374508186336434,2024-04-10 +Resort Hotel,1,293,2017,December,51,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,263.0,179.0,0,Transient,101.77,0,0,Canceled,Bruce Holt,pwilliams@example.net,001-354-489-4542,3520750553436846,2026-01-04 +Resort Hotel,0,28,2017,October,40,5,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Group,0.61,0,0,Check-Out,Natasha Watson,sferguson@example.org,001-691-511-1768x5133,4398136504820,2026-01-18 +Resort Hotel,0,13,2017,April,14,2,4,0,2,0.0,0,HB,PRT,Complementary,Direct,0,0,0,E,G,0,No Deposit,17.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Lee Greene MD,haneyseth@example.net,001-450-894-5484x8290,30298126526809,2024-11-05 +City Hotel,0,43,2017,July,30,24,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,183.03,0,2,Check-Out,James Doyle,wellsevan@example.org,001-932-788-8941,4606366356195057751,2024-05-30 +City Hotel,0,51,2017,October,43,23,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,143.46,0,2,Check-Out,Mike Robinson,brentward@example.org,940-773-0223x534,4206764589738256,2024-05-13 +City Hotel,1,130,2017,July,30,25,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,129.1,0,0,No-Show,Theresa Burns,wchan@example.net,(544)257-0585,3570231370461886,2024-07-19 +City Hotel,1,48,2017,November,44,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.59,0,0,Canceled,Michael Walters,matthewbarber@example.com,957-996-4789,4040914306956925802,2025-05-25 +City Hotel,1,112,2017,May,21,23,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.99,0,2,Check-Out,Melvin Williams,ngonzales@example.com,(502)485-6290x809,4839040758083666,2025-08-19 +Resort Hotel,0,96,2017,October,42,18,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,172.0,179.0,0,Transient,43.07,0,1,Check-Out,Phillip Vega,guzmankatherine@example.org,990.849.6510x788,6011209158641333,2025-10-26 +Resort Hotel,1,127,2017,July,30,25,0,5,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,229.61,1,2,Canceled,Tammy Baker,ramirezscott@example.net,2254823767,4892264871852,2024-07-10 +City Hotel,1,326,2017,October,41,8,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,101.1,0,0,Canceled,Elizabeth Smith,heather16@example.net,+1-357-902-2655x0811,373637368806079,2026-02-13 +City Hotel,0,267,2017,October,41,10,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,0,Transient-Party,77.28,0,1,Check-Out,Joseph Chase,eroth@example.com,618.801.1508x217,3586896292542658,2025-02-11 +City Hotel,1,60,2017,August,35,25,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,252.0,0,1,Canceled,Kenneth Hunter,emedina@example.com,+1-679-830-2738,060435453455,2024-09-05 +City Hotel,1,14,2017,July,28,10,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,85.17,0,1,Canceled,Michael Miller,sking@example.net,653.800.2929x12054,4647719427214586,2024-10-17 +City Hotel,0,3,2017,October,40,5,0,5,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,1.96,1,0,Check-Out,Jessica Cantu,xcalhoun@example.com,884.505.9615x7353,4245877248150714154,2025-11-06 +City Hotel,0,88,2017,June,27,29,0,1,1,0.0,0,SC,SWE,Online TA,GDS,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,150.73,0,0,Check-Out,Lori Aguilar,greynolds@example.org,001-345-631-6125,4326729852257339,2025-05-10 +City Hotel,1,9,2017,May,21,19,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.92,0,1,Canceled,Adam Becker,jacqueline67@example.org,001-411-301-4280,4754298611464660,2025-10-06 +Resort Hotel,0,22,2017,April,17,22,1,1,1,2.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,252.0,0,0,Check-Out,David Curry,osanchez@example.org,952-262-7527x0710,4304043308850028,2026-03-21 +City Hotel,0,37,2017,January,5,30,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,7.0,179.0,0,Transient,86.32,0,1,Check-Out,Nicholas Lewis,chris89@example.org,7684911551,30261532326222,2025-04-11 +City Hotel,0,46,2017,August,31,1,2,4,2,1.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,128.99,0,2,Check-Out,Andrew Robinson,lawsonkenneth@example.com,386-712-1806x2461,38449776479516,2025-06-05 +City Hotel,0,36,2017,March,9,1,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.02,0,2,Check-Out,Zachary Lee,hbrooks@example.net,001-762-648-2189,38220742185291,2025-08-31 +City Hotel,0,49,2017,October,42,19,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,106.19,0,1,Check-Out,Gregory Craig,gwilson@example.com,9539532464,676293073620,2026-02-16 +City Hotel,0,96,2017,June,26,22,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,166.08,0,0,Check-Out,Regina Brady,smithdavid@example.com,(991)307-5063x230,3504103595925253,2026-03-25 +Resort Hotel,0,159,2017,March,14,30,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,62.54,0,0,Check-Out,Caleb Rodriguez,cory87@example.org,(787)508-2640,4056639394954051,2025-04-20 +Resort Hotel,1,110,2017,December,49,3,1,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,81.63,0,1,Canceled,Mrs. Tammy Jackson MD,fergusonmitchell@example.net,884.358.5557x36920,4423050674441139806,2025-01-09 +City Hotel,0,16,2017,March,13,25,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,51.02,1,1,Check-Out,Joshua Blackwell,sarah65@example.org,805.762.7724x3686,348428099270690,2025-01-12 +Resort Hotel,1,102,2017,April,16,18,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,119.68,0,0,Canceled,Morgan Collins,vcox@example.net,(242)285-7678,4831297358635885,2025-08-28 +Resort Hotel,0,48,2017,September,39,28,2,5,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,F,1,No Deposit,197.0,179.0,0,Transient-Party,123.24,0,0,Check-Out,Victor Huynh,michelle95@example.com,678.409.5029x8256,2245631067415508,2025-06-27 +City Hotel,0,0,2017,April,16,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,218.0,0,Transient,107.7,1,0,Check-Out,Jennifer Torres,blevinskathryn@example.com,5604370016,4509016656711575727,2025-11-21 +City Hotel,0,45,2017,October,41,10,1,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,82.99,0,0,Check-Out,Wanda Brown,marshalldean@example.org,996-761-2640x10938,4304230083389898,2025-02-04 +Resort Hotel,0,1,2017,May,20,13,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,0.91,0,1,Check-Out,James Ferguson,marioyoung@example.net,708-731-4362x80447,4213989265355460,2025-04-27 +City Hotel,0,41,2017,June,26,23,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,163.97,1,2,Check-Out,Jennifer Hall,lovevalerie@example.org,861-233-2915,2408908220818635,2025-07-15 +Resort Hotel,1,34,2017,August,33,14,2,4,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,234.91,0,1,Canceled,Alicia Gardner,sanchezmaria@example.com,479.741.7593x2885,3533611633429240,2024-06-14 +Resort Hotel,1,313,2017,July,29,22,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,240.0,179.0,0,Contract,62.28,0,2,Canceled,Stacy Adams,zfranklin@example.net,(517)464-1820x806,3523081900687858,2025-03-28 +City Hotel,0,23,2017,February,6,9,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,2,No Deposit,14.0,222.0,0,Transient,80.62,0,0,Check-Out,Amber Evans,bgillespie@example.org,338.986.9154x3250,6500938579594675,2024-10-14 +City Hotel,0,39,2017,August,33,14,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,182.44,0,1,Check-Out,Kara Fitzgerald,alexpatel@example.org,9845133537,3528850842256385,2025-07-19 +Resort Hotel,0,192,2017,August,32,7,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,231.28,0,1,Check-Out,Jennifer Winters,anthony50@example.com,001-927-856-9884,30446493048036,2024-12-30 +City Hotel,0,0,2017,August,34,20,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,138.03,0,0,Check-Out,Joseph Williams,cassandra69@example.com,6236813071,4573435453708288,2025-04-08 +City Hotel,0,5,2017,September,36,4,0,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient-Party,77.21,0,0,Check-Out,Terry Prince,meganstrickland@example.org,(989)727-5497x137,501885341567,2025-02-07 +City Hotel,1,86,2017,February,8,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,62.47,0,1,Canceled,Lisa Potter,sandersjennifer@example.org,(467)251-6425,4450276236695,2024-10-14 +City Hotel,1,173,2017,May,18,1,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,119.57,0,0,Canceled,Diana Gould,christopher76@example.net,+1-217-252-5940,3569843925520991,2024-07-08 +City Hotel,0,14,2017,April,17,22,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,103.94,0,2,Check-Out,Cathy Rose,thompsonrobert@example.com,(777)748-6531,676206981638,2024-09-11 +City Hotel,1,150,2017,March,10,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,102.77,0,0,Canceled,Austin Harris,perrydaniel@example.com,+1-306-599-1161x1271,342944814293078,2025-05-03 +City Hotel,1,414,2017,May,20,13,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.84,0,0,Canceled,Amanda Ayers,kellyrobert@example.com,001-547-766-5193,213172469594980,2026-03-22 +City Hotel,1,96,2017,October,42,19,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,167.21,0,0,Canceled,Claudia Stokes,ashleevelez@example.net,+1-880-460-4110x54397,4517119974792125,2024-07-16 +Resort Hotel,0,144,2017,July,27,2,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,78.34,0,3,Check-Out,Angela Elliott,nicolewiley@example.com,+1-235-891-0857x95934,180033885984453,2026-01-11 +City Hotel,0,89,2017,October,41,13,2,6,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,308.0,179.0,0,Transient,144.01,0,0,Check-Out,Kelli Lee,mike35@example.com,(346)940-0586x992,2283615567880140,2025-02-25 +Resort Hotel,1,32,2017,August,32,10,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,75.68,0,0,Canceled,Pamela Lawrence,biancapacheco@example.net,001-421-433-7486x5622,4124510499249523,2024-05-17 +City Hotel,0,178,2017,August,35,31,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.34,0,1,Check-Out,Patrick Smith,pcrawford@example.org,832.964.6519x79623,4727564528952,2024-06-07 +Resort Hotel,0,7,2017,December,50,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,49.89,1,2,Check-Out,Matthew Smith,iphillips@example.net,963.961.3890,3544870853997628,2026-03-16 +City Hotel,0,45,2017,November,46,13,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,31.0,179.0,0,Transient,85.55,0,0,Check-Out,Kelly Rodgers,huntjacob@example.com,001-297-312-0188,2720758435533433,2025-09-10 +City Hotel,0,162,2017,July,28,9,1,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,175.91,0,1,Check-Out,Brian Miller,cpham@example.org,(494)273-1148x535,2720782963515992,2026-01-02 +City Hotel,0,154,2017,June,24,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,25.0,179.0,0,Transient,126.39,0,2,Check-Out,Jason Carpenter,vanessalee@example.com,278.402.6052x17241,060472645583,2025-10-08 +Resort Hotel,0,291,2017,August,32,11,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.02,0,1,Check-Out,Christina Vaughn,uspencer@example.net,514-361-9491,4822385279669,2025-02-03 +Resort Hotel,0,44,2017,March,14,30,1,3,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,1,No Deposit,248.0,179.0,0,Transient,230.84,1,2,Check-Out,Robert Harris,denise60@example.net,001-798-300-7972,4475064472319,2024-07-27 +City Hotel,1,164,2017,March,10,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,29.0,179.0,0,Transient,64.81,0,1,Canceled,Nicholas Banks,regina87@example.com,001-977-498-1663,4829645484576569,2024-06-08 +Resort Hotel,1,44,2017,April,17,25,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,94.56,0,0,Canceled,Candace Freeman,derekthompson@example.net,+1-499-285-9976,2228701133118351,2025-09-16 +City Hotel,1,0,2017,March,13,25,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient,79.5,0,0,No-Show,Kristin Grant,anthony08@example.org,874.508.5490x6771,2719841767740397,2024-07-29 +City Hotel,1,1,2017,March,12,20,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,0.99,0,0,Canceled,Steven Hopkins,graywillie@example.com,507.209.8539,376894267818799,2025-01-02 +Resort Hotel,1,160,2017,March,11,16,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,52.15,0,0,Canceled,Michael Nichols,wdavis@example.org,+1-980-394-7871x520,3595962409194038,2024-03-28 +City Hotel,1,183,2017,July,29,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,132.32,0,0,Canceled,Christopher Gonzalez,ghernandez@example.net,220.268.1426,378059595762915,2026-01-27 +City Hotel,0,46,2017,April,18,30,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,144.16,0,3,Check-Out,Mr. Matthew Sanchez,xmendoza@example.net,667-661-6980x25965,6501449054958244,2025-02-12 +City Hotel,0,12,2017,June,24,10,0,2,1,1.0,0,BB,BEL,Aviation,Corporate,0,0,1,A,A,2,No Deposit,13.0,180.0,0,Transient,112.84,0,0,Check-Out,Thomas Wells,mitchelljason@example.net,001-453-615-9421x271,4936606467866385,2024-08-20 +Resort Hotel,0,38,2017,August,32,6,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,19.0,179.0,0,Transient,252.0,1,0,Check-Out,Jennifer Moore,rtate@example.net,893-919-4465,344905594458213,2025-01-06 +City Hotel,0,42,2017,March,13,31,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.96,1,1,Check-Out,Kyle Smith Jr.,fbrown@example.org,315-419-8588x0834,30119048396487,2025-12-06 +City Hotel,0,2,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,145.03,0,0,Check-Out,Melissa Schmidt,hallalec@example.net,395-924-9899x18455,4766374578944501,2025-02-22 +Resort Hotel,1,55,2017,December,49,4,0,4,1,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,54.0,0,1,Check-Out,George Johnson,pierceteresa@example.net,+1-999-892-4803x526,4558129543644,2025-02-17 +City Hotel,0,2,2017,August,33,15,1,2,1,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,194.42,0,1,Check-Out,Jennifer Herrera,chad30@example.net,816-328-4076x6457,4709188265863810177,2025-04-29 +Resort Hotel,1,14,2017,April,17,23,1,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,247.43,0,0,Canceled,Jorge Sanchez,martinmary@example.com,(368)591-7029x782,4577417495585722,2026-03-16 +City Hotel,0,151,2017,November,47,24,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,130.85,0,1,Check-Out,Connie Wong,kathymendoza@example.com,(773)449-1384,4050944326081593,2025-09-18 +City Hotel,0,0,2017,February,6,9,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,106.99,0,2,Check-Out,Mark Walker,scottjeremy@example.net,+1-291-287-1551,3596785826033037,2024-07-10 +City Hotel,0,14,2017,July,30,26,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,66.4,0,1,Check-Out,Amy Hawkins,bautistamichele@example.net,352.767.6756,4892131985766468086,2025-09-15 +City Hotel,0,89,2017,November,48,26,1,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.06,0,1,Check-Out,Tyler White,kaylee04@example.org,807.641.4685x694,3548208240227316,2026-02-15 +City Hotel,0,232,2017,November,47,22,0,1,2,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,113.25,0,0,Check-Out,Troy Davis,natasha61@example.com,231.795.6572x85853,30584194692767,2025-12-24 +City Hotel,1,88,2017,July,30,26,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,103.8,0,0,Canceled,Gregory Watkins,richardgregory@example.com,+1-363-812-7456x0960,6529393759487471,2025-09-16 +City Hotel,0,193,2017,September,38,21,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,102.32,0,1,Check-Out,Raymond Lawrence,thompsonchristine@example.com,+1-925-717-6497x877,2247797694723479,2025-10-30 +Resort Hotel,1,13,2017,August,34,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,136.94,1,2,Canceled,Dana Levy,uwalker@example.net,308-695-0185x54324,38367398163161,2025-09-01 +City Hotel,0,144,2017,October,41,9,2,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,185.32,0,0,Check-Out,Jeffrey Chen,mford@example.com,512.513.9464x516,3549437355926177,2025-10-21 +Resort Hotel,0,1,2017,October,40,6,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,32.0,221.0,0,Transient,3.46,1,0,Check-Out,Jennifer Heath,stephen84@example.net,(378)718-4336x3375,30038038155135,2024-08-30 +Resort Hotel,0,18,2017,March,13,26,0,2,1,0.0,0,HB,PRT,Complementary,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient,50.14,0,2,Check-Out,Jeffrey Preston,donaldthomas@example.com,+1-494-882-9670x2376,060493990315,2024-06-08 +City Hotel,0,45,2017,March,10,5,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,111.44,0,1,Check-Out,Priscilla Moore,patrickstephanie@example.net,5398006781,372886292974930,2024-11-26 +City Hotel,0,15,2017,January,2,5,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,192.35,1,1,Check-Out,Ruth Price DDS,martinjennifer@example.org,239-773-5320x9222,4409957356309797130,2025-04-08 +Resort Hotel,0,17,2017,February,6,4,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,310.0,179.0,0,Transient-Party,40.47,1,0,Check-Out,Kenneth Cruz,swhitaker@example.net,(426)465-4125x026,4455645057268,2025-07-16 +Resort Hotel,0,26,2017,August,35,28,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,136.75,0,1,Check-Out,Bradley Padilla,deborahward@example.org,+1-288-575-6939x0378,4550978875797,2025-10-11 +Resort Hotel,0,166,2017,April,16,18,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,97.15,0,0,Check-Out,Chris Clay,becky63@example.org,001-549-751-6463x339,6011857873858317,2024-12-20 +Resort Hotel,0,127,2017,April,15,8,2,2,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,112.42,0,1,Check-Out,Edward Garcia,samuel87@example.org,242.413.8756x32383,213199109634611,2025-08-19 +Resort Hotel,0,63,2017,June,23,7,1,3,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,244.01,1,3,Check-Out,Dr. Amanda Hoffman,lindsaydiaz@example.net,665.651.0525x75191,4485959161612,2025-12-07 +City Hotel,0,3,2017,October,43,24,0,2,1,0.0,0,BB,NLD,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,25.0,235.0,0,Transient-Party,96.98,0,0,Check-Out,Bethany Dunn,murphymary@example.org,(782)703-4247,676357821484,2026-03-14 +Resort Hotel,0,14,2017,September,38,22,0,5,3,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,62.79,1,0,Check-Out,Gary Lopez,bjohnson@example.org,7863834254,4738318258347472674,2024-12-07 +City Hotel,0,12,2017,August,35,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,45.0,0,Transient,105.3,0,1,Check-Out,Kimberly Hester,joshua83@example.net,467-589-4811x19844,2235187217274834,2025-08-02 +City Hotel,1,12,2017,August,35,26,2,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,248.91,0,1,Canceled,Benjamin Mcintosh,griffithkimberly@example.org,(882)786-7105x435,372270913068903,2026-02-26 +Resort Hotel,1,99,2017,October,41,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,308.0,179.0,0,Transient,51.79,0,0,Canceled,Beverly Hayes,donald32@example.com,496.292.8229x9079,3551833141166729,2025-09-13 +Resort Hotel,0,99,2017,May,19,6,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,222.0,64,Transient-Party,77.88,0,0,Check-Out,Allison Perry,michaelcarter@example.com,5023677655,4148535431285523449,2026-02-18 +Resort Hotel,0,323,2017,October,41,9,1,6,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,93.0,179.0,0,Transient-Party,79.54,0,0,Check-Out,Lisa Santos,jamespowell@example.org,688-414-1493,2701524638605839,2024-09-09 +City Hotel,1,269,2017,July,26,1,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,120.41,0,0,Canceled,Austin Allen,mcdowellcassandra@example.com,(571)237-9140x336,4072280198209754,2024-07-25 +City Hotel,1,120,2017,October,43,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,20,Transient-Party,101.23,0,0,Canceled,Shannon Williams,phillipsamy@example.com,628.766.5705x30367,2497157027174634,2024-05-31 +City Hotel,0,30,2017,August,35,28,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,208.58,0,2,Check-Out,John Jones,yorkjoshua@example.org,6095051544,589660674708,2025-04-06 +City Hotel,0,45,2017,November,47,24,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,83.5,0,0,Check-Out,Joshua Newman,shannoncummings@example.net,983.822.7866,3585868409248314,2024-10-25 +Resort Hotel,1,39,2017,September,39,23,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,165.91,0,0,Canceled,Jennifer Huynh,urichardson@example.com,4732108287,6573295373056753,2025-12-14 +Resort Hotel,0,1,2017,January,2,1,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,1,No Deposit,242.0,179.0,0,Transient,60.65,1,1,Check-Out,David Figueroa,meganhendricks@example.net,233.768.4781,4425604976399973615,2024-10-11 +City Hotel,0,19,2017,December,50,15,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,114.2,0,2,Check-Out,Jennifer Miller,dbartlett@example.com,(794)237-2831x499,376216369834229,2025-11-29 +Resort Hotel,0,191,2017,August,33,14,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,305.0,179.0,0,Transient,79.64,0,0,Check-Out,Denise Walker,ljordan@example.net,465.330.1995,2669709227174459,2025-08-23 +Resort Hotel,0,407,2017,March,12,17,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,305.0,179.0,0,Transient-Party,80.51,0,0,Check-Out,Mr. Jon Warren,jarmstrong@example.com,(808)442-1041,6516778581684888,2025-11-09 +City Hotel,1,19,2017,December,51,22,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,114.74,0,1,Canceled,Melissa Hill,james85@example.com,919.992.0602,6011236361325578,2024-04-16 +Resort Hotel,0,40,2017,January,2,3,4,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,55.49,0,1,Check-Out,David Jones,barbara99@example.net,001-898-522-7206x0620,4866502084414044,2024-08-14 +City Hotel,1,1,2017,January,2,3,1,3,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,82.61,0,0,Check-Out,Tanya Palmer,mark79@example.com,5803145885,213119484008629,2024-08-16 +City Hotel,1,161,2017,July,31,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,132.0,179.0,0,Transient,112.38,0,0,Canceled,Jessica Collins,danielle14@example.net,583-784-0162x91377,4118533497929134,2026-03-04 +City Hotel,0,3,2017,August,34,23,1,2,1,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,117.34,0,1,Check-Out,Stephanie Lee,janet68@example.org,820.770.4250x23808,349112778552854,2024-04-16 +City Hotel,0,76,2017,August,34,25,2,1,2,0.0,0,BB,FRA,Undefined,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,77.46,0,1,Check-Out,Virginia Johnson,smithryan@example.com,254-264-6526,3515435567013354,2025-11-16 +Resort Hotel,0,52,2017,February,5,2,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,318.0,179.0,0,Transient-Party,48.52,0,0,Check-Out,Derek Smith,micheal71@example.net,616.929.8125,6500907895322558,2025-10-13 +City Hotel,0,199,2017,September,36,2,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,85.0,179.0,0,Transient-Party,131.74,0,1,Check-Out,Ryan Crawford,curtisjeffrey@example.net,(529)373-3836,343171532624876,2025-04-29 +Resort Hotel,1,244,2017,November,44,3,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,42.4,0,0,Canceled,Bryan Mendoza,susanwade@example.org,805.801.9198,4861411302075493,2024-09-23 +City Hotel,0,93,2017,December,49,8,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,65.57,0,1,Check-Out,Lisa Clarke,maria84@example.net,+1-496-493-5632x13200,6011591315528085,2024-11-15 +Resort Hotel,0,0,2017,September,38,22,1,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,239.29,1,1,Check-Out,Kimberly Jones,zprice@example.net,001-998-440-3121,3511669484474273,2024-09-17 +City Hotel,0,413,2017,June,26,24,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,68.0,179.0,0,Transient,107.94,0,0,Check-Out,Brian Smith,floresjames@example.net,001-957-987-0959x890,180064740942493,2024-04-07 +City Hotel,0,1,2017,August,35,27,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,252.0,0,2,Check-Out,Nathan Clark,jessica85@example.com,+1-850-737-1829x839,676376246341,2024-08-03 +Resort Hotel,0,22,2017,January,2,3,0,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,126.77,1,1,Check-Out,Eddie Walker,karenblankenship@example.com,224.339.9288,379038531422692,2024-08-17 +City Hotel,0,155,2017,October,42,15,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,72.0,179.0,65,Transient-Party,68.47,0,0,Check-Out,Wendy Barber,kelly10@example.com,2102568426,374994386708269,2025-06-03 +City Hotel,0,25,2017,September,38,22,2,2,2,0.0,0,Undefined,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,106.01,0,2,Check-Out,Daniel Scott,arasmussen@example.org,+1-587-382-5848x3162,3576552196184616,2024-09-14 +City Hotel,1,52,2017,November,48,30,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,113.2,0,1,Canceled,Jessica Mcclain,theresa22@example.com,(912)326-7770x0118,3559566048950686,2025-07-11 +City Hotel,1,300,2017,September,37,11,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,2,No Deposit,23.0,179.0,0,Transient-Party,80.21,0,0,Canceled,Alexandra Simon,carlos76@example.net,345.874.8179x361,4723456923906285,2025-02-03 +City Hotel,0,315,2017,July,29,15,2,1,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,131.66,0,0,Check-Out,Scott Smith,anthonydaniels@example.net,+1-923-478-8018x6658,3596285006544184,2025-03-28 +City Hotel,0,69,2017,November,48,26,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,86.19,0,2,Check-Out,Samuel Mendez,yolandapowers@example.com,+1-486-746-7216x1160,3546781523207512,2024-08-14 +Resort Hotel,0,14,2017,May,18,5,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient,47.46,1,1,Check-Out,Tabitha Smith,kevin22@example.com,556.259.5429x06875,213170966542460,2025-12-12 +City Hotel,0,212,2017,August,31,2,2,4,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,117.04,0,2,Check-Out,Nicholas Shaw DDS,michaelmiller@example.net,(270)303-8339x009,4180790131853885864,2024-05-24 +Resort Hotel,0,94,2017,August,34,24,0,2,2,1.0,0,BB,GBR,Online TA,GDS,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,225.9,1,1,Check-Out,Bobby Anderson,kevinferguson@example.com,+1-855-570-0991,3566916269957616,2025-03-05 +City Hotel,1,386,2017,May,18,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,35.0,179.0,0,Transient-Party,63.5,0,0,Canceled,Christopher Ruiz,ericweaver@example.com,+1-916-785-2732x987,676210901739,2025-04-19 +City Hotel,0,27,2017,January,3,16,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,83.77,0,1,Canceled,Earl Howard,billparker@example.org,8147929154,3593207586415455,2025-04-01 +City Hotel,0,0,2017,April,18,27,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.97,0,1,Check-Out,Stephen Powell,michellewaters@example.net,678.981.2098,6011461728653138,2025-04-01 +City Hotel,1,15,2017,December,51,19,0,4,2,0.0,0,BB,AUT,Online TA,TA/TO,0,1,0,A,D,1,No Deposit,10.0,179.0,0,Transient-Party,103.33,0,1,Canceled,Jacob Wells,cwoodard@example.net,9447521432,377636064457373,2024-10-27 +City Hotel,1,47,2017,September,38,20,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,132.82,0,2,Canceled,Christy Hernandez,brendan05@example.net,9944041031,4353813525533783892,2024-07-17 +Resort Hotel,1,112,2017,February,7,12,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,Non Refund,131.0,179.0,0,Transient-Party,89.81,0,0,Canceled,Adam Knox,proctorandrew@example.org,675-558-4723x0518,4632077358886063,2025-01-03 +Resort Hotel,0,121,2017,March,11,11,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient-Party,86.93,1,0,Check-Out,Paul Smith MD,laura97@example.com,(752)716-5035,6516912460931389,2025-08-30 +Resort Hotel,1,106,2017,December,50,9,2,5,2,0.0,0,Undefined,FRA,Offline TA/TO,TA/TO,0,0,0,F,A,0,No Deposit,190.0,179.0,0,Transient-Party,78.6,0,0,Canceled,Stephen Ewing,melissaturner@example.org,+1-564-409-9913,3508796754556540,2025-05-09 +Resort Hotel,0,131,2017,March,11,17,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,313.0,179.0,0,Transient,53.35,0,1,Check-Out,Joseph Garrett,jenniferescobar@example.net,687-761-4822,3500533881390354,2025-05-12 +Resort Hotel,0,2,2017,January,4,20,1,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,47.73,1,0,Check-Out,Diane Williams,christinaholmes@example.org,001-878-294-5778x8843,4581867918828449272,2024-10-23 +City Hotel,0,14,2017,January,4,21,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,79.91,1,0,Check-Out,Richard Francis,garymitchell@example.org,001-933-584-4415x778,6548200725203758,2025-05-03 +Resort Hotel,0,11,2017,March,13,27,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,49.15,0,1,Check-Out,Samantha Russell,tammie91@example.org,451.710.0030x29487,180085142057788,2025-08-20 +Resort Hotel,0,12,2017,February,7,11,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,194.0,179.0,0,Transient,106.63,0,0,Check-Out,Megan Jones,kirstenchaney@example.net,(259)438-7093x111,4900485699933459,2024-03-31 +City Hotel,0,40,2017,November,47,20,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,67.0,0,Transient-Party,44.17,0,0,Check-Out,William Alexander,trichardson@example.org,+1-946-824-5416x9346,370444633799285,2024-12-21 +City Hotel,1,50,2017,March,12,24,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,78.46,0,0,Canceled,Robert Martin,ytrevino@example.net,001-708-721-8823x3464,3580845499613677,2025-06-24 +Resort Hotel,1,88,2017,April,17,24,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,230.0,0,Transient-Party,50.43,0,0,Canceled,James Burke,ihamilton@example.net,001-668-872-0570,2704340099110814,2024-04-13 +City Hotel,1,59,2017,May,22,26,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,103.37,0,0,Canceled,Anna Miller,russellryan@example.org,+1-636-869-5613,3541411970638291,2025-03-19 +Resort Hotel,1,48,2017,February,9,27,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Canceled,Peter Kemp,sanchezanthony@example.net,594.311.2360x2949,3570648380246314,2025-06-29 +City Hotel,0,19,2017,October,40,6,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.68,0,1,Check-Out,Sharon Hester,anichols@example.org,001-784-345-9856x7840,4942767812444831,2025-12-10 +City Hotel,0,170,2017,July,30,26,2,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,217.77,0,2,Check-Out,Gary Conner,mcombs@example.org,826-255-0616x6901,4477211050701613,2025-05-01 +City Hotel,1,181,2017,July,27,2,3,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,237.8,0,0,Canceled,Richard Cruz,lindalee@example.org,+1-757-678-9051x17657,2276010194727204,2024-10-21 +City Hotel,0,236,2017,August,31,3,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Contract,84.63,0,2,Check-Out,Reginald White,ethompson@example.net,+1-706-514-0004x5894,675921520200,2024-09-22 +City Hotel,0,106,2017,August,33,11,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,132.76,0,2,Check-Out,Cory Pitts,pamelahill@example.com,792.349.3282,30207694290920,2024-12-11 +Resort Hotel,0,93,2017,April,17,25,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,241.0,179.0,0,Transient,105.36,0,1,Check-Out,Robin Collins,dalemartin@example.com,+1-277-624-0150x0769,630476493972,2024-12-24 +Resort Hotel,0,50,2017,October,40,5,1,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,268.0,179.0,0,Contract,62.09,0,1,Check-Out,Tiffany Chapman,pamelaflores@example.com,476.811.2356x9499,5194067865224244,2025-03-10 +City Hotel,1,414,2017,May,19,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,72.96,0,0,Canceled,Anthony Padilla,williamsmith@example.net,902.402.0107,4088361329954245228,2025-09-24 +Resort Hotel,0,12,2017,May,21,21,1,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,118.01,1,0,Check-Out,Molly Jennings,davidmiller@example.org,880-302-6922x54151,4943542214437534695,2025-04-13 +City Hotel,0,144,2017,June,23,5,1,0,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient,76.18,0,1,Check-Out,Norma Holmes,townsendjudith@example.net,+1-510-907-4032,3599467498443995,2025-06-23 +City Hotel,0,130,2017,July,28,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Brian Fowler,justin91@example.com,001-511-895-8643,180046347345477,2026-01-01 +Resort Hotel,0,0,2017,September,36,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,64.52,1,1,Check-Out,William Pace,lopezthomas@example.net,+1-205-253-8381x0881,213146551671328,2026-01-28 +Resort Hotel,1,97,2017,March,11,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,41.23,0,0,Canceled,Debbie Garcia,stephenanderson@example.net,(494)940-2449,4438546585272,2025-02-01 +City Hotel,0,41,2017,November,45,4,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,91.57,0,1,Check-Out,Jeanette Velez,murphyjessica@example.com,001-793-598-5181x70108,5182955646807911,2025-05-12 +City Hotel,1,199,2017,May,20,13,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,122.63,0,0,Canceled,Sharon Salazar,sarahbrown@example.org,(481)908-0520x112,30510291785725,2025-08-18 +City Hotel,1,0,2017,May,18,3,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,18.0,179.0,0,Transient-Party,63.85,0,1,No-Show,Brooke Newton,chelsea66@example.org,6236227322,4550815957402,2025-11-06 +Resort Hotel,0,191,2017,March,10,5,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,223.0,0,Transient-Party,52.31,0,0,Check-Out,Sherry Burke,ywood@example.net,(778)895-9017,2307988176324491,2024-05-24 +Resort Hotel,0,0,2017,February,5,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,0,A,A,0,No Deposit,14.0,45.0,0,Transient,41.15,0,1,Check-Out,Elizabeth Acevedo,matthewbell@example.org,+1-329-743-1186x42451,3543606093701045,2024-06-04 +City Hotel,0,37,2017,November,47,24,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,102.91,0,1,Check-Out,Christopher Moody,taylormarcus@example.net,001-366-276-9832x17498,567398036234,2025-12-21 +City Hotel,1,256,2017,April,18,27,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,Non Refund,20.0,179.0,0,Transient,64.08,0,1,Canceled,Samuel Morris,susanbrown@example.com,316-264-7671x0051,6532473865746195,2024-07-24 +City Hotel,0,5,2017,April,14,3,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,89.88,0,1,Check-Out,Lisa Carlson,jessicagordon@example.org,(388)577-3150x43162,4816732934406426,2026-02-19 +Resort Hotel,0,15,2017,February,6,5,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,50.35,0,0,Check-Out,Karen Cooper,davidmorales@example.org,982-311-6813x572,4720789649563704964,2024-04-04 +Resort Hotel,1,164,2017,May,19,4,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,104.28,0,0,Canceled,Samuel Campos,michelleproctor@example.net,801-290-4612,676339334861,2025-08-21 +City Hotel,1,43,2017,May,20,15,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,212.78,0,1,Canceled,Dr. Anthony Davidson,alyssa41@example.org,(248)899-7492,30184878673991,2024-08-25 +Resort Hotel,1,43,2017,May,19,8,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,72.4,0,1,Canceled,Hannah Boyer,russelltracy@example.net,+1-912-381-0326x10780,30022270430653,2025-06-13 +Resort Hotel,0,0,2017,June,25,21,2,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,113.08,0,1,Check-Out,Jessica Jones,vkelly@example.com,352.826.9381,341256684867530,2025-12-06 +City Hotel,0,52,2017,September,39,29,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,140.69,1,2,Check-Out,Ashley Cobb,hollybennett@example.com,925.399.8703x372,3526006810969382,2025-10-01 +City Hotel,1,46,2017,June,26,23,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,2,No Deposit,16.0,180.0,0,Transient,117.36,0,0,Canceled,David Tucker,keithmcbride@example.com,2753697954,342242786622592,2025-10-03 +Resort Hotel,0,202,2017,November,44,2,2,7,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,244.0,179.0,0,Transient-Party,76.25,1,1,Check-Out,Mr. John Ward,anthony13@example.com,759-423-3518,4654432181070620303,2024-05-31 +City Hotel,0,14,2017,October,42,20,1,1,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.48,0,0,Check-Out,Melissa Harris,annacrawford@example.org,200.655.5019x706,346090140561212,2024-09-25 +City Hotel,0,397,2017,August,32,12,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.49,0,0,Check-Out,Tristan Nelson,danielbauer@example.com,(410)779-4190,2278167686838705,2025-02-10 +City Hotel,1,23,2017,October,43,23,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.54,0,3,No-Show,Karen Mcdonald,garciajohn@example.com,+1-922-873-3319,2263085149237702,2025-07-07 +Resort Hotel,0,88,2017,December,51,19,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,60.76,0,0,Check-Out,Kaitlyn Murphy,nblackburn@example.net,001-356-712-5415x919,4936387605555624,2025-08-08 +City Hotel,0,43,2017,July,29,19,0,1,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,180.92,0,1,Check-Out,William Lamb,millerelizabeth@example.com,582-657-5864x5120,565999593439,2025-06-19 +Resort Hotel,1,48,2017,May,22,27,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,129.11,0,1,Canceled,Larry Cook,lcarpenter@example.com,946-431-3322,6519921669930255,2024-11-04 +City Hotel,0,32,2017,June,26,30,0,4,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,129.76,0,1,Check-Out,Tammy Medina,meganthompson@example.net,244-314-7315x019,503817755864,2025-01-05 +City Hotel,1,77,2017,January,3,17,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,107.57,0,0,Canceled,Melissa Barrera,donnastevenson@example.net,+1-674-817-9238x33725,575938426732,2024-10-26 +Resort Hotel,0,90,2017,May,21,24,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,120.27,1,2,Check-Out,Timothy Rice,olopez@example.net,(251)685-8611x5718,6011460030127526,2025-09-15 +City Hotel,0,2,2017,April,16,16,0,1,1,0.0,0,BB,DEU,Direct,Corporate,0,0,0,A,B,1,No Deposit,15.0,64.0,0,Transient-Party,97.65,0,0,Check-Out,Kevin Powell,mfreeman@example.net,001-469-891-7405,375792187992077,2025-10-19 +City Hotel,0,9,2017,February,6,4,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,100.18,1,1,Check-Out,Bryan Leonard,shane49@example.org,001-399-932-5802x9732,630423988710,2026-02-04 +Resort Hotel,1,75,2017,August,35,27,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,55.31,0,2,Canceled,Derrick Gardner,aaron36@example.org,(665)871-9065,4632381970272342,2024-05-12 +Resort Hotel,0,1,2017,January,2,3,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,14.0,71.0,0,Transient,48.77,1,0,Check-Out,Jonathan Branch,pdrake@example.net,+1-562-911-1145x225,2248667922356021,2025-04-07 +City Hotel,0,1,2017,November,45,6,1,1,1,0.0,0,SC,ESP,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,92.56,0,0,Check-Out,Seth Stone,lynnrivera@example.org,(377)891-2351,376056033527035,2024-05-03 +City Hotel,0,11,2017,November,44,1,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,12.0,216.0,0,Transient-Party,110.94,0,0,Check-Out,Jeff Cunningham,dylankelly@example.net,(293)709-8835,2332740266415443,2026-01-15 +City Hotel,1,26,2017,March,13,28,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,Non Refund,15.0,179.0,0,Transient,98.23,0,0,Canceled,Troy Martinez,ztucker@example.org,001-204-893-9280x0981,4653554063479040,2024-10-28 +City Hotel,0,11,2017,March,13,29,0,1,1,0.0,0,BB,BRA,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.21,0,0,Check-Out,Erica Johnson,knovak@example.net,996.446.2633x52825,4157775176112,2025-12-21 +City Hotel,0,44,2017,June,24,8,0,1,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,160.39,0,0,Check-Out,Lisa Bishop,xzamora@example.net,7626196750,4957646751052239,2025-11-16 +City Hotel,0,14,2017,September,38,23,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,55.96,0,0,Check-Out,Rachel Green,mmcknight@example.org,(508)632-3924x953,5133783671548758,2025-10-01 +Resort Hotel,0,1,2017,January,2,4,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient-Party,82.39,1,0,Check-Out,Jimmy Chavez,carolyn91@example.net,671-703-9713x81646,4543630481154441,2024-11-16 +City Hotel,1,164,2017,July,28,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.35,0,0,Canceled,Dominic Barber,sandramendez@example.com,001-200-580-0397x6831,586473018495,2025-12-03 +Resort Hotel,0,1,2017,May,19,11,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,0,No Deposit,250.0,179.0,0,Transient,128.92,1,1,Check-Out,Mr. Antonio Cook,elliottjoseph@example.net,(663)528-7893x4663,30086383519165,2026-01-12 +City Hotel,0,32,2017,June,25,17,0,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,75.0,179.0,0,Transient,95.26,0,0,Check-Out,Matthew Dunn,sjohnson@example.com,001-392-583-6833,3579990790299116,2025-03-24 +City Hotel,0,0,2017,May,21,23,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,15.0,161.0,0,Transient-Party,93.1,0,0,Check-Out,Anthony Stewart,uleon@example.com,988-612-6381,36525069472326,2024-12-12 +City Hotel,1,137,2017,August,31,3,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,131.81,0,0,Canceled,Louis Carr,travis91@example.com,+1-887-399-5028x8027,375762183768912,2024-05-18 +City Hotel,0,144,2017,May,22,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,226.0,179.0,0,Transient,97.09,0,1,Check-Out,Janet Smith,jacqueline96@example.org,+1-781-258-3372x4618,30214112130662,2025-10-20 +City Hotel,0,107,2017,January,3,14,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,34.0,179.0,0,Transient,252.0,0,1,Check-Out,Christopher Hansen,danielle45@example.org,3614114271,5196250151994872,2024-12-15 +City Hotel,0,375,2017,October,41,8,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,122.74,0,1,Check-Out,Crystal Gutierrez,aprilmoore@example.com,661.441.7650x5274,4072402176070392,2025-07-20 +Resort Hotel,0,14,2017,January,2,3,0,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,46.41,0,2,Check-Out,Lisa Wilson,kenneth89@example.org,(250)475-5983x85830,3525556684071435,2025-04-29 +Resort Hotel,0,1,2017,April,14,3,1,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,358.0,179.0,0,Transient,0.5099000000000001,1,0,Check-Out,Kristin Lucas,cruzpaula@example.org,302-696-7340,4019002361905182,2026-01-04 +City Hotel,1,14,2017,March,11,12,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.84,0,1,Canceled,Karen Smith,kristie24@example.org,001-293-652-5487x157,30031361669871,2024-05-18 +City Hotel,0,17,2017,October,41,10,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,80.0,179.0,75,Transient-Party,84.92,0,0,Check-Out,Heather Rodriguez,zcollins@example.org,607-935-3172x13082,4677062443412,2025-06-19 +Resort Hotel,0,37,2017,August,34,24,0,4,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,10.0,179.0,0,Transient,215.51,0,2,Check-Out,Megan Lewis,sarah45@example.com,001-813-992-9249x05058,347879685255548,2025-06-18 +Resort Hotel,0,0,2017,December,49,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,H,2,No Deposit,236.0,179.0,0,Transient,48.05,0,1,Check-Out,Lori Galloway,roger71@example.net,+1-804-818-4859x351,501839825913,2024-08-21 +City Hotel,1,14,2017,September,38,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,44,Transient,102.37,0,0,Canceled,Travis Monroe,tthomas@example.com,992.396.0776x0421,6011147039765824,2024-10-25 +City Hotel,0,102,2017,November,45,5,2,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,105.8,0,3,Check-Out,Zoe Mendoza,amathis@example.com,888-233-4116x03485,343858652543817,2024-04-23 +City Hotel,1,3,2017,August,33,17,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,5.74,0,0,Canceled,Patricia Patrick,wiseadam@example.net,932.581.8317x8855,6011472556029994,2025-06-07 +Resort Hotel,0,1,2017,February,9,27,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,241.0,179.0,0,Transient,48.32,1,1,Check-Out,Anna Haas,brettmarquez@example.org,996.383.7129,30595473085044,2024-08-31 +City Hotel,1,16,2017,March,14,31,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,134.0,179.0,0,Group,131.98,0,1,Canceled,Andrea Powell,ogreen@example.com,587-202-0918x2770,3582149189477610,2024-12-04 +City Hotel,1,146,2017,December,50,12,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,E,0,No Deposit,13.0,179.0,0,Transient-Party,116.09,0,0,No-Show,Nicholas Navarro,ymeyer@example.com,3573125878,379159417522056,2025-06-23 +Resort Hotel,0,141,2017,January,5,28,2,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,63.49,0,1,Check-Out,Jennifer Powell,lacey11@example.net,001-461-976-4281x5057,30495601670520,2024-10-18 +Resort Hotel,0,14,2017,December,52,26,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient-Party,77.48,0,0,Check-Out,Darrell Hoffman,friedmankathleen@example.org,610-659-6824,4242052350647273051,2025-09-07 +City Hotel,0,413,2017,July,30,24,1,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,110.78,0,1,Check-Out,Joseph Allen,peterschristopher@example.net,(832)758-8077x7060,4162130790599,2026-01-03 +City Hotel,0,8,2017,January,3,18,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,A,0,No Deposit,12.0,179.0,0,Group,87.77,0,1,Check-Out,Brenda Lloyd,jasonduncan@example.com,668-769-3037x4886,4085323517005258,2025-07-08 +City Hotel,1,7,2017,February,8,23,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,81.13,0,2,Check-Out,Michael Mendez,nathanielharris@example.org,001-721-259-3750,3583489272142104,2025-11-01 +City Hotel,1,100,2017,October,40,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,63,Transient,78.46,0,0,Canceled,Alexander King,shaunmartin@example.com,677-819-9885,4700537449597299,2026-03-06 +City Hotel,0,43,2017,September,39,26,2,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,46.28,0,0,Check-Out,Robert Hill,scastro@example.org,+1-285-987-8995x90915,6550582503778332,2025-03-24 +Resort Hotel,1,85,2017,August,31,5,3,5,2,0.0,0,FB,FRA,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.74,0,0,Canceled,Mr. Erik Long,thomastammy@example.net,265.675.9941x36618,213186359792470,2024-11-30 +City Hotel,1,342,2017,September,39,27,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,63.0,179.0,0,Transient-Party,63.17,0,0,Canceled,Tyler Wright,smithemily@example.org,001-366-260-7647x2263,6566665049006169,2024-06-08 +Resort Hotel,0,291,2017,October,41,9,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,49.65,0,0,Check-Out,Justin Rogers,timothycastro@example.com,+1-200-343-4122x3711,4540557212607681,2024-05-02 +City Hotel,1,113,2017,February,9,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,77.32,0,1,No-Show,Brian Marshall,andrewsrobyn@example.org,475.497.4030x6945,3587341838467119,2024-10-16 +City Hotel,1,0,2017,December,52,24,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,65.11,0,1,Canceled,Taylor Pearson,wilsonedward@example.org,+1-350-220-0882x868,6508278788759567,2025-09-12 +City Hotel,0,0,2017,March,13,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,54.0,0,Transient,59.57,0,1,Check-Out,Mercedes Shields,fisherjoseph@example.net,829.940.4515x548,372722195050942,2024-04-04 +City Hotel,0,44,2017,April,14,4,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.71,0,2,Canceled,Stephanie Hardin,olivertimothy@example.com,649-664-7925x7416,4342198992437153,2024-06-25 +Resort Hotel,1,23,2017,November,45,5,0,2,2,0.0,0,FB,DEU,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,82.31,0,0,Canceled,Adam Johnson,wagnertaylor@example.com,893.462.3683x62229,2285287152823253,2025-11-15 +City Hotel,0,15,2017,January,2,4,0,1,1,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,37.93,0,0,Check-Out,Carla Smith,meredith21@example.com,494.272.8614x33944,5100585899594509,2024-12-30 +Resort Hotel,1,52,2017,December,49,9,0,4,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,77.39,0,0,Canceled,James Johnson,uashley@example.net,+1-767-934-9271x9424,4156538539624,2025-05-26 +Resort Hotel,1,0,2017,December,49,7,2,0,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,5.59,0,0,Canceled,Jennifer Simmons,christopher38@example.org,(309)366-5859x54743,5170221306889440,2025-04-19 +City Hotel,0,327,2017,October,43,26,2,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.58,0,0,Check-Out,Andrew Ho,nicole72@example.org,292-206-7573x71404,38012998994967,2026-03-09 +City Hotel,1,153,2017,August,32,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,216.07,0,0,Canceled,Sherri Lopez,alex91@example.net,559.988.0245x2852,3530238851108620,2025-10-10 +Resort Hotel,0,13,2017,November,47,20,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,10.0,179.0,0,Transient,82.13,1,2,Check-Out,Emily Drake,nicole23@example.com,377-696-3045x0728,30020356551384,2024-12-30 +City Hotel,0,13,2017,December,51,21,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Contract,63.78,0,1,Check-Out,Dominic Benton,bennettkrista@example.org,745-251-8757x100,4223707558037530,2024-04-02 +City Hotel,0,1,2017,October,43,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,77.79,1,1,Check-Out,Mandy Murphy,pramirez@example.com,(527)338-9595x293,4352321854459228204,2025-06-04 +Resort Hotel,0,153,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,15.0,223.0,0,Transient-Party,61.78,0,0,Check-Out,Melissa Thomas,watsonrobert@example.net,(646)600-5629x02367,3574468375942728,2024-03-30 +City Hotel,0,0,2017,October,41,11,2,5,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,190.0,179.0,0,Transient,89.27,0,0,Check-Out,Jason Singleton,iangarcia@example.com,4994668081,4074173122027137,2026-02-15 +Resort Hotel,0,12,2017,February,8,21,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,80.68,0,1,Check-Out,Carrie Cole,melissawilliams@example.net,+1-316-318-1013x689,4312700193020914,2024-05-04 +Resort Hotel,0,23,2017,July,28,9,2,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,132.46,0,2,Check-Out,Tina Duncan,stevenphillips@example.net,384.742.6912,213180679322027,2024-04-06 +City Hotel,0,54,2017,August,33,15,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,207.29,0,1,Check-Out,Regina Perez,valentinejoshua@example.org,001-433-722-1380x135,4883200747821593,2026-03-19 +City Hotel,0,41,2017,April,14,4,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,134.65,0,2,Check-Out,Jessica Skinner,obrienthomas@example.com,9509111272,4523987158472652,2026-03-25 +City Hotel,1,90,2017,June,23,4,0,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.33,0,0,Canceled,Christopher Davis,charles98@example.com,(800)253-9963,3573079023540532,2024-05-13 +Resort Hotel,0,81,2017,December,49,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,109.6,0,0,Check-Out,Robert West,derek84@example.net,001-444-779-5165x29127,30141039303009,2025-11-26 +Resort Hotel,0,53,2017,March,11,15,2,5,3,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,131.4,0,1,Check-Out,Angela Melton,micheleharrison@example.com,+1-411-808-7995x67990,3553845295993987,2024-07-14 +City Hotel,0,96,2017,May,22,29,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.68,0,1,Check-Out,Theresa Henson,bensoncarolyn@example.org,+1-445-332-5958,3534720068172560,2024-04-24 +Resort Hotel,0,21,2017,July,29,22,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,240.0,179.0,0,Transient-Party,231.36,1,1,Check-Out,Suzanne Wise,eburgess@example.com,+1-309-833-0807x6427,630403678349,2025-05-09 +City Hotel,0,0,2017,January,2,4,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,43.95,0,0,Check-Out,Jason Jones,alexandriashaw@example.com,990-390-7843,180063411763618,2025-02-20 +Resort Hotel,0,33,2017,May,18,5,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,317.0,179.0,0,Transient,173.06,0,1,Check-Out,Joseph Brown,phensley@example.com,439-380-0528x1318,4151454727626,2024-04-28 +City Hotel,0,35,2017,March,13,28,1,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,103.25,0,2,Check-Out,Sherry Tucker,nthompson@example.net,+1-295-329-2525x08542,4899925234110587,2025-04-08 +City Hotel,1,160,2017,June,26,23,2,5,2,1.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,172.12,0,0,No-Show,Christopher Russell,jimmy40@example.org,258.967.0572x34388,4334162084460,2025-05-13 +City Hotel,0,385,2017,October,40,4,1,4,1,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,84.04,0,0,Check-Out,Christy Walters,tranmorgan@example.org,792.490.9202x670,180061711724207,2024-04-22 +City Hotel,1,50,2017,August,33,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,200.28,0,0,Canceled,Michael Merritt,vcoleman@example.org,+1-500-528-1569,3586549899832119,2025-04-15 +City Hotel,1,15,2017,March,9,1,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.62,0,0,Canceled,Paul Anderson,johnjones@example.net,+1-798-564-2477x92036,3519165225375301,2024-11-07 +City Hotel,1,385,2017,June,24,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,41,Transient,112.07,0,0,Canceled,Amy Hodges,christophermitchell@example.org,696-206-1500,213161745323595,2024-05-03 +Resort Hotel,0,10,2017,June,24,8,4,10,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,107.82,1,1,Check-Out,Nancy Jenkins,lindahill@example.org,(681)386-4370,586132953470,2024-12-31 +City Hotel,1,111,2017,October,42,12,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,115.14,0,2,Canceled,Jessica Turner,sherrimueller@example.com,453-865-4675,30302861383192,2025-10-12 +City Hotel,0,0,2017,May,18,5,1,0,3,0.0,0,SC,,Complementary,Direct,0,0,0,G,K,0,No Deposit,12.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Shane Harding,ryankelly@example.org,663-265-5368x64467,30060001522182,2024-07-13 +Resort Hotel,0,141,2017,March,10,3,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,54.26,0,0,Canceled,Lisa Thornton,brianlynn@example.com,648-991-1320x4463,4268192493863,2024-06-10 +City Hotel,0,43,2017,February,8,19,2,1,3,2.0,0,BB,NLD,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient,211.73,0,2,Check-Out,Lindsay Stafford,lshaw@example.com,6007916088,4667168459104114,2024-07-04 +Resort Hotel,0,15,2017,May,22,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,45.86,0,2,Check-Out,Samantha Hendrix,burkephillip@example.org,+1-415-513-2335x3946,4688292325827263,2025-07-09 +City Hotel,1,1,2017,March,13,27,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,E,0,No Deposit,23.0,179.0,75,Transient,64.87,0,2,Canceled,Robert Baker,yorkjeremy@example.net,969-628-0035x53809,4372541403004082435,2024-05-13 +City Hotel,1,13,2017,November,45,10,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,63.99,0,0,Check-Out,Mark Maynard,stacy75@example.org,(415)888-8821x81018,342455199009336,2026-02-04 +City Hotel,0,97,2017,May,21,20,1,1,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,81.69,0,0,Check-Out,Ronald Patel,sandersphyllis@example.net,+1-209-466-9963x33532,4242731283612133,2025-10-05 +City Hotel,0,0,2017,November,45,6,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,77.44,0,1,Check-Out,Renee Lucas,laurenaguilar@example.net,+1-501-296-0176x912,2279922313167541,2026-02-20 +Resort Hotel,0,19,2017,April,17,25,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,93.39,1,1,Check-Out,William Miller DDS,kristinafoster@example.com,+1-473-791-0170x03336,4164810943122644,2025-04-30 +Resort Hotel,0,139,2017,June,23,6,2,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,131.0,179.0,0,Transient-Party,126.88,0,0,Check-Out,Yvonne Campbell,jameswright@example.org,300-788-3700x316,3505490220052986,2026-03-09 +City Hotel,0,97,2017,March,13,25,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,83.07,0,1,Check-Out,Rebecca Bradford,stephenssteve@example.org,001-681-343-6565x99586,2612418380039156,2024-09-03 +Resort Hotel,0,254,2017,June,25,20,0,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,335.0,179.0,0,Transient,161.85,0,0,Check-Out,Phillip Hampton,irwindavid@example.org,948.298.0944,4804162035514,2026-03-26 +Resort Hotel,0,115,2017,August,34,20,2,1,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,364.0500000000011,179.0,0,Transient,128.67,0,0,Check-Out,Donald Davis,ethomas@example.org,419.480.5173x711,4912651108898791,2024-07-10 +Resort Hotel,0,2,2017,March,11,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,H,0,No Deposit,243.0,179.0,0,Transient,224.91,1,3,Check-Out,Emily Brooks,zeverett@example.org,987-595-6525,4509366108066252,2024-07-02 +City Hotel,1,133,2017,July,30,23,1,1,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,141.05,0,2,Canceled,Stacey Taylor,brandon29@example.net,883-800-2272x4947,676244260615,2025-12-13 +Resort Hotel,1,18,2017,June,24,10,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,99.74,0,0,No-Show,Peter Powers,fjones@example.org,+1-644-747-6108,4935850678626273632,2026-03-15 +Resort Hotel,1,0,2017,January,2,3,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,48.53,0,0,Canceled,Derrick Joseph,jasmine45@example.net,001-792-800-3839x6721,30067396679451,2026-01-01 +Resort Hotel,0,11,2017,March,13,31,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,128.04,0,1,Check-Out,Anthony Jensen,andrew56@example.org,(982)332-0887,375504553077932,2024-12-10 +City Hotel,0,49,2017,November,47,21,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,96.29,0,0,Check-Out,Maria Rodriguez,rsmith@example.net,(908)627-3707x7446,4947332360214485,2025-01-21 +City Hotel,0,14,2017,November,46,17,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,3.41,0,0,Check-Out,Rachael Bailey,ahodge@example.com,001-665-233-6477x49011,4444213302041079012,2024-07-16 +Resort Hotel,0,62,2017,January,2,8,2,1,2,1.0,0,BB,RUS,Direct,Direct,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,61.29,1,3,Check-Out,Colleen Gonzales,williambennett@example.com,(630)530-2140x96641,675951202984,2025-04-06 +Resort Hotel,0,3,2017,November,48,30,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Contract,53.53,0,2,Check-Out,Richard Hall,brownpatrick@example.org,001-842-311-4239x077,4494934917452,2025-11-28 +City Hotel,0,1,2017,July,27,3,2,1,1,1.0,0,BB,FRA,Direct,Direct,0,0,1,D,E,0,No Deposit,12.0,179.0,0,Transient,162.99,0,3,Check-Out,Don Parker,mterrell@example.com,+1-563-511-5995x1369,4551770698166314,2025-06-26 +Resort Hotel,1,124,2017,July,27,2,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,10.0,179.0,0,Transient,197.16,0,0,Canceled,Linda Wright,pbrown@example.org,(632)603-5721x32471,4604960747926,2024-09-17 +Resort Hotel,0,129,2017,December,49,3,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,237.0,179.0,0,Transient,62.54,1,1,Check-Out,Olivia Payne,zturner@example.com,001-488-478-4598x183,4745974703426104,2024-07-27 +Resort Hotel,0,0,2017,December,49,7,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,L,C,0,No Deposit,14.0,179.0,0,Transient,82.29,0,0,Check-Out,Dawn Smith,jcarter@example.com,4596828695,3527561298328500,2025-02-23 +City Hotel,1,153,2017,September,36,8,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,9.0,179.0,0,Contract,123.04,0,2,Canceled,Carmen Bartlett,josephwhite@example.org,001-327-852-4805x3508,3569283192258191,2024-04-07 +City Hotel,0,30,2017,October,41,12,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,68.96,0,0,Check-Out,Ashley Kelly,william69@example.net,(242)948-2652,3561070288874942,2026-03-07 +City Hotel,0,0,2017,August,32,9,2,7,2,1.0,0,BB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,170.62,0,1,Check-Out,Tina Castro,gpierce@example.net,4883125508,3559087548876875,2024-09-29 +City Hotel,0,47,2017,March,13,26,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,129.68,0,1,Check-Out,Spencer Peterson,ibell@example.org,830.748.9867,588058959234,2025-12-20 +City Hotel,0,67,2017,October,43,22,0,1,1,0.0,0,HB,FRA,Corporate,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,104.78,0,0,Check-Out,Alexander Johnson,zruiz@example.net,001-508-742-8768x90443,4675893096958172,2025-05-04 +City Hotel,0,48,2017,November,45,8,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,210.84,0,3,Check-Out,Madison Gallagher,clifford33@example.org,481.974.4900,3575139455583018,2025-03-22 +City Hotel,1,363,2017,February,7,12,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,78.61,0,1,Canceled,Cody Dean,tammy53@example.net,(653)391-0476x73760,4439572189462592,2026-03-24 +City Hotel,0,158,2017,August,32,8,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,180.0,179.0,66,Transient,113.04,0,0,Check-Out,Brenda English,james32@example.org,493-914-9554x961,4184118575744418763,2024-05-08 +City Hotel,0,86,2017,December,51,19,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient,84.95,0,1,Check-Out,Patricia Richardson,christinawilson@example.net,891-339-0676,36203279475899,2026-03-07 +Resort Hotel,0,12,2017,April,17,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,141.43,1,1,Check-Out,Timothy Haney,mccormickamber@example.org,001-733-908-0419x04775,341518931192354,2026-02-14 +Resort Hotel,0,0,2017,July,29,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,1,No Deposit,15.0,70.0,0,Transient,49.84,1,1,Check-Out,Stacy Turner,tammy51@example.org,5723993862,2290766235635688,2025-07-28 +Resort Hotel,0,47,2017,December,52,30,0,1,1,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,H,1,No Deposit,240.0,179.0,0,Transient,87.36,0,2,Check-Out,Mr. Gregory Glass MD,ccraig@example.com,423-425-3347x13983,30469807391900,2025-10-20 +City Hotel,0,51,2017,October,42,14,0,1,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.27,0,0,Check-Out,William Perez,fscott@example.com,(846)624-6178x528,30345131827811,2024-12-18 +City Hotel,0,75,2017,August,34,19,2,2,2,1.0,0,BB,FRA,Direct,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,252.0,1,2,Check-Out,Kevin Roberts,jimmygentry@example.com,9878958633,180087405038414,2024-11-19 +City Hotel,0,52,2017,November,45,10,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,135.2,0,2,Check-Out,Kenneth Bell,daniel51@example.com,719.202.9181,3549285088835508,2024-05-27 +City Hotel,1,95,2017,July,31,29,2,3,2,1.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.73,0,0,Canceled,Kathy Gomez,molly20@example.org,6506964490,676230135763,2024-12-21 +Resort Hotel,0,8,2017,December,51,23,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,132.43,0,1,Check-Out,Jeremiah Morse,hillerica@example.org,001-816-589-4926x494,630445400959,2024-06-18 +Resort Hotel,0,3,2017,March,13,31,0,1,1,1.0,0,BB,PRT,Online TA,Direct,1,0,0,H,H,0,No Deposit,249.0,179.0,0,Transient,62.38,0,2,Check-Out,Kendra Wyatt,brycenelson@example.com,(253)824-9206x7020,4953383038892229,2025-12-19 +Resort Hotel,1,240,2017,September,37,15,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,228.0,179.0,0,Transient,106.17,0,0,Canceled,Kylie Olson,ijames@example.org,(341)440-1386x5891,30530568289524,2025-12-25 +City Hotel,0,15,2017,November,45,6,1,0,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,93.2,0,0,Check-Out,Sandra Allen,jennifer05@example.net,478.792.9226x4362,3598818744764223,2026-03-20 +Resort Hotel,0,0,2017,April,18,27,0,4,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,C,0,No Deposit,15.0,179.0,0,Transient,137.59,0,1,Check-Out,Craig Fleming,rileyjanice@example.org,278.286.8150x3587,4844748849536098043,2024-09-24 +Resort Hotel,0,198,2017,October,42,17,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,38.0,179.0,0,Contract,59.98,0,0,Check-Out,Lance Reynolds,dennis10@example.com,872.289.0932x6122,630423394893,2026-01-05 +Resort Hotel,0,1,2017,March,10,4,1,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,2,No Deposit,16.0,86.0,0,Transient,43.73,0,0,Check-Out,Mason Vincent,lawrencemonique@example.net,+1-596-994-4303x43493,4473389047638991,2025-01-31 +City Hotel,0,38,2017,November,44,2,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.54,0,1,Check-Out,Ebony Campos,emartinez@example.org,(634)552-6004x002,573164408714,2024-10-17 +Resort Hotel,0,89,2017,May,19,8,1,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,113.24,0,0,Check-Out,Monique Wall,robert27@example.com,821.402.9289,2583347614455299,2025-03-14 +Resort Hotel,1,84,2017,April,15,8,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,0.5099000000000001,0,1,Canceled,Gloria Barnes,ethan31@example.com,001-207-449-9749,6514817451731171,2025-01-15 +Resort Hotel,0,3,2017,September,36,8,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,262.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Meghan Bennett,drewgreen@example.org,853-996-5807x43196,6583803842915240,2025-02-18 +Resort Hotel,1,401,2017,August,32,8,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,266.0,179.0,0,Transient,46.43,0,0,Canceled,Steven Barr,james65@example.org,(380)344-3491x9557,3541419753624818,2025-06-19 +City Hotel,1,368,2017,August,32,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,118.06,0,0,Canceled,Todd Aguirre,davidsonjohn@example.com,+1-756-731-9903,38732548758246,2024-11-21 +City Hotel,0,1,2017,August,32,9,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,234.97,0,2,Check-Out,Heather Hayes,jonesjennifer@example.org,+1-503-974-4488x5471,180096903272821,2025-02-18 +Resort Hotel,1,62,2017,May,20,17,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,151.24,0,2,Canceled,Robert Arnold,jeffery06@example.com,360-242-8254x11587,30062926375647,2025-08-10 +City Hotel,0,1,2017,April,15,8,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,112.38,0,3,Canceled,Carlos Tucker,nhampton@example.net,631-835-8674x8048,3573052910309881,2025-06-27 +City Hotel,0,49,2017,March,10,5,0,1,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,D,D,1,No Deposit,157.0,179.0,0,Transient-Party,101.09,0,1,Check-Out,Mary Martinez,hawkinsleslie@example.org,741.216.8348,3526941616217497,2025-12-07 +City Hotel,1,32,2017,March,11,14,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,95.88,0,1,Canceled,Ricky Richards,chentara@example.com,347-497-5432,4784294349142,2024-05-09 +City Hotel,0,6,2017,May,21,23,1,2,3,0.0,0,BB,ITA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,10.0,174.0,0,Transient,111.18,1,1,Check-Out,Joel Roberts,alvarezjulie@example.org,+1-586-282-8543x4824,180065428858893,2024-08-04 +City Hotel,1,131,2017,June,26,24,1,3,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,42,Transient-Party,110.36,0,0,Canceled,Mackenzie Petersen,kingjoanne@example.net,(704)298-5536,639055528850,2025-05-20 +Resort Hotel,0,153,2017,March,11,12,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,41.23,0,0,Check-Out,Danielle Cowan,mwatson@example.com,762.581.4485x09219,571099682429,2025-09-22 +City Hotel,1,0,2017,May,22,30,0,1,2,0.0,0,SC,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,1.55,0,0,Check-Out,Christopher Hernandez,pyoung@example.com,+1-264-965-9758x3382,676141257789,2024-06-27 +City Hotel,0,155,2017,May,19,8,2,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,107.29,0,1,Check-Out,Dawn Kemp,omyers@example.org,+1-555-598-7311,6011715689449640,2025-10-17 +Resort Hotel,0,13,2017,October,43,23,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,157.9,0,1,Check-Out,Michael Young,amy40@example.com,001-474-620-9709x66434,30308798218633,2025-12-10 +City Hotel,0,1,2017,March,11,15,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.73,0,1,Check-Out,John Stout,parker61@example.org,337.253.4187,348014207242092,2024-08-09 +City Hotel,0,65,2017,September,36,9,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient,128.92,0,0,Check-Out,Nicole Smith,bryanthomas@example.com,517.935.8222,370522200421837,2025-11-09 +City Hotel,0,15,2017,October,43,21,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,72.0,179.0,0,Transient-Party,98.0,0,0,Check-Out,Anthony Gonzalez,jacksullivan@example.org,001-413-269-6360,4019507213250,2024-06-01 +Resort Hotel,0,2,2017,February,5,1,0,4,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,248.0,179.0,0,Transient,103.53,1,0,Check-Out,Theodore Bishop,joshuataylor@example.org,001-283-206-3046,213107679450672,2025-07-08 +City Hotel,0,16,2017,March,12,21,0,1,1,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.47,0,0,Check-Out,Andrea Foster,lmiller@example.org,(903)895-8746,375212578602516,2025-08-04 +City Hotel,0,23,2017,February,6,3,0,2,1,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,41.07,0,1,Check-Out,Dawn Martinez,brewermichelle@example.com,(771)470-9384x06352,372603609674792,2024-12-23 +City Hotel,0,206,2017,August,34,22,3,5,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,102.17,0,0,Check-Out,William Frank,frank89@example.com,(524)960-0766x4943,213151602479150,2025-06-24 +City Hotel,0,188,2017,May,22,25,2,5,2,1.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,201.18,0,0,Check-Out,Matthew Hill,omiller@example.net,001-985-775-4847x9187,4529978598814345380,2024-11-08 +City Hotel,1,113,2017,May,22,27,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.62,0,0,No-Show,Allen Benson,jane02@example.net,6497515977,3535142873211419,2025-07-06 +Resort Hotel,0,36,2017,September,38,21,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,116.67,0,1,Check-Out,Clayton Peterson,msmith@example.com,001-426-692-0442x849,502034533088,2024-08-12 +Resort Hotel,0,1,2017,July,27,4,1,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,240.0,179.0,0,Transient,123.63,0,0,Check-Out,William Mann,robertjenkins@example.org,741.691.8559,379735674456649,2024-06-28 +City Hotel,0,122,2017,May,20,15,1,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,105.6,0,0,Check-Out,Ashley Cohen,rachel94@example.com,001-307-691-1942x54148,213154507403416,2024-05-11 +City Hotel,1,48,2017,September,35,2,0,2,1,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,64.0,179.0,0,Transient-Party,129.08,0,0,No-Show,Nicole Smith,mwilliams@example.org,939-504-6600,4319897441208102,2025-02-11 +Resort Hotel,1,144,2017,August,34,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,11.0,179.0,0,Transient,80.75,0,0,Canceled,Noah Miller,brandon44@example.org,+1-811-658-3927x65685,213118379423240,2025-06-02 +Resort Hotel,1,13,2017,December,49,6,0,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,141.4,0,0,Canceled,Connie Davis,patricknash@example.net,277-995-9569x255,676273145117,2024-04-02 +Resort Hotel,0,0,2017,February,8,21,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,H,2,No Deposit,17.0,69.0,0,Transient,32.49,1,0,Check-Out,Keith Williams,curtis23@example.com,664.840.3285x506,5198153254808809,2024-10-13 +City Hotel,0,136,2017,May,22,26,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,262.0,179.0,0,Transient,77.76,0,2,Check-Out,Katherine Jones,amberhenderson@example.net,001-823-257-0949x5206,4214762945564788179,2025-10-06 +Resort Hotel,0,0,2017,November,47,20,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,273.0,0,Transient,52.36,0,0,Check-Out,Sherri Dawson,melissaandrews@example.org,3883538433,6011361203457171,2024-12-24 +Resort Hotel,0,119,2017,March,11,15,2,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,15.0,179.0,75,Transient-Party,2.54,1,1,Check-Out,Travis Pierce,orivera@example.org,+1-687-784-2928x378,5562584556207159,2024-06-12 +City Hotel,0,3,2017,October,42,14,0,1,1,0.0,0,SC,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,4.62,0,0,Check-Out,Edward Hawkins,adrian37@example.com,4383009961,3560062604446340,2026-01-26 +Resort Hotel,0,253,2017,July,31,27,1,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,208.55,0,0,Check-Out,Anne Henry,xortiz@example.com,+1-894-481-9171x821,213140247074427,2025-06-12 +City Hotel,0,0,2017,March,13,28,0,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,88.6,0,1,Check-Out,Samuel Turner,adrian33@example.com,991-656-3139,4940414910051463,2026-02-12 +Resort Hotel,0,1,2017,December,49,6,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,I,0,No Deposit,9.0,179.0,0,Transient,49.84,0,1,Check-Out,Darlene Campbell,nross@example.net,(313)847-2559x3482,580703262981,2025-10-11 +Resort Hotel,1,29,2017,July,30,23,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,248.38,0,0,Canceled,James Gibbs,joshua62@example.net,001-828-773-3395x381,4362857738796962438,2024-03-29 +Resort Hotel,0,58,2017,January,2,11,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,H,0,No Deposit,298.0,179.0,0,Transient,39.48,0,0,Check-Out,Jesse Schneider,morganjoshua@example.net,862-349-5000,4883298285250,2024-09-14 +City Hotel,1,283,2017,October,42,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.86,0,0,Canceled,Jesse Schmidt DDS,jeremy41@example.net,426-909-6523,4148030504624257,2025-03-24 +City Hotel,0,0,2017,September,38,20,1,1,1,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,D,D,0,No Deposit,12.0,167.0,0,Transient,177.58,0,0,Check-Out,Bryan Wilson,wjones@example.net,(418)505-7531x89837,5273180424355559,2024-12-23 +Resort Hotel,1,178,2017,July,29,15,3,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,107.91,0,2,Canceled,Christopher Franklin,ldawson@example.org,001-739-967-3230x295,4258461401692970,2025-07-06 +Resort Hotel,0,260,2017,April,17,24,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,252.0,1,2,Check-Out,Dawn Oliver,michelebenson@example.org,522.859.8293x485,4516931146265336756,2025-05-27 +Resort Hotel,0,17,2017,December,52,25,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,305.0,179.0,0,Transient,55.63,0,0,Check-Out,Kim Williams,jason03@example.org,+1-258-638-2877x923,4892221828980434065,2024-11-09 +City Hotel,0,32,2017,May,21,25,2,4,2,0.0,0,SC,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,170.46,0,1,Check-Out,Brandon Brown,kevans@example.com,813-857-1650x58478,345035589537422,2025-05-03 +City Hotel,1,51,2017,June,26,26,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,119.68,0,2,Canceled,James Marshall,ginaestrada@example.org,600.573.5207x316,4703951897706,2024-11-06 +Resort Hotel,0,0,2017,December,49,4,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Jessica Rivera,jacobsrichard@example.net,+1-773-352-4795x01378,30584318402531,2024-11-04 +Resort Hotel,0,89,2017,October,40,5,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,45.7,0,0,Check-Out,Jordan Diaz,crawfordmichael@example.org,5643908292,4142199523666734,2025-09-12 +Resort Hotel,0,1,2017,February,6,4,0,1,2,0.0,0,BB,POL,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,103.72,1,1,Check-Out,Stacey Shaffer,christinaross@example.org,+1-276-646-8682x522,4392268477303706,2025-07-30 +City Hotel,1,348,2017,May,19,5,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.61,0,0,Canceled,Mark Harrell,alexander38@example.com,+1-239-890-9532x021,4552658451244742,2025-11-11 +Resort Hotel,1,47,2017,August,33,12,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Canceled,Kevin Luna,sheilajames@example.net,+1-256-822-2692x8818,4951317482461,2025-11-28 +Resort Hotel,1,160,2017,March,11,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,99.46,0,0,Canceled,John Morrison,kathymason@example.org,818-789-5849,3549690289134785,2025-04-28 +City Hotel,0,48,2017,November,45,8,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,92.85,1,1,Check-Out,William Cardenas,justinbranch@example.com,675-674-0078,4689522009766,2025-04-20 +City Hotel,0,2,2017,March,11,11,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,B,0,No Deposit,11.0,75.0,0,Transient-Party,50.31,0,1,Check-Out,Michelle Silva,billmurray@example.com,(958)390-8004,4520694398960,2025-05-02 +Resort Hotel,0,1,2017,January,3,16,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,I,0,No Deposit,238.0,179.0,0,Transient,54.99,0,1,Check-Out,Natalie David,tonya71@example.com,(579)499-2831x0217,4197644874555920602,2024-11-03 +City Hotel,0,26,2017,May,19,8,2,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Group,115.99,0,1,Check-Out,Kimberly Castaneda,taylorshannon@example.org,001-312-691-7559x4512,3595289147486546,2024-09-10 +Resort Hotel,1,116,2017,October,41,11,0,4,3,1.0,0,BB,RUS,Online TA,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,225.77,0,0,Canceled,Daniel Williams,evanhall@example.net,+1-220-257-6754x655,180002443032774,2025-04-07 +City Hotel,1,51,2017,April,15,12,2,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,139.05,0,2,Canceled,Ethan Lewis,michael10@example.net,457-546-7265x1424,577723726706,2024-04-13 +Resort Hotel,1,260,2017,August,33,14,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,51.85,0,1,Canceled,Daniel Baker,karla85@example.net,497-368-0200x901,38303070651462,2024-11-09 +City Hotel,0,99,2017,July,30,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,224.86,0,0,Check-Out,Carrie Cobb,michellemcclure@example.org,(236)436-9770,3507430689135599,2024-03-29 +Resort Hotel,0,0,2017,May,19,6,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient-Party,42.11,0,0,Check-Out,April Moore,thomas88@example.org,(532)513-5516x883,30440933886568,2025-02-10 +Resort Hotel,0,0,2017,July,27,5,3,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,211.93,0,2,Check-Out,Julie Morgan,shawn49@example.net,+1-885-890-7487x5576,4835081952553,2025-04-23 +City Hotel,0,40,2017,July,27,5,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,135.24,0,1,Check-Out,Dale Fletcher,nancyjames@example.net,851.233.9315x33880,2718557957361338,2025-04-07 +City Hotel,0,393,2017,May,20,15,0,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,117.13,0,0,Check-Out,Renee Clarke,lauriechavez@example.org,+1-662-687-4404x970,180074900565711,2025-09-24 +City Hotel,0,45,2017,July,28,8,0,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,181.18,1,1,Check-Out,Jeff Rice,pbaxter@example.org,(725)733-2619,2318320038237728,2025-08-26 +City Hotel,0,0,2017,May,19,4,1,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,132.55,1,2,Check-Out,Brian Nash,nrussell@example.org,+1-934-265-3144x1071,4190968351980883,2025-06-05 +Resort Hotel,0,7,2017,October,40,3,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,240.0,179.0,0,Transient,77.93,0,1,Check-Out,William Harris,jmcbride@example.org,5477223863,4314714962440797,2026-02-19 +City Hotel,0,19,2017,July,30,24,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,82.7,0,1,Check-Out,Robert Hunter,moorepaula@example.org,201-689-1450,060447488762,2025-11-27 +Resort Hotel,0,155,2017,March,11,17,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,E,0,No Deposit,237.0,179.0,0,Transient,51.39,0,1,Check-Out,Robert Thompson,alexandra54@example.net,001-436-725-4525x632,5213435328077334,2026-01-30 +City Hotel,0,414,2017,August,32,7,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,1,A,A,0,No Deposit,178.0,179.0,0,Contract,80.8,0,1,Check-Out,Danny Wright,jessica14@example.net,(773)975-2805,377267032082463,2024-10-08 +Resort Hotel,0,25,2017,December,49,7,2,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient-Party,100.61,0,0,Check-Out,Randall Brown,garciawilliam@example.com,(850)713-7414x077,30019306097662,2024-11-22 +City Hotel,1,148,2017,June,25,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,139.92,0,1,Canceled,Tamara Tran,tlozano@example.org,(423)324-5427,30283211320599,2024-09-22 +Resort Hotel,0,3,2017,November,48,26,2,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,E,0,No Deposit,16.0,331.0,0,Transient,64.7,0,0,Check-Out,Robin Zhang,kingjose@example.net,+1-401-666-3866,345179196226159,2024-12-02 +Resort Hotel,0,161,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,45.07,0,0,Check-Out,Stephen Robertson,katherine58@example.org,001-681-279-4429x31265,30484834241630,2024-04-15 +Resort Hotel,1,161,2017,December,51,22,2,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,92.45,0,1,Canceled,Michael Rodriguez,cunninghamdavid@example.org,001-718-591-7073x79486,213148125393637,2025-03-17 +City Hotel,0,7,2017,June,24,10,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,66.0,0,Transient,128.05,0,0,No-Show,Kathryn Turner,nmcbride@example.org,709-626-6567,4612645998619757,2024-06-02 +Resort Hotel,1,214,2017,July,29,13,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,220.74,0,0,Canceled,Crystal Sanders,carolpeterson@example.net,001-840-480-7293x569,5251203837008841,2025-01-25 +City Hotel,0,30,2017,July,30,23,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,244.09,0,2,Check-Out,Ronald Marshall,christina09@example.com,252-592-2039x046,379400093691819,2024-04-08 +City Hotel,0,203,2017,June,25,15,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,116.01,0,3,Check-Out,Mr. Casey Rodriguez,meganchandler@example.com,581.978.7692,349059730006778,2025-05-23 +Resort Hotel,0,145,2017,May,21,19,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,212.0,0,Transient,63.13,0,0,Check-Out,Brian Cunningham,dalelam@example.org,779-495-0754,4600149377405437,2025-04-28 +Resort Hotel,0,6,2017,December,52,25,0,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,152.19,0,1,Check-Out,Tracey Rosales,johnsonmary@example.net,+1-998-771-2904x4225,588111420646,2025-09-14 +City Hotel,1,385,2017,June,24,8,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,42,Transient,142.46,0,0,Canceled,Yvonne Mccullough,gillespieerin@example.net,3789516046,4518711906810550,2024-07-20 +Resort Hotel,0,0,2017,May,22,31,0,1,2,0.0,0,HB,PRT,Complementary,Direct,1,0,0,A,I,0,No Deposit,15.0,179.0,0,Transient,1.44,0,0,Check-Out,Susan Anderson,ywest@example.com,(284)363-1518,4781600057813812,2024-09-28 +City Hotel,0,0,2017,January,2,12,0,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,252.0,0,1,Check-Out,Timothy Webb,gonzalesjasmine@example.net,+1-209-413-2424x66692,3558326591972897,2024-11-30 +City Hotel,0,19,2017,December,52,26,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,66,Transient,110.78,0,0,Check-Out,Jocelyn Jones,badams@example.net,(648)834-9707,348143262020604,2024-07-04 +City Hotel,0,43,2017,August,35,24,2,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,247.88,1,0,Check-Out,Aaron Foster,rebeccamckenzie@example.com,923.571.6389x368,346038891876594,2025-02-28 +Resort Hotel,0,42,2017,January,4,26,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,72.5,0,1,Check-Out,Matthew Hill,kimberlyanderson@example.com,001-785-435-6183x67643,3535177801865142,2024-05-15 +Resort Hotel,1,16,2017,December,49,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,230.0,0,Transient,42.41,0,0,Canceled,Sandra Garcia DDS,kristy03@example.net,+1-668-714-3677x632,38798357147037,2025-05-03 +Resort Hotel,0,1,2017,January,2,3,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,46.89,1,1,Check-Out,Shaun Larsen,martinezrenee@example.com,+1-363-832-2821,3537158520426356,2024-09-23 +Resort Hotel,0,1,2017,September,38,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,53.76,0,1,Check-Out,Keith Lee,hernandezjade@example.com,474-350-0769,4666785152620947,2025-05-20 +City Hotel,0,165,2017,June,23,1,2,3,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,10.0,179.0,0,Transient,135.49,0,0,Check-Out,William Cooper,marissa37@example.org,+1-524-812-0114x980,4685296531815577,2024-05-22 +City Hotel,1,13,2017,July,28,14,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,87.47,0,0,No-Show,Jeremy James,robertmendoza@example.com,+1-840-428-7794x49362,2273922946219616,2025-01-31 +City Hotel,0,8,2017,March,11,12,2,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.67,0,1,Check-Out,Laura Neal,joshuawilliams@example.org,(647)900-1971x603,4082533984901655,2024-12-03 +Resort Hotel,1,155,2017,October,41,9,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,239.0,179.0,0,Transient,113.15,0,2,Canceled,Roberta Walker,kelly43@example.com,(558)224-1912,213175796055773,2025-04-09 +City Hotel,1,86,2017,August,32,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,0,Transient,126.49,0,0,Canceled,Jacqueline Hughes,vsingleton@example.net,(263)235-6586,4288467283208715446,2024-10-17 +City Hotel,0,7,2017,October,43,25,1,1,1,0.0,0,BB,CHE,Online TA,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,121.69,0,0,Check-Out,Amanda Hardy,justin37@example.org,+1-407-443-1782x027,630467971952,2024-06-23 +Resort Hotel,1,32,2017,August,32,5,4,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,126.94,0,0,No-Show,Marilyn Douglas,xarmstrong@example.net,440.346.6282x4626,4110746814956340877,2025-03-10 +City Hotel,1,289,2017,August,33,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,64.78,0,0,Canceled,Amanda Baker,michael95@example.net,+1-531-241-4544x1122,344440078763318,2025-07-20 +City Hotel,1,167,2017,August,32,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,108.33,0,0,Canceled,Sierra Gomez,hdennis@example.com,619-654-3103,4483172993565519,2025-04-29 +Resort Hotel,0,2,2017,March,10,2,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,D,1,No Deposit,245.0,179.0,0,Transient,133.47,1,0,Check-Out,Amy Gonzales,claudia95@example.org,001-918-233-0352x825,180012117624194,2024-08-02 +City Hotel,0,41,2017,April,15,14,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,64.4,0,1,Check-Out,Angela Schneider,longbrian@example.org,001-420-307-7144,675944498236,2025-03-25 +Resort Hotel,0,22,2017,October,43,26,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,66.14,1,0,Check-Out,Lisa Bautista,davidtran@example.com,001-811-309-3054x5341,180019089437620,2026-03-01 +Resort Hotel,1,192,2017,June,26,28,4,10,2,1.0,0,FB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,247.0,179.0,0,Transient,132.79,0,2,Canceled,Lynn Walker,aadams@example.org,304.605.1147x848,630432174435,2024-10-30 +City Hotel,0,110,2017,May,21,20,0,1,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,42,Transient-Party,106.0,0,0,Check-Out,Matthew Freeman,eddieellis@example.org,+1-701-818-4522x403,180057226983908,2025-06-12 +City Hotel,0,50,2017,May,22,25,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.68,0,1,Check-Out,George Garza Jr.,gwendolyn45@example.org,001-932-321-0881x5822,3579493930123114,2025-02-22 +City Hotel,0,40,2017,March,13,31,2,3,2,0.0,0,BB,DEU,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,112.28,0,1,Check-Out,Mark Day,testrada@example.net,+1-855-747-3086x8436,6011163304393903,2024-11-09 +Resort Hotel,0,16,2017,September,36,3,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,106.46,1,0,Check-Out,Haley Cohen,justinsalinas@example.net,7035803185,4319758266175,2025-11-08 +City Hotel,0,55,2017,July,30,22,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.26,0,1,Check-Out,Crystal Strickland,donna48@example.net,315.290.0220,4602987078178334,2025-07-31 +City Hotel,1,83,2017,March,12,18,1,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,79.43,0,0,No-Show,Anna Martinez,cameronlee@example.net,317-670-3122,6011855275735729,2024-12-30 +City Hotel,0,16,2017,April,16,19,1,3,2,0.0,0,BB,NLD,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,106.77,0,0,Check-Out,Melinda Riley,stevensjohn@example.com,001-561-519-0871x61588,180066431191066,2025-01-23 +City Hotel,0,1,2017,October,43,25,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,D,D,0,No Deposit,174.0,179.0,0,Transient,167.46,0,0,Check-Out,Stephanie Smith,joan13@example.org,(855)762-2734,4027610431190682,2025-07-18 +City Hotel,0,84,2017,August,34,24,2,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,21,Transient-Party,130.99,0,0,Check-Out,Nicholas Hicks,marktaylor@example.org,397-402-6986x061,30186974322092,2025-12-03 +City Hotel,1,192,2017,July,29,14,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,230.61,0,0,Canceled,Michael Ortiz,sharondean@example.net,+1-839-306-2305x388,676344835217,2024-10-13 +City Hotel,0,11,2017,January,3,13,1,2,1,0.0,0,BB,PRT,Groups,Corporate,1,0,0,A,I,1,No Deposit,11.0,179.0,0,Transient,41.76,0,1,Check-Out,Ronald Kerr,natalie40@example.net,247.498.4702x974,3508381137624933,2024-12-31 +City Hotel,0,11,2017,July,28,15,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,33.0,179.0,0,Contract,78.43,0,0,Check-Out,Timothy Nichols,lthomas@example.com,+1-691-947-5066x38412,2231523880543929,2025-07-05 +City Hotel,0,15,2017,February,8,19,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,110.24,0,1,Check-Out,Bradley Boyd,jwalls@example.net,(889)896-8765x48352,4033444117098189,2024-12-03 +Resort Hotel,0,3,2017,April,15,9,0,2,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,239.84,1,0,Check-Out,Curtis Cabrera,cheryl33@example.org,723-974-1436x13074,4626263645002,2025-02-20 +City Hotel,0,12,2017,August,32,6,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,92.03,0,1,Check-Out,David Graham,morrisryan@example.org,001-258-231-3707x168,180059269789887,2026-01-29 +City Hotel,0,95,2017,February,9,24,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,112.35,0,0,Check-Out,Zachary Boyd,zparrish@example.org,804.520.7109x2021,3595673280464370,2024-09-19 +City Hotel,0,4,2017,January,2,6,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.03,0,1,Check-Out,Mark Todd,catherine22@example.com,694.643.6887x036,2228109116843062,2025-05-09 +Resort Hotel,0,0,2017,January,4,25,0,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,1,0,A,D,1,No Deposit,11.0,179.0,0,Transient,51.68,1,2,Check-Out,Diane Thomas,fbender@example.com,001-991-562-5996x75757,6011654568922692,2025-02-07 +Resort Hotel,0,0,2017,March,10,5,0,1,1,0.0,0,BB,AUT,Direct,Direct,1,0,1,E,E,0,No Deposit,19.0,179.0,75,Transient-Party,120.23,1,3,Check-Out,Debbie Padilla,taylor36@example.net,(717)391-1562,341951146287729,2026-01-05 +City Hotel,0,17,2017,March,13,27,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,70.47,1,1,Check-Out,Charles Owen,jonestimothy@example.org,+1-910-808-0140x4141,30411916459418,2025-09-25 +City Hotel,0,152,2017,April,16,21,0,3,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,75,Transient-Party,62.41,0,0,Check-Out,Dylan Smith MD,hernandeztiffany@example.com,680.369.6412,4557681915428201,2025-08-05 +Resort Hotel,0,155,2017,July,30,22,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,79.0,179.0,0,Transient-Party,105.38,0,0,Check-Out,Mr. Mark Taylor MD,youngheather@example.com,979.919.8593x4703,342308797426677,2025-11-29 +City Hotel,0,157,2017,July,28,10,0,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,1,A,G,0,No Deposit,7.0,179.0,0,Transient,137.85,0,3,Check-Out,Kelly Johnson,pramirez@example.net,541.586.4311x30211,374041258243957,2025-02-15 +Resort Hotel,0,11,2017,May,19,5,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,142.34,0,2,Check-Out,Margaret Silva,rosslisa@example.com,001-206-598-6133x5508,213176404011166,2026-02-19 +City Hotel,1,90,2017,July,28,10,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,106.15,0,1,Canceled,Jason Jackson,shaun50@example.org,817.428.6720x1096,30234881901614,2024-09-29 +City Hotel,1,351,2017,February,5,3,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,41,Transient,90.72,0,0,Canceled,Amanda Collins,julian99@example.org,+1-971-414-5840x935,370169210566225,2025-07-17 +City Hotel,0,2,2017,January,3,14,0,1,1,0.0,0,BB,,Aviation,Corporate,0,0,1,A,A,0,No Deposit,10.0,72.0,0,Transient,46.23,0,1,Check-Out,Richard Gray,ryanmiller@example.org,549.601.0797x233,3529518897032121,2024-11-03 +City Hotel,0,1,2017,October,43,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,49.72,0,1,Check-Out,Taylor Walker,nathanhill@example.net,7107398208,560416973777,2024-10-27 +City Hotel,1,46,2017,April,17,23,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,175.46,0,1,No-Show,Chelsea Boyd,steven52@example.org,001-682-987-3372x841,3537607285332084,2026-03-24 +Resort Hotel,0,33,2017,August,32,5,1,4,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,E,2,No Deposit,240.0,179.0,0,Transient,128.94,1,3,Check-Out,Randy Skinner,wmiller@example.org,(325)740-8654x5430,6011186912188266,2026-01-13 +City Hotel,0,9,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,1,No Deposit,14.0,169.0,0,Transient,92.98,0,0,Check-Out,Jennifer Powell,lwarner@example.com,216-374-9224x30745,3528611045345619,2025-06-24 +Resort Hotel,0,36,2017,July,27,5,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,54.36,0,1,Check-Out,David Garcia,hcherry@example.net,(912)449-6926x60302,180083046326680,2025-08-20 +City Hotel,0,91,2017,May,20,15,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,133.36,0,1,Check-Out,Sean King,danny47@example.net,+1-979-897-2626x75662,30007789991634,2025-03-28 +City Hotel,1,3,2017,June,23,3,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,41.72,0,0,Canceled,Julie Peterson,leslie43@example.org,933-803-8881,3582007879996705,2025-02-03 +Resort Hotel,0,195,2017,July,28,9,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,318.0,179.0,0,Transient-Party,61.22,0,0,Check-Out,Randy Turner,jameszavala@example.org,+1-471-949-5188,4568380611821499957,2024-07-16 +City Hotel,0,185,2017,May,21,26,3,2,3,1.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,133.17,0,0,Check-Out,Jennifer Yates,danielhayden@example.org,628-236-4311,4974961546856581,2025-04-11 +City Hotel,1,113,2017,November,48,30,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,111.5,0,0,Canceled,Ashley Watkins,hyu@example.org,001-256-907-9571x4521,4328900976813,2024-05-29 +City Hotel,0,2,2017,November,47,23,1,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Group,76.93,0,1,Check-Out,Jacob Murray,brandi46@example.net,+1-798-384-3958x449,5209540105616356,2025-07-07 +Resort Hotel,0,3,2017,May,19,6,0,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,125.88,0,2,Check-Out,Michael Thomas,odonnellteresa@example.net,284.611.6501,341748446002539,2024-08-14 +City Hotel,1,114,2017,December,50,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,43,Transient,76.79,0,0,Canceled,Erin Day,theresa05@example.net,714.466.0523,576850084988,2024-12-02 +Resort Hotel,0,47,2017,November,46,12,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,11.0,223.0,0,Transient,42.6,0,1,Check-Out,Mark Murphy,davidsonshannon@example.com,633.295.9855,6516854486321304,2024-08-09 +Resort Hotel,0,17,2017,August,31,5,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,1,2,Check-Out,Heather Wilkerson,angelaaustin@example.net,393-492-4509,5281007803014699,2025-07-24 +City Hotel,0,1,2017,March,13,28,1,4,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.89,0,2,Check-Out,Gary Rose,wesley96@example.com,4485515249,4075823755564,2025-07-10 +Resort Hotel,0,40,2017,December,49,9,1,3,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,H,1,No Deposit,242.0,179.0,0,Transient,83.8,0,2,Check-Out,Jason Edwards,nicholas47@example.org,(816)860-5106x21595,347636897833805,2025-07-05 +Resort Hotel,0,81,2017,August,31,1,2,5,2,2.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,226.59,0,1,Check-Out,Edward Perez,johnrodriguez@example.net,001-347-684-9477x6114,36433023675607,2025-01-27 +City Hotel,0,99,2017,July,28,9,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.57,0,2,Check-Out,Barbara Bryant,jonesmichael@example.com,606-609-0324x714,502024253234,2025-10-02 +City Hotel,0,17,2017,April,17,22,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,110.37,0,1,Check-Out,Joseph Young,ylewis@example.com,8937974443,6011853966123743,2024-04-29 +City Hotel,0,136,2017,February,7,13,2,4,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,88.64,0,2,Check-Out,Dustin Thompson,lsmith@example.net,784.662.7621x7846,4754771749304651,2024-08-27 +City Hotel,1,368,2017,August,31,5,2,0,2,0.0,0,BB,PRT,Offline TA/TO,Undefined,0,0,0,B,B,0,No Deposit,2.0,179.0,0,Transient-Party,71.25,0,1,Canceled,Rachael Mora,kdavis@example.net,+1-343-272-5210x372,4599572184923552,2025-10-21 +Resort Hotel,0,152,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,221.0,0,Transient-Party,28.74,0,0,Check-Out,Dustin Ashley,sandersjesse@example.net,+1-561-733-1284x46632,6573090326268625,2024-11-10 +City Hotel,0,77,2017,April,18,27,2,2,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient,108.91,0,0,Check-Out,Kimberly Hughes,lprince@example.org,(544)702-6492x4389,4016085121858455318,2024-05-30 +City Hotel,0,2,2017,August,35,28,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient,134.9,1,0,Check-Out,Colin Diaz,robertgeorge@example.net,957-732-2747,4318809917475702,2025-02-27 +City Hotel,1,60,2017,December,52,30,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,111.47,0,0,Canceled,Brian Coleman,karenjohnson@example.org,(697)602-0330x6893,5548500225796231,2024-04-02 +City Hotel,1,226,2017,June,23,1,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,112.65,0,0,Canceled,Emily Rodriguez,douglascastro@example.org,811.575.9909x3450,6011743598758604,2025-12-17 +City Hotel,0,59,2017,August,31,1,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,126.53,0,0,Check-Out,Brian Cannon,stephaniesparks@example.net,+1-516-501-7116x9008,676127304696,2025-05-26 +City Hotel,0,19,2017,May,21,23,0,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.5,0,1,Check-Out,Amanda Garcia,kevin53@example.com,978.754.5147x163,3515014983302970,2025-03-31 +City Hotel,1,3,2017,April,14,3,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,237.0,179.0,0,Transient,141.2,0,3,Canceled,Julia Walker,ericawilliams@example.net,001-457-600-9556x44021,2271578254889788,2025-01-06 +City Hotel,1,18,2017,April,17,23,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.05,0,0,Canceled,Melanie Miller,laura67@example.org,(470)582-8062x9449,4603379066142,2024-08-22 +City Hotel,1,5,2017,August,34,20,2,0,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.03,0,2,Canceled,Kenneth Weiss,jeffrey74@example.net,6513175643,6011321443476720,2025-10-20 +Resort Hotel,0,16,2017,October,41,11,1,1,2,0.0,0,Undefined,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,170.0,179.0,0,Transient-Party,76.02,0,0,Check-Out,Robert Meyer,eking@example.org,(897)999-6654,4760972339498,2024-09-01 +Resort Hotel,0,119,2017,November,47,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,315.0,179.0,75,Transient-Party,63.9,0,0,Check-Out,William Mckinney,katelynharding@example.net,624-958-8967,4214589856148,2025-04-22 +City Hotel,0,97,2017,April,18,27,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,118.35,0,1,Check-Out,Brandy Wells,lgonzalez@example.org,842-656-4269x40423,3514769848880228,2026-03-17 +Resort Hotel,1,214,2017,March,13,26,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.04,0,1,Canceled,Jeremy Burns,craigcourtney@example.com,001-959-879-5902x3965,180088705802269,2025-01-30 +Resort Hotel,0,16,2017,March,12,24,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,135.0,331.0,0,Transient,82.53,0,0,Check-Out,Frank Holland,qfleming@example.org,+1-830-440-2770x16274,3509006007756247,2025-02-22 +City Hotel,0,155,2017,July,30,26,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.99,0,0,Check-Out,Chloe Bass MD,chavezcynthia@example.net,926.262.0316,213149870497623,2025-10-12 +Resort Hotel,0,23,2017,May,18,2,4,10,3,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,233.64,0,1,Check-Out,Melanie Campbell,barnesrobert@example.org,(875)576-9215x4168,2542944025253055,2025-12-04 +City Hotel,0,5,2017,January,3,17,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,74.97,0,0,Check-Out,Dr. David Barr,marklyons@example.org,+1-498-314-3777x335,3546261913415868,2025-03-11 +City Hotel,1,159,2017,July,27,3,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,104.58,0,0,Canceled,Corey Leon,burtontroy@example.org,415-727-0937,4059765976775994906,2025-08-02 +City Hotel,0,15,2017,August,32,8,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Contract,62.74,0,2,Check-Out,Nicole Larson,reneeclarke@example.com,6432062948,4394366780034105,2025-02-12 +City Hotel,0,86,2017,June,25,16,0,2,2,0.0,0,HB,USA,Direct,Direct,0,0,0,E,A,1,No Deposit,246.0,179.0,0,Transient,125.61,0,2,Check-Out,Keith Williams,tbrooks@example.com,277-938-9578,586867159368,2025-09-18 +City Hotel,0,17,2017,May,19,4,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,138.23,0,1,Check-Out,Ronald Jacobs,michelejefferson@example.com,222.395.6180,347857787333058,2025-05-24 +City Hotel,0,62,2017,August,32,8,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,238.0,179.0,0,Transient,133.92,0,3,Check-Out,Erika Curry,marygutierrez@example.org,3465648145,213164494208207,2024-11-23 +Resort Hotel,0,2,2017,March,13,28,1,2,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,61.1,1,0,Check-Out,Michael Sanchez,jerome92@example.net,973.224.3188,3552374190105903,2024-09-23 +Resort Hotel,0,27,2017,March,10,8,1,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,57.38,1,0,Check-Out,Frank Underwood,johnsondaniel@example.net,+1-867-251-9086x9851,3536647019053326,2025-03-05 +City Hotel,1,269,2017,August,35,27,0,1,2,2.0,0,BB,,Direct,Direct,0,1,0,F,F,0,No Deposit,11.0,179.0,0,Transient,213.99,0,1,Canceled,Kristen Burch,ywright@example.net,473.279.7791,3562591112272853,2026-03-02 +Resort Hotel,0,347,2017,September,39,26,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,43.12,0,0,Check-Out,Tanya Young,xlane@example.net,+1-911-336-5996,30320112240128,2025-11-16 +Resort Hotel,0,164,2017,March,13,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,Refundable,14.0,222.0,0,Transient-Party,62.35,0,0,Check-Out,Erica White,zharrington@example.net,703-915-3723x478,213192164869347,2025-05-20 +Resort Hotel,1,360,2017,October,41,12,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,258.0,179.0,0,Transient,104.21,0,0,Canceled,William Spencer,marcmontgomery@example.org,(658)578-0321,4228913182665416,2025-07-14 +City Hotel,0,160,2017,August,32,9,2,7,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,142.88,0,1,Check-Out,Joshua Caldwell,ngillespie@example.org,467-998-2073,502045188997,2025-07-17 +Resort Hotel,0,28,2017,October,44,31,0,1,1,0.0,0,BB,FRA,Groups,Corporate,0,0,0,D,D,0,Refundable,12.0,223.0,0,Transient-Party,62.99,0,1,Check-Out,Joseph Arnold,watsonedward@example.net,8955211043,4340931244671456,2025-03-15 +Resort Hotel,0,15,2017,August,34,22,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,359.0,179.0,0,Transient,124.87,0,1,Check-Out,Michael Smith,khernandez@example.org,4266349357,370778095554567,2024-06-11 +City Hotel,0,206,2017,August,32,4,2,3,2,0.0,0,HB,FRA,Online TA,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,148.24,0,3,Check-Out,Cory Medina,darrell32@example.net,001-579-544-1933x3010,4268209038867509,2025-03-05 +City Hotel,0,88,2017,May,19,8,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,179.73,0,1,Check-Out,Jennifer Warren,maria33@example.com,313-406-1012,6509991301723444,2024-07-15 +City Hotel,0,171,2017,August,34,18,2,5,2,1.0,0,BB,USA,Direct,Direct,0,0,0,C,G,0,No Deposit,15.0,179.0,0,Transient,234.33,0,3,Check-Out,Christopher Hardy,fmartinez@example.com,+1-771-302-1612,4461661018474117,2024-12-08 +City Hotel,1,303,2017,September,37,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,83.35,0,0,Canceled,Brittney Odonnell,jacksonjennifer@example.net,(360)644-1317x8680,676329915109,2026-02-17 +Resort Hotel,0,9,2017,December,52,24,0,3,1,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,107.98,0,0,Check-Out,Mrs. Andrea Mercer DDS,rfrank@example.org,+1-590-729-1556,213190672539303,2025-01-29 +Resort Hotel,0,12,2017,June,23,6,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,87.47,0,1,Check-Out,Jessica Rojas,ericluna@example.org,+1-728-762-7584x51245,180070680159410,2024-05-09 +City Hotel,1,78,2017,April,17,24,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,44,Transient,78.62,0,0,Canceled,Christine Zimmerman,cranejulie@example.net,(323)540-2409,3565489824832113,2025-02-26 +Resort Hotel,0,8,2017,April,17,24,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,202.02,0,0,Check-Out,Tony Myers,wmullins@example.com,661.657.8986,4515477128626,2025-05-05 +Resort Hotel,0,1,2017,October,40,6,1,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,D,A,1,No Deposit,15.0,179.0,0,Transient,90.27,0,0,Check-Out,Derrick Bailey,rcarr@example.org,466-779-9336,4238916920081174,2024-05-10 +City Hotel,0,2,2017,July,27,5,1,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient,131.18,0,1,Check-Out,Andrea Lane,lisakeller@example.com,+1-401-732-7825,4125286376220221,2025-11-01 +City Hotel,0,1,2017,January,3,16,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.16,0,0,Check-Out,Jill Roberson,samantha54@example.org,879-733-5611x277,346982918667835,2025-10-29 +City Hotel,0,1,2017,December,49,5,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,49.2,0,1,Check-Out,Beth Gross,john95@example.net,(693)365-7685,180088344615452,2024-10-01 +City Hotel,1,17,2017,December,52,27,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,B,0,No Deposit,12.0,331.0,0,Transient,63.9,0,0,No-Show,Carol Underwood,hortonheather@example.com,667-717-5283,3502029084974720,2024-07-10 +City Hotel,1,2,2017,August,33,17,1,1,1,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,51.73,0,0,Canceled,Sarah Randolph,elewis@example.org,(976)785-8239x86454,180005366864719,2024-04-09 +Resort Hotel,0,35,2017,May,22,25,1,3,1,0.0,0,HB,BEL,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,221.0,0,Transient,105.85,0,2,Check-Out,Jennifer Cook,loweryeileen@example.org,975-924-5939x81416,4307436953306,2026-03-18 +Resort Hotel,0,5,2017,March,13,23,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,45.88,0,1,Check-Out,Cynthia Silva,pearsonrichard@example.net,650-574-7521x224,4535735840036,2026-01-17 +City Hotel,0,69,2017,September,37,12,2,2,2,1.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,67.0,179.0,0,Transient,113.05,0,1,Check-Out,Jeanette Hansen,maryjones@example.net,(748)778-5451,4869616714704856851,2024-10-07 +Resort Hotel,0,1,2017,February,8,19,1,1,2,1.0,0,BB,NLD,Groups,Direct,0,0,0,A,C,1,No Deposit,184.0,179.0,0,Transient,44.68,1,0,Check-Out,Mallory Fernandez,nguyenemily@example.com,001-641-276-4350x08985,3568540498769911,2026-01-19 +City Hotel,0,26,2017,October,40,6,2,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,93.64,0,1,Check-Out,Debra Morris,jhernandez@example.org,+1-510-589-8924x8181,3577664729474833,2025-09-27 +Resort Hotel,0,169,2017,August,35,27,2,3,2,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient-Party,184.95,0,0,Check-Out,Amy Taylor,westjermaine@example.com,(255)714-0151,6011761665093283,2025-03-22 +City Hotel,1,17,2017,July,30,25,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,L,G,2,No Deposit,243.0,179.0,0,Transient,5.36,0,0,Canceled,Crystal Allen,hmcgee@example.com,790-789-1312x4978,2676266823628496,2025-11-16 +Resort Hotel,1,48,2017,October,40,5,3,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,D,0,No Deposit,242.0,179.0,0,Contract,39.58,0,2,Canceled,Joseph Bailey,fishermelissa@example.org,001-828-459-4617x6179,3584730953071172,2024-12-14 +Resort Hotel,1,105,2017,March,12,24,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Transient,100.22,0,0,Canceled,Brittany Robertson,donald22@example.com,928.564.7938,30272913812730,2024-04-28 +City Hotel,1,84,2017,May,19,7,4,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,267.0,179.0,0,Transient,116.69,0,0,Canceled,James Lewis,williamrubio@example.org,701.535.7081x19597,5492250141673504,2024-11-19 +Resort Hotel,0,300,2017,July,28,8,4,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,271.0,179.0,0,Contract,52.03,0,2,Check-Out,Lisa Clay,daniel83@example.net,862-394-7861x9473,4213451333962,2024-11-08 +Resort Hotel,0,31,2017,December,52,29,0,2,2,1.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Contract,53.27,0,1,Check-Out,Kyle Bell,muellerwanda@example.com,535.547.8144,4528884178241388,2025-06-09 +Resort Hotel,1,92,2017,June,27,29,1,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,149.17,0,2,Canceled,Kristen Diaz,kylie38@example.com,(532)939-6767,213119793711145,2024-08-24 +Resort Hotel,0,0,2017,April,15,7,2,5,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,322.0,179.0,0,Transient-Party,51.24,0,0,Check-Out,Mark Matthews,sarahgarcia@example.net,636-699-1503x3294,4649984886476340890,2025-06-10 +Resort Hotel,0,234,2017,September,37,10,2,7,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,G,1,No Deposit,237.0,179.0,0,Transient,104.6,0,3,Check-Out,Nathan Guzman,barry59@example.org,+1-966-758-0311x53214,30496139340677,2025-10-07 +City Hotel,1,13,2017,November,47,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,77.35,0,1,Canceled,Veronica Hutchinson,susandickerson@example.com,001-915-648-7556x46271,4304158111551,2025-09-13 +City Hotel,0,3,2017,July,30,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,125.07,0,0,Check-Out,Taylor Evans,kmontes@example.org,877-745-0314x49153,6557105265707472,2025-07-15 +City Hotel,0,7,2017,March,11,9,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,85.97,0,1,Check-Out,Keith Burton,pamelanichols@example.net,934.644.3269,4142593894553013314,2024-05-28 +City Hotel,1,177,2017,June,26,27,1,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.46,0,2,Canceled,Andrew Marshall,garmstrong@example.com,+1-682-793-1131x260,630476914613,2025-12-05 +City Hotel,0,97,2017,November,48,27,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.06,0,1,Check-Out,Katie Fleming,robertsjames@example.com,552.846.0788,6011932413593151,2024-08-18 +City Hotel,1,175,2017,August,34,19,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,107.39,0,0,Canceled,Denise Rosales,gjones@example.net,(996)362-1656x9387,180041491025090,2025-02-15 +City Hotel,1,403,2017,June,25,19,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,0,Transient,124.36,0,0,Canceled,Angela Jones,tduncan@example.net,(630)768-2390,3539774848310417,2024-08-22 +Resort Hotel,1,137,2017,June,24,14,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,240.0,179.0,0,Transient,110.8,0,0,Canceled,Tina Kennedy,emily12@example.org,838.256.8140x52496,180062419391398,2026-02-03 +City Hotel,0,0,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,A,A,0,No Deposit,14.0,45.0,0,Transient,97.61,0,1,Check-Out,Douglas Logan,james98@example.org,(261)944-9483x117,30270576954310,2024-09-28 +City Hotel,0,15,2017,August,34,22,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.12,0,0,Check-Out,Parker Nelson,thomasglenn@example.net,796.820.9957,4189887109234059,2024-07-19 +City Hotel,0,120,2017,April,16,15,1,2,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,82.26,0,0,Check-Out,Ryan Johnston,michael37@example.net,001-436-608-4781,4405028141269088,2026-03-24 +Resort Hotel,1,27,2017,July,28,6,1,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,2,No Deposit,364.0500000000011,179.0,0,Transient-Party,64.75,0,0,Canceled,Clinton Pruitt,krystalcombs@example.net,+1-909-359-4935x0877,3571578741302879,2025-08-03 +Resort Hotel,1,37,2017,December,51,17,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,239.0,179.0,0,Transient,57.93,0,1,Canceled,Jennifer Moss,thomasjuan@example.net,894.883.6311x73195,30399276945284,2024-04-06 +City Hotel,1,185,2017,June,27,29,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,128.38,0,0,Canceled,Veronica Snyder,brookehess@example.org,883-336-1098x91335,3525127217820332,2024-04-16 +City Hotel,0,13,2017,September,36,8,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.14,0,0,Check-Out,Alex Brown,tonyperez@example.org,+1-476-458-9189x931,4390692728086374568,2025-01-06 +Resort Hotel,0,11,2017,March,13,23,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient-Party,50.02,0,1,Check-Out,Alison Bryant,williamselizabeth@example.org,5776567721,180006554314780,2025-08-21 +City Hotel,0,14,2017,October,41,9,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,83.27,0,2,Check-Out,Kelly Jimenez,mclaughlinjames@example.net,(958)228-7380,379722230395321,2024-10-28 +City Hotel,0,91,2017,May,18,5,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,82.48,0,0,Check-Out,Tracey Sandoval,michael65@example.org,922.615.4806x678,5457870351756716,2026-01-06 +Resort Hotel,0,17,2017,October,41,10,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,63,Transient-Party,67.89,0,1,Check-Out,Jill Jennings DDS,tiffany08@example.com,+1-551-640-1898x5353,639082272340,2026-01-28 +City Hotel,0,257,2017,October,43,26,1,2,2,0.0,0,FB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,74.84,0,0,Check-Out,Erin Vang,travisharper@example.net,(947)770-0541x85006,4982341494207691,2025-06-05 +Resort Hotel,0,1,2017,December,48,1,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,207.56,1,1,Check-Out,Olivia Marks,casey87@example.org,(272)736-0481x7658,3583811668540726,2025-01-23 +Resort Hotel,0,1,2017,October,40,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,68.0,0,Transient-Party,58.85,0,0,Check-Out,Alexander Watts,pachecochristian@example.org,689-880-5457,5561410389623225,2024-09-23 +Resort Hotel,1,46,2017,May,19,9,1,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,223.6,0,0,Canceled,Robert Daniel,grantbowman@example.net,3782489997,6510355327381628,2025-11-17 +Resort Hotel,0,87,2017,April,17,23,1,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,137.0,179.0,0,Transient-Party,84.69,0,0,Check-Out,Gerald Valdez,ubell@example.com,221-527-0951x953,4867992045102601807,2024-09-13 +Resort Hotel,1,249,2017,October,40,4,1,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,101.05,0,2,Canceled,Richard James,danielwood@example.net,716.386.5069x53813,4253374064898708,2024-10-21 +City Hotel,1,251,2017,September,36,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,22.0,179.0,0,Transient,1.85,0,0,Canceled,Michael Carter,pholmes@example.net,913-615-1593x79247,3574042130612684,2024-08-10 +City Hotel,1,174,2017,May,19,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,131.0,179.0,0,Transient,79.78,0,0,Canceled,Melinda Glover,leslie08@example.com,7543341893,3526273147256004,2024-08-25 +City Hotel,0,39,2017,March,11,17,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,111.11,0,1,Check-Out,Abigail Dudley,samuelmorales@example.net,815-676-0173x523,4223507653138724,2024-12-15 +City Hotel,0,0,2017,March,10,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient-Party,64.04,1,1,Check-Out,Kenneth Williams,ywilliamson@example.com,+1-937-491-7988,370784642116934,2024-11-12 +Resort Hotel,0,11,2017,October,40,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,241.0,331.0,0,Transient,55.64,0,1,Canceled,Joan Taylor,millerjamie@example.org,992.988.0481x245,6011568310857784,2024-07-14 +Resort Hotel,1,131,2017,July,30,27,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,242.0,179.0,0,Transient,44.41,0,0,Canceled,Priscilla Williams,zacharysutton@example.net,001-749-803-7275,30160340596291,2024-08-24 +Resort Hotel,0,0,2017,January,2,5,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,43.58,0,0,Check-Out,Rhonda Kennedy,lopezethan@example.com,833-913-4726,30448445513059,2024-12-16 +City Hotel,0,0,2017,January,2,12,0,4,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,E,1,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Mr. Dustin Mendoza,kristen32@example.org,624-227-6738,2244698910386757,2025-01-13 +City Hotel,0,181,2017,March,11,15,1,2,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,75.34,0,0,Check-Out,James Cisneros,gomezerica@example.org,(727)653-1785x194,374116646126146,2024-04-06 +Resort Hotel,1,414,2017,January,4,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,38.61,0,0,Canceled,Terry Schmidt,caroline42@example.org,6517932432,4851285849966,2025-05-25 +Resort Hotel,0,1,2017,March,12,20,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,40.18,0,0,Check-Out,Carlos Herrera,wilsonbelinda@example.org,(760)745-1253,180078888084561,2024-10-15 +Resort Hotel,1,116,2017,August,34,23,2,5,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,247.0,179.0,0,Transient,206.65,0,0,Canceled,Luke Trevino,anthonytate@example.org,459-333-9229x5173,344511792457328,2025-11-24 +City Hotel,0,14,2017,August,35,31,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,6.0,179.0,0,Transient,108.45,0,2,Check-Out,Amanda Vazquez,gbentley@example.org,+1-892-681-1738x77001,6011653561985599,2025-10-23 +City Hotel,0,414,2017,September,37,15,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,111.06,0,1,Check-Out,Derek Stevens,lindsay36@example.com,001-811-996-6732x37751,4975214161945936,2025-12-15 +City Hotel,1,113,2017,June,24,9,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,142.73,0,2,Canceled,Megan Wagner,qtaylor@example.com,+1-849-441-4738,3512284383866048,2025-05-03 +Resort Hotel,0,33,2017,June,26,26,2,7,1,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,241.0,179.0,0,Transient,87.26,0,1,Check-Out,Stacy Taylor,plawrence@example.net,710-531-1533x10939,3573863632119089,2025-12-06 +City Hotel,1,254,2017,May,21,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,131.31,0,0,Check-Out,Brooke Smith,davidshepherd@example.org,(526)294-4201x9756,4855215098940606,2024-12-20 +Resort Hotel,1,194,2017,May,22,28,2,5,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,134.19,0,0,Canceled,Kristy Hutchinson,lhill@example.net,001-885-747-3862x775,4644451067145,2025-06-30 +City Hotel,0,37,2017,August,34,19,2,5,3,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,207.61,0,1,Check-Out,Daniel Waters,joshuazimmerman@example.com,+1-929-637-7540x7733,375994711134248,2025-12-12 +Resort Hotel,0,29,2017,December,52,23,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,82.01,1,1,Check-Out,Justin Delgado,jasmine68@example.org,971.222.4928,4963703633995267,2024-07-05 +City Hotel,0,207,2017,March,13,31,0,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,26.0,179.0,0,Transient-Party,104.47,0,0,Check-Out,Jonathan Castillo,lisabaker@example.net,847-727-1695x658,4922009272312,2024-12-10 +City Hotel,1,40,2017,February,7,10,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.46,0,0,Canceled,Jerry Luna,ischwartz@example.com,001-335-392-5772x30316,2252664905003509,2025-07-30 +City Hotel,0,50,2017,September,39,27,2,3,3,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,105.88,0,3,Check-Out,Gary Gutierrez,mary49@example.net,+1-243-333-2175,2297012740962157,2024-10-19 +City Hotel,0,10,2017,February,5,1,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,103.09,0,0,Check-Out,James Fernandez,amyelliott@example.org,644.707.5046x76498,630453005807,2025-11-29 +City Hotel,1,112,2017,June,24,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,168.29,0,0,No-Show,Tyler Gill,taylorbrandi@example.com,417-201-4826,180003155112325,2024-04-22 +Resort Hotel,1,0,2017,November,44,3,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,E,0,No Deposit,243.0,179.0,0,Transient,122.63,0,2,Canceled,Walter Woods,dflores@example.org,(942)581-5044,4336965048475743387,2025-05-03 +City Hotel,0,42,2017,August,31,4,0,4,2,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,159.25,0,2,Check-Out,James Golden,leejerry@example.com,508.704.0385,3570132264273785,2024-09-10 +Resort Hotel,0,13,2017,April,17,24,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,238.0,179.0,0,Transient,114.87,1,3,Check-Out,Ashley Williams,saraweeks@example.com,(412)787-5175,373347343411801,2025-05-25 +Resort Hotel,0,40,2017,May,21,20,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,174.56,1,3,Check-Out,Greg Green,johngarner@example.net,+1-215-876-0780x9411,4241433603851894,2025-04-23 +Resort Hotel,1,83,2017,August,33,13,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,189.92,0,0,Canceled,Gina Wright,robertgarcia@example.org,553.285.2727,6553033296658155,2025-04-02 +City Hotel,0,25,2017,October,43,25,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,136.68,0,1,Check-Out,Marc Bailey,edaniels@example.com,643.805.3352x631,4683544014639466377,2024-11-21 +City Hotel,0,0,2017,July,27,5,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,69.0,0,Transient,63.42,0,0,Check-Out,Madison Daugherty,lisa91@example.org,001-217-728-1799,566602651655,2025-01-15 +Resort Hotel,1,111,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,27.0,179.0,0,Transient,89.6,0,0,Canceled,Jesse Mitchell,joshuasanchez@example.net,(433)379-8565,4104863071672,2025-10-03 +Resort Hotel,0,26,2017,August,32,10,4,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,101.0,179.0,0,Transient,49.45,0,1,Check-Out,Michael Watson,kmcmillan@example.com,587-580-4284,6011302355493085,2025-07-29 +City Hotel,0,130,2017,April,16,15,1,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient,109.56,0,1,Check-Out,Patrick Lewis,sotogregory@example.com,+1-733-492-5749x599,4610114453855784118,2024-09-09 +Resort Hotel,1,240,2017,November,48,28,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,281.0,179.0,0,Transient,48.89,0,0,Canceled,Andrew Morrison,carlos45@example.org,(293)695-8530,2698625905258544,2025-08-17 +Resort Hotel,0,7,2017,January,4,26,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,B,0,No Deposit,16.0,179.0,0,Transient,55.19,1,0,Check-Out,Brian Jones,lisa04@example.net,(965)419-6157x413,503837065344,2025-09-14 +Resort Hotel,0,43,2017,December,51,18,4,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,236.0,179.0,0,Transient,143.48,0,1,Check-Out,James Martinez,davidbennett@example.net,375-596-5480,4802880091371,2024-10-02 +City Hotel,0,66,2017,August,32,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,22.0,179.0,0,Transient,111.85,0,0,Check-Out,Jessica Baxter,michael09@example.net,(846)390-1627x462,4138690945022601376,2025-04-20 +City Hotel,1,161,2017,September,36,6,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,106.46,0,0,Canceled,Hannah Elliott,gfoster@example.org,646.340.6427x229,4709539819190342,2025-09-11 +Resort Hotel,0,1,2017,January,4,26,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,237.0,179.0,0,Transient,64.98,1,1,Check-Out,Kenneth Crosby,rose37@example.org,(288)921-9100x5803,6530055314399783,2024-12-16 +City Hotel,1,104,2017,October,40,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,42,Transient,105.77,0,0,Canceled,Danielle Galvan,danielstewart@example.org,+1-250-713-1234x42725,4996172949246266444,2025-02-17 +City Hotel,1,313,2017,August,31,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.83,0,0,Canceled,Billy Contreras,banderson@example.net,421.360.7067x48219,503882846341,2024-07-29 +City Hotel,0,24,2017,August,35,27,1,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,110.29,0,3,Check-Out,Vernon Murray,joelmorse@example.com,+1-731-596-6049x39231,3590797518605358,2024-11-14 +City Hotel,0,1,2017,January,4,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,A,0,No Deposit,14.0,179.0,0,Transient,85.57,0,0,Canceled,Joseph Valencia,robertsonsarah@example.com,409-981-0986x4155,4332922276846652,2025-06-18 +City Hotel,0,35,2017,September,38,20,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,29.0,179.0,0,Transient-Party,111.29,0,1,Check-Out,Jamie Terry,danielfletcher@example.org,(748)916-0320,578337201763,2024-03-27 +City Hotel,0,45,2017,June,26,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,139.67,0,1,Check-Out,Todd Lee,patrick52@example.org,+1-245-386-7589x136,36296398751950,2024-04-15 +Resort Hotel,0,218,2017,October,41,13,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,84.14,0,0,Check-Out,Dennis Hanson,brandifitzgerald@example.com,001-649-277-1385x5735,2597900634050666,2025-02-17 +Resort Hotel,0,4,2017,August,32,9,1,2,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,E,1,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,Kevin Rivera,hannahgonzalez@example.com,(636)689-2832,4502340910927,2025-04-10 +City Hotel,1,2,2017,December,49,4,1,1,2,0.0,0,SC,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,79.99,0,3,Canceled,Brett Green,dawsoneric@example.org,337-703-2799x1959,6011145004039449,2025-07-08 +Resort Hotel,0,0,2017,March,13,30,1,4,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,209.22,1,0,Check-Out,Laura Nelson,bensonantonio@example.org,2917837715,630424178394,2025-10-08 +City Hotel,0,4,2017,June,25,20,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.91,0,1,Check-Out,Larry Costa,reevestara@example.org,001-249-597-9529x2647,4479740659749837,2025-04-10 +City Hotel,1,17,2017,June,25,17,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.65,0,0,Canceled,John Terry,danasilva@example.net,(426)473-1666x6125,4508671417143,2025-10-25 +City Hotel,0,11,2017,April,15,9,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,103.17,0,1,Check-Out,Lauren Espinoza,kevin83@example.com,+1-502-364-2695,676146073769,2024-07-29 +Resort Hotel,1,0,2017,May,19,9,2,0,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,1,No Deposit,18.0,179.0,0,Transient,0.5099000000000001,0,0,No-Show,James Mclaughlin,lisa53@example.com,2364281383,588373852056,2024-08-22 +Resort Hotel,1,161,2017,March,13,26,1,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,132.23,0,2,Canceled,Kelsey Castillo,imurray@example.org,(327)462-4266x6437,3500063681956550,2024-10-05 +Resort Hotel,0,43,2017,June,27,30,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,236.09,0,3,Check-Out,Eric Acosta,myersjoshua@example.net,001-644-592-5230x38193,4404419474142507765,2024-09-28 +Resort Hotel,0,9,2017,January,2,3,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,1,No Deposit,14.0,179.0,0,Transient,42.49,1,0,Check-Out,Amy Carter,rmarquez@example.com,682.553.8625,3530306128171380,2024-07-05 +City Hotel,1,44,2017,February,8,19,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,75.74,0,0,Canceled,Luke Walters,tsingh@example.net,4665021997,180042447922992,2026-03-16 +City Hotel,0,344,2017,October,40,7,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.79,0,0,Check-Out,Austin Benson,xsmith@example.org,865-714-9305x41749,4274009497231292,2024-12-06 +Resort Hotel,0,13,2017,March,13,26,1,3,2,2.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,109.43,1,0,Check-Out,Nancy Bowman,rubeneaton@example.net,918-362-2117,345265779634545,2024-07-06 +Resort Hotel,0,197,2017,March,13,27,1,3,2,0.0,0,BB,AUT,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,62.89,0,0,Check-Out,Frank Alvarado,rossjohn@example.com,391.814.7815,30330845911945,2026-02-11 +Resort Hotel,0,17,2017,July,27,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,202.56,1,1,Check-Out,Jason Wood,denise07@example.com,001-833-783-9302x4083,6011804849802623,2025-08-28 +City Hotel,0,34,2017,May,19,9,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,196.45,0,0,Check-Out,Katherine Brown,kellerkaitlyn@example.org,9525411120,4920557559664527,2024-09-29 +Resort Hotel,1,87,2017,June,24,14,1,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,Refundable,242.0,179.0,0,Transient,246.2,0,0,Canceled,Whitney Schmidt,tamara62@example.com,9648479405,348553038181730,2026-01-12 +Resort Hotel,0,2,2017,September,36,8,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,F,C,0,No Deposit,240.0,179.0,0,Transient,47.04,0,1,Check-Out,Tammy Howell,laurathompson@example.org,001-393-527-1583x7912,6011431171875397,2026-03-10 +Resort Hotel,1,97,2017,March,13,27,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,303.0,179.0,0,Transient,46.2,0,1,Canceled,Tracy Ramos,nathanbird@example.org,(287)637-5271x7638,180025527752280,2025-03-04 +City Hotel,0,44,2017,July,28,14,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,170.44,0,1,Check-Out,Jacqueline Pitts,jamesbarrett@example.com,(644)451-6152,4021732495569050,2025-07-21 +Resort Hotel,0,0,2017,March,11,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,135.0,179.0,0,Transient,2.23,1,1,Check-Out,Christopher Black,jameskelley@example.net,425-598-8706x53240,4005857372183863,2026-02-10 +City Hotel,0,114,2017,August,33,11,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,139.3,0,2,Check-Out,Jon Allen,jenkinsedward@example.net,844-511-4191,213136732394353,2025-08-22 +City Hotel,0,3,2017,February,9,28,1,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,99.14,0,0,Check-Out,Ashley Meyer,kim75@example.com,943-365-7676,4576526896110431823,2024-06-04 +City Hotel,0,10,2017,September,38,22,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,86.28,0,0,Check-Out,Hannah Sellers,carlaolson@example.org,+1-403-682-5684,3557458493257217,2025-03-16 +City Hotel,0,38,2017,June,24,10,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.86,0,0,Check-Out,Norman Hubbard,jonesbryan@example.com,297.746.3541x592,371997013373822,2026-03-04 +City Hotel,0,11,2017,October,43,27,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.61,0,1,Check-Out,Erin Love MD,adamsgary@example.org,326.337.1168x992,180047354214804,2024-05-15 +City Hotel,0,46,2017,October,41,8,0,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,66.0,179.0,64,Transient,100.43,0,0,Check-Out,Melissa Brown,lindsay14@example.org,704-515-7187x95816,569269069393,2025-11-27 +City Hotel,0,3,2017,July,27,7,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,1,A,A,1,No Deposit,15.0,69.0,0,Transient-Party,87.13,0,0,Check-Out,Donna Flores,benitezmegan@example.com,001-960-602-0717x1320,4743173616161,2025-05-26 +Resort Hotel,1,125,2017,August,32,11,1,0,2,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,17.23,0,1,Canceled,Dr. Ralph Chaney PhD,jimmyhill@example.com,(865)668-3773,675998150972,2025-02-17 +Resort Hotel,0,83,2017,August,35,30,2,1,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,235.0,179.0,0,Transient,250.3,1,2,Check-Out,Raymond Cook,bankssusan@example.org,(399)416-6056,3565447914479054,2024-06-03 +Resort Hotel,0,52,2017,October,40,5,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,220.0,179.0,0,Transient-Party,46.42,0,0,Check-Out,Diane Martinez,kellermadison@example.com,656.542.8062x00773,3578182333427997,2025-11-30 +Resort Hotel,0,111,2017,November,45,9,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,66.0,0,0,Check-Out,Christina Simpson,hannah81@example.org,497-327-7532,373831329484825,2025-03-03 +Resort Hotel,0,147,2017,May,22,31,4,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,248.0,179.0,0,Transient,126.54,0,0,Check-Out,Daniel Marshall,brownlaura@example.org,001-286-222-3611x49583,4611530004560388,2025-07-09 +City Hotel,1,238,2017,June,25,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient-Party,80.32,0,0,Canceled,Tina Anderson,erinwilliams@example.org,5355883588,4985741873499,2025-06-07 +Resort Hotel,0,7,2017,June,23,5,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,122.09,0,1,Check-Out,Amanda James,lleon@example.org,263-278-4121x11987,3544538282375167,2024-12-28 +City Hotel,0,102,2017,August,31,2,1,4,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,167.99,0,1,Check-Out,Sarah Hughes,darryltorres@example.net,267.920.0612x687,213154284228325,2025-08-03 +City Hotel,0,7,2017,March,13,26,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.4,0,1,Check-Out,Denise Clark,barbarabrown@example.net,+1-577-234-4172x290,6502880942098430,2025-05-21 +City Hotel,1,57,2017,April,17,23,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,122.09,0,0,Canceled,April Banks,glovermelissa@example.net,001-426-884-3443x017,180082327892469,2025-05-02 +Resort Hotel,0,2,2017,August,33,18,1,0,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,D,1,No Deposit,364.0500000000011,179.0,0,Transient,2.87,1,0,Check-Out,Nicole Waller,swatts@example.net,001-743-794-3805x9587,4611993240035,2024-09-04 +City Hotel,0,37,2017,October,41,8,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,62,Transient-Party,76.44,0,0,Check-Out,Nathaniel Sanders,grosstom@example.com,(751)646-1924,4137753521224,2024-04-17 +Resort Hotel,0,141,2017,March,10,4,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,256.0,179.0,0,Transient-Party,51.14,0,0,Check-Out,Jamie White,abigailgoodman@example.net,+1-932-540-2238x27391,4992283679661839,2025-04-29 +City Hotel,0,92,2017,July,27,3,2,4,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,127.13,1,1,Check-Out,Mary Simpson,colemanzachary@example.com,737-232-0357,6011034722545574,2024-09-06 +Resort Hotel,0,23,2017,March,12,17,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,51.44,0,1,Check-Out,Erin Davis,colonsarah@example.org,329-290-8620,180058607847621,2025-08-04 +City Hotel,1,6,2017,May,21,23,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,85.11,0,0,Canceled,Sherri Adams,hammondjennifer@example.org,4532839528,3580629886285012,2025-09-26 +Resort Hotel,0,43,2017,June,26,26,1,1,2,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,1,0,Check-Out,Monica Valentine,cristian55@example.net,7128270199,370788729287815,2025-01-29 +Resort Hotel,1,145,2017,July,27,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,239.0,179.0,0,Transient,91.5,0,0,Canceled,Anna Anderson,william83@example.org,001-486-319-4671x173,374521010388786,2025-12-27 +City Hotel,0,22,2017,February,9,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.74,0,1,Check-Out,James Romero,madeline28@example.org,001-925-523-0039x75430,2709220969646896,2024-07-27 +City Hotel,1,139,2017,April,15,12,0,2,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,62.3,0,0,Canceled,Nicholas Bauer,regina57@example.com,503-830-3315x21272,343927579146366,2025-04-25 +Resort Hotel,0,231,2017,March,13,26,2,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,242.0,179.0,0,Transient,50.92,1,1,Check-Out,Jack Price,dannycarr@example.net,5259327344,213197628040187,2025-04-16 +City Hotel,0,1,2017,February,9,27,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,168.81,0,1,Check-Out,Nicole Short,iclark@example.com,+1-816-592-0256x62188,3511073376894468,2025-02-01 +Resort Hotel,0,1,2017,July,30,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,241.0,179.0,0,Transient,84.67,1,1,Check-Out,Felicia Rios MD,sanchezbetty@example.com,(362)918-1009,3548556067937460,2024-07-13 +Resort Hotel,1,252,2017,July,29,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,126.47,0,0,Canceled,Andrew Flores,christinabrown@example.com,8485940700,3540173476205246,2025-05-06 +City Hotel,1,136,2017,July,27,2,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,135.57,0,0,Canceled,Heather Li,bburgess@example.org,347.498.5241,6536246864744114,2024-05-26 +City Hotel,1,191,2017,September,37,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,80.59,0,0,Canceled,Phillip Jacobson,gentryterri@example.com,559.622.0718,4215392620445522,2025-02-05 +City Hotel,0,16,2017,March,10,7,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.97,0,1,Check-Out,Wendy Salazar,megan00@example.net,(747)775-3863x300,4836564094749665448,2025-01-19 +City Hotel,1,12,2017,November,44,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,63.38,0,0,No-Show,Jacob Schmidt,barreraerin@example.com,+1-566-773-2631x93954,6516554643417033,2024-04-06 +City Hotel,0,111,2017,June,23,9,0,2,1,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,119.08,0,1,Check-Out,Kara Singleton,raymondrogers@example.net,(504)849-1691,4349880962773041432,2025-08-03 +City Hotel,1,80,2017,December,49,8,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,105.28,0,0,Canceled,Derek Hunter,arthur72@example.com,+1-613-416-4435x9737,3505850413104003,2025-01-18 +City Hotel,1,165,2017,May,22,27,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,165.0,179.0,40,Transient,101.15,0,0,Canceled,James Hart,pperry@example.net,001-884-333-1633x224,30289689563230,2024-06-16 +Resort Hotel,0,303,2017,October,42,15,0,1,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,316.0,179.0,0,Transient-Party,82.18,0,0,Check-Out,Wendy Perez,russellhall@example.org,347-530-8666x0988,375393178469520,2024-07-09 +Resort Hotel,1,191,2017,September,35,1,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,D,1,No Deposit,241.0,179.0,0,Transient,223.54,1,1,Check-Out,Travis Morales,tiffany38@example.com,287-511-0355x32502,3569881675305908,2026-03-27 +City Hotel,1,329,2017,March,11,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,E,A,0,Non Refund,2.0,179.0,0,Transient,65.94,0,0,Canceled,Leslie Brown,emily38@example.net,333-719-9715,3533205094015091,2024-10-05 +City Hotel,0,2,2017,September,37,10,1,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,170.43,0,1,Check-Out,Kristie Andrade,kelseyfrye@example.com,001-857-696-4874x35148,213147929618207,2025-07-03 +City Hotel,1,150,2017,June,26,23,0,3,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.0,0,0,Check-Out,Paula Phillips,maria23@example.com,611.591.8397,3587968705417700,2025-06-03 +City Hotel,0,205,2017,September,37,8,0,2,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,83.51,0,0,Check-Out,Lauren Williams,amonroe@example.org,+1-441-934-6915x179,3534440228059322,2025-12-24 +Resort Hotel,0,150,2017,March,13,30,4,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,243.0,179.0,75,Transient,84.77,1,0,Check-Out,Michelle Freeman,kurt34@example.org,927-485-4076x460,4229106183750829,2024-03-27 +Resort Hotel,0,2,2017,August,34,23,0,4,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,0,No Deposit,14.0,179.0,0,Transient,227.56,1,0,Check-Out,Samantha Randall,terrypaul@example.org,203.424.3343,676377321432,2025-09-14 +Resort Hotel,1,39,2017,May,22,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,36.89,0,0,Canceled,April Hanson,deanna05@example.net,239.764.1597,213121997292294,2025-05-25 +Resort Hotel,1,52,2017,May,19,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,62.19,0,0,Canceled,Beth Soto,whitejessica@example.net,741-470-2108,6011785150652493,2024-12-01 +City Hotel,1,16,2017,December,52,30,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient,5.38,0,2,Check-Out,Michael Smith,williamsjoan@example.com,(374)830-9740x3379,372352112725176,2024-10-13 +City Hotel,1,154,2017,September,37,11,0,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,0,Transient,71.9,0,0,Canceled,Stephen Wood,shannonramsey@example.net,+1-262-835-6875x7973,30584191016838,2025-11-19 +Resort Hotel,0,29,2017,September,36,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,217.0,179.0,0,Transient-Party,132.49,0,1,Check-Out,Robert Smith,joshuafrench@example.net,+1-500-828-4585x796,373142876883231,2024-05-10 +Resort Hotel,0,0,2017,February,9,27,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,211.0,0,Transient-Party,50.05,0,0,Check-Out,Ryan Reed,gibbstommy@example.net,831.901.4467x188,4168005943619,2024-04-29 +City Hotel,1,16,2017,July,29,17,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,141.93,0,2,Canceled,Kurt Salazar,kblackwell@example.net,587-528-8397x84771,3571518878692874,2026-01-14 +Resort Hotel,1,109,2017,December,52,23,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,79.18,0,0,Canceled,Amanda Sanders,moorenathan@example.com,2472942436,4603165513315,2024-07-13 +City Hotel,0,299,2017,December,52,29,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,61.4,0,0,Check-Out,Jennifer Garza,mariacook@example.net,(566)434-5237x8155,3539525282087402,2025-10-09 +City Hotel,0,21,2017,November,45,5,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,233.94,1,0,Check-Out,Nicole Marquez,slopez@example.com,+1-321-717-6357x61621,38198431969904,2024-06-07 +City Hotel,0,117,2017,April,15,9,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,209.82,0,1,Check-Out,Christopher White,jthomas@example.com,337.354.8581,4737638317460631,2025-05-07 +City Hotel,1,158,2017,August,35,29,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,97.42,0,0,Canceled,Albert Ross,rbass@example.com,3873439939,3584887696889383,2025-02-10 +City Hotel,0,161,2017,July,27,3,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.31,0,1,Check-Out,Laura Dillon,john50@example.net,691.635.3998x442,5352466514424031,2025-04-23 +Resort Hotel,1,199,2017,July,27,2,1,10,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,136.0,179.0,0,Transient-Party,213.74,0,0,Canceled,Sarah Harrison,thompsonkimberly@example.org,+1-544-486-2977,30293187635011,2025-05-16 +Resort Hotel,0,41,2017,September,36,8,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,150.36,0,1,Check-Out,Nancy Sanchez,santiagoalexis@example.com,+1-664-509-0322x68259,4002089848643480179,2025-02-03 +Resort Hotel,0,15,2017,December,49,5,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,H,H,0,No Deposit,13.0,179.0,0,Transient,106.79,0,0,Check-Out,Gina Miller,carrillosarah@example.com,951-848-3250,3533043830207197,2025-09-23 +City Hotel,1,90,2017,September,37,14,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient-Party,160.6,0,0,Canceled,Regina Bruce,kathleenrice@example.org,6265163767,4233572469366628,2024-07-21 +City Hotel,0,2,2017,August,32,9,2,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,E,D,0,No Deposit,13.0,179.0,0,Transient,159.88,0,3,Check-Out,Mrs. Amber Huff,pedromiles@example.net,7523911002,4961866292666,2025-03-30 +Resort Hotel,0,9,2017,January,2,6,3,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,53.44,0,2,Check-Out,Ashley Cabrera,wileymarissa@example.org,(753)760-7964x00281,376635936620110,2025-04-05 +City Hotel,0,38,2017,December,48,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,88.28,0,1,Check-Out,Juan Shelton,ryanhawkins@example.net,401-889-6915,30295407926484,2024-11-29 +City Hotel,0,10,2017,December,50,11,0,2,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,88.62,0,2,Check-Out,Paige Adams,igraves@example.com,706.429.5442,4064762569629991,2025-12-08 +Resort Hotel,0,6,2017,May,20,16,2,7,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,241.0,179.0,0,Transient,133.45,1,2,Check-Out,Bonnie Roberts,qmoore@example.org,749-367-6841,3522407322674631,2026-01-27 +City Hotel,0,31,2017,January,5,27,1,1,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.22,0,2,Check-Out,Chad Green,arthurcasey@example.net,001-680-784-6851x45849,213167851127902,2025-06-30 +City Hotel,0,5,2017,October,44,28,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,78.0,0,Transient-Party,107.06,0,0,Check-Out,Carolyn Allen,michael79@example.com,(972)791-9991,4991747640546270,2024-11-12 +Resort Hotel,0,158,2017,June,24,12,3,10,2,1.0,0,BB,,Direct,Direct,0,0,0,E,E,1,No Deposit,247.0,179.0,0,Transient,247.64,0,1,Check-Out,Michael Schroeder,kwagner@example.net,+1-449-775-9508x12372,4156960394647582833,2025-08-19 +Resort Hotel,0,2,2017,January,3,14,0,1,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,39.11,0,1,Check-Out,Alexander Lee,wsmith@example.com,(213)511-7787x41783,3561832452491070,2026-02-19 +City Hotel,1,414,2017,October,40,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.15,0,0,Canceled,Todd Jackson,ulopez@example.org,670.508.5974x48914,6560219611287256,2024-05-06 +City Hotel,1,248,2017,June,23,5,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,115.17,0,1,Canceled,Candace Bates,kimturner@example.net,480-748-1393,570295865465,2026-01-17 +Resort Hotel,0,17,2017,April,16,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,233.0,0,Transient-Party,103.4,0,2,Check-Out,Martin Huff,lshaw@example.com,001-401-350-9788x679,4847111279578128,2024-05-03 +City Hotel,0,95,2017,February,9,26,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,77.7,0,1,Check-Out,Michelle Hall,kellysmith@example.org,844-229-8572,4940901755161524857,2026-02-11 +Resort Hotel,0,58,2017,August,33,12,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,240.0,179.0,0,Transient,127.9,0,3,Check-Out,Christopher Morris,meadowsmatthew@example.net,752.612.5991x79444,3572857670685333,2024-09-06 +City Hotel,0,194,2017,August,35,26,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,239.0,0,0,Check-Out,Mark Washington,thompsonjared@example.com,494.735.8025,4231768899678689,2025-02-23 +City Hotel,0,61,2017,October,41,9,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,91.17,0,2,Check-Out,Kevin Shannon,edwardsbobby@example.com,690.758.1340x46328,30519299328156,2025-01-14 +City Hotel,0,154,2017,March,10,8,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,63.99,0,1,Check-Out,Denise Moss,yatkinson@example.org,392.427.1106,4753995209236,2026-02-24 +City Hotel,0,15,2017,October,42,20,2,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,185.99,0,2,Check-Out,Donna Lam,hartmanemma@example.org,+1-218-729-0379x48053,347286294161986,2025-11-14 +Resort Hotel,0,105,2017,October,41,14,1,1,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,89.96,0,0,Check-Out,Tracy Dalton,tyler97@example.com,+1-454-611-8632x8252,4997924244237655,2025-01-01 +City Hotel,1,173,2017,June,24,14,0,4,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,177.72,0,0,No-Show,Judy Peck,reginalewis@example.com,001-324-794-5882x990,6527177777553154,2024-04-02 +City Hotel,0,0,2017,February,7,15,1,0,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,71.34,0,0,Check-Out,Benjamin Hill,reginatucker@example.net,936-261-8001x701,4077516970099560596,2025-08-18 +City Hotel,0,28,2017,August,32,4,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,140.49,0,0,Check-Out,April Marshall,jsmith@example.org,241.677.9759,342271700365400,2025-04-18 +Resort Hotel,0,20,2017,September,37,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,158.4,1,1,Check-Out,Jenna Kemp,anthony58@example.org,001-691-293-8835,4147592675431227,2026-02-24 +Resort Hotel,1,10,2017,March,13,30,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,Anthony Washington,davidlopez@example.net,(847)589-8190x854,6571793159066386,2024-05-26 +City Hotel,1,330,2017,May,19,4,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient-Party,115.51,0,0,Canceled,Bryan Montes,lindsay54@example.com,+1-873-201-5582x701,3535736946515290,2024-10-22 +City Hotel,0,0,2017,December,52,25,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,58.41,0,0,Check-Out,Ryan Martin,ypark@example.net,001-542-931-1332x623,5430857209365453,2025-03-09 +City Hotel,1,167,2017,March,13,29,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,105.4,0,0,Canceled,Patrick Sloan,lindsey12@example.org,+1-900-445-5759x80864,675977364370,2024-12-29 +City Hotel,0,2,2017,October,42,18,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,77.63,0,0,Check-Out,Cody Thomas,hickmanjoel@example.net,4483480696,213115974514977,2024-07-09 +Resort Hotel,0,39,2017,December,51,23,1,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,0.5099000000000001,1,0,Check-Out,Kyle Gardner,ericayoung@example.net,(607)564-6212x06500,180059237827413,2024-11-22 +Resort Hotel,0,13,2017,October,43,22,0,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,249.24,1,2,Check-Out,Jerry Gibson,qlopez@example.com,+1-933-594-6459x56824,343618538995213,2025-06-23 +Resort Hotel,1,202,2017,November,45,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,A,0,No Deposit,245.0,179.0,0,Transient,80.59,1,0,Canceled,Natalie Vazquez,cabrerarobert@example.net,4909115389,3532198454752760,2024-04-15 +Resort Hotel,1,108,2017,November,47,19,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,286.0,179.0,0,Transient,79.82,0,0,Canceled,Jonathan Brown,elliskevin@example.org,001-989-652-1294x2399,6011005123634423,2025-06-03 +City Hotel,0,1,2017,January,4,23,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,17.0,45.0,0,Transient,58.0,0,0,Check-Out,Kirk Martin,bmitchell@example.org,221-993-1453x082,4403721189578356116,2025-11-03 +City Hotel,1,2,2017,January,2,2,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,122.05,0,2,Canceled,Theresa Dickerson MD,charles19@example.org,6996103982,3590345047833255,2024-09-06 +City Hotel,0,9,2017,October,40,2,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Group,168.98,0,1,Check-Out,Angela Porter,william28@example.com,902.964.8123x49045,581946991550,2025-09-30 +City Hotel,0,11,2017,October,41,9,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient,87.1,0,0,Check-Out,Cassandra Martin,wjohnson@example.net,001-255-314-1233x9604,503829646408,2025-03-21 +City Hotel,1,216,2017,June,23,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.56,0,0,Canceled,Zachary Cruz,frank70@example.net,001-746-386-6910x00230,5434770706744581,2025-09-27 +City Hotel,0,164,2017,July,31,30,0,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,102.06,0,0,Check-Out,Mr. Kevin Thornton,darrell45@example.org,001-247-965-8644,4675186529231,2024-07-19 +Resort Hotel,0,1,2017,September,39,25,2,0,2,1.0,0,FB,USA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,136.77,1,0,Check-Out,Sabrina Williams,xbrown@example.org,7282107418,4846474705995,2025-07-31 +Resort Hotel,0,16,2017,June,23,5,0,3,3,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,183.06,1,0,Check-Out,Anne Ramirez,morsebrent@example.net,(963)200-7984,30587588138222,2025-04-03 +City Hotel,0,2,2017,October,40,5,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,15.0,179.0,0,Transient,135.75,1,1,Check-Out,Eric Middleton,kathygarcia@example.net,278.759.7203,3558702969750984,2025-09-15 +Resort Hotel,1,140,2017,June,23,4,2,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,184.11,0,0,Canceled,William King,sarah24@example.com,254-927-5532x02870,2254911741849746,2024-06-23 +Resort Hotel,0,36,2017,January,3,17,1,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,246.0,179.0,0,Group,41.74,0,1,Check-Out,Jeremy Johnson,moranglen@example.net,470.597.5533x39959,2557104264250823,2024-04-20 +City Hotel,1,303,2017,July,31,31,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,112.86,0,0,Canceled,Maria Walker,sarah53@example.net,001-407-529-2262x659,4191740029875764,2026-03-22 +City Hotel,1,59,2017,October,40,2,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.41,0,0,Canceled,Susan Terry,frichardson@example.org,(778)593-3193,6011969062270897,2025-06-07 +City Hotel,1,0,2017,August,32,4,1,1,3,0.0,0,SC,,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,209.11,0,0,No-Show,Douglas Stout,ybailey@example.net,+1-683-564-2333,3561865065364706,2024-05-22 +City Hotel,0,323,2017,July,29,22,0,3,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient-Party,147.08,0,2,Check-Out,Lisa Lopez,aprice@example.com,7096410671,4075150485963453,2025-09-27 +Resort Hotel,1,145,2017,July,27,2,0,6,2,2.0,0,HB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,252.0,1,1,Canceled,Judy Rodriguez,mcfarlandlisa@example.org,(716)546-6875x84232,4924009118313,2024-08-02 +Resort Hotel,0,208,2017,May,21,24,1,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,14.0,179.0,0,Transient-Party,133.43,1,0,Check-Out,Shannon Tran,cheryl68@example.net,(496)813-7227x04528,676230494830,2026-02-22 +City Hotel,0,13,2017,May,21,24,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,78.45,1,0,Check-Out,Stacey Shields,curtisturner@example.net,+1-622-379-9099x907,3535230947921509,2025-01-15 +City Hotel,0,2,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,0,No Deposit,16.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Joseph Romero,nelsonjoshua@example.net,294.720.6490x4860,4589730059020763588,2026-01-07 +City Hotel,0,396,2017,September,37,15,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,1.0,179.0,0,Transient-Party,134.86,0,1,Check-Out,Holly Weber,laurie96@example.org,+1-560-716-7461,3593026625198959,2026-03-11 +City Hotel,0,63,2017,August,35,27,2,5,2,1.0,0,BB,CN,Direct,Direct,0,0,0,F,A,0,No Deposit,12.0,179.0,0,Transient,204.3,1,3,Check-Out,Renee Lynch,ymendoza@example.org,682.979.0217x88252,6011909917893923,2024-08-30 +Resort Hotel,0,239,2017,September,38,20,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Contract,106.72,0,1,Check-Out,Phillip Riley,ruizteresa@example.org,921.993.6909,349810037788389,2026-02-21 +Resort Hotel,1,31,2017,November,45,4,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,239.0,179.0,0,Transient,86.12,0,2,Canceled,Gina Olson,michelesanchez@example.com,869-783-3183x4318,349882122098396,2025-10-05 +City Hotel,0,110,2017,May,21,25,0,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,142.46,0,1,Check-Out,Amy Lyons,joshuaellis@example.com,001-422-366-3417,36254963784807,2024-07-22 +Resort Hotel,0,0,2017,December,52,30,0,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,45.35,1,1,Check-Out,Robert Woods,campbellebony@example.net,+1-589-709-7246x00283,3520863848712036,2026-01-04 +Resort Hotel,0,157,2017,October,42,15,2,5,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,97.55,1,0,Check-Out,Patrick Becker,bentleyheidi@example.com,001-481-623-3123x282,6011106821609152,2025-12-04 +City Hotel,0,102,2017,May,21,22,2,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,74.23,0,0,Check-Out,John Hansen,burnsamanda@example.org,(600)633-5031x9354,6595280466487309,2026-01-21 +City Hotel,1,99,2017,April,16,19,2,5,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,167.0,179.0,0,Transient,66.55,0,0,Canceled,Andrea Graham,lopezdaniel@example.net,364.835.1356x53721,587409368038,2025-11-05 +Resort Hotel,0,10,2017,September,37,13,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,214.13,1,1,Check-Out,Kathryn Evans,parkerhannah@example.com,931.229.2378,377346213132691,2024-08-08 +City Hotel,1,44,2017,June,24,9,0,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,214.35,0,0,Canceled,Dominique Ball,christopherjarvis@example.net,001-260-298-6465x2828,30273685086792,2025-04-30 +City Hotel,0,266,2017,October,43,21,2,5,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,10.0,179.0,0,Transient,121.92,0,1,Check-Out,Carol Harvey,timothyvasquez@example.net,001-231-348-2939x73446,30058495259733,2024-09-22 +Resort Hotel,1,65,2017,October,42,17,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,David Richardson,pamela30@example.org,327.999.6136,4295297155470295,2024-10-31 +City Hotel,0,3,2017,May,18,3,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,164.88,0,1,Check-Out,Sheila Williams,derrick29@example.org,+1-326-541-3638x48704,4044943556557818,2026-03-17 +Resort Hotel,0,0,2017,August,35,27,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient-Party,201.82,0,0,Check-Out,Jane Taylor,ryanhoward@example.com,+1-614-547-9503x356,180031463332020,2024-07-30 +City Hotel,1,2,2017,May,19,6,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient,196.25,0,1,Canceled,Judith Mcmillan,rodrigueznicholas@example.net,344-414-3249x4243,3538060860756963,2025-12-22 +Resort Hotel,0,1,2017,July,28,12,1,1,3,1.0,0,BB,ESP,Online TA,Direct,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,230.81,0,1,Check-Out,April Thompson,christophercrawford@example.org,001-287-217-8655,4963552264857143597,2024-09-14 +City Hotel,1,365,2017,August,33,13,0,1,2,0.0,0,BB,ITA,Online TA,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,130.2,0,0,Canceled,Megan Wood,leemisty@example.com,+1-849-442-1010x898,4243134202110,2026-01-05 +City Hotel,1,159,2017,June,25,19,3,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,125.0,179.0,0,Transient,136.04,0,1,No-Show,Mary Baker,pmartinez@example.net,+1-733-573-9525,4574797206559098108,2026-01-27 +City Hotel,1,15,2017,September,37,16,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,97.35,0,0,Canceled,Rebecca Reese,jennifer21@example.org,847.975.7534,6569591960466272,2024-12-16 +Resort Hotel,1,0,2017,March,10,7,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,67.0,0,Transient-Party,44.71,0,1,No-Show,Paul Richardson,khubbard@example.com,228-596-6558,4498044703389,2025-10-08 +City Hotel,1,134,2017,March,11,11,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,175.0,179.0,0,Transient,44.77,0,0,Canceled,Cassandra Turner,nicole81@example.net,957.421.0288x59474,4481799632177439,2025-09-15 +City Hotel,0,68,2017,August,31,1,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,173.9,0,1,Check-Out,Jay Russell,emily41@example.net,762.655.7501,4595678242129,2025-08-22 +City Hotel,0,134,2017,April,17,26,0,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,102.23,0,1,Check-Out,Matthew Johnson,henry28@example.net,+1-289-552-2065x192,4617147868070489,2024-11-03 +City Hotel,1,167,2017,August,33,15,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.9,0,2,Canceled,Laura Baker,robertthomas@example.org,811.833.8727x610,5577120939605661,2026-02-17 +City Hotel,0,2,2017,January,2,2,0,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,93.07,1,1,Check-Out,Erik Morales,belltommy@example.org,333.544.6601x569,4695439325070,2024-06-13 +City Hotel,0,110,2017,August,34,24,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,81.0,179.0,0,Transient,191.27,1,0,Check-Out,Mr. Jeff Adams,jenniferdavis@example.com,+1-600-922-5348,4328542836868651,2025-09-28 +City Hotel,0,33,2017,April,15,8,0,4,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.66,0,2,Check-Out,Sarah Nguyen,melissa40@example.com,(981)585-8470x473,3537725831361157,2025-10-20 +Resort Hotel,1,44,2017,August,32,9,0,1,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,105.45,0,0,Check-Out,Mike Johnson,thompsonglenn@example.net,304-380-6639,3537094588636745,2025-10-02 +City Hotel,1,12,2017,May,22,29,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,62.26,0,2,Canceled,Samuel Oconnor,annettelawson@example.net,001-999-259-8822x297,3556067074451502,2025-02-16 +Resort Hotel,0,42,2017,November,46,13,2,1,2,0.0,0,Undefined,SWE,Groups,Direct,0,0,0,A,A,1,No Deposit,38.0,179.0,0,Transient-Party,87.77,0,0,Check-Out,Jason Jones,penakimberly@example.net,880-218-7994,676153059974,2026-03-21 +City Hotel,1,161,2017,October,42,14,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,105.1,0,1,Canceled,Elizabeth Brown DDS,meghan03@example.org,001-595-746-1548x095,6576152491931945,2025-01-15 +City Hotel,1,165,2017,October,42,16,0,4,2,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,Non Refund,13.0,185.0,0,Transient,131.73,0,0,Canceled,Pamela Collier,rjohnson@example.net,942.619.3193x994,4242569205845634528,2026-03-17 +City Hotel,0,3,2017,January,2,6,2,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,162.04,0,1,Check-Out,Gregory Preston,qpark@example.com,+1-889-767-6807x41132,342365640208033,2026-01-03 +City Hotel,0,1,2017,November,44,3,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,236.45,0,0,Check-Out,Cheryl Wilson,nlamb@example.com,+1-916-620-8515x94793,4915374130021137,2024-12-30 +Resort Hotel,0,161,2017,April,14,1,1,3,2,0.0,0,BB,POL,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,94.33,0,0,Check-Out,Frances Bridges,vtaylor@example.net,557.575.3403x325,3500072165064609,2025-04-12 +City Hotel,0,153,2017,October,40,6,0,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Contract,107.05,0,0,Check-Out,David Lozano,theodorethompson@example.org,687.208.1254x8942,676355729572,2025-03-19 +City Hotel,1,155,2017,March,13,29,0,3,2,0.0,0,BB,GBR,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,63.94,0,0,Canceled,Stephanie Diaz,jonesamanda@example.net,8186816986,4976038224268188009,2024-05-04 +Resort Hotel,0,36,2017,November,45,4,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,58.65,0,0,Check-Out,Tiffany Burgess,calhounjack@example.com,406.621.7782x43350,3503458489975439,2024-06-25 +Resort Hotel,0,0,2017,August,34,25,1,4,2,2.0,0,HB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,252.0,179.0,0,Transient,203.87,1,0,Check-Out,William Martin,natalie25@example.org,(781)345-5612x068,3568914448078568,2024-06-14 +Resort Hotel,0,52,2017,July,27,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,82.86,0,2,Check-Out,Jennifer Willis,qthompson@example.com,+1-456-530-9876,4135253794560637748,2025-09-27 +City Hotel,0,46,2017,September,37,10,1,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,166.79,1,2,Check-Out,Joshua Brown,grantjose@example.net,+1-509-405-8246x057,4143350414095272,2024-08-19 +Resort Hotel,0,15,2017,December,52,29,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,48.52,0,1,Check-Out,Mark James,terrence71@example.com,(890)269-2109x875,30417829560457,2025-06-29 +Resort Hotel,1,16,2017,August,32,5,1,1,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,146.93,0,0,Canceled,Jonathan Burton,esmall@example.com,(785)498-4924x0149,180071144240689,2024-06-11 +Resort Hotel,0,124,2017,October,41,11,2,5,2,0.0,0,FB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,78.91,0,0,Check-Out,Amanda Mcgrath,ellisstacy@example.org,(395)476-8747x3634,4417569942355697,2025-07-19 +Resort Hotel,0,37,2017,February,7,12,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,72.8,0,3,Check-Out,Julia Miller,gibsonaustin@example.net,001-862-208-8593x8329,36740893792159,2024-12-16 +City Hotel,0,2,2017,January,4,20,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.82,1,2,Check-Out,Benjamin Johnson,thomasdarlene@example.org,001-216-887-1862x5644,3534486117514513,2025-05-08 +Resort Hotel,0,50,2017,May,20,13,3,5,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,125.4,0,1,Check-Out,Zachary Booker,jacksonaaron@example.net,363-614-7773x5369,503808134988,2024-07-16 +City Hotel,1,316,2017,June,23,5,0,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,166.4,0,1,Canceled,Alexandra Myers,amandashaffer@example.com,001-467-479-8915,340299032867910,2024-06-11 +Resort Hotel,1,105,2017,December,49,2,1,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,210.77,0,0,Canceled,Terri Garcia,stephen33@example.com,3669623629,378341403033592,2025-08-14 +Resort Hotel,0,17,2017,February,8,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,36.41,0,1,Check-Out,Karen Moran,smithwendy@example.net,2355831722,4451821652732738923,2025-06-11 +City Hotel,0,95,2017,August,33,18,1,1,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,B,1,No Deposit,11.0,220.0,0,Transient-Party,118.13,0,1,Check-Out,Allison Scott,mmorton@example.net,(700)387-6161x927,4309157306993633,2025-12-22 +City Hotel,0,2,2017,March,10,5,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,16.0,45.0,0,Transient,50.35,0,0,Check-Out,Anthony Novak,oharper@example.net,(691)802-8131,4782216238773707,2024-05-31 +Resort Hotel,0,3,2017,March,11,13,1,0,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,47.19,0,0,Check-Out,Jessica Hale,cindy73@example.com,+1-798-947-8311x4250,4415796663565194,2025-01-04 +Resort Hotel,0,26,2017,December,49,4,0,1,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,83.79,1,0,Check-Out,Monique Shaffer,hwalker@example.net,+1-732-631-4127x885,4284740729698621,2025-03-15 +City Hotel,0,4,2017,October,41,9,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,E,G,1,No Deposit,17.0,179.0,0,Transient,62.36,0,0,Check-Out,Carrie Johnson,cassidyclark@example.com,001-945-687-5332x377,4967877277847327,2025-03-27 +Resort Hotel,1,261,2017,March,11,13,1,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,242.0,179.0,0,Transient,77.84,0,1,Canceled,Christine Marquez,robertmanning@example.net,(384)825-5331x0271,060401068923,2025-12-12 +City Hotel,0,2,2017,March,12,18,0,1,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.78,1,0,Check-Out,Anthony Baker,codyfischer@example.com,001-368-696-5518,4181987066776072,2025-03-31 +City Hotel,0,104,2017,May,20,17,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,62,Transient-Party,152.83,0,0,Check-Out,Anthony Williams,hallnicholas@example.net,(272)471-5949,30145243400618,2025-11-26 +Resort Hotel,0,33,2017,July,28,11,0,5,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,252.0,0,2,Check-Out,Melinda Clark,xbennett@example.net,+1-880-229-2664x812,4404320774587402,2025-12-05 +City Hotel,1,135,2017,December,52,27,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,146.86,0,2,Canceled,Gregory Floyd,joshuakelly@example.org,001-768-739-8278x41585,4514645240874209,2024-08-31 +City Hotel,0,36,2017,March,12,23,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,1,0,1,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,88.82,0,1,Check-Out,Jacob Boyd,kimberlysmith@example.org,(804)914-3668x5006,180046434470691,2025-02-15 +City Hotel,0,97,2017,February,6,5,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,61.97,0,0,Check-Out,Eugene Hughes,andrewhensley@example.net,5037015165,6513938934779610,2026-01-29 +City Hotel,1,14,2017,August,33,16,0,4,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.65,0,2,Canceled,Jeffrey Levy,kirsten87@example.net,+1-288-455-6753x037,4103389173138657,2026-01-02 +Resort Hotel,1,44,2017,August,35,30,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,201.83,0,0,Canceled,Brian Wilson,bgraves@example.org,814-302-8131,4711870286620,2025-03-13 +City Hotel,0,14,2017,February,9,28,0,1,1,0.0,0,BB,FRA,Corporate,Direct,0,0,0,A,B,2,No Deposit,13.0,222.0,0,Transient,82.21,1,0,Check-Out,Haley Jones,ginamitchell@example.net,(201)638-4599x60771,4820058138808611,2024-06-14 +City Hotel,0,6,2017,June,23,4,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.47,0,1,Check-Out,Keith Martinez,kbriggs@example.com,+1-411-344-7945,375006874815339,2026-02-13 +City Hotel,0,0,2017,January,4,24,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,72.91,0,1,Check-Out,Tara Wells,dramos@example.com,(799)409-5537x41295,3591163941581626,2025-07-17 +City Hotel,0,2,2017,August,33,17,0,4,3,0.0,0,BB,BEL,Online TA,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,232.47,0,1,Check-Out,Ana Osborne,fjames@example.com,(294)212-6269,180031382812086,2025-05-07 +City Hotel,0,46,2017,October,42,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,128.56,0,0,Check-Out,Ashley Oconnell,joseph85@example.net,419-592-5403x663,4016723119578695922,2025-08-15 +City Hotel,0,290,2017,May,19,8,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient-Party,152.06,0,2,Check-Out,Bobby Fletcher,melaniecastillo@example.com,363.738.2571,3514555907036202,2024-08-17 +City Hotel,0,89,2017,June,27,30,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,131.73,0,1,Check-Out,Nathaniel Mathis,dylan80@example.org,+1-884-564-6151x5230,503862410647,2024-06-21 +Resort Hotel,0,1,2017,February,8,20,2,1,2,0.0,0,BB,,Corporate,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient-Party,54.72,0,0,Check-Out,Paul Jensen,timothy13@example.com,936.549.8093x629,4778236459236487,2024-03-31 +City Hotel,1,14,2017,April,16,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,105.57,0,0,Canceled,Andrew Garcia,peggyknight@example.net,001-910-385-0373x82759,6537724027727571,2024-05-15 +City Hotel,0,2,2017,August,31,4,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,C,K,0,No Deposit,9.0,179.0,0,Transient,252.0,1,2,Canceled,Tracey Smith,carol41@example.com,3926874808,3502031138263258,2025-01-12 +Resort Hotel,1,82,2017,May,18,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,48.02,0,1,Canceled,Michael Porter,robertcrosby@example.org,(338)857-6814,4138101754561278155,2024-09-05 +City Hotel,0,9,2017,March,12,16,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.66,0,2,Check-Out,Hannah Martinez,kimberlyowens@example.net,2336445660,371453459667442,2025-03-30 +City Hotel,1,14,2017,November,48,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Contract,77.59,0,0,Canceled,Kathleen Porter,james33@example.com,408-890-1434x767,30159865425688,2025-11-16 +City Hotel,1,314,2017,September,36,9,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.89,0,2,Canceled,Charles Gonzales,seangamble@example.org,939.329.7155x8350,676328349177,2024-05-16 +City Hotel,0,194,2017,June,23,9,2,5,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,106.2,0,1,Check-Out,Andres Wong,mariahjohnson@example.org,001-269-837-4261x65091,4929269996090963910,2025-12-04 +City Hotel,0,21,2017,August,35,27,2,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,133.11,0,0,Check-Out,Robert Adkins,paula36@example.net,(602)420-9783,4562110773122246097,2025-01-08 +City Hotel,0,10,2017,January,4,23,1,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,46.71,0,0,Check-Out,Alejandro Holmes,derek15@example.net,+1-727-549-4870,6570820019315314,2024-12-29 +Resort Hotel,0,6,2017,December,51,21,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,75.26,1,0,Check-Out,Amanda Lynch,jroman@example.net,+1-302-266-3643x18189,5346914457816712,2025-01-02 +Resort Hotel,0,69,2017,October,42,20,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,59.92,1,1,Check-Out,Bethany Cannon,franklinshannon@example.net,351-232-3191x4709,4625269094138837488,2025-04-10 +City Hotel,0,201,2017,December,49,9,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.17,0,3,Check-Out,David Williams,bprice@example.org,+1-647-248-3582x00340,213168862175302,2024-05-07 +City Hotel,0,3,2017,February,7,12,0,2,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,172.0,179.0,0,Group,82.81,0,0,Canceled,Tammy Aguilar,jmaldonado@example.com,001-204-996-8303x41555,4004180887293288,2025-04-23 +Resort Hotel,0,131,2017,March,13,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,223.0,0,Transient-Party,52.02,0,0,Check-Out,Laura Casey,hortondonna@example.com,654.285.2762x7300,3532295910540464,2024-09-26 +City Hotel,0,49,2017,October,41,9,2,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,K,0,No Deposit,3.0,179.0,0,Transient-Party,85.48,0,2,Check-Out,Leslie Garcia,schwartzaaron@example.com,503-306-7122,4237389972028934,2025-07-05 +Resort Hotel,0,146,2017,July,30,24,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient-Party,1.77,0,1,Check-Out,Sara Barton,emilykhan@example.com,303-674-5723x942,4811937291826394214,2025-07-04 +City Hotel,0,0,2017,August,35,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Group,115.05,0,0,Check-Out,Kurt Vega,ericsmith@example.org,(453)989-5065,180012453080282,2026-02-07 +City Hotel,1,53,2017,June,25,17,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,102.51,0,0,Canceled,Ruben Hensley,vpayne@example.com,(938)672-4282x9579,4055893257735831,2024-05-07 +City Hotel,0,109,2017,May,22,27,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,110.65,0,0,Check-Out,Michael Mcknight,andrewkim@example.net,384.452.5707,38776607042893,2024-12-08 +City Hotel,0,51,2017,May,21,22,0,4,1,0.0,0,BB,CHN,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,143.72,0,0,Check-Out,Mary Bruce,lisa90@example.org,001-588-530-8181x415,6011862069847819,2024-12-29 +City Hotel,0,3,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,16.0,45.0,0,Group,4.15,0,1,Check-Out,Kelli West,galvanashley@example.com,+1-691-467-6336x51014,4025349726269592484,2024-04-25 +Resort Hotel,1,10,2017,December,50,9,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,B,E,2,No Deposit,15.0,179.0,0,Transient,127.32,0,0,Canceled,Morgan Rogers,sandramcguire@example.net,+1-454-401-5984,30545930701865,2025-06-16 +City Hotel,0,15,2017,June,26,24,1,4,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,1,No Deposit,166.0,179.0,0,Transient,118.59,0,1,Check-Out,Stephanie Dean,yjames@example.com,467-243-1956,4563589711335917740,2024-07-14 +City Hotel,1,15,2017,February,9,25,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,127.73,0,0,No-Show,Deborah Lee,shellytrujillo@example.com,508.724.9881x157,4586282098591264,2024-07-25 +City Hotel,0,21,2017,February,9,28,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,80.01,0,1,Check-Out,Samantha Hernandez,denisegreen@example.com,685.787.1278x72967,2714727240765041,2025-10-21 +City Hotel,0,55,2017,July,29,20,1,1,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,76.95,0,1,Check-Out,Matthew Mendoza,swilliams@example.com,629.593.4595x062,2237892590661832,2024-12-19 +Resort Hotel,1,12,2017,January,2,3,1,4,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,90.04,0,0,Canceled,Michelle Garrett,angelahouston@example.com,+1-324-766-6764x57046,370992531013746,2025-12-13 +City Hotel,0,1,2017,July,29,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.79,0,3,Check-Out,Sara Shannon,ronaldjackson@example.org,201.903.4837x2227,180039237346705,2026-03-26 +City Hotel,1,158,2017,August,35,30,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,163.0,179.0,0,Contract,126.36,0,0,Canceled,Sherry Johnson,hancockjustin@example.com,527-571-9279x956,6523408021284823,2024-05-14 +City Hotel,0,10,2017,September,38,23,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Contract,78.93,0,0,Check-Out,Ralph Cunningham,nking@example.org,526-495-3692,2711958716338830,2024-06-30 +Resort Hotel,0,89,2017,July,27,1,0,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,129.0,179.0,0,Transient,78.93,0,1,Check-Out,Melissa Mcdonald,emartin@example.org,001-598-862-0399x6672,4472824741927,2024-07-22 +City Hotel,0,114,2017,July,27,4,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,112.66,0,1,Check-Out,Chelsea Fitzgerald,boydjohn@example.org,001-356-255-4565x0757,340313393358797,2024-10-01 +City Hotel,0,4,2017,April,14,5,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.62,0,0,Check-Out,Jonathan Black DDS,csmith@example.net,+1-683-991-9271x8243,30022573280052,2025-11-28 +City Hotel,0,0,2017,November,46,15,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,3.05,0,0,Check-Out,Jordan Smith,raymond43@example.org,375.880.8986x66470,378544343315660,2025-05-21 +City Hotel,0,58,2017,July,29,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,213.98,0,1,Check-Out,Michael Taylor,alisonconrad@example.org,2252486296,30486892111654,2025-12-16 +Resort Hotel,0,89,2017,March,9,1,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,228.0,179.0,0,Transient,47.54,0,0,Check-Out,Kathy Sparks,debrajones@example.net,524-675-7990x59439,4749066666601,2024-08-20 +City Hotel,0,0,2017,October,41,10,0,2,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,187.0,0,Transient,66.17,0,0,Check-Out,Angela Neal,cherylstephenson@example.org,(807)295-0075x150,4258836574590,2025-10-02 +Resort Hotel,0,22,2017,September,39,26,1,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,62.44,0,1,Check-Out,Cheryl Gill,bryan23@example.net,+1-970-859-2346,503815307056,2025-02-03 +City Hotel,1,171,2017,February,9,25,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,64.08,0,0,Canceled,Jordan White DDS,walkermichael@example.net,001-915-852-6324,4987776648459852358,2024-04-15 +City Hotel,0,14,2017,March,10,6,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,74.86,0,1,Check-Out,Raven Cruz,medinataylor@example.net,001-885-625-4108x09579,4227240080502,2025-02-02 +Resort Hotel,0,10,2017,March,14,31,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,85.68,0,1,Check-Out,Jasmine Martin,danielleburton@example.net,811.728.6652,346944385465366,2025-05-01 +City Hotel,1,0,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,17.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Canceled,Ronald Stark,petersonana@example.net,+1-407-376-2197,3559102622319294,2024-08-18 +Resort Hotel,0,45,2017,December,50,15,1,2,1,0.0,0,FB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,50.33,0,0,Check-Out,Tracy Quinn,monicalarson@example.org,7084940793,30184470351285,2025-04-12 +City Hotel,1,139,2017,February,9,26,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,128.27,0,0,Canceled,Jane Kirby,wendygriffin@example.net,5406390140,562269194691,2025-03-17 +Resort Hotel,1,33,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,84.72,0,0,Canceled,Stephen Hart,jessica62@example.net,(971)536-8696x534,4268333258376973,2025-03-13 +Resort Hotel,0,198,2017,March,13,30,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,1,Refundable,13.0,224.0,0,Transient-Party,38.5,0,0,Check-Out,Tiffany Henderson,cmays@example.org,317.462.3354,4362483451194528,2025-03-22 +City Hotel,0,31,2017,September,36,4,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,209.09,0,0,Check-Out,Brandon Brandt,heatherchung@example.org,9015491011,3561720883991711,2025-01-15 +Resort Hotel,0,53,2017,March,14,30,0,1,1,0.0,0,BB,ESP,Online TA,Direct,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,49.37,1,1,Check-Out,April Allen,jmorris@example.org,001-990-268-1924,4616613237801442,2024-10-30 +City Hotel,0,169,2017,June,25,21,2,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,26.0,179.0,0,Transient-Party,108.47,0,0,Check-Out,Keith Barrett,hutchinsongary@example.org,249.652.3990x98064,4606211558903,2024-04-13 +Resort Hotel,0,192,2017,August,35,29,2,5,2,2.0,0,HB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,247.0,179.0,0,Transient,252.0,0,1,Check-Out,Yvonne Myers,navarrokenneth@example.org,001-461-930-5725,3510168653938698,2024-07-26 +Resort Hotel,0,92,2017,December,51,23,0,7,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,142.87,0,1,Check-Out,Dr. Alex Rice,lyonsbrian@example.com,699.506.7056,4069881695360882825,2025-10-27 +City Hotel,1,383,2017,April,16,16,2,3,2,0.0,0,BB,USA,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,188.0,0,Transient,109.26,0,1,Canceled,Robert Robinson,michaelglover@example.com,(557)440-5659x575,370879221388266,2025-08-10 +City Hotel,1,210,2017,September,38,19,0,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,62.26,0,0,Canceled,Maria Reed,vthomas@example.com,392-673-4757x28614,4366823517354175472,2025-01-13 +Resort Hotel,0,31,2017,February,9,25,2,2,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,88.33,0,1,Check-Out,Michael Day,kellystein@example.net,001-319-559-4460,5222223858295354,2024-12-22 +City Hotel,1,84,2017,March,12,23,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,136.0,179.0,41,Transient,106.49,0,0,Canceled,Adam Baldwin MD,susancruz@example.net,(288)333-6648x49476,4197407693296552,2025-02-17 +Resort Hotel,0,0,2017,February,6,5,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,43.26,0,1,Check-Out,Allison Johnson,fmartinez@example.com,338.411.9975x251,30336006403978,2024-04-28 +Resort Hotel,1,30,2017,December,50,16,1,4,1,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,134.0,179.0,0,Transient,114.16,0,0,Canceled,Amber Franklin,sanchezjasmine@example.net,(390)627-5915,2633185667206940,2025-05-21 +Resort Hotel,0,148,2017,July,28,12,3,10,3,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient-Party,192.74,0,3,Check-Out,Amanda Garrett,connercharles@example.com,(724)599-7490x7089,4116783912492042469,2024-10-11 +Resort Hotel,0,8,2017,September,38,19,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,38.66,0,2,Check-Out,Anthony Mckinney,vlopez@example.com,(843)567-1193x41251,4362148778889,2025-12-24 +City Hotel,0,100,2017,September,38,19,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Contract,62.53,0,2,Check-Out,Sandra Bell,wesley94@example.com,299.464.5755x53115,373073233821178,2025-06-19 +City Hotel,0,17,2017,April,14,5,1,0,1,0.0,0,BB,BEL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,235.0,0,Transient-Party,135.85,0,0,Check-Out,Jacqueline Jordan,shurst@example.org,373.829.1064,2288516742881802,2025-10-07 +City Hotel,0,91,2017,November,47,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,96.72,1,0,Check-Out,Robert Richards,marcus71@example.org,976-695-4241x5495,4459938229187446386,2025-10-03 +City Hotel,0,135,2017,February,9,27,2,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,164.0,179.0,0,Transient-Party,80.8,0,2,Check-Out,Patricia Richard,latoyachristensen@example.org,(722)878-7648x5748,213152201972744,2025-09-11 +Resort Hotel,1,145,2017,August,33,12,2,4,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,Jason Long,cchavez@example.org,634.976.6846x8050,38207385796518,2024-06-21 +City Hotel,1,358,2017,March,10,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,21,Transient,76.84,0,0,Canceled,Michael Carlson,romeroadam@example.org,001-242-827-3475x65096,503885730310,2024-08-18 +City Hotel,1,414,2017,May,21,24,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.36,0,1,Canceled,Lauren Schmitt,cking@example.net,001-927-335-2541,2591508420234570,2025-06-02 +City Hotel,0,205,2017,October,43,21,2,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,106.08,0,2,Check-Out,Brandon Wilson,jimenezmelissa@example.org,001-243-945-7724x18218,3517748530142730,2025-07-21 +City Hotel,1,94,2017,September,36,8,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,83.0,179.0,0,Transient,77.04,0,0,Canceled,Ashley Villanueva,benjamin28@example.org,(933)486-1818x60112,6011477312458296,2024-11-09 +City Hotel,0,10,2017,April,18,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,109.12,0,0,Check-Out,Shawn Clark,steven12@example.net,001-322-292-7308x964,3571597854388897,2025-05-21 +Resort Hotel,0,17,2017,September,37,12,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,56.09,0,2,Check-Out,Dennis Smith Jr.,brett18@example.net,5716561320,3536807733372523,2025-05-21 +Resort Hotel,1,178,2017,July,28,10,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,241.0,179.0,0,Transient,224.0,0,0,Canceled,Joanna Ramirez,amyholder@example.com,(644)596-9043,502037690992,2025-03-25 +Resort Hotel,0,12,2017,March,11,12,1,2,1,0.0,0,BB,CHE,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,94.88,0,1,Check-Out,Melissa Dickson,mirandaderek@example.net,(908)517-5993x66239,2286954992085281,2025-11-11 +City Hotel,1,138,2017,June,25,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,12.0,179.0,0,Transient,102.48,0,0,No-Show,Jessica Cook,spope@example.org,+1-541-835-4478x1423,3529064706141613,2025-11-21 +Resort Hotel,0,41,2017,April,15,13,2,10,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,56.43,1,1,Check-Out,Michael Contreras,joseph20@example.net,(957)672-4727,4625070203690,2024-06-16 +Resort Hotel,1,21,2017,August,32,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,172.47,0,0,Canceled,Cole Snyder,steven23@example.com,+1-846-994-5525x49283,373293830765996,2025-08-29 +City Hotel,0,103,2017,July,28,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,93.6,0,1,Check-Out,Christina Baxter,robert01@example.org,635-578-9634x3310,36937723009008,2026-02-04 +Resort Hotel,0,0,2017,December,49,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,47.75,0,2,Check-Out,Jeremy Newman,marystafford@example.com,6759154732,579186171651,2025-07-04 +Resort Hotel,0,2,2017,August,32,8,0,2,1,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,32.28,0,1,Check-Out,Brandi Thompson,hunterkayla@example.net,(293)285-9044x321,4292732732165987,2025-01-25 +Resort Hotel,0,12,2017,March,12,18,1,0,2,0.0,0,BB,POL,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,45.68,0,1,Check-Out,Mike Wright,hammondruben@example.com,001-412-344-0895,4210413240762222,2025-07-31 +City Hotel,0,15,2017,January,2,5,2,2,3,0.0,0,BB,GBR,Direct,Direct,0,0,1,D,D,0,No Deposit,10.0,179.0,0,Transient,118.54,0,1,Check-Out,Amanda Gonzalez,cynthia64@example.com,464.860.2436,213157940373229,2025-12-09 +City Hotel,0,80,2017,March,12,23,2,2,2,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,79.81,0,0,Check-Out,Christy Simpson,jenniferadams@example.com,+1-610-414-0716x4398,4816311646264,2024-10-13 +City Hotel,0,99,2017,April,17,20,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,212.0,179.0,0,Transient,131.39,0,0,Check-Out,Jessica Ward,ashley15@example.com,2058758646,4604707312756433058,2024-05-02 +City Hotel,0,21,2017,November,44,3,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.06,1,2,Check-Out,Trevor Castaneda,iwright@example.com,279-946-1137,180020263408205,2025-04-03 +Resort Hotel,0,37,2017,November,44,3,2,5,2,0.0,0,BB,,Offline TA/TO,Corporate,0,0,0,A,E,0,No Deposit,332.0,179.0,0,Transient,44.86,0,0,Check-Out,Erika Jones,gregory77@example.org,(385)829-3138x052,378969916197338,2024-12-05 +City Hotel,0,252,2017,August,35,29,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,239.79,0,2,Check-Out,David Hale,gregoryperez@example.org,001-532-898-4071x532,3516625428509348,2025-10-23 +Resort Hotel,0,208,2017,June,25,15,2,0,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,309.0,179.0,0,Transient,98.57,0,1,Check-Out,Diane George,lopezjack@example.net,(234)737-4111x85940,2243400136194672,2025-07-07 +Resort Hotel,0,16,2017,August,34,21,2,2,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,242.0,179.0,0,Transient-Party,131.87,0,1,Check-Out,Aaron Garcia,andrea41@example.com,+1-534-973-2451x3351,3560778399051728,2025-10-26 +City Hotel,0,345,2017,December,51,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.24,0,0,Canceled,Joshua Farmer,qgilbert@example.com,001-919-421-4840,3568477010834222,2025-11-07 +Resort Hotel,0,3,2017,August,34,25,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,205.71,0,1,Check-Out,Christine Fernandez,nicholasking@example.org,708.945.1511,4963594948932,2025-09-02 +Resort Hotel,0,33,2017,December,48,1,1,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,54.3,0,1,Canceled,Ashley Wright,zsims@example.org,5904925759,4784787884393769220,2024-05-13 +City Hotel,0,15,2017,May,18,5,1,1,1,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,103.16,0,0,Check-Out,Sean Shaw,jeffrey20@example.org,760-486-1297x25115,4027417615519682760,2025-10-27 +City Hotel,0,24,2017,May,21,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,84.0,179.0,0,Transient,85.39,0,0,Check-Out,Dawn Davis,jasmineanderson@example.com,426-309-8706x807,344486942724192,2025-02-27 +City Hotel,0,12,2017,April,15,9,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.93,0,2,Check-Out,Alexandra Jennings,kellymorgan@example.org,+1-752-337-7812x9640,377736629677083,2025-06-04 +City Hotel,1,260,2017,August,32,5,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,107.37,0,2,Canceled,John Burns,imurphy@example.net,6628504101,341563657920315,2025-02-19 +Resort Hotel,0,111,2017,June,23,2,3,7,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,180.6,0,2,Check-Out,Renee Gomez,ashley27@example.org,9534806630,4430043358916957,2025-03-26 +City Hotel,0,10,2017,March,11,13,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,6.0,179.0,0,Transient,137.93,0,1,Check-Out,Jennifer Hart,christinamyers@example.org,(551)634-4225x1588,213140474364756,2024-07-13 +Resort Hotel,1,152,2017,July,28,10,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,130.49,0,1,Canceled,Mr. Erik Huang Jr.,mary60@example.org,857.973.4300,3506198589181184,2024-09-25 +Resort Hotel,0,145,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,0,Refundable,15.0,222.0,0,Transient-Party,38.37,0,0,Check-Out,Kevin Garner,brandon58@example.net,565-697-4638,4968304056280660,2025-11-23 +City Hotel,1,106,2017,May,19,4,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient-Party,110.34,0,0,Canceled,Stacie Robbins,acollins@example.net,587-766-4438x941,38063806677765,2024-09-28 +Resort Hotel,1,82,2017,April,17,23,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient-Party,122.79,0,0,Canceled,Matthew Martinez,wilkinsonthomas@example.org,+1-571-738-6342,6548215040025728,2025-08-08 +City Hotel,0,11,2017,December,51,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,65.33,0,1,Check-Out,John Larsen,scottmendez@example.org,662.256.9893,213106868643121,2024-06-12 +City Hotel,0,17,2017,October,43,26,2,4,1,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,A,A,0,No Deposit,40.0,179.0,0,Transient-Party,40.2,0,0,Check-Out,Jeffrey Smith,lisa06@example.net,+1-855-816-3546x2375,3513198438762342,2024-12-12 +City Hotel,0,20,2017,August,31,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,190.89,1,0,Check-Out,Matthew Vincent,victoriasavage@example.com,001-589-921-3018x823,3560169081017120,2025-01-19 +City Hotel,0,11,2017,August,32,3,2,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,132.54,0,0,Check-Out,Nathaniel Smith,jonesmichael@example.org,001-642-530-2772x43317,4560857377917528,2024-09-01 +City Hotel,0,2,2017,August,31,4,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,111.52,1,1,Check-Out,Kelly Turner,odominguez@example.org,525.893.7912x860,584424510447,2025-03-10 +City Hotel,0,153,2017,November,46,12,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,199.76,0,0,Check-Out,Heather Rivera,jrobinson@example.org,001-646-542-3042,589380752073,2024-09-24 +Resort Hotel,0,101,2017,December,52,26,1,5,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,E,2,No Deposit,240.0,179.0,0,Transient,208.84,1,0,Check-Out,Brandon Moreno,kimberly36@example.com,(987)937-1977x4143,060470259585,2024-08-06 +City Hotel,0,151,2017,September,36,2,2,2,3,0.0,0,BB,IRL,Online TA,GDS,0,0,0,D,D,1,No Deposit,166.0,179.0,0,Transient,141.45,0,0,Check-Out,Joshua Stokes,jenniferkramer@example.org,001-414-557-2725x04883,675958446188,2024-11-30 +Resort Hotel,0,0,2017,February,6,7,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,37.09,1,1,Check-Out,Shelley Weber,groberson@example.com,001-281-204-5684x919,2607951516364665,2025-05-08 +City Hotel,0,0,2017,December,52,26,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,45.0,0,Transient,0.86,0,1,Check-Out,Sarah Barnett,efisher@example.net,399.500.1533x2947,371204539198928,2025-07-11 +City Hotel,1,10,2017,May,21,24,2,5,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,16.0,221.0,0,Transient-Party,32.71,0,0,Canceled,Donald Lee,jessica36@example.org,(339)425-9959x2840,4318226008738627,2025-03-11 +City Hotel,0,97,2017,May,18,1,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,86.46,1,2,Check-Out,Amy Williams,gillespieandrew@example.net,587.940.1156x8726,3558720581493270,2025-09-28 +City Hotel,0,2,2017,October,41,8,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,260.0,0,Transient,80.87,0,0,Check-Out,Edward Alexander,valenciaralph@example.net,+1-301-246-0552,30072216416357,2025-03-30 +Resort Hotel,0,51,2017,March,14,30,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,252.0,1,1,Check-Out,Mark Torres,stewartdestiny@example.net,001-875-651-0235x840,4309866136016122,2025-01-26 +City Hotel,1,111,2017,August,32,6,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,0,Transient,75.26,0,0,Canceled,Mike Walker,jcunningham@example.net,420-809-8794x9542,4722184577764898,2024-11-30 +Resort Hotel,0,14,2017,January,2,5,0,1,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient,43.54,0,1,Check-Out,Jessica Hall,daviskimberly@example.net,(746)782-2545x10213,4321913669527659837,2025-06-04 +City Hotel,0,12,2017,November,45,8,0,1,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,143.06,0,1,Check-Out,Maria Oliver,mary57@example.com,469-822-6334x6703,4338369736376,2024-10-13 +Resort Hotel,0,149,2017,April,15,9,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,221.0,0,Transient,113.25,0,0,Check-Out,Kayla Gonzales,jesus54@example.com,001-203-237-9720,6011622184711120,2026-01-01 +City Hotel,0,373,2017,September,36,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,64,Transient-Party,96.85,0,0,Check-Out,Oscar Morrison,qmichael@example.org,633.846.2578x48723,675983430272,2024-11-21 +City Hotel,1,86,2017,February,9,26,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,40.18,0,0,Check-Out,Paul Garcia,walshsamuel@example.org,572-646-4373,30206466186019,2024-12-22 +City Hotel,1,23,2017,August,33,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,178.64,0,0,Canceled,Martha White,valeriegonzalez@example.com,+1-425-583-7944x74077,30026864043392,2025-12-25 +Resort Hotel,0,28,2017,May,21,22,4,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,139.22,0,1,Check-Out,Alexis Mitchell,cohenmolly@example.org,+1-459-383-4323x86385,180024308927146,2024-06-08 +City Hotel,1,41,2017,October,42,18,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.41,0,0,Canceled,Maria Medina,millermichael@example.net,+1-982-248-4691x194,344103430934668,2026-01-25 +Resort Hotel,0,110,2017,March,13,26,0,4,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,E,1,No Deposit,17.0,179.0,75,Transient-Party,81.86,1,1,Check-Out,Brooke Harris,garcianicole@example.net,633-304-8351x100,3532251609444815,2025-06-12 +City Hotel,0,15,2017,July,27,6,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,233.2,0,1,Check-Out,Trevor Miller,muellerdestiny@example.com,6975147308,180041225187935,2024-12-11 +Resort Hotel,1,2,2017,December,51,22,2,4,2,1.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,51.85,0,0,Canceled,William Moyer,brownlaura@example.org,001-350-770-2935x698,213175399680365,2024-07-18 +City Hotel,0,1,2017,April,17,27,0,1,1,0.0,0,BB,BRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,106.91,0,0,Check-Out,Robert Vasquez,johnwells@example.com,3886028118,4953868500866020809,2026-02-04 +City Hotel,0,4,2017,August,34,21,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,17.0,179.0,0,Transient,93.28,0,1,Check-Out,Samantha Velazquez,sarah38@example.com,343-240-7424,3574975315768435,2024-08-11 +City Hotel,1,15,2017,May,22,29,2,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.87,0,0,Canceled,Brandon Gray,lori61@example.org,(465)819-0344,6584660207641582,2025-11-25 +City Hotel,1,36,2017,April,17,26,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.63,0,1,Canceled,Shelly Wagner,smithpatricia@example.net,853-836-3215,3519348721793892,2026-01-22 +City Hotel,1,165,2017,November,45,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,188.81,0,3,Canceled,Kathryn Moore,williamseric@example.org,866-262-1012x181,675958826736,2025-11-10 +City Hotel,0,15,2017,April,17,20,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.84,0,3,Check-Out,Nicholas Abbott,fdudley@example.com,7322294883,4789346556452866,2025-07-04 +City Hotel,0,23,2017,July,31,27,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,110.73,0,1,Check-Out,Carlos Ray,hollywright@example.org,217.567.4655x733,4463411744561581,2025-11-19 +City Hotel,1,3,2017,May,20,14,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,237.0,179.0,0,Transient,85.73,0,1,Canceled,Erin Park,stephanieadkins@example.net,+1-670-976-4626x45339,579183746380,2025-03-26 +City Hotel,1,153,2017,June,24,15,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,132.1,0,0,Canceled,Lori Turner,matthewcrosby@example.com,001-619-685-1896x56247,6559064052739115,2025-04-18 +City Hotel,1,210,2017,May,22,26,1,2,2,0.0,0,BB,BEL,Offline TA/TO,Direct,0,0,0,D,D,2,Non Refund,317.0,179.0,0,Transient,170.12,0,0,Canceled,George Norris,justin41@example.net,764-896-8938x609,379862036146674,2024-08-23 +Resort Hotel,0,154,2017,July,30,25,2,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,106.81,0,1,Check-Out,Krista Lee,shannon78@example.org,+1-706-484-2203x590,3532288490484286,2024-05-24 +Resort Hotel,0,12,2017,August,35,24,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,138.26,0,3,Check-Out,Christina King,lindaproctor@example.net,805.619.8880x22467,3595032731673800,2024-10-19 +City Hotel,0,13,2017,November,45,10,1,2,1,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,123.01,1,0,Check-Out,Wanda Morrison,davidpetersen@example.net,504-855-7561x4601,2277510903305852,2024-03-28 +Resort Hotel,1,64,2017,March,11,13,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,93.26,0,2,Canceled,Bryan Scott,tbrown@example.org,712-557-3898x17031,30263263122119,2024-04-24 +Resort Hotel,1,259,2017,August,33,15,0,3,2,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,99.67,0,1,Canceled,Jeanne Williams,matthewferguson@example.net,+1-845-688-7616x93823,4673665758762874,2025-02-14 +City Hotel,1,19,2017,May,20,17,1,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.82,0,0,Canceled,Jennifer Rivera,tatebrandon@example.org,001-977-794-8298,4884165547954,2024-11-01 +City Hotel,1,2,2017,August,33,14,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,48.37,0,1,No-Show,Michael Mckinney,denisegarcia@example.com,8127115521,213183531629381,2026-01-19 +Resort Hotel,0,232,2017,July,29,22,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,240.0,179.0,0,Contract,110.59,0,1,Check-Out,Billy Bates,adampoole@example.org,341-553-2038x61764,4425950499500200,2025-08-18 +Resort Hotel,0,0,2017,December,49,6,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,237.0,179.0,0,Transient,105.58,0,2,Check-Out,John Owens,lwu@example.com,(677)412-6239,4012221962227229,2024-08-14 +Resort Hotel,0,147,2017,September,37,10,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,217.29,0,0,Check-Out,Wanda Williamson,vwilkins@example.org,+1-301-881-0652x10429,4399546762699269153,2025-09-19 +City Hotel,0,152,2017,July,29,15,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,144.9,0,1,Check-Out,Michele Horton,john75@example.com,+1-761-600-7844x495,341272997770071,2024-12-15 +Resort Hotel,0,4,2017,October,41,9,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,121.41,0,1,Check-Out,Terri Jones,weberjason@example.org,328-267-8936,2720876653701290,2025-06-16 +Resort Hotel,0,11,2017,May,20,18,2,5,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,110.58,0,0,Check-Out,Michael Walsh,ylopez@example.net,001-971-657-2939,4229358153012728,2024-09-12 +City Hotel,0,3,2017,May,20,13,0,4,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,147.05,0,0,Check-Out,Tyrone Spears,hillmatthew@example.org,748.253.5793x06485,676137127848,2024-11-01 +Resort Hotel,1,151,2017,December,52,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,304.0,179.0,0,Transient,50.36,0,0,Canceled,Fernando White,erincohen@example.org,+1-342-501-0447,213102125952884,2025-06-11 +City Hotel,0,48,2017,April,14,5,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,106.02,0,1,Check-Out,Lindsey Brewer,andrealopez@example.net,001-232-956-1981x432,6582876003782469,2024-09-02 +Resort Hotel,0,8,2017,December,51,22,2,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,116.3,0,0,Check-Out,Donald Miller,adamsjoshua@example.net,842-354-1564x6488,180008808602804,2025-10-17 +Resort Hotel,0,50,2017,July,27,5,1,4,3,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,187.91,1,1,Check-Out,Richard Castro,williamsonmolly@example.net,8568194454,4679520090100643286,2025-10-26 +Resort Hotel,0,36,2017,March,13,23,1,1,2,0.0,0,BB,POL,Direct,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,131.56,0,1,Check-Out,Matthew Mullins,andrewlopez@example.net,+1-730-602-8595,6011105463018664,2025-11-06 +Resort Hotel,0,20,2017,February,7,11,2,1,2,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,185.0,179.0,0,Transient-Party,49.83,0,0,Check-Out,Brianna Bell,diana59@example.com,001-360-320-1493,3570502075754266,2026-01-05 +City Hotel,1,0,2017,May,21,24,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,165.0,0,Transient,93.86,0,0,No-Show,Thomas Walker,donald63@example.net,(458)229-7434x25907,3507637186004108,2025-01-09 +City Hotel,0,10,2017,May,21,23,1,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,69.0,179.0,0,Transient-Party,80.5,0,0,Check-Out,Amber Gonzalez,angela78@example.org,426-222-0266x64231,4408638554836479565,2024-05-13 +City Hotel,0,11,2017,March,12,24,0,1,2,0.0,0,BB,FRA,Direct,Direct,1,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,96.28,1,2,Check-Out,Michael Santos,theresawoods@example.com,853-328-0056x0717,378122826219376,2025-02-27 +Resort Hotel,0,108,2017,May,19,8,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,217.19,0,0,Check-Out,Jessica Patterson,stephanie47@example.com,+1-241-648-0521,36136458676616,2025-06-05 +Resort Hotel,0,2,2017,August,36,31,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,222.35,0,1,Check-Out,Gary Smith,travisatkinson@example.org,001-902-999-7710x56376,4538581198293,2025-08-04 +City Hotel,0,63,2017,March,13,26,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,106.4,0,1,Check-Out,Cheryl Brady,aleccoffey@example.net,001-825-465-4424x743,576743204488,2025-11-27 +City Hotel,1,2,2017,April,14,6,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,98.97,0,0,Canceled,Dr. Mark Orozco,walterslindsey@example.com,914-201-3501,3508127996431823,2024-10-21 +City Hotel,1,0,2017,October,42,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,80.38,0,0,Canceled,Anthony Robinson,cassiewilson@example.net,001-997-853-4510x459,6011599741064427,2025-06-07 +City Hotel,0,102,2017,March,10,5,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,89.0,179.0,0,Transient,84.45,0,0,Check-Out,Christine Bright,kelleykelly@example.org,866-707-8554x41336,3500097810173695,2024-11-27 +City Hotel,1,267,2017,July,27,3,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,103.5,0,0,Canceled,Christopher King,pattersonvictoria@example.net,+1-788-666-4053x44408,36906792277242,2026-03-18 +Resort Hotel,0,36,2017,October,40,5,0,2,1,0.0,0,Undefined,,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,198.19,1,0,Check-Out,Zachary Duran,kevincruz@example.net,236-749-3746x0062,4380508018687891,2024-11-05 +Resort Hotel,0,40,2017,May,19,9,0,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,57.84,0,1,Check-Out,Jeffrey Walker,robinsonrachel@example.org,448-673-2014,4063388808069,2024-08-08 +City Hotel,1,380,2017,August,33,15,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,227.72,0,0,Canceled,Jessica Fletcher,samuelsmith@example.org,(295)463-6432x2250,3595094586905653,2024-10-22 +Resort Hotel,0,14,2017,January,5,31,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Transient,113.18,0,1,Check-Out,Katie Hammond,whitejessica@example.com,(938)749-1022x85386,4080484897788676,2024-12-12 +City Hotel,1,133,2017,July,27,1,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,22.0,179.0,40,Transient,90.52,0,0,Canceled,Brooke Lyons,cooperkevin@example.com,577-609-8473,6011055608922744,2025-11-20 +Resort Hotel,0,1,2017,November,45,4,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,235.0,0,Transient,45.54,0,0,Check-Out,Jennifer Gardner,elaine33@example.net,001-676-497-9362x528,4209244140482,2025-02-27 +City Hotel,0,13,2017,March,11,15,2,1,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,67.17,0,2,Check-Out,Joseph Dominguez,samantha95@example.net,899-758-6087,561789550077,2026-03-12 +City Hotel,1,147,2017,March,14,30,1,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,234.0,179.0,0,Transient,111.47,0,0,Canceled,Natasha Wells,james83@example.org,001-783-390-6387,4451295436466423770,2025-02-01 +Resort Hotel,0,97,2017,April,14,4,2,5,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,2,No Deposit,364.0500000000011,179.0,0,Transient-Party,168.99,1,0,Check-Out,James Green,simondebra@example.net,(796)251-4718x89744,4248286653317,2024-05-20 +Resort Hotel,0,77,2017,March,12,18,0,3,1,0.0,0,Undefined,GBR,Groups,Corporate,0,0,0,A,A,1,No Deposit,186.0,179.0,0,Transient-Party,88.84,0,0,Check-Out,Alyssa Vasquez,trujillojudy@example.net,322.625.2130,060453709515,2025-11-05 +Resort Hotel,0,140,2017,December,50,10,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,48.77,0,1,Check-Out,Brandon Gray,cristian86@example.com,(544)602-7017,4775530049467542,2025-05-02 +City Hotel,0,86,2017,October,41,12,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,123.72,0,1,Check-Out,Nicholas Brown,ybranch@example.net,(447)999-4981x3992,4438098174917797,2025-07-20 +City Hotel,1,402,2017,July,29,19,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,104.52,0,0,Canceled,Brittney Gutierrez,katiemarquez@example.org,+1-211-531-6700x2412,4451894089844124928,2025-05-12 +City Hotel,1,158,2017,June,26,26,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,86.68,0,0,Canceled,Christina Sweeney,velasquezmonica@example.net,977-765-2117x281,2272247668028487,2024-06-11 +City Hotel,1,155,2017,April,15,12,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,132.18,0,0,Canceled,Kyle Mccall,ohodges@example.org,+1-319-295-2816x89525,4840814652058025,2024-12-13 +City Hotel,0,64,2017,August,32,5,0,4,3,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,240.2,0,2,Check-Out,Jill Wright,jordankimberly@example.org,918-584-3323x9331,38199247938471,2025-12-19 +City Hotel,0,2,2017,October,40,2,0,1,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,205.0,0,Transient-Party,91.24,0,0,Check-Out,Kristin Woods,crawfordnathan@example.com,219.466.6272x83607,4085202174984155,2025-08-15 +City Hotel,1,45,2017,October,42,16,1,1,2,2.0,0,SC,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,215.11,0,0,Canceled,Dean Anderson,james57@example.net,+1-366-548-1448,4640235004784,2025-07-23 +City Hotel,1,225,2017,August,32,8,1,0,1,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Canceled,Zachary Gill,ginawarren@example.com,5472229820,4703060479130714,2026-01-20 +Resort Hotel,1,31,2017,September,38,18,1,5,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,103.94,0,1,Canceled,Brian Lee,jeanevans@example.net,001-233-975-9456x29672,4759793552028636,2025-05-11 +Resort Hotel,1,16,2017,July,28,8,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,240.0,179.0,0,Transient,217.54,0,0,Canceled,Shawn Chan,pamela75@example.net,7563208535,4026203593380422055,2024-09-15 +City Hotel,1,202,2017,May,20,15,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.68,0,0,Canceled,Rachael Barnes,connor79@example.com,+1-306-708-4311x8860,6545246965871609,2025-03-27 +Resort Hotel,0,84,2017,May,19,6,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,130.15,0,1,Check-Out,Robert Ingram,hgregory@example.org,343.256.7804,4190174729418959,2024-04-03 +Resort Hotel,0,45,2017,March,11,16,1,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,221.0,0,Transient-Party,50.86,0,0,Check-Out,Catherine Walker,zimmermananthony@example.net,+1-317-877-5974,180046018791579,2024-09-23 +City Hotel,0,153,2017,August,33,16,1,3,2,0.0,0,BB,CN,Direct,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,115.97,0,2,Check-Out,Karen Price,gbridges@example.org,(431)490-5594x23165,3563622592783074,2024-06-21 +City Hotel,1,54,2017,October,40,2,1,2,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,133.66,0,1,Check-Out,Philip Peterson,angelareid@example.net,538-590-7499x78531,4163749779004099,2025-04-09 +City Hotel,0,13,2017,May,20,13,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Group,84.53,0,1,Check-Out,Alexis Maxwell,laurenbailey@example.org,863.669.5813,30488620752114,2024-07-14 +Resort Hotel,1,302,2017,September,37,13,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,D,0,No Deposit,312.0,179.0,0,Transient-Party,83.76,0,0,Canceled,Tracy Avila,donaldwashington@example.com,001-634-273-8271x716,2241893743425475,2025-11-23 +City Hotel,1,1,2017,August,34,20,1,2,2,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,54.88,0,1,Canceled,Danielle Cole,glenhobbs@example.net,385-665-7453,4710822892256298,2025-09-21 +City Hotel,0,1,2017,October,41,8,1,0,1,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,4.01,0,0,Check-Out,Erin Ross,antonio46@example.org,456-631-4302x719,2720587894558544,2024-08-19 +City Hotel,0,0,2017,January,4,23,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,132.64,0,1,Check-Out,Todd White,hillleslie@example.org,001-861-467-4524,3564028226150905,2025-11-04 +City Hotel,0,2,2017,July,27,4,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,163.54,0,1,Check-Out,Kenneth Kim,qjimenez@example.org,934.543.0704x34688,4905007559779901440,2025-07-02 +Resort Hotel,1,168,2017,March,10,2,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,133.0,179.0,0,Transient,62.89,0,0,Canceled,Stephen Simpson,henrysamuel@example.org,418.415.7916x15873,4351091814021676595,2025-07-11 +Resort Hotel,0,38,2017,March,11,14,2,5,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,157.0,179.0,0,Transient-Party,45.63,0,0,Check-Out,Jonathan Erickson,riddlemelissa@example.org,(415)623-0871x827,4272436258431948,2025-09-22 +City Hotel,1,51,2017,June,24,12,0,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.88,0,0,Canceled,Matthew Wang,nwilliams@example.org,5522885522,5589993387365228,2025-05-06 +City Hotel,1,39,2017,March,12,24,2,4,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,104.06,0,1,Canceled,Alexandra Duffy,mmitchell@example.com,314.889.9772x72849,30170556973571,2026-02-15 +Resort Hotel,0,26,2017,October,41,13,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,F,0,No Deposit,242.0,179.0,0,Transient,101.27,1,0,Check-Out,Julie Barton,cody85@example.com,001-942-695-1448x6789,2243170354361143,2026-01-28 +City Hotel,1,156,2017,August,35,30,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,166.22,0,2,No-Show,Carly Griffin,fromero@example.com,(439)392-8593,3505515106152797,2024-08-15 +Resort Hotel,1,0,2017,August,32,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,158.0,179.0,0,Transient-Party,190.56,0,0,Canceled,David Fernandez,tony06@example.org,586-645-0076x0203,503859059225,2024-04-02 +City Hotel,1,0,2017,August,31,4,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,14.0,179.0,0,Transient,127.03,0,0,Canceled,Bridget Harrell,michaelmitchell@example.org,551.735.9999,3557190123691198,2025-08-12 +Resort Hotel,0,1,2017,March,13,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,1,No Deposit,17.0,66.0,0,Transient-Party,48.61,0,0,Check-Out,Samuel Gomez,uhawkins@example.org,001-794-676-4912x814,676382310784,2025-04-17 +Resort Hotel,0,18,2017,August,33,17,1,1,2,1.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,92.0,179.0,0,Transient-Party,102.51,0,0,Check-Out,Cynthia Curtis,jimmy49@example.org,(666)328-9479x1225,676252589707,2026-02-28 +Resort Hotel,1,14,2017,April,14,4,1,7,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,D,D,0,Non Refund,15.0,243.0,0,Transient,57.4,0,0,Canceled,Deborah Johnson,ruth91@example.com,(652)621-9248,6516788080119518,2025-03-09 +City Hotel,0,11,2017,October,41,14,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,167.0,179.0,0,Transient,52.16,1,1,Check-Out,Lisa Bates,pcochran@example.org,(576)210-2348x0317,180054276457321,2024-03-31 +City Hotel,1,87,2017,June,26,26,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,41.0,179.0,0,Transient,134.38,0,0,No-Show,Cynthia Stewart,kyle42@example.net,849.467.1477x4950,3557244885405568,2025-09-23 +Resort Hotel,0,321,2017,October,42,21,2,5,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,1,No Deposit,345.0,63.0,0,Transient-Party,45.86,0,0,Check-Out,Ryan Pratt,morgan95@example.net,(777)602-1444,4166871932427046,2025-11-21 +City Hotel,1,194,2017,May,21,24,0,1,1,0.0,0,BB,USA,Online TA,TA/TO,1,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.89,0,1,No-Show,Luis Cowan,brussell@example.net,(477)396-5501x8679,30350644772470,2024-05-03 +City Hotel,0,2,2017,October,42,15,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.85,0,3,Check-Out,Stephen Duran,hoffmanronald@example.org,9933150424,4800979676966038,2024-11-26 +City Hotel,0,145,2017,January,5,30,0,3,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.08,0,1,Check-Out,Jeff Warren,williamadams@example.com,(349)456-0454,345047633341321,2024-07-09 +Resort Hotel,0,0,2017,May,22,30,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,1,D,D,0,No Deposit,248.0,179.0,0,Transient,43.01,1,1,Check-Out,Stacy Harvey,smithsarah@example.org,(314)261-1990x540,4062863531493,2025-10-23 +Resort Hotel,0,31,2017,October,42,18,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,D,D,0,No Deposit,239.0,179.0,0,Contract,52.45,0,2,Check-Out,Makayla Williams,derrick20@example.com,626-905-0901x834,4982262999920812,2025-10-03 +City Hotel,0,14,2017,March,11,13,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.37,0,1,Check-Out,Jennifer Beasley,daniel24@example.com,(249)437-6898x9365,213131281566675,2025-06-05 +City Hotel,1,2,2017,August,33,17,2,5,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,50.41,0,1,Canceled,Teresa Thompson,scott37@example.org,001-654-689-6132,4802206874160745,2026-03-18 +Resort Hotel,0,0,2017,January,3,16,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,41.75,0,1,Check-Out,Jeffrey Marshall,madison81@example.com,404.898.2443x8510,4605372643488,2024-12-24 +Resort Hotel,0,10,2017,December,48,2,2,4,2,0.0,0,Undefined,,Online TA,TA/TO,0,0,0,H,G,2,No Deposit,240.0,179.0,0,Transient,112.99,0,2,Check-Out,Jeremy Bryant,danielthompson@example.com,311-458-5362x9258,376802099148046,2025-01-26 +Resort Hotel,0,286,2017,October,40,3,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,52.46,0,2,Check-Out,Dr. Bradley Small,adkinsgregory@example.org,757-949-0522x06792,4686122933224330438,2025-05-01 +City Hotel,0,15,2017,October,43,26,0,1,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,135.89,0,2,Check-Out,Stephen Moore,serranodavid@example.org,(879)554-5791x69835,6011722337861747,2026-02-27 +City Hotel,0,1,2017,August,32,10,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,106.13,1,0,Check-Out,Christine Randolph,zparker@example.com,(973)240-7478x5206,213113473334005,2024-05-16 +City Hotel,0,10,2017,October,41,11,0,2,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,23.0,179.0,0,Contract,102.82,0,0,Check-Out,Cynthia Rose,igonzalez@example.org,6999628808,676363358919,2026-01-07 +City Hotel,0,22,2017,September,39,24,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,64.99,0,1,Check-Out,Arthur Smith DDS,bryanmcclure@example.org,299-823-4357x839,343944424275217,2025-11-30 +City Hotel,1,146,2017,January,3,19,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,55.77,0,0,Canceled,Bernard Vazquez,brownrobert@example.org,001-732-513-7632x20760,2255685728237302,2024-12-24 +City Hotel,0,3,2017,June,24,16,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,140.18,1,1,Check-Out,Jeffery Camacho,agriffin@example.org,(387)526-1471x32902,180065560768157,2024-06-15 +City Hotel,0,0,2017,April,15,12,2,2,3,0.0,0,BB,CHN,Aviation,Corporate,0,0,0,D,D,0,No Deposit,15.0,152.0,0,Transient,54.96,0,0,Check-Out,Jessica Collins,valentinekendra@example.com,636.980.2059,4825119747687,2024-07-15 +City Hotel,0,139,2017,June,24,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,94.26,0,1,Check-Out,Jennifer Ramsey,shall@example.net,(937)545-9413,379513128806648,2025-08-31 +Resort Hotel,1,89,2017,June,23,5,2,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,I,0,No Deposit,242.0,179.0,0,Transient,3.34,0,0,Canceled,Laura Oconnor,ccarroll@example.com,921-399-7397x005,4194201854501071,2024-08-15 +City Hotel,0,58,2017,August,31,4,0,1,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,145.47,0,0,Check-Out,Thomas Jackson,brittanypeters@example.com,(926)449-6348x34843,6011201660380898,2025-06-23 +Resort Hotel,1,84,2017,March,12,20,1,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,113.68,0,0,Canceled,Kathryn White,cwilliams@example.net,+1-530-288-0632x84084,3571781199210988,2025-06-25 +Resort Hotel,0,94,2017,December,49,8,1,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,62.76,0,0,Check-Out,William Soto,davewarner@example.com,641-638-4621x84594,3538969347871031,2026-01-27 +Resort Hotel,1,136,2017,July,29,20,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,223.56,0,0,Canceled,Johnny Pearson,jklein@example.org,601-418-4556x381,36365282096663,2024-07-09 +City Hotel,1,18,2017,December,49,3,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,141.23,0,1,Canceled,Kristen Gonzales,srodriguez@example.net,(557)418-3978x88196,4300719244238,2026-02-12 +City Hotel,0,206,2017,August,35,27,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Contract,41.51,0,2,Check-Out,Mrs. Jenna Ramos,richard78@example.net,3807328976,5114370203692776,2024-11-12 +Resort Hotel,0,50,2017,April,14,4,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,310.0,179.0,0,Transient-Party,97.58,0,0,Check-Out,Kelly Duncan,christinafoster@example.com,+1-620-655-3128x5299,213180300774091,2025-01-22 +City Hotel,1,127,2017,July,30,24,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,124.44,0,2,Canceled,Charles Bryant,michaelmora@example.com,(467)665-6383,6011582337198494,2025-12-19 +City Hotel,0,89,2017,May,20,17,2,3,2,0.0,0,BB,DEU,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,82.59,0,3,Check-Out,Christopher Frye,bobrien@example.net,8543546609,4637327230038531,2024-05-09 +City Hotel,1,320,2017,August,33,14,0,2,1,0.0,0,BB,AUT,Online TA,TA/TO,0,1,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,65.0,0,1,Canceled,Linda Brown DVM,jeremylewis@example.org,(544)839-4396x346,4401368561530966590,2026-01-23 +City Hotel,1,81,2017,June,24,8,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,114.66,0,1,Canceled,Chelsea Blake,johnsonelizabeth@example.com,935-509-8018,4379834062675,2024-10-16 +City Hotel,0,79,2017,May,20,16,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.4,0,1,Check-Out,Jeremy King,varellano@example.com,204-773-4603x3167,180046027947592,2026-03-04 +Resort Hotel,0,153,2017,March,14,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,B,2,Refundable,16.0,222.0,0,Transient-Party,117.01,1,0,Check-Out,Zachary Mendoza,smithstephanie@example.com,398-415-1881x87340,4357237730028718,2025-06-16 +Resort Hotel,0,35,2017,November,48,28,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,101.96,0,1,Check-Out,Nicole Maynard,elozano@example.net,522.745.8522x30926,180056367710963,2024-12-11 +Resort Hotel,1,363,2017,October,41,14,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Contract,45.23,0,0,Canceled,Ernest Braun,ywatkins@example.net,461.266.0134x846,4157031812021,2024-11-20 +Resort Hotel,0,18,2017,March,14,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,243.0,179.0,0,Transient,43.55,0,1,Check-Out,Tiffany Grant,angela52@example.com,+1-920-275-4168x513,4879272137965062,2025-03-26 +City Hotel,0,35,2017,September,36,6,1,3,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient-Party,132.05,1,1,Check-Out,Felicia Wallace,ofreeman@example.net,001-735-574-9964,3563009304147956,2025-04-28 +City Hotel,0,16,2017,August,36,31,1,1,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,252.0,0,1,Check-Out,Tracy Hayes,rodriguezsherry@example.com,+1-501-676-7864x45371,3526330397268293,2024-06-06 +City Hotel,0,61,2017,August,31,4,0,5,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,81.91,0,0,Check-Out,Jesus Delgado,kshaffer@example.net,396.614.5225,180054890628786,2025-10-31 +City Hotel,0,20,2017,October,40,5,0,4,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,13.0,179.0,0,Transient-Party,46.53,1,1,Check-Out,Lisa Serrano,heather99@example.net,+1-785-779-1291x711,4678327594130,2025-01-07 +Resort Hotel,0,46,2017,August,33,15,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Check-Out,Brent Abbott,lmcdaniel@example.net,4629564099,3599315037983999,2025-10-25 +Resort Hotel,0,13,2017,November,46,13,1,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,212.0,0,Transient,80.67,0,0,Check-Out,Elizabeth Sanchez,devin20@example.org,001-885-493-4573x94838,4164834961727951,2024-05-24 +City Hotel,1,155,2017,August,32,7,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,211.02,0,2,Canceled,James Phillips,robertthompson@example.org,228-326-2598x1393,4389687863492015080,2024-12-02 +City Hotel,1,0,2017,November,46,13,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient-Party,3.15,0,0,Canceled,William Wyatt,gonzaleschristopher@example.net,6799299920,4824834234760685624,2025-06-20 +Resort Hotel,1,56,2017,October,40,6,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,107.91,0,1,Canceled,Danielle Benson,traci42@example.com,(760)691-0912,4139525394609392,2025-11-06 +Resort Hotel,0,143,2017,January,2,4,1,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,30.0,179.0,0,Transient,40.18,1,1,Check-Out,Misty Thompson,audrey02@example.com,001-782-641-5458x18665,2412687026468795,2024-10-25 +Resort Hotel,0,54,2017,September,38,20,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,86.84,0,2,Check-Out,Amanda Martin,aaronlewis@example.org,+1-467-516-6684x765,675931329881,2024-09-07 +Resort Hotel,1,96,2017,December,49,8,1,4,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,132.28,0,0,Canceled,Melissa Hayes,louishughes@example.net,399-345-3702,4482130141223317,2024-06-11 +City Hotel,0,117,2017,March,10,3,1,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,222.0,0,Transient-Party,87.32,0,2,Check-Out,Linda Carter,stephaniemills@example.com,576.340.5536x02614,6011906938750405,2025-11-13 +Resort Hotel,0,49,2017,July,28,13,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,213.26,0,1,Check-Out,Lisa Sweeney,josephcordova@example.org,503.783.1636x80674,370686803990710,2025-09-14 +City Hotel,1,147,2017,March,12,17,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,129.0,179.0,0,Transient,73.49,0,0,Canceled,Nicole Ruiz,penny45@example.com,448.659.7726,30098165663335,2025-07-25 +Resort Hotel,0,43,2017,April,15,7,2,3,2,1.0,0,Undefined,GBR,Direct,Direct,0,0,0,C,C,1,No Deposit,16.0,179.0,0,Transient,215.0,0,0,Check-Out,Michael Castillo,lopezsteven@example.com,001-328-430-1358x91696,4503231728918686,2024-04-23 +Resort Hotel,1,49,2017,July,28,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,242.0,179.0,0,Transient,159.92,0,1,Canceled,Joseph Swanson,zdavis@example.net,807-971-6609x43574,5432330097991440,2026-03-13 +Resort Hotel,1,230,2017,July,30,22,2,5,2,0.0,0,FB,AUT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,130.0,0,3,Canceled,Craig Williams,simmonsteresa@example.net,7273620154,38976736990687,2025-08-28 +City Hotel,0,35,2017,August,35,30,0,1,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,133.18,0,0,Check-Out,Rebecca Robinson,mckenziekatie@example.com,296-259-3180x5585,3581130146441809,2025-02-03 +City Hotel,1,414,2017,August,32,10,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,F,0,No Deposit,1.0,179.0,0,Transient,202.35,0,0,Canceled,James Rocha,dgreen@example.org,(381)282-3882x68806,3502773578061466,2025-06-15 +City Hotel,0,2,2017,April,14,5,1,3,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,B,B,1,No Deposit,13.0,179.0,0,Transient,208.19,0,0,Check-Out,James Ruiz,astanley@example.org,+1-515-722-7163x598,3522422809151250,2025-12-01 +Resort Hotel,0,1,2017,April,14,4,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,16.0,66.0,0,Transient-Party,37.5,0,0,Check-Out,Melissa Lucero,kendraochoa@example.com,950-572-8781x2893,4374441756066,2024-08-23 +Resort Hotel,1,190,2017,August,33,11,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,239.0,179.0,0,Transient,217.71,0,0,Canceled,Jonathan Young,david54@example.net,001-219-901-4058x407,30331009267223,2024-08-08 +City Hotel,1,149,2017,August,31,3,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,A,0,No Deposit,101.0,179.0,0,Transient,131.62,0,0,No-Show,Sandra Bird,weaverstephanie@example.com,(383)902-5619x44233,4680460543180694,2024-10-16 +City Hotel,0,36,2017,March,12,19,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,1,No Deposit,16.0,179.0,0,Group,113.31,0,1,Check-Out,Eric Riley,wbruce@example.org,510-430-2966,180095613835703,2025-12-12 +Resort Hotel,1,57,2017,May,18,3,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,85.0,0,Transient,44.24,0,1,Canceled,Amanda Powell,wfoster@example.net,001-987-244-9771x14586,180027806450610,2024-07-11 +City Hotel,1,33,2017,June,23,9,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,137.11,0,0,Canceled,Nicole Bowers,vincent70@example.net,+1-728-416-4666,4545552458455437,2025-09-07 +City Hotel,0,263,2017,October,41,9,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,270.0,179.0,0,Transient-Party,103.91,0,0,Check-Out,Pam Cunningham,fchase@example.com,514-236-2161x3251,3553596039332707,2025-03-30 +City Hotel,1,36,2017,April,16,19,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.57,0,1,Canceled,Jamie Mckinney,ytrevino@example.org,001-683-250-8839x0664,4360556707404668,2024-12-29 +City Hotel,1,17,2017,November,46,9,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.6,0,0,Canceled,Charles Gay,mdrake@example.org,001-830-486-9118x5596,4416503770061,2025-10-13 +Resort Hotel,0,230,2017,August,32,5,1,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,97.0,179.0,0,Transient,217.83,0,0,Check-Out,Luis Shields,kenneth09@example.com,247-239-3505,30137799310580,2026-02-10 +City Hotel,0,108,2017,July,27,1,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,162.0,179.0,0,Transient,75.94,1,2,Check-Out,Ann Gallegos,arush@example.net,001-849-331-1560x971,3513797817347250,2025-07-11 +Resort Hotel,0,16,2017,April,17,25,4,10,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,105.84,1,1,Check-Out,Dennis Lewis,stephanie92@example.net,5316218761,213146449424245,2025-06-08 +Resort Hotel,0,12,2017,December,49,3,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient,69.44,1,1,Check-Out,Lydia Williams,vramsey@example.com,3584307214,4472835487510,2024-04-01 +City Hotel,0,13,2017,March,12,20,0,2,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,102.29,0,1,Check-Out,Karen Yoder,sberg@example.org,9569847570,4412260147007704981,2024-05-27 +City Hotel,0,69,2017,August,33,15,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.23,0,1,Check-Out,Kent Clark,kellywagner@example.net,660.528.2504x75138,6596794001712657,2025-06-19 +City Hotel,0,205,2017,September,37,12,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,226.79,0,0,Check-Out,Shaun Davis,jenniferwalker@example.com,685-360-2433,6011589904520836,2024-05-27 +City Hotel,0,156,2017,June,23,2,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,145.69,0,2,Check-Out,Cindy Hernandez,rachel52@example.org,(668)835-2955,4754409069333493,2025-11-17 +City Hotel,1,101,2017,September,37,12,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,188.83,0,0,Canceled,Kathy Matthews,maria54@example.com,001-655-516-1274x3884,4485851546724502035,2024-12-06 +City Hotel,0,24,2017,February,5,2,1,0,2,1.0,0,SC,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,71.54,0,1,Check-Out,Linda Flowers,kelli97@example.net,001-831-654-4694x2250,060494180148,2025-10-03 +City Hotel,1,38,2017,May,18,5,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.7,0,0,Canceled,Jacob Smith,alyssa84@example.org,2057709854,4887581893528257158,2026-01-01 +City Hotel,0,26,2017,August,32,10,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,158.0,179.0,0,Transient-Party,120.65,0,0,Check-Out,Phyllis Bray,mlawson@example.net,+1-716-741-2402,675965864514,2025-07-10 +City Hotel,0,48,2017,May,18,5,0,4,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,107.56,0,2,Check-Out,Teresa Henry,erikaortiz@example.net,965.585.4653,675970723333,2024-12-13 +City Hotel,0,51,2017,October,44,28,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,219.5,0,1,Check-Out,Jeffrey Huerta,icastillo@example.net,+1-692-741-6473x71573,060455006167,2024-05-31 +Resort Hotel,1,164,2017,June,26,27,1,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,99.64,1,0,Canceled,Mark Price,markhernandez@example.org,(257)272-5488,3517449500006712,2026-02-12 +Resort Hotel,0,13,2017,October,41,13,0,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,220.0,0,Transient,50.64,0,0,Check-Out,David Collins,steven73@example.com,716-567-5511,4181361529260,2025-12-23 +Resort Hotel,1,55,2017,March,13,26,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,243.0,179.0,0,Transient,133.11,1,1,Check-Out,Amanda Lin,smithjoseph@example.com,001-713-961-1386,3551404672670826,2024-07-31 +Resort Hotel,0,153,2017,March,14,30,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,47.33,0,0,Check-Out,William Nelson,nancy47@example.org,(620)685-5313,4990166158979156,2024-11-05 +City Hotel,0,76,2017,March,9,2,0,2,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,129.36,1,0,Check-Out,Alan Lara,turnerdenise@example.com,827.986.5051,4884370111570,2024-05-19 +City Hotel,0,0,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,2,No Deposit,14.0,163.0,0,Transient,90.09,0,0,Check-Out,Bailey Booth,ashley73@example.net,(887)249-8099x3491,4146649711729570222,2024-05-01 +City Hotel,0,14,2017,March,13,25,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Contract,50.9,0,0,Check-Out,Thomas Butler,robert81@example.com,+1-379-998-6969x82516,4719900851524082631,2025-08-15 +City Hotel,1,372,2017,September,37,15,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,61.0,179.0,0,Transient-Party,123.91,0,0,Canceled,Katherine Gonzalez,lewislaura@example.net,460-907-6403x828,4673140106896139,2024-07-28 +Resort Hotel,0,1,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,243.0,71.0,0,Transient,56.1,1,0,Check-Out,Stephen Wilson,zmills@example.com,8398408380,4722852673438,2025-01-15 +City Hotel,0,96,2017,December,2,31,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,88.09,0,1,Check-Out,Mrs. Evelyn Welch,nicholas38@example.net,740.489.6936,180042061208504,2025-12-07 +Resort Hotel,1,37,2017,September,38,23,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,314.0,179.0,0,Transient,74.84,0,0,Canceled,Lisa Lane,torresraymond@example.net,850-990-4736,4772099354174484,2024-07-11 +City Hotel,0,30,2017,March,13,30,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.59,0,2,Check-Out,Kara Moss,smithcynthia@example.net,+1-460-413-1942x1016,2260616483539254,2025-11-09 +City Hotel,0,306,2017,April,17,21,2,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.69,0,2,Check-Out,James Esparza,amanda44@example.net,001-744-916-7586x9079,4925783672672,2024-10-09 +Resort Hotel,0,188,2017,August,35,29,2,5,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,3.02,0,1,Check-Out,Rebecca Williams,danielcarpenter@example.net,431.750.5488x4364,6546005912758395,2024-10-01 +City Hotel,1,39,2017,August,32,5,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,214.43,0,0,Canceled,Cynthia Carter,pkoch@example.org,326.270.6872,3548833673167042,2024-11-29 +Resort Hotel,0,81,2017,July,30,23,1,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,140.22,0,0,Check-Out,Jason Best MD,coreymorse@example.net,+1-634-327-5639x7160,3534092285310088,2025-04-19 +Resort Hotel,1,221,2017,November,44,1,0,6,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,H,0,No Deposit,247.0,179.0,0,Transient,83.84,0,0,Canceled,Ryan Richardson,robert56@example.com,+1-623-925-3697x3201,3534232214405225,2025-11-25 +Resort Hotel,0,16,2017,November,46,14,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,48.19,0,1,Check-Out,Kimberly Harris,htorres@example.com,354-315-3444x489,30156603689633,2024-06-06 +City Hotel,0,162,2017,September,39,26,2,5,1,0.0,0,BB,AUT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,11.0,165.0,0,Transient,113.56,0,0,Check-Out,Steven Branch,dmack@example.org,+1-346-778-2052x0014,676258194379,2025-01-19 +Resort Hotel,0,88,2017,March,13,26,1,3,2,0.0,0,FB,BEL,Direct,Direct,0,0,0,G,C,1,No Deposit,14.0,179.0,0,Transient,130.85,0,3,Check-Out,Victoria Fisher,maria01@example.net,(667)493-6321x4518,374806162474025,2025-01-10 +Resort Hotel,0,101,2017,June,25,23,1,3,2,2.0,0,BB,BEL,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,140.11,1,0,Check-Out,Ashley Miller,hernandezteresa@example.com,001-757-286-0220x3171,213161273336340,2026-01-30 +City Hotel,1,215,2017,August,35,31,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,244.0,179.0,0,Transient,216.87,0,3,Canceled,Samantha Robinson,bclark@example.net,+1-514-237-2208x544,3586994508786662,2024-06-27 +City Hotel,0,9,2017,July,30,25,0,1,3,1.0,0,BB,FRA,Direct,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,234.5,0,1,Check-Out,Alicia Cruz,wlowe@example.com,(927)205-7585x05471,348160252408748,2024-10-09 +City Hotel,0,61,2017,October,41,9,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.97,0,0,Check-Out,Edwin Welch,patrick10@example.net,+1-849-781-5357x68778,3524600128272018,2024-05-02 +City Hotel,0,2,2017,August,34,24,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,F,0,No Deposit,15.0,179.0,0,Transient-Party,232.41,0,0,Check-Out,Miss Stephanie Vasquez,sethbright@example.com,(844)693-5299x287,375600718916053,2024-05-17 +Resort Hotel,0,175,2017,March,10,7,0,5,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient,51.51,0,0,Check-Out,Aaron Silva,vaughangary@example.net,521.933.9157,180026183428009,2025-07-30 +City Hotel,1,156,2017,August,34,25,2,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,80.28,0,2,No-Show,Bruce Gonzalez,david63@example.net,001-694-439-4631,3574865458991714,2026-03-24 +City Hotel,1,329,2017,June,25,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,124.9,0,0,Canceled,Mark Villegas,danielle45@example.com,+1-304-244-6726x268,343324646092551,2025-10-10 +City Hotel,0,92,2017,April,17,27,1,1,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Transient,112.19,1,1,Check-Out,Daniel Bauer,zmack@example.org,001-695-702-4448x961,4316306664419691381,2024-04-24 +Resort Hotel,0,165,2017,December,49,8,0,4,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,C,1,Refundable,13.0,222.0,0,Transient-Party,61.91,0,0,Check-Out,Jeffrey Thompson,arnoldjessica@example.org,(549)560-4895x0934,376889809563705,2025-05-12 +City Hotel,1,37,2017,December,48,1,0,3,2,0.0,0,FB,PRT,Offline TA/TO,GDS,0,0,0,E,A,0,Non Refund,181.0,179.0,0,Transient,98.4,0,0,Canceled,William Castro,hernandezlisa@example.com,585-589-9190x009,4189934862105381090,2024-08-13 +Resort Hotel,0,59,2017,July,31,30,1,5,2,0.0,0,HB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,238.91,0,2,Check-Out,Kristina Burch,sarah46@example.com,001-398-992-7522x37001,3551223952090103,2025-02-10 +Resort Hotel,0,2,2017,January,3,14,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,40.91,1,1,Check-Out,Kimberly Lin,lewisstephanie@example.org,001-208-456-0280x6002,060401040773,2024-09-07 +Resort Hotel,0,36,2017,September,38,18,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,41.09,0,0,Check-Out,Kyle Williams,terri18@example.org,707-736-4642x04484,3560947664069752,2025-01-10 +City Hotel,0,91,2017,December,52,29,2,4,2,1.0,0,BB,DEU,Direct,TA/TO,0,0,0,G,A,1,No Deposit,12.0,179.0,0,Transient,137.17,1,2,Check-Out,Juan Haynes,cohenjamie@example.com,+1-529-630-5996x2215,4403781273756379,2025-03-02 +City Hotel,1,34,2017,June,26,24,0,4,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,80.66,0,0,Canceled,William Davis,michelelin@example.org,2592794605,2273245249119758,2024-09-23 +Resort Hotel,0,67,2017,July,30,27,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,242.0,179.0,0,Transient-Party,87.58,0,1,Check-Out,Nicholas Martin,barkernicole@example.com,219-698-1158,4763779066648559,2025-02-01 +City Hotel,0,59,2017,September,38,16,0,1,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,234.23,0,0,Check-Out,Ryan Mcclain,pamela52@example.com,419-243-7042x11583,639094610412,2024-05-02 +Resort Hotel,0,12,2017,August,33,13,0,2,3,1.0,0,BB,,Direct,Direct,0,0,0,H,H,1,No Deposit,247.0,179.0,0,Transient,216.06,1,0,Check-Out,Joanna Mcguire,brittneyfigueroa@example.com,806-313-3662x271,3522640997297698,2026-03-07 +Resort Hotel,1,184,2017,June,26,26,2,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,239.0,179.0,0,Transient,252.0,1,2,Canceled,Donna Miller,benjamin24@example.com,001-762-414-7754x07529,30352258711356,2025-08-23 +Resort Hotel,0,1,2017,March,14,30,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,13.0,179.0,75,Transient-Party,161.61,1,3,Check-Out,Christine Gonzalez,skelly@example.org,(838)255-2590x73697,30351825152797,2025-08-18 +Resort Hotel,0,100,2017,March,11,9,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,224.0,0,Transient-Party,39.41,0,2,Check-Out,Aaron Palmer,bsanchez@example.net,(923)702-2589x1058,4884744253455857,2024-11-27 +City Hotel,0,102,2017,May,21,21,2,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,314.0,179.0,0,Transient,74.52,0,0,Check-Out,Angel Sanders,saundersamber@example.net,(630)830-4194x7052,30387182028329,2025-06-24 +Resort Hotel,0,2,2017,November,47,23,2,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,0,No Deposit,326.0,179.0,0,Group,51.06,0,1,Check-Out,Kathleen Mcdaniel,mhunter@example.org,(861)673-8399,2221786885395965,2024-11-02 +City Hotel,1,16,2017,November,46,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.75,0,0,Canceled,Megan Ward,jamesfranklin@example.org,+1-487-596-3953x1635,5440956797406014,2024-11-09 +City Hotel,0,16,2017,August,32,9,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,176.49,0,1,Check-Out,Jordan Wall,danielzuniga@example.org,(543)270-9841x30534,4596546921582155,2024-06-14 +City Hotel,1,101,2017,June,23,4,0,1,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,144.46,0,2,Canceled,Sarah Gray,debbiecline@example.net,+1-636-945-9738x39472,36772733507661,2025-08-03 +City Hotel,0,0,2017,October,43,23,1,0,1,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,A,B,0,No Deposit,15.0,331.0,0,Transient,33.95,0,0,Check-Out,Amanda Neal,kristingonzales@example.org,321-416-6585,4237022658862,2024-10-01 +City Hotel,1,36,2017,March,10,3,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,95.71,0,0,Canceled,David Lawrence,justinflowers@example.com,(580)675-6543x9711,3540365899545360,2025-08-06 +City Hotel,1,162,2017,March,12,19,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,11.0,179.0,0,Transient,86.86,0,1,Canceled,Ricky Rhodes,debbiegonzalez@example.org,+1-459-767-3669x59723,4476464572851744,2024-09-01 +City Hotel,1,49,2017,May,22,27,1,2,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,153.52,0,0,Check-Out,Victoria Nguyen,fdavidson@example.com,(910)207-8128,3508594503711569,2024-11-18 +City Hotel,0,20,2017,November,45,6,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.07,0,0,Check-Out,Kimberly Walters,loricox@example.com,609-506-6320,372266484340069,2025-10-21 +Resort Hotel,1,43,2017,January,2,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,26.0,179.0,0,Contract,43.15,0,0,Canceled,Dr. Lee Fuentes,johnsonmonica@example.net,9408368068,2706957092723356,2024-12-28 +Resort Hotel,1,109,2017,June,24,8,2,4,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,179.0,0,Transient,81.55,0,0,Canceled,Cheryl Johnson,abigailpatel@example.com,+1-299-615-1243x49529,3570593280820885,2025-03-05 +City Hotel,1,106,2017,August,32,5,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.99,0,0,Canceled,Daniel Miller,goldenstephanie@example.com,377.515.1937x8968,4853748678534268,2024-11-17 +Resort Hotel,1,159,2017,October,43,24,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,134.1,0,2,Canceled,Walter Tyler,melissaweber@example.org,001-259-680-3185,30444701679163,2024-10-02 +City Hotel,1,47,2017,June,25,20,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,131.42,0,0,Canceled,Marvin Torres,nicholas99@example.com,+1-974-886-9243x8378,30568019855394,2025-11-02 +City Hotel,0,100,2017,June,23,5,1,2,2,0.0,0,SC,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.73,0,1,Check-Out,Michael Bryant,cherylbooker@example.net,863.916.5948x88356,6011458067578744,2026-01-05 +City Hotel,0,12,2017,September,36,8,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,39.86,0,2,Check-Out,Theresa Jones,cooleyalexis@example.com,392.757.8481,3524737131298018,2026-02-28 +City Hotel,0,114,2017,December,48,2,1,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,62.37,0,0,Check-Out,William Sharp,ralph11@example.org,877-569-0084,2503914168059996,2025-06-07 +City Hotel,1,1,2017,February,8,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,15.0,45.0,0,Transient-Party,66.55,0,2,No-Show,Matthew Glass,lori12@example.org,+1-905-685-3115x63794,3549367219321614,2025-02-24 +City Hotel,1,4,2017,June,24,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,139.18,0,1,No-Show,Anthony Jones,joseph09@example.net,202-757-5386x538,4841204616573450,2024-12-27 +Resort Hotel,0,19,2017,August,33,11,2,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,167.76,0,2,Check-Out,Michael Mckinney,kelly04@example.net,651.378.5451,343512961851193,2025-10-20 +Resort Hotel,1,290,2017,May,22,30,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,42.55,0,0,Canceled,Shawn Smith,gonzalezcorey@example.com,+1-466-212-9002x565,180067488455586,2025-03-01 +Resort Hotel,0,19,2017,December,50,14,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,61.0,0,Transient-Party,49.01,0,0,Check-Out,Kayla Howard,howellmelissa@example.net,5496823371,3583607330901050,2025-09-14 +Resort Hotel,0,10,2017,July,27,5,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,225.78,1,0,Check-Out,Ashley Jefferson,kimberlyrose@example.com,(684)845-3815,6503574448816804,2024-05-15 +Resort Hotel,0,11,2017,March,10,6,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,16.0,198.0,0,Transient-Party,49.44,0,0,Check-Out,Brandy Lee,christopher03@example.com,556.467.2185x5503,6011097220052377,2025-03-15 +Resort Hotel,1,45,2017,March,10,8,2,2,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,E,E,1,No Deposit,246.0,179.0,0,Transient,0.55,1,1,Check-Out,Timothy Smith,lindsay19@example.org,(492)366-8173,346154559057029,2024-11-04 +City Hotel,0,2,2017,August,34,20,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,137.81,0,0,Check-Out,Diane Nguyen,charlesromero@example.org,001-224-861-4986x4629,213193736391786,2024-10-07 +City Hotel,0,6,2017,April,17,24,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,160.27,1,1,Check-Out,Stephen Lyons,fsmith@example.net,981-669-5754x33341,3581230243987637,2024-09-07 +City Hotel,0,20,2017,September,38,23,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,15.0,220.0,0,Transient-Party,90.34,0,0,Check-Out,Frank Ward,awaters@example.org,001-486-825-8688,6011896854771859,2025-05-12 +City Hotel,1,39,2017,May,22,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,137.17,0,1,Canceled,Derrick Zuniga,kevinmartin@example.net,(300)378-6972,213136039254094,2024-05-02 +Resort Hotel,1,3,2017,December,51,22,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,D,E,0,No Deposit,239.0,179.0,0,Transient,117.78,0,1,Canceled,Michelle Schwartz,jessicaolsen@example.com,001-249-497-4811x517,4885148877406198,2024-06-25 +City Hotel,1,22,2017,November,46,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,11.0,239.0,0,Transient-Party,72.15,0,0,No-Show,Kristy Griffin,crystal37@example.com,814-700-7359x9894,676329294265,2025-03-22 +City Hotel,1,47,2017,December,49,6,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,93.91,0,0,Canceled,Ryan Salazar,frederickcarlson@example.com,432-283-8021,503856432045,2026-01-27 +City Hotel,0,163,2017,August,32,4,2,7,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient,109.79,0,2,Check-Out,Barbara Thomas,kirbymichael@example.com,+1-391-994-6927,3512542577522986,2025-01-23 +City Hotel,1,101,2017,June,26,27,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,142.9,0,0,Canceled,Jon Reynolds,brettrobinson@example.net,001-797-642-5490x6403,371840777811944,2024-09-30 +Resort Hotel,1,0,2017,May,18,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,65.0,0,2,Canceled,Stephen Parker,stevenrodriguez@example.net,848-629-2824x707,3548202229490193,2026-03-07 +Resort Hotel,0,13,2017,December,48,1,2,4,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,109.02,1,2,Check-Out,Brooke Christensen,sarroyo@example.net,914-680-8643x831,3517082054016140,2024-10-11 +City Hotel,0,2,2017,December,49,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,92.25,0,1,Check-Out,Jared Cooper,andrewsjustin@example.org,(525)216-7553,4886428254757,2024-07-16 +City Hotel,0,66,2017,April,17,20,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,26.0,179.0,0,Transient,164.97,0,0,Check-Out,Tara Jenkins,dianashah@example.com,842-888-8591x580,180091110929024,2026-01-21 +City Hotel,0,4,2017,July,28,12,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient-Party,119.46,0,0,Check-Out,Caleb Meyers,holson@example.org,001-385-281-9078,3596151551183291,2025-02-11 +City Hotel,0,16,2017,October,43,23,1,0,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Miguel Evans,timothy44@example.com,468.555.8328x8198,348249807923002,2024-05-02 +Resort Hotel,0,0,2017,January,2,3,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,56.43,0,1,Check-Out,Michael Walsh,jeffreymyers@example.com,(435)805-4245,4530415879993914272,2024-06-02 +City Hotel,0,42,2017,October,40,6,2,5,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,92.79,0,1,Check-Out,Austin Mckinney,apatton@example.net,+1-210-618-0727x11223,676310759300,2024-11-20 +City Hotel,0,16,2017,August,32,10,2,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,153.92,0,0,Check-Out,Michael Martinez,joshua94@example.org,+1-349-632-8130x383,6011115956248264,2024-11-09 +City Hotel,1,52,2017,January,4,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,104.66,0,1,Canceled,Roger Rogers,christina22@example.com,001-548-726-9608x2655,3576006857430891,2025-05-19 +City Hotel,1,2,2017,March,9,1,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.91,0,0,Canceled,William Santos,schmittdenise@example.org,001-959-972-8210x98531,4686699683456,2025-11-15 +City Hotel,0,41,2017,December,49,5,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.92,0,2,Check-Out,Chelsea Kelley,perezphillip@example.net,+1-571-380-8129x089,4307936252053829,2024-11-12 +City Hotel,0,16,2017,September,36,7,2,3,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,113.49,0,0,Check-Out,Victoria Lee,johnmays@example.org,(811)466-5353x496,3507663739496773,2024-05-18 +Resort Hotel,0,125,2017,March,11,13,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,0,No Deposit,245.0,179.0,0,Transient,31.11,1,3,Check-Out,Ariana Allen,jenniferbaker@example.net,+1-232-631-4002,2338903658629435,2024-11-16 +Resort Hotel,0,1,2017,August,33,13,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,1,1,F,D,0,No Deposit,237.0,179.0,0,Transient-Party,63.35,0,1,Check-Out,Steven Thompson,meyersjoshua@example.org,360-694-6436,4878835864220436765,2024-04-13 +Resort Hotel,1,142,2017,August,31,5,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,230.76,0,2,Canceled,Nicole Baker,zacharydorsey@example.com,265.714.3034x445,4455827128079942,2026-02-21 +City Hotel,0,0,2017,February,8,21,1,1,1,0.0,0,BB,,Online TA,TA/TO,1,0,1,A,D,0,No Deposit,8.0,179.0,0,Transient,38.89,0,1,Check-Out,Amy Jarvis,traceydaniels@example.net,001-726-974-8296x861,5434982320812427,2024-10-06 +Resort Hotel,0,18,2017,April,17,26,2,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,47.06,0,0,Check-Out,Whitney Cross,amber55@example.net,+1-611-799-0227x3167,180005077272624,2024-11-02 +Resort Hotel,0,38,2017,September,36,8,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,244.0,179.0,0,Transient,171.25,0,0,Check-Out,Alexis Cross,obrienlaura@example.com,888-868-4606,3589549610781170,2024-07-21 +Resort Hotel,1,272,2017,October,43,24,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,286.0,179.0,75,Contract,83.4,0,0,Canceled,Lucas Berger,obeasley@example.org,001-605-728-5431x83232,4166721305469,2024-04-07 +City Hotel,0,25,2017,March,14,31,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,105.9,0,1,Check-Out,Debra Warren,tara17@example.com,222.526.9522x8286,3526716949816953,2025-03-25 +City Hotel,1,75,2017,July,27,4,0,4,2,0.0,0,Undefined,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient,82.01,0,1,Canceled,Joshua Sanders,isanchez@example.net,612-618-7695x1110,3527293633965800,2024-04-12 +City Hotel,1,198,2017,August,32,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,B,0,No Deposit,13.0,179.0,0,Transient,196.71,0,3,Canceled,Jeremy White,jacqueline72@example.com,(269)378-1545,6011749768310498,2025-02-26 +City Hotel,0,0,2017,December,51,22,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,2,No Deposit,17.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Jonathan Lopez,michael32@example.net,+1-531-540-6213,2530107450166770,2024-10-22 +Resort Hotel,0,145,2017,August,32,9,2,4,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,247.0,179.0,0,Transient,165.42,0,0,Check-Out,Tim Ashley,samantha72@example.net,(850)323-9124,3506902236754354,2024-07-18 +Resort Hotel,1,48,2017,September,37,12,2,2,2,0.0,0,BB,PRT,Online TA,GDS,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,117.67,0,1,No-Show,Jacqueline Miller,lauriegray@example.net,244-316-9845x1406,344347929212769,2024-05-20 +Resort Hotel,1,126,2017,August,32,5,1,4,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,236.0,179.0,0,Transient,235.58,0,0,Canceled,Hannah Murray,fergusonmichael@example.net,+1-338-846-7474,3524963171761414,2025-11-30 +City Hotel,0,34,2017,March,10,4,2,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,117.67,0,1,Check-Out,Katrina Hood,conradpaul@example.net,001-532-508-9961x851,4526630070077319,2024-06-12 +City Hotel,0,9,2017,March,11,9,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.27,0,1,Canceled,Jacqueline Rogers,melodywhitney@example.org,782.502.2034x615,4530848101800913,2025-11-16 +City Hotel,0,10,2017,March,14,30,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,16.0,45.0,0,Transient,49.57,0,0,Check-Out,Leslie Robbins,udunn@example.com,3557712622,6593100380154649,2024-07-08 +Resort Hotel,0,1,2017,August,34,25,2,3,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,204.29,0,1,Check-Out,Carol Coleman,robertsgary@example.com,(501)850-2770,6011527951768080,2025-01-15 +City Hotel,0,44,2017,March,12,20,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,245.0,179.0,0,Transient,88.83,1,1,Check-Out,Evan Taylor,tonicampbell@example.net,603-432-7495x744,4652544985892900,2024-12-01 +City Hotel,0,38,2017,July,27,3,1,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.72,0,2,Check-Out,Mr. Eric Baker,ncastaneda@example.net,(955)696-3913x30756,213183703967080,2024-06-17 +City Hotel,1,11,2017,November,46,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient-Party,80.86,0,0,Canceled,Tammy Santiago,ericalewis@example.net,202.778.1559,4650629849652,2024-07-14 +Resort Hotel,0,4,2017,March,12,21,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,C,0,No Deposit,12.0,78.0,0,Transient,0.5099000000000001,1,0,Check-Out,Amy Martin,markchambers@example.net,(263)822-5310x966,4899819820005543,2024-07-17 +City Hotel,0,233,2017,September,38,20,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,1,1,0,A,A,0,No Deposit,27.0,179.0,0,Contract,101.94,0,1,Check-Out,Lisa Schneider,michael03@example.net,645.554.0835x391,213179287327329,2025-03-14 +City Hotel,1,0,2017,April,14,6,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,133.93,0,2,Canceled,Christopher Edwards,jamesfowler@example.org,001-416-637-9162x62669,213150974060341,2025-03-30 +Resort Hotel,0,0,2017,December,52,26,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,84.13,0,0,Check-Out,Matthew Ball,mrobinson@example.com,(947)238-0208,639052267247,2024-07-14 +City Hotel,0,0,2017,October,40,5,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,172.62,0,1,Check-Out,Erik Rogers,ustephens@example.net,001-924-698-6242,2701691224302376,2025-08-29 +Resort Hotel,0,98,2017,December,50,12,1,2,2,0.0,0,HB,DEU,Groups,Corporate,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,107.12,0,0,Check-Out,Paul Huerta II,sjones@example.com,912-248-6716x2493,4324228193365960,2025-06-19 +City Hotel,1,15,2017,May,18,1,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,94.22,0,1,Canceled,Tyler Boyer,jeffrey15@example.org,+1-254-372-7539x197,3527402731087900,2026-01-21 +City Hotel,0,10,2017,February,8,23,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Transient,65.16,1,0,Check-Out,Jake Brown,daniellebyrd@example.org,+1-775-235-4764x3369,4452534953137,2024-08-31 +Resort Hotel,0,14,2017,July,30,26,3,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,293.0,179.0,0,Transient,144.91,0,3,Check-Out,Charles Horn,jeffrey43@example.net,342-521-0074,3582602621089674,2024-08-11 +Resort Hotel,0,146,2017,March,13,29,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,223.0,0,Transient-Party,76.86,0,0,Check-Out,Adrian Wilson,ryan95@example.net,+1-720-852-4845,30096347594113,2025-01-29 +City Hotel,1,213,2017,October,43,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,40,Transient,107.05,0,0,Canceled,Jeff Wall,qharris@example.com,507.833.7168x90844,379596545499071,2025-08-30 +Resort Hotel,1,12,2017,May,20,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,1,No Deposit,239.0,179.0,0,Transient,92.57,0,0,Canceled,Douglas Marshall,susanthomas@example.net,764.889.7665x5119,3540189540486927,2024-06-18 +Resort Hotel,0,146,2017,March,13,28,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,1,Refundable,15.0,223.0,0,Transient-Party,32.52,0,0,Check-Out,Michael Rhodes,williamsjulie@example.org,766.804.5065,3517702087205135,2024-08-28 +Resort Hotel,0,63,2017,August,32,11,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,251.0,179.0,0,Transient,252.0,0,1,Check-Out,Jacqueline Beck,rsweeney@example.net,+1-683-951-7339x23359,213108823456714,2024-08-25 +Resort Hotel,0,15,2017,May,22,27,0,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,82.58,1,1,Check-Out,Nancy Snow,kevin76@example.org,714.654.8360,6555116506852797,2025-04-21 +City Hotel,0,394,2017,August,32,11,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,96.26,0,0,Check-Out,Allison Guerrero,oskinner@example.com,(991)997-8784x9458,30499505563633,2025-05-26 +City Hotel,1,343,2017,September,38,18,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,41,Transient,107.05,0,0,Canceled,Patrick Elliott,bsummers@example.net,7945777942,6011888880085776,2024-09-19 +Resort Hotel,0,126,2017,May,21,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,312.0,179.0,0,Transient,46.59,0,0,Check-Out,Timothy Kennedy,cnorman@example.com,(539)786-2314x22484,3572668848363814,2025-09-23 +City Hotel,0,42,2017,December,2,30,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,22.0,179.0,0,Transient-Party,214.46,1,0,Check-Out,Tracy Zuniga,vsnyder@example.com,662-325-5685,4170489457964444,2025-12-31 +Resort Hotel,0,80,2017,July,29,19,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,46.55,0,1,Check-Out,Heather Powers,lfernandez@example.org,001-789-854-6321,3528049403282662,2024-09-03 +Resort Hotel,1,149,2017,August,31,1,4,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,235.14,0,1,Canceled,Richard Miller,shortjason@example.net,001-860-763-3636x63076,4833145723652630362,2024-06-28 +City Hotel,1,103,2017,July,28,12,1,3,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.1,0,1,Check-Out,Alan West,qconrad@example.net,+1-817-901-2080x19913,4483918733852,2025-12-30 +City Hotel,0,69,2017,September,37,12,1,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,142.69,0,2,Check-Out,Dylan Dean,jharris@example.org,6468089725,213170323927214,2025-06-25 +Resort Hotel,1,290,2017,July,28,12,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,C,F,1,No Deposit,265.0,179.0,0,Transient,184.37,0,0,Canceled,Michael Mann,brian80@example.org,+1-768-335-0797x2772,30343326762513,2025-10-05 +City Hotel,1,54,2017,August,33,15,4,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,133.08,0,2,Canceled,Karl Hunter,zimmermancrystal@example.com,+1-718-886-6079x816,180035051313599,2025-05-16 +Resort Hotel,0,0,2017,January,5,28,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,58.08,0,1,Check-Out,Jessica Bartlett,sdaniels@example.com,262.792.3718x326,6568749965691317,2026-03-02 +City Hotel,0,0,2017,July,29,16,1,0,1,0.0,0,BB,PRT,Groups,Undefined,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Diane Edwards,sking@example.com,528.677.6069x727,3561335466793101,2026-02-02 +City Hotel,0,2,2017,March,10,5,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,106.02,0,0,Check-Out,Priscilla Reid,perezdustin@example.com,5333365742,371873793396004,2025-11-17 +Resort Hotel,0,44,2017,June,25,21,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,148.81,0,0,Check-Out,Brandon Thomas,vtorres@example.com,001-674-445-9776x88046,4003089710862219282,2025-11-01 +Resort Hotel,0,44,2017,April,17,22,2,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,1,G,G,0,No Deposit,249.0,179.0,0,Transient,252.0,1,0,Check-Out,Sandra Olsen,bernardkarl@example.net,698-728-4011,3575413423860901,2025-05-14 +City Hotel,0,278,2017,September,38,22,2,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,105.98,0,0,Check-Out,Monique Thomas,hillrandy@example.com,(649)496-8386x02028,180071354202809,2025-09-07 +City Hotel,0,1,2017,March,11,14,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,63.04,0,0,Check-Out,Jaclyn Hudson,russonicole@example.com,001-880-310-0679,4851446169762595,2024-10-17 +City Hotel,0,43,2017,August,33,12,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.72,0,1,Check-Out,Matthew Browning,daniel81@example.com,001-332-656-2341,3504036204276892,2024-08-07 +Resort Hotel,0,6,2017,December,2,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,96.5,0,1,Check-Out,Juan Morton,charlene61@example.org,001-390-203-8302,3531319826118594,2026-01-20 +Resort Hotel,0,12,2017,December,50,10,0,4,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,13.0,72.0,0,Transient-Party,53.85,0,0,Check-Out,Brian Jacobson,joannorton@example.com,488-990-4138x05379,4183454206380503,2025-02-19 +Resort Hotel,0,37,2017,June,25,19,3,10,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Transient,231.7,0,1,Check-Out,Jessica Sullivan,zruiz@example.net,817.812.4240,4649166663358156,2024-11-20 +City Hotel,0,264,2017,July,28,8,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,132.92,0,3,Check-Out,Sheryl Ruiz,phillipmedina@example.net,+1-290-774-1040x9611,3560219463296790,2024-10-13 +Resort Hotel,1,83,2017,July,28,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,240.0,179.0,0,Transient,197.64,0,1,Canceled,Susan Gutierrez,debra53@example.org,001-394-791-0451x879,676217411062,2024-04-13 +Resort Hotel,0,50,2017,March,12,20,2,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,74.0,0,Transient,38.19,1,1,Check-Out,Mr. Brian Ferrell,allisonmiller@example.com,001-399-407-7961x9283,4136473953244207,2025-01-28 +Resort Hotel,0,0,2017,March,11,15,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,316.0,179.0,0,Transient,34.42,0,0,Check-Out,Lauren Merritt,allenkevin@example.com,727.595.5102,4778281629995,2024-07-30 +Resort Hotel,0,97,2017,October,41,12,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,64.75,0,1,Check-Out,Autumn Snyder,melissareed@example.com,548-492-1325,568797015936,2024-12-09 +City Hotel,1,20,2017,January,4,20,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,101.9,0,0,Canceled,Betty Aguilar,carol16@example.org,001-775-777-8802x553,4032754134248612,2024-09-07 +City Hotel,0,13,2017,March,13,29,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,K,0,No Deposit,77.0,179.0,0,Transient-Party,63.27,0,0,Check-Out,Kathleen Morris,ewilliams@example.net,+1-323-419-3725x3895,3518267745843395,2025-12-18 +City Hotel,0,9,2017,December,52,25,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,133.54,0,2,Check-Out,Thomas Morales,carolyn83@example.net,001-458-760-4788x9978,676195489569,2024-09-17 +Resort Hotel,0,38,2017,January,2,3,1,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,138.34,0,1,Check-Out,Eric Clark,deanna11@example.com,001-576-778-4566x41809,4285654814694412,2025-11-15 +Resort Hotel,0,6,2017,October,43,27,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,240.0,179.0,0,Transient,0.5099000000000001,1,0,Check-Out,Misty Turner,gregory06@example.net,676-458-0014x33637,2465375680826096,2025-03-08 +Resort Hotel,0,17,2017,March,11,17,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,47.54,0,1,Check-Out,Kimberly Baird,michellefry@example.org,001-958-508-0922,343105477687704,2026-02-06 +City Hotel,0,3,2017,November,47,23,0,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,E,0,No Deposit,17.0,217.0,0,Transient,81.99,0,0,Check-Out,Natalie Jefferson,bperry@example.com,4267938161,2260314547517231,2025-09-15 +Resort Hotel,0,20,2017,February,8,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,16.0,331.0,0,Transient,48.68,0,0,Check-Out,Robert Murray,kimberly05@example.org,497-784-3151x26658,374387048445034,2024-09-05 +City Hotel,0,0,2017,February,9,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,29.0,179.0,0,Group,46.36,0,1,Check-Out,Hannah Johnson,angelakent@example.net,+1-496-401-3400x041,586384083679,2024-09-17 +City Hotel,0,12,2017,March,12,16,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,1,A,A,0,No Deposit,89.0,179.0,0,Transient,111.77,0,1,Check-Out,Heather Benson,shortsamuel@example.com,(471)837-5903,675993540060,2024-10-10 +Resort Hotel,0,104,2017,November,48,25,4,7,2,0.0,0,FB,CN,Offline TA/TO,TA/TO,0,0,0,D,E,1,No Deposit,260.0,179.0,0,Transient,123.57,0,1,Check-Out,Andrea Proctor,jeremy38@example.org,001-247-620-3642x06797,36144732426485,2026-01-30 +City Hotel,0,2,2017,July,29,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,B,2,No Deposit,15.0,179.0,0,Transient,117.15,0,1,Check-Out,Kelsey Chen,riverajeffrey@example.com,9124981753,4943014736524797,2025-09-14 +City Hotel,1,151,2017,July,28,12,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,235.31,0,2,Canceled,Antonio Quinn,amandataylor@example.com,+1-257-297-0454x93058,4452106243997236,2025-11-18 +Resort Hotel,1,237,2017,September,37,15,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,A,0,No Deposit,256.0,179.0,0,Contract,54.99,0,2,Check-Out,Patricia Guzman,tchristian@example.org,7966374437,5343861298871922,2024-06-04 +Resort Hotel,0,11,2017,June,25,23,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,102.56,0,0,Check-Out,Eric Hall,fsmith@example.org,001-701-536-1084x682,213122894715064,2024-05-03 +Resort Hotel,0,0,2017,January,2,5,0,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,48.25,0,1,Check-Out,Christine Price,nholder@example.com,(466)915-9495x66551,180099833654514,2025-01-24 +City Hotel,0,27,2017,October,42,16,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Contract,45.13,0,0,Check-Out,Donna Ryan,amber68@example.com,960.340.7659x3770,3513822870198042,2025-03-19 +City Hotel,0,98,2017,June,26,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,84.0,179.0,42,Transient-Party,123.46,0,0,Check-Out,Zachary Ellis,scottchristina@example.com,(593)717-2286x72006,4298211475716,2025-08-14 +City Hotel,1,48,2017,August,33,13,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,81.16,0,0,Canceled,Joseph Russell,michele05@example.com,(930)411-1900x738,4804885109629689084,2025-02-14 +City Hotel,1,414,2017,May,19,5,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,237.0,0,Transient,132.22,0,0,Canceled,Nancy Love,jacquelinekirby@example.net,991.709.0818,3536024968285244,2024-08-30 +City Hotel,1,255,2017,June,23,3,1,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,40,Transient,89.89,0,0,Canceled,Elizabeth Griffin,kimberly03@example.com,714.816.7716,4760113008353865001,2025-06-17 +City Hotel,0,0,2017,April,15,12,1,0,3,0.0,0,SC,,Complementary,Undefined,0,0,0,P,P,0,No Deposit,16.0,98.0,0,Transient,2.79,1,1,Check-Out,Jason Compton,amanda62@example.com,001-585-296-2964x603,180060121436550,2024-08-23 +Resort Hotel,1,128,2017,June,23,6,4,10,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,G,0,Non Refund,243.0,179.0,0,Transient,132.06,0,0,Canceled,Jade Martinez,gregory26@example.org,(736)672-5051,4477473189550798206,2025-08-27 +Resort Hotel,0,385,2017,January,2,9,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,36.7,0,0,Check-Out,Melissa Allen,fle@example.com,5703604638,2275891065860161,2024-06-07 +City Hotel,0,74,2017,June,24,12,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,110.82,0,1,Check-Out,Ashley Black,christine78@example.net,726-854-4886,180013448019872,2025-07-29 +Resort Hotel,0,154,2017,August,33,19,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,107.51,0,1,Check-Out,Kelly Stewart,christina39@example.org,337.745.1913x38066,581147958887,2025-09-27 +City Hotel,0,316,2017,August,32,8,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient-Party,65.56,0,1,Check-Out,Scott Martinez II,bgibson@example.org,001-512-578-2813x620,2709783330529984,2024-12-25 +City Hotel,0,50,2017,August,31,5,1,4,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,201.78,0,0,Check-Out,Mark Baxter,ljohnson@example.com,+1-429-992-5425x298,4706300010885098420,2025-01-16 +City Hotel,1,147,2017,August,32,11,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient-Party,105.29,0,3,Canceled,Matthew Harper,brookseric@example.net,324-860-1492x545,4397686131094350,2026-03-18 +Resort Hotel,0,2,2017,January,2,3,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,57.58,0,1,Check-Out,Amanda Stevens,jeffjones@example.com,(655)539-8532,501841477372,2024-08-31 +City Hotel,1,30,2017,April,17,24,2,4,3,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,228.73,0,2,Canceled,Amy Barry,monique23@example.com,001-428-512-8500x794,4237415818192665,2024-12-16 +Resort Hotel,1,97,2017,March,10,8,0,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,78.28,0,1,Canceled,Sandra Mccoy,tammy26@example.org,(935)683-7881x42192,570345558466,2025-08-02 +City Hotel,0,7,2017,December,49,5,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,30.0,179.0,0,Transient-Party,77.43,0,0,Check-Out,Wayne Johnson,johnsongrant@example.org,(207)884-7570x38576,3505382077701775,2025-12-18 +City Hotel,1,396,2017,May,22,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,112.27,0,0,Canceled,John Garcia,anita30@example.net,(932)573-8140x615,6561395594652390,2025-10-10 +Resort Hotel,0,142,2017,March,13,31,1,2,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,223.0,0,Transient-Party,61.04,0,0,Check-Out,Ashley Ruiz,ostewart@example.com,253.547.3496x3421,675944599553,2026-02-01 +Resort Hotel,0,20,2017,January,2,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,43.38,1,2,Check-Out,Laurie Rodriguez,nealjames@example.org,816.807.8389,4994141451485706860,2025-12-11 +Resort Hotel,0,20,2017,November,45,8,1,2,2,0.0,0,FB,NLD,Groups,Direct,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient-Party,63.85,0,0,Check-Out,Mark Howard,rivasamanda@example.com,+1-993-780-2500x40926,4292813927314337155,2026-03-23 +Resort Hotel,0,55,2017,July,29,16,0,1,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,92.0,179.0,0,Transient-Party,63.04,0,0,Check-Out,Cameron Williams,davidgreen@example.com,(203)449-6184x68507,180021769532191,2024-12-14 +Resort Hotel,1,239,2017,September,36,5,2,1,2,0.0,0,BB,PRT,Groups,Undefined,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,86.74,0,0,Canceled,Richard Herman,coxmichelle@example.net,(530)221-8514x9921,4244828702911972728,2024-12-15 +City Hotel,0,0,2017,March,11,13,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,75.27,0,0,Check-Out,Samuel Garcia,jasminereynolds@example.org,001-444-984-6530x6968,2565407540882776,2025-05-15 +City Hotel,1,43,2017,June,24,8,1,3,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.04,0,0,Canceled,Mark Kelly,kruegerbrian@example.org,849-803-3070,4108246873438510076,2026-01-03 +City Hotel,1,2,2017,September,37,10,1,2,2,0.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,103.5,0,0,Canceled,Thomas Powell,victorreid@example.com,746.483.6786,6532501336314662,2024-11-10 +City Hotel,1,2,2017,May,19,9,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,78.45,0,0,No-Show,Olivia Curry,anichols@example.org,+1-854-988-0098x82006,30197686932847,2024-06-07 +City Hotel,1,35,2017,March,11,13,0,1,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,53.35,0,0,Canceled,Eric Wagner,frankguy@example.net,385-840-7201x39353,4693200244525820,2025-05-03 +City Hotel,0,57,2017,October,42,14,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,103.24,0,1,Check-Out,Christian Lopez,whitepatrick@example.org,+1-609-886-3895x53927,4332972515877166,2025-08-09 +Resort Hotel,0,140,2017,April,14,1,1,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,37.72,0,1,Check-Out,Benjamin Barnes,amanda37@example.net,530.981.0150x816,348202717331725,2024-08-11 +City Hotel,0,97,2017,October,43,27,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.92,0,0,Check-Out,Jennifer Ellis,jerrydorsey@example.net,+1-681-456-7481,180037278374420,2024-07-13 +Resort Hotel,0,1,2017,December,49,8,2,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,72.9,1,0,Check-Out,Christopher Brown,valentineheather@example.net,247.744.2872x36708,4686034902635509,2026-01-25 +Resort Hotel,0,98,2017,March,11,11,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient,92.2,0,0,Check-Out,Melissa Ramsey,hrodriguez@example.com,342-509-8376,4929472838180,2025-11-22 +City Hotel,0,25,2017,December,50,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.63,0,1,Check-Out,Jennifer Dean,crystaljuarez@example.org,(718)960-3254x8845,346442801096154,2025-10-27 +City Hotel,0,3,2017,January,3,18,2,4,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,99.86,0,1,Check-Out,David Jackson,rogersrodney@example.com,001-586-294-0927x80934,4964976985036448,2024-04-28 +Resort Hotel,0,4,2017,August,32,9,0,1,2,1.0,0,BB,PRT,Direct,Direct,1,0,0,A,H,0,No Deposit,245.0,179.0,0,Transient,59.91,1,2,Check-Out,Kenneth Esparza,billyrivera@example.com,+1-499-264-7613,2255031596451412,2025-09-20 +City Hotel,0,156,2017,June,24,13,2,5,1,0.0,0,BB,IRL,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Contract,177.3,0,2,Check-Out,Morgan Peterson,humphreyregina@example.com,(655)486-8103x47775,30374488109995,2024-09-08 +Resort Hotel,0,113,2017,August,31,2,4,10,2,0.0,0,HB,IRL,Direct,TA/TO,0,0,0,E,E,2,No Deposit,245.0,179.0,0,Transient,220.81,0,1,Check-Out,Wanda Lee,urobinson@example.org,(951)780-6273x87531,4589505510041533395,2025-07-28 +City Hotel,0,3,2017,August,34,23,0,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,14.0,179.0,0,Transient,238.65,0,1,Check-Out,James Smith,orozcocarlos@example.com,+1-493-422-3417x546,30291212837842,2026-01-25 +City Hotel,0,414,2017,July,27,5,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient-Party,104.71,0,2,Check-Out,Amanda English,ebaxter@example.org,+1-701-432-1328,30382790165985,2025-08-06 +City Hotel,1,53,2017,September,37,10,2,4,3,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,D,0,No Deposit,13.0,207.0,0,Transient,211.18,0,0,No-Show,Mark Nunez,sara03@example.com,001-854-456-1904x3748,503898574994,2025-10-26 +Resort Hotel,0,0,2017,February,8,23,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,19.0,179.0,0,Transient,45.45,0,0,Check-Out,Gabriella Weaver,brian62@example.com,001-480-888-8415x46599,30133772125889,2024-09-02 +Resort Hotel,0,97,2017,January,2,10,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,181.0,179.0,0,Transient,31.5,0,0,Check-Out,Michael Martinez,amosley@example.org,261.691.5164x532,3596851581170016,2024-08-11 +City Hotel,0,0,2017,March,11,12,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Kevin Baker,thartman@example.com,5337403763,4712808752062508482,2024-09-03 +City Hotel,1,160,2017,April,17,22,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,8.0,179.0,0,Transient,109.02,0,1,No-Show,Patrick Mcbride,smithcarlos@example.net,(912)703-4189x9996,5415442602403315,2024-04-24 +Resort Hotel,0,0,2017,November,47,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,51.34,0,2,Check-Out,Megan Johnson,sara49@example.net,(857)233-7877,3578204380822027,2025-04-01 +City Hotel,0,2,2017,February,8,23,1,0,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,121.05,1,1,Check-Out,Katherine Francis,wmills@example.com,554-933-8580x3899,344056155837500,2024-07-24 +City Hotel,0,88,2017,October,41,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,43,Transient-Party,100.33,0,0,Check-Out,Travis Jenkins,dcannon@example.org,754-688-6526x481,4869582095729,2025-07-18 +City Hotel,1,321,2017,July,28,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,75,Transient,91.16,0,0,Canceled,Cody Copeland,michelle22@example.com,620.270.5019,3545398781844653,2026-01-03 +City Hotel,1,40,2017,April,15,9,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,85.4,0,2,Canceled,Victor Owens,patrickcochran@example.org,001-398-948-2778,30548745050189,2025-04-02 +City Hotel,0,37,2017,December,48,2,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,87.72,0,0,Check-Out,James Garza,olsenjames@example.org,493.705.0513x0433,213143992446600,2026-03-22 +City Hotel,0,95,2017,December,52,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,86.45,0,0,Check-Out,Kenneth Johnson,burnsana@example.org,6514679292,30402717950721,2024-09-16 +City Hotel,0,46,2017,September,37,12,0,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,158.78,0,0,Check-Out,Heather Miller,natalie87@example.com,816.710.8895x2058,213133419831351,2024-10-10 +Resort Hotel,1,59,2017,December,49,5,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,251.0,179.0,0,Transient,207.41,0,0,Canceled,Robert Nelson,claytonlee@example.org,001-589-866-7281x638,4413333218809,2026-03-26 +City Hotel,1,12,2017,August,34,21,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,200.09,0,2,Canceled,Andrew Serrano,nicholasrodriguez@example.com,+1-965-455-8706x718,3544598005147822,2024-09-10 +City Hotel,0,186,2017,June,24,13,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,129.82,1,0,Check-Out,Claire Tyler,patricia73@example.org,001-742-303-6968,213114023697974,2025-06-09 +Resort Hotel,0,26,2017,December,51,18,1,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,239.0,179.0,0,Transient,91.83,0,1,Check-Out,Jesus Jackson,jacobjones@example.com,652.327.8644x8053,4199221581658767,2025-04-20 +Resort Hotel,0,4,2017,March,12,18,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,52.84,1,1,Check-Out,John Williamson,qgonzalez@example.com,601-689-9845x08970,4234408132562,2024-11-01 +City Hotel,0,375,2017,October,43,27,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,64,Transient-Party,66.42,0,0,Check-Out,Sheila Gaines,anita87@example.net,471.207.3593,3567920020189690,2026-01-20 +City Hotel,0,28,2017,October,41,9,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,140.13,0,1,Check-Out,Morgan Tucker,qdavis@example.org,780.505.3477x0388,4012032170248737,2024-12-24 +Resort Hotel,0,134,2017,August,32,5,4,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,218.88,1,3,Check-Out,Joshua Sanders,jacquelinemedina@example.com,001-575-955-8105,341476601656242,2024-10-20 +City Hotel,1,352,2017,July,27,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,93.11,0,1,Canceled,Raymond Rollins,hwarren@example.org,001-455-664-4073x55995,4345560123703976,2025-11-05 +Resort Hotel,0,4,2017,October,42,15,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,64.0,0,Transient-Party,47.15,0,0,Check-Out,Kaitlin Delacruz,jessicacarter@example.com,(667)429-5414,6011371131719337,2024-11-03 +Resort Hotel,0,0,2017,December,52,25,2,4,2,0.0,0,HB,,Direct,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,134.48,1,1,Check-Out,Daniel Shaw,toddbailey@example.org,+1-874-239-3134x653,4107687732236300,2024-11-16 +Resort Hotel,0,107,2017,August,34,22,2,7,2,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,2,No Deposit,244.0,179.0,0,Transient,136.33,0,2,Check-Out,Amy Garcia,scott67@example.com,+1-558-249-1213,4149169268712,2025-05-24 +Resort Hotel,0,141,2017,June,26,24,4,3,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,2,No Deposit,249.0,179.0,0,Transient,130.52,1,0,Check-Out,Amanda Bell,hadams@example.com,(891)827-8274x892,6011220555712478,2025-10-22 +City Hotel,0,13,2017,November,45,9,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,87.31,0,0,Check-Out,Lauren Landry,amandahanson@example.com,844-529-7671x044,3523660537407796,2025-09-23 +Resort Hotel,1,1,2017,March,11,13,1,0,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,B,0,No Deposit,16.0,179.0,0,Transient,44.94,0,1,No-Show,Helen Hanna,qmcguire@example.net,(609)265-2536x8341,348497662372175,2025-10-04 +City Hotel,0,0,2017,July,28,11,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,4.39,0,0,Check-Out,John Rogers,greenkenneth@example.org,001-482-437-7492,30339655553390,2024-12-20 +Resort Hotel,0,20,2017,October,41,13,4,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,5.95,0,1,Check-Out,Robert Pham,kylegardner@example.org,+1-226-664-0242x722,6011137580432585,2024-10-31 +City Hotel,0,17,2017,August,32,7,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,177.41,0,2,Check-Out,David Lopez,rachel45@example.org,+1-431-795-0885x2435,6011149406362607,2025-08-13 +City Hotel,0,47,2017,August,32,9,2,2,3,0.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,223.47,0,1,Check-Out,Michael Ross,davismichael@example.com,2713185976,3568386810628470,2026-01-19 +City Hotel,1,30,2017,February,8,23,1,2,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,71.26,0,0,Canceled,Andrew Richard,abates@example.org,(274)469-5041,3504047927025607,2024-09-22 +Resort Hotel,0,246,2017,May,19,6,2,5,2,0.0,0,HB,IRL,Groups,TA/TO,0,0,0,A,C,0,No Deposit,133.0,179.0,0,Transient-Party,73.9,0,0,Check-Out,Michelle Barnes,howellrobert@example.org,314-566-2834x3214,3580075641339811,2025-07-26 +City Hotel,0,48,2017,May,20,12,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,137.27,1,1,Check-Out,Patrick Nguyen,alexandercooper@example.net,9456653332,4039592324142440,2025-12-06 +City Hotel,0,43,2017,September,36,8,0,1,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,93.87,0,0,Check-Out,John Wright,justin42@example.org,818-556-6146x195,180021892419282,2025-09-07 +Resort Hotel,0,101,2017,February,6,9,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,94.0,179.0,0,Transient-Party,45.74,0,0,Check-Out,Laura Brown,heather34@example.com,001-352-432-9898x181,3559387196128664,2024-04-24 +Resort Hotel,0,368,2017,March,10,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,135.0,179.0,0,Transient-Party,45.59,0,1,Check-Out,Stephen Santiago,jonathanmercer@example.org,001-229-498-4634x161,374561583132385,2026-02-28 +City Hotel,1,110,2017,June,25,20,0,3,1,0.0,0,SC,,Complementary,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,137.69,0,0,No-Show,James Calderon,natalie99@example.net,3405951066,6011580853796824,2024-08-07 +City Hotel,1,160,2017,August,32,11,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,136.42,0,0,Canceled,Emily Caldwell,vharris@example.com,375.597.4463x5254,372058543455768,2026-01-06 +Resort Hotel,1,79,2017,May,18,1,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,1,F,F,0,No Deposit,240.0,179.0,0,Transient,146.99,0,1,Canceled,Charles Bishop,bschneider@example.org,(845)851-8352,6594308941471720,2025-04-04 +Resort Hotel,0,152,2017,August,31,5,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,B,E,0,No Deposit,12.0,179.0,0,Transient-Party,223.09,1,2,Check-Out,Peter Banks,awheeler@example.org,001-355-726-0716,374136570637876,2025-09-08 +City Hotel,0,26,2017,April,15,8,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,84.21,1,0,Check-Out,Edward Matthews,robert15@example.net,660-367-0239,4520640030560730,2025-07-07 +City Hotel,0,105,2017,December,49,5,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,H,0,No Deposit,14.0,179.0,0,Transient,4.05,0,0,Check-Out,Robert Gonzalez,diazeric@example.com,001-736-655-8625x07799,4042726059148,2025-07-16 +City Hotel,0,8,2017,April,14,4,1,3,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,102.62,0,1,Check-Out,Andrew Williamson,michael28@example.org,6398342442,3557847289954567,2025-04-03 +Resort Hotel,0,1,2017,December,52,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,258.0,179.0,0,Transient,46.2,0,0,Check-Out,Tim Johnson,asanchez@example.com,461-699-3591,3521303570547804,2024-08-22 +City Hotel,0,40,2017,November,45,4,0,3,3,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,195.0,193.0,0,Transient,63.43,0,0,Check-Out,Frank Osborne,barbara12@example.org,819.388.2444,4872602953075,2024-05-25 +City Hotel,0,32,2017,October,40,1,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,98.0,0,0,Check-Out,Cynthia Hayes,lance49@example.com,408.390.3057x788,180052010239989,2024-09-17 +City Hotel,0,166,2017,August,34,23,2,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,216.13,0,2,Check-Out,Paul Sanders,myersjessica@example.com,001-505-371-7866x6151,2700297327278710,2024-05-03 +City Hotel,1,43,2017,March,14,30,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,130.31,0,0,Canceled,Gabriel Ewing,vnovak@example.org,289.443.3218,4297751068923,2025-04-27 +Resort Hotel,0,85,2017,April,17,23,0,4,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,97.39,0,2,Check-Out,Edward Wolf,ryankim@example.net,776-961-7436x152,6011560472978482,2025-10-11 +Resort Hotel,0,145,2017,March,12,16,1,4,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,D,C,0,No Deposit,12.0,179.0,0,Transient,37.25,0,0,Check-Out,Shelia Miller,pinedaanthony@example.net,4384755561,180050117381902,2026-03-18 +City Hotel,1,12,2017,February,7,14,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,62.83,0,0,Canceled,Susan Flores,brittanyhaas@example.org,001-653-233-1002x45301,2264089878928134,2024-12-24 +City Hotel,0,394,2017,September,36,6,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,82.37,0,0,Check-Out,David Hensley,dillonjoshua@example.org,+1-945-710-1060x06664,3550145488940595,2024-03-31 +Resort Hotel,0,10,2017,February,9,26,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,41.89,1,1,Check-Out,Karina Jones,dmurphy@example.org,+1-910-671-4689x6514,4664907838762164,2024-10-13 +Resort Hotel,0,41,2017,May,19,5,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,312.0,179.0,0,Transient,121.11,1,1,Check-Out,Robert Romero,albert49@example.net,(848)585-4094x68146,3517449991078790,2024-10-30 +Resort Hotel,0,151,2017,July,27,5,0,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,141.35,0,1,Check-Out,Gregory Dawson,lwong@example.net,461-758-3843,213138159187120,2024-08-21 +Resort Hotel,0,152,2017,April,14,1,0,3,2,0.0,0,BB,ISR,Groups,Direct,0,0,0,A,C,1,Refundable,11.0,223.0,0,Transient-Party,78.61,1,0,Check-Out,Cassandra Ponce,david66@example.com,(272)919-7082x75886,213101344589188,2026-01-21 +City Hotel,1,270,2017,May,22,31,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,64.5,0,0,Canceled,Kyle Raymond,april07@example.org,577-895-5097,4515024520440,2024-04-12 +City Hotel,0,54,2017,September,38,16,2,4,1,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,115.9,0,0,Check-Out,Bianca Charles,dcooper@example.com,+1-811-891-9400x51831,180010167792903,2025-11-26 +Resort Hotel,1,301,2017,October,40,1,2,4,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,85.29,0,0,Canceled,Gregory Payne,sheltonamanda@example.net,(852)963-7577x4681,378207537019437,2024-05-19 +City Hotel,0,0,2017,January,4,23,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,88.56,0,0,Check-Out,Jeremy Gibbs,scottrandall@example.com,492-720-4413,377173372353250,2026-01-27 +City Hotel,1,3,2017,July,29,15,0,1,1,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,117.91,0,1,Canceled,Timothy Miller,james11@example.net,210.397.4221x4618,344897706380031,2025-12-15 +Resort Hotel,1,39,2017,March,10,4,1,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,100.51,0,0,Canceled,Michael Martin,hernandezfrank@example.com,2585848635,371848684707519,2024-07-25 +City Hotel,0,52,2017,September,36,4,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,170.98,0,1,Check-Out,Shari Hickman,debrawilliams@example.org,364.406.0371,4509275412719078,2024-07-16 +City Hotel,1,173,2017,May,18,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.24,0,1,Canceled,Stephanie Meyer,christopherdavis@example.com,(356)392-8730,30273058577856,2024-05-09 +City Hotel,0,23,2017,December,52,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,1,No Deposit,27.0,179.0,0,Transient-Party,89.09,0,0,Check-Out,Cynthia Reynolds,catherinemurphy@example.net,(481)868-8298x8169,6503787135758689,2025-03-10 +Resort Hotel,0,381,2017,October,42,17,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,231.0,0,Transient-Party,49.98,0,0,Check-Out,Mr. David Bates Jr.,fuentesnathan@example.org,2176837123,213126256049525,2024-07-02 +Resort Hotel,0,41,2017,July,31,30,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,198.38,0,1,Check-Out,Robert Lee,kanedavid@example.net,976.622.8185x444,4074018010550718,2024-09-04 +City Hotel,0,96,2017,December,51,22,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Contract,63.96,0,2,Check-Out,Jenna Reid,christopher79@example.org,001-292-468-1471,060486044765,2025-01-19 +Resort Hotel,1,13,2017,December,48,2,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,53.25,0,0,Canceled,Mark White,miguel50@example.com,(361)661-2434x633,349357374499170,2025-04-15 +Resort Hotel,0,101,2017,March,13,31,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,130.24,1,0,Check-Out,Joseph Reyes,ayalacassandra@example.org,+1-874-296-4378x44156,3567143086249411,2024-09-23 +Resort Hotel,1,296,2017,August,31,4,1,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,135.79,0,0,Canceled,Kimberly Johnson,eweber@example.org,001-643-672-0797x9446,4000672702403633,2025-12-13 +Resort Hotel,0,41,2017,September,37,13,2,0,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,163.37,0,0,Check-Out,Jennifer Allen,charleschristian@example.net,(301)241-3572x0104,3535838570769951,2025-02-04 +City Hotel,0,7,2017,January,2,10,0,2,1,1.0,0,BB,,Direct,Direct,0,0,0,A,H,1,No Deposit,12.0,179.0,0,Transient,92.63,0,2,Check-Out,Cody Thomas,combsjessica@example.net,754-895-7521x976,4589476735597763592,2025-07-18 +City Hotel,0,11,2017,May,20,14,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,111.71,0,0,Check-Out,Mrs. Christina Ortiz PhD,asanchez@example.net,8045869586,6011240313104297,2024-11-07 +City Hotel,0,17,2017,March,11,14,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,P,1,No Deposit,11.0,179.0,0,Transient,136.09,1,1,Check-Out,Shane Montgomery,johnsonlisa@example.org,(965)990-9611,6011096618577235,2026-01-08 +City Hotel,0,45,2017,October,41,12,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,9.0,179.0,0,Transient,200.09,0,1,Check-Out,Cynthia Walker,charles67@example.com,001-912-940-4145x83131,4227687499314,2024-12-21 +City Hotel,0,2,2017,August,34,20,1,0,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,B,1,No Deposit,12.0,179.0,0,Transient,224.52,0,2,Check-Out,Deborah Fleming,lynn63@example.net,3714489411,4129855152800,2026-02-26 +City Hotel,1,248,2017,October,43,24,1,3,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,138.33,0,0,Canceled,John Cole,julieboyer@example.org,001-373-611-6633x131,6011596797492007,2025-08-08 +City Hotel,0,15,2017,April,16,13,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,179.0,0,Transient,140.2,0,2,Check-Out,Ronald Perez,jhardin@example.com,429.315.8687x75353,4602884602463458,2024-08-27 +Resort Hotel,0,53,2017,December,52,23,2,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,240.06,1,0,Check-Out,Charles Russell,ypatterson@example.net,355-269-0173,343488039698082,2026-02-24 +City Hotel,1,209,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,102.9,0,0,Canceled,Kathy Ramirez,ejohnson@example.net,(324)937-2444,4066245761389,2025-10-01 +Resort Hotel,0,260,2017,July,28,8,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,120.28,0,2,Check-Out,Debbie Jimenez,jamespham@example.com,833.976.3328x84763,4703644370657,2025-07-16 +City Hotel,0,124,2017,March,12,19,1,0,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,105.29,0,0,Check-Out,Shawn Bishop,gregorynichols@example.org,001-921-611-4828x508,2232862909289547,2024-09-18 +City Hotel,1,119,2017,March,12,20,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,153.0,179.0,0,Transient,123.93,0,0,Canceled,Paige Case,jhoover@example.net,+1-736-674-8814x186,347516434324197,2025-07-05 +Resort Hotel,0,3,2017,April,14,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,241.0,179.0,0,Transient,46.06,1,1,Check-Out,Shelby Dixon,ryannathan@example.org,356.993.0022x223,377116446446055,2024-10-03 +City Hotel,0,33,2017,June,25,18,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,7.0,179.0,0,Transient,139.33,0,1,Check-Out,Eric Shelton,cruzkimberly@example.com,001-931-262-5615x995,3538829886303392,2025-01-02 +City Hotel,1,26,2017,April,17,23,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.66,0,0,Canceled,Thomas Miller,leroygarza@example.org,620-855-5293,30202466941164,2025-01-23 +City Hotel,0,14,2017,October,41,10,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,15.0,179.0,0,Transient,102.87,0,0,Check-Out,Sandra Carr MD,susanhawkins@example.com,219.204.1110,2582271297313438,2024-10-04 +City Hotel,1,45,2017,June,24,12,1,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,110.72,0,0,Canceled,Jennifer Jones,ricejoel@example.com,(477)716-2159x8281,4609190049793447,2024-10-12 +Resort Hotel,1,94,2017,October,41,13,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,84.99,0,0,Canceled,Leah Hunter,ddaniel@example.org,(923)200-5592x944,060474809914,2024-07-15 +City Hotel,0,88,2017,August,33,12,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,160.51,0,1,Check-Out,Linda Hoffman,williamsjeremy@example.com,001-225-215-3897,373288189860372,2026-01-07 +City Hotel,1,113,2017,June,26,24,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.72,0,0,Canceled,Alec Clark,alanshaw@example.com,951.820.0806x2102,3510493099537452,2024-06-04 +Resort Hotel,1,235,2017,June,26,27,1,2,2,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,134.02,0,0,Canceled,Christopher Thomas,alvarezwendy@example.com,9416467263,30137501029213,2025-09-17 +Resort Hotel,0,367,2017,September,37,11,1,3,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,66.33,0,0,Check-Out,Eric Calderon,adammoore@example.net,(480)612-8496,2294902820828661,2025-01-13 +City Hotel,0,34,2017,October,41,12,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,167.0,179.0,41,Transient,86.81,0,1,Check-Out,Ian Green,garrettsamuel@example.net,+1-419-509-1587x197,3520525847440709,2024-07-11 +Resort Hotel,0,10,2017,January,4,22,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient,54.55,0,1,Check-Out,David Anderson,jerrycunningham@example.com,001-605-663-0044,4760125456755377107,2025-12-01 +Resort Hotel,1,37,2017,November,45,8,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,83.46,0,0,Canceled,Michelle White,drichardson@example.com,7672059941,30167332702696,2025-12-30 +City Hotel,0,45,2017,October,40,4,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,74.0,179.0,0,Transient-Party,61.33,0,1,Check-Out,Ashley Stewart,johnhoward@example.net,886-288-1432,213182028434644,2025-08-09 +City Hotel,0,4,2017,September,36,5,1,0,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,71.0,0,Transient-Party,65.25,0,0,Check-Out,Charles Williams,paul74@example.com,+1-916-600-9840x327,4992005220323944,2025-02-26 +Resort Hotel,0,23,2017,October,43,27,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,248.0,179.0,0,Transient,52.6,0,0,Check-Out,Luke Lane,mgreen@example.com,834-454-4590x62228,4338991708961615,2026-03-18 +City Hotel,0,0,2017,September,37,12,2,0,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,2.25,0,0,Check-Out,Charlene Randolph,daviskatelyn@example.net,591-324-6543x721,2720460323047150,2024-04-30 +Resort Hotel,0,10,2017,August,33,18,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient-Party,202.65,0,2,Check-Out,Isaiah Miller,cruzjames@example.org,001-534-455-4412,379840374866426,2024-11-03 +Resort Hotel,0,2,2017,January,5,29,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,47.21,0,1,Check-Out,Gina Park,paulcarter@example.com,001-701-270-1687x5710,4621014684713268,2025-04-29 +City Hotel,1,11,2017,November,45,11,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.3,0,0,Canceled,Andrea Smith,josephmonica@example.net,(903)911-7192,213150905643074,2025-11-11 +Resort Hotel,0,11,2017,March,12,17,0,3,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,198.42,1,0,Check-Out,Reginald Phillips,christopherpearson@example.net,(792)400-4585x4288,4349552979372010,2025-01-12 +Resort Hotel,0,42,2017,May,22,27,4,7,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,242.0,179.0,0,Transient,141.02,0,1,Check-Out,Erika Rodriguez,abigail97@example.net,(669)534-6424x03870,180040222405928,2024-10-24 +City Hotel,0,12,2017,October,40,4,0,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,63.49,0,1,Check-Out,Jeffery Li,christine05@example.org,690-201-9119,639053343039,2025-08-11 +Resort Hotel,0,197,2017,August,31,5,2,7,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,13.0,179.0,0,Transient,206.67,1,2,Check-Out,Nicolas Peterson,courtneysmith@example.org,+1-728-926-7445,3548609238959630,2025-01-28 +City Hotel,1,161,2017,June,25,15,0,2,2,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,136.65,0,1,Canceled,Ryan May,jill51@example.org,8508414589,4328550415448753,2025-02-11 +City Hotel,1,45,2017,December,50,10,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.34,0,1,Canceled,Patrick Knox,megan55@example.org,351-282-4418,30340182287304,2024-12-04 +City Hotel,0,90,2017,December,50,9,0,4,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.73,0,0,Check-Out,William Davis,jameswagner@example.net,(806)953-4559,4882144787998757,2025-02-05 +City Hotel,0,15,2017,December,51,23,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,1,No Deposit,13.0,179.0,0,Transient,43.05,1,1,Check-Out,Thomas Taylor,kevinboyd@example.com,3967575452,581182017342,2024-05-29 +Resort Hotel,0,1,2017,March,12,19,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,177.0,237.0,0,Transient-Party,47.13,0,0,Check-Out,Christopher Doyle,alexis14@example.org,449.390.5275x34080,573630654370,2025-03-10 +Resort Hotel,0,10,2017,August,35,27,0,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,K,1,No Deposit,16.0,179.0,0,Transient,108.67,0,0,Check-Out,Michael Medina,jessica71@example.com,+1-658-664-6766x454,4962523977731241042,2024-12-11 +City Hotel,1,2,2017,November,47,24,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,222.0,0,Transient,82.37,0,0,Canceled,Erin Diaz,vsmith@example.net,(966)637-9938x2870,4928146565296235,2024-05-06 +City Hotel,1,414,2017,May,22,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,128.43,0,0,Canceled,Jason Robinson,frostdavid@example.org,001-650-596-7147x57422,3590126349832751,2025-04-11 +City Hotel,0,4,2017,July,31,31,2,5,2,1.0,0,SC,ITA,Online TA,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,252.0,0,3,Check-Out,Mary Romero,brianhiggins@example.net,746.922.3763x6617,2701874910757166,2025-11-12 +City Hotel,0,89,2017,June,26,26,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,134.46,0,2,Check-Out,Rachel Booker DDS,stevenhayes@example.org,860.693.9732,4727361067493,2024-12-21 +City Hotel,0,35,2017,April,16,17,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,130.13,0,1,Check-Out,Jennifer Sawyer,jasonrodgers@example.net,931.483.4610,4139391460898,2026-02-04 +Resort Hotel,0,144,2017,July,27,8,0,4,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,177.05,0,1,Check-Out,Luke Goodwin,finleyrachel@example.org,(767)504-3634x07960,630454767025,2024-06-04 +Resort Hotel,0,32,2017,July,29,16,1,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,18.0,223.0,0,Transient,110.96,1,2,Check-Out,Tyler Gray,scott24@example.com,(424)619-1340x666,3514953097725066,2024-10-02 +City Hotel,1,153,2017,March,11,14,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,165.0,179.0,0,Transient,93.13,0,0,Canceled,Lauren Sullivan,uwhitaker@example.com,3406828220,3551433028434173,2025-12-05 +City Hotel,1,57,2017,April,16,15,0,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,126.49,0,2,Canceled,Brenda Gray,jodi30@example.com,262-499-7297,345226675063254,2024-11-04 +Resort Hotel,1,319,2017,February,6,5,2,0,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,0,Non Refund,11.0,331.0,0,Transient,108.73,0,0,Canceled,Ms. Laura Lindsey,wallsbrian@example.org,001-800-205-8346x81915,6536358773187903,2025-08-29 +City Hotel,1,95,2017,June,24,14,0,2,1,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,41,Transient,109.33,0,1,No-Show,Sarah Young,richard70@example.org,321-448-6479,213109382199521,2025-05-02 +Resort Hotel,0,91,2017,November,47,19,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,40,Transient-Party,45.27,0,0,Check-Out,Nancy Gonzalez,hudsonbrandon@example.org,261.643.4567x1823,372218562734861,2024-09-21 +City Hotel,1,414,2017,July,31,30,2,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.96,0,0,Canceled,Valerie Phillips,mpatton@example.org,001-668-576-2899x992,4660882281464796,2024-12-08 +City Hotel,0,175,2017,January,4,22,0,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.65,0,1,Check-Out,Jason Jordan,dan52@example.com,+1-571-428-0882,6559103797174194,2024-04-15 +Resort Hotel,1,14,2017,January,2,3,0,2,2,1.0,0,BB,PRT,Online TA,Corporate,0,0,0,H,H,2,No Deposit,238.0,179.0,0,Transient-Party,57.89,0,0,Canceled,John Gallagher,dcox@example.com,+1-516-724-7074x9123,4136960473496697,2024-07-30 +City Hotel,0,27,2017,January,2,7,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,168.64,0,3,Check-Out,Denise White,carolparker@example.net,001-479-998-3276x75200,30432848262746,2026-01-02 +Resort Hotel,0,16,2017,November,47,19,2,2,2,0.0,0,HB,,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,53.82,0,1,Check-Out,Cody Turner,ronnie27@example.net,953.669.0585,180090218128067,2026-02-17 +City Hotel,1,34,2017,March,11,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,87.0,179.0,19,Transient,75.56,0,0,Canceled,Ashley Moran,ybrown@example.org,(850)687-1245,349502061078916,2025-05-08 +City Hotel,1,17,2017,October,41,8,2,1,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,136.1,0,1,Canceled,Karen Mcpherson,donaldhowell@example.com,001-780-530-8068x24511,2478151526780440,2025-01-25 +Resort Hotel,1,21,2017,January,2,6,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,1,0,0,H,D,0,No Deposit,243.0,179.0,0,Transient,38.35,0,1,Canceled,Nicholas Pham,james39@example.com,617.405.1775,4896652212208919,2024-04-04 +City Hotel,0,24,2017,December,52,26,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,25.0,179.0,75,Transient-Party,100.87,0,0,Check-Out,Sydney Scott,larryward@example.net,(741)590-2566x18634,373320251842994,2025-09-25 +City Hotel,1,225,2017,June,23,5,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,102.67,0,0,Canceled,Jesse Garcia,tlopez@example.org,001-468-237-8516x9551,346666330155996,2024-05-02 +Resort Hotel,0,16,2017,April,17,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Group,66.1,0,3,Check-Out,Leslie Diaz,ohoffman@example.com,532-329-9299x797,5581127585379867,2025-12-04 +City Hotel,1,398,2017,June,26,24,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,17.0,179.0,41,Transient,107.89,0,1,Canceled,Justin Smith,wwest@example.com,788-268-4473x769,4807476308550,2024-10-28 +City Hotel,1,46,2017,June,24,12,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.98,0,0,Canceled,Cynthia Wells,ihamilton@example.org,938-349-7223x06707,564159281091,2025-12-17 +City Hotel,1,109,2017,June,23,5,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient,82.11,0,0,Canceled,Ernest Fitzgerald,robert17@example.org,001-961-331-3339x8961,4636452627466110,2025-02-27 +Resort Hotel,0,296,2017,March,11,13,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,44.42,0,0,Check-Out,Vincent Stewart,angela54@example.org,(711)888-3045,180019940820725,2024-12-05 +City Hotel,0,93,2017,October,43,27,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,126.94,0,2,Check-Out,Dakota Powers,marilyn11@example.net,982-774-4255x31044,345671038470912,2024-08-27 +Resort Hotel,0,37,2017,June,24,14,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,238.0,179.0,0,Transient,133.35,0,0,Check-Out,Danny Horton,alicia91@example.net,(656)751-5642,3537376026935924,2025-02-26 +City Hotel,1,93,2017,May,21,24,1,3,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.19,0,0,Canceled,Lisa Stuart,uanderson@example.org,(565)272-5610x92565,3554270353332599,2025-12-15 +City Hotel,0,65,2017,September,37,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,41.0,179.0,0,Transient,86.6,0,0,Check-Out,Stephanie James,nelsontricia@example.com,(794)387-4149,348635250578410,2024-12-03 +City Hotel,0,96,2017,December,49,4,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.61,0,1,Check-Out,Christina Bailey,natalie21@example.net,687.644.6631,4401246831867,2024-08-10 +Resort Hotel,0,32,2017,October,42,16,2,2,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Group,64.22,0,0,Check-Out,Bradley Howard,brenda67@example.net,001-715-461-9032,4490808111526427,2024-07-24 +City Hotel,0,20,2017,October,44,26,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,1,No Deposit,13.0,179.0,0,Transient-Party,222.77,0,0,Canceled,William Sanchez,paulabarnes@example.net,200-820-9005x44743,4640112042508725294,2024-08-21 +City Hotel,1,67,2017,September,37,12,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,107.08,0,0,Canceled,Katie Lam,lisaross@example.org,9379675692,4224944474581882,2025-09-26 +Resort Hotel,0,11,2017,November,47,24,2,0,1,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,E,0,No Deposit,265.0,241.0,0,Transient,52.09,0,1,Check-Out,Brian Owen,ssmith@example.org,939.224.9352,349436558810970,2024-07-14 +City Hotel,0,1,2017,December,51,22,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,27.0,179.0,0,Transient,63.19,1,0,Check-Out,Tracey Norris,lisa16@example.net,482.337.1678x5455,676390201108,2024-06-04 +City Hotel,0,48,2017,May,20,16,2,2,1,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient,79.09,0,1,Check-Out,James Ryan,taylorlopez@example.org,+1-394-906-4249x8105,4816096442320677036,2026-01-12 +City Hotel,0,19,2017,August,32,5,2,5,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,150.6,0,1,Check-Out,Maria Barrera,katelyn80@example.org,364-641-3305x3008,345995532661829,2025-11-16 +Resort Hotel,1,248,2017,July,28,9,3,5,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,240.0,179.0,0,Transient-Party,126.21,0,0,Canceled,Raymond Watts,sally18@example.com,+1-334-930-6524,4629402352466024,2024-08-27 +City Hotel,1,14,2017,September,38,23,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.41,0,0,Canceled,Jose Torres,katherine97@example.net,605.461.8758x0489,213137934061261,2025-01-04 +City Hotel,0,25,2017,March,13,27,2,0,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.37,0,1,Check-Out,Michael Butler,kevin50@example.net,702.885.3134,4697939416658422681,2025-05-04 +City Hotel,1,0,2017,November,44,3,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,3.53,0,0,Canceled,Veronica Avila,isteele@example.net,001-420-907-2254x952,180049355357657,2026-02-04 +Resort Hotel,0,2,2017,September,38,16,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Group,2.62,0,0,Check-Out,Kayla Miller,michelleconner@example.org,403.943.3348x24147,4473729475034629,2024-04-17 +City Hotel,0,51,2017,August,34,18,1,0,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,108.23,0,0,Check-Out,Jackie Carter,castrologan@example.net,(733)386-3092,30334571817342,2024-07-06 +Resort Hotel,1,14,2017,February,5,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,133.0,179.0,0,Transient,43.0,0,2,No-Show,Ashley Turner,williamsdawn@example.net,001-953-768-7541x669,3586345777180774,2025-11-10 +City Hotel,1,90,2017,June,25,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,111.26,0,0,Canceled,Jason Garcia,daughertynancy@example.org,8242605031,2717517239805669,2025-09-20 +City Hotel,1,2,2017,August,33,19,0,1,1,0.0,0,BB,PRT,Complementary,Undefined,1,1,1,B,B,0,No Deposit,15.0,45.0,0,Transient-Party,95.89,0,1,Canceled,Joseph Hamilton,matthew49@example.com,+1-856-435-9281x923,3558231686229460,2025-05-25 +Resort Hotel,0,98,2017,July,27,7,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,2,Check-Out,Jennifer Schwartz,holly50@example.org,3513933167,3555207867689790,2025-09-22 +Resort Hotel,0,165,2017,April,16,15,0,1,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,E,0,Refundable,40.0,223.0,0,Transient-Party,150.48,0,0,Check-Out,Angela Garcia,xjones@example.com,+1-480-776-6909x0787,180062863342970,2025-06-20 +Resort Hotel,0,4,2017,October,42,17,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Transient,56.81,0,1,Check-Out,Emma Allen,amandacastro@example.com,858.697.7455x1131,371485801199872,2024-07-29 +City Hotel,1,220,2017,July,28,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.87,0,0,No-Show,Alejandro Goodwin,kgarcia@example.org,(451)990-9657x635,30288480926463,2024-11-29 +City Hotel,1,171,2017,September,39,24,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,89.0,179.0,0,Transient,106.19,0,0,Canceled,Sandra Reyes,jessicacoleman@example.com,(245)810-6102x1227,630497840391,2025-01-25 +City Hotel,0,10,2017,October,42,19,0,3,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,200.0,0,Transient,50.93,0,0,Check-Out,Jonathan Green,cashley@example.org,(867)909-3063x947,340996595904192,2025-02-14 +City Hotel,1,102,2017,March,10,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,82.98,0,1,Canceled,Larry Rocha,blawson@example.org,293-684-4659x5005,4284937419866987114,2024-09-13 +Resort Hotel,0,177,2017,April,16,17,1,2,2,1.0,0,BB,POL,Online TA,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,126.03,0,1,Check-Out,David Miller,samuel77@example.com,3778417473,3598570099633327,2025-03-15 +City Hotel,1,170,2017,August,35,30,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,111.62,0,0,Canceled,Richard Ochoa,brendasmith@example.com,(858)542-6346,213144486181117,2025-04-26 +City Hotel,1,49,2017,May,18,4,0,2,2,0.0,0,BB,,Online TA,Corporate,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,176.55,0,1,Canceled,Selena Alvarado,mccannstephanie@example.com,914-355-1916x96948,2277632630995795,2024-08-29 +City Hotel,0,12,2017,March,13,25,1,5,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,186.99,0,0,Check-Out,Randy Taylor,deckeramy@example.net,+1-574-777-2893x378,4710457665626524,2024-05-26 +City Hotel,0,1,2017,December,52,30,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,I,1,No Deposit,16.0,179.0,0,Transient,4.4,1,0,Check-Out,Jill Taylor,marcus55@example.org,3444389548,3592302559439532,2025-10-21 +City Hotel,0,58,2017,August,32,4,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,143.23,0,1,Check-Out,Brandon Jordan,ravery@example.org,730-425-5749,180048954909207,2024-11-18 +City Hotel,0,69,2017,November,44,2,1,4,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,79.42,1,0,Check-Out,Ana Avila,atkinssean@example.net,001-217-465-0069x14668,4997715741073,2025-10-01 +City Hotel,0,92,2017,April,17,22,2,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,139.02,0,3,Check-Out,James Wallace,ann34@example.org,470-463-0932x426,4949692901245679259,2025-09-23 +Resort Hotel,0,10,2017,July,27,3,0,1,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,C,D,2,No Deposit,244.0,179.0,0,Transient,107.42,0,1,No-Show,Mackenzie Edwards,deborahfrazier@example.org,(782)708-5783,38252235187500,2024-08-07 +City Hotel,0,2,2017,August,31,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,63.83,0,2,Check-Out,Kristin Vaughn,emily91@example.org,313-614-1530x2480,4743252301545,2025-02-20 +City Hotel,0,1,2017,March,13,25,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,53.98,1,0,Check-Out,David Oneal PhD,elliottsarah@example.com,360.572.4485,2720337574903283,2024-10-24 +City Hotel,1,14,2017,September,38,20,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,132.26,0,1,No-Show,Briana Cox,martha82@example.com,452.695.5283x5628,6590760979834142,2024-05-11 +City Hotel,0,32,2017,August,34,19,1,1,3,1.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,186.32,0,1,Check-Out,Bryan Villegas,daniel15@example.com,(974)313-9868x71930,4050583760035796,2024-12-12 +City Hotel,1,264,2017,June,23,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.96,0,0,Canceled,Aaron Myers,salazardaniel@example.org,001-463-331-1495x50629,2223196474739359,2024-09-24 +City Hotel,1,182,2017,June,26,24,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,207.79,0,0,Canceled,Brian Mccarthy,jeremy84@example.com,571-479-5251x26653,348495907332996,2025-09-14 +City Hotel,1,103,2017,July,30,23,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,150.43,0,0,Canceled,Morgan Arias,amanda86@example.net,882.789.1749x64011,180087224951763,2025-07-06 +Resort Hotel,1,154,2017,December,50,13,0,1,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,E,0,Refundable,17.0,179.0,0,Transient,81.1,0,0,Canceled,Larry Owens,dharris@example.org,001-344-884-1574x71656,4186131063612296,2024-04-15 +City Hotel,1,400,2017,August,32,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,104.14,0,0,Canceled,Karen Campbell,kburton@example.org,+1-706-844-7748x6429,4102152320129354,2024-06-02 +City Hotel,0,3,2017,March,10,5,0,1,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,203.17,0,0,Check-Out,Robert Chen,albertmoore@example.org,001-355-291-6342x6016,377257338433296,2024-06-06 +City Hotel,0,50,2017,November,48,26,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,139.62,0,2,Check-Out,Ann Anderson,tjones@example.org,001-259-957-7250x47232,180058928564418,2024-12-23 +Resort Hotel,0,1,2017,May,19,4,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,184.65,1,1,Check-Out,Nicole Jensen,schan@example.net,306-485-6387x1752,4736059001894012,2024-06-01 +Resort Hotel,0,6,2017,January,4,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Contract,44.84,0,1,Check-Out,Jason Simon,graybrian@example.org,(506)370-2821x25674,4955636564045419270,2025-10-22 +City Hotel,0,12,2017,December,49,5,2,4,2,0.0,0,BB,BRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,120.65,0,1,Check-Out,Gary Morris,elizabethwade@example.net,584.241.7387,4913064692862588,2025-02-24 +Resort Hotel,1,46,2017,July,27,3,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,252.0,0,1,Canceled,Kelly Lee,nathan85@example.com,+1-301-788-0260x275,4339776709824304204,2025-02-18 +Resort Hotel,0,0,2017,October,41,9,2,7,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,31.0,179.0,0,Contract,69.68,0,0,Check-Out,Brittany Harvey,andersoncharles@example.org,(613)524-0645,4964942102108166628,2024-04-06 +Resort Hotel,0,20,2017,April,18,28,2,1,2,0.0,0,Undefined,PRT,Direct,Direct,1,0,0,L,C,1,No Deposit,13.0,179.0,0,Transient,66.46,1,1,Check-Out,Jorge Shannon,adouglas@example.net,534-899-8321,4508988034568469053,2025-01-08 +Resort Hotel,0,49,2017,May,20,15,0,3,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,133.0,179.0,0,Transient-Party,85.08,0,1,Check-Out,Christina Howard,sdaniel@example.com,693.786.9066,3542679533927679,2026-02-11 +Resort Hotel,0,119,2017,March,12,20,1,7,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,0,Transient-Party,34.68,1,0,Check-Out,Megan Williamson,thomasyoung@example.org,001-238-205-1177x68513,3581566002202969,2025-07-04 +City Hotel,0,119,2017,April,17,23,2,1,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,300.0,228.0,0,Transient-Party,110.67,0,0,Check-Out,Lawrence Macias,cindy56@example.net,+1-631-656-6130,4404548610005,2024-10-27 +City Hotel,0,81,2017,March,13,27,1,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.45,0,2,Check-Out,David Cox,shannon99@example.com,001-275-580-8853x0699,4916258292654471,2026-01-29 +City Hotel,0,374,2017,July,27,5,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.06,0,1,Check-Out,Michele Sandoval,stephanie39@example.org,001-207-820-2426x9140,3582255892553769,2025-12-31 +City Hotel,0,38,2017,October,40,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,109.18,0,1,Check-Out,Geoffrey Holland,gordondanielle@example.org,453-374-9059,4309854290717016,2024-07-31 +City Hotel,1,159,2017,August,33,12,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.94,0,0,Canceled,Cristina Schwartz MD,nancy32@example.com,(735)872-5915x766,6526048080907547,2025-11-14 +City Hotel,0,19,2017,June,25,18,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,132.69,0,0,Canceled,Jonathan Davis,elizabeth82@example.net,001-897-632-2193x25920,4580177712467,2025-02-15 +Resort Hotel,0,1,2017,January,3,18,0,2,1,0.0,0,BB,,Direct,Direct,0,1,0,A,A,1,No Deposit,314.0,179.0,0,Transient-Party,49.03,0,2,Check-Out,Brian Aguirre,zwagner@example.net,001-747-476-9506x895,2270461606231994,2024-07-14 +City Hotel,0,4,2017,June,24,9,0,3,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,G,2,No Deposit,12.0,179.0,0,Transient,132.98,0,0,Check-Out,Daniel Walsh,murphydorothy@example.com,001-464-769-2549x42358,2258998661956250,2024-04-14 +Resort Hotel,0,76,2017,February,5,1,2,5,2,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,34.0,179.0,0,Transient,46.47,1,0,Check-Out,Faith Rowland,riverasherry@example.net,+1-213-310-9576x291,4934618515908164111,2025-11-06 +City Hotel,0,1,2017,June,23,5,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,75.0,179.0,0,Transient,168.8,0,0,Check-Out,Tammy Roman,hoganjames@example.com,+1-331-518-5161x652,4090901398990343,2024-05-20 +City Hotel,0,10,2017,September,39,26,1,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,239.85,1,0,Check-Out,Keith Gilbert,amandahoward@example.org,904-897-0437x38778,30369059195316,2024-12-10 +City Hotel,0,0,2017,March,14,30,1,0,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,45.0,0,Transient,80.21,0,0,Check-Out,Mary Lawson,christopher28@example.org,001-485-472-8224x06496,2718148373457643,2026-01-29 +Resort Hotel,1,47,2017,August,35,27,0,2,3,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,227.19,0,0,Canceled,Cynthia Pham,michaelherrera@example.com,450.728.1506,3546350563655608,2024-10-19 +Resort Hotel,1,161,2017,August,31,4,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient,102.91,0,0,Canceled,Monique Padilla,sandraphillips@example.com,(569)824-6042x817,30409292012611,2025-12-19 +City Hotel,0,154,2017,September,37,10,2,2,2,0.0,0,HB,DEU,Groups,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,85.34,0,0,Check-Out,Erika Burton,belldiana@example.com,476-554-8996x30128,2272438160013073,2024-03-28 +City Hotel,0,3,2017,August,32,7,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.68,0,0,Check-Out,Kevin Haynes,snyderkevin@example.net,526.342.6609x17329,376109866580611,2025-09-01 +City Hotel,1,391,2017,May,20,15,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.82,0,0,Canceled,Elizabeth Robinson,arianawilliams@example.org,705-422-6242x302,6011290089716063,2024-06-01 +City Hotel,0,0,2017,September,39,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,37.0,179.0,0,Transient-Party,88.83,0,0,Check-Out,Keith Wilson,ambersmith@example.com,6535527207,4810058033517524971,2024-11-16 +Resort Hotel,0,16,2017,February,8,24,0,2,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,E,E,0,No Deposit,187.0,221.0,0,Transient-Party,62.11,0,0,Check-Out,Benjamin King,nancyhernandez@example.com,(510)444-7285,180039978482693,2025-02-05 +Resort Hotel,0,158,2017,March,12,22,1,2,1,0.0,0,Undefined,PRT,Corporate,TA/TO,1,0,1,A,A,1,No Deposit,267.0,222.0,0,Transient-Party,42.37,0,1,Check-Out,Veronica Johnson,maria92@example.org,001-283-810-5977x71739,30392583618140,2024-05-12 +Resort Hotel,1,114,2017,February,9,25,2,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,84.95,0,0,Canceled,Ryan Thomas,allenmatthew@example.org,(991)542-7655,4658371381768540,2024-11-23 +City Hotel,1,299,2017,October,41,13,2,5,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,A,0,No Deposit,12.0,179.0,0,Transient,46.19,0,0,Canceled,Krista Crane,crystal45@example.net,(342)851-9014x00094,4532654415583187437,2025-03-21 +City Hotel,1,304,2017,September,37,16,0,1,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,136.88,0,0,Canceled,Andrew Johnson DDS,mgardner@example.com,(790)882-3842,348649399244222,2026-02-09 +City Hotel,0,0,2017,August,31,5,1,4,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,92.63,0,1,Check-Out,Michael Washington,edward25@example.com,001-281-895-3523x193,3506986315853039,2024-09-24 +Resort Hotel,0,29,2017,January,2,11,0,3,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,49.17,0,1,Check-Out,Wendy Tyler,hammondwhitney@example.org,+1-652-751-2055x69942,4585158140323,2025-02-26 +Resort Hotel,1,2,2017,August,31,3,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,1,A,A,0,No Deposit,9.0,179.0,0,Transient,63.95,1,1,No-Show,David Murray,iaguilar@example.com,(888)981-6704x412,341914846389260,2025-09-20 +City Hotel,0,0,2017,July,28,9,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,132.55,1,1,Check-Out,Robert Olsen,ksantiago@example.net,(415)983-4812x6854,180059079853741,2025-06-29 +City Hotel,0,30,2017,May,20,11,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient,102.08,0,1,Check-Out,Jesse Oconnell,katherine47@example.com,001-328-592-7792x5003,4277837379632790,2025-11-18 +City Hotel,0,32,2017,May,21,23,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,165.59,0,2,Check-Out,Laura Lawson,llopez@example.org,(428)295-2393x747,6530668771091808,2025-02-22 +Resort Hotel,0,43,2017,August,32,5,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,251.0,179.0,0,Transient,224.05,0,1,Check-Out,Michael Smith,patriciamcclure@example.org,(613)450-5724x34291,060461289666,2024-12-04 +City Hotel,1,266,2017,August,33,15,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,100.62,0,0,Canceled,Michael Gomez,garciascott@example.org,984.872.6908x2785,341672314927736,2024-04-12 +City Hotel,1,414,2017,May,18,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.51,0,0,Canceled,Susan Howell,ohayes@example.com,756-762-7755x307,3572181961018876,2024-12-18 +Resort Hotel,0,0,2017,February,6,7,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,295.0,179.0,0,Transient-Party,39.09,0,1,Check-Out,John Serrano,zwilson@example.org,001-841-458-6210x217,378962319038910,2024-06-28 +City Hotel,0,21,2017,September,38,18,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.4,0,0,Check-Out,Diana Ballard,jcook@example.org,851-356-3636x42069,30354824184647,2024-09-23 +Resort Hotel,1,60,2017,April,17,22,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,236.0,179.0,0,Transient,63.84,0,0,Canceled,Nicholas Nelson,alexandra28@example.net,001-927-795-6240,4130013879755,2024-08-30 +Resort Hotel,1,291,2017,September,36,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,D,A,0,No Deposit,29.0,179.0,0,Contract,45.56,0,2,Canceled,Amy Williams,bdean@example.net,4539058585,4301174885705,2025-07-13 +Resort Hotel,1,289,2017,July,28,9,2,5,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,142.58,0,0,Canceled,Christian Williams,heatherbeasley@example.com,321.572.6913,2241695823463452,2024-05-02 +City Hotel,0,11,2017,August,33,13,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Contract,76.34,0,1,Check-Out,Evan Sherman,armstrongcarol@example.org,6083453010,3501438463878405,2026-01-01 +City Hotel,0,3,2017,March,13,29,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,1,No Deposit,16.0,72.0,0,Transient,45.25,0,0,Check-Out,Allen White,ashleysullivan@example.net,(971)842-6486,6011026885111046,2024-06-05 +City Hotel,0,20,2017,January,2,1,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,6.0,179.0,0,Transient,150.25,0,1,Check-Out,Amanda Logan,nstevens@example.com,(926)890-0125x82904,587201182561,2024-09-22 +City Hotel,1,70,2017,January,2,4,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.18,0,1,Canceled,Jeremy Leach,davidmeyer@example.net,426-358-6567x5043,3570137025000062,2026-02-19 +City Hotel,0,44,2017,December,49,6,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,36.08,0,0,Check-Out,Jill Jensen,wjohnson@example.com,644-873-2600,4698710650030839,2024-10-14 +City Hotel,0,118,2017,September,36,3,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,108.11,0,1,Check-Out,Gregory Wood,tuckerdestiny@example.net,577-618-9807x541,4080943577239870,2025-01-17 +Resort Hotel,0,83,2017,May,20,19,2,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,161.77,0,0,Check-Out,John Lopez,mccluretracy@example.com,863.561.4956,3512813868925257,2026-02-05 +City Hotel,1,353,2017,October,43,24,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,83.95,0,0,Canceled,Dawn Choi,yharrington@example.org,734.713.5819,4604796155579740320,2024-06-25 +City Hotel,1,0,2017,May,18,3,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,5.74,0,0,No-Show,John Carrillo MD,sandravargas@example.com,679-616-2357x3191,30199861875106,2024-03-27 +City Hotel,1,243,2017,August,32,5,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,211.7,0,0,Canceled,Diane Taylor,sue38@example.net,001-330-434-6373x52550,373851488254173,2024-05-20 +Resort Hotel,0,2,2017,October,42,17,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,54.01,0,1,Check-Out,Craig Morrow,brian16@example.net,001-874-668-6054,371353938526203,2024-09-06 +Resort Hotel,0,240,2017,August,32,8,1,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,317.0,179.0,0,Transient-Party,57.72,0,0,Check-Out,Steven Walters,robin34@example.net,439-256-4994x4115,4955593723882305,2024-07-05 +City Hotel,0,0,2017,February,8,19,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,44.58,1,1,Check-Out,Elizabeth Cross,zfowler@example.com,001-995-635-3826x876,38481310858475,2025-07-12 +Resort Hotel,1,347,2017,September,37,10,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,174.0,179.0,0,Transient,116.93,0,0,Canceled,Austin Ellison,amandapotts@example.net,399-561-2857,3563967131438890,2026-03-10 +City Hotel,0,11,2017,May,20,17,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,D,2,No Deposit,14.0,190.0,0,Transient,92.78,0,0,Check-Out,Earl Gonzalez,hdavis@example.net,+1-781-744-2072x1160,4618767136505292250,2025-01-21 +City Hotel,0,41,2017,April,17,24,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,87.07,0,3,Check-Out,Chad Davis,qmoore@example.net,519-545-5618x8873,6579724936519340,2025-10-26 +City Hotel,1,151,2017,May,18,4,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,97.06,0,0,Canceled,Jay Williams,yshelton@example.org,362-640-9708x775,180036968307716,2026-03-27 +City Hotel,0,0,2017,December,49,9,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,63,Transient,101.52,0,1,Check-Out,Rachel Stanley,unichols@example.com,295-691-3985,4796009881294152,2024-06-19 +City Hotel,1,40,2017,October,40,7,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,75,Transient,82.65,0,0,Canceled,Regina Williams,mercedes30@example.org,288.812.1144x4118,676109845120,2025-08-11 +City Hotel,0,0,2017,February,9,28,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,I,0,No Deposit,14.0,45.0,0,Transient,62.97,0,0,Check-Out,Patrick Sanchez,joseph23@example.org,431-863-7612x683,4548433816472413,2025-08-16 +City Hotel,1,217,2017,July,30,22,0,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,102.96,0,0,Canceled,Tammy Wilson DDS,nicholasalexander@example.com,435-379-2800,6515761769983471,2025-09-05 +City Hotel,1,142,2017,March,13,24,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,128.85,0,0,Canceled,Dr. William Harris,stevenwashington@example.com,546-338-7396x543,30476814711277,2026-01-25 +City Hotel,0,142,2017,May,19,5,0,3,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,D,0,No Deposit,322.0,45.0,0,Transient,139.12,0,0,Check-Out,Marisa Mcconnell,rickywalsh@example.net,(749)779-2089,36821041520476,2025-05-24 +City Hotel,0,85,2017,May,18,1,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient,86.47,0,0,Check-Out,Amanda Chang,mcclaintodd@example.org,(939)909-0197x97377,4693990803662095949,2025-09-09 +City Hotel,1,163,2017,January,2,3,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,88.9,0,0,Canceled,Sydney Rodriguez,rothmichael@example.org,(626)908-8728,180058295191381,2025-01-19 +City Hotel,0,54,2017,February,9,24,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,225.13,0,3,Check-Out,Brittany Cherry,pattersonsamantha@example.net,945-907-5538x2222,6535848209507584,2024-10-29 +Resort Hotel,0,21,2017,June,24,11,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,99.13,0,3,Check-Out,Kim Davis,rhonda27@example.com,+1-920-306-6332x959,3504972171744563,2025-01-30 +City Hotel,1,162,2017,June,26,22,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.13,0,1,Canceled,Alan Hamilton,paul54@example.com,990.256.4480x628,213105557174604,2025-09-25 +City Hotel,0,0,2017,May,19,11,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Christopher Robinson,qbaker@example.com,001-352-471-9195x77481,4416801762622572097,2024-03-28 +City Hotel,1,41,2017,July,29,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient,107.38,0,1,Canceled,Jamie Esparza,davidpark@example.net,001-208-657-4848x540,3537953849652116,2024-09-22 +Resort Hotel,0,46,2017,April,15,9,1,3,2,0.0,0,BB,ESP,Online TA,Corporate,0,0,0,A,E,0,No Deposit,102.0,179.0,0,Transient,123.79,0,0,Check-Out,Ashley Miller,jonathanballard@example.com,001-283-792-9741x5819,4797283390940060205,2025-02-13 +City Hotel,0,47,2017,November,45,8,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient-Party,46.9,0,0,Check-Out,Alyssa Lang,brandy92@example.org,7238209580,6539526127360957,2024-05-05 +Resort Hotel,1,46,2017,December,52,26,2,4,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,76.65,0,0,Canceled,Brittany Berg,elizabethmorse@example.com,001-471-406-7066x280,341949314063047,2026-02-24 +City Hotel,0,35,2017,October,40,3,2,4,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,9.0,179.0,0,Transient,104.39,0,1,Check-Out,Kristin Clay,phillipserica@example.net,6989012076,6556854772765009,2024-04-01 +City Hotel,0,10,2017,January,2,2,0,2,1,0.0,0,BB,NLD,Online TA,Direct,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient,50.45,0,1,Check-Out,Melanie Browning PhD,coxisabella@example.net,749.752.3793x073,4815064539767,2025-05-06 +Resort Hotel,0,145,2017,March,11,13,1,3,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,12.0,179.0,0,Transient-Party,84.92,0,0,Check-Out,Ryan Mcguire,halljennifer@example.net,(558)547-8935x3844,502010879158,2025-08-05 +City Hotel,0,13,2017,September,36,9,1,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,211.0,0,Transient-Party,63.45,0,0,Check-Out,Stephen Allen,jonathan21@example.com,+1-614-286-4245x298,675919087485,2024-08-04 +City Hotel,1,106,2017,May,19,4,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,104.96,0,1,Canceled,Eric Hopkins,tristan00@example.net,878-265-4243,4080231718113,2024-09-08 +City Hotel,1,92,2017,May,22,30,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.92,0,1,Canceled,Lisa Maldonado,lisa62@example.com,681-371-3371x721,4244584824489457728,2025-07-01 +Resort Hotel,0,92,2017,May,19,4,2,4,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,50.73,0,1,Check-Out,Theodore Hayes,cherylsutton@example.com,200.543.4919,341888228104739,2025-01-31 +City Hotel,1,30,2017,August,35,26,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,77.09,0,0,Canceled,James Vargas,qduffy@example.com,854.590.6629,4272510259246,2025-07-17 +Resort Hotel,0,409,2017,July,30,26,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.37,0,1,Check-Out,Jenna Torres,brendajackson@example.org,6892094103,4411850862157040,2025-09-27 +Resort Hotel,0,34,2017,June,23,5,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,140.92,1,1,Check-Out,Christopher Shaw,roseperez@example.com,+1-626-544-5694,3593778018587327,2024-08-03 +City Hotel,1,0,2017,July,29,21,0,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,1,0,D,D,0,No Deposit,10.0,179.0,0,Transient,138.26,0,2,No-Show,Marcus Brown,floressteven@example.org,320-833-6693,344394134081316,2025-11-21 +Resort Hotel,0,16,2017,October,41,9,0,1,2,0.0,0,Undefined,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient-Party,100.68,0,0,Check-Out,Mark Dean,jcastro@example.com,(793)899-9215,3559972500779714,2024-09-25 +Resort Hotel,0,11,2017,April,16,18,0,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,75,Transient,66.12,0,1,Check-Out,Adam Williams,yateskayla@example.org,860-835-1919x4673,4747032986632,2025-08-20 +Resort Hotel,0,97,2017,April,15,8,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,103.15,0,0,Check-Out,Mary Howell,patelleon@example.org,+1-630-485-0206x537,6562942315789768,2024-09-16 +City Hotel,1,39,2017,November,45,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Contract,65.42,0,0,Canceled,John Boyd,allisonfranklin@example.com,8832809968,213188845521125,2025-01-15 +City Hotel,0,100,2017,December,52,27,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,25.0,179.0,0,Contract,79.02,0,0,Check-Out,David Morgan,caleb16@example.net,3958839807,38946665455929,2024-10-29 +City Hotel,1,109,2017,April,15,8,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,101.22,0,0,Canceled,Margaret Bentley,cantrellkathleen@example.com,+1-820-305-3983x81277,30415834767414,2025-09-30 +Resort Hotel,0,18,2017,February,8,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,67.71,0,0,Check-Out,Allison Horn,shannonlynch@example.com,6366148136,2252380401771784,2025-07-04 +City Hotel,1,193,2017,August,32,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,65.0,179.0,0,Transient,162.68,0,0,Canceled,Mr. Thomas Lopez,nathan69@example.com,239.682.6021x2031,2232607488945674,2025-12-03 +City Hotel,0,50,2017,March,12,16,1,2,2,0.0,0,SC,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,90.15,0,0,Check-Out,William Wilkins,bstanley@example.net,(691)389-1004x604,372871135100844,2025-12-23 +Resort Hotel,0,1,2017,December,51,20,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Refundable,37.0,179.0,0,Contract,103.37,0,0,Check-Out,Elizabeth Santiago,andreamartin@example.net,001-671-871-1923,4123249454462810,2024-10-13 +City Hotel,0,43,2017,July,27,1,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,118.67,0,0,Check-Out,Melissa Ray,bradleybryant@example.net,946-656-7501,3534474200093322,2024-12-02 +City Hotel,0,10,2017,June,25,15,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,135.0,0,2,Check-Out,Luis Bush,michaelhenson@example.com,561.423.5473x93719,30081993964539,2026-01-02 +Resort Hotel,0,1,2017,March,12,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,222.0,0,Transient,47.76,0,0,Check-Out,Justin Kelley,angela94@example.net,765.906.8494,4957966909689276179,2024-06-30 +Resort Hotel,1,251,2017,July,27,5,3,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,314.0,179.0,0,Transient-Party,99.34,0,0,Canceled,Nancy Johnson,esantiago@example.net,+1-933-548-8552x095,5343279863269457,2024-05-26 +City Hotel,0,305,2017,May,19,10,2,2,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,D,B,0,No Deposit,12.0,179.0,0,Transient,89.47,0,3,Check-Out,Thomas Hendrix,ronalddixon@example.com,(472)667-2516,060413062211,2026-03-08 +City Hotel,0,155,2017,June,25,18,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,120.4,0,1,Check-Out,Stephanie Middleton,psmith@example.com,+1-201-864-0004x535,3599393419276548,2025-04-27 +City Hotel,1,144,2017,March,14,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,30.56,0,0,Canceled,Meghan Turner,aaronjones@example.com,+1-740-949-2740x883,6011750160551382,2024-12-18 +City Hotel,1,31,2017,August,33,19,1,0,2,0.0,0,BB,,Online TA,Undefined,0,0,0,B,E,0,No Deposit,10.0,179.0,0,Transient-Party,119.13,0,1,Canceled,Samuel Henry,dreyes@example.net,897-802-1625,2289648097943181,2025-02-11 +Resort Hotel,1,372,2017,October,41,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,A,0,No Deposit,9.0,179.0,0,Transient-Party,87.32,0,1,Canceled,Jeremy Brown,waltonnicholas@example.net,(833)420-1212x302,2720031733959985,2025-10-28 +City Hotel,0,21,2017,October,43,25,1,2,1,0.0,0,SC,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,227.0,0,Transient,103.85,0,0,Check-Out,Nicholas Vazquez,alexis41@example.com,001-651-902-7217x84366,4083959910284,2025-09-21 +City Hotel,0,101,2017,June,23,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.16,0,1,Check-Out,Julie Beltran,sanderswayne@example.org,508.458.7452x05944,375322468143933,2024-06-15 +Resort Hotel,0,161,2017,January,3,13,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,63.77,0,1,Check-Out,Carolyn Sharp,robinsonthomas@example.net,243-789-8525x6396,6011052537051448,2025-06-14 +City Hotel,1,20,2017,September,38,18,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,144.2,0,0,Canceled,Garrett Salazar,davisbruce@example.org,544-758-5224x361,3596569645526201,2025-01-03 +City Hotel,0,87,2017,May,20,18,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,27.0,179.0,0,Transient-Party,107.87,0,0,Check-Out,Richard Goodman,vincent64@example.net,+1-699-404-4708,4270812576127057067,2026-01-08 +Resort Hotel,0,141,2017,April,14,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,47.7,1,1,Check-Out,Teresa Moreno,garymartin@example.com,(225)235-1120x55595,371893192990249,2024-04-26 +City Hotel,1,400,2017,August,34,26,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,0.53,0,0,Canceled,Allison Mercer,jamiesnyder@example.org,+1-498-798-6395x68470,340736489028314,2024-12-08 +City Hotel,1,350,2017,July,31,29,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,132.05,0,2,Canceled,Michael Rodriguez,wilsonsteven@example.net,433-771-9146,180069111814528,2025-07-08 +City Hotel,1,309,2017,May,22,26,1,0,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,108.73,0,0,Canceled,Mark Anderson,gkemp@example.net,(246)937-0038x31228,676144884787,2024-03-31 +City Hotel,1,0,2017,January,3,18,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,38.98,0,1,Check-Out,Amy Hernandez,jchandler@example.org,(389)996-9006x6330,4594811084571,2025-05-22 +Resort Hotel,0,39,2017,August,35,27,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Contract,130.31,0,2,Check-Out,Linda Jackson,anthonylittle@example.com,+1-879-501-1294x110,3539651520512744,2024-06-24 +Resort Hotel,1,80,2017,April,15,11,1,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,44.52,0,0,Canceled,Ronnie Murphy,scottestes@example.net,+1-476-608-8406x745,4926223867492,2024-11-14 +City Hotel,0,39,2017,October,41,10,0,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,81.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Wayne Moore,sheppardcassandra@example.com,735.693.8045x87079,4564641372460338,2025-05-11 +City Hotel,0,3,2017,December,51,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,16.0,179.0,0,Transient,57.41,1,3,Check-Out,Anthony Brown,imartinez@example.org,+1-519-768-6360,5247746960751600,2025-01-29 +City Hotel,0,56,2017,October,44,29,1,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,174.0,179.0,0,Transient,63.63,0,0,Check-Out,Jessica Mcintosh,seanpark@example.com,+1-730-510-5963x666,4147922386133269,2024-06-26 +City Hotel,1,265,2017,June,24,9,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,101.23,0,0,Canceled,Christine Miles,diana87@example.org,+1-600-800-4370x47850,4742590809409,2025-06-06 +City Hotel,0,151,2017,June,26,24,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,D,1,No Deposit,240.0,179.0,0,Transient,112.37,0,3,Check-Out,Brooke Garcia,tgreen@example.net,001-466-592-8074,4780681480915995,2025-11-14 +City Hotel,0,7,2017,December,49,5,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,78.21,0,1,Check-Out,Jeffrey Patel,colebrian@example.com,+1-470-333-5424x924,180086313107865,2025-03-30 +City Hotel,0,3,2017,January,4,24,0,1,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,D,0,No Deposit,10.0,45.0,0,Transient,56.92,0,0,Check-Out,Bailey Martin,mathew83@example.com,787-910-3195,3522888398401084,2025-03-15 +City Hotel,1,285,2017,August,31,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,A,0,No Deposit,14.0,179.0,0,Transient-Party,189.69,0,2,Canceled,Christopher Castaneda,jwilliamson@example.org,779.604.7928,4799771325696089,2024-12-30 +City Hotel,0,88,2017,December,52,23,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,123.24,0,1,Check-Out,Jacob Zamora,chenleroy@example.com,001-221-464-9231,4987861394635373417,2024-10-28 +City Hotel,0,10,2017,February,9,28,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,15.0,81.0,0,Transient,48.28,0,1,Check-Out,Christopher Dean,aaron29@example.com,766-875-7202x900,4164938451358,2025-09-24 +Resort Hotel,0,159,2017,July,31,29,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,105.7,0,1,Check-Out,James Bell,seanespinoza@example.net,(309)526-8040x42844,4450664304634,2025-06-30 +City Hotel,0,2,2017,February,9,26,0,4,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Contract,185.49,0,0,Check-Out,Kevin Jackson,davischristy@example.net,649.622.0651x932,371852402609890,2024-06-29 +City Hotel,0,0,2017,October,41,10,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,9.0,179.0,0,Transient,0.81,0,0,Check-Out,Erika George,fjuarez@example.com,519.665.2309x787,4827824020763088,2025-05-28 +City Hotel,0,1,2017,December,49,5,0,1,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,86.19,0,0,Check-Out,Morgan Torres,kevin63@example.com,(438)467-0492,30166732145316,2024-10-24 +Resort Hotel,1,37,2017,May,19,8,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,234.29,0,0,Canceled,Paul Jimenez,brian84@example.org,+1-312-306-7075x1678,4352518212767,2025-05-17 +Resort Hotel,0,16,2017,March,12,22,1,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,85.9,1,0,Check-Out,Paige Patterson,taylor96@example.com,411.205.7291,4436414336707510905,2025-10-23 +City Hotel,1,17,2017,July,29,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,283.0,179.0,0,Transient,120.7,0,0,Canceled,Jesse Peters,jillleblanc@example.com,925-591-0700,3598954307036350,2025-06-15 +City Hotel,0,89,2017,April,18,27,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.61,0,1,Check-Out,Samantha Bailey,perezrebecca@example.net,214-339-3010x36966,4382863386638515,2024-04-14 +City Hotel,1,15,2017,June,23,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,3.0,56.0,0,Transient,46.25,0,0,Canceled,Edgar Romero,fjohns@example.net,+1-354-726-8582x18383,4971475933441868870,2024-04-05 +City Hotel,1,168,2017,August,35,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,102.84,0,2,Canceled,Susan Carney,shannon92@example.org,001-471-236-1805x4605,4552367061734894517,2025-02-19 +City Hotel,1,50,2017,March,9,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,73.69,0,0,No-Show,Kevin Roach,ronald60@example.com,(859)876-3889,060460870342,2024-11-22 +City Hotel,1,1,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.7,0,0,Canceled,Jonathan Sharp,michelle96@example.net,8447162047,4668532976067170,2025-04-23 +City Hotel,0,111,2017,May,19,4,1,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,77.0,179.0,0,Transient-Party,81.62,0,0,Check-Out,Justin Hensley,jenny63@example.net,918.554.6548x1062,4425463912003947083,2024-11-19 +City Hotel,0,91,2017,March,11,12,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,104.19,0,1,Check-Out,Amy Marshall,hdawson@example.com,4856182537,630467130849,2024-12-30 +Resort Hotel,1,0,2017,August,33,11,0,2,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,245.0,179.0,0,Transient,232.25,1,0,Canceled,Lauren Mclean,michelle86@example.net,7546495878,3594654948648217,2025-10-07 +City Hotel,1,143,2017,July,31,29,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,222.07,0,1,Canceled,Andrea Brooks,williammason@example.org,605.354.9785x8003,180034171964068,2025-10-08 +Resort Hotel,1,100,2017,December,2,31,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,241.0,179.0,0,Transient,40.25,0,0,Canceled,Emily Taylor,martinezzachary@example.org,001-608-746-2905x443,2404989115927172,2025-01-24 +City Hotel,1,7,2017,March,11,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,171.0,179.0,0,Transient,72.87,0,0,Canceled,Mrs. Kathryn Smith DVM,tonyaguirre@example.com,(542)397-8854x08921,4314551267546,2025-11-28 +Resort Hotel,0,2,2017,May,22,30,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,111.73,1,2,Check-Out,James Bishop,james76@example.com,270-572-5933,4184970698057480,2024-05-01 +City Hotel,0,16,2017,August,35,24,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,176.6,1,1,Check-Out,Amber Blair,paulvincent@example.net,924.352.5513,4608112157775678,2025-05-29 +City Hotel,0,16,2017,August,34,23,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.02,0,0,Check-Out,Ricardo Barker,lcole@example.org,976-235-6376x9790,4782024934555,2024-09-09 +Resort Hotel,0,42,2017,July,29,22,1,0,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,138.0,179.0,0,Contract,62.08,0,0,Check-Out,Aaron Crane,rstewart@example.com,722.760.4021x0450,180065396091568,2024-10-05 +Resort Hotel,0,68,2017,August,34,25,0,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,240.0,179.0,0,Transient,200.18,1,1,Check-Out,Jordan Casey,angela86@example.com,464.668.5238,3537306334286033,2024-06-25 +Resort Hotel,1,50,2017,November,45,5,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,240.0,179.0,0,Transient,86.36,0,0,Canceled,Kathy Johnson,kennethdavis@example.org,+1-417-992-6374,213178343800105,2025-02-05 +City Hotel,0,21,2017,June,25,23,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient-Party,138.42,0,1,Check-Out,Jason Hines,phylliswilliams@example.com,876.683.5077x5486,2275327189893358,2024-09-30 +City Hotel,0,31,2017,March,10,7,0,1,3,0.0,0,SC,ESP,Complementary,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,69.64,0,0,Check-Out,Scott Soto,kenneth45@example.com,(989)962-4576x51478,4121583372180,2025-01-10 +City Hotel,1,405,2017,June,24,12,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,111.88,0,0,Canceled,Mark Moore,collinsjessica@example.net,499.457.0843x5376,180035002270799,2025-07-03 +City Hotel,0,37,2017,December,49,4,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,109.65,0,1,Check-Out,Brian Cannon,kristinameyers@example.com,+1-281-771-8500x104,3549284779246109,2024-03-29 +Resort Hotel,0,19,2017,November,44,2,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,202.84,1,1,Check-Out,Kristina Thompson,stacycole@example.org,207.596.7385,2716453231102460,2025-08-08 +Resort Hotel,0,6,2017,March,12,20,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,320.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Mikayla Baker,jonespatricia@example.net,678.790.4960x3380,30331926299085,2025-03-06 +City Hotel,0,1,2017,March,10,9,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,H,B,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Veronica Koch,marioskinner@example.org,443.777.0826,180006839189866,2024-07-08 +City Hotel,1,167,2017,August,35,27,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,243.91,0,0,Canceled,Johnathan Sanchez,jonathanduran@example.com,+1-360-447-5617x602,4626782680841920,2025-12-04 +Resort Hotel,0,0,2017,March,10,7,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,0,No Deposit,244.0,179.0,0,Transient,44.96,1,1,Check-Out,Anne Savage,tpatterson@example.com,557.811.3928,373517426385821,2024-09-02 +City Hotel,0,157,2017,August,32,5,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Contract,220.84,0,3,Check-Out,Deborah Farrell,rileynicole@example.net,732.235.5507x448,4675101387253919,2025-12-30 +Resort Hotel,0,0,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,360.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Emily Davis,robertrice@example.net,786.673.2632,582587230860,2026-03-06 +City Hotel,1,2,2017,February,9,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,69.24,0,1,No-Show,Theresa Hill,baileyteresa@example.net,9629347111,36860153446930,2026-01-18 +City Hotel,0,53,2017,April,15,10,1,1,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,109.44,0,1,Check-Out,Kristina Allen,laurasmith@example.com,7566708195,4655735316969204,2025-01-02 +City Hotel,0,86,2017,February,9,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,85.96,1,2,Check-Out,Mrs. Stephanie Fritz,marcuslynch@example.org,6984832957,6561686856325323,2025-06-30 +City Hotel,0,13,2017,March,13,27,2,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.03,0,3,Check-Out,Jonathan Guerrero,latasha10@example.org,001-873-342-7918x6660,4941914001899973808,2024-05-02 +City Hotel,0,78,2017,June,24,8,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,96.39,0,1,Check-Out,Lori Morrison,john32@example.net,(664)415-7670,4494806052578440297,2025-11-07 +City Hotel,1,252,2017,June,24,8,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,76.17,0,0,Canceled,Nicole Hamilton,navery@example.org,7504999081,5204763529019040,2025-08-13 +Resort Hotel,0,12,2017,April,14,2,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,17.0,234.0,0,Transient,44.85,0,0,Check-Out,Tony Nielsen,vwarren@example.com,621-288-2443,349913464111263,2025-07-18 +Resort Hotel,0,11,2017,May,19,8,0,3,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,6.74,0,3,Check-Out,Lindsay Morgan,bowmanmichael@example.net,(270)613-3218,4203870718661,2024-05-22 +City Hotel,1,154,2017,August,32,9,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,233.0,179.0,0,Transient,122.06,1,0,Canceled,Mike Pearson,knightwhitney@example.org,7854296706,30537887437684,2025-07-16 +City Hotel,0,143,2017,November,48,25,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,75.31,0,2,Check-Out,Carlos Smith,robert28@example.org,+1-564-839-1430x03312,2720318438721533,2024-08-09 +Resort Hotel,0,45,2017,November,44,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient,3.47,0,0,Check-Out,Ana Davis,ortegakathleen@example.org,806.601.3555,4234490609592,2024-04-27 +Resort Hotel,1,311,2017,April,18,30,2,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,275.0,179.0,0,Transient,102.43,0,0,Canceled,Nicole Ellis,darryl32@example.com,+1-251-516-1615,4612163541755375,2024-06-28 +City Hotel,0,43,2017,January,2,3,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.07,0,2,Check-Out,Barbara Mitchell,gabriel47@example.net,(213)549-4519,676313066125,2024-08-23 +Resort Hotel,0,43,2017,October,41,13,2,7,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,G,0,No Deposit,256.0,179.0,0,Transient,80.26,0,0,Check-Out,Cynthia Henderson,michaelgreene@example.org,001-334-657-1555x2727,345478622075465,2024-06-06 +City Hotel,0,38,2017,November,47,24,1,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,44.9,0,1,Check-Out,Joshua Robbins,zhanson@example.net,468.288.8161,6541603912455940,2024-05-11 +Resort Hotel,0,41,2017,April,15,11,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,C,1,No Deposit,241.0,179.0,0,Transient-Party,142.29,0,2,Check-Out,Amy Caldwell,asmith@example.net,(547)598-5184x81284,4993523367796782657,2024-07-21 +City Hotel,0,39,2017,December,52,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,105.64,0,1,Check-Out,Zachary Morris,andrew82@example.org,(670)700-4095x2449,4730881200803973,2026-03-11 +City Hotel,0,52,2017,April,16,15,1,1,2,0.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient,84.06,0,0,Check-Out,Madison Garcia,michellehorton@example.org,(459)544-3359x89120,5515956382250082,2024-05-18 +Resort Hotel,1,317,2017,July,31,29,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,240.0,179.0,0,Transient,115.27,0,0,Canceled,Stephanie Hayden,samantha52@example.net,(380)905-1407x7032,3514947419376137,2024-07-13 +City Hotel,0,55,2017,October,41,9,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,61.69,0,1,Check-Out,Ryan Cox,gonzalezselena@example.com,+1-355-623-9332x612,4928199274434582391,2025-10-12 +City Hotel,1,105,2017,August,31,2,2,2,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,126.61,0,0,Canceled,Ricardo Clark DVM,rebekahsanders@example.com,9013880430,3547810839751001,2025-03-28 +Resort Hotel,0,1,2017,March,12,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,13.0,222.0,0,Transient,54.12,1,3,Check-Out,Heather Moss MD,kellipratt@example.org,001-686-233-9128x77496,6011003320526740,2024-09-22 +Resort Hotel,1,35,2017,June,25,21,4,6,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Contract,245.95,0,2,No-Show,Elijah Smith,glucero@example.net,563-335-2396,30258788079778,2025-09-19 +Resort Hotel,0,103,2017,September,37,16,1,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,63.29,0,0,Check-Out,Elizabeth Davis,mariapowell@example.net,5355535750,4844883464065607,2026-01-01 +Resort Hotel,1,35,2017,November,47,24,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,137.0,179.0,0,Transient,83.06,0,1,No-Show,Kimberly Howe,swilson@example.org,995-893-3943x700,340018017667545,2024-07-07 +City Hotel,0,392,2017,April,17,23,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,0,Transient-Party,110.97,0,0,Check-Out,Devon Johnson,stevensgeorge@example.org,460.781.6190,060457931214,2025-08-24 +City Hotel,1,108,2017,June,26,24,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,67.0,179.0,0,Transient,103.17,0,0,Canceled,Jeremy Nguyen,robertolarson@example.com,(967)430-0466x8309,6011424192894935,2024-07-18 +City Hotel,0,1,2017,May,21,22,0,2,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,James Wilson,halljacqueline@example.net,649.608.9469,30408351156079,2025-06-01 +City Hotel,0,2,2017,October,43,27,2,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,121.64,0,1,Check-Out,Barbara Williams MD,campbelllori@example.net,582.407.6756x1844,349627991485863,2026-01-10 +City Hotel,0,151,2017,June,25,20,2,5,3,1.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,216.71,0,2,Check-Out,Jerome Owens,shiggins@example.org,669-481-1652,3587114854862277,2025-10-06 +Resort Hotel,0,0,2017,February,7,14,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,1,A,A,1,No Deposit,190.0,179.0,0,Transient-Party,38.65,0,0,Check-Out,Russell Ramos,bradleyestrada@example.org,001-984-423-3703x314,4588197022119264254,2024-11-29 +City Hotel,1,42,2017,March,13,28,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.29,0,1,No-Show,Whitney Sandoval,gonzalezerik@example.com,(899)490-2441x031,213173183184793,2024-04-05 +City Hotel,0,298,2017,October,41,10,1,0,1,0.0,0,SC,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,101.32,0,1,Check-Out,Scott Morales,maychelsea@example.com,620-851-9244,374751372236972,2024-05-13 +City Hotel,0,16,2017,July,31,30,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,0,No Deposit,14.0,45.0,0,Transient,0.5099000000000001,0,2,Check-Out,Jessica Hill,laura92@example.net,427.500.9020,4102756563766311123,2024-10-03 +City Hotel,1,147,2017,September,40,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,62,Transient,100.58,0,0,Canceled,Jacob Garcia,ramosmartin@example.net,001-736-202-0938,343912802528820,2025-09-12 +City Hotel,0,6,2017,September,36,4,2,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,115.96,0,2,Check-Out,Deborah Atkins,david51@example.net,548-737-2076x7653,347782767483949,2026-01-14 +City Hotel,0,35,2017,August,33,14,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,162.45,1,1,Check-Out,Ryan Edwards,maddoxtracey@example.net,338.367.8746,213123391321646,2024-06-28 +Resort Hotel,0,106,2017,March,11,14,0,2,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,11.0,179.0,75,Transient-Party,69.34,1,3,Check-Out,Heather Gallegos,cameron20@example.com,+1-819-691-6500x26934,4508159415277576,2025-08-03 +City Hotel,1,97,2017,October,42,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,14.0,179.0,19,Transient,133.0,0,1,Canceled,Caitlin Ford,nancydawson@example.com,9359664183,30188366061346,2025-11-28 +City Hotel,0,43,2017,July,27,8,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,124.48,0,0,Check-Out,Jason Harvey,ghammond@example.net,387.515.5228,564317615693,2025-11-26 +Resort Hotel,0,97,2017,June,25,19,4,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,123.72,0,0,Check-Out,Chad George,pdavis@example.net,001-967-395-3464x1201,4435339872369419187,2025-07-29 +City Hotel,0,0,2017,January,2,5,2,0,2,0.0,0,SC,GBR,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,40.71,0,0,Check-Out,Samantha Price,griffinjustin@example.org,+1-701-404-8970x51381,3585028580217576,2025-11-14 +City Hotel,1,261,2017,October,42,21,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,38,Transient,82.24,0,0,Canceled,Stephanie Harper,villalydia@example.org,(226)260-5432,4006188257832393,2025-12-29 +Resort Hotel,0,26,2017,November,44,3,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,97.72,0,0,Check-Out,Alex Mills,maria64@example.com,4384554179,3530757927028082,2024-06-01 +Resort Hotel,0,3,2017,April,14,6,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,222.0,0,Transient,82.98,1,1,Check-Out,Jeff Smith,townsendteresa@example.org,(797)254-7870,30237441061159,2024-08-23 +Resort Hotel,1,95,2017,January,4,27,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,58.0,0,0,Canceled,Darin Olsen,nicholas69@example.net,(719)831-6631x928,30326725231024,2024-03-28 +Resort Hotel,0,1,2017,December,49,4,0,1,2,0.0,0,FB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,72.0,0,Transient,89.37,0,0,Check-Out,Alyssa Hanson,trodriguez@example.com,847-905-8646,2269235566739367,2024-04-11 +City Hotel,0,21,2017,September,37,13,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,101.84,0,1,No-Show,Holly Willis,ewingkristina@example.net,+1-372-239-9709x97547,4785164761384087,2025-12-31 +City Hotel,1,12,2017,January,2,3,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,105.77,0,0,Canceled,Lauren Cook,bakerjames@example.com,+1-280-569-0517x620,180017763201056,2025-04-22 +City Hotel,0,26,2017,March,13,26,1,5,2,0.0,0,BB,DEU,Online TA,TA/TO,1,0,1,A,D,1,No Deposit,9.0,179.0,0,Transient,84.9,0,1,Check-Out,Christine Green,jennifer42@example.org,(674)703-1881,3562268687465259,2025-06-07 +City Hotel,1,132,2017,March,14,30,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,238.0,179.0,0,Transient,42.38,0,2,No-Show,Cory Reed,charlesrandall@example.org,632-665-5138,4084818529869501,2025-01-16 +Resort Hotel,0,0,2017,April,18,30,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,114.44,0,0,Check-Out,Jenny Harris,hannah24@example.org,270-487-7708,4852295255867258,2024-11-15 +City Hotel,1,93,2017,January,2,6,0,3,1,0.0,0,SC,,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,167.47,0,0,Canceled,Sean Neal,matajames@example.com,(695)914-8726x9919,36441103594630,2025-05-04 +Resort Hotel,1,160,2017,June,23,9,1,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,95.44,0,1,Canceled,Michael Sanchez,natasharamirez@example.com,329-569-4055x300,378894092718675,2025-07-18 +Resort Hotel,1,18,2017,August,32,6,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,107.54,0,0,Canceled,Kara Mann,francojames@example.net,+1-345-452-7214x507,6552498528444305,2025-08-05 +City Hotel,0,159,2017,August,32,6,1,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,126.33,0,0,Check-Out,Mr. Justin Davis DDS,wbecker@example.net,250-477-4103,4829388694518259,2024-07-19 +City Hotel,0,137,2017,April,16,18,2,0,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,70.09,0,1,Check-Out,Michele Miller,brianjohnson@example.org,+1-983-607-5330,4963240186756218,2024-07-19 +City Hotel,0,8,2017,November,44,2,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,136.08,0,1,Check-Out,Cynthia Kennedy,thomas10@example.org,(760)936-5960x5922,3577926177384826,2025-09-22 +Resort Hotel,1,2,2017,April,15,7,0,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,Non Refund,15.0,179.0,0,Transient,2.81,0,0,Canceled,Michael Moore,jjones@example.org,433.708.3637x7365,4222276393671763,2025-03-21 +Resort Hotel,0,11,2017,May,21,26,1,3,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,A,1,Refundable,11.0,223.0,0,Transient-Party,122.88,0,0,Check-Out,Derek Jackson,karen36@example.com,7664041230,4670252782043213283,2026-01-14 +Resort Hotel,1,156,2017,September,36,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,143.05,0,2,Canceled,Taylor Smith,wyattdawn@example.org,(288)538-1250,3594334203327068,2024-08-01 +City Hotel,1,390,2017,September,36,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.01,0,0,Canceled,Peter Garcia,galvanjessica@example.com,618-620-5811x5147,6011949854673409,2024-04-16 +City Hotel,0,42,2017,May,22,29,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,97.6,0,2,Check-Out,John Guzman II,salasshaun@example.org,911.682.5434,4797733237184234,2026-03-15 +City Hotel,0,187,2017,July,30,23,0,1,1,0.0,0,BB,PRT,Aviation,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,111.24,0,0,Check-Out,Karina Hess,christinehill@example.net,001-578-944-0339x5527,213156521109523,2024-12-21 +Resort Hotel,1,14,2017,March,11,15,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,142.79,1,0,Check-Out,Sarah Hardy,colonmichele@example.com,212.649.1311x6881,30055947855977,2025-01-05 +Resort Hotel,0,5,2017,March,11,12,0,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,C,0,No Deposit,16.0,230.0,0,Transient,43.14,1,0,Check-Out,Travis Thompson,rgreen@example.com,001-567-477-1164,060409399304,2025-04-11 +City Hotel,0,101,2017,May,19,10,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,141.43,0,0,Check-Out,Jordan Thomas,marshallvanessa@example.net,353.203.9447x93087,372231327107380,2025-06-20 +Resort Hotel,1,54,2017,July,30,27,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,252.0,0,0,Canceled,Elizabeth Stone,gallagherchristopher@example.com,+1-404-934-2975,502019027437,2025-07-06 +Resort Hotel,0,185,2017,March,13,27,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,142.0,179.0,0,Transient-Party,49.78,0,0,Check-Out,Michelle Hensley,adam76@example.org,5358801750,3531664631205494,2025-07-31 +City Hotel,0,41,2017,March,11,9,0,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,78.49,0,3,Check-Out,John Parsons,larry93@example.org,(898)810-3109x958,4769010404128377544,2024-11-03 +City Hotel,1,101,2017,June,26,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,132.45,0,1,Canceled,Annette Gilmore,leegary@example.org,001-554-318-2675x67475,4949479157343,2024-08-06 +City Hotel,0,1,2017,October,41,12,0,1,2,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,118.77,1,0,Check-Out,Karen Pratt,gonzaleskathryn@example.com,+1-331-691-4616x394,2244291830106347,2025-09-04 +Resort Hotel,0,16,2017,August,35,27,0,1,1,1.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient-Party,193.81,1,2,Check-Out,Earl Thomas,guy07@example.org,2015140290,4983996645942402,2025-11-26 +Resort Hotel,0,83,2017,March,12,21,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,174.0,179.0,43,Transient-Party,0.5099000000000001,0,0,Check-Out,Wendy Garza,bowmandylan@example.com,735.211.4516x103,4391093637654561,2025-07-27 +City Hotel,1,144,2017,July,30,28,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,84.65,0,0,Canceled,Richard Chen,parsonsbeth@example.com,707.392.9791,675941797341,2024-07-31 +City Hotel,0,197,2017,August,34,24,2,5,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient-Party,158.79,0,1,Check-Out,Carly Hill,caitlin06@example.com,(488)337-2705x382,6524302330698139,2026-02-04 +City Hotel,0,71,2017,December,51,20,1,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.98,0,0,Check-Out,Andrew Martinez,ygarza@example.org,001-605-960-8666,30293580061989,2024-12-10 +City Hotel,0,154,2017,August,33,17,2,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,B,2,No Deposit,10.0,179.0,0,Transient,131.28,0,2,Check-Out,Martha Shah,nicolesmith@example.net,932-628-5529x040,347038935605503,2024-12-19 +Resort Hotel,1,0,2017,August,35,25,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,0,No Deposit,19.0,179.0,0,Transient,128.71,0,0,Canceled,Mark Davis,kathryn46@example.org,9559778326,4551094273321,2026-01-08 +Resort Hotel,0,1,2017,January,3,18,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,277.0,179.0,0,Transient-Party,41.1,0,0,Check-Out,Michael Clark Jr.,juan29@example.com,(246)930-0055x71655,2519456589847023,2024-12-28 +City Hotel,1,19,2017,August,31,3,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,243.89,0,2,Canceled,Dr. Sara Rodgers,michaelbrown@example.net,258-614-2413x72479,4823736538834918,2025-04-19 +City Hotel,0,161,2017,August,35,25,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,F,0,No Deposit,15.0,179.0,0,Transient,215.46,1,3,Check-Out,Christopher Mann,troy82@example.com,598.335.0670,375673671539568,2024-09-20 +City Hotel,1,18,2017,August,31,2,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,8.0,179.0,0,Transient,126.89,0,1,Canceled,Kathleen Walker,zanderson@example.org,(286)270-1836x89541,3564019075332066,2024-07-08 +City Hotel,0,102,2017,August,34,19,1,4,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.13,0,1,Check-Out,Kelly Hall,amber02@example.org,902-278-4555,4739614132750,2024-04-01 +Resort Hotel,0,84,2017,March,13,25,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,100.62,0,1,Check-Out,Olivia Williams,cheyennecunningham@example.net,239-743-3335,6011011051769736,2025-11-18 +Resort Hotel,0,23,2017,March,13,26,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,48.92,1,1,Check-Out,Felicia Moore,brownlisa@example.com,4849402915,4492899565601855,2024-04-17 +Resort Hotel,0,0,2017,July,30,24,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,167.46,1,0,Check-Out,Melissa Jensen,apeterson@example.org,302.798.4525x534,2613491206614519,2024-10-18 +Resort Hotel,1,152,2017,December,50,10,2,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,75,Transient,95.71,0,0,Canceled,Yvonne Powell,jessica75@example.com,631-987-3668,3519710346088224,2024-11-10 +Resort Hotel,0,138,2017,March,11,15,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,12.0,222.0,0,Transient-Party,42.65,0,0,Check-Out,James Hayes,estradateresa@example.net,001-977-655-3590,4006893152625244,2026-01-10 +City Hotel,0,16,2017,October,43,22,1,3,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,71.0,0,Transient,45.55,0,1,Check-Out,Jennifer Williams,madisonwilliams@example.org,711-961-0639,4088411826185879410,2024-05-02 +City Hotel,1,2,2017,March,10,6,1,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,67.86,0,1,Canceled,Brian Anderson,wilsonamanda@example.org,817-864-3008x48659,6578932741205432,2025-01-30 +City Hotel,0,3,2017,January,4,24,0,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,59.0,0,0,Check-Out,Ryan Douglas,stephengarcia@example.net,+1-247-409-3486x6512,213127383981150,2025-08-13 +City Hotel,0,4,2017,December,50,12,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,11.0,179.0,0,Group,108.67,0,0,Check-Out,Nathan Fields,nnichols@example.net,223-451-5470x154,502040107620,2025-02-15 +Resort Hotel,1,30,2017,October,41,8,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,269.0,179.0,0,Contract,76.69,0,0,Canceled,Christy Hernandez,philip46@example.net,+1-653-682-4385x0480,2714769387911905,2025-12-17 +Resort Hotel,0,2,2017,November,46,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,2,No Deposit,14.0,87.0,0,Transient,51.2,0,1,Check-Out,Audrey Horton,nruiz@example.net,001-852-310-6318,4190575805815450392,2026-02-07 +Resort Hotel,0,36,2017,October,41,12,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,307.0,179.0,0,Transient,76.87,0,0,Check-Out,Faith Schultz,christensenamanda@example.org,(833)306-2995x477,30022334878475,2025-06-02 +City Hotel,1,86,2017,December,48,1,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,101.77,0,0,Canceled,David Scott,millervalerie@example.net,314.690.7505,4754121693546545603,2025-12-27 +City Hotel,0,8,2017,February,7,15,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,78.35,0,0,Check-Out,Kimberly Barker,kanesandra@example.net,(831)482-5221x6837,4236089191486,2026-02-04 +City Hotel,1,105,2017,April,18,28,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,64.17,0,0,Canceled,Dr. Erika Lawrence,nicholassmith@example.org,+1-914-725-5785x37348,4581984967088,2025-01-27 +Resort Hotel,0,152,2017,April,14,6,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient-Party,62.06,0,0,Check-Out,Angela Bryan,vboyd@example.com,651-676-5085,3589589673201955,2025-10-01 +City Hotel,0,49,2017,October,42,15,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,179.53,0,1,Check-Out,Todd Arias,faith08@example.org,001-442-958-5766,676238239393,2025-05-31 +City Hotel,0,34,2017,December,49,4,2,5,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,112.64,0,2,Check-Out,Devon Pruitt,porterchristina@example.org,+1-627-845-9690,4363450119808327,2024-07-21 +Resort Hotel,0,12,2017,May,21,23,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,119.97,1,1,Check-Out,Nancy Gonzales,zfreeman@example.org,001-917-778-2182,213102617934622,2025-05-07 +Resort Hotel,0,152,2017,August,33,13,3,5,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,C,C,2,No Deposit,247.0,179.0,0,Transient-Party,252.0,0,1,Check-Out,John Thomas,michaellarson@example.net,8884384112,4087880306683155,2025-04-28 +City Hotel,0,30,2017,February,6,8,1,1,3,0.0,0,BB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,48.19,0,0,Check-Out,Amy Burns,moodyscott@example.net,342-844-8532x57319,2298475523785898,2024-10-08 +City Hotel,0,109,2017,May,22,27,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,141.01,0,1,Check-Out,Elizabeth Martinez,nealrobert@example.com,697-637-3292x892,4771690516605299686,2025-05-12 +City Hotel,1,52,2017,August,35,24,0,2,2,0.0,0,BB,NOR,Direct,Direct,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,239.38,0,3,Canceled,Russell Jenkins,ramseylauren@example.org,838.313.9640x11841,213139346140121,2025-12-15 +City Hotel,0,37,2017,April,17,26,2,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.64,1,1,Check-Out,Laurie Pugh,timothy70@example.com,716.648.0767x021,4301331956522626416,2024-11-09 +City Hotel,0,29,2017,July,27,5,0,1,2,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,134.45,0,0,Check-Out,Erika Salas,kbutler@example.com,(603)786-0342x987,3559181094451371,2025-02-20 +Resort Hotel,0,59,2017,April,14,2,2,5,1,0.0,0,BB,AUT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,146.73,0,1,Check-Out,Eric Benson,joelgarza@example.net,(716)449-5084x416,4461412485854518,2024-06-14 +City Hotel,0,49,2017,May,21,26,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,40,Transient-Party,110.04,0,0,Check-Out,Eric Jones,billyvillarreal@example.net,(918)828-1467,4602006671513639519,2024-11-14 +City Hotel,1,300,2017,November,44,4,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,83.52,0,0,Canceled,Evan Stewart,jeffery52@example.com,996.761.9518x819,4612561213958,2025-11-22 +City Hotel,0,8,2017,March,11,15,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.99,0,0,Check-Out,Kayla Dixon,scott09@example.org,241-202-9507,30477434321182,2025-12-16 +Resort Hotel,0,141,2017,April,15,10,1,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,244.0,179.0,0,Transient,86.08,1,2,Check-Out,Jennifer Gray,jwilliamson@example.com,+1-698-237-4697x233,3559775434313991,2024-04-28 +City Hotel,0,11,2017,January,3,18,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,82.94,0,0,Check-Out,Stacey Bishop,alec81@example.org,001-667-490-6112x833,3503435653874952,2025-11-18 +City Hotel,0,14,2017,February,9,29,0,3,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,46.46,0,1,Check-Out,Danielle Zavala,dawn14@example.net,357-297-2733x654,4988006134367569,2024-05-26 +Resort Hotel,0,149,2017,May,18,1,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,97.0,179.0,0,Transient-Party,76.77,0,0,Check-Out,Justin Moore,jessegordon@example.org,+1-253-588-7943x95887,3529952262278953,2024-11-08 +City Hotel,1,82,2017,May,21,22,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,180.1,0,2,Canceled,Kyle Walker,davisbrandy@example.com,332-751-2781,4370675153503456,2024-04-16 +City Hotel,0,0,2017,July,27,5,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,132.66,1,1,Check-Out,Leon Fry,nmartinez@example.org,001-352-264-0831x5058,2262479444465905,2026-02-22 +City Hotel,0,12,2017,October,43,23,1,3,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,115.41,0,0,Check-Out,Joseph Gilbert,smithmichelle@example.org,+1-530-540-4996x087,377982311878155,2025-02-01 +City Hotel,0,24,2017,November,46,13,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,156.67,0,2,Check-Out,John Kidd DDS,mcintoshpatrick@example.net,(676)842-9539,6563265010987811,2024-07-18 +City Hotel,1,44,2017,March,10,4,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,175.0,179.0,0,Transient-Party,38.11,0,0,Canceled,Nancy Lutz MD,markadkins@example.net,(488)335-9474,213182982044561,2025-11-29 +City Hotel,0,36,2017,October,42,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient,44.53,0,0,Check-Out,David Martin,morrisdenise@example.net,(724)699-8462x2853,4142440107903386,2025-04-02 +Resort Hotel,1,51,2017,January,3,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,35.55,0,0,Canceled,Phillip Flynn,andersonmelissa@example.net,756-499-3791x2591,3507338722445513,2024-04-05 +City Hotel,1,166,2017,May,21,24,1,4,2,1.0,0,BB,NOR,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,104.68,0,3,Canceled,Sarah Byrd,rileyteresa@example.com,671.277.6596x7484,2297823610736756,2025-01-07 +City Hotel,0,46,2017,September,36,2,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,145.72,0,2,Check-Out,Brent Roberts,lfoster@example.net,+1-684-916-0160x4369,180097978907341,2026-02-20 +Resort Hotel,0,193,2017,April,16,16,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,50.28,0,1,Check-Out,David Hancock,andrew55@example.net,001-815-703-2956x03734,180019407039926,2025-11-18 +City Hotel,0,59,2017,October,43,21,1,2,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,174.2,0,0,Check-Out,Charles Wallace,perkinsdoris@example.net,001-547-708-6934,4448448320946661,2025-09-21 +City Hotel,0,262,2017,June,24,13,0,2,1,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,86.71,0,0,Check-Out,Linda Reed,otaylor@example.org,8766941115,6563753579413592,2026-01-11 +City Hotel,1,120,2017,November,47,22,2,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.4,0,2,Canceled,Amber Leonard,ronald76@example.com,9224059925,4350985195485990,2025-10-10 +Resort Hotel,1,191,2017,August,34,23,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,245.0,179.0,0,Transient,54.01,0,0,Canceled,Cynthia Young,lcantrell@example.com,294.703.8130,213112737507851,2025-09-18 +City Hotel,1,330,2017,September,36,4,1,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,65.43,0,0,Canceled,Lindsey Beck,gamblenicole@example.org,+1-552-710-4379x9501,180064208136901,2024-05-07 +City Hotel,0,106,2017,March,14,30,1,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.62,0,1,Check-Out,Katherine Bryant,trevor37@example.com,(722)764-9349x4601,4706472895818995540,2025-04-05 +City Hotel,0,102,2017,April,17,26,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,110.88,0,1,Check-Out,Jake Davis,jared12@example.org,+1-468-395-1452,374723685809670,2024-07-14 +City Hotel,0,385,2017,May,20,16,0,2,2,2.0,0,BB,,Complementary,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,198.03,1,0,Check-Out,Glenn Moreno,lucasjames@example.net,380.740.5573,4745058735321,2025-07-22 +City Hotel,0,35,2017,November,45,5,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,88.28,0,1,Check-Out,Julia Kelly,johnrojas@example.org,(392)781-2821x3579,502005024349,2025-02-26 +City Hotel,0,259,2017,June,25,18,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,79.73,0,1,Check-Out,Stephanie Floyd,christiantyler@example.net,223.286.2828,4519207872834832360,2024-09-22 +Resort Hotel,0,2,2017,January,2,5,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,0,Transient,56.01,1,1,Check-Out,Terry Moore,youngkayla@example.com,382.951.5499x7235,5589846832435931,2025-11-26 +Resort Hotel,1,28,2017,June,24,16,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,D,D,1,No Deposit,240.0,179.0,0,Transient,108.42,0,0,Canceled,Larry Mcbride,williamsrichard@example.com,237.968.9225,6556467607992498,2025-08-02 +City Hotel,0,37,2017,March,12,22,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.99,0,0,Check-Out,Jaclyn Garcia,frankarroyo@example.net,+1-777-998-9528x9687,3585712577432559,2025-07-07 +Resort Hotel,1,32,2017,February,5,2,2,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,235.0,179.0,0,Transient,112.32,0,1,Canceled,Joseph Hubbard,zachary08@example.net,863.358.2952x14375,4690776327132280,2024-09-28 +Resort Hotel,0,18,2017,September,38,22,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,227.98,0,0,No-Show,Melissa Black,stricklandsamuel@example.com,+1-598-481-6590x00964,370339610767190,2024-11-26 +City Hotel,0,35,2017,September,37,10,0,2,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,45.0,0,Transient,77.54,0,0,Check-Out,Anna Martinez,lindseypamela@example.org,(785)446-4713x2220,503835576391,2024-07-07 +City Hotel,0,142,2017,August,34,25,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,170.42,0,1,Check-Out,Troy Oliver,jessica87@example.com,208-541-6046x6367,3531956736191581,2024-04-19 +City Hotel,1,3,2017,March,12,17,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,106.46,0,0,Canceled,Bryan Meyers,pamelapope@example.org,001-800-731-4398,4276335499786548,2025-09-13 +City Hotel,0,13,2017,October,43,27,1,1,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,227.0,0,Transient-Party,107.91,0,0,Check-Out,Cynthia Taylor,thomassmith@example.com,(579)417-4658x976,3520496954928177,2025-09-23 +City Hotel,1,23,2017,April,16,17,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,127.19,0,2,Canceled,Jennifer Lopez,michaeloneal@example.net,747-487-7763x77097,6567046709306752,2025-01-19 +Resort Hotel,0,167,2017,June,25,19,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,105.02,0,1,Check-Out,Leah Rios,turnerchad@example.org,966.633.5813x4669,4227843363663933,2025-04-04 +Resort Hotel,1,133,2017,May,18,2,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,242.0,179.0,0,Transient,88.53,0,0,Canceled,Mrs. Rita Gonzalez,prestonbrenda@example.net,762-712-0097x81463,213198234907561,2025-11-21 +City Hotel,0,116,2017,July,30,23,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,1,No Deposit,181.0,179.0,0,Transient-Party,124.8,0,1,No-Show,Michael Joseph,howardcrystal@example.org,(864)324-6303,213153525159174,2024-09-26 +Resort Hotel,0,129,2017,August,35,26,2,5,2,2.0,0,HB,ESP,Direct,Direct,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,197.69,0,0,Check-Out,Jill Garrett,brianamason@example.com,001-294-597-7809,3500631190635749,2025-09-30 +City Hotel,1,52,2017,November,45,6,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,123.94,0,0,Canceled,Ronald Savage,carolpollard@example.com,(749)340-6440x942,373844211624440,2024-07-01 +City Hotel,0,246,2017,May,20,18,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,88.0,179.0,0,Transient,105.28,0,0,Check-Out,Cindy Carter,pmoore@example.net,615.700.9214x52541,30251179119923,2025-09-28 +Resort Hotel,0,112,2017,September,37,9,2,0,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,291.0,179.0,0,Transient-Party,49.72,1,0,Check-Out,Craig Sims,hoffmanhunter@example.com,+1-937-548-4425x016,4011692920823,2024-11-08 +City Hotel,1,140,2017,August,33,14,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.0,0,1,Canceled,Sarah Glenn,samanthacrane@example.net,440-651-1909x4178,376872862085949,2025-01-17 +Resort Hotel,0,0,2017,November,45,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,46.49,1,0,Check-Out,Angela Yang,megan45@example.net,(425)250-8035,378689355630074,2024-05-06 +City Hotel,1,224,2017,August,35,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,161.0,179.0,0,Transient,116.91,0,0,Canceled,Courtney Bennett,kevincollins@example.com,(716)483-1413x9946,3512036366739547,2024-09-02 +City Hotel,1,18,2017,October,40,5,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,122.67,0,0,Canceled,Edward Perez,jonessara@example.org,+1-553-469-5987x598,4086880038127282,2025-07-07 +City Hotel,0,3,2017,August,33,15,2,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Group,98.87,0,0,Check-Out,Mary Ortega,ksolomon@example.com,(460)879-7222x681,371784981707375,2025-01-14 +City Hotel,0,54,2017,May,22,26,2,3,2,1.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,134.62,0,1,Check-Out,Carolyn Scott,owoods@example.net,846.247.1222x688,4756897603088912,2025-05-23 +City Hotel,0,34,2017,April,17,23,0,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,116.41,0,0,Check-Out,Sara Doyle,vanessa19@example.net,+1-374-885-1845x71676,30247822376498,2024-12-15 +City Hotel,1,50,2017,February,5,2,0,2,1,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,89.29,0,0,Canceled,Barbara Taylor,martinezbrian@example.org,6957809267,3520238626765102,2025-09-28 +City Hotel,0,103,2017,June,25,19,2,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient-Party,105.27,0,0,Check-Out,Carol Simpson,nsmith@example.com,951.813.0138,2253412363974319,2025-10-29 +City Hotel,0,30,2017,September,36,1,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,121.66,0,1,Check-Out,Terri Reynolds,aellison@example.com,485-828-0069x54795,6011116424051710,2024-10-28 +Resort Hotel,1,26,2017,June,26,26,3,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,133.16,0,1,Canceled,Angela Thomas,darlenenewman@example.org,277-836-1460,4799486392644454,2024-09-24 +City Hotel,0,2,2017,September,39,22,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,124.04,0,0,Check-Out,Laura Gordon,brian97@example.org,439.467.1312x26463,4794085370135157,2025-09-14 +City Hotel,0,21,2017,March,11,15,0,2,2,0.0,0,SC,ESP,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,111.45,0,2,Check-Out,Cassidy Hubbard,amber03@example.net,4677330922,213146664918780,2025-08-16 +City Hotel,0,47,2017,April,17,26,0,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,1,D,D,2,No Deposit,14.0,179.0,0,Transient,52.32,0,2,Check-Out,Donna Hanson MD,christophertaylor@example.com,765-893-6684,3501758369086179,2024-10-17 +City Hotel,0,39,2017,September,38,20,2,3,2,2.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,F,E,0,No Deposit,11.0,179.0,0,Transient,163.53,0,3,Check-Out,James Aguilar,kbryan@example.org,+1-854-830-3983,379826807925897,2025-12-17 +City Hotel,1,19,2017,April,17,25,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,95.93,0,0,Canceled,Heather Cabrera,jenniferjohnson@example.com,001-815-372-2834x770,6011466676174680,2025-09-02 +City Hotel,0,9,2017,April,17,24,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,D,0,No Deposit,175.0,179.0,0,Transient,117.09,0,0,Check-Out,Angela Villa,jasonklein@example.org,500.289.6447x251,4317766328235,2024-04-21 +Resort Hotel,0,24,2017,November,47,19,0,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,75,Transient,57.77,0,1,Check-Out,Katherine Johnston,thomascraig@example.com,284.416.8378x319,6011048368856715,2025-10-24 +Resort Hotel,0,1,2017,August,34,21,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,190.68,1,0,Check-Out,Jared Bond,smithkristy@example.com,+1-479-558-7254x682,4438141989621311069,2025-10-10 +City Hotel,0,2,2017,September,37,12,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,91.88,1,1,Check-Out,Brian Nichols,ricky06@example.net,458.929.5875,4886472726671906888,2025-10-11 +City Hotel,0,199,2017,April,15,9,1,4,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,2,No Deposit,14.0,179.0,0,Transient,129.17,1,2,Check-Out,Donald Beltran,stephanie66@example.com,528-973-9062,3501979594745898,2024-07-10 +Resort Hotel,1,29,2017,July,27,6,0,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,241.0,179.0,0,Transient,39.98,0,1,Canceled,Julie Price,christopherrice@example.org,+1-589-505-9013x5201,4129115800950929,2026-03-14 +City Hotel,1,387,2017,April,18,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,65.45,0,0,Canceled,Sean Walker,bradfordrobert@example.org,486.326.0458x448,4922937043240597,2026-03-06 +Resort Hotel,0,0,2017,October,41,10,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,56.47,0,0,Check-Out,Gerald Ruiz,adrianbaker@example.org,341-473-1945x9804,3573333044679328,2025-06-09 +Resort Hotel,1,4,2017,March,13,31,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,166.0,179.0,43,Transient,60.58,0,2,No-Show,William Smith,michael24@example.com,001-234-831-2554x1370,4733403074731805,2024-04-17 +City Hotel,0,37,2017,January,4,24,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,137.22,0,2,Check-Out,Jason Medina,daniel90@example.net,412.636.4606x4441,2222126757800470,2025-03-28 +Resort Hotel,1,100,2017,November,45,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,133.0,179.0,0,Transient,84.26,0,0,Canceled,Erik Richards,wmorris@example.com,365.482.1111x23651,213173004328892,2024-11-29 +City Hotel,1,139,2017,November,44,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,80.21,0,0,Canceled,Karen Day,john19@example.net,500-757-8450x652,375300608910106,2026-01-27 +City Hotel,0,0,2017,November,47,23,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,77.4,0,0,Check-Out,Shannon Hayes,simmonsandrew@example.com,+1-642-907-8451,6587168226624065,2025-02-20 +Resort Hotel,0,8,2017,November,45,5,0,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,179.0,0,Transient,91.74,0,0,Check-Out,Rebecca Mcgee,turnermary@example.org,001-954-259-9989x6768,30453437255479,2025-10-26 +City Hotel,0,53,2017,February,7,14,0,2,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,126.85,0,0,Check-Out,Rebecca Diaz,zdavis@example.net,891-897-1878x760,2266545141724426,2024-10-31 +City Hotel,0,18,2017,March,11,14,1,4,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,11.0,179.0,75,Transient-Party,62.09,1,1,Check-Out,James Callahan,scott10@example.com,630-224-2902x919,376950681143212,2025-04-03 +Resort Hotel,0,0,2017,February,5,3,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,I,0,No Deposit,176.0,179.0,0,Transient-Party,48.26,0,0,Check-Out,Ashley Vargas,boonekevin@example.net,298.963.0685x2085,3503882878996609,2025-09-14 +Resort Hotel,1,87,2017,March,10,4,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,247.0,179.0,0,Transient,48.38,0,0,Canceled,Christopher Russell,sarahswanson@example.org,(240)768-4878,4490697464469529,2024-08-15 +City Hotel,0,100,2017,October,43,26,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Contract,63.4,0,0,Check-Out,Mrs. Brandi Bryan,rcohen@example.net,328.741.6327x856,5142791050919184,2025-07-22 +Resort Hotel,0,98,2017,August,33,19,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,84.81,0,1,Check-Out,Kyle Boyd,laurenbeltran@example.com,232-397-6966x451,4099718675975958,2025-09-27 +City Hotel,1,150,2017,May,21,23,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,118.2,0,0,Canceled,Seth Friedman,monicahood@example.org,+1-306-556-8134x81497,4058890604840,2024-07-27 +Resort Hotel,1,11,2017,June,23,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,107.41,0,0,Canceled,Amy James,wle@example.org,200-421-1814x7923,180079406459749,2024-12-14 +Resort Hotel,0,86,2017,December,50,9,0,3,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,46.22,1,1,Check-Out,Alexander Johnson,hgarcia@example.com,(210)400-4111x46764,3521111045873170,2025-03-21 +City Hotel,0,41,2017,November,48,26,1,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,109.72,0,2,Check-Out,Megan Hawkins,dylan06@example.com,590.220.4045,2704111686421926,2024-04-16 +Resort Hotel,0,16,2017,April,16,20,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,D,0,No Deposit,241.0,179.0,0,Transient,64.39,1,1,Check-Out,Megan Moore,craig08@example.com,977-216-3769,30414549046958,2024-05-04 +City Hotel,0,15,2017,September,36,6,1,3,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,155.45,0,2,Check-Out,Laura Nguyen DVM,kelly15@example.org,632.734.6432x3430,571681360855,2025-05-25 +City Hotel,0,0,2017,August,31,3,0,2,1,0.0,0,BB,PRT,Corporate,Undefined,0,0,0,B,B,1,No Deposit,2.0,179.0,0,Transient-Party,57.07,0,1,Check-Out,Gabrielle Montoya,katherine64@example.net,662.885.5109x953,180063489743526,2025-07-23 +City Hotel,0,89,2017,May,19,6,1,3,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,97.9,0,0,Check-Out,Diana Bennett,jenniferdavis@example.com,446.377.9055,36414604641317,2025-01-04 +City Hotel,0,344,2017,October,42,20,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,66,Transient-Party,96.6,0,0,Check-Out,Jessica Davis,washingtonkevin@example.com,639-758-0282x177,4492128563454,2025-03-06 +City Hotel,0,163,2017,August,32,12,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.53,0,1,Check-Out,Steven Farley,kennethcarter@example.com,7549921946,3583712958410069,2024-05-22 +Resort Hotel,1,60,2017,October,43,27,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,294.0,179.0,0,Contract,105.22,0,3,Check-Out,James Perez,taylordouglas@example.net,713-378-9405,4679270358036,2024-07-26 +City Hotel,0,61,2017,September,38,21,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,84.12,0,0,Check-Out,Dr. Stacy Moore DVM,rodneygillespie@example.org,001-482-917-6868x20136,30566484085299,2024-10-24 +Resort Hotel,0,58,2017,September,39,26,0,2,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,201.26,1,0,Check-Out,William Scott,velazquezsabrina@example.net,658-767-2790x00311,4589479618199,2026-02-01 +Resort Hotel,0,10,2017,October,41,9,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,45.28,0,0,Check-Out,Sean Mcgee,clinealyssa@example.net,6009782972,3543017949157749,2024-11-03 +Resort Hotel,0,0,2017,January,4,24,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,57.88,0,1,Check-Out,Jason Wolfe,lynchjacqueline@example.net,(809)510-0752x716,3545081420945087,2024-12-13 +Resort Hotel,0,11,2017,May,19,7,0,3,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,171.17,0,2,Check-Out,Johnny Schneider,matthewjones@example.com,7775078342,6011016243657640,2025-08-11 +Resort Hotel,1,21,2017,June,26,22,1,1,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,233.08,0,0,Canceled,Diamond Kelly,dgutierrez@example.com,425-844-8798x0603,3585835657791592,2025-05-01 +Resort Hotel,0,160,2017,September,36,9,0,5,3,0.0,0,BB,PRT,Complementary,Direct,1,0,0,C,I,1,No Deposit,10.0,179.0,0,Transient-Party,1.11,0,1,Check-Out,Teresa Avila,christopherlloyd@example.net,001-604-411-6169,345476809890151,2025-05-10 +City Hotel,0,1,2017,October,43,25,1,1,1,0.0,0,BB,RUS,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,43.3,0,0,Check-Out,Peter Holt,brandonrobinson@example.org,501-483-1712x868,30432478419665,2025-06-24 +City Hotel,0,12,2017,June,26,25,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,162.22,0,2,Check-Out,Richard Green,jboyd@example.org,(327)469-2451,342611326878635,2026-02-17 +City Hotel,0,160,2017,August,31,4,1,5,2,0.0,0,HB,ISR,Groups,Direct,0,0,0,A,K,1,No Deposit,13.0,179.0,0,Transient-Party,111.02,0,0,Check-Out,Mrs. Lindsey Patel,gowen@example.net,627-876-7132,3532047595555535,2024-08-10 +City Hotel,1,170,2017,April,15,8,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,118.89,0,0,Canceled,Dave Miller,paulkent@example.org,001-512-243-1589x336,370905387341839,2025-10-19 +Resort Hotel,0,136,2017,March,10,4,1,1,1,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,242.0,179.0,0,Transient,87.4,1,0,Check-Out,Toni Mcintosh,leesheila@example.net,+1-355-298-3896x5494,4170813639163387,2026-02-27 +City Hotel,1,153,2017,August,34,17,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,123.81,0,0,Canceled,Matthew Roberts,qyoung@example.com,+1-572-300-5782x1563,30251579937551,2024-11-30 +City Hotel,0,54,2017,September,39,24,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,171.58,0,0,Check-Out,Kayla Tucker,jacquelinecollins@example.net,+1-945-328-5499x81616,213125943047298,2025-12-15 +City Hotel,0,44,2017,May,21,21,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,11.0,179.0,0,Transient,200.28,0,0,Check-Out,Andrea Patterson,benjamin75@example.com,(963)477-2395,3539847468782105,2024-07-19 +City Hotel,0,49,2017,October,43,23,0,1,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient-Party,75.37,0,0,Check-Out,James Cooper,vgraham@example.net,727.510.8038x41165,4911961840756418,2025-04-02 +City Hotel,0,17,2017,May,20,13,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.93,0,0,Check-Out,Kylie Wood,garcialisa@example.com,+1-597-430-9629x919,2240944368128570,2025-02-22 +Resort Hotel,1,3,2017,October,43,25,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,243.0,179.0,0,Transient,174.16,1,0,Canceled,Anne Harmon,sarah16@example.com,2743286975,4591919351286635363,2025-05-03 +Resort Hotel,0,158,2017,April,14,1,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,179.0,0,Transient-Party,46.1,0,0,Check-Out,Melanie Ramirez,andersonjennifer@example.org,360-766-9193,4568407784885,2025-10-11 +City Hotel,0,274,2017,August,34,24,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,161.98,0,0,Check-Out,Aaron Reed,davidortiz@example.net,+1-814-391-9201,4276782845951479041,2024-04-09 +Resort Hotel,0,90,2017,December,52,26,2,7,1,0.0,0,BB,,Direct,Direct,0,0,0,D,E,2,No Deposit,13.0,179.0,0,Transient,52.9,0,0,Check-Out,Debbie Pittman,xpeters@example.com,376.318.7418x68776,2386026703629837,2025-04-01 +Resort Hotel,1,23,2017,June,26,25,2,3,3,1.0,0,FB,PRT,Direct,Direct,0,0,0,H,H,2,No Deposit,247.0,179.0,0,Transient,225.67,0,0,Canceled,William Brown,edwinbrown@example.org,4877545752,4289953761959,2025-04-20 +Resort Hotel,0,3,2017,February,6,10,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,48.13,0,1,Check-Out,Sara Johnson,bryan16@example.com,230.408.9453,502018341490,2024-05-09 +City Hotel,0,17,2017,April,15,13,1,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.56,0,0,Check-Out,Daisy Rose,franksummers@example.com,(438)437-5084x5896,375125250066026,2025-12-29 +Resort Hotel,1,45,2017,August,34,23,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,143.17,0,1,Canceled,Stephanie Andersen,henrydarren@example.com,(293)865-1835x5068,5537836636885400,2025-11-16 +City Hotel,1,155,2017,June,23,1,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,5.0,179.0,0,Transient,121.08,0,0,Canceled,Tiffany Simmons,brandonmiranda@example.org,001-795-342-2499x6280,6011902370770308,2024-07-17 +City Hotel,0,49,2017,September,36,5,0,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,131.77,0,0,Check-Out,Mark West,ojacobs@example.net,+1-526-703-8293x4906,3505932572603189,2026-02-03 +City Hotel,0,4,2017,September,36,4,2,5,2,0.0,0,HB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,169.78,0,3,Check-Out,Joann Cunningham,angelica89@example.net,(294)595-3303x6470,4505162435653928,2025-09-12 +Resort Hotel,0,193,2017,June,22,1,1,3,2,0.0,0,BB,SWE,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,222.0,0,Transient-Party,69.07,0,0,Check-Out,Karen Anderson,jacobclark@example.org,001-479-521-5068x954,180008480881650,2024-04-13 +City Hotel,1,2,2017,September,36,9,0,2,2,0.0,0,SC,,Online TA,Direct,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,83.7,0,0,Canceled,Tammy Chen,swood@example.org,206-556-1839x78025,4394195411033946234,2025-03-26 +Resort Hotel,0,133,2017,March,14,30,1,3,2,1.0,0,BB,IRL,Online TA,Direct,0,0,0,A,C,0,Refundable,12.0,222.0,0,Transient,141.28,0,0,Check-Out,Amy Mack,martha71@example.com,(312)538-4833,30079057301556,2024-12-28 +Resort Hotel,0,0,2017,January,3,21,2,7,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,313.0,179.0,0,Transient,47.91,0,1,Check-Out,James Jackson,wilsonjesus@example.org,001-965-542-0508x49809,565677911515,2025-11-28 +City Hotel,1,12,2017,February,8,17,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.92,0,0,Canceled,Jamie Scott,rlewis@example.org,+1-528-751-3455,6011112202773559,2025-08-18 +Resort Hotel,0,0,2017,December,49,6,0,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,84.18,1,0,Check-Out,Stacey Rice,ryan29@example.net,653-624-4084x1991,3533959326410211,2025-11-08 +City Hotel,0,13,2017,December,52,30,1,2,2,0.0,0,BB,BRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,95.15,0,1,Check-Out,Michael Weeks,jonathanfletcher@example.org,3502090319,180077865528558,2024-04-16 +City Hotel,1,47,2017,June,23,5,0,4,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,63.37,0,1,Canceled,Margaret Jordan,myersthomas@example.org,8322862884,180072794694506,2025-04-15 +City Hotel,0,38,2017,October,40,5,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,99.92,0,0,Check-Out,Tammy Hines,derekorr@example.net,+1-642-755-8132x594,4143841455682903,2025-05-13 +City Hotel,0,0,2017,January,2,2,0,1,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,99.02,0,1,Check-Out,Peter Rodriguez,mramirez@example.org,+1-516-567-8210,4744711112937,2025-04-27 +Resort Hotel,1,15,2017,October,42,20,2,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,195.02,0,3,No-Show,Kimberly Powell,dean17@example.com,(871)881-2832,6594068118162482,2024-10-26 +Resort Hotel,0,12,2017,May,21,24,2,0,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,2,No Deposit,364.0500000000011,179.0,0,Transient,81.44,0,0,Check-Out,Michael Middleton,ericcarter@example.com,(497)839-9966x48998,675928719607,2025-02-03 +City Hotel,1,106,2017,September,36,5,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,110.1,0,0,Canceled,Jacqueline Rodriguez,joshuavillanueva@example.com,(790)552-9075,4478497193775,2024-11-09 +Resort Hotel,0,0,2017,March,10,4,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,64.16,0,1,Check-Out,Lindsey Walker,sarahwest@example.com,+1-337-828-5786,676210928468,2025-04-07 +City Hotel,0,152,2017,July,29,21,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,107.62,0,0,Check-Out,Caitlin Campbell,patriciawilson@example.com,+1-336-531-9925x195,4576564487589732,2024-06-08 +City Hotel,1,9,2017,November,44,3,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,11.0,331.0,0,Transient-Party,50.79,0,0,Canceled,Mr. Marvin Jensen,williamsmichael@example.com,(478)643-8541,4513819899780,2025-01-06 +Resort Hotel,0,0,2017,November,46,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,90.0,179.0,0,Transient-Party,42.25,0,0,Check-Out,George Robinson,omorton@example.com,+1-453-907-7807x9262,6566906594135577,2025-12-20 +Resort Hotel,1,169,2017,November,47,23,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,H,A,0,No Deposit,242.0,179.0,0,Transient,87.43,0,0,Canceled,Alicia Smith,cynthianorris@example.com,456-249-6820,30405755517310,2026-01-13 +Resort Hotel,0,10,2017,January,2,4,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,55.21,1,1,Check-Out,Robert Ali,sanderssuzanne@example.net,935-377-1742x19458,4347662655720,2025-09-08 +Resort Hotel,0,61,2017,April,18,30,0,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,D,D,0,No Deposit,254.0,179.0,0,Group,79.91,0,1,Check-Out,Logan Cruz,trevorgray@example.com,(905)314-2373,213111602263459,2025-02-17 +Resort Hotel,0,24,2017,October,42,18,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,243.0,179.0,0,Transient,55.27,0,1,Check-Out,Robert Hansen,richard41@example.org,001-800-545-9823x60693,571719411852,2026-03-16 +City Hotel,1,10,2017,November,44,1,0,3,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,108.75,0,1,Canceled,Mr. Jacob Briggs,martinjohn@example.net,834.442.6042x80130,36273996654274,2025-12-26 +City Hotel,0,105,2017,March,12,22,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,80.76,0,1,Check-Out,Nathan Bennett,nsmith@example.net,+1-356-515-5778,2272180646111200,2025-01-13 +City Hotel,1,131,2017,July,31,30,1,4,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,126.97,0,1,Canceled,Mark Brown,msmith@example.com,274.679.8002x6473,345401339260725,2024-11-01 +City Hotel,1,414,2017,May,18,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,65.02,0,0,Canceled,Jason Tyler,alexandria37@example.org,559.897.3214x26528,30089678600336,2025-12-18 +Resort Hotel,0,3,2017,March,10,5,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,46.15,0,1,Check-Out,Tyler Moore,tatenancy@example.com,875.752.8253,4695549336850,2025-11-18 +Resort Hotel,0,158,2017,March,11,17,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,2,Refundable,12.0,223.0,0,Transient-Party,79.02,0,0,Check-Out,Tracy Roberts,christine13@example.net,254-769-6608x1766,6011311300990384,2026-01-28 +City Hotel,0,108,2017,March,12,16,0,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,212.47,0,1,Check-Out,Christine Snyder,tiffanylin@example.net,591.374.0999,2716744409977968,2025-12-03 +Resort Hotel,0,212,2017,August,33,16,1,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,53.15,0,1,Check-Out,Alexis Carroll,brandonlewis@example.com,880-654-1220,675979057980,2025-05-13 +City Hotel,0,37,2017,November,45,5,1,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,164.39,0,2,Check-Out,Brittany Blair,cochrandenise@example.net,(699)401-9051x99467,4341950335181428313,2024-07-02 +Resort Hotel,0,359,2017,October,40,3,2,2,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,263.0,179.0,0,Transient-Party,63.14,0,0,Check-Out,Kelly Vargas,thomas94@example.net,(597)782-4663x12720,4646438306572750478,2026-02-04 +Resort Hotel,1,0,2017,March,13,31,0,1,3,0.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,61.05,1,0,Canceled,Tyler Bryant,caitlin59@example.com,+1-635-356-1753x754,4394784943832142,2026-01-04 +Resort Hotel,0,8,2017,October,43,21,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,165.92,1,1,Check-Out,Stacey Christensen,dixonterri@example.org,001-439-544-5257x43642,3587001544779377,2026-02-25 +Resort Hotel,0,146,2017,April,16,19,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Transient,63.3,0,0,Check-Out,Kari Harvey,smithvernon@example.net,(956)740-0940x779,4074655461330437909,2025-02-10 +City Hotel,1,309,2017,August,31,2,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,196.56,0,0,Canceled,Dennis Bass,rodriguezdaniel@example.com,+1-403-867-9410x43397,564896195257,2025-01-14 +Resort Hotel,0,58,2017,July,29,18,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,218.2,1,1,Check-Out,Kristen Alvarez,alvarezstacy@example.com,469.592.9277x90895,4917565744140738,2025-06-22 +City Hotel,1,15,2017,July,28,8,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,202.49,0,0,Canceled,Karen Maddox,davidfowler@example.net,(208)314-9962x14705,2261940973794750,2024-07-26 +Resort Hotel,0,153,2017,February,9,27,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,129.0,179.0,0,Transient,46.53,1,0,Check-Out,Jason Duncan,christophermurphy@example.com,(521)561-1319,2520023574744420,2025-01-07 +City Hotel,1,53,2017,May,22,26,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.3,0,1,Canceled,Gregory Jackson,jshaw@example.com,001-838-897-5831x289,3569932183644625,2025-05-21 +Resort Hotel,0,254,2017,August,34,24,1,1,2,0.0,0,HB,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient-Party,118.13,0,0,Check-Out,Timothy Miller,carlsonchristian@example.net,001-703-426-1125x29188,5513727040308907,2025-12-29 +City Hotel,0,11,2017,December,49,5,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,10.0,179.0,0,Transient,75.96,0,1,Check-Out,James Lynch,grahamruben@example.com,001-924-604-4591x4535,4192296153985,2024-09-28 +City Hotel,1,263,2017,September,39,28,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,B,2,Non Refund,12.0,179.0,0,Transient,99.85,0,0,Canceled,Jessica Carter,englishstephen@example.com,8843275120,4877301633254877278,2026-01-22 +Resort Hotel,0,19,2017,November,46,12,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,16.0,331.0,0,Transient,48.06,0,0,Check-Out,Michael Brown,reneevega@example.net,+1-431-294-7079x581,343991136088057,2025-03-24 +City Hotel,1,2,2017,October,44,29,0,1,1,0.0,0,SC,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,16.0,65.0,0,Transient,0.61,0,0,Canceled,Brandi Soto,dianegalloway@example.net,(938)221-7786,4296361462838153,2024-08-12 +City Hotel,0,9,2017,August,34,24,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,104.63,0,0,Check-Out,Jennifer Manning,richard70@example.com,5236652798,4575133864708827,2025-11-01 +City Hotel,0,303,2017,May,19,5,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,82.42,0,1,Check-Out,Adam Davis,jonathan44@example.org,758.523.1937,2261007757849760,2024-11-21 +Resort Hotel,0,0,2017,July,30,25,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,132.98,0,3,Check-Out,Gina Sanchez,amanda77@example.net,(856)394-0483x0474,6011821776021811,2024-07-27 +City Hotel,1,271,2017,September,39,26,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,112.05,0,0,Canceled,Aaron Brown,kaitlynlopez@example.com,001-538-266-9139x6136,3505577292133460,2025-06-08 +City Hotel,0,121,2017,July,30,20,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,214.35,0,0,Check-Out,Aaron Hernandez,christopherreyes@example.net,895-374-0486,4441582223605901871,2025-02-12 +City Hotel,0,54,2017,August,35,25,2,2,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,Nathaniel Jackson,anthony73@example.net,(546)961-1837x715,4764980215098063,2024-07-12 +Resort Hotel,0,1,2017,January,5,29,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,237.0,179.0,0,Transient,50.73,0,2,Check-Out,Ronald Sawyer,richard06@example.net,(527)955-9070x665,3592369718478800,2024-12-06 +City Hotel,1,155,2017,June,26,25,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,145.08,0,2,Canceled,Amanda Davis,ashley28@example.net,+1-679-769-4034x36688,3595671685349741,2025-04-12 +Resort Hotel,0,91,2017,May,21,26,3,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,252.0,179.0,0,Transient-Party,72.03,0,0,Check-Out,Barbara Levy,maria73@example.net,+1-595-301-3794x690,30353671879119,2024-05-28 +Resort Hotel,1,319,2017,July,30,22,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,133.63,0,2,Canceled,Thomas Payne,qwagner@example.com,765-209-3121x11400,3590305312033445,2024-09-09 +City Hotel,0,165,2017,September,38,23,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,25.0,179.0,0,Transient-Party,102.56,1,0,Check-Out,James Gonzalez,allison72@example.org,628.904.1325,6011993816709083,2025-10-29 +Resort Hotel,1,245,2017,June,26,26,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,64.34,0,0,Canceled,Kevin Smith,mikeayers@example.com,(664)738-0004x41735,4906315070890,2025-10-23 +Resort Hotel,0,16,2017,August,34,17,2,5,2,1.0,0,BB,,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,Joel Gilbert,smithkimberly@example.net,617-592-0355x67523,561901323437,2025-08-01 +Resort Hotel,1,116,2017,August,33,10,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,126.04,0,0,Canceled,Sarah Williams,williamshannah@example.net,001-753-223-7428,501862263909,2025-12-04 +City Hotel,1,193,2017,May,18,2,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,Non Refund,179.0,179.0,0,Transient,103.69,0,0,No-Show,Mrs. Elizabeth Miller,lauramahoney@example.net,001-863-696-2901x757,377349459674889,2025-07-03 +Resort Hotel,1,185,2017,July,27,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,236.0,179.0,0,Transient,165.92,0,1,Canceled,Paula Coleman,kristenclark@example.org,776-939-7567x879,3594728477825832,2025-09-20 +Resort Hotel,1,157,2017,April,14,1,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,28.0,0,0,Canceled,Kristin Manning,joseph79@example.net,(325)748-8218,675948387633,2025-09-09 +Resort Hotel,0,2,2017,March,10,5,1,0,1,0.0,0,BB,PRT,Corporate,Direct,1,0,0,A,C,1,No Deposit,13.0,179.0,0,Group,43.51,0,1,Check-Out,Keith Scott,bethany24@example.org,994.711.0386x8888,676290763835,2025-02-23 +City Hotel,1,12,2017,December,49,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,99.52,0,0,Canceled,Wayne Lawrence,lukehunter@example.org,753.580.0421x97474,3571818425400395,2025-01-02 +City Hotel,0,11,2017,June,23,3,1,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,220.81,0,0,Check-Out,Mark Martinez,samuelstewart@example.org,+1-778-325-0562x317,3586214071052081,2025-02-25 +City Hotel,1,414,2017,August,34,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,102.44,0,0,Canceled,Brian Villanueva,swilliams@example.net,622.479.2078x809,4772898170036278055,2024-03-31 +Resort Hotel,0,20,2017,March,11,9,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,G,C,0,No Deposit,248.0,179.0,0,Transient,137.55,0,3,Check-Out,Dr. Christopher Murphy,matthewedwards@example.net,001-392-270-6457x23262,639002656424,2025-04-29 +Resort Hotel,1,190,2017,October,43,20,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,87.4,0,2,Check-Out,Rachel Larson,cameronmelinda@example.org,(365)372-8807x4979,342531842481856,2025-07-03 +City Hotel,1,37,2017,September,37,10,2,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,99.85,0,1,Canceled,Andrew Moore,melissamorrow@example.com,458-203-9759,6548415759722768,2026-01-20 +City Hotel,1,283,2017,September,37,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,18,Transient-Party,63.96,0,0,Canceled,Patrick Santana,danielharris@example.org,530-463-6507x6338,6011805199913001,2024-08-27 +Resort Hotel,0,0,2017,February,8,18,0,5,1,0.0,0,BB,SWE,Corporate,Corporate,0,0,0,A,A,0,No Deposit,213.0,331.0,0,Transient,38.15,0,0,Check-Out,Joseph Brandt,cmayer@example.net,+1-422-403-0780x71834,4243802016875,2025-04-20 +Resort Hotel,0,2,2017,March,11,13,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,64.78,1,1,Check-Out,Gabriel Lloyd,shannonfletcher@example.net,570.423.1780x4477,6011399369044508,2024-07-29 +City Hotel,0,39,2017,July,27,4,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,8.0,179.0,0,Transient,2.89,0,1,Check-Out,Amber Dominguez,mathismichael@example.net,456.298.8102,4287138870679,2025-03-28 +Resort Hotel,0,31,2017,May,22,29,1,7,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,140.95,0,1,Check-Out,Lisa Arellano,moralesjimmy@example.com,001-262-445-7801x00845,4588341983981416,2024-04-12 +City Hotel,0,24,2017,March,10,10,2,1,1,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,267.0,179.0,0,Transient,37.13,0,0,Check-Out,Spencer Phillips,awagner@example.net,+1-572-323-8539x68718,2284111901762953,2024-09-08 +City Hotel,0,99,2017,May,20,15,2,5,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,8.0,179.0,0,Transient,129.28,0,1,Check-Out,Marilyn Taylor,shane12@example.net,+1-263-906-5096x760,3500723624549552,2024-12-03 +Resort Hotel,0,143,2017,August,35,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,139.98,0,2,Check-Out,Vincent White,gsmith@example.org,+1-996-303-8202x23410,3590509400163358,2024-06-11 +Resort Hotel,0,43,2017,February,8,23,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,239.0,179.0,0,Transient,49.88,0,1,Check-Out,Joel Flores,kmoyer@example.com,001-365-464-4070x8641,6011008563342705,2025-02-05 +Resort Hotel,0,86,2017,December,49,9,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient-Party,58.49,0,1,Check-Out,Kathleen Martinez,chad92@example.org,(678)493-1425,503842929682,2025-11-25 +City Hotel,0,9,2017,December,2,31,2,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,23.0,179.0,0,Transient-Party,76.76,0,0,Check-Out,Cheyenne Smith,danny07@example.org,434-925-9441,3592053504287688,2025-05-14 +Resort Hotel,1,390,2017,July,30,20,1,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,89.75,0,0,Check-Out,Brandon Clark,wooddanielle@example.org,(763)580-9145x4760,180013604046271,2025-03-13 +City Hotel,0,3,2017,October,41,10,2,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,B,1,No Deposit,16.0,179.0,0,Transient,93.21,0,0,Check-Out,Bianca Young,michaelgibson@example.org,761-644-9325x8064,6565290166158569,2025-05-15 +City Hotel,1,18,2017,March,13,31,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,110.81,0,1,No-Show,Jennifer Coleman,millervincent@example.org,692-880-5204x1822,4697603243054005,2025-04-24 +City Hotel,1,414,2017,July,28,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,136.23,0,0,Canceled,Ruth Ramirez,veronicacurtis@example.org,(309)332-0373,4288155229240621495,2024-12-14 +City Hotel,1,0,2017,October,41,9,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,68.0,179.0,0,Transient,103.72,0,0,Canceled,Carol Dixon,xroy@example.org,453-413-4613,4448840579145,2024-07-13 +City Hotel,0,2,2017,September,39,25,2,5,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,119.25,0,1,Check-Out,Adam Barr DDS,gabriela99@example.com,001-769-893-3037x445,4775012723949,2025-06-17 +City Hotel,1,151,2017,March,13,30,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,9.0,179.0,0,Transient,94.2,0,1,Canceled,Roy Evans,nnelson@example.com,218.708.5438x9282,6011556779594311,2024-04-17 +City Hotel,0,13,2017,February,7,12,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,36.37,0,0,Check-Out,Andre Lane,torresdennis@example.org,900-937-2783x35449,180032350730490,2024-12-02 +Resort Hotel,0,16,2017,February,5,2,1,1,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,L,H,0,No Deposit,9.0,179.0,0,Transient,91.97,0,1,Check-Out,James Cole,krystalhall@example.org,+1-343-395-8853x9681,4740239720714,2025-06-28 +Resort Hotel,1,52,2017,May,18,1,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,A,0,No Deposit,238.0,179.0,0,Transient,203.38,0,1,Canceled,Carrie Gray,juliagreene@example.org,278.422.2353x52185,3585026616900553,2024-07-19 +City Hotel,1,345,2017,January,5,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,138.0,179.0,19,Transient,61.0,0,0,Canceled,Theresa Fletcher,brittanyhickman@example.com,7922582242,4735238925984320,2025-10-16 +Resort Hotel,1,84,2017,July,30,21,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,189.57,0,0,Canceled,Theresa Collins,jessicasmith@example.net,001-383-390-8683x44946,503817039905,2025-06-14 +Resort Hotel,1,1,2017,January,4,24,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,42.0,179.0,0,Transient,42.94,0,1,Canceled,Andrea Pollard,williamcruz@example.com,+1-509-470-6394x2798,4656745898079339,2025-01-20 +City Hotel,0,64,2017,June,23,5,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,E,A,1,No Deposit,133.0,179.0,0,Transient,89.97,0,0,Check-Out,Ricky Vasquez,brittneymullen@example.net,(612)575-4884x033,4177953438082140,2024-06-17 +City Hotel,1,1,2017,November,47,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,49.0,0,Transient-Party,97.91,0,0,Canceled,Mrs. Yolanda Murphy,crosslance@example.net,(539)259-2604,3571059330864645,2025-01-12 +City Hotel,1,15,2017,December,51,22,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.16,0,0,Canceled,Ronald Flores,rsmith@example.com,+1-518-678-5858x5574,3545057809571066,2024-07-02 +Resort Hotel,0,3,2017,March,13,29,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,50.51,1,0,Check-Out,Deborah Torres,jay53@example.org,(922)921-0592x76414,4859202088329,2025-01-13 +City Hotel,0,102,2017,June,26,25,0,4,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,98.61,0,1,Check-Out,John Love,josejackson@example.org,439-691-5613x41170,6557433534650756,2024-05-28 +City Hotel,0,19,2017,November,45,10,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,157.7,0,3,Check-Out,Michael Mccullough,amanda75@example.net,001-903-597-7066x5285,30204080402524,2025-12-04 +City Hotel,0,135,2017,May,20,12,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,117.52,0,1,Check-Out,Gregory Scott,xbriggs@example.com,788-362-3395,4393087682605047,2026-02-15 +Resort Hotel,0,138,2017,September,40,30,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,118.57,0,1,Check-Out,Paul Lewis,alexandraperez@example.org,001-262-806-5656x5991,4136610098363943,2024-07-07 +Resort Hotel,0,151,2017,December,51,23,1,1,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient-Party,89.74,1,0,Check-Out,Kelly Sweeney,hansenpatricia@example.com,(201)491-7963x373,4913584711974957,2025-01-13 +Resort Hotel,1,296,2017,May,19,4,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,239.0,179.0,0,Transient,97.77,0,1,Canceled,Brianna Logan,mwong@example.org,2498084958,5451059583409569,2026-02-13 +City Hotel,0,2,2017,October,40,2,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,No Deposit,14.0,45.0,0,Transient,40.95,1,0,Check-Out,John Gray,david49@example.org,(250)702-0395x546,6572356817655278,2026-01-09 +City Hotel,1,282,2017,May,19,9,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,303.0,179.0,42,Transient,106.56,0,0,Canceled,Dawn Gross,sabrina49@example.com,9477296747,213140792935287,2025-09-20 +Resort Hotel,1,169,2017,June,23,2,3,3,2,1.0,0,HB,BEL,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,242.0,179.0,0,Transient,131.38,0,2,Canceled,Bethany Callahan,john07@example.com,655.599.2858,3555597834601997,2025-01-19 +Resort Hotel,1,54,2017,June,26,28,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,239.0,179.0,0,Transient,129.0,0,1,Canceled,Patricia Roberts,nicholsholly@example.org,001-678-971-4974x896,2708013691778165,2025-11-15 +Resort Hotel,0,158,2017,March,13,25,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,51.13,1,1,Check-Out,Eric Burton,pamela99@example.com,914-571-9478,6011110236469699,2024-11-02 +Resort Hotel,0,103,2017,May,22,25,0,4,1,1.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,128.02,0,0,Check-Out,Chelsea Blair,susanrobinson@example.com,934.441.3599x4872,6011944913561638,2024-06-14 +City Hotel,0,42,2017,April,17,26,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,8.0,179.0,0,Transient-Party,128.86,0,1,Check-Out,Brittney Garcia,englishangela@example.org,001-293-384-9706x153,4321809068600,2025-05-05 +City Hotel,0,114,2017,April,14,3,1,5,2,0.0,0,BB,ISR,Groups,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,63.03,0,0,Check-Out,James Nguyen,gilmoremarcus@example.com,+1-586-620-1652,30529515014464,2025-02-23 +Resort Hotel,0,93,2017,December,52,27,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,E,0,No Deposit,13.0,179.0,0,Transient-Party,63.93,0,0,Check-Out,Traci Carter,mark08@example.org,930-785-5786,4244155693374563,2025-07-20 +City Hotel,0,143,2017,April,14,5,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,173.83,0,1,Check-Out,Christina Branch,ashley08@example.com,(558)936-1284x5583,060461216495,2025-06-03 +Resort Hotel,0,159,2017,September,37,12,2,4,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,237.0,179.0,0,Transient,125.22,0,0,Check-Out,William Taylor,susan02@example.org,793-615-8514x888,2595949184556533,2025-12-23 +Resort Hotel,0,15,2017,February,8,23,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,A,0,No Deposit,11.0,179.0,0,Contract,64.25,0,2,Check-Out,Richard Cook,williamsmaria@example.net,5433113400,6550916473621207,2024-12-01 +City Hotel,0,15,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,49.32,0,0,Check-Out,Gregory Butler,cherylanderson@example.com,+1-388-991-0547x4786,4561849331024987,2024-10-18 +City Hotel,0,2,2017,August,35,30,0,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,241.41,1,0,Check-Out,Victoria Schroeder,aharris@example.org,645-894-9639,4112193958886313506,2026-01-07 +City Hotel,1,87,2017,October,44,28,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,23,Transient,74.23,0,0,Canceled,Tracey Hubbard,powersbenjamin@example.com,001-702-385-2638x4787,30217067943286,2025-02-07 +Resort Hotel,0,147,2017,June,23,5,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,110.33,0,1,Check-Out,Patricia Lambert,rebeccahuffman@example.net,+1-709-510-2966x0477,30381259238853,2025-03-14 +Resort Hotel,0,40,2017,August,33,18,2,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,240.0,179.0,0,Transient,135.93,1,1,Check-Out,Steven Hernandez,louiswu@example.net,(428)468-3803x2538,36881081359102,2025-07-30 +Resort Hotel,1,35,2017,July,28,9,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,209.62,0,0,Canceled,Richard Walker,austinelizabeth@example.net,(540)297-4625x1807,342218338385110,2025-01-14 +City Hotel,0,97,2017,July,30,24,1,3,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Contract,135.49,0,1,Check-Out,Kimberly Rodriguez,jamesgonzalez@example.net,9168647829,4951058257718253,2024-08-09 +City Hotel,0,7,2017,September,37,11,1,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,131.27,0,1,Check-Out,Mark Fowler,timothybrandt@example.com,555-686-8286x58408,3515935352729551,2025-11-15 +Resort Hotel,1,300,2017,June,26,29,3,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,99.82,0,0,Canceled,Logan Mccullough,timothycurtis@example.com,2149517942,6578065722751148,2024-04-05 +City Hotel,0,81,2017,November,46,13,1,2,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,83.59,1,1,Check-Out,Karen Smith,tkennedy@example.org,274.226.6552,2246466987560409,2025-12-08 +Resort Hotel,1,98,2017,March,13,23,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,75,Transient-Party,74.39,1,0,No-Show,Sherri Wilson,hrobertson@example.com,(700)761-8611,213137044315623,2025-12-20 +Resort Hotel,1,92,2017,October,40,4,2,4,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,C,C,0,No Deposit,248.0,179.0,0,Transient,168.61,0,0,Canceled,Paul Rice,scottangela@example.org,864-221-5496x0465,3500830779446854,2025-06-24 +Resort Hotel,0,1,2017,December,49,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,229.0,0,Transient,40.76,0,0,Check-Out,Sara Lewis,justingordon@example.net,+1-811-519-9532x0971,4615923471757981,2025-03-08 +Resort Hotel,1,150,2017,June,22,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,64.38,0,0,Canceled,Leon Martin,eduardo41@example.com,458-879-2357x5644,4150798881949365,2025-11-20 +City Hotel,0,44,2017,April,14,3,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,112.72,0,1,Check-Out,Hunter Ford,barrettsamantha@example.org,5647759221,6011639926836296,2025-11-07 +City Hotel,0,2,2017,January,5,29,1,2,2,0.0,0,BB,,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,233.0,0,Transient,87.06,0,0,Check-Out,Jennifer Williams,kevinwalker@example.net,532.346.5605x4454,213175067450000,2025-11-23 +Resort Hotel,0,0,2017,February,8,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,52.01,0,1,Check-Out,Jamie Villanueva,adamscynthia@example.net,+1-246-992-7304,5486289433483642,2026-01-05 +City Hotel,0,16,2017,June,25,16,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.82,0,0,Check-Out,Mark Johnson,dianachavez@example.com,001-359-309-7755x93346,180038156619423,2025-12-09 +Resort Hotel,0,0,2017,February,5,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,10.0,68.0,0,Transient,44.72,1,0,Check-Out,Samantha Jacobs,dbaker@example.com,+1-741-432-2848,4617028121330,2025-02-22 +Resort Hotel,0,16,2017,December,51,20,0,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,57.97,0,1,Check-Out,Breanna Wiggins,denglish@example.org,3702918429,38011524569129,2026-03-09 +City Hotel,1,1,2017,March,11,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,Non Refund,12.0,179.0,0,Transient,47.73,0,1,No-Show,Andrew Mays,david71@example.net,(581)468-0558x695,4403038203132951540,2025-08-14 +Resort Hotel,0,91,2017,April,16,14,2,5,2,0.0,0,BB,POL,Direct,Direct,0,0,0,D,E,0,No Deposit,248.0,179.0,0,Transient,109.25,0,1,Check-Out,Anna Johnson,nicole09@example.com,(291)661-7958x05947,4743507273768729,2025-03-05 +City Hotel,1,45,2017,August,35,27,1,4,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,205.19,0,2,No-Show,Deborah Walker,lukezamora@example.org,+1-854-934-4228x40075,4429859856284938820,2024-10-22 +Resort Hotel,1,35,2017,December,48,2,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,178.0,179.0,0,Transient,79.15,0,0,Canceled,Joe Perez,lindamorse@example.com,866.206.0037x44026,4357593326141939,2024-06-17 +Resort Hotel,1,0,2017,March,13,23,0,7,2,1.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,122.17,0,0,No-Show,Megan Rogers,wlandry@example.org,817-455-2653x12211,30425418518539,2025-08-22 +Resort Hotel,0,13,2017,September,36,4,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,83.35,0,0,Check-Out,Brianna Day,jill52@example.org,8016585538,5166103515858554,2025-08-30 +City Hotel,0,92,2017,March,10,8,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,105.03,0,1,Check-Out,Kristen Flowers,sarahbaxter@example.net,6285688093,571228560157,2024-10-31 +City Hotel,0,145,2017,July,29,18,1,1,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.62,0,0,Check-Out,Janet Gonzalez,mullenkathryn@example.net,325-334-6146x52858,30586858376504,2025-12-30 +City Hotel,1,48,2017,November,44,2,1,0,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,77.59,0,0,Canceled,James Wallace,denise32@example.com,3235106119,213120324501179,2024-10-17 +Resort Hotel,0,0,2017,March,11,13,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,77.0,0,1,Check-Out,Melissa Garcia,lisagrant@example.net,+1-601-938-8005x6995,4265597193522031,2025-07-05 +City Hotel,0,1,2017,March,14,30,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,D,0,No Deposit,9.0,179.0,0,Group,85.89,0,1,Check-Out,Bob Brown,contreraspatrick@example.org,001-732-868-2542,340430089925844,2024-05-28 +City Hotel,0,309,2017,June,23,3,2,0,1,0.0,0,HB,PRT,Groups,TA/TO,1,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,89.63,0,0,Check-Out,Scott Shaw,xyork@example.net,(766)471-7746x0231,3502739482047917,2025-10-19 +City Hotel,0,14,2017,June,23,9,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,109.79,1,1,Check-Out,Shannon Riddle,paulgrant@example.net,001-529-549-8224x9231,4915249896287934,2025-09-22 +City Hotel,1,1,2017,February,7,12,1,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,13.0,179.0,0,Transient,237.07,0,0,No-Show,Derek Davila,johnking@example.org,+1-271-643-7868,3514658906669377,2024-03-27 +City Hotel,0,13,2017,July,29,19,2,5,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,D,1,No Deposit,11.0,179.0,0,Transient,137.66,0,0,Check-Out,Nathan Carter,harveykatelyn@example.org,349.953.3773,4025441152941976,2024-10-11 +City Hotel,0,25,2017,September,38,15,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.75,0,2,Check-Out,Amanda Bennett,fbell@example.org,001-525-527-2851x830,38511915086138,2024-11-30 +Resort Hotel,0,117,2017,August,35,24,2,5,2,0.0,0,FB,FRA,Groups,Direct,0,0,0,C,C,0,No Deposit,39.0,179.0,0,Transient,79.27,0,0,Check-Out,Dawn James MD,desireeherrera@example.com,458-827-4358x210,569047644426,2025-01-19 +City Hotel,0,61,2017,May,21,20,0,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,137.51,0,1,Canceled,Katie Harris,lisa26@example.com,5034988822,344678289496299,2024-07-29 +City Hotel,0,104,2017,July,30,20,0,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.14,0,1,Check-Out,Katie Reese,victoria60@example.org,378-414-5403,4051531398208626973,2025-08-06 +City Hotel,1,108,2017,April,15,8,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,93.38,0,2,Canceled,Eric Ramsey,coopereric@example.com,(233)802-2881,4397210046182802,2024-06-27 +Resort Hotel,1,250,2017,December,52,29,0,2,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient,74.12,0,0,Canceled,Molly Whitaker,smorgan@example.net,459-751-1855x60591,38231939633092,2025-11-17 +City Hotel,1,139,2017,August,35,30,2,5,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,229.6,0,1,Canceled,Shelby Kelly,andrew23@example.com,+1-547-969-5508,180017556186894,2025-09-27 +City Hotel,0,6,2017,October,40,6,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,29.0,179.0,0,Contract,74.61,0,0,Check-Out,John Sanchez,daniel50@example.com,001-673-762-3472x501,377461801901876,2025-03-27 +City Hotel,0,0,2017,August,31,5,1,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,237.73,1,0,Check-Out,Eileen Wiley,george86@example.org,271.653.9993x65132,4054975866663040,2024-11-21 +City Hotel,0,218,2017,July,28,8,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,184.06,0,2,Check-Out,Jordan Lawrence,alexestrada@example.com,001-413-428-7587x328,340366935832968,2025-06-09 +City Hotel,0,2,2017,July,27,4,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,106.57,0,1,Check-Out,Candice Torres,hernandezaudrey@example.org,001-701-770-5969x112,4246029964001643,2025-02-19 +Resort Hotel,0,12,2017,January,2,3,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,303.0,179.0,0,Transient,39.9,0,1,Check-Out,Judy Elliott,tiffanyscott@example.com,3105609611,30348871813686,2024-10-20 +City Hotel,1,0,2017,October,41,13,1,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,2.24,0,0,Canceled,Kimberly Lopez,nicolebennett@example.com,001-386-502-6851x3769,4606063281513,2024-06-09 +City Hotel,0,59,2017,January,2,11,0,4,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,40.19,0,1,Check-Out,Gina Holt,aaron09@example.org,001-953-439-5824,6011214327056140,2025-08-06 +City Hotel,1,155,2017,May,21,20,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,128.03,0,0,Canceled,Matthew Ramirez,okidd@example.net,418.886.3551x2489,4611019052349,2024-12-29 +Resort Hotel,1,96,2017,April,18,30,0,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,82.99,0,0,Canceled,Adam Evans,william05@example.com,(621)354-2926x4070,4422762708065,2025-11-13 +City Hotel,0,14,2017,April,17,23,1,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,E,0,No Deposit,13.0,179.0,0,Transient,138.44,0,0,Check-Out,Jennifer Rodriguez,leslie62@example.net,(509)931-6487x6267,4900252867749,2025-09-24 +City Hotel,0,22,2017,August,32,5,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,222.07,0,3,Check-Out,Kara Rose,ytran@example.org,356-514-1618,36137736146190,2025-09-27 +City Hotel,1,11,2017,March,14,30,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,139.58,0,1,Canceled,Jacqueline Knight,stacy08@example.net,560-391-8074,213164442598550,2025-02-06 +City Hotel,1,288,2017,September,39,25,0,2,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,65.57,0,0,Canceled,Amanda Reed,wsolomon@example.org,+1-917-908-0422x37989,4358546034706004,2024-12-07 +City Hotel,0,1,2017,January,3,15,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,34.85,1,2,Check-Out,Kimberly Cruz,mccoychristopher@example.org,759.580.4019,4724037673820938852,2025-07-26 +Resort Hotel,0,52,2017,March,11,13,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,119.56,0,0,Check-Out,Patrick Wheeler,itaylor@example.com,593.471.7905x3923,4074734309652,2025-03-27 +City Hotel,1,46,2017,September,37,9,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,156.59,0,1,Canceled,Cindy Knight,john62@example.org,(962)871-3333x5133,4554736444595334395,2024-10-03 +Resort Hotel,0,2,2017,July,29,15,0,2,1,1.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,241.0,179.0,0,Transient,112.34,0,1,Check-Out,Tammy Simon,zalexander@example.com,730.943.5583x23123,4607126528905377,2024-04-14 +City Hotel,1,403,2017,September,35,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,102.74,0,0,Canceled,Paul Fuller,megan19@example.org,(709)989-1169x41855,30351316096800,2025-07-07 +City Hotel,1,162,2017,September,39,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,24.0,179.0,0,Transient,104.35,0,0,Canceled,Gregory Bell,lwebster@example.org,8323058356,501851210101,2025-07-01 +City Hotel,0,388,2017,September,37,10,0,1,1,0.0,0,SC,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,9.0,224.0,0,Transient-Party,3.89,0,0,Check-Out,George Hopkins,mmiller@example.com,902-225-9359x47640,3560057680516222,2025-07-03 +City Hotel,0,7,2017,January,2,12,1,0,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,41.63,0,3,Check-Out,Jaclyn Steele,hernandezdaniel@example.org,787.398.8825x34419,2720314700875511,2024-11-01 +Resort Hotel,0,0,2017,July,27,8,3,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,135.37,0,1,Check-Out,Rodney Barnett,ljennings@example.net,(292)745-2745,3512645883596410,2025-04-27 +City Hotel,1,205,2017,July,28,12,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,167.13,0,2,Canceled,Christopher Howard,ricedaniel@example.com,202-651-6256x3811,576433013694,2025-05-06 +City Hotel,0,183,2017,June,23,9,1,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.23,0,1,Check-Out,Joseph Larsen,zallen@example.net,955.704.6587x682,4899348780686,2025-12-20 +City Hotel,0,15,2017,September,38,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Contract,86.97,0,0,Check-Out,Barbara Cooke,amanda32@example.com,001-727-901-8830,579020205178,2025-07-21 +City Hotel,0,1,2017,April,17,20,2,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Group,108.28,0,0,Check-Out,Autumn Wallace,danarobinson@example.com,6788347490,4692260810627874552,2025-09-24 +City Hotel,1,188,2017,June,26,23,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,146.09,0,3,Canceled,David Clark,carterolivia@example.com,(637)288-1439,6541113185873423,2025-07-10 +Resort Hotel,0,1,2017,February,8,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,K,0,No Deposit,15.0,82.0,0,Transient,39.21,0,0,Check-Out,Jennifer Snow,ashley48@example.net,2474503169,2273158214632707,2024-10-02 +City Hotel,1,12,2017,April,14,3,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.54,0,2,Canceled,Lynn Martinez,grahamjustin@example.com,(522)380-8979,675922636666,2026-02-16 +City Hotel,0,12,2017,October,41,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,110.94,0,0,Check-Out,Jeffrey Parker,melissa59@example.com,(780)454-9090x416,675915651557,2025-10-16 +City Hotel,0,13,2017,August,35,24,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.87,0,2,Check-Out,Jon Kelley,scott78@example.org,+1-636-216-5266x517,3528901712734249,2025-09-16 +City Hotel,0,3,2017,August,32,5,1,1,1,0.0,0,HB,USA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,82.55,0,0,Check-Out,Timothy Hall,douglasrodriguez@example.org,321.570.3437x90281,4657841073364924,2024-09-29 +City Hotel,0,187,2017,August,32,9,4,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,125.76,0,1,Check-Out,Stacey Lewis,roconnell@example.org,456-698-0536,5282257465897787,2025-10-11 +Resort Hotel,0,151,2017,March,13,23,1,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,51.33,0,2,Check-Out,Maureen Becker,kevin76@example.org,001-667-926-4349,4355058979109,2025-06-10 +City Hotel,0,60,2017,January,2,10,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,48.58,0,1,Check-Out,Anthony Bailey,colemanchristine@example.com,+1-882-831-7809x88368,30179835714912,2025-02-14 +City Hotel,0,109,2017,September,39,23,1,2,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,168.17,0,2,Check-Out,Kimberly Wise,lisa81@example.com,3655348227,30427018496744,2024-04-16 +Resort Hotel,0,0,2017,January,2,2,0,1,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,41.81,0,1,Check-Out,Erin Moore DVM,udiaz@example.net,2269034513,4875353299211471,2024-04-18 +City Hotel,0,3,2017,February,7,14,1,1,1,0.0,0,SC,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.77,1,0,Check-Out,Jeff Ramirez,clarkkathleen@example.com,518.896.1064x15740,6507104269065871,2025-08-17 +Resort Hotel,0,12,2017,March,9,1,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,45.32,0,0,Check-Out,Christina Martinez,walterhoward@example.net,838.586.6819x95985,341300769859606,2024-05-11 +City Hotel,1,157,2017,November,47,23,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,95.3,0,0,Canceled,Christian Schneider,craig72@example.org,001-577-720-5518x70047,2269338558279010,2024-04-20 +City Hotel,0,45,2017,August,31,3,1,1,2,2.0,0,BB,FRA,Direct,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,232.11,0,0,Check-Out,Taylor Fisher,nbyrd@example.org,+1-982-522-8087,502073556297,2025-07-24 +City Hotel,0,45,2017,July,27,2,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,89.31,0,1,Check-Out,Miranda Alvarez,ihood@example.com,001-671-674-0817,4297382962465221,2026-02-17 +City Hotel,0,153,2017,March,13,31,1,1,2,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,E,A,0,No Deposit,28.0,179.0,0,Transient-Party,76.2,1,0,Check-Out,Melvin Kennedy,juliepowell@example.org,(246)451-3122,38483169063660,2025-03-29 +City Hotel,0,156,2017,October,43,22,2,5,3,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient-Party,130.02,0,1,Check-Out,Ernest Sanders,megan45@example.com,402.621.2009,4318886672255370,2025-07-19 +City Hotel,0,1,2017,October,41,10,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,124.65,0,0,Check-Out,Chad Steele,zrodriguez@example.org,331-684-4885,3500635712317660,2024-10-26 +City Hotel,1,400,2017,May,21,23,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient-Party,91.15,0,0,Canceled,Tony Duffy,kimashley@example.org,302.875.8008x94979,2626642967677096,2025-12-08 +City Hotel,1,410,2017,June,23,3,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,106.79,0,0,Canceled,James Gilbert,gparker@example.com,+1-745-255-1827,2719198009860131,2024-05-27 +Resort Hotel,1,246,2017,August,34,22,2,5,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,252.0,0,0,Canceled,Timothy Anderson,icolon@example.net,+1-771-938-5701x714,6011461518055304,2025-10-07 +Resort Hotel,1,291,2017,January,2,2,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,240.0,179.0,0,Contract,63.1,0,2,Canceled,Emily Wyatt,lowens@example.org,001-479-641-0421x7896,3571720864275827,2025-10-22 +City Hotel,1,375,2017,June,24,11,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,109.35,0,0,Canceled,Gary Callahan,nicholas09@example.org,(920)645-5711x1073,2704696815037254,2024-11-23 +Resort Hotel,0,0,2017,March,12,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,17.0,45.0,0,Transient,45.73,0,0,Check-Out,Jason Underwood,fvaughn@example.org,+1-263-203-0792x4760,4991329783316,2025-02-22 +City Hotel,0,16,2017,April,18,30,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,F,1,No Deposit,10.0,179.0,0,Transient,82.12,0,0,Check-Out,Brett Whitehead,lindsey78@example.net,870.355.3537,3583451527722148,2024-10-16 +City Hotel,0,97,2017,March,12,22,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.05,0,2,Check-Out,James Walsh,parkershannon@example.net,235-351-3969x11345,4844195387013832,2025-06-25 +City Hotel,0,149,2017,March,12,17,0,4,1,0.0,0,BB,,Aviation,TA/TO,0,0,1,A,A,0,No Deposit,12.0,179.0,0,Group,81.85,0,0,Check-Out,Emily Johnson,bradytravis@example.com,+1-206-739-3610x092,213148638636811,2025-09-12 +City Hotel,0,137,2017,May,20,15,1,3,2,1.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,186.71,0,0,Check-Out,Ryan Garcia,ewarren@example.net,(207)913-8368x648,4173716632138781907,2025-08-30 +Resort Hotel,0,251,2017,September,37,14,2,10,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,0,3,Check-Out,Mitchell Douglas,richardcarter@example.org,+1-403-687-7725x49856,2240704292172569,2025-08-14 +City Hotel,1,0,2017,August,32,9,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,207.02,0,0,Check-Out,David Davila,katie14@example.net,+1-577-604-1461x19731,348233547080547,2025-10-08 +City Hotel,0,94,2017,March,10,5,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,240.0,179.0,0,Transient-Party,64.42,1,0,Check-Out,David Wood,jenniferrobinson@example.net,+1-226-737-7687x307,2295579320014429,2025-04-13 +City Hotel,1,10,2017,December,52,27,0,7,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,86.82,0,1,No-Show,Gabriel Jackson,donaldaustin@example.com,550.335.5479,4601063861885740,2025-05-10 +City Hotel,0,0,2017,August,32,7,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,18.0,331.0,0,Transient,3.98,0,0,Check-Out,Ann Fuentes,stephensexton@example.net,797.368.5358x50496,4131064599672,2024-07-25 +City Hotel,1,175,2017,August,35,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.23,0,0,Canceled,Curtis Jacobson,elizabethnunez@example.com,+1-665-704-3452,3534530863744921,2024-08-31 +Resort Hotel,0,11,2017,February,8,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,191.0,204.0,0,Transient-Party,62.22,0,0,Check-Out,Morgan Allen,smorgan@example.com,001-866-260-4323x66258,2652491331255453,2025-10-20 +Resort Hotel,0,111,2017,July,28,7,0,2,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,201.56,0,1,Check-Out,Tina Miller,erosales@example.net,+1-817-564-1845,4946383793536,2024-09-16 +Resort Hotel,0,6,2017,March,12,19,0,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,13.0,179.0,75,Transient-Party,121.73,1,1,Check-Out,Kayla Maldonado,yjacobs@example.org,249-980-8106x63182,345825352078236,2024-09-30 +Resort Hotel,1,1,2017,August,33,13,0,4,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,232.92,0,0,Canceled,Elizabeth Kane,amandarobinson@example.org,+1-616-921-2140x086,5122840640323771,2024-08-29 +Resort Hotel,0,153,2017,August,32,6,2,5,2,1.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,99.61,0,1,Check-Out,John Carter,angela39@example.com,001-867-897-8817,6011503849656423,2025-04-09 +City Hotel,1,142,2017,July,31,30,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,129.6,0,0,Canceled,Michael Merritt,crystal10@example.com,786.526.3181,6011166525905074,2025-02-23 +City Hotel,0,31,2017,February,7,17,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,40.98,0,1,Check-Out,John Mora,adamsmandy@example.com,696-481-6376x6176,4067473788334,2025-11-25 +Resort Hotel,0,157,2017,July,27,5,3,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,250.0,179.0,0,Transient,252.0,1,1,Check-Out,Stephen Roach,ramosbilly@example.net,891.731.2666,4964098591847363,2025-08-20 +City Hotel,0,22,2017,August,34,25,0,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,168.7,0,2,Check-Out,Nicole Moody,bradshawmaureen@example.net,4447952596,4304795707153102,2024-05-26 +City Hotel,1,43,2017,February,8,24,2,5,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient-Party,80.2,0,0,No-Show,Kathryn Davis,stevengillespie@example.com,(532)890-8390,38019051969604,2026-03-06 +City Hotel,1,317,2017,October,42,17,1,5,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,62,Transient,83.38,0,0,Canceled,Peter Blackwell,nicholskatelyn@example.net,+1-617-293-4696,6589203615315146,2024-06-02 +City Hotel,1,355,2017,June,25,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,43,Transient,92.86,0,0,Canceled,Richard Oneal,zherrera@example.org,5659785371,4040157217352850344,2025-08-14 +City Hotel,0,0,2017,January,5,27,0,1,1,0.0,0,HB,AUT,Direct,Direct,1,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,119.78,0,1,Check-Out,Christina Cook,kvelez@example.org,(743)677-9573,6548625057199242,2026-03-11 +Resort Hotel,0,10,2017,October,41,8,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Transient-Party,106.64,0,0,Check-Out,Julie Wagner,brandondawson@example.net,+1-592-799-5396x985,3538229854445962,2024-04-05 +City Hotel,0,27,2017,December,50,9,1,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,94.65,0,0,Check-Out,Shaun Chavez,jaredmoss@example.org,536-410-7541,38428539471036,2025-11-29 +City Hotel,1,161,2017,November,45,10,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,42,Transient,98.7,0,0,Canceled,Ronald Cline,xramos@example.net,001-296-879-5242x54290,6502571555704261,2025-10-30 +Resort Hotel,0,0,2017,March,12,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,15.0,67.0,0,Transient,51.46,0,0,Check-Out,Nathan James,ocarter@example.org,001-851-761-8079,502007571982,2025-11-29 +Resort Hotel,0,0,2017,August,31,4,1,0,1,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient-Party,18.25,0,1,Check-Out,Timothy Johnston,jaredhill@example.net,001-967-317-8775x04760,4944105783373572,2024-07-01 +City Hotel,0,149,2017,August,32,6,1,4,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,A,0,No Deposit,15.0,179.0,0,Transient,145.72,0,1,Check-Out,Alicia Zuniga,ybradshaw@example.com,+1-365-697-3283,2232391604303916,2025-12-14 +Resort Hotel,0,4,2017,January,2,6,2,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,244.2,0,0,Check-Out,Jessica Fry,xlong@example.net,+1-428-412-5539x37163,3526873755871414,2026-02-12 +City Hotel,0,9,2017,May,19,9,1,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,A,0,No Deposit,247.0,179.0,0,Transient,134.08,0,0,Check-Out,Luis Watson,lorilane@example.com,(410)248-2679x75781,6011367262067504,2026-02-05 +City Hotel,0,14,2017,March,13,29,0,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.65,0,1,Check-Out,Nancy Taylor,benjamin68@example.org,(800)687-4328x39264,4063560531022092,2024-07-13 +Resort Hotel,0,10,2017,May,20,17,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,161.51,1,1,Canceled,Dawn Nelson,brandonscott@example.org,(975)520-5650x73776,5382330377490410,2025-07-15 +Resort Hotel,0,147,2017,October,42,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,78.58,0,0,Check-Out,Michael Brown,melissa72@example.com,221-418-5347,4421122087345506111,2025-05-26 +Resort Hotel,0,119,2017,August,35,31,0,4,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,2,No Deposit,247.0,179.0,0,Transient,246.12,1,0,Check-Out,Alexis Goodwin,amanda80@example.org,(997)435-2608,2276419305518495,2025-11-14 +City Hotel,1,1,2017,January,2,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,16.0,179.0,0,Transient,32.55,0,1,Canceled,Keith Meyer,lspencer@example.org,001-448-488-0775x02138,4966402768573653,2024-06-21 +Resort Hotel,1,58,2017,January,2,3,0,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient-Party,41.36,0,0,Canceled,Christine Aguilar,deleonmargaret@example.org,2268051378,30219814678231,2025-08-25 +Resort Hotel,0,239,2017,October,40,2,1,3,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,B,0,No Deposit,16.0,221.0,0,Transient,55.56,0,0,Check-Out,Amber Smith,scruz@example.net,+1-496-861-1677x47295,4270953367185523508,2024-11-21 +Resort Hotel,1,263,2017,August,33,16,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Contract,78.19,0,2,Check-Out,Matthew Moore,ashleyedwards@example.org,835.200.3304x595,6531243381370056,2024-10-24 +Resort Hotel,0,52,2017,August,32,5,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,237.0,179.0,0,Transient,222.37,0,1,Check-Out,Katherine Hughes,rebecca18@example.org,984.497.9446,4462697443584038,2025-12-18 +Resort Hotel,0,3,2017,January,2,3,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,1,0,A,C,2,No Deposit,243.0,179.0,0,Transient,49.54,1,1,Check-Out,Stephen Martinez,ashleyenglish@example.com,(384)549-1603,4686830915157518,2025-02-21 +Resort Hotel,1,38,2017,July,31,28,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,251.41,0,0,Canceled,Michael Welch,jbenton@example.net,001-400-593-3485x159,36732123690949,2024-10-02 +City Hotel,0,0,2017,June,24,8,0,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,91.45,0,2,Check-Out,Brad Davis,tonyjohnson@example.com,001-389-550-6419x4544,6011305797133763,2025-09-26 +City Hotel,1,46,2017,December,48,2,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,15.0,179.0,0,Transient-Party,80.25,0,0,Canceled,Renee Hansen,christopher89@example.org,523-732-2171,4689568487225100,2025-12-22 +Resort Hotel,0,6,2017,March,11,14,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,37.31,1,1,Check-Out,Tiffany Ferguson,wrussell@example.org,417-361-6448x597,3528462546742825,2024-10-28 +City Hotel,0,98,2017,April,14,3,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,89.5,0,1,Check-Out,Betty Gutierrez,justinbaker@example.net,+1-901-903-4755,6530112077751732,2025-03-01 +City Hotel,0,20,2017,October,41,12,0,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,81.26,0,0,Check-Out,Ryan Friedman,allenholly@example.org,001-281-403-4213x92807,567460207663,2025-07-28 +City Hotel,1,181,2017,June,23,3,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,134.97,0,0,Canceled,Ivan Fisher,lramsey@example.com,+1-886-924-1063x16519,3531095063842068,2026-01-21 +Resort Hotel,0,257,2017,October,43,24,0,6,2,0.0,0,HB,BEL,Groups,Direct,0,0,0,A,A,1,No Deposit,323.0,179.0,0,Transient-Party,108.07,0,0,Check-Out,Jorge Sanford,smithrobert@example.org,(276)816-5433x313,372845323373751,2025-07-16 +Resort Hotel,1,94,2017,May,22,26,4,2,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,C,E,0,No Deposit,131.0,179.0,0,Transient-Party,152.59,0,1,Canceled,Jeffrey Wilkinson,tpatel@example.net,+1-310-435-5025x64664,3566638814385917,2025-04-22 +City Hotel,0,323,2017,September,36,3,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,75,Transient-Party,205.95,0,0,Check-Out,Beth Anderson,lellis@example.net,468.216.6541x367,4290493342392691,2026-01-05 +City Hotel,0,25,2017,April,16,13,2,4,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,108.72,1,2,Check-Out,Angelica Anderson,kvasquez@example.com,+1-267-877-1307x407,4383082195746372,2025-05-13 +Resort Hotel,0,16,2017,October,43,26,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,64.1,1,1,Check-Out,Courtney Dixon,campbellchristina@example.org,710.663.2129x474,3521327744436867,2025-07-02 +City Hotel,1,55,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,74.79,0,0,Canceled,Victoria Powell,pmooney@example.com,+1-498-598-3251x37286,4075973364353929392,2024-12-22 +Resort Hotel,0,8,2017,March,13,25,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,171.62,0,1,Check-Out,Ricky Miller,evincent@example.org,549-553-7791,3552078022765236,2025-08-22 +City Hotel,1,4,2017,March,10,10,2,1,1,0.0,0,BB,PRT,Aviation,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,86.83,0,1,No-Show,Christina Harris,allendonna@example.org,001-660-715-0044x8946,6599717414489842,2024-05-20 +City Hotel,1,148,2017,April,15,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,103.05,0,0,Canceled,Patricia Murray,edward20@example.net,001-828-968-5859x644,372622470000697,2024-07-29 +City Hotel,1,13,2017,February,9,27,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,64.01,0,0,Canceled,David Allen,jbarker@example.net,385.486.8897,4462392693611919,2026-03-17 +Resort Hotel,0,158,2017,March,13,26,0,2,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,112.45,0,0,Check-Out,Wesley Manning,ephelps@example.com,639-289-0409x0184,4012980398699588,2024-06-09 +City Hotel,1,179,2017,May,19,10,0,3,2,0.0,0,HB,PRT,Groups,Corporate,0,0,0,A,A,1,Non Refund,11.0,179.0,0,Transient-Party,101.47,0,0,Canceled,Jessica White,cedwards@example.org,654-858-7452x756,3509924183188763,2024-09-20 +City Hotel,0,42,2017,October,40,4,1,4,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,158.11,0,0,Check-Out,Grace Wright,fmeyer@example.net,331.319.0027x67487,6011135452444696,2025-04-13 +City Hotel,0,0,2017,November,48,28,1,2,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,85.47,0,2,Check-Out,Matthew Brown PhD,katherine60@example.net,575-869-3716,6011572792603443,2025-06-05 +City Hotel,1,259,2017,July,27,1,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,20,Transient,78.79,0,0,Canceled,Erica Molina,sara97@example.org,565-482-4337x4935,340598840716031,2025-12-07 +Resort Hotel,0,35,2017,August,34,22,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,C,0,No Deposit,245.0,179.0,0,Transient,252.0,1,3,Check-Out,Raymond Rodriguez,douglassilva@example.com,(330)618-5648x7136,341706431643436,2024-04-19 +City Hotel,0,34,2017,April,17,24,1,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,111.0,0,1,Check-Out,Brian Jackson,gabriellelee@example.net,+1-412-750-4868x3020,6579315368051678,2025-01-27 +City Hotel,1,169,2017,June,25,15,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,118.36,0,0,Canceled,Gary Nichols,nlawrence@example.net,609.709.9111,4789362837109043,2024-10-19 +City Hotel,1,45,2017,December,49,6,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,72.98,0,0,Canceled,Christopher Davis,brendacarter@example.net,(584)516-0172x0236,6529235214563935,2025-08-14 +City Hotel,0,51,2017,July,29,15,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,106.68,0,2,Check-Out,Theresa Mitchell,avilakathleen@example.org,4907926918,344154805966850,2025-05-20 +City Hotel,1,103,2017,November,45,9,1,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,89.24,0,0,Canceled,Gene Lopez,aperkins@example.com,(945)926-6190x5161,6567894343186076,2025-02-19 +City Hotel,1,4,2017,August,34,22,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,117.02,0,1,No-Show,Adam Kennedy,tammy02@example.org,740.271.1591x3962,585599868155,2025-10-18 +City Hotel,0,45,2017,October,40,6,0,3,1,0.0,0,BB,ESP,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,179.0,331.0,0,Transient,106.57,0,0,Check-Out,Jennifer Walters DDS,rrodriguez@example.com,(816)582-1177x096,4157122779017592474,2025-12-21 +City Hotel,0,9,2017,November,44,2,0,2,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,63.4,0,0,Check-Out,Eric Mcgee,sharris@example.com,(276)982-8708,4999048633474212,2024-06-09 +City Hotel,1,61,2017,April,15,7,1,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.53,0,1,Canceled,Ethan Fletcher,pdavis@example.net,760-385-1025x11281,180065165332961,2025-12-17 +City Hotel,1,13,2017,August,33,11,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Ashley Boone,mary82@example.net,857.942.4414,30008785381994,2024-10-05 +City Hotel,0,57,2017,July,30,23,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,125.24,0,1,Check-Out,Katherine Mendez,hernandezbrian@example.com,488-693-8710x6355,4611649308903043,2025-02-13 +Resort Hotel,0,283,2017,October,41,8,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Contract,61.8,0,1,Check-Out,Cassandra Chang,alexandermoore@example.org,951-431-0898x1162,6011894107478679,2024-08-09 +Resort Hotel,0,53,2017,August,31,5,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,128.63,0,2,Check-Out,Susan Hicks,patricklee@example.net,962-463-6013,4259991509229354310,2024-10-15 +City Hotel,0,11,2017,August,34,21,2,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,222.0,0,Transient-Party,51.57,0,0,Check-Out,Tina Ramirez,garrettmeyers@example.org,593-597-8761,4804581143774,2026-01-18 +Resort Hotel,1,19,2017,September,37,12,1,4,2,1.0,0,BB,RUS,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,226.25,0,3,Canceled,Richard Brown,espinozanicole@example.net,+1-674-880-6060x2400,30291833329062,2024-05-11 +City Hotel,0,93,2017,March,10,5,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,38.95,0,2,Check-Out,Gina Clark,michealroberts@example.com,+1-714-950-6363x664,2292725289827771,2025-02-16 +City Hotel,1,414,2017,June,24,8,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,108.48,0,0,Canceled,Jamie Brown,andersonjulia@example.org,+1-645-450-4924x17258,4253636358300347726,2025-07-09 +City Hotel,0,21,2017,March,10,10,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,68.0,179.0,0,Transient,127.95,0,1,Check-Out,Jennifer Steele,gwatson@example.net,874-594-2084x237,4898541152524659487,2025-06-18 +Resort Hotel,1,79,2017,June,26,24,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,82.85,0,2,Canceled,Tamara Norris,millerjames@example.org,625.792.5409,4605644644337385750,2024-07-31 +Resort Hotel,0,2,2017,February,7,16,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,51.27,1,1,Check-Out,John Adams,margaretdorsey@example.org,856.637.7026,4326134284426,2025-05-31 +City Hotel,0,46,2017,November,47,21,2,2,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,75.0,63,Transient-Party,87.21,0,0,Check-Out,John Perez,jennifernguyen@example.net,001-865-609-9366x29543,30486612088588,2025-10-29 +Resort Hotel,0,0,2017,December,49,8,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,244.0,179.0,0,Transient,44.52,0,0,Check-Out,Gerald Allen,jayallen@example.org,6624445795,6011102609947039,2025-03-28 +Resort Hotel,0,41,2017,June,26,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,133.19,0,1,Check-Out,Sara Weeks,charlesanderson@example.org,(565)535-0729x824,4926728856672118120,2024-10-19 +City Hotel,0,2,2017,September,36,5,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,64.35,0,2,Check-Out,Danielle Shields,rschneider@example.com,3475923146,4788771188222027381,2025-06-25 +City Hotel,1,250,2017,July,28,15,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,117.54,0,0,Canceled,Jeff Frank,fowlermichelle@example.org,(438)543-2263x7436,3599228359913165,2026-02-07 +City Hotel,0,1,2017,March,10,8,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,82.44,0,1,Check-Out,Brandy Cross,zquinn@example.com,851-426-8341x5816,4947511096069220745,2024-08-11 +City Hotel,0,25,2017,January,4,26,1,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,37.27,0,1,Check-Out,Lisa Griffin,pattersonvictoria@example.com,(398)340-0536x288,4282361725763566,2025-12-27 +Resort Hotel,1,51,2017,July,29,17,1,5,2,2.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,209.78,0,2,Canceled,Holly Duran,sherry61@example.net,299-888-0349x70002,3568242682244617,2026-02-22 +City Hotel,1,99,2017,October,43,23,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Group,92.89,0,2,Check-Out,Patricia Mcdowell,seancobb@example.net,622-448-3119x1304,4075671987583127,2025-08-31 +Resort Hotel,1,151,2017,July,28,14,1,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,228.61,0,0,Canceled,Lynn Camacho,troy32@example.net,576-476-3181x63534,2229582122031519,2025-10-07 +City Hotel,0,42,2017,August,32,8,2,5,3,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,138.51,1,1,Check-Out,Crystal Werner,alicia59@example.net,304.271.5055x548,3565615949556936,2025-09-22 +Resort Hotel,0,15,2017,April,17,23,1,7,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,122.56,0,2,Check-Out,Michael Gibson,suzanne53@example.net,001-975-392-2571x725,180052275464413,2024-04-23 +City Hotel,0,1,2017,March,10,6,1,2,3,0.0,0,SC,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,61.12,0,1,Check-Out,Brandon Huffman,thomasheather@example.org,354-550-7480,348846640930712,2026-03-19 +City Hotel,1,45,2017,January,3,16,1,2,2,0.0,0,BB,,Online TA,Direct,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient,81.65,0,2,Canceled,Melinda King,melanie80@example.net,3479665074,4049268724572264310,2024-03-27 +Resort Hotel,0,11,2017,March,11,13,0,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient,47.58,0,3,Check-Out,Stephanie Curry,myersbrian@example.org,001-421-236-3254x071,3549375879884375,2024-07-30 +Resort Hotel,0,2,2017,March,12,22,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,86.92,1,0,Check-Out,Kelly Andersen,elliottalexander@example.org,472.266.0682x36256,2246539699876766,2024-08-06 +City Hotel,1,256,2017,October,43,28,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,85.54,0,0,Canceled,Adam Lambert,castroalicia@example.org,+1-968-489-6564x79960,501840789603,2025-11-19 +City Hotel,1,365,2017,August,34,20,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,93.03,0,0,Canceled,Amanda Fitzgerald,pattersonmichelle@example.com,+1-245-675-2119x367,180028632237866,2024-05-24 +Resort Hotel,0,146,2017,April,14,4,0,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,252.0,1,0,Check-Out,Pedro White,alexandra04@example.com,357.747.7545,4456835220302418,2024-09-25 +City Hotel,1,1,2017,February,9,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,10.0,65.0,0,Transient,45.87,0,1,No-Show,Ashley Andrade,matthewjackson@example.org,806.906.2353,4340868855480241,2025-08-21 +Resort Hotel,1,100,2017,February,7,13,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,64.87,0,0,No-Show,Nicholas Taylor,karen55@example.com,(468)599-6324,213100387678676,2025-01-21 +City Hotel,0,0,2017,November,46,12,1,0,1,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,17.0,257.0,0,Transient,0.5099000000000001,0,0,Check-Out,Amy Miller,tiffanyparker@example.com,994.775.1309x606,3568975545105091,2025-02-04 +City Hotel,0,49,2017,August,33,13,2,3,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,225.3,0,1,Check-Out,James Campbell,natalie84@example.com,+1-459-814-9781x492,4329222375612594173,2025-02-28 +City Hotel,0,21,2017,July,30,26,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,211.51,0,3,Check-Out,Ian Kirby,lmoreno@example.org,544.956.9932x119,4211904717129503202,2024-12-25 +Resort Hotel,0,18,2017,August,33,17,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,174.0,179.0,0,Group,89.74,0,1,Check-Out,Debra Hicks,tylerperez@example.org,+1-860-346-2715x086,4814325497055,2024-09-22 +City Hotel,0,13,2017,August,32,5,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,Michelle Day,jacksonjoshua@example.net,+1-436-710-8600,4467361828194,2025-07-17 +Resort Hotel,0,0,2017,August,32,11,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,54.82,1,1,Check-Out,Joshua Travis,christophermendez@example.com,744.746.5928x65206,6011449112224467,2025-01-28 +City Hotel,1,14,2017,October,43,22,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,69.0,0,Transient-Party,139.83,0,0,Canceled,Jonathan Bush,swansonheidi@example.com,325-404-3601x416,3517828051548604,2024-12-17 +City Hotel,0,54,2017,May,22,29,1,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,127.47,1,2,Check-Out,Nicholas Kelly DDS,restrada@example.net,(860)700-6470,3510317660728937,2024-10-01 +Resort Hotel,1,12,2017,May,20,12,0,1,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,81.6,0,0,Canceled,Brett Russo,ahall@example.net,(343)265-8516x479,377859595283973,2025-02-24 +City Hotel,0,10,2017,March,12,22,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,107.36,0,0,Check-Out,Thomas Guzman,clayton19@example.net,001-208-602-3303x190,213104758442548,2026-02-21 +Resort Hotel,0,0,2017,January,2,12,1,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,38.16,0,3,Check-Out,Austin Dillon,batesleroy@example.com,227-239-7964x053,3582192362600939,2026-02-27 +Resort Hotel,0,1,2017,July,29,19,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,174.0,179.0,0,Transient,134.2,0,0,Check-Out,James Erickson,thawkins@example.net,669.470.5906,4792646288298,2026-01-05 +Resort Hotel,0,41,2017,March,13,31,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,H,0,No Deposit,245.0,179.0,0,Transient,175.44,0,1,Check-Out,Rebecca Fowler,paulahaynes@example.com,+1-856-257-1636x9411,6011000793108287,2024-10-10 +City Hotel,1,246,2017,October,41,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,96.91,0,0,Canceled,Heather Smith,oflores@example.com,001-866-413-9726x317,38399928687815,2024-04-10 +Resort Hotel,1,3,2017,February,9,25,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,120.53,0,0,Canceled,Tonya Sharp,scott36@example.org,001-810-971-2106x18294,4385900608560874,2025-10-29 +City Hotel,0,58,2017,April,15,7,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,115.46,0,1,Check-Out,Christina Anderson,wagnerbrett@example.org,+1-800-875-4488x72651,371416417529616,2025-03-07 +City Hotel,0,127,2017,May,19,4,1,3,2,0.0,0,SC,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,128.22,0,1,Check-Out,Jose Sanders MD,nnelson@example.com,(889)654-0526x8602,4105071104857674,2025-08-25 +Resort Hotel,0,155,2017,August,33,14,2,6,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,242.0,179.0,0,Transient,242.45,0,2,Check-Out,Wesley Haas,allisonsnyder@example.net,645.722.5483,30545214439190,2024-06-20 +Resort Hotel,1,16,2017,January,3,18,0,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,243.0,179.0,0,Transient,234.9,0,1,Canceled,Elizabeth Smith,sullivanscott@example.org,733-206-7743,3578477086420078,2025-01-04 +Resort Hotel,0,16,2017,February,9,26,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,1,No Deposit,26.0,179.0,0,Transient,81.29,0,0,Check-Out,Tom Crosby,pschultz@example.org,001-732-879-0162x62096,180022735936144,2024-11-12 +Resort Hotel,0,48,2017,November,47,23,1,2,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,102.27,1,0,Check-Out,Martin Ferrell,duffybrittany@example.com,(779)428-2361x9746,4205328759547961,2024-12-26 +City Hotel,0,0,2017,December,52,27,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,152.23,1,1,Check-Out,Sydney Green,zachary79@example.com,544-479-5718x56902,4033572966406267,2024-09-28 +Resort Hotel,0,26,2017,December,49,5,2,6,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,F,E,0,No Deposit,171.0,179.0,0,Transient,75.3,0,1,Check-Out,Paul Williams,pwallace@example.net,+1-836-976-7541x8829,2258437866564999,2025-04-06 +Resort Hotel,1,130,2017,July,27,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,89.55,0,2,Canceled,Jason Anthony,karen61@example.net,(522)794-3183x10216,5130548502405871,2024-05-09 +Resort Hotel,0,1,2017,August,32,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,1,No Deposit,15.0,69.0,0,Transient-Party,49.7,0,0,Check-Out,Mrs. Gail Combs MD,aimeepatel@example.org,804-390-2967x8681,38685152970566,2025-07-18 +Resort Hotel,0,3,2017,October,41,13,1,1,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,52.37,0,0,Check-Out,Jeffrey Wright,clarkheather@example.org,901.347.8634x0230,4926532728024546157,2024-12-03 +City Hotel,1,66,2017,July,28,7,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,18,Transient,200.95,0,0,Canceled,Nicole Butler DDS,heidi18@example.org,788.270.8002x8949,6544554783060599,2025-09-15 +City Hotel,0,153,2017,May,18,2,1,0,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,77.51,0,0,Check-Out,Kimberly Buchanan DVM,cmoore@example.com,+1-882-354-0234x8409,4349016113356,2025-02-20 +City Hotel,0,31,2017,October,41,14,0,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,93.81,0,0,Check-Out,Carmen Higgins,arthurwillis@example.net,001-657-388-9872x89436,4643129843069,2024-09-12 +City Hotel,0,87,2017,November,48,26,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient-Party,63.0,0,0,Check-Out,Eric Stewart,hcollins@example.org,840.979.6898x58079,3547075433932692,2024-08-16 +Resort Hotel,0,21,2017,October,41,13,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,86.54,0,1,Check-Out,Jessica Wallace,kathleensexton@example.com,+1-336-945-5571,3572459585050131,2025-12-05 +City Hotel,1,250,2017,December,49,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.05,0,0,Canceled,Michael Bradley,wolfegregory@example.com,728-665-4201x90961,4054057578156033,2025-12-26 +City Hotel,1,46,2017,November,46,15,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,93.6,0,0,Canceled,James Wilson,graydeborah@example.net,+1-623-564-7789x8955,376942649221552,2025-10-18 +City Hotel,0,6,2017,December,52,30,0,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,115.29,0,2,Check-Out,Shannon Rogers,patricia20@example.org,8185371364,4710065514739,2024-10-04 +City Hotel,0,211,2017,August,35,25,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,310.0,179.0,0,Transient,187.09,1,1,Check-Out,Jennifer Jones,myersemily@example.org,369.398.6872,2720453914875865,2024-07-17 +City Hotel,0,42,2017,March,11,14,2,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Contract,84.24,0,2,Check-Out,Darrell Rosales,matthew64@example.net,467.633.2657x5548,6011696567107130,2025-04-15 +City Hotel,0,25,2017,November,46,17,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,226.0,0,Transient,45.35,0,0,Check-Out,Craig Ortega,cwells@example.org,(342)567-0966x55602,4248969654216373,2025-03-29 +City Hotel,0,11,2017,April,16,19,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,7.0,179.0,0,Transient,1.46,0,0,Check-Out,Cheryl Suarez,williemoss@example.net,757.688.4710,4853964196983248822,2024-10-18 +City Hotel,0,13,2017,January,2,4,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,111.11,0,0,Check-Out,Sandy Ray,xthomas@example.com,425-283-3884x826,6011491690954933,2024-04-03 +City Hotel,1,160,2017,May,18,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,8.0,179.0,0,Transient,64.43,0,2,Canceled,Sharon Sanchez,deborah29@example.net,258-598-1484x8461,180002697998175,2025-07-17 +City Hotel,1,382,2017,September,36,5,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,82.47,0,0,Canceled,Cassandra Mercer,zwilliams@example.org,982.607.1533x61070,4280039267949239,2025-10-05 +Resort Hotel,0,24,2017,October,42,20,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,75.5,0,0,Check-Out,Joseph Rivera,tammy58@example.net,+1-486-880-2879x59922,2289638195557041,2025-01-14 +City Hotel,1,5,2017,April,16,13,0,4,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,6.0,179.0,0,Transient,117.29,0,1,No-Show,Emily Compton,kimberlyross@example.net,857.668.7527,4303360770804940,2026-02-25 +Resort Hotel,1,40,2017,August,31,2,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,Refundable,237.0,179.0,0,Transient,247.18,0,0,Canceled,Christopher Garcia,hannahfoster@example.org,(221)655-8719,4765604123616,2024-11-22 +City Hotel,1,241,2017,June,27,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,62.36,0,0,Canceled,Amanda Sullivan,emilycarlson@example.com,(348)644-6466x5160,180035131328104,2025-04-14 +Resort Hotel,0,245,2017,September,37,14,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,275.0,179.0,0,Transient,122.95,0,0,Check-Out,Stephen Yates,morenoamber@example.net,+1-650-429-9217x46243,503819183883,2026-02-06 +Resort Hotel,1,290,2017,July,30,23,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,157.0,179.0,0,Transient,109.97,0,0,Canceled,Claudia Harris,jeffreytaylor@example.net,524.999.2923x12480,4469549182027047,2025-09-18 +City Hotel,1,86,2017,March,13,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,64.23,0,0,Canceled,Brittany Brown,kingbradley@example.net,942.210.5679x763,3528394860807498,2024-08-02 +City Hotel,1,162,2017,April,17,27,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,216.87,0,0,Canceled,Jessica Pham,williegarrett@example.net,+1-619-285-2262x0453,180022718946268,2025-01-16 +City Hotel,1,53,2017,July,31,31,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Transient,213.24,0,1,No-Show,Karen Mckenzie,jodi66@example.org,216-665-1863x00388,4148831261313236,2024-06-05 +City Hotel,0,45,2017,March,10,4,2,3,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,162.0,179.0,0,Transient,65.38,0,2,Check-Out,Benjamin Castillo,anna34@example.org,568-412-8447x51602,4631308802633061,2025-01-29 +City Hotel,1,13,2017,June,26,24,0,6,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,219.4,0,1,Canceled,Lisa Ho,johnwalls@example.com,374.200.8401,3550679279025901,2024-11-24 +City Hotel,1,18,2017,March,13,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,136.19,0,2,Canceled,Monica Phillips,harrisonkatelyn@example.com,001-320-529-7727x313,213121423895694,2024-10-25 +City Hotel,0,1,2017,March,13,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,16.0,222.0,0,Transient,37.05,0,0,Check-Out,Travis Lynch,carolynyoung@example.com,001-555-453-8044x00473,4693276752210403136,2025-08-21 +City Hotel,1,57,2017,November,45,9,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,D,A,0,No Deposit,9.0,179.0,0,Contract,108.1,0,1,Check-Out,Robert Simpson,francessolis@example.com,4096230482,3552431588880826,2026-01-26 +City Hotel,1,1,2017,December,51,23,1,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,1,0,E,E,0,Refundable,8.0,179.0,0,Contract,64.39,0,0,Canceled,Derek Wang Jr.,melissa73@example.org,2027762043,4122553446038529784,2026-03-12 +Resort Hotel,0,0,2017,February,8,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,D,0,No Deposit,16.0,179.0,0,Transient,46.73,1,1,Check-Out,Brandon Castillo,jestes@example.net,(679)674-2989x766,4578279484115974546,2025-06-22 +City Hotel,0,36,2017,May,19,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,1,D,D,2,No Deposit,13.0,176.0,0,Transient,115.94,0,1,Check-Out,Alejandro Fitzpatrick,gavin95@example.com,001-553-458-9108x2005,3534427977853211,2026-01-20 +Resort Hotel,0,2,2017,January,4,23,1,2,2,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,G,C,0,No Deposit,246.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Jennifer Miller,nnichols@example.org,+1-800-331-9573x461,4858100378329,2025-12-01 +City Hotel,1,39,2017,July,29,16,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,140.61,0,0,Canceled,Michael Bates,donaldbrown@example.net,2115333587,5454356175250428,2024-08-25 +City Hotel,1,164,2017,August,34,20,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,105.38,0,0,Canceled,Denise Price,kayla51@example.com,+1-801-746-3782x5208,4509643988594847,2024-06-22 +Resort Hotel,0,104,2017,October,41,8,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,290.0,179.0,0,Transient-Party,64.13,1,0,Check-Out,Steven Lyons,millerandrew@example.org,(741)846-7735,36369384093008,2026-03-03 +Resort Hotel,0,30,2017,October,43,25,1,3,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,248.0,179.0,0,Transient,182.61,1,1,Check-Out,Emma Bishop,smithmichael@example.com,(942)373-2335x64762,180093165642965,2025-09-16 +City Hotel,0,189,2017,September,37,10,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,77.0,179.0,0,Transient,106.32,0,0,Check-Out,John Hill,courtneyhooper@example.org,928.810.9507x100,4644600692670604577,2024-03-27 +City Hotel,0,50,2017,May,19,7,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,165.66,0,0,Check-Out,Dr. Eugene Vaughn,rodriguezrebecca@example.net,(809)856-7111,4241102916423762,2024-06-09 +Resort Hotel,0,1,2017,January,3,18,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,170.3,0,1,Check-Out,Jessica Romero,crystalmcdonald@example.com,+1-678-358-0704x287,5588497474658561,2024-07-16 +City Hotel,1,104,2017,July,30,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient-Party,81.06,0,2,Canceled,Randy Abbott,kylie89@example.net,001-737-288-8327,2233107261274441,2024-11-29 +City Hotel,1,384,2017,July,27,4,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,103.43,0,0,Canceled,Jacob Potter,douglas62@example.net,476.853.5464,349247815316010,2026-03-10 +City Hotel,0,27,2017,August,32,9,2,2,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,180.0,0,0,Check-Out,Michael Stanton,lindseydodson@example.net,+1-537-741-3548,213108650269917,2024-07-08 +Resort Hotel,1,148,2017,March,11,17,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,236.0,179.0,0,Transient,53.47,0,1,Canceled,Austin Garza,kellifigueroa@example.org,+1-603-516-5513x107,4610605512923624,2025-02-08 +Resort Hotel,0,144,2017,July,30,20,2,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,E,E,2,No Deposit,18.0,179.0,0,Transient,138.47,0,1,Check-Out,Sarah Rios,allen04@example.net,(712)725-5542x08700,5337457121002039,2025-01-05 +City Hotel,0,272,2017,March,13,24,2,5,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,201.9,1,2,Check-Out,Angelica James,garyfoster@example.com,(790)379-8195x31748,6011748867902510,2025-03-28 +City Hotel,1,79,2017,December,52,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.98,0,0,Canceled,April Huffman,freemanmichelle@example.org,824-976-2723,2720488358474437,2026-01-27 +City Hotel,1,203,2017,August,33,16,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,106.18,0,0,Canceled,Miss April Jackson,carlsonkayla@example.com,828.838.8578x747,4601422169795284,2025-09-12 +Resort Hotel,1,228,2017,July,29,17,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,50.33,0,0,Canceled,Scott Hampton,hgomez@example.net,(346)670-3163,30587366743847,2025-05-02 +Resort Hotel,0,0,2017,December,49,9,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,H,H,0,No Deposit,242.0,179.0,0,Transient,57.59,0,2,Check-Out,Elizabeth White,jessicawright@example.com,452-549-8606x747,3548362277235039,2025-03-10 +Resort Hotel,0,18,2017,October,41,12,0,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,101.63,1,0,Check-Out,Sarah Rush,tinaallison@example.net,9654036559,344792236268196,2025-09-02 +Resort Hotel,0,9,2017,July,27,2,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,217.71,1,2,Check-Out,Wayne Robinson,beverlyolson@example.com,(307)694-7375,3507760931315080,2024-05-12 +City Hotel,0,33,2017,April,16,15,2,3,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,102.04,0,1,Check-Out,Kathryn Fischer,roachscott@example.org,(626)328-0233,675935080704,2024-11-23 +City Hotel,0,31,2017,May,19,5,1,0,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,328.0,179.0,0,Transient,206.05,0,0,Check-Out,Richard Mitchell,perrypenny@example.net,(586)875-7852,6011826636148001,2025-01-01 +Resort Hotel,0,13,2017,August,34,24,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,2,No Deposit,178.0,179.0,0,Transient,81.09,1,0,Check-Out,Gina Elliott,samuel19@example.com,(953)624-8023,4630122685330963,2025-08-30 +City Hotel,1,191,2017,August,32,4,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,L,0,No Deposit,10.0,179.0,0,Transient,139.13,0,0,Canceled,Anita Farmer,susanjones@example.org,(776)281-7382x5407,6011387322611729,2024-07-06 +City Hotel,0,54,2017,August,32,9,0,2,2,2.0,0,BB,USA,Direct,Direct,0,0,0,F,F,1,No Deposit,17.0,179.0,0,Transient,252.0,1,0,Check-Out,Kimberly Oconnor,javier83@example.com,679.915.8687x717,2234713394526935,2026-02-08 +Resort Hotel,0,14,2017,August,34,24,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,249.0,179.0,0,Transient,224.76,0,0,Canceled,Lindsay Dixon,scottdebra@example.org,(725)436-2737x5666,2222522493531033,2025-06-09 +City Hotel,0,14,2017,May,22,26,2,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,147.42,0,0,Check-Out,Lindsey Lee,wwilliams@example.org,708.925.4162,4875549221884661167,2025-01-11 +Resort Hotel,0,26,2017,October,41,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,140.0,179.0,64,Transient,82.59,0,1,Check-Out,Daniel Perkins,jenniferburgess@example.org,+1-806-745-9113x3001,4283418049306943334,2025-11-14 +City Hotel,0,41,2017,February,8,22,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,84.95,0,1,Check-Out,Juan Huynh,dawnbright@example.com,(573)357-3170,6581098278937451,2026-01-20 +Resort Hotel,0,14,2017,March,11,10,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,242.0,179.0,0,Transient,47.35,1,3,Check-Out,Allison Cohen,smithcharles@example.com,+1-547-899-3334,3577104992027109,2026-03-10 +Resort Hotel,0,21,2017,November,45,5,0,2,2,0.0,0,BB,USA,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,137.4,0,1,Check-Out,Jacob Mcneil,elarsen@example.com,677.524.2823,4819095533960908825,2026-01-14 +Resort Hotel,1,102,2017,February,7,13,1,2,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,104.55,0,0,Check-Out,Kim Hartman,dhatfield@example.org,(478)638-9517,6566582708092234,2025-08-23 +Resort Hotel,0,20,2017,September,39,25,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,C,2,No Deposit,241.0,179.0,0,Contract,135.4,0,2,Check-Out,John Steele,lcoleman@example.net,2323858037,213139495283516,2025-10-30 +City Hotel,1,94,2017,May,21,23,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,85.94,0,3,Canceled,Frederick Smith,alyssatownsend@example.org,287-771-6614x650,6011251818723374,2025-09-25 +Resort Hotel,0,0,2017,April,17,22,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,3.81,0,1,Check-Out,Paul Barnes,garrisonjacob@example.org,+1-775-309-9178x240,675945456936,2025-06-07 +Resort Hotel,0,2,2017,December,49,8,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,2,No Deposit,15.0,246.0,0,Transient,43.74,0,0,Check-Out,Thomas Rodriguez,efrye@example.org,985.832.4511,213196630699501,2024-04-09 +City Hotel,0,0,2017,August,31,5,0,1,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Christopher Good,thomas26@example.net,697-908-3502x9144,30094614651898,2025-11-06 +City Hotel,0,22,2017,October,40,5,0,1,2,0.0,0,SC,ESP,Groups,Direct,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,88.4,0,0,Check-Out,David Taylor,jeffrey13@example.org,001-783-873-1454,372275955638372,2024-10-17 +City Hotel,1,22,2017,August,32,9,1,5,2,2.0,0,BB,ISR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,213.51,0,0,Canceled,Eric Allen,tonybrown@example.com,7096537410,36140617305521,2024-12-12 +City Hotel,0,12,2017,August,32,7,0,3,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,115.8,0,1,Check-Out,Monica Smith,jsullivan@example.com,(469)239-7423x6615,180037055349769,2024-05-01 +City Hotel,0,11,2017,January,3,14,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,48.48,0,2,Check-Out,Taylor Wood,udeleon@example.org,907.533.5420x10253,180099169625146,2025-01-01 +City Hotel,0,0,2017,January,3,15,0,3,1,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,239.0,179.0,0,Transient,51.63,0,2,Check-Out,Maria Hall,alicia54@example.net,+1-297-426-6869,501828657756,2024-05-30 +City Hotel,1,186,2017,March,13,27,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,16,Transient,111.07,0,0,Canceled,Kelly Keller,eileenharvey@example.net,001-511-636-6974x5886,584985331407,2025-08-26 +City Hotel,1,14,2017,December,48,1,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,77.43,0,1,Canceled,Christopher Morton,ramirezkathy@example.com,(419)890-5291x049,3594616601243768,2025-03-29 +Resort Hotel,0,1,2017,July,28,6,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,G,A,1,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,2,Check-Out,Jeffrey Smith,opineda@example.net,724.206.5116x6116,3537553389662713,2025-09-21 +Resort Hotel,0,93,2017,March,11,14,1,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,56.83,1,0,Check-Out,Brittany Becker,rodneysimmons@example.org,001-551-267-3327,3568752175413222,2024-06-09 +Resort Hotel,1,245,2017,October,43,24,3,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,167.0,179.0,0,Transient,101.27,0,0,Canceled,Karen Jones,daltonashley@example.com,001-381-236-2782x9363,30344718139401,2025-12-06 +Resort Hotel,0,164,2017,June,23,2,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,237.0,179.0,0,Transient,112.33,1,3,Check-Out,David Fox,arthurhowell@example.net,001-488-991-4385x857,4808095884203,2025-06-02 +Resort Hotel,0,3,2017,January,4,25,0,1,1,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,45.99,1,1,Check-Out,Kelsey Chang,joycedawson@example.org,(418)645-3319x5331,3532661047822085,2024-08-01 +City Hotel,1,162,2017,June,26,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,128.9,0,0,Canceled,Mark Rios,michelle41@example.com,341-952-7809x50980,30580429666188,2024-10-05 +City Hotel,1,414,2017,August,32,8,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,81.7,0,0,Canceled,Larry Price,catherine85@example.net,(902)688-3958,3573582322771518,2025-10-21 +Resort Hotel,0,97,2017,July,31,30,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,213.37,0,1,Check-Out,David Marks,chenashley@example.net,280.926.9749x269,30139722549490,2025-10-30 +City Hotel,0,21,2017,July,30,22,0,2,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,D,D,0,No Deposit,31.0,179.0,0,Transient,120.98,0,0,Check-Out,Margaret Campos,alyssa06@example.org,(858)553-8779,349118492604145,2024-05-28 +City Hotel,0,99,2017,September,38,20,0,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,108.16,0,0,Check-Out,Christina Wagner,caitlin83@example.org,+1-953-596-5301x036,30493204964192,2024-03-31 +Resort Hotel,0,90,2017,May,19,8,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,C,0,No Deposit,248.0,179.0,0,Transient,132.92,1,1,Check-Out,Kelsey Fuentes,james30@example.net,+1-298-341-0933,3565192227062508,2026-03-07 +City Hotel,0,1,2017,February,7,12,0,1,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,0.63,0,0,Check-Out,Christine Cortez,ohayden@example.com,(742)735-6012,30285898629267,2024-10-10 +City Hotel,1,9,2017,August,35,27,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,242.0,179.0,0,Transient,229.33,0,1,Canceled,Kevin Moreno,ebowman@example.com,652.879.4047,6510333955373712,2025-12-23 +City Hotel,1,361,2017,February,5,1,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,83.27,0,0,Canceled,Bryan West,matthew01@example.com,8866151759,3516200269716210,2025-05-11 +City Hotel,0,2,2017,December,52,30,0,1,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,110.04,0,2,Check-Out,Michelle Rasmussen,morrisondominique@example.net,8776138100,2295569357637291,2026-01-12 +City Hotel,1,21,2017,December,2,31,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,16,Transient,89.93,0,0,Canceled,Zachary Bailey,kbrown@example.net,+1-329-480-2642x0866,583035914063,2025-11-19 +Resort Hotel,1,215,2017,April,18,27,2,3,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,141.56,0,0,Canceled,Danielle Johnson,grahamjasmine@example.net,(638)834-6489,583183943559,2025-03-06 +City Hotel,1,71,2017,February,6,5,2,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient,187.49,0,1,No-Show,Madison Bass,tcrosby@example.com,769.562.5399x5350,4962533591474067,2024-07-19 +City Hotel,0,217,2017,July,30,23,1,2,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,225.89,0,3,Check-Out,Cynthia Daniels,slee@example.org,001-464-993-1914x7073,3564464240709436,2025-01-12 +Resort Hotel,1,9,2017,May,20,13,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,73.63,0,2,Canceled,Nicholas Ward Jr.,thomas58@example.org,7165138355,3501880422846850,2025-02-12 +City Hotel,1,191,2017,June,26,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.7,0,0,Canceled,Allison Mcmahon,zphillips@example.org,207-914-5751,30308914969432,2025-05-18 +City Hotel,0,115,2017,March,13,25,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,72.99,0,1,Check-Out,Thomas Powell,dominguezstephanie@example.org,001-548-388-4247x3705,4995312637093892379,2026-03-22 +City Hotel,1,302,2017,October,42,15,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,101.38,0,0,Canceled,Tara Hickman,johnsantiago@example.net,7738827481,3529617473961776,2025-06-15 +City Hotel,0,20,2017,March,9,2,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,216.57,0,2,Check-Out,Terry Deleon,jeffreylittle@example.net,701-231-0817,4954911713586489478,2024-08-08 +City Hotel,0,1,2017,July,29,19,2,0,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,3.75,0,1,Check-Out,Amy Foster,jonesdebra@example.org,939-439-9504x72679,501879420260,2024-07-20 +City Hotel,0,55,2017,June,26,23,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,144.31,0,1,Check-Out,Nathan Ortiz,robertgross@example.org,255-522-8770,6505599198471474,2025-09-13 +City Hotel,1,20,2017,March,13,26,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,44.4,0,0,Canceled,Cathy Davis,tlevine@example.org,850.680.0200x7495,4422174194987,2025-12-28 +City Hotel,0,95,2017,April,17,23,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient,100.39,0,1,Check-Out,Jared Bryant,kmolina@example.com,001-245-274-8867x3028,180087725307218,2024-10-23 +City Hotel,1,2,2017,August,31,4,2,0,3,0.0,0,BB,PRT,Undefined,Undefined,0,1,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Canceled,Dr. Kimberly Gutierrez,logan16@example.com,(695)620-0825x1376,3502390622254276,2025-07-16 +City Hotel,1,113,2017,June,26,26,2,2,2,0.0,0,HB,BRA,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,130.79,0,0,No-Show,Michael Haynes,bradley92@example.org,530.498.7571x84568,4554434852922759,2025-10-30 +Resort Hotel,1,42,2017,June,25,15,1,4,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,0,2,Canceled,Mr. Austin Lynch,clyons@example.com,641-917-4598x180,4150493327263437,2025-05-18 +City Hotel,0,2,2017,February,8,22,0,1,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,96.32,0,0,Check-Out,Kenneth Baker,stephaniefigueroa@example.net,+1-320-727-3097x97589,36267322086904,2025-10-10 +City Hotel,0,107,2017,November,48,26,2,4,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,D,0,No Deposit,15.0,50.0,0,Transient-Party,93.14,0,0,Check-Out,Travis Andrews,garrettrebecca@example.com,220-416-2977x23458,561045207678,2025-07-01 +City Hotel,1,97,2017,May,18,1,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.72,0,0,Canceled,Claudia Ward,sarah76@example.net,(784)748-4981,30163125586222,2024-11-12 +Resort Hotel,0,1,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,72.0,0,Transient,38.78,0,0,Check-Out,Diana Barnett,randyknight@example.com,493-501-3652x27914,4774444131458067082,2025-06-13 +Resort Hotel,0,14,2017,May,19,8,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,15.0,179.0,0,Transient,168.84,0,0,Canceled,David Hughes,emaldonado@example.com,(786)326-6350,5582928739887914,2025-03-16 +Resort Hotel,0,0,2017,June,24,16,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,128.1,1,1,Check-Out,David Hernandez,cherylsantiago@example.org,001-621-311-7752x181,4414146789454110026,2024-04-23 +City Hotel,0,112,2017,June,22,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,62,Transient,102.75,0,0,Canceled,Miss Kathleen Price,bcunningham@example.net,907.870.2885,4449217002257303586,2025-07-26 +City Hotel,0,139,2017,December,50,10,0,2,2,1.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,147.92,0,1,Check-Out,Joshua Chan,brianjohnson@example.net,655-412-3173x26333,30519439511604,2025-12-31 +Resort Hotel,0,135,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,12.0,222.0,0,Transient-Party,107.58,0,0,Check-Out,Joshua Ortiz,chelsea44@example.com,(214)446-4341x8926,36753112099603,2025-12-18 +City Hotel,1,43,2017,September,36,2,1,4,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,102.43,0,1,Canceled,Daniel Carpenter,eddieramirez@example.com,962.504.4460x4116,639062161679,2024-10-20 +City Hotel,1,4,2017,March,13,24,1,2,1,0.0,0,SC,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,98.42,0,0,Canceled,David Diaz,brittanygreen@example.net,789.475.6097x053,5369422306775610,2025-05-23 +City Hotel,1,197,2017,June,23,4,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,238.0,179.0,0,Transient,239.01,0,1,Canceled,Dennis Powell,rogersrobert@example.com,779-901-9159x233,30380129378097,2026-02-08 +City Hotel,0,100,2017,March,13,23,2,1,3,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,125.6,0,2,Check-Out,Juan Alvarez,kimberly92@example.org,944.294.5767x950,502062243956,2024-09-24 +City Hotel,1,10,2017,January,3,13,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,75.0,0,Transient,43.27,0,0,Canceled,James Lyons,jamiefoley@example.org,395.712.3498x562,4995641676259708,2025-03-16 +City Hotel,1,110,2017,November,45,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,19,Transient,73.06,0,0,Canceled,Adam Taylor,david84@example.com,561-781-9502x00752,4256588721419163,2025-04-29 +City Hotel,1,92,2017,December,50,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,82.48,0,0,Canceled,Michelle Bridges,jeremy11@example.org,981-357-9714,349718803955274,2024-12-04 +City Hotel,1,414,2017,August,33,19,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,129.4,0,0,Canceled,Michelle Kelly,camposashley@example.com,2004214386,4699304035531290801,2024-11-08 +City Hotel,0,13,2017,April,17,28,0,3,1,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,77.0,179.0,0,Transient,100.78,0,2,Check-Out,Rebecca Johnson,zacharywalsh@example.net,220.445.9132x98640,4089446817529360834,2025-01-31 +City Hotel,1,50,2017,December,49,3,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,137.34,0,0,Canceled,Leah Dixon,evansolivia@example.org,779.755.7922x62525,4928437736300489,2024-10-07 +City Hotel,1,414,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,129.66,0,0,Canceled,Michael Graves,thomasbaker@example.org,(388)866-0931x624,4953445219443,2024-04-26 +Resort Hotel,1,18,2017,December,52,26,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,77.49,0,0,Canceled,Michael Adams,jamessheppard@example.net,(683)822-9358,4576098002572436,2024-09-11 +Resort Hotel,0,24,2017,September,37,12,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,94.0,179.0,0,Transient-Party,104.03,0,0,Check-Out,Virginia Vaughn,rhammond@example.com,+1-503-624-9786x378,373683822958874,2024-04-29 +City Hotel,0,46,2017,September,36,8,1,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,3.57,0,1,Check-Out,Amy Adams,nataliehill@example.com,+1-891-727-9030x4932,213179881590710,2024-06-05 +Resort Hotel,0,128,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,0,Refundable,14.0,222.0,0,Transient-Party,62.51,0,0,Check-Out,Jonathan Mcdonald,gutierrezjoanna@example.org,(446)670-2432,5276824204272487,2024-12-23 +City Hotel,1,320,2017,July,27,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,108.49,0,0,Canceled,Nathan Freeman,eleonard@example.net,734-453-5927x7627,377702110848872,2026-01-29 +City Hotel,0,1,2017,January,2,6,2,2,3,0.0,0,BB,GBR,Aviation,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Group,81.74,0,1,Check-Out,Russell Bean,nmcclain@example.org,9309087231,30005660658637,2025-01-07 +Resort Hotel,1,1,2017,August,33,13,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.04,0,1,Canceled,William Randall,schmidtdebbie@example.org,606-729-7228x738,4363499927679917,2026-01-21 +Resort Hotel,0,192,2017,April,15,9,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,140.0,179.0,0,Transient-Party,77.38,0,0,Check-Out,Jenna Baldwin,caseyallen@example.com,916-814-1359,5496956304509006,2024-07-21 +Resort Hotel,1,14,2017,June,24,10,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,115.72,0,0,Canceled,Dr. Kenneth Fields,richarddebbie@example.net,(368)388-8339x274,38401297133213,2025-12-07 +City Hotel,0,0,2017,December,2,31,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.48,0,2,Check-Out,Chase Thomas,rebeccacasey@example.net,825-942-7243,6011210857065873,2025-01-24 +City Hotel,1,2,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,94.36,0,0,Canceled,Seth Gray,thomasleon@example.com,472.653.7156x2391,180075741251684,2024-12-03 +City Hotel,1,394,2017,September,36,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,0,Transient,61.45,0,0,Canceled,Nicole Morris,janetarnold@example.org,423-393-6807,213137168462458,2025-12-19 +City Hotel,0,83,2017,July,27,2,0,1,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,139.13,0,0,Check-Out,Travis Smith,danielmann@example.com,483.215.3299,6011544950431636,2025-06-03 +City Hotel,0,1,2017,January,3,13,2,1,1,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,59.13,0,3,Check-Out,Chad Rowe DDS,tammyfuentes@example.com,3416056515,30208531648981,2025-03-21 +Resort Hotel,0,3,2017,November,45,8,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,62.0,0,Transient-Party,54.44,0,0,Check-Out,Karen Barnes,silvapatricia@example.com,(923)668-8446x401,3582588699556811,2024-09-28 +City Hotel,0,1,2017,February,8,23,1,0,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,75.5,0,2,Check-Out,Wanda Ruiz,qbrown@example.com,2905326293,378278348409570,2024-04-25 +City Hotel,0,0,2017,May,18,1,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.16,0,2,Check-Out,Jessica Hart,wanderson@example.com,245-413-8950x9430,574645356316,2024-04-13 +Resort Hotel,0,2,2017,March,13,24,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,D,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,134.59,1,0,Check-Out,Melissa Prince,cbrooks@example.org,324-937-8709,213149394295503,2024-05-13 +City Hotel,1,172,2017,February,6,5,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,105.42,0,0,Canceled,Ian Pitts,juansmith@example.org,3406270785,3558978771832307,2025-05-21 +City Hotel,0,1,2017,December,49,5,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,29.0,179.0,0,Transient-Party,103.34,0,1,Check-Out,Kristopher Smith,cindyhernandez@example.org,583-518-2198,4062075689814207003,2024-07-18 +City Hotel,0,347,2017,October,41,8,0,3,2,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.5,0,0,Check-Out,Kelli Salas,collinsjames@example.net,232-982-3850,6583235861652364,2025-07-15 +City Hotel,0,12,2017,June,24,8,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,107.44,0,0,Check-Out,Tyler Johnson,michael94@example.net,+1-246-948-6850x665,2283329767619908,2024-05-21 +City Hotel,0,1,2017,January,4,25,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,D,0,No Deposit,15.0,179.0,0,Transient,199.68,1,0,Check-Out,Aaron Johnson,marksaunders@example.net,(697)443-7580x24628,4838711755954883755,2024-04-11 +Resort Hotel,1,48,2017,December,49,4,0,2,2,0.0,0,Undefined,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,80.86,0,0,Canceled,Patricia Williamson,ngibson@example.com,+1-456-717-0550x0785,180084762537195,2025-10-22 +City Hotel,1,14,2017,March,11,13,1,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,175.93,0,1,No-Show,Gregory Moreno,zdavis@example.net,001-465-547-2319x551,3504982828723324,2024-07-31 +Resort Hotel,1,163,2017,February,6,9,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,79.9,0,0,Canceled,Tanya Robinson,vramsey@example.org,6005572310,213190979255843,2024-04-08 +City Hotel,0,36,2017,November,46,14,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,110.77,0,0,Check-Out,Mary Hancock,brianthompson@example.org,+1-424-913-2966x7774,4037358159508358,2025-11-07 +City Hotel,0,92,2017,May,21,23,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.91,0,1,Check-Out,Dawn Kelly,mwalton@example.com,4326206855,341887201532668,2025-08-13 +Resort Hotel,1,154,2017,April,17,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,No Deposit,178.0,179.0,0,Transient,79.87,0,0,Canceled,Clayton White,amyingram@example.org,+1-278-630-1359x73120,377093751069329,2025-11-28 +City Hotel,0,134,2017,June,23,9,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,136.6,0,0,Check-Out,Patrick Herrera,zrobinson@example.net,385.864.3849x880,4993802453318,2025-10-23 +Resort Hotel,0,0,2017,October,41,8,1,2,3,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,1,No Deposit,15.0,174.0,0,Transient,117.61,0,0,Check-Out,Diana Miller,joseph25@example.net,214-978-8189x745,3591367477102174,2024-08-11 +City Hotel,1,304,2017,July,30,23,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,201.86,0,0,Canceled,Patricia Andrews,orozcorebecca@example.com,3033947157,348057768880636,2025-01-18 +City Hotel,0,13,2017,March,11,15,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,100.34,0,1,Canceled,Susan Morales,stephanie31@example.org,+1-382-549-3555x141,4192956115365,2024-04-12 +Resort Hotel,1,11,2017,May,22,27,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,Non Refund,241.0,179.0,0,Transient,98.5,0,1,Canceled,Christine Williams,kmcdaniel@example.com,+1-224-445-6935x867,4175105356730317696,2024-11-15 +City Hotel,0,15,2017,October,41,13,1,0,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,170.45,0,0,Check-Out,Emily Silva,fergusonzachary@example.org,001-434-285-3919x412,348854033500373,2026-01-07 +City Hotel,0,19,2017,July,27,5,0,4,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,221.75,0,2,Check-Out,Amanda Smith,hbruce@example.org,(357)228-6576,4807697076654896,2024-11-09 +Resort Hotel,1,150,2017,August,35,29,0,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,166.76,0,0,Canceled,Megan Graham,lisaboyd@example.com,944.378.5727,4209776368080385293,2024-04-26 +Resort Hotel,0,46,2017,March,10,8,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,216.06,1,3,Check-Out,Austin Franco,wardjames@example.net,362.741.7067,2710214286530310,2025-02-28 +City Hotel,0,12,2017,June,26,24,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,116.22,0,0,Check-Out,Christine Berger,matthewkelly@example.net,001-942-227-3616,6011506593087877,2024-10-17 +Resort Hotel,0,12,2017,September,38,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,305.0,179.0,0,Transient,145.51,0,0,Check-Out,Amy Taylor,dillonalexis@example.org,+1-715-343-9541x5045,3562748119392957,2026-02-07 +City Hotel,0,86,2017,August,35,29,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,139.25,1,3,Check-Out,Doris Bush,ymccall@example.net,001-512-210-7124x933,4954973688550314,2025-04-28 +City Hotel,1,37,2017,April,14,2,1,2,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,107.37,0,2,Canceled,Ashley Chavez,cwaters@example.net,(735)775-7756,4828157761411521592,2024-08-16 +City Hotel,0,177,2017,May,19,6,1,0,1,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient-Party,96.15,0,0,Check-Out,Alexander Bennett,hcox@example.com,4873678465,6011039219241595,2025-12-03 +City Hotel,1,50,2017,March,13,27,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,75.0,179.0,0,Transient,81.65,0,0,Canceled,Crystal Moreno,schneiderjeanette@example.org,001-886-562-3531,30580748312688,2024-07-21 +City Hotel,0,2,2017,August,32,9,0,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,121.51,0,2,Check-Out,Erik Gardner,gsellers@example.net,7807269388,2227143154755707,2024-04-17 +Resort Hotel,0,287,2017,May,19,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,39.0,179.0,0,Transient-Party,85.55,0,0,Check-Out,Renee Aguilar,zjackson@example.net,+1-291-876-6327x926,4088099580414374912,2025-08-19 +City Hotel,1,51,2017,September,37,11,2,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,92.55,0,1,Canceled,Stacy Sanders,bradley53@example.org,+1-419-931-0172x8292,348916005316177,2025-04-14 +City Hotel,1,51,2017,December,49,4,0,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,16.0,179.0,0,Transient-Party,92.49,0,0,No-Show,Tonya Young,emolina@example.com,681.367.1478x7550,379229529246611,2025-02-07 +Resort Hotel,0,193,2017,June,26,22,2,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,243.0,179.0,0,Transient,194.46,0,1,Check-Out,Chelsea Mitchell,amber75@example.com,320.885.5490x24687,2496367196079446,2024-11-27 +Resort Hotel,0,31,2017,February,8,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,43,Transient,78.26,0,0,Check-Out,Benjamin Howard,mccormickjason@example.com,3802157415,6588124206864212,2025-03-30 +City Hotel,1,155,2017,June,22,2,4,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,27.0,179.0,0,Transient,135.95,0,0,Canceled,Sean Castro,rodriguezrenee@example.com,6235538719,6511530444812874,2024-04-08 +Resort Hotel,1,314,2017,June,26,26,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,69.0,179.0,0,Transient,64.36,0,0,Canceled,Brian Davis,nathansmith@example.org,710.769.9407x33378,4036020544663618,2024-05-02 +City Hotel,1,20,2017,December,49,4,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,77.03,0,0,Canceled,Amy Miles,jparker@example.net,+1-507-782-8642,180037213965068,2024-04-15 +Resort Hotel,0,0,2017,December,49,5,1,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Group,59.09,0,1,Check-Out,Natasha Rice,ljones@example.org,+1-683-659-7408,6011523188890391,2025-12-14 +Resort Hotel,0,24,2017,August,34,22,2,5,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,239.0,179.0,0,Transient,180.36,1,0,Check-Out,Dennis Walls,williamsjohn@example.org,(515)362-7621,213116785430197,2026-01-19 +Resort Hotel,0,78,2017,May,19,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,312.0,179.0,0,Transient-Party,109.78,0,0,Check-Out,William Nelson,vmorgan@example.net,+1-928-889-0037x569,4304423299119139102,2024-08-05 +City Hotel,0,8,2017,February,7,13,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,228.0,0,Transient,97.32,0,0,Check-Out,Shane Stephens,hensonbryan@example.org,384.900.0575,503809582797,2025-03-20 +Resort Hotel,1,359,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,173.0,179.0,0,Transient,45.12,0,0,Canceled,Jessica Branch,adam85@example.net,001-574-656-2900x5999,4180603074211340049,2024-08-13 +City Hotel,0,0,2017,March,13,23,0,2,1,0.0,0,BB,CHN,Online TA,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,81.68,0,1,Check-Out,Marcus Lopez,paul84@example.net,725.333.2650x64366,4589519551581234,2024-07-04 +City Hotel,0,19,2017,August,32,6,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,18.0,179.0,0,Transient,143.51,1,1,Check-Out,Dr. Anthony Benton III,angelarodriguez@example.org,001-476-582-5477,4715819716878,2024-05-24 +City Hotel,0,87,2017,December,52,30,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,102.78,0,2,Check-Out,Joseph Johnson,watsonsara@example.org,(888)319-1895x49425,3576647505223491,2025-12-04 +City Hotel,0,0,2017,September,36,5,0,2,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,124.05,0,2,Check-Out,Christian Johnson,brownmary@example.com,(988)392-8051x92990,370465174439478,2024-10-13 +City Hotel,1,41,2017,December,49,5,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,62,Transient,81.81,0,0,Canceled,Monica Bass,wramos@example.net,283-619-7230x94656,3520188516000195,2025-02-05 +Resort Hotel,0,13,2017,August,32,10,0,5,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,E,0,No Deposit,19.0,179.0,0,Transient,232.46,1,2,Check-Out,Adam Wong,qhorn@example.net,(227)496-4708x17467,3578450600212818,2024-07-29 +City Hotel,1,93,2017,July,27,2,2,4,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,252.0,0,2,Canceled,Mark Savage,alejandra53@example.org,001-597-651-5135x10565,349351892044881,2025-08-21 +City Hotel,1,3,2017,April,16,16,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,G,0,No Deposit,247.0,179.0,0,Transient,0.5099000000000001,0,1,Canceled,Scott Taylor,vyu@example.org,(547)711-0847x71613,213140246141763,2025-12-17 +City Hotel,0,17,2017,August,33,13,0,2,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,80.09,0,0,Check-Out,Penny Osborne,kmoore@example.com,(572)337-6660x5547,30541773767287,2025-01-21 +City Hotel,0,167,2017,July,27,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient-Party,136.13,0,0,Check-Out,George Butler,romeroduane@example.org,4329558922,4028225514593477,2024-06-09 +City Hotel,1,335,2017,October,41,12,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,77.68,0,0,Canceled,Shannon Reynolds,maria60@example.com,850.777.6288x08161,2287561588140203,2024-12-10 +City Hotel,0,94,2017,November,47,24,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,83.66,0,0,Check-Out,William Ward,alexajordan@example.net,872.720.0561,36594118464296,2024-12-13 +City Hotel,1,44,2017,March,12,22,0,2,1,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,94.51,0,2,Canceled,Miss Sandra Phelps,castrolauren@example.net,535.506.9988x504,5534402925794903,2025-03-16 +Resort Hotel,0,0,2017,July,27,3,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,57.06,0,1,Check-Out,Melissa Patterson,rachelrocha@example.com,(925)501-1113,3524496087826294,2025-09-24 +City Hotel,0,0,2017,January,2,2,1,1,1,0.0,0,SC,FRA,Online TA,Corporate,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,95.08,0,1,Check-Out,Dr. Daniel Brock,charlesgomez@example.net,+1-360-553-4445,36641028586708,2024-10-23 +City Hotel,0,1,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,2,No Deposit,13.0,45.0,0,Transient,135.49,0,1,Check-Out,Tracy Silva,xholmes@example.org,415-714-2288x528,4065066092189,2024-09-20 +City Hotel,1,4,2017,July,28,11,0,2,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,247.66,0,1,Canceled,Elizabeth Adams,zimmermansamuel@example.org,267-573-3865x07347,4093445647382,2024-12-26 +City Hotel,0,32,2017,December,51,20,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,115.51,0,2,Check-Out,Shawn Bridges,jasmine90@example.net,788.941.2949,503837259749,2025-09-23 +Resort Hotel,0,51,2017,September,36,9,3,5,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,138.57,0,2,Check-Out,Connor Kane,rmartin@example.com,(420)632-9383x4908,4617188432568,2024-10-11 +Resort Hotel,0,191,2017,July,29,15,2,7,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,242.55,1,3,Check-Out,Richard Parsons,josephmitchell@example.org,2733072652,4392138772043657135,2025-06-20 +Resort Hotel,0,17,2017,March,12,22,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,35.32,0,1,Check-Out,Tara Morton,asmith@example.net,+1-693-437-4289x320,3548448827790126,2025-11-02 +Resort Hotel,0,41,2017,March,10,8,1,2,1,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,80.33,0,0,Check-Out,Calvin Taylor,zwade@example.net,001-644-395-5219x9547,180019179847589,2024-05-25 +Resort Hotel,1,49,2017,July,31,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,240.0,179.0,0,Transient,140.29,0,0,Canceled,Richard Crawford,ericpoole@example.org,546.318.4035x24225,6011315092535315,2024-11-04 +City Hotel,0,14,2017,September,36,6,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,150.0,179.0,0,Transient-Party,104.39,0,1,Check-Out,Patricia Parker,andersonjoy@example.org,+1-738-888-9758x253,060461508990,2025-02-15 +City Hotel,1,391,2017,November,45,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.64,0,0,Canceled,Matthew Jackson,meghan62@example.net,467-274-2320,3501264082074279,2024-09-28 +City Hotel,0,18,2017,August,31,4,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,104.84,0,1,Check-Out,Robert Carpenter,josephsalazar@example.org,(634)666-8464,30566976645428,2025-03-15 +Resort Hotel,1,225,2017,June,26,24,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,82.0,179.0,0,Transient,63.02,0,1,Canceled,Matthew Gill,gutierrezsheila@example.net,440.263.0498,4579665528692984,2024-12-06 +City Hotel,0,48,2017,September,37,10,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.72,0,0,Check-Out,John Lee,robertpatterson@example.org,+1-611-617-8518x68306,3511607715237390,2024-05-02 +City Hotel,1,97,2017,March,12,22,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.65,0,0,Canceled,Kristen Patton,mark61@example.net,6009135775,4135347778391,2025-06-24 +City Hotel,1,100,2017,May,18,3,0,2,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,91.38,0,0,Canceled,Rachel Smith,tamaramayer@example.com,7575492622,4196155684212,2025-03-11 +City Hotel,0,64,2017,November,46,18,0,2,2,0.0,0,BB,ITA,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,82.93,0,0,Check-Out,Kimberly Davis,veronicahunt@example.org,2707044490,349359978255669,2024-11-14 +City Hotel,1,300,2017,October,40,6,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.51,0,0,Canceled,William Wright,kevin87@example.com,399.755.8281x229,501821728125,2024-04-06 +Resort Hotel,0,51,2017,August,32,8,0,2,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,Patricia Smith,melissagonzalez@example.com,608-861-2914,2598219790906325,2025-08-16 +City Hotel,0,95,2017,October,42,16,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,100.02,0,2,Check-Out,Daniel Gonzalez,fburke@example.net,801-853-1667x87308,4387438305873777,2024-06-06 +City Hotel,0,3,2017,October,41,9,0,2,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,3.01,0,1,Check-Out,Kayla Baker,dharvey@example.net,001-805-331-1139,5441546331466001,2024-09-23 +City Hotel,1,32,2017,November,46,16,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,58,Transient,81.73,0,0,Canceled,Jacob Flores,brian72@example.com,419-275-4082,579471349392,2024-07-19 +City Hotel,0,159,2017,June,23,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,16.0,179.0,0,Transient,249.04,0,2,Check-Out,Susan Long,henrylaura@example.org,985-699-5462,4296428929616934,2024-10-05 +City Hotel,1,145,2017,July,27,8,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,164.69,0,0,Canceled,Amanda Barrett,xtaylor@example.net,(479)320-7308x7469,4896698928152370,2024-04-07 +Resort Hotel,0,6,2017,August,34,25,3,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,36.12,0,1,Check-Out,Juan Johnson,hherrera@example.net,(991)854-4625,4713625045285255,2024-04-15 +Resort Hotel,0,1,2017,May,21,25,0,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient,2.78,0,1,Check-Out,Susan Johnston,jessewright@example.com,795-345-3350x81404,4301792017939,2025-11-26 +City Hotel,1,9,2017,May,22,30,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.6,0,0,Check-Out,Spencer Molina,wilsonjohn@example.net,360-331-7312x9845,30160119415434,2024-05-17 +Resort Hotel,0,99,2017,April,14,1,1,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,E,1,Refundable,13.0,224.0,0,Transient-Party,72.43,0,0,Check-Out,Erin Collier,ovasquez@example.org,781-521-3910,6578125703526610,2024-12-25 +City Hotel,0,87,2017,May,20,15,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Contract,100.95,0,3,Check-Out,Amy Davis,richardmurphy@example.net,7005838177,6514271728275432,2024-12-07 +Resort Hotel,1,20,2017,August,35,30,0,3,3,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Daniel Stephens,rodriguezerik@example.com,+1-955-514-2572x812,180026864740011,2024-05-17 +City Hotel,0,198,2017,September,37,12,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,9.0,179.0,0,Transient,167.21,0,2,Canceled,Regina Cook,brooksleslie@example.com,216.337.6358x977,180083393111511,2026-02-15 +City Hotel,0,43,2017,December,52,25,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,29.0,179.0,0,Group,114.14,1,1,Check-Out,Kristin Williams,hdelgado@example.com,2948384755,180090710163661,2025-01-10 +City Hotel,0,131,2017,November,47,22,2,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,179.85,1,0,Check-Out,Mr. Thomas Mcbride,esteele@example.com,219.380.7092,3548927554576998,2024-05-02 +City Hotel,0,47,2017,March,10,7,1,2,2,2.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,G,G,1,No Deposit,10.0,179.0,0,Transient,114.22,1,3,Check-Out,Misty Rodriguez,josephhughes@example.net,(660)313-0315,6011811081041190,2024-11-21 +City Hotel,0,52,2017,January,4,23,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,41.15,0,2,Check-Out,Joseph Stone,spoole@example.com,(705)379-1269x893,639081575495,2025-03-25 +Resort Hotel,0,43,2017,December,49,6,1,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient,35.08,0,0,Check-Out,Hannah Todd,davisjames@example.com,4964921422,30168373079283,2025-06-06 +City Hotel,0,95,2017,April,17,24,1,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,Rachel Wilson,brooksjames@example.com,680-683-0805,36347828672751,2024-12-28 +City Hotel,0,57,2017,September,36,8,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,197.0,232.0,0,Transient-Party,49.08,0,0,Check-Out,Jeffrey Davis,nathan42@example.org,2045878144,4668187233649607,2025-09-13 +City Hotel,1,160,2017,June,26,25,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,131.96,0,2,Canceled,Linda King,acunningham@example.net,(308)415-0240x90246,6011951446387647,2024-04-17 +City Hotel,1,392,2017,August,32,8,0,1,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,70.51,0,0,Canceled,Andrew Dillon,brandi89@example.com,892.455.0775x30003,2233447506616141,2024-09-08 +City Hotel,1,0,2017,April,14,7,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,111.15,0,1,No-Show,Jack Bridges,mcintyrecarmen@example.org,+1-955-245-9517x52575,4407089269818,2024-05-11 +Resort Hotel,0,11,2017,August,34,26,2,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,236.0,179.0,0,Transient,129.61,0,1,No-Show,Jeanne Herrera,taylorcody@example.com,(329)767-7510,4889921408255106711,2025-11-26 +City Hotel,1,55,2017,June,25,15,0,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient,181.47,0,2,Canceled,Scott Edwards,alexander52@example.org,710.716.0114x997,6011753896759857,2024-08-17 +City Hotel,0,20,2017,March,10,4,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,96.8,0,1,Check-Out,Richard Schultz,lambhenry@example.net,001-603-241-4104,676214659572,2025-08-24 +Resort Hotel,0,191,2017,October,40,4,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,75.0,179.0,0,Transient-Party,78.61,1,2,Check-Out,Jonathan Lang,stephaniecampbell@example.org,766-956-4401x5331,4974977522567604,2025-12-09 +City Hotel,0,16,2017,January,2,3,1,2,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.82,0,2,Check-Out,Isaac Oliver,wilsonsydney@example.com,485.764.9887x47337,3581142602031404,2025-12-25 +City Hotel,1,276,2017,August,32,5,0,1,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,250.7,0,0,No-Show,Kyle Jackson,nathan73@example.com,836-652-2018,502079910373,2024-05-03 +Resort Hotel,0,207,2017,March,14,31,0,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,61.62,0,0,Canceled,Douglas Ayala,brian38@example.net,001-821-579-0666x388,30380786417998,2026-03-12 +Resort Hotel,1,97,2017,March,14,30,0,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,Non Refund,89.0,179.0,0,Transient,37.97,0,0,Check-Out,Steven Hoffman,zachary38@example.net,001-376-939-5381x6881,4378296163652779,2024-10-02 +City Hotel,0,140,2017,December,50,13,2,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,92.45,0,1,Check-Out,Catherine James,mbarron@example.net,646-935-6105x390,30224379935364,2025-10-17 +Resort Hotel,0,0,2017,January,3,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,171.0,179.0,0,Transient,49.74,0,0,Check-Out,Katrina Collins,shane13@example.com,001-600-723-8167x167,2653565163309303,2025-01-30 +Resort Hotel,1,96,2017,June,23,3,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,245.0,179.0,0,Transient,104.98,0,0,Canceled,Kelsey Myers,skrause@example.com,438.432.9779,372192306698841,2025-10-28 +Resort Hotel,1,1,2017,February,8,19,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,242.0,179.0,0,Transient,36.74,0,1,No-Show,Stephen Dunn,chapmanapril@example.org,6957218909,4500716920152548680,2025-01-03 +Resort Hotel,0,14,2017,May,19,9,1,2,3,1.0,0,BB,ESP,Direct,Direct,0,0,0,H,H,2,No Deposit,247.0,179.0,0,Transient,208.63,1,0,Canceled,Daniel Rogers,brettanthony@example.com,854-492-5192x003,3584404698502574,2024-10-05 +Resort Hotel,1,14,2017,January,3,16,0,2,2,0.0,0,BB,,Direct,Direct,0,1,1,A,A,1,No Deposit,14.0,179.0,0,Transient,48.51,0,0,Canceled,Mary Walton,steven37@example.org,001-953-671-5491x235,3518599485892798,2025-07-28 +Resort Hotel,1,158,2017,June,23,5,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,238.0,179.0,0,Transient,133.57,0,0,Canceled,Matthew Miller,rachelsmith@example.org,(915)940-7876x12357,3501767063199444,2025-02-07 +Resort Hotel,1,12,2017,July,27,1,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.19,0,2,Canceled,Michael Gonzalez,danielmitchell@example.com,3773960726,213169095557456,2024-09-06 +Resort Hotel,0,83,2017,December,48,2,1,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,15.0,179.0,0,Transient,102.41,0,2,Check-Out,Robert Shah,colleen36@example.com,637.635.1750x691,6011016621367549,2026-03-25 +City Hotel,1,191,2017,November,46,14,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,219.0,0,Transient,75.52,0,0,Canceled,Carla Hunter,lopezsamuel@example.org,001-645-604-0466x1658,4022642225320964,2025-06-19 +City Hotel,0,0,2017,August,32,6,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,131.61,0,1,Check-Out,Edward Bryant,sarah29@example.net,001-869-659-5825x02346,4119136078439116,2025-02-25 +Resort Hotel,1,188,2017,May,19,9,2,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,125.23,0,0,No-Show,Rachel Griffin,sherryrogers@example.com,366.861.8339,3507353214424967,2024-07-13 +City Hotel,1,407,2017,September,37,14,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,131.33,0,0,Canceled,Cristina Oliver,allison94@example.org,(939)203-9911x9275,4011706843550121,2025-12-14 +City Hotel,0,86,2017,June,26,27,1,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,6.0,179.0,0,Transient,131.8,0,1,Check-Out,Ashley Gallagher,lisa20@example.net,562.468.1307,36353058980625,2025-06-17 +City Hotel,0,116,2017,March,13,27,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,19.0,179.0,0,Transient-Party,62.23,0,0,Check-Out,Michael Parrish,rperez@example.com,(474)878-7866,180070064801603,2025-07-22 +City Hotel,0,7,2017,July,30,28,2,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,1,0,Check-Out,Sierra Reed,patricia82@example.com,438-490-6727x989,6011680682172617,2024-12-12 +Resort Hotel,0,150,2017,March,11,12,2,5,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,A,C,1,No Deposit,290.0,179.0,0,Transient-Party,97.27,1,0,Check-Out,Mary Mills,campbellcrystal@example.com,001-900-653-7904,676221468405,2024-06-19 +Resort Hotel,0,37,2017,December,48,1,3,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,65.75,0,0,Check-Out,Robin Stanley,barronjames@example.com,952.968.9233x455,575433830255,2024-06-15 +City Hotel,0,12,2017,March,10,10,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,170.0,179.0,0,Group,136.52,1,1,Check-Out,Mark Potter,milleralicia@example.com,+1-592-223-5113x1840,4626465051611,2025-04-12 +Resort Hotel,0,14,2017,August,32,8,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Group,44.03,0,0,Check-Out,Melanie Torres,sharpmonica@example.net,+1-503-368-8710x4051,3555684780300509,2024-05-08 +Resort Hotel,0,11,2017,February,8,17,1,2,2,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,A,D,1,No Deposit,309.0,179.0,0,Transient-Party,47.06,1,0,Check-Out,Elizabeth Hill,brookskatherine@example.com,+1-271-238-6342,30461216038677,2024-11-05 +Resort Hotel,0,196,2017,May,22,25,4,5,2,1.0,0,HB,POL,Direct,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,219.37,0,1,Check-Out,Christie Woods,bperez@example.net,001-910-477-0777x9033,6584464849709406,2026-01-29 +Resort Hotel,0,155,2017,July,29,15,3,7,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,239.0,179.0,0,Transient,171.96,0,3,Check-Out,Jennifer Reese,cgordon@example.net,992.838.7312,676117234812,2025-09-15 +City Hotel,0,119,2017,July,29,16,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,134.54,0,2,Check-Out,Glenn Washington,timothyalexander@example.net,(294)457-5613x8341,4170744549998531,2024-12-11 +City Hotel,0,56,2017,November,45,9,0,1,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,54.14,0,0,Check-Out,Sarah Cruz,wesley76@example.org,471-311-5645x85476,4229665076715645,2024-06-20 +Resort Hotel,1,24,2017,March,13,27,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,237.0,179.0,0,Transient,128.78,0,1,Canceled,Dana Roberts,moorebarbara@example.net,562-315-3833x801,4258750612276825,2025-01-17 +City Hotel,1,110,2017,April,15,11,0,2,2,0.0,0,SC,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,134.95,0,0,Canceled,Caleb Hunter,jamie55@example.net,839.620.0378,3568255826500462,2025-04-08 +City Hotel,0,113,2017,April,16,21,1,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,127.6,0,0,Check-Out,Debbie Edwards,lance49@example.org,001-730-788-2397x016,30092120236394,2025-07-03 +Resort Hotel,1,124,2017,April,15,14,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,81.23,0,1,Canceled,Tiffany Martinez,ubrown@example.org,(629)309-0846x580,378536784650100,2026-01-14 +City Hotel,0,3,2017,November,44,4,0,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,93.54,0,0,Check-Out,Thomas Palmer,joshua38@example.com,968.996.8738x6079,3537981457450036,2025-08-28 +Resort Hotel,0,27,2017,September,38,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Group,54.53,0,0,Check-Out,Eric King,salinastimothy@example.org,963-487-9658,38880013919015,2024-12-27 +Resort Hotel,0,20,2017,August,35,24,1,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,242.0,179.0,0,Transient,235.14,0,1,Check-Out,Jeffery Mejia,tonyestrada@example.net,428-209-1693x390,180000450044427,2026-01-27 +City Hotel,1,305,2017,July,28,13,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,104.67,0,0,Canceled,Amber Collier,jessicagarcia@example.com,+1-668-523-0758,373488034233201,2025-03-19 +Resort Hotel,0,8,2017,April,18,27,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,2,No Deposit,17.0,331.0,0,Transient-Party,102.2,1,0,Check-Out,Darlene Kent,hodgechristopher@example.com,001-303-865-9335x64896,3582612255757165,2025-09-04 +City Hotel,1,287,2017,August,35,24,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,E,0,Non Refund,11.0,179.0,0,Transient,138.66,0,0,Canceled,Gabriel Kidd,villarrealchristopher@example.com,882.896.9891,3592813445713062,2024-12-21 +Resort Hotel,0,98,2017,August,33,13,0,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,248.58,0,1,Check-Out,Tyler Cameron Jr.,heather46@example.org,893.926.5019x6962,6011115841596570,2024-05-24 +City Hotel,0,2,2017,August,33,12,0,2,1,0.0,0,BB,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,112.35,0,0,Check-Out,Jane Davis,brendaramirez@example.com,625-340-7677,213171983766785,2025-01-11 +City Hotel,0,0,2017,September,37,12,0,1,2,0.0,0,SC,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,3.03,0,0,Check-Out,Michael Gray,deborahtaylor@example.org,6434780739,4277552889436786,2025-01-02 +City Hotel,1,13,2017,August,32,10,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,87.72,0,1,Canceled,Wendy Bell,petersonjudith@example.net,001-948-744-0037x3072,6536723550373903,2026-02-19 +City Hotel,1,56,2017,January,4,23,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.88,0,1,Check-Out,Cole Coleman,zhicks@example.org,001-241-948-8063,4062809653223324091,2025-08-19 +Resort Hotel,0,110,2017,March,12,16,2,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,222.0,75,Transient,93.05,0,0,Check-Out,Debra Cummings,macevedo@example.net,001-780-420-7191x298,213137460058418,2026-02-09 +City Hotel,1,414,2017,May,22,30,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient-Party,104.51,0,0,Canceled,Derek Soto,fbradley@example.net,351-594-1094,4238338057047974733,2025-12-13 +City Hotel,0,96,2017,September,37,15,0,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,61.97,0,0,Check-Out,Alexis Smith,codyrivera@example.org,+1-872-218-8048x538,2709113518421749,2025-01-24 +City Hotel,0,297,2017,October,43,22,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,83.25,0,0,Check-Out,James Day,bakerbrenda@example.com,001-316-345-3408x98082,5455639804074130,2025-09-16 +City Hotel,1,3,2017,June,25,21,0,4,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,D,A,0,No Deposit,13.0,179.0,0,Transient,171.2,0,0,No-Show,Elizabeth Cooper,ncarter@example.org,388-739-1983x7533,379844163160819,2025-03-01 +City Hotel,0,0,2017,July,28,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.14,0,1,Check-Out,Ian Ramirez,wendy60@example.net,910-869-1711x91655,180007921778020,2024-06-12 +City Hotel,1,183,2017,September,38,23,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,A,0,No Deposit,1.0,179.0,0,Contract,82.87,0,2,Canceled,Marisa Murphy,travisconner@example.com,7748895063,3554588231064674,2024-05-15 +City Hotel,1,217,2017,August,35,29,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.48,0,1,No-Show,Kimberly Mathews,brianchambers@example.com,806.303.2240x430,4957950367199480047,2025-12-24 +Resort Hotel,0,277,2017,October,43,27,1,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,E,0,No Deposit,2.0,179.0,0,Contract,55.85,0,0,Check-Out,Andrew Wiggins,fbond@example.org,(266)215-1028,38857575088280,2024-09-20 +Resort Hotel,1,23,2017,December,49,3,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,45.25,0,1,Canceled,James Barber,jacob64@example.org,(389)387-3043x12284,213158547017748,2025-05-27 +City Hotel,1,327,2017,October,40,2,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.98,0,0,Canceled,Kelly Nichols,cummingssamuel@example.net,870-763-6057,213134812281624,2025-04-15 +Resort Hotel,0,91,2017,April,15,8,1,1,2,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,81.1,0,0,Check-Out,Joseph Dyer,hallnathan@example.net,+1-585-306-4855x9154,3598166233290874,2025-07-02 +Resort Hotel,0,82,2017,December,50,10,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,316.0,179.0,0,Transient,53.56,0,0,Check-Out,Joshua Moreno,justin43@example.com,(637)347-5154x0426,5153101748970969,2026-01-10 +City Hotel,0,194,2017,July,29,14,2,4,2,2.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient-Party,252.0,0,2,Check-Out,Michelle Werner,betty07@example.org,461-253-8438,343548406834931,2024-05-28 +City Hotel,0,5,2017,September,38,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Contract,166.38,0,2,Check-Out,Allison Wheeler,jefferyjohnson@example.net,001-452-587-8181x918,3559893817284919,2024-11-19 +Resort Hotel,1,91,2017,December,50,16,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,50.32,0,0,Canceled,Timothy French,melissa13@example.net,593-593-1215x34926,4546149000305845,2025-11-04 +City Hotel,0,34,2017,February,9,27,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,74.71,0,1,Check-Out,Janice King,kathymarquez@example.net,4862838661,3566521381765291,2024-12-30 +Resort Hotel,1,38,2017,August,33,15,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,246.0,179.0,0,Transient,56.54,0,1,No-Show,Alex Smith,ashlee32@example.org,(474)874-5169,4799724263077077,2025-08-14 +Resort Hotel,0,90,2017,April,14,5,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,1.0,179.0,0,Transient-Party,94.7,0,0,Check-Out,Deborah Reeves,pattersonalice@example.net,5442542804,4539310092711095211,2025-02-01 +Resort Hotel,0,190,2017,August,34,23,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,93.16,1,2,Check-Out,Leonard Williams,carlsonkyle@example.com,001-267-537-7547,3512026236391744,2024-10-01 +Resort Hotel,0,33,2017,December,49,8,2,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,F,E,1,No Deposit,15.0,179.0,0,Transient,217.11,0,0,Check-Out,Jose Hall,robert38@example.org,464.782.2008x227,4121181941971500190,2025-04-28 +City Hotel,0,245,2017,July,27,3,2,2,1,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,77.12,0,0,Check-Out,Christopher Little,danielbuchanan@example.org,233.565.5255x0639,2709185775954984,2024-05-19 +City Hotel,0,49,2017,August,31,5,1,5,2,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,165.53,0,2,Check-Out,Miguel Taylor,kmiller@example.net,+1-787-470-4958,30475458131958,2025-03-26 +Resort Hotel,1,396,2017,January,2,1,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,299.0,179.0,0,Transient-Party,47.54,1,0,Canceled,Mrs. Christine Crawford DVM,browntiffany@example.org,(876)309-8883x84917,4675104623741277692,2024-11-11 +City Hotel,1,414,2017,September,38,17,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,69.11,0,0,Canceled,Erica Green,linda99@example.org,749.453.7802x880,563322576338,2026-03-14 +City Hotel,0,39,2017,July,29,19,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,144.84,0,1,Check-Out,Thomas Cruz,efrench@example.net,215-988-5446,4506169732779776,2025-11-09 +City Hotel,1,7,2017,November,46,16,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,2.15,0,0,Canceled,Kevin Green,mwilliams@example.net,286-814-3010x3986,4889157449899273,2024-05-20 +Resort Hotel,0,12,2017,July,27,4,4,1,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,240.0,179.0,0,Transient,136.62,0,2,Check-Out,Daniel Bridges,jacoblevine@example.org,819-902-1117x892,3553614389795330,2024-08-28 +City Hotel,0,36,2017,August,32,5,2,4,2,2.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Peter Sandoval,robertfranklin@example.com,001-295-894-5833,2289911100091145,2024-10-09 +Resort Hotel,0,15,2017,August,31,4,2,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,65.76,1,2,Check-Out,Kevin Williams,stonekatherine@example.org,(756)644-5215x446,379820410315547,2025-06-18 +City Hotel,1,118,2017,September,36,9,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,33.0,179.0,0,Transient,63.74,0,0,Canceled,Pam Callahan,jamie10@example.com,(398)756-4211x9053,371205838208334,2024-09-22 +Resort Hotel,0,3,2017,August,32,9,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,242.0,179.0,0,Transient,202.65,0,2,Check-Out,Kristine Oneal,mary95@example.com,001-430-824-5066x952,5100687333616094,2024-05-23 +Resort Hotel,0,0,2017,March,11,13,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,43.26,0,2,Check-Out,Sarah Davis,jhill@example.com,001-944-309-5065x2357,180020130481666,2024-10-19 +Resort Hotel,0,0,2017,October,40,3,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,136.0,179.0,0,Transient-Party,61.95,1,0,Check-Out,Hannah Mendez,martin85@example.net,001-489-401-1444x712,2328295812970199,2025-07-27 +City Hotel,0,50,2017,March,13,24,1,3,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,82.39,0,0,Check-Out,Charles Brown,virginiasharp@example.net,795.945.7833x492,2261346183202644,2024-06-29 +Resort Hotel,0,140,2017,June,23,7,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,151.04,0,1,Check-Out,Antonio Johnson,jasonchavez@example.org,347-303-7258x77600,4225575961118934,2025-05-17 +Resort Hotel,1,160,2017,August,35,29,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,139.14,0,1,Canceled,Michelle Moore,ramirezandrew@example.org,+1-258-260-9961x8167,341504951395887,2025-11-15 +City Hotel,1,1,2017,October,41,12,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,63.0,0,Transient,86.33,0,0,No-Show,Adam Edwards,amythomas@example.net,509.600.6509,180021894328721,2025-07-25 +Resort Hotel,1,273,2017,May,20,12,2,10,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,Non Refund,246.0,179.0,0,Transient,134.48,0,0,Canceled,Michael Wilson,krhodes@example.com,541-310-7796x78445,3569919637409390,2026-03-22 +City Hotel,0,153,2017,April,16,16,0,3,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,Non Refund,34.0,179.0,0,Transient-Party,106.81,0,0,Check-Out,Donna Moody,corymahoney@example.net,(236)705-5475,4932608021953216,2024-04-13 +City Hotel,0,43,2017,April,17,24,0,6,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,169.58,1,2,Check-Out,Sarah Haynes,melissa11@example.com,001-570-789-4073x82943,4266966468426,2024-10-18 +City Hotel,0,6,2017,May,22,30,2,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,173.39,0,1,Check-Out,Jason Love,kelliwilliams@example.org,(459)870-8109x14808,4287025573642,2025-06-10 +Resort Hotel,0,0,2017,February,6,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,85.0,179.0,0,Transient,64.13,1,0,Check-Out,Vanessa Moore,sarah74@example.org,+1-446-684-6403x447,376206435130991,2025-11-18 +Resort Hotel,0,14,2017,October,40,5,2,5,1,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,191.0,48.0,0,Transient-Party,42.3,0,0,Check-Out,Dylan Mckenzie,edward43@example.org,(447)280-1149x8566,2706112132385259,2025-11-05 +City Hotel,0,0,2017,March,13,28,0,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,131.45,0,1,Check-Out,Andrew Martinez,saragibson@example.com,+1-501-703-3045x805,4112681818851,2026-01-28 +City Hotel,0,7,2017,October,40,7,1,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,92.43,1,1,Check-Out,Laura White,curtis31@example.org,734-353-4181x2865,38468029399552,2025-08-17 +City Hotel,1,0,2017,January,2,5,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,132.05,0,0,Canceled,David Ward,johnsonbrian@example.net,999.708.4856,588747098311,2025-08-15 +City Hotel,1,159,2017,July,29,22,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,124.7,0,3,Canceled,Thomas Lopez,alejandrocooke@example.net,(889)733-5279,3576579289758865,2024-05-19 +Resort Hotel,0,89,2017,January,2,5,0,2,1,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,95.0,179.0,0,Transient,101.46,0,0,Check-Out,Emma Berry,austin76@example.org,(787)201-2121x69856,4927328037478,2025-09-23 +City Hotel,0,311,2017,August,33,13,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.05,0,0,Check-Out,Tanner Cunningham,randallmiranda@example.com,615-379-2082x34272,378104834168902,2024-11-18 +City Hotel,0,23,2017,August,34,21,0,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,118.15,0,2,Check-Out,Arthur Olson,henrysteven@example.net,(592)459-8442x2026,4915327643230,2025-08-30 +City Hotel,1,88,2017,January,5,29,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.8,0,0,Canceled,Erica Carlson,thomas51@example.net,001-413-535-2806x3002,4371442318979,2025-03-18 +City Hotel,0,17,2017,August,31,5,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,0,A,B,0,No Deposit,9.0,179.0,0,Contract,63.47,0,1,Check-Out,Judy Sanders,ehouse@example.org,791.411.8520x3483,374239996217479,2026-01-08 +City Hotel,0,0,2017,October,41,11,0,1,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,E,0,No Deposit,11.0,179.0,0,Transient,151.79,1,0,Check-Out,Christopher Singleton,frank25@example.org,964.759.5798x6791,4004523201653,2025-11-08 +Resort Hotel,0,305,2017,March,13,28,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,243.0,179.0,0,Contract,47.59,0,1,Check-Out,Megan Williamson,sanchezcharles@example.org,3233643627,4598452040516510961,2024-09-16 +City Hotel,0,14,2017,July,29,13,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,249.53,0,3,Check-Out,Jeffrey Herrera,courtneysmith@example.com,736-530-9818,3592268403157788,2024-10-06 +City Hotel,0,51,2017,October,40,7,1,2,2,0.0,0,BB,NLD,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.76,0,0,Check-Out,Jason Reed,griffithrebecca@example.org,234.581.1562x1038,30478455618050,2024-08-27 +City Hotel,0,52,2017,August,33,14,2,5,2,0.0,0,BB,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,1.74,0,0,Check-Out,Daniel Moss,scottlee@example.org,+1-220-315-8593,372232988914643,2024-12-23 +Resort Hotel,0,108,2017,August,32,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,258.0,179.0,0,Transient,84.22,0,0,Check-Out,Cameron Jones,omar80@example.org,309-741-1562x60283,30156531777435,2025-04-19 +City Hotel,0,0,2017,January,2,4,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,0,No Deposit,18.0,45.0,0,Transient,1.89,0,2,Check-Out,Philip Graves,kwilliamson@example.net,001-863-354-4850x4296,4809899163604,2025-03-02 +City Hotel,0,64,2017,June,26,27,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,230.28,0,1,Check-Out,Heather Clark,brendafoster@example.com,+1-835-388-9339x52317,5266470164179197,2025-01-20 +Resort Hotel,1,60,2017,August,35,30,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,252.0,1,2,Check-Out,Rachel White,ooconnell@example.net,664.318.3472,36888349007746,2024-12-06 +Resort Hotel,0,91,2017,October,41,12,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient-Party,39.25,0,0,Check-Out,Omar Lewis,smiththomas@example.com,5674449168,3566964480642609,2026-02-14 +City Hotel,0,14,2017,August,31,4,0,2,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,227.34,0,1,Check-Out,Donna Rowe,escobarkelly@example.org,604-838-8317x8803,4129389473624505,2024-10-19 +City Hotel,1,83,2017,November,48,30,1,2,2,0.0,0,SC,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,101.57,0,1,Canceled,Richard Roberts,klinejustin@example.net,(741)287-3152x02786,4170947754468021,2024-09-05 +Resort Hotel,1,0,2017,November,47,23,2,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,89.32,0,0,Canceled,Michelle Hall,swarren@example.org,+1-995-587-6124x450,3520069653043331,2025-07-21 +City Hotel,1,34,2017,September,36,4,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Contract,188.58,0,1,Canceled,Joseph Gonzalez,evan64@example.org,4432869773,675929678034,2024-03-27 +City Hotel,0,9,2017,November,45,4,2,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,162.47,0,2,Check-Out,Heidi Watson,floresjocelyn@example.org,(214)847-4575,584892200935,2025-09-27 +City Hotel,0,12,2017,April,14,5,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.65,0,0,Check-Out,Andrew Vincent,megan31@example.org,272-939-9620x41168,4393397426511686,2024-09-07 +Resort Hotel,0,301,2017,October,43,23,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,253.0,179.0,0,Contract,41.49,0,0,Check-Out,Melissa Frederick,eedwards@example.net,308.932.7733,3567583218628679,2025-07-30 +City Hotel,0,3,2017,March,11,14,0,1,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,103.82,0,1,Check-Out,Vincent Bell,randerson@example.com,(637)814-2301x20871,6522500745547021,2025-01-03 +Resort Hotel,0,1,2017,May,18,1,0,1,2,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,103.67,1,0,Check-Out,Michael Mitchell MD,angeladawson@example.net,(529)934-0542x8010,4211227943938346,2024-08-21 +Resort Hotel,0,33,2017,September,38,21,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,250.0,179.0,0,Transient,236.72,1,0,Check-Out,Alisha Hartman,brittney65@example.org,884.643.1364,4862832120120584,2025-07-24 +City Hotel,1,163,2017,September,37,10,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,44,Transient,89.85,0,0,Canceled,Misty Bowman,emily03@example.com,998-980-1215x68924,3567643662684105,2024-06-23 +City Hotel,1,0,2017,December,51,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,76.95,0,2,No-Show,Nancy Hernandez,urobinson@example.net,664.646.4623x6811,502043761068,2024-07-28 +City Hotel,0,27,2017,May,18,1,1,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,135.71,0,1,Check-Out,Julie Rivers,sherylmason@example.net,(734)862-4807,4020115091409934937,2026-01-07 +Resort Hotel,0,44,2017,March,12,19,0,6,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,61.4,1,1,Check-Out,Frank Snow,amoore@example.com,422.437.4323,3540054464801438,2025-05-12 +City Hotel,1,49,2017,February,5,2,0,2,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.3,0,1,Canceled,Anthony Kent,michaeljones@example.org,433-319-6195x4911,180096940258767,2025-06-23 +City Hotel,0,0,2017,December,49,4,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,154.0,179.0,0,Transient,92.87,0,0,Check-Out,Daniel Smith,boyleyolanda@example.net,+1-808-288-2804x2263,577423246823,2025-08-10 +City Hotel,0,240,2017,September,39,26,2,2,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,35.0,227.0,0,Transient-Party,114.9,0,0,Check-Out,Brian Taylor,smithstephen@example.net,001-633-820-6980x910,6011901222521679,2025-04-04 +Resort Hotel,0,162,2017,October,42,19,2,3,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,100.88,0,0,Check-Out,Tonya Rodriguez,sarah18@example.com,(596)591-7114x3556,6573427549465671,2024-12-07 +City Hotel,0,160,2017,March,10,5,1,2,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.93,0,2,Check-Out,Robert Carlson,tbyrd@example.com,7938487257,4440374960684578,2024-10-20 +City Hotel,0,36,2017,June,25,20,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,129.57,0,1,Check-Out,Connor Peters,kimberly11@example.net,(230)894-0652x53351,180014557604272,2024-10-13 +City Hotel,0,40,2017,August,35,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,226.89,0,1,Check-Out,Annette Cherry,ojimenez@example.com,001-201-481-8048,4140031213101,2024-04-11 +City Hotel,1,176,2017,April,17,27,2,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,108.96,0,0,Canceled,Jennifer Hall,lindsay83@example.com,2623751023,3580719787019147,2024-07-23 +City Hotel,1,156,2017,June,24,10,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,139.21,0,0,Canceled,Patrick Francis,oconnellamy@example.org,642-500-2358x530,3585065318348851,2026-03-23 +City Hotel,0,57,2017,September,37,16,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,114.93,0,1,Check-Out,Dennis Harris,kimberly72@example.org,001-606-934-0720,3528807119611775,2024-11-29 +Resort Hotel,0,188,2017,August,31,2,1,4,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,236.34,1,3,Check-Out,George Johnson,williamseric@example.org,+1-566-700-4401x824,630473325797,2024-05-14 +City Hotel,0,12,2017,November,48,27,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,48.08,0,2,Check-Out,Ruben Long,kellycox@example.com,441-756-6896x645,4763217460053,2024-08-02 +Resort Hotel,0,69,2017,October,42,19,2,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,103.8,0,3,Check-Out,Jessica Pierce,victoria97@example.net,365-334-9625x408,344941745632596,2025-12-03 +Resort Hotel,0,14,2017,September,38,22,2,4,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,166.56,1,2,Check-Out,Pamela Choi,lglenn@example.net,653-494-4236,2254596148633908,2025-08-09 +City Hotel,0,2,2017,April,17,26,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,A,0,No Deposit,12.0,45.0,0,Transient,0.63,0,1,Check-Out,Margaret Juarez,sanchezeugene@example.org,648.512.0749,3537509505309753,2026-02-11 +City Hotel,0,22,2017,September,39,26,1,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.09,0,1,Check-Out,Christopher Herrera,kevin79@example.com,(310)472-1389x3848,675955232185,2025-11-04 +City Hotel,0,0,2017,July,30,24,1,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,44.76,0,1,Check-Out,Terrence Mccarthy,cynthia17@example.com,7678056942,213145016299832,2025-07-30 +City Hotel,0,5,2017,July,29,14,0,2,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,218.7,0,0,Check-Out,George Mcguire,hferguson@example.net,2309803094,347986383154178,2025-12-18 +Resort Hotel,0,94,2017,August,32,9,2,3,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,73.88,0,0,Check-Out,Michael Clark,ffloyd@example.net,239.241.8387,3583920324219433,2024-07-17 +City Hotel,0,18,2017,September,36,6,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,159.12,0,2,Check-Out,Samantha Hart,walkerjuan@example.org,812-250-9037,3587527942862761,2024-07-13 +City Hotel,0,13,2017,December,2,30,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,114.35,0,0,Check-Out,Andrew Koch,lauren24@example.org,(418)531-4087,676380285715,2025-12-18 +City Hotel,0,3,2017,May,21,20,2,0,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,110.44,0,1,Check-Out,Bradley Gibson,moorecheryl@example.com,678-203-2093x3895,345428050701967,2024-08-10 +City Hotel,0,190,2017,March,13,27,2,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,43,Transient-Party,109.44,0,1,Check-Out,Michael Garcia,anthony59@example.net,905-990-4182x0854,345718759745814,2024-05-16 +City Hotel,1,60,2017,August,32,4,0,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,124.65,0,0,Canceled,George Gibson,clarkcarlos@example.com,+1-345-700-5041x288,2253818065827557,2024-05-07 +Resort Hotel,1,38,2017,July,26,1,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,227.2,0,1,Canceled,Kristin Harrison DDS,catherineaustin@example.org,+1-412-517-1444x97139,4278763585559826388,2024-12-06 +Resort Hotel,0,95,2017,December,50,13,2,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,128.0,179.0,0,Transient,51.28,0,0,Check-Out,James Suarez,kenneth83@example.org,3898714546,4682566462739506,2024-06-30 +City Hotel,0,2,2017,June,25,15,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,134.9,0,0,Check-Out,Erin Mitchell,seanmcdonald@example.com,867-988-9842,4534291879363,2025-08-10 +City Hotel,1,331,2017,October,41,8,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,64.95,0,0,Canceled,Ms. Alexis Salazar,elizabethgutierrez@example.com,2262088791,4351899061201788,2025-12-12 +Resort Hotel,0,1,2017,January,3,16,0,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,G,D,2,No Deposit,243.0,179.0,0,Transient,132.27,1,3,Check-Out,Jessica Lawson,kirbymichelle@example.com,+1-304-515-3982x499,4417846164400,2025-04-10 +City Hotel,1,0,2017,March,12,22,0,2,2,0.0,0,HB,PRT,Corporate,Direct,1,0,1,A,A,0,No Deposit,16.0,220.0,0,Transient-Party,60.79,0,1,Canceled,Nathaniel Smith,rodriguezjames@example.com,9506546063,4077605621688544,2024-05-30 +Resort Hotel,0,53,2017,December,51,19,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,243.0,179.0,0,Transient-Party,60.33,0,1,Check-Out,Jessica Hurley,joseph07@example.org,494-978-8922x9863,4012901994880,2024-04-14 +Resort Hotel,0,134,2017,March,10,2,1,3,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Laura Lawson MD,garciaaustin@example.net,4875127099,4150326297131,2024-05-16 +City Hotel,0,3,2017,March,11,16,1,1,2,1.0,0,BB,POL,Direct,Direct,0,0,0,A,A,1,No Deposit,244.0,179.0,0,Transient,127.73,0,3,Check-Out,Ashley Hudson,wmorales@example.com,5427672948,060490525346,2025-04-19 +City Hotel,0,2,2017,August,33,10,1,0,1,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,3.2,0,0,Check-Out,Stacie Burton,morrislori@example.com,6278153589,4091201851491687511,2024-05-13 +Resort Hotel,0,0,2017,December,52,29,2,2,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,E,0,No Deposit,37.0,179.0,0,Transient-Party,83.74,0,0,Check-Out,Wayne Pruitt,iallen@example.com,326.686.5035x19200,2434248681075484,2024-12-23 +Resort Hotel,0,0,2017,August,33,16,1,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,D,0,No Deposit,241.0,179.0,0,Transient-Party,62.42,0,0,Check-Out,James Thompson,nathandavis@example.net,811.813.8465,213148566960803,2025-11-24 +Resort Hotel,0,30,2017,August,35,27,0,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,240.0,179.0,0,Transient,214.82,0,1,Canceled,Angela Dominguez,zmiller@example.com,(736)795-7177,4424851570389946,2024-04-15 +City Hotel,1,141,2017,March,14,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,104.91,0,0,Canceled,Charles Davis,wilkersonangela@example.org,409.257.2291x18290,4228365576192707,2024-07-02 +City Hotel,0,0,2017,January,4,24,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,110.25,0,2,Check-Out,Johnny Durham,cmorris@example.org,+1-581-302-3080x68152,213179689775539,2024-07-05 +City Hotel,1,2,2017,July,29,17,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,1,Canceled,Jennifer Robinson,oramirez@example.org,001-233-883-6039,3573964597173127,2025-05-10 +City Hotel,0,15,2017,August,35,27,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,218.19,0,0,Check-Out,Jody Cook,wendyjefferson@example.com,(514)610-6147,375028429685579,2026-03-05 +Resort Hotel,0,197,2017,August,34,24,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient-Party,52.37,0,0,Check-Out,Shawn Johnson,gordonlinda@example.org,814-388-6971,4730260032741,2024-07-13 +City Hotel,0,178,2017,June,24,8,2,10,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,126.63,0,2,Check-Out,Robin Munoz,sharon58@example.org,567.283.3011x4876,2254281360709062,2024-12-03 +City Hotel,1,141,2017,October,40,4,1,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,143.92,0,1,Canceled,Jeffrey Reynolds,annahicks@example.com,+1-424-769-2028x1570,4152167218555592,2024-10-31 +Resort Hotel,0,3,2017,January,2,6,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,D,0,No Deposit,241.0,179.0,0,Contract,55.98,0,1,Check-Out,Kim Li,wduncan@example.com,001-431-677-7384x366,346519132238827,2025-07-28 +City Hotel,0,0,2017,April,17,22,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,D,D,0,No Deposit,14.0,45.0,0,Transient,46.22,0,0,Check-Out,Debra Jones,vsmith@example.org,692-617-4916,4439819623294473,2025-12-29 +Resort Hotel,1,37,2017,January,5,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,236.0,179.0,0,Transient,47.9,0,1,No-Show,Thomas Brown,ewilliams@example.com,793.296.1448x156,3537706460493784,2025-04-17 +City Hotel,0,20,2017,July,31,31,1,0,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,81.58,0,1,Check-Out,Jennifer Boyer,cortezamy@example.org,(321)845-9159,349931537369346,2024-10-03 +Resort Hotel,0,1,2017,February,8,21,1,1,2,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,195.0,179.0,0,Transient,78.95,0,0,Check-Out,Elizabeth Gilbert,dean33@example.org,+1-636-428-8785x4099,3567846519100346,2026-02-28 +City Hotel,0,46,2017,October,41,9,2,7,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Contract,134.56,0,0,Check-Out,Christine Austin,sharpdebra@example.com,(810)588-9591,3537904765179469,2025-03-18 +City Hotel,1,411,2017,October,41,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,94.77,0,0,Canceled,Jack Tyler,bishopbethany@example.com,+1-910-574-1668x2261,4485090084255386,2025-04-05 +City Hotel,0,11,2017,March,13,28,0,1,1,0.0,0,BB,CHE,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,67.0,179.0,0,Transient,88.35,0,1,Check-Out,Angela Morgan,sandrawalton@example.net,(259)778-0526,5187401282866312,2025-08-08 +Resort Hotel,0,27,2017,October,43,23,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,224.0,0,Transient-Party,59.64,1,0,Check-Out,Austin Williams,jeanne00@example.net,227-277-8582,6588596943680276,2025-05-10 +City Hotel,1,88,2017,August,31,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,102.04,0,0,Canceled,Anthony Guerrero,smithjustin@example.com,348.621.3650x42179,3504648695799131,2024-10-21 +City Hotel,1,68,2017,August,34,20,0,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.22,0,1,Canceled,Gary Perry,kevin83@example.org,001-910-888-0725x94242,3581746994264959,2026-02-06 +Resort Hotel,1,125,2017,April,14,5,2,2,2,0.0,0,HB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,83.3,0,0,Check-Out,Lori Fritz,amonroe@example.net,421-872-4405,4571474311580702102,2024-09-06 +City Hotel,0,0,2017,March,10,5,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,14.0,223.0,0,Transient,62.22,0,0,Check-Out,Kimberly Bishop,howellrose@example.com,974-545-3904x03713,3521524308528192,2025-11-05 +Resort Hotel,0,128,2017,May,21,22,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,306.0,222.0,0,Transient-Party,39.86,0,1,Check-Out,Virginia Dillon,khoward@example.com,001-907-964-5037x6169,3567680646709566,2025-04-21 +Resort Hotel,1,100,2017,December,49,8,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,B,0,No Deposit,309.0,179.0,0,Transient,48.65,0,0,Canceled,David Martin,reevesalexandra@example.com,001-223-778-5899x1445,582538746998,2024-03-28 +Resort Hotel,1,119,2017,August,34,26,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,F,0,No Deposit,240.0,179.0,0,Transient,225.55,0,0,Canceled,Keith Hammond,dean36@example.com,001-273-250-8353x073,6546107787316307,2025-01-19 +City Hotel,1,414,2017,September,38,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.82,0,0,Canceled,Brian Reed,lori95@example.net,539.418.0886x727,4722176787146,2024-05-12 +Resort Hotel,1,158,2017,April,18,30,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,87.92,0,0,Canceled,Taylor Hamilton,burkerandy@example.net,598-314-5079,4233525332441770951,2025-09-19 +City Hotel,0,183,2017,January,3,19,2,2,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,11.0,179.0,0,Transient,102.44,0,2,Check-Out,Marvin Juarez,jonesgabriel@example.org,922-681-3214x69611,2715947065212502,2024-09-28 +City Hotel,0,22,2017,April,15,8,1,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,9.0,179.0,0,Transient,179.46,0,0,Check-Out,Stephanie Rodriguez,adrake@example.org,804.346.2486x848,4336393476150320225,2025-02-15 +Resort Hotel,1,152,2017,April,14,7,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,223.0,0,Transient-Party,60.65,0,0,Canceled,Dominic Valdez,scotthahn@example.com,001-919-521-7742,4772483705075,2024-10-22 +City Hotel,0,9,2017,September,38,16,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,68.0,179.0,0,Transient,138.27,0,2,Check-Out,Michelle Chandler,huertaadrian@example.org,(785)821-6938,3592277852706615,2024-09-21 +City Hotel,0,9,2017,August,35,29,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,164.46,0,2,Check-Out,Ashley Martinez,isimmons@example.org,691-729-5663x33018,6533079952612106,2024-11-16 +City Hotel,1,17,2017,July,28,13,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,122.76,0,0,No-Show,Natasha Carter,ofloyd@example.com,001-624-706-7261x23529,4430923785685327,2025-09-28 +City Hotel,0,108,2017,September,38,23,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.48,0,0,Canceled,Anthony Bailey,waltermack@example.net,(935)577-3654x97259,6011713278903671,2024-06-07 +City Hotel,0,145,2017,June,25,21,1,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,106.09,0,1,Check-Out,Michele Craig,chorn@example.net,682.646.9269x552,36716068758514,2025-01-10 +City Hotel,0,105,2017,May,21,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient-Party,138.49,0,0,Check-Out,Don Martin,wadeautumn@example.net,769-754-3505x2764,3546380580470343,2024-08-18 +City Hotel,1,308,2017,October,43,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,58,Contract,61.65,0,0,Canceled,Jennifer Robinson,acrawford@example.org,8869277136,4777061542405363538,2025-07-03 +City Hotel,0,3,2017,August,33,13,3,4,1,0.0,0,SC,,Direct,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,141.85,0,0,Check-Out,Benjamin White,cynthiajames@example.com,700.775.7061,343634132618036,2024-05-01 +City Hotel,0,14,2017,August,32,9,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,106.41,0,1,Check-Out,Elizabeth Taylor,uhayes@example.org,001-885-316-0132x094,6545692391805853,2024-08-18 +City Hotel,1,111,2017,September,37,10,2,4,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,111.71,0,0,Canceled,Melissa Lyons,pfriedman@example.org,731.803.6380x441,3593845986091440,2025-01-18 +Resort Hotel,0,209,2017,August,34,23,1,4,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,65.79,0,0,Check-Out,Cassandra Peterson,calderonrobert@example.net,001-730-207-1306,676216983913,2024-07-15 +City Hotel,1,36,2017,October,41,8,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,72.25,0,0,Canceled,Misty Smith,cmorgan@example.org,+1-615-460-3645,3564390227883268,2025-11-20 +City Hotel,0,1,2017,February,9,26,0,1,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,72.18,0,2,Check-Out,David Herrera,kevin81@example.net,001-932-549-8752x04197,374021737708549,2024-08-24 +City Hotel,0,4,2017,March,11,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,43.36,0,3,Check-Out,Douglas Soto,beanlisa@example.org,+1-650-371-3407,348025837819042,2024-06-29 +City Hotel,0,48,2017,November,48,28,2,1,1,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,224.0,0,Transient-Party,84.06,0,0,Check-Out,Michael Hickman,muellerstephen@example.net,+1-862-974-2561,3554712866611902,2025-11-27 +Resort Hotel,0,15,2017,December,49,6,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,55.22,0,3,Check-Out,Samantha Trujillo,lsmith@example.com,+1-463-912-3797x0920,213195668100572,2025-02-17 +Resort Hotel,0,11,2017,July,27,5,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,221.62,1,3,Check-Out,Matthew Walton,ryan66@example.org,462-672-2390,36685029906191,2024-07-04 +Resort Hotel,0,2,2017,April,14,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,122.32,1,2,Check-Out,Ricky Valentine,marylindsey@example.org,(675)553-6725,4616580685093170,2025-07-27 +City Hotel,0,355,2017,October,41,7,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Contract,77.47,0,1,Check-Out,Scott Smith,andrew55@example.net,(846)814-3092x31004,3556420548064395,2026-01-08 +Resort Hotel,1,173,2017,June,24,10,2,7,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient-Party,104.09,0,0,Canceled,Matthew Garcia,ablake@example.org,453.673.4512x24295,6011987769249634,2024-11-09 +City Hotel,1,36,2017,August,33,15,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,135.02,0,1,Canceled,Richard Hammond,albert62@example.com,+1-298-544-4883,6522907378721171,2024-11-24 +City Hotel,1,89,2017,December,51,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.14,0,1,Canceled,Timothy Stephenson,reginald88@example.org,(811)420-5640x2971,4587134508490,2024-10-31 +Resort Hotel,0,47,2017,May,19,9,4,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,226.79,1,3,Check-Out,Kimberly Jacobs,smithmark@example.net,571-374-3030x405,4093175718640559727,2026-02-04 +City Hotel,0,51,2017,May,21,18,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient,132.78,1,0,Check-Out,Christopher Franklin PhD,brittanysilva@example.com,+1-610-702-2360x3081,3592187395284618,2024-08-26 +Resort Hotel,0,0,2017,August,33,18,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,248.0,179.0,0,Transient,228.39,1,1,Check-Out,Alexis Graham,kthomas@example.com,(228)735-1142,379070423608765,2024-04-06 +Resort Hotel,0,15,2017,September,36,2,0,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,135.93,0,0,Check-Out,Sean Garcia,jonesdeborah@example.com,(388)346-2498x416,371384098965261,2025-10-22 +City Hotel,1,131,2017,September,36,9,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,104.94,0,0,No-Show,Emily Jones,ksmith@example.com,414-893-5191x01427,4099188697033584,2025-03-24 +Resort Hotel,0,19,2017,August,32,11,2,5,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,E,0,No Deposit,184.0,179.0,0,Transient-Party,100.96,0,2,Check-Out,Matthew Young,adrian47@example.net,871-946-7310x67883,6011223697119255,2025-10-01 +City Hotel,0,39,2017,April,16,16,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,143.43,0,2,Check-Out,Chad Singleton,rebeccadean@example.com,858-557-4294,4563906035857268894,2026-02-16 +Resort Hotel,0,0,2017,May,19,8,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,I,0,No Deposit,245.0,179.0,0,Transient,1.15,0,0,Check-Out,Cynthia George,michellewright@example.net,307-957-1833x89706,6554154684344924,2024-12-16 +Resort Hotel,0,99,2017,August,31,2,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,200.12,1,1,Check-Out,James Parker,craig62@example.com,424.875.9284,6011353600852260,2025-11-25 +Resort Hotel,1,16,2017,June,24,12,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,212.04,0,0,Canceled,Julie Mendoza,afranklin@example.com,001-222-346-3193,4259983034644,2025-08-12 +City Hotel,1,195,2017,June,24,9,1,4,1,0.0,0,BB,PRT,Aviation,Corporate,0,1,0,A,A,0,No Deposit,12.0,200.0,0,Transient,109.87,0,0,Canceled,Joe Mack,nsmith@example.org,(535)442-2990x813,2341985795695457,2025-07-30 +City Hotel,0,23,2017,March,12,16,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,43.31,0,0,Check-Out,Brandon Taylor,jon77@example.com,(202)649-4654,4534922555471228,2024-07-19 +City Hotel,1,149,2017,March,10,6,2,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,242.0,179.0,0,Transient,67.93,0,1,Canceled,Erica Allen,clarkmorgan@example.net,001-820-448-4110x72321,376408211956116,2024-06-02 +Resort Hotel,0,21,2017,October,43,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,61,Transient-Party,65.54,0,1,Check-Out,Curtis Melton,brownkristina@example.org,(367)271-5549x97933,30506379454069,2025-06-25 +City Hotel,0,149,2017,July,27,5,2,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,81.01,0,2,Check-Out,James Durham,fernandezbenjamin@example.org,925.464.3255,583603349015,2024-11-09 +Resort Hotel,0,90,2017,July,30,26,0,3,2,0.0,0,HB,CHN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient-Party,101.23,0,0,Check-Out,Jeremy King,chanson@example.net,446-372-5871,340020249099851,2025-08-23 +Resort Hotel,0,11,2017,January,4,25,1,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,320.0,179.0,0,Transient,53.95,0,1,Check-Out,Cheryl Escobar,thompsonpamela@example.org,975.396.4821x433,6591906815302302,2025-01-02 +Resort Hotel,0,29,2017,November,47,23,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,55.73,1,1,Check-Out,Brian Davis,smeyer@example.com,+1-440-395-5255x03149,30407675018437,2024-04-10 +City Hotel,0,1,2017,June,23,9,0,2,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Transient,111.62,0,0,Check-Out,Darrell Roberts,andrew93@example.org,9842241737,378298681838805,2026-02-24 +City Hotel,1,2,2017,October,42,14,0,1,1,0.0,0,BB,,Corporate,Direct,0,0,0,A,A,0,No Deposit,15.0,65.0,0,Transient,43.74,0,0,No-Show,Rachel Turner,rosstim@example.com,001-357-609-6934,4670124881476765,2024-12-07 +Resort Hotel,0,250,2017,October,42,17,0,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,261.0,179.0,0,Contract,126.31,0,2,Check-Out,Matthew Gonzalez,bellsteven@example.net,503.749.5258x577,3539839860568042,2025-01-28 +Resort Hotel,0,205,2017,August,32,5,2,5,2,0.0,0,BB,ESP,Direct,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Check-Out,Stephen Smith,anthonyfrederick@example.net,(490)859-8530x3285,180052999599528,2025-09-06 +City Hotel,0,17,2017,March,11,11,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,140.7,0,1,Check-Out,Lisa Shea,ufox@example.net,001-453-901-9259x96000,4249893735597369347,2025-07-27 +City Hotel,0,187,2017,September,36,8,2,2,3,0.0,0,BB,ITA,Aviation,TA/TO,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,135.28,0,1,Check-Out,Marissa Collins,dsimpson@example.net,384-418-4651x5416,4550181518341,2024-11-18 +City Hotel,1,21,2017,July,27,5,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,139.21,0,1,Canceled,Danielle Kelly,autumnsimmons@example.net,+1-487-853-3617x760,30142143640138,2024-05-29 +Resort Hotel,0,49,2017,April,15,8,1,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,243.64,0,1,Check-Out,Grant Trevino,danielle92@example.net,(316)800-1699x48060,4785512800442493355,2024-11-03 +City Hotel,0,267,2017,August,32,8,2,5,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,183.76,0,2,Check-Out,Jessica Miller,swright@example.com,606-726-0953x1663,4977545562154,2024-04-13 +City Hotel,0,106,2017,September,37,9,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,173.03,0,1,Check-Out,Jason Meadows,kjackson@example.org,331-770-1611,6011601947080387,2026-03-22 +Resort Hotel,1,363,2017,May,21,23,0,4,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,81.29,0,1,Canceled,Bradley Reilly,richardmacias@example.org,+1-447-277-3351,4636158038445,2025-08-29 +Resort Hotel,0,100,2017,December,49,5,1,4,2,0.0,0,BB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,91.74,0,2,Check-Out,Clinton Fischer,michael54@example.org,8583355340,4819271832622815,2024-11-25 +City Hotel,0,305,2017,October,40,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,82.0,179.0,0,Contract,105.76,0,0,Check-Out,Charles Nguyen,juliemcgee@example.com,(889)893-9320,4635463262450955,2026-03-26 +Resort Hotel,0,97,2017,December,50,9,1,1,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,323.0,179.0,0,Transient-Party,80.55,0,0,Check-Out,Eric Keller,lindsey67@example.org,(507)464-6060x7836,4374333552246469,2025-04-10 +Resort Hotel,0,28,2017,March,10,10,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,51.17,0,1,Check-Out,Samantha Larson,theresahayes@example.com,+1-772-732-5220x573,213108240383947,2025-09-17 +City Hotel,0,0,2017,September,37,11,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,12.0,331.0,0,Transient,5.78,0,1,Check-Out,Laura Joseph,christinestrong@example.net,863-956-4302x47875,6011809291509071,2024-09-19 +Resort Hotel,0,84,2017,June,26,24,4,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,76.28,0,1,Canceled,Jennifer Beltran,courtney64@example.net,9427520584,30362824283210,2026-03-11 +City Hotel,0,47,2017,September,37,9,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,110.32,0,2,Check-Out,Joshua Murillo,andrew15@example.com,774.787.0803,4669620733051014,2024-07-12 +Resort Hotel,0,14,2017,June,23,5,1,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,233.57,0,1,Check-Out,Christopher Caldwell,donnamiddleton@example.com,430.525.9063x98451,2565680885497273,2025-08-07 +City Hotel,0,11,2017,October,40,2,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,89.68,0,3,Check-Out,William Hughes Jr.,mbrown@example.org,(434)352-8954x9980,2265069557446532,2024-07-15 +Resort Hotel,1,349,2017,August,32,4,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,237.0,179.0,0,Transient,252.0,0,0,Canceled,Brandon Gonzalez,tharris@example.com,(678)581-5752,3597939596799199,2026-02-06 +City Hotel,1,6,2017,December,52,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,97.99,0,0,No-Show,Rachel Davidson,stephanie50@example.com,001-561-887-7164x978,30267228279393,2025-11-26 +Resort Hotel,0,91,2017,December,52,27,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,3.05,0,0,Check-Out,Andrew Parker,andersoncassidy@example.org,+1-607-529-8822x53612,213104445158143,2025-07-06 +Resort Hotel,0,134,2017,April,17,27,2,5,2,0.0,0,BB,IRL,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,124.64,0,3,Check-Out,Kathryn Smith,bhopkins@example.net,(513)855-4577,4826010172554701267,2026-02-01 +Resort Hotel,0,1,2017,October,41,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,15.0,88.0,0,Transient,48.6,0,2,Check-Out,Stacy Smith,flopez@example.org,732-667-3464x1943,30327702177784,2024-11-12 +City Hotel,1,12,2017,March,11,15,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,240.0,179.0,0,Transient,126.91,0,1,Check-Out,Charles Walters,nathan90@example.org,526-886-2183x96370,180044950452979,2024-08-23 +City Hotel,0,15,2017,December,50,16,0,4,2,0.0,0,BB,BRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,85.27,0,0,Check-Out,Marilyn Duncan,hammondcassandra@example.org,553.368.0504x5284,5506314560726104,2024-11-25 +City Hotel,1,5,2017,January,2,5,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,33.94,0,1,Canceled,Sean Lowe,tracy69@example.org,(973)770-2836,5485132354005450,2025-06-23 +City Hotel,1,0,2017,September,36,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,100.5,0,0,Canceled,Travis Fuller,matthewschristine@example.org,4877968575,4504135489919636,2025-02-21 +City Hotel,1,20,2017,August,33,14,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,A,0,No Deposit,15.0,179.0,0,Transient,108.49,0,0,Canceled,Timothy Michael,kwalker@example.net,+1-840-938-0232,3501925828029864,2025-05-13 +Resort Hotel,0,4,2017,May,21,22,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,15.0,331.0,0,Transient,54.6,0,1,Check-Out,Timothy Cross,juliemeyer@example.com,882.521.2072x7102,4258433363355,2025-04-01 +City Hotel,0,15,2017,February,6,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,63.74,0,0,Check-Out,Shane Valentine,harryramos@example.org,9262831092,2265621662997609,2026-01-28 +City Hotel,1,165,2017,July,28,9,2,7,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,132.23,0,2,Canceled,Erik Mitchell,hawkinskevin@example.com,+1-891-721-5983x3118,3518241824515224,2024-03-31 +Resort Hotel,0,0,2017,February,8,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,46.66,0,0,Check-Out,Jason Wong,raymondmontgomery@example.org,932-737-8818,4536138758098,2025-04-01 +Resort Hotel,0,45,2017,March,13,28,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,244.0,179.0,0,Transient,252.0,0,2,Check-Out,Lisa Hamilton,lcunningham@example.org,+1-635-496-8939x7246,3503937999403826,2024-07-31 +City Hotel,1,365,2017,October,41,12,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.87,0,0,Canceled,Jean Soto,isabel25@example.net,+1-215-695-7849x7817,6011980644526706,2024-10-28 +Resort Hotel,0,47,2017,September,39,28,2,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,E,0,No Deposit,14.0,179.0,0,Contract,66.19,0,1,Check-Out,Jasmine Palmer,uarmstrong@example.net,(886)338-8301x442,2237179642709805,2024-10-30 +Resort Hotel,1,53,2017,September,36,7,1,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,52.13,0,0,Canceled,Abigail French,jeremy46@example.com,4409337648,3516698877235954,2024-05-23 +Resort Hotel,0,52,2017,March,10,9,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,212.12,1,0,Check-Out,Christine Anderson,jmann@example.com,599-612-7003x766,30123000643852,2024-08-06 +City Hotel,0,18,2017,February,6,5,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,68.69,0,1,Check-Out,Kristina Lang,jennifermartin@example.org,(733)990-8675,346555276636210,2025-01-06 +City Hotel,0,1,2017,May,18,2,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,109.6,0,0,Check-Out,Tiffany Cain,alyssa76@example.net,+1-274-626-9796x1616,3516056329562246,2026-02-16 +Resort Hotel,1,178,2017,August,34,23,2,1,2,0.0,0,HB,PRT,Direct,Direct,0,1,0,E,E,0,No Deposit,2.0,179.0,0,Transient-Party,191.8,0,0,Canceled,April Davidson,dmorris@example.org,001-593-489-3941x5787,3570600407520940,2025-03-18 +City Hotel,0,18,2017,April,16,15,1,1,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,9.0,179.0,0,Transient,151.5,0,1,Check-Out,Scott Martinez,melanieschwartz@example.org,210-708-5989,502062792044,2024-07-28 +Resort Hotel,0,389,2017,March,11,11,2,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,B,0,No Deposit,30.0,179.0,0,Contract,83.51,0,3,Check-Out,Andrea Gates,rpaul@example.com,548.855.4146x3676,344271302927910,2024-05-22 +Resort Hotel,0,33,2017,March,12,22,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,99.56,1,0,Check-Out,Brandon Fernandez,cervantesrobert@example.org,6199769730,4277281166207,2024-05-21 +City Hotel,1,76,2017,June,24,14,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,115.93,0,1,Canceled,Nicholas Gomez,brianmendoza@example.org,+1-598-841-0639x632,5159497237778903,2024-10-22 +City Hotel,1,107,2017,February,6,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,41.36,0,0,No-Show,Vanessa Stevenson,christopherbradford@example.com,949.397.1697x287,2256319323208133,2025-07-26 +Resort Hotel,0,12,2017,April,15,13,0,1,1,0.0,0,HB,PRT,Direct,Corporate,0,1,0,C,I,1,No Deposit,14.0,331.0,0,Transient,4.36,0,0,Check-Out,Kimberly Aguilar,angelagreen@example.com,001-600-797-6902,347505928317486,2024-04-22 +City Hotel,1,117,2017,July,31,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,88.45,0,0,Canceled,Michael Sanders,andersontabitha@example.com,621.364.8625x08635,4231804924074541190,2025-11-05 +City Hotel,1,2,2017,April,15,14,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,A,0,No Deposit,14.0,179.0,0,Transient,132.6,0,1,Canceled,Kaylee White,garciajay@example.org,+1-870-766-2143,676197025924,2025-04-02 +Resort Hotel,0,0,2017,February,8,17,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,14.0,331.0,0,Transient,53.33,0,0,Check-Out,Jonathan Knight,jasmine52@example.net,331.612.1417x120,2704925944367021,2024-05-11 +City Hotel,0,6,2017,November,46,12,0,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,36.0,227.0,0,Transient,81.88,0,1,Check-Out,Andrea Osborne,christina59@example.org,2079438643,3585951989949871,2024-06-02 +Resort Hotel,0,100,2017,February,7,15,0,2,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Group,40.65,0,1,Check-Out,Krystal James,johnsonstephanie@example.com,(499)957-0518x986,213125297116160,2025-01-13 +Resort Hotel,1,96,2017,December,49,8,1,4,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,16.0,179.0,0,Transient-Party,0.87,0,0,Canceled,Timothy Gilbert,williamjackson@example.org,001-392-420-9599x53221,180007885961323,2025-08-24 +Resort Hotel,1,36,2017,September,38,17,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,89.66,0,1,Canceled,Cheryl Dennis,apace@example.org,735-768-2504,4961523476107637539,2024-11-08 +City Hotel,1,198,2017,August,33,15,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,165.8,1,2,Check-Out,Jodi George,brownsarah@example.org,5269195206,4756913476253972930,2026-03-23 +Resort Hotel,1,50,2017,August,32,3,2,7,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,C,G,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Canceled,Kathy Robles,catherine69@example.com,274.442.4938,4493424228807405830,2025-02-26 +Resort Hotel,0,111,2017,March,12,22,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,133.16,1,1,Check-Out,Keith Lee,natasha56@example.net,816-550-8041,6509000646755770,2025-06-29 +Resort Hotel,0,46,2017,January,5,31,1,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,58.52,0,2,Check-Out,Sherry Walker,john71@example.org,(540)800-8340x3587,5419775734092050,2025-09-13 +City Hotel,0,89,2017,July,27,6,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,122.69,0,1,Check-Out,Tina Doyle,qramirez@example.net,613.429.0534,4298024549879040,2025-05-02 +Resort Hotel,0,16,2017,December,49,5,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,60.38,1,1,Check-Out,Toni Navarro,kevinallen@example.com,201-532-0448x06853,30098651771394,2025-10-12 +Resort Hotel,0,317,2017,August,32,5,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,F,B,1,No Deposit,242.0,179.0,0,Transient,220.28,0,1,Check-Out,Anthony Harrison,holly57@example.org,501.613.8933,4964134866816,2026-01-01 +Resort Hotel,0,18,2017,August,34,20,1,5,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient-Party,63.26,0,0,Check-Out,Ryan Taylor,uhanson@example.org,+1-587-514-9841x486,3593631657714449,2026-02-09 +City Hotel,1,42,2017,September,38,19,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.8,0,1,Canceled,Joseph Ochoa,lindavillarreal@example.org,+1-925-740-2319,4288734704603892,2025-04-24 +Resort Hotel,0,87,2017,March,13,24,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,2,No Deposit,248.0,179.0,0,Transient,91.07,1,2,Check-Out,Kenneth Rivera,trannatalie@example.org,(573)828-7885x74300,4583087512550355,2025-04-22 +Resort Hotel,1,30,2017,February,8,22,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,47.98,0,2,Canceled,Anne Mcdaniel,jessicaramsey@example.com,498-877-2765x0131,180041869333688,2025-09-08 +City Hotel,0,93,2017,January,2,10,0,2,2,0.0,0,BB,GBR,Offline TA/TO,GDS,0,0,0,D,A,0,No Deposit,30.0,179.0,0,Transient,128.38,0,0,Check-Out,Brittany Farley,anthonybryan@example.org,288.256.4605x46347,4395180305690,2025-05-31 +City Hotel,0,154,2017,May,21,23,2,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,8.0,179.0,0,Transient,189.13,0,1,Check-Out,Charles Williams,yvonneanderson@example.com,001-381-218-4380x8382,6571904177392239,2025-09-28 +City Hotel,0,1,2017,June,24,12,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.23,0,1,Check-Out,Jacob Tran,cbailey@example.com,(617)818-1027x4747,6011185082959852,2024-04-30 +Resort Hotel,1,307,2017,April,17,26,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,41.0,0,0,Canceled,Kenneth Williamson,jonesjoe@example.org,593.280.6024x8910,503807739365,2024-04-17 +City Hotel,1,8,2017,October,44,30,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,107.12,0,1,No-Show,Brian Wilson,heather11@example.org,600.955.5906x452,6011143230426530,2025-07-15 +City Hotel,0,1,2017,April,15,13,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,11.0,179.0,0,Transient,123.37,1,3,Check-Out,Phillip Harvey,oconnelldesiree@example.org,001-287-928-5471x42316,30383661779714,2025-09-10 +City Hotel,1,12,2017,August,32,11,0,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,F,K,0,No Deposit,10.0,179.0,0,Transient,2.34,0,0,No-Show,Patrick Calhoun II,qrivera@example.com,587.944.7187x48042,4007091951642853,2024-06-18 +City Hotel,0,174,2017,March,12,21,1,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.36,1,2,Check-Out,Judith Moore,robertandrews@example.org,345.993.5061x37502,4407863922062036953,2026-01-28 +Resort Hotel,1,158,2017,July,28,9,3,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,16.0,179.0,0,Transient,216.62,0,1,No-Show,Julie Baird,jorgesampson@example.com,8546884509,3523860709506611,2024-10-28 +City Hotel,0,15,2017,April,17,23,2,5,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,77.7,0,0,Check-Out,Samantha Sanchez,amber57@example.com,001-533-965-8980x3009,3513999926142792,2025-08-19 +City Hotel,0,196,2017,June,26,26,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,132.23,0,1,Check-Out,Juan Carter,scotttran@example.com,001-764-967-3586,349194809734529,2024-12-01 +City Hotel,0,148,2017,March,12,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,107.19,0,0,Check-Out,Randy Pacheco,kyle01@example.net,555.757.6534x160,3542027558488435,2025-11-08 +Resort Hotel,0,209,2017,June,24,10,0,2,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,151.2,1,0,Check-Out,Sara Murphy,stevemiller@example.net,001-921-876-6579x805,3565875619158864,2024-10-01 +City Hotel,0,11,2017,March,11,17,1,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,24.0,179.0,0,Transient-Party,82.89,0,0,Check-Out,Michael Hogan,gutierrezlori@example.net,398.796.0010,2720299991424089,2024-09-20 +City Hotel,0,36,2017,November,46,14,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,53.13,0,1,Check-Out,Joe Gonzalez,christopher41@example.com,(439)462-9853x15334,4053319705538561,2025-07-23 +City Hotel,1,22,2017,July,31,30,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.8,0,0,Canceled,Brittney Johnson,qdavis@example.net,3059747970,3504269136308612,2024-09-23 +City Hotel,0,0,2017,March,10,4,0,1,1,0.0,0,BB,BEL,Aviation,Corporate,1,0,0,A,A,1,No Deposit,14.0,331.0,0,Transient,47.26,0,1,Check-Out,Ellen Lowe,wlee@example.org,921.741.9883x058,503886177735,2025-06-25 +City Hotel,0,138,2017,March,11,17,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,105.11,0,1,Check-Out,Makayla Pacheco,terrijames@example.org,(737)440-0327x9300,180084042500005,2026-02-05 +City Hotel,0,2,2017,July,31,31,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.88,0,0,Check-Out,Barbara Wagner,rickey10@example.net,952.928.6891x58428,5263001091208602,2025-05-01 +Resort Hotel,0,16,2017,March,13,23,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,222.0,0,Transient-Party,55.02,0,0,Check-Out,Anthony Cameron,rcollins@example.org,741.915.4792,503820814807,2024-11-11 +City Hotel,0,40,2017,February,7,17,2,3,3,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.02,0,0,Check-Out,Amy Smith,watkinsmelissa@example.org,+1-585-926-4836,6011016618883367,2025-12-16 +Resort Hotel,0,21,2017,May,22,30,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,H,0,No Deposit,245.0,179.0,0,Transient,213.72,0,0,Check-Out,Devon Weeks,rrosario@example.com,258.538.9218,4598564354415932,2025-12-08 +City Hotel,0,14,2017,May,22,27,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,170.27,0,2,Check-Out,Bryan Roberts,reyesgary@example.net,840.578.2169,4194026026192,2024-04-08 +City Hotel,0,414,2017,July,28,8,0,1,1,0.0,0,BB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,64.79,0,0,Check-Out,Michael Wilson,kirkmonique@example.com,439.525.1755x56905,213187403877077,2024-12-24 +City Hotel,1,401,2017,August,33,12,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,135.83,0,0,Canceled,Mercedes Schultz DDS,bryantlisa@example.org,293.357.9679,4194871719214,2024-09-03 +City Hotel,1,61,2017,May,18,2,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,12.0,179.0,0,Transient,135.29,0,1,Canceled,Cory Garrett,reynoldsnancy@example.org,001-248-629-9067x37156,4960559202259823308,2025-11-06 +City Hotel,0,43,2017,May,21,19,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,78.45,0,1,Check-Out,Yvonne Mullins MD,pattonkatie@example.net,851.751.3522x6907,6575738815634115,2025-11-26 +City Hotel,1,272,2017,August,32,5,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,237.0,179.0,0,Transient,225.41,0,2,Canceled,Amy Campbell,kellis@example.net,+1-228-925-9350,213114551891007,2024-07-24 +City Hotel,0,12,2017,August,32,5,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,63.54,0,1,Check-Out,Shane Alexander,stacie50@example.net,001-485-714-7110x70083,4290110331418564,2026-01-18 +City Hotel,0,158,2017,March,11,14,0,5,2,1.0,0,HB,AUT,Direct,Corporate,1,0,1,A,I,1,No Deposit,12.0,179.0,75,Transient-Party,89.7,1,3,Check-Out,Leslie Hudson,robertjohnston@example.net,398-580-8567x44005,30484227323557,2024-07-21 +City Hotel,1,326,2017,May,19,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient-Party,138.97,0,1,Canceled,Traci Thomas,marcusballard@example.net,+1-848-254-3699x7543,4029643699731687577,2025-10-02 +Resort Hotel,0,58,2017,September,36,8,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,76.83,0,0,Check-Out,Vanessa Santos,tyronesanchez@example.org,001-562-465-5584x24574,4581483168980,2025-12-13 +City Hotel,0,79,2017,October,40,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,62,Transient,96.58,0,0,Check-Out,Ashley Bowers,marcfernandez@example.net,(496)657-0754x6543,575573625762,2024-09-16 +City Hotel,1,15,2017,July,30,20,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,138.84,0,0,Canceled,James Lewis,tlopez@example.org,(851)374-4384x43651,3555027611377173,2026-01-15 +City Hotel,1,199,2017,June,26,24,1,4,2,1.0,0,BB,USA,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,132.01,0,0,Canceled,Jennifer White,amy01@example.net,(975)862-1318x816,4116904835675,2025-08-14 +Resort Hotel,0,12,2017,December,50,14,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,245.0,227.0,0,Transient,53.08,0,1,Check-Out,Kelly Fox,nelsontimothy@example.net,(484)452-8463,180026522416905,2024-08-08 +City Hotel,0,2,2017,August,34,19,0,2,1,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,75.0,0,Transient,101.15,0,0,Check-Out,Sean Blackburn,uthompson@example.net,+1-209-578-4741x5971,4672035689811,2025-06-13 +Resort Hotel,0,15,2017,December,52,27,0,5,1,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,F,1,No Deposit,15.0,179.0,0,Transient,132.51,1,0,Check-Out,Jessica Anderson,amymccoy@example.com,7623751140,3547180932657012,2025-02-11 +Resort Hotel,0,0,2017,February,8,19,1,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,55.07,0,0,Check-Out,Christina Smith,billyvalentine@example.org,(902)384-6439,30374323138001,2026-02-02 +Resort Hotel,0,3,2017,March,11,13,1,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,15.0,179.0,75,Transient-Party,187.04,1,3,Check-Out,Erica Joseph,williamturner@example.org,9253019662,3535023578454290,2025-07-24 +City Hotel,1,49,2017,December,49,8,0,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,81.32,0,1,Canceled,Andrew Alvarez,holly36@example.net,491.339.1157,503854929307,2024-10-22 +City Hotel,1,65,2017,August,32,5,1,0,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,211.32,0,0,Canceled,Casey Farrell,breannawilson@example.com,220.930.4530,4095881757301323601,2025-12-22 +City Hotel,1,50,2017,June,26,25,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,9.0,179.0,0,Transient,236.96,0,0,Canceled,Derek Higgins,yolanda63@example.net,866.801.7717x377,4727908354798161251,2026-02-18 +Resort Hotel,0,33,2017,August,34,23,2,2,3,0.0,0,HB,CN,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,138.95,0,2,Check-Out,Timothy Flynn,thomasdavid@example.org,+1-437-474-6744x161,3596871329951899,2024-12-20 +City Hotel,1,318,2017,August,31,2,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,62.27,0,0,Canceled,Gregory Lang,shannon72@example.net,(909)751-4500,30232479303276,2026-03-09 +City Hotel,0,23,2017,July,30,23,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.22,0,0,Check-Out,Johnny Jones,otaylor@example.com,(814)804-6404x1453,4937875761630135141,2024-04-23 +City Hotel,1,31,2017,July,29,15,0,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,Jennifer Cobb,campbellrachel@example.com,920.384.4852,180098333751275,2024-12-27 +Resort Hotel,1,43,2017,October,42,15,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,242.0,179.0,0,Transient,55.01,0,1,Canceled,Jeffrey Carson,johnsonamy@example.org,789-619-1462x089,4463592134890,2024-06-24 +City Hotel,1,99,2017,December,2,31,1,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.61,0,0,Canceled,John Morrow,mmartin@example.net,757-500-4214x71380,4659628471624,2025-03-16 +City Hotel,0,199,2017,July,27,5,0,1,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,142.31,0,0,Check-Out,Thomas Brown,rodrigueztristan@example.org,324.291.9294x69318,3545296095934337,2026-02-01 +City Hotel,1,408,2017,June,23,1,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,104.07,0,0,Canceled,Patty Clay,ijacobs@example.com,221-307-2103,180026031911107,2025-12-12 +City Hotel,1,15,2017,February,8,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,239.0,179.0,0,Transient,125.09,0,1,Canceled,Mariah Case,reedryan@example.com,+1-287-254-5909,3540988997029787,2025-09-05 +Resort Hotel,0,0,2017,February,7,10,0,3,1,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,38.0,331.0,0,Transient,39.19,0,0,Check-Out,Shannon Vincent,micheal70@example.org,782-487-3591x6681,2720311048001156,2025-02-14 +Resort Hotel,0,110,2017,December,49,8,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,E,0,No Deposit,241.0,179.0,0,Transient,163.81,0,2,Check-Out,Melinda Combs,mark10@example.net,(499)715-0277x5778,4158697241606591774,2025-03-01 +Resort Hotel,0,2,2017,March,10,8,0,1,1,0.0,0,HB,PRT,Complementary,Corporate,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,65.08,0,0,Check-Out,Kelly Sexton,marystewart@example.net,253-952-4090,574970855049,2024-11-23 +Resort Hotel,1,346,2017,July,28,7,2,5,2,0.0,0,HB,AUT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,64.29,0,1,Canceled,Amy Mitchell,mitchelldavid@example.net,(249)875-7917x315,213169019615299,2024-06-14 +City Hotel,0,52,2017,May,22,30,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.27,0,1,Check-Out,Corey Reese,wesleyhinton@example.org,+1-535-567-2043,6011917952701612,2024-10-23 +Resort Hotel,0,1,2017,March,12,20,2,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,222.0,0,Transient,45.68,0,1,Check-Out,George Floyd,doyledana@example.net,780-223-7457x5573,4627508386060849,2024-04-09 +City Hotel,0,15,2017,April,17,27,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,98.33,0,2,Check-Out,Katrina Dixon,veronica34@example.org,350.525.5836,3555421865674809,2025-11-02 +City Hotel,1,141,2017,October,40,4,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,138.0,179.0,61,Transient,76.58,0,0,Canceled,Richard Nixon,michaeldean@example.com,464.414.8776x202,503891665500,2024-09-03 +Resort Hotel,1,205,2017,July,28,12,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,224.6,0,1,Canceled,Sarah Steele,andrew79@example.org,225-315-3202x83619,340692527410677,2026-03-25 +City Hotel,0,16,2017,March,11,12,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.13,0,1,Check-Out,Darren Miller,pamela84@example.net,812-930-0416x3918,676163565549,2026-01-03 +Resort Hotel,0,56,2017,January,4,23,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,C,2,No Deposit,241.0,179.0,0,Transient-Party,49.96,1,1,Check-Out,James Williams MD,shannonheather@example.net,987.649.8271x883,2255468432154224,2025-03-12 +Resort Hotel,0,48,2017,October,41,8,1,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,D,0,No Deposit,317.0,179.0,0,Transient-Party,76.83,0,0,Check-Out,Kevin Ford,cathy26@example.com,001-955-420-1010x544,4757885154253,2025-04-28 +Resort Hotel,0,37,2017,November,46,13,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,66.13,0,0,Check-Out,Kristen Hill,johnmitchell@example.net,(703)756-1735x387,4327378284197,2025-08-17 +City Hotel,1,16,2017,June,26,24,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.07,0,0,No-Show,Raymond Tyler,crystalhartman@example.com,526-284-2583,346189490393919,2025-05-28 +Resort Hotel,0,47,2017,May,21,23,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,49.23,0,0,Check-Out,Kimberly Nash,christina31@example.com,001-257-265-1095x5564,4655883284643524,2024-09-23 +City Hotel,1,158,2017,September,36,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,127.25,0,0,Canceled,Troy Perez,benjamin31@example.org,215-255-8849x02268,4745610385644061338,2026-01-27 +City Hotel,0,168,2017,August,35,28,2,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,102.58,0,1,Check-Out,Dr. Paul Bailey Jr.,bjackson@example.net,+1-319-345-0514,6522884596545130,2025-01-15 +Resort Hotel,1,50,2017,November,44,3,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient-Party,65.17,0,0,No-Show,Pamela Moran,zhughes@example.net,801-575-3496x47427,376172320469748,2024-06-19 +City Hotel,0,2,2017,May,22,25,0,1,1,0.0,0,BB,GBR,Corporate,Direct,0,0,0,A,C,0,No Deposit,15.0,233.0,0,Transient,173.69,0,0,Check-Out,William Fritz,margaretthompson@example.com,377-422-4978x1934,3596440272202583,2024-09-29 +Resort Hotel,1,132,2017,August,35,29,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient-Party,187.74,0,0,Canceled,Cathy Holmes,laneelizabeth@example.com,(285)605-3153x478,2236716939317676,2025-05-11 +City Hotel,1,166,2017,August,34,21,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,135.46,0,0,Canceled,Cindy Bush,diazjessica@example.net,655-482-3667x0312,2236881531731094,2025-06-14 +Resort Hotel,1,10,2017,September,37,14,0,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,153.85,0,0,Canceled,Sara Thompson,tinawise@example.org,(437)759-1504x253,3529190143574551,2024-10-30 +City Hotel,0,5,2017,July,27,5,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,161.56,0,1,Check-Out,Savannah Guerra,michael72@example.org,(237)840-9286x4090,346964612799288,2025-07-08 +City Hotel,0,1,2017,October,43,24,0,1,1,0.0,0,BB,PRT,Online TA,Corporate,1,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,105.44,0,1,Check-Out,David Hill,ichen@example.net,(632)961-3350,4861861018757323,2025-11-01 +Resort Hotel,0,44,2017,January,2,9,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,275.0,179.0,0,Transient,48.59,0,1,Check-Out,James Marshall,alvarezsarah@example.org,+1-343-827-3553x21257,4172133488733816326,2026-01-28 +City Hotel,0,42,2017,October,42,17,1,0,1,0.0,0,SC,USA,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,197.0,331.0,0,Transient,98.83,0,0,Check-Out,Elizabeth Hogan,uthomas@example.org,001-568-559-0818x65991,4715339294161723002,2024-08-29 +City Hotel,0,249,2017,May,21,22,1,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,130.72,0,1,Check-Out,Connie Riley,tyler28@example.com,519.243.0307x6580,2713117773334475,2025-01-17 +City Hotel,1,414,2017,March,11,11,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.22,0,0,Canceled,Alexis Smith,knoxaudrey@example.net,561.436.9211x379,4553788951127623,2025-10-05 +City Hotel,0,115,2017,June,23,5,2,4,2,0.0,0,BB,BEL,Groups,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,238.81,1,1,Check-Out,Jesse Fox,bradley14@example.com,271.707.8985,345111704539641,2024-04-06 +Resort Hotel,1,96,2017,December,51,23,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,55.58,0,0,Canceled,Courtney Hill,tmiller@example.net,9565912514,3523407720040368,2024-12-10 +Resort Hotel,1,232,2017,August,35,24,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient-Party,64.91,0,0,Canceled,David Montgomery,josephwhite@example.com,9297297763,3537096492957125,2025-02-11 +City Hotel,0,33,2017,April,17,22,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.69,0,0,Check-Out,Brandon Soto,browndanielle@example.com,420.301.5341x6257,30394608559804,2026-02-23 +City Hotel,0,12,2017,March,11,9,1,2,2,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,E,2,No Deposit,30.0,179.0,0,Transient-Party,79.09,0,0,Check-Out,Jeremy Price,belindamcknight@example.net,280-742-5581,2227954175757484,2024-09-30 +Resort Hotel,0,1,2017,August,34,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,C,B,1,No Deposit,17.0,179.0,0,Transient,1.33,0,1,Check-Out,John Hughes,kferguson@example.net,(277)930-5118,3519596698564635,2025-07-24 +City Hotel,0,33,2017,May,22,31,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,84.11,0,0,Check-Out,Jasmine Cummings,kelseywhite@example.net,556.933.5954x24203,30259710197399,2025-11-11 +Resort Hotel,0,151,2017,May,19,5,2,2,2,1.0,0,HB,ESP,Groups,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient-Party,160.29,1,0,Check-Out,Debra Gutierrez,fallen@example.net,+1-882-937-5337,5294488892252686,2026-01-26 +City Hotel,1,396,2017,June,24,17,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,77.01,0,0,Canceled,Kimberly Buck,johnsonwesley@example.net,(732)647-3091,676203316135,2025-07-13 +Resort Hotel,1,328,2017,September,39,26,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,1.0,179.0,0,Transient-Party,88.88,0,0,Canceled,Valerie Velazquez,michele18@example.com,+1-928-371-3711,4742986044969850,2025-11-14 +City Hotel,0,13,2017,November,44,2,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,331.0,0,Transient-Party,62.16,0,1,Check-Out,Beth Collins,wwarren@example.org,998-485-7533x472,6501948217808683,2025-11-02 +City Hotel,0,105,2017,October,41,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,75.02,0,1,Check-Out,Sandra Jones,laura64@example.net,492.255.2139x12573,4798376313313,2025-04-16 +City Hotel,1,19,2017,August,34,17,1,4,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Canceled,James Long,pcruz@example.org,+1-417-423-9536x486,2630317730252527,2024-11-13 +Resort Hotel,1,232,2017,December,51,22,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,90.57,0,0,Canceled,Richard King,floresdana@example.com,342.611.4754,560178989730,2024-12-20 +Resort Hotel,1,8,2017,October,43,21,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,83.3,0,0,Canceled,Gabriel Gonzales,jennifer26@example.com,671.698.4138,3520764255180321,2024-06-14 +City Hotel,0,4,2017,August,31,4,2,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.46,1,1,Check-Out,Ellen Avila,youngsarah@example.net,001-691-582-9253x4928,630408741993,2024-10-21 +City Hotel,0,2,2017,March,11,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,131.0,179.0,0,Transient,105.55,0,3,Check-Out,Richard Deleon,robert97@example.com,767-343-7138x752,6534939625259875,2024-05-22 +City Hotel,1,26,2017,April,17,23,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,128.31,0,0,Canceled,Craig Hanna,halexander@example.com,4755396423,3542225956303855,2024-08-18 +Resort Hotel,0,93,2017,August,31,2,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,87.03,0,0,Canceled,Michael Aguilar,david28@example.org,602.779.5170,4042479193246848,2025-11-21 +Resort Hotel,1,256,2017,December,50,10,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,81.23,0,0,Canceled,Travis Schmitt,aarondavis@example.net,(303)836-5488x49658,2251788222703763,2026-02-20 +City Hotel,1,102,2017,December,52,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,35.0,179.0,61,Transient-Party,89.83,0,0,No-Show,Tammy Crane,orozcosuzanne@example.net,406.638.6462,3598015470514837,2026-03-03 +City Hotel,0,397,2017,May,20,17,0,1,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,D,2,No Deposit,1.0,179.0,0,Transient-Party,80.51,0,0,Check-Out,Michael Lin,robert09@example.org,(398)323-2839,4143016207650,2024-08-06 +City Hotel,1,26,2017,September,36,4,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,10.0,179.0,0,Transient,70.5,0,0,Canceled,Marcus Brown,scott63@example.org,+1-291-355-6677,6011851241658210,2025-07-06 +City Hotel,0,8,2017,October,40,3,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,25.0,179.0,20,Transient,108.92,0,0,Check-Out,Robert Henderson,annjohnson@example.com,+1-507-868-4086x00920,30110275334101,2025-11-17 +City Hotel,0,188,2017,July,27,4,0,4,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,165.86,1,0,Check-Out,Tammy Sanchez,josephferguson@example.org,001-608-456-0764,3589294559332772,2025-12-15 +City Hotel,0,0,2017,October,40,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,15.0,246.0,0,Transient,49.03,0,0,Check-Out,Brett Gardner,lisaliu@example.net,001-643-601-1402x58311,4387409188248296,2024-09-02 +City Hotel,0,12,2017,July,27,5,1,1,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,235.47,0,3,Check-Out,Justin Lewis,matthewclark@example.org,395.719.5403,213160110262701,2024-07-03 +City Hotel,1,115,2017,April,15,9,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,97.08,0,0,Canceled,Todd Barber,rortiz@example.net,+1-904-207-5135,5215630532491119,2025-03-03 +Resort Hotel,0,13,2017,December,48,1,2,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,121.09,1,3,Check-Out,Mary Roman,hartmanjacqueline@example.com,8395320432,340583988312785,2025-02-14 +City Hotel,1,151,2017,December,50,13,0,3,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,1,Non Refund,32.0,179.0,19,Transient,80.04,0,0,Canceled,Andrew Lin,justin83@example.net,9765239486,4357322205613010,2025-05-25 +City Hotel,0,83,2017,July,29,18,0,2,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,120.64,0,1,Check-Out,Jesus Wilcox,jeffery54@example.org,+1-303-439-7943x27109,2326058461671845,2024-07-23 +Resort Hotel,0,99,2017,December,51,17,1,2,2,0.0,0,BB,RUS,Groups,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,106.39,0,1,Check-Out,Sandra Stewart,ngarcia@example.org,001-945-458-0665x752,3596319762554176,2024-12-03 +Resort Hotel,0,56,2017,April,14,5,2,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,133.84,0,3,Check-Out,Janet Meadows,bradleycasey@example.com,272.858.6369x41983,342606352762497,2025-06-11 +City Hotel,1,414,2017,August,32,9,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,128.64,0,1,Canceled,Michael Stewart,mdillon@example.org,303-229-3659x77176,346065984785036,2025-05-20 +Resort Hotel,0,158,2017,March,13,31,1,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,D,0,Refundable,12.0,222.0,0,Transient-Party,80.02,0,0,Check-Out,Jim Rogers,harperbrian@example.net,9905493733,3558723520759785,2025-01-22 +City Hotel,1,36,2017,June,24,9,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,1,No Deposit,13.0,179.0,0,Transient,103.4,0,0,Canceled,Theresa Maddox,fherrera@example.com,(416)236-6942x052,4851885800136604,2024-11-02 +Resort Hotel,0,3,2017,January,5,30,0,1,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,245.0,179.0,0,Transient,55.7,0,1,Check-Out,Brenda Pineda,hannasierra@example.com,(807)708-3263x97312,6011343406571503,2026-02-08 +City Hotel,0,85,2017,July,31,29,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,231.53,0,1,Check-Out,Joseph Sandoval,dgraham@example.net,+1-874-368-7925,3560921239586855,2025-06-27 +Resort Hotel,0,78,2017,October,42,21,2,3,2,0.0,0,FB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,102.0,179.0,0,Transient,90.57,0,0,Check-Out,Lori Tate,donald04@example.com,+1-675-704-7251x308,6518542132131866,2025-12-12 +City Hotel,0,199,2017,August,32,9,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,226.39,0,0,Check-Out,Jacob Henderson,marshalltracy@example.com,745-327-9087x423,2663868788007916,2025-11-21 +Resort Hotel,1,227,2017,June,24,10,1,2,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,75.19,0,0,Canceled,Rhonda Brock,amanda42@example.net,001-689-481-0620x43795,4965300882537,2025-08-29 +City Hotel,1,51,2017,June,23,3,0,4,1,0.0,0,SC,CHN,Online TA,GDS,0,0,0,A,A,2,Non Refund,13.0,179.0,0,Transient,120.8,0,0,Canceled,Catherine Griffith,mike18@example.net,001-848-754-4495x6623,180005520027351,2024-10-22 +Resort Hotel,0,51,2017,December,50,12,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,47.5,0,1,Check-Out,Gregory Fisher,dannywilson@example.net,857-503-1554,4432794429814237,2024-03-28 +Resort Hotel,0,267,2017,September,36,4,0,7,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,83.0,179.0,0,Transient-Party,66.59,0,2,Check-Out,Michael Sexton,rhonda78@example.net,358-459-4607x256,6011615392161203,2025-01-21 +Resort Hotel,1,73,2017,January,2,12,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,318.0,179.0,0,Transient,42.32,0,0,Canceled,Cynthia Reed DVM,jasononeill@example.com,(322)519-3059x0488,6583686915380180,2026-01-02 +City Hotel,1,204,2017,July,27,4,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,137.48,0,2,Canceled,Kayla Scott,muellerrichard@example.net,001-457-721-0419,4649574602225626638,2025-05-22 +Resort Hotel,0,414,2017,July,28,15,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,173.0,179.0,0,Transient-Party,123.37,0,1,Check-Out,Jose Jones,keymatthew@example.org,725-628-4906x6466,213121315271491,2025-07-07 +City Hotel,1,71,2017,September,37,11,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,265.0,179.0,0,Transient,107.54,0,0,Canceled,Peter Vazquez,jeremyspencer@example.net,544.796.1784,2709696407331136,2025-08-13 +City Hotel,1,88,2017,June,25,17,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,107.3,0,1,Canceled,Tina Walton,turnermichael@example.com,376.724.9701x822,180059039404999,2025-05-18 +City Hotel,1,13,2017,December,52,26,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,219.04,0,1,Canceled,Christina Mckay,williamsonchristopher@example.net,(739)496-1735,4422232251423936,2025-07-12 +City Hotel,1,65,2017,August,34,23,0,5,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,1,No Deposit,17.0,179.0,0,Transient-Party,47.29,0,1,Canceled,Larry Ortega,leah78@example.com,(396)712-0666x888,6530621060563326,2025-07-15 +City Hotel,0,153,2017,May,20,15,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,141.56,0,1,No-Show,James Anderson PhD,urogers@example.org,8594529462,6011073155401269,2024-10-19 +City Hotel,1,262,2017,September,38,18,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,83.0,179.0,0,Transient,81.4,0,0,Canceled,April Joseph,angelajones@example.com,+1-732-381-3450x6736,2513614719402905,2024-03-29 +City Hotel,1,309,2017,May,18,5,0,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,108.6,0,0,Canceled,Kevin Cunningham,jason77@example.org,247-752-6011,4096406077650279,2025-11-24 +Resort Hotel,0,38,2017,April,17,24,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient-Party,125.92,0,0,Check-Out,Keith Ramirez,victoria11@example.net,808-617-3905,6585957162887781,2024-09-22 +City Hotel,0,43,2017,October,43,27,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,105.68,0,2,Check-Out,John Li,baileyeric@example.com,(790)808-5112x42253,502053120833,2026-01-14 +City Hotel,1,3,2017,March,11,13,1,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,45.0,0,Transient,1.28,1,0,No-Show,Julian Bass,mfigueroa@example.org,(344)296-2355x44698,4246918983263621701,2024-04-27 +Resort Hotel,0,142,2017,March,13,31,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,222.0,0,Transient-Party,44.67,0,0,Check-Out,Mary Stanley,robertlewis@example.net,+1-854-268-3772x03598,4272162728001398,2025-07-21 +Resort Hotel,0,5,2017,December,49,5,0,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,46.45,0,2,Check-Out,Steven Williams,lmarquez@example.org,001-521-323-0942x78410,36331516480586,2024-10-25 +City Hotel,1,14,2017,February,6,10,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.61,0,1,No-Show,Gary Smith,gregory67@example.net,391-440-5194x339,2720797907713503,2024-12-25 +Resort Hotel,0,2,2017,January,2,7,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,D,0,No Deposit,241.0,179.0,0,Contract,50.48,0,2,Check-Out,Joanna Freeman,marilyn12@example.net,(721)221-8058x571,180096238612998,2025-04-22 +Resort Hotel,0,3,2017,May,19,6,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,135.57,0,1,Check-Out,Ruth Harper,staciemccarthy@example.com,+1-414-701-3141x48162,4069857971235315,2025-05-07 +City Hotel,1,43,2017,January,4,24,1,1,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.25,0,0,Canceled,Lisa Thomas,tamaravaughn@example.net,(574)938-1925x672,180060781117821,2024-12-23 +Resort Hotel,0,97,2017,August,32,4,3,1,2,1.0,0,BB,,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,212.01,1,1,Check-Out,Nancy Elliott,pbutler@example.org,265.601.2040x8226,675920639316,2026-01-24 +City Hotel,0,0,2017,May,21,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,D,D,0,No Deposit,13.0,224.0,0,Transient,130.56,0,0,Canceled,Corey Jacobs,marissawallace@example.com,+1-598-633-2600x052,4428346752325392,2025-05-07 +Resort Hotel,0,0,2017,June,24,10,0,1,1,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,0,No Deposit,144.0,179.0,0,Transient,64.3,0,2,Check-Out,Kurt Johnston,richard72@example.com,(768)404-6714x330,4227618463814960,2025-02-12 +City Hotel,0,101,2017,March,14,30,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,1,A,A,0,No Deposit,12.0,179.0,0,Transient,115.52,0,1,Check-Out,Phillip Tate,dlindsey@example.org,986.498.0116,5328813031265234,2025-03-27 +City Hotel,1,301,2017,October,40,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,31.0,179.0,0,Transient,94.71,0,0,Canceled,Derek Webster,tracy74@example.com,+1-596-705-7175x61734,503886124885,2024-06-05 +City Hotel,0,1,2017,January,3,17,1,2,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,75.02,0,1,Check-Out,Casey Willis,alvarezerik@example.com,939.368.5891,501877568268,2025-11-22 +Resort Hotel,1,61,2017,July,27,6,0,2,2,2.0,0,FB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,220.78,1,1,Canceled,Angela Graves,michael41@example.net,832-527-4721x21965,6556262708762274,2025-09-21 +City Hotel,0,4,2017,August,32,8,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.84,0,0,Check-Out,Jeremy Levy,reyeswalter@example.com,(276)244-8689x4794,4374834072419262,2024-06-03 +City Hotel,1,260,2017,October,44,31,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,95.37,0,0,Canceled,Joy Fletcher,galvancurtis@example.com,(531)743-6145,4166031270252619,2026-01-26 +City Hotel,0,192,2017,May,20,15,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,110.7,0,1,Check-Out,Kyle Baldwin,dianachan@example.com,221.760.2284,4600116812739,2025-02-01 +City Hotel,0,18,2017,April,17,21,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,243.0,0,Transient,98.18,0,0,Check-Out,Michelle Mahoney,johnjohnston@example.com,702.810.2278,4613730994557384507,2024-06-13 +City Hotel,1,261,2017,June,24,12,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,108.08,0,0,Canceled,Melissa Dean,jamie42@example.net,200-489-6033,2473661671550260,2025-01-08 +Resort Hotel,0,3,2017,June,26,26,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,1,E,E,0,No Deposit,243.0,179.0,0,Transient,111.37,0,1,Check-Out,Dillon Fernandez,njones@example.com,(427)841-4123x0487,675930223549,2024-08-12 +City Hotel,0,93,2017,March,13,27,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,82.96,0,1,Check-Out,Tammy Stephens,howardamy@example.org,+1-292-504-2084,30542040863370,2025-06-21 +Resort Hotel,0,154,2017,March,12,18,2,2,2,0.0,0,HB,CN,Direct,Direct,0,0,0,E,E,0,No Deposit,354.0,179.0,0,Transient,133.41,0,1,Check-Out,Mark Davis,melissa91@example.org,721-593-3274,4968289261372859,2024-05-06 +City Hotel,1,4,2017,August,32,11,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,2.46,0,1,Canceled,Garrett Martin,mcclainkristina@example.net,483.383.1852,6545776139273944,2024-04-08 +City Hotel,1,247,2017,March,14,30,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,93.91,0,0,Canceled,Rodney Johnson,barberevelyn@example.net,6138729072,4152154804614348,2026-02-24 +Resort Hotel,1,15,2017,December,49,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,44.7,0,0,No-Show,Joseph Villegas,owilliams@example.com,7812716029,371707673560216,2025-11-26 +Resort Hotel,1,237,2017,July,31,29,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,240.0,179.0,0,Transient,221.79,0,0,Canceled,George Morris,monica40@example.net,001-727-538-1036x938,4138427338865290,2025-07-29 +City Hotel,0,30,2017,February,7,11,2,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.63,0,2,Check-Out,Edward Morrow,shawnbarrett@example.com,396.841.8100x899,371663475956732,2026-03-23 +Resort Hotel,0,53,2017,February,6,8,0,5,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,82.79,0,0,Check-Out,Patrick Lindsey,caseylynch@example.com,+1-280-825-9082,4741126008173934198,2024-04-28 +Resort Hotel,0,0,2017,February,7,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,C,0,No Deposit,38.0,179.0,0,Transient,38.63,0,0,Check-Out,Michelle Herrera,eduardo22@example.org,697.711.9194,213135363798890,2025-10-10 +City Hotel,1,94,2017,July,27,4,0,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,174.71,0,0,Canceled,Suzanne Ramos,williamsmith@example.org,374.532.2290,4309618875851,2024-09-24 +Resort Hotel,1,109,2017,June,23,2,0,2,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,205.96,0,0,Canceled,Michelle Shields,qhoffman@example.org,001-357-505-8444x824,378786650608159,2025-05-27 +City Hotel,0,2,2017,May,20,12,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,15.0,179.0,0,Group,84.01,0,2,Check-Out,Stephen Rodriguez,wfrank@example.org,901.876.1541x05698,180087098965121,2024-06-28 +City Hotel,0,65,2017,September,39,24,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,116.36,0,0,Check-Out,Kelly Brown,deannaperez@example.com,(854)250-9273,4439084899037485018,2025-11-27 +City Hotel,0,2,2017,November,45,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,174.29,0,1,Check-Out,Sara Miller,lisa37@example.com,+1-977-459-8910x0636,4281518821816,2025-07-19 +City Hotel,0,0,2017,May,20,14,0,4,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,1,No Deposit,15.0,331.0,0,Transient,1.75,0,1,Check-Out,Alison Allen,griffingabrielle@example.com,973.687.2869x425,060414148225,2025-05-22 +City Hotel,0,61,2017,March,13,28,0,2,2,0.0,0,BB,DEU,Offline TA/TO,Corporate,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,81.05,0,3,Check-Out,Robyn Clarke,ithompson@example.com,001-346-484-5052x833,2227257417604989,2026-03-24 +City Hotel,0,15,2017,December,51,20,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,12.0,199.0,0,Transient,115.13,1,1,Check-Out,Christy Mercer,pmacias@example.org,+1-367-510-7822x716,180057671589341,2025-08-13 +Resort Hotel,0,257,2017,January,2,12,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient,164.48,0,0,Check-Out,Kimberly Duran,anthony41@example.org,(893)462-2867,5386976147348183,2024-07-09 +Resort Hotel,0,102,2017,July,29,18,4,7,2,0.0,0,HB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,75,Transient,227.21,0,1,Check-Out,Steven Smith,bennettcristina@example.net,+1-336-342-8345,213155565553232,2024-06-18 +City Hotel,0,0,2017,February,6,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,D,D,0,No Deposit,8.0,179.0,0,Contract,65.04,0,1,Check-Out,Eric Patel,burkecharles@example.net,+1-364-780-8464x285,6011904712028874,2026-02-26 +Resort Hotel,0,17,2017,January,2,4,2,0,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,242.0,179.0,0,Transient,35.58,0,1,Check-Out,Christina Howard,crystalpalmer@example.net,(932)687-7394x935,4684122630985445,2025-11-30 +City Hotel,0,52,2017,August,34,24,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,206.94,0,1,Check-Out,Paul Lewis,annathomas@example.com,776.560.1811x2509,6591321906974268,2024-05-06 +Resort Hotel,0,0,2017,March,11,15,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,98.78,1,3,Check-Out,Karen Perez,jeremylee@example.net,908-450-7232x66417,586354031336,2026-02-17 +Resort Hotel,0,46,2017,August,35,27,1,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,239.0,179.0,0,Transient,106.4,0,3,Check-Out,Matthew Smith,kimberlyorr@example.com,+1-378-421-4585x13284,3560125966359078,2025-08-06 +Resort Hotel,0,29,2017,June,25,20,3,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient,171.68,0,1,Check-Out,Ricardo Collins,smithnancy@example.org,+1-630-349-9649x339,5445568087180467,2025-01-31 +City Hotel,0,258,2017,August,33,13,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,1.0,179.0,0,Transient-Party,64.17,0,1,Check-Out,Diane Leach,scottterrance@example.com,(983)871-8875x79449,3501364519021974,2024-07-05 +City Hotel,0,2,2017,March,12,20,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,H,0,No Deposit,11.0,63.0,0,Transient,63.99,1,1,Check-Out,Cassandra Brown,davidhubbard@example.org,279-571-5599x34367,346715509602096,2025-09-19 +City Hotel,0,1,2017,May,19,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,A,0,No Deposit,13.0,166.0,0,Transient,94.33,0,2,Check-Out,Victoria Grimes,smithvalerie@example.com,+1-424-479-8784x986,4649680968617,2025-03-10 +Resort Hotel,0,256,2017,October,41,12,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,79.35,0,0,Check-Out,Elizabeth Burke,rdonaldson@example.net,(819)512-2258x2761,4148472779112867,2024-07-20 +City Hotel,0,2,2017,August,32,4,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.82,0,0,Check-Out,Ashley Stevens,spatrick@example.org,998.862.7724x83050,4085054942280268488,2024-08-08 +City Hotel,0,196,2017,August,35,27,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,252.0,0,1,No-Show,Chelsea Casey,poncejeanette@example.net,(312)387-7406,3516525928789699,2025-08-13 +City Hotel,1,16,2017,December,48,1,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,Non Refund,24.0,179.0,0,Transient,89.94,0,0,Canceled,Timothy Berry,griffithjamie@example.org,757.659.5006,3503057562436804,2024-07-29 +City Hotel,1,108,2017,October,42,20,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,40.87,0,0,Canceled,Seth Duncan,porternicole@example.org,001-227-770-2662x1622,213165934917190,2024-09-08 +City Hotel,0,16,2017,April,17,23,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.71,0,2,Check-Out,Valerie Pearson,clarkjacqueline@example.net,+1-726-558-7923x528,4473373340748907338,2025-11-30 +City Hotel,0,0,2017,March,13,23,0,2,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,60.0,0,Transient,78.27,1,1,Check-Out,Kathryn Lindsey,oburton@example.net,(764)965-0571x5493,2720168132519026,2024-10-21 +City Hotel,0,24,2017,August,32,8,1,5,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,228.49,0,2,Check-Out,Diana Griffin,scottmckenzie@example.com,+1-314-853-8861,6564750551639284,2025-02-13 +Resort Hotel,0,13,2017,August,34,21,2,5,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,2,No Deposit,248.0,179.0,0,Transient,252.0,1,0,Check-Out,Alec Andrews,lawrencewallace@example.org,001-634-604-0162x4209,30376307174860,2025-05-28 +Resort Hotel,1,22,2017,December,51,21,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,E,0,No Deposit,9.0,179.0,75,Transient-Party,83.23,0,0,Canceled,Paul Lewis,wendy78@example.net,613-546-7303,564901768601,2024-04-29 +City Hotel,0,16,2017,June,22,2,1,1,1,0.0,0,SC,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,45.93,0,0,Check-Out,Jennifer Montes,yfarmer@example.net,253.485.2903x19051,3534781407685993,2025-04-13 +Resort Hotel,0,11,2017,September,36,4,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,46.19,0,0,Check-Out,Michael Anderson,morgandeanna@example.org,001-801-647-4652,060424814113,2025-12-26 +Resort Hotel,0,195,2017,April,14,1,1,3,2,0.0,0,HB,AUT,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,68.86,0,0,Canceled,Zachary Garrett,schaeferjudy@example.org,001-672-315-0652,4928457468502490,2025-09-01 +City Hotel,0,2,2017,May,20,16,2,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,252.0,0,1,Check-Out,Joseph Reed,graycraig@example.net,001-666-605-7246x0316,4315678764953134,2025-12-10 +City Hotel,0,14,2017,October,42,17,0,1,2,0.0,0,BB,CHN,Corporate,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,119.04,0,0,Check-Out,Shannon Dickson,psoto@example.net,735.891.2088x075,344919630347090,2024-10-20 +City Hotel,0,53,2017,April,17,25,0,3,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,217.12,0,0,Check-Out,Alexander Brock,markcruz@example.net,694.514.5555x11130,3595101946758035,2024-08-16 +Resort Hotel,1,145,2017,June,26,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,41,Transient,201.71,0,0,Canceled,Elizabeth Jones,rogerreid@example.net,6298139789,2237940491366470,2025-07-13 +Resort Hotel,0,0,2017,July,31,27,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient,130.11,1,2,Check-Out,Ryan Mack,carrcaitlin@example.net,+1-740-519-4004,3544798817895127,2024-07-21 +City Hotel,0,17,2017,October,43,24,1,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,139.15,0,1,Check-Out,Amanda Solomon,portermary@example.com,(619)810-5612x46129,2234896757305888,2025-03-27 +City Hotel,1,264,2017,August,34,26,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,176.0,179.0,0,Transient,122.44,0,0,Canceled,Stephanie Crawford,carlmonroe@example.org,(405)774-8407x130,30390311451495,2025-10-31 +Resort Hotel,1,15,2017,March,11,13,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,39,Transient,62.17,0,0,Canceled,Robert Stein,lisa34@example.com,223.700.4001x5202,4158890612487187,2024-08-28 +Resort Hotel,0,92,2017,May,20,18,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,103.82,0,1,Check-Out,Christopher Hayes,abailey@example.com,848-993-2532x97234,3564748807617705,2024-05-19 +City Hotel,1,2,2017,November,47,21,0,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,166.0,64.0,0,Transient,0.5099000000000001,0,0,No-Show,Cassidy Mccall,kelly99@example.com,(852)452-5573x5980,676347302355,2025-10-10 +City Hotel,1,210,2017,September,38,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,124.75,0,0,Canceled,Michael Flores,joshuamoon@example.com,3716020505,30055220252454,2024-07-27 +City Hotel,0,3,2017,March,12,21,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,62.76,0,1,Check-Out,Bruce Perez,dwhitehead@example.net,312.545.6257x74000,501849618902,2024-07-11 +City Hotel,1,127,2017,August,32,9,0,2,3,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,212.63,0,0,Canceled,James Figueroa,thomasmelissa@example.net,+1-911-456-3854x74095,6508997324963702,2025-02-23 +City Hotel,0,0,2017,January,2,5,1,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,68.49,0,2,Check-Out,Mary Lopez,jesustorres@example.com,(650)803-6575x26793,6011443026662300,2025-09-26 +City Hotel,0,18,2017,August,34,24,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,87.58,0,2,Check-Out,Claire Vance,david72@example.org,262.435.8880x9846,4117419013884725,2024-08-15 +City Hotel,0,394,2017,July,31,30,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,22.0,179.0,0,Transient-Party,123.68,0,0,Check-Out,William Lee,wbarrett@example.com,541.262.6235x203,371507412423761,2024-08-24 +Resort Hotel,1,147,2017,April,16,14,1,4,3,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,101.38,0,0,Canceled,Crystal Owens,gsmith@example.org,872.453.6712x30610,4868789324998898,2026-01-22 +City Hotel,1,2,2017,January,4,26,0,4,1,0.0,0,BB,CHN,Direct,Direct,0,0,0,A,D,1,No Deposit,15.0,63.0,0,Transient,110.24,0,0,No-Show,Sydney Fisher,lucasvictoria@example.org,001-963-231-8524x184,6011355528286927,2026-01-22 +City Hotel,1,20,2017,July,31,31,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,86.75,0,0,No-Show,Thomas Walls,syates@example.net,705.735.0331x5304,213192577635145,2025-11-21 +City Hotel,0,103,2017,April,14,5,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,17.0,179.0,0,Transient,111.2,0,0,Check-Out,Joshua Harris,laurie07@example.com,001-687-940-1395x168,3513478628391502,2025-04-28 +City Hotel,0,17,2017,June,23,5,1,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,130.58,0,0,Check-Out,Bruce Farmer,paul81@example.com,+1-800-609-2184,30547262524394,2025-05-09 +City Hotel,1,42,2017,June,26,22,0,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.14,0,2,Canceled,Brooke Banks,timothyjenkins@example.org,001-702-383-6370x05370,4363512159330188015,2025-09-08 +City Hotel,0,40,2017,April,18,30,0,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,25.0,179.0,0,Transient,79.65,0,0,Check-Out,Katie Pierce,michaelross@example.net,592-932-8477x5598,6011992616936896,2024-06-30 +Resort Hotel,0,34,2017,January,4,22,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,46.6,0,1,Check-Out,John Howard,rachel98@example.org,842.413.3773x41719,376335300826167,2025-10-05 +Resort Hotel,0,23,2017,July,30,24,3,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,231.72,0,1,Check-Out,Taylor Kim,tiffanypark@example.com,001-231-302-2529,6011656645747299,2025-09-06 +Resort Hotel,0,44,2017,November,46,13,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,273.0,179.0,0,Transient,43.54,1,1,Check-Out,Gerald Brady,jpowell@example.net,+1-856-338-5229x4462,180085566692201,2026-01-12 +Resort Hotel,1,248,2017,October,44,30,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,223.0,179.0,0,Transient,118.71,0,2,Canceled,Jennifer Evans,michael21@example.com,550-314-6560,3555477568775582,2024-10-04 +City Hotel,1,26,2017,August,35,29,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,128.91,0,2,Canceled,Michael White,dominique19@example.com,856-636-8844,213102098908020,2025-04-28 +City Hotel,1,168,2017,July,27,6,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,139.55,0,1,Canceled,Keith Baker,toddzimmerman@example.net,331.595.3187x73987,374576617491847,2024-11-26 +City Hotel,0,44,2017,September,36,8,2,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.98,0,1,Check-Out,Bethany Delgado,psanders@example.net,726-207-7572,060425938010,2024-10-13 +City Hotel,0,22,2017,February,8,24,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,B,0,No Deposit,9.0,45.0,0,Transient,105.47,0,2,Check-Out,Tiffany Davis,twilkinson@example.net,001-564-348-1437x3187,3589721829246598,2025-10-05 +City Hotel,1,42,2017,April,15,12,0,2,1,0.0,0,BB,IRL,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,182.0,0,Transient-Party,118.1,0,1,Canceled,Clifford Boyd,jacksonrobert@example.com,9247132069,36437761198870,2025-10-02 +Resort Hotel,0,19,2017,May,19,10,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,105.29,1,1,Check-Out,Christine Rodriguez,krystal19@example.org,650.793.3846x375,30041738791258,2025-06-02 +City Hotel,0,143,2017,October,42,20,2,2,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,245.06,0,0,Check-Out,Karen Long,ebarber@example.com,466.717.4727,4663634209788,2024-12-15 +City Hotel,0,24,2017,April,17,24,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,D,0,No Deposit,5.0,179.0,0,Transient,154.57,0,2,Check-Out,Mark Hill,avalencia@example.com,2872142539,4650057619497766,2025-12-06 +City Hotel,1,2,2017,July,30,21,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,216.93,0,3,Canceled,Karen Washington,turnerjames@example.com,001-926-385-8113x702,30373880914739,2025-11-29 +City Hotel,0,147,2017,May,22,27,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,114.93,0,1,Check-Out,Todd Strickland,mthompson@example.net,001-480-888-7687x04426,3554097252153655,2026-02-15 +City Hotel,1,414,2017,October,40,4,0,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient-Party,106.11,0,0,No-Show,Mary Jones,jbenjamin@example.com,259-909-2321,4514329121409514,2025-07-16 +City Hotel,1,38,2017,April,16,20,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,15.0,179.0,0,Transient,103.46,0,0,Canceled,Alicia Jones,olawson@example.com,+1-823-693-2936x354,30497410087763,2025-07-01 +Resort Hotel,0,45,2017,May,21,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,240.0,179.0,0,Transient,155.73,1,2,Check-Out,Sarah Cuevas,sanfordcourtney@example.com,001-233-450-0571,6011654780176622,2025-12-21 +City Hotel,1,99,2017,June,24,14,2,4,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.22,0,0,Canceled,Cassidy Tucker,nicoleburns@example.net,001-846-528-0392x6386,4261009611002723,2026-02-13 +City Hotel,0,1,2017,December,50,13,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,89.08,0,0,Canceled,Jennifer Brown,hmatthews@example.org,9977152033,180009816752920,2025-06-22 +City Hotel,0,2,2017,January,4,23,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,10.0,179.0,0,Transient,106.45,0,2,Check-Out,Joshua Norton,williamssteven@example.org,569.260.4548x67581,6011239441120324,2024-08-05 +City Hotel,0,0,2017,February,5,2,2,0,2,0.0,0,SC,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,81.38,0,0,Check-Out,Jessica Klein,schneiderjoshua@example.com,(821)924-6663x2594,6011955937502168,2025-05-03 +City Hotel,1,111,2017,June,26,27,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,114.99,0,0,Canceled,Thomas Lynn,yumelissa@example.com,+1-744-721-1293x71065,4265714682020563,2024-10-03 +City Hotel,1,335,2017,October,41,14,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,84.92,0,0,Canceled,Michael Ortega,franklinvirginia@example.net,584-723-4067,3561239020746391,2025-01-21 +Resort Hotel,0,40,2017,October,40,6,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,81.62,0,1,Check-Out,Julie Faulkner,brian01@example.com,8022431214,4122059247351,2024-12-07 +Resort Hotel,0,1,2017,October,41,9,1,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,236.0,179.0,0,Transient-Party,40.84,0,1,Check-Out,Charles Jones,clane@example.org,+1-293-644-2586x7825,3526678025637754,2025-04-26 +City Hotel,0,155,2017,June,23,5,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,24.0,179.0,0,Transient,90.84,0,0,Check-Out,Raymond Rivera,nathanieldelgado@example.com,390.589.3266,3595848295043688,2024-06-06 +City Hotel,0,3,2017,April,14,5,1,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.41,0,0,Check-Out,Jennifer Stewart,mwalker@example.org,+1-509-214-3550,4795857313473,2025-09-03 +Resort Hotel,1,35,2017,July,27,3,1,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient-Party,252.0,0,0,Canceled,David Anderson,gileslisa@example.com,821.404.4913,3531566867298434,2025-05-02 +City Hotel,0,37,2017,March,12,19,1,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.66,0,1,Check-Out,Benjamin Trevino,harperjohn@example.com,+1-873-618-1775x4922,4815589761617025,2025-02-27 +Resort Hotel,0,47,2017,July,27,5,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,245.94,1,2,Check-Out,Beth Gilbert,cruzmichelle@example.org,(483)265-3343x577,4592113900882,2025-07-08 +City Hotel,1,414,2017,August,34,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,111.88,0,0,Canceled,Kari Williams,juliewatson@example.org,(249)416-9428x037,2281438217639267,2026-01-24 +Resort Hotel,0,1,2017,July,29,18,0,1,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,1,No Deposit,11.0,179.0,0,Transient,217.3,0,2,Check-Out,Monique Guerrero,katelynlopez@example.org,247-603-0898,4623644786602939523,2026-03-26 +Resort Hotel,1,146,2017,March,10,6,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,63.87,0,0,Canceled,Richard Mccall,evillegas@example.net,9617985990,30402013829124,2024-06-15 +City Hotel,1,88,2017,April,14,5,1,3,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.93,0,0,Canceled,Ryan Morton,robertnewton@example.com,661-767-0199x61006,3503012456632612,2025-11-25 +City Hotel,0,2,2017,February,9,27,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,222.0,0,Transient,48.74,0,0,Check-Out,Ashley Smith,brent05@example.org,(953)380-3875x7963,3575126188424966,2025-10-16 +Resort Hotel,0,103,2017,December,52,24,2,2,2,0.0,0,Undefined,IRL,Groups,TA/TO,0,0,0,A,E,0,No Deposit,32.0,179.0,0,Transient,88.62,0,0,Check-Out,Hannah Young,lpalmer@example.net,621-651-4730x760,36253244434422,2024-09-29 +City Hotel,1,238,2017,June,23,9,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,189.0,179.0,0,Transient-Party,87.54,0,0,No-Show,Andrew Forbes,bdonaldson@example.net,4822461210,676389613677,2024-06-30 +City Hotel,0,44,2017,June,26,27,0,3,1,0.0,0,BB,DEU,Offline TA/TO,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,107.65,0,1,Check-Out,Frances Holt,greenecody@example.org,8648670951,569649847708,2024-08-30 +City Hotel,0,5,2017,July,27,3,0,3,1,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.83,0,2,Check-Out,James Miller,peggyjohnson@example.org,+1-286-779-1113x36556,2720503560739607,2024-08-07 +City Hotel,0,88,2017,June,23,8,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,117.51,0,1,Check-Out,Zachary Frye,robertsonmary@example.net,5674554984,6011128966624465,2024-07-28 +City Hotel,0,26,2017,August,32,5,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,105.12,0,0,Check-Out,Christian Barrett,dhernandez@example.org,001-850-587-0305x4387,4318492371549914,2024-08-11 +City Hotel,1,169,2017,July,28,14,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.63,0,1,Canceled,Heather Tucker,carolynporter@example.org,555.591.1669,4950426112209,2024-10-05 +Resort Hotel,0,10,2017,January,4,25,1,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,308.0,179.0,0,Transient,47.71,0,0,Check-Out,Riley Fitzpatrick,davidross@example.net,001-444-449-4517x262,6011160050285440,2024-12-08 +City Hotel,0,49,2017,October,43,24,1,3,1,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,120.83,0,1,Check-Out,Ashley Daniels,nicholas54@example.org,001-474-658-2871,370472527085016,2025-12-25 +Resort Hotel,0,44,2017,August,32,9,2,4,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,216.28,1,2,Check-Out,Todd White,brandy89@example.com,(491)496-7861,4697569224892855,2025-09-06 +City Hotel,0,13,2017,July,27,2,2,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,72.89,0,0,Check-Out,Julie Martinez,jessicagomez@example.com,976.479.7338x8324,2293060378449884,2025-11-14 +Resort Hotel,0,7,2017,May,18,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,242.0,179.0,0,Transient,49.56,1,0,Check-Out,Bobby Williams,jacksonmatthew@example.com,280-403-4041,3521441235033115,2024-09-29 +Resort Hotel,0,43,2017,April,14,5,1,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,86.29,0,2,Check-Out,Paul Burke,jose51@example.org,501.281.3625x3181,2710701712650217,2024-08-16 +Resort Hotel,0,1,2017,March,11,17,1,0,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,E,I,0,No Deposit,248.0,179.0,0,Transient,3.56,1,0,Check-Out,Nathan Cantrell,djohnson@example.com,465.613.5444x665,6552264885813155,2026-02-01 +Resort Hotel,0,0,2017,November,48,30,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,105.02,1,0,Check-Out,William Edwards,perrygloria@example.net,(975)284-0775,6011035112311204,2024-08-25 +City Hotel,0,237,2017,October,41,8,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,1.0,179.0,0,Transient-Party,82.93,0,0,Check-Out,Heather Cohen,aaronwyatt@example.net,+1-894-964-4061,3517350711653435,2025-11-11 +Resort Hotel,0,166,2017,March,13,31,1,3,2,0.0,0,BB,DEU,Groups,Corporate,0,0,0,A,C,0,Refundable,15.0,223.0,0,Transient-Party,61.73,0,1,Check-Out,Michael Robinson,james44@example.org,(345)567-9497,180024036724609,2025-12-31 +Resort Hotel,0,145,2017,June,23,3,3,1,2,0.0,0,HB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,56.26,0,1,Check-Out,Crystal Obrien,kimberly21@example.com,682.302.1302x653,4659016721150,2025-04-08 +Resort Hotel,0,3,2017,March,11,13,1,5,1,1.0,0,BB,PRT,Direct,Direct,1,0,1,A,D,0,No Deposit,16.0,221.0,0,Transient,45.3,1,3,Check-Out,Zachary Mccarthy,rebeccabecker@example.org,001-439-308-9702x524,6011903639259323,2024-12-03 +City Hotel,0,20,2017,June,27,30,2,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,145.48,0,0,Check-Out,Ricky Walters,melissa27@example.net,001-667-922-6692x758,4918870340196,2026-02-16 +City Hotel,1,200,2017,June,23,1,0,3,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.99,0,0,Canceled,Kevin Barber,natasha65@example.com,611-717-7830x81728,4349411594598,2024-11-30 +City Hotel,0,0,2017,August,31,3,2,2,1,0.0,0,HB,PRT,Groups,Undefined,0,1,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,57.08,0,1,Check-Out,Joseph Howard,paynekimberly@example.net,001-447-444-0249x25847,36458906188634,2025-10-12 +City Hotel,0,83,2017,July,30,22,2,4,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,185.28,0,1,Check-Out,Alexandra Nelson,oramos@example.com,+1-249-983-4733x970,2275125501820715,2025-10-10 +City Hotel,1,20,2017,June,23,5,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.11,0,1,Check-Out,Robin Crawford,brownjennifer@example.org,773-906-0207x2584,4984381578690,2025-10-18 +Resort Hotel,0,33,2017,August,32,6,3,2,2,1.0,0,HB,ESP,Direct,Direct,0,0,0,F,C,0,No Deposit,248.0,179.0,0,Transient,233.23,0,1,Check-Out,William Chavez,lisawheeler@example.com,001-932-629-2797x664,3590705086595281,2024-06-17 +Resort Hotel,1,304,2017,September,39,27,2,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,73.72,0,0,Canceled,Don Rogers,melinda78@example.net,(981)915-7246x8029,3515153193738100,2025-05-16 +Resort Hotel,0,151,2017,May,18,4,4,0,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,309.0,179.0,0,Transient,90.86,0,0,Check-Out,Brian Holland,lorimiddleton@example.com,9183552159,213171064996574,2025-10-06 +Resort Hotel,1,205,2017,July,28,8,2,6,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,30.0,179.0,0,Transient,125.82,0,0,Canceled,Mario Green,diana49@example.com,(298)654-1585,3586123603524568,2026-03-12 +Resort Hotel,1,385,2017,May,21,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Refundable,34.0,179.0,0,Transient-Party,80.33,0,0,Canceled,Samuel Fox,patricia76@example.com,+1-894-906-0201,580416372036,2025-03-27 +Resort Hotel,0,2,2017,July,31,28,2,1,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,239.0,179.0,0,Transient,217.03,1,2,Check-Out,Joshua Mendez,uanderson@example.com,001-248-532-3107x591,4133327851311794,2024-09-19 +City Hotel,0,59,2017,July,30,25,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,0,Transient,121.34,0,2,Check-Out,Antonio Ross,christyblair@example.com,+1-646-462-8061x7467,4074497849639,2025-08-01 +City Hotel,0,4,2017,March,12,21,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,A,2,No Deposit,13.0,65.0,0,Transient,86.82,0,1,Check-Out,Laura Mcdonald,khowell@example.com,(975)427-1787x0096,36330909096520,2024-07-13 +City Hotel,0,0,2017,March,11,13,0,1,1,0.0,0,BB,BEL,Corporate,Corporate,1,0,0,A,B,0,No Deposit,13.0,62.0,0,Transient,99.7,0,2,Check-Out,Anthony Butler,turnerantonio@example.org,365-335-0747x7717,3549231751325849,2024-11-30 +City Hotel,1,190,2017,October,41,11,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,62,Transient,105.72,0,0,Canceled,Jessica Sullivan,rowens@example.org,001-906-850-7495x33223,574385911478,2025-11-01 +Resort Hotel,0,196,2017,September,36,9,1,3,2,2.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient-Party,104.13,0,0,Check-Out,Ms. Kim Knight,jaclynstewart@example.org,+1-889-369-6865x972,3573321814549268,2024-12-03 +City Hotel,0,46,2017,March,12,24,0,3,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.26,0,2,Check-Out,Cassandra Adams,kellyreyes@example.com,(635)724-9109x948,36681237112383,2025-01-22 +City Hotel,0,18,2017,February,9,25,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Group,47.13,0,0,Check-Out,Jasmine Benjamin,torrestyrone@example.net,5312637394,3524667026175031,2024-04-03 +City Hotel,0,0,2017,October,42,18,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,84.46,0,1,Check-Out,Charles Moreno,adamsdaniel@example.org,001-898-336-3213x4128,5352293458219197,2025-04-11 +City Hotel,0,49,2017,August,34,23,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,252.0,0,2,Check-Out,Charles Hickman,candace49@example.com,001-513-723-2362x69697,4913785906534348221,2026-03-05 +City Hotel,1,2,2017,November,45,4,1,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,84.4,0,1,No-Show,Carrie Torres,donaldlee@example.net,411-719-2514,30466578282649,2025-03-30 +Resort Hotel,0,285,2017,June,24,9,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,239.98,1,0,Check-Out,Keith Williams,mcmillanmichael@example.org,001-395-225-3358x380,4749170801327460,2024-11-30 +City Hotel,0,66,2017,August,32,10,0,1,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,175.36,0,1,Check-Out,Melissa Thomas,lisa48@example.org,+1-745-616-5150,675919392125,2024-12-11 +City Hotel,1,35,2017,December,50,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,235.0,179.0,0,Transient,54.64,0,0,Canceled,Tyler Jones,waynejones@example.net,(880)574-2520x29961,4660137737061667234,2025-08-11 +Resort Hotel,0,198,2017,August,32,8,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,105.61,0,1,Check-Out,Victoria Brewer,hlowe@example.net,+1-953-839-3723x178,4607718391669955,2026-01-28 +City Hotel,0,0,2017,April,15,11,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,136.77,1,0,Check-Out,Angela Reyes,donaldrobinson@example.org,7704908829,3536350148020247,2025-10-25 +City Hotel,0,0,2017,August,32,12,1,1,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,68.66,0,1,Check-Out,Frederick Larsen,dustin90@example.org,279.817.4381,3510299795788798,2024-06-18 +Resort Hotel,0,15,2017,November,44,4,0,1,2,0.0,0,FB,ESP,Groups,Corporate,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,108.84,0,0,Check-Out,Maureen Martin,heather38@example.org,(245)889-0174x57790,30169949517970,2024-07-30 +City Hotel,1,217,2017,August,34,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Contract,113.17,0,0,Canceled,Adam Miranda,jerry34@example.com,(621)833-5948x661,4043536948497262,2024-04-11 +Resort Hotel,0,15,2017,August,32,11,2,2,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,220.19,1,1,Check-Out,Jodi Alvarez,ijones@example.org,(579)923-7812,30266276405777,2025-09-09 +City Hotel,0,97,2017,December,52,30,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,118.41,1,2,Check-Out,Anthony Williams,austinjoshua@example.com,354-639-5958,4840694529368,2024-04-06 +City Hotel,0,145,2017,June,27,29,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.26,0,3,Check-Out,Victor Jordan,ejoseph@example.net,478.997.4947x8768,503818704770,2026-01-25 +City Hotel,0,37,2017,October,41,8,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,210.17,0,1,Check-Out,Dustin Brennan,charles11@example.org,5377522525,213188481643811,2026-01-15 +Resort Hotel,0,0,2017,December,49,3,1,5,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,324.0,331.0,0,Transient,44.15,0,0,Check-Out,Donna Martin,andrew11@example.net,299-343-3420x004,30288829462303,2025-10-26 +City Hotel,0,152,2017,August,35,25,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.74,0,1,Check-Out,David Patel,elevy@example.org,+1-883-734-3237x515,576401761308,2025-07-12 +City Hotel,1,306,2017,June,26,25,0,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,107.16,0,0,Canceled,Zachary Robinson,darnold@example.org,850-793-6380,6011017749516249,2024-06-25 +City Hotel,0,2,2017,October,41,14,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,120.6,0,0,Check-Out,Ruth Hays,jchambers@example.org,001-675-298-6703x287,4912645078241747228,2025-05-26 +Resort Hotel,0,151,2017,March,13,31,1,2,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,62.14,0,0,Check-Out,William Gardner,andrewmartinez@example.net,903-973-2737x22353,340313506917216,2025-02-14 +City Hotel,0,2,2017,March,11,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,1,No Deposit,12.0,179.0,0,Group,134.2,1,1,Check-Out,Heather Scott,richardsonanthony@example.org,+1-620-784-2744,374820296209827,2025-07-20 +City Hotel,0,104,2017,August,32,3,2,2,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,138.74,0,1,Check-Out,Jeffrey Preston,daynicholas@example.com,001-522-985-8769x8247,180099723040873,2025-05-22 +Resort Hotel,0,45,2017,June,23,3,4,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,125.45,0,0,Check-Out,Paul Kelley,jacksonbrent@example.com,+1-633-538-6145x51426,344940509848885,2025-11-24 +Resort Hotel,1,44,2017,December,51,22,2,3,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,316.0,179.0,0,Transient,81.52,0,0,Canceled,Angela Henderson,dakota54@example.net,(487)363-5323x9484,4514353330684898059,2024-04-29 +City Hotel,0,11,2017,March,13,26,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,127.82,0,1,Check-Out,Pamela Morrison,kathrynwatkins@example.org,8587649639,4545390216637698325,2025-12-30 +City Hotel,0,29,2017,September,36,5,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,76.28,0,3,Check-Out,Kimberly Taylor,josephbell@example.net,819.789.4471x982,3513114224890635,2025-08-04 +City Hotel,1,404,2017,November,45,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,43.51,0,0,Canceled,Thomas Becker,alexander04@example.com,212.596.6921x12324,501897940133,2024-12-29 +Resort Hotel,0,0,2017,January,2,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,D,0,No Deposit,317.0,76.0,0,Transient-Party,49.29,0,2,Check-Out,Brittany Cisneros,kevin35@example.net,329-954-1838x28084,4324830612668518,2025-08-08 +Resort Hotel,1,252,2017,July,27,3,0,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,44.67,0,1,Canceled,Jonathan Austin,oharris@example.com,+1-730-240-8111,180091635796841,2025-06-24 +City Hotel,0,13,2017,August,32,7,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,G,2,No Deposit,244.0,179.0,0,Transient,167.11,0,2,Check-Out,Luis Norris,omathis@example.net,(256)803-4228,6516998489474154,2025-01-10 +City Hotel,1,0,2017,April,17,25,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,Non Refund,14.0,331.0,0,Transient,44.15,0,0,No-Show,Joshua Adams,hughesashley@example.com,001-789-274-9422,6572303981888806,2024-07-19 +City Hotel,0,36,2017,May,21,21,0,2,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,156.01,0,1,Check-Out,Reginald Rivera,htucker@example.org,339.679.5521,4853910994262640155,2025-06-29 +City Hotel,0,12,2017,October,40,6,0,1,1,0.0,0,BB,DEU,Aviation,Corporate,0,0,0,D,A,0,No Deposit,15.0,45.0,0,Transient,175.24,0,0,Check-Out,Jason Leach,jasontapia@example.com,417-775-6987x6497,4305518041323192,2025-07-06 +City Hotel,0,20,2017,August,33,17,1,5,1,0.0,0,SC,FRA,Direct,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,123.13,0,3,Check-Out,Ronald Warner,evansjared@example.net,896.720.3636,5437904642449438,2025-01-30 +City Hotel,1,0,2017,August,32,9,0,1,2,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,17.0,226.0,0,Transient,4.86,0,0,Canceled,Michelle Montoya,gibbsjeanette@example.net,(344)899-4991,180069847579155,2026-02-12 +City Hotel,1,163,2017,September,36,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,122.24,0,0,Canceled,Ryan King,xstewart@example.org,+1-539-519-0844x624,4328250087079933,2025-05-11 +City Hotel,0,12,2017,October,43,21,0,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,23.0,179.0,0,Transient,91.82,0,0,Check-Out,Gwendolyn Fitzgerald,ureyes@example.org,209.736.4308x62379,372058472320389,2025-10-22 +Resort Hotel,0,9,2017,October,40,3,3,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,212.89,0,0,Check-Out,Erika Morrison,morrisjanice@example.net,783.787.3569x489,36019913112288,2025-07-15 +Resort Hotel,1,16,2017,July,27,2,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,89.0,179.0,0,Transient-Party,109.58,0,0,Canceled,Brian Franco,jonestanya@example.com,517-299-8126,4076979558503443,2024-05-13 +Resort Hotel,0,2,2017,March,13,30,1,3,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,107.91,0,2,Check-Out,Paul Cooley,davidcarter@example.net,356.269.0891x67697,213145405136074,2024-09-20 +City Hotel,1,56,2017,June,23,6,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,128.67,0,0,Canceled,Sandra Clark,tsingleton@example.com,(777)254-7503x5192,6513182988531953,2026-03-20 +City Hotel,1,160,2017,April,16,16,0,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.81,0,0,Canceled,Bianca Moore,leachmichael@example.org,5825912309,4489528782816597246,2024-05-08 +Resort Hotel,0,60,2017,March,14,30,4,10,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,143.11,0,1,Check-Out,Emily Hardy,xflores@example.org,739.723.3366,4853696074605598,2025-09-12 +Resort Hotel,1,17,2017,December,49,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,237.0,179.0,0,Transient,59.7,0,0,Canceled,David Bautista,brittanyclark@example.net,392.225.2044x732,4041569505367695,2025-06-19 +City Hotel,0,3,2017,February,6,5,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,60.0,179.0,0,Group,86.03,0,2,Check-Out,Kelsey Watson,katherinehayden@example.net,355.936.2431x90038,4543947575515,2025-11-17 +City Hotel,0,0,2017,January,3,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,45.24,0,0,Check-Out,Brett Smith,susan75@example.net,001-698-894-2991x16014,379011331964478,2024-10-19 +Resort Hotel,0,16,2017,March,10,5,1,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,309.0,179.0,0,Transient,52.18,0,1,Check-Out,Cheryl Reed,cindy04@example.com,001-469-920-5237x9283,4145913044326,2026-01-15 +City Hotel,0,11,2017,November,45,7,2,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,71.97,0,1,Check-Out,Kathy Alvarez,adam35@example.org,001-333-611-6837,30571870913898,2024-11-26 +City Hotel,1,109,2017,May,19,9,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,129.97,0,2,Canceled,Michael Neal,amy97@example.com,9369408822,213188291922637,2025-03-08 +Resort Hotel,0,13,2017,November,46,16,1,5,2,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,40.28,0,0,Check-Out,Andrew Lopez,stacey57@example.org,4662215972,4195415891030436,2026-02-15 +Resort Hotel,0,11,2017,February,7,16,1,1,1,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,23.0,179.0,0,Transient-Party,72.92,0,0,Check-Out,Lisa Price,jamie01@example.net,7366045436,565685294706,2026-02-12 +City Hotel,1,0,2017,August,31,5,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,1,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,79.56,0,1,Canceled,Patrick Thompson,angelacox@example.net,686.506.3790x55403,373059454728036,2026-01-02 +Resort Hotel,0,18,2017,January,2,3,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,243.0,179.0,0,Transient,57.57,1,3,Check-Out,Jessica Martin,amber89@example.net,+1-912-243-2529,4869228930164,2025-06-23 +City Hotel,0,47,2017,April,17,28,0,3,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,132.93,0,1,Check-Out,Tiffany Kelley,brandy47@example.org,+1-781-471-9159,3583309449578537,2026-02-21 +City Hotel,0,14,2017,August,34,21,0,1,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,226.16,1,2,Check-Out,Jeffrey Perry DDS,benjaminandrews@example.net,(658)481-6808,6011160306642063,2024-08-18 +City Hotel,0,335,2017,October,40,2,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,220.0,0,Transient-Party,60.63,0,0,Check-Out,Marcia Carroll,udaugherty@example.com,+1-556-282-9953x9041,2720179587519676,2025-07-21 +Resort Hotel,1,134,2017,December,51,16,0,3,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient-Party,79.16,0,0,Canceled,James Weber MD,rcombs@example.com,001-333-340-0551x8858,213112924718915,2025-11-07 +City Hotel,1,172,2017,May,21,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,41,Transient,91.4,0,0,Canceled,April Gross,brownthomas@example.com,617.515.8023,578032163763,2024-05-22 +Resort Hotel,1,155,2017,July,27,4,1,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,215.15,0,0,Canceled,Kristine Sullivan,allen65@example.org,768-599-6214,343512188537484,2024-10-13 +Resort Hotel,0,44,2017,December,49,4,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,83.16,1,2,Check-Out,Debra Mcgee,johngonzalez@example.com,8747042376,3530199405236665,2025-09-22 +City Hotel,0,37,2017,March,12,20,0,3,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,222.02,0,1,Check-Out,Cynthia Gutierrez MD,campbellsarah@example.net,(768)709-8219x937,5399474793409546,2025-02-26 +City Hotel,1,381,2017,July,29,19,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,136.13,0,1,Canceled,Alexander Jones,wukrystal@example.com,623.210.3746x856,3570756450081543,2025-07-05 +Resort Hotel,0,98,2017,June,26,25,2,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,75,Transient,106.78,1,2,Check-Out,Bryan Peck,nielsenkeith@example.com,+1-261-379-9006x548,213187780250591,2025-07-26 +Resort Hotel,1,10,2017,December,51,20,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,77.82,0,0,Canceled,Abigail Williams,adam78@example.com,001-517-908-3262x6967,341443371835646,2024-04-30 +City Hotel,0,37,2017,March,10,8,1,4,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,106.09,0,2,Check-Out,Joshua Taylor,thomaspedro@example.com,530-984-3423,6585922099075249,2026-03-14 +Resort Hotel,0,226,2017,March,12,16,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,14.0,179.0,75,Transient-Party,87.09,1,1,Check-Out,Anthony Young,lambphillip@example.org,(379)606-8942x947,30598658086118,2024-06-04 +Resort Hotel,0,0,2017,August,34,23,0,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,E,0,No Deposit,16.0,179.0,0,Transient,209.82,0,0,Check-Out,Amanda Willis,sophiawolfe@example.com,3183129016,2264215698260701,2025-09-02 +City Hotel,1,314,2017,March,13,26,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,85.86,0,0,Canceled,Heather Odom,michellelambert@example.com,641.855.9141,348696924582436,2024-04-16 +City Hotel,0,35,2017,August,34,22,1,1,2,2.0,0,BB,NLD,Direct,Direct,0,0,0,F,F,0,No Deposit,17.0,179.0,0,Transient,247.33,1,0,Check-Out,Kenneth Johnson,taylorkramer@example.net,+1-512-415-1313x6265,4778014376235282,2024-10-14 +City Hotel,1,180,2017,August,33,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,82.12,0,0,Canceled,Benjamin Griffin,jasonknight@example.org,2198352111,2720501542577970,2025-04-07 +City Hotel,0,19,2017,September,37,12,0,1,1,0.0,0,SC,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,161.0,179.0,0,Transient,104.48,0,0,Check-Out,Alexis Davis,laurieblackburn@example.org,436-361-9505x27179,4538934640528132,2025-04-29 +Resort Hotel,1,45,2017,December,51,23,2,6,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,237.0,179.0,0,Transient,58.08,0,0,Canceled,Joshua Baker,amandarollins@example.com,948.244.0354x26679,568634402107,2025-09-07 +Resort Hotel,0,11,2017,May,20,17,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,276.0,179.0,0,Transient,100.8,0,1,Check-Out,Harold Cunningham,patricia52@example.org,669.852.6817x5525,676383148621,2026-01-04 +Resort Hotel,0,14,2017,October,43,23,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,60.0,0,Transient,40.98,0,0,Check-Out,Patricia Conway,kristycastaneda@example.org,+1-995-391-9522x1719,2293361562977312,2025-03-26 +Resort Hotel,0,0,2017,April,14,2,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,166.0,179.0,0,Transient,82.87,0,1,Check-Out,Andrew Myers,bowmantroy@example.org,+1-946-243-6742x8680,5475670825155778,2024-12-20 +City Hotel,0,45,2017,December,48,1,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,96.28,0,2,Check-Out,Noah Robertson,keychristina@example.com,956-981-2260,376226531906250,2024-07-12 +Resort Hotel,1,12,2017,December,52,30,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,238.0,179.0,0,Transient,85.34,0,3,Canceled,Kathryn Murray,tiffany96@example.net,(598)452-2097,6011294772392323,2025-05-15 +Resort Hotel,1,279,2017,July,29,15,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,201.37,0,0,Canceled,Andrew Marshall,lawsonjoel@example.org,648.932.2573,2683082951285194,2024-04-20 +City Hotel,0,176,2017,January,2,3,0,1,2,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.11,0,2,Check-Out,Barbara Smith,haroldschwartz@example.net,851.278.0218,2228570328462175,2026-01-06 +City Hotel,0,115,2017,March,11,11,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.8,0,1,Check-Out,Hannah Hernandez,harmonbrandi@example.net,(497)352-2207x6517,2655321102134578,2025-03-22 +City Hotel,1,39,2017,August,33,13,2,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.74,0,0,Canceled,Seth Smith,qochoa@example.net,991-971-7522x95926,213175781115806,2024-06-13 +City Hotel,1,247,2017,July,27,5,2,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.76,0,1,Canceled,Tiffany Martinez,williamssusan@example.com,800.381.0622x0436,342049227722810,2025-05-16 +City Hotel,1,140,2017,July,28,9,2,5,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,134.19,0,1,Canceled,Russell Brown,cassandra09@example.net,(962)966-9758x3621,345245418725458,2024-05-25 +City Hotel,1,0,2017,April,14,5,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,1.58,0,0,Canceled,Megan Moore,kylesanchez@example.org,844.754.8917x696,4695030261096,2026-03-24 +Resort Hotel,0,1,2017,October,43,25,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,50.41,1,0,Check-Out,Suzanne Guerrero,plee@example.com,888-670-1227x34305,6011079522295409,2025-12-04 +Resort Hotel,0,31,2017,December,49,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,D,0,No Deposit,246.0,179.0,0,Transient,44.27,0,2,Check-Out,Lisa Scott,jennifer11@example.com,+1-669-789-3740,180036093935969,2025-01-24 +Resort Hotel,0,1,2017,May,20,11,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,311.0,179.0,0,Group,86.09,0,1,Check-Out,Natalie Reynolds,tranchristopher@example.org,410-591-6437,3502304485469137,2025-02-18 +City Hotel,0,27,2017,January,3,18,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,128.0,179.0,0,Transient,63.03,0,1,Check-Out,Joshua Gray,zacharyrogers@example.org,899.653.5816x6739,3504604832600377,2025-01-25 +City Hotel,1,91,2017,December,52,29,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,63.12,0,0,Canceled,Mark Keller,vrodriguez@example.net,2426938654,676371854347,2024-12-25 +City Hotel,1,3,2017,July,29,13,2,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,7.0,179.0,0,Transient,65.03,0,1,Canceled,Jennifer Vincent,mfigueroa@example.com,+1-676-351-0137x7333,6011938975703344,2025-04-23 +Resort Hotel,0,89,2017,December,51,22,2,2,2,0.0,0,FB,DEU,Groups,TA/TO,0,0,0,A,C,0,No Deposit,33.0,179.0,0,Transient,77.29,1,0,Check-Out,Christopher Wagner,elizabethbaxter@example.com,681.857.0516,4718296198480849,2024-04-12 +City Hotel,0,195,2017,May,21,21,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,138.42,0,0,Check-Out,Aaron Mckee,leachrobert@example.org,715.244.3522,30397875903753,2024-10-26 +City Hotel,1,86,2017,December,2,31,0,4,2,2.0,0,SC,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,190.68,0,2,Canceled,Michael Lewis,laurahughes@example.net,+1-723-963-0111x92956,4530646396361801,2026-01-28 +Resort Hotel,0,9,2017,August,32,9,0,3,3,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,F,2,No Deposit,239.0,179.0,0,Transient,163.99,0,2,Check-Out,Jill Lee,dallen@example.com,914-570-8862x323,6537947838429950,2026-02-10 +City Hotel,0,16,2017,August,32,5,2,1,2,2.0,0,BB,SWE,Direct,Direct,0,0,0,C,F,0,No Deposit,11.0,179.0,0,Transient,235.12,0,1,Check-Out,Katherine Davis,sarmstrong@example.org,(976)976-6336x6711,4007869729682859,2025-07-14 +City Hotel,0,20,2017,October,43,21,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,103.85,0,1,Check-Out,Cynthia Cain,lisawallace@example.net,800.613.8702,180071087862713,2024-11-12 +City Hotel,0,16,2017,July,29,20,1,4,1,0.0,0,BB,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,109.66,0,0,Check-Out,Christopher Nguyen,jennifer40@example.com,336-234-5559x6488,3556001796640266,2024-07-05 +City Hotel,0,81,2017,December,49,5,0,4,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,112.17,0,1,Check-Out,Mary Daniels,jmcintyre@example.org,(643)546-9333x78754,3581316902677617,2024-11-06 +City Hotel,0,0,2017,May,21,18,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,123.56,0,2,Check-Out,John Deleon,vscott@example.com,756-456-5226,675999388647,2026-01-09 +City Hotel,1,84,2017,July,28,8,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,216.08,0,0,No-Show,Maria Thomas,crawfordcaleb@example.net,001-860-207-7087x808,3532009082195076,2024-08-02 +Resort Hotel,0,15,2017,February,8,18,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,2,No Deposit,15.0,74.0,0,Transient,43.6,0,1,Check-Out,Michelle Adams MD,whitney25@example.org,445.740.9651,3568493067997432,2025-02-04 +Resort Hotel,0,44,2017,September,37,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,239.0,179.0,0,Transient-Party,57.59,0,2,Check-Out,Bryan Snyder,hawkinsfelicia@example.com,+1-606-320-0482x3847,676261649823,2025-05-10 +Resort Hotel,0,0,2017,January,3,17,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,101.92,1,1,Check-Out,Joshua Fisher,elizabethoconnor@example.org,+1-729-582-5783x1670,4193325996145249,2025-09-14 +Resort Hotel,0,85,2017,March,10,4,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,211.0,0,Transient-Party,38.6,0,1,Check-Out,Angela Hale,smallheather@example.net,001-570-311-6232x71853,5435601648158847,2025-08-06 +Resort Hotel,0,183,2017,July,27,4,2,5,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,211.53,1,0,Check-Out,Albert Bell,taylorkristy@example.org,670.325.7313,575070544979,2024-05-26 +City Hotel,0,154,2017,January,3,13,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient-Party,252.0,0,0,Check-Out,William Moreno,bhanson@example.net,4866718306,213195019467852,2024-09-09 +City Hotel,1,97,2017,October,41,8,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,63,Transient,124.78,0,0,Canceled,Mathew Adams,victor29@example.net,001-608-900-9153x60663,213108700063880,2024-10-22 +City Hotel,0,0,2017,April,17,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,12.0,71.0,0,Transient,44.43,0,1,Check-Out,Cynthia Lewis,huangbeverly@example.net,593.910.0846x873,4954796199756148815,2025-11-13 +City Hotel,1,83,2017,February,8,19,0,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.91,0,0,Canceled,Tina Romero,bkelly@example.com,+1-519-426-4861x1666,6011896853215049,2026-02-04 +City Hotel,0,32,2017,September,37,8,2,4,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,224.88,0,1,Check-Out,Dominique Anderson,martingabriella@example.com,(388)681-6608x8232,3532653746495040,2025-10-14 +Resort Hotel,0,150,2017,May,22,30,0,3,1,0.0,0,BB,NLD,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,223.0,0,Transient-Party,102.0,0,0,Check-Out,Maria Price,zreed@example.org,001-918-448-7994x6307,213173476688351,2025-08-04 +City Hotel,0,38,2017,February,7,13,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,31.0,179.0,0,Transient,37.19,0,0,Check-Out,Courtney Haley,curryian@example.com,+1-624-870-6910x36299,4150495140559,2026-01-23 +Resort Hotel,0,3,2017,December,51,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,65.0,0,Transient,54.98,0,0,Check-Out,Hannah Bell,terri35@example.net,001-730-628-3146x6573,2231177865448685,2024-05-17 +City Hotel,1,310,2017,September,37,16,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Contract,114.43,0,1,Canceled,Mariah Gordon,oconnorgrace@example.org,253-971-6654x9250,348605792604420,2026-02-20 +Resort Hotel,1,1,2017,July,27,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,183.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Raymond Murray,larry80@example.org,809.735.5271x800,4974989192357448,2026-03-15 +Resort Hotel,0,36,2017,April,17,23,0,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,237.0,179.0,0,Transient,252.0,0,2,Check-Out,Michael Rodriguez,melissaarias@example.net,713-851-8272,3562480858391731,2025-08-20 +City Hotel,0,35,2017,August,32,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,133.66,0,1,Check-Out,Courtney Hardy,rguzman@example.org,(593)577-3262x79609,2234339750460012,2025-07-25 +City Hotel,0,20,2017,May,18,2,0,4,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,179.0,0,1,Check-Out,Corey Brown,kimberlysmith@example.net,(693)315-3380x5267,3506484601160475,2025-10-09 +Resort Hotel,0,0,2017,January,3,14,2,4,1,0.0,0,BB,PRT,Groups,Corporate,0,0,1,A,A,1,No Deposit,174.0,331.0,0,Transient,38.65,0,1,Check-Out,Diana Scott,fromero@example.com,855-242-8481x38116,4071699602435815,2025-02-05 +City Hotel,1,161,2017,October,42,18,1,1,1,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,101.86,0,0,No-Show,Margaret Smith,freilly@example.net,965.862.8724,3533736057398645,2025-07-27 +City Hotel,1,9,2017,October,42,19,0,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,6.45,0,0,Canceled,Lynn Miller,brenda97@example.org,(701)725-8547x226,3511197284964293,2024-09-21 +City Hotel,1,279,2017,September,38,21,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,80.63,0,0,Canceled,Michelle Bullock,ehodges@example.com,(715)698-8812x16756,36504832496359,2025-08-20 +Resort Hotel,0,91,2017,December,49,6,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,104.68,0,1,Check-Out,Brian Everett,calebtyler@example.net,449.737.1050,4611476554587100,2026-01-14 +City Hotel,0,14,2017,November,44,4,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Contract,48.03,0,2,Check-Out,Darius Tapia,edwardsstephanie@example.com,7915967304,4459664013186,2025-09-21 +Resort Hotel,0,240,2017,May,21,20,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,177.0,179.0,0,Transient-Party,105.56,0,0,Check-Out,Wanda Chavez,brettbridges@example.com,(254)476-3847,5400652670899817,2026-02-26 +City Hotel,0,18,2017,May,19,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,1,No Deposit,13.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Scott Chung,mccannkeith@example.net,(571)680-5361,3513116951189107,2025-10-12 +Resort Hotel,0,0,2017,October,41,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,78.0,0,Transient,50.99,0,0,Check-Out,Danielle Randall,adamsjohnny@example.net,9455743572,3565622417644830,2025-08-12 +City Hotel,1,398,2017,March,13,27,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,258.0,179.0,63,Transient,87.86,0,0,Canceled,Mr. Anthony Ward,hollowayeric@example.org,3518632575,30081637886650,2024-12-16 +Resort Hotel,0,14,2017,August,32,5,2,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,122.67,0,3,Check-Out,Gregory Tyler,hchen@example.com,+1-717-682-2070x51233,4084812814887,2025-05-27 +City Hotel,1,0,2017,May,19,5,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,103.54,0,0,Canceled,Katelyn White,luis34@example.com,756.549.6991x87133,2711268392686308,2025-05-25 +Resort Hotel,0,2,2017,December,52,25,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,274.0,179.0,0,Transient-Party,53.65,0,0,Check-Out,Angela Johnson,james55@example.net,701-387-3390x26397,060436345445,2025-07-10 +Resort Hotel,0,155,2017,March,10,9,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,75,Transient-Party,61.82,0,0,Check-Out,James Holland,wisericky@example.com,+1-515-654-1605,4779478502061541,2025-02-19 +City Hotel,0,45,2017,October,43,24,0,3,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,63,Transient,107.52,0,0,Check-Out,Mr. Samuel Glass,gthomas@example.com,+1-326-814-7546x301,3542692028235631,2024-10-17 +City Hotel,0,3,2017,September,36,4,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,77.65,0,0,Check-Out,Michele Brady,elizabeth77@example.com,924.869.4920,3575173922504646,2025-06-26 +Resort Hotel,0,138,2017,November,44,2,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,28.0,179.0,0,Contract,99.18,0,2,Check-Out,Alex Wilson,gmoore@example.com,(410)269-1307,6526613917329312,2026-01-20 +Resort Hotel,1,284,2017,September,36,8,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,136.0,179.0,0,Transient,46.79,0,0,Canceled,Robert Smith,andrew84@example.net,001-646-762-7752x393,4231285014709014116,2025-09-06 +City Hotel,0,124,2017,July,27,4,1,5,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.74,0,1,Check-Out,Janet Shields,adamscolleen@example.com,+1-630-872-4406,376995370101047,2025-08-07 +Resort Hotel,0,3,2017,January,3,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,L,1,No Deposit,14.0,80.0,0,Transient-Party,43.68,1,1,Check-Out,Robert Heath,unovak@example.org,824-520-8076,30142204685402,2025-12-07 +City Hotel,0,19,2017,August,33,13,1,4,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,216.73,0,0,Check-Out,Kenneth Boyer,hartmanjillian@example.org,8129491289,630465847345,2024-04-19 +Resort Hotel,0,12,2017,August,35,26,2,6,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Canceled,Victoria Edwards,iford@example.com,001-750-786-4963x189,4424286651617131,2024-08-09 +Resort Hotel,0,20,2017,April,14,5,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,107.65,0,0,Check-Out,Daniel Hart,toddlisa@example.net,(602)423-3771x8453,30095684615580,2025-05-05 +Resort Hotel,0,145,2017,July,29,15,3,7,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,105.12,0,3,Check-Out,Kevin Morris,monica98@example.com,664-375-8671,2298637604285896,2025-11-18 +Resort Hotel,0,149,2017,August,33,13,3,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,252.0,1,2,Check-Out,Melissa Gonzalez DVM,michaelweber@example.org,945.873.8813x91419,6011258115155036,2024-05-03 +Resort Hotel,0,145,2017,July,30,27,0,3,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,231.43,1,0,Check-Out,Vicki Taylor,debra60@example.org,492-205-7767,6011552208684740,2024-07-07 +Resort Hotel,0,1,2017,October,41,10,0,1,2,0.0,0,BB,GBR,Complementary,Direct,0,0,0,A,A,0,No Deposit,353.0,179.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Jennifer Riley,leehenry@example.org,001-554-890-7236x18941,4127795804256005993,2024-03-30 +City Hotel,0,2,2017,May,19,4,1,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,134.65,0,1,Check-Out,Jennifer Hopkins,andrewfitzpatrick@example.org,001-830-511-7809,4191789737131101,2024-09-14 +City Hotel,0,155,2017,September,38,22,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,B,1,No Deposit,12.0,179.0,0,Transient,123.49,0,2,Check-Out,James Reynolds,uramirez@example.net,+1-443-460-3603x34684,4149101326889094,2025-10-08 +City Hotel,0,55,2017,August,31,4,1,2,2,1.0,0,SC,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,127.84,0,0,Check-Out,Evan Hill,solisbrian@example.com,(448)503-1260x462,4364135576116475,2024-07-14 +City Hotel,1,13,2017,August,32,4,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,131.89,0,1,Canceled,Janet Ramirez,bryanwu@example.com,(918)850-4582x217,213135660714046,2026-02-02 +City Hotel,1,158,2017,June,25,15,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,243.45,0,2,Canceled,Carrie Perry,teresa90@example.com,(893)887-6395,4479471554923364,2026-01-02 +City Hotel,0,52,2017,May,22,25,1,2,2,2.0,0,BB,DEU,Direct,Direct,1,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,112.4,0,3,Check-Out,Laura Wolf,ycarter@example.org,384-282-2329,676227523104,2025-06-12 +City Hotel,0,37,2017,January,3,18,0,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,152.43,0,0,Check-Out,Gina Cooper,mcompton@example.org,(778)218-4634x5793,2234640611139285,2026-02-08 +Resort Hotel,0,2,2017,July,28,12,1,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,234.66,1,0,Check-Out,Amy Gonzalez,cmartin@example.com,467-245-2536x870,30447691649633,2024-06-24 +City Hotel,1,333,2017,September,36,8,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,63,Transient,61.84,0,0,Canceled,Kimberly Beck,gregoryvictor@example.com,001-731-536-5852x95663,4543207851469564217,2026-01-20 +City Hotel,0,0,2017,August,35,24,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,F,A,0,No Deposit,16.0,179.0,0,Transient,252.0,0,0,Check-Out,Paula Richardson,katietran@example.org,241-817-7840x6155,3585771354760467,2025-05-27 +Resort Hotel,0,81,2017,August,34,19,2,5,2,1.0,0,HB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Canceled,Tiffany King,hannahpeterson@example.net,562-293-9331x2181,3544660175772852,2024-05-13 +City Hotel,0,58,2017,September,38,20,1,3,1,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,129.67,0,1,Check-Out,Brent Gates,haley60@example.net,001-239-333-5645,6575204819762345,2024-05-25 +City Hotel,0,163,2017,September,36,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,1.0,179.0,0,Transient-Party,64.21,0,1,Check-Out,Joseph Cameron,harrisdavid@example.org,(364)693-9988x5086,2240552002514095,2024-11-11 +Resort Hotel,1,101,2017,December,51,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,53.94,0,1,Canceled,Justin Payne,hharris@example.net,001-810-980-5754x19877,4729596898924264861,2025-03-13 +Resort Hotel,0,16,2017,October,42,19,2,5,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,D,2,No Deposit,34.0,179.0,0,Transient,101.85,0,0,Check-Out,Stephanie Bass,jenniferwhite@example.net,(980)437-1391x147,676275393640,2025-08-31 +City Hotel,0,152,2017,July,26,1,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,73.16,0,2,Check-Out,Jessica Hinton,david70@example.org,815-348-9056,3598620081749662,2026-02-19 +Resort Hotel,1,95,2017,July,27,3,4,10,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,127.02,0,1,Check-Out,Sarah Patrick,osims@example.org,001-785-345-0128x9893,346461442341423,2025-11-10 +City Hotel,1,21,2017,October,40,3,0,3,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,244.0,179.0,0,Transient,153.6,0,0,Canceled,Richard Roberts,fedwards@example.org,+1-667-739-4214x83862,2708975604790059,2025-10-01 +City Hotel,0,23,2017,July,30,21,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.18,0,1,Check-Out,Russell Sims Jr.,reillyshawna@example.com,213-751-5049x94479,3565735622022970,2025-05-13 +Resort Hotel,0,0,2017,November,44,3,0,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,E,2,No Deposit,240.0,179.0,0,Transient,47.94,0,1,Check-Out,Kathryn Mcmillan,ibyrd@example.net,2248981287,3534185336739717,2025-11-23 +City Hotel,0,2,2017,February,8,21,0,2,1,0.0,0,SC,,Direct,Direct,0,0,1,E,E,1,No Deposit,14.0,179.0,0,Transient,75.13,0,1,Check-Out,Matthew Miller,samuelwashington@example.com,001-298-657-8977x050,213142258220972,2024-11-26 +Resort Hotel,0,19,2017,January,4,23,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,50.8,1,2,Check-Out,Jodi Davis,ebarnes@example.org,813.832.1849x94092,30424491873259,2024-05-17 +City Hotel,0,0,2017,August,32,7,0,1,1,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,A,P,0,No Deposit,15.0,331.0,0,Transient-Party,5.59,0,0,Check-Out,Duane Thompson,ywalker@example.com,+1-583-471-2828x791,6011107740853434,2025-09-18 +Resort Hotel,0,11,2017,March,14,31,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,42.4,0,1,Check-Out,Katherine Robinson,derektate@example.org,001-882-208-6240x37178,2445712652275149,2025-12-30 +City Hotel,0,146,2017,May,22,27,1,3,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,136.77,0,1,Check-Out,Eric Gibson,pburns@example.com,001-740-626-6058,180002119596722,2025-02-18 +Resort Hotel,0,99,2017,July,31,30,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,235.0,179.0,0,Transient,184.42,0,2,Check-Out,Ashley Sims MD,rrichardson@example.org,623-514-9557x4908,3531851062476534,2025-02-12 +City Hotel,0,159,2017,July,29,13,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,138.73,0,0,Check-Out,Joseph Smith,sarahlopez@example.com,001-596-289-6695,213134746480078,2025-10-03 +City Hotel,1,414,2017,October,43,25,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.53,0,0,Canceled,Paul Walter,pdavis@example.org,512.356.0933x5909,4946325724417,2024-05-21 +City Hotel,0,100,2017,July,31,30,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,129.03,0,1,Check-Out,David Bass,myersdonna@example.com,513-366-0206x77155,3536432391873645,2024-12-12 +City Hotel,0,115,2017,March,10,9,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,24.0,179.0,0,Transient,83.96,1,1,Check-Out,Caroline Wilson,andrea45@example.org,934.788.7706,2295940796693676,2026-02-16 +Resort Hotel,0,2,2017,April,15,13,2,1,2,0.0,0,BB,,Corporate,Direct,0,0,0,C,C,1,No Deposit,15.0,179.0,0,Transient-Party,109.41,0,0,Check-Out,Leah Scott,ramosjeremy@example.com,(234)901-0369,4307580223561814667,2024-05-21 +City Hotel,0,62,2017,September,36,9,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,65.49,0,1,Check-Out,Brandon Nicholson,ykelley@example.net,548-286-1611,3567838178688083,2025-04-08 +City Hotel,1,152,2017,June,27,29,1,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,112.59,0,0,Canceled,Richard Day,hscott@example.net,+1-709-871-1807x254,4030096360857985,2024-05-18 +Resort Hotel,0,54,2017,January,2,10,1,2,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,1,No Deposit,252.0,179.0,0,Transient,252.0,0,0,Check-Out,Henry Fields,jonesderrick@example.com,+1-665-917-6695,4477746501655,2024-11-01 +City Hotel,0,219,2017,July,29,15,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,193.66,0,0,Check-Out,Sheryl Carpenter,schwartzamy@example.net,345.625.4596,38903433512960,2024-07-04 +Resort Hotel,0,0,2017,February,7,13,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,41.73,1,1,Check-Out,Johnathan Thomas,manderson@example.net,(933)356-9484,3560374260843680,2024-07-03 +City Hotel,1,0,2017,March,14,30,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,1,0,A,A,0,Non Refund,87.0,179.0,0,Transient,79.8,0,0,Canceled,Matthew Page,fshepherd@example.com,892-399-3429x9877,4324759568542213,2025-10-03 +Resort Hotel,0,0,2017,January,2,5,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,39.0,179.0,0,Transient,0.5099000000000001,1,0,Check-Out,Erica Jones,sroberts@example.org,+1-880-498-7098x240,3504925868231062,2025-05-06 +City Hotel,1,321,2017,July,27,2,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,226.78,0,1,Canceled,Natalie Gillespie,robert41@example.net,460.826.2863,30130395819963,2025-03-10 +Resort Hotel,0,170,2017,July,28,6,2,5,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,D,D,1,No Deposit,317.0,179.0,75,Transient-Party,131.98,0,0,Check-Out,Kenneth Garcia,smithmichael@example.org,439.794.8074x25322,3513953604315832,2025-08-29 +City Hotel,1,38,2017,June,23,1,2,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,159.46,0,1,Canceled,Madison Garner,sandovalkevin@example.net,(708)952-6629,4007866640624564685,2024-10-03 +Resort Hotel,0,95,2017,July,31,31,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,132.0,179.0,0,Transient-Party,75.55,0,1,Check-Out,Thomas Raymond,paula67@example.net,+1-285-993-4836x1543,4171872046807027,2025-01-10 +City Hotel,0,104,2017,May,18,1,0,3,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,86.99,0,1,Check-Out,Jessica Freeman,matthew27@example.com,(717)679-4929x3399,4124136065347184,2024-04-10 +Resort Hotel,1,8,2017,August,34,23,0,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,Zachary Estes,christinakane@example.com,658-292-5016,3592265091885977,2026-01-05 +Resort Hotel,0,88,2017,June,26,22,1,5,3,1.0,0,BB,NOR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,177.22,1,2,Check-Out,Jose Harmon,vthompson@example.net,822-416-9434x3192,4086955783827912,2024-12-10 +Resort Hotel,0,34,2017,March,12,17,2,5,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,206.63,0,1,Check-Out,Lindsey Terry,taylorcombs@example.net,639.467.0239x95759,3566326832567712,2024-06-18 +Resort Hotel,0,4,2017,August,35,29,2,3,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,18.0,179.0,0,Transient,219.03,1,0,Check-Out,Alexis Dixon,jessicahernandez@example.org,(640)831-9427x4330,3585851686121222,2025-02-01 +City Hotel,0,41,2017,November,44,2,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,103.94,0,2,Check-Out,Tony Barron,terrellkristin@example.com,247-202-7118x6341,38803033495683,2025-02-18 +City Hotel,1,281,2017,October,42,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,34.0,179.0,0,Transient,77.74,0,0,Canceled,Jamie Henderson,margaretmurphy@example.net,(634)679-8384x76946,341227516680599,2025-05-17 +City Hotel,1,169,2017,July,28,12,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,136.76,0,1,No-Show,Kimberly Pratt,kennethdixon@example.net,(322)850-5315x6371,3584506455338685,2026-01-03 +City Hotel,0,43,2017,May,20,13,2,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,125.51,0,0,Check-Out,Kimberly Jones,ynorton@example.com,+1-381-731-3917x239,3574753419042118,2025-04-27 +Resort Hotel,1,232,2017,May,20,17,0,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,242.0,179.0,0,Transient,79.91,0,0,Canceled,Jason Jensen,smithpatricia@example.net,912-630-5361x135,4230674108280690,2024-07-15 +Resort Hotel,0,259,2017,May,19,9,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,62.57,1,1,Check-Out,Nicholas Andrews,annsanchez@example.com,931-878-2843x441,675972002397,2024-08-20 +City Hotel,0,14,2017,July,27,4,0,1,2,0.0,0,BB,USA,Online TA,Direct,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.84,0,1,Canceled,Brooke Love,fbrooks@example.net,+1-880-672-6183x11016,6011919938409641,2026-02-20 +City Hotel,1,324,2017,March,13,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,110.14,0,0,Canceled,Jesse Johnson,tbarber@example.org,+1-637-333-1811x9957,36777531717933,2026-01-11 +Resort Hotel,0,0,2017,August,34,22,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,13.0,179.0,0,Transient,79.92,0,0,Check-Out,Robin Coleman,xsmith@example.org,(690)744-0880x30694,5435246522888687,2025-01-26 +Resort Hotel,0,248,2017,October,40,2,2,2,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,D,G,0,No Deposit,268.0,179.0,0,Transient,196.9,0,0,Check-Out,Heather Mora,trogers@example.com,965.488.6851x294,4332627359485,2025-07-08 +City Hotel,1,245,2017,July,28,8,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,12.0,179.0,0,Transient,177.57,0,2,Canceled,Tammy Quinn,wgonzalez@example.com,+1-365-696-8182x87686,4625997554068,2026-03-05 +City Hotel,0,44,2017,August,32,11,2,3,2,1.0,0,BB,RUS,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,121.72,0,0,Check-Out,Kyle Ramos,angelacook@example.org,001-231-833-0288x932,578430643663,2025-06-03 +City Hotel,0,221,2017,July,28,14,4,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,240.0,179.0,0,Contract,133.21,0,1,Check-Out,Lindsay Browning,terrilong@example.org,(428)552-4448x2641,562095928338,2024-07-10 +City Hotel,0,91,2017,May,21,26,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,26.0,179.0,0,Group,131.86,0,2,Check-Out,John Holt DDS,erin84@example.com,7919004465,576175008696,2026-01-29 +City Hotel,0,97,2017,July,31,28,0,3,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,1,No Deposit,11.0,179.0,0,Transient-Party,201.79,1,1,Check-Out,Alexis Barrera,jenkinsjames@example.net,001-825-620-9451x70007,213197166460839,2024-05-21 +City Hotel,0,90,2017,July,30,24,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,151.07,0,1,Check-Out,Nicholas Jenkins,amanda16@example.org,8172978348,30401729089171,2025-05-06 +City Hotel,0,6,2017,February,8,23,1,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,94.5,0,1,Check-Out,Matthew Wright,nelsonshane@example.net,001-218-789-9412x260,561369862157,2026-01-26 +City Hotel,0,2,2017,June,23,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,13.0,45.0,0,Transient,146.32,0,1,Check-Out,Ryan Walker,birdheather@example.net,564.258.8806x11653,3528106314992837,2025-10-12 +Resort Hotel,0,2,2017,December,51,22,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,D,0,No Deposit,16.0,179.0,0,Transient,4.32,0,1,Check-Out,John Campbell,robertward@example.com,(595)910-5488,4659580948958337062,2024-06-16 +Resort Hotel,0,1,2017,May,19,9,0,2,1,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,93.75,0,1,Check-Out,Matthew Thompson,kevindavis@example.org,320.431.9660,3571482736956866,2025-06-16 +City Hotel,0,30,2017,September,36,2,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,135.9,0,1,Check-Out,Mr. Robert Cole MD,daniellove@example.org,(380)394-7686,3577379004899212,2026-01-30 +City Hotel,1,0,2017,August,31,5,1,2,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,18.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Canceled,Kimberly Ayers,michelle99@example.net,(670)876-7725x138,4716307842817161,2025-07-31 +City Hotel,0,18,2017,August,33,10,0,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,45.0,0,Transient-Party,100.39,0,0,Check-Out,James Manning,paulspears@example.com,341-435-4059x58152,6543589941029210,2025-11-08 +Resort Hotel,0,106,2017,October,42,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,295.0,179.0,0,Transient-Party,79.61,0,0,Check-Out,Brittney Dudley,gutierrezsamuel@example.com,001-216-974-4504x00256,4010729968139177300,2024-05-05 +City Hotel,1,281,2017,August,32,10,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,75,Transient-Party,64.47,0,0,Canceled,Teresa Taylor MD,harrismallory@example.com,801.815.2957x391,213132622182735,2024-05-27 +Resort Hotel,1,262,2017,July,30,23,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,244.0,179.0,0,Transient,80.66,0,0,Canceled,Gary Yates,nchambers@example.com,(626)275-9487,348119650755142,2026-02-24 +Resort Hotel,0,159,2017,July,30,25,4,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,248.36,0,0,Check-Out,Lauren Lindsey,petersjanice@example.net,+1-585-716-7728x58065,2720282215088450,2025-10-10 +City Hotel,0,202,2017,June,23,2,2,4,2,0.0,0,HB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,228.0,179.0,0,Transient,148.46,0,1,Check-Out,Stacy Bird,derek67@example.net,(843)244-2815,4253421608770982,2024-10-04 +Resort Hotel,1,20,2017,October,42,15,2,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,95.62,0,0,Canceled,Dr. Terri Chapman,mcmahonalan@example.org,(331)848-8890x63992,6574052078637885,2024-09-23 +City Hotel,0,35,2017,May,21,22,2,1,3,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,134.74,0,1,Check-Out,Felicia Walton,lsmith@example.org,729-750-7476x7469,348557428908685,2025-05-21 +City Hotel,0,117,2017,July,31,29,2,5,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,91.45,0,2,Check-Out,Jennifer Sherman,morriselizabeth@example.org,(715)582-3009,6539719020938470,2026-03-15 +City Hotel,1,57,2017,April,18,30,2,1,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,162.52,0,0,Canceled,Joseph Lewis,pereztami@example.com,+1-249-779-1418,4451154070687976,2024-04-11 +City Hotel,0,62,2017,August,32,5,0,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.48,0,2,Check-Out,Amanda George,carol00@example.net,205.931.0554x05013,180044463416040,2025-12-22 +City Hotel,0,151,2017,December,49,5,2,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,17.0,179.0,0,Transient,106.65,0,2,Check-Out,Andrea Neal,christopherbailey@example.org,+1-918-945-6595x475,6582159217053955,2024-04-07 +Resort Hotel,0,0,2017,March,13,25,1,4,2,0.0,0,FB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,40.86,0,0,Check-Out,Molly Butler,kristinprince@example.com,994.774.9301x964,676337368853,2025-08-15 +City Hotel,0,59,2017,October,41,8,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,110.92,0,1,Check-Out,Matthew Miller,miguelbailey@example.com,404-674-0732x456,6529211285567683,2024-07-15 +Resort Hotel,0,33,2017,September,35,2,1,2,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,173.16,0,3,Check-Out,Courtney Parker,tsnyder@example.org,001-331-488-3421x507,4880649015638456,2025-08-17 +City Hotel,1,162,2017,June,24,12,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,112.46,0,1,Canceled,Kristine Vasquez,monica55@example.net,633-628-9936x584,503805191874,2025-11-28 +Resort Hotel,1,25,2017,January,2,10,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,112.78,0,1,Canceled,Jordan Little,floresgary@example.org,001-755-226-6848x9172,4977360403778243,2025-08-29 +Resort Hotel,1,45,2017,August,34,23,0,2,3,1.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,Non Refund,13.0,179.0,0,Transient,129.21,0,0,No-Show,Dominique Newton,christopher76@example.net,215.593.6249,2473597298512467,2025-05-30 +Resort Hotel,0,189,2017,August,35,24,2,5,2,2.0,0,BB,IRL,Direct,Direct,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,252.0,1,3,Check-Out,Brian Gonzales DDS,joseph44@example.com,001-351-243-2603x92870,503862779199,2026-01-21 +Resort Hotel,1,147,2017,May,21,25,4,5,2,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,E,E,1,No Deposit,175.0,179.0,0,Transient,91.14,0,1,No-Show,Joseph Stewart,briana03@example.com,001-270-676-6325x384,3510982073061653,2025-03-29 +Resort Hotel,1,38,2017,November,47,19,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,0,Transient,73.98,0,0,Canceled,Cynthia Harris,xwright@example.org,001-713-208-2859x2894,180000316628124,2025-02-16 +Resort Hotel,0,10,2017,April,15,7,2,0,2,0.0,0,BB,IRL,Undefined,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,37.55,0,2,Check-Out,Richard Ramsey,athomas@example.com,+1-594-639-0917x1624,213186794081331,2025-12-21 +City Hotel,1,355,2017,July,29,17,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,0,Transient,95.1,0,0,Canceled,Luis Garcia,aliciashaffer@example.net,001-947-646-2177x30650,30562927011463,2024-11-19 +City Hotel,0,103,2017,May,20,17,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,226.92,0,1,Check-Out,Lynn Chan,dmartinez@example.net,712.344.8149x0105,4196964340159873,2025-04-11 +Resort Hotel,0,26,2017,December,50,16,2,5,2,0.0,0,FB,FRA,Offline TA/TO,TA/TO,0,0,0,A,H,0,No Deposit,12.0,179.0,0,Contract,104.87,0,2,Check-Out,Tracey White,jenniferfitzgerald@example.org,8942218328,213193610490696,2025-09-05 +City Hotel,0,113,2017,June,24,8,1,1,2,0.0,0,BB,NLD,Complementary,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,114.82,0,3,Check-Out,Lawrence Martin,simpsonerin@example.net,928-571-9009,340931019574511,2025-12-17 +City Hotel,0,0,2017,August,32,6,2,2,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,132.87,0,1,Check-Out,Amy Zamora,darrellhall@example.net,866-756-3679x4460,676150656459,2025-07-24 +City Hotel,0,15,2017,February,7,12,2,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,35.91,0,0,Check-Out,Ryan Watson,jonesdarren@example.org,804.296.7724x23660,4303630071695050,2025-12-15 +Resort Hotel,0,58,2017,October,40,3,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,51.95,0,0,Check-Out,Jessica Brown,lwilliams@example.org,001-694-379-8266x961,3541245333472398,2025-09-09 +Resort Hotel,0,34,2017,April,17,23,0,3,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,252.0,1,0,Check-Out,Lisa Dixon,sanderssusan@example.com,(897)256-7726x4472,4545928066392990313,2024-06-16 +Resort Hotel,0,135,2017,March,13,31,1,4,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,179.0,0,Transient-Party,59.67,0,1,Check-Out,Brian Adams,tonybrown@example.com,001-794-786-8969,3544611198894546,2026-02-08 +City Hotel,0,150,2017,August,32,4,1,3,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,208.78,0,2,Check-Out,Leonard Pham,erica59@example.org,(708)390-0246,377856729374231,2025-06-21 +Resort Hotel,1,203,2017,May,21,23,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,132.24,0,2,Canceled,Steve Alvarez,jenniferdavis@example.com,544.299.8071x5936,345716285399767,2025-12-17 +Resort Hotel,0,0,2017,March,12,20,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,41.84,0,0,Check-Out,Jose Franklin,smithsteve@example.net,963.795.4151x357,4643909591062572030,2025-06-23 +City Hotel,1,16,2017,August,33,13,1,3,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.3,0,0,Canceled,Vanessa Hernandez,hineschristopher@example.org,+1-694-667-1778x2410,4374324569863694145,2024-11-27 +City Hotel,0,59,2017,June,24,9,0,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,54.99,0,0,Check-Out,Brian Peters,michael26@example.org,(465)419-2454,3591476670341826,2025-03-25 +City Hotel,0,15,2017,May,22,26,1,2,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,131.8,0,0,Check-Out,Amanda Johnson,rebecca13@example.com,(821)220-9004x91033,30067344597912,2025-09-07 +Resort Hotel,0,105,2017,March,11,12,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,162.0,179.0,0,Transient,76.12,0,0,Check-Out,Janice Parrish,carlowens@example.org,605.611.9523x33032,676326053268,2025-04-28 +City Hotel,0,151,2017,June,26,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,70.0,179.0,0,Transient,134.44,0,0,Check-Out,Kara Phillips,edwardstimothy@example.org,(658)606-1720,4921306186666231148,2024-05-24 +City Hotel,1,34,2017,December,2,30,2,2,2,0.0,0,BB,USA,Direct,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,114.64,0,1,Canceled,Karen Mann,thomasgarcia@example.net,9698979847,3533649809021706,2026-01-18 +Resort Hotel,1,34,2017,November,48,27,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,42.72,0,1,Canceled,Diana Houston,michelle92@example.org,+1-240-715-9710,5224204665134083,2025-09-09 +Resort Hotel,0,7,2017,February,9,27,1,2,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,B,0,No Deposit,32.0,221.0,0,Transient-Party,37.72,0,0,Check-Out,Elijah Miller,mjones@example.com,382.691.9002x057,676309557335,2025-12-19 +City Hotel,0,28,2017,June,23,6,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,110.91,0,0,Check-Out,Dr. Shannon Mahoney,colegina@example.net,+1-913-709-8047x3471,3500415217977478,2025-11-30 +City Hotel,0,67,2017,November,45,9,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,212.26,1,2,Check-Out,Kevin Perry,rmichael@example.net,637-606-9340,5460622079977073,2025-05-29 +City Hotel,0,11,2017,November,45,9,0,3,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,E,0,No Deposit,14.0,179.0,0,Transient-Party,87.86,0,0,Check-Out,Elizabeth Harvey MD,simskevin@example.org,4116516289,213150280765161,2024-03-27 +Resort Hotel,0,1,2017,November,45,9,0,3,2,0.0,0,BB,,Corporate,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,75.34,1,0,Check-Out,Corey Vaughn,ann89@example.org,001-426-573-1710x8913,4317239371754,2025-04-24 +City Hotel,0,61,2017,March,10,10,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,247.8,0,3,Check-Out,David Jenkins,snydercynthia@example.net,999.258.6087x125,4707651964358848,2025-01-09 +City Hotel,0,3,2017,December,51,17,0,4,3,0.0,0,BB,,Direct,Direct,1,0,0,E,E,1,No Deposit,16.0,179.0,0,Group,111.52,1,2,Check-Out,James Smith,whiteshawn@example.com,001-393-325-7095x4433,3568606979884113,2026-02-06 +Resort Hotel,0,48,2017,January,2,4,1,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,49.17,0,2,Check-Out,Edward Clark,ricky88@example.org,378-850-3778x659,4247201080354667281,2025-03-15 +City Hotel,0,0,2017,August,31,3,1,0,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Contract,0.5099000000000001,0,1,Check-Out,Robert Boone,holtmark@example.org,(922)420-1556,4296196345995,2024-06-01 +Resort Hotel,0,10,2017,February,8,22,1,1,2,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,181.0,248.0,0,Transient,42.9,0,0,Check-Out,William Miller,nduke@example.net,896.981.3230x105,4905324764196,2024-09-02 +City Hotel,0,0,2017,April,16,19,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,255.0,0,Transient,5.73,0,0,Check-Out,James Murray,crystalhudson@example.com,788-307-7596x90765,4583978563303,2025-07-20 +City Hotel,0,4,2017,October,41,10,0,2,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,156.0,179.0,0,Transient,174.03,0,0,Check-Out,Marilyn Austin,micheleharvey@example.com,(813)756-4610x1030,4115215165754126,2025-07-26 +Resort Hotel,0,1,2017,May,19,8,2,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,D,D,1,No Deposit,243.0,179.0,0,Transient,46.73,1,1,Check-Out,Lori Gregory,charles82@example.org,863.512.5075x85024,589390905943,2025-05-20 +Resort Hotel,0,2,2017,April,16,17,1,4,2,0.0,0,BB,PRT,Aviation,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,186.08,0,3,Check-Out,Mr. Rodney Clark,gtaylor@example.org,+1-790-942-0374x0648,377542535820803,2024-11-16 +City Hotel,0,163,2017,April,14,1,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.75,0,0,Check-Out,Robert Hernandez,danamcguire@example.org,672.298.7006x594,30466431426839,2025-03-30 +City Hotel,0,44,2017,May,18,3,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,167.47,0,1,Check-Out,Desiree Zuniga,vanessa77@example.net,930-685-6709,4171825243970,2025-01-29 +City Hotel,0,0,2017,April,18,30,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient,104.83,0,1,Check-Out,Kevin Cohen,dharrison@example.org,(830)515-2102,30487025499925,2025-05-21 +Resort Hotel,1,35,2017,February,7,12,1,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient,50.09,0,0,Canceled,Gregory Johnson,eflores@example.net,209.788.7591x00598,4229237717013,2025-09-29 +Resort Hotel,0,135,2017,March,10,4,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,222.0,0,Transient-Party,74.4,0,0,Check-Out,Derek Richmond,nmolina@example.com,001-935-796-5693x5036,4873691197456850,2025-08-03 +Resort Hotel,0,80,2017,December,49,5,0,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,2,No Deposit,305.0,179.0,0,Transient-Party,85.73,0,0,Check-Out,Angela Meyer,carrollkristen@example.net,001-617-237-1358x59616,3572457209802226,2024-09-07 +City Hotel,0,2,2017,October,41,11,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,101.66,0,1,Check-Out,Stephen Hurley,chavezjohn@example.com,618-239-0184,180050184989595,2024-06-05 +Resort Hotel,0,20,2017,January,4,21,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,104.01,0,1,Check-Out,Lindsay Scott,lfowler@example.net,570-576-0747x83370,4419665121073974,2024-07-18 +City Hotel,1,36,2017,July,29,19,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,238.34,0,2,Canceled,Helen Chan,webbwilliam@example.net,+1-538-208-4564x8931,30224058944109,2025-09-06 +City Hotel,1,165,2017,September,39,24,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,8.0,179.0,0,Transient,107.61,0,0,Canceled,Thomas Miller,ubell@example.org,294-243-1050,30232080380903,2026-03-18 +City Hotel,0,40,2017,April,17,26,1,2,2,0.0,0,HB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,122.65,0,2,Check-Out,Luke Aguilar,william09@example.org,(246)619-9073x805,3513366810464973,2025-07-13 +City Hotel,1,87,2017,December,49,5,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,12.0,179.0,0,Transient,64.22,0,1,Canceled,Jessica Mckay,espinozaterri@example.com,437-940-2220x53126,4261502496237166,2026-01-04 +City Hotel,1,45,2017,September,37,12,0,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,109.19,0,0,Canceled,Diana Mullins,robert42@example.com,4304076381,2233916100041161,2024-06-30 +Resort Hotel,1,372,2017,July,30,27,1,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,222.57,0,0,Canceled,Deborah Kennedy,dawnmason@example.org,333.615.9043x761,30350729798390,2024-10-21 +Resort Hotel,0,20,2017,August,33,11,2,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,138.44,1,1,Check-Out,Leonard Garcia,hernandezangela@example.org,(676)950-5761x220,340583606885097,2024-06-01 +City Hotel,0,167,2017,September,36,8,0,2,2,0.0,0,HB,FRA,Offline TA/TO,Direct,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,178.29,0,0,Check-Out,Maria Cox,johnstonbrenda@example.org,8165741520,3523660318738666,2024-05-28 +City Hotel,0,1,2017,September,38,19,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Transient-Party,125.42,0,1,Check-Out,Anna Reyes,sward@example.com,(330)855-7636x4679,630403762200,2024-09-21 +City Hotel,0,0,2017,January,2,5,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,77.02,0,0,Check-Out,Keith Navarro,qholt@example.org,+1-385-509-5513x79966,562813192662,2024-09-26 +City Hotel,0,0,2017,May,19,4,2,0,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,41.76,0,0,Check-Out,David Clements,jared47@example.com,528.281.8413x5584,3579602003576897,2024-06-02 +City Hotel,0,112,2017,November,45,10,1,2,2,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,87.61,0,1,Check-Out,Evan Barajas,mjimenez@example.com,855-341-4236x1794,4507560654687931,2024-04-06 +City Hotel,0,45,2017,September,38,20,2,1,2,0.0,0,HB,USA,Groups,Direct,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,105.86,0,2,Check-Out,Juan Ward,cynthia75@example.net,519-349-0680x508,6011459238727053,2025-06-18 +City Hotel,0,0,2017,October,40,5,0,1,1,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,3.9,0,0,Check-Out,Barbara Haas,victoriaholmes@example.com,(338)658-5613x6270,30189338443604,2024-09-20 +Resort Hotel,0,30,2017,May,18,5,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,2,No Deposit,244.0,179.0,0,Transient,106.03,0,1,Check-Out,Lisa Erickson,ljackson@example.com,+1-646-676-2379x015,6011912419950373,2025-03-11 +City Hotel,0,35,2017,September,36,8,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,1.0,179.0,0,Transient-Party,104.56,0,1,Check-Out,Natalie Taylor,mariasmith@example.com,(524)828-7051,4083777285396235,2025-04-04 +Resort Hotel,0,141,2017,May,21,20,1,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,1,No Deposit,313.0,179.0,0,Transient-Party,33.51,0,0,Check-Out,Susan Lewis,joshua17@example.org,001-317-227-1761,379689259326539,2024-09-06 +City Hotel,0,158,2017,June,23,3,1,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,127.63,0,3,Check-Out,Jessica Pitts,christina18@example.com,(482)608-0154x944,4345421235921704324,2025-09-25 +City Hotel,1,56,2017,October,42,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,14.0,179.0,0,Transient,71.82,0,0,Canceled,Ashley Lewis,elizabeth54@example.com,001-848-291-2871x472,676313585678,2025-03-24 +Resort Hotel,0,245,2017,October,40,5,2,2,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient-Party,55.63,0,0,Check-Out,Mary Jackson,millerjeanne@example.net,(621)303-6620x773,30318740313200,2025-02-10 +Resort Hotel,1,152,2017,June,24,12,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,142.53,0,1,Check-Out,Jason Duncan,ericaowen@example.net,+1-289-887-9593,4806697906432,2024-07-04 +City Hotel,1,196,2017,August,35,26,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,178.6,0,0,Canceled,James Fleming MD,erikarivera@example.com,225-315-3956,213185554597205,2024-05-12 +City Hotel,0,1,2017,May,20,19,1,3,2,0.0,0,SC,AUT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,9.0,179.0,0,Transient,96.62,0,1,Check-Out,Manuel Miller,brent58@example.com,411-953-2105,180066068530669,2024-04-23 +City Hotel,0,101,2017,April,15,10,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,61.75,0,0,Check-Out,Louis Sexton,stacey75@example.org,295.368.2254,2443647970120654,2024-06-27 +Resort Hotel,0,102,2017,December,49,2,2,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,304.0,179.0,75,Transient-Party,72.31,0,0,Check-Out,Darryl Bird,tracymartinez@example.net,+1-832-458-6089x8930,3522031445703646,2024-07-12 +Resort Hotel,0,10,2017,May,21,23,0,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,215.02,0,1,Check-Out,Bryce Dennis,xgill@example.com,+1-951-672-4192x356,3523675327803806,2025-07-22 +Resort Hotel,1,12,2017,July,28,9,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,241.0,179.0,0,Transient,247.2,0,0,Canceled,Bradley Brooks,anthonyward@example.org,001-993-393-0981,4075899531709,2025-05-10 +City Hotel,1,19,2017,January,4,20,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,48.08,0,1,Canceled,Christopher Webster,thomasbrady@example.net,+1-679-217-3718x293,3540593754835408,2025-05-09 +Resort Hotel,0,248,2017,June,26,26,3,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,104.0,1,0,Check-Out,Michelle Higgins,william59@example.net,307.665.2513,4910802262050461,2024-10-28 +Resort Hotel,1,390,2017,November,47,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,20,Transient-Party,106.48,0,0,Canceled,Miss Madeline Wise,kevin66@example.net,231.380.3316,213109021496197,2026-02-13 +City Hotel,1,156,2017,August,33,15,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,110.59,0,1,Canceled,Yolanda Holt,kimberly52@example.org,001-955-221-3224x10340,3565859892880832,2024-11-10 +City Hotel,0,1,2017,January,2,3,1,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,126.24,0,3,Check-Out,Ashley Leon,rachel41@example.org,(498)273-8002x8664,4210425833933168,2025-02-21 +Resort Hotel,0,100,2017,November,45,10,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,112.27,1,0,Check-Out,Ann Wall,anita68@example.net,001-567-261-4758x4831,4119575662738633,2025-08-01 +City Hotel,0,17,2017,November,47,19,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,235.0,179.0,0,Transient,82.87,0,1,Check-Out,Kim Bishop,christinephillips@example.com,001-338-788-2971x4166,6524194631371163,2025-05-11 +City Hotel,0,1,2017,September,37,10,0,3,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,0,No Deposit,13.0,179.0,0,Transient,99.58,0,0,Check-Out,Joshua Anderson,williamsryan@example.com,(627)371-5242,4621586840233802,2025-09-05 +Resort Hotel,0,200,2017,October,43,24,0,5,2,0.0,0,HB,RUS,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,81.42,1,0,Check-Out,Joshua Hess,elizabeth73@example.net,695.796.9656x39569,4256893536898688,2024-05-06 +Resort Hotel,0,45,2017,July,27,4,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,139.18,0,1,Check-Out,Cory Anderson,jrobinson@example.com,445.678.5869x59894,4925148476437372,2025-05-09 +City Hotel,0,0,2017,November,44,4,0,1,1,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,1.45,0,0,Check-Out,Daniel Reynolds DDS,patrickmanning@example.com,+1-218-703-3127x95057,2704965029876702,2025-01-28 +Resort Hotel,0,45,2017,March,13,28,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,127.34,0,1,Check-Out,Melissa Lutz,rwise@example.net,(835)727-3265x93339,343628729438147,2025-03-23 +Resort Hotel,1,38,2017,December,48,1,1,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,305.0,179.0,0,Transient,84.98,0,1,Canceled,Maria Humphrey,cward@example.net,239-777-9129x77951,6511911281907276,2025-04-30 +City Hotel,1,90,2017,August,35,28,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,16.0,179.0,0,Transient,106.02,0,0,No-Show,Mitchell Robinson,danielbryan@example.org,588.329.1096x9093,4181127526084360649,2025-06-19 +City Hotel,1,44,2017,April,18,30,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,103.18,0,0,Canceled,Charles Moore,kimberly37@example.com,001-524-904-9205,2564126177815427,2026-03-10 +City Hotel,0,7,2017,October,41,10,0,1,1,0.0,0,BB,FRA,Corporate,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,77.86,0,1,Check-Out,Jesse Harrell,annette90@example.com,5374811698,4834156136516978733,2024-08-03 +Resort Hotel,0,1,2017,August,33,14,2,5,3,0.0,0,BB,,Undefined,Corporate,0,0,0,D,E,1,No Deposit,13.0,179.0,0,Transient,134.66,0,1,Check-Out,Jenna Reese,carol21@example.org,467.887.3510,348359075169152,2024-07-24 +City Hotel,0,48,2017,October,41,13,0,1,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,E,1,No Deposit,12.0,179.0,0,Transient,103.09,0,2,Check-Out,David Carter,curtischeryl@example.com,338.499.1108x293,3585567495104809,2025-01-09 +Resort Hotel,1,1,2017,July,28,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,16.0,179.0,0,Transient-Party,84.05,0,2,Canceled,Dr. Paula Pugh DDS,cindyclark@example.org,6876372031,3566603987318103,2025-05-31 +Resort Hotel,0,0,2017,November,46,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,208.0,78.0,0,Transient,50.69,1,1,Check-Out,Levi Ramirez,jerome76@example.net,001-478-932-4023x5386,2439224913614106,2024-06-10 +City Hotel,1,97,2017,June,26,23,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.9,0,1,Canceled,Michael Ramos,markreed@example.net,001-736-797-8129x895,6011805008950772,2025-11-18 +City Hotel,0,99,2017,September,36,6,2,0,2,0.0,0,SC,ESP,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Group,214.21,0,0,Check-Out,Don Miller,darmstrong@example.com,+1-247-324-0948,2517475281834776,2025-09-19 +City Hotel,0,16,2017,April,14,5,0,3,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,132.92,0,1,Check-Out,Kevin Contreras,owebb@example.org,286-239-8787,4400209242010762,2025-02-05 +City Hotel,0,1,2017,April,17,27,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,60.0,0,Transient,43.02,1,1,Check-Out,Michael White,vmorales@example.org,6899754824,2272560190318352,2025-07-09 +Resort Hotel,0,46,2017,November,47,24,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,105.06,0,0,Check-Out,Christopher Wright,annemorris@example.org,876.598.9595,4880164897960085,2025-06-08 +Resort Hotel,1,163,2017,March,14,31,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Refundable,11.0,222.0,0,Transient-Party,77.81,0,0,Canceled,Edwin Adams,jpeterson@example.org,+1-268-817-9710x201,5343013698472915,2025-04-29 +City Hotel,0,348,2017,September,38,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,63,Transient-Party,62.02,1,0,Check-Out,Crystal Acosta,barberryan@example.org,762-623-5593,4883408090574,2025-01-14 +Resort Hotel,1,148,2017,July,29,20,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,103.84,0,0,Canceled,Trevor Wood,greerbrandy@example.org,+1-490-847-8395x10859,3514241468618346,2024-10-22 +City Hotel,0,109,2017,January,2,1,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,72.58,0,2,Check-Out,Nicole Pearson,lmiller@example.com,+1-344-279-2507x86490,213117352899913,2024-08-27 +Resort Hotel,1,15,2017,August,32,12,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,235.0,179.0,0,Transient,170.0,0,0,No-Show,Karen Weeks,sarah12@example.net,264-501-5408x37019,4392446339597349,2024-08-02 +City Hotel,1,396,2017,January,5,28,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.26,0,2,Canceled,Chad Stephens,robert76@example.com,340-412-5517x2024,30434659952902,2024-05-30 +Resort Hotel,1,46,2017,October,41,10,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,312.0,179.0,0,Transient-Party,46.61,0,0,Canceled,Frank Hayes,heathernorris@example.org,001-327-972-8671,502067793690,2025-09-19 +City Hotel,0,346,2017,July,27,8,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,92.33,0,0,Check-Out,Jessica Reed,jackbrooks@example.net,3782215571,4097273916376899,2026-03-27 +City Hotel,0,3,2017,January,2,6,1,1,3,0.0,0,BB,,Groups,Corporate,0,0,0,A,C,0,No Deposit,29.0,179.0,0,Transient-Party,95.21,0,0,Check-Out,Ashley Patterson,cgriffin@example.org,(749)528-3724x4137,675947020680,2024-12-06 +City Hotel,0,31,2017,May,19,4,2,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,130.1,0,1,Check-Out,Alexander Lee,igraves@example.net,804.764.1435x413,4910413530562657,2025-07-12 +City Hotel,0,7,2017,January,4,25,0,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,78.57,0,0,Check-Out,Jill Martinez,james60@example.com,326-661-2313x71625,3527517007045322,2026-03-22 +City Hotel,0,106,2017,August,33,15,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,8.0,179.0,0,Transient,91.91,0,1,Check-Out,Dominique Howe,andersonjuan@example.com,610.360.5446,3586005845578215,2024-11-06 +Resort Hotel,0,2,2017,August,32,12,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,1,1,A,B,1,No Deposit,12.0,179.0,0,Transient-Party,3.03,1,0,Check-Out,Joseph Silva,jimmyfoster@example.com,783-764-7124,4868346498822479114,2025-01-20 +City Hotel,1,240,2017,May,19,11,0,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,128.91,0,0,No-Show,Bruce Jackson,lori75@example.com,653.928.7926x040,4041096734070730436,2025-12-22 +City Hotel,0,33,2017,March,12,17,0,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Transient,95.86,0,0,Check-Out,Nicole Spence,ronaldclements@example.org,(658)407-1105,2290812632101260,2024-08-06 +City Hotel,0,4,2017,October,41,11,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Contract,82.42,0,1,Check-Out,Frank Coleman,egonzalez@example.org,701.629.0639x15689,30301289534386,2025-10-26 +City Hotel,1,162,2017,June,24,13,0,1,3,1.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,12.0,218.0,0,Transient,86.1,0,0,Canceled,Anthony Jarvis,renee41@example.net,001-790-954-3597x7642,180040768016188,2025-05-14 +City Hotel,0,20,2017,July,28,9,1,3,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,169.4,0,2,Check-Out,Katie Smith,comptonglenn@example.com,682.680.7058,4294733364820434,2024-05-03 +City Hotel,0,12,2017,December,51,22,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.21,0,1,Check-Out,Jonathan Smith,james12@example.org,001-247-604-1317,2312815728046376,2025-03-30 +City Hotel,0,19,2017,February,8,18,0,2,2,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.8,0,2,Check-Out,Stephanie Jackson,gordonpaul@example.org,837.757.2382x405,2707484567798564,2025-08-11 +Resort Hotel,0,52,2017,September,36,9,2,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,E,E,1,No Deposit,2.0,179.0,0,Transient-Party,115.47,0,0,Check-Out,Ronald Kelly,mortiz@example.com,691.220.6979x95280,4088625570913955,2024-05-20 +City Hotel,1,97,2017,April,14,4,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,9.0,179.0,0,Transient,63.66,1,0,Canceled,April Warner,elizabethsanchez@example.net,765.920.1863x1783,340128513427797,2025-05-27 +Resort Hotel,0,4,2017,January,3,13,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,E,E,0,No Deposit,253.0,179.0,0,Transient,89.92,0,3,Check-Out,Pamela Gonzalez,ijohnson@example.com,+1-704-580-9141x765,4965822340852368766,2024-11-22 +City Hotel,0,219,2017,September,36,5,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Contract,127.37,0,0,Check-Out,David Cunningham,madelinestrong@example.com,226.885.8877,213173462388230,2026-03-20 +Resort Hotel,0,3,2017,October,41,11,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,125.49,0,0,Check-Out,Nicholas Burns,brooksamber@example.com,001-673-922-9940x646,30288487634649,2025-09-18 +Resort Hotel,0,102,2017,August,34,25,1,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,320.0,179.0,0,Transient,63.43,0,0,Check-Out,Bianca Singleton,howardnicholas@example.com,+1-960-656-0793,4710792680589,2024-05-02 +City Hotel,1,408,2017,September,37,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,100.34,0,0,Canceled,Carol Miller,greese@example.org,779-475-1467x7958,4971860124435,2024-09-24 +Resort Hotel,0,11,2017,July,28,12,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,238.3,1,2,Check-Out,Michael Jackson,nle@example.com,001-468-715-1545,676385819427,2024-08-27 +Resort Hotel,1,274,2017,July,30,21,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,127.0,179.0,0,Transient,107.3,0,0,Canceled,Justin Yates,stephaniebrown@example.org,+1-748-318-8243,4351364366715292536,2025-08-05 +Resort Hotel,1,263,2017,October,41,13,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,257.0,179.0,0,Transient,62.76,0,0,Canceled,Sara Armstrong,laura95@example.org,+1-943-394-3356x07626,4896622117636753,2025-02-26 +City Hotel,0,51,2017,March,10,4,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,104.2,0,1,Check-Out,Samantha Mccullough,carterpamela@example.net,384-990-3201x450,4133362499455674342,2025-08-20 +Resort Hotel,0,16,2017,October,41,8,3,6,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,12.0,179.0,0,Contract,203.58,0,3,Check-Out,Richard Vazquez,kmartinez@example.net,001-680-397-6271,6562677542303591,2025-06-13 +City Hotel,1,166,2017,August,35,30,0,3,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,105.87,0,1,Canceled,Danielle Lewis,aschultz@example.net,603-717-7166x54135,213118634701380,2025-09-13 +City Hotel,0,93,2017,March,10,6,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,14.0,179.0,0,Transient,227.2,1,0,Check-Out,Andrew Thompson,fleminglinda@example.net,001-565-728-8236x752,4766499737437236,2024-04-02 +City Hotel,1,64,2017,September,38,23,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.7,0,0,Canceled,Anthony Smith,michaellove@example.org,895.469.7407x350,344878859214656,2026-03-11 +City Hotel,0,20,2017,December,49,5,2,3,2,0.0,0,Undefined,GBR,Offline TA/TO,TA/TO,0,0,0,B,A,2,No Deposit,10.0,179.0,0,Transient,129.51,0,2,Check-Out,Kara Johnson,tphillips@example.com,8707424786,30148256290330,2025-07-29 +City Hotel,0,108,2017,March,10,5,0,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.42,0,1,Check-Out,Raymond Garcia,olsondeanna@example.net,001-432-972-5911,4353085487422699203,2026-03-25 +City Hotel,0,0,2017,November,45,8,0,2,3,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,C,1,No Deposit,11.0,45.0,0,Transient,111.31,1,2,Check-Out,Gregory Kemp,samuelfarmer@example.net,958-875-9252x281,568863054074,2024-11-03 +City Hotel,0,3,2017,September,37,12,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,93.25,0,1,Check-Out,Brittany James,nmartinez@example.net,+1-362-340-9102,3527796016528128,2025-11-23 +City Hotel,1,314,2017,October,41,12,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,48.41,0,0,Canceled,Stephanie Hart,danielpoole@example.net,(389)823-3195x12328,30022266282910,2024-08-18 +City Hotel,0,25,2017,August,33,10,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,252.0,0,1,Check-Out,Samantha Martin,laurenjames@example.net,(975)342-6804,30284087721340,2024-08-11 +City Hotel,0,87,2017,July,28,8,2,4,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,8.0,179.0,0,Transient,215.77,0,1,Check-Out,Kimberly Wilson,michelle33@example.com,001-333-207-9042x8639,213100657223377,2025-07-20 +Resort Hotel,0,30,2017,March,13,25,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,54.64,0,1,Check-Out,Richard Taylor,markadams@example.org,8988542709,4887724138193060,2024-05-12 +Resort Hotel,0,58,2017,March,10,6,1,3,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,192.76,0,1,Check-Out,Jennifer Reyes,johnstonmelissa@example.net,(847)576-7267x6019,4725493676363,2024-12-30 +City Hotel,0,48,2017,April,17,22,1,4,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient-Party,138.45,0,0,Check-Out,Victor Silva,thomas07@example.com,+1-505-583-7192x32202,342732690017509,2025-03-15 +City Hotel,0,47,2017,September,36,7,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,142.07,0,2,Check-Out,Tracy Roberts,erikhill@example.net,756.962.3546,2710454572848337,2024-08-11 +Resort Hotel,0,114,2017,January,2,5,0,3,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,B,E,0,No Deposit,31.0,179.0,0,Transient,236.14,0,0,Check-Out,Brian Maxwell,lmontgomery@example.com,383.853.8917x90556,4722962598418,2025-05-01 +Resort Hotel,0,76,2017,May,20,16,1,2,2,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,38.0,179.0,0,Transient,77.06,0,0,Check-Out,Willie Villanueva,heatherdixon@example.net,610-843-5892x0993,4080008270991,2025-12-18 +Resort Hotel,1,150,2017,March,13,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,240.0,179.0,0,Transient,36.41,0,2,Canceled,Edward Morse,jbrock@example.org,001-874-491-9015x8426,4318175262182560,2025-05-31 +City Hotel,0,8,2017,May,21,21,2,1,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,161.27,0,1,Check-Out,Danielle Martinez,nicholas99@example.org,(594)324-6995x99352,501817329276,2024-05-22 +City Hotel,1,64,2017,November,47,23,1,2,2,0.0,0,FB,CHE,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,134.13,0,1,Canceled,Michael Alvarado,whester@example.net,+1-965-473-1459x80408,4581971730358,2026-02-20 +Resort Hotel,0,133,2017,March,13,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,1,Refundable,12.0,223.0,0,Transient-Party,46.88,1,0,Check-Out,Brian Stewart,sarah19@example.org,(957)933-2046,4121294043810881,2025-03-21 +City Hotel,0,106,2017,July,31,31,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,138.21,0,1,Check-Out,Katie Boyd,tonya45@example.com,540-334-3565x843,4044558589271698,2024-04-28 +Resort Hotel,0,62,2017,August,33,12,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,164.0,1,1,Check-Out,Peter Hale,yfarmer@example.org,414.667.9748x092,371056183458259,2025-12-27 +City Hotel,1,10,2017,May,21,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,80.97,0,0,Canceled,Dr. Melissa Weaver,lisacooper@example.com,+1-461-827-7135x523,4480580486504,2024-04-01 +Resort Hotel,0,1,2017,March,10,9,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,289.0,179.0,0,Transient,45.55,1,1,Check-Out,Lori Jones,boothanna@example.net,608.400.9820,213141323197785,2024-07-16 +Resort Hotel,0,28,2017,June,24,12,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,104.01,0,1,Check-Out,Todd Sandoval,dawn60@example.net,+1-928-793-2048x84786,4812206399685927313,2024-04-28 +City Hotel,1,54,2017,August,32,8,2,2,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,195.83,0,0,Canceled,Rodney Underwood,pmoore@example.org,(660)548-3880,6011599187297515,2024-04-16 +City Hotel,1,21,2017,August,31,5,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,124.76,0,0,Canceled,Stephanie Nunez,shawnmorse@example.org,+1-293-268-3588,213169683398883,2024-12-17 +Resort Hotel,1,98,2017,December,2,31,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,D,0,Non Refund,240.0,179.0,0,Transient,116.06,0,0,Canceled,Linda Merritt,stephanie78@example.org,(229)884-6176,3567903825173218,2026-02-25 +Resort Hotel,0,20,2017,April,14,1,0,3,1,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,13.0,224.0,0,Transient-Party,60.62,0,0,Check-Out,Angela Perkins,williambrady@example.org,647-955-6199,343805815311418,2025-09-14 +City Hotel,0,58,2017,December,50,12,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,238.0,179.0,0,Transient,228.03,0,1,Check-Out,Sean Crawford,chelseabryant@example.com,945-686-8204x841,3544834694017251,2024-10-20 +City Hotel,1,45,2017,August,32,9,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,132.99,0,0,Canceled,William Greene,singletonkevin@example.net,+1-598-537-9717,3592442454512395,2025-08-25 +Resort Hotel,0,0,2017,January,3,17,1,0,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,331.0,0,Transient,38.9,0,0,Check-Out,Mathew Garner,richard13@example.org,558.629.9708x963,3555391718074129,2025-05-29 +Resort Hotel,1,49,2017,July,30,26,4,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,87.17,0,0,Canceled,Jacob Robinson,davidsonmatthew@example.org,201-426-9759,4720358816776473,2025-03-13 +City Hotel,0,2,2017,August,35,30,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient,123.96,1,0,Check-Out,Stephanie Hanson,douglas91@example.com,(328)982-0737x73805,180092799963698,2024-07-13 +City Hotel,0,140,2017,March,12,20,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.95,0,0,Check-Out,Timothy White,ssalinas@example.org,+1-841-345-7251x166,6571118241368386,2025-01-27 +City Hotel,0,45,2017,October,41,13,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,85.62,0,1,Check-Out,Tyler Mullins,wrightkristin@example.org,(364)539-2459x0116,4642336688408222,2026-03-15 +City Hotel,0,4,2017,August,32,5,2,5,1,0.0,0,BB,PRT,Aviation,Direct,0,0,0,D,D,1,No Deposit,15.0,151.0,0,Transient,177.26,0,0,Check-Out,Frank Rivers,ugilbert@example.com,001-679-265-4809x075,30414453640358,2025-08-14 +Resort Hotel,1,12,2017,December,49,3,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,331.0,0,Transient,52.34,0,0,No-Show,Maria Hamilton,maldonadoluis@example.com,304-996-4513,4539887996598506,2025-07-24 +City Hotel,0,7,2017,October,43,26,2,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,201.39,0,0,Check-Out,Timothy Lucero,bharris@example.com,+1-429-749-8553,4843601971020,2025-03-24 +City Hotel,0,0,2017,December,50,12,0,3,2,0.0,0,BB,ESP,Corporate,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,61.54,1,1,Check-Out,Mary Weaver,brandonjames@example.net,+1-486-586-0941x99464,4316972221275671,2024-08-22 +City Hotel,0,158,2017,August,32,7,2,4,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,140.83,0,1,Check-Out,Brian Cooper,kimberlyrusso@example.org,865-201-1650,213133197061411,2025-09-30 +City Hotel,0,144,2017,July,30,22,0,4,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,137.29,0,2,Check-Out,Steven Wilson,arios@example.com,564-778-0514,38713121147619,2026-01-25 +City Hotel,0,40,2017,April,17,22,0,3,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,166.07,1,1,Check-Out,Melissa Wolf,matthewsmichael@example.net,538-522-5060x1191,4301395436913067,2026-01-18 +City Hotel,1,385,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.08,0,0,Check-Out,Gina Scott,thomasjustin@example.com,686.897.3924x99516,4931531718874,2025-02-17 +Resort Hotel,0,1,2017,December,49,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,235.0,0,Transient-Party,47.0,0,1,Check-Out,Ashley Hernandez,jacksonlinda@example.net,(860)522-7109x581,6011788128535790,2024-09-04 +City Hotel,0,7,2017,October,42,18,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient-Party,126.51,0,0,Check-Out,Erika Carpenter,oscar61@example.net,512.567.3780,3542124721987169,2024-05-02 +Resort Hotel,0,8,2017,November,44,3,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,244.0,179.0,0,Transient,76.75,1,2,Check-Out,Daniel Long,deanna99@example.com,698-335-0260x326,503891128459,2025-02-24 +Resort Hotel,1,140,2017,July,31,27,0,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,242.0,179.0,0,Transient,252.0,0,1,Canceled,Eric Wilson,justin23@example.com,359.830.7520x64877,4989075460532160,2025-11-18 +Resort Hotel,1,42,2017,June,23,4,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,98.9,1,1,Canceled,Daniel Hayes,john79@example.com,001-905-230-6394x7095,2536630932984282,2025-11-11 +City Hotel,1,6,2017,February,8,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,81.17,0,1,Canceled,William Garner,jordan85@example.org,871-338-7126,4782336660010937311,2026-01-03 +City Hotel,0,13,2017,January,4,20,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,117.24,0,1,Check-Out,Latasha Brown,leslie56@example.com,(275)961-7005,4366741645593,2024-10-12 +Resort Hotel,0,31,2017,October,42,19,4,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Contract,163.74,0,1,Check-Out,Brian Prince,elizabethsherman@example.net,001-757-715-1595x922,180073664152369,2026-03-08 +Resort Hotel,1,319,2017,September,37,10,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,75,Transient-Party,63.69,0,0,Canceled,Christopher Hill,ryansharon@example.net,001-987-205-8317x326,3595053979529421,2025-08-09 +Resort Hotel,1,146,2017,November,48,26,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,39.9,0,3,Canceled,Christopher Reed,ghahn@example.net,+1-248-487-4904x55748,560918776975,2025-03-24 +City Hotel,1,321,2017,October,40,2,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,123.07,0,1,Canceled,Thomas Morrow,susanhatfield@example.org,868-919-7302x062,4141662642139,2024-05-21 +City Hotel,0,51,2017,February,7,10,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.82,0,2,Check-Out,Maxwell Franklin,meyerjeffrey@example.net,(244)734-9628x4554,6501765867783457,2024-12-11 +Resort Hotel,0,1,2017,November,47,23,0,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,E,E,0,No Deposit,248.0,179.0,0,Transient,55.52,0,1,Check-Out,Barbara Riley,jenniferbolton@example.com,292.734.0425x3327,374893113107037,2025-12-20 +City Hotel,1,316,2017,August,34,26,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.83,0,0,Canceled,Mary Trevino,fryjennifer@example.net,+1-736-929-1805x02926,180007636419209,2024-05-05 +City Hotel,1,156,2017,March,10,8,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.72,0,0,Canceled,Jerry Rodriguez,fsanders@example.org,585.686.1490x074,6570578331033979,2024-08-11 +City Hotel,0,40,2017,March,12,17,1,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.9,0,3,Check-Out,David Riley,tamara33@example.org,001-515-505-1884x4722,4924753344208383,2024-07-22 +City Hotel,1,0,2017,August,31,4,2,5,3,0.0,0,SC,,Complementary,Undefined,0,0,0,P,P,1,No Deposit,13.0,179.0,0,Transient,2.85,0,0,Check-Out,Amanda May,jennifermayer@example.net,478.644.1782x650,4934827759437998,2025-09-12 +Resort Hotel,0,128,2017,June,25,15,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,123.66,0,0,Check-Out,Jacob Reeves,shannoncruz@example.com,001-258-922-8664x84504,30541051247655,2025-08-25 +City Hotel,0,6,2017,April,14,4,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,230.91,0,1,Check-Out,Linda Johnson,jacob81@example.com,(670)763-3668,4105697974672197,2026-01-06 +City Hotel,1,42,2017,August,35,26,2,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,185.42,0,1,Canceled,Lisa Williams MD,ijimenez@example.com,260.205.0350x356,4214082970568673,2024-09-26 +City Hotel,1,12,2017,November,45,8,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient-Party,96.82,0,1,Check-Out,Amanda Smith,courtney38@example.net,(313)250-7656x4777,4295134198106158,2026-02-07 +City Hotel,1,98,2017,June,24,16,0,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,111.3,0,1,Canceled,Jennifer Weaver,watkinsvictoria@example.com,356-900-2814x43765,6502590116694258,2025-06-01 +Resort Hotel,0,2,2017,August,33,16,0,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,F,2,No Deposit,8.0,179.0,0,Transient,252.0,0,3,Check-Out,Meredith Lopez,zdaniel@example.net,8323920394,213112359474208,2025-05-08 +City Hotel,1,63,2017,April,17,23,0,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,130.52,0,0,Canceled,Stephanie Miller,trevinojessica@example.org,(864)627-9317x3220,4592194144828792,2025-11-16 +City Hotel,0,18,2017,July,30,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,8.0,179.0,0,Contract,63.12,0,1,Check-Out,Tyler Jackson,taylor62@example.org,959.631.5905,4928406828518548,2024-08-25 +City Hotel,1,54,2017,October,42,18,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,91.82,0,0,Canceled,Donna Farmer,brian38@example.org,217-789-8369x788,4022430852989537,2025-09-20 +City Hotel,0,157,2017,July,28,8,2,5,1,1.0,0,BB,GBR,Groups,TA/TO,0,0,0,G,D,1,No Deposit,13.0,179.0,0,Transient-Party,80.01,0,0,Check-Out,Cynthia Williams,colleenwatts@example.com,001-611-981-9225x05710,639021207027,2025-09-18 +City Hotel,1,155,2017,August,34,17,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,116.21,0,2,Canceled,George Cardenas,qthompson@example.com,001-434-930-4788x62635,3537069296453237,2025-09-29 +Resort Hotel,0,15,2017,December,52,28,0,2,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,L,I,0,No Deposit,241.0,179.0,0,Transient,64.64,1,2,Check-Out,Mary Jordan,amberwallace@example.org,475.910.7998,346087266201441,2026-01-29 +Resort Hotel,0,11,2017,December,49,4,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,307.0,331.0,0,Contract,47.7,0,0,Check-Out,Brian Bennett,halljoshua@example.net,811-734-7724x99918,4121809909304156,2024-06-28 +City Hotel,1,134,2017,July,27,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,173.07,0,0,Canceled,Kenneth Alexander,noah40@example.com,+1-831-498-8851x6522,30083001765593,2025-12-11 +City Hotel,0,13,2017,March,10,4,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,27.0,179.0,0,Transient-Party,107.91,0,1,Check-Out,Brent Ballard,vwoods@example.net,976.774.3726x999,630468325646,2025-10-11 +Resort Hotel,1,8,2017,September,36,4,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,47.11,0,0,Canceled,Lisa Gallegos MD,omarjohnson@example.net,384.748.4910,4755222539666909415,2025-12-26 +City Hotel,0,38,2017,September,36,7,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient-Party,123.31,0,0,Check-Out,Daniel Porter,dwatson@example.net,001-234-894-1433x92084,4242558284491146,2025-08-14 +City Hotel,0,161,2017,August,34,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,107.33,0,0,Check-Out,Heather Howard,johnsonkenneth@example.net,506-974-8775x6671,213197685079318,2024-05-09 +City Hotel,0,11,2017,May,22,27,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,124.26,0,3,Check-Out,Linda Miller,cummingsalex@example.net,(797)507-3062x7146,3512768495253897,2025-06-13 +Resort Hotel,1,202,2017,August,35,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,Ryan Hamilton,harrisheather@example.com,729.538.2391,3531047851219876,2024-03-28 +City Hotel,0,6,2017,February,8,21,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,120.2,0,2,Check-Out,Evelyn Wilkerson,floresjacob@example.net,551-969-9251,6011102020524813,2024-11-11 +Resort Hotel,1,154,2017,November,45,8,2,2,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,101.36,0,0,Canceled,Dawn Ford,rebecca00@example.org,258-838-4698,4519011968920697,2025-06-09 +Resort Hotel,0,9,2017,March,11,11,2,3,2,0.0,0,BB,FRA,Offline TA/TO,Direct,0,0,0,C,C,0,No Deposit,301.0,179.0,0,Transient,128.7,0,1,Check-Out,Rebecca Mack,reginarogers@example.org,742-390-5609,180014963576585,2025-05-07 +City Hotel,0,22,2017,April,17,24,0,1,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,D,A,0,No Deposit,30.0,179.0,0,Transient,163.83,0,0,Check-Out,Joshua Dennis,acox@example.com,+1-914-994-3652x6615,3504845202209501,2025-11-09 +City Hotel,0,13,2017,May,18,5,2,4,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,8.0,179.0,0,Transient,138.42,0,1,Check-Out,Mark Salinas,susan09@example.com,451-669-9508x3436,3581326377180427,2024-05-14 +Resort Hotel,0,23,2017,June,23,9,1,3,2,2.0,0,BB,USA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,159.7,1,0,Check-Out,Shelley Holder,mspence@example.org,001-277-396-7069,4155131396463618142,2024-11-21 +Resort Hotel,0,37,2017,October,42,15,1,4,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient-Party,52.24,0,2,Check-Out,Megan Thompson,droberts@example.net,272.353.0162x4420,378165077419849,2025-12-08 +City Hotel,1,203,2017,October,42,14,2,5,2,0.0,0,SC,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,102.3,0,0,Canceled,John Fuller,vickie37@example.com,3427706181,3536796748441037,2025-11-27 +City Hotel,0,16,2017,April,15,9,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,32.0,179.0,0,Transient,140.29,0,2,Check-Out,John Frank,heathersmith@example.org,503.828.3391,3511518335655863,2024-11-21 +Resort Hotel,1,27,2017,January,4,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,42,Transient,118.65,0,0,Canceled,Parker Anderson,mark67@example.org,(459)837-0225,180010778069865,2025-12-02 +Resort Hotel,1,144,2017,August,34,22,3,5,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,F,E,1,No Deposit,252.0,179.0,0,Transient,131.45,0,0,No-Show,Carrie Rogers,iking@example.com,(537)368-5400x250,580081156094,2025-04-11 +City Hotel,0,0,2017,January,4,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,15.0,45.0,0,Transient,43.16,1,1,Check-Out,Ashley Lucas,whitejason@example.org,001-718-984-0943x057,4245129280601240,2025-06-12 +City Hotel,0,42,2017,October,43,23,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,9.0,179.0,0,Transient-Party,127.57,0,0,Check-Out,Lisa Wilson,catherine66@example.org,001-655-674-4663,4863467491231634,2024-07-29 +City Hotel,1,165,2017,June,23,3,1,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,106.09,0,0,Canceled,Julie Garcia,codybarker@example.net,001-383-374-9377,3568742716694224,2024-10-20 +Resort Hotel,0,0,2017,October,41,8,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient-Party,135.61,1,0,Check-Out,Brandon Johnson,steven43@example.org,517-341-5969,4161252506886872,2026-01-03 +City Hotel,0,0,2017,May,19,7,2,0,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,14.0,156.0,0,Transient,4.21,0,0,Check-Out,Shannon Collins MD,williamsalexander@example.org,396-617-6117,4454182606225323,2025-04-30 +City Hotel,0,18,2017,December,2,31,0,4,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Check-Out,Richard Hogan,markphillips@example.net,576.264.8871x552,4491266422960,2026-01-05 +City Hotel,0,17,2017,August,34,24,2,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,B,0,No Deposit,15.0,75.0,0,Transient,64.46,0,3,Check-Out,David Barrett,barbararogers@example.net,+1-336-582-7442,3510918249403197,2025-04-27 +Resort Hotel,1,207,2017,October,40,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,42,Transient,105.19,0,0,Canceled,William Franklin,fbanks@example.org,(259)950-8365x40440,6537115488625216,2025-11-15 +City Hotel,0,20,2017,August,31,5,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,212.2,0,0,Check-Out,Emily Davis,phylliswright@example.com,001-415-393-5016x7616,3581609002768579,2025-12-17 +City Hotel,0,37,2017,October,41,13,0,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,81.54,1,0,Check-Out,Edward Bell,hjordan@example.org,8466515084,676247251041,2026-03-18 +City Hotel,1,206,2017,June,26,23,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,125.01,0,0,Canceled,William Carroll,fwilliams@example.com,687-285-2409x99674,2293169258738785,2025-05-23 +Resort Hotel,0,17,2017,June,25,16,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,76.21,0,1,Check-Out,Heather Larson,kennedyjoseph@example.org,+1-388-555-0652x878,6011287405245199,2026-01-06 +City Hotel,1,50,2017,August,32,8,0,1,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,141.06,0,0,Canceled,Kenneth Winters,steven66@example.com,001-382-337-7953x0204,6011687657062780,2025-11-25 +Resort Hotel,0,0,2017,January,3,19,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,241.0,179.0,0,Transient,251.28,0,1,Check-Out,Ryan Downs,jennasmith@example.net,(468)786-0190x6643,060405598891,2025-04-06 +Resort Hotel,0,47,2017,June,26,25,1,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,H,1,No Deposit,241.0,179.0,0,Contract,252.0,1,1,Check-Out,Deborah Schwartz,jfowler@example.net,(492)421-2594x978,5321723946927488,2026-03-27 +Resort Hotel,0,44,2017,April,17,26,2,5,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,L,D,0,No Deposit,242.0,179.0,0,Transient,105.27,0,1,Check-Out,Alison Torres,alanwebb@example.com,+1-329-546-1438x7017,30356136799145,2025-10-22 +Resort Hotel,0,47,2017,January,2,3,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,243.0,179.0,0,Transient,52.21,1,1,Check-Out,Emily Duncan,pattyward@example.org,250.859.6589x380,2720223377338325,2025-04-14 +Resort Hotel,0,2,2017,August,32,9,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,247.0,179.0,0,Transient,141.38,0,0,Check-Out,Patrick Brooks,webbcharles@example.com,2955046148,379095958298674,2025-03-26 +City Hotel,1,15,2017,May,22,30,0,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,8.0,179.0,0,Transient,143.05,0,1,Canceled,Jennifer Sanchez,john01@example.org,(312)879-7198,30593105872780,2026-02-08 +City Hotel,1,192,2017,August,32,4,1,5,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,215.43,0,1,Canceled,Lisa Velasquez,cware@example.net,213.683.0147x12919,4127901565145561,2024-11-10 +City Hotel,0,41,2017,June,25,17,2,2,3,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,91.61,0,0,Check-Out,Natalie Bauer,bakerashley@example.com,234-240-6701x0616,5427113554833553,2025-10-05 +Resort Hotel,0,24,2017,September,39,30,2,2,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,212.75,0,0,Check-Out,Rebecca Chambers,lgarcia@example.org,+1-774-430-5366x5557,3564225167814123,2025-09-10 +Resort Hotel,0,18,2017,September,38,16,1,7,1,0.0,0,FB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,78.0,0,Transient-Party,51.49,0,0,Check-Out,Jamie Paul,johnsonbradley@example.org,3215522952,503800334818,2024-08-13 +City Hotel,0,11,2017,March,11,17,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,5.0,179.0,0,Transient,132.3,0,1,Check-Out,Dr. Ryan Newman,ogreen@example.org,658-442-7802,4316059198925,2025-11-21 +Resort Hotel,0,114,2017,January,3,16,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,241.0,179.0,0,Group,64.34,1,1,Check-Out,Walter Allen,laneaustin@example.net,+1-561-625-0659x40807,348588268364630,2025-08-13 +City Hotel,0,77,2017,July,30,26,2,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,11.0,179.0,0,Transient,134.0,0,1,Check-Out,Pamela Castillo,hpatrick@example.net,(314)610-6296x611,3525608974276313,2024-06-10 +Resort Hotel,1,19,2017,July,29,19,2,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Canceled,Alexa Morse,kimberly93@example.org,9757367076,3567923387158688,2025-11-06 +Resort Hotel,0,72,2017,April,14,5,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient-Party,56.68,0,1,Check-Out,Justin Garcia,bestkimberly@example.com,390-843-7342x662,4229121715834,2025-04-06 +City Hotel,0,96,2017,April,15,9,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,88.83,0,0,Check-Out,Jacob Brown,phillip86@example.org,(250)218-8386x9363,676181467454,2024-04-02 +Resort Hotel,0,226,2017,June,23,9,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient,40.14,0,0,Check-Out,Juan Graham,coxjeffery@example.com,+1-658-601-0195,4006124204773604,2025-01-26 +City Hotel,1,414,2017,August,32,10,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,104.4,0,0,Canceled,Michael Hanson,leslielopez@example.org,223.432.0192x175,4691435964489354724,2024-12-07 +City Hotel,1,113,2017,August,31,5,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.85,0,0,Canceled,Amber Garcia,mpearson@example.com,+1-480-656-1081x3918,4549299790131,2025-02-28 +City Hotel,0,161,2017,October,42,17,1,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,23.0,179.0,0,Transient-Party,78.53,0,0,Check-Out,Charles Wilson,halljane@example.org,750-617-3902,3531651962855591,2025-08-14 +City Hotel,1,40,2017,March,12,23,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,79.87,0,0,No-Show,Jennifer Clark,qvillanueva@example.org,936-525-3596,2692667228954397,2025-05-06 +City Hotel,0,48,2017,August,34,22,1,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient-Party,104.0,0,1,Check-Out,Maria Howard,harrislaura@example.org,376.600.7845,4932900189757582,2026-01-01 +Resort Hotel,1,161,2017,March,13,29,4,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,148.82,0,1,Canceled,April Murray,kelly60@example.net,308.914.4437x7767,3502453381900784,2026-01-03 +City Hotel,0,16,2017,December,52,27,0,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,132.81,0,1,Check-Out,Jillian Villarreal,edward41@example.org,001-615-910-6852x349,4071902025911230699,2024-09-05 +Resort Hotel,0,1,2017,October,43,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,14.0,331.0,0,Transient,46.6,0,0,Check-Out,Jonathan Massey,khancock@example.net,(475)508-7855,6569998147624121,2024-06-03 +City Hotel,0,38,2017,April,17,26,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,132.16,0,1,Check-Out,Ricky Hamilton,george59@example.net,+1-627-497-1214,4881886915833,2024-12-14 +Resort Hotel,1,158,2017,April,15,8,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,133.98,0,0,Canceled,Matthew Green,hnguyen@example.net,001-281-829-4851x6642,4767153946306,2025-05-31 +City Hotel,0,50,2017,October,44,28,0,1,2,0.0,0,SC,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,90.4,0,0,Check-Out,Jesse Bruce,umills@example.com,+1-475-287-4774x81868,3527325836061415,2024-06-19 +Resort Hotel,0,150,2017,July,28,9,4,5,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,238.0,179.0,0,Transient,135.64,0,2,Check-Out,Michael Huerta,ramirezmatthew@example.net,(220)597-6993x99644,4324183480185,2024-12-15 +City Hotel,0,414,2017,July,31,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,90.96,0,0,Check-Out,Bethany Harris,jhughes@example.net,+1-963-450-9889x83274,4764715597727,2024-11-12 +City Hotel,0,16,2017,September,36,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,12.0,202.0,0,Transient-Party,64.17,0,0,Check-Out,Brandi Burton,gonzaleztammy@example.com,938-801-1704x287,3501981354664608,2025-06-01 +City Hotel,0,141,2017,February,6,9,0,1,1,1.0,0,BB,DEU,Corporate,Direct,0,0,0,A,A,0,No Deposit,13.0,230.0,0,Transient,85.09,0,0,Check-Out,Christopher Atkins,rebeccahill@example.org,+1-626-830-1665x20538,4533504974706,2024-09-26 +Resort Hotel,0,77,2017,December,52,24,1,2,2,0.0,0,Undefined,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,33.0,179.0,0,Contract,77.3,0,1,Check-Out,Amanda Greer,tonya09@example.com,405-478-8315,676297066687,2025-01-27 +City Hotel,1,41,2017,March,13,29,1,3,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.4,0,2,Canceled,Jennifer Navarro,castillogary@example.net,(555)604-3747,180083800821736,2024-05-18 +City Hotel,1,261,2017,July,31,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Contract,63.45,0,0,Canceled,Jesse Stephens,maureen17@example.com,(835)427-0105x366,4418968551779016,2025-05-28 +City Hotel,1,273,2017,September,39,29,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,79.96,0,0,Canceled,Michelle Watson,tamara29@example.net,001-902-794-0777x979,4718858623443,2025-04-10 +City Hotel,1,0,2017,December,52,24,1,0,3,0.0,0,BB,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,19.0,331.0,0,Transient,1.83,0,0,No-Show,Philip Peterson,saracook@example.org,796-614-1900,5167636174418854,2024-12-30 +City Hotel,0,350,2017,June,26,24,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,96.39,0,0,Check-Out,Jonathon Morris,shellydavis@example.net,+1-448-955-2525x892,340208160770226,2024-08-26 +Resort Hotel,0,93,2017,March,10,4,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,238.0,179.0,0,Transient,53.72,0,1,Check-Out,Trevor Mays,reynoldschristine@example.net,749.603.9455x335,378688993098942,2025-10-21 +Resort Hotel,0,0,2017,November,44,1,1,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,C,C,0,No Deposit,11.0,179.0,0,Transient,100.55,1,1,Check-Out,Julia Lee,johnsonrebecca@example.net,001-763-450-3032x7967,4446319406926407152,2024-11-08 +Resort Hotel,0,15,2017,July,31,30,3,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,252.0,0,3,Check-Out,Jordan Daniels,hardystacy@example.net,552.302.6569x66791,36790318409665,2025-08-16 +City Hotel,1,356,2017,June,26,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,63,Transient,62.37,0,0,Check-Out,Cynthia Gray,coopermary@example.com,+1-332-202-3194,675995071098,2025-03-14 +City Hotel,1,374,2017,October,40,5,2,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,62,Transient,76.94,0,0,Canceled,Ashley Hernandez,iramos@example.net,8744404085,38483941913133,2025-07-31 +City Hotel,0,0,2017,August,35,30,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,54.36,0,1,Check-Out,Taylor Perry,williamsandrew@example.net,001-941-813-3289x19613,30532019708292,2024-08-05 +City Hotel,1,247,2017,May,21,23,2,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,170.0,179.0,0,Transient,76.91,0,0,Check-Out,Joseph Walton,gregory67@example.com,001-848-936-0461x006,3571046742531961,2024-12-09 +Resort Hotel,1,189,2017,July,27,8,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,61.28,0,0,Canceled,Cory Carr,toddstephen@example.net,687-690-1501x846,30307366729898,2025-07-17 +City Hotel,1,103,2017,October,41,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,25,Transient,88.07,0,0,Canceled,Christine Anderson,sarahcolon@example.org,+1-810-279-0485x55144,4230660161224,2025-11-26 +Resort Hotel,0,1,2017,December,2,31,1,4,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,18.0,179.0,0,Transient,0.5099000000000001,1,1,Check-Out,Peter Arnold,jacksondeborah@example.net,001-242-750-3088x20007,180055270105766,2025-05-16 +City Hotel,0,201,2017,April,17,20,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,A,1,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,1,0,Check-Out,Amber Smith,johnturner@example.org,526.914.4130x864,503868463335,2024-05-23 +Resort Hotel,1,191,2017,August,34,23,2,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,90.67,0,1,Canceled,Sheila Miller,erin32@example.org,001-243-203-4453x20609,4714923866683679294,2025-08-03 +Resort Hotel,0,4,2017,August,35,24,0,1,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient-Party,1.17,0,0,Check-Out,Stephanie Poole,jennifer83@example.net,(753)700-2648,4079813853400264809,2024-06-09 +Resort Hotel,0,91,2017,October,40,4,2,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,103.85,0,0,Check-Out,Dennis Burnett,ecoleman@example.com,743-402-6266,371846922971517,2025-03-12 +City Hotel,1,17,2017,May,22,31,0,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,114.56,0,2,Canceled,Stephanie Gould,michael01@example.com,001-696-511-8024x978,4236936797141606,2025-12-21 +City Hotel,0,4,2017,October,43,25,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,104.66,0,1,Check-Out,Ashlee Garcia,marypotter@example.net,915-343-0544x147,4073279806774356,2025-07-24 +City Hotel,0,144,2017,June,26,28,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,121.44,0,0,Check-Out,Tonya Schwartz,andrewbeck@example.net,+1-442-910-5371x9997,4660506251781,2025-06-08 +Resort Hotel,0,101,2017,October,40,5,1,1,3,1.0,0,BB,,Direct,Direct,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,143.2,1,0,Check-Out,Scott Miller,tmartinez@example.com,838-685-1041,4699585337319,2025-06-04 +Resort Hotel,0,13,2017,September,37,16,0,1,1,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,79.0,179.0,0,Transient,81.29,0,2,Check-Out,Andrea Valenzuela,evansdylan@example.com,450-511-4673x6321,4327567582006231,2024-11-09 +City Hotel,1,172,2017,June,27,30,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,130.09,0,0,Canceled,Michael Peterson,bweeks@example.net,001-995-404-1053x321,577198244532,2025-05-20 +Resort Hotel,0,0,2017,March,11,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,1,No Deposit,16.0,73.0,0,Transient,38.71,1,0,Check-Out,John Kim,gonzalezaustin@example.net,(732)384-9544x4506,30383756370577,2024-08-21 +City Hotel,1,10,2017,March,10,2,2,1,2,0.0,0,BB,PRT,Direct,TA/TO,1,1,1,A,D,0,Non Refund,11.0,179.0,0,Transient,42.23,0,0,Canceled,Kevin Dawson,xstevens@example.org,001-969-530-1564x03433,3584311004423934,2025-08-20 +City Hotel,1,16,2017,April,16,16,1,0,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,134.37,0,2,Canceled,Dakota Hayes,urocha@example.net,366-918-7861,4475896700945,2025-04-08 +City Hotel,0,3,2017,August,31,4,1,0,1,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,I,0,No Deposit,281.0,179.0,0,Transient,3.39,1,0,Check-Out,John Brady,bruce82@example.org,001-743-323-1704,373187786581920,2026-02-10 +Resort Hotel,0,0,2017,January,4,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,D,0,No Deposit,169.0,179.0,0,Transient-Party,34.46,0,0,Check-Out,Eric Richardson,williamsdaniel@example.org,(325)972-2446,3510864067904041,2024-10-21 +City Hotel,1,191,2017,May,20,17,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.71,0,0,Canceled,Melissa Martinez,pgreene@example.net,2492445971,2294345244844718,2024-07-28 +City Hotel,1,38,2017,August,33,15,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.18,0,2,Canceled,Jill James,matthew17@example.com,(814)826-1909,3546705132843730,2025-12-02 +City Hotel,0,0,2017,August,31,4,1,1,3,0.0,0,BB,PRT,Complementary,Direct,1,0,1,E,E,0,No Deposit,17.0,45.0,0,Transient,2.52,0,0,Check-Out,Rhonda Griffith,joshuaherrera@example.com,(560)988-6684x843,6549169882683699,2025-12-03 +Resort Hotel,0,55,2017,August,33,15,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,2,No Deposit,241.0,179.0,0,Transient,133.15,1,1,Check-Out,Zachary Williams,frich@example.com,+1-569-654-4147x7144,4838452060502556943,2024-06-19 +Resort Hotel,0,5,2017,February,5,1,1,2,2,0.0,0,BB,GBR,Undefined,Corporate,0,0,0,A,D,1,No Deposit,41.0,179.0,0,Transient-Party,39.73,0,0,Check-Out,Eduardo Thompson,qjones@example.org,931-633-8386x2054,2481676429960272,2026-01-15 +City Hotel,0,44,2017,May,19,4,0,1,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,81.25,0,0,Check-Out,Tyler Davis,sarah35@example.com,001-307-507-9957x558,370020872260591,2026-01-11 +City Hotel,1,313,2017,December,49,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,25.0,179.0,40,Transient-Party,60.57,0,0,Canceled,Emily Travis DDS,jjohns@example.org,(238)372-4034,373929494264509,2025-08-27 +Resort Hotel,0,1,2017,January,2,11,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,131.19,0,3,Check-Out,Robert Blanchard,pblanchard@example.com,3007230465,3597316299021991,2025-01-24 +City Hotel,0,150,2017,September,38,23,2,5,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.67,0,0,Check-Out,Bradley Greene,alyssa97@example.com,001-813-420-2947x77454,4401664228686398116,2025-10-26 +Resort Hotel,0,28,2017,August,32,8,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,240.0,179.0,0,Transient,142.04,0,1,Check-Out,Lori Moore,darlenehill@example.org,001-824-602-1723x99202,180041303104125,2024-07-13 +City Hotel,0,49,2017,September,36,8,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,78.0,179.0,0,Transient-Party,98.05,0,0,Check-Out,Barry Anderson,cbailey@example.com,2735058874,3578288713465935,2025-09-12 +City Hotel,1,75,2017,August,34,24,0,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,B,E,0,No Deposit,15.0,179.0,0,Transient-Party,197.84,0,1,No-Show,Candice Walton MD,edward51@example.net,905.682.7136,3545913554681049,2025-08-27 +City Hotel,1,136,2017,May,18,2,2,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.75,0,2,Canceled,Lisa Maldonado,maciasvictoria@example.net,(586)412-2372,4391796195998457,2026-02-02 +City Hotel,0,146,2017,April,18,28,0,2,2,0.0,0,BB,POL,Groups,TA/TO,0,0,0,A,A,1,No Deposit,88.0,179.0,0,Transient-Party,42.92,0,0,Check-Out,Anthony Cain,jennifergentry@example.com,370-255-6571,4542401995300,2025-07-14 +Resort Hotel,0,88,2017,June,25,20,4,10,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,253.0,179.0,0,Transient,132.9,0,1,Check-Out,David Williams,lopezpatrick@example.net,927.371.9764,4687501756548,2025-04-10 +City Hotel,0,92,2017,May,20,15,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,95.0,68.0,43,Transient-Party,139.19,1,0,Check-Out,Melissa Wilson,james16@example.com,(206)974-8003,3569836836926166,2024-11-02 +Resort Hotel,0,142,2017,June,26,22,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,227.0,179.0,0,Transient,101.05,0,1,Check-Out,Kathleen Malone,elijahwilson@example.org,(834)817-4613,4351427327357572,2024-06-15 +City Hotel,0,37,2017,September,36,6,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,78.0,179.0,0,Transient,130.49,0,0,Check-Out,Yvonne Jones,ortegadorothy@example.com,+1-214-728-3155,5592599628928404,2025-03-23 +City Hotel,1,272,2017,November,44,2,0,1,3,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,E,0,No Deposit,10.0,179.0,0,Transient,104.36,0,0,Canceled,Lonnie Wilson,areed@example.org,964-771-0810x7598,30023000500302,2025-07-27 +Resort Hotel,0,1,2017,June,26,22,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,240.18,0,1,Check-Out,Pamela Long,udavis@example.org,+1-240-822-1375,3523517179712471,2025-02-14 +Resort Hotel,0,38,2017,March,10,5,2,5,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,112.77,0,2,Check-Out,Gary Wong,brianarias@example.com,624.557.8179x736,30265590063411,2024-12-04 +City Hotel,0,44,2017,July,28,12,1,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,105.63,0,1,Check-Out,Kevin Clayton,jim71@example.com,(353)415-8842,4891512207819747,2025-05-26 +City Hotel,0,6,2017,February,7,13,2,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,74.66,0,1,Check-Out,Kimberly Morales,shannonwalsh@example.org,505.731.3313,2696412559644689,2024-10-14 +Resort Hotel,0,188,2017,September,38,19,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient-Party,226.25,0,1,Check-Out,Alex Kelley,kristincox@example.org,482.950.4354x85257,213170729399026,2026-02-04 +Resort Hotel,1,13,2017,June,26,27,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,227.32,0,1,No-Show,Christine Jennings,richardsoncarol@example.org,+1-612-610-7733x703,3595128272628078,2024-09-04 +Resort Hotel,0,83,2017,December,49,9,2,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,78.27,0,0,Check-Out,Joe Mccarthy,nhill@example.org,866-846-5235x2090,213152828652703,2024-07-11 +City Hotel,1,45,2017,December,52,27,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,98.19,0,0,Canceled,Samantha Bullock,djohnson@example.net,(644)904-1668,30203210902064,2025-06-13 +City Hotel,1,20,2017,August,32,8,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,97.08,0,2,Check-Out,Alejandra Peterson,donaldbaker@example.net,228.611.4057x83499,3526296475808179,2025-01-28 +City Hotel,0,217,2017,August,31,1,1,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,6.0,179.0,0,Transient,178.79,0,1,Check-Out,Eric Rice,georgesanchez@example.net,(643)708-2362,213185226914937,2025-08-02 +Resort Hotel,1,2,2017,June,25,21,2,2,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,12.0,179.0,0,Transient,237.48,0,0,Canceled,Tanya Vasquez,brooke72@example.net,742-370-7535,501846573266,2024-08-11 +City Hotel,0,13,2017,March,11,17,0,5,2,1.0,0,BB,AUT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,28.0,179.0,63,Transient,88.74,0,1,Check-Out,Linda Hardy MD,brooke40@example.net,001-735-591-5686x194,4888635890399746,2025-03-30 +Resort Hotel,0,257,2017,October,40,2,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,1,1,0,A,A,0,No Deposit,241.0,179.0,0,Contract,56.3,0,3,Check-Out,Robert Edwards,matthewhaney@example.net,419.703.7238,346500657515906,2025-05-28 +Resort Hotel,0,30,2017,August,33,10,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,1,Check-Out,Harold Carlson,snyderjennifer@example.org,+1-555-625-3332,4866348599196845,2025-05-15 +City Hotel,0,351,2017,October,43,24,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,108.24,0,0,Check-Out,Keith Scott,henrytyler@example.net,+1-836-873-0710x43099,2449431457175950,2024-12-01 +City Hotel,1,2,2017,April,15,11,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,1,0,0,D,D,0,No Deposit,15.0,173.0,0,Transient,64.48,0,0,No-Show,Benjamin Russo,kelseyjackson@example.com,+1-938-429-2553x56134,4159824889604,2026-01-20 +Resort Hotel,0,55,2017,August,33,12,0,4,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,252.0,0,1,Check-Out,Grace Young,james87@example.org,001-995-452-1760x240,4624105990132,2025-04-22 +City Hotel,0,4,2017,April,17,23,0,2,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,1,No Deposit,13.0,45.0,0,Transient,2.38,1,1,Check-Out,Kevin Becker,rhenderson@example.net,690-591-8920x7638,213113687638159,2024-06-15 +City Hotel,1,1,2017,February,8,23,0,1,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient-Party,66.5,0,2,No-Show,Andrea Jones,udunn@example.org,(665)262-3446,5585480138388497,2024-09-20 +City Hotel,0,121,2017,May,21,24,2,4,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,143.77,0,1,Check-Out,Jordan Shelton,rasmussenchristy@example.net,+1-479-531-8596x977,30139642172662,2025-10-19 +Resort Hotel,0,110,2017,March,12,22,2,1,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,364.0500000000011,179.0,0,Transient-Party,49.85,0,1,Check-Out,Michael Martinez,smithjeffrey@example.net,(973)673-9120x842,370849432596064,2026-01-11 +City Hotel,1,286,2017,October,40,5,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,26.0,179.0,0,Contract,79.02,0,0,Canceled,Christopher Day,sue99@example.org,+1-949-668-3371x233,3528909047324388,2024-07-28 +City Hotel,1,20,2017,June,26,24,1,1,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.15,0,0,Canceled,Devin Berry,fnichols@example.com,(407)924-2054x9280,639084518070,2025-09-08 +Resort Hotel,0,0,2017,February,5,2,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,331.0,0,Group,49.7,0,1,Check-Out,Jesse Brock,eelliott@example.net,990.767.9198x98288,3521088403102717,2024-10-28 +City Hotel,0,22,2017,June,26,22,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.13,0,1,Check-Out,Kimberly Fox,adamparsons@example.org,001-873-998-4006,6011547801393095,2024-06-20 +City Hotel,1,56,2017,November,46,16,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,30.0,179.0,0,Transient-Party,84.04,0,0,No-Show,Jennifer Harvey,moodykirk@example.net,001-253-714-2900,3521697161398380,2024-07-24 +City Hotel,0,55,2017,May,18,3,1,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,150.55,0,2,Check-Out,Emily Arellano,daniel63@example.com,(501)779-3993,3523274365244139,2026-02-24 +City Hotel,1,151,2017,May,21,20,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,140.06,0,1,Canceled,Dennis Wilson,jonathan61@example.net,7403996003,3588974066046137,2025-12-05 +Resort Hotel,1,9,2017,December,49,6,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,49.68,0,0,Canceled,Charles Paul,kelsey63@example.org,+1-833-933-0854x448,562398347327,2024-11-15 +Resort Hotel,1,45,2017,December,52,30,0,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,77.5,0,0,Canceled,Casey Robbins,mmorgan@example.org,+1-629-700-9849x7617,4919660549920461542,2025-01-02 +City Hotel,1,172,2017,July,31,27,0,3,3,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient-Party,132.71,0,0,Canceled,Daniel Mccormick,yatestyler@example.net,806.459.2157x43450,4235787439964399064,2025-05-14 +Resort Hotel,0,22,2017,March,13,31,1,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,82.0,179.0,0,Transient,39.39,0,0,Check-Out,David Nichols,jpeterson@example.com,851-319-4202x05715,3554760262584876,2025-02-04 +City Hotel,1,202,2017,July,28,12,0,2,2,0.0,0,BB,PRT,Complementary,TA/TO,0,1,0,A,A,0,Non Refund,10.0,57.0,0,Transient,140.34,0,0,Canceled,Richard Alvarado,donaldhess@example.com,(965)737-2784x15122,3526194408918936,2025-12-08 +City Hotel,1,243,2017,May,19,6,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,49.34,0,0,Canceled,Ralph Lewis,jhamilton@example.net,001-906-866-7873x52731,345885143905758,2024-05-17 +Resort Hotel,0,0,2017,March,13,25,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,G,D,1,No Deposit,239.0,179.0,0,Group,46.27,0,3,Check-Out,Erica Richardson,michellebaker@example.org,358.420.5293,6011855216783465,2025-03-30 +City Hotel,0,166,2017,June,25,21,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,85.36,0,1,Check-Out,Marcia Thomas,gary98@example.net,+1-680-600-3013x00241,676107236389,2025-01-03 +City Hotel,1,42,2017,December,52,29,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,131.1,0,0,Canceled,Kenneth Rodriguez,talvarado@example.net,(225)411-8506x346,4334229662514,2024-11-04 +City Hotel,0,23,2017,December,49,7,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,173.0,179.0,0,Transient-Party,100.02,1,0,Check-Out,Christopher Maynard,carolbrown@example.com,001-510-883-6129x590,341777816104211,2026-03-08 +City Hotel,0,13,2017,August,35,31,1,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,L,D,0,No Deposit,11.0,179.0,0,Contract,121.44,0,2,Check-Out,Rebecca Alexander,johnwilson@example.net,271.652.7545,3520441184396753,2025-10-09 +Resort Hotel,0,165,2017,March,12,20,2,5,2,0.0,0,HB,AUT,Groups,Corporate,0,0,1,E,F,1,No Deposit,245.0,179.0,75,Transient-Party,152.65,1,1,Check-Out,Claudia Acevedo,xperkins@example.com,497-689-8223,4543111305469786,2024-06-07 +Resort Hotel,1,24,2017,August,35,27,2,5,2,2.0,0,HB,BEL,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,252.0,1,0,Canceled,Julia Johnson,joshua56@example.net,480-934-2386x423,30528726948478,2024-04-26 +City Hotel,0,4,2017,October,42,20,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,B,1,No Deposit,17.0,45.0,0,Transient,1.09,0,0,Check-Out,Lisa Lewis,floresmichael@example.com,001-907-851-0862x11278,4844408101076450,2025-06-05 +City Hotel,0,2,2017,May,21,22,0,1,2,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient-Party,102.35,0,0,Check-Out,James Williams,halljohn@example.com,+1-994-600-8360x124,566870068988,2025-04-22 +Resort Hotel,1,39,2017,January,3,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,239.0,179.0,0,Transient,55.12,0,0,Canceled,Warren Gould,johnsonjulie@example.com,(869)370-6960x1317,4192001580563,2025-12-13 +City Hotel,1,301,2017,September,37,14,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,102.66,0,1,Canceled,Ruth Miller,yolson@example.net,001-286-524-2757x0880,2707128486137111,2024-08-01 +City Hotel,0,1,2017,March,13,31,2,1,2,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,51.25,0,1,Check-Out,Margaret Crane,williamward@example.net,291.882.3944,2298442145872231,2024-11-09 +Resort Hotel,0,114,2017,March,10,6,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Group,188.28,0,1,Check-Out,Brooke Donovan,petersonmichael@example.com,252-644-6799x55530,3517353610410857,2025-11-16 +City Hotel,1,282,2017,July,27,5,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.0,0,0,Canceled,Angela Pittman,coreyfleming@example.com,001-571-577-4797,30513472600507,2025-02-04 +Resort Hotel,0,53,2017,March,10,5,2,5,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,C,2,No Deposit,14.0,179.0,0,Transient,132.83,0,1,Check-Out,Thomas Flores,mallen@example.net,(357)437-4729,6517767274600599,2025-12-22 +Resort Hotel,0,24,2017,June,23,5,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,1,1,0,A,A,1,No Deposit,10.0,179.0,0,Transient,87.25,1,1,Check-Out,Marcus Turner,dennis25@example.org,(948)767-3190,4725283328122989,2026-02-26 +City Hotel,0,55,2017,September,38,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,160.47,0,0,Check-Out,Erica Smith,robert96@example.net,9834999868,501832826348,2024-08-28 +City Hotel,0,23,2017,March,10,2,0,3,3,1.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,7.0,179.0,0,Transient,160.06,0,1,Check-Out,Jordan Reed,ewhite@example.net,(850)661-6900x2124,30405229204438,2026-01-12 +City Hotel,0,14,2017,February,6,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,39,Transient,61.58,0,1,Check-Out,Deborah Anderson,icastaneda@example.net,001-936-343-6000x09452,3591832599455438,2024-05-01 +City Hotel,0,159,2017,June,24,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,134.44,0,0,Check-Out,Felicia Hammond,kristyroberts@example.com,693-811-9078,344777934227701,2025-10-04 +Resort Hotel,1,0,2017,January,2,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,H,A,0,No Deposit,248.0,179.0,0,Transient,47.06,0,0,Canceled,Candace Harrison,jrogers@example.net,001-879-885-2181x886,4877033925865,2024-12-01 +City Hotel,1,104,2017,June,23,4,0,4,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,117.72,0,2,Canceled,Nicole Howe,crystallong@example.com,+1-565-493-3291,2269972141809071,2025-01-13 +City Hotel,0,2,2017,August,31,2,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,135.69,1,1,Check-Out,Sheri Thompson,kwheeler@example.org,+1-222-404-2432x0819,4499300529831,2024-12-20 +Resort Hotel,0,0,2017,April,17,25,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,D,D,2,No Deposit,16.0,233.0,0,Transient,137.07,0,1,Check-Out,Jonathan Martinez,obeck@example.com,8764324545,675976879691,2024-07-15 +Resort Hotel,0,1,2017,December,49,9,2,2,2,0.0,0,FB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,62.04,0,0,Check-Out,Debra Cox,zcole@example.com,(615)446-5271,6525253460879495,2025-06-29 +Resort Hotel,0,27,2017,April,15,10,0,2,1,0.0,0,Undefined,PRT,Online TA,TA/TO,1,0,0,A,I,1,No Deposit,178.0,179.0,0,Transient,0.5099000000000001,0,2,Check-Out,Victoria Miller,harrisjonathan@example.net,823-312-0845,2331328330357907,2025-11-29 +Resort Hotel,0,12,2017,January,2,8,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,1,1,Check-Out,Debra Morrison,handerson@example.net,230-392-7995,344957983662954,2026-02-10 +Resort Hotel,0,40,2017,December,49,5,1,0,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,94.7,0,0,Check-Out,Matthew Jones,michele70@example.com,(956)494-8982x94738,4026974713468989,2024-07-20 +City Hotel,0,62,2017,November,47,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,50.06,0,1,Check-Out,Paul Sanchez,ian43@example.org,499-672-5168x77884,213121727292853,2026-01-01 +City Hotel,1,49,2017,October,41,9,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,63.98,0,0,Canceled,Frederick Cook,brooksjennifer@example.com,891.520.0554x9178,180045207770618,2024-09-29 +City Hotel,0,21,2017,September,38,19,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,D,2,No Deposit,9.0,179.0,0,Transient,198.11,0,3,Check-Out,Calvin Thomas,ewilson@example.org,001-614-451-2011,4882781172243040,2026-02-13 +City Hotel,1,158,2017,October,42,19,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Group,230.14,0,2,Canceled,Luis Mcdaniel,wernervictoria@example.org,231-747-3136x0571,375095523542121,2024-05-21 +Resort Hotel,0,167,2017,July,28,6,0,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,116.03,0,1,Check-Out,Toni Phillips,carolyn55@example.net,+1-925-528-8959,4060943426999,2025-10-01 +City Hotel,0,10,2017,April,18,30,0,2,1,0.0,0,BB,PRT,Complementary,Direct,0,0,1,A,B,0,No Deposit,12.0,45.0,0,Transient-Party,0.5099000000000001,0,0,Check-Out,Blake Stanton,megan20@example.org,001-289-257-7720x310,2263702352563240,2025-10-12 +City Hotel,0,342,2017,October,40,1,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,19.0,179.0,0,Transient-Party,62.53,0,0,Check-Out,Sherri Sanchez,christopherjacobs@example.com,+1-718-533-8149x06711,676185525265,2024-03-29 +Resort Hotel,0,7,2017,March,10,8,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,72.96,1,1,Check-Out,Kelly Marquez,malexander@example.com,001-791-975-8163x47378,6011055639356474,2024-09-20 +City Hotel,0,2,2017,October,40,7,0,1,1,1.0,0,BB,PRT,Corporate,Direct,0,0,0,A,F,0,No Deposit,12.0,58.0,0,Transient,0.5099000000000001,0,0,Check-Out,Keith Hernandez,washingtonheather@example.org,(276)473-3978x14539,30540124234559,2025-08-19 +City Hotel,0,0,2017,September,37,13,2,0,2,1.0,0,SC,,Complementary,Direct,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,2.54,0,0,Check-Out,Brittany Williams,mcmahonvincent@example.net,001-612-405-5489x980,503875828561,2025-12-26 +City Hotel,1,94,2017,March,10,5,1,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,107.83,0,1,Canceled,Tammy Wiley,who@example.net,257.568.2430x624,4652636961757287,2025-01-24 +Resort Hotel,0,0,2017,July,29,16,1,1,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient-Party,114.19,1,0,Check-Out,Jessica Sexton,savila@example.org,3809125171,4328472490088151272,2025-08-12 +City Hotel,0,52,2017,March,10,5,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,95.22,0,1,Check-Out,Amber Lindsey,amysanchez@example.net,(214)347-5203x468,30248005787758,2025-08-16 +City Hotel,0,18,2017,April,14,3,1,4,2,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,122.62,1,2,Check-Out,Jennifer Moreno,chadmendoza@example.com,363.925.2824,3519357763826981,2025-06-15 +City Hotel,0,2,2017,October,42,20,0,3,3,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,30.0,179.0,0,Group,109.09,0,0,Check-Out,Caitlin Martin,kstrong@example.net,(269)251-5386,4867524201822270,2024-10-27 +City Hotel,0,11,2017,April,14,3,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,138.67,0,1,Check-Out,Joan Brown,christopher74@example.net,516.269.9173x018,180040148718719,2024-12-21 +City Hotel,0,16,2017,March,10,6,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.39,0,0,Check-Out,Mary George,gabrieljennings@example.org,201-423-8749,4806538761090031,2026-03-17 +Resort Hotel,0,19,2017,March,10,2,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,27.0,179.0,0,Transient,44.11,0,0,Check-Out,Karen Walker DDS,josephbell@example.org,001-657-590-4199x8162,3544073571205925,2024-08-31 +Resort Hotel,0,141,2017,August,35,27,1,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,F,0,No Deposit,247.0,179.0,0,Transient,127.16,0,1,Check-Out,Matthew Lopez,stephenday@example.org,385.510.0234x341,180003783921246,2026-03-03 +City Hotel,1,192,2017,September,40,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,73.46,0,0,Canceled,Linda Garza,zthompson@example.net,(636)497-6311x62093,30155042940128,2025-03-10 +City Hotel,0,10,2017,December,49,5,2,0,2,0.0,0,BB,NLD,Direct,Direct,0,0,1,A,D,0,No Deposit,16.0,179.0,0,Group,89.85,0,2,Check-Out,Brenda Robinson,kellymichael@example.com,214.549.5415x938,4768505668432,2025-11-20 +City Hotel,0,16,2017,June,23,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,76.0,179.0,0,Transient,104.86,0,1,Check-Out,Colin Wilson,veronica97@example.com,501.435.9335,3587525322217341,2025-03-23 +Resort Hotel,0,264,2017,October,43,26,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,79.0,179.0,0,Transient-Party,85.45,0,0,Check-Out,David Forbes,christina11@example.com,977.354.5734x8842,3558869812369500,2024-12-20 +City Hotel,1,309,2017,August,32,12,0,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,125.21,0,0,Canceled,David Jordan,barrybowman@example.net,8456788992,4866710510926768,2026-02-06 +Resort Hotel,0,34,2017,April,15,9,1,3,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,213.0,0,Transient-Party,74.1,1,0,Check-Out,Antonio Alvarez,kylegreene@example.com,+1-574-286-5998,6011950870948296,2024-07-15 +City Hotel,0,40,2017,October,41,7,0,2,3,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,201.37,0,0,Check-Out,Jeffrey Roberts,williamssummer@example.org,2304101739,4922676415814,2024-03-31 +City Hotel,0,13,2017,April,14,5,1,1,1,0.0,0,SC,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,107.72,0,0,Check-Out,Brandon Robertson,marklandry@example.org,001-360-551-7476,4221072563285430,2024-06-25 +City Hotel,1,142,2017,August,35,30,0,4,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,141.32,0,1,Canceled,Benjamin Acosta,brianwillis@example.net,(910)839-7949x1327,4093804742739308,2025-02-21 +City Hotel,0,13,2017,January,4,22,0,2,1,0.0,0,SC,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,79.47,0,0,Check-Out,Erin Moses,ronald00@example.com,353-945-8637x9103,2241473727866604,2024-07-20 +City Hotel,1,17,2017,October,43,24,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,1,No Deposit,14.0,179.0,0,Transient,139.27,0,0,Canceled,Catherine Preston,ruizelizabeth@example.org,975.701.1731x254,30565479111870,2025-11-07 +Resort Hotel,0,40,2017,October,41,13,0,7,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,59.2,1,1,Check-Out,Francisco Perez,theresaeverett@example.org,321.351.8430x2824,3510725182089739,2024-07-10 +City Hotel,0,57,2017,September,36,8,2,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,E,E,1,No Deposit,3.0,179.0,0,Transient-Party,66.92,0,0,Check-Out,Robert Giles,douglasedwards@example.org,320.581.7928x9335,3591979003272212,2026-01-19 +Resort Hotel,0,0,2017,May,18,3,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,244.0,179.0,0,Transient,114.71,0,1,Check-Out,Susan Osborne,jason82@example.com,(925)241-3403,3546778845437728,2024-12-13 +City Hotel,0,1,2017,December,51,23,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,52.69,1,1,Check-Out,Erika Mckenzie,anthonymoore@example.org,(700)742-0691x136,6011750312854221,2025-11-26 +Resort Hotel,0,30,2017,October,41,9,2,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Group,63.24,0,0,Check-Out,Christian Colon,pwright@example.net,886-629-5125x4943,6011566246271385,2025-06-04 +Resort Hotel,1,17,2017,May,20,17,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,181.43,1,3,Canceled,Rebecca Smith,martinana@example.net,+1-668-447-6813,3504234124106261,2024-09-05 +City Hotel,0,12,2017,October,41,8,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Contract,65.47,0,1,Check-Out,Rose Acosta,amy15@example.org,+1-982-564-7612x16160,2248623246058934,2025-10-22 +City Hotel,0,13,2017,February,6,4,1,2,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,72.39,0,2,Check-Out,Christopher Galloway,danielgarcia@example.net,799.725.8284,4764616141064775,2026-03-05 +City Hotel,0,384,2017,May,19,4,0,1,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,99.39,0,0,Check-Out,Rachael Ray,rogersmonica@example.com,001-405-358-9739x16316,4719322725855,2025-11-11 +City Hotel,1,359,2017,August,32,8,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Contract,74.18,0,0,Canceled,Lauren Mcguire,lambertjennifer@example.org,6082080554,3516000643149314,2026-01-12 +City Hotel,1,166,2017,December,49,2,2,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,105.65,0,0,Canceled,Madison Hansen,brianna35@example.com,+1-413-216-3782,213131075714507,2026-03-18 +City Hotel,0,32,2017,March,13,25,1,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,33.0,331.0,0,Transient,55.42,0,0,Check-Out,Jennifer Price,pmorrison@example.net,(320)204-3451,2242335240187090,2024-06-05 +Resort Hotel,0,39,2017,May,22,28,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,226.99,0,3,Check-Out,Alexis Johnson,ryan18@example.org,332.674.1363,3597499818944644,2024-11-04 +Resort Hotel,0,1,2017,February,7,15,2,0,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Group,32.33,0,1,Check-Out,Gina Mack,qmoyer@example.net,540.226.4994x942,4732476679240,2024-04-01 +City Hotel,1,163,2017,August,33,16,0,4,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,132.71,0,2,Canceled,Catherine Cooper,mjohns@example.org,408.874.0512x1455,30588720585072,2024-06-01 +Resort Hotel,0,150,2017,May,22,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,78.05,0,0,Check-Out,Morgan Johnson,forderic@example.org,+1-327-646-7475x20094,6011250502892578,2025-03-15 +City Hotel,1,233,2017,October,40,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,83.0,179.0,0,Transient,73.47,0,0,Canceled,Daniel Forbes,kwashington@example.com,001-922-625-9379x61470,342581543077776,2024-06-12 +Resort Hotel,0,15,2017,February,9,26,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,75.14,1,1,Check-Out,David Potts,keith22@example.org,262-623-3306,573512569019,2025-02-21 +City Hotel,0,48,2017,April,14,4,2,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,A,B,0,No Deposit,12.0,179.0,0,Transient-Party,79.69,0,0,Check-Out,Ronald Cantu,lopezkeith@example.com,889.376.0391x24894,3527232506494191,2024-04-20 +City Hotel,0,50,2017,March,11,11,2,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,92.57,0,0,Check-Out,Jeremy Stevens,gonzalespamela@example.com,565.342.0279x08439,3598029561833006,2024-07-24 +City Hotel,0,51,2017,October,41,12,0,3,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,75.6,0,0,Check-Out,Thomas Thornton,cassandra55@example.net,754-810-7808x30188,30599786707948,2025-08-12 +Resort Hotel,0,252,2017,July,28,12,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,76.0,179.0,0,Transient,111.19,0,2,Check-Out,Amanda Werner,ehernandez@example.org,477-903-1457x32992,3522350603789316,2026-02-02 +City Hotel,1,377,2017,October,40,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,76.09,0,0,Canceled,Mandy Bailey,antoniomartinez@example.com,(534)294-7933x097,4850835964218,2024-05-29 +City Hotel,0,11,2017,November,45,5,2,1,1,0.0,0,BB,GBR,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,84.83,0,0,Check-Out,Marc Lara,bryan64@example.com,625.840.6940x393,3547588614935813,2026-01-20 +Resort Hotel,0,11,2017,August,34,20,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,1,No Deposit,245.0,179.0,0,Transient-Party,164.74,1,1,Check-Out,Tony Hudson,kristanorris@example.net,(458)445-0647,3564568865794687,2026-01-16 +City Hotel,0,156,2017,September,36,9,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,2.12,0,0,Check-Out,Lindsey Ramos PhD,ortegacourtney@example.com,+1-430-918-0040x164,2720656866810603,2024-12-26 +City Hotel,0,46,2017,November,45,9,0,2,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,171.06,0,3,Check-Out,Angela Galvan,fking@example.com,(802)897-7720,4472618439825415,2026-01-09 +City Hotel,0,35,2017,August,35,30,1,4,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,252.0,0,1,Check-Out,Laurie Mays,hflores@example.com,3235381819,4581139535112119,2024-06-15 +City Hotel,0,84,2017,October,40,2,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,6.0,179.0,0,Contract,201.45,0,0,Check-Out,Allison Howard,caroline83@example.net,836-356-2636x759,3596883566864479,2024-05-13 +Resort Hotel,0,0,2017,January,2,5,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,46.53,0,1,Check-Out,Stephen Phillips,jware@example.net,639.924.5802x870,30079828329001,2024-12-30 +City Hotel,1,82,2017,March,13,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,79.85,0,0,Canceled,Kelly Schultz,holmespaul@example.net,(201)438-8093,378982307790223,2024-07-09 +Resort Hotel,0,1,2017,January,2,2,1,1,2,0.0,0,BB,NLD,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,236.0,179.0,0,Transient-Party,40.31,1,0,Check-Out,Randall Porter,rachel09@example.org,628-995-9403,372508301842318,2025-11-09 +City Hotel,0,0,2017,December,49,4,0,4,2,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,48.34,0,1,Check-Out,Aaron Hunt,hdominguez@example.net,220-444-2105,3557604410926455,2024-11-07 +City Hotel,0,83,2017,February,6,5,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Transient,79.47,0,3,Check-Out,Rachel Ford,brianwilson@example.com,466.866.8178x176,6011301671810220,2026-03-09 +City Hotel,0,26,2017,March,11,12,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,95.68,0,1,Check-Out,Olivia Boone,edwardsjohn@example.com,(460)751-1185,6531017646699941,2024-06-20 +City Hotel,0,345,2017,May,18,3,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,88.36,0,1,Check-Out,Michael Morales,ohuff@example.com,642-493-6241x100,3522080281700133,2025-08-10 +City Hotel,0,30,2017,June,24,12,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,124.61,0,2,Check-Out,Caitlyn Vargas,aprilknight@example.net,597-803-1015x048,3539241599202797,2025-05-01 +Resort Hotel,0,160,2017,July,31,30,2,5,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,108.97,0,2,Check-Out,Christina Welch,brian23@example.com,445-885-7477x8113,2720401751003513,2025-12-31 +City Hotel,0,0,2017,August,31,4,1,0,2,0.0,0,SC,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,51.52,0,0,Check-Out,Lori Sanders,sanchezemily@example.net,+1-671-747-5304x805,3575169181042484,2025-05-27 +City Hotel,0,111,2017,October,41,8,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,111.14,0,1,Check-Out,Megan Parker,joncrawford@example.com,585.556.2366x671,4537195504946,2024-07-30 +Resort Hotel,0,92,2017,August,35,28,0,1,2,2.0,0,BB,,Online TA,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,214.05,0,0,Check-Out,Jared Young,odavis@example.org,(571)609-5183,213167861098531,2025-07-25 +City Hotel,1,17,2017,May,21,22,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,115.21,0,0,Canceled,Marcus Levine,janet79@example.net,576-934-4375x95037,4130166170492210937,2024-04-26 +Resort Hotel,0,14,2017,July,28,10,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,230.97,1,1,Check-Out,Kaitlin Davidson,kaitlyn35@example.org,497-795-9815x68803,4420474872817783306,2026-02-04 +City Hotel,1,107,2017,June,27,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,39,Transient,134.52,0,0,Canceled,Brian Edwards,jbeard@example.com,517.507.1722,180090212692761,2024-05-26 +Resort Hotel,1,47,2017,August,34,25,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,268.0,179.0,0,Transient,131.91,0,1,No-Show,Laura Wang DVM,joseph53@example.org,001-903-493-1987x48672,4859584074442,2025-03-04 +City Hotel,1,336,2017,September,35,2,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,75.59,0,0,Canceled,John Blackburn,george21@example.com,8273356523,4531264077902866,2025-12-02 +City Hotel,1,10,2017,September,37,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,84.0,179.0,0,Transient,107.14,0,0,Canceled,Roberto Bryant,cpowell@example.net,001-740-996-2403x8029,3519610528129681,2024-05-05 +City Hotel,0,51,2017,August,33,15,0,1,2,0.0,0,BB,ISR,Direct,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,2.76,0,1,Check-Out,George Osborne,ghoward@example.org,+1-240-204-3217x1763,6579481743317885,2025-07-23 +Resort Hotel,1,238,2017,July,31,30,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,102.71,0,0,Canceled,Jason Brooks,garciachristine@example.org,001-979-944-0352x75812,30068708089769,2024-05-04 +City Hotel,0,98,2017,March,13,29,1,2,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,11.0,179.0,0,Transient,107.13,0,0,Check-Out,Kristi Wilcox,pamela87@example.org,734-593-3925x20943,3539019381045941,2024-05-10 +City Hotel,1,414,2017,May,21,24,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,110.25,0,0,Canceled,Jeremy Gray,villegasmichael@example.org,883-595-9093,3573168903763221,2024-05-03 +City Hotel,1,21,2017,September,37,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,99.75,0,0,Canceled,Barry Lucero,richjanice@example.org,(975)358-7695x60939,3590848879709006,2024-10-29 +City Hotel,1,2,2017,December,52,30,1,1,2,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,62.0,0,Transient-Party,73.23,0,0,No-Show,Tyler Trujillo,joseph55@example.com,3916587649,3514056647114029,2026-01-31 +Resort Hotel,0,53,2017,October,41,9,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,182.7,1,0,Check-Out,Robert Ewing,katelynfaulkner@example.org,+1-535-462-3203,4115657745821691316,2025-02-27 +City Hotel,1,158,2017,June,25,20,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,174.12,0,0,Canceled,Benjamin Snyder,amy92@example.com,275-268-1385x6769,676289599265,2024-09-25 +City Hotel,1,378,2017,February,9,27,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,29.0,179.0,43,Transient,90.92,0,0,Canceled,Johnny Henry,lopezkrista@example.com,+1-257-899-2148,6011488370430028,2025-10-30 +Resort Hotel,0,36,2017,March,12,19,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,246.0,179.0,0,Transient,101.58,0,3,Check-Out,Jason Wright,courtneywang@example.net,(344)563-7779x1067,370940465813060,2024-05-11 +Resort Hotel,0,25,2017,October,42,17,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,243.0,179.0,0,Group,53.92,0,0,Check-Out,Christina Nguyen,collinschristopher@example.org,4698773943,6011241881563955,2025-02-14 +City Hotel,1,23,2017,June,25,17,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,64.93,0,0,Canceled,Samuel Johnson,gibsonjanet@example.org,+1-701-607-0320,503826800479,2024-06-15 +Resort Hotel,0,2,2017,April,17,23,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,252.0,1,0,Check-Out,Regina Hawkins,fostermadison@example.com,918-519-2280,30355931143152,2024-10-26 +Resort Hotel,0,3,2017,March,10,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,0,No Deposit,13.0,331.0,0,Transient,43.27,0,0,Check-Out,Bruce Adams,bartonnathan@example.com,641.581.6541x972,3505120171671647,2025-06-15 +Resort Hotel,0,0,2017,February,7,15,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,0,No Deposit,14.0,224.0,0,Transient,31.21,0,0,Check-Out,Andrea Jones,simmonsvictoria@example.org,(239)557-3747x098,180066528506127,2024-07-11 +Resort Hotel,1,99,2017,December,52,24,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,113.56,0,2,Canceled,Patrick Williams,oliviathompson@example.org,636-426-7929x443,180030033556506,2025-03-23 +City Hotel,0,1,2017,September,37,10,1,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,D,0,No Deposit,11.0,179.0,0,Transient,163.36,0,1,Check-Out,Jesse Torres,michaelrowland@example.com,+1-447-393-4924x5081,4346004184558123817,2025-09-26 +City Hotel,0,19,2017,May,19,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,105.51,0,1,Check-Out,Justin Carney,waltersmith@example.net,871-991-4066,575219021095,2024-07-04 +Resort Hotel,0,32,2017,December,49,4,0,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,1,No Deposit,238.0,179.0,0,Transient,50.75,1,0,Check-Out,Laura Davis,gutierrezcynthia@example.org,(645)830-0921,36792162998702,2025-03-30 +City Hotel,0,96,2017,September,39,24,0,7,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,101.24,0,2,Check-Out,Roberta Mercado,richardsonlori@example.com,+1-895-464-6365x699,4485280772220129,2024-10-05 +City Hotel,1,328,2017,September,37,9,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,143.49,0,0,Canceled,Jonathan Lopez,kimhayes@example.com,587.903.3237x042,180053298474181,2024-03-27 +Resort Hotel,1,8,2017,May,22,28,2,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,0,E,E,1,No Deposit,333.0,179.0,0,Transient,0.5099000000000001,0,0,No-Show,David Lara,valdezjacob@example.net,950-327-4975x296,2367580909752788,2025-08-03 +Resort Hotel,0,16,2017,August,32,10,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,237.0,179.0,0,Transient,198.52,1,1,Check-Out,Deborah Chan,cynthiaandrews@example.net,+1-275-332-3431x49479,4359732896116669,2025-12-13 +City Hotel,1,304,2017,December,50,12,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,A,0,No Deposit,1.0,179.0,0,Transient,63.41,0,0,Canceled,Katrina Johnson,harriskevin@example.net,9076039852,38223221484771,2025-07-11 +Resort Hotel,0,405,2017,September,36,4,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,62.74,0,1,Check-Out,Mr. Joel Schneider MD,thomas15@example.com,227.228.0517x8666,4629140171572,2025-09-02 +City Hotel,1,414,2017,June,26,23,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,70.0,179.0,0,Transient,115.36,0,0,Canceled,Corey Benson,knelson@example.net,+1-640-472-9423,4424482120350560067,2025-12-02 +Resort Hotel,0,155,2017,March,10,8,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,1,Refundable,13.0,223.0,0,Transient-Party,63.35,0,0,Check-Out,Donald Rhodes,lisaburnett@example.net,479-352-1784,675991700781,2024-06-09 +City Hotel,0,156,2017,June,23,4,0,1,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,128.89,0,0,Check-Out,Amy Jackson,elizabethhughes@example.com,001-809-878-2659x2767,4203341108419,2025-09-16 +Resort Hotel,1,48,2017,December,49,8,1,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,181.77,0,0,No-Show,Ashley Flores,garciakimberly@example.net,001-754-609-3939x886,4906957819224,2024-06-05 +City Hotel,1,163,2017,June,24,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.53,0,1,Canceled,Ebony Sullivan,meltonangela@example.net,5863402074,4456462719162,2025-10-24 +City Hotel,1,44,2017,February,8,17,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.86,0,1,Canceled,Bonnie Atkins,emilylarson@example.org,316-957-1593x225,6571583673186202,2025-11-25 +Resort Hotel,0,2,2017,May,22,28,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,1.61,0,2,Check-Out,Mr. Kenneth Hernandez,dmckay@example.org,713.662.7396,3525684872663563,2025-06-27 +Resort Hotel,1,34,2017,July,30,20,4,6,2,1.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Transient,250.41,0,0,Canceled,Patricia Haynes,brittanysullivan@example.com,(299)828-8407,6011214021955258,2025-10-16 +City Hotel,0,38,2017,July,30,25,1,2,2,1.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,130.81,0,2,Check-Out,Kelly Kim,sharon02@example.org,941-576-1780,4136555251882983,2025-02-21 +City Hotel,0,1,2017,March,10,8,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,97.18,0,1,Check-Out,Shawn Mcmahon,qmurray@example.net,(960)640-8373x1934,639004994583,2024-11-15 +City Hotel,0,1,2017,October,43,26,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,50.0,1,0,Check-Out,Ronald Turner,sarah85@example.org,737-958-8745,4388736049165882,2025-10-21 +Resort Hotel,0,32,2017,December,51,21,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,61,Transient-Party,63.7,0,0,Check-Out,Hayley Perkins,robin35@example.net,(589)811-8608x81586,3588630548156668,2025-09-13 +City Hotel,0,106,2017,June,25,22,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,106.26,0,0,Check-Out,Shelly Williams,david33@example.org,400.488.1870,2661112960997566,2026-02-24 +Resort Hotel,1,0,2017,March,11,17,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,53.89,0,1,Canceled,Steven Smith,davisheather@example.org,9914792673,6011098737632438,2024-05-30 +City Hotel,1,0,2017,March,10,4,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,240.0,0,Transient,1.26,0,0,Canceled,Jose Osborn,gutierrezmark@example.org,6885193557,3527307521259637,2024-12-22 +City Hotel,0,15,2017,September,39,24,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,109.98,0,2,Check-Out,Scott Mason,stephenjohnson@example.org,001-487-584-6024x646,4842873829858533,2025-05-29 +City Hotel,0,145,2017,July,30,23,0,2,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,132.68,1,2,Check-Out,Kristin Ramirez,cpeterson@example.org,605-953-8290x2667,4712428730111899,2026-03-18 +City Hotel,0,104,2017,July,28,12,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,102.53,0,1,Check-Out,Brittany Holmes,andrearobinson@example.net,485-372-8190x64039,5364166240738714,2025-05-14 +Resort Hotel,1,17,2017,August,34,18,2,5,3,2.0,0,BB,IRL,Direct,Direct,0,0,0,G,G,0,No Deposit,249.0,179.0,0,Transient,227.9,0,0,Canceled,Carlos Gray,kaylaflores@example.org,800-932-6549,562673208335,2025-07-18 +City Hotel,1,134,2017,June,24,12,0,3,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,14.0,190.0,0,Transient,135.68,0,1,Canceled,Michelle Hill,dawn40@example.com,536.589.5886x7652,213133201126762,2024-07-06 +City Hotel,0,18,2017,March,10,5,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Transient,109.96,0,1,Check-Out,Ashley Hutchinson,tiffany83@example.net,212-933-5674x49342,38170674873077,2024-07-18 +City Hotel,1,152,2017,July,29,18,0,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,236.0,179.0,0,Transient,232.5,0,0,Canceled,Rhonda Ellis,courtneyhoffman@example.com,+1-597-419-6158x511,3516502835997665,2024-11-16 +Resort Hotel,1,252,2017,July,30,26,2,5,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,G,0,No Deposit,240.0,179.0,0,Transient,252.0,1,2,Canceled,Dustin Nguyen,frostjacqueline@example.com,+1-854-510-5513x60820,4998825531396279,2024-11-02 +City Hotel,1,14,2017,November,44,4,2,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,61.71,0,0,Canceled,Steven Schultz,njackson@example.net,723.934.3247x8939,2272759086444641,2025-01-08 +City Hotel,1,170,2017,July,29,17,1,0,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,88.79,0,0,Canceled,Steven Smith,ashleymorris@example.org,3758624225,4762526744231,2025-12-28 +City Hotel,1,289,2017,September,37,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,188.82,0,0,Canceled,Alisha Fernandez,natalie14@example.net,(318)823-2710,4727442852137,2024-05-10 +City Hotel,1,149,2017,March,14,30,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,72.0,179.0,0,Transient,128.12,0,0,Canceled,Betty Vega,carlhatfield@example.org,001-403-433-0844x955,501831187510,2024-12-29 +City Hotel,1,9,2017,March,13,23,1,4,2,0.0,0,SC,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,163.0,179.0,0,Transient,112.38,0,0,Canceled,Tyler Smith,reneepark@example.net,731.716.0819,30421663938860,2025-06-21 +City Hotel,1,327,2017,July,30,24,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,D,0,No Deposit,139.0,179.0,0,Contract,125.82,0,0,Canceled,Carrie Kennedy,lindsay14@example.net,001-774-490-8279,213179606699358,2025-05-17 +City Hotel,0,23,2017,April,15,6,0,1,1,0.0,0,BB,BEL,Online TA,GDS,0,0,0,A,A,0,No Deposit,194.0,179.0,0,Transient,97.42,0,0,Check-Out,Mark Cross,xramirez@example.com,+1-802-868-8522x107,2360531585846946,2025-04-05 +City Hotel,0,11,2017,September,38,17,2,6,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,236.6,0,0,Check-Out,Lori Henderson,brendadillon@example.org,937.502.9860,213162458198307,2024-05-24 +City Hotel,0,401,2017,October,40,4,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,88.79,0,0,Check-Out,Christina Lynch,nicholas59@example.com,260-993-9275x830,180048187261285,2025-04-04 +Resort Hotel,0,145,2017,February,8,21,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,26.0,179.0,0,Transient,41.06,0,0,Check-Out,Troy Martinez,velazqueztimothy@example.org,(509)299-6290x048,36714822948323,2024-05-29 +Resort Hotel,0,37,2017,December,51,18,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,55.94,0,0,Check-Out,Ashley Hanson,cynthia47@example.net,271-670-0827x5531,3547416442541456,2025-09-07 +Resort Hotel,0,26,2017,March,10,9,1,0,2,0.0,0,FB,FRA,Groups,Direct,0,0,0,L,A,0,No Deposit,14.0,179.0,0,Transient,72.64,1,0,Check-Out,Trevor Weiss,sarah99@example.org,+1-260-777-8714,4842188961247001,2024-09-06 +City Hotel,1,244,2017,July,26,1,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,1.0,179.0,0,Transient-Party,131.04,0,0,Canceled,Patricia Stein,kayla23@example.com,800.956.7012x2829,6011791866971532,2025-02-24 +Resort Hotel,0,146,2017,June,25,20,4,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,112.36,0,1,Check-Out,Brittany Jackson,barbara31@example.com,502.651.8625,2290909079392905,2025-11-10 +City Hotel,0,9,2017,December,49,2,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,110.59,0,1,Check-Out,Eric Taylor,carneyjeffery@example.net,835.235.4230,30109140386452,2024-11-10 +Resort Hotel,0,51,2017,December,51,19,4,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,142.95,0,2,Check-Out,Randy Myers,htaylor@example.net,+1-220-221-1140x43151,213190328072840,2024-04-29 +Resort Hotel,0,0,2017,December,49,7,1,0,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,46.06,0,0,Check-Out,Daniel Warren,elamb@example.net,986.945.0105x998,4695109598163484,2024-09-03 +Resort Hotel,0,9,2017,December,52,24,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,47.32,1,0,Check-Out,Angela Todd,clarkcarol@example.org,001-209-754-2200,3569254701515702,2024-11-12 +City Hotel,1,381,2017,October,42,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,11.0,179.0,0,Transient,99.49,0,0,Canceled,Linda Weaver,davidlong@example.org,+1-851-903-2672x8630,2268765494171151,2024-10-21 +City Hotel,0,32,2017,September,39,24,2,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,170.48,0,0,Check-Out,Wanda Martin,calderonwilliam@example.net,+1-306-349-4727x4728,4916261812575,2025-02-02 +Resort Hotel,0,80,2017,May,20,16,1,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,E,0,No Deposit,15.0,179.0,0,Transient,125.27,1,2,Check-Out,Cheryl Thompson,nancymontgomery@example.com,553-687-7923x06916,581170461833,2025-10-16 +City Hotel,0,0,2017,February,6,9,0,1,1,1.0,0,BB,SWE,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,77.79,0,0,Check-Out,Elizabeth Webster,bradley11@example.com,419-306-8318x589,2250785891671371,2025-06-25 +City Hotel,0,43,2017,April,15,12,2,3,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,167.66,1,2,Check-Out,Mrs. Lauren Wallace,deanjames@example.org,227.762.7664x7537,4953240469599,2025-11-17 +City Hotel,1,164,2017,June,23,2,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,7.0,179.0,0,Transient,113.87,0,0,Canceled,Michael Miranda,cruzwendy@example.com,+1-620-856-5249,3567361109749056,2024-07-06 +Resort Hotel,1,42,2017,August,32,4,1,4,3,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,238.0,179.0,0,Transient,237.81,1,1,Canceled,Charles Moon,vbrock@example.org,697.226.0139,580399608018,2025-01-25 +City Hotel,1,121,2017,March,13,26,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient-Party,79.49,0,0,Canceled,Mason Griffin,vanessawelch@example.com,001-221-772-6931x79608,3571590892434617,2025-10-23 +City Hotel,1,106,2017,March,13,26,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,65.0,0,Transient,92.09,0,2,Canceled,Emily Landry,collinschristine@example.net,223.775.8594x977,30144443258322,2024-06-25 +City Hotel,0,312,2017,September,36,9,2,4,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,F,0,No Deposit,10.0,179.0,0,Transient-Party,98.35,0,0,Check-Out,Angela Green,daniel30@example.org,(203)509-7186,3571286954425383,2024-08-18 +Resort Hotel,0,6,2017,November,46,12,0,1,3,0.0,0,BB,,Corporate,Corporate,0,0,0,A,E,0,No Deposit,15.0,241.0,0,Transient-Party,52.42,0,0,Check-Out,Samantha Scott,bponce@example.com,001-849-856-6168,4285147820460506,2024-05-04 +Resort Hotel,0,43,2017,May,20,13,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,134.0,179.0,0,Transient-Party,107.42,0,1,Check-Out,John Klein,kalexander@example.org,001-916-764-6150,6011800560160712,2026-01-01 +Resort Hotel,0,64,2017,March,9,3,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,62.43,0,0,Canceled,Wanda Odonnell,alexanderadam@example.org,001-694-542-0751,213193937086631,2024-10-21 +Resort Hotel,0,73,2017,July,28,12,2,5,2,1.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,C,I,1,No Deposit,172.0,179.0,0,Transient,3.41,0,2,Check-Out,Mandy Ritter,henry93@example.org,+1-583-220-8393x034,370847608379299,2025-08-12 +Resort Hotel,0,140,2017,July,27,1,4,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,128.98,0,1,Check-Out,Patricia Martin,bcox@example.com,577.989.4110x7653,3595135749794151,2025-09-25 +City Hotel,1,140,2017,February,8,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient,42.58,0,0,Canceled,Greg Vega,samuelcastro@example.com,(393)523-7335,341342413192604,2025-12-24 +City Hotel,0,0,2017,November,46,12,0,1,3,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,0,No Deposit,14.0,331.0,0,Transient,3.68,0,0,Check-Out,Andres Vasquez,fitzgeraldapril@example.com,298.252.3197,4716634996366795011,2025-11-02 +Resort Hotel,0,144,2017,August,35,24,0,1,2,2.0,0,BB,ESP,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,201.25,1,0,Check-Out,Renee Holland,mcintyrelacey@example.com,001-737-980-8904,213150521541827,2025-02-02 +Resort Hotel,0,37,2017,December,51,20,2,2,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,243.0,179.0,0,Transient,222.59,1,1,Check-Out,Rachel Kim,perezkayla@example.com,+1-383-648-6771x0585,4208193900748,2025-03-28 +City Hotel,0,16,2017,July,30,27,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,63,Transient-Party,130.95,0,0,Check-Out,Daniel Navarro,veronicahenson@example.net,414-395-6245,4101290697632,2026-01-20 +City Hotel,0,0,2017,April,14,6,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,I,1,No Deposit,15.0,45.0,0,Transient-Party,55.81,0,0,Check-Out,Stacy Branch,jacksonmason@example.com,5287347872,6011465695563980,2026-01-27 +City Hotel,0,229,2017,October,40,4,2,6,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Contract,63.52,0,0,Check-Out,Aaron Wong,dominguezmichael@example.com,(624)545-0803x3090,180017156092518,2025-02-08 +City Hotel,0,77,2017,January,4,20,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,133.0,226.0,0,Transient,109.54,0,0,Check-Out,April Tapia,johnsonhannah@example.net,+1-389-619-4538,3553029241375454,2025-12-11 +Resort Hotel,0,1,2017,April,15,7,2,1,2,2.0,0,HB,NLD,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,145.31,1,0,Check-Out,Dr. Paul Reyes,kimberly18@example.com,+1-831-714-2703,340873761009801,2024-05-10 +Resort Hotel,1,171,2017,August,33,18,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,112.49,0,1,Canceled,Tiffany Kelly,nancy84@example.net,001-704-940-0360x02374,4508962953382389,2026-01-14 +City Hotel,0,86,2017,October,42,19,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,25.0,179.0,0,Contract,66.54,0,1,Check-Out,Summer Friedman,chelseycoleman@example.com,001-786-744-7177x3617,564638701362,2024-09-30 +City Hotel,0,17,2017,June,25,16,1,2,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,226.0,0,Transient-Party,80.01,0,0,Check-Out,Susan Stewart,samantha49@example.com,(832)602-7698x7374,4179381494464440,2025-12-05 +City Hotel,0,92,2017,May,19,4,2,3,3,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,128.86,0,1,Check-Out,Courtney Cook,thomas17@example.com,538.761.4285,4315169992006503893,2024-11-06 +City Hotel,0,109,2017,April,18,30,1,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.96,0,0,Check-Out,Daniel Cannon,fscott@example.com,910.881.8424x15506,560898994432,2025-06-11 +City Hotel,1,384,2017,June,26,26,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,103.43,0,0,Canceled,Amanda Wright,lowerylaura@example.net,001-301-252-5941x33335,4296398688213479803,2025-08-31 +City Hotel,1,197,2017,September,36,2,1,4,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,68.0,179.0,0,Transient,126.9,0,0,Canceled,Wendy Vargas,jonescassandra@example.net,766-477-6697x1078,5414884319282907,2025-08-30 +City Hotel,0,164,2017,March,10,10,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,25.0,179.0,0,Transient-Party,81.7,0,0,Check-Out,Rachael Brown,michellesanders@example.net,001-626-233-5912,3588431594804123,2025-10-31 +City Hotel,0,96,2017,April,17,28,0,2,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,134.84,1,3,Check-Out,Nicholas Shelton,barnesjoshua@example.net,4278049280,213120659528573,2024-07-24 +City Hotel,0,0,2017,March,12,23,2,0,1,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,A,D,0,No Deposit,15.0,159.0,0,Transient,95.84,0,0,Check-Out,Philip Crane,lunajack@example.net,910.226.8532x613,376780244469899,2024-11-06 +City Hotel,1,255,2017,November,47,23,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,75.79,0,0,Canceled,Todd Mercado,james34@example.net,(271)217-8040,6541852740747818,2024-11-27 +City Hotel,1,63,2017,June,26,27,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.72,0,1,Canceled,Patrick Valenzuela,maddenhaley@example.com,344.958.8032,2222940980004845,2024-07-22 +City Hotel,0,181,2017,October,41,12,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,78.73,0,0,Check-Out,Mark Moore,chapmanelizabeth@example.org,+1-564-315-4419x0457,3593360643917607,2025-10-21 +City Hotel,0,25,2017,August,35,27,2,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,2,No Deposit,9.0,179.0,0,Transient,248.62,0,2,Check-Out,Sherry Salinas,lindaschultz@example.com,+1-875-636-4154,060494729324,2024-05-07 +City Hotel,1,0,2017,June,26,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,59.0,0,Transient,76.94,0,0,No-Show,Christopher Sandoval,patriciaschultz@example.com,591.222.8077x0296,373456991603815,2024-09-29 +City Hotel,0,403,2017,September,37,12,1,2,1,0.0,0,SC,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,221.0,0,Transient,106.54,0,0,Check-Out,Erin Wilson,summer56@example.net,(805)717-5189,2268173839714100,2025-02-18 +Resort Hotel,0,126,2017,March,12,24,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,12.0,222.0,0,Transient-Party,75.34,0,0,Check-Out,David Beltran,peter74@example.net,471.686.2282,213185724214814,2026-01-13 +City Hotel,0,36,2017,December,52,23,1,1,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,65.97,0,0,Check-Out,Blake Rosales,gregorybarron@example.org,001-770-820-5750x335,3563047139861581,2025-05-13 +City Hotel,1,143,2017,September,35,1,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,10.0,179.0,0,Transient,252.0,0,2,Check-Out,Terri Brown,christinajones@example.com,(745)626-7043x66853,4222538427854347,2025-12-15 +City Hotel,0,112,2017,April,15,8,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,108.37,0,0,Check-Out,Mark Cook,johnsonheather@example.net,451-904-9816x8326,3544947702825356,2024-04-17 +Resort Hotel,0,4,2017,December,52,30,2,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,254.0,179.0,0,Transient,53.16,0,1,Check-Out,Joe Phillips,jessicapatel@example.com,001-211-827-3590x063,4133489835522357288,2025-03-28 +City Hotel,0,4,2017,April,15,7,1,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,88.98,0,1,Check-Out,Brian Wu,samanthagonzalez@example.org,627-577-0927,30064807320171,2024-11-12 +City Hotel,1,197,2017,July,28,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,129.89,0,0,Canceled,Eric Phillips,ericconley@example.org,(678)570-1633,340232427721657,2024-04-06 +Resort Hotel,0,43,2017,May,19,5,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,236.0,179.0,0,Transient,139.89,0,1,Check-Out,Rachel Tyler,hware@example.com,8734109129,4785120115771,2025-12-03 +Resort Hotel,1,312,2017,August,33,14,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,45.97,0,1,Canceled,Amanda Fletcher,hcarr@example.net,9619318673,4913735501411986,2025-06-18 +Resort Hotel,1,256,2017,December,49,3,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,240.0,179.0,0,Transient,78.8,0,0,Canceled,Meredith Freeman,elizabethpatel@example.org,696.491.4326,6570834280941591,2025-06-28 +Resort Hotel,1,15,2017,July,30,27,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,140.55,0,0,Canceled,Steven Rodgers MD,howardkyle@example.net,392-599-3712,4298886321503943,2025-01-06 +City Hotel,1,50,2017,August,34,23,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient,123.07,0,0,Canceled,Robert Rowland,christopher73@example.com,690-282-4542x9137,374162431812847,2024-11-12 +City Hotel,1,276,2017,July,31,29,2,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,133.64,0,0,Canceled,Ms. Brandy Craig,kelly74@example.net,744.237.6851x2089,347625151062334,2025-05-04 +City Hotel,1,379,2017,March,13,26,0,1,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,75,Transient-Party,59.52,0,0,Canceled,Veronica Smith,ecooper@example.net,+1-794-455-8177,3539669192483267,2024-06-09 +City Hotel,1,23,2017,December,49,6,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,18.0,179.0,0,Transient,88.53,0,1,Canceled,Eric Villanueva,pricenicole@example.org,207-453-4808,6011525822847497,2024-08-29 +City Hotel,1,166,2017,May,22,30,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,129.89,0,0,Canceled,William Chan,stanleyregina@example.com,246-966-8246x976,3501983571649990,2025-12-13 +City Hotel,0,16,2017,April,14,3,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,114.49,0,0,Check-Out,Rachel Smith,jason20@example.com,3183028657,4644993563189,2026-01-31 +Resort Hotel,0,0,2017,November,45,5,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,99.91,0,0,Check-Out,Lisa Lee,garciarebecca@example.net,540.808.1643x4555,30148137505302,2024-03-27 +Resort Hotel,0,375,2017,April,17,24,0,4,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,78.11,0,0,Check-Out,Crystal Hahn,caldwelldenise@example.net,281-561-5627x65648,3510203644434224,2025-02-15 +City Hotel,1,0,2017,May,22,28,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,42,Transient,97.86,0,0,Canceled,Cheryl Wood,aperez@example.com,001-713-255-4331x686,30344214278299,2024-04-22 +City Hotel,0,7,2017,February,7,12,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,82.69,0,1,Check-Out,Ronald Wright,pamela12@example.com,(209)291-2813x27747,503810462369,2025-03-28 +Resort Hotel,0,3,2017,February,9,27,0,1,1,1.0,0,BB,PRT,Complementary,TA/TO,0,0,0,H,H,2,No Deposit,245.0,179.0,0,Transient,47.99,1,0,Check-Out,Ashley Huynh,wsims@example.com,(751)764-4975x2258,5468056391387681,2025-05-28 +Resort Hotel,1,161,2017,August,31,2,0,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,1,0,F,F,1,No Deposit,241.0,179.0,0,Transient,224.91,0,0,Canceled,Rebecca Johnson,elizabethpineda@example.org,916.284.3766x35116,180013536439842,2025-09-24 +Resort Hotel,1,240,2017,October,43,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,63.64,0,0,Canceled,Krista Robertson,beverly85@example.org,8768881864,4545818665134457,2025-05-10 +City Hotel,0,147,2017,July,29,14,0,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,111.37,0,0,Check-Out,Susan Gardner,garciapamela@example.org,(731)240-9890,4346689130188,2026-02-23 +Resort Hotel,1,96,2017,March,12,19,2,2,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,88.34,0,2,Canceled,Kimberly Miles,maydaniel@example.org,775-430-1672x4749,2707112482546814,2025-08-06 +City Hotel,0,1,2017,November,45,7,1,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,240.0,179.0,0,Transient,166.19,0,1,Check-Out,Virginia Ford,awalters@example.org,308-502-7113,344680883324679,2024-11-22 +Resort Hotel,0,63,2017,June,26,24,1,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,100.1,0,2,Check-Out,Christopher Aguilar,adam61@example.com,4672137073,3518443298529901,2025-03-09 +City Hotel,1,53,2017,August,34,25,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,2.0,179.0,0,Transient-Party,176.47,0,0,Canceled,Karen Williams,xbauer@example.net,3773857987,582684713024,2025-07-11 +Resort Hotel,1,35,2017,November,48,27,3,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,F,2,No Deposit,239.0,179.0,0,Transient,110.46,0,0,Canceled,Susan Young,melissabaker@example.com,455-526-4454,180080381157225,2025-08-11 +City Hotel,0,156,2017,April,14,3,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Group,63.58,0,0,Check-Out,Mary Anthony,hurstchristine@example.net,598.990.9892x435,4523442251971370210,2025-10-23 +City Hotel,1,119,2017,July,29,13,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.53,0,0,Canceled,Shannon Davis,christinetate@example.com,(833)561-7324,378917546460253,2024-12-11 +City Hotel,0,13,2017,October,42,20,0,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.05,0,1,Check-Out,Christopher Hill,julian16@example.org,496-850-3312,6544111198206968,2026-02-20 +City Hotel,0,57,2017,September,38,23,2,4,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,85.0,179.0,0,Transient-Party,141.68,0,0,Check-Out,Joe Perry,jefferyho@example.com,682-842-6652x5067,582155455204,2024-05-29 +City Hotel,1,21,2017,August,32,6,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,129.08,0,1,No-Show,Andrew Walker,sbuchanan@example.net,+1-434-953-4860x147,4724258056291,2025-06-30 +City Hotel,0,61,2017,April,16,16,0,2,1,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,122.78,0,3,Check-Out,James Jones,mason81@example.com,001-294-820-8855x33103,6547205630080259,2025-03-08 +City Hotel,0,14,2017,November,44,2,0,1,1,0.0,0,BB,GBR,Online TA,Corporate,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient,97.36,0,2,Check-Out,Deanna Long,nhorn@example.com,001-783-649-5160x76455,30241159530678,2024-12-25 +City Hotel,1,207,2017,June,25,15,3,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,109.69,0,0,Canceled,Matthew Hale,hyoung@example.com,(498)295-0792,3526390416836272,2024-09-17 +Resort Hotel,0,79,2017,November,44,4,2,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,197.62,1,2,Check-Out,Nicole Bradford,derek80@example.org,658-730-3284x156,2512386676628332,2024-03-31 +City Hotel,0,153,2017,October,42,17,1,0,2,0.0,0,SC,GBR,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,90.78,0,0,Check-Out,Denise Hill,tcook@example.org,692-337-4531x147,3515596264113142,2025-07-20 +City Hotel,1,109,2017,March,12,19,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.22,0,1,Canceled,Joshua Miller,gomeznathan@example.org,5138509393,213105929120962,2024-10-13 +City Hotel,0,1,2017,October,40,7,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,83.68,0,0,Check-Out,Dennis Jackson,carlosroberts@example.com,+1-296-310-5687x0410,180064624223903,2024-08-30 +City Hotel,0,4,2017,September,35,2,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,88.13,0,1,Check-Out,Casey Cook,wanderson@example.net,(303)703-4180,4711871679174285143,2024-04-23 +City Hotel,0,0,2017,March,12,20,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,B,1,No Deposit,16.0,179.0,0,Transient,3.79,0,0,Check-Out,Adrian Garcia,jason87@example.net,485-902-6669,213181301710464,2026-01-25 +City Hotel,0,15,2017,October,40,4,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,119.54,0,0,Check-Out,Amber Snyder,mark87@example.net,001-640-712-8018x46405,3520628834006416,2024-07-10 +City Hotel,1,76,2017,July,27,4,2,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,10.0,179.0,0,Transient,142.66,0,0,Canceled,Eric Dickerson,harmonsteven@example.org,557.785.3338,377947693539519,2024-11-03 +Resort Hotel,0,51,2017,November,47,25,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,81.35,0,0,Check-Out,Christopher Dennis,donaldmckee@example.org,420-692-2319x88079,4317661444098882,2025-06-08 +City Hotel,0,115,2017,September,37,13,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,95.96,0,1,Check-Out,Tammy White,steve44@example.net,001-643-561-3322x432,6011697993855466,2025-09-19 +City Hotel,0,49,2017,April,17,27,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,126.19,0,1,Check-Out,Sandra Moore,velasquezlori@example.org,001-630-827-1833,4425167845480248063,2024-09-27 +City Hotel,1,270,2017,July,27,4,1,2,3,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,121.8,0,0,No-Show,Sarah Jackson,cherylrodriguez@example.org,840.525.6384x86584,4488999635406723287,2025-03-14 +City Hotel,1,156,2017,September,40,30,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,0,Transient,95.59,0,0,Canceled,Monica Fitzpatrick,bailey28@example.com,+1-315-337-3294,4578928097819809654,2024-05-21 +Resort Hotel,0,70,2017,April,18,30,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,149.0,179.0,0,Transient-Party,64.7,0,0,Check-Out,Dana Grimes,malonepeter@example.org,(668)280-1743,3528500040394849,2025-08-31 +City Hotel,0,17,2017,June,25,19,0,1,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,116.42,0,0,Check-Out,Connie Jones,bradfordcraig@example.com,6113879288,4332825273763856977,2026-01-13 +City Hotel,0,91,2017,December,49,5,0,4,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,89.72,0,1,Check-Out,Tyler Hall,spencertammy@example.com,657.638.6664,213170674176916,2024-06-06 +Resort Hotel,1,107,2017,April,18,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,108.57,0,1,Canceled,Joel Sherman,montgomerystephen@example.net,735.829.6401,4909721289981057,2025-06-24 +Resort Hotel,0,161,2017,May,18,1,1,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,Refundable,16.0,223.0,0,Transient-Party,82.65,0,0,Check-Out,Jessica Marshall,catherineedwards@example.com,266.943.3217x922,4960929946094,2025-09-17 +Resort Hotel,0,2,2017,September,38,21,1,0,2,0.0,0,SC,,Complementary,Corporate,0,0,0,A,I,1,No Deposit,12.0,179.0,0,Transient,1.9,0,0,Check-Out,Matthew Hicks,hchandler@example.org,547-755-1502x67889,30091052809533,2025-09-28 +City Hotel,1,342,2017,September,37,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,0,Transient,99.52,0,0,Canceled,Alexander Lopez,quinnchristopher@example.com,515.781.9535,4191698946899447902,2026-01-12 +Resort Hotel,0,40,2017,August,31,4,1,1,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,237.0,179.0,0,Transient-Party,163.06,0,1,Check-Out,Tiffany Sellers,tracey40@example.com,911-354-7088x71554,3518075703177205,2025-01-19 +City Hotel,0,10,2017,May,19,6,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,129.45,0,1,Check-Out,Terrence Mitchell,brownmichael@example.org,852.707.7308,4076804162267377,2025-12-31 +Resort Hotel,0,79,2017,April,18,30,0,3,3,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,129.93,0,1,Check-Out,Amy James,smithbrett@example.org,+1-466-964-9445x394,377171657328682,2024-07-28 +Resort Hotel,0,171,2017,August,32,9,2,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,205.71,0,0,Check-Out,Debbie Lucas,riveracraig@example.com,(203)274-4084x6452,3588047881377845,2025-07-08 +City Hotel,1,234,2017,June,26,22,1,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,0,No Deposit,12.0,188.0,0,Transient,110.44,0,0,Canceled,Rachael Larson,jordanwilliams@example.net,643-253-8670x799,213147723515146,2025-07-07 +Resort Hotel,0,2,2017,March,10,5,1,5,1,0.0,0,HB,PRT,Direct,Direct,1,0,1,A,C,1,No Deposit,341.0,179.0,0,Transient-Party,38.34,0,0,Check-Out,Jeffery Roberts DVM,sharonhernandez@example.net,602.574.7398x9850,180014212591732,2025-12-27 +Resort Hotel,1,42,2017,September,36,5,4,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,129.43,0,0,Canceled,Lisa Cunningham,catherinegraham@example.net,503.376.8950x518,4085461979814,2024-07-02 +Resort Hotel,0,94,2017,May,22,27,0,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,G,1,No Deposit,83.0,179.0,0,Transient-Party,156.61,0,1,Check-Out,Karen Lee,denisebentley@example.com,(433)249-2393,2298837096929718,2024-05-06 +Resort Hotel,0,5,2017,May,22,27,1,1,1,0.0,0,HB,PRT,Direct,Corporate,0,0,0,A,I,1,No Deposit,247.0,179.0,0,Transient,4.29,1,1,Check-Out,Erika Avila,frances76@example.org,845-544-1895x0586,2274749516856629,2024-06-17 +Resort Hotel,1,191,2017,March,10,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Transient,55.14,0,1,Canceled,Suzanne Mayo,sarahlopez@example.org,868-876-2370x289,2719587971330299,2025-06-22 +City Hotel,1,126,2017,July,30,22,1,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,D,0,Non Refund,10.0,179.0,0,Transient,109.97,0,1,Canceled,Angela Smith,antoniotaylor@example.net,946.696.1039x96888,36097616920850,2025-11-17 +Resort Hotel,1,150,2017,March,11,15,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,35.95,0,2,No-Show,Samuel Ruiz,xprice@example.org,(748)718-0282,4585786119319,2026-01-07 +City Hotel,1,414,2017,August,31,5,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,146.75,0,0,Canceled,Shawn Braun,nicholaswaller@example.org,849.907.6480x6331,2237871472007371,2025-10-27 +City Hotel,0,45,2017,June,24,11,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,7.0,179.0,0,Transient,141.36,0,1,Check-Out,Veronica Oconnor,daletanner@example.net,883-813-2964x54635,6011085898024133,2024-09-18 +City Hotel,0,1,2017,January,2,5,0,1,2,2.0,0,BB,BRA,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,135.15,0,0,Check-Out,Mark Jones,nlewis@example.com,(934)769-3658,348826416932183,2025-12-07 +Resort Hotel,1,146,2017,June,23,5,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,75,Transient,234.84,0,0,Canceled,Meghan Williams,istevenson@example.org,+1-224-987-5231x0268,4277767148011440,2025-07-16 +City Hotel,0,100,2017,May,22,30,1,5,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.78,0,0,Check-Out,Charlene Brown,christopher72@example.com,+1-887-872-7023x5453,3583636309342293,2025-08-27 +Resort Hotel,1,37,2017,August,33,14,0,4,2,2.0,0,BB,PRT,Direct,TA/TO,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Contract,130.59,0,0,Canceled,Lori Hall,tguerra@example.org,328-959-1567x88712,36361483883850,2024-04-17 +City Hotel,1,2,2017,August,32,9,1,0,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,2.99,0,0,Canceled,Candace Kaufman,colin57@example.com,290-818-5538x54349,4758636386590304147,2025-07-05 +City Hotel,1,109,2017,June,27,30,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,111.3,0,1,Canceled,Eddie Wood,hortonchristopher@example.net,964-724-6411,3502551271169970,2024-08-25 +Resort Hotel,1,263,2017,May,18,4,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,63.25,0,0,Canceled,Hannah Donaldson,melissafranklin@example.com,628.761.0231,3529931258629833,2024-08-30 +City Hotel,1,215,2017,June,23,5,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,72.0,179.0,0,Transient,108.69,0,0,Canceled,Susan Valentine,krubio@example.org,001-888-945-6765x4668,3524382290939266,2025-09-26 +City Hotel,0,113,2017,November,44,1,0,5,1,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,1,No Deposit,15.0,179.0,0,Transient,134.98,0,1,Check-Out,Thomas Fletcher,ojohnson@example.net,579.903.3687,4597177928165858,2024-06-26 +Resort Hotel,0,152,2017,July,30,27,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,185.0,179.0,0,Transient,102.62,0,3,Check-Out,Donna Robles,jason81@example.net,350.454.6594x624,4658817269532089195,2024-07-13 +Resort Hotel,0,0,2017,August,32,9,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,163.09,0,0,Check-Out,Monica Stevens,jacqueline68@example.net,001-849-483-4545,4341929885192716,2024-11-04 +City Hotel,0,61,2017,July,29,13,2,1,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.13,0,1,Check-Out,Joy Johnson,zayala@example.net,(610)208-8765x590,4043159709102747590,2024-05-29 +City Hotel,0,271,2017,June,23,2,1,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,E,A,0,No Deposit,31.0,179.0,0,Transient-Party,102.46,0,0,Check-Out,Kristin Cole,kristophervargas@example.com,(574)797-9124x021,3549453989716256,2025-09-03 +City Hotel,1,355,2017,July,28,13,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.47,0,0,Canceled,Nichole Martinez,sawyerjames@example.org,(494)449-2435x57259,4803557897827,2025-10-14 +Resort Hotel,0,1,2017,February,6,6,0,2,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,K,0,No Deposit,158.0,179.0,0,Transient,47.63,1,2,Check-Out,Raymond Martinez,valerie47@example.net,+1-792-483-4766x58111,4455501182051,2024-07-20 +City Hotel,1,200,2017,July,30,26,2,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.03,0,3,Canceled,Lee Patel,lewisrichard@example.com,(592)547-1853,4342599093325972051,2025-04-21 +City Hotel,0,137,2017,May,22,26,1,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,A,1,No Deposit,15.0,185.0,0,Transient,112.4,0,0,Check-Out,Jesse Miller,wendy28@example.com,792-653-5696x617,4930246034243853,2024-06-25 +Resort Hotel,1,103,2017,May,22,28,2,3,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,97.89,0,0,Canceled,Emily Le,sflores@example.org,743.815.0225x57918,4455348265743976,2025-04-16 +City Hotel,1,0,2017,January,2,12,0,1,3,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,62.92,0,0,Canceled,Sara Harris,jerry23@example.org,(759)544-0443x15215,3573936813169279,2024-07-05 +Resort Hotel,0,154,2017,July,29,15,4,1,2,0.0,0,HB,,Online TA,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,237.06,0,1,Check-Out,Johnathan Villarreal,coxerika@example.org,989-420-5859x8490,6011775699872553,2024-10-31 +City Hotel,1,66,2017,March,10,9,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,61.16,0,0,Canceled,Allen Jones MD,geraldwright@example.com,773-838-6278x356,502071427566,2025-10-01 +City Hotel,0,13,2017,March,10,5,1,3,2,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,102.89,1,0,Check-Out,Travis Bender,wongmary@example.net,+1-369-429-7298x20805,2311082550179285,2024-10-19 +City Hotel,1,38,2017,October,43,27,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,35.0,179.0,0,Transient,75.41,0,0,Canceled,Claudia Yates,spierce@example.net,(964)951-1702,676159139705,2025-03-25 +City Hotel,1,38,2017,October,43,26,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,79.0,179.0,41,Transient,84.49,0,0,Canceled,Rachel Rodriguez,dpope@example.net,352-334-1915x62795,4529835477512467338,2025-12-23 +City Hotel,0,1,2017,August,31,3,0,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,162.95,0,0,Check-Out,Benjamin Thompson,kenneth49@example.com,974.293.6727x017,2703748473081412,2024-05-26 +City Hotel,1,22,2017,June,23,5,0,2,3,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,A,E,0,Non Refund,12.0,168.0,0,Transient,109.65,0,0,Canceled,Carolyn Fletcher,mitchell30@example.com,001-680-993-8037x7151,3510732820760788,2024-08-26 +Resort Hotel,1,48,2017,November,46,14,0,5,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,241.0,179.0,0,Transient,76.87,0,0,Canceled,Nancy Franklin,bridget27@example.com,+1-700-225-9130x3016,4492387844966216,2024-09-13 +City Hotel,0,55,2017,March,11,16,0,2,2,0.0,0,HB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.78,0,0,Check-Out,Jason Robles,angela09@example.org,(765)636-6480,4403282270687,2024-09-04 +City Hotel,0,20,2017,June,23,4,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.2,0,0,Canceled,Sharon Roberts,duncannathan@example.org,611.639.4456,4486886900689800,2026-03-04 +City Hotel,0,21,2017,August,32,5,1,3,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,106.94,0,2,Check-Out,Mr. Joshua Ware,kinghelen@example.net,681-568-9818,4973739736558133386,2026-01-11 +City Hotel,0,5,2017,August,33,17,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,86.06,0,2,Check-Out,Alyssa Kline,david14@example.net,9237726070,348986103268554,2025-09-16 +City Hotel,1,15,2017,October,42,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,237.0,179.0,0,Contract,114.82,0,1,Canceled,Heather Terry,dawsonzachary@example.com,498.244.2582x0322,341592799217603,2025-08-09 +Resort Hotel,0,216,2017,March,11,14,1,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,222.0,0,Transient-Party,64.13,0,0,Check-Out,Derek Lopez,tperez@example.org,+1-808-484-0117,6528754418029163,2025-04-09 +City Hotel,0,7,2017,February,8,23,1,2,2,0.0,0,BB,,Offline TA/TO,Corporate,1,0,0,A,A,0,No Deposit,9.0,221.0,0,Transient,78.04,0,0,Check-Out,Andrea Moore,csteele@example.org,482-272-7634,4564777725486290400,2025-03-04 +City Hotel,0,51,2017,June,23,6,1,6,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,253.0,179.0,0,Transient-Party,201.85,0,1,Check-Out,Autumn Carter,rthomas@example.com,(314)827-5433x9858,4986103608823417,2025-01-30 +Resort Hotel,0,398,2017,October,43,26,1,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,80.09,0,0,Check-Out,Jennifer Barnes,petersonlaura@example.com,(255)874-2571x53454,3542543515577623,2025-10-27 +Resort Hotel,1,17,2017,April,17,24,2,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,171.7,0,0,No-Show,Mary Palmer,reneeray@example.com,(312)896-3298,4840402108849532288,2025-01-18 +City Hotel,1,411,2017,September,36,4,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,160.78,0,0,Canceled,Wesley Henry,sampsonmartin@example.com,691-288-3317x04612,576358675584,2025-11-30 +City Hotel,1,44,2017,October,43,25,1,2,2,0.0,0,SC,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,96.24,0,1,Canceled,Deborah Gilbert,terrenceford@example.org,850-961-0137x73188,6550499255126794,2024-07-25 +City Hotel,0,90,2017,March,13,28,0,3,1,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,93.91,0,1,Check-Out,William Bell,kweiss@example.org,+1-693-738-7693x903,4771812486456,2026-01-04 +City Hotel,1,155,2017,June,24,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,174.99,0,0,Canceled,Jason Zamora,cookvalerie@example.com,804-728-7551x401,3535586624072852,2025-01-13 +City Hotel,0,4,2017,September,37,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient-Party,94.1,0,0,Check-Out,Rebekah Moreno,carrie39@example.net,(340)320-5139x239,3558139060253925,2025-07-09 +Resort Hotel,0,1,2017,February,7,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,63.55,0,0,Check-Out,Matthew Marquez,ashley65@example.com,315.360.5595x57309,4070439361212407,2025-06-09 +Resort Hotel,0,88,2017,December,49,8,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,49.64,0,1,Check-Out,Kathleen Mendez,russell57@example.org,(450)880-2591x77140,6011251571719858,2024-06-06 +City Hotel,1,414,2017,September,35,2,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,0,Transient,100.97,0,0,Canceled,Mrs. Donna Nguyen DDS,ybruce@example.net,996-550-9414x571,3550819842230592,2025-12-16 +City Hotel,0,2,2017,January,3,17,0,1,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,81.31,0,0,Check-Out,Nathan Nelson,jocampos@example.org,852.831.5699,565106316492,2025-04-11 +Resort Hotel,0,46,2017,October,41,12,2,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,127.41,1,1,Check-Out,Jessica Wright,benjaminthompson@example.org,578.949.9486x109,3538729634022056,2025-04-22 +Resort Hotel,0,18,2017,January,3,13,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,238.0,179.0,0,Group,41.37,0,1,Check-Out,Anna Hudson,juliewright@example.com,878.874.2060x072,3588749180193357,2026-01-30 +Resort Hotel,0,1,2017,October,43,26,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,14.0,179.0,0,Transient,223.97,1,2,Check-Out,Timothy Ryan,tjohnson@example.net,331-243-5067x87384,3511752204168977,2025-02-09 +Resort Hotel,0,0,2017,October,41,9,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,169.0,179.0,0,Transient,42.41,0,0,Check-Out,Hannah Drake,jill06@example.net,(823)240-1429x9815,502011929747,2026-03-23 +City Hotel,1,17,2017,July,29,21,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,129.15,0,0,Canceled,Cindy King,fischerkaren@example.net,(927)690-3719x9878,4666362245647580007,2025-11-06 +Resort Hotel,0,153,2017,July,30,20,2,5,3,1.0,0,BB,CHE,Direct,Direct,0,0,0,H,H,1,No Deposit,14.0,179.0,0,Transient,246.66,1,1,Check-Out,Annette Houston,gomezchase@example.com,489.701.4387x78808,4421997269249306,2025-12-08 +City Hotel,1,0,2017,August,33,12,0,1,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,3.57,0,0,Canceled,Christopher Chavez,dwalker@example.net,001-815-894-0535x23749,4855785558040352,2026-02-21 +Resort Hotel,0,10,2017,October,43,25,0,5,1,0.0,0,BB,IRL,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,205.0,233.0,0,Transient,48.95,0,0,Check-Out,Lisa Wells,jonesheather@example.org,+1-580-549-7939x564,30129315026287,2024-06-17 +City Hotel,0,39,2017,March,12,22,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,101.23,0,1,Check-Out,Vincent Morgan,emilygardner@example.net,001-382-256-1115x590,30477314936521,2024-06-23 +Resort Hotel,1,73,2017,October,42,17,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,42,Transient,72.72,0,1,No-Show,Mary Flores,murphypatricia@example.net,741-744-9043x7714,4452535471870697154,2024-09-18 +Resort Hotel,0,34,2017,May,21,24,1,3,3,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,245.0,179.0,0,Transient,89.55,1,0,Check-Out,Christopher Jensen,michaelcurtis@example.net,(448)406-6736,3518917106168812,2025-05-05 +City Hotel,0,38,2017,October,40,6,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Group,130.05,0,1,Check-Out,Robin Bates,youngnathan@example.net,714-906-1334x5356,4980978131596,2024-07-25 +Resort Hotel,0,36,2017,December,48,1,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,85.4,0,1,Check-Out,Cathy Wells,robertcontreras@example.org,(787)268-8032,180060047610759,2024-09-27 +City Hotel,0,8,2017,December,52,29,2,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,9.0,179.0,0,Transient,106.52,0,1,Check-Out,Spencer Byrd,pamelaolson@example.com,852-898-0365,4605375837327706,2024-08-11 +City Hotel,0,12,2017,July,31,30,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,135.37,0,1,Check-Out,Holly Edwards,kford@example.com,545.667.5193,2294744495696332,2026-01-27 +Resort Hotel,0,87,2017,November,47,17,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,87.48,0,2,Check-Out,Michael Chavez,bankselizabeth@example.com,+1-938-405-2023x408,341875698802892,2026-03-20 +City Hotel,0,26,2017,April,17,24,1,2,1,1.0,0,BB,ITA,Offline TA/TO,Direct,0,0,0,D,G,0,No Deposit,10.0,179.0,0,Transient,133.09,1,0,Check-Out,Casey King,richard33@example.com,001-791-838-3149x83824,6011342808358584,2025-08-27 +Resort Hotel,0,0,2017,January,2,12,2,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,51.72,1,1,Check-Out,Walter Hernandez,xwilliams@example.net,001-940-371-9503x893,4449137963847430,2024-08-10 +City Hotel,0,10,2017,July,28,10,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.93,1,0,Check-Out,Jessica Washington,enelson@example.org,846-851-3969,4544871764010517,2025-09-10 +City Hotel,0,18,2017,August,33,13,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,138.41,0,2,Check-Out,Adam Wallace,jonathan04@example.net,(970)570-6035,6011649231608066,2025-08-25 +City Hotel,0,20,2017,April,17,22,2,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,124.47,0,1,Check-Out,Jennifer Stephens,zbryant@example.net,637.924.4419x169,3571288036740854,2025-10-11 +Resort Hotel,1,68,2017,March,12,22,2,1,3,1.0,0,HB,PRT,Online TA,TA/TO,0,1,0,H,H,0,No Deposit,236.0,179.0,0,Transient,252.0,0,0,Canceled,Christopher Fischer,destiny25@example.com,(474)928-0530,38796417295416,2024-08-10 +City Hotel,1,35,2017,July,30,26,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.5,0,1,Canceled,Elizabeth Lynch,jwarren@example.org,254.632.2931x14593,371940886754454,2025-05-06 +City Hotel,0,45,2017,September,36,7,0,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.82,0,1,Check-Out,Shannon Johnson,wroberts@example.org,+1-352-871-7369x72901,4257027386563093453,2026-03-21 +City Hotel,1,14,2017,April,17,25,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,99.76,0,0,No-Show,Nathan Jackson,atkinsonelizabeth@example.org,+1-439-359-4799,6569579566696087,2024-12-16 +Resort Hotel,0,157,2017,August,32,10,0,3,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,199.0,179.0,0,Transient-Party,123.89,0,0,Check-Out,Ashley Price,keith75@example.org,001-612-903-5550x8460,3514802629249147,2024-09-12 +City Hotel,1,40,2017,October,44,29,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Contract,104.15,0,0,Canceled,Claudia Jones,jameslewis@example.net,8862024878,30041995761085,2025-05-01 +City Hotel,0,51,2017,July,28,10,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,193.33,0,2,Check-Out,Patricia Torres,stonemegan@example.com,513.200.1553,4785130784673814,2024-12-23 +Resort Hotel,0,122,2017,May,20,14,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,112.79,0,1,Check-Out,Mitchell Larson,ywilliams@example.net,(467)851-2498x9640,4715409007928,2025-01-03 +City Hotel,1,39,2017,December,49,4,1,2,2,0.0,0,SC,,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,100.41,0,0,Canceled,Lisa Reyes,gduffy@example.com,+1-801-664-2840,3577462234313590,2025-12-02 +City Hotel,0,11,2017,October,41,9,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,106.05,0,1,Check-Out,Ronald Burgess,bryancatherine@example.org,+1-640-960-7868x0372,213170886526379,2026-03-09 +Resort Hotel,1,135,2017,October,41,9,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,101.36,0,0,Canceled,Eric Pollard,ecummings@example.com,(757)839-5199,4963693157708,2024-08-14 +City Hotel,1,152,2017,August,32,4,2,5,3,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,218.81,0,0,Canceled,Christopher Martinez,jhooper@example.net,(454)254-0110x95756,4314090651059927253,2025-12-26 +City Hotel,1,56,2017,September,35,1,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,179.34,0,1,Canceled,Garrett Morales,lhayes@example.org,945.342.4839x4852,3541810930644689,2024-07-16 +City Hotel,1,265,2017,December,48,2,2,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,79.31,0,1,Canceled,Brandy Watkins,nancy81@example.com,919-404-2893x665,5518972410348134,2025-07-28 +City Hotel,1,208,2017,August,35,28,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,136.87,0,1,Canceled,Stephanie Miller,gstuart@example.com,437.940.7886x487,639001469811,2025-08-03 +City Hotel,0,6,2017,August,32,6,0,1,1,0.0,0,BB,BEL,Online TA,Direct,0,0,0,D,A,2,No Deposit,10.0,179.0,0,Transient,210.34,0,1,No-Show,Mr. Todd Dixon,cherrytom@example.com,5589063649,4059579694581,2025-07-09 +City Hotel,0,22,2017,August,33,12,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,142.01,0,2,Check-Out,Jason Sanchez,isaacking@example.net,683.376.6812x043,6011101518474432,2025-02-18 +Resort Hotel,0,57,2017,March,11,16,2,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,1,No Deposit,245.0,179.0,75,Transient,113.72,0,3,Check-Out,Amber Ryan,dianeking@example.net,918.651.5360x4151,4781290583765,2024-07-15 +City Hotel,1,89,2017,July,28,9,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,74.0,179.0,0,Transient,99.4,0,0,Canceled,Andrew Smith,ambercollins@example.net,+1-305-204-8295x33595,213165763057019,2025-07-16 +City Hotel,0,60,2017,August,33,12,2,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,215.45,0,1,Check-Out,Sarah Perez,tonynelson@example.com,863.440.2038,378857641680845,2025-06-11 +Resort Hotel,1,138,2017,August,35,24,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,237.0,179.0,0,Transient,233.54,0,0,Canceled,Ashley Brooks,jeffreywallace@example.net,2462945661,4601337276962272,2026-02-05 +City Hotel,1,147,2017,February,7,11,2,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.92,0,1,Canceled,Jeffrey Henderson,norrisrachel@example.com,485.975.5088x49370,379893497605056,2024-07-17 +City Hotel,1,17,2017,April,14,4,2,1,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,144.37,0,1,Canceled,Sheryl Johnson,rodriguezdustin@example.org,680.932.6737x66804,4223514156271556,2024-09-09 +Resort Hotel,0,3,2017,December,49,4,1,1,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,38.71,1,2,Check-Out,Deborah Sanders,deansummer@example.com,+1-873-888-4754x2229,3523588598939573,2025-05-19 +City Hotel,0,0,2017,January,2,2,0,3,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,49.85,0,0,Check-Out,Angela Wilkerson,davisjohn@example.org,001-778-795-7116x67423,5542316678087937,2025-06-14 +City Hotel,0,9,2017,January,4,21,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient-Party,76.07,0,0,Canceled,Kevin Sanders,brockchristopher@example.net,556-987-4547x8764,4793073056783377336,2025-06-27 +City Hotel,0,27,2017,May,21,24,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.9,1,1,Check-Out,Jennifer Williams,taylorcombs@example.com,285-824-1981x82322,4363282704097460384,2025-12-23 +City Hotel,1,150,2017,October,40,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,120.77,0,0,Canceled,Lisa Tucker,gibsoneric@example.org,743-567-2798x8517,4474983918045892566,2024-11-30 +Resort Hotel,0,145,2017,December,49,5,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,90.76,0,1,Check-Out,Kathy Flores DVM,barryross@example.com,(805)806-8417x05003,4601825278470321841,2025-07-21 +City Hotel,0,60,2017,October,42,20,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,114.79,0,0,Check-Out,Mary Gamble,dgomez@example.net,915.215.3989x1236,4936806794096,2026-01-18 +Resort Hotel,0,14,2017,June,24,16,1,0,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,1,A,E,0,No Deposit,239.0,179.0,0,Transient,134.51,0,1,Check-Out,Sara Simmons,susan66@example.net,276.815.4759,3565843543130029,2024-12-14 +City Hotel,0,171,2017,August,35,30,1,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,167.48,0,0,Check-Out,Mark Hanson,johnsonfrederick@example.org,+1-680-457-5548x52762,4991050069026,2024-08-18 +City Hotel,0,91,2017,February,8,17,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,B,D,0,No Deposit,314.0,179.0,0,Group,60.86,0,0,Check-Out,Brian Dunn,thomasbryce@example.net,+1-482-731-6477x2759,4996322586293220871,2024-05-03 +City Hotel,1,12,2017,October,43,27,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,17,Contract,96.48,0,0,Canceled,Katie Griffin,lauramoreno@example.com,267-932-8533x44718,6543587285559651,2024-11-27 +City Hotel,1,37,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,173.0,179.0,0,Transient,63.24,0,0,Canceled,Michele Lee,coryrosales@example.net,001-835-954-7688x37705,4783889018401545640,2025-09-16 +City Hotel,0,94,2017,April,17,27,1,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,104.08,0,1,Check-Out,John Chavez,xchang@example.com,349-396-5535x7650,30191025263790,2025-12-05 +City Hotel,1,33,2017,November,46,12,1,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,195.01,0,0,Canceled,Erica Stewart,kimberly30@example.org,850-751-2126x1815,4888920067894934900,2025-02-03 +City Hotel,0,155,2017,March,13,31,0,3,2,0.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,1,Refundable,11.0,223.0,0,Transient-Party,64.6,0,0,Check-Out,John Maldonado,christopher74@example.net,357.253.9033,347948791843982,2026-02-17 +Resort Hotel,0,3,2017,January,3,13,1,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,37.9,0,1,Check-Out,Andrew Carrillo,jonathan01@example.com,+1-627-294-9126x147,4543596661157648423,2025-05-26 +City Hotel,0,104,2017,June,25,21,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,105.41,0,1,Check-Out,Nancy Arnold,heather90@example.net,6124376722,6011476154171991,2025-11-04 +City Hotel,0,92,2017,October,40,5,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,63.0,0,0,Check-Out,Cheryl Fernandez,johngilbert@example.org,9765488942,3567391886387663,2024-06-10 +City Hotel,0,17,2017,June,25,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.53,0,0,Check-Out,Jason Mullins,brianalvarado@example.org,9368922297,4846432814390014,2025-03-30 +City Hotel,1,2,2017,July,28,10,1,0,3,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,3.35,0,1,Canceled,Tanya Nash,eric66@example.com,(540)566-2741x424,4054932936995357,2025-07-29 +Resort Hotel,0,0,2017,January,2,4,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,52.87,0,0,Check-Out,Elizabeth Mccann,lortiz@example.com,+1-974-857-3994,30474572769645,2025-10-25 +Resort Hotel,0,120,2017,May,20,11,0,5,2,0.0,0,BB,AUT,Groups,TA/TO,0,0,0,A,E,0,No Deposit,136.0,179.0,0,Transient-Party,60.53,0,1,Check-Out,Roger Simmons,estesmathew@example.com,(817)793-5089x274,675945845351,2025-06-19 +Resort Hotel,0,258,2017,September,36,3,2,5,2,0.0,0,FB,GBR,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,26.0,179.0,0,Contract,108.06,0,2,Check-Out,Jesse Mcintyre,erika56@example.net,(784)367-9249,4090121801167557810,2025-06-23 +Resort Hotel,0,30,2017,July,29,19,1,3,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,252.0,1,2,Check-Out,Hailey Raymond,joannbrown@example.org,461.621.9087x7244,4406744842320561,2026-01-17 +City Hotel,0,21,2017,March,12,22,0,3,1,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,102.99,0,1,Check-Out,James Barron,stonedanielle@example.com,(778)368-3295,4894998874251,2024-12-19 +City Hotel,0,0,2017,October,40,3,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,101.19,0,1,Check-Out,Kimberly Fernandez,ramirezdesiree@example.org,630-773-8409,585314236563,2026-03-19 +City Hotel,1,254,2017,July,29,19,2,1,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,231.45,0,0,Canceled,Beth Benitez,monica78@example.org,+1-707-755-2522x5010,342590863163892,2025-12-26 +Resort Hotel,0,143,2017,August,32,4,4,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,247.0,179.0,0,Transient,210.48,0,1,Canceled,Allison Grant,wjarvis@example.com,001-468-436-7449x6920,2584493320703652,2024-04-15 +City Hotel,1,10,2017,May,20,12,2,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,David Garcia,grant25@example.net,698-711-6186,4327229876841720,2025-05-11 +City Hotel,0,156,2017,August,34,22,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.12,0,3,Check-Out,Patricia Randolph,jose74@example.com,892.808.3048x7045,4413400459404161,2024-08-15 +Resort Hotel,0,1,2017,May,21,24,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Transient,55.16,1,1,Check-Out,Amanda Cantrell,brenda97@example.net,901-509-9359,2720838802583128,2026-03-27 +City Hotel,0,0,2017,October,43,24,2,0,3,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,45.6,0,2,Check-Out,Eric Maxwell,anthony91@example.com,+1-537-240-7777x90752,2345739110803882,2025-09-06 +City Hotel,0,100,2017,January,4,26,1,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,90.81,0,0,Check-Out,Cynthia Cook,ifriedman@example.com,(505)858-7613x1339,180008061477084,2024-08-27 +Resort Hotel,0,2,2017,May,19,6,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,250.0,179.0,0,Transient,143.05,0,3,Check-Out,Kimberly Robertson,lawrencewendy@example.net,547.972.3879,4242237841851379,2024-05-31 +City Hotel,0,76,2017,August,32,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Transient,111.2,0,2,Check-Out,Robert Perez,acostasarah@example.net,(299)353-2372,501890142455,2024-06-20 +City Hotel,0,93,2017,February,5,2,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,21.0,179.0,0,Transient,100.16,0,2,Check-Out,Kevin Curtis,fwilkins@example.com,(581)202-1167x64480,5227288999936609,2025-09-24 +City Hotel,0,0,2017,January,2,3,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,168.0,179.0,0,Transient,83.12,0,0,Check-Out,Dustin Nguyen,ghardy@example.com,576-820-6668x9398,2298874033627766,2026-03-26 +City Hotel,1,299,2017,July,27,1,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,99.63,0,0,Canceled,Carmen Owen,lauren80@example.net,713-669-9734x624,3540821649174992,2024-06-28 +Resort Hotel,1,149,2017,March,13,26,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,48.74,0,0,Canceled,Carrie Smith,carrie41@example.net,289.419.1677,4411364311485,2025-10-25 +Resort Hotel,0,0,2017,October,42,19,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,2,No Deposit,13.0,179.0,0,Transient,65.08,1,1,Check-Out,Jennifer Graham,michael73@example.com,866-902-6377x795,4710472594993,2026-02-02 +Resort Hotel,1,195,2017,July,30,24,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient-Party,207.52,0,0,Canceled,Jonathan West,hvillarreal@example.org,001-519-208-1307x448,6011995103202953,2025-01-04 +City Hotel,0,18,2017,August,32,6,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,228.15,0,2,Check-Out,Anita Bradley,mcdanielamanda@example.com,+1-488-219-5265x812,180068190902519,2024-12-18 +City Hotel,0,1,2017,March,10,4,2,5,2,0.0,0,BB,GBR,Aviation,Corporate,1,0,0,D,D,0,No Deposit,12.0,168.0,0,Transient,110.85,1,0,Check-Out,Ryan Cantu,beckertravis@example.org,(622)558-7526x378,5570898927606349,2025-03-19 +City Hotel,0,95,2017,October,42,20,1,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,1,No Deposit,16.0,179.0,0,Transient,173.39,0,1,Check-Out,Alejandro Huang,meagan20@example.com,680.798.3097,6011374890941191,2025-02-02 +City Hotel,1,66,2017,August,34,23,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,179.65,0,1,Canceled,Jennifer Sweeney,dpatrick@example.org,(977)439-6067x72069,36328299385115,2025-05-09 +Resort Hotel,0,44,2017,July,28,12,4,7,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,262.0,179.0,0,Transient,226.15,0,3,Check-Out,Adam Robbins,barbarareed@example.net,767-481-9577x87514,2720745882793800,2025-04-01 +Resort Hotel,1,0,2017,August,35,30,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,237.0,179.0,0,Transient,62.82,0,0,No-Show,Rebecca Parker,zhowell@example.org,001-582-685-3432x25779,4960499507793705,2025-08-09 +City Hotel,0,52,2017,January,4,24,0,3,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Group,97.74,0,3,Check-Out,Michele Orozco,paigeedwards@example.net,766-656-5365x7350,4799301487109725919,2025-11-27 +Resort Hotel,0,22,2017,March,13,23,2,6,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,50.74,0,1,Check-Out,William Ashley,jacqueline39@example.net,(900)406-5229,3599761666746696,2025-06-06 +Resort Hotel,0,0,2017,May,21,23,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,E,C,0,No Deposit,250.0,179.0,0,Transient,58.73,0,0,Check-Out,Paula Reed,ryan19@example.org,+1-209-704-4155x372,30163454299439,2025-05-22 +City Hotel,0,0,2017,May,19,4,1,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,30.0,179.0,0,Transient,1.77,0,0,Check-Out,Nicholas Hines,jimhernandez@example.com,001-577-946-2298,4933877707403726,2025-03-31 +City Hotel,1,163,2017,August,34,19,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.23,0,0,Canceled,Candice Brown,ralphschmidt@example.org,964.980.5196x0640,6011306056148013,2024-09-07 +City Hotel,1,339,2017,August,34,20,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,63.23,0,0,Canceled,Casey Mcdowell,lynn39@example.net,001-781-270-2634x051,4417328280807,2025-04-05 +City Hotel,1,206,2017,June,25,20,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,B,D,0,No Deposit,75.0,179.0,0,Transient,169.12,0,1,Canceled,Tyler Richardson,ramirezkimberly@example.net,(551)575-9834x9415,3518777945427815,2026-03-19 +Resort Hotel,1,51,2017,October,41,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,238.0,179.0,0,Transient,41.6,0,2,No-Show,William Baird,duncanmatthew@example.com,(349)552-1432x5616,4916990246102765,2024-11-20 +Resort Hotel,1,34,2017,August,35,26,2,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,148.18,0,0,Canceled,John Haley,murphymark@example.net,8673853723,4593301761775835302,2024-07-08 +City Hotel,0,1,2017,May,18,1,1,1,1,0.0,0,BB,ISR,Groups,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient-Party,79.2,0,0,Check-Out,James Foster,jeremy84@example.org,(960)477-5340,3578186854423970,2025-10-17 +City Hotel,0,4,2017,December,49,5,1,0,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,195.18,0,2,Check-Out,Christopher Taylor,wardkyle@example.net,793-474-2010x09856,4548815817192888226,2024-07-01 +Resort Hotel,1,158,2017,June,24,10,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,Non Refund,164.0,179.0,0,Transient,86.52,0,1,Canceled,Cheryl Moreno,piercesteven@example.net,(487)735-8903,30052539692710,2025-03-17 +City Hotel,0,17,2017,April,14,2,1,1,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,107.03,0,1,Check-Out,Michael Gallagher,rtate@example.net,001-985-674-2169,3555128760791493,2026-01-15 +City Hotel,0,353,2017,June,26,26,1,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,105.58,0,0,Check-Out,Michael Wilson,ashley90@example.org,544.864.1299x922,567582305056,2025-12-24 +City Hotel,1,210,2017,June,25,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,97.12,0,0,Canceled,Thomas Carter,iwilliams@example.com,666.860.7540,5416562774218628,2024-06-19 +Resort Hotel,1,181,2017,June,27,29,2,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,238.0,179.0,0,Transient,83.27,0,2,Canceled,Joshua Phillips,phillip25@example.net,001-762-232-0013x7220,3542757701815965,2025-03-17 +Resort Hotel,1,17,2017,July,30,25,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,244.0,179.0,0,Transient,65.32,0,0,No-Show,Jaime Andrews,robertrosales@example.net,001-985-838-4738x95235,4887906651479964,2025-03-06 +City Hotel,0,52,2017,November,48,29,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,98.88,0,0,Check-Out,Mr. Jesus Blake,sarahowell@example.org,(962)913-0249x68565,4982841718831,2024-06-13 +City Hotel,0,24,2017,October,40,7,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,116.9,0,0,Check-Out,Anna Anderson,mark13@example.com,+1-649-339-8508x9157,4283788506010855346,2024-04-20 +Resort Hotel,1,83,2017,July,27,4,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,176.22,0,0,Canceled,Brian Flores,christopher07@example.com,630-375-3241,4613939023239817,2025-03-08 +Resort Hotel,0,259,2017,March,13,24,1,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,2,Refundable,10.0,223.0,0,Transient-Party,104.41,0,2,Check-Out,Denise Jimenez,cochrantravis@example.com,+1-542-738-4150x364,30211548643441,2025-09-04 +City Hotel,0,95,2017,November,45,9,1,2,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,1,No Deposit,186.0,179.0,0,Transient,112.9,0,0,Check-Out,Russell Mitchell,browndonald@example.org,+1-518-546-7773,4544186203868528,2025-12-31 +City Hotel,1,158,2017,May,20,14,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.42,0,2,Canceled,Sara Levy,natashareynolds@example.com,501.921.1591,5316236083746469,2024-11-27 +City Hotel,0,63,2017,July,28,11,1,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,115.39,0,1,Canceled,Gregory Evans,aweber@example.net,+1-324-811-5985x47840,4793646234902644,2025-08-30 +Resort Hotel,0,13,2017,December,52,27,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,94.43,0,2,Check-Out,Justin Doyle,ashley46@example.com,001-450-933-4457x2706,4523908781109156,2024-08-20 +Resort Hotel,1,278,2017,September,36,5,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,238.0,179.0,0,Group,1.23,0,1,Canceled,Kelsey Lane,amitchell@example.org,001-298-471-1871,4154092727784,2025-10-12 +City Hotel,0,8,2017,December,49,5,2,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,92.92,0,1,Check-Out,Trevor Lynch,jonessarah@example.net,(621)336-6042x887,3568290286076182,2024-10-20 +City Hotel,0,14,2017,July,29,18,1,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,155.58,0,0,Check-Out,Shane Lee,richardsonrobert@example.org,+1-939-646-0900x407,30095955699602,2026-02-21 +City Hotel,1,0,2017,May,20,13,0,1,3,0.0,0,SC,PRT,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,2.88,0,0,Canceled,Jill Long,woodsalexis@example.com,869-357-2124x250,5202439287670199,2024-10-30 +City Hotel,1,0,2017,August,32,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,A,0,No Deposit,16.0,179.0,0,Transient,77.13,0,1,Canceled,Joseph Dominguez,whale@example.com,(297)237-1307x5566,2331829010316147,2026-02-22 +Resort Hotel,0,33,2017,March,12,22,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,43.73,1,1,Check-Out,Paula Gutierrez,mariahoward@example.org,(724)562-7674x623,3506710513697307,2024-04-27 +City Hotel,1,95,2017,July,27,1,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,A,0,Non Refund,77.0,179.0,0,Transient,157.82,0,0,Canceled,Holly Kelly,jonathonlowery@example.org,(719)788-3443x42507,2240102522612431,2025-03-21 +City Hotel,1,155,2017,July,27,4,1,10,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,109.83,0,0,No-Show,Alice Thomas,ineal@example.com,613-372-2668,342986669644632,2025-11-11 +City Hotel,0,16,2017,October,40,6,2,3,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,116.16,0,1,Check-Out,Megan Knight,amythomas@example.org,001-227-787-1346x8087,4275410568871,2025-07-01 +City Hotel,1,310,2017,September,38,23,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,88.99,0,0,Canceled,Tim Vargas,colinwilson@example.com,622.553.8692x690,6559918828211917,2025-04-15 +City Hotel,1,304,2017,October,40,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,16,Transient,64.1,0,0,Canceled,Betty Lee,amanda83@example.com,2568669665,2235650525581703,2026-01-31 +City Hotel,0,2,2017,December,51,19,1,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,249.11,0,1,Check-Out,Laura Young,arobinson@example.com,6705842357,213146856893775,2024-07-07 +City Hotel,1,124,2017,May,22,30,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,8.0,179.0,0,Transient,140.62,0,2,No-Show,Raymond Hughes,madisonallen@example.com,001-896-541-3785x75309,4419617895139,2024-09-21 +City Hotel,0,7,2017,March,13,23,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,154.0,179.0,0,Transient,47.24,0,1,Check-Out,Nicholas Brown,cliffordmoore@example.net,8146720007,3556508823072362,2025-01-31 +City Hotel,1,49,2017,September,37,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,81.28,0,0,Canceled,Loretta Roberts,charlessmith@example.com,+1-530-671-1625x413,2249045503184436,2024-04-05 +Resort Hotel,0,101,2017,April,16,18,1,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,166.21,1,1,Check-Out,Michael Matthews,millerjohn@example.org,+1-487-658-4039x07706,36905341217683,2024-11-14 +Resort Hotel,0,22,2017,September,38,18,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,85.57,0,0,Check-Out,Erik Townsend,jonesstephanie@example.net,(982)422-8890x19128,4330651138592202,2024-06-19 +City Hotel,0,123,2017,April,18,27,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,108.52,0,2,Check-Out,Chad Bowman,maryking@example.net,(305)385-8821x174,6594870575652859,2024-08-27 +City Hotel,1,106,2017,July,27,6,0,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.64,0,0,Canceled,Joshua Alvarez,samuel02@example.net,333.926.2460x2248,30480455177764,2026-03-11 +City Hotel,1,10,2017,February,6,5,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,80.23,0,0,Canceled,Angel Hood,wesleyhernandez@example.com,(892)247-1554,3599166409376712,2025-10-19 +City Hotel,0,150,2017,March,10,2,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,116.51,0,1,Check-Out,Alison Roberts,jenniferperez@example.com,461.868.2233,4277900594482,2024-09-26 +Resort Hotel,0,38,2017,September,37,11,2,5,2,0.0,0,HB,BEL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,310.0,179.0,0,Transient-Party,44.08,0,0,Check-Out,Charles Hardin,qharvey@example.net,(590)458-3260x182,676316014296,2025-08-04 +City Hotel,1,148,2017,May,18,3,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,107.75,0,0,Canceled,Abigail Mitchell,sextonsara@example.net,001-550-304-8945x49545,345426476185963,2025-01-02 +City Hotel,0,7,2017,May,21,24,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.3,0,1,Check-Out,Lisa Gomez,martin37@example.net,001-345-821-3458x0912,5243501595756241,2024-06-03 +Resort Hotel,0,41,2017,February,6,4,1,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,22.0,179.0,0,Transient-Party,50.81,0,0,Check-Out,Steven Fox,wayne96@example.net,642-205-5023x34009,4147671167468531,2025-03-01 +Resort Hotel,0,15,2017,August,35,27,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,129.66,1,1,Check-Out,Emily Thompson,adampatton@example.net,(641)971-9332x6500,630483465260,2024-06-15 +City Hotel,0,49,2017,October,41,10,0,1,2,0.0,0,SC,ITA,Direct,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,126.82,0,3,Check-Out,Erin Hamilton,malloryhamilton@example.net,481-620-0569,4928918347780,2026-02-07 +City Hotel,0,1,2017,September,37,11,1,0,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Group,0.5099000000000001,0,2,Check-Out,Janet Thomas,langcorey@example.net,(457)738-1340x79701,38620772760311,2025-02-19 +City Hotel,0,21,2017,October,44,31,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,142.77,0,3,Canceled,Anthony Francis,wendy58@example.org,001-491-254-9533x822,568268642465,2024-11-30 +City Hotel,0,57,2017,August,35,28,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.74,0,2,Check-Out,Derek Drake,brownjulie@example.com,270-234-4334x219,575687025982,2024-08-29 +Resort Hotel,1,22,2017,December,48,2,0,2,3,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,234.0,0,Transient,46.77,0,1,Canceled,Alan Richmond,joannahernandez@example.net,4717328847,4295772783554509082,2024-06-28 +Resort Hotel,1,143,2017,October,40,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,111.96,0,0,Canceled,Daniel Dennis,nlopez@example.com,+1-379-871-7054x19274,4690666833196176138,2025-02-05 +Resort Hotel,1,59,2017,August,31,2,3,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,A,0,No Deposit,245.0,179.0,0,Transient,216.68,0,1,No-Show,Melissa Stokes,ocarter@example.net,6359521090,4839455333770,2026-02-06 +Resort Hotel,0,144,2017,May,22,29,1,5,2,2.0,0,BB,GBR,Online TA,Direct,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,240.65,1,2,Check-Out,Kenneth Johnson,uhughes@example.org,+1-349-929-8693x02802,213166633907755,2024-05-12 +City Hotel,1,252,2017,May,22,28,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,74.78,0,0,Canceled,Sandra King DDS,kimwood@example.com,821-283-5406x39057,5248024991919581,2024-07-14 +City Hotel,0,38,2017,August,33,16,0,5,2,2.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,251.99,0,1,Check-Out,Miguel Cook MD,snichols@example.com,410.674.8580,4371794877801960,2024-07-08 +City Hotel,0,0,2017,October,42,18,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,108.19,0,1,Check-Out,Paula Chandler,shawn44@example.net,435-365-6571,6509874774522610,2026-02-06 +City Hotel,1,98,2017,June,23,8,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,32.0,179.0,0,Transient,75.29,0,1,Canceled,Mackenzie Johnston,zoe21@example.org,(660)763-6041,30328863783238,2025-04-05 +Resort Hotel,0,60,2017,September,37,9,4,7,3,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,220.39,0,0,Check-Out,Stacey Miller,eolson@example.org,5202230903,3581225404508008,2025-10-09 +Resort Hotel,0,250,2017,April,14,1,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,11.0,221.0,0,Transient-Party,46.61,0,0,Check-Out,Madison Brown,masoncrystal@example.com,001-985-823-0148x76071,377634223988198,2024-09-01 +City Hotel,0,10,2017,February,9,24,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,7.0,179.0,0,Transient,102.23,0,1,Check-Out,Alexander Torres,ycurry@example.net,+1-741-751-0852x232,675918972711,2026-01-06 +Resort Hotel,0,98,2017,May,20,18,1,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,308.0,179.0,0,Transient,75.23,0,0,Check-Out,Adam Avery,gillespiebrittany@example.com,+1-644-664-7755,3506992903578442,2025-08-19 +City Hotel,1,30,2017,March,11,12,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,A,0,No Deposit,8.0,179.0,0,Transient,104.68,0,0,Canceled,Joel Wright,jenniferwilliams@example.org,(557)275-3869x5480,4608608683936122,2025-11-16 +Resort Hotel,0,65,2017,July,29,15,2,6,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,11.0,179.0,0,Transient,252.0,0,1,Check-Out,Grant Payne,elizabeth06@example.net,302-768-8216x824,3579328208054148,2025-09-22 +Resort Hotel,0,9,2017,May,20,13,0,3,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient,94.85,0,0,Check-Out,Nicholas Robinson,catherinerobinson@example.org,001-742-851-9938,4215322828129339,2025-11-25 +City Hotel,0,155,2017,June,25,23,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,100.91,0,0,Check-Out,Michael Foster,pennyscott@example.org,2709311589,377634450033338,2025-10-06 +City Hotel,1,396,2017,September,36,7,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,59.9,0,0,Canceled,Sharon Rogers,lauren94@example.net,+1-263-506-3755x53937,347600376801824,2024-11-05 +City Hotel,1,144,2017,March,10,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,207.48,0,0,Canceled,Richard Torres,evelynross@example.com,+1-347-349-1472x2144,4664519837646973,2025-10-15 +Resort Hotel,0,112,2017,April,16,13,1,7,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,57.09,0,1,Check-Out,David Francis,ihart@example.net,223-226-1375x49918,213122384295262,2025-12-02 +City Hotel,1,24,2017,August,34,20,2,1,3,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,214.76,1,0,Check-Out,Stephanie Hall,beverlycrawford@example.com,(581)903-5477,4171089008249334,2024-05-28 +Resort Hotel,0,4,2017,July,30,26,2,1,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,223.22,1,2,Check-Out,David Rush,hansenjessica@example.org,(266)562-1682x307,6011608310222611,2024-11-17 +City Hotel,1,341,2017,June,26,23,0,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,107.96,0,0,Canceled,John Pennington,connie43@example.net,001-769-481-7559x159,4646849842772449845,2026-01-11 +City Hotel,0,205,2017,August,32,11,2,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,213.35,0,0,Check-Out,Danielle Brown,zachary09@example.net,533-860-1182x29652,344534306996359,2024-12-04 +City Hotel,1,282,2017,February,9,27,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,80.68,0,0,Canceled,Erin Phillips,johnsonjennifer@example.net,559-685-5323x06609,583621342505,2024-05-24 +City Hotel,1,48,2017,February,9,29,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,71.46,0,0,Canceled,Kimberly Neal,cherylmathis@example.org,6633780617,4579688379717,2025-03-22 +City Hotel,1,2,2017,March,12,22,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.49,0,1,Canceled,Kevin Garcia,gilbertjuan@example.com,+1-503-706-6884x25680,6582487761557828,2024-12-31 +Resort Hotel,1,131,2017,May,20,16,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,250.0,179.0,0,Transient,85.14,0,0,Canceled,Steven Holt,masseyvictor@example.org,620-842-3236,378852145407779,2025-10-19 +Resort Hotel,0,38,2017,November,48,26,2,5,2,0.0,0,HB,,Groups,TA/TO,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,218.32,0,3,Check-Out,Perry Robinson,jeffrey70@example.net,845.351.6809x22574,6559392518877546,2024-06-01 +City Hotel,1,21,2017,May,18,4,0,2,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,110.8,0,1,Canceled,Phillip Silva,mary45@example.org,740.410.8729,3591913418444017,2024-08-28 +City Hotel,1,3,2017,July,29,16,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.62,0,0,Check-Out,Kevin Jacobson,krystal28@example.com,001-467-400-9754x758,349826224361426,2026-01-19 +Resort Hotel,0,1,2017,July,30,24,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,246.0,179.0,0,Transient,215.05,1,0,Check-Out,David Alvarado,rclay@example.net,9934325365,4771670153107,2025-08-14 +Resort Hotel,1,144,2017,October,42,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,D,0,Non Refund,29.0,179.0,0,Transient,107.4,0,0,Canceled,Melissa Brown,jessicachapman@example.net,3575869132,180037687790554,2025-01-14 +Resort Hotel,0,39,2017,October,42,16,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,E,C,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,85.86,0,0,Check-Out,Karen Frye,jennifer43@example.net,001-422-941-5576x4345,4995606855114988472,2024-07-28 +Resort Hotel,0,33,2017,September,36,5,1,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,101.0,179.0,0,Transient,65.82,1,0,Check-Out,Mary Long,kathrynkelly@example.com,8879244535,377500823068170,2024-08-14 +Resort Hotel,0,4,2017,October,41,10,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,17.0,179.0,0,Transient,92.69,0,0,Check-Out,Michael Moore,harmonandrew@example.com,(531)336-8745x74278,3506705810300381,2025-06-15 +City Hotel,0,14,2017,March,12,21,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,13.0,65.0,0,Transient,42.65,0,1,Check-Out,Samuel Gonzales,lfranklin@example.net,(246)403-9139x2613,30474995108876,2026-02-01 +Resort Hotel,1,97,2017,March,11,12,1,4,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,C,A,0,Non Refund,30.0,179.0,0,Transient,56.43,0,0,Canceled,Julie Diaz,lejennifer@example.org,5914413238,3559525703331350,2025-06-21 +City Hotel,0,21,2017,March,10,6,0,1,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Randy Carter,lee73@example.com,790-363-3301,4070738734127220,2025-11-08 +City Hotel,1,200,2017,April,16,15,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.65,0,1,Canceled,Lauren Snyder,jonespatricia@example.com,505.762.9964x490,6509831647030643,2024-05-01 +Resort Hotel,1,55,2017,August,32,6,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient-Party,80.35,0,1,Canceled,Brandon Clark,morganregina@example.net,649-629-7485x65762,213156629270227,2025-05-21 +City Hotel,0,203,2017,June,24,12,1,1,1,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,113.97,0,2,Check-Out,Bianca Russell,anna84@example.net,667-756-9911,3531009905870393,2025-12-13 +City Hotel,1,155,2017,August,35,27,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,102.53,0,0,Canceled,Leonard Taylor,hamptonmichael@example.net,813.377.2915x127,342462230347121,2024-11-11 +Resort Hotel,1,29,2017,July,30,20,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,205.89,0,0,Canceled,Ryan Davis,wjohnson@example.net,3742236773,342556942778828,2025-03-16 +City Hotel,1,263,2017,February,7,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,44.2,0,0,Canceled,Louis Vance,brittany28@example.com,(892)628-2152,3564626488298666,2025-06-16 +City Hotel,1,129,2017,June,23,4,3,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,113.88,0,0,Canceled,Jordan Garcia,kathrynjohnson@example.com,001-567-694-5926,3576137090287655,2026-01-27 +Resort Hotel,0,3,2017,October,41,9,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,90.11,1,0,Check-Out,Joshua Jones,bradleygibson@example.net,393-353-4909x743,2433147000833055,2024-05-02 +City Hotel,0,2,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient-Party,162.4,1,2,Check-Out,Paul Simon,williamwheeler@example.net,+1-330-596-6313,6011792034710976,2024-08-20 +City Hotel,0,19,2017,August,34,20,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,B,1,No Deposit,16.0,179.0,0,Transient-Party,4.56,0,0,Check-Out,Mary Bryant,evansdana@example.com,+1-553-963-3764x8113,6523524847669433,2025-01-05 +Resort Hotel,0,1,2017,December,49,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,45.75,1,1,Check-Out,Mr. Bryan King IV,framsey@example.org,+1-421-986-3694x362,4460375671147263,2024-07-06 +Resort Hotel,0,4,2017,August,32,7,0,1,2,0.0,0,BB,PRT,Complementary,Direct,1,0,0,A,C,0,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,1,2,Check-Out,James Sanford,epoole@example.net,(424)464-7539,501892925345,2025-07-07 +Resort Hotel,1,187,2017,August,33,15,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,201.9,0,1,Canceled,Paul Vang,dgibbs@example.org,+1-950-483-1267,4483935663182942,2024-05-30 +Resort Hotel,0,13,2017,April,16,18,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,111.72,1,1,Check-Out,Gail Bell,burnsmichael@example.net,546-406-4079x206,639050721773,2026-03-11 +Resort Hotel,0,42,2017,December,50,16,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,64.75,0,1,Check-Out,John Welch,david77@example.com,001-222-264-8232,501839034367,2026-03-02 +City Hotel,0,1,2017,March,13,28,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,76.67,0,1,Check-Out,Victoria Santos,sethrodriguez@example.net,296.997.1124x091,343781324013508,2024-05-14 +Resort Hotel,0,138,2017,January,3,17,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,49.5,0,3,Check-Out,Shane Love,vhicks@example.org,001-761-735-8473x95931,2720197307728575,2024-06-06 +City Hotel,1,414,2017,June,24,10,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,144.05,0,0,Canceled,William Kelly,jasonmorris@example.com,001-699-525-4045,3578571215113644,2026-03-25 +Resort Hotel,0,9,2017,June,26,23,0,3,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,124.53,0,1,Check-Out,Stephen Jordan,joshuaodonnell@example.net,753-728-0414,4705030262398,2026-02-28 +City Hotel,0,5,2017,September,36,3,1,1,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,137.38,0,2,Check-Out,Thomas Soto,donna35@example.org,(812)772-7459,4781253728779,2025-07-06 +Resort Hotel,0,196,2017,August,31,2,0,3,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,238.0,179.0,0,Transient,179.23,0,2,Check-Out,Walter Howell,floresbrittany@example.com,661-669-7392x426,3557168378201061,2024-11-24 +Resort Hotel,0,3,2017,March,11,14,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,45.06,0,1,Check-Out,Haley Walsh DDS,beth29@example.org,5748956911,4760082594693,2025-11-19 +City Hotel,0,17,2017,April,17,24,2,1,1,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.83,1,1,Check-Out,Mark Bowman DDS,carolyn65@example.net,001-617-700-4650x0460,4831450863926445800,2024-08-28 +Resort Hotel,0,15,2017,March,10,2,2,4,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,56.48,0,2,Check-Out,Tammy Key,raven01@example.com,320.644.5882,4373124601722,2024-08-15 +City Hotel,0,20,2017,October,42,20,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient-Party,136.54,0,0,Check-Out,Tamara Caldwell,harrisalexis@example.net,001-639-860-1855,348681664560289,2024-05-22 +City Hotel,0,96,2017,May,21,23,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,63.0,179.0,0,Transient,126.88,0,0,Check-Out,Sherri Collins,kwilson@example.com,(901)728-1392x955,3504041093870193,2025-05-18 +City Hotel,0,59,2017,March,13,27,2,2,2,1.0,0,BB,BEL,Direct,Direct,0,0,1,A,B,0,No Deposit,13.0,179.0,0,Transient,94.72,0,3,Check-Out,Terry Warren,qhoward@example.com,001-659-896-1735x91375,30427903209632,2024-05-02 +Resort Hotel,0,32,2017,April,14,5,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,240.0,179.0,0,Transient,130.61,0,1,Check-Out,Jennifer Mcdonald,houstonmicheal@example.org,001-430-638-0230x6052,2268713488849986,2026-01-11 +City Hotel,0,11,2017,February,8,20,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Contract,75.68,0,1,Check-Out,Alex Edwards,reynoldszachary@example.com,8867583907,2239902209615604,2025-02-02 +City Hotel,1,97,2017,June,26,26,3,4,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,129.96,0,0,No-Show,Blake Spears,dpace@example.com,+1-571-765-5553,30220740340599,2024-09-16 +City Hotel,0,11,2017,December,51,17,0,1,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,155.46,0,1,Check-Out,Raymond Cox,crystal04@example.org,(739)689-3538x0694,3557815516661172,2026-02-16 +City Hotel,0,48,2017,March,12,16,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,140.98,0,1,Check-Out,Johnny Evans,michaelguerra@example.org,001-231-793-5537x21699,5366639458439066,2024-10-16 +City Hotel,1,32,2017,June,23,4,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,224.34,0,2,Canceled,Kimberly Hart,mbrown@example.org,259.254.6589x86145,180016405225929,2024-09-26 +City Hotel,0,39,2017,August,33,12,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,6.0,179.0,0,Transient,173.65,0,1,Check-Out,Paul Salas,donald62@example.org,651-943-0710x314,2267332411188544,2026-03-19 +City Hotel,0,38,2017,March,12,16,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,98.38,0,1,Check-Out,Angelica Peters,jamesnathan@example.org,202-394-0219x9127,3527463232968550,2024-07-05 +Resort Hotel,0,9,2017,July,27,4,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,252.0,0,2,Check-Out,Amy Jones,crystal46@example.org,(886)349-7474x13676,6524889346025810,2024-06-27 +Resort Hotel,0,16,2017,December,51,17,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,272.0,179.0,0,Transient-Party,51.02,0,0,Check-Out,Sandra Watkins,clarkjohn@example.net,(334)523-6284x22013,676318284913,2024-06-29 +City Hotel,1,48,2017,March,10,5,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.04,0,1,Canceled,Samantha Daniel,mejiacody@example.com,+1-353-982-9220,560227660290,2025-09-18 +City Hotel,1,20,2017,October,44,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,0,Transient,62.67,0,0,Canceled,Katie May,yvargas@example.net,988.629.1536x5127,3582348133331424,2024-12-11 +Resort Hotel,0,38,2017,November,46,11,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,48.67,0,3,Check-Out,Jared Wong,scott64@example.net,405.779.3503x467,6574557420489819,2025-04-16 +City Hotel,0,46,2017,December,52,24,0,2,2,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.64,0,1,Check-Out,Antonio Williams,lcabrera@example.org,211.400.8458x107,4206843859372044,2025-08-28 +City Hotel,0,10,2017,March,13,23,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,12.0,179.0,0,Transient,76.81,0,2,Check-Out,Vanessa Strickland,phamjennifer@example.org,(418)536-2017x95810,213144694886622,2024-10-15 +City Hotel,0,138,2017,August,35,27,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,223.32,0,1,Check-Out,Randy Olson,david05@example.com,227-612-3076x86008,4794899029886365474,2024-08-16 +City Hotel,1,9,2017,November,47,25,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,62.85,0,0,Canceled,Gwendolyn Wright,deanboyle@example.com,899.469.5115x66811,30251897237882,2025-03-22 +City Hotel,0,231,2017,July,30,29,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,31.0,179.0,0,Contract,133.47,0,2,Check-Out,Sarah Walter,sierrasanchez@example.com,(584)679-4448,213106390780748,2025-03-25 +City Hotel,1,18,2017,June,23,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,105.21,0,0,Canceled,Morgan Rowe,michael51@example.org,001-519-586-2260x288,6011800045301055,2025-05-04 +Resort Hotel,1,49,2017,May,20,16,0,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,51.58,0,1,Canceled,Stacey Page,smithrenee@example.net,403.739.9124,346709380951805,2026-01-07 +City Hotel,0,31,2017,October,41,11,2,0,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,196.38,0,0,Check-Out,Nicholas Schwartz,miguel32@example.net,582.414.2313,346759552386231,2025-02-22 +Resort Hotel,0,158,2017,March,13,29,1,3,2,1.0,0,BB,SWE,Groups,Corporate,0,0,0,A,A,2,Refundable,13.0,224.0,0,Transient-Party,49.3,1,0,Check-Out,Carrie Mccarthy,xmartinez@example.com,2827453604,180066633146413,2025-11-14 +City Hotel,1,285,2017,April,14,5,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,0,Transient,101.66,0,0,Canceled,Robert Wells,contrerassheila@example.net,(235)470-6511x20715,5582549166504648,2025-07-07 +City Hotel,0,2,2017,October,41,8,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.91,0,0,Check-Out,Gerald Hayes,hbennett@example.org,+1-456-800-3765x32307,3546328094195096,2025-08-13 +Resort Hotel,0,17,2017,March,13,29,1,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,79.95,0,1,Check-Out,Brenda Mays,andersonlisa@example.net,001-630-757-7310x3082,213164937663687,2025-05-31 +Resort Hotel,1,31,2017,October,41,12,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,266.0,179.0,0,Transient,44.09,0,0,No-Show,Andrew Holden,bradleysteven@example.org,+1-498-474-3532x88462,568274740766,2025-08-04 +City Hotel,1,63,2017,November,47,20,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,134.19,0,2,Canceled,Katie Elliott,jasonsmith@example.com,+1-695-470-3121x41215,377328547281634,2024-09-05 +City Hotel,1,1,2017,October,40,5,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,74.14,0,0,Canceled,Amy Ortiz,brandon89@example.com,+1-408-834-0842x06676,3560803303768645,2024-10-15 +City Hotel,0,51,2017,October,43,23,1,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,72.13,0,0,Check-Out,Robert Mcknight,dhayes@example.net,803.897.4610x120,6011969707858627,2025-10-23 +Resort Hotel,1,8,2017,August,32,9,0,1,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,Refundable,240.0,179.0,0,Transient,252.0,0,0,Canceled,Jessica Rowe,amorse@example.net,272.474.6139,3521163566308276,2025-05-17 +City Hotel,0,3,2017,September,37,9,2,1,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,133.62,0,1,Check-Out,Anthony Valdez,vwilson@example.org,6427027241,4295375373042,2026-03-21 +Resort Hotel,1,306,2017,November,47,20,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,153.0,179.0,0,Contract,48.99,0,2,Canceled,Jennifer Townsend,ewagner@example.net,555.243.7662,3581714909113042,2024-07-24 +City Hotel,1,21,2017,September,36,7,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,111.57,0,1,Canceled,Benjamin Holt,erikgraham@example.com,763-632-9808x221,2255465140921399,2025-09-21 +City Hotel,1,97,2017,May,19,5,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,116.57,0,0,Canceled,Monica Savage,debbie64@example.net,(615)754-2061x8126,4540195831641412642,2025-05-28 +Resort Hotel,1,3,2017,January,2,3,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,Lacey Simpson,mjohnson@example.net,+1-595-425-0942x60216,3567250386687834,2025-10-03 +Resort Hotel,0,1,2017,July,26,1,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,240.0,179.0,0,Transient,49.39,1,1,Check-Out,Christine Smith,pnorris@example.com,754.989.8397,2720560392692669,2025-12-22 +City Hotel,0,97,2017,March,10,10,0,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,C,1,No Deposit,1.0,179.0,0,Transient-Party,76.0,0,0,Check-Out,Thomas Ward,elizabethkane@example.net,+1-323-557-4048x60958,2425913646744042,2025-01-15 +City Hotel,0,159,2017,July,31,30,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,E,1,No Deposit,10.0,179.0,0,Transient,129.6,0,1,Check-Out,Joshua Walker,marc86@example.org,6537496846,4783092149401772,2026-03-13 +Resort Hotel,0,31,2017,May,22,27,1,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,160.7,0,2,Check-Out,Ian Barrera,melissa42@example.net,001-714-394-5237x633,3577502993999632,2025-06-27 +Resort Hotel,1,147,2017,August,35,27,0,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,244.0,179.0,0,Transient,224.53,0,3,Check-Out,Timothy Carpenter,zbell@example.com,+1-996-806-8475x94631,3576700941406582,2025-11-13 +City Hotel,1,45,2017,May,18,3,2,2,1,0.0,0,BB,IRL,Groups,Corporate,0,0,0,A,A,0,No Deposit,11.0,228.0,0,Transient,64.84,0,0,Canceled,Rodney Young,cgray@example.net,+1-226-747-5756x2191,371781871671257,2024-12-01 +Resort Hotel,1,38,2017,October,40,5,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,42.97,0,0,Canceled,Rebecca Randolph,kphillips@example.com,+1-969-952-9915x1566,4473977778836527,2026-03-04 +City Hotel,1,104,2017,May,22,27,1,3,1,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,257.0,179.0,0,Transient-Party,78.74,0,0,No-Show,Aaron Villanueva,michael76@example.net,(377)993-1146,3525549188636688,2025-07-29 +City Hotel,0,171,2017,February,7,11,0,3,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,E,E,1,No Deposit,15.0,179.0,0,Transient,136.85,0,2,Check-Out,Paul Webb,martin81@example.com,001-249-449-3381,213184164339538,2025-01-06 +City Hotel,0,0,2017,May,21,20,1,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,14.0,179.0,0,Transient,1.85,0,0,Check-Out,Sara Cruz,weissbecky@example.com,001-822-286-5547x1290,675942909663,2026-01-11 +Resort Hotel,0,101,2017,March,10,7,0,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,2,No Deposit,249.0,179.0,0,Transient,215.54,1,0,Check-Out,Kevin Lee,lewisleah@example.net,551-799-3950,180067186484284,2024-07-16 +Resort Hotel,0,157,2017,May,19,9,4,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,218.53,0,1,Check-Out,Ashley Davis,sheliali@example.net,904.683.8864,4693612799126376,2024-11-09 +City Hotel,0,1,2017,March,11,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,14.0,222.0,0,Transient-Party,64.82,0,0,Check-Out,Summer Bender,john00@example.net,305-391-7935,180030519171267,2024-09-02 +Resort Hotel,0,94,2017,January,4,23,2,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,15.0,179.0,0,Transient,90.5,1,2,Check-Out,Diana Santos,justin96@example.net,858.728.0446,2264694212188673,2025-08-07 +City Hotel,0,11,2017,December,49,4,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,60.0,0,Transient,90.06,0,1,Check-Out,Sandra Norman,keithfreeman@example.com,+1-207-943-6809x9825,3598654336723099,2024-10-27 +Resort Hotel,0,64,2017,August,35,30,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,220.61,1,1,Check-Out,Jessica Patel,guzmansamuel@example.net,970.714.4724,2282716395581263,2025-06-29 +City Hotel,0,6,2017,August,34,24,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,102.92,0,1,Check-Out,Stephen Estrada,ceverett@example.org,001-316-443-2751,36557805651467,2025-08-31 +City Hotel,0,35,2017,August,34,20,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,119.67,0,1,Check-Out,Erin Turner,benjamin58@example.com,001-431-855-9722x627,180016934589902,2025-01-24 +Resort Hotel,0,3,2017,March,11,15,2,5,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,13.0,179.0,75,Transient-Party,105.48,1,3,Check-Out,Christopher Cortez,qmartinez@example.org,304-737-6367,4299718460621653867,2024-12-22 +Resort Hotel,0,1,2017,May,19,5,0,1,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,1,D,D,0,No Deposit,15.0,148.0,0,Transient,44.31,0,1,Check-Out,Melissa Anderson,powersmichelle@example.com,+1-754-894-7835,3596325880322552,2026-02-26 +Resort Hotel,0,2,2017,January,3,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,85.0,221.0,0,Transient-Party,37.76,0,0,Check-Out,Amy Todd,jhawkins@example.net,339-600-7797,347346431574135,2025-02-02 +City Hotel,0,3,2017,October,44,31,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,169.27,0,2,Check-Out,Beth Thompson,amandaneal@example.net,(636)902-9612x6196,2720305006967259,2024-12-16 +City Hotel,1,404,2017,July,28,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,144.96,0,0,Canceled,Nicole Blair,davisvanessa@example.org,(956)506-0660,4470087602893,2025-10-26 +City Hotel,1,251,2017,December,49,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,76.27,0,1,Canceled,Steven Bell,rle@example.org,(769)636-1018x1306,3594656706982225,2025-04-18 +City Hotel,0,57,2017,January,2,7,0,5,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,109.38,1,1,Check-Out,Michelle Chapman,plee@example.com,001-499-793-7190x07060,4328733427830198,2025-11-27 +City Hotel,0,115,2017,November,46,13,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.37,0,2,Check-Out,John Davidson,monique98@example.org,562.552.1680,4417269221945108,2024-09-26 +City Hotel,0,27,2017,March,10,5,2,1,1,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,125.86,0,0,Check-Out,Ruben Rosales,jermaine36@example.com,(848)767-0420,6552939934536192,2024-05-03 +City Hotel,0,18,2017,March,12,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,16.0,58.0,0,Transient,90.93,0,0,Check-Out,Cheryl Perry,holmesjenna@example.org,(552)334-1014x955,2576750111967691,2026-03-27 +City Hotel,1,155,2017,April,14,3,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,11.0,232.0,0,Transient,103.43,0,0,Canceled,Elizabeth Flowers,johnsonanthony@example.net,783.964.4199,3551656587077591,2026-02-05 +City Hotel,0,1,2017,November,46,12,2,1,1,0.0,0,BB,ITA,Corporate,Corporate,0,0,0,D,D,0,No Deposit,13.0,78.0,0,Transient,88.62,0,0,Check-Out,Alec Santiago III,jennifer84@example.net,+1-701-748-5829x61163,38797019032058,2025-04-10 +City Hotel,1,70,2017,June,24,12,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,252.0,0,0,Canceled,Shaun Osborn,rebecca79@example.com,+1-533-388-4864,180038157950710,2024-12-29 +Resort Hotel,1,197,2017,June,23,8,0,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,14.0,221.0,0,Transient-Party,60.27,0,0,Canceled,Mrs. Crystal Lucero MD,michelleburke@example.net,(816)720-8905,180023309509408,2024-09-18 +Resort Hotel,0,50,2017,August,35,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,240.0,179.0,0,Transient,222.22,0,2,Check-Out,Krystal Bryant,cruznicole@example.net,001-431-846-3532x71726,2335371660710549,2026-02-11 +City Hotel,0,0,2017,October,40,3,1,1,1,0.0,0,BB,NLD,Groups,Corporate,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,33.25,0,0,Check-Out,Victoria Barnes,zschneider@example.org,875-217-6112x7931,4863595461978843953,2024-12-15 +City Hotel,0,2,2017,December,49,9,0,1,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,0,No Deposit,16.0,72.0,0,Transient,61.81,0,0,Check-Out,Katrina Rivers,penningtonmatthew@example.com,001-240-959-5174x194,4518652593179760,2026-02-07 +City Hotel,0,21,2017,January,2,9,1,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,124.6,0,1,Check-Out,Teresa Lee,jperez@example.net,6292994397,4874022079474994,2025-01-22 +Resort Hotel,0,53,2017,November,46,18,0,3,2,0.0,0,HB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,285.0,331.0,0,Transient-Party,46.31,0,0,Check-Out,Gary Abbott,georgeavila@example.com,9526745296,3567219375815060,2025-09-12 +City Hotel,0,24,2017,May,21,20,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,99.18,1,2,Check-Out,Gabrielle Lopez,thomas60@example.com,654-563-3860x10523,4414212539773943865,2025-12-29 +City Hotel,1,248,2017,September,36,4,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,310.0,179.0,0,Transient,126.72,0,0,Canceled,Jillian Griffin,seanleach@example.com,767-699-4118x8020,30295804755833,2025-09-29 +Resort Hotel,0,43,2017,February,8,19,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,79.0,179.0,0,Transient,49.2,0,0,Check-Out,Margaret Smith,ariel46@example.net,349-942-6299x917,4365032643410265575,2025-06-25 +Resort Hotel,0,66,2017,July,29,14,4,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,252.0,0,1,Check-Out,David Sawyer,johnallen@example.com,(558)247-0926x3687,4754899935181,2025-06-05 +Resort Hotel,0,10,2017,March,9,1,1,2,2,0.0,0,FB,FRA,Groups,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,107.88,0,0,Check-Out,John Smith,wesleysmith@example.org,462.278.9543x26882,213135304895607,2024-11-22 +Resort Hotel,0,100,2017,May,19,4,2,7,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,104.26,0,2,Check-Out,Kathleen Mcdaniel,nguyenmelissa@example.com,001-971-252-8802,3580544672721288,2024-06-26 +Resort Hotel,0,146,2017,August,35,30,1,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,239.0,179.0,0,Transient,228.7,0,1,Check-Out,George Martin DDS,qroberts@example.org,495-246-3253x208,345483534435740,2024-05-30 +City Hotel,1,44,2017,January,4,24,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,48.09,0,2,Canceled,Stacy Contreras,milleramy@example.org,+1-783-903-7236x623,4946459731899834,2025-04-19 +City Hotel,1,57,2017,August,32,5,1,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,110.99,0,0,Canceled,Susan Johnson,angelacarter@example.com,001-201-577-3606x852,4815700315444929,2026-01-21 +City Hotel,0,382,2017,August,33,19,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,132.17,0,2,Check-Out,Mark Lewis,christopherburke@example.org,(921)491-5114x18522,3538954961255414,2026-01-21 +City Hotel,0,9,2017,June,25,20,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,G,1,No Deposit,16.0,179.0,0,Transient,181.96,0,0,No-Show,Brandi Noble,ashley17@example.org,8653675440,3523549242154100,2026-02-22 +Resort Hotel,1,274,2017,November,44,3,2,10,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,F,0,No Deposit,242.0,179.0,0,Transient,86.98,0,2,Canceled,Darrell Carey,james63@example.net,839-615-1617x676,343687708195110,2025-08-05 +Resort Hotel,0,160,2017,March,11,14,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,G,1,No Deposit,242.0,179.0,0,Transient,63.17,1,1,Check-Out,Daniel Turner,anne52@example.org,517-844-3521x043,213169184105233,2025-11-20 +City Hotel,0,84,2017,June,23,6,0,1,2,1.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,140.8,0,1,Check-Out,Sarah Howard,smithkerry@example.org,564.532.9271,4162537456529293,2025-12-09 +City Hotel,1,6,2017,December,48,2,0,2,2,0.0,0,SC,PRT,Complementary,Corporate,0,1,0,A,K,0,No Deposit,9.0,179.0,0,Transient-Party,4.08,0,0,Canceled,Anthony Davis,qpatel@example.org,6308146462,379624280142043,2024-07-05 +Resort Hotel,1,186,2017,August,34,20,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,307.0,179.0,0,Transient-Party,196.6,0,0,Canceled,Jennifer Daniels,andrewpowell@example.org,673.728.8880x0316,588887812521,2025-01-19 +Resort Hotel,0,273,2017,October,43,22,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,C,0,No Deposit,33.0,221.0,0,Contract,50.15,0,0,Check-Out,Jason Ramirez,robertsandrew@example.org,+1-879-775-8235x957,4385742494082500,2025-10-20 +City Hotel,0,2,2017,January,2,6,1,3,1,0.0,0,BB,ESP,Direct,GDS,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,65.36,0,0,Check-Out,Jennifer Morgan,pnovak@example.com,850-312-5655x431,502038826520,2025-02-12 +City Hotel,0,20,2017,January,2,9,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,91.67,0,1,Check-Out,Marcus Torres,xrose@example.net,(564)702-2600,348280204989908,2025-07-31 +Resort Hotel,0,47,2017,October,40,5,2,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,239.0,179.0,0,Transient,39.62,0,2,Check-Out,Kenneth Weaver,mstewart@example.org,001-546-396-3094x083,6559055803468095,2024-11-30 +City Hotel,0,15,2017,July,28,10,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,129.2,0,2,Check-Out,Sarah Wilson,paul77@example.net,923.700.8487,6568010001063890,2024-04-10 +City Hotel,0,3,2017,January,4,23,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,139.97,1,1,Check-Out,Mason Collins,parkerseth@example.net,(858)456-2898x88151,4756503972193255,2025-08-06 +Resort Hotel,0,44,2017,May,19,8,4,4,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,G,0,No Deposit,304.0,179.0,0,Transient,169.24,1,1,Check-Out,Molly Wright,gilbertalicia@example.net,(441)458-2652x63834,38301983264779,2024-07-27 +Resort Hotel,1,252,2017,October,41,12,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,78.0,179.0,62,Contract,95.91,0,0,Canceled,James Crawford,qnewton@example.net,771.250.1671x89962,213143037883411,2024-06-09 +City Hotel,1,367,2017,October,43,23,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.96,0,0,Canceled,Ethan Collins PhD,alexjennings@example.net,966.735.8335,30320282354766,2024-12-06 +Resort Hotel,0,41,2017,March,10,7,1,5,2,0.0,0,SC,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,87.97,0,1,Check-Out,Ann Holland,twright@example.com,593-485-4132x9199,4547977156814056,2024-08-06 +City Hotel,0,78,2017,December,51,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.21,0,0,Check-Out,Jennifer Sanders,sscott@example.com,001-372-827-6080,213122085985682,2025-07-16 +City Hotel,0,59,2017,June,26,24,1,2,3,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,116.81,0,1,Check-Out,David Li,bowmanjames@example.com,712.376.4889,3524175013429908,2024-07-05 +City Hotel,1,400,2017,October,41,9,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,62.54,0,0,Canceled,Jose Johnson,jennifer37@example.org,+1-524-277-6761x9369,5393506526223300,2025-03-05 +City Hotel,0,94,2017,March,11,9,1,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.91,0,1,Check-Out,Gerald Dennis,shaunmullins@example.com,+1-960-211-4512x5488,4351233339548757560,2024-10-03 +City Hotel,0,86,2017,May,21,23,2,3,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.24,0,1,Check-Out,Christopher Jacobs,ryan12@example.org,+1-949-436-9459x69267,676129614977,2025-02-18 +City Hotel,0,50,2017,December,52,25,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,106.41,0,2,Check-Out,Aaron Kelly,clarkbrian@example.com,+1-239-911-7259,3508173772193195,2024-12-14 +City Hotel,0,12,2017,March,13,27,1,1,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,195.1,1,1,Check-Out,Miss Ashley Glass,robert89@example.com,+1-239-877-7783x407,2238215013116201,2024-04-23 +City Hotel,0,53,2017,June,26,23,0,10,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,152.54,0,3,Check-Out,Debbie Johnson,williamsalyssa@example.org,575.897.6189x2459,4975344200401790357,2025-06-19 +City Hotel,0,12,2017,August,34,19,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,64.76,0,1,Check-Out,Jacqueline Nelson,jamesscott@example.com,001-512-953-0443,6501918163612504,2025-03-18 +City Hotel,0,37,2017,October,44,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,42,Transient,103.95,0,0,Check-Out,Harry Rowland DVM,hamiltonvanessa@example.com,957.882.1674x6846,3577663076646209,2026-02-24 +City Hotel,0,12,2017,June,24,10,0,1,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,168.38,0,0,Check-Out,Michael Lang,malvarado@example.com,738-447-1543,4397931462721,2025-08-21 +City Hotel,0,33,2017,April,15,8,0,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,240.0,179.0,0,Transient,92.57,1,2,Check-Out,Vanessa Vance,millernathaniel@example.net,724.263.4525,3562618042903073,2024-09-24 +City Hotel,0,63,2017,April,15,9,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,77.43,0,0,Check-Out,Robert Bailey,saraterry@example.org,647.903.7933x6417,4531611955017797339,2025-03-06 +Resort Hotel,0,8,2017,October,43,26,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,239.0,179.0,0,Transient,49.32,0,1,Check-Out,David Boyle,qbraun@example.org,(463)836-6400x6623,3559882267947869,2024-10-21 +Resort Hotel,0,37,2017,August,34,18,2,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,165.84,0,3,Check-Out,Roberto Robinson,charles00@example.org,808-801-6501x15698,4242942243410860,2024-07-14 +City Hotel,0,13,2017,June,25,22,0,1,1,0.0,0,BB,,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,133.93,0,0,Check-Out,Kyle Henderson,tabitha35@example.org,6033933258,344167703783680,2025-01-12 +Resort Hotel,0,35,2017,March,10,8,2,0,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,100.53,0,1,Check-Out,George Patel,randy91@example.org,(461)281-1899,502030632520,2024-12-02 +Resort Hotel,0,2,2017,October,41,8,1,1,2,2.0,0,BB,ESP,Direct,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,227.25,1,3,Check-Out,Troy Lewis,faulknerpaul@example.net,001-671-263-8201x54095,30180497221543,2026-02-19 +City Hotel,1,2,2017,January,2,11,0,4,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,No Deposit,14.0,45.0,0,Transient-Party,62.53,0,0,No-Show,Rodney Evans,camachosheila@example.net,+1-671-966-5194x92094,30008122702225,2024-05-22 +City Hotel,0,16,2017,September,39,26,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,175.61,0,1,Check-Out,Gordon Simmons,patrickwells@example.net,+1-305-627-3574x7415,4715491465844,2025-11-13 +City Hotel,1,0,2017,November,47,19,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient-Party,2.87,0,0,Canceled,Patrick Cox,davisrobert@example.com,(462)970-2980x9422,38014013522591,2025-09-21 +City Hotel,0,2,2017,March,13,28,2,2,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,112.29,0,1,Check-Out,Angela Nelson,zacharymartin@example.com,654-242-9468x4423,5184186457431918,2025-08-23 +City Hotel,1,60,2017,January,5,31,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Group,141.49,0,2,Canceled,Melinda Hall,anthonyward@example.org,001-866-320-1407x9908,343104038228819,2026-02-04 +Resort Hotel,1,95,2017,August,34,20,1,2,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,218.58,1,0,Check-Out,Deanna Collins,brendan58@example.com,001-334-854-0594x7563,213133772419653,2025-06-24 +City Hotel,0,384,2017,July,28,14,0,2,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Transient,129.32,0,0,Check-Out,Mr. James Dennis,mitchelljacob@example.org,001-846-486-7837x664,4780669097404362,2024-10-20 +City Hotel,0,54,2017,August,31,4,2,5,2,1.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Contract,222.33,0,2,Check-Out,Katrina Hernandez,murraydeborah@example.org,689-340-7822x727,4057081576045342,2025-12-09 +City Hotel,0,8,2017,October,41,8,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,20.0,179.0,0,Contract,61.87,0,0,Check-Out,Sarah Garcia,laurenwalters@example.com,(345)800-1424x6396,3549982413776429,2025-01-01 +City Hotel,1,64,2017,December,48,1,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient-Party,121.9,0,0,Canceled,Kyle Frost,alejandra11@example.org,3862096960,348558196306789,2026-01-19 +City Hotel,1,115,2017,May,21,24,0,1,3,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,45.0,0,Transient,134.8,0,0,No-Show,Nicole Fowler,allenmatthew@example.org,(921)595-9716x78819,5379531002164438,2025-05-08 +Resort Hotel,0,3,2017,March,10,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,D,D,0,No Deposit,241.0,179.0,0,Transient,58.79,0,1,Check-Out,Lisa Stone,jefferysoto@example.net,643.221.7497x629,4511621492932410,2024-03-30 +City Hotel,0,189,2017,July,30,26,1,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,232.12,0,1,Check-Out,Philip Miller,jasonhiggins@example.org,709-464-7140x4052,3558639866451037,2025-01-21 +City Hotel,0,87,2017,October,40,5,1,1,1,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,69.87,0,3,Check-Out,Matthew Fisher,lucasjenkins@example.org,001-579-861-9522x231,180063706243003,2025-12-03 +City Hotel,0,3,2017,March,12,24,2,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,B,1,No Deposit,15.0,45.0,0,Transient,62.8,0,1,Check-Out,Stacey Baker,matthew18@example.net,001-666-279-0242x89693,213192893145423,2025-05-20 +Resort Hotel,1,7,2017,December,50,15,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,238.0,179.0,0,Transient-Party,196.39,0,1,Canceled,Kelly Kim,jeffrey92@example.org,331-879-4387,4669935275872729542,2025-10-09 +City Hotel,1,49,2017,April,17,23,0,4,2,0.0,0,BB,BEL,Online TA,Direct,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,117.72,0,1,Check-Out,Joanna Anderson,kaitlyncastillo@example.org,837-807-6671x610,2399200981323109,2024-07-28 +City Hotel,0,58,2017,October,42,18,0,2,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,1,No Deposit,13.0,179.0,0,Transient,114.03,0,1,Check-Out,Joseph Cantrell,qgreen@example.com,001-739-587-1048x9775,4228150116400251,2024-04-18 +Resort Hotel,0,158,2017,October,42,17,2,2,2,0.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient,99.97,0,0,Check-Out,David Hood,tiffany37@example.org,(793)338-6014,4474336280659,2025-05-11 +City Hotel,1,166,2017,June,26,26,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,20.0,179.0,0,Transient,131.32,0,0,Canceled,Victoria Long,proctorkathy@example.org,001-617-588-8448,2700583460649076,2024-07-25 +City Hotel,0,14,2017,October,41,10,0,2,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.65,0,1,Check-Out,Teresa Caldwell,christinewright@example.net,562.743.1667x859,36777408941350,2025-10-19 +Resort Hotel,1,20,2017,May,19,4,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,G,1,No Deposit,321.0,179.0,0,Transient,130.82,0,1,Canceled,Pamela Parks,kimberly86@example.com,323.412.4913x8264,4436664078591707,2025-02-07 +City Hotel,1,272,2017,August,36,31,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,112.43,0,0,Canceled,Grace Cortez,andrewwatts@example.org,001-227-280-5803,6011987625617487,2024-06-12 +Resort Hotel,0,212,2017,August,34,25,2,5,2,1.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,190.24,0,0,Check-Out,Julia Farley,gregory13@example.com,+1-925-641-6667,2594406181717494,2025-06-13 +City Hotel,1,40,2017,July,27,5,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,137.47,0,0,Canceled,Paul Jones,juliesmith@example.org,729-940-9239,3589460014182702,2024-11-06 +City Hotel,1,253,2017,August,33,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,20.0,179.0,0,Transient-Party,124.37,0,2,Canceled,Robert Gill,ymanning@example.net,+1-280-208-4985,341639035255945,2025-04-23 +Resort Hotel,1,10,2017,November,47,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,56.44,0,1,Canceled,Michelle Wolfe,kevin60@example.org,5279631790,4757101138437,2025-04-06 +City Hotel,0,91,2017,April,16,16,0,2,3,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,140.84,0,1,Check-Out,Emily Kramer,pamelaserrano@example.com,7278564333,213157725785423,2025-08-20 +City Hotel,0,333,2017,October,42,14,2,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,55.84,0,1,Check-Out,Suzanne Roberts,jamesbray@example.org,438-613-8571x5822,341592022310670,2024-06-30 +City Hotel,0,359,2017,May,21,23,1,7,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient-Party,105.56,1,0,Check-Out,Eric Thomas,smithtina@example.org,227.938.8387x74927,375271500451392,2024-12-18 +City Hotel,1,158,2017,August,32,6,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,A,0,No Deposit,12.0,179.0,0,Transient,64.19,0,0,Canceled,Allen Howard,tasha78@example.org,8676777852,3557692952148745,2024-05-05 +Resort Hotel,0,96,2017,July,27,4,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,135.0,179.0,0,Transient-Party,102.73,0,2,Check-Out,Dr. Kelly Murphy,uewing@example.com,601-923-2790,4451955405056160,2024-07-18 +Resort Hotel,0,148,2017,April,17,25,0,2,2,0.0,0,HB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,134.64,0,0,Check-Out,Rebecca Knight,nicolehuerta@example.com,426.734.7577x281,213180561213003,2025-06-30 +City Hotel,1,76,2017,December,52,30,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,113.14,0,0,Canceled,Colleen Stevens,mlewis@example.net,491-554-2514,3520044633651305,2024-08-26 +Resort Hotel,1,198,2017,July,31,30,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,103.03,0,3,Canceled,Amber Young,paulstephenson@example.net,(631)979-4762x36487,30462797261928,2025-03-12 +City Hotel,0,91,2017,August,32,9,0,4,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,245.77,0,2,Check-Out,Donald Kerr,dominic34@example.net,+1-726-253-8115x56523,3586545852347939,2025-03-13 +Resort Hotel,0,18,2017,December,52,24,0,1,2,2.0,0,Undefined,PRT,Groups,Direct,0,0,0,E,B,0,No Deposit,14.0,179.0,0,Transient-Party,211.05,0,1,Check-Out,Veronica Johnson,richardmccoy@example.net,+1-353-412-3059x679,3510991996765142,2024-11-03 +Resort Hotel,0,9,2017,January,4,24,1,5,2,0.0,0,BB,POL,Direct,Direct,0,0,0,A,C,0,No Deposit,247.0,179.0,0,Transient,45.04,1,0,Check-Out,Sean Mcfarland,allison69@example.net,621.710.6381,342418569498760,2025-10-07 +City Hotel,0,19,2017,December,49,3,0,4,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,50.78,1,0,Check-Out,Andrew Chang,taylor25@example.org,+1-827-716-0824,213117032375698,2025-09-04 +Resort Hotel,0,17,2017,February,7,14,0,3,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,73.0,0,Transient,47.06,0,0,Check-Out,Tracey Weaver,julie66@example.net,556-909-5690,4714125085458,2024-11-18 +Resort Hotel,0,3,2017,July,30,21,4,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,250.0,179.0,0,Transient,221.07,0,0,Check-Out,Michael Hudson,josephdavis@example.org,(261)895-8585x644,587571907209,2024-08-27 +City Hotel,0,65,2017,October,43,24,0,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient-Party,91.66,1,0,Check-Out,Tina Ellis,millerdiana@example.org,001-207-358-1277x320,4793582805707,2025-02-23 +City Hotel,1,56,2017,September,38,23,1,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,E,E,0,No Deposit,2.0,179.0,0,Transient,80.89,0,0,Canceled,Raymond Perez,burtonsamantha@example.net,911.451.9490,3512923942179571,2024-06-29 +Resort Hotel,0,20,2017,July,27,5,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,50.69,1,1,Check-Out,Amy Jones,ismith@example.org,001-243-269-4733x3306,4800380468560,2024-08-17 +Resort Hotel,0,34,2017,December,51,23,0,6,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,63.75,0,1,Check-Out,Jessica Pittman,walkeralison@example.org,+1-681-955-3193,4194343246906921,2024-08-08 +City Hotel,0,102,2017,April,17,28,2,2,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,83.32,0,0,Check-Out,Michael Anderson,medinahannah@example.com,(459)956-4580,4522549947579,2025-11-29 +City Hotel,1,201,2017,September,35,2,1,4,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,73.25,0,0,Canceled,Samantha Cole,christopherwatson@example.org,322-943-7745x5260,4407339203815280,2025-08-25 +City Hotel,0,21,2017,December,2,30,1,2,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient-Party,74.59,1,0,Check-Out,Daniel Ramirez,allisonkline@example.net,+1-837-943-5997x21137,36578862394346,2024-12-31 +City Hotel,0,97,2017,May,21,21,0,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.42,0,1,Check-Out,Ruben Nelson,lynn36@example.com,236-635-6902x5832,2275283127243778,2025-12-16 +City Hotel,0,9,2017,May,20,12,1,0,1,0.0,0,SC,SWE,Online TA,GDS,0,0,0,A,A,0,No Deposit,168.0,179.0,0,Transient,106.47,0,0,Check-Out,Kelsey Walker,adamdominguez@example.net,229-535-1104x4340,675921402169,2025-07-15 +City Hotel,0,289,2017,August,34,21,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,175.03,0,2,Check-Out,Samuel Ramirez,lmoreno@example.com,001-612-320-9493x346,4994202122718698952,2024-07-17 +Resort Hotel,0,24,2017,July,28,10,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,91.46,0,2,Check-Out,Susan Ross,kellymercer@example.net,001-327-480-7937x0582,213126088581737,2026-03-02 +Resort Hotel,0,146,2017,May,18,2,0,6,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,92.53,0,1,Check-Out,Angela Robbins,wilsonevan@example.org,850-432-2733x48601,6011681716501524,2024-09-30 +City Hotel,1,285,2017,October,43,22,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Contract,97.18,0,2,Canceled,Vincent Tapia,rhondagarcia@example.org,594-707-4093x4872,6011416255111843,2026-01-31 +Resort Hotel,0,5,2017,December,49,4,0,2,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,10.0,179.0,0,Transient,94.73,1,2,Check-Out,Diane Ewing,iphillips@example.net,+1-466-525-5505x16305,2273432589137125,2025-04-10 +City Hotel,0,177,2017,August,32,10,2,5,2,0.0,0,BB,RUS,Direct,Direct,0,0,0,D,D,1,No Deposit,12.0,179.0,0,Transient,213.31,0,2,Check-Out,David Hudson,gonzalezmary@example.net,849.248.1855,3556570842698031,2025-10-06 +Resort Hotel,1,232,2017,May,18,4,4,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,0,Transient,123.29,0,1,Canceled,Lance Day,josephisaac@example.org,8488310612,3542466879611384,2024-11-10 +Resort Hotel,0,8,2017,February,7,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,D,D,0,No Deposit,303.0,179.0,0,Transient,79.9,1,1,Check-Out,Amanda Myers,spencer95@example.org,937.844.5821,3515882723267822,2025-03-11 +Resort Hotel,0,8,2017,December,49,4,1,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,83.98,1,0,Check-Out,Darius Taylor,danielcummings@example.com,959-939-5005x4407,180018806033266,2025-03-10 +Resort Hotel,0,133,2017,July,26,1,3,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Contract,122.29,0,0,Check-Out,Victor Clark,jacksonpamela@example.com,+1-624-416-3315,4497891546597163375,2024-12-24 +City Hotel,0,28,2017,September,39,26,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,28.0,179.0,0,Transient-Party,238.7,1,1,Check-Out,David Mckay,summersdiane@example.com,+1-961-705-2613x3296,4357764642921342,2025-07-20 +City Hotel,0,161,2017,October,41,13,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,11.0,179.0,0,Transient,108.42,0,0,Check-Out,Stacey Wells,dlee@example.com,+1-601-287-4478x322,30478304912092,2026-02-13 +Resort Hotel,0,98,2017,October,43,27,1,4,3,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,239.0,179.0,0,Transient,252.0,1,0,Check-Out,Julie Woodard,camerontaylor@example.org,853-558-8466x186,4322613716543627,2026-01-28 +Resort Hotel,0,0,2017,December,51,19,1,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,39.96,0,0,Check-Out,Ryan Hunter,jenniferlarson@example.org,344.873.0229x80535,568798718991,2024-11-28 +Resort Hotel,0,9,2017,April,17,20,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,245.0,179.0,0,Group,118.09,0,1,Check-Out,James Turner MD,jessicadurham@example.com,446-738-7642x819,180009060702522,2025-10-01 +City Hotel,0,9,2017,February,6,8,2,1,2,0.0,0,HB,NLD,Groups,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,85.07,0,0,Check-Out,Robert Carroll,melissa78@example.org,(792)219-2355,3593787196869365,2024-11-05 +Resort Hotel,0,11,2017,December,50,13,0,1,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,27.0,179.0,0,Transient,57.31,0,1,Check-Out,Bruce Bennett,jjackson@example.net,(575)478-4465x5333,4476511817439303,2024-08-06 +City Hotel,0,3,2017,September,36,3,0,1,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,136.81,0,1,Check-Out,Kayla Riggs,uhester@example.org,001-945-692-3904,347064937117446,2025-05-22 +City Hotel,0,0,2017,October,40,5,2,0,2,0.0,0,BB,,Direct,Direct,0,0,0,B,B,0,No Deposit,16.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Sheila Mccoy,shannon07@example.net,(291)449-6537,4963428215315236060,2025-04-09 +City Hotel,0,104,2017,May,18,5,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,B,2,No Deposit,11.0,179.0,0,Transient,120.79,0,1,Check-Out,Andrew Hamilton,bobgutierrez@example.net,(304)900-9829,6505378425292635,2026-02-13 +City Hotel,0,0,2017,April,15,9,1,1,1,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,112.01,0,0,Check-Out,George Hardin,eallen@example.net,818.734.3797x197,3578896710756658,2024-05-26 +City Hotel,0,21,2017,January,3,16,0,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient,117.78,0,1,Check-Out,William Gonzales,chase60@example.net,(442)973-1704x459,6011708462030596,2025-03-05 +City Hotel,0,100,2017,December,52,26,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,0,Transient-Party,94.02,0,2,Check-Out,Crystal Taylor,starkmonica@example.org,001-448-723-4429x82616,4660232777977092030,2024-09-13 +Resort Hotel,1,38,2017,July,31,29,4,7,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,242.0,179.0,0,Transient,186.19,0,0,Canceled,Pamela Lindsey,julie19@example.net,439-655-0933,4302406246625,2025-10-02 +City Hotel,0,0,2017,April,14,4,0,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,105.35,0,1,Check-Out,Amanda May,hubbardlauren@example.org,+1-737-364-6175x428,3585940588436794,2024-06-13 +City Hotel,0,240,2017,May,18,5,0,1,2,0.0,0,HB,DEU,Groups,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,114.53,0,0,Check-Out,Shelly Duncan,jennifer03@example.com,794-477-9189,4552776266883080,2025-11-12 +Resort Hotel,1,35,2017,June,23,3,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,135.94,0,1,Canceled,James Smith,barbaragreen@example.org,+1-234-765-0080x650,4670496435483466277,2024-03-28 +City Hotel,1,14,2017,February,7,12,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.29,0,0,Canceled,Tammy Watts,victoria37@example.org,+1-988-946-8540x3169,586583683360,2024-05-03 +City Hotel,0,1,2017,August,32,5,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,136.85,0,0,Check-Out,Brian Watson,victoria84@example.org,304-284-4091x7203,30059894391804,2026-01-15 +Resort Hotel,0,13,2017,August,32,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,12.0,179.0,0,Transient,204.13,0,1,Check-Out,Martin Vang,ihenry@example.org,001-573-365-9898x83621,4373793520943754338,2025-11-28 +Resort Hotel,1,254,2017,July,28,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,E,E,0,No Deposit,238.0,179.0,0,Transient,142.11,0,0,Canceled,Dr. Sara Singh,emily04@example.net,8304744118,5187048624393115,2026-01-04 +Resort Hotel,0,1,2017,February,6,9,1,0,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,63.28,0,1,Check-Out,Kimberly Cole,williamsjessica@example.net,740.226.9435,2274485434387757,2024-08-27 +City Hotel,0,35,2017,September,36,4,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,98.09,0,2,Check-Out,Megan Hayes,njones@example.org,(348)767-2389,3532622563244542,2024-05-12 +City Hotel,1,150,2017,June,26,22,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,141.74,0,0,Canceled,Joshua Morris,sclark@example.com,412.404.0752x8834,4297359460779,2025-05-11 +Resort Hotel,0,265,2017,November,45,10,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,364.0500000000011,226.0,0,Transient,47.89,0,0,Check-Out,Alison Mitchell,thomas36@example.org,689-601-0367x065,30472954483744,2026-01-18 +City Hotel,0,24,2017,April,15,9,2,0,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,2,No Deposit,18.0,331.0,0,Transient,3.59,0,0,Check-Out,Brian Thomas,estewart@example.net,890-964-6661,4784221672364664,2024-10-17 +City Hotel,0,1,2017,February,9,28,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,24,Transient,30.43,0,0,Check-Out,Jason Turner,katherinewagner@example.org,(707)784-9852x045,180071741357654,2025-11-20 +City Hotel,1,414,2017,December,51,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,63.66,0,0,Canceled,Jeffrey Walker,hawkinsanthony@example.com,(706)944-8794,2720333799080387,2024-08-27 +City Hotel,0,55,2017,October,41,12,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,91.18,0,0,Check-Out,Paul Myers,jimmy64@example.com,+1-713-812-2700x1419,2700245150904522,2024-10-02 +Resort Hotel,0,39,2017,May,21,21,4,6,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,247.0,179.0,0,Transient,176.21,1,2,Check-Out,Kristen Campos,rossbrittany@example.com,+1-712-991-8189x13106,676311460965,2024-08-29 +City Hotel,1,113,2017,October,42,19,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,39,Transient,97.69,0,0,Canceled,Malik Hogan,christopherfrazier@example.net,(608)419-6323,676317331707,2024-11-27 +City Hotel,0,2,2017,November,44,4,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,180.0,57.0,0,Transient-Party,48.27,0,1,Check-Out,Stacey Clark,michael21@example.net,3942387220,6011774172709671,2025-05-28 +City Hotel,1,157,2017,January,2,2,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.41,0,0,Canceled,Duane Campos,campbellashley@example.net,(790)256-5679,213182761067957,2025-08-31 +Resort Hotel,0,36,2017,August,32,4,1,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,1,No Deposit,247.0,179.0,0,Transient,208.74,0,1,Check-Out,David Wheeler,olopez@example.org,(243)824-6257,4399623808883045,2025-01-04 +City Hotel,0,107,2017,June,25,19,0,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,66.14,0,1,Check-Out,Laura Briggs,scottcole@example.net,687.762.3512x9032,2718809514118580,2024-11-20 +Resort Hotel,0,0,2017,December,50,10,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,96.87,0,0,Check-Out,Elizabeth Medina,rebecca28@example.org,535-491-9054,5143628547189774,2025-05-15 +Resort Hotel,0,9,2017,March,12,23,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,239.0,179.0,0,Transient-Party,60.59,1,1,Check-Out,Michelle Lewis,garrett88@example.com,380.746.8818x756,4618387058914240,2025-03-05 +Resort Hotel,1,0,2017,October,41,8,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,1,0,A,D,0,No Deposit,244.0,71.0,0,Transient-Party,50.89,0,0,Canceled,Suzanne Davis,melissagarza@example.org,2326421448,579304700928,2024-08-25 +City Hotel,1,346,2017,July,29,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,61.7,0,0,Canceled,George West,jenniferrobinson@example.net,001-727-904-9399x931,30405305481793,2024-05-22 +Resort Hotel,0,41,2017,December,49,5,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,138.56,1,1,Check-Out,Robin Garner,barbarafranklin@example.net,+1-580-757-5824x74905,4064019892204070040,2025-03-30 +Resort Hotel,1,13,2017,May,20,13,0,1,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,101.52,0,0,Canceled,Lori Erickson,jeffreywolf@example.org,8448374910,30563332425017,2025-12-26 +City Hotel,0,22,2017,August,33,10,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,198.85,0,1,Check-Out,Adam White,dianagraham@example.net,2076015068,2279281721487763,2024-08-31 +City Hotel,0,9,2017,April,17,22,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.08,0,1,Check-Out,Ross Oliver,walkermonica@example.net,+1-946-552-4093,4227605897645888,2025-06-25 +Resort Hotel,0,46,2017,July,27,5,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,252.0,0,3,Check-Out,Stacy Jones,cgray@example.com,961.988.2039x15773,4339059268984664038,2024-05-06 +Resort Hotel,0,93,2017,December,49,4,1,0,1,0.0,0,Undefined,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,44.2,0,0,Check-Out,Adrian Mitchell,joshua28@example.net,001-947-983-4810,2720778959047537,2024-12-07 +Resort Hotel,0,81,2017,December,51,18,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,156.0,179.0,0,Transient,107.74,0,1,Check-Out,Sonya Reeves,qramirez@example.org,324-728-3328x15241,3562296436876419,2025-08-05 +City Hotel,0,91,2017,June,23,8,0,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,113.38,0,1,Check-Out,Stacy Williams,mcdonaldbrandon@example.org,250.890.1247,38631917286278,2026-03-07 +City Hotel,0,38,2017,September,37,15,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,20.0,179.0,0,Transient-Party,222.0,0,2,Check-Out,Kaitlyn Phillips,elliottandrea@example.net,(949)780-5852,3541965307804637,2026-01-16 +City Hotel,0,16,2017,June,24,8,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.31,0,0,Check-Out,Tammy Miller,kball@example.com,304-575-3211x41236,30242052163989,2025-05-01 +Resort Hotel,0,56,2017,April,17,22,2,7,2,0.0,0,HB,,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,75,Transient,136.18,0,3,Check-Out,Christopher Taylor,ybeltran@example.net,575.251.1761x2915,639057930013,2024-09-30 +City Hotel,1,376,2017,June,26,26,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,83.77,0,0,Canceled,Jennifer Henderson,richard73@example.com,712-456-7011,180085644522040,2024-08-30 +City Hotel,0,48,2017,October,44,26,2,2,2,0.0,0,HB,GBR,Groups,Corporate,0,0,0,A,A,0,No Deposit,314.0,179.0,0,Transient,54.84,0,0,Check-Out,David Larsen,heathermiddleton@example.com,960.863.4156,639064173854,2024-11-12 +City Hotel,1,136,2017,July,29,14,0,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.19,0,1,Canceled,Kristina Miller,michaelwilson@example.org,8376065785,379290538644964,2024-05-23 +City Hotel,1,308,2017,October,43,26,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,92.82,0,0,Canceled,Melissa Klein,joseph30@example.net,7813869331,4411849024513,2024-07-08 +City Hotel,0,100,2017,June,24,10,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,124.0,179.0,43,Transient,111.84,0,0,Check-Out,David Gonzalez,charlesross@example.org,656.552.8223,4225125274225275874,2024-06-25 +City Hotel,1,156,2017,June,25,18,0,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,105.83,0,0,Check-Out,Jeffrey Bryant,andrew74@example.net,909-572-5241x8445,4507028353629455,2025-09-06 +Resort Hotel,0,95,2017,March,13,31,1,2,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,C,1,No Deposit,15.0,179.0,0,Transient-Party,86.41,0,0,Check-Out,Valerie Blackburn,ramirezcharles@example.org,629.585.4156x80019,213105280673161,2026-01-29 +Resort Hotel,0,9,2017,February,7,12,2,5,2,2.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,61.02,1,2,Check-Out,Edwin Mcmahon,bridget45@example.com,001-233-742-3638x9574,2282513203187270,2025-08-06 +City Hotel,0,20,2017,September,38,16,0,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,98.35,0,1,Check-Out,Michael Jones,david51@example.org,+1-343-848-0708x4261,4166007666670903,2024-11-05 +Resort Hotel,0,89,2017,June,26,22,4,10,2,1.0,0,HB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,238.0,179.0,0,Transient,186.75,0,1,Check-Out,Jacob Barrera,jeffrey79@example.com,797-940-7911,4413509462313985,2025-07-29 +City Hotel,0,90,2017,April,14,5,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,94.18,0,1,Check-Out,Michael Flores,samuel32@example.org,764.462.2466x1023,3526264710224230,2025-05-06 +City Hotel,0,10,2017,November,44,4,0,1,1,0.0,0,BB,RUS,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,55.0,0,Transient-Party,104.35,0,0,Check-Out,Brian Jones,bonilladavid@example.org,232.737.4923,4275517650971149,2025-10-24 +Resort Hotel,0,18,2017,July,31,31,3,5,2,0.0,0,Undefined,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,187.16,1,2,Check-Out,Tyler Guzman,james75@example.com,522.287.1672x398,4356280257102417002,2024-11-07 +City Hotel,1,9,2017,August,32,9,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,171.6,0,1,Canceled,Brittany Dodson,birdmichael@example.net,001-512-921-6676x08175,4635073869787074318,2025-09-19 +Resort Hotel,1,19,2017,March,14,30,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,156.0,179.0,0,Transient,53.32,0,3,Canceled,Cathy Galvan,mbryan@example.org,+1-248-693-5794x19061,4528802629282835,2025-11-18 +Resort Hotel,0,35,2017,October,41,9,0,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,H,2,No Deposit,239.0,179.0,0,Transient,138.19,1,1,Check-Out,Marc Paul,jacqueline87@example.com,001-348-237-2519,4145974899535,2025-03-14 +City Hotel,1,199,2017,August,34,21,0,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Contract,200.05,0,0,Canceled,Susan Cooper,jeff70@example.com,001-915-753-6683,6011302295388858,2025-12-30 +Resort Hotel,1,113,2017,January,3,14,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,52.43,0,3,Canceled,Wanda Clark,jonessteven@example.org,+1-334-630-9667x741,4072928581522008005,2026-02-20 +City Hotel,0,94,2017,February,6,4,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.55,0,1,Check-Out,Amanda Knox,elewis@example.net,337.822.8793x5703,2701037194836060,2026-02-08 +City Hotel,0,255,2017,June,24,13,1,4,2,2.0,0,BB,,Online TA,Direct,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,134.69,1,1,Check-Out,Michael Greene,robert75@example.com,+1-630-335-5558x34795,4644412122284046,2024-05-04 +City Hotel,0,10,2017,June,25,17,0,3,2,2.0,0,BB,CHE,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,179.36,0,3,Check-Out,Angela Smith,mariamays@example.net,001-667-500-2547x3056,4461806559017318,2024-08-28 +Resort Hotel,0,115,2017,July,29,17,0,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,242.0,179.0,0,Transient,177.99,0,1,Check-Out,Charles Salinas,samuelcox@example.net,+1-572-819-5818x671,3575018410867460,2024-04-21 +Resort Hotel,0,162,2017,June,23,1,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,82.14,1,1,Check-Out,Sierra Chambers,carriegibson@example.net,001-546-330-8827x3634,6539158942954242,2024-07-04 +Resort Hotel,0,0,2017,April,14,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,C,0,No Deposit,15.0,331.0,0,Transient,29.21,0,0,Check-Out,Elizabeth Yang,randall19@example.net,+1-319-955-0095,2718256857840042,2025-07-05 +City Hotel,0,34,2017,May,22,27,0,3,2,2.0,0,BB,NLD,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient-Party,156.98,0,0,Check-Out,Rebecca Davis,christophermays@example.org,001-923-475-4927,30120736134677,2024-05-09 +City Hotel,0,73,2017,March,12,22,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,82.76,0,1,Check-Out,Ellen Martinez,vmccoy@example.org,947.636.7639,375467461258277,2025-01-14 +City Hotel,1,142,2017,June,26,26,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,101.92,0,0,Canceled,Kimberly Parker,benjamindaniel@example.org,621.861.0209,374267520069348,2025-03-24 +Resort Hotel,1,283,2017,December,51,17,0,2,3,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Danielle Morgan,jeffreyrichardson@example.org,806.424.9399x5317,3551726397258317,2024-05-12 +City Hotel,1,146,2017,July,27,5,2,5,2,1.0,0,FB,DEU,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,28.0,179.0,0,Transient,222.86,0,0,Canceled,Mr. Kyle Evans,aflores@example.net,769-620-5099x92877,502073255791,2026-02-14 +City Hotel,0,13,2017,December,52,27,0,2,1,0.0,0,BB,POL,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,68.0,0,Transient-Party,62.49,0,0,Check-Out,Kathryn Dunn,wbrown@example.net,(880)288-4940,4949515198989207,2025-12-29 +Resort Hotel,1,24,2017,August,32,7,1,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Canceled,Jonathan Moore,ewatts@example.org,001-302-867-0626x17509,060477651057,2026-01-14 +Resort Hotel,0,155,2017,March,10,5,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,223.0,0,Transient-Party,89.01,0,0,Check-Out,Katie Bowman,breannamorrison@example.org,2042743897,4098426237038,2026-03-11 +City Hotel,1,305,2017,April,18,27,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,28.0,179.0,20,Transient,84.81,0,0,Canceled,Larry Brooks,ana12@example.com,(754)401-2816x3085,30044481844951,2025-04-07 +Resort Hotel,0,97,2017,December,50,13,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,91.0,179.0,0,Transient-Party,117.28,0,0,Check-Out,Linda Davis,katrinapalmer@example.com,+1-885-620-7489x412,2614865482642394,2024-07-23 +City Hotel,0,15,2017,August,34,19,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,112.62,0,2,Check-Out,David Watkins,gonzalezanthony@example.net,001-383-221-1426x1084,375175208649324,2025-10-24 +Resort Hotel,1,40,2017,December,52,29,0,1,2,0.0,0,BB,PRT,Online TA,Direct,1,0,0,L,G,0,No Deposit,242.0,179.0,0,Transient,123.68,0,1,Canceled,Michele Thompson,schroederjohn@example.com,+1-436-497-6163x8175,4299340985251786,2025-06-06 +City Hotel,1,309,2017,August,33,13,0,4,2,0.0,0,BB,CHN,Online TA,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,173.17,0,0,Canceled,Tracy Mccullough,ahaynes@example.net,001-796-633-2417x823,4015968897656,2025-08-10 +Resort Hotel,0,5,2017,December,51,23,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,314.0,179.0,0,Transient-Party,53.8,0,1,Check-Out,Paul Hernandez,bryan84@example.com,+1-563-526-2129x207,213132088545755,2025-12-16 +Resort Hotel,0,81,2017,September,36,4,3,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,D,E,0,No Deposit,250.0,179.0,0,Transient,116.12,0,2,Check-Out,Brianna Williams,anita48@example.net,5196611787,4960988525219,2025-10-03 +Resort Hotel,0,16,2017,December,49,8,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,79.3,0,1,Check-Out,Jean Rodriguez,hliu@example.net,647.324.6034,4648193757242956,2025-06-12 +City Hotel,1,184,2017,July,29,16,3,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient,90.2,0,1,Canceled,Pamela Coleman,joneswilliam@example.org,694-451-4833x08346,370453509376862,2025-12-20 +Resort Hotel,0,160,2017,August,33,13,3,7,2,1.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,228.59,0,1,Check-Out,Diane Jones,fadams@example.com,+1-662-901-3340x41933,3519488436703925,2024-08-23 +City Hotel,1,147,2017,March,12,20,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,1,A,A,0,Non Refund,126.0,179.0,18,Transient,82.32,0,0,Canceled,Rebecca Mcdonald,judith66@example.com,545-730-7207x1011,6564802812729089,2025-09-25 +City Hotel,1,250,2017,April,16,14,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient,37.49,0,0,Canceled,Michael Fernandez,ofuller@example.org,+1-568-251-2852,3562048833606851,2025-09-23 +Resort Hotel,0,145,2017,August,32,6,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,K,0,No Deposit,243.0,179.0,0,Transient,122.14,0,0,Check-Out,Michael Howe,smithabigail@example.net,+1-477-759-3145x23796,4382285892103,2026-03-12 +City Hotel,1,271,2017,September,36,5,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,21,Transient,81.5,0,0,Canceled,Jessica Lopez,chadgomez@example.com,888-321-7110x020,3593326940183854,2024-08-04 +City Hotel,0,244,2017,May,21,21,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,307.0,179.0,0,Transient-Party,102.19,0,0,Check-Out,Beth Melton,richard93@example.net,+1-306-741-0047x291,30070839222830,2026-01-20 +Resort Hotel,0,19,2017,September,39,30,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,105.26,0,0,Check-Out,Randy Vasquez,kevin70@example.net,6488296076,6528599523984988,2025-01-21 +City Hotel,0,3,2017,August,34,20,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,24.0,179.0,0,Contract,75.73,0,0,Check-Out,Kimberly Davis,mitchellsara@example.org,(340)411-5438,4337608661288767,2024-06-01 +Resort Hotel,0,22,2017,January,3,15,2,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,A,0,No Deposit,13.0,45.0,0,Transient,52.66,1,1,Check-Out,Melissa Macdonald,lisa54@example.net,(757)245-4777x10209,4915936451561,2024-08-03 +City Hotel,1,103,2017,April,14,5,2,5,2,1.0,0,BB,BEL,Online TA,Direct,0,0,0,B,A,0,No Deposit,11.0,179.0,0,Transient,75.01,0,0,Canceled,Nathan Rose,lauraestrada@example.net,655.437.0726,4083646109350829,2026-02-05 +City Hotel,0,181,2017,October,43,27,2,3,2,0.0,0,BB,CHE,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient,89.14,0,0,Check-Out,Hailey Vargas,millermatthew@example.com,871.496.1005,180043849533148,2025-01-29 +City Hotel,0,116,2017,September,38,18,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,106.59,0,0,Check-Out,Anthony Cooper,elizabeth75@example.com,2766862450,3506831366071943,2026-01-31 +City Hotel,0,14,2017,June,23,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,1,A,A,0,No Deposit,130.0,179.0,0,Contract,2.79,0,2,Check-Out,Jason Martin,tfernandez@example.com,001-232-836-9530x34831,30012966333857,2025-12-02 +City Hotel,1,1,2017,April,14,4,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,1,1,A,A,0,No Deposit,13.0,45.0,0,Transient,0.5099000000000001,0,0,Canceled,Stephanie Flores,ehernandez@example.net,254.640.2063x21770,6011195729679698,2024-12-07 +City Hotel,1,149,2017,November,47,18,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,0,Transient,96.6,0,0,Canceled,Robert Wagner,annette06@example.com,553.904.3481x9211,378171783089504,2024-12-15 +City Hotel,1,58,2017,November,48,30,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,108.68,0,0,Canceled,Andrew Lynch,gracestokes@example.com,(940)547-6769x92691,501873764671,2024-05-09 +City Hotel,1,164,2017,May,21,26,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,24,Transient,83.52,0,0,Canceled,Alexander Diaz,guynorton@example.com,+1-998-735-5721x55483,213164917334242,2024-12-06 +City Hotel,0,1,2017,March,12,22,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,157.0,179.0,0,Transient,81.93,0,1,Check-Out,Alexander Cameron,scott84@example.net,+1-670-224-9416x9230,502019715155,2025-03-11 +City Hotel,1,50,2017,April,18,29,1,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,96.68,0,0,No-Show,Maria Matthews,wjohnson@example.com,(283)847-7826x29216,6561143041273034,2025-06-30 +Resort Hotel,1,194,2017,July,28,12,0,4,3,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,F,G,2,No Deposit,237.0,179.0,0,Transient,214.77,0,1,Canceled,Zachary Wells,sotoashley@example.org,+1-572-656-2671x06985,4755147860577509,2024-09-03 +City Hotel,1,45,2017,March,13,31,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,143.86,0,1,Canceled,Suzanne Martinez,ballardalyssa@example.net,898-229-8345x3703,30204597327693,2026-02-22 +City Hotel,0,242,2017,May,22,27,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,114.12,0,1,Check-Out,Douglas Clark,brendacontreras@example.net,573.330.6719x0468,639017861068,2024-09-16 +Resort Hotel,0,10,2017,January,4,25,0,1,1,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,54.11,1,2,Check-Out,Joseph Alexander,jacob78@example.com,(284)768-6724,4198773226087,2025-03-14 +City Hotel,1,58,2017,February,6,3,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,52.96,0,0,Canceled,Jessica Mcfarland,jasonaguirre@example.com,001-228-228-4783x3496,4487170448648761,2026-02-06 +City Hotel,0,0,2017,August,34,24,1,1,3,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,A,K,0,No Deposit,43.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Christopher Wiggins,ginamorgan@example.org,303-939-9420x390,2382993200795078,2025-03-05 +City Hotel,0,92,2017,November,47,19,2,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,76.81,0,1,Check-Out,Dawn Wilson,molly61@example.net,973-284-9133x9494,4326291454047105,2025-06-04 +City Hotel,0,1,2017,March,13,24,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,75.96,0,3,Check-Out,Corey Arnold,brownnancy@example.com,(359)931-5350x743,501811606356,2026-01-27 +City Hotel,0,3,2017,March,13,26,1,1,2,0.0,0,BB,BEL,Aviation,TA/TO,0,0,1,G,G,2,No Deposit,11.0,179.0,0,Transient-Party,62.7,1,3,Check-Out,Christopher Nielsen,gwallace@example.org,(251)546-4743,30155899139527,2024-07-03 +City Hotel,0,12,2017,July,30,22,0,4,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,D,2,No Deposit,12.0,179.0,0,Transient,131.3,1,0,Check-Out,John Woods,frank03@example.com,(656)997-1651x897,30095383899071,2025-09-29 +City Hotel,1,336,2017,August,32,7,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,No Deposit,11.0,179.0,0,Contract,191.98,0,0,Canceled,David Lewis,kenneth18@example.org,447-842-0595x5126,3584090014399884,2024-08-20 +City Hotel,0,87,2017,April,14,5,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,99.92,1,1,Check-Out,Christina Ballard,bwright@example.com,235-736-4444x845,060434091066,2025-03-04 +Resort Hotel,1,118,2017,May,21,24,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,137.06,0,0,Canceled,Jessica Mcdonald,mchan@example.com,870-934-0857x550,3522299131000268,2025-01-20 +Resort Hotel,0,138,2017,March,13,31,2,5,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,2,Refundable,12.0,222.0,0,Transient-Party,42.52,0,0,Check-Out,Natalie Wall,xclark@example.org,(358)756-0951x46351,377861138038880,2024-11-29 +City Hotel,0,2,2017,August,34,19,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,139.13,0,0,Check-Out,Steven English,breynolds@example.net,794.973.4036x4449,30524624491018,2025-06-19 +Resort Hotel,0,229,2017,March,10,7,4,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,0,Refundable,12.0,222.0,0,Transient,111.55,0,0,Check-Out,Shelly Schmidt,panderson@example.net,(586)232-0477x82736,4467286580368523,2025-04-22 +City Hotel,0,21,2017,August,33,10,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,Zachary Farrell,jacqueline50@example.net,001-983-460-3192x655,3511054269074160,2025-04-26 +City Hotel,0,392,2017,October,43,21,2,5,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,E,E,0,No Deposit,2.0,179.0,0,Transient-Party,90.82,0,0,Check-Out,James Collins,slarsen@example.com,+1-361-435-2784,3509229850069050,2025-12-12 +City Hotel,1,383,2017,March,10,4,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,94.74,0,0,Canceled,Douglas Stokes,mblair@example.net,(743)805-1190,370745745110256,2026-02-27 +City Hotel,1,148,2017,March,12,21,0,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,43,Transient,100.82,0,0,Canceled,Thomas Espinoza,jamespierce@example.org,(869)838-3012x9065,4691938973172353,2025-11-07 +Resort Hotel,0,15,2017,March,13,28,0,7,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,100.53,0,0,Check-Out,Kathryn Hernandez,theresa51@example.net,882-210-1733,372526278698281,2025-09-26 +City Hotel,1,155,2017,September,37,10,0,3,2,1.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,7.0,179.0,0,Transient,140.01,0,0,Canceled,Gregory Stewart,ccox@example.com,001-583-876-7819x22026,3598899429332924,2024-04-18 +Resort Hotel,1,93,2017,August,32,12,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,237.0,179.0,0,Transient,249.98,0,0,Canceled,Marilyn Sims,rkennedy@example.org,4299803578,3514952706907644,2026-01-19 +City Hotel,0,13,2017,August,35,31,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,217.17,0,1,Check-Out,Christina Hall,jfrazier@example.org,001-461-421-6184,6587900771471801,2025-11-27 +Resort Hotel,0,0,2017,August,34,20,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,1,No Deposit,18.0,179.0,0,Transient,225.73,1,0,Check-Out,Alan Mccullough,travissnyder@example.org,001-709-453-5492x98161,6011698752146873,2025-03-28 +Resort Hotel,0,267,2017,October,42,18,1,1,1,0.0,0,SC,ITA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,193.0,62.0,0,Transient-Party,77.95,0,0,Check-Out,Maurice Hull,patricia62@example.net,+1-318-822-6300x783,4901353792361179286,2025-08-13 +City Hotel,1,58,2017,July,28,12,0,1,2,1.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,49.0,0,2,Canceled,Richard Mason,ashley63@example.com,851-766-5179x29048,4177685928012936,2026-02-18 +Resort Hotel,0,87,2017,July,29,14,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,207.54,1,1,Check-Out,Jose Bailey,anabrown@example.com,(217)353-1607,180005111432655,2026-01-15 +City Hotel,1,126,2017,August,32,5,2,5,2,0.0,0,HB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,140.89,0,1,Canceled,Scott Jordan,stevenross@example.org,(866)791-7377,2234169454982262,2025-07-27 +City Hotel,0,0,2017,May,18,5,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,D,D,0,No Deposit,14.0,231.0,0,Transient,3.96,0,3,Check-Out,Heather Massey,nicholehayes@example.org,480-727-1825x448,630470790738,2025-07-04 +City Hotel,0,94,2017,July,28,10,1,2,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,76.28,0,0,Check-Out,Morgan Carlson,richard99@example.net,+1-204-484-6426x2839,6570651330131928,2024-05-09 +City Hotel,1,44,2017,April,18,30,1,4,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.44,0,0,Canceled,Lisa Hanna,jacobschmitt@example.net,759-777-2413,630486852134,2024-10-10 +City Hotel,0,24,2017,May,20,12,1,3,1,0.0,0,HB,DEU,Online TA,GDS,0,0,0,A,A,0,No Deposit,178.0,179.0,0,Transient,145.1,0,1,Check-Out,Pamela Ayala,david87@example.com,(260)694-4786x8950,213148960593333,2025-12-31 +Resort Hotel,0,0,2017,December,50,10,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,15.0,331.0,0,Transient,44.89,0,0,Check-Out,Craig Lewis,ashley00@example.org,659.960.9966x50102,30288154309889,2024-06-17 +Resort Hotel,0,22,2017,April,15,10,1,1,2,0.0,0,BB,,Online TA,Direct,0,0,0,D,C,0,No Deposit,241.0,179.0,0,Transient,53.1,0,1,Check-Out,William Mendez,martinholt@example.org,+1-783-518-9651x847,4056073553942402,2024-07-10 +City Hotel,0,107,2017,June,26,26,0,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,120.74,0,1,Check-Out,Joseph Figueroa,yburke@example.org,919.490.5873,344573298198947,2024-10-23 +City Hotel,0,1,2017,October,41,8,2,2,2,0.0,0,FB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,113.93,0,0,Check-Out,Gabrielle Parsons,longshelby@example.com,555-739-5245x158,4728995249442801,2024-08-03 +City Hotel,0,39,2017,August,35,30,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,D,D,1,No Deposit,14.0,179.0,0,Transient,252.0,1,0,Check-Out,Matthew Foley,irodriguez@example.net,001-253-583-4172x01422,4908124352008851,2024-09-29 +Resort Hotel,0,91,2017,July,30,25,2,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,D,C,0,No Deposit,140.0,179.0,0,Transient-Party,78.59,0,0,Check-Out,Alexandra Schmidt,banksdavid@example.net,291.728.2182,589258360223,2025-02-04 +Resort Hotel,1,12,2017,December,49,5,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,89.62,0,2,No-Show,Joshua Phillips,kirkshepherd@example.net,656-408-9318x9386,4369077157490124,2025-01-01 +Resort Hotel,1,1,2017,July,30,23,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,237.0,179.0,0,Transient,64.63,0,0,Canceled,Robert Leonard PhD,powellgrace@example.net,539-364-1390,4777263006853730,2025-10-15 +Resort Hotel,0,170,2017,April,17,21,2,1,2,0.0,0,HB,DEU,Groups,Corporate,0,0,0,A,C,0,No Deposit,166.0,179.0,0,Transient-Party,31.91,0,1,Check-Out,Kirk Jones,vwolf@example.net,3618547698,6565884051151430,2024-12-22 +City Hotel,1,48,2017,March,10,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,98.93,0,0,Canceled,Tina Paul,sandrawagner@example.org,(804)274-6128x027,4083590774687166,2025-10-30 +City Hotel,0,3,2017,October,41,10,0,1,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,C,0,No Deposit,16.0,45.0,0,Transient,1.47,0,0,Check-Out,Billy Lopez,abell@example.org,001-661-564-9549x394,379188621935747,2024-11-05 +City Hotel,1,170,2017,June,24,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,75,Transient,101.79,0,0,Canceled,Todd Garcia,zprice@example.org,9199752353,4033405077549131,2024-12-09 +City Hotel,1,48,2017,October,43,27,2,4,1,0.0,0,BB,GBR,Complementary,TA/TO,0,1,0,E,A,0,No Deposit,13.0,179.0,0,Contract,110.2,0,1,Canceled,Mark Williams,charris@example.org,(668)738-3169x509,341353269265378,2024-09-12 +City Hotel,1,246,2017,June,26,23,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,143.46,0,1,Canceled,Amanda Chavez,vmoreno@example.org,001-308-204-6259,573777699626,2025-01-30 +Resort Hotel,1,146,2017,June,27,29,0,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,2,Non Refund,364.0500000000011,179.0,0,Transient,87.29,0,0,Canceled,Tanya Hill,cmorgan@example.net,410-417-3182x8479,3512931204982962,2024-11-24 +City Hotel,0,82,2017,April,14,5,1,2,2,1.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,103.91,0,1,Check-Out,Roberto Kramer,walkerrussell@example.org,612-345-2619x3010,30122139199901,2024-06-19 +City Hotel,0,4,2017,August,32,6,1,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,194.98,0,0,Check-Out,Marissa Welch,carrieobrien@example.net,+1-744-211-6839x948,213177673164603,2024-10-05 +Resort Hotel,0,0,2017,March,11,11,1,0,1,0.0,0,BB,PRT,Complementary,Direct,1,0,1,A,C,2,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Andre Hardy,hawkinswilliam@example.org,(612)297-7582,180091262585897,2025-09-29 +Resort Hotel,1,101,2017,March,10,9,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,E,E,1,No Deposit,12.0,179.0,0,Transient,213.63,0,0,Canceled,Patricia Dickerson,vrollins@example.net,+1-999-324-0597,30188995829014,2024-12-23 +City Hotel,0,155,2017,July,31,30,0,2,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,144.9,0,2,Check-Out,David Collier,rlin@example.org,227.949.7920,4610206901508,2025-06-04 +Resort Hotel,0,3,2017,January,2,5,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,15.0,179.0,0,Transient,2.63,0,3,Check-Out,Jessica Thompson,sarahjennings@example.com,970-506-2350x268,36312760926169,2025-10-23 +City Hotel,0,146,2017,May,21,23,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,128.07,0,0,Check-Out,Daniel Juarez,walkerbenjamin@example.org,+1-719-513-1722x71780,4174163803068822,2025-04-12 +City Hotel,0,43,2017,November,47,22,2,1,2,0.0,0,BB,FRA,Groups,Corporate,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,61.43,0,0,Check-Out,Rachel Shields,nmorrow@example.org,202-913-7860,4652490293770,2024-09-09 +City Hotel,0,87,2017,July,28,13,2,5,3,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,140.01,0,1,Check-Out,Brian Hendrix,richardsana@example.com,(834)473-1894x04558,6582765888609964,2024-07-22 +Resort Hotel,0,0,2017,November,45,9,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,16.0,63.0,0,Transient,46.67,0,0,Check-Out,William Bryan,quinnemily@example.org,7312291235,4351143094621119423,2024-05-23 +Resort Hotel,1,192,2017,October,43,22,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,313.0,179.0,0,Transient-Party,83.49,0,0,Canceled,Robert Mcconnell,randall58@example.com,(826)990-5780,180093645076008,2025-02-21 +City Hotel,0,1,2017,August,32,9,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,12.0,179.0,0,Transient,4.2,0,1,Check-Out,Zachary Hurst,kenneth11@example.com,(347)366-3675x540,4273659359105823267,2025-10-19 +Resort Hotel,0,25,2017,November,47,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,46.58,0,2,Check-Out,Amber Taylor,christinamorse@example.net,278.755.1378,3587841521349433,2024-07-30 +City Hotel,1,40,2017,December,51,16,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,108.53,0,2,Canceled,Kathleen Fletcher,gregory68@example.org,001-415-350-0155x75464,3501691334410184,2025-05-14 +City Hotel,0,28,2017,June,24,15,0,1,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,10.0,179.0,0,Transient,133.75,0,0,Check-Out,Angela Perez,benjamin57@example.org,+1-490-413-5878,4658130792239731033,2025-03-21 +City Hotel,0,207,2017,August,32,4,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,B,A,0,No Deposit,13.0,179.0,0,Transient,158.58,0,0,Check-Out,Andrew Thomas,bmiller@example.org,543.659.6388x0775,3559357484427334,2025-11-08 +Resort Hotel,0,2,2017,February,6,8,1,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,I,0,No Deposit,310.0,179.0,0,Transient-Party,51.38,0,1,Check-Out,Paul Smith,georgenichols@example.org,764-652-3594,4873439889671729,2024-08-01 +City Hotel,0,7,2017,May,22,30,1,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,71.0,179.0,0,Transient,101.5,0,0,Check-Out,Leslie Watson,jeanette05@example.com,(799)519-3922,4436766441245091,2025-08-06 +City Hotel,0,119,2017,August,31,5,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,84.19,0,1,Check-Out,Vickie Black,nkoch@example.com,+1-435-311-8539x9739,4987487526074545,2026-03-12 +Resort Hotel,0,2,2017,March,10,5,0,2,1,0.0,0,BB,ESP,Online TA,TA/TO,1,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,48.91,0,1,Check-Out,Chad Perez,bradforddavid@example.com,450.815.3583,38054063106697,2024-06-19 +Resort Hotel,0,100,2017,May,18,5,0,1,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,331.0,0,Group,81.95,0,0,Check-Out,Justin Nunez,johnwilliams@example.org,+1-526-898-2045x7912,3594758607974242,2025-04-23 +Resort Hotel,0,210,2017,April,14,1,1,3,2,1.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,221.0,0,Transient-Party,72.89,0,0,Check-Out,Caitlin Hamilton,shannonbyrd@example.com,001-677-801-9772x3403,349560105270626,2025-09-18 +City Hotel,0,16,2017,March,12,18,0,2,2,0.0,0,BB,SWE,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,63,Transient-Party,130.35,0,0,Check-Out,Mark Richards,samantha18@example.org,890-768-0620,4376717622583,2026-01-04 +Resort Hotel,0,10,2017,May,22,27,4,10,2,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,0,No Deposit,248.0,179.0,0,Transient,188.72,0,1,Check-Out,Michelle Phillips,tking@example.com,264-543-9432,30409568072943,2025-09-25 +Resort Hotel,0,15,2017,May,20,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,244.0,179.0,64,Transient-Party,39.78,1,0,Check-Out,David Snow,ortizisaiah@example.org,833.618.1998,2269581845883280,2026-03-06 +Resort Hotel,0,150,2017,July,29,14,1,3,3,1.0,0,BB,PRT,Direct,TA/TO,0,0,0,H,H,1,No Deposit,10.0,179.0,0,Transient,233.86,0,1,Check-Out,Dustin Mcdonald,aprilwiggins@example.net,001-903-438-0713x8558,6522635498960110,2025-03-20 +Resort Hotel,0,0,2017,May,18,1,2,6,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,E,0,No Deposit,246.0,179.0,0,Transient,1.78,0,1,Check-Out,Chelsea Day,frances14@example.com,431-536-6166x474,4254914072240937,2024-04-07 +City Hotel,1,122,2017,April,15,9,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,179.86,0,1,Canceled,Richard Li,allenarthur@example.org,310-873-2791,30543063993946,2025-11-05 +City Hotel,0,43,2017,March,10,8,2,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,162.36,0,2,Check-Out,Lisa Garrison,rodriguezamanda@example.org,(314)616-6236,6011027526969875,2025-07-21 +Resort Hotel,1,153,2017,June,24,15,4,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,2,No Deposit,242.0,179.0,0,Transient,89.94,0,1,Canceled,Gregory Poole,lewisgary@example.com,(942)770-8019,4823532803651661386,2024-10-12 +City Hotel,1,181,2017,May,21,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,133.67,0,0,Canceled,Rebecca Yang,rbaldwin@example.com,857-949-5001x3061,676387596262,2025-08-12 +City Hotel,0,0,2017,October,42,17,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,118.0,179.0,0,Transient,75.51,1,0,Check-Out,Richard Hess,coxbrittany@example.org,(593)410-4885x2071,4813733053248102506,2024-10-01 +City Hotel,0,49,2017,August,33,10,2,3,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Check-Out,Chelsea Singh,wallaceandrew@example.net,001-872-238-1130,3566995834896707,2025-11-09 +City Hotel,0,6,2017,May,22,31,2,5,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,80.27,0,0,Check-Out,Daniel Hanson,mark96@example.net,(294)333-4595x5590,3587857637223643,2025-11-19 +Resort Hotel,0,3,2017,August,35,30,1,1,2,0.0,0,FB,ESP,Direct,Direct,0,0,0,A,G,0,No Deposit,17.0,179.0,0,Transient,126.47,1,1,Check-Out,Heidi Bradley,taylorlarry@example.net,+1-508-729-3600x17905,30171786133788,2024-05-04 +Resort Hotel,0,5,2017,September,36,5,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,E,E,0,No Deposit,2.0,179.0,0,Transient-Party,64.0,1,0,Check-Out,Sandra Vazquez,heathergalvan@example.org,(725)236-5619x518,4223360590453,2025-03-21 +City Hotel,0,44,2017,September,37,13,1,2,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient,99.69,0,0,Check-Out,Eileen Robinson,hopkinsjeremy@example.com,295.554.6118,180055148909209,2025-04-26 +City Hotel,1,52,2017,November,48,28,2,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,223.73,0,0,Canceled,Susan Clark,dominguezmary@example.net,(213)394-9067x1975,639012645466,2024-12-26 +Resort Hotel,0,300,2017,July,31,31,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,211.69,1,2,Check-Out,Lydia Smith,jwebb@example.org,696-719-9819x7583,6520264874530561,2025-08-02 +City Hotel,0,15,2017,October,42,20,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.08,0,3,Check-Out,Crystal Smith,davidlucas@example.org,001-907-755-3701x13280,4589417277715737358,2025-09-20 +City Hotel,0,36,2017,May,21,20,0,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient-Party,60.29,0,0,Check-Out,Rachel Hogan,znixon@example.net,665-999-1870x649,4656169697559,2024-11-07 +City Hotel,0,385,2017,July,31,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,83.87,0,1,Check-Out,Brandon Wilson,jrogers@example.com,001-615-375-8007,4224851292818093606,2025-09-17 +City Hotel,1,103,2017,July,29,16,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,130.52,0,0,Canceled,John Brooks,smithjose@example.org,347.321.4202,4535600555703605,2025-12-01 +City Hotel,1,3,2017,June,24,9,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.29,0,1,Canceled,Kimberly Kim,hendersonolivia@example.net,303-759-1201,3532195160200415,2025-11-16 +Resort Hotel,0,5,2017,January,3,16,1,2,1,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,51.69,1,1,Check-Out,Jason Lewis,williamchristensen@example.com,(795)341-8394,30009429235505,2025-10-26 +City Hotel,0,250,2017,March,12,19,1,3,1,0.0,0,HB,SWE,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,29.0,179.0,0,Transient-Party,98.76,0,0,Check-Out,Nancy Duffy,amyevans@example.net,929-938-8432,345233122623482,2024-07-23 +City Hotel,0,4,2017,November,45,9,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,93.19,0,0,Check-Out,Anthony Lewis,fordangela@example.com,001-434-874-9685,2710144742461778,2025-10-04 +City Hotel,0,95,2017,March,12,20,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,173.0,179.0,0,Transient,83.19,0,0,Check-Out,Tara Walters,ray39@example.com,443-426-8903,3583427562206593,2024-11-21 +City Hotel,0,0,2017,May,21,24,0,1,1,0.0,0,BB,ISR,Corporate,TA/TO,1,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,108.32,0,0,Check-Out,George Gomez,angelathornton@example.org,328.588.4342x75574,2267694836268072,2025-02-13 +Resort Hotel,0,246,2017,June,26,24,0,10,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,46.72,0,0,Check-Out,Brittany Perez,mcclurejenny@example.org,001-327-917-1870x853,589291974873,2024-08-04 +Resort Hotel,0,39,2017,August,35,27,0,2,2,2.0,0,BB,ESP,Direct,TA/TO,0,0,0,C,C,1,No Deposit,246.0,179.0,0,Transient,235.69,0,1,Check-Out,Mark Grant,millernicholas@example.com,368-903-3112x29695,4811374334817848,2024-04-10 +City Hotel,0,43,2017,August,35,27,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,204.59,0,1,Check-Out,Angela Meza,garciamichael@example.net,265.747.7152x7986,4688210986365682289,2024-09-14 +City Hotel,1,157,2017,May,20,16,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,130.07,0,0,Canceled,Lauren Murphy,jesse70@example.com,+1-673-819-3757x4332,6011660698802134,2024-12-17 +City Hotel,0,6,2017,April,18,27,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Selena Johnson,kelseymoses@example.org,328-979-3312x77504,3503059920650928,2026-02-06 +City Hotel,1,0,2017,December,48,2,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,A,0,No Deposit,12.0,179.0,0,Transient,74.93,0,0,Canceled,Ronald Thomas,estradastephanie@example.org,691.930.4326x55005,213122955331322,2025-01-07 +City Hotel,0,97,2017,March,10,8,0,3,2,0.0,0,BB,BRA,Online TA,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.47,0,1,Check-Out,Mr. Daniel Cooper,jarednichols@example.org,+1-309-914-3587x742,4714546414956,2024-09-28 +City Hotel,1,109,2017,March,9,3,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.37,0,1,Canceled,Eric Briggs,jonesmarissa@example.org,578.533.7161,30181555717000,2024-08-31 +Resort Hotel,0,8,2017,July,28,8,2,0,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,I,0,No Deposit,240.0,179.0,0,Transient,3.15,1,2,Check-Out,Cindy Barr,uwright@example.com,(526)730-2687x77168,2296147144456058,2024-11-03 +Resort Hotel,0,131,2017,June,26,27,1,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,247.0,179.0,0,Transient,142.44,1,0,Check-Out,Patricia Daniels,johnsonnichole@example.com,450.243.2595x5817,38294251961079,2025-02-25 +City Hotel,0,18,2017,October,40,2,1,0,1,0.0,0,BB,PRT,Undefined,Corporate,0,0,0,A,C,0,No Deposit,16.0,331.0,0,Transient,29.21,0,0,Canceled,Daniel Cline,beth40@example.org,+1-913-556-3364,30446955464168,2024-07-18 +Resort Hotel,1,13,2017,October,40,3,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,62.42,0,3,Canceled,Daniel Moore,coffeyjeffrey@example.org,001-794-820-5837x8732,347416604553362,2025-09-19 +Resort Hotel,0,17,2017,March,13,23,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,17.0,221.0,0,Transient,52.04,0,0,Check-Out,Antonio Lynch,pmorgan@example.com,+1-787-891-8019x5608,180025004274873,2025-02-06 +City Hotel,0,0,2017,August,33,14,0,1,1,0.0,0,BB,PRT,Direct,Undefined,0,1,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,0.5099000000000001,0,1,No-Show,Stanley Woods,johnphillips@example.org,533-354-7280x9014,4902008156518,2026-01-12 +City Hotel,0,197,2017,April,14,3,2,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,182.05,0,1,Check-Out,Alyssa James,brianmiller@example.net,997.710.7324,30015136634294,2025-02-01 +City Hotel,0,4,2017,October,43,24,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient-Party,1.19,0,0,Check-Out,Franklin White,catherine50@example.com,821-772-7645,676235721492,2026-03-07 +City Hotel,1,4,2017,December,51,18,0,1,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,A,D,2,No Deposit,14.0,80.0,0,Transient,127.25,0,0,No-Show,Timothy Martin,dkelley@example.org,(757)503-4277x879,2561377798230990,2025-04-14 +City Hotel,1,191,2017,October,43,23,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,D,0,No Deposit,8.0,179.0,0,Transient-Party,135.77,0,0,No-Show,Danielle Johnson,natasha96@example.net,860.513.8775,36919059606912,2024-05-01 +City Hotel,0,1,2017,February,8,22,0,1,2,0.0,0,SC,NLD,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.65,0,0,Check-Out,Hector Ramirez,jarvistoni@example.net,949-481-4515x308,675958073529,2024-11-20 +City Hotel,0,16,2017,August,32,9,1,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,60.78,0,0,Check-Out,Allison Nguyen,kristina54@example.org,378-996-5337x6963,341848892306812,2024-09-01 +City Hotel,0,384,2017,May,21,23,1,1,1,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,102.47,0,0,Check-Out,Anna Young,shanehowe@example.com,001-275-919-8673x07018,2282083273146275,2025-12-17 +Resort Hotel,0,1,2017,April,18,30,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,18.0,179.0,0,Transient,140.52,0,0,Check-Out,Michelle Wells,westalyssa@example.org,(819)266-1927x53643,3521927978969374,2025-06-09 +City Hotel,1,196,2017,August,35,31,1,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,210.36,0,0,Canceled,Raymond Adams MD,gloversavannah@example.org,4336411881,6572264495390517,2025-01-05 +City Hotel,1,0,2017,March,11,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,173.0,179.0,0,Transient,0.5099000000000001,0,0,No-Show,Deanna Ramirez,christy10@example.org,771.918.4844x02623,4115517095204829,2026-02-16 +City Hotel,1,113,2017,May,21,20,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,133.0,179.0,0,Transient,137.7,0,1,No-Show,Kimberly Duffy DDS,qjones@example.net,375.548.3810,4981389165180326,2026-02-02 +City Hotel,0,63,2017,September,36,3,0,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,116.63,0,1,Check-Out,Sheila Bowen,xward@example.net,724.721.0360,4253517907551898,2024-04-12 +City Hotel,1,47,2017,October,40,2,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,109.78,0,0,Canceled,Brianna Malone,mclements@example.org,(877)857-9825x91122,30014146817924,2024-09-30 +Resort Hotel,0,103,2017,April,17,26,2,2,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,G,G,1,No Deposit,13.0,179.0,0,Transient,140.86,1,3,Check-Out,Stephen Bowen,emilyfitzpatrick@example.org,(656)422-6597x901,38231302772949,2024-04-08 +City Hotel,0,163,2017,July,28,8,1,4,2,0.0,0,SC,FRA,Direct,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,142.91,0,2,Check-Out,Anna Robinson,garciaamanda@example.org,568-999-1900x4610,3527434303850886,2024-10-18 +City Hotel,0,159,2017,June,24,8,2,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,131.25,0,0,Check-Out,Colin Cummings,wilsonmelissa@example.com,412.728.6305x79355,3506766741497761,2025-06-05 +City Hotel,0,0,2017,January,3,18,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,0,No Deposit,12.0,331.0,0,Transient,43.92,1,0,Check-Out,Christopher Saunders,alexandra20@example.org,+1-487-249-6057x48850,3597021955819056,2024-12-23 +City Hotel,1,240,2017,July,30,23,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,252.0,0,1,Canceled,Paul Christensen,velazquezjohn@example.org,001-734-846-8616x252,213199234786328,2024-12-02 +City Hotel,0,5,2017,June,25,18,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.97,0,0,Check-Out,Earl Dunn,fmay@example.net,+1-848-657-1104x7392,2411926793582748,2026-02-01 +City Hotel,0,26,2017,January,3,15,2,2,3,1.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,99.31,1,1,Check-Out,Ashley Johns,janet18@example.org,+1-873-578-6890x335,567959378736,2024-08-20 +City Hotel,0,15,2017,August,34,24,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,118.29,0,3,Check-Out,William Beck,xdiaz@example.com,001-978-615-7269x5682,4981501596481590204,2024-10-29 +City Hotel,0,289,2017,October,41,9,2,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,35.0,179.0,0,Transient,81.14,0,0,Check-Out,Amy Cole MD,benjaminfuentes@example.net,(743)514-0425x6346,3584046887632611,2024-05-30 +City Hotel,0,21,2017,June,22,2,0,2,3,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,114.44,0,1,Check-Out,Paul Brewer,rachelbuchanan@example.org,913.324.5652,3593139215804496,2024-10-02 +City Hotel,0,0,2017,March,13,27,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,177.0,179.0,0,Transient,113.74,0,0,Check-Out,Mrs. Sarah Gutierrez,wdawson@example.org,234.778.6999x3924,578849068239,2025-03-31 +City Hotel,1,149,2017,June,23,3,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,Non Refund,18.0,179.0,0,Transient,108.11,0,1,Canceled,Mark Park,mporter@example.org,(369)757-8294,38977992576244,2025-05-25 +City Hotel,1,11,2017,December,52,29,0,4,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,E,2,No Deposit,26.0,179.0,0,Transient,53.96,0,0,No-Show,Ashley Smith,evan75@example.net,(577)694-7148x9789,4566102621498851605,2024-03-30 +City Hotel,0,67,2017,July,30,24,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,241.0,179.0,0,Transient,118.03,0,1,Canceled,Tami Saunders,orichardson@example.org,+1-955-575-3923x921,4282020525825716,2025-07-12 +City Hotel,1,37,2017,November,47,20,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,12.0,201.0,0,Transient,102.72,0,0,Check-Out,Evan Chavez,henryjones@example.org,488-270-7844x758,675911559960,2025-01-31 +City Hotel,0,3,2017,July,28,9,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,107.15,1,1,Check-Out,Gregory Wu,halljessica@example.com,472.327.1112x256,3562389400524022,2024-07-29 +Resort Hotel,1,2,2017,August,35,26,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,249.0,179.0,0,Transient,224.38,0,0,Canceled,Lindsey Forbes,mccalllinda@example.com,318-279-1958x79764,30276413049602,2025-12-18 +City Hotel,0,39,2017,March,13,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,81.2,0,1,Check-Out,Jeffrey Lee,nicholas51@example.com,866.707.9462,3557555873270940,2024-06-27 +City Hotel,1,166,2017,November,45,7,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,Non Refund,29.0,179.0,75,Transient,85.64,0,0,Canceled,Ronald Yates,vasquezdenise@example.org,001-466-388-6714,4623495011824209,2025-09-24 +City Hotel,1,144,2017,March,9,1,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,16.0,179.0,0,Transient,103.64,0,0,No-Show,Ryan Harris,richardthompson@example.org,(804)997-6597,373645836475328,2025-01-11 +Resort Hotel,0,317,2017,August,35,27,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,124.09,0,1,Check-Out,Crystal Rodriguez,cfoster@example.com,+1-313-849-0426x298,3539551542092875,2025-09-28 +City Hotel,1,13,2017,July,27,3,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,112.13,0,2,Canceled,James Brown,maria39@example.org,+1-705-841-5461x0167,4337288116937688,2024-10-23 +Resort Hotel,0,323,2017,October,40,2,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,131.5,0,1,Check-Out,Scott Franklin,evelyn12@example.net,(584)356-2982,4454572957885354,2025-02-03 +City Hotel,0,0,2017,December,49,6,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,15.0,331.0,0,Transient,3.69,0,1,Check-Out,Daniel Smith,donnacarey@example.org,001-260-713-3892x439,180038252086881,2025-01-07 +City Hotel,0,0,2017,October,41,8,1,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,D,A,0,No Deposit,181.0,77.0,0,Transient,54.65,0,0,Check-Out,Paul Ryan,wherrera@example.com,+1-849-784-9961,3511694004003154,2024-11-27 +City Hotel,0,66,2017,September,36,8,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,36.0,179.0,0,Transient-Party,187.89,0,0,Check-Out,Claire Allen,nicholegross@example.com,(319)802-7709x23360,4753476066212,2025-09-13 +City Hotel,1,94,2017,July,30,26,0,2,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,120.63,0,1,No-Show,Jamie Watts,alyssabell@example.com,478.570.2055,4072320072741272,2025-11-16 +City Hotel,1,116,2017,May,22,29,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,11.0,179.0,0,Transient,144.41,0,3,Canceled,Kathleen Woods,cochrankaylee@example.net,+1-883-377-8613x266,375459161053793,2026-01-14 +Resort Hotel,1,192,2017,March,14,31,1,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,63.37,0,0,Canceled,Lindsey Foster,rwarner@example.com,001-567-238-7444x85973,373136388406796,2024-06-10 +Resort Hotel,0,16,2017,July,29,20,2,1,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,1,No Deposit,243.0,179.0,0,Transient,131.26,0,1,Check-Out,Gabriel Thomas MD,kevin62@example.com,8373114778,30598420797562,2026-03-20 +City Hotel,0,23,2017,April,17,20,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,114.47,0,2,Check-Out,Elizabeth Jackson,christophermcdonald@example.org,+1-424-824-2324,4929069633991426497,2026-02-09 +City Hotel,0,17,2017,October,41,7,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,60.0,0,Transient,106.56,0,0,Check-Out,Leslie Ballard,stricklandjames@example.net,993-303-2625,374513680796117,2025-01-08 +Resort Hotel,0,23,2017,August,35,30,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,251.0,179.0,0,Transient,226.47,0,2,Check-Out,Lisa Hubbard,tylerchurch@example.com,+1-473-927-6855,30320112623307,2024-05-14 +Resort Hotel,1,0,2017,August,32,11,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,13.0,270.0,0,Transient,3.51,0,0,Canceled,Christina Browning,jonathan66@example.net,785-398-9233,2285751008953333,2024-08-21 +Resort Hotel,0,31,2017,January,4,20,1,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,175.0,179.0,0,Transient,38.71,0,0,Check-Out,Sheri Myers,nicholasbradley@example.org,001-493-307-1178x7402,4063939997597575,2026-01-24 +Resort Hotel,0,38,2017,August,32,6,1,3,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,240.0,179.0,0,Transient,234.49,1,3,Check-Out,Richard Giles,stephanie58@example.org,4719596543,4598858154839097,2026-01-16 +City Hotel,1,325,2017,September,37,15,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,E,E,0,Non Refund,10.0,179.0,0,Transient-Party,133.11,0,0,Canceled,Marc Stokes,tabithahopkins@example.com,864.804.9156x3951,2720284249117263,2025-03-21 +City Hotel,1,4,2017,August,34,23,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,112.06,0,0,Canceled,James Mcbride,angelica63@example.net,426.388.2919,3524881277686329,2024-05-26 +Resort Hotel,0,2,2017,May,19,5,1,3,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,51.99,0,2,Check-Out,Donna Bush,randy15@example.org,7845530416,675902547222,2025-07-24 +City Hotel,1,107,2017,December,51,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.32,0,0,No-Show,Ronald Gibson,thomas38@example.org,(709)777-3752x1910,6011711237463076,2024-12-25 +City Hotel,1,407,2017,May,20,17,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,98.39,0,0,Canceled,Joseph Morrison,pwilson@example.com,227.729.0079x6595,36776157202964,2026-02-15 +City Hotel,0,124,2017,August,31,4,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,149.58,0,0,Check-Out,Brooke Ortiz,ryanfreeman@example.net,836-791-4312x84595,3511076522693627,2024-04-03 +City Hotel,0,18,2017,April,15,8,2,4,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,110.22,0,2,Check-Out,Brandon Reynolds,johnny15@example.net,(383)938-7975x37064,372678976337934,2025-10-23 +City Hotel,0,163,2017,April,14,4,1,3,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,125.16,1,2,Check-Out,Jennifer Gonzales,dana95@example.net,7637512524,5160659507508586,2025-09-11 +City Hotel,0,17,2017,February,9,28,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,105.33,0,1,Check-Out,Charles Miles,uwerner@example.net,7386555013,4238022864959150,2024-06-07 +City Hotel,0,85,2017,December,49,5,1,1,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,17,Transient-Party,97.35,0,0,Check-Out,Marie Sloan,markspamela@example.net,235-433-8954x21397,341916461478906,2024-07-31 +Resort Hotel,0,13,2017,April,14,5,2,1,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,173.0,179.0,0,Transient,95.15,1,0,Check-Out,Leah Shepherd MD,smithrobert@example.org,853.687.0145,3512636155704691,2024-05-24 +City Hotel,0,25,2017,October,41,11,1,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,I,0,No Deposit,8.0,179.0,0,Transient,0.5099000000000001,0,2,Check-Out,Dr. Alexander Ramirez,johnsonrobert@example.org,(712)951-4729,676268131270,2025-02-11 +City Hotel,1,44,2017,April,16,19,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,235.0,179.0,0,Transient,138.39,0,2,Canceled,Danny Haley,twilliams@example.net,7433586975,4886635747775,2025-09-03 +City Hotel,1,86,2017,April,16,13,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,Non Refund,75.0,179.0,0,Transient,111.99,0,0,No-Show,Jasmine Glover,katiewolf@example.com,001-831-899-9119,4476350862239,2026-02-17 +Resort Hotel,0,0,2017,May,19,6,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,42.0,179.0,0,Transient,50.42,0,0,Check-Out,Brian Graham,barbara11@example.org,230-478-5207,180087506128775,2026-02-17 +City Hotel,1,63,2017,October,40,3,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,100.04,0,0,Canceled,Chris Li,dillon14@example.com,683-461-4702x204,676260955932,2025-02-14 +City Hotel,0,83,2017,June,23,2,2,5,2,0.0,0,BB,FRA,Online TA,GDS,0,0,0,D,D,0,No Deposit,178.0,179.0,0,Transient,164.5,0,0,Check-Out,Jason Whitehead,hweber@example.com,809.302.9306x612,4788079435191584,2025-10-18 +Resort Hotel,1,39,2017,August,31,2,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,10.0,179.0,0,Transient,123.42,0,0,Canceled,Connie Johnson,belinda39@example.com,+1-758-246-4463x366,30396565777790,2025-06-27 +City Hotel,0,14,2017,July,30,25,0,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,230.49,0,0,Check-Out,Joseph Fry,thomaselizabeth@example.net,485-385-9595x22946,4600941389094526,2025-04-06 +City Hotel,1,11,2017,February,7,16,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,8.0,179.0,0,Transient,106.29,0,0,Canceled,Daniel Wise,ybryan@example.com,(607)755-8242,2248550557549526,2025-09-16 +City Hotel,0,111,2017,July,28,13,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,170.92,0,0,Check-Out,Lauren Jones,rushsara@example.org,+1-262-896-2293,6011967614101206,2026-03-20 +City Hotel,1,162,2017,August,34,23,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,132.87,0,0,Canceled,Nicole Beck,scott58@example.org,001-269-387-6862,4400201800647887,2025-05-10 +City Hotel,0,155,2017,September,36,3,1,3,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,308.0,179.0,0,Transient,199.15,0,0,Check-Out,Jason Howell,davidthornton@example.net,670.725.1496,213122504713384,2025-06-11 +Resort Hotel,0,160,2017,January,4,24,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,D,0,No Deposit,14.0,179.0,0,Transient,123.51,0,1,Check-Out,Jonathan Chavez,kevin77@example.org,441.767.8919,3568655048857691,2025-12-28 +Resort Hotel,0,32,2017,March,13,23,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient,98.29,0,0,Check-Out,Ashley Cruz,hernandezwilliam@example.net,656.604.4538,3502664861291011,2024-05-16 +City Hotel,1,383,2017,August,32,12,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,94.28,0,0,Canceled,Walter Berry,yvettewhite@example.org,200.885.5251x14469,4236720170332405758,2025-04-18 +City Hotel,1,391,2017,July,28,8,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,100.35,0,0,Canceled,Daniel Singh,jamesespinoza@example.net,(478)239-3721,6593598296251690,2025-08-17 +City Hotel,0,2,2017,April,17,23,2,2,2,0.0,0,BB,CN,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,91.51,0,1,Check-Out,Anthony Kirk,travisgarcia@example.com,+1-538-623-4748,2251357207664885,2024-12-19 +City Hotel,1,161,2017,October,43,22,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,81.82,0,1,Canceled,Marcia Ford,katherinerobinson@example.com,(896)584-5818,375206079597969,2025-07-07 +City Hotel,0,8,2017,March,13,28,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,84.34,0,1,Check-Out,Richard Jenkins,arthurgarcia@example.org,(404)226-8650,213183382420930,2025-11-01 +City Hotel,1,108,2017,October,42,18,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,100.83,0,0,Canceled,Willie Johnson,wallacewilliam@example.net,+1-317-396-7470,3593826219078446,2024-11-20 +Resort Hotel,0,2,2017,August,31,3,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,17.0,179.0,0,Transient,59.19,0,0,Check-Out,Luis Green,eugene97@example.org,(741)768-5013x9968,3579819258066065,2025-08-18 +City Hotel,1,319,2017,August,33,19,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,103.55,0,1,Canceled,Pamela Vargas,blakekayla@example.net,271.540.7550x0037,3573415308136697,2025-11-08 +City Hotel,0,96,2017,August,32,12,2,1,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,244.0,179.0,0,Transient,196.89,0,0,Check-Out,Sarah Ross,walshdarrell@example.com,001-855-973-8072x1007,503829024929,2025-02-28 +Resort Hotel,0,2,2017,October,40,6,1,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,1,1,0,A,D,0,No Deposit,241.0,179.0,0,Contract,42.62,0,1,Check-Out,Sarah Garcia DVM,janetlara@example.net,(951)988-5339x02934,4557429976041,2024-05-15 +Resort Hotel,1,107,2017,June,26,23,3,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,G,0,No Deposit,242.0,179.0,0,Transient,136.7,0,2,Canceled,Susan Park,tylerjeffery@example.net,+1-362-989-0902x557,180047066795413,2024-12-10 +Resort Hotel,1,18,2017,September,38,21,2,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,218.19,0,1,Canceled,Amanda Wallace,isanchez@example.com,820-354-6648x60378,30055124648948,2025-04-02 +City Hotel,0,163,2017,August,34,21,0,2,2,1.0,0,BB,DEU,Direct,Direct,0,0,0,E,E,1,No Deposit,13.0,179.0,0,Transient,241.66,0,2,Check-Out,Brandi Long,trannancy@example.net,959-310-5626,4893951191030762,2025-04-22 +Resort Hotel,0,314,2017,March,12,24,4,7,2,0.0,0,BB,POL,Direct,Direct,0,0,0,E,E,1,No Deposit,329.0,179.0,75,Transient,170.17,0,1,Check-Out,Janet Holland DVM,urandall@example.com,+1-380-539-5643x382,2275722520539944,2025-01-12 +Resort Hotel,0,145,2017,March,10,4,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,116.2,1,2,Check-Out,Katherine Carey,glawson@example.org,+1-379-353-0934x944,4937541359401,2025-02-11 +City Hotel,0,28,2017,August,32,6,2,5,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.71,0,1,Check-Out,James Hall,tracieevans@example.net,+1-337-659-0037x902,4115255441560095,2024-10-14 +City Hotel,0,9,2017,March,13,28,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,238.0,208.0,0,Transient,123.03,0,1,Check-Out,John Powell,zacharymontgomery@example.net,(932)413-8635x75478,4706487034248615,2025-11-08 +City Hotel,1,9,2017,January,4,26,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,15.0,222.0,0,Transient,63.29,0,0,Canceled,Robert Ward,kendra06@example.org,382-579-8696,4029193366286799,2025-10-14 +Resort Hotel,0,237,2017,September,36,3,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,50.96,0,0,Check-Out,Adam Hansen,jennifer26@example.com,215.863.6250x891,4502097224134591438,2025-07-24 +Resort Hotel,0,179,2017,August,32,9,2,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,L,H,0,No Deposit,330.0,179.0,0,Transient,2.48,0,0,Check-Out,Craig Dixon,shane94@example.net,382-789-1635,3540866206334091,2026-01-18 +Resort Hotel,0,14,2017,July,30,23,2,3,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,H,0,No Deposit,241.0,179.0,0,Transient,130.63,1,2,Check-Out,Laura Davis,laurathompson@example.org,897-289-1807x82939,4132012005619950,2025-01-17 +City Hotel,0,1,2017,March,13,23,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,331.0,0,Transient,49.58,0,2,Check-Out,Thomas Leon,george08@example.org,297-275-1823x93796,213153929348910,2025-03-03 +Resort Hotel,1,6,2017,December,49,5,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,78.38,0,1,Canceled,April Duke,evan55@example.org,(938)457-9009x898,4920832189349,2024-06-20 +Resort Hotel,0,42,2017,June,24,9,1,10,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,182.0,179.0,0,Transient,209.23,0,2,Check-Out,Linda Galloway,meagan49@example.org,923-675-8081x4156,378830211577733,2024-06-11 +City Hotel,0,173,2017,July,29,21,2,5,1,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,13.0,63.0,0,Transient,107.31,0,2,Check-Out,Mr. Kevin Shaw,allisonbrown@example.net,331.500.8383x190,180075916717840,2025-12-12 +City Hotel,0,203,2017,July,28,8,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,170.99,0,2,Check-Out,Melanie Martinez,qjohns@example.org,951-488-1347,6559103106968518,2024-06-08 +Resort Hotel,0,261,2017,July,27,2,0,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient-Party,84.24,0,2,Check-Out,Jacqueline Mccarthy,breannabush@example.com,612-983-0479,3500848390645720,2025-10-16 +City Hotel,1,414,2017,May,21,23,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,103.62,0,0,Canceled,Dean Clay,erinbrewer@example.org,+1-638-962-9065x228,2707280940774953,2024-09-19 +Resort Hotel,0,46,2017,April,17,27,1,4,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Check-Out,April Zamora,gary71@example.net,(430)208-0920,180046116282638,2026-01-23 +City Hotel,0,19,2017,January,2,12,2,6,2,2.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,174.71,0,1,Check-Out,Brianna Bullock,robert52@example.org,932.267.9079x7890,348712469491311,2025-02-13 +City Hotel,1,142,2017,August,34,19,2,3,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,138.38,0,2,Canceled,Eric Randall,brockrobert@example.com,+1-725-881-9346,4104862719560,2024-09-14 +City Hotel,1,187,2017,November,47,22,1,2,2,0.0,0,SC,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,99.65,0,1,Canceled,William Gutierrez,smithkathleen@example.org,001-972-234-1821,4572728016114957,2024-07-10 +Resort Hotel,0,13,2017,February,8,22,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,42.93,0,1,Check-Out,Michael Howard,gmata@example.com,+1-528-229-7333x456,38197807907738,2024-09-01 +Resort Hotel,0,0,2017,December,51,20,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,323.0,179.0,0,Transient-Party,41.5,1,2,Check-Out,Jason White,miguelwong@example.org,+1-697-212-3338x06852,4975054450251988,2024-06-13 +City Hotel,0,292,2017,September,38,23,0,2,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,E,0,No Deposit,1.0,179.0,0,Transient-Party,63.4,0,0,Check-Out,William Olsen,keith97@example.org,433-709-3112,341423522457664,2026-01-28 +Resort Hotel,0,42,2017,July,28,8,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,0,No Deposit,244.0,179.0,0,Transient,129.2,0,2,Check-Out,Daniel Burnett,charles61@example.org,(908)370-1777x89321,3515766893811180,2024-06-06 +City Hotel,1,44,2017,July,28,14,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,107.93,0,0,No-Show,Paul Thompson,jeannemorse@example.com,(905)657-0032x815,4367886304888994,2024-05-31 +Resort Hotel,0,229,2017,March,13,30,1,4,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,D,D,2,Refundable,13.0,222.0,0,Transient-Party,61.55,0,0,Check-Out,Miss Kelly Johnson,buchananjo@example.com,682-565-7451x047,4079687303267772653,2025-08-20 +Resort Hotel,1,5,2017,July,30,25,0,1,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,145.71,0,1,Canceled,Bailey Schroeder,davidjohnson@example.net,5655325258,2325836116956849,2025-11-09 +City Hotel,1,414,2017,October,41,14,2,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,96.56,0,1,Canceled,Angela Sullivan,michaelajenkins@example.org,001-256-466-6651x5353,4702164412398718,2025-02-07 +City Hotel,1,215,2017,September,39,28,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,63,Transient,107.97,0,0,Canceled,Justin West,jcarr@example.net,290.562.9423x2623,3510943431190626,2025-12-12 +City Hotel,1,413,2017,June,24,10,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,18,Transient,81.11,0,0,Canceled,Elizabeth Wallace,nkennedy@example.org,(406)883-0218,4899375347865455,2024-12-12 +Resort Hotel,1,135,2017,December,52,27,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,244.0,179.0,0,Transient,50.96,0,0,Canceled,Laura Friedman,schwartzkimberly@example.net,9326927865,4464625019864227,2024-12-02 +City Hotel,0,12,2017,March,13,26,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,79.24,0,0,Check-Out,Meghan Frazier,asingh@example.net,+1-843-309-0469x8868,6011864953848515,2024-06-01 +City Hotel,0,34,2017,April,18,30,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,96.01,0,0,Check-Out,Allison Burnett,kramirez@example.com,001-750-792-3607x9214,6011653453497646,2024-06-08 +City Hotel,1,398,2017,August,33,16,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,77.0,179.0,0,Transient,121.13,0,0,Canceled,John Williams,dalejohnson@example.org,(942)760-2679,3539034676166153,2025-12-08 +Resort Hotel,1,89,2017,March,10,5,1,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,37.64,0,0,Canceled,Jessica Charles,ymcdonald@example.org,2992554846,4203929991965978,2024-07-24 +City Hotel,1,20,2017,December,52,27,2,1,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,100.67,1,0,Canceled,Garrett Thomas,bakeramanda@example.org,(681)492-9800,378024549153462,2025-05-25 +Resort Hotel,0,99,2017,March,10,6,2,2,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,61.63,0,1,Check-Out,Julia Wheeler,sblankenship@example.org,(857)335-2255x6240,630412347142,2026-03-18 +Resort Hotel,0,17,2017,January,4,23,1,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,36.0,179.0,0,Transient-Party,43.74,0,1,Check-Out,John Mason,aliciakane@example.com,001-621-785-6620x0149,213154172313205,2024-12-08 +Resort Hotel,0,157,2017,November,45,6,0,5,2,0.0,0,BB,IRL,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,193.0,179.0,0,Transient-Party,134.39,0,0,Check-Out,Angela Jordan,jbaker@example.com,+1-476-470-9481,060426559161,2024-05-15 +City Hotel,1,16,2017,February,8,23,1,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,73.45,0,0,Canceled,Katherine Hobbs,mcbridesamantha@example.org,952-313-6039x068,3566749080807052,2025-11-10 +City Hotel,1,229,2017,April,18,30,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,135.57,0,0,Canceled,Tony Johnson,shannonclark@example.net,(339)678-3963,346833870910806,2025-10-26 +City Hotel,0,55,2017,April,16,21,0,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,104.13,0,1,Check-Out,Jerome Ruiz,brian10@example.net,331-457-6408x381,213189848393710,2024-10-15 +Resort Hotel,0,0,2017,January,2,7,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,15.0,179.0,0,Transient,166.49,1,0,Check-Out,Todd Williams,pateljennifer@example.org,3546627575,6011221049450527,2024-06-24 +Resort Hotel,0,260,2017,October,40,4,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,172.0,179.0,0,Transient-Party,103.22,0,0,Check-Out,Adam Wong,feliciaswanson@example.net,+1-534-986-5219x3902,4797807454415722728,2025-07-21 +Resort Hotel,0,0,2017,December,49,9,0,1,1,0.0,0,BB,ESP,Direct,Corporate,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,30.95,0,0,Check-Out,Michael Parker,jenniferrivera@example.com,(221)966-6110x0803,3560260661731287,2024-10-27 +City Hotel,0,371,2017,October,43,23,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,120.71,0,0,Check-Out,Jorge Taylor,mikayla46@example.com,(714)908-5560x993,4719953103534123,2025-10-01 +City Hotel,1,34,2017,August,31,2,0,3,3,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,143.26,0,1,Canceled,Christopher Johnson,qmyers@example.com,001-727-971-4460x99953,180025236215397,2024-07-11 +City Hotel,0,2,2017,August,32,6,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,21.0,179.0,0,Contract,0.88,0,1,Check-Out,Christopher Green,tony00@example.com,671.247.8624,30569522318086,2024-05-08 +City Hotel,1,99,2017,October,40,6,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,165.57,0,1,No-Show,Michael Lopez,benjaminochoa@example.com,+1-475-761-0551x981,4655989875859096,2025-12-09 +City Hotel,1,180,2017,August,32,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,109.99,0,1,Canceled,Brittany Khan,williamnash@example.com,(435)914-2814x42745,180032594926607,2025-03-21 +Resort Hotel,0,15,2017,October,43,27,1,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,C,0,Refundable,241.0,179.0,0,Transient,63.41,0,0,Check-Out,Isaac Cooke,uwebb@example.com,319.658.5705x07211,4811938276327121,2024-04-24 +City Hotel,1,48,2017,September,38,17,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,62.91,0,0,Canceled,Allison King,ihoffman@example.net,951-644-7570x3218,4973224272134892,2024-09-28 +City Hotel,0,31,2017,October,42,18,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,150.32,0,1,Check-Out,Collin Cobb,benjamin04@example.org,(355)994-0138x341,3532309127250088,2025-09-19 +Resort Hotel,0,0,2017,April,16,15,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,302.0,179.0,0,Transient,50.38,0,1,Check-Out,Gregory Murphy,kyle10@example.org,326.513.6993x89669,213131844123956,2026-01-03 +City Hotel,1,330,2017,July,27,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,40,Transient-Party,92.24,0,0,Canceled,Jeremy Price,jessica96@example.org,+1-838-723-5095x4010,3505027069452131,2025-03-12 +Resort Hotel,1,300,2017,June,23,7,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,E,0,Non Refund,245.0,179.0,0,Transient,140.22,0,0,Canceled,Louis Robinson,simonmichael@example.org,001-843-773-5489x27410,370082886203041,2026-03-24 +City Hotel,0,0,2017,June,23,5,1,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,20.0,179.0,0,Transient,126.77,0,0,Check-Out,Lance Morris,donald41@example.net,(230)534-9391,6011950931793376,2024-12-09 +City Hotel,0,38,2017,June,26,24,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,114.92,0,0,Check-Out,Mary Thompson,brandibaker@example.com,+1-364-406-1936x04571,2244986573720978,2025-06-22 +Resort Hotel,0,39,2017,March,10,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,79.44,0,1,Check-Out,Timothy Lamb,meyermckenzie@example.org,683.278.9121x772,4299318950904658025,2025-02-27 +Resort Hotel,1,3,2017,April,17,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,D,D,1,No Deposit,15.0,69.0,0,Transient,52.68,0,3,Canceled,William Hernandez,steven18@example.com,673-729-5189x12042,30520610347370,2025-10-27 +City Hotel,0,91,2017,August,32,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,3.0,179.0,0,Transient-Party,60.88,0,1,Check-Out,Mary Lee,wallschristine@example.com,509.428.6275x2585,4340877681025344,2024-07-28 +Resort Hotel,1,331,2017,July,31,30,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,80.36,0,1,Canceled,Donna Gonzalez,anitamiller@example.com,600-999-3785x8194,3550069213764635,2025-07-14 +Resort Hotel,0,9,2017,January,2,3,2,1,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,252.0,0,2,Check-Out,Brian Young,ydavis@example.com,811-548-5202x7721,4695273028524737313,2025-07-05 +Resort Hotel,0,179,2017,May,21,21,4,4,1,0.0,0,BB,IRL,Online TA,Direct,0,0,0,A,C,1,Refundable,246.0,179.0,0,Transient,144.06,1,2,Check-Out,Jonathan Diaz,smithaaron@example.com,7959840391,4488824583555939,2024-11-04 +Resort Hotel,0,206,2017,July,30,23,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,183.0,179.0,0,Transient-Party,112.4,0,0,Check-Out,Lisa Chavez,christophercannon@example.com,001-625-887-4340,30153055264015,2026-01-19 +City Hotel,1,158,2017,August,34,20,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,Non Refund,73.0,179.0,0,Transient,144.41,0,0,Canceled,Lauren Bolton,jamescruz@example.net,605.509.4485x220,4417155320180103,2024-09-01 +City Hotel,0,12,2017,April,14,6,1,2,1,1.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,105.0,0,1,Check-Out,Kenneth Harmon,scottcarpenter@example.net,001-702-367-7171x628,3540177746810339,2026-01-16 +Resort Hotel,0,30,2017,April,15,8,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,131.72,0,2,Check-Out,Keith Walker,bennettmatthew@example.org,436-467-6716x7644,30024927342141,2025-05-02 +Resort Hotel,0,15,2017,July,30,24,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,135.97,0,1,Check-Out,Andrea Scott,sanchezbrittany@example.net,001-974-594-0415x9610,343269846633151,2025-12-26 +City Hotel,0,33,2017,May,21,24,0,2,3,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,210.34,0,0,Check-Out,Kathleen Sandoval,brandonclark@example.org,6425617380,3587016522766618,2024-11-11 +Resort Hotel,1,13,2017,May,22,27,1,1,1,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,16.0,179.0,0,Transient,135.59,0,0,No-Show,Jay Coleman,kevinnguyen@example.com,+1-769-268-5366x4233,3551023591445324,2024-09-09 +Resort Hotel,0,0,2017,August,34,23,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,L,H,0,No Deposit,245.0,179.0,0,Transient,218.36,0,0,Check-Out,Amy Horne,biancagonzales@example.org,+1-271-878-7953x1856,213174820831713,2025-10-04 +Resort Hotel,0,13,2017,August,35,28,2,1,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,175.84,1,1,Check-Out,Stephanie Owens,brent74@example.net,994.790.5999x51377,2703952356957272,2024-03-30 +City Hotel,0,15,2017,July,27,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,B,B,1,No Deposit,13.0,179.0,0,Transient,109.04,0,1,Check-Out,Timothy Lopez,ngutierrez@example.org,(889)385-6154,342308778694038,2026-01-17 +City Hotel,0,18,2017,July,29,22,0,2,1,0.0,0,Undefined,ITA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,64,Transient-Party,83.8,0,0,Check-Out,Matthew Murray,ronaldgrant@example.net,9834126944,4447849204747,2024-08-18 +Resort Hotel,1,26,2017,December,49,4,1,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,E,0,No Deposit,241.0,179.0,0,Transient,223.77,0,0,Canceled,Lisa Johnson,goodwinsamantha@example.net,(508)639-0248x20028,4732135270126445874,2024-10-25 +City Hotel,1,414,2017,June,24,9,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,116.19,0,0,Canceled,Michael Paul,tamara85@example.net,244-419-3690x1448,36110736495651,2025-11-17 +City Hotel,0,59,2017,May,19,9,0,1,1,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,A,2,No Deposit,15.0,179.0,0,Transient,139.96,0,0,Check-Out,Nathan Hunter,alexissantiago@example.org,(316)369-1884x3916,3523979352453911,2025-12-24 +City Hotel,1,397,2017,May,19,4,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient,127.61,0,0,Canceled,Glenda Cross,kturner@example.com,(872)913-6598x0509,4278177400113438318,2024-10-20 +City Hotel,0,0,2017,April,14,5,2,0,1,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,52.49,1,0,Check-Out,Christopher Hood,mbrown@example.org,+1-765-609-8877x93691,180024732794989,2024-10-08 +Resort Hotel,1,238,2017,July,30,22,2,5,2,0.0,0,FB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,123.92,0,0,Canceled,Trevor Hall,deborah87@example.org,2629094909,3500024038617840,2025-04-01 +City Hotel,1,67,2017,July,30,28,2,5,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,104.86,0,0,Canceled,Julia Gill,cassie51@example.com,962-576-7547x58663,6011791047763667,2025-05-09 +City Hotel,0,8,2017,October,42,15,1,0,1,0.0,0,SC,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,79.42,0,0,Check-Out,David Palmer PhD,ssanders@example.org,612.270.4839x47949,3596494218560000,2025-05-27 +Resort Hotel,1,148,2017,November,47,25,1,4,1,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,241.0,179.0,0,Transient,104.19,0,0,Canceled,Brandon Contreras,kerrdanny@example.com,+1-321-678-3045x2190,502096422220,2024-10-17 +City Hotel,1,28,2017,June,23,4,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,41,Transient,109.91,0,0,Canceled,Carmen Velez,hayley90@example.net,687.995.4676x6929,4418666341021943,2026-01-16 +City Hotel,0,2,2017,May,22,31,0,1,1,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,102.15,0,1,Check-Out,Jennifer Jennings,donnabarrera@example.net,357.800.6796x199,2716918584634426,2026-03-10 +City Hotel,1,149,2017,August,31,2,1,5,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,127.09,0,0,Canceled,Stacie Reid,sarahriley@example.org,+1-322-544-7875x1000,4504500936587627,2026-02-17 +City Hotel,1,270,2017,July,29,20,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,96.72,0,0,Canceled,Adam Baker,tara04@example.org,593-904-4746x65954,6520014033278820,2024-04-06 +Resort Hotel,0,131,2017,April,17,26,0,6,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,G,A,2,No Deposit,237.0,179.0,0,Transient,150.49,0,1,Check-Out,Daniel Thomas,allison62@example.org,001-331-552-9618x00703,374899262986287,2024-12-03 +City Hotel,1,0,2017,October,40,1,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient-Party,96.0,0,1,Canceled,Steven Horton,danielsmith@example.org,497.341.9053,4734843468496490,2024-09-29 +Resort Hotel,1,126,2017,July,29,17,2,2,2,0.0,0,HB,PRT,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,83.8,0,0,Canceled,Veronica Diaz,fsandoval@example.com,+1-553-258-1564x4077,4317155023762926078,2024-10-26 +Resort Hotel,0,0,2017,February,9,28,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,67.0,0,Transient,63.35,0,0,Check-Out,Michael Benson,hannahcrane@example.com,001-959-363-0879,503898583821,2026-01-07 +City Hotel,0,11,2017,November,47,19,2,1,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,107.61,0,0,Check-Out,Debbie Tucker,llyons@example.org,001-678-939-3700,675984429513,2024-12-09 +Resort Hotel,0,65,2017,March,13,25,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,75.0,179.0,0,Transient-Party,63.17,0,0,Check-Out,Daryl Trevino,nicholasweaver@example.org,+1-640-623-8192x0041,4631363248889,2025-11-04 +City Hotel,0,54,2017,November,48,27,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,162.85,0,1,Check-Out,Amy Mitchell,nduncan@example.org,722-456-2728x20771,4527501049819,2024-10-23 +Resort Hotel,0,23,2017,April,15,14,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,75.63,1,0,Check-Out,Jennifer Edwards,timothy01@example.net,(907)902-9566x06919,4456050604081006411,2026-01-31 +Resort Hotel,1,0,2017,November,45,9,2,0,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,2.71,0,0,Canceled,Colleen Miles,josefarrell@example.com,365-267-9594x81116,2242057106031671,2025-03-14 +Resort Hotel,0,34,2017,November,45,10,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,H,D,0,No Deposit,240.0,179.0,0,Transient,53.51,1,2,Check-Out,Mark Rodriguez,dalexander@example.com,7399428592,5502370158537638,2024-12-22 +Resort Hotel,1,143,2017,July,27,5,0,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient,128.35,0,0,Canceled,Andrea Hickman,fmason@example.org,785.621.5358x1257,4798618562464682,2025-11-11 +Resort Hotel,0,11,2017,May,21,20,1,10,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,1,No Deposit,13.0,167.0,0,Transient,129.73,0,2,Check-Out,Cassandra Perez,marshallfrederick@example.org,+1-819-401-3195x9730,3563762637218585,2026-03-26 +City Hotel,1,149,2017,December,49,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,241.0,179.0,75,Transient,74.93,0,0,Canceled,Kevin Armstrong,jessicamorton@example.com,4195392907,30360443385564,2025-06-07 +Resort Hotel,0,18,2017,October,41,7,2,1,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,103.89,0,0,Check-Out,William Patrick,megan94@example.net,+1-367-938-3032x8224,213103508714024,2024-10-16 +City Hotel,1,40,2017,June,23,4,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,87.27,0,0,No-Show,Wanda Ford,bob35@example.org,208.663.7601x9422,3550597012694520,2026-01-31 +Resort Hotel,0,158,2017,March,13,24,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,0,Refundable,14.0,222.0,0,Transient-Party,83.51,0,0,Check-Out,Garrett Joseph,lisarichardson@example.com,+1-217-478-2352x210,6011914687655155,2025-02-20 +Resort Hotel,0,43,2017,October,41,7,2,2,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,255.0,179.0,0,Transient-Party,76.21,0,0,Check-Out,Amanda Cook,matthewthompson@example.net,793-794-9471x3743,6011959855714821,2024-08-03 +Resort Hotel,0,11,2017,December,52,26,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,D,0,No Deposit,236.0,179.0,0,Transient,56.37,0,1,Check-Out,William Martinez,perezsteven@example.net,(544)741-2185x40527,213147092989476,2025-02-21 +City Hotel,0,17,2017,August,32,11,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,1,0,A,D,0,No Deposit,1.0,179.0,0,Contract,60.1,0,2,Check-Out,John Nelson,alicia16@example.net,715-715-1132x86122,2246023394198594,2026-01-10 +Resort Hotel,0,153,2017,February,8,18,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,239.0,179.0,0,Transient,54.27,0,2,Check-Out,Russell Henry,jon08@example.net,482-300-1653,346888495593502,2025-04-01 +City Hotel,1,157,2017,June,26,25,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,A,0,Non Refund,8.0,179.0,0,Transient,143.54,0,0,Canceled,Bruce Hays,steven66@example.com,366.215.8145,30588722289095,2024-05-29 +City Hotel,0,37,2017,October,43,26,2,2,2,2.0,0,BB,FRA,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,222.95,0,0,Check-Out,Cory Mckinney,carrierodriguez@example.com,001-556-952-2349x6200,4780180877905800,2025-12-25 +Resort Hotel,0,14,2017,March,13,23,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,238.0,179.0,0,Transient,64.37,1,1,Check-Out,Shannon Donovan,christinafowler@example.com,(758)425-3977x92282,3577915532744881,2025-07-11 +Resort Hotel,0,34,2017,July,27,4,1,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,26.0,179.0,0,Transient,62.71,1,1,Check-Out,Sandra Hebert,jenniferroberts@example.org,839.510.2813,3507529502596430,2024-09-06 +City Hotel,0,11,2017,November,48,28,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,83.05,1,1,Check-Out,Kristen Davidson,jcarlson@example.com,(576)634-8196,3555130537989772,2025-12-18 +Resort Hotel,0,61,2017,August,32,9,4,10,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,143.39,0,1,Check-Out,Bonnie Gordon,lanetony@example.com,+1-380-807-3408x212,3545275918324223,2024-05-28 +City Hotel,1,171,2017,August,32,6,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,9.0,179.0,0,Transient,106.0,0,1,Canceled,Christian Jones,chelseacole@example.com,5646774110,3549591760645689,2024-12-11 +City Hotel,0,87,2017,April,17,23,2,1,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Transient,104.71,0,0,Check-Out,Shawn Johnson,duranjoshua@example.com,(338)738-0702x37852,564949083708,2024-05-30 +City Hotel,0,3,2017,July,29,13,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,144.49,1,1,Check-Out,Rachel Williams,lreynolds@example.net,(977)773-9858x31090,503843541833,2025-01-07 +City Hotel,0,41,2017,August,35,29,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,226.9,0,1,Check-Out,Kayla Bonilla,matthew75@example.com,(335)885-6489x902,3520749654069860,2024-04-23 +City Hotel,1,167,2017,September,36,5,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.26,0,0,Canceled,Manuel Lee MD,wheelerdebra@example.com,001-548-615-3013x28325,213172171590771,2025-04-26 +City Hotel,1,22,2017,December,52,25,0,1,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,63.5,0,0,Canceled,Chelsea Hill,bbrown@example.org,804.607.6871,374822093151293,2025-04-02 +City Hotel,0,38,2017,November,47,24,1,2,1,0.0,0,BB,BEL,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,179.0,179.0,0,Transient,124.21,0,0,Check-Out,Kenneth Mckenzie,briandillon@example.com,859-604-8740x25734,4869033353203550,2025-01-25 +Resort Hotel,1,47,2017,October,43,25,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,102.11,0,1,Canceled,Megan Forbes,melissajohnson@example.net,+1-978-550-0497,2720618405030010,2024-10-28 +City Hotel,1,8,2017,December,52,28,0,1,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,A,0,No Deposit,183.0,78.0,0,Transient,44.19,0,0,Canceled,Gabriella Daniels,trevorchandler@example.com,+1-244-408-2525x3409,2238402595301431,2025-06-02 +Resort Hotel,0,0,2017,November,44,2,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,241.0,179.0,0,Transient-Party,53.08,0,1,Check-Out,Dr. Bryan Strong Jr.,wedwards@example.org,(895)215-3409x02260,373961867004527,2025-09-21 +Resort Hotel,1,17,2017,October,41,9,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,174.0,179.0,0,Transient,44.98,0,1,No-Show,Kaitlyn Coleman,mistyburgess@example.net,+1-998-654-3157x3271,213129580614956,2025-02-05 +City Hotel,1,5,2017,September,38,17,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.02,0,0,No-Show,Michelle Nichols,charlescooper@example.org,316.696.8664x79376,3548820367709932,2025-10-17 +Resort Hotel,1,38,2017,November,47,18,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,63.59,0,2,Canceled,Jason Johns,sydneypayne@example.net,(951)532-1012x28386,4909631914108469344,2025-11-30 +City Hotel,0,67,2017,October,41,9,0,4,2,0.0,0,SC,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,206.48,0,0,Check-Out,Vanessa Reese,jessica93@example.net,985-389-6604x825,3549097200472411,2025-09-24 +City Hotel,1,167,2017,June,23,2,3,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,Non Refund,67.0,179.0,0,Transient,104.51,0,0,Canceled,Ryan Gay,donald40@example.com,001-270-509-9778,4329583049821865020,2025-03-12 +Resort Hotel,0,2,2017,March,12,19,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,2,No Deposit,132.0,179.0,0,Transient,43.32,0,1,Check-Out,Lisa English,hernandezrandall@example.org,001-225-860-8748x769,349552510103211,2024-09-14 +City Hotel,0,124,2017,April,17,25,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,92.04,0,1,Check-Out,Rachel Moore,hooverpaul@example.org,342.465.6767x74993,501866281691,2024-07-20 +City Hotel,1,0,2017,August,32,4,1,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,240.0,179.0,0,Transient,228.82,0,0,Canceled,Andrew Morrow,david04@example.net,234.645.2958,3540601837295274,2024-11-11 +Resort Hotel,1,66,2017,November,47,21,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,53.38,1,1,Canceled,Christy Sanders,taylormark@example.org,712-471-8471,30176470879919,2025-11-25 +City Hotel,0,26,2017,September,40,30,0,1,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,227.37,1,2,Check-Out,James Myers,kenneth35@example.com,001-560-396-8643,376080423293834,2026-02-22 +City Hotel,1,98,2017,June,26,26,1,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.94,0,0,Canceled,Melinda Austin,fleblanc@example.net,394.595.0511,4671680255446465487,2024-08-18 +City Hotel,1,378,2017,June,27,30,1,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,139.12,0,0,Canceled,Christine Jones,gloriawatkins@example.net,329-916-9586,4259864500983175,2025-12-24 +City Hotel,0,7,2017,April,15,13,1,0,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.14,0,1,Check-Out,Sandra Lawson DDS,keith72@example.org,(721)312-6154x743,4322664616011397,2024-12-18 +City Hotel,1,160,2017,June,25,20,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,140.33,0,3,Canceled,Kelly Smith,jimmy02@example.net,8489007507,370988066146463,2024-09-21 +City Hotel,0,397,2017,July,28,9,1,2,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,165.96,0,0,Check-Out,Daniel Soto,wilkersonkelly@example.net,+1-543-440-8579x98317,5440818840952362,2025-10-18 +City Hotel,0,16,2017,November,45,4,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,12.0,179.0,0,Transient,80.5,0,0,No-Show,Christopher Hayes,derrickwilliams@example.com,001-255-500-5582x766,342449482261621,2025-11-17 +City Hotel,1,151,2017,April,15,9,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,111.57,0,0,Canceled,Michael Howard,abarnes@example.org,(591)960-4786,4278672425153188838,2024-04-24 +City Hotel,0,158,2017,March,13,23,0,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.42,0,1,Check-Out,Amanda Mason,georgepeter@example.net,001-963-325-9366x8567,3563781385086358,2025-11-10 +City Hotel,1,149,2017,June,25,20,0,1,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,124.49,0,1,Canceled,Joshua Blackwell,efreeman@example.net,651.406.4100x8781,4982523302565606,2025-02-15 +City Hotel,1,0,2017,January,3,13,0,4,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,A,0,No Deposit,14.0,179.0,0,Transient,45.92,0,0,Canceled,Savannah Sampson,paultodd@example.net,+1-904-343-4860,3598146372928047,2024-06-22 +City Hotel,0,14,2017,March,10,5,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,E,0,No Deposit,12.0,221.0,0,Transient-Party,64.84,0,0,Check-Out,Patricia Villarreal,mark28@example.com,(605)615-6689,4768400942197,2025-08-19 +Resort Hotel,0,19,2017,August,34,23,0,5,2,2.0,0,HB,IRL,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,240.0,179.0,0,Transient,242.1,1,2,Check-Out,Anthony Allen,ericksonsarah@example.org,001-746-233-5780x765,2286515122780206,2024-08-12 +City Hotel,0,0,2017,January,3,18,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,10.0,179.0,0,Transient,41.82,0,2,Check-Out,Karen Rice,burtonrobert@example.com,+1-601-451-4799x848,4403650066063,2024-07-17 +City Hotel,1,295,2017,August,31,2,2,2,2,2.0,0,BB,,Online TA,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Canceled,Laura Roberts,monique82@example.net,573.621.9956x8842,213128503311682,2025-11-11 +City Hotel,0,113,2017,May,21,24,1,2,2,0.0,0,BB,ISR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,100.51,0,0,Check-Out,Kimberly Wu,larsonlaura@example.com,637-391-1935,3564675930163051,2024-09-09 +City Hotel,1,35,2017,May,21,20,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Contract,86.81,0,1,Canceled,Sarah Foster,suzanneshepard@example.org,001-972-966-1735x73721,5111088566121380,2026-01-18 +City Hotel,0,23,2017,March,11,9,1,1,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,75.6,1,1,Check-Out,James Avila,smithandrew@example.org,976.304.6346x81219,38010872087171,2026-03-27 +City Hotel,1,9,2017,April,14,3,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,Non Refund,13.0,45.0,0,Transient,63.11,0,0,Canceled,Mark Carlson,oconnellbrittany@example.com,001-996-509-3499x590,213109756961423,2024-05-29 +City Hotel,0,3,2017,February,6,9,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,75.36,0,1,Check-Out,Michael Anderson,cmoreno@example.org,+1-948-490-9939x86596,3558081158473959,2025-05-09 +City Hotel,0,1,2017,March,10,10,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,41.54,0,1,Check-Out,Kelsey Williamson,marystephens@example.net,425.885.0093x3962,344877097120758,2024-05-30 +Resort Hotel,0,10,2017,August,34,20,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,C,C,1,No Deposit,253.0,179.0,0,Transient,215.82,0,0,Check-Out,Aaron Wise,floydveronica@example.com,(597)763-7613x27623,4707510250334915,2024-07-22 +Resort Hotel,0,121,2017,March,13,29,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,F,1,No Deposit,239.0,179.0,0,Transient,122.58,0,1,Check-Out,Cory Patel,nsantana@example.com,6629042813,676179673188,2026-02-15 +City Hotel,0,46,2017,June,25,20,2,2,3,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,9.0,179.0,0,Transient,252.0,0,1,Check-Out,Sherry Rivera,alvaradoalicia@example.org,001-900-689-7350,180078870624622,2024-04-13 +City Hotel,1,210,2017,June,23,4,2,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient,75.78,0,0,Canceled,Wayne Robinson,mosleyalexander@example.com,+1-943-262-9658x450,4317245736282859873,2026-03-22 +City Hotel,0,10,2017,November,44,3,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,45.34,0,1,Check-Out,James Escobar,nathaniel62@example.net,348-490-0426x0205,2248973165025269,2024-12-22 +City Hotel,1,93,2017,March,11,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,101.77,0,0,Canceled,Gregory Elliott,thompsonelizabeth@example.com,+1-972-219-5120x71358,4564640736851935,2025-12-30 +City Hotel,1,151,2017,April,17,20,0,4,2,1.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,135.81,0,0,Canceled,Heather Fernandez,charlesdiaz@example.net,001-392-682-6949x11124,30498364659706,2026-01-18 +City Hotel,1,44,2017,June,23,5,2,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,78.0,179.0,0,Transient,222.9,0,0,Canceled,Richard Zuniga,dmiddleton@example.org,692-872-8995x0943,4047033621407,2025-04-26 +City Hotel,0,15,2017,May,19,6,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,130.77,1,0,Check-Out,Leah Garcia,jacqueline29@example.com,001-909-220-2970x957,6560247042952834,2024-11-09 +Resort Hotel,0,21,2017,March,10,5,0,1,1,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,77.49,0,1,Check-Out,James Morse,daniel71@example.org,603.466.5812,3598087490903761,2025-12-31 +City Hotel,1,15,2017,February,6,3,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,95.41,0,0,Canceled,Hunter Sherman,christopher60@example.net,458.605.8943,6011372617642530,2024-05-06 +Resort Hotel,0,2,2017,June,23,5,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,14.0,179.0,0,Transient,54.63,0,3,Check-Out,Debbie Newman,reginamcgrath@example.com,2725075072,4651124521376832,2025-11-30 +Resort Hotel,0,6,2017,May,18,2,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,80.99,1,1,Check-Out,Mrs. Norma Henderson,christophergonzalez@example.net,+1-410-294-7552x8251,4162880362289895,2026-02-20 +City Hotel,1,16,2017,June,26,28,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,94.06,0,0,Canceled,Mr. Brent Powers,thompsonsara@example.org,9006026107,180008400224296,2025-12-24 +City Hotel,0,204,2017,May,22,27,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,20.0,179.0,0,Transient-Party,109.7,0,0,Check-Out,Patrick Farmer,malonemichael@example.org,765-697-8428,4418097426703892,2025-08-30 +Resort Hotel,0,237,2017,March,13,31,1,5,2,0.0,0,HB,GBR,Groups,Direct,0,0,0,A,A,0,Refundable,13.0,222.0,0,Transient-Party,84.26,0,0,Check-Out,Elizabeth Nelson,hancockchristy@example.net,9785520411,4750460435536,2025-07-15 +City Hotel,0,12,2017,February,7,13,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,28.0,179.0,0,Transient,81.1,0,0,Check-Out,Kayla Bell,weaverdavid@example.org,688.799.2858,3550997295033695,2025-11-12 +Resort Hotel,1,217,2017,March,12,19,2,5,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,110.62,0,1,Canceled,Edwin Russell,etaylor@example.net,(631)675-0148x3019,6011014607064008,2025-02-18 +City Hotel,1,49,2017,June,25,17,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,132.0,179.0,0,Transient,109.37,0,0,Canceled,Michael Jones,nicole03@example.org,(486)469-3805x767,4060436061319864,2025-10-09 +Resort Hotel,0,2,2017,November,47,19,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,65.0,0,Transient,57.43,1,2,Check-Out,Anna Smith,wilsonanne@example.com,(636)622-3210,370880187212987,2026-02-04 +City Hotel,0,41,2017,August,34,26,2,2,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,1,No Deposit,15.0,179.0,0,Transient,231.63,0,0,Check-Out,Steve Washington,gardnergary@example.com,744.278.7260x851,36058524418254,2024-11-23 +Resort Hotel,0,183,2017,May,19,5,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,48.67,0,0,Check-Out,Natasha Hall,brightcolton@example.org,+1-513-694-2378x0434,213115789496659,2025-02-23 +City Hotel,1,53,2017,June,25,18,0,1,2,0.0,0,BB,,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,164.49,0,1,Canceled,Madison Rogers,amanda00@example.net,3096522046,213167314744467,2024-08-06 +Resort Hotel,1,9,2017,June,25,15,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,242.0,179.0,0,Transient,135.64,0,1,Canceled,Eric Dodson,williamsbrittany@example.com,9189559268,3581569579546537,2025-11-13 +Resort Hotel,0,36,2017,October,43,22,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,238.0,179.0,0,Contract,54.07,0,2,Check-Out,Jeremy Grimes,barbarawatson@example.org,341-352-7219,30365974255656,2024-06-15 +City Hotel,1,24,2017,August,33,14,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,8.0,179.0,0,Transient,252.0,0,2,Canceled,Eric Sanchez,brian38@example.net,467-273-3565x3813,3599079952206592,2025-04-10 +City Hotel,0,42,2017,March,12,23,1,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,114.5,0,1,Check-Out,Michael Evans,stevenhunter@example.net,749.389.1210x872,180010542349536,2025-11-27 +City Hotel,0,1,2017,June,22,2,0,2,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,D,0,No Deposit,161.0,179.0,0,Transient,119.99,0,0,Check-Out,Tim Garcia,inicholson@example.com,(797)449-1695x766,180045285231947,2025-12-15 +City Hotel,0,58,2017,March,13,23,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,69.99,1,1,Check-Out,Justin Blevins,crawfordteresa@example.com,339.433.9552x6053,180048461633399,2025-01-22 +City Hotel,1,258,2017,June,26,26,2,4,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,0,Transient,108.44,0,0,Canceled,Wendy Wilkerson,amanda87@example.org,889.651.7659,6545844961676558,2025-12-23 +City Hotel,0,38,2017,July,28,12,2,10,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,76.0,179.0,75,Transient-Party,132.05,0,1,Check-Out,Matthew Collins,hurleyrachel@example.com,(501)402-5361,3503705710297136,2024-10-27 +Resort Hotel,0,1,2017,August,33,18,0,1,2,0.0,0,BB,ESP,Online TA,Direct,0,0,0,F,F,1,No Deposit,244.0,179.0,0,Transient,205.64,0,1,Check-Out,Donald Diaz,meghanlarsen@example.com,001-235-548-6920x180,213170954312066,2024-09-13 +Resort Hotel,0,108,2017,March,11,13,0,2,1,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,C,1,No Deposit,82.0,179.0,0,Transient,109.27,1,1,Check-Out,Christopher Smith,brianjones@example.net,905.731.7589x690,3514637882875141,2024-05-18 +City Hotel,0,13,2017,October,40,5,1,1,1,0.0,0,BB,FRA,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,186.0,0,Transient,111.4,0,0,Check-Out,Thomas Rice,davidberry@example.net,(276)667-2234x352,340032922543535,2025-07-13 +City Hotel,1,46,2017,May,22,27,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,86.34,0,0,Canceled,Shane Patterson,jmoore@example.net,7883380935,4146635631214922306,2025-05-20 +City Hotel,0,20,2017,January,4,24,0,2,1,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,98.01,1,3,Check-Out,James Ross,nyoung@example.org,(424)468-5776,3526636505300780,2025-02-05 +City Hotel,0,28,2017,March,11,12,2,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,157.0,179.0,0,Transient,50.37,0,0,Check-Out,Rhonda Mason,taylorbarbara@example.net,853.429.0374,4388895956495565,2026-03-15 +City Hotel,0,13,2017,November,45,8,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,149.7,0,2,Check-Out,Janet Clark,juliemitchell@example.org,001-867-329-9308x1162,2242986722842279,2025-05-08 +City Hotel,0,107,2017,May,18,3,1,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,111.35,0,2,Check-Out,Mrs. Diane Manning MD,sbrown@example.org,001-662-639-8499,374188030481684,2024-04-05 +City Hotel,0,0,2017,February,8,24,2,0,1,1.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,67.0,0,Transient,83.99,0,0,Check-Out,Cheryl Henson,pgallegos@example.net,843-742-6684,4175960744002606173,2025-11-09 +City Hotel,1,305,2017,July,27,5,2,5,2,0.0,0,BB,PRT,Groups,Undefined,0,1,0,B,B,0,Non Refund,12.0,179.0,0,Transient,95.52,0,0,Canceled,Mary Smith,teresariley@example.com,+1-927-531-9199,341231348397596,2024-12-07 +Resort Hotel,0,56,2017,September,37,15,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,223.0,0,Transient-Party,93.73,0,0,Check-Out,Theresa Hess,angela23@example.org,001-650-229-7723,3515270881881081,2025-03-29 +Resort Hotel,1,23,2017,November,45,9,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,186.0,179.0,0,Transient,48.96,0,0,Canceled,Eric Rodriguez,robinsonpatricia@example.net,(460)463-8628x4663,5258499135027268,2025-01-25 +City Hotel,1,259,2017,June,25,18,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,62.68,0,0,Canceled,Sonya Brown,randalllee@example.com,594-372-7400x7635,3568216756743605,2025-10-29 +City Hotel,0,267,2017,October,44,28,2,2,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,E,E,0,No Deposit,1.0,179.0,0,Transient-Party,101.8,0,1,Check-Out,Carla Terry,jessica38@example.org,372.519.5257x88641,4836705340412887920,2025-02-24 +Resort Hotel,1,236,2017,September,36,8,2,0,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Contract,49.7,0,1,Canceled,Marc Adams,brownricky@example.com,(593)340-7196,6581203129854612,2025-12-30 +Resort Hotel,1,151,2017,May,21,23,0,10,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,243.0,179.0,0,Transient,85.71,0,0,Canceled,Joshua Hall,michaelreyes@example.net,7072704069,4903252453929199,2025-09-15 +Resort Hotel,1,41,2017,December,51,21,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,0,Transient,44.54,0,1,No-Show,Michael Hughes,lynn64@example.org,001-356-465-6612x1270,4990048466580811,2024-06-22 +Resort Hotel,0,146,2017,August,31,3,0,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,G,0,No Deposit,245.0,179.0,0,Transient,134.62,0,0,Check-Out,Raymond Romero,justin64@example.net,(898)538-0282x3365,343163003052786,2026-03-17 +Resort Hotel,0,3,2017,December,49,8,2,3,3,0.0,0,BB,ESP,Direct,GDS,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,100.15,1,1,Check-Out,Casey Thomas,mtucker@example.net,669.886.8212,373322087896582,2024-12-14 +City Hotel,0,206,2017,September,36,6,0,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,252.0,0,1,Check-Out,Craig Jenkins,daniel27@example.com,(310)597-8128x604,30378370703039,2025-03-31 +City Hotel,0,157,2017,July,28,9,2,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,142.6,0,2,Check-Out,Sarah Sharp,jburke@example.net,785.779.9718,4294184385816364010,2026-01-29 +City Hotel,0,0,2017,February,6,9,1,2,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,44.51,0,1,Check-Out,Megan Byrd,harrisonbenjamin@example.org,357-675-5664x392,675915418403,2025-02-14 +City Hotel,0,100,2017,July,30,20,2,6,3,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,247.98,0,2,Check-Out,Travis Wright Jr.,elizabeththomas@example.com,397-579-6701x4407,30426805302925,2026-03-23 +Resort Hotel,0,18,2017,March,10,4,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,67.58,0,0,Check-Out,Leslie Baldwin,harperbrandon@example.net,271.631.7640x443,36393197838821,2024-06-11 +City Hotel,0,10,2017,November,47,23,2,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,103.5,0,1,Check-Out,Marie Wright,smithgregory@example.com,435-290-2702x35308,3508723909329219,2026-02-28 +City Hotel,0,6,2017,May,20,15,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,0,A,K,0,No Deposit,185.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Travis House,kbrown@example.net,001-927-277-1401x730,2345155668213319,2025-03-21 +Resort Hotel,1,148,2017,August,32,5,3,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,F,E,0,No Deposit,249.0,179.0,0,Transient,163.79,0,0,No-Show,Jamie Mendez,tylerpark@example.com,(769)527-2535x278,3512983519503819,2025-10-31 +City Hotel,0,0,2017,February,6,8,1,1,1,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,106.11,0,0,Check-Out,Alejandro Foster,shawtimothy@example.org,840-806-3382x62073,3516699749762241,2025-04-15 +City Hotel,0,8,2017,February,9,28,0,4,1,0.0,0,BB,,Groups,Corporate,0,1,0,A,C,2,No Deposit,34.0,179.0,0,Transient-Party,47.83,0,0,Check-Out,Brittany West,kimberlycortez@example.com,+1-886-940-8317x5236,5501251922997616,2025-07-22 +City Hotel,1,108,2017,March,10,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,3.0,179.0,0,Transient,90.32,0,0,Canceled,Alyssa Richardson,thomasburgess@example.com,+1-298-269-0070x0368,4707548924485,2024-06-14 +Resort Hotel,0,34,2017,August,33,15,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,78.35,1,0,Check-Out,Lisa Wade,amanda86@example.com,2617191380,180061300097767,2025-08-29 +City Hotel,0,1,2017,July,29,22,1,2,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Contract,124.38,0,0,Check-Out,Bradley Chase,mfranklin@example.org,001-966-420-8345x9174,3570057003797390,2025-09-29 +City Hotel,0,2,2017,March,12,23,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,101.5,0,2,Check-Out,Kevin Gonzalez,vgarcia@example.org,356-838-9326x794,4612959348739,2024-12-11 +City Hotel,0,144,2017,June,23,5,1,2,2,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,119.89,0,2,Check-Out,Lori Boyd,thompsonjenny@example.net,809.670.7468,3591216283563261,2024-05-16 +City Hotel,1,156,2017,August,35,31,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,Non Refund,31.0,179.0,0,Transient,131.72,0,0,Canceled,Brooke Morgan,desireestephens@example.com,899.449.3873x842,348467062966447,2025-01-16 +City Hotel,0,2,2017,August,32,10,1,2,3,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient,82.72,0,1,Check-Out,Cathy Hancock,jacktrujillo@example.com,600.778.5637x0364,348944443672324,2024-10-01 +Resort Hotel,0,92,2017,March,14,30,2,7,2,0.0,0,BB,IRL,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,51.94,1,0,Check-Out,Kyle Nelson,brooksmarisa@example.com,(760)264-2477x664,502032595980,2024-11-22 +City Hotel,0,22,2017,May,19,4,1,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,123.25,0,3,Check-Out,Elijah Phillips,kristinjones@example.net,+1-850-323-9239x7190,36555402455530,2025-06-12 +City Hotel,0,19,2017,August,32,6,2,1,2,2.0,0,BB,DEU,Online TA,Direct,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient,136.98,0,1,Check-Out,Derek Roberts,pvelasquez@example.com,+1-382-767-5482x8510,4293866226329284,2025-05-18 +Resort Hotel,1,213,2017,October,43,24,0,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,103.0,179.0,0,Transient,91.38,0,0,Check-Out,Jennifer Brooks,sophia46@example.com,+1-287-975-9431x47700,4803853045692434240,2025-04-05 +City Hotel,1,414,2017,August,33,15,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,60.49,0,0,Canceled,Seth Brown,oconnelljasmine@example.com,001-726-291-8717x8077,180006592268741,2024-05-16 +City Hotel,0,12,2017,August,33,15,0,1,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,B,1,No Deposit,12.0,179.0,0,Transient,64.77,0,0,Check-Out,David Johns,debra15@example.net,426-838-7812x505,4732691585271359,2025-05-06 +Resort Hotel,0,148,2017,July,27,1,0,7,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,2,No Deposit,242.0,179.0,0,Transient,138.78,0,2,Check-Out,Christopher Ford,william93@example.org,312.859.9897x1361,4048515523509,2025-11-21 +Resort Hotel,1,175,2017,August,32,4,3,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,F,D,1,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Canceled,James Norris,briana97@example.com,405-641-7620,375873817545277,2024-04-20 +City Hotel,0,29,2017,July,29,22,2,5,2,0.0,0,HB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,159.33,0,3,Check-Out,Heather Higgins,chelsea45@example.com,647-638-7937x800,503804173295,2025-12-29 +Resort Hotel,0,16,2017,December,51,23,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,247.0,70.0,0,Transient,54.12,1,1,Check-Out,Daniel Warner,zcampbell@example.org,+1-941-764-0110x0963,4085457997584893,2024-06-23 +City Hotel,1,249,2017,April,15,7,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,85.69,0,0,Canceled,Christine Campbell,williampeterson@example.com,6978950450,3579096275697509,2024-10-12 +Resort Hotel,0,9,2017,March,13,25,1,2,3,1.0,0,HB,DEU,Online TA,TA/TO,1,0,1,E,I,1,No Deposit,242.0,179.0,75,Transient-Party,104.56,1,1,Check-Out,Ricky Morrison,christopheranderson@example.org,596.262.5653x6361,2237817359127428,2025-03-02 +Resort Hotel,1,134,2017,July,28,11,4,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,239.0,179.0,0,Transient,249.27,1,1,No-Show,John Olson,zryan@example.net,663-856-4311x78381,180060089322461,2025-09-10 +City Hotel,0,47,2017,April,18,27,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,116.84,0,1,Check-Out,Elizabeth Mcgee,patricia65@example.net,(258)812-9025x18992,3502612127923687,2025-08-01 +City Hotel,0,0,2017,March,10,7,0,3,1,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,B,1,No Deposit,14.0,179.0,0,Transient,88.71,0,1,No-Show,Caroline Hicks,khernandez@example.com,+1-643-893-9710,6582447190126736,2025-09-11 +Resort Hotel,0,2,2017,February,7,12,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,49.01,1,0,Check-Out,Andrea Bradford,dunnchristine@example.org,+1-496-789-4699,060454431572,2024-08-10 +City Hotel,1,414,2017,August,33,16,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,25.0,179.0,0,Transient,128.17,0,0,Canceled,Margaret Townsend,xtyler@example.com,(389)419-5156x59695,4520764727828844,2025-05-14 +Resort Hotel,0,271,2017,May,21,23,4,2,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,252.0,179.0,0,Transient,126.85,0,1,Canceled,Ashley Webster,truiz@example.com,+1-265-853-0996x29863,675993906469,2025-03-06 +Resort Hotel,1,251,2017,June,24,10,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,241.0,179.0,0,Transient,61.56,0,2,Canceled,Jessica Garcia,brendagarcia@example.com,001-790-598-9074x273,213184245800581,2024-12-03 +City Hotel,0,137,2017,June,25,18,0,4,2,0.0,0,HB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Miguel Salazar,grossmadison@example.com,001-414-743-8781,3574573458772296,2025-09-15 +City Hotel,0,0,2017,May,20,12,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,2.74,1,0,Check-Out,Julia Lynch,zwarner@example.org,+1-245-657-9692x7995,30081447448220,2026-03-27 +Resort Hotel,0,0,2017,May,21,19,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,143.01,1,2,Check-Out,Donna Ewing,johnthornton@example.org,6545639049,5104187855351507,2026-02-13 +City Hotel,1,15,2017,March,10,6,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,87.45,0,1,Canceled,Angel Collins,qsimpson@example.net,539-863-7071,4311893896396,2026-03-02 +Resort Hotel,0,44,2017,March,12,17,1,5,2,0.0,0,HB,GBR,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,42.85,0,0,Check-Out,Jennifer Arnold,christine82@example.com,3183257987,4387632537907886752,2025-07-03 +City Hotel,0,2,2017,August,32,4,1,4,3,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.73,0,2,Check-Out,Jimmy Morales,leonardjoseph@example.org,(923)248-1307x53472,4217680198013,2025-11-03 +City Hotel,1,101,2017,June,27,30,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,40,Transient,105.57,0,0,Canceled,Adam Durham,brianross@example.com,363.831.4993,340696138661305,2025-06-30 +Resort Hotel,1,120,2017,December,51,18,0,2,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,241.0,179.0,0,Transient,112.85,0,0,Canceled,Kaitlyn Rollins,jacob73@example.org,(692)975-6655x23543,3581103423729238,2026-02-15 +City Hotel,0,1,2017,March,10,5,0,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,196.78,0,1,Check-Out,Rick Zuniga,sdavis@example.com,5428250540,4128086231219,2025-05-20 +Resort Hotel,0,141,2017,March,12,20,1,3,2,0.0,0,BB,NLD,Groups,Direct,0,0,0,H,C,0,Refundable,16.0,222.0,0,Transient,120.57,0,0,Check-Out,Deborah Jones,kaitlingarcia@example.com,(903)659-1034,3580919759929642,2024-08-17 +City Hotel,0,153,2017,August,34,22,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,A,1,No Deposit,28.0,179.0,75,Transient-Party,65.38,0,1,Check-Out,Christopher Stevens,williamsdaniel@example.com,839-860-1282x56939,371667876737435,2024-09-27 +City Hotel,0,55,2017,October,40,1,0,2,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,B,0,No Deposit,13.0,61.0,0,Transient,123.37,0,2,Check-Out,Jasmine Moon,gregggrimes@example.org,001-605-725-8797,3598506537218636,2025-10-22 +City Hotel,0,1,2017,December,49,5,1,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,45.0,0,Transient,3.6,0,2,Check-Out,Lori Sherman,susanjohnson@example.com,+1-927-242-4041x46465,630477368033,2025-12-26 +City Hotel,0,197,2017,August,33,12,2,5,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,F,F,1,No Deposit,12.0,179.0,0,Transient,236.95,0,3,Check-Out,Kimberly Barnes,parnold@example.com,367.219.9185,4020208279493826,2024-06-17 +City Hotel,1,8,2017,July,29,19,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,99.58,0,0,Canceled,Timothy Johnson,ogill@example.net,373.747.7015,639069005721,2025-07-14 +City Hotel,0,31,2017,November,47,21,1,1,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,87.52,0,0,Check-Out,Henry Anderson,lindsay65@example.org,215-479-1357,4188150030107477,2024-04-10 +Resort Hotel,1,57,2017,February,6,3,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,188.0,179.0,0,Transient,31.46,0,0,Canceled,John Fisher,stacey85@example.com,207-616-4402x9981,4618944424109911,2025-07-02 +Resort Hotel,1,12,2017,September,37,14,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,235.0,179.0,0,Transient-Party,96.56,0,0,Canceled,Julie Webb,mmitchell@example.net,394.638.1139x913,3566293174388836,2025-12-01 +Resort Hotel,1,1,2017,July,27,6,1,0,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,111.39,0,1,No-Show,Tracy Bennett,yvonneevans@example.com,928.577.0517x7168,3553838847397419,2026-02-19 +City Hotel,0,3,2017,August,34,23,0,1,3,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,133.93,0,1,Check-Out,Alan Mcgee,bvasquez@example.org,619.518.4172x6621,4620473125517,2025-04-22 +Resort Hotel,1,14,2017,July,31,29,0,2,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,252.0,1,0,Canceled,Cheryl Martinez,jenniferortiz@example.com,903-800-3725x2042,630483801001,2024-06-11 +Resort Hotel,0,1,2017,January,3,17,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,55.08,0,2,Check-Out,Jennifer Tate DDS,marquezrichard@example.com,2618169889,4926251951960,2024-09-23 +Resort Hotel,1,31,2017,January,2,3,2,5,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,D,D,0,No Deposit,364.0500000000011,179.0,0,Transient,50.97,0,0,Canceled,Robert Fernandez,stephen26@example.net,5576593833,213117415015903,2024-11-28 +City Hotel,1,414,2017,April,18,29,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,120.31,0,0,Canceled,James Taylor,amandarussell@example.org,+1-405-330-8118x070,180055373402417,2024-12-04 +City Hotel,1,157,2017,June,24,14,0,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,114.97,0,0,Canceled,Edward Perez,matthew85@example.net,(265)677-9634,2290799557481076,2024-12-11 +City Hotel,1,169,2017,May,21,19,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,121.08,0,2,Canceled,Andrea Chapman,ehenderson@example.org,259-472-2661x6126,630484978287,2024-10-18 +Resort Hotel,0,43,2017,April,14,5,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,312.0,179.0,0,Group,96.44,0,2,Check-Out,Ian Marsh,laura89@example.com,001-698-469-1771x945,4372989686538188,2025-04-02 +City Hotel,1,1,2017,January,5,28,1,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.14,0,0,Canceled,Colleen Arnold,rduke@example.org,702-284-7405x422,379781362892968,2024-07-28 +City Hotel,0,10,2017,June,26,29,0,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,G,0,No Deposit,11.0,179.0,0,Transient,204.74,0,1,Check-Out,Tanya Taylor,markpeters@example.net,001-362-431-6608,4687696849086944,2025-02-25 +City Hotel,0,122,2017,April,17,24,1,1,2,1.0,0,BB,,Direct,Direct,0,0,0,D,E,1,No Deposit,15.0,179.0,0,Transient-Party,169.77,0,0,Check-Out,Amber Atkinson,joselang@example.net,834.697.9510x798,379413639924008,2026-01-03 +City Hotel,0,90,2017,April,16,21,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,E,2,No Deposit,10.0,179.0,0,Transient,90.14,0,2,Check-Out,Ronald Mccormick,tracyjohnston@example.net,669-521-6155x051,4931087571141052132,2024-09-13 +Resort Hotel,0,9,2017,December,49,6,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,43.11,0,0,Check-Out,Tiffany Oconnor,fredericksmith@example.net,381.691.1030,585734747173,2025-02-28 +Resort Hotel,0,399,2017,January,2,4,1,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient-Party,42.46,0,0,Check-Out,Pamela Smith,clarkthomas@example.com,204-781-8095x876,6011014335304460,2025-05-24 +City Hotel,0,114,2017,June,22,2,1,1,2,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,133.89,0,0,Check-Out,Amanda Stewart,michael84@example.com,712.732.1219,180018126670680,2026-03-09 +City Hotel,0,6,2017,May,20,18,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Contract,114.76,0,1,Check-Out,Dean Riley,perrydiane@example.net,995.887.1910,4906597096521010,2024-06-06 +City Hotel,0,1,2017,January,3,17,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,90.38,0,1,Check-Out,Kathy Rogers,gheath@example.org,4758733029,341033592514771,2025-09-08 +City Hotel,0,38,2017,March,13,30,2,2,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,95.73,0,1,Check-Out,Kayla Martin,xjackson@example.org,+1-315-763-5847x18676,2453483306151438,2025-11-30 +Resort Hotel,0,1,2017,December,49,7,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,E,E,0,No Deposit,36.0,179.0,0,Transient,52.5,0,0,Check-Out,Samantha Brown,powellbrittney@example.com,697.591.8912,3566524282428142,2025-10-13 +City Hotel,0,41,2017,October,43,23,2,2,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,85.0,179.0,0,Transient-Party,99.25,0,0,Check-Out,Jason Curry,hillcory@example.net,3607975804,4661419344620905,2025-07-26 +City Hotel,0,14,2017,March,10,5,2,3,2,0.0,0,BB,FRA,Online TA,TA/TO,1,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient-Party,82.98,0,1,Check-Out,Matthew Williams,martin30@example.com,949.364.2908,4930712935372,2026-03-07 +Resort Hotel,0,47,2017,August,32,6,0,5,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,202.29,0,3,Check-Out,Lisa Bentley,sararobinson@example.net,001-401-768-7521x7521,4040732236347565,2025-01-02 +City Hotel,0,28,2017,April,18,27,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,98.47,0,0,Check-Out,Shawn Davis,livingstonmatthew@example.net,205.226.5365x446,4735110245582107384,2025-12-08 +City Hotel,0,118,2017,April,18,30,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,13.0,179.0,0,Transient,85.91,0,0,Check-Out,Lisa Barr,stephaniemartin@example.com,817-478-4646x648,4846428050737785,2025-05-20 +Resort Hotel,1,13,2017,May,19,10,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient,50.3,0,1,Canceled,Shannon Lawrence,bmartin@example.com,2613467483,4447339292121741,2025-05-22 +City Hotel,1,4,2017,September,36,5,1,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,204.83,0,0,Canceled,Samantha Olson,hoganchristopher@example.net,798-620-8202x08660,30571687215131,2025-05-26 +City Hotel,0,257,2017,September,37,14,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,0,Transient-Party,63.36,0,0,Check-Out,Preston Conway,douglasdeborah@example.org,579.628.8850,30295058165952,2025-03-31 +City Hotel,1,152,2017,May,19,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient,82.53,0,0,Canceled,David Brady,jesse68@example.net,+1-465-906-5824,2231771853509480,2024-12-20 +Resort Hotel,0,1,2017,March,10,7,2,5,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,E,E,2,No Deposit,328.0,179.0,0,Transient,2.47,1,2,Check-Out,Tracy Pratt,steelerebecca@example.org,631.353.1858,374499875108914,2025-08-29 +Resort Hotel,0,12,2017,April,15,9,0,1,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,143.0,179.0,0,Transient,38.14,0,0,Check-Out,Andrea Allen,rcastaneda@example.org,485-208-7488,6527687612703137,2024-12-07 +Resort Hotel,0,10,2017,August,34,24,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,1,No Deposit,240.0,179.0,0,Transient,53.98,1,1,Check-Out,Travis Price,davisrebecca@example.net,001-459-694-4275,5386027077239578,2025-05-31 +City Hotel,0,36,2017,December,49,3,1,2,2,1.0,0,BB,,Online TA,Direct,0,0,0,B,B,1,No Deposit,11.0,179.0,0,Transient-Party,79.24,0,1,Check-Out,Patricia Mitchell,robinsmith@example.org,629-491-6738,213151917296588,2024-11-03 +Resort Hotel,0,333,2017,July,27,5,0,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,309.0,179.0,0,Transient-Party,96.2,0,0,Check-Out,John Campbell,sreyes@example.com,+1-261-930-0657x4331,639067004106,2026-02-27 +Resort Hotel,0,12,2017,April,14,4,1,1,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,E,2,No Deposit,14.0,222.0,0,Transient,64.3,0,0,Check-Out,Edward Thomas,barryjones@example.com,223-863-9832x206,501882463422,2026-03-03 +City Hotel,0,385,2017,August,33,11,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.93,0,1,Check-Out,Julie Burgess,qsmith@example.com,248.549.9149x1775,4311940762366204,2024-07-01 +Resort Hotel,1,46,2017,August,35,30,0,3,3,1.0,0,FB,PRT,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Glenn Foster,harmstrong@example.com,934-220-5812x200,630495238697,2024-11-27 +Resort Hotel,0,137,2017,March,13,31,1,2,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,1,Refundable,13.0,179.0,0,Transient-Party,62.2,0,0,Check-Out,Sharon Rodriguez,allenvirginia@example.com,873.721.2725x0623,6011455265663286,2025-12-15 +City Hotel,0,1,2017,August,31,4,1,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,0,1,Check-Out,Gregory Hart,samantha20@example.net,001-440-422-5695,3520366923036750,2024-07-26 +City Hotel,0,3,2017,October,41,10,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,179.52,0,3,Check-Out,Jason Smith,allenkristine@example.com,(468)785-2225x692,3524710834957784,2026-01-18 +City Hotel,0,4,2017,August,32,6,1,1,1,0.0,0,BB,PRT,Online TA,GDS,0,0,0,A,A,0,No Deposit,155.0,179.0,0,Transient-Party,225.22,0,0,Check-Out,Elizabeth Brown,haroldnewton@example.net,001-781-745-2908,6011993460519838,2025-11-21 +City Hotel,0,260,2017,August,31,2,0,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,E,0,No Deposit,33.0,179.0,0,Transient,116.77,0,0,Check-Out,Johnny Patterson,ilopez@example.com,449.626.9443x3645,180097358593943,2025-09-25 +Resort Hotel,0,54,2017,January,2,9,4,7,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,137.84,1,2,Check-Out,Raymond Stanton,johnsoncory@example.com,540-331-5342x979,577929499991,2026-01-01 +City Hotel,1,21,2017,November,44,2,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,E,D,2,No Deposit,9.0,179.0,0,Transient,100.99,0,1,Canceled,Joshua Lowe,rickybarr@example.net,350-643-6819x20532,4970226366973948,2024-12-11 +Resort Hotel,0,0,2017,March,10,7,1,1,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,83.53,0,0,Check-Out,Sarah Glenn,kingjeffrey@example.net,621-213-6040,3527298913056113,2024-11-18 +City Hotel,1,2,2017,July,29,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.14,0,0,Canceled,Mark Perez,sullivanteresa@example.org,+1-800-833-7201x600,3519121248373500,2025-07-18 +City Hotel,1,33,2017,October,40,3,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,77.8,0,0,Canceled,Thomas Ball,michaelgregory@example.com,(696)598-7766x73951,30246179503811,2024-11-17 +City Hotel,0,50,2017,September,36,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,83.0,179.0,0,Transient,236.79,0,0,Check-Out,Kyle Cross,shahadam@example.com,(879)273-4872x90153,3509874505384311,2026-02-08 +Resort Hotel,1,44,2017,May,20,13,0,4,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,F,E,0,No Deposit,241.0,179.0,0,Transient,89.54,0,1,Canceled,Theresa Orr,brandy73@example.com,001-980-971-2454,3586062633170242,2024-09-16 +City Hotel,0,35,2017,October,41,12,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,89.81,0,1,Check-Out,Brian Matthews,barreramichael@example.com,6162892148,6511067422456770,2025-06-19 +City Hotel,1,5,2017,January,2,11,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,48.45,0,1,Canceled,Lori Oneill,smithamanda@example.net,+1-885-422-9573,563264368504,2024-07-05 +City Hotel,0,47,2017,April,17,28,1,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,93.19,0,0,Check-Out,Ryan Pope,robertjohnson@example.net,276-833-6191,3569037918055210,2025-05-17 +Resort Hotel,0,250,2017,October,44,28,2,5,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,305.0,179.0,0,Transient,39.46,0,1,Check-Out,Ashley Carter,nrollins@example.org,+1-679-878-7869x9908,213106430684892,2025-05-04 +City Hotel,0,0,2017,December,52,30,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,115.08,0,1,Check-Out,James Peters,jaimeconner@example.net,001-520-823-1604x58134,4989549170793106,2025-09-18 +Resort Hotel,0,2,2017,November,45,6,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Kimberly Adams,davidtorres@example.org,352.859.0289,3515163782370371,2025-10-24 +City Hotel,0,16,2017,July,30,24,0,1,3,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,252.0,0,0,Check-Out,Jessica Phillips,melissa27@example.com,384.485.8589x0754,4470642641828474300,2024-12-26 +City Hotel,0,3,2017,January,3,19,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,79.0,179.0,0,Transient-Party,39.61,0,0,Check-Out,Darrell Grant,wilsontracy@example.org,001-353-595-8273x2359,4362421056710785,2025-05-01 +Resort Hotel,0,46,2017,August,33,13,2,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,222.94,0,3,Check-Out,Sonya Hill,jonathanferguson@example.com,(555)391-7789,2720656886225733,2025-05-23 +Resort Hotel,0,18,2017,January,3,14,1,2,2,1.0,0,BB,GBR,Groups,TA/TO,0,0,0,C,C,1,No Deposit,12.0,179.0,0,Transient,122.88,1,1,Check-Out,Jacqueline Macdonald,kristinmedina@example.com,755-835-9773x19988,4325333787338,2025-10-11 +City Hotel,0,45,2017,April,14,4,1,3,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,136.4,1,1,Check-Out,Gregory Doyle,erik97@example.org,+1-580-796-2516x500,4318923739237600365,2025-04-01 +City Hotel,0,51,2017,November,45,10,1,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,79.17,0,2,Canceled,Rebecca Gibson,hardinglindsay@example.org,(685)250-3464x6471,4349407157252841,2024-10-14 +Resort Hotel,0,21,2017,January,4,20,0,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,170.0,179.0,0,Transient,80.29,0,1,Canceled,Ana Schultz,sean43@example.net,8197668818,676156527357,2025-02-14 +Resort Hotel,1,309,2017,August,32,7,2,5,1,0.0,0,BB,PRT,Direct,Corporate,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,52.35,0,1,No-Show,Laura Larson,keithrodriguez@example.org,730-364-3725,373780798186298,2024-10-08 +City Hotel,1,361,2017,October,40,3,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,79.0,179.0,0,Transient,79.23,0,0,Canceled,Carlos Miller,huertamichael@example.com,877-336-7108x9335,4110933824064076,2024-08-26 +City Hotel,0,164,2017,August,32,8,2,5,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,143.75,0,2,Check-Out,Angela Banks,elizabethsimon@example.org,653.359.4706,3594959335587021,2025-11-02 +Resort Hotel,1,224,2017,September,36,9,2,5,3,0.0,0,FB,USA,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,171.0,179.0,0,Transient,159.79,0,0,Canceled,Richard Perez,vgaines@example.net,(895)415-4720,3569614804158603,2025-01-08 +City Hotel,0,3,2017,September,35,1,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,B,1,No Deposit,14.0,179.0,0,Transient,179.85,0,1,Check-Out,John Maynard,jessewhite@example.org,996.743.5952x036,4660471458213,2025-08-04 +Resort Hotel,0,2,2017,October,40,1,1,4,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,250.62,1,2,Check-Out,Steven Long,warren10@example.com,001-484-940-4502x5812,4308835934681,2025-02-03 +City Hotel,0,47,2017,October,41,9,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,90.65,0,1,Check-Out,Lisa Osborne,vrowland@example.net,001-426-587-6333,3556605419939473,2025-03-20 +City Hotel,1,134,2017,April,16,20,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,110.04,0,0,Canceled,Dr. Rodney Hayes MD,skelly@example.org,418-975-5927x39111,060472491459,2024-10-31 +City Hotel,1,36,2017,November,47,20,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.65,0,1,No-Show,Janet Aguilar,chelseawolf@example.com,(434)211-2033x579,2229905332786301,2025-12-08 +City Hotel,0,375,2017,November,46,12,0,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient-Party,103.79,0,0,Check-Out,William Porter,anthony19@example.com,467-559-5391x61907,346046328947813,2025-01-15 +City Hotel,0,3,2017,March,11,15,0,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,D,D,0,No Deposit,14.0,179.0,0,Transient,58.86,0,2,Check-Out,Sarah Craig,smithgregory@example.org,496-981-3745x6314,213169304745512,2024-04-30 +Resort Hotel,0,46,2017,March,10,8,0,1,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,242.0,179.0,0,Transient,252.0,1,0,Check-Out,Dr. Derek Carpenter,ucoleman@example.com,001-279-235-6443x41042,3502591332769228,2025-10-27 +City Hotel,0,0,2017,January,4,22,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,44.02,0,1,Check-Out,Mark Stein,justin93@example.org,+1-650-619-0478x3221,676205709659,2025-12-02 +Resort Hotel,1,42,2017,May,22,27,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,76.97,0,2,Check-Out,Patricia Massey,nathan56@example.net,+1-925-360-5203x86183,213149492585805,2024-07-25 +Resort Hotel,1,90,2017,July,29,18,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,88.95,0,1,Canceled,Robert Stewart,jchristensen@example.com,456.923.1386,213163179560361,2025-06-21 +City Hotel,0,0,2017,January,2,9,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,7.0,179.0,0,Transient,94.78,0,2,Check-Out,Samantha Campbell,robert11@example.net,442.743.9956x8396,36022956172391,2025-09-23 +Resort Hotel,1,39,2017,December,51,23,0,2,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,242.0,179.0,0,Transient,103.34,0,0,Canceled,Jason Hernandez,virginiasanchez@example.org,967-646-3484,6011863698491300,2025-10-02 +City Hotel,1,203,2017,April,16,17,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,79.0,179.0,0,Transient,104.74,0,1,Canceled,Brian Reyes,nferrell@example.org,816-502-3300x0114,4243880651660400372,2024-06-11 +City Hotel,1,167,2017,August,33,12,1,2,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,107.09,0,0,Canceled,Catherine Mendez,timothy02@example.net,824.575.7005,2613901321789319,2025-09-16 +Resort Hotel,0,0,2017,May,20,16,3,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,1,No Deposit,16.0,179.0,75,Transient,142.66,0,0,Check-Out,Jennifer Castillo,clarkbrittany@example.com,5143449827,4343115718525458,2025-09-09 +Resort Hotel,1,91,2017,May,20,16,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,242.0,179.0,0,Transient,124.29,0,0,Canceled,Jordan Branch,kathrynwilliams@example.net,+1-962-441-7574x4127,4535679702777621238,2025-01-10 +Resort Hotel,1,31,2017,August,33,13,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,243.0,179.0,0,Transient,201.88,1,1,Canceled,Sandra Allen,eflowers@example.org,+1-927-372-9171x933,4324965773692708402,2025-05-01 +City Hotel,1,144,2017,July,27,5,2,4,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,241.0,179.0,0,Transient,223.98,0,1,Canceled,Robert Gray,jessicafrench@example.org,808-810-6757x290,3512963355740204,2025-11-04 +City Hotel,0,1,2017,October,44,31,1,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,77.82,0,0,Check-Out,Johnathan Brown,garzamelvin@example.net,456-662-7487x6809,180082287825970,2024-09-18 +City Hotel,1,150,2017,May,22,29,0,1,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,137.98,0,0,Canceled,Jose Torres,wilcoxbonnie@example.net,581.859.0001,4424339264398665382,2025-06-13 +Resort Hotel,0,1,2017,August,33,17,0,2,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,E,E,2,No Deposit,17.0,179.0,0,Transient,63.76,0,0,Check-Out,Jonathan Jones,charlesbaker@example.org,5762577257,4783651478924,2025-06-09 +City Hotel,1,70,2017,December,52,28,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,94.02,0,0,Canceled,Angel Jordan,benjaminchung@example.com,(376)384-3739,341428647648022,2025-12-12 +City Hotel,1,41,2017,November,47,24,1,4,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.81,0,1,Canceled,Lisa Moore,hgraves@example.org,786.229.4729x2561,4482910639531721,2025-03-10 +City Hotel,1,8,2017,November,44,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,51.6,0,0,Canceled,William Hanna,jennifer87@example.org,455.803.9724x88025,30217122278173,2025-01-31 +City Hotel,1,21,2017,April,15,8,1,1,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.91,1,2,Check-Out,Margaret Ramsey,tiffany37@example.net,(701)402-8494,3501742138492165,2025-02-24 +Resort Hotel,0,6,2017,October,40,4,1,0,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,319.0,179.0,0,Transient-Party,45.61,0,0,Check-Out,Walter Jones,georgebaird@example.net,572-565-7857x161,4814808107122149,2024-12-29 +Resort Hotel,1,94,2017,February,7,16,2,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,298.0,179.0,0,Transient,42.09,0,0,Canceled,Theresa Lewis,hlewis@example.com,859.342.1093x647,4876719298639879494,2024-12-16 +Resort Hotel,0,30,2017,May,20,12,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,40.6,1,1,Check-Out,Laurie Mack,austinolsen@example.org,2448521508,2288830265342476,2025-02-25 +City Hotel,1,0,2017,November,45,4,0,1,1,0.0,0,SC,,Complementary,Direct,0,0,0,P,P,0,No Deposit,19.0,261.0,0,Transient,3.78,0,0,No-Show,Eileen Johns,asmith@example.net,(710)960-0072x457,6011054760214826,2024-06-13 +City Hotel,1,62,2017,September,36,5,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,118.0,0,3,Canceled,James Freeman,dillonbrady@example.com,331.955.2470,30405500968107,2024-08-04 +City Hotel,0,16,2017,September,36,4,0,3,1,0.0,0,SC,USA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,82.66,0,0,Check-Out,Andrew Reynolds,melanieharris@example.org,968-549-4167,5452161785721525,2025-02-11 +City Hotel,1,18,2017,October,42,15,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,116.42,0,0,Canceled,Jennifer Mcintyre,ericcastro@example.org,+1-744-440-4423x47897,4372214426747688,2025-11-09 +City Hotel,0,252,2017,August,33,14,2,5,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,90.16,0,1,Check-Out,Summer Williams,sarahcortez@example.org,702.438.4565x943,4780720552652571,2024-10-09 +City Hotel,0,196,2017,April,15,12,1,3,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,157.0,179.0,0,Transient-Party,100.83,0,0,Check-Out,James Neal,qpeterson@example.com,(692)923-9000,4309711716639932872,2025-10-19 +Resort Hotel,0,51,2017,September,35,2,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,241.0,179.0,0,Transient,173.2,0,1,Check-Out,Jennifer Huffman,garyrobinson@example.org,001-919-793-4246x60206,589308958216,2024-05-17 +City Hotel,0,2,2017,August,34,22,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,16.0,179.0,0,Transient,111.83,1,0,Check-Out,Clarence Hernandez,webbdevin@example.com,001-639-328-7382x5499,4739276658621,2025-05-15 +City Hotel,1,166,2017,April,17,25,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,106.68,0,1,No-Show,Patrick Williams,gscott@example.org,433-463-5428,4787718542020027,2025-09-25 +Resort Hotel,1,208,2017,June,25,15,0,6,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,238.0,179.0,0,Transient,223.55,0,0,Canceled,Tammy Reed,cgordon@example.org,270-372-4099x68954,378721510612562,2026-01-19 +City Hotel,1,414,2017,September,37,14,2,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,61.39,0,0,Canceled,Stephanie Lucas,ufuller@example.net,+1-504-657-6618,4603810612283249471,2025-02-23 +City Hotel,0,14,2017,January,2,5,2,2,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,30.0,179.0,0,Transient-Party,69.46,0,0,Check-Out,Brian Nelson,samuelwilson@example.com,7738634094,3598632087938538,2025-10-08 +City Hotel,0,79,2017,December,52,24,1,2,2,0.0,0,BB,SWE,Groups,TA/TO,0,0,0,A,E,0,No Deposit,23.0,179.0,0,Transient-Party,62.62,0,0,Check-Out,Angela Barrett,annwood@example.net,+1-397-444-7411x698,4026958110487999,2025-06-09 +City Hotel,1,308,2017,July,27,5,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient-Party,129.85,0,0,Canceled,Thomas Dougherty,mcconnelltyrone@example.org,263.954.0467x1842,4314563585927999,2024-08-06 +City Hotel,1,57,2017,November,46,13,2,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,76.84,0,2,Canceled,James Quinn,renee10@example.org,+1-977-414-4257x812,4236969285405811,2025-03-01 +City Hotel,0,0,2017,December,50,14,2,2,2,0.0,0,BB,PRT,Offline TA/TO,GDS,0,0,0,E,E,0,No Deposit,174.0,179.0,66,Transient,85.35,0,0,Check-Out,Sarah Thompson,clarkmatthew@example.org,(583)730-0070x04586,3514994912927909,2026-02-14 +City Hotel,1,260,2017,August,35,26,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,236.34,0,0,Canceled,Alyssa Davenport,lramirez@example.com,831-935-9902x974,4575110935840060,2025-08-19 +City Hotel,0,44,2017,February,6,6,2,3,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,97.43,0,0,Check-Out,Joseph Kennedy,wendyayers@example.com,229-263-1382,3544556754426094,2025-11-23 +City Hotel,0,28,2017,June,23,4,0,2,2,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,C,1,No Deposit,239.0,179.0,0,Transient,134.73,0,3,Check-Out,Tina Lara,ghorn@example.com,+1-246-985-3163x410,4468713872316968,2024-06-06 +Resort Hotel,1,37,2017,March,12,22,2,2,1,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,D,0,Non Refund,303.0,179.0,0,Transient,43.78,0,0,Canceled,Kristin Lloyd,alewis@example.net,570-710-6016x1816,379493859418113,2024-04-16 +City Hotel,0,17,2017,February,6,8,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,81.68,1,2,Check-Out,Brenda Miller,jbarber@example.com,611.636.0893x31613,582680850747,2024-10-28 +City Hotel,0,6,2017,April,17,26,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,108.16,0,1,Check-Out,Brian Young,oliverheather@example.org,765-413-5616,6011857825387431,2025-05-06 +City Hotel,0,91,2017,December,51,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,0,No Deposit,36.0,179.0,0,Transient-Party,108.61,1,0,Check-Out,Michael Romero,rivaserica@example.com,405.536.2922x043,4500179408343167,2026-02-05 +City Hotel,0,22,2017,October,41,12,2,2,2,0.0,0,HB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,88.69,0,1,Check-Out,Jennifer Diaz,polsen@example.org,001-576-935-1287x3787,30226053781261,2025-07-08 +Resort Hotel,0,13,2017,April,16,15,2,5,2,0.0,0,HB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,113.15,1,2,Check-Out,April Paul,theresa09@example.org,561-550-0816x755,6553989833093448,2024-06-12 +Resort Hotel,0,1,2017,March,11,12,1,0,1,0.0,0,BB,ESP,Groups,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,60.5,0,0,Check-Out,Anne Santiago,juliawilson@example.org,288.871.7159x57935,180001628819351,2025-03-29 +Resort Hotel,0,1,2017,September,38,20,0,3,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,E,H,1,No Deposit,241.0,179.0,0,Transient,55.5,0,1,Check-Out,Robert Garcia,gregoryfloyd@example.net,790.581.0190x78370,4004807329428,2025-05-17 +Resort Hotel,0,18,2017,July,27,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient-Party,62.87,0,1,Check-Out,Robert Park,megan39@example.org,735.980.9458,180096237857032,2025-05-19 +City Hotel,0,2,2017,April,14,4,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,B,0,No Deposit,10.0,45.0,0,Transient-Party,63.54,0,2,Check-Out,Tyler Chung,misty29@example.org,+1-822-240-7308x7750,6011555876414746,2025-05-08 +Resort Hotel,0,107,2017,April,15,6,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,239.0,179.0,0,Transient,147.42,1,2,Check-Out,Amanda Bennett,znewman@example.com,345-697-8768x991,3588684636330172,2025-10-29 +Resort Hotel,0,154,2017,July,28,9,3,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,105.33,0,1,Check-Out,Alexander Garcia,angelacosta@example.com,(507)226-7190,4085509283805430,2025-10-21 +City Hotel,1,45,2017,June,23,5,1,0,2,0.0,0,BB,RUS,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,160.37,0,2,Canceled,Michelle Cox,rachel40@example.com,001-380-375-2775x64416,3548204839298131,2025-12-14 +Resort Hotel,1,37,2017,August,33,16,1,2,2,1.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,115.35,0,0,Canceled,Tammy Greer,vcooper@example.net,445-201-3816x30169,30089511089697,2024-07-13 +City Hotel,0,8,2017,February,7,12,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,244.0,0,Transient,99.08,0,1,Check-Out,Debbie Pierce,diazkimberly@example.net,833.871.8133,4742343799419923244,2024-04-13 +Resort Hotel,0,158,2017,April,14,1,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,D,0,Refundable,12.0,223.0,0,Transient-Party,64.21,0,0,Check-Out,Kendra Jones,harveykayla@example.com,748-632-7380,213190693342000,2025-01-16 +Resort Hotel,0,0,2017,December,49,7,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,E,0,No Deposit,24.0,179.0,0,Transient,64.08,1,1,Check-Out,Aaron Powers,tammyhall@example.org,232.712.3548x54496,2278047830913655,2025-06-14 +Resort Hotel,1,28,2017,July,27,1,0,1,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,247.0,179.0,0,Transient,201.42,0,2,Canceled,Brianna Horton,bartonrobin@example.net,843-384-9573x2644,3510770262886257,2026-02-17 +Resort Hotel,0,47,2017,September,35,1,1,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,2,No Deposit,239.0,179.0,0,Transient,210.45,0,2,Check-Out,William Mcdonald,elizabeth12@example.net,(783)951-3405x076,2351675594758757,2024-05-10 +Resort Hotel,0,21,2017,February,7,13,0,1,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient,82.92,0,0,Check-Out,Elizabeth Clark,harrygomez@example.com,(768)639-6766,4200716145175792852,2025-04-23 +Resort Hotel,1,330,2017,August,35,26,1,3,3,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,252.0,0,0,Canceled,Robert Lambert,aaronmeyer@example.org,6022320991,3519012539947179,2025-05-20 +City Hotel,0,176,2017,July,30,23,2,1,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,23.0,179.0,0,Transient-Party,92.92,0,0,Check-Out,Jacob Patterson,tterrell@example.net,+1-892-578-2684x6122,180086100054783,2025-06-23 +City Hotel,1,62,2017,August,32,9,0,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.82,0,0,Canceled,Ronald Burke,cameronrobertson@example.net,274-860-2614x23309,348679316105859,2026-02-23 +Resort Hotel,0,26,2017,August,31,5,2,0,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,244.0,179.0,0,Transient,130.01,0,1,Check-Out,Daniel Travis,moralesshannon@example.net,+1-308-656-4591,180085788455056,2025-06-13 +City Hotel,0,36,2017,April,15,11,0,4,1,1.0,0,BB,PRT,Direct,Direct,1,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,108.37,1,0,Check-Out,Timothy Oliver,lawrenceelizabeth@example.net,+1-628-461-2493x276,5351457780508723,2025-01-19 +City Hotel,0,268,2017,September,38,19,0,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,98.55,0,0,Check-Out,Thomas Bean,masonkim@example.net,(897)535-8817x1221,2236129335367131,2024-07-14 +Resort Hotel,1,0,2017,March,9,2,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,83.0,179.0,0,Transient,52.21,0,1,Canceled,Rhonda Miller,sean73@example.com,258-972-0390,4988657305050,2025-07-16 +City Hotel,0,41,2017,August,33,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,146.78,0,3,Check-Out,Brandy Garcia,barbaramartinez@example.com,5005146738,676284204036,2024-05-14 +City Hotel,0,32,2017,December,50,10,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,136.52,0,1,Check-Out,Robert Mccarthy,lgarner@example.net,744.579.8763x838,4044141193751621142,2025-01-02 +Resort Hotel,0,99,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,C,1,Refundable,14.0,223.0,0,Transient-Party,63.29,1,0,Check-Out,Julia Gray,annsmith@example.org,649-483-7851x0116,213162509800968,2025-01-06 +Resort Hotel,0,52,2017,March,10,7,1,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,44.34,0,1,Check-Out,Andrew Neal,lori51@example.com,342.599.0259x156,30444066607924,2024-12-25 +City Hotel,0,65,2017,March,11,9,2,2,3,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,62.15,0,1,Check-Out,Monica Harvey,thompsonjohn@example.org,001-587-290-3456x934,4251038538552017,2025-07-22 +Resort Hotel,0,56,2017,September,37,13,2,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,102.73,0,1,Check-Out,Kimberly Spears,perezmichael@example.net,507.739.8033,213155638972724,2025-05-15 +Resort Hotel,1,46,2017,March,11,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,237.0,179.0,0,Transient,49.83,0,1,Canceled,Albert Peterson,stephenssherry@example.net,(356)867-5088,6563717246190263,2024-08-01 +City Hotel,1,3,2017,April,18,30,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,116.98,0,0,Canceled,Jennifer Kline,heather93@example.org,951.765.0906x7877,501811030417,2024-08-18 +City Hotel,1,26,2017,October,41,11,0,1,2,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,11.0,331.0,0,Transient-Party,95.43,0,0,Canceled,Lindsay Miller,uadams@example.org,497-388-4221x46630,4410378814625224741,2025-09-14 +City Hotel,0,2,2017,April,15,9,1,1,1,0.0,0,BB,ESP,Aviation,Corporate,0,0,0,D,D,1,No Deposit,14.0,180.0,0,Transient,113.41,0,0,Check-Out,Alexandra Anderson,alopez@example.net,6699586983,4821295740604,2026-01-02 +Resort Hotel,0,3,2017,January,2,3,0,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,F,1,No Deposit,245.0,179.0,0,Transient,54.12,1,1,Check-Out,Mrs. Kristina Willis,xmarshall@example.org,985-233-1798x3243,3569598849262985,2026-03-09 +City Hotel,1,45,2017,June,24,14,0,4,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,239.0,179.0,0,Transient,49.95,0,2,Canceled,Caitlin Perez,lawsonmeghan@example.net,+1-419-408-5390x648,6011057121089548,2025-10-09 +Resort Hotel,0,142,2017,June,24,10,4,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,239.0,179.0,0,Transient,123.36,0,1,Check-Out,Joshua Wiley,cynthia26@example.org,001-403-700-4935x21224,4973288882875,2024-05-18 +City Hotel,0,244,2017,October,42,18,1,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,98.81,0,0,Check-Out,Jason Livingston,john30@example.org,001-744-425-8283,213135808157611,2024-07-02 +City Hotel,1,15,2017,December,49,7,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,67.67,0,2,Canceled,Brian Dixon,duncanvincent@example.com,(660)222-2588x02802,213138404522071,2026-01-28 +City Hotel,0,18,2017,September,37,10,2,2,3,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,164.07,1,1,Check-Out,Monica Lyons,gmendoza@example.org,(451)317-5353x1523,4113936244144300,2024-04-09 +City Hotel,0,145,2017,October,40,3,0,2,2,2.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,167.9,0,0,Check-Out,Kelli Martinez,rodriguezamy@example.net,(342)621-1255x056,2297792907512396,2025-03-01 +Resort Hotel,0,0,2017,March,10,3,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,D,0,No Deposit,133.0,179.0,0,Group,41.61,1,1,Check-Out,Michael Gomez,amy18@example.com,728-703-9714,4778645598787,2024-10-26 +City Hotel,0,98,2017,September,39,24,1,2,1,0.0,0,BB,BEL,Groups,Corporate,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,130.66,0,0,Check-Out,Wanda Fuller,mwilliams@example.org,(415)955-8212x325,3559500360477689,2024-07-08 +City Hotel,0,153,2017,April,15,7,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.66,0,0,Check-Out,Christopher Richards,monica83@example.net,634-431-7074x29238,30355298327265,2024-07-28 +City Hotel,0,96,2017,November,45,9,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,38.0,82.0,60,Transient-Party,46.29,0,0,No-Show,Denise Moody,mhill@example.com,+1-835-737-4163x1931,5592013401206954,2025-07-03 +City Hotel,0,0,2017,August,31,3,0,1,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.68,0,0,Check-Out,Mitchell Ross,graceriggs@example.com,(874)966-4588x28515,4800712297012100,2025-11-22 +Resort Hotel,1,31,2017,December,52,29,1,4,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,7.0,179.0,0,Transient,131.57,0,0,Canceled,Susan Christian,leonard42@example.com,454.857.9236,3500736180336776,2024-11-25 +City Hotel,0,94,2017,July,29,18,2,4,2,1.0,0,BB,ITA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,7.0,179.0,0,Contract,117.38,0,2,Check-Out,Cassandra Anderson,meganthompson@example.net,(979)638-5542x274,3527256968122370,2024-06-14 +City Hotel,0,16,2017,April,15,9,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,65.0,0,Transient-Party,64.96,0,1,Check-Out,Kevin Wilcox,pinedagregg@example.org,7054033802,3507953621312422,2026-02-02 +City Hotel,1,3,2017,September,36,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,63.43,0,0,Canceled,Diamond Fernandez,christinamorris@example.com,+1-523-226-3426x297,180055626082479,2024-12-21 +Resort Hotel,0,155,2017,December,52,24,1,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,E,E,1,No Deposit,306.0,179.0,0,Transient-Party,80.88,0,0,Check-Out,Cole Hurley,gdaniels@example.com,+1-595-496-4716x955,4483728396502,2025-12-31 +Resort Hotel,0,46,2017,October,43,24,2,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,28.0,179.0,0,Transient-Party,105.61,0,1,Check-Out,Robert Rogers,bowmanchristine@example.org,001-286-327-3174,4317021120558008,2025-09-06 +City Hotel,0,1,2017,January,3,18,1,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,1,A,D,0,No Deposit,13.0,179.0,0,Transient,155.99,0,1,Check-Out,Elizabeth Thompson,hgonzalez@example.net,447-536-9482,4049029514150970275,2025-08-24 +Resort Hotel,0,61,2017,April,15,9,0,2,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,1,1,Check-Out,Brian Webb,barbara85@example.net,916-562-7689x1962,30096224832602,2025-01-06 +City Hotel,0,6,2017,March,11,10,0,1,1,0.0,0,SC,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,186.0,179.0,0,Transient,45.76,0,0,Check-Out,James Brown,danielarnold@example.net,966-825-4593,582766930322,2025-09-02 +City Hotel,0,7,2017,December,52,25,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.69,0,2,Check-Out,Jorge Brown,kellyshane@example.com,(995)560-6836,2247477968823483,2026-01-23 +Resort Hotel,0,0,2017,March,12,18,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,I,1,No Deposit,11.0,331.0,0,Transient,51.45,0,1,Check-Out,Kristen Wilson,nancyhoover@example.org,001-386-801-8385,4229768664310819,2024-10-26 +Resort Hotel,0,38,2017,August,33,13,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,259.0,179.0,0,Transient-Party,40.92,0,0,Check-Out,Teresa Smith,gomezlisa@example.net,(460)904-5020x7673,3544080523968419,2025-07-10 +Resort Hotel,0,153,2017,March,10,6,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,15.0,223.0,0,Transient-Party,42.19,0,0,Check-Out,Brian Peterson DVM,sbullock@example.org,737.491.1578x396,630482787078,2025-04-26 +City Hotel,0,15,2017,May,21,23,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Transient,123.34,1,1,Check-Out,Jessica Gonzalez,ireilly@example.net,(926)696-0673,36402888576895,2025-03-09 +City Hotel,0,1,2017,February,9,27,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,0,No Deposit,11.0,61.0,0,Transient,52.27,0,1,Check-Out,Mrs. Amy Macdonald,ashleylane@example.org,392-635-2918,6522501435559615,2026-02-24 +Resort Hotel,1,281,2017,October,42,17,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,43.84,0,0,Canceled,Julie Francis MD,vincentvincent@example.org,+1-862-347-5033x7481,6011699751668230,2024-08-22 +City Hotel,0,67,2017,June,25,20,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,138.83,0,1,Check-Out,Jacqueline Lopez,andersenlauren@example.org,001-968-842-3999x395,2720225640476402,2025-08-06 +Resort Hotel,0,200,2017,May,21,21,4,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,289.0,179.0,0,Transient-Party,74.08,0,1,Check-Out,Johnathan Lopez,kingeric@example.net,+1-305-719-0401x73908,345060953768924,2024-08-22 +City Hotel,0,47,2017,December,2,31,0,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,47.88,0,1,Check-Out,Sarah Newton,cheyennethompson@example.net,503.706.0928x19938,3532763734842770,2025-01-13 +Resort Hotel,0,260,2017,May,22,25,0,4,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,140.15,0,1,Check-Out,Aaron Green,jared11@example.net,+1-604-777-7588,4385624029594003,2024-05-17 +City Hotel,0,147,2017,April,15,9,2,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,G,1,No Deposit,17.0,179.0,0,Transient,64.6,1,0,Check-Out,Kenneth Mcgee,michellerobinson@example.org,001-803-862-4123,6598588530992568,2024-10-07 +Resort Hotel,1,186,2017,July,31,27,2,5,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,100.73,0,2,Canceled,Stacey Solomon,scott00@example.com,262.608.9928,4120665030047,2025-02-05 +City Hotel,1,58,2017,September,38,14,0,2,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,191.0,179.0,0,Transient,139.94,0,0,Canceled,Stacy Jones,sheppardandrew@example.com,802.477.6613,349432203745877,2025-10-24 +City Hotel,1,195,2017,August,32,9,0,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,165.0,179.0,0,Transient,129.06,0,2,Canceled,Thomas Banks,taylorlorraine@example.org,+1-335-855-0640,30162421370299,2024-10-21 +City Hotel,1,2,2017,January,4,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,26.0,179.0,0,Transient,88.51,0,0,Canceled,Anthony Park,gregorydickson@example.net,792.643.4144x83402,5538423516753963,2025-04-07 +City Hotel,0,61,2017,August,32,10,0,1,1,0.0,0,SC,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.19,0,0,Check-Out,Janet Davis,sara05@example.org,(363)492-9253x2169,4630756585953778,2025-07-18 +City Hotel,0,24,2017,March,10,5,1,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,100.11,0,2,Check-Out,Karen Roth,hudsontony@example.net,347.763.3920x336,6571653305032346,2024-06-19 +City Hotel,1,60,2017,June,24,9,0,3,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.65,0,2,Canceled,Charles Carter,johnspence@example.net,8849756854,3519808796487019,2025-08-14 +City Hotel,0,13,2017,July,27,3,2,5,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,216.66,0,2,Check-Out,Christopher Martin,danielsantana@example.com,001-362-397-0263x32602,4119497773124928,2025-08-09 +City Hotel,0,16,2017,March,13,30,2,1,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,71.26,0,1,Check-Out,Daniel Dunn,mroberts@example.net,903.569.7996x768,3524455559011033,2025-03-23 +City Hotel,1,101,2017,December,51,17,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,23.0,179.0,62,Contract,89.43,0,0,Canceled,Alicia Glover,harrisbrett@example.com,(390)353-2572,2422665993018262,2025-01-19 +City Hotel,1,193,2017,August,32,5,2,5,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,B,B,1,No Deposit,16.0,179.0,0,Transient,181.63,0,1,Check-Out,Angelica Fletcher,paullewis@example.org,529-886-4157,4497044410045,2026-03-15 +City Hotel,1,164,2017,October,42,16,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,95.86,0,0,Canceled,Sara Young,daniel37@example.com,(384)605-0648x41849,6519893475267869,2025-09-04 +City Hotel,1,248,2017,November,44,3,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,111.23,0,1,Canceled,Stephanie Bridges,brittany39@example.com,751.858.7283x958,4457205352095330,2025-08-09 +City Hotel,1,261,2017,May,18,3,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,112.25,0,0,Canceled,Rebecca Wright,ecastro@example.com,641-390-1226,3557249937768640,2025-01-08 +City Hotel,0,67,2017,July,27,4,1,4,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,139.33,0,2,Check-Out,Barry Ibarra,carlsondavid@example.net,001-751-674-7911x3079,30348902954350,2025-06-04 +Resort Hotel,1,39,2017,November,44,2,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,47.47,0,1,Canceled,Crystal Olson,howardsarah@example.org,001-526-773-3037,3551632512887651,2025-10-11 +Resort Hotel,0,2,2017,November,47,18,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,0,No Deposit,17.0,88.0,0,Transient,51.8,1,0,Check-Out,David Ford,joel94@example.com,753-991-8862,346573615012753,2024-07-27 +City Hotel,0,8,2017,March,11,13,0,2,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,127.81,0,0,Check-Out,Kelly Velasquez,donna49@example.com,976-483-5732x4081,3595333481522225,2025-01-29 +City Hotel,1,208,2017,July,28,12,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,311.0,179.0,0,Transient-Party,130.93,0,0,No-Show,Tara Jones,mariasmith@example.com,(428)720-7187x6144,6507334945681540,2025-10-30 +City Hotel,1,161,2017,June,24,10,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,27.0,179.0,17,Transient,84.45,0,0,Canceled,Valerie Williams,webbbrian@example.org,954-609-3489x9958,4155746411364480042,2025-11-12 +City Hotel,1,92,2017,July,29,19,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,140.22,0,0,Canceled,David Harrison,john03@example.com,+1-523-744-1294x2926,213146533282384,2025-06-13 +City Hotel,1,48,2017,October,40,6,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,101.76,0,1,Canceled,Steven Harmon,sharon38@example.org,397-943-5146,639092088256,2024-07-31 +City Hotel,1,41,2017,August,32,4,1,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.48,0,0,Canceled,Patrick Washington,gnavarro@example.org,+1-499-776-0339,347315802590343,2024-08-16 +City Hotel,1,102,2017,August,34,23,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,231.54,0,0,Canceled,Judy Simmons,denisesalas@example.net,+1-247-701-8311x2680,4751521465908709511,2024-09-03 +Resort Hotel,0,5,2017,November,48,25,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,13.0,83.0,0,Transient,44.94,0,0,Check-Out,Joe Bryant,halljacqueline@example.net,936.201.4902x23714,4696580142860552,2024-05-25 +Resort Hotel,1,148,2017,August,32,5,0,3,2,1.0,0,HB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,220.57,0,2,Canceled,Stephen Moreno,jeremy74@example.com,+1-754-871-7743x853,676275090972,2024-12-08 +Resort Hotel,0,160,2017,February,6,5,1,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,75,Transient,62.69,0,0,Check-Out,Jake Wilkinson,kara36@example.net,801-920-4253x72633,3523904848964925,2025-03-18 +Resort Hotel,1,18,2017,October,41,11,0,4,3,1.0,0,HB,ITA,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,192.06,0,0,Canceled,Lisa Jones,melissa05@example.com,458.425.6988,4257876100720,2024-11-01 +City Hotel,1,91,2017,June,24,12,0,7,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,2,No Deposit,11.0,179.0,0,Transient,180.67,0,0,Canceled,Erica Parker,sarahcarpenter@example.org,264.425.7064,180094397592549,2025-12-26 +Resort Hotel,1,43,2017,July,28,8,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,313.0,179.0,0,Transient,50.67,0,1,Canceled,Bryan Espinoza,sherry17@example.net,583.636.4603x689,38193588836915,2025-07-29 +Resort Hotel,0,16,2017,January,5,28,4,0,2,0.0,0,BB,POL,Direct,Direct,0,0,0,E,E,0,No Deposit,251.0,179.0,0,Transient,133.34,0,0,Check-Out,Debbie Medina,delgadoallison@example.com,308.262.7404x6608,6592561331197105,2024-09-27 +Resort Hotel,0,157,2017,March,11,15,1,3,2,0.0,0,BB,IRL,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,224.0,0,Transient-Party,87.02,0,0,Check-Out,Rhonda Martinez,amy24@example.net,+1-679-383-9576x8615,6011018851479903,2025-05-25 +Resort Hotel,0,156,2017,May,21,24,2,7,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,176.0,179.0,0,Transient,75.08,0,0,Canceled,Dawn Dougherty,sarahstone@example.net,628-790-2904x659,3558915437666257,2024-11-25 +Resort Hotel,0,58,2017,September,37,10,2,5,2,0.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,A,E,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,107.44,0,0,Check-Out,Christine Scott,barbara95@example.org,(405)287-1800x106,3592609667481788,2024-08-02 +City Hotel,1,0,2017,December,49,4,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,1,0,A,A,0,No Deposit,15.0,179.0,0,Transient,0.74,0,0,Canceled,Mitchell Delgado,gonzalezdebra@example.com,677.706.2130x30656,4726738320604564,2025-02-16 +City Hotel,1,39,2017,February,6,4,1,1,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,65.44,0,0,No-Show,Rebecca Rocha,robertssean@example.net,+1-247-903-8637x990,4395065856143993,2026-02-23 +City Hotel,0,158,2017,May,22,26,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,1,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,134.62,0,1,Check-Out,Joseph Hernandez,bushrachel@example.net,304.843.1581x54971,5311569882315754,2025-11-15 +City Hotel,1,414,2017,September,37,15,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,20.0,179.0,0,Transient,107.84,0,0,Canceled,Jill Barajas,mhernandez@example.net,593.772.3146x4653,2675112604042385,2024-05-26 +Resort Hotel,0,0,2017,December,51,20,0,1,2,0.0,0,BB,,Complementary,Direct,0,0,0,H,K,0,No Deposit,13.0,331.0,0,Transient,2.11,0,0,Check-Out,Mary Hill,rosserin@example.com,735.636.4835x51270,676393673857,2024-05-04 +Resort Hotel,0,1,2017,January,3,18,0,2,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,D,E,0,No Deposit,14.0,179.0,0,Transient,51.4,0,3,Check-Out,Bobby Guzman,randall44@example.net,(516)527-7003x01822,30255022196814,2025-02-10 +Resort Hotel,1,46,2017,August,32,12,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,239.0,179.0,0,Transient,209.08,0,0,Canceled,Rachel Curry,dana67@example.net,358.465.2437x756,639061030297,2025-06-21 +City Hotel,0,32,2017,October,41,10,2,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,175.63,0,0,Check-Out,Michael Sanders,waynerivas@example.org,001-922-901-0070x44178,4325674178147,2025-04-23 +City Hotel,1,102,2017,March,12,23,1,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,86.0,179.0,0,Transient,104.7,0,0,Canceled,Patrick Becker,jonescharles@example.com,+1-288-423-4458x845,4081508667254490,2026-03-02 +City Hotel,1,414,2017,May,21,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,83.57,0,0,Canceled,Gina Porter,humphreyjeremy@example.com,3469134906,4991338525930,2025-11-04 +City Hotel,1,9,2017,May,21,25,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,87.42,0,0,Canceled,Jonathan Young MD,jonathon88@example.com,645.217.5279,4910312633858576,2025-08-06 +Resort Hotel,1,1,2017,April,16,16,0,2,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,56.55,0,0,Canceled,Mrs. Joanna Graham,jamesdeleon@example.net,655-449-8572x0734,3579378854714693,2024-06-18 +Resort Hotel,0,1,2017,March,10,10,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,B,0,No Deposit,16.0,76.0,0,Transient,52.36,0,1,Check-Out,Colton Hill,danielle74@example.com,8337813814,6011770783298013,2024-12-18 +Resort Hotel,0,0,2017,March,12,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,13.0,331.0,0,Transient-Party,84.21,0,0,Check-Out,Rhonda Moran,patriciaparrish@example.com,001-849-937-8014,3569115012255876,2025-11-06 +City Hotel,0,19,2017,February,8,20,1,2,2,0.0,0,FB,PRT,Corporate,Corporate,1,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient-Party,65.6,0,2,Check-Out,Thomas Boyle,dpowers@example.net,549-256-3414,675909956608,2025-03-06 +City Hotel,0,5,2017,December,52,29,2,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,121.93,1,1,Check-Out,Brittany Villegas,alexanderjulie@example.com,001-489-289-3012x43385,6527902255239962,2025-09-30 +City Hotel,0,12,2017,May,22,30,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,129.96,0,1,Check-Out,Sheila Castillo,watersamanda@example.org,537.806.4152x03847,348230454995956,2026-01-23 +City Hotel,1,3,2017,October,42,16,2,3,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,71.0,179.0,0,Transient,160.43,0,0,Canceled,Dominique Carpenter,agarcia@example.net,+1-459-523-4441x9088,4723679756659344774,2024-12-24 +City Hotel,0,14,2017,October,41,12,0,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,63.57,0,0,Check-Out,Mrs. Kristin Davis,keithalyssa@example.org,229.867.4322x52781,4014522524325957,2024-06-26 +City Hotel,0,93,2017,March,12,19,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,B,0,No Deposit,137.0,179.0,0,Transient,78.56,0,2,Check-Out,Stacey Dominguez,graynicholas@example.org,456-535-8717x00643,4445999297784,2026-02-10 +Resort Hotel,0,12,2017,October,41,9,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,256.0,179.0,0,Transient,45.56,0,0,Check-Out,Angel Roberts,timothyhall@example.com,(529)403-3830x4239,2262968028421110,2025-08-27 +City Hotel,0,287,2017,October,41,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,73.0,179.0,0,Contract,82.19,0,0,Check-Out,Lucas Snyder,deborahjackson@example.net,593.700.3124x209,2432800417680409,2024-10-14 +Resort Hotel,0,3,2017,October,40,5,0,1,1,0.0,0,BB,PRT,Direct,Corporate,1,0,1,A,A,0,No Deposit,245.0,179.0,0,Group,58.06,0,1,Check-Out,Stephanie Peterson,markcortez@example.com,+1-898-252-9014x3976,4733737044075,2025-06-14 +City Hotel,0,49,2017,June,26,26,1,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient-Party,128.27,0,2,Check-Out,Jamie Decker,reneecruz@example.org,8578533757,180037907033462,2026-01-31 +Resort Hotel,0,108,2017,October,40,6,2,5,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,45.6,0,1,Check-Out,Cynthia Johnson,renee12@example.org,(786)612-3571x1000,346416508210599,2025-09-16 +City Hotel,1,0,2017,August,33,15,0,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,P,K,0,No Deposit,6.0,179.0,0,Transient,6.5,0,1,Canceled,Jessica Horn,barbara53@example.net,3736460970,2720371892769613,2025-10-06 +City Hotel,1,402,2017,May,21,24,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.9,0,0,Canceled,Alexis Mendoza,markbray@example.org,684-807-9383x540,676129277700,2026-02-08 +Resort Hotel,1,38,2017,December,49,4,0,3,1,0.0,0,BB,PRT,Online TA,Corporate,0,1,0,A,A,0,Non Refund,245.0,179.0,0,Transient,50.45,0,1,Canceled,Joseph Booker,jrobinson@example.net,3318800185,676195503138,2025-04-13 +City Hotel,0,309,2017,September,37,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,82.57,0,0,Check-Out,Mrs. Erica Adams MD,baileyangie@example.net,(424)394-8912x9998,3576798305197276,2025-04-10 +Resort Hotel,0,10,2017,January,2,4,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,64.71,1,1,Check-Out,Julie Greene,bryan20@example.net,370.859.3934x013,502012813452,2024-06-07 +City Hotel,0,387,2017,July,28,12,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,62,Transient-Party,81.16,0,0,Check-Out,Miguel Arellano,nancysampson@example.com,933-632-5186,3512890023405110,2025-02-07 +City Hotel,0,44,2017,April,17,24,0,4,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,110.78,0,1,Check-Out,Samantha Freeman,vthomas@example.org,001-501-227-5237,30135858395161,2025-07-30 +Resort Hotel,0,1,2017,February,5,2,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,43.3,0,1,No-Show,Kevin Townsend,andreadavis@example.com,985-813-9939x13115,4219528768392056880,2024-12-06 +Resort Hotel,0,6,2017,April,18,27,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,1,1,Check-Out,Corey Ferguson,tarabaker@example.com,547.433.1985x8559,3506805372114905,2025-11-19 +City Hotel,0,4,2017,August,34,21,1,3,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,180.0,179.0,0,Transient,118.72,0,0,Check-Out,Christina Swanson,mcdonaldgregory@example.net,+1-236-933-2852x5388,213161458240051,2025-12-14 +City Hotel,1,0,2017,June,23,7,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,17.0,331.0,0,Transient,5.49,0,0,Canceled,Erin Morrison,mcdanielchristopher@example.com,001-759-845-9231x42330,503817858023,2024-04-02 +Resort Hotel,0,0,2017,February,8,19,1,3,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,8.0,179.0,0,Transient,37.04,0,1,No-Show,Samantha Ward,kmcclain@example.com,7705365901,4091661615356,2024-05-31 +Resort Hotel,0,16,2017,December,49,9,2,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,64.6,0,0,Check-Out,Valerie Young,nicholas82@example.net,666.502.6524,344143944131625,2025-12-15 +City Hotel,1,63,2017,December,50,11,2,5,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient-Party,94.77,0,1,No-Show,Steven Fitzpatrick,kwade@example.net,320.780.5727x586,4590925340632403786,2025-04-22 +Resort Hotel,0,0,2017,February,6,3,2,1,1,0.0,0,BB,,Undefined,Corporate,1,0,0,A,A,1,No Deposit,17.0,222.0,0,Transient-Party,31.53,1,0,Check-Out,Jacqueline Adams,zjohnson@example.net,420.415.0008x274,2287207342011021,2025-04-27 +City Hotel,1,268,2017,September,36,3,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,171.69,0,0,Canceled,Clifford Perry,morgansampson@example.net,5935485525,6582446919376515,2025-11-22 +City Hotel,0,54,2017,November,44,1,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,105.58,0,1,Check-Out,Henry Barnes,ifowler@example.com,742-548-6175x078,4301220710128598,2025-03-31 +City Hotel,0,11,2017,August,32,6,0,3,3,2.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,200.15,0,0,Check-Out,Jose Lee DVM,edwardhenson@example.org,+1-617-220-4928x22179,6011029257426463,2024-06-07 +Resort Hotel,0,2,2017,August,32,6,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,F,1,No Deposit,17.0,179.0,0,Transient,222.66,1,0,Check-Out,Kara Hogan,vscott@example.org,914.248.2890x491,4307243374518064,2025-05-18 +City Hotel,1,93,2017,May,19,9,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,119.11,0,0,No-Show,Elizabeth Bradshaw,amandamitchell@example.org,001-352-364-7848x9291,341546034286484,2024-05-02 +Resort Hotel,0,185,2017,October,40,3,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,47.71,0,0,Check-Out,Savannah Shaw DDS,edward01@example.net,(861)539-4235x490,4206804443998418726,2026-01-05 +City Hotel,1,414,2017,March,12,20,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,62.97,0,0,Canceled,John Rodriguez,ryan53@example.net,404.589.3240x98855,4286951204678206,2025-10-14 +City Hotel,0,364,2017,May,20,13,2,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,113.69,0,1,Check-Out,Marcus Stewart,scott51@example.com,2435405653,3518563165566320,2026-01-19 +City Hotel,0,41,2017,October,43,27,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient-Party,120.63,0,0,Check-Out,Henry Gross,gracewiggins@example.org,5585970940,4760485724453139788,2025-02-09 +City Hotel,1,0,2017,May,20,13,2,3,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,174.37,0,0,Canceled,Shannon Martin,ashley45@example.com,388-377-3299,3556338350689234,2026-02-05 +City Hotel,0,15,2017,August,33,16,0,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Group,139.42,0,1,Check-Out,Shane Blackburn,zsmith@example.org,436-620-3647,4554524281289450939,2024-07-26 +Resort Hotel,1,48,2017,November,47,21,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,102.25,0,0,Canceled,Dr. James Figueroa,xflowers@example.org,+1-675-532-6422,4193465995180,2025-04-02 +City Hotel,1,160,2017,July,29,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,131.03,0,0,Canceled,Tara Torres,ianderson@example.com,403-743-5902x497,180051777715447,2026-01-21 +Resort Hotel,0,3,2017,May,21,24,3,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,129.3,0,1,Check-Out,Joseph Wheeler,vbrooks@example.com,+1-943-662-9175,3535337273571798,2024-08-24 +City Hotel,0,52,2017,March,12,16,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient-Party,79.61,0,0,Check-Out,Brittany Robinson,cserrano@example.org,7904082823,4867383860119,2025-03-16 +Resort Hotel,1,152,2017,August,35,25,1,2,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,244.56,0,0,Canceled,Jennifer Hall,emily12@example.org,(268)375-3854,3545338793714601,2025-10-24 +City Hotel,0,266,2017,June,26,26,2,7,3,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,273.0,179.0,0,Transient-Party,126.83,0,0,Check-Out,Tiffany Johnson,williamsjames@example.org,942-358-2986x76660,4338791538838409,2024-04-29 +City Hotel,0,25,2017,August,34,21,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,138.04,0,2,Check-Out,Michael Weaver,ufletcher@example.net,698.660.4275,180014771053272,2026-02-03 +Resort Hotel,0,2,2017,January,3,15,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,D,0,No Deposit,136.0,179.0,0,Transient,45.98,0,1,Check-Out,Matthew Bradley,morgankaren@example.com,(243)209-1809x484,213143539080144,2025-10-18 +City Hotel,0,152,2017,March,13,27,1,5,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.26,0,0,Check-Out,Monica Mora,iford@example.com,943-540-2822,4825193039462096,2024-06-04 +City Hotel,0,211,2017,August,35,30,1,1,1,0.0,0,BB,ESP,Online TA,GDS,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient,148.92,0,0,Check-Out,Allen Gomez,hdelacruz@example.com,493.812.6928,501891483262,2025-09-18 +Resort Hotel,1,84,2017,July,31,30,1,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,240.0,179.0,0,Transient,252.0,0,0,Canceled,Matthew West,margaret09@example.org,289-636-1551x248,30474626696489,2024-06-03 +Resort Hotel,0,0,2017,January,2,7,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,1,No Deposit,17.0,179.0,0,Transient,41.54,1,0,Check-Out,Mary Herrera,rwood@example.com,940.815.0978x8516,180029483281870,2025-05-19 +Resort Hotel,0,1,2017,April,17,23,0,1,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,247.0,179.0,0,Transient,64.72,1,0,Check-Out,Jennifer Williams,jasonramos@example.org,+1-963-495-9818x6420,4246952109439230,2024-10-12 +City Hotel,0,11,2017,December,49,8,0,1,3,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,10.0,67.0,0,Transient,133.69,0,0,Check-Out,Jessica Perkins,tgreene@example.org,738.554.9918,4031386164407817,2025-10-02 +Resort Hotel,0,1,2017,March,10,8,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,E,0,No Deposit,13.0,179.0,75,Transient-Party,0.5099000000000001,1,3,Check-Out,Dana Clayton,gibsonmarie@example.com,+1-379-471-2600x1719,4733748478236672,2025-06-16 +Resort Hotel,0,1,2017,December,50,15,2,2,2,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,15.0,179.0,0,Transient,65.19,0,2,Check-Out,Sarah Finley,kjohnson@example.org,+1-787-550-9377,4563532154153,2025-09-03 +City Hotel,1,24,2017,July,27,4,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,130.95,0,3,Canceled,Megan Cherry,andersonsteve@example.net,625.449.2625x8794,4861826213960,2024-12-28 +Resort Hotel,0,113,2017,July,27,2,0,2,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient-Party,117.8,0,0,Check-Out,Leslie Bautista,megan90@example.org,5577461188,345773320665561,2024-12-22 +Resort Hotel,1,184,2017,August,31,2,2,5,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,136.76,0,1,Canceled,Vincent Mcgee,pjenkins@example.net,745-703-5841,4003716675877873616,2024-09-08 +City Hotel,0,2,2017,October,41,9,0,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,B,0,No Deposit,15.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,Robert Williams,shafferkimberly@example.net,(914)805-5486x77154,5357080601200199,2025-12-15 +Resort Hotel,1,89,2017,December,49,4,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,104.6,0,2,Canceled,Susan Allen,carterkristin@example.com,(464)431-0876x17549,3519764020546494,2025-04-15 +Resort Hotel,0,18,2017,November,46,15,0,1,2,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,207.0,69.0,0,Transient-Party,53.75,0,0,Check-Out,Robert Hunt,gshea@example.com,789.675.6630,6011873558945196,2024-03-27 +City Hotel,1,201,2017,June,26,24,1,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,101.72,0,0,Canceled,Laurie Decker,ewilson@example.com,+1-654-828-8975x42330,4923936557239,2024-08-25 +City Hotel,0,147,2017,June,26,24,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient,77.39,0,0,Check-Out,Danny Martin,brenda43@example.com,+1-342-258-7037x5881,3518502261850105,2025-02-25 +Resort Hotel,1,368,2017,March,10,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,89.0,179.0,0,Transient,87.48,0,0,Canceled,Heather Mathews,kimberlyholland@example.org,607.680.3629,371375316526612,2024-08-29 +Resort Hotel,0,107,2017,June,26,24,3,2,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,116.63,0,0,Check-Out,Samantha Hall,richardortiz@example.net,001-689-831-0021x63951,38716580282330,2025-06-24 +City Hotel,0,9,2017,March,10,8,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,71.31,0,1,Check-Out,Ryan Alvarado,davidsonwilliam@example.com,001-201-529-9220,4172963456795213,2024-09-25 +City Hotel,0,6,2017,March,13,26,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,138.37,0,2,Check-Out,Sherri Walker,joshuagarrett@example.net,(800)251-0350x796,4884102211115065,2026-02-22 +City Hotel,0,96,2017,June,23,4,1,1,1,0.0,0,SC,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,102.48,0,0,Check-Out,Steven Cobb,michelle81@example.com,001-446-959-0753x317,4255349984906177,2025-07-18 +Resort Hotel,0,86,2017,February,7,17,2,2,2,0.0,0,Undefined,GBR,Groups,TA/TO,0,0,0,A,C,0,No Deposit,169.0,179.0,0,Transient-Party,36.45,0,0,Check-Out,Mr. Cesar Wu Jr.,charleslong@example.net,581.702.5214x867,213143325651579,2026-01-08 +City Hotel,0,21,2017,October,41,14,0,1,2,0.0,0,BB,CHE,Direct,TA/TO,0,0,0,E,E,0,No Deposit,10.0,179.0,0,Transient,90.93,0,0,Check-Out,Tina Berry,carsonashley@example.org,779-892-5181,3597189718003498,2024-07-31 +City Hotel,0,151,2017,May,18,3,2,0,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,155.78,0,0,Check-Out,Robert Morris,oelliott@example.org,529.237.8761,371877259269258,2026-02-08 +Resort Hotel,0,13,2017,April,15,6,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,112.83,1,2,Check-Out,Jesse Bishop,hartmannicholas@example.org,001-456-505-6878x5286,3506797326607466,2024-05-25 +City Hotel,0,11,2017,December,50,13,2,2,3,0.0,0,BB,PRT,Complementary,TA/TO,0,0,0,D,K,0,No Deposit,9.0,179.0,0,Transient,3.26,0,0,Check-Out,Martin Miller,jasminechapman@example.org,001-678-627-8577x73589,180087582827274,2024-09-29 +Resort Hotel,1,18,2017,April,15,10,4,10,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,131.26,0,1,Canceled,Sean Andrews,blakedavid@example.com,423.910.6148x6417,342545818958887,2025-08-22 +Resort Hotel,0,0,2017,May,22,29,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,167.6,0,1,Check-Out,Michelle Bennett,cmonroe@example.com,765.710.1206x300,30419095959314,2024-12-05 +Resort Hotel,1,206,2017,June,23,5,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,41.33,0,0,Canceled,Steven Johnson,tara76@example.com,7164655134,6523763574373310,2024-11-30 +Resort Hotel,1,385,2017,June,23,4,0,2,2,0.0,0,HB,ISR,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,130.57,0,3,Canceled,Kenneth Durham,john31@example.org,304-903-9558x72981,4326243828095054,2024-06-08 +City Hotel,0,109,2017,August,34,20,0,2,3,0.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,252.0,0,1,Check-Out,Jennifer Robertson,meredithhoward@example.com,+1-539-560-5206x96150,3535555187813143,2025-06-26 +City Hotel,0,21,2017,December,52,29,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,E,A,1,No Deposit,26.0,179.0,0,Transient-Party,92.49,1,0,Check-Out,Derek Green,faith69@example.com,601-440-3405x78332,30053446304217,2025-11-07 +City Hotel,0,10,2017,May,19,6,1,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,98.9,0,2,Check-Out,Rebecca Poole,joylopez@example.org,(620)337-1303,2240394748208421,2025-10-25 +City Hotel,0,3,2017,August,32,8,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.75,0,0,Check-Out,Christopher Nguyen,lespinoza@example.net,(683)771-4193x38504,3523156931272860,2024-07-18 +Resort Hotel,0,231,2017,October,40,4,2,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Contract,62.72,0,0,Check-Out,Daniel Grimes,mitchellnicole@example.net,245-491-9492,3599582864530132,2024-07-14 +Resort Hotel,0,154,2017,May,18,3,1,5,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,302.0,179.0,0,Transient,82.41,0,1,Check-Out,David Giles,kellytammy@example.org,(790)565-6423x0339,6581125130558363,2024-09-15 +City Hotel,0,51,2017,December,51,18,2,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,116.35,0,1,Check-Out,Nicholas Nelson,sullivanrachel@example.net,001-601-274-2951x18442,4457513114439815,2024-07-26 +Resort Hotel,0,233,2017,September,39,26,2,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,2.0,221.0,0,Transient-Party,74.48,0,0,Check-Out,Michael Burnett,jensenchristine@example.org,252-455-9786,180000839396159,2025-05-14 +Resort Hotel,0,256,2017,May,19,6,0,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,249.0,179.0,0,Transient-Party,225.86,1,2,Check-Out,Duane Pearson,ggutierrez@example.com,(404)278-5128,4405820270463577,2024-04-09 +City Hotel,1,256,2017,May,18,1,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,108.95,0,0,Canceled,Patrick Guerra,wjohns@example.net,001-427-690-2697,3579645749727191,2026-01-16 +Resort Hotel,0,0,2017,August,32,7,0,2,1,1.0,0,BB,PRT,Complementary,Direct,1,0,0,A,I,0,No Deposit,12.0,179.0,0,Transient,2.58,0,0,Check-Out,Dr. Madeline Aguirre,brianwagner@example.com,321.666.1371x659,4368410681776,2024-09-04 +City Hotel,0,9,2017,November,45,6,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.86,0,1,Check-Out,Leslie Smith,ashley63@example.org,330.266.3351,2713384683059077,2025-01-05 +City Hotel,0,2,2017,January,3,17,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,54.53,0,2,Check-Out,Brandon Matthews,allen49@example.org,488.979.5607,30061206535458,2025-12-06 +City Hotel,0,34,2017,May,21,24,0,1,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,0,Transient,125.71,0,0,Check-Out,John Sharp,robin63@example.com,+1-277-854-9169,4057273038618697,2026-03-15 +City Hotel,0,37,2017,November,45,5,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,96.77,0,1,Check-Out,Jon Douglas,mcguireerika@example.org,(416)809-4860,345716360214196,2025-09-21 +City Hotel,1,108,2017,October,40,1,0,4,2,1.0,0,BB,BEL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,175.46,0,2,Canceled,James Butler,marcpayne@example.com,001-308-638-0069x459,4780875487810003651,2024-09-20 +Resort Hotel,0,14,2017,April,17,26,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Check-Out,David Williams,rmoore@example.org,+1-536-768-8452x51215,6593724827407284,2024-09-26 +City Hotel,1,146,2017,June,22,2,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,72.43,0,0,Canceled,Dean Vaughn,andreaharris@example.net,001-770-383-7415x3953,4985344931496,2025-04-08 +Resort Hotel,0,182,2017,July,29,15,4,5,2,0.0,0,HB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,85.31,0,0,Check-Out,Karen Cannon,lkrause@example.net,7816342886,4725127632428,2025-12-18 +City Hotel,0,2,2017,February,8,24,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,B,C,0,No Deposit,16.0,45.0,0,Transient,1.66,0,0,Check-Out,Jacob Scott,dunnbrian@example.net,(561)751-4302x1212,4107900753699,2025-07-18 +City Hotel,0,60,2017,March,10,4,1,1,1,1.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.67,0,0,Check-Out,David Morris,johndunn@example.net,(228)556-0349,4287848893292,2025-06-05 +City Hotel,0,1,2017,February,6,4,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,102.33,0,2,Check-Out,Jessica Martin,ebell@example.com,001-464-245-5626x1618,36714430634653,2025-02-12 +City Hotel,1,328,2017,March,12,21,0,5,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,A,0,Non Refund,14.0,179.0,0,Transient,128.95,0,2,Canceled,Joseph Fletcher,mollyvega@example.org,571-470-6973x53295,4523446174735097,2024-12-19 +City Hotel,0,2,2017,December,50,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,84.76,0,1,Check-Out,Thomas Hughes,nrobbins@example.com,819-416-4177,676215689693,2024-06-20 +City Hotel,0,46,2017,October,40,3,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,2.0,179.0,0,Transient-Party,104.98,0,1,Check-Out,John Casey,bonnie93@example.org,568.534.5352x04396,370080079294504,2024-12-20 +City Hotel,0,81,2017,March,12,20,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,2,No Deposit,17.0,67.0,0,Transient,88.86,1,0,Check-Out,Laura Johnston,mccallalison@example.org,430-872-6766x255,3593375924406666,2024-09-27 +Resort Hotel,0,19,2017,April,14,5,2,4,2,0.0,0,BB,,Groups,Direct,0,0,0,A,A,2,No Deposit,13.0,179.0,0,Transient,54.04,0,0,Check-Out,Anna Moore,fostersharon@example.org,876-705-1132,30573346333149,2025-01-30 +Resort Hotel,1,27,2017,October,40,3,1,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,227.68,0,3,Canceled,Darrell Peters,alicialee@example.net,817-719-6309x295,36598419322111,2025-10-30 +City Hotel,1,176,2017,July,29,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,60.89,0,0,Canceled,Edward Stephens,marissanolan@example.com,+1-276-538-0400x82272,343581108118881,2024-05-14 +City Hotel,1,124,2017,October,43,25,0,3,2,0.0,0,SC,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,101.54,0,0,Canceled,Lisa Sellers,gwatts@example.com,2629508879,4529020578542369,2025-01-17 +Resort Hotel,1,95,2017,August,35,29,1,2,2,2.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,G,G,0,No Deposit,12.0,179.0,0,Transient,105.52,1,0,Check-Out,Eric Hicks,cheryl06@example.com,637-533-6086x173,3582528808667422,2025-02-20 +City Hotel,1,414,2017,September,37,13,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,109.38,0,1,Canceled,Jennifer Graham,amber24@example.com,805-804-8487x06352,213150458007131,2024-06-04 +City Hotel,0,17,2017,August,35,30,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,240.0,179.0,0,Transient,206.33,0,0,Check-Out,Jasmine Wood,rachel39@example.com,001-652-375-9655x62230,6565233774177233,2024-10-07 +City Hotel,0,9,2017,September,36,6,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.73,1,1,Check-Out,Linda Edwards,juliechavez@example.net,(750)725-9319,3523555628511821,2025-12-27 +City Hotel,0,11,2017,August,31,1,0,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,D,1,No Deposit,13.0,179.0,0,Contract,233.82,0,1,Check-Out,Michael Knight,adamwilliams@example.org,548.714.0450,3581366439666369,2024-12-11 +City Hotel,0,3,2017,July,30,24,0,1,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Group,99.95,0,2,Check-Out,Joel Richardson,dgill@example.org,001-892-511-8029,213123446643168,2025-05-15 +City Hotel,0,11,2017,January,3,20,0,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,33.0,179.0,0,Contract,39.34,0,0,Check-Out,Pamela Martin,keith62@example.net,+1-766-758-3964x2540,36717498178356,2025-02-14 +City Hotel,0,9,2017,January,3,19,0,3,2,2.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,192.18,0,1,Check-Out,Andrew Miller,lukepatterson@example.com,(761)860-0476x668,372985157283781,2025-01-15 +City Hotel,1,191,2017,June,24,13,2,2,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,128.5,1,1,Check-Out,Brandi Salazar,hobbsnicholas@example.org,(806)779-5986,180006591384655,2025-08-14 +City Hotel,0,106,2017,August,35,27,2,5,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,138.65,0,0,Check-Out,Allison Davis,angela68@example.com,(859)927-7997x2765,4042262932076677025,2025-06-22 +City Hotel,0,53,2017,August,35,27,0,2,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,221.5,0,1,Check-Out,Jeffrey Watkins,mjohnston@example.net,+1-210-452-9643x8368,6572418837164796,2024-12-25 +Resort Hotel,0,108,2017,December,50,9,1,4,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient-Party,75.94,0,0,Check-Out,Carolyn Garcia,kingmichael@example.org,493.383.4550x116,349551616719763,2026-02-23 +City Hotel,1,0,2017,December,50,9,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,278.0,0,Transient,4.43,0,0,Canceled,Judy Waters,ryan88@example.com,322.461.2533,6534657411549560,2025-11-27 +City Hotel,1,153,2017,March,13,27,2,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,112.83,0,2,Canceled,Eric Scott,vcampbell@example.com,415-573-9568x0253,676370778000,2025-08-17 +Resort Hotel,0,43,2017,February,6,6,0,5,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,C,0,No Deposit,140.0,179.0,0,Transient-Party,43.83,1,0,Check-Out,Joseph Taylor,pjordan@example.com,321.378.4778,6011830636423570,2025-10-17 +City Hotel,0,51,2017,April,15,8,1,4,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.18,0,3,Check-Out,Yesenia Nunez,austin97@example.net,(905)521-3214,6011230754314661,2026-03-26 +City Hotel,0,50,2017,March,11,10,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,11.0,179.0,0,Transient,110.62,0,1,Check-Out,Heather Bryant,moniquefrey@example.org,001-278-715-7950x178,4051769952142710104,2025-05-10 +Resort Hotel,1,12,2017,March,12,19,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,Non Refund,238.0,179.0,0,Transient,48.99,0,0,Canceled,Christine Rodriguez,michelle46@example.com,(411)433-7258,6011887490860974,2026-02-04 +Resort Hotel,0,1,2017,March,11,15,2,0,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,1,No Deposit,33.0,179.0,0,Transient-Party,37.35,1,1,Check-Out,Toni Hernandez,james61@example.com,001-323-907-6364,3582678472120453,2024-11-02 +City Hotel,1,111,2017,May,21,25,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,Refundable,8.0,179.0,0,Transient,83.59,0,0,Canceled,Michael Perez,jeremyballard@example.net,914-203-5227,4589993622453,2024-08-26 +City Hotel,0,120,2017,August,31,3,2,0,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,13.0,179.0,0,Transient-Party,0.5099000000000001,0,1,Check-Out,Mark Price Jr.,justinhopkins@example.com,001-424-843-8174,503861162553,2025-11-25 +City Hotel,1,146,2017,February,8,17,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,16,Transient,100.89,0,0,Canceled,David Jimenez,james25@example.org,(853)601-4022,4536701267527,2025-05-28 +Resort Hotel,1,152,2017,April,18,29,0,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,A,1,No Deposit,13.0,179.0,0,Transient,79.79,1,0,Canceled,Leslie Clark,lindseymaxwell@example.net,+1-559-643-2884,6554201348128613,2025-04-04 +Resort Hotel,1,25,2017,July,29,21,0,3,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,159.0,179.0,0,Transient,252.0,1,0,Canceled,Melanie Velez,rogersalexis@example.net,(307)669-5707x175,4996841784200433,2025-12-15 +Resort Hotel,1,11,2017,November,45,6,0,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,237.0,179.0,0,Transient,226.52,0,1,Check-Out,Joseph Oneill,mossroberto@example.net,392.665.0725,3571532790431154,2026-01-06 +City Hotel,0,30,2017,June,27,29,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.04,0,1,Check-Out,Erica Doyle,audrey29@example.com,(948)761-3283,2678244204634795,2024-06-24 +City Hotel,0,80,2017,November,45,9,2,3,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,93.87,0,1,Check-Out,Barbara Nelson,scott34@example.net,+1-682-412-5923x1956,3525497156161000,2024-06-22 +City Hotel,0,6,2017,November,45,9,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,83.18,0,1,Check-Out,Danielle Noble,jasmine15@example.net,577.531.0717,4761770558538756,2024-11-15 +City Hotel,1,89,2017,May,20,18,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,239.0,179.0,0,Transient,83.65,0,0,Canceled,Joshua Martinez,medinalauren@example.net,001-505-331-2678x93510,4689943137493,2024-08-22 +City Hotel,0,19,2017,July,29,22,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,66.0,179.0,0,Transient,64.88,0,0,Check-Out,Aaron Fernandez,cody54@example.net,868-969-6678x90920,3565940313122739,2024-08-09 +City Hotel,0,407,2017,February,6,3,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient-Party,102.79,0,1,Check-Out,Peter Cross,madisonfitzgerald@example.net,447-294-5437,4955460934245120,2025-08-11 +City Hotel,0,10,2017,March,13,23,0,4,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,178.0,179.0,0,Transient,132.62,1,2,Check-Out,Dennis Wilson,lopezdalton@example.net,721-809-6509x888,372286814522517,2025-07-23 +Resort Hotel,0,0,2017,March,11,17,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,43.44,1,2,Check-Out,Elizabeth Moore,williamsnicholas@example.net,697.421.8892,180039462307364,2026-02-16 +City Hotel,1,382,2017,July,30,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,Non Refund,15.0,179.0,0,Transient,137.87,0,0,Canceled,Stacey Williams,hmckinney@example.net,975.680.3186x06916,4812881134824807114,2026-01-23 +City Hotel,0,54,2017,June,24,8,0,4,1,1.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,1,No Deposit,14.0,179.0,0,Transient,137.49,1,3,Check-Out,Jane Lee,robert92@example.org,+1-887-347-7759x277,4809280979827563145,2025-10-18 +Resort Hotel,0,26,2017,August,33,13,4,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Group,4.53,0,1,Check-Out,Evelyn Tucker,laura77@example.com,001-623-767-3867,4328001494088,2025-12-20 +Resort Hotel,0,0,2017,May,22,25,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,247.0,179.0,0,Transient,56.19,1,2,Check-Out,Ashlee Huber,jean60@example.org,(853)847-2864x316,4019378192578549433,2025-03-20 +Resort Hotel,0,16,2017,August,34,23,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,252.0,0,1,Check-Out,Kendra Smith,ashley15@example.net,001-893-753-5770x815,346200860475895,2024-11-15 +Resort Hotel,1,146,2017,March,13,31,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient-Party,79.38,0,0,Canceled,Kenneth Meyer,escobardebbie@example.org,265.755.8139x93215,4646195709915441,2024-06-26 +City Hotel,0,169,2017,July,27,5,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,128.27,0,1,Check-Out,Gregory Burton,crawforddaniel@example.org,6636150341,4450968529175,2026-02-25 +Resort Hotel,0,18,2017,August,32,6,2,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,243.0,179.0,0,Transient,50.68,0,1,Check-Out,Mary White,davislinda@example.org,(891)485-2766x295,213194709245579,2025-05-29 +City Hotel,1,143,2017,March,11,17,0,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,68.53,0,0,Canceled,Jasmine Allen,freemanmichael@example.org,450.940.0707x64969,060434702472,2025-05-28 +City Hotel,1,47,2017,August,33,12,1,3,2,0.0,0,HB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,180.27,0,0,Canceled,Sean King,marywilson@example.com,(456)280-4114,501895433537,2025-06-16 +Resort Hotel,0,3,2017,March,11,11,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,1,C,C,1,No Deposit,10.0,179.0,0,Transient,221.53,0,1,Check-Out,Jonathan Brown,smorrison@example.net,885-798-2479x26557,38545711507624,2025-08-12 +Resort Hotel,0,1,2017,December,51,17,1,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,0,No Deposit,12.0,236.0,0,Transient,45.72,0,0,Check-Out,Theresa Sanders,matthewsscott@example.com,941-922-6900,180082024839771,2024-12-12 +Resort Hotel,0,9,2017,October,41,12,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,11.0,179.0,0,Group,43.01,0,2,Canceled,Erik Kelly,gabrielle51@example.com,8222899563,630460016268,2025-08-07 +City Hotel,0,49,2017,August,33,12,0,3,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.9,0,1,Check-Out,Cynthia Parker,christopher67@example.com,(463)760-4778x36489,213110192647030,2026-01-15 +City Hotel,0,103,2017,June,23,5,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,84.86,0,0,Check-Out,Jimmy Cox,simmonscatherine@example.org,(348)474-7241,213104083122443,2025-11-02 +City Hotel,0,194,2017,July,30,22,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,108.38,0,1,Canceled,Megan Martinez,johnmartinez@example.com,001-383-755-9701,4017933514010,2025-02-08 +Resort Hotel,0,7,2017,November,46,17,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient,43.45,0,0,Check-Out,Stephen Lawrence,taylorharrell@example.org,428-781-4828x991,3579809996411855,2026-03-14 +Resort Hotel,0,2,2017,January,2,7,0,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,14.0,179.0,0,Transient,37.97,0,3,Check-Out,Mark Patterson,rharrison@example.com,852.559.4490,4281174359323254757,2024-10-31 +Resort Hotel,0,0,2017,May,21,19,0,3,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,2,No Deposit,244.0,179.0,0,Transient,239.55,1,0,Check-Out,Joshua Evans,omar77@example.com,+1-271-404-6952x63422,3527807763358419,2024-06-01 +Resort Hotel,0,48,2017,April,15,9,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,364.0500000000011,179.0,0,Transient,90.44,0,0,Check-Out,Brian Johnson,waltersgregory@example.com,238-910-5270x998,2401001136630356,2024-04-12 +Resort Hotel,0,56,2017,August,32,8,2,4,2,2.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,239.0,179.0,0,Transient,230.8,0,1,Check-Out,Paul Stone,hannasteven@example.net,962-210-0642x2300,4636750794617674,2025-10-30 +City Hotel,0,2,2017,October,42,20,1,0,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,81.18,0,1,Check-Out,Sandra Maxwell,rfoster@example.net,(846)391-1777x0052,6557056237223561,2024-08-20 +City Hotel,0,210,2017,June,23,4,1,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.08,0,3,Check-Out,Alexander Ward,orodriguez@example.net,+1-923-692-8030x0074,3502054931045870,2024-10-15 +Resort Hotel,1,2,2017,January,2,10,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Transient,35.53,0,0,Canceled,Madison Lewis,johnsondiana@example.com,4757851872,4292300910885311,2024-06-25 +City Hotel,0,27,2017,November,45,9,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,182.26,0,2,Check-Out,Jennifer Kim,johnfrye@example.org,001-397-807-0924,676118960282,2025-10-25 +City Hotel,1,106,2017,November,45,9,0,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,83.36,0,0,Canceled,Emily Martinez,davidfreeman@example.org,682-861-6744,2230008565164184,2025-03-29 +Resort Hotel,0,20,2017,March,12,16,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,311.0,179.0,0,Transient-Party,53.42,1,0,Check-Out,Anthony Newton,jacksonamber@example.net,001-266-349-7732x692,2292299624314937,2024-12-29 +City Hotel,1,68,2017,January,3,13,1,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Victor Atkinson MD,courtney98@example.org,+1-431-411-2747x91262,4119434020005630866,2026-02-08 +City Hotel,0,20,2017,November,46,16,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Contract,113.9,0,2,Check-Out,George Phillips,edward43@example.net,761.580.1305x832,675986094737,2024-10-22 +Resort Hotel,1,97,2017,March,10,7,2,5,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,109.88,0,0,Canceled,Cody Walker,nicholas29@example.net,971.793.1916x0293,4962068223418919,2024-11-22 +Resort Hotel,0,41,2017,May,22,29,1,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,G,2,No Deposit,13.0,179.0,0,Transient,140.61,1,2,Check-Out,William Zhang,hfernandez@example.com,539.495.4819x3427,349895067544760,2025-02-08 +City Hotel,0,414,2017,October,43,26,2,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,90.1,0,0,Check-Out,Michael Parks,josephdavis@example.com,001-221-768-4813,4914918151687,2025-12-17 +City Hotel,0,28,2017,March,10,3,1,1,2,1.0,0,BB,BRA,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,88.92,1,1,Check-Out,Kristi Wilson,ginalozano@example.org,+1-939-971-9588x46894,3525371589070312,2026-03-26 +City Hotel,0,35,2017,October,40,6,1,0,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Group,81.48,0,0,Check-Out,Amanda Daniels,michael74@example.com,(321)970-1018x49184,4013290311308559,2024-08-16 +City Hotel,0,0,2017,August,35,30,1,1,2,1.0,0,BB,ESP,Direct,Direct,0,0,0,B,D,0,No Deposit,14.0,179.0,0,Transient,243.9,0,1,Check-Out,Timothy Rasmussen,qroberts@example.net,373.577.1648,4380846355699032,2026-03-22 +City Hotel,0,15,2017,October,44,29,1,3,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.59,0,0,Check-Out,Allison Johnson,anthony69@example.com,418-416-6716x544,213177250381513,2024-05-31 +Resort Hotel,0,27,2017,April,16,13,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,16.0,331.0,0,Transient,48.69,0,0,Check-Out,Jonathan Frye,tuckerchristian@example.org,001-912-891-4097x648,180018234683799,2024-10-16 +Resort Hotel,0,1,2017,March,12,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,H,0,No Deposit,242.0,179.0,0,Transient,64.07,1,0,Check-Out,Samantha Davis,johnhobbs@example.org,001-518-827-7997x9612,30033129147893,2026-03-10 +Resort Hotel,1,136,2017,April,16,18,2,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,135.28,0,3,Canceled,Jennifer Hampton,morenodavid@example.org,(396)909-7614,4096673472169297323,2025-11-15 +Resort Hotel,0,94,2017,June,26,27,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,139.86,0,1,Check-Out,Adam Buckley,velasquezlisa@example.com,927.266.0177,6011970574685101,2026-03-20 +City Hotel,0,153,2017,March,12,17,2,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,0,Transient,121.89,0,0,Check-Out,Teresa Hicks,christopherharding@example.org,(808)336-0499x021,503851830268,2025-10-26 +Resort Hotel,0,2,2017,April,17,21,0,2,3,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Transient,137.16,1,2,Check-Out,Tara Carson,jkhan@example.net,+1-733-587-0435,3519046273668070,2025-07-05 +City Hotel,0,122,2017,April,16,13,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.85,1,2,Check-Out,Jessica Johnson,mcknighthannah@example.net,(738)934-1331,6512072604960895,2025-04-09 +City Hotel,0,42,2017,October,41,8,1,1,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,37.4,0,0,Check-Out,Courtney Patel,estesnicholas@example.org,(390)625-9956x21924,3507920792224728,2025-01-17 +Resort Hotel,1,188,2017,June,23,2,4,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,37.0,179.0,0,Transient,120.58,0,0,Canceled,Katherine Kramer,ashley53@example.net,+1-965-848-7109,4354026056803756831,2025-05-12 +Resort Hotel,1,144,2017,July,30,23,2,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Canceled,Amanda Kirk,michaelmccarty@example.org,(506)914-8829x3111,4031416944677,2025-11-19 +City Hotel,0,37,2017,February,8,21,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,1,No Deposit,15.0,75.0,0,Transient-Party,42.42,0,2,Check-Out,Ian Gonzalez,josephgonzales@example.com,982-470-1213x9943,676354309681,2024-11-20 +Resort Hotel,0,39,2017,December,49,4,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,242.0,179.0,0,Transient,137.63,0,1,Check-Out,Diana Mccarty,foleyrebecca@example.net,609-558-5612,3598671287737589,2024-12-19 +City Hotel,0,1,2017,May,21,21,1,1,2,0.0,0,BB,PRT,Complementary,Direct,1,1,0,E,C,2,No Deposit,11.0,45.0,0,Transient,0.5099000000000001,0,1,No-Show,Kelly Mendoza,james32@example.net,224.907.7286,213132025990262,2024-04-02 +City Hotel,0,85,2017,October,43,24,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,147.63,0,1,Check-Out,Shawn Wright,njacobson@example.net,001-821-287-3919x71514,4379509475044124,2025-05-05 +City Hotel,0,1,2017,April,17,28,0,2,1,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,123.1,0,1,Check-Out,Daniel Freeman,cardenasjulie@example.org,(499)221-0949,370461411661529,2024-04-09 +City Hotel,0,39,2017,March,9,2,0,2,3,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,1,No Deposit,72.0,179.0,0,Transient-Party,128.53,0,1,Check-Out,Mikayla Smith,sheila35@example.org,001-664-336-8809x006,30464665073534,2025-10-14 +City Hotel,0,82,2017,March,13,27,2,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,42,Transient,108.67,0,0,Check-Out,Gabrielle Hall,ericajohnson@example.org,551-986-6206x45701,6011680248999214,2025-08-13 +City Hotel,1,68,2017,August,35,29,0,2,1,0.0,0,BB,IRL,Corporate,Corporate,0,0,0,A,A,0,Non Refund,11.0,216.0,0,Transient,63.39,0,0,Canceled,Kelly Duncan,ryan86@example.org,001-499-741-1299,6011316889562264,2024-11-30 +City Hotel,1,107,2017,December,52,23,1,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,106.84,0,0,Canceled,Alan Harris,vgill@example.com,748.771.3538x0439,3532307290036706,2025-01-15 +City Hotel,0,48,2017,January,2,5,1,4,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,104.59,1,2,Check-Out,Amanda Smith,benjamin11@example.com,794-900-2949x788,3547087573616001,2025-01-02 +City Hotel,0,14,2017,March,12,21,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,71.54,0,0,Check-Out,Lisa Gray,shawnhancock@example.net,(251)782-2923x21357,4423926310404410031,2024-12-06 +City Hotel,1,166,2017,May,19,9,1,5,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,80.0,179.0,0,Transient,124.03,0,0,Canceled,Susan Ross,handerson@example.org,001-334-530-2349,379203099947130,2025-07-25 +City Hotel,1,63,2017,April,15,7,1,4,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,133.82,0,0,Canceled,Katherine Romero,balljustin@example.org,(995)606-8071,30471109199312,2024-04-10 +City Hotel,0,164,2017,July,27,4,0,1,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,64,Transient-Party,137.85,0,0,Check-Out,Jackson Gomez,kellymiller@example.com,(902)803-3174x03618,4535757341220938,2026-01-20 +City Hotel,0,51,2017,March,11,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,25.0,179.0,0,Transient,41.73,0,1,Check-Out,Mark Davis,stokessteven@example.com,001-511-207-4963x596,675933540634,2024-11-22 +City Hotel,1,24,2017,April,14,3,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,0,Transient,81.22,0,0,Canceled,Stephanie Charles,pperez@example.com,001-738-252-1802x36757,345694309747453,2025-10-25 +Resort Hotel,0,141,2017,March,11,15,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,45.63,0,0,Check-Out,Taylor Davis,rhobbs@example.org,5186085207,6011953330254206,2026-03-18 +Resort Hotel,1,145,2017,July,31,31,4,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,206.22,0,0,No-Show,Rick Taylor,michaeljackson@example.org,8326965731,4459887316856606951,2024-06-11 +City Hotel,0,0,2017,August,32,9,0,4,2,0.0,0,BB,PRT,Complementary,Undefined,0,0,0,B,B,0,No Deposit,15.0,179.0,0,Transient-Party,77.19,1,1,Check-Out,Jason Woods,stephanie23@example.net,(658)980-5836x92638,180054028781309,2024-04-03 +City Hotel,0,48,2017,February,9,29,1,1,2,1.0,0,BB,RUS,Online TA,TA/TO,0,0,1,G,A,0,No Deposit,11.0,179.0,0,Transient,98.65,0,0,Check-Out,Samantha Soto,villegasmichael@example.org,001-279-257-5289,4341322581798,2025-02-27 +Resort Hotel,1,68,2017,July,28,9,3,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,137.0,179.0,43,Transient,50.95,0,0,Canceled,Angie Mason,hurleytaylor@example.com,390-401-1017,38314552499791,2025-03-09 +Resort Hotel,1,89,2017,April,17,26,2,4,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,Non Refund,236.0,179.0,0,Transient,247.33,0,0,Canceled,Stephen Newman,lisamiller@example.org,001-982-438-6824x21182,3584729058938103,2024-11-30 +City Hotel,1,160,2017,July,29,15,1,3,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.56,0,0,Canceled,Donald Garcia,hatfieldjohn@example.net,(727)247-1755x079,3555616099899292,2026-03-03 +City Hotel,0,13,2017,November,45,5,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,118.73,0,1,Check-Out,Mary Woods,erika04@example.net,(979)428-3401,4571183090509675,2025-09-11 +City Hotel,1,153,2017,October,41,9,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,88.0,179.0,18,Transient,101.02,0,0,Canceled,Yolanda Watkins,matthew75@example.com,+1-790-900-8429x939,5494934625044930,2025-09-07 +City Hotel,1,315,2017,October,42,19,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,A,0,Non Refund,80.0,179.0,0,Transient,81.01,0,0,Canceled,Deborah Watson,kmoore@example.net,001-988-810-7091x090,4319123595498,2024-08-30 +Resort Hotel,1,17,2017,December,51,19,0,3,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,246.0,179.0,0,Transient,54.24,0,0,Canceled,Patrick Davis MD,gcobb@example.org,(745)310-6099x3367,5266250338338352,2025-04-16 +City Hotel,1,117,2017,September,36,9,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,80.45,0,0,Canceled,Andrea Cox,max70@example.org,(507)431-6336x55777,30113835669248,2026-03-22 +City Hotel,0,0,2017,October,40,3,0,1,1,0.0,0,SC,,Corporate,Corporate,0,0,0,P,P,1,No Deposit,17.0,264.0,0,Transient,5.87,0,0,Check-Out,Christopher Howard,umartin@example.net,(337)992-7357,574702902556,2024-06-27 +City Hotel,0,50,2017,March,9,1,1,3,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,89.84,0,1,Check-Out,Danny Clark,markroman@example.net,3809163584,30377154817973,2025-05-16 +City Hotel,0,86,2017,September,36,3,1,0,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient-Party,110.26,0,1,Check-Out,David Charles,tcox@example.com,(678)727-5930,4424025872779,2025-08-13 +Resort Hotel,0,13,2017,August,34,19,0,4,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,240.0,179.0,0,Transient,0.5099000000000001,1,0,Check-Out,Lisa Williamson,paulmcdonald@example.org,725-477-1263,4586257644106222614,2026-02-06 +Resort Hotel,0,0,2017,December,52,25,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,74.46,0,1,Check-Out,Ronald Mullins,kimberlywatkins@example.com,4339717135,4891033988419,2025-04-10 +Resort Hotel,1,313,2017,March,14,30,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,12.0,179.0,0,Transient-Party,103.04,0,0,Canceled,Caroline Thompson,kayla49@example.net,606-551-6432x3631,6011384141625634,2024-08-20 +Resort Hotel,0,1,2017,May,21,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,14.0,220.0,0,Transient,57.83,0,2,Check-Out,Andrea Anderson,brandy71@example.com,291-338-8301,4029738314504,2025-12-25 +Resort Hotel,0,1,2017,June,26,24,1,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,139.97,0,1,Check-Out,Ricky Price,atate@example.com,8539845399,6011899603175174,2025-12-20 +Resort Hotel,1,2,2017,December,49,4,2,2,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,1,Canceled,Spencer Brooks,briansavage@example.org,+1-474-512-7957x71114,373574206389333,2024-11-11 +City Hotel,1,17,2017,December,50,13,0,3,2,0.0,0,BB,PRT,Direct,TA/TO,0,1,0,E,E,0,Non Refund,33.0,179.0,0,Transient,191.46,0,0,Canceled,Vanessa Ruiz,jamielee@example.com,+1-216-385-6820x3232,676132959260,2025-04-24 +Resort Hotel,0,0,2017,December,49,4,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,H,0,No Deposit,239.0,179.0,0,Transient-Party,51.29,0,0,Canceled,Edward Davis,hallmichelle@example.com,(816)840-9310,4405399884110,2025-07-22 +City Hotel,1,11,2017,December,52,25,2,2,3,0.0,0,BB,PRT,Complementary,Direct,0,0,0,E,E,1,No Deposit,14.0,179.0,75,Transient,105.41,0,0,Canceled,Emily Mitchell,simmonsjoann@example.org,+1-297-693-2660x66563,2266390102385143,2025-01-12 +Resort Hotel,0,13,2017,March,13,28,2,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,F,B,1,No Deposit,10.0,179.0,0,Transient,85.9,0,1,Check-Out,William Thompson,bjackson@example.net,(562)592-5502x1771,2222714874727625,2024-12-24 +Resort Hotel,0,88,2017,April,15,9,0,1,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,310.0,179.0,0,Transient-Party,99.92,0,0,Check-Out,Dawn Mccullough,dillonmary@example.net,(286)434-7637x07435,3581551505242597,2025-05-13 +City Hotel,0,159,2017,April,17,24,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,13.0,179.0,0,Transient,109.87,0,3,Check-Out,Angela Mckinney,david74@example.net,+1-297-441-3403,4728982507720466,2024-10-10 +City Hotel,0,18,2017,August,34,22,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,259.0,179.0,0,Contract,63.4,0,0,Check-Out,Matthew Tanner,clee@example.org,001-365-997-9802x821,3540862425952649,2024-11-26 +Resort Hotel,0,0,2017,January,2,10,0,7,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,246.0,179.0,0,Transient,216.9,1,3,Check-Out,Mrs. Misty Sweeney,xwhite@example.net,841.651.3581x2429,4992689564758838582,2025-01-04 +City Hotel,0,0,2017,March,10,6,1,0,1,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,331.0,0,Transient,3.7,1,0,Check-Out,Christina Castillo,qross@example.net,001-266-459-2481x69086,676395167007,2025-10-31 +City Hotel,0,0,2017,March,11,9,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,166.0,179.0,0,Transient,52.88,0,0,Check-Out,Mark Warren,alexandersusan@example.net,263-533-0307,4103681396121928,2024-09-26 +City Hotel,0,0,2017,April,16,21,0,2,1,0.0,0,BB,PRT,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,173.0,0,Transient,3.16,0,0,Check-Out,Kevin Sweeney,madeline05@example.org,(905)575-1122,180050030560004,2024-10-06 +Resort Hotel,0,20,2017,August,34,23,4,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,117.11,0,1,Check-Out,Stephanie Greene,samanthaadams@example.org,333-798-5737x585,6011196502875016,2024-12-07 +Resort Hotel,0,29,2017,March,10,9,2,5,1,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,40.75,1,1,Check-Out,Christian Marks,isilva@example.net,(743)658-4510,6568771154149394,2024-05-30 +City Hotel,1,282,2017,December,50,10,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,11.0,179.0,0,Transient,131.25,0,1,Canceled,Melissa Martinez,matthewharris@example.org,+1-699-221-2552x1683,4431729148081948788,2024-12-12 +City Hotel,1,414,2017,November,44,3,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,109.43,0,0,Canceled,Elizabeth Torres,evanspatrick@example.net,779-445-5344,370390142281432,2025-06-05 +City Hotel,1,51,2017,September,39,24,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,123.77,0,2,Canceled,Rachel Smith,anthonyclark@example.com,(770)670-1638,6011462757838335,2025-10-03 +Resort Hotel,0,0,2017,September,37,13,3,0,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,C,G,0,No Deposit,245.0,179.0,0,Transient,1.51,1,1,Check-Out,Shane Clark,agomez@example.com,(653)486-5095,4503466241660726,2024-09-30 +Resort Hotel,0,20,2017,March,12,19,1,2,1,1.0,0,HB,ESP,Groups,Corporate,0,0,0,A,I,2,No Deposit,29.0,222.0,0,Transient-Party,40.24,0,0,Check-Out,Lindsey Boyd,finleybrandy@example.org,529.732.5503,3525486501194725,2025-10-25 +City Hotel,0,0,2017,January,4,24,2,3,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,6.0,179.0,0,Transient,114.53,0,2,Check-Out,Scott Palmer,heather31@example.net,531.449.9682x05487,36695616193780,2026-03-14 +Resort Hotel,0,284,2017,October,40,7,2,1,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,311.0,179.0,0,Contract,81.49,0,1,Check-Out,Sarah Lozano,janice09@example.net,596-329-3715,4066581826374,2025-08-05 +City Hotel,0,3,2017,October,43,27,1,2,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,83.94,0,1,Check-Out,Nicole Crawford,johnflores@example.org,+1-296-281-5760x72022,30528884222195,2025-12-23 +Resort Hotel,0,29,2017,March,12,19,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,42.14,0,2,Check-Out,Jeremy Ortega,jennifer13@example.org,(215)959-5061x75028,3544840858177179,2025-12-10 +City Hotel,1,312,2017,August,34,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,121.61,0,2,Canceled,Theodore Raymond,aaron46@example.net,932-589-6128,4183769328823548,2024-11-10 +Resort Hotel,1,148,2017,August,34,25,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,D,D,1,Non Refund,77.0,179.0,0,Transient,64.03,0,0,Canceled,Daniel Hopkins,wthompson@example.net,(576)411-1953,5164993030847971,2024-07-24 +City Hotel,0,29,2017,May,20,12,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,80.97,0,1,Check-Out,John Hudson,natasha29@example.org,001-982-653-5586,2270616528691050,2026-03-20 +City Hotel,0,2,2017,February,8,17,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,92.97,0,0,Check-Out,Latoya Wright,martinezdavid@example.org,+1-565-267-1173x46746,4467751694230,2025-05-03 +Resort Hotel,0,6,2017,June,26,28,4,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,178.14,1,1,Check-Out,Benjamin Strickland,dgardner@example.net,(336)668-7185x4592,30500060156505,2024-09-13 +Resort Hotel,1,298,2017,August,34,17,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,8.0,179.0,0,Transient,87.07,0,2,Canceled,Christopher Jones,francoalbert@example.org,(236)536-4899,4562215124589202799,2024-07-30 +Resort Hotel,0,16,2017,December,49,3,0,2,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,33.0,331.0,0,Transient-Party,85.15,0,0,Check-Out,Kim Bell,cameronmitchell@example.net,367.699.1328x16184,4771556785306550936,2024-05-31 +City Hotel,1,329,2017,September,35,1,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,113.0,0,0,Canceled,Heather Fernandez,patrick50@example.net,001-721-274-1031x62830,3500417373358428,2025-12-07 +City Hotel,0,145,2017,March,11,9,0,3,2,1.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,130.53,0,2,Check-Out,Craig Salinas,chelseamorales@example.net,(603)860-3384,3568903464416786,2025-05-26 +City Hotel,0,0,2017,November,44,3,0,1,2,0.0,0,BB,ESP,Corporate,Corporate,0,0,0,A,D,0,No Deposit,13.0,240.0,0,Transient-Party,62.28,0,0,Check-Out,Kelsey Cruz,ncook@example.org,5586838306,4682123154227365671,2025-11-11 +City Hotel,0,9,2017,January,2,1,1,1,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,83.0,0,1,Check-Out,Kristen Thompson,jennifer31@example.net,+1-780-961-4340x354,4684887883467,2024-08-30 +City Hotel,0,102,2017,November,45,5,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,128.95,0,0,Check-Out,Todd Garcia,forbesdylan@example.net,(984)418-5327x298,213125927572477,2026-02-04 +City Hotel,0,155,2017,July,31,30,2,2,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,1,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Check-Out,Kevin Page,armstrongmatthew@example.org,+1-546-583-0768x3488,213151905666297,2024-06-05 +Resort Hotel,0,39,2017,September,39,26,2,5,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,263.0,179.0,0,Transient-Party,77.43,0,0,Check-Out,Nathan Johnston,aprice@example.com,(775)408-9095x959,3508872588167778,2025-05-04 +Resort Hotel,1,139,2017,June,22,2,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,246.13,0,1,Canceled,Heidi Smith,shawdaniel@example.org,+1-704-745-1171x97443,30232664260067,2025-07-20 +City Hotel,0,158,2017,August,34,25,1,4,2,1.0,0,BB,CHE,Direct,Direct,0,0,0,C,E,1,No Deposit,17.0,179.0,0,Transient,246.94,1,0,Check-Out,James Hopkins,taylorjames@example.net,632.985.5165x247,2238245491101433,2025-05-27 +Resort Hotel,0,2,2017,February,7,13,0,1,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,1,G,D,0,No Deposit,242.0,179.0,0,Transient,37.78,0,1,Check-Out,Roy Miller,duncancarol@example.org,(507)528-6366x911,4186141460895303,2025-02-03 +City Hotel,0,131,2017,March,12,19,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,104.7,0,1,Check-Out,Cindy Moore,gomezmegan@example.net,(719)235-1950,4921656637503500422,2025-09-15 +Resort Hotel,1,0,2017,June,24,16,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,252.0,0,0,Canceled,Samuel Lopez,roberthale@example.net,488.666.5841x353,2228559711356904,2025-02-25 +City Hotel,0,46,2017,April,17,25,1,4,2,1.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,114.59,0,2,Check-Out,Ebony Ramirez,tcooke@example.com,416.626.6776x826,6525948434547413,2025-06-29 +City Hotel,1,61,2017,May,19,9,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,135.23,0,0,Canceled,Jessica Kim,juanmunoz@example.net,989-356-2160,2272785962000983,2026-03-06 +City Hotel,0,0,2017,September,38,23,2,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,110.19,0,0,Check-Out,Greg Hill,david80@example.org,+1-649-259-5612x72855,4300506593511046,2024-06-13 +City Hotel,0,55,2017,March,13,27,1,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,194.13,0,0,Check-Out,Jacqueline Santos,ghouse@example.com,001-404-521-0049x5322,3592356450500255,2025-02-26 +Resort Hotel,0,40,2017,May,18,2,4,6,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,149.0,0,1,Check-Out,Mrs. Theresa Todd MD,umcdonald@example.net,(889)477-2000,4541877636372,2025-04-15 +City Hotel,1,49,2017,June,24,12,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,139.49,0,0,Canceled,George Joyce,lisa81@example.com,001-827-377-3954,4013317810660,2025-02-04 +City Hotel,0,106,2017,July,29,13,0,2,3,1.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,80.0,179.0,0,Transient-Party,132.21,0,0,Check-Out,Joy Wood,ryanchristian@example.org,470-774-3450x0856,4960621018359128,2026-02-22 +City Hotel,0,11,2017,November,46,12,0,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,14.0,224.0,0,Transient,65.06,0,0,Check-Out,Tina Watson,ylopez@example.net,967.425.1967x2359,213186611150558,2024-10-20 +Resort Hotel,0,10,2017,December,52,29,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,126.0,179.0,0,Transient,89.5,0,2,Check-Out,Jennifer Huynh,lauramarshall@example.org,561-388-2920x03296,6521195676688372,2024-05-09 +Resort Hotel,0,0,2017,October,43,23,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,139.0,179.0,0,Transient,64.42,1,1,Check-Out,Rachael Rogers,ianbrown@example.com,+1-817-306-9758,501866074161,2024-08-11 +Resort Hotel,0,9,2017,May,19,5,1,4,1,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient-Party,41.87,0,0,Check-Out,Anna Gonzales,swise@example.net,(801)550-2198x25219,501884313732,2024-04-29 +City Hotel,0,0,2017,August,33,13,0,3,2,0.0,0,BB,,Complementary,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,0.6,0,1,Check-Out,Jasmine Moore,mcgeeamber@example.net,+1-628-639-1686,4321898605734,2025-03-19 +City Hotel,0,14,2017,August,32,5,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,197.11,0,0,Check-Out,Jessica Macdonald,woodcolleen@example.org,977-832-1255,2293857690847111,2025-09-26 +Resort Hotel,0,0,2017,March,12,18,0,3,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,1,No Deposit,245.0,179.0,0,Transient,45.22,0,0,Check-Out,Brandon Mays,npatel@example.org,495.558.8900x8545,3517952379904503,2025-07-29 +City Hotel,1,107,2017,August,31,1,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,211.15,0,0,Canceled,Caitlin Donaldson,beardjames@example.net,+1-712-714-8542x08369,4632850717105,2026-02-05 +Resort Hotel,1,162,2017,June,26,23,3,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,241.0,179.0,0,Transient,224.98,0,1,Canceled,Beth Estes,leeroberto@example.net,8444510321,4426785494827,2025-03-19 +City Hotel,1,163,2017,June,24,13,1,1,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,121.03,0,0,Canceled,Rebecca Rivera,victoriaortega@example.com,(552)483-0629x054,2286409341415440,2025-06-26 +Resort Hotel,0,0,2017,May,18,1,1,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,18.0,179.0,0,Transient,216.86,1,0,Check-Out,Kristy Mccarthy,kelli72@example.com,340-637-0612x20290,501870577993,2025-06-20 +Resort Hotel,0,2,2017,February,6,7,2,0,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,72.96,0,1,Check-Out,James Sparks,pamelacuevas@example.com,(392)295-4114x1274,213100833146559,2024-05-29 +Resort Hotel,0,2,2017,September,39,28,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,63.3,1,0,Check-Out,Annette Stanley,brett27@example.com,958-249-1174x0743,2473825150126781,2026-02-28 +Resort Hotel,0,171,2017,August,32,12,1,2,2,0.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,115.97,0,0,Check-Out,Debra Smith,amycrawford@example.com,895.317.8929x2425,3530643498803253,2026-01-12 +City Hotel,0,30,2017,May,19,5,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,131.56,0,1,Check-Out,Molly Holmes,brittanyrosario@example.org,725.773.2957x8868,4643092433271971272,2024-12-10 +City Hotel,1,161,2017,March,13,31,2,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,A,0,Non Refund,93.0,179.0,0,Transient,80.66,0,0,Canceled,Alexis Alvarado,charlesoliver@example.org,+1-380-320-6883x477,4037537877707322765,2026-02-20 +Resort Hotel,0,3,2017,June,25,17,0,3,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,233.62,0,2,Check-Out,Christopher Harrington,jacob72@example.org,(281)219-8402x246,4854507884994702232,2024-11-10 +Resort Hotel,1,91,2017,July,28,6,4,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,249.0,179.0,0,Transient,124.88,0,0,Canceled,Paige Sanders,lorihenry@example.com,(808)622-6107x069,4206211206173137,2024-11-16 +City Hotel,0,57,2017,August,33,14,0,3,3,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,170.1,0,2,Check-Out,Louis Johnson,torresdaniel@example.org,+1-941-547-8306x3291,30559960535309,2025-05-27 +City Hotel,1,20,2017,August,32,8,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient-Party,240.39,0,0,Canceled,Julie Weaver,castillodaniel@example.net,001-425-786-8357,4060416100876043478,2024-12-31 +City Hotel,0,15,2017,March,13,24,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,G,E,0,No Deposit,25.0,179.0,0,Transient-Party,61.32,0,0,Check-Out,Erin Johnston,josephthomas@example.net,482-466-8484x25257,675947945399,2025-02-24 +Resort Hotel,1,17,2017,April,17,23,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,241.0,179.0,0,Transient,172.77,0,2,Canceled,Brian Hawkins,jonesmark@example.com,6063766132,2389472959446558,2024-03-28 +City Hotel,0,54,2017,June,26,23,2,0,2,0.0,0,BB,AUT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,159.67,0,2,Check-Out,Dr. Matthew Mills MD,heather96@example.net,+1-399-937-4144,3502114628083863,2024-11-17 +City Hotel,1,414,2017,June,23,3,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,121.22,0,0,Canceled,Jermaine Green,dhoward@example.org,+1-360-633-4827x045,6011609943680738,2024-10-03 +Resort Hotel,0,1,2017,July,30,26,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,L,0,No Deposit,12.0,179.0,0,Transient,80.05,0,0,Check-Out,Melanie Henderson,leoncarrillo@example.net,2469023847,180027776229887,2025-11-18 +Resort Hotel,0,1,2017,February,8,18,1,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,236.0,179.0,0,Transient,56.43,1,1,Check-Out,Mr. Frank Kennedy,patricia22@example.com,(896)567-3562,4020029424692694,2025-12-31 +Resort Hotel,1,44,2017,July,27,3,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,241.0,179.0,0,Transient,127.7,1,0,Canceled,Kelly Jordan,mooreluis@example.com,340.504.8372,30397538419395,2025-06-19 +City Hotel,1,19,2017,March,13,27,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,99.7,0,2,Canceled,Ronald Nichols Jr.,abuckley@example.org,651-864-2479x1443,3517108482125243,2024-05-18 +Resort Hotel,0,291,2017,September,38,19,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,137.0,179.0,0,Contract,44.06,0,2,Check-Out,Christopher Harris,oliviacastro@example.com,794-758-5288,341715193091346,2024-10-31 +City Hotel,1,372,2017,August,35,30,1,6,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,99.35,0,2,Canceled,Tara Richardson,vevans@example.org,299-507-3229,4463401101053157,2026-01-04 +City Hotel,0,45,2017,October,40,3,0,2,3,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,170.69,0,1,Check-Out,Holly Salazar,deleonaaron@example.com,001-608-938-5300x8879,2334282513361177,2026-03-19 +City Hotel,0,396,2017,August,31,2,0,2,3,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,110.7,0,0,Check-Out,Andrea Callahan,holdertimothy@example.org,(944)878-6273,4740168931085213,2024-12-10 +City Hotel,0,6,2017,October,42,16,0,7,1,0.0,0,BB,GBR,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,65.0,0,Transient,50.59,0,0,Check-Out,Donna Lyons,ybarber@example.com,+1-387-243-9420,4621938761508665851,2025-09-10 +Resort Hotel,0,2,2017,October,43,22,1,2,2,1.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,306.0,179.0,0,Transient,121.97,0,0,Check-Out,Teresa Ross,melaniedavis@example.org,468-459-2897x066,4609585239131525397,2024-12-27 +City Hotel,0,3,2017,July,28,6,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,135.91,1,0,Check-Out,Kristin Davis,paul53@example.com,+1-897-368-3246x1311,3573733416862511,2025-01-23 +Resort Hotel,0,24,2017,June,23,5,4,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,245.46,1,1,Check-Out,Margaret Miller,bettyporter@example.com,345.532.5256x821,4864962552768120876,2024-07-22 +City Hotel,0,1,2017,March,13,31,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,11.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Patricia Henry,qking@example.org,+1-608-447-4603,213129414585661,2024-05-24 +Resort Hotel,0,16,2017,May,19,12,2,7,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,245.0,179.0,0,Transient,64.96,1,1,Check-Out,Katherine Nelson,laura63@example.org,(338)930-7218,4112571195139,2026-01-11 +Resort Hotel,0,30,2017,June,27,30,4,4,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,247.0,179.0,0,Transient,137.77,0,0,Check-Out,Kristin Flores DDS,ulawson@example.com,(489)374-1770x84877,3505303860096264,2025-04-23 +City Hotel,0,2,2017,September,37,12,1,0,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,221.0,0,Transient-Party,65.19,0,0,Check-Out,Jennifer Jenkins,eddiecarroll@example.net,891-783-4214x45415,573465870885,2024-09-13 +City Hotel,1,158,2017,July,30,26,0,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,116.2,0,1,Canceled,Matthew Dominguez,qolson@example.org,210.356.4373x506,4387987969588345041,2024-11-27 +City Hotel,1,343,2017,October,41,13,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,0,Transient,88.09,0,0,Canceled,Eugene Johnson,michaelhall@example.net,957.642.3211x94780,3500184588811357,2026-01-16 +City Hotel,0,85,2017,April,16,19,2,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,0,Transient-Party,77.48,0,0,Check-Out,William Beltran,matthew42@example.org,(828)363-8093x5270,503837397903,2025-11-24 +Resort Hotel,1,101,2017,March,10,7,0,4,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,Refundable,12.0,222.0,75,Transient-Party,62.79,0,0,Canceled,Donna Lopez,dblevins@example.net,(649)996-4648x615,5475483117902661,2024-07-25 +City Hotel,0,44,2017,October,40,7,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,63,Transient-Party,88.97,0,0,Check-Out,Craig Valdez,castropatrick@example.com,354-515-2255x771,4264858080953428045,2025-01-02 +City Hotel,1,414,2017,May,21,23,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,30.0,179.0,0,Transient,81.6,0,0,Canceled,Leah Cooper,rodriguezheidi@example.org,287.396.7719x44779,3595300085750528,2025-11-09 +City Hotel,0,161,2017,July,30,20,0,2,2,1.0,0,BB,PRT,Direct,Direct,1,0,1,A,B,1,No Deposit,13.0,179.0,0,Transient,119.68,0,3,Check-Out,Daniel Merritt,uwhite@example.net,+1-930-874-0057x250,38190279572494,2024-11-28 +City Hotel,0,14,2017,August,31,2,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,8.0,179.0,0,Transient,220.22,0,2,Check-Out,Sabrina Marshall,brendahoward@example.net,747.891.1315x7727,30521649904538,2025-12-25 +Resort Hotel,0,48,2017,March,13,23,2,5,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,76.75,1,1,Check-Out,Jay Werner,stephanie23@example.org,001-283-387-4003x620,3512583312838261,2025-04-03 +Resort Hotel,0,132,2017,July,27,6,2,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,80.0,179.0,0,Transient,118.68,0,2,Check-Out,Mario Jackson,snyderlisa@example.com,(931)927-1805x694,180063865172753,2025-01-20 +Resort Hotel,0,0,2017,February,6,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,16.0,86.0,0,Transient,46.86,0,0,Check-Out,Mark Brown,marilynwhite@example.com,(562)343-7354,630478335197,2024-06-11 +Resort Hotel,0,142,2017,October,42,19,3,6,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,152.4,1,0,Check-Out,Philip Stokes,bthomas@example.com,868-517-0986x82587,3512992713003005,2025-04-11 +City Hotel,0,159,2017,June,23,2,3,3,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,154.0,179.0,0,Transient,98.22,0,2,Check-Out,Megan Lopez,bhart@example.net,(851)295-9961,4389569144775531447,2024-05-06 +City Hotel,1,171,2017,July,29,13,2,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,8.0,179.0,0,Transient,171.47,0,0,Canceled,Brian Phillips,marcuslong@example.com,400.947.5656x96691,4437264233933,2024-06-06 +Resort Hotel,1,177,2017,August,31,1,2,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,C,F,0,No Deposit,321.0,179.0,0,Transient,132.89,0,0,Canceled,Travis Williams,bcline@example.org,+1-753-239-2452x2347,2265928177454806,2024-11-10 +City Hotel,1,12,2017,January,4,24,0,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,99.0,0,0,No-Show,James Lyons,hmorgan@example.net,900.605.0361x30817,4138782832032809,2026-03-14 +City Hotel,0,69,2017,May,18,5,1,4,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,104.05,0,1,Check-Out,Thomas Thomas,christinenewman@example.org,6443859801,3562125976660729,2024-11-14 +Resort Hotel,1,15,2017,April,14,3,0,3,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,250.0,179.0,0,Transient,184.06,0,0,Canceled,Caitlyn Bailey,rachel35@example.org,669-996-5235x96230,4599402250259,2025-07-20 +City Hotel,0,13,2017,October,43,24,2,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,B,0,No Deposit,32.0,179.0,0,Transient-Party,76.51,0,0,Check-Out,Rachel Dawson,edwardsnathaniel@example.com,654.932.6845x158,213115738340891,2024-12-16 +Resort Hotel,0,11,2017,July,30,28,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,69.0,179.0,0,Transient,202.47,0,0,Check-Out,Jeffery Wilson,qlong@example.com,537.372.6563,213143408058403,2025-01-10 +Resort Hotel,1,412,2017,September,38,21,0,2,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient,101.87,0,0,Canceled,Keith Gates,cmay@example.com,001-853-307-9542x610,213106649011945,2025-03-02 +Resort Hotel,0,1,2017,March,13,29,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,E,1,No Deposit,17.0,331.0,0,Transient,55.9,0,0,Check-Out,Mike Anderson,greenebreanna@example.net,990.777.6577,3519820796041027,2026-02-10 +Resort Hotel,1,196,2017,July,27,4,2,5,2,2.0,0,HB,,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,246.0,179.0,0,Transient,242.91,0,1,Canceled,Rebecca Williams,mark12@example.org,274.269.4235,340854019523512,2025-06-05 +Resort Hotel,0,0,2017,May,20,19,0,6,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,228.0,179.0,0,Transient,52.75,0,1,Check-Out,Jacob Hill,oreynolds@example.com,(851)572-2127,180030161948541,2024-09-11 +City Hotel,1,146,2017,December,51,16,1,2,2,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,124.98,0,1,Canceled,Alexis Hurley,timothy28@example.net,735.845.1368,30580555052443,2024-12-27 +City Hotel,0,22,2017,September,37,15,0,3,2,0.0,0,HB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,108.3,0,0,Check-Out,Dr. David Morris II,daniel57@example.com,360-237-1132,342759140521707,2024-05-30 +Resort Hotel,1,119,2017,July,27,4,1,4,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,214.56,0,1,Canceled,Jade Kramer,hroach@example.org,632.766.6765x2699,4543930422961260862,2024-12-05 +City Hotel,1,234,2017,June,24,12,0,4,2,1.0,0,HB,DEU,Online TA,TA/TO,0,0,1,G,G,1,No Deposit,12.0,179.0,0,Transient,103.41,0,3,Canceled,Amy Hunter,woodsteven@example.org,001-442-217-7891x7499,6574906720342063,2025-05-12 +City Hotel,0,56,2017,May,20,11,2,4,2,1.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,113.21,0,1,Check-Out,Christina Robbins,andrew26@example.net,+1-365-541-6363,3551957693738914,2025-03-11 +City Hotel,1,2,2017,July,27,8,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient,64.02,0,1,Canceled,Brenda Green,brianna36@example.net,001-634-635-2249x6971,3568174308359422,2026-03-21 +City Hotel,1,93,2017,June,25,17,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,136.24,0,0,Canceled,Jeremy Eaton,rmorton@example.com,001-720-713-8776,180016763596408,2024-06-09 +City Hotel,1,160,2017,April,15,9,2,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,68.0,179.0,41,Transient,157.7,0,0,Canceled,Kent Barnes,jonathan96@example.com,(728)270-0732x6457,349983299813938,2026-03-13 +City Hotel,1,0,2017,April,15,9,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,136.0,179.0,75,Transient,43.55,0,0,No-Show,Edwin Griffin,chelseashannon@example.net,4394442171,675929163680,2025-05-05 +Resort Hotel,0,315,2017,March,13,26,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,304.0,260.0,0,Transient-Party,38.19,1,0,Check-Out,Angela Silva,masonadrienne@example.org,001-380-479-1849x490,4190625084335,2026-01-28 +Resort Hotel,1,221,2017,August,31,2,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,199.67,0,1,Canceled,Terry Pitts,blewis@example.net,988-979-6607x78580,4334380987669178,2024-07-16 +City Hotel,1,3,2017,July,29,17,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,140.1,0,0,Canceled,Michael Mills,gaineskristi@example.com,513.743.5173,213103838268568,2024-07-31 +City Hotel,1,11,2017,March,10,9,0,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,A,1,No Deposit,12.0,191.0,0,Transient,114.42,0,0,Canceled,Amanda Fischer,fjimenez@example.org,+1-945-579-2051x987,3583234334235722,2025-09-06 +Resort Hotel,0,47,2017,July,29,19,4,7,2,0.0,0,BB,CN,Direct,Direct,0,0,0,E,E,0,No Deposit,42.0,179.0,0,Transient,85.38,0,0,Check-Out,Aaron Schwartz,christinamiller@example.net,3253903512,378667429959695,2026-02-23 +Resort Hotel,0,92,2017,September,37,12,0,2,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,247.0,179.0,0,Transient,61.18,0,0,Check-Out,Kimberly Page,thomasjohnson@example.net,+1-638-800-8790,30202931163535,2025-02-24 +Resort Hotel,0,4,2017,March,13,27,0,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,C,1,Refundable,11.0,223.0,0,Transient-Party,28.73,0,0,Check-Out,Laura Hart DVM,kingkevin@example.com,937-879-0119x1112,180092114691545,2025-08-14 +City Hotel,1,9,2017,January,2,5,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,81.93,0,1,Canceled,Randall Pugh MD,haley99@example.org,710.960.6963x4057,3550322571807243,2024-12-16 +City Hotel,1,370,2017,October,40,1,2,4,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,19,Transient,84.41,0,0,Canceled,Benjamin Contreras,woodsadam@example.org,+1-777-628-9947x41054,4245583331578304447,2025-05-04 +Resort Hotel,0,7,2017,March,9,2,0,3,1,1.0,0,BB,,Direct,Direct,1,0,0,G,G,1,No Deposit,250.0,179.0,0,Transient,212.65,1,0,Check-Out,Elizabeth Thompson,unichols@example.org,+1-924-969-4808x3411,6011110737450099,2024-07-09 +Resort Hotel,0,113,2017,July,27,4,2,5,2,0.0,0,Undefined,ESP,Groups,Direct,0,0,0,A,A,1,No Deposit,15.0,179.0,0,Transient-Party,2.0,0,0,Check-Out,David Williams,corey06@example.org,2355308366,4946366644024358403,2026-01-27 +Resort Hotel,1,134,2017,July,30,22,2,2,2,1.0,0,HB,AUT,Offline TA/TO,TA/TO,0,0,0,G,G,1,No Deposit,240.0,179.0,0,Transient,252.0,0,3,Canceled,Lisa Robinson,imiller@example.net,001-590-899-7805x16019,30418590114052,2025-04-16 +Resort Hotel,0,93,2017,April,15,12,2,5,1,0.0,0,Undefined,DEU,Groups,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,99.53,0,0,Check-Out,Alex Lewis,denise87@example.org,(711)761-4051x109,4037727295188,2024-12-06 +Resort Hotel,0,196,2017,September,37,16,2,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,G,1,No Deposit,239.0,179.0,0,Transient,161.25,0,0,Check-Out,Matthew Baker,oyoung@example.org,673.291.1032,4830043111151369,2025-01-02 +City Hotel,0,0,2017,February,6,5,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,76.31,0,0,Check-Out,Kevin Duarte,dennis73@example.net,223-955-5746,371911035611978,2025-09-16 +Resort Hotel,0,0,2017,May,22,29,1,2,3,1.0,0,BB,NLD,Direct,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,219.45,0,0,Check-Out,Ricardo Gross,myersmichelle@example.org,372-673-5885x20120,4235753157708,2024-06-26 +City Hotel,1,333,2017,August,32,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,102.57,0,0,Canceled,Alexander Lawrence,marcus15@example.net,001-425-845-0338x658,3549989352515957,2025-01-21 +City Hotel,1,295,2017,August,35,30,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,1,0,A,A,0,Non Refund,13.0,179.0,0,Contract,94.79,0,0,Canceled,Michael Palmer,goodmanhaley@example.net,2749078202,4442328260845964,2024-08-28 +Resort Hotel,0,0,2017,May,19,12,2,0,1,0.0,0,BB,POL,Aviation,Corporate,0,0,0,D,D,0,No Deposit,14.0,170.0,0,Transient,94.34,0,0,Check-Out,Joshua Young,susan30@example.net,001-720-314-1924x118,6011093101161486,2026-03-01 +City Hotel,1,9,2017,January,5,27,1,1,1,0.0,0,SC,PRT,Online TA,GDS,0,0,0,A,A,0,Non Refund,159.0,179.0,0,Transient,115.21,0,0,Canceled,Allen Bryant,tlee@example.com,001-383-796-7567x323,4685811775698800,2025-04-18 +Resort Hotel,0,1,2017,December,51,16,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,C,2,No Deposit,290.0,179.0,0,Transient,63.15,0,0,Check-Out,Joshua Pierce,rebecca25@example.com,618-378-7551,2282816016935128,2025-03-09 +Resort Hotel,0,1,2017,April,16,16,0,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,247.0,179.0,0,Transient,53.06,0,0,Check-Out,Andrew Rivera,davidsonrobert@example.com,(879)418-0342x95591,6011529491656890,2025-09-07 +City Hotel,1,365,2017,October,41,9,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,64,Transient,93.88,0,0,Canceled,Haley Clarke PhD,wolson@example.com,(719)364-9330,30420153662915,2024-05-15 +Resort Hotel,0,40,2017,May,22,26,2,5,2,0.0,0,HB,RUS,Groups,TA/TO,0,0,0,A,A,2,No Deposit,318.0,179.0,0,Transient-Party,129.56,0,0,Check-Out,Johnny Howard,beckymathis@example.net,+1-239-415-5143x22425,213155306815247,2026-03-06 +Resort Hotel,1,5,2017,December,51,22,3,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Contract,47.91,0,0,Canceled,Kimberly Mckinney,martinjudy@example.org,985-398-3194,30385634087273,2024-05-01 +City Hotel,1,169,2017,June,26,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,64.0,179.0,43,Transient,108.17,0,0,Canceled,Yvonne Davis,melissapalmer@example.com,7625966411,213189854293515,2025-05-12 +City Hotel,1,46,2017,June,26,27,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,199.21,0,0,No-Show,Diana Arnold,jasmineweber@example.net,+1-661-891-0297x9995,180031211923211,2025-12-06 +City Hotel,1,330,2017,October,40,5,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,61.89,0,0,Canceled,Elizabeth Rios,shane73@example.com,001-810-454-4425,4556308011136,2025-11-07 +City Hotel,0,15,2017,July,30,20,2,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,100.46,0,0,Check-Out,Spencer Jackson,gregory47@example.org,979.720.2118,4712200209719852,2024-07-08 +City Hotel,0,1,2017,April,17,26,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,D,0,No Deposit,9.0,179.0,0,Transient-Party,47.38,0,0,Check-Out,Joshua Waller,walkerrobin@example.com,462-503-1180x658,4312470136263,2025-07-11 +City Hotel,1,145,2017,May,22,30,0,3,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient,133.61,0,1,Canceled,Robert Smith,maryjensen@example.net,+1-493-343-1665x5449,6011124306631732,2025-11-02 +Resort Hotel,0,0,2017,November,44,2,0,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,C,0,No Deposit,240.0,179.0,0,Transient,47.7,0,1,Check-Out,Tyler Davis,hmccoy@example.net,711-597-5630x716,581335302138,2024-06-14 +City Hotel,1,414,2017,July,27,5,2,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient-Party,194.91,0,0,Canceled,Sarah Graves,katherinelopez@example.com,697-820-7991x9150,4410390422209,2025-06-15 +Resort Hotel,0,0,2017,July,27,6,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,121.06,1,1,Check-Out,Mr. Ivan Meyers,mjohnson@example.org,7428494013,4680818583477983,2025-01-30 +Resort Hotel,0,1,2017,January,2,9,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,53.95,0,1,Check-Out,Rebecca Rocha,sorozco@example.org,292.554.9117,6011349173575908,2024-04-01 +City Hotel,1,51,2017,July,28,9,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,131.34,0,0,Canceled,Jennifer Leon,jameswashington@example.com,001-996-304-8813x936,5233985726217342,2025-12-11 +Resort Hotel,1,89,2017,June,23,9,2,1,3,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,116.7,0,0,Canceled,Debra Johnson,courtney00@example.net,679-663-5831x986,4785485001332820,2024-04-11 +City Hotel,1,39,2017,November,48,28,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,90.0,179.0,21,Transient,77.72,0,0,Canceled,Michael Cochran,christopher14@example.com,(695)419-6799x89083,3580449334172286,2026-03-04 +Resort Hotel,0,24,2017,June,26,22,1,2,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,2,No Deposit,249.0,179.0,0,Transient,85.19,0,2,Check-Out,Mark Padilla,xmurray@example.org,(662)911-4600x838,6011019721085979,2024-12-16 +Resort Hotel,0,55,2017,August,35,26,2,5,3,2.0,0,HB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,225.59,0,3,Check-Out,Sandra Garcia DDS,wrightpriscilla@example.net,+1-313-656-4313x67214,30051524742332,2024-05-14 +Resort Hotel,0,279,2017,May,20,12,2,1,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,239.0,179.0,0,Transient,131.66,1,1,Check-Out,James Singh,fpowers@example.net,(863)864-8373x976,2290573045911527,2025-02-10 +City Hotel,0,0,2017,December,49,4,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,16.0,262.0,0,Transient,5.28,0,0,Check-Out,Todd Ross,fieldsderrick@example.com,714.673.4362x40195,3589802794903072,2024-10-02 +Resort Hotel,0,0,2017,February,6,9,2,0,1,0.0,0,SC,BEL,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,11.0,179.0,0,Transient,1.1,0,1,Check-Out,Michelle Ortiz,hernandezlaura@example.org,508.837.8385x7651,4289486963099944875,2024-11-02 +City Hotel,1,196,2017,September,39,25,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,82.0,179.0,0,Transient,110.84,0,0,Canceled,James Nelson,dsmith@example.org,609-442-5911x176,4962208060738728,2024-10-26 +City Hotel,0,108,2017,June,25,17,2,3,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.15,0,0,Check-Out,Albert Williams,kanebelinda@example.org,001-479-834-3177,5470492046144902,2024-06-28 +City Hotel,1,107,2017,December,48,1,0,2,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,100.97,0,0,Canceled,Richard Jones,dawsonkyle@example.org,001-954-787-5217x8996,4275905043312106586,2025-06-04 +City Hotel,0,154,2017,June,25,20,0,4,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,123.78,0,1,Check-Out,Kevin Campbell,kelly77@example.net,859.348.8037x7188,180090626459096,2024-03-28 +City Hotel,0,50,2017,March,11,9,1,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,104.61,0,1,Check-Out,Kevin Burgess,ablackwell@example.org,+1-511-661-9226x181,568717803932,2024-05-03 +City Hotel,0,19,2017,October,41,10,2,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient,94.35,0,0,Check-Out,April Cooper MD,scottrivera@example.org,934.450.3148x12161,4518355631664542,2024-07-19 +City Hotel,0,2,2017,June,26,27,2,4,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.21,0,2,Check-Out,Jeanette Hernandez,davenportcaitlin@example.net,001-296-308-0017,4984026381275566,2024-08-10 +City Hotel,1,99,2017,July,31,31,0,2,2,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,39,Transient-Party,133.7,0,2,Canceled,Jennifer Martinez,lbradley@example.com,682-393-4001x966,6521494443196094,2025-07-08 +Resort Hotel,1,10,2017,April,17,24,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,1,0,Canceled,Carrie Hill,cory79@example.org,(929)530-1349x3704,38068243693036,2026-03-26 +Resort Hotel,1,152,2017,February,6,5,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,169.0,179.0,0,Contract,45.15,0,0,Canceled,Mrs. Rachael Lara DDS,crystalpatterson@example.com,(656)619-8665x5135,4884263933188440,2025-12-02 +Resort Hotel,0,69,2017,September,36,8,2,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,148.0,179.0,0,Transient-Party,205.03,0,0,Check-Out,Scott Hudson,ofowler@example.com,(348)961-4502,3515838655511041,2025-05-09 +Resort Hotel,0,87,2017,November,47,23,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,33.0,179.0,0,Contract,63.42,0,1,Check-Out,Thomas Parker,valentinecraig@example.com,(851)718-1617x3058,4451521958877,2024-11-10 +Resort Hotel,0,1,2017,December,50,14,0,4,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,A,H,1,No Deposit,241.0,179.0,0,Transient,112.15,0,0,Check-Out,Alan Ramos,jaguilar@example.com,001-236-488-6151x7950,3549753644606713,2024-07-17 +Resort Hotel,0,190,2017,April,15,9,1,1,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,168.0,179.0,0,Transient-Party,108.08,0,0,Check-Out,Monique Alvarez,timothycook@example.org,983.399.6183,3574925147494882,2026-01-12 +City Hotel,1,1,2017,December,49,8,0,1,2,0.0,0,Undefined,PRT,Complementary,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,0,Transient,0.5099000000000001,0,0,Canceled,Angela Graham,adamcampbell@example.net,+1-918-794-1985,30457207429412,2024-04-04 +City Hotel,0,136,2017,March,11,14,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,1,0,1,D,D,0,No Deposit,8.0,179.0,0,Transient,108.65,0,1,Check-Out,Douglas Hernandez,brandonfields@example.net,+1-969-319-6300,676223936631,2025-08-08 +Resort Hotel,0,0,2017,January,2,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,39.06,1,1,Check-Out,Dawn Farley,deaton@example.com,001-958-988-0443x6861,30221037028376,2024-04-10 +City Hotel,1,98,2017,April,16,20,0,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,140.27,0,0,Canceled,Alexander Douglas,fwalker@example.org,464-572-0392,6568367885890750,2025-10-21 +City Hotel,0,27,2017,October,42,12,0,3,1,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,9.0,179.0,0,Transient,92.5,0,0,Check-Out,Sharon Sheppard,marypowell@example.org,(804)427-4749x480,36479865716959,2025-04-15 +City Hotel,0,65,2017,August,34,23,2,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,169.05,0,2,Check-Out,Samantha Harper,ogarrett@example.org,892.643.6297x89821,4516757282208,2025-03-02 +City Hotel,0,0,2017,January,2,4,0,1,1,0.0,0,BB,BRA,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,76.94,0,1,Check-Out,Alexandra Brown,jburke@example.net,8357380354,3543623098825448,2025-02-11 +Resort Hotel,0,115,2017,March,10,9,2,1,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,364.0500000000011,179.0,0,Transient-Party,106.25,0,0,Check-Out,Connie Elliott,owang@example.com,767.273.4231,4493864289574831845,2024-12-21 +City Hotel,0,54,2017,June,23,4,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,221.26,0,1,Check-Out,Brian Francis,ksmith@example.org,(301)270-9339x75265,676296539825,2024-04-09 +City Hotel,0,19,2017,August,32,8,0,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,1,No Deposit,8.0,179.0,0,Transient,244.69,0,3,Check-Out,Brenda Burns,gholland@example.net,667.575.7574,2255448601793937,2025-02-13 +City Hotel,0,0,2017,February,6,4,1,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,B,0,No Deposit,17.0,221.0,0,Transient-Party,39.21,0,0,Check-Out,Steven Wade,nguyenemily@example.com,217.295.8594x0257,4305581572942418,2026-01-25 +Resort Hotel,0,8,2017,September,37,15,0,1,1,1.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,E,D,0,No Deposit,275.0,179.0,0,Transient,0.5099000000000001,1,2,Check-Out,Bethany Anderson,bcruz@example.org,001-728-791-0434x67640,30419662234257,2025-11-01 +City Hotel,0,39,2017,May,21,22,1,4,2,0.0,0,BB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,135.36,1,1,Check-Out,Rebecca Wolf,wdavis@example.com,505.813.3460x77737,2255511638255962,2025-04-11 +City Hotel,0,92,2017,June,24,16,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,22.0,179.0,0,Transient-Party,115.7,0,1,Check-Out,Stephen Williams,lisasmith@example.net,2887671192,4376994067668,2025-08-05 +Resort Hotel,0,3,2017,October,41,8,2,4,2,0.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient-Party,100.33,0,1,Check-Out,Samuel Bullock,james81@example.com,548-657-8256x609,180080573747585,2025-10-22 +Resort Hotel,0,95,2017,April,17,23,2,4,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,137.61,0,0,Check-Out,Heather Martin,stacey09@example.com,252.582.2277,4030366489693789,2025-10-06 +Resort Hotel,0,20,2017,January,2,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,E,0,No Deposit,250.0,179.0,0,Transient,56.25,0,1,Check-Out,Daniel Campbell,rodneylee@example.net,(350)548-8361x0254,3532803829276292,2025-02-28 +Resort Hotel,1,154,2017,July,27,3,4,6,3,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,232.23,1,0,No-Show,Michele Steele,valerie53@example.org,370.375.8170,4736921424152205,2025-01-26 +Resort Hotel,0,242,2017,May,19,4,4,7,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,312.0,179.0,0,Transient,134.87,0,1,Check-Out,Jason Foster,kpetersen@example.com,395.307.5432x423,4496712282802845,2024-04-22 +Resort Hotel,1,94,2017,December,50,13,0,2,2,0.0,0,Undefined,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,71.09,0,1,Canceled,Angela Mason,hornelaura@example.net,+1-865-540-6707x714,4718177485457999,2025-05-17 +City Hotel,0,53,2017,July,27,4,2,5,2,1.0,0,BB,CN,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,129.43,0,3,Check-Out,Brenda Knapp,brianmiller@example.net,842-763-3557x43389,4738026729003946907,2024-09-05 +Resort Hotel,0,8,2017,October,41,8,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,187.0,179.0,0,Transient,2.65,0,0,Check-Out,David Villa,hchandler@example.net,833-649-6104,2235634539831916,2026-01-20 +City Hotel,0,39,2017,September,36,7,0,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,134.01,0,1,Check-Out,Mark Salazar MD,tblake@example.org,350.398.6377x3832,4807998220433397,2024-08-04 +City Hotel,1,44,2017,October,42,17,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,34.0,179.0,0,Transient,103.02,0,0,Canceled,John Kline,jrobertson@example.net,(595)783-8598x3346,30272981744294,2024-08-03 +City Hotel,1,220,2017,December,51,22,0,2,2,0.0,0,BB,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,79.04,0,0,Canceled,Jason Gray,williamfitzgerald@example.org,7613945716,4560206147426370,2025-05-14 +City Hotel,1,0,2017,May,19,7,1,0,3,0.0,0,SC,,Complementary,TA/TO,0,0,0,P,P,0,No Deposit,14.0,269.0,0,Transient,4.97,0,0,Canceled,James Walls,pamela84@example.org,870-670-7323x5047,4162796687774,2024-07-29 +City Hotel,0,1,2017,October,40,4,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,121.39,0,2,Check-Out,Tracey Klein,ashley68@example.net,319.981.3427x86444,180039811986751,2025-07-24 +City Hotel,1,44,2017,November,44,1,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,72.82,0,2,Canceled,Michael Garcia,mwilkerson@example.net,+1-895-880-8233x707,4857645798717839,2024-05-10 +City Hotel,0,31,2017,July,30,23,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,125.33,0,2,Check-Out,Pamela Mueller,aaron18@example.com,319-559-1392x21631,379067243731652,2025-02-02 +City Hotel,1,251,2017,August,34,25,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,D,D,0,No Deposit,239.0,179.0,0,Contract,63.57,0,1,Canceled,Susan Lewis,don53@example.net,(417)661-8517,4649435808977703,2024-08-19 +City Hotel,1,5,2017,April,15,13,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,83.48,0,1,Canceled,Charles Rodriguez,fjenkins@example.com,001-748-640-8016,675999846867,2024-04-24 +City Hotel,0,45,2017,April,15,12,2,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,121.58,0,2,Check-Out,Dawn Gomez DDS,adam31@example.com,716-571-8455x831,4605800063917342,2025-12-31 +City Hotel,0,151,2017,September,37,14,2,5,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,139.02,0,1,Check-Out,Diane Bolton,uthomas@example.com,665-868-8064,4478305830308827845,2025-03-16 +City Hotel,0,44,2017,May,21,20,0,1,1,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,82.24,0,0,Check-Out,Brandi Torres,danieledwards@example.net,001-772-411-0667,4996775795192572546,2025-12-21 +City Hotel,0,13,2017,January,4,24,0,1,2,0.0,0,BB,AUT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,113.25,0,1,Check-Out,Alan Armstrong,wmarshall@example.org,(265)414-1854x733,30456581293915,2025-10-07 +Resort Hotel,1,140,2017,July,31,30,1,4,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,250.0,179.0,0,Transient,170.11,0,1,Canceled,Tony Williams,kimberly98@example.org,+1-445-825-9468x85656,4051941238284280,2024-06-01 +Resort Hotel,1,191,2017,April,18,27,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,G,0,No Deposit,246.0,179.0,0,Transient,132.51,0,0,Canceled,Ryan Garcia,youngtammy@example.net,+1-524-693-6907x6833,30135704978665,2025-04-21 +Resort Hotel,0,45,2017,October,42,17,2,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient,63.01,1,0,Check-Out,Kristina Henderson,psanchez@example.org,001-277-793-1832x2580,5351983056736722,2024-05-18 +City Hotel,0,14,2017,March,10,5,1,1,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,10.0,179.0,0,Transient,103.97,0,1,Check-Out,Edward Perkins,brent97@example.org,+1-263-964-3547,180055325804785,2026-03-27 +City Hotel,1,172,2017,August,32,10,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,215.07,0,0,Canceled,Maxwell Herrera,peter26@example.net,9743583244,375467161176886,2024-04-21 +City Hotel,0,18,2017,May,21,20,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,132.33,0,1,Check-Out,Jason Harris,marygutierrez@example.com,001-481-865-7914x7702,565098500202,2024-12-29 +Resort Hotel,0,0,2017,December,52,26,1,2,2,0.0,0,Undefined,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,51.62,0,1,Check-Out,Paul Johnson,adkinsrandy@example.org,(998)614-5222x527,581008576190,2024-10-26 +Resort Hotel,0,29,2017,November,44,3,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,11.0,179.0,0,Transient-Party,74.44,0,0,Check-Out,Joshua Cannon,caldwellkyle@example.org,857.252.3951x14588,346157613708610,2024-10-03 +Resort Hotel,0,12,2017,December,51,17,0,1,3,2.0,0,BB,CHN,Online TA,TA/TO,0,0,0,C,C,2,No Deposit,8.0,179.0,0,Transient-Party,53.44,0,1,No-Show,Joshua Jimenez,karenguerrero@example.com,(310)859-0734x92141,3590856227862211,2025-01-24 +Resort Hotel,0,184,2017,March,13,30,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,18.0,221.0,0,Transient-Party,60.98,0,0,Check-Out,Steven Rivera,mthomas@example.net,222.469.7825x149,4287951761194125,2025-02-27 +Resort Hotel,0,15,2017,July,27,5,2,7,1,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,129.47,0,1,Check-Out,Tina Duarte,roylong@example.net,373-245-7571x75120,3507958644308927,2024-09-15 +Resort Hotel,0,30,2017,June,25,18,2,3,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,245.0,179.0,0,Transient,252.0,0,0,Check-Out,Victor Rodriguez,patrick63@example.net,+1-692-238-6043x2505,4236759691349871,2024-10-29 +City Hotel,0,0,2017,January,4,26,0,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Transient,89.67,1,1,Check-Out,Vanessa Johnson,ianguerrero@example.net,508.874.5709,3526782004531770,2026-02-17 +Resort Hotel,0,0,2017,December,49,8,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,47.17,0,1,Check-Out,Lisa Evans,fosterallison@example.net,+1-632-458-6599x7451,3579444094677700,2025-08-02 +City Hotel,0,43,2017,March,13,31,1,2,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,7.0,179.0,0,Transient,110.52,0,1,Check-Out,Brittany Meyers,hmcguire@example.net,573.271.5131,3531291743706415,2025-01-10 +City Hotel,0,13,2017,June,26,22,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,17.0,179.0,0,Transient,179.98,0,0,Check-Out,Kristina Willis,tammypotter@example.net,644.577.0359,4915145123711029,2025-09-05 +City Hotel,0,26,2017,July,28,10,1,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,5.0,179.0,0,Transient,160.98,0,2,Check-Out,Corey Moody,sdurham@example.net,+1-910-834-7576x1503,4567205737921,2025-11-05 +City Hotel,1,206,2017,March,12,21,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,41.24,0,1,Canceled,Peter Huff,michellecarr@example.com,(262)799-7021x5134,4227683716186537320,2024-09-14 +Resort Hotel,1,145,2017,February,8,23,0,3,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,244.0,179.0,0,Transient,207.26,0,0,Canceled,Thomas Kelly,samuellogan@example.net,942-442-5794,3530634124978031,2025-12-18 +City Hotel,1,2,2017,May,21,20,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,83.8,0,0,Canceled,Susan Richardson,cookjesse@example.org,(605)333-8158x5487,585185846037,2024-04-29 +Resort Hotel,0,47,2017,April,16,16,2,3,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,F,1,No Deposit,330.0,179.0,0,Transient-Party,101.13,0,0,Check-Out,Susan Jones,alexisgarza@example.com,816-691-4223x45774,4702981643532826069,2025-12-08 +City Hotel,0,22,2017,August,35,31,1,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,F,C,1,No Deposit,13.0,179.0,0,Transient,237.05,1,0,Check-Out,Ashley Myers,fperry@example.org,942.293.9367,4214895095477757554,2025-12-03 +Resort Hotel,0,32,2017,August,34,22,2,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,A,0,No Deposit,241.0,179.0,0,Transient,207.64,0,3,Check-Out,Robert Gray,scottwhite@example.org,6835494492,2475881223879813,2024-07-11 +City Hotel,0,93,2017,December,51,19,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,23.0,179.0,0,Transient-Party,85.76,0,0,Check-Out,Joshua Rodriguez,johnsonaaron@example.com,001-423-262-3590x0921,060449000185,2025-12-14 +Resort Hotel,0,0,2017,March,12,16,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,15.0,78.0,0,Transient,42.76,1,1,Check-Out,Aaron Anderson,christopher82@example.net,+1-856-996-0120,2229811592054226,2025-06-12 +Resort Hotel,1,145,2017,August,32,8,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,221.0,0,Transient-Party,55.13,0,0,Canceled,David Benson,benjamin16@example.net,(919)907-7244x253,4142341719066,2024-12-10 +Resort Hotel,1,241,2017,October,42,20,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,292.0,179.0,0,Transient,61.14,0,1,Canceled,Curtis Jones,williamchambers@example.com,763-748-7948,4984502514735163,2025-06-04 +Resort Hotel,0,42,2017,February,6,9,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,89.85,0,0,Check-Out,William Dominguez,marshstephen@example.com,(900)984-0791x6224,4380034286735437,2024-05-25 +City Hotel,1,85,2017,March,12,20,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,126.0,179.0,0,Transient,77.52,0,1,No-Show,Julie Moore,hendersonmelissa@example.org,670.971.6276x899,3564327011261368,2026-03-23 +City Hotel,0,405,2017,May,18,2,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.15,0,2,Check-Out,Jason Jones,mark40@example.net,001-924-853-9736x2632,4450580717426504,2025-10-17 +Resort Hotel,0,134,2017,June,23,3,0,7,1,1.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,1,No Deposit,248.0,179.0,0,Transient,136.48,0,2,Check-Out,Victoria Martinez,ebrown@example.com,(669)484-3386,567675596116,2026-02-05 +Resort Hotel,0,11,2017,May,22,30,1,3,2,0.0,0,BB,RUS,Groups,Direct,0,0,0,A,C,1,Refundable,12.0,222.0,75,Transient-Party,95.61,0,0,Check-Out,Sean Heath,cunninghamdenise@example.com,001-937-565-9108x923,2709255196947626,2024-05-22 +City Hotel,0,41,2017,November,46,16,1,2,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,187.07,0,0,Check-Out,Jennifer Jimenez,zoe88@example.net,6883262838,2443940517511547,2025-06-01 +City Hotel,0,108,2017,May,22,30,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Transient,114.49,0,0,Check-Out,Brian Snyder,iwashington@example.com,797.507.6642x9017,503892409114,2026-03-14 +City Hotel,0,15,2017,March,10,6,0,1,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,122.27,0,2,Check-Out,Christopher Brooks,inoble@example.net,241-924-2110x21204,349094519689254,2025-07-09 +Resort Hotel,1,10,2017,July,31,30,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,237.98,0,0,Canceled,Pamela Scott,robert92@example.com,(832)625-3314x1168,589961606797,2025-04-05 +Resort Hotel,0,39,2017,February,6,7,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,130.46,1,1,Check-Out,Damon Nguyen,hbender@example.net,+1-262-739-4299x91347,2671255587812268,2025-10-29 +Resort Hotel,0,2,2017,August,33,13,2,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,F,0,No Deposit,15.0,179.0,0,Transient,2.97,0,0,Check-Out,Jennifer Murray,tjackson@example.com,+1-389-856-7295x818,3520954145108489,2024-08-16 +Resort Hotel,0,240,2017,July,29,16,4,4,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,57.14,1,1,Check-Out,Matthew Hernandez,claire49@example.com,8278650279,213137967520142,2024-12-08 +City Hotel,0,42,2017,July,29,15,1,4,2,1.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,134.18,0,2,Check-Out,Scott Osborne,leepaul@example.org,702-729-6235x49476,3559146935712588,2025-10-30 +Resort Hotel,0,7,2017,September,38,20,2,5,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,329.0,331.0,0,Transient,51.68,0,0,Check-Out,Stephanie Lopez,skramer@example.org,001-990-342-4927x20258,2606925743231856,2025-02-22 +Resort Hotel,0,141,2017,June,26,28,2,3,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,171.48,0,1,Check-Out,Michael James,garciajennifer@example.com,+1-633-202-1196x4553,3534259886473611,2025-06-26 +City Hotel,0,162,2017,September,38,15,1,4,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,136.5,1,1,Check-Out,Bethany Jacobs,hpena@example.net,001-455-614-6967x83052,676195004194,2024-05-28 +City Hotel,0,56,2017,August,33,14,2,5,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,30.0,179.0,0,Transient,111.21,0,1,Check-Out,Tammy Trujillo,kelly69@example.org,4163397516,4642100786721070,2024-06-28 +Resort Hotel,0,14,2017,September,37,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,107.99,1,2,Check-Out,Angela Perez,brandonbautista@example.com,+1-305-627-0961x7811,3515594179939628,2025-01-22 +Resort Hotel,0,14,2017,May,21,23,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,316.0,179.0,0,Transient,240.94,0,1,Check-Out,Scott Smith,tgoodman@example.org,707.297.3042x2674,213123858269098,2024-09-18 +Resort Hotel,0,276,2017,August,33,17,2,5,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,E,0,No Deposit,352.0,179.0,0,Transient-Party,77.21,0,0,Check-Out,Billy Valentine,hhayes@example.net,238-405-0307x967,4650436167067686,2026-02-25 +City Hotel,1,1,2017,December,49,3,1,5,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.1,0,0,Canceled,Brian Anderson,markanderson@example.org,001-983-498-6189,6011423469151722,2025-12-23 +Resort Hotel,1,98,2017,December,49,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,93.02,0,0,Canceled,William Hill,jayclark@example.org,001-739-852-0440x82939,30565374521546,2025-02-11 +Resort Hotel,1,55,2017,August,32,5,0,2,3,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,234.0,179.0,0,Transient,139.66,0,2,Canceled,Deanna Hayes,vanessa22@example.com,719.678.4332,180012520895407,2025-05-21 +City Hotel,0,0,2017,May,20,17,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,B,0,No Deposit,11.0,76.0,0,Transient-Party,109.12,1,1,Check-Out,Curtis Solomon,patrickberry@example.com,(576)400-8979,4149434599628,2025-04-14 +Resort Hotel,0,149,2017,June,26,27,2,2,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,2,No Deposit,284.0,179.0,0,Transient,63.39,0,0,Check-Out,Edward Rodriguez,shannontrevino@example.net,530.968.0288x32826,6011236197967247,2026-01-19 +Resort Hotel,0,24,2017,May,19,11,2,10,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,308.0,179.0,0,Transient-Party,90.3,0,0,Check-Out,Michael Wood,katherine47@example.org,(578)668-6978x75999,180050042959285,2026-02-08 +Resort Hotel,0,15,2017,August,32,6,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,1,0,0,C,C,0,No Deposit,9.0,179.0,0,Transient,112.33,0,1,Check-Out,Michael Farley,colinmorgan@example.org,376.223.0208,6011055991230937,2025-06-23 +City Hotel,0,41,2017,May,21,23,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,106.53,0,2,Check-Out,Denise Pitts,johnjacobs@example.com,(499)866-8282x903,3525758368368992,2024-07-23 +City Hotel,1,24,2017,July,27,2,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,138.55,0,2,Canceled,Jonathan Nunez,elizabeth19@example.com,269-947-7431x8620,4850186792754,2026-01-04 +City Hotel,0,32,2017,August,34,23,0,1,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,128.06,0,2,Check-Out,Gregory Richardson,tiffany92@example.org,330-386-1897,3513539165076234,2025-08-08 +Resort Hotel,1,45,2017,May,22,27,2,4,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,127.34,0,0,Canceled,Tyler Green,kstevens@example.com,+1-948-608-4435x71036,4261026500573,2025-01-20 +Resort Hotel,0,160,2017,August,33,13,2,5,2,1.0,0,HB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,251.67,1,2,Check-Out,Katie Hansen,stacy85@example.com,001-661-439-2892,373160319697984,2024-12-18 +Resort Hotel,1,3,2017,April,16,17,2,5,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,139.0,179.0,0,Transient,98.97,0,1,No-Show,Susan Lamb,jennifer89@example.org,7985159145,4463911858139011444,2025-02-24 +City Hotel,1,413,2017,September,37,12,2,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,123.79,0,0,Canceled,Cristian Murillo,mortonalexandria@example.org,793-725-0800,30010929000498,2024-09-24 +City Hotel,0,317,2017,May,18,4,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Contract,90.18,0,0,Check-Out,Joseph Lynch,steven30@example.org,914.596.9301,4388775922746012,2024-12-20 +City Hotel,0,13,2017,March,12,20,0,2,2,0.0,0,BB,DEU,Direct,Direct,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Transient,100.64,0,2,Check-Out,Abigail Burnett,zmacias@example.org,749.423.2140x6512,213119840906300,2024-04-17 +City Hotel,0,371,2017,June,26,23,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,61,Transient-Party,62.77,0,0,Check-Out,Oscar Brown,kevinfletcher@example.com,+1-661-916-2350x76842,4556410108338717,2025-09-30 +Resort Hotel,0,104,2017,April,17,24,0,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,1,No Deposit,29.0,179.0,0,Transient-Party,161.42,0,0,Check-Out,Krystal Sosa,loganashley@example.com,262-436-6153x02831,343858891369768,2024-06-17 +Resort Hotel,1,57,2017,May,20,15,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,113.17,0,1,Canceled,Emily Good,blakeandrew@example.net,490-710-1065,374949708531450,2024-10-10 +Resort Hotel,0,25,2017,March,9,3,1,3,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,G,F,0,No Deposit,242.0,179.0,0,Transient,37.28,1,1,Check-Out,Jeffery Ramos,whitemark@example.com,2239521448,676243456404,2024-12-26 +Resort Hotel,0,29,2017,June,24,14,1,1,2,0.0,0,HB,CN,Groups,TA/TO,0,0,0,A,D,0,No Deposit,84.0,179.0,0,Transient,103.2,0,0,Canceled,Thomas Avila,davidsondonna@example.org,376-831-1796x3817,4001691432310370,2024-12-02 +City Hotel,0,3,2017,August,31,3,2,4,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Group,113.25,0,1,Check-Out,Nicole Vaughn,byrdmichael@example.net,950.987.5939x3677,4265920510219364,2024-05-10 +City Hotel,0,43,2017,March,11,12,0,5,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,18.0,179.0,0,Group,81.9,0,1,Check-Out,Dan Ray,teresa31@example.org,+1-540-499-2416x4772,3539300560424689,2025-01-13 +Resort Hotel,1,47,2017,February,8,19,2,5,2,0.0,0,BB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,86.15,0,0,Canceled,John Wilson,robinnoble@example.net,591.816.0072,3539427358439049,2026-03-11 +Resort Hotel,0,290,2017,May,22,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,13.0,222.0,0,Transient-Party,62.3,0,0,Check-Out,Bradley Gonzalez,billwright@example.net,865-787-3042x05151,370518563366429,2024-10-15 +Resort Hotel,0,50,2017,August,32,9,1,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,G,1,No Deposit,238.0,179.0,0,Transient,208.66,1,1,Check-Out,Lisa Lindsey,robertdavis@example.com,001-302-442-3001x23139,371959201192224,2024-12-12 +City Hotel,0,2,2017,March,13,23,1,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,69.97,0,3,Check-Out,Luke Hudson,gonzalesjacqueline@example.net,(515)267-4821,4543768921160,2024-10-12 +Resort Hotel,0,0,2017,November,45,7,2,2,2,0.0,0,HB,POL,Direct,Direct,0,0,0,E,E,0,No Deposit,36.0,179.0,0,Transient,50.73,1,0,Check-Out,Jeremy Jackson,melissapacheco@example.net,297-706-6428x88990,36219868502158,2025-04-03 +Resort Hotel,0,58,2017,August,32,10,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient-Party,124.78,0,1,Check-Out,Patricia Bartlett,patricia04@example.org,602-560-6857x56069,565615245463,2024-12-21 +City Hotel,0,189,2017,July,28,9,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,25.0,179.0,63,Transient-Party,75.58,0,1,Check-Out,Kayla Mack,justinwright@example.org,8367415889,30349270818094,2024-07-17 +City Hotel,0,38,2017,September,36,8,1,1,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Contract,80.45,0,1,Check-Out,Isabel Weber,williamwilliamson@example.org,(428)522-3436,4428827072886701142,2025-04-12 +City Hotel,0,2,2017,January,2,12,2,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,82.78,0,1,Check-Out,Alexis Brown,williamsjohnny@example.net,767.983.4002,344645554840154,2026-03-23 +Resort Hotel,1,103,2017,November,45,9,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,130.0,179.0,0,Transient,81.1,0,0,Canceled,Julie Torres,tracy23@example.com,001-604-513-7888,372268292658815,2024-10-09 +Resort Hotel,0,17,2017,April,17,28,1,2,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,2,No Deposit,364.0500000000011,179.0,0,Transient-Party,104.61,0,0,Check-Out,Albert Ramirez,kentconway@example.com,+1-524-741-3492x44378,4318096455966810189,2024-11-20 +City Hotel,0,91,2017,January,2,7,0,2,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,11.0,179.0,0,Transient,174.1,0,0,Check-Out,David Porter,haydencarrie@example.com,+1-388-368-4021x4975,213154835385194,2026-03-09 +City Hotel,0,138,2017,October,40,5,1,5,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,E,A,0,No Deposit,12.0,179.0,0,Transient,107.37,0,0,Check-Out,Brooke Bradford,gjohnson@example.net,(408)352-9073x81162,3591499911175126,2025-05-31 +City Hotel,0,17,2017,August,32,6,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,86.99,0,1,Check-Out,Debra Reese,slopez@example.net,(994)879-8198x3605,4548420517437340,2024-12-08 +Resort Hotel,0,48,2017,November,47,24,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,194.0,262.0,0,Transient,52.16,0,0,Check-Out,Crystal Nguyen,imartinez@example.com,581-424-9126x98708,4231078098109084,2024-09-12 +Resort Hotel,1,17,2017,March,11,13,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,243.0,179.0,0,Transient,43.76,0,0,Canceled,Joshua Collins,frank56@example.org,969.214.9354,6572323202081932,2024-11-01 +City Hotel,0,100,2017,August,32,3,2,5,3,0.0,0,HB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,176.06,0,2,Check-Out,Danielle Lloyd,leeduke@example.net,7512072631,3507039578408619,2024-04-23 +City Hotel,0,35,2017,August,34,20,1,3,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,18.0,179.0,0,Transient,252.0,0,3,Check-Out,Rose Salinas,whiteandrew@example.net,001-464-556-4308x735,4402582266145534,2026-02-10 +City Hotel,1,140,2017,October,44,29,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,60,Transient,70.5,0,0,Canceled,James Thomas,erica70@example.com,9474466106,180071334009829,2026-03-20 +Resort Hotel,0,56,2017,September,39,26,2,5,3,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,239.0,179.0,0,Transient,218.25,1,1,Check-Out,Joshua Hernandez,henry01@example.com,(882)271-2828x3762,3522096551175970,2025-03-25 +Resort Hotel,0,97,2017,September,36,5,2,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,241.0,179.0,0,Transient,150.15,0,2,Check-Out,Linda Richards,chapmanmichael@example.org,+1-845-408-1702x4228,213130077711347,2025-01-18 +City Hotel,0,0,2017,October,41,13,1,0,3,0.0,0,SC,,Complementary,Direct,0,0,0,A,K,1,No Deposit,11.0,179.0,0,Transient,1.76,0,0,Check-Out,Michael Shaw,briantrujillo@example.org,321.946.1230x2732,30397724973361,2024-09-26 +Resort Hotel,0,16,2017,March,10,5,2,5,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,17.0,222.0,0,Transient,36.47,0,0,Check-Out,Diana Tyler,amber97@example.org,6755166381,4013465797222,2024-11-14 +City Hotel,0,1,2017,March,12,24,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,C,1,No Deposit,17.0,179.0,0,Transient,47.86,0,0,Check-Out,Jennifer Frazier,ibrown@example.org,(809)602-9277x05556,5236018091244175,2024-05-07 +City Hotel,1,116,2017,September,36,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,74.0,179.0,0,Transient,80.61,0,0,Canceled,Shannon Beck,hbanks@example.org,+1-722-414-4534,378940707710233,2025-03-28 +Resort Hotel,0,9,2017,August,31,5,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,118.61,0,0,Check-Out,Sara Daniels,robinsonlauren@example.com,(828)450-5909,4360147858129708,2025-10-19 +City Hotel,1,5,2017,December,49,4,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,272.0,0,Transient,3.42,0,0,Canceled,Samantha Ward,thorton@example.net,(976)457-5408x5900,4697683603856124940,2024-08-04 +City Hotel,0,57,2017,March,10,5,0,3,1,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,118.5,0,3,Check-Out,Kyle Harper,john16@example.org,+1-929-277-9435x4556,502071319094,2024-12-16 +City Hotel,0,1,2017,November,46,11,0,1,1,0.0,0,BB,,Online TA,GDS,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,110.86,0,0,Check-Out,Jose Weiss,maryjones@example.org,774.600.1524,4899524174284609,2024-04-25 +City Hotel,0,9,2017,April,18,30,1,2,3,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,135.85,0,2,Check-Out,Martin Phillips,saraflores@example.net,001-310-210-8377x8270,4609086613297940,2024-05-28 +Resort Hotel,0,3,2017,August,32,9,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,1,No Deposit,250.0,179.0,0,Transient,137.04,0,1,Check-Out,Dominique Flowers,meganmoore@example.net,+1-393-529-5176x092,5458234245827846,2025-06-11 +Resort Hotel,0,193,2017,July,27,2,4,5,2,1.0,0,HB,AUT,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,239.0,179.0,0,Transient,211.52,0,2,Canceled,Julia Martinez,vramirez@example.net,001-287-580-3974,343007066173965,2026-02-08 +City Hotel,0,99,2017,September,38,21,0,1,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,172.1,1,1,Check-Out,Hannah Miller,sophia35@example.org,5052424987,6558415087190560,2025-06-03 +Resort Hotel,0,21,2017,November,48,25,0,1,1,0.0,0,BB,,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,304.0,179.0,0,Transient,42.93,0,0,No-Show,Loretta Matthews,jwarren@example.com,397-845-9153x28002,36204240006284,2026-02-26 +Resort Hotel,0,271,2017,February,8,19,2,2,2,0.0,0,HB,,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,27.0,179.0,0,Transient,45.22,0,1,Check-Out,Nathaniel Ross,tross@example.net,(955)706-0933,213168287691370,2024-12-11 +City Hotel,1,19,2017,October,40,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,99.67,0,0,Canceled,Jeremy Martin,erinwatson@example.org,819.516.0577x390,4992425865451368994,2026-01-01 +City Hotel,1,53,2017,December,51,19,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,72.21,0,0,Canceled,Joshua Bright,shicks@example.net,(363)878-7333x020,3533930600877490,2025-12-09 +Resort Hotel,0,146,2017,April,17,23,2,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,84.07,0,0,Check-Out,Amanda Ayala,wmartin@example.net,403-310-5174x5183,371115903908165,2025-01-28 +Resort Hotel,0,12,2017,March,13,28,1,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,55.88,0,1,Check-Out,Jillian Terry,amber08@example.org,373.715.0666x589,4525013609950879,2024-12-24 +City Hotel,1,169,2017,July,31,30,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,107.24,0,0,Canceled,Tracy Miller,evanstheodore@example.org,336-440-7936,6545842797092883,2025-05-16 +City Hotel,1,84,2017,November,47,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,62,Transient,104.84,0,0,Canceled,Jamie Ruiz,morgananita@example.net,914.465.0851x647,3518514485114978,2024-08-26 +City Hotel,1,37,2017,November,45,5,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,13.0,179.0,0,Transient,59.38,0,0,Canceled,Jose Payne,patriciacampos@example.org,303-859-1780,3577976873634156,2024-12-12 +City Hotel,1,120,2017,October,40,4,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,82.0,179.0,0,Transient,101.53,0,0,Canceled,Kelli Watts,jacquelinedixon@example.net,851.876.3912,4050236693822950,2025-04-15 +City Hotel,0,20,2017,March,11,12,2,5,2,0.0,0,BB,GBR,Direct,Direct,1,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,50.1,0,1,Check-Out,Carolyn Ramos,thomasgraves@example.org,+1-744-775-9696,4109466439326187,2025-08-20 +Resort Hotel,0,122,2017,May,18,1,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,240.0,179.0,0,Transient,45.51,0,1,Check-Out,Robert Mathis,hernandezmark@example.com,+1-233-530-6702x0286,180009611832398,2025-12-30 +City Hotel,1,165,2017,August,35,30,0,1,1,0.0,0,SC,PRT,Direct,Undefined,0,0,0,A,A,2,No Deposit,14.0,179.0,0,Transient-Party,82.15,0,0,No-Show,Gabriel Mcconnell,jacobsmason@example.com,336-329-0044x8576,3508481099460910,2024-10-05 +Resort Hotel,0,97,2017,May,19,4,2,4,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,90.76,1,0,Check-Out,Tammy Camacho,reyesbrandon@example.org,291-996-0152x12233,4722674502038004,2025-12-05 +Resort Hotel,0,48,2017,December,49,5,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,64.21,0,1,Check-Out,Jacqueline Martin,whitejohnny@example.net,565.522.2944x674,4114693713948,2026-02-06 +City Hotel,0,256,2017,August,33,12,2,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,77.0,179.0,0,Transient-Party,84.21,1,0,No-Show,Megan Woods,vasquezryan@example.net,518.989.5396x60026,4696415448944,2024-06-29 +City Hotel,0,57,2017,June,23,1,1,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,131.36,0,2,Check-Out,Thomas Buck,youngdonald@example.net,3854981495,180026280374015,2025-08-16 +Resort Hotel,0,269,2017,October,41,12,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,28.0,179.0,0,Transient-Party,93.85,0,0,Check-Out,Tara Rubio,wilkinsmegan@example.org,246-801-2466,213194242004533,2025-05-14 +City Hotel,0,161,2017,March,13,29,1,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,131.0,0,3,Check-Out,Natasha Myers,bryantroberta@example.org,533-562-9108,6524560509564073,2024-06-30 +Resort Hotel,0,93,2017,May,19,8,0,4,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,246.0,179.0,0,Transient,252.0,1,2,Check-Out,Jonathan Bowers,thorntondanielle@example.net,001-486-956-5553x02597,376683119810637,2025-03-12 +Resort Hotel,1,146,2017,September,36,5,2,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,202.07,0,0,Canceled,Eric Williams,ycarter@example.net,334.894.6205x1769,213198665903808,2024-08-23 +City Hotel,0,103,2017,July,30,26,0,4,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,246.68,0,1,Check-Out,Scott Gallagher,melissa85@example.org,409-570-8550x91475,36642977555579,2025-01-04 +City Hotel,0,1,2017,October,41,8,0,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,B,0,No Deposit,12.0,45.0,0,Transient-Party,88.86,0,0,Check-Out,Carla Johnson,peter04@example.com,478-536-0609,30421191203688,2025-01-06 +City Hotel,0,2,2017,January,2,6,0,1,1,0.0,0,BB,USA,Direct,Direct,0,0,0,D,D,1,No Deposit,10.0,179.0,0,Transient,138.24,0,1,Check-Out,Cathy Oconnor,ryanchristopher@example.net,809.591.1434x92301,5448862749843340,2025-12-24 +City Hotel,1,0,2017,August,35,31,0,4,2,0.0,0,BB,PRT,Direct,Undefined,0,0,0,B,B,0,No Deposit,17.0,179.0,0,Transient-Party,104.0,0,1,Check-Out,Timothy Robinson,shawcynthia@example.com,(599)480-9405x471,30196233406446,2025-05-04 +Resort Hotel,0,54,2017,March,12,17,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,240.0,179.0,0,Transient,102.31,0,1,Check-Out,Isabel Wilson,valerie86@example.com,+1-267-579-1834x919,3500108425659646,2025-10-09 +Resort Hotel,0,0,2017,May,19,6,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,302.0,179.0,0,Transient,165.0,0,0,Check-Out,Randy Williamson,stephaniepowers@example.net,(213)570-1013x1596,4635495274904925106,2026-03-18 +City Hotel,1,40,2017,October,40,5,0,2,2,0.0,0,HB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,8.0,179.0,0,Transient,69.28,0,0,Canceled,Victoria Harvey,qgarcia@example.net,(318)965-0750x996,375814708931358,2025-06-24 +Resort Hotel,1,260,2017,March,9,2,1,2,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,62.28,0,0,Canceled,Marcus Mathews,pbrewer@example.org,7912720453,3565034906360292,2025-11-05 +Resort Hotel,1,327,2017,December,50,12,0,4,2,0.0,0,FB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,Non Refund,85.0,179.0,0,Transient,119.15,0,0,Canceled,Tina Walters,tracyjackson@example.net,+1-256-890-8281x203,4475959329035989,2025-03-02 +City Hotel,1,24,2017,November,46,17,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,14.0,63.0,0,Transient,44.56,0,0,Canceled,Jacqueline Baker,zkennedy@example.com,+1-900-956-4135x72459,3566689458394640,2024-04-26 +Resort Hotel,0,13,2017,January,2,5,1,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,242.0,179.0,0,Group,44.69,0,1,Check-Out,Jonathan Owens,jonesrodney@example.org,+1-447-449-4726,2499903510723868,2024-09-13 +Resort Hotel,0,2,2017,August,35,31,0,3,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,4.86,1,1,Check-Out,Preston Larson,dcooper@example.org,+1-854-226-6314x1493,4427370610893720069,2025-11-23 +City Hotel,1,290,2017,October,42,17,0,1,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient-Party,63.75,0,0,Canceled,Laura Estrada,ryan72@example.net,564.873.6776x0518,213117617102681,2026-02-14 +City Hotel,1,382,2017,July,29,17,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Transient,101.98,0,0,Canceled,Kelly Edwards,jacqueline31@example.net,(976)496-8488x66753,343216695157188,2024-09-30 +City Hotel,0,54,2017,January,4,25,0,2,2,0.0,0,BB,ESP,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,23.0,179.0,0,Transient,110.5,0,2,Check-Out,Brooke Jackson,thomassmith@example.net,(365)425-4625x559,6011911547487167,2025-05-18 +City Hotel,0,18,2017,July,28,13,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,22.0,179.0,0,Transient,130.59,0,1,Check-Out,Jeffrey Buchanan,greenbrandon@example.com,325-297-9534,6512000276594445,2025-05-13 +City Hotel,0,36,2017,May,18,3,1,2,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,107.57,0,1,Check-Out,Mark Mcguire,dcabrera@example.net,001-456-514-0278,4533303022391225319,2026-02-07 +City Hotel,1,389,2017,August,32,10,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,76.0,179.0,0,Transient,128.25,0,1,Canceled,Justin Flores,heatherjennings@example.com,001-554-767-3975x90158,376803328497584,2026-03-14 +Resort Hotel,0,4,2017,January,3,17,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,244.0,179.0,0,Transient,52.93,1,2,Check-Out,Dustin Moore,annamarshall@example.com,589.329.7208,180018342477001,2026-01-02 +City Hotel,0,89,2017,July,27,5,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,72.0,179.0,0,Transient-Party,82.61,0,0,Canceled,Edward Rowland,marthabaker@example.org,001-599-997-2074x496,30367755961536,2025-09-14 +Resort Hotel,0,147,2017,June,25,21,4,10,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,197.49,0,1,Check-Out,Jodi Thompson,jeffrey99@example.net,568-624-4532x36704,180026783454157,2025-02-16 +Resort Hotel,0,186,2017,August,32,9,2,2,2,0.0,0,HB,CN,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,96.61,1,1,Check-Out,Rebecca Rodriguez,hhoward@example.com,001-475-854-7666,4452936017035157983,2024-11-29 +City Hotel,1,163,2017,October,41,14,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,80.26,0,0,Canceled,Mary Beard,wmccoy@example.org,(524)430-8031,36004491551313,2025-02-27 +Resort Hotel,0,31,2017,August,32,9,1,5,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,241.0,179.0,0,Transient,228.15,1,1,Check-Out,Jo Wright,whitemartin@example.org,(424)912-4715,4099373549133838,2025-11-29 +City Hotel,0,73,2017,March,13,26,0,1,1,1.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,98.69,1,1,Check-Out,Sean Young,steven51@example.net,282-795-9069,6522477353674043,2025-05-13 +City Hotel,0,101,2017,August,32,5,0,1,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,7.0,179.0,0,Transient,126.21,0,1,Check-Out,Mark Francis,curtisburnett@example.org,(325)917-0357x7373,3538940443734662,2025-01-05 +City Hotel,0,414,2017,October,43,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,76.29,0,0,Check-Out,Anthony Sims,hardingjohn@example.com,(427)715-6955,3577410784451039,2024-08-12 +Resort Hotel,0,2,2017,August,33,16,2,5,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient-Party,132.76,0,1,Check-Out,Lee Villarreal,brandon33@example.net,+1-356-346-1780,2288636673506341,2025-08-17 +Resort Hotel,0,134,2017,March,13,31,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,1,Refundable,13.0,222.0,0,Transient-Party,71.63,0,0,Check-Out,William Hutchinson,janet63@example.com,(850)840-2550x5481,378781424339330,2024-06-28 +City Hotel,0,13,2017,August,32,12,1,0,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,184.43,0,2,Check-Out,Jeffrey Anderson,robertclark@example.net,(341)914-5276,340537883231656,2026-03-20 +Resort Hotel,0,16,2017,June,24,9,4,5,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,314.0,179.0,0,Transient,143.12,0,1,Check-Out,Mariah Wilson,qbennett@example.net,(266)221-2200,4196049907158387457,2024-05-07 +City Hotel,1,51,2017,September,37,10,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,0,Transient,87.27,0,0,Canceled,Beth Hutchinson,johnturner@example.com,001-749-774-2133,4638535573960728,2024-08-27 +City Hotel,0,12,2017,April,17,26,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,18.0,179.0,0,Transient,108.0,1,1,Check-Out,Madison Monroe,brittany19@example.org,+1-247-332-8597x23684,4123192183423572,2024-05-28 +City Hotel,0,3,2017,August,32,9,2,5,2,0.0,0,SC,ESP,Online TA,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,244.0,1,1,Check-Out,Justin Bennett,anthony98@example.com,2265933353,6011476301816019,2025-05-14 +Resort Hotel,0,0,2017,April,16,20,1,3,2,0.0,0,BB,PRT,Direct,Corporate,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,49.61,1,0,Check-Out,Robert Williams DDS,brianperry@example.net,667.943.8472x827,676218204458,2026-01-21 +City Hotel,0,37,2017,October,40,5,0,2,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,102.38,0,2,Check-Out,James Sosa,uball@example.net,717-982-8895,2387154257656664,2024-05-21 +City Hotel,0,21,2017,February,6,6,1,2,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,97.53,0,0,Check-Out,Mary Brown,kimberlymedina@example.net,5356938462,3592439926745520,2024-07-05 +City Hotel,0,0,2017,May,19,5,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,A,H,0,No Deposit,16.0,179.0,0,Transient,214.97,1,2,Check-Out,Jorge Carey,jenningsjonathan@example.net,(912)720-3610x5162,4636946659079881,2024-08-26 +City Hotel,0,67,2017,August,31,5,2,1,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,70.18,0,1,Check-Out,Felicia Shaw,zsmith@example.com,(234)407-3667x07374,4966343876815422,2025-09-19 +Resort Hotel,1,0,2017,July,31,29,0,3,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,229.05,1,0,Canceled,Alicia Perez,williamslisa@example.net,(861)413-6265x16687,30384502779079,2025-10-15 +Resort Hotel,1,149,2017,July,31,30,1,5,3,1.0,0,Undefined,PRT,Direct,Direct,0,0,0,H,H,1,No Deposit,246.0,179.0,0,Transient,227.41,0,0,No-Show,Kim Arnold,robertbrock@example.com,751-608-7256x124,4056371622144871,2024-11-19 +City Hotel,0,17,2017,March,13,24,1,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,81.0,179.0,0,Transient-Party,62.32,0,1,Check-Out,Gabriel Lopez,michelle68@example.org,245-672-7900,4933117343356628,2024-12-11 +City Hotel,1,46,2017,September,37,9,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,19.0,179.0,0,Transient,140.68,0,0,Canceled,Julie Gross,joseph61@example.net,793-605-4772,2548206556388690,2024-10-18 +Resort Hotel,0,36,2017,October,40,4,1,6,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,50.55,0,3,Check-Out,Joel Tanner,mike75@example.org,(203)815-6986x940,3566521031156800,2024-09-24 +City Hotel,0,282,2017,April,17,25,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,98.94,0,0,Canceled,David Phillips,jonestroy@example.net,001-442-558-0709x5567,3522489774671703,2024-07-09 +Resort Hotel,0,36,2017,June,26,23,2,10,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,252.0,1,2,Check-Out,James Hoffman,gregory98@example.org,359.939.7022x1775,30249153889289,2024-06-15 +Resort Hotel,0,11,2017,April,18,27,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,90.89,1,2,Check-Out,Carrie Rice,wrightlinda@example.com,+1-791-854-1345x407,4537071197919801,2025-10-29 +Resort Hotel,1,82,2017,December,52,29,0,2,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,61.68,0,0,No-Show,David Davis,lcalderon@example.com,763.638.9454x25869,6011064199412339,2025-01-10 +City Hotel,0,19,2017,February,9,28,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,49.89,0,0,Check-Out,Kevin Powers,joan27@example.com,279-481-8041,213182820857679,2025-03-03 +City Hotel,0,156,2017,November,45,9,1,4,2,0.0,0,SC,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.94,0,0,Check-Out,Jill Morgan,tiffany46@example.com,968.839.2170,5229298353904976,2025-06-14 +Resort Hotel,1,251,2017,June,23,6,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,61.87,0,0,Canceled,Virginia Munoz,heidirocha@example.net,001-653-524-3081x517,4179418795376517,2025-02-26 +Resort Hotel,0,17,2017,February,8,24,2,3,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,166.0,179.0,0,Transient,49.71,0,1,Check-Out,Derek Guerrero,adam74@example.net,405.374.6188,3564487854602944,2024-07-07 +City Hotel,0,54,2017,August,32,4,1,5,2,1.0,0,BB,BRA,Online TA,TA/TO,0,0,0,G,G,2,No Deposit,245.0,179.0,0,Transient,96.26,0,3,Check-Out,Robert Holt,awhite@example.com,+1-216-654-9370x2441,4618506443717634,2025-02-04 +City Hotel,0,76,2017,October,41,9,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,86.0,179.0,0,Transient,133.89,0,1,Check-Out,Andrea Thompson,edwardsjennifer@example.org,+1-412-855-6610x8612,30352099951476,2024-11-27 +City Hotel,0,1,2017,October,40,5,0,1,1,0.0,0,BB,FRA,Complementary,Direct,1,0,1,A,A,0,No Deposit,11.0,45.0,0,Transient,0.5099000000000001,0,0,Check-Out,Robert Donaldson,gloverjames@example.net,7172389594,4691190106198962091,2026-01-19 +Resort Hotel,0,0,2017,February,8,23,0,2,2,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,E,0,No Deposit,35.0,240.0,0,Transient,54.5,0,2,Check-Out,Frederick Mathis,thomashooper@example.com,969.974.1699,213150364767943,2024-12-05 +Resort Hotel,0,49,2017,August,33,15,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,I,0,No Deposit,169.0,179.0,0,Transient,1.49,0,2,Check-Out,Catherine Hobbs,carolyn32@example.com,805-978-3979,4176883405825,2026-01-29 +City Hotel,1,182,2017,May,19,6,0,1,2,1.0,0,SC,DEU,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,8.0,179.0,0,Transient,102.67,0,1,Canceled,Raven Meza,reneejones@example.net,001-808-266-4862x839,3568124012108599,2025-06-01 +Resort Hotel,0,17,2017,January,2,9,0,2,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,E,F,1,No Deposit,244.0,179.0,0,Transient,252.0,0,2,Check-Out,Meghan Lopez,hendersonjeffrey@example.org,267-658-1229x355,569983053871,2024-05-31 +Resort Hotel,1,12,2017,January,2,8,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Transient,46.99,0,2,Canceled,Juan Wilson,emcdowell@example.net,+1-752-801-9978x61281,3550264221403538,2026-01-25 +City Hotel,0,10,2017,January,3,15,0,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,47.76,0,2,Check-Out,Stephanie Mccann,george80@example.org,001-349-271-3367x8774,4486790173378,2026-01-21 +City Hotel,0,4,2017,August,32,8,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,247.73,0,1,Check-Out,Linda Lee,makaylamckenzie@example.net,+1-439-576-2458x394,4313206520922326,2025-12-17 +City Hotel,1,379,2017,September,38,22,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,111.03,0,0,Canceled,Jeffrey Oliver,omarclarke@example.net,+1-359-672-0181x1862,4167371052310,2024-11-05 +Resort Hotel,1,54,2017,December,51,20,0,5,2,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,24.0,179.0,0,Transient-Party,107.0,0,0,Canceled,Sara Martinez,lindamonroe@example.org,(998)628-6516x18944,4956625434390849185,2026-03-22 +City Hotel,1,3,2017,June,24,9,0,10,1,0.0,0,BB,PRT,Aviation,Direct,0,0,0,D,D,1,No Deposit,17.0,181.0,0,Transient,137.05,0,0,Canceled,Bridget Campos,usutton@example.net,(977)377-6398x8869,3561486016193365,2026-01-01 +City Hotel,0,0,2017,October,41,11,0,2,2,0.0,0,SC,,Offline TA/TO,TA/TO,0,0,0,A,K,0,No Deposit,10.0,179.0,0,Transient,2.47,0,0,Check-Out,Deborah Conner,riverajulia@example.net,284-769-1759x17267,180070746691489,2024-08-20 +Resort Hotel,1,189,2017,September,36,8,2,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,89.81,0,0,Canceled,Robert Cunningham,wmata@example.com,001-403-584-2845x0656,180033106484283,2025-04-07 +City Hotel,0,1,2017,April,18,29,1,1,1,0.0,0,BB,PRT,Corporate,GDS,0,0,0,A,K,0,No Deposit,138.0,179.0,0,Transient-Party,62.21,1,0,Check-Out,Robert Castillo,kacosta@example.net,(713)975-5853,3589623300795665,2024-11-18 +City Hotel,0,15,2017,March,13,23,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,A,0,No Deposit,15.0,45.0,0,Transient,87.57,0,1,Check-Out,Patrick Robinson,xmaldonado@example.org,636.251.7429x68635,3537647243694415,2026-02-04 +Resort Hotel,0,155,2017,April,14,1,1,3,2,0.0,0,BB,GBR,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,223.0,0,Transient-Party,43.65,0,0,Check-Out,Pamela Reyes,wjohnson@example.net,(695)786-3629,30565125106480,2025-05-06 +City Hotel,1,2,2017,July,27,7,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,100.15,0,0,Canceled,Matthew Castro,tylertheresa@example.org,(628)742-6092x45901,4853501960403,2025-01-25 +Resort Hotel,1,341,2017,May,19,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,1.0,179.0,0,Transient-Party,60.6,0,0,Canceled,Phillip Patterson,george32@example.org,6079289735,4529892863487504,2026-03-20 +City Hotel,1,20,2017,December,51,23,1,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,10.0,179.0,0,Transient-Party,120.56,0,0,Canceled,Michelle Brown,otrujillo@example.com,+1-496-269-6579x916,676395688010,2024-10-12 +City Hotel,1,149,2017,June,26,24,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,17,Transient,105.6,0,0,Canceled,Alfred Davis,cummingsrichard@example.com,+1-813-270-5735x73579,4389864108796531498,2025-07-12 +City Hotel,1,304,2017,January,2,2,0,2,2,0.0,0,BB,ITA,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,12.0,179.0,0,Transient,35.6,0,0,Canceled,Cassandra Blair,larrywilson@example.org,001-441-491-6211x391,4951037242517178,2025-03-02 +City Hotel,0,170,2017,June,26,24,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,45.0,0,Transient,96.76,0,1,Check-Out,Michael Davis,qharris@example.net,(219)223-8509,6564283089831819,2025-10-23 +City Hotel,1,14,2017,February,8,19,2,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,8.0,179.0,0,Transient,89.05,0,0,Canceled,Douglas Gibson,amandacarey@example.org,+1-845-728-3047x502,3583815277998738,2024-12-11 +Resort Hotel,0,168,2017,July,28,9,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,212.49,0,0,Check-Out,Dale Black,pattonjohn@example.net,001-955-874-8431x629,3548668491972441,2025-03-06 +City Hotel,1,414,2017,August,33,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,64.4,0,0,Canceled,Nicole Lee,holmespatricia@example.net,(839)499-9303x021,2265841211724904,2025-10-16 +Resort Hotel,1,50,2017,August,33,13,2,5,2,2.0,0,HB,PRT,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,0,Canceled,Jesse Rodgers,elizabeth87@example.org,(692)591-0699,2299726813333750,2026-03-21 +City Hotel,0,12,2017,January,4,23,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,98.79,0,1,Check-Out,Jessica Bell,abigailtyler@example.com,001-465-570-5603x99412,373421365438578,2026-02-07 +Resort Hotel,0,31,2017,September,36,8,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,9.0,179.0,0,Transient,124.19,0,0,Check-Out,Brooke Roberts,william79@example.com,9853864767,6011066747591001,2025-09-30 +Resort Hotel,0,250,2017,August,32,7,0,2,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,239.0,179.0,0,Transient,196.29,0,1,Canceled,Andrea Huynh,brooke11@example.org,6346272745,3599340749998085,2026-02-10 +City Hotel,0,34,2017,March,13,27,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,25.0,179.0,0,Transient,106.61,0,2,Check-Out,Shawn Colon,lsantiago@example.net,748-779-5290x4648,6011171172499686,2025-05-12 +City Hotel,0,12,2017,January,5,27,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,120.66,0,3,Check-Out,Jason Dunn,beardbenjamin@example.com,001-808-595-3755x01224,36699989427775,2025-02-09 +City Hotel,0,35,2017,April,17,25,0,2,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,F,F,2,No Deposit,14.0,179.0,0,Transient,252.0,0,0,Check-Out,Rodney Wood,olsondanielle@example.com,001-344-295-3767x7930,180021768917955,2025-03-24 +City Hotel,0,90,2017,October,43,25,0,2,1,0.0,0,BB,FRA,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,185.0,179.0,0,Transient,84.88,0,0,Check-Out,Erin Fields,hgarrison@example.net,689.680.4627,3566509457071470,2025-05-07 +City Hotel,0,1,2017,May,21,21,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,2.76,0,0,Check-Out,Joshua Atkinson,ndavis@example.org,979.546.5444x3109,3531158637830587,2025-01-31 +City Hotel,0,1,2017,October,42,18,1,2,1,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,38.97,0,0,Check-Out,Tiffany Ortiz,bakerjerry@example.net,3167903124,379707329623253,2026-01-07 +City Hotel,1,145,2017,June,24,12,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,0,Non Refund,13.0,225.0,0,Transient,113.72,0,0,Canceled,Erica Johnson,robert49@example.net,359.791.6454x72567,345914920515810,2024-09-17 +City Hotel,0,45,2017,March,11,12,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,D,1,No Deposit,77.0,179.0,0,Transient,158.03,0,2,Check-Out,Tracy Kaiser,codysimpson@example.net,001-470-356-5635x58053,4160480907596820053,2024-12-16 +City Hotel,0,16,2017,December,49,5,2,2,2,0.0,0,BB,NLD,Online TA,Direct,0,0,0,A,E,1,No Deposit,11.0,179.0,0,Transient,92.58,0,1,Check-Out,Pedro Dixon,thompsonashley@example.com,001-217-982-2007x957,4483872495228382272,2024-09-13 +Resort Hotel,1,93,2017,December,49,2,2,4,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,Non Refund,266.0,179.0,0,Transient-Party,63.1,0,0,Canceled,Jessica Yu,georgecunningham@example.com,001-478-629-0905,378409507760798,2025-06-09 +City Hotel,0,11,2017,August,32,9,2,4,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,110.39,0,0,Check-Out,Sherry Harvey,nathan99@example.org,496-743-5998x979,2704528505743273,2025-03-11 +City Hotel,0,35,2017,November,45,8,0,2,2,0.0,0,BB,ISR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,163.28,0,2,Canceled,Maxwell Patterson MD,ztorres@example.com,001-658-206-7747,349473717177876,2025-07-30 +City Hotel,0,61,2017,July,29,17,0,1,1,0.0,0,BB,IRL,Online TA,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,221.03,0,0,Check-Out,Mark Wheeler,fnielsen@example.net,6334980316,4223398219232726,2026-01-10 +City Hotel,0,93,2017,November,46,17,0,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.07,0,0,Check-Out,David Brock,wadams@example.org,2543812149,30290594985153,2025-02-13 +Resort Hotel,0,0,2017,February,6,8,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,1,A,K,0,No Deposit,13.0,75.0,0,Transient,31.61,0,0,Check-Out,Vanessa Scott,michelle07@example.net,593-701-7058x99612,675935703727,2024-07-17 +Resort Hotel,0,20,2017,May,22,28,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,123.72,1,2,Check-Out,Joel Neal,gwright@example.net,(588)745-9465x8080,375045344051562,2024-06-25 +City Hotel,0,2,2017,July,28,14,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,10.0,45.0,0,Transient-Party,131.13,0,0,Check-Out,Jesse Rivas,hebertscott@example.com,(706)517-8678,345716783937373,2025-03-26 +Resort Hotel,0,45,2017,September,36,5,2,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,243.0,179.0,0,Contract,43.17,0,2,Check-Out,Kyle Ball,fstrickland@example.org,001-888-824-9191x2412,4318931203246,2024-07-17 +Resort Hotel,0,113,2017,September,37,14,2,5,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,111.14,0,1,Check-Out,Caroline Christensen,riveralauren@example.com,851.694.4071x85849,373421511733740,2025-12-09 +Resort Hotel,0,151,2017,March,14,31,0,2,1,0.0,0,BB,RUS,Groups,Corporate,0,0,0,A,A,1,Refundable,13.0,223.0,0,Transient-Party,124.85,0,0,Check-Out,Robert Wells,taylor28@example.org,8793358322,3593977465716526,2024-06-22 +City Hotel,1,101,2017,September,38,17,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,77.0,179.0,0,Transient,117.5,0,0,Canceled,Rachel Rios,michael28@example.org,8683376723,4607591934967495,2025-11-16 +City Hotel,0,0,2017,January,5,27,0,1,2,1.0,0,BB,,Direct,Direct,0,0,0,D,D,2,No Deposit,12.0,179.0,0,Transient,87.51,0,2,Check-Out,Tammie Johnson,rwillis@example.net,(209)596-8105x884,501814963473,2025-09-16 +City Hotel,0,150,2017,July,27,6,0,1,2,0.0,0,BB,,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,81.73,0,2,Check-Out,Dr. Kristi Smith MD,andrea52@example.net,+1-918-567-2114x62318,3540700892762010,2025-03-05 +Resort Hotel,1,242,2017,May,20,14,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,A,0,Non Refund,241.0,179.0,0,Transient,108.89,0,0,Canceled,David Ortiz,byrdamanda@example.org,001-511-254-7694,3585538936509443,2025-04-01 +City Hotel,0,44,2017,March,13,27,1,3,3,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,61.0,179.0,0,Transient,129.64,0,3,Check-Out,Andrea Dixon,kevin31@example.com,3067386609,4259334312321774,2025-07-09 +City Hotel,0,44,2017,November,46,12,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,37.0,179.0,0,Transient-Party,76.84,0,1,Check-Out,Stephanie Joseph,patriciahall@example.com,297-425-9689,4701864537510011,2025-10-21 +Resort Hotel,1,28,2017,December,49,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient-Party,72.36,0,1,Canceled,Melissa Campos,cwashington@example.org,906.608.0535x497,6011665023168663,2025-06-21 +City Hotel,0,11,2017,December,2,31,0,2,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,H,1,No Deposit,11.0,179.0,0,Transient-Party,49.58,0,1,Check-Out,Anthony Rodriguez,hesskaren@example.com,987.658.9824x67006,36203938116553,2024-09-17 +Resort Hotel,1,4,2017,October,41,9,2,6,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,E,D,0,No Deposit,176.0,179.0,0,Contract,64.59,0,0,Canceled,Aaron Pena,stephaniebaker@example.net,804.454.4552x1712,3570446839151650,2025-11-16 +Resort Hotel,1,145,2017,October,41,9,0,4,2,0.0,0,BB,PRT,Complementary,Direct,0,0,0,G,E,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,1,3,Canceled,Michael King,jgonzalez@example.com,(612)329-4596x217,373316212515489,2026-01-27 +Resort Hotel,0,32,2017,March,9,1,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,42.18,1,2,Check-Out,Shawn Hampton,jaychavez@example.org,779.592.0370,3566863138065736,2024-06-29 +Resort Hotel,0,0,2017,September,36,9,3,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,32.0,179.0,0,Contract,35.43,0,0,Check-Out,Brandi Sullivan,miranda94@example.com,661-620-5155x465,4181770119592724,2025-04-18 +City Hotel,1,37,2017,October,40,4,2,2,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient-Party,94.43,0,0,Canceled,William Lozano,hernandezandrew@example.org,(304)243-1567,583130362507,2025-06-25 +City Hotel,1,5,2017,October,40,4,0,3,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,121.42,0,0,Canceled,Michael Rivera,duane40@example.com,516-990-8454x14480,4044743690825281,2025-05-18 +City Hotel,0,40,2017,May,19,8,2,4,2,2.0,0,BB,SWE,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,241.69,1,1,Check-Out,Angelica Carroll,glennanthony@example.org,377.755.4967,4078337102720955,2026-01-14 +City Hotel,1,13,2017,January,2,6,0,1,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,170.0,179.0,0,Transient,78.02,0,0,Canceled,Michael Hartman,evanserika@example.org,435.327.1852,4870469732418,2024-11-13 +City Hotel,0,144,2017,July,28,8,2,5,2,2.0,0,BB,CHE,Direct,Direct,0,0,0,F,F,0,No Deposit,13.0,179.0,0,Transient,246.83,0,0,Check-Out,Steven Fox,juan81@example.com,535-771-2296x224,5544593019527999,2025-02-07 +Resort Hotel,1,145,2017,July,28,7,0,4,3,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,238.0,179.0,0,Transient,252.0,0,0,Canceled,Andrea Peterson,colemantimothy@example.net,001-625-853-2439x40752,2223395503852544,2025-08-30 +Resort Hotel,0,17,2017,December,52,27,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,G,1,No Deposit,242.0,179.0,0,Transient,99.66,1,2,Check-Out,Robert Thompson,laurazuniga@example.com,249.972.6263x265,30180332806342,2025-02-07 +City Hotel,0,395,2017,January,2,5,0,5,2,0.0,0,HB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,1.0,179.0,0,Transient-Party,62.96,0,2,Check-Out,Alexandra Smith,irose@example.org,468.245.9024,501885619111,2024-04-23 +Resort Hotel,0,18,2017,April,16,19,2,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,239.0,179.0,0,Transient,59.57,0,1,Check-Out,Kayla Goodman,marymcconnell@example.net,(848)255-6478,060498360340,2024-04-17 +City Hotel,0,107,2017,June,26,23,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,131.49,0,1,Check-Out,Tamara May,amysmith@example.com,001-321-906-9899,213103457306079,2026-01-20 +City Hotel,0,43,2017,March,12,23,2,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,1,No Deposit,2.0,179.0,0,Transient-Party,79.42,0,1,Check-Out,Richard Parker,dpoole@example.org,221-234-8812x207,6011905392165480,2025-06-07 +Resort Hotel,0,92,2017,May,19,6,2,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient,85.37,1,0,Check-Out,Jeremy Moore,emily64@example.org,881-454-8915,4995343959146211,2026-01-17 +Resort Hotel,0,45,2017,March,13,25,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,306.0,179.0,0,Transient-Party,107.15,0,1,Check-Out,Erika Bean,zyoung@example.com,001-597-901-4722x14682,4146061673423686,2025-03-05 +Resort Hotel,0,44,2017,December,52,24,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,E,D,1,No Deposit,14.0,71.0,0,Transient,101.86,0,0,Check-Out,Traci Cohen,marcus42@example.net,502.589.3365,2259277808291122,2025-08-07 +Resort Hotel,1,1,2017,February,8,20,1,0,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,C,0,No Deposit,40.0,331.0,0,Transient,40.79,0,0,Canceled,Pedro Elliott,thomas11@example.org,881.891.0611,30251150471129,2024-09-19 +City Hotel,1,314,2017,September,39,27,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,113.5,0,0,Canceled,Joshua Jones,yhill@example.net,452.772.1344x53523,180046603681201,2024-08-16 +City Hotel,0,142,2017,July,27,5,0,2,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,1,No Deposit,10.0,179.0,0,Transient,101.34,0,1,Check-Out,Timothy Harris,zlopez@example.com,001-943-937-4867x460,4461795102688032,2025-09-22 +Resort Hotel,0,119,2017,March,11,10,0,2,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,13.0,179.0,75,Transient-Party,60.51,1,3,Check-Out,Scott Mcmahon,blankenshipkelly@example.net,001-438-490-7296,30408481796331,2024-12-13 +Resort Hotel,1,48,2017,July,27,1,1,5,2,1.0,0,HB,PRT,Online TA,TA/TO,0,0,0,H,H,2,No Deposit,242.0,179.0,0,Transient,247.62,0,0,Canceled,Leslie Pollard,pruitttracey@example.net,485-298-9701,4075402229420270594,2025-05-23 +City Hotel,0,272,2017,August,32,12,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,130.68,0,1,Check-Out,Cynthia Bernard,chambersrobert@example.org,936-399-1519,4808761883401013,2025-12-09 +City Hotel,1,18,2017,October,41,9,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,9.0,179.0,0,Transient,111.09,0,1,Canceled,Brandon Smith,tthompson@example.org,+1-923-240-6837,30328653163468,2025-05-28 +City Hotel,0,49,2017,May,22,25,1,2,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,113.15,0,3,Check-Out,Roy Vaughn,westrachel@example.net,(663)841-5176x24257,4886791931142132,2025-07-17 +Resort Hotel,0,3,2017,August,34,24,1,2,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,331.0,0,Transient,51.57,0,0,Check-Out,Jesse Hopkins,cassieandrews@example.com,375-813-4421,6011815719589843,2025-12-24 +City Hotel,1,98,2017,July,27,2,2,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,9.0,179.0,0,Transient,103.77,0,2,No-Show,Lauren Clark,goliver@example.net,(767)295-2323x86008,4741598901127,2024-06-11 +Resort Hotel,0,385,2017,May,19,5,0,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,115.17,0,0,Check-Out,Emily Neal,ofoster@example.com,942-967-7830,3596995633760124,2025-12-04 +Resort Hotel,0,38,2017,May,20,18,2,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,318.0,179.0,0,Transient,84.32,1,0,Check-Out,Barry Phillips,rvelasquez@example.net,+1-845-618-6536x25791,4503035131204539,2025-03-03 +Resort Hotel,0,1,2017,July,27,4,2,5,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,238.0,179.0,0,Transient,204.31,0,0,Check-Out,Matthew Simpson,uhanson@example.com,522.655.1166,36026777132351,2025-12-25 +Resort Hotel,0,88,2017,June,26,26,2,3,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,86.0,179.0,0,Transient-Party,97.92,0,0,Check-Out,Jessica Jefferson,stewartwanda@example.org,917.762.2901x2291,4823633697948384747,2024-11-30 +Resort Hotel,0,158,2017,April,14,1,0,3,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,D,E,1,Refundable,12.0,221.0,0,Transient-Party,76.58,0,0,Check-Out,Kevin Barton,georgegordon@example.org,345.449.3784x23972,675909847385,2024-04-24 +Resort Hotel,0,97,2017,April,15,9,2,4,2,0.0,0,HB,PRT,Corporate,TA/TO,0,0,0,A,C,0,No Deposit,13.0,179.0,0,Transient,42.13,0,0,Check-Out,Taylor Boyd,doriscollins@example.net,484.773.8133,4108944712085450498,2024-07-17 +Resort Hotel,0,0,2017,October,41,10,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,46.0,179.0,0,Transient,55.81,0,0,Check-Out,Ashley Schmitt,gpatrick@example.com,214.834.5520,2653136982190017,2025-06-10 +City Hotel,0,57,2017,July,30,23,2,3,2,1.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,227.83,0,1,Check-Out,Peter Goodman,clarkchristina@example.net,9279388478,30558465623073,2024-05-11 +City Hotel,1,323,2017,August,32,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,78.96,0,0,Canceled,James Barton,krystal77@example.net,001-316-661-9454x08212,180058272210949,2024-10-01 +Resort Hotel,1,0,2017,August,32,6,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,238.0,179.0,0,Transient,4.66,0,1,Canceled,Erika Petty,bradley71@example.net,8916876309,2243165164287017,2025-06-15 +Resort Hotel,0,12,2017,July,27,4,2,5,2,2.0,0,HB,IRL,Direct,Direct,0,0,0,C,C,0,No Deposit,249.0,179.0,0,Transient,114.41,1,0,Check-Out,Heidi Flores,monicatravis@example.org,001-334-307-6826,36255277465322,2024-08-07 +City Hotel,1,35,2017,June,24,12,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,8.0,179.0,0,Transient,222.57,0,1,Canceled,Melissa Ford,carolbrown@example.org,(324)991-8146x89400,3552679467931272,2025-05-24 +City Hotel,0,40,2017,April,17,24,1,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,0,No Deposit,14.0,179.0,0,Transient,112.4,0,0,Check-Out,Darlene Richardson,jane55@example.net,(949)262-8633x4584,213161686875538,2025-03-11 +Resort Hotel,0,15,2017,December,51,22,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,237.0,179.0,0,Transient,63.35,0,0,Check-Out,Susan Sullivan,james88@example.org,001-847-829-7335x450,4348252909774,2024-10-30 +City Hotel,1,260,2017,August,32,8,2,5,2,0.0,0,HB,RUS,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient-Party,156.24,0,0,Canceled,Jennifer Espinoza,leah14@example.net,(579)603-8847x592,4023346074417837396,2024-10-13 +City Hotel,0,86,2017,April,14,4,2,2,2,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Contract,134.45,0,2,Check-Out,James Nelson,jasoncastaneda@example.net,+1-341-308-6067x775,502006381037,2024-07-19 +City Hotel,0,24,2017,August,31,3,1,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,163.65,0,1,Check-Out,Alvin Cardenas,murphydaniel@example.org,(743)715-5023x9824,676378789199,2025-11-23 +City Hotel,0,22,2017,April,17,25,0,4,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,58.0,0,Transient-Party,113.45,0,0,Check-Out,Mr. Joshua Harrison,crossbarbara@example.org,+1-265-326-2109,4128358751578502,2024-07-16 +City Hotel,0,11,2017,May,22,26,0,1,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,155.53,0,0,Check-Out,Rebecca Combs,johnsonandrea@example.com,435.227.1976x65018,4983308121287707455,2025-05-25 +Resort Hotel,0,8,2017,March,10,5,4,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,248.0,179.0,0,Transient,136.37,0,1,Check-Out,Allen Bryant,larrymorris@example.org,(563)637-8930,563011374607,2025-11-19 +Resort Hotel,0,147,2017,March,13,31,3,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,1,Refundable,14.0,222.0,0,Transient-Party,80.19,0,0,Check-Out,Audrey Phelps,francisco56@example.net,202-310-4899,5480483397342953,2024-10-09 +Resort Hotel,0,38,2017,June,24,11,1,0,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,17.0,179.0,0,Transient,119.96,0,0,Check-Out,Rose Cabrera,tmorris@example.net,528-409-4264x1687,4633253908903,2025-03-26 +City Hotel,0,47,2017,December,51,21,0,1,2,0.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,76.98,0,0,Check-Out,James Prince,huntkimberly@example.org,+1-805-344-2105x9752,3577421287260678,2024-10-30 +Resort Hotel,0,278,2017,July,27,4,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,309.0,179.0,0,Transient-Party,98.38,0,0,Canceled,Patricia White,zgeorge@example.com,(920)323-8540x7799,4558573342899,2025-03-26 +City Hotel,0,1,2017,February,7,15,0,4,2,0.0,0,SC,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,10.0,179.0,0,Group,85.87,0,3,Check-Out,Christopher Elliott,vthomas@example.com,472.206.5021,4414078020970,2024-08-07 +City Hotel,1,42,2017,July,30,23,0,2,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,75,Transient,196.18,0,0,Canceled,Robert Jackson,tracymccormick@example.org,(575)568-6329,676181759652,2025-05-18 +City Hotel,0,155,2017,October,41,10,0,3,2,0.0,0,SC,FRA,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,138.4,1,0,Check-Out,Nancy Carter,chelseykeith@example.net,247-429-5760x57336,639047294835,2025-07-07 +Resort Hotel,0,1,2017,May,21,24,0,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,16.0,179.0,0,Transient,217.37,0,0,Check-Out,Aaron Pena,laurie53@example.com,+1-474-387-7531,6527290546070937,2026-03-25 +Resort Hotel,0,29,2017,November,48,30,0,4,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,47.12,0,1,Check-Out,Mary Osborn,fowens@example.org,001-995-379-5091x05296,4047804507972000,2024-09-13 +City Hotel,1,149,2017,August,32,10,0,3,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,F,F,0,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Canceled,Evelyn Hunter,christopherhart@example.org,001-780-370-0929x496,3523741911734474,2025-06-30 +City Hotel,0,84,2017,May,22,27,2,10,2,0.0,0,BB,AUT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,77.0,179.0,0,Contract,82.56,0,1,Check-Out,Rachel Allen,barryjonathan@example.net,+1-696-301-0794x3912,4830584637355,2024-11-08 +City Hotel,0,31,2017,March,9,2,0,4,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,103.79,0,1,Check-Out,Marcus Lambert,eromero@example.com,001-544-856-4268x60086,676301548480,2024-11-13 +City Hotel,1,265,2017,October,42,17,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,A,0,No Deposit,11.0,45.0,0,Transient,129.83,0,1,Canceled,Crystal Gross,ichan@example.com,994.885.4134,38901495474897,2024-04-16 +Resort Hotel,0,151,2017,April,14,1,1,3,1,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,B,1,Refundable,14.0,224.0,0,Transient-Party,48.33,0,0,Check-Out,Elizabeth Davis,william00@example.org,(416)854-8307x30670,2275416261607016,2026-02-16 +City Hotel,0,8,2017,October,41,9,4,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,11.0,179.0,0,Transient,185.37,0,0,Check-Out,Whitney Evans,georgewarren@example.org,620-336-2691,4609270639211636,2024-04-28 +City Hotel,1,414,2017,July,30,26,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,111.25,0,0,Canceled,Peggy Butler,bobflores@example.com,(664)926-2338x3587,4933092869310,2025-02-21 +Resort Hotel,0,127,2017,March,11,14,2,5,2,0.0,0,HB,AUT,Direct,Direct,1,0,1,E,E,1,No Deposit,16.0,179.0,75,Transient-Party,71.8,1,3,Check-Out,Nicole Campbell,pfleming@example.org,267.783.0575x8810,180048251565959,2025-10-25 +Resort Hotel,0,263,2017,October,42,15,2,5,1,0.0,0,HB,GBR,Groups,TA/TO,0,0,0,A,A,0,No Deposit,320.0,179.0,63,Transient-Party,71.92,0,0,Check-Out,David Gates,katiemiller@example.com,504.265.1442,4971873467144,2025-09-19 +City Hotel,0,80,2017,December,52,25,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,27.0,179.0,0,Transient-Party,87.37,0,1,Check-Out,Ralph Acevedo,igardner@example.net,588-288-3263x3430,180060305540359,2025-11-08 +Resort Hotel,0,2,2017,December,51,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,42.0,78.0,0,Transient,51.2,0,0,Check-Out,Steven Sullivan,corey79@example.org,+1-544-632-4795x488,4349269440879396,2025-01-15 +City Hotel,0,20,2017,October,40,3,0,2,2,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,87.51,0,1,Check-Out,Jeff Keller,qlawson@example.com,8597639397,2389467791986241,2025-02-01 +City Hotel,0,128,2017,June,26,30,1,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,103.53,0,1,Check-Out,Jasmine Molina,derekhays@example.com,445-327-0673,4149140131125526,2026-01-13 +Resort Hotel,0,105,2017,July,30,22,1,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,112.48,0,2,Check-Out,Katelyn Brown,shari00@example.net,315.341.9333x86078,639022731561,2025-03-19 +City Hotel,0,107,2017,July,27,2,0,1,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,252.0,1,1,Check-Out,Jeremiah Smith,richard89@example.org,+1-292-743-8676,3500222393568091,2025-02-17 +Resort Hotel,0,25,2017,October,40,2,2,5,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,275.0,179.0,0,Transient,47.66,0,0,Check-Out,Sonya Baker,kathleenmanning@example.net,001-336-261-3598x9039,346777295186767,2025-12-29 +City Hotel,1,16,2017,November,45,8,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,No Deposit,126.0,179.0,0,Transient,126.42,0,0,Canceled,Casey Browning,mejiasuzanne@example.net,(700)914-8080x08163,30283307208138,2024-12-17 +City Hotel,0,36,2017,April,18,29,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,31.0,179.0,0,Transient,123.46,1,0,Check-Out,Shane Foster,belindavega@example.com,001-776-796-2325,4395072373889702,2025-01-31 +City Hotel,0,8,2017,November,47,20,0,2,2,0.0,0,BB,ESP,Corporate,TA/TO,0,0,0,D,D,1,No Deposit,13.0,219.0,0,Transient-Party,107.91,0,1,Check-Out,Michael Mason,rmartinez@example.org,630.277.2294x82882,4914363375192711294,2026-02-05 +Resort Hotel,0,20,2017,February,9,26,1,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,21.0,179.0,0,Transient,36.89,0,0,Check-Out,Kimberly Nguyen,hmurray@example.net,001-593-692-6008x77510,213117377255190,2024-08-15 +City Hotel,0,10,2017,May,18,4,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,129.74,0,0,Check-Out,Abigail Anderson,msmith@example.com,672-267-6373,6516089379406413,2024-11-06 +Resort Hotel,0,147,2017,July,30,24,4,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,135.91,1,3,Check-Out,Lauren Burton,brent28@example.com,7845638037,676315559879,2026-02-05 +City Hotel,0,2,2017,October,40,4,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,A,0,Non Refund,13.0,45.0,0,Transient,62.2,0,0,Check-Out,Spencer Shaw,balljoseph@example.org,536.206.9121x058,4906306701768,2024-04-09 +Resort Hotel,1,247,2017,May,18,2,2,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,Non Refund,239.0,179.0,0,Transient,115.41,0,0,Canceled,Charles Hernandez,phillipbaldwin@example.net,(212)900-4247,180043026534653,2024-04-29 +City Hotel,1,327,2017,September,39,28,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,D,0,No Deposit,12.0,63.0,0,Transient,65.41,0,2,No-Show,Gary Smith,jasoncampbell@example.net,001-801-550-9008x17032,2284198923689843,2025-01-23 +Resort Hotel,0,7,2017,September,36,7,1,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,C,0,No Deposit,242.0,179.0,0,Transient-Party,59.88,0,1,Check-Out,Teresa Wallace,connercharlene@example.net,585.236.3250x15295,4084119184310144712,2024-11-14 +Resort Hotel,1,100,2017,March,10,4,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,364.0500000000011,179.0,0,Transient,75.33,0,0,No-Show,Christian Davenport,thompsoncourtney@example.com,+1-533-935-2181x460,2260787994046871,2024-06-09 +City Hotel,1,23,2017,July,30,28,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,152.7,0,0,No-Show,Willie Myers,renee66@example.net,+1-243-691-5333x385,6011879351774600,2025-02-13 +City Hotel,0,49,2017,July,29,21,0,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,81.73,0,1,Check-Out,Douglas Edwards,lbutler@example.net,2302017558,30533809128238,2025-04-07 +City Hotel,1,192,2017,June,26,26,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,12.0,179.0,0,Transient,71.35,0,0,Canceled,Melissa Buchanan,edwinmason@example.com,697.699.2840x446,4099630892310762,2026-02-06 +City Hotel,1,156,2017,June,24,8,2,3,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,19.0,179.0,0,Transient,83.29,0,0,Canceled,Ann Nguyen,sarah64@example.com,740-857-5575x35254,2265259326693700,2025-01-20 +Resort Hotel,0,148,2017,June,24,14,4,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,245.0,179.0,0,Transient,247.27,0,1,Check-Out,Joseph Kramer,rstokes@example.net,+1-725-987-6910x084,676270705723,2026-01-22 +City Hotel,0,2,2017,February,7,16,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,40.62,0,1,Check-Out,Devin Jones,edward99@example.org,760-908-6089,4877772622814,2025-11-14 +City Hotel,0,60,2017,May,19,9,1,4,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,6.0,179.0,0,Transient,216.96,0,2,Check-Out,James Jones,hamiltonbarbara@example.org,903-270-5136,4921970833923784,2025-11-08 +City Hotel,0,4,2017,December,52,29,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Contract,119.16,1,2,Check-Out,Rachel Richards,gailwright@example.com,883-456-5866,4314757727053,2025-04-02 +Resort Hotel,0,1,2017,February,8,20,0,1,1,0.0,0,BB,PRT,Complementary,Corporate,1,0,1,A,I,1,No Deposit,33.0,331.0,0,Transient-Party,1.94,0,0,Check-Out,Brenda Brown,howardrodriguez@example.org,+1-466-217-0709x7423,3516944329612634,2025-11-19 +City Hotel,0,4,2017,July,30,23,0,2,2,0.0,0,HB,,Direct,Direct,0,0,0,D,D,1,No Deposit,11.0,179.0,0,Transient,145.41,0,0,Check-Out,Sarah Thomas,gking@example.net,898.213.2337,577739433552,2025-12-12 +Resort Hotel,0,1,2017,April,15,8,2,7,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,18.0,179.0,0,Transient,139.55,0,3,Check-Out,Bryan Barnes,kimberlyjensen@example.com,825.503.1829x90659,4614443477904557666,2025-12-30 +City Hotel,1,44,2017,November,48,27,2,5,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,15.0,179.0,0,Transient,93.68,0,0,Canceled,Kevin Wagner,aramirez@example.com,001-315-624-7316x7073,2224509626995787,2024-12-29 +City Hotel,0,50,2017,September,37,12,0,2,1,0.0,0,BB,PRT,Corporate,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,111.01,0,0,Check-Out,Michelle Mcbride,cmack@example.com,506-733-6121,180076764510626,2025-11-14 +City Hotel,1,46,2017,August,33,17,0,2,1,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,113.06,0,0,Canceled,Alexander Jones,fburgess@example.org,923.357.9832x56052,3580115249955293,2026-01-06 +City Hotel,1,0,2017,November,45,10,0,3,1,0.0,0,SC,PRT,Undefined,Corporate,0,0,0,A,A,1,No Deposit,16.0,331.0,0,Transient-Party,30.87,0,0,Canceled,Joshua Walter,aaronfreeman@example.com,449-693-4454,3575293065820359,2024-08-24 +City Hotel,0,241,2017,April,15,6,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient-Party,128.77,0,2,Check-Out,Julie Wright,jeanwalker@example.net,001-632-633-6911x233,3582011741971342,2025-05-07 +Resort Hotel,0,12,2017,December,49,3,1,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,310.0,179.0,0,Transient,50.61,0,2,Check-Out,Gabriel Davis,jcurtis@example.net,001-939-914-3196x7782,4727358892317,2024-12-11 +City Hotel,1,337,2017,October,43,24,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.23,0,0,Canceled,Jennifer King,courtneyshaffer@example.com,(479)394-1929x2834,346476739026156,2026-01-29 +City Hotel,0,0,2017,April,17,27,1,1,2,1.0,0,BB,FRA,Direct,Direct,0,0,1,F,F,0,No Deposit,12.0,179.0,0,Transient,139.67,0,1,Check-Out,Crystal Cameron,jean63@example.org,835-541-4786x4935,4488573850259374,2025-11-03 +City Hotel,1,391,2017,October,41,8,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,41,Transient,91.72,0,0,Canceled,Warren Allen,wardjeanne@example.com,+1-230-704-5899x18596,3536764395183088,2025-05-15 +City Hotel,0,2,2017,March,10,8,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,21.0,179.0,0,Transient-Party,63.29,1,0,Check-Out,Charles Watson,trevorknight@example.com,773.354.6968x66071,348899651847473,2026-02-15 +Resort Hotel,0,142,2017,January,2,2,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,241.0,179.0,0,Transient,48.04,0,1,Check-Out,Latasha Barnett,annamoore@example.net,6202507047,3509560986796798,2026-01-15 +City Hotel,1,174,2017,June,23,4,1,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,102.42,0,2,Canceled,Paul Luna,hayden14@example.net,835-552-0165x69745,3523237470735655,2025-04-14 +Resort Hotel,1,170,2017,April,17,20,2,4,2,0.0,0,HB,PRT,Offline TA/TO,Corporate,0,0,0,E,E,1,No Deposit,276.0,179.0,0,Transient-Party,112.0,0,0,Canceled,Cynthia Cooper,angela21@example.net,238-458-1658,676311999616,2024-07-14 +Resort Hotel,0,11,2017,February,9,24,1,1,2,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,B,1,No Deposit,11.0,222.0,0,Transient,39.23,0,0,Check-Out,Angela Ryan,sparker@example.com,(249)985-4314,4456272866106350,2025-07-26 +Resort Hotel,0,39,2017,August,34,19,4,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,141.58,0,0,Check-Out,Carmen Campbell,reynoldsheather@example.org,474-502-8226,38147085489297,2024-06-28 +Resort Hotel,0,0,2017,March,12,19,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,0,0,A,C,0,No Deposit,14.0,62.0,0,Transient,53.5,0,0,Check-Out,Jeffrey Davis,dennismanning@example.org,214-582-8445x52154,3568699379593699,2024-04-03 +City Hotel,0,155,2017,March,14,30,0,3,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,7.0,179.0,0,Transient,93.4,0,1,Check-Out,Amanda Novak,sharonphillips@example.com,223-682-8802x33960,4591647516761991,2025-12-06 +Resort Hotel,0,0,2017,February,8,24,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,238.0,179.0,0,Transient,47.75,0,2,Check-Out,Michele Armstrong,dennisrobertson@example.com,(376)854-2513x8960,180014812482092,2026-01-07 +City Hotel,0,16,2017,March,10,4,2,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.89,0,1,Check-Out,Shannon Mcguire,ian15@example.com,(410)298-4677,4626690610682365,2025-08-04 +City Hotel,1,50,2017,April,15,11,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,109.94,0,1,Canceled,Logan Baldwin,christina45@example.org,590.523.1319x6905,4649165726308,2025-11-09 +City Hotel,0,55,2017,August,33,12,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,218.59,0,3,Check-Out,Kimberly Nguyen,westcurtis@example.net,6594052451,4799571028987,2025-11-12 +City Hotel,0,108,2017,August,33,12,2,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Group,151.69,0,2,Check-Out,Wendy Ayala MD,wilsonterri@example.org,(248)812-2994x221,3509350195778906,2025-12-31 +City Hotel,0,2,2017,July,29,16,0,1,1,0.0,0,BB,USA,Online TA,GDS,0,0,0,A,A,0,No Deposit,173.0,179.0,0,Transient,123.38,0,0,Check-Out,Billy Jones,brianstevens@example.com,441.565.7879x85100,4810474134052718410,2024-12-14 +City Hotel,0,43,2017,March,12,19,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,8.0,179.0,0,Transient,97.08,0,0,Check-Out,Jack Brown,stephen00@example.com,724.466.9025,4314708385838289636,2025-04-02 +City Hotel,0,4,2017,August,35,30,0,1,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,232.01,0,1,Check-Out,John Goodwin,johnmorrison@example.org,419.422.1535,3564736415397893,2024-10-17 +City Hotel,0,144,2017,August,35,27,0,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,G,G,0,No Deposit,16.0,179.0,0,Transient,222.17,1,3,Check-Out,Matthew Thompson,leonsamantha@example.net,001-354-830-3038x47466,180060484596693,2024-09-14 +City Hotel,0,15,2017,May,21,21,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,104.3,1,0,Check-Out,Christopher Guerrero,kelsey94@example.net,001-558-862-9835x253,4818726602817078,2026-02-28 +City Hotel,1,62,2017,December,49,6,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,43.51,0,0,Canceled,Jasmine Davis,paulmclaughlin@example.org,799-519-0317,4520787723673807,2025-01-23 +City Hotel,0,1,2017,March,12,24,1,2,2,0.0,0,SC,,Complementary,TA/TO,0,0,0,A,K,0,No Deposit,12.0,179.0,0,Transient,1.97,0,0,Check-Out,Kelly Morrison,pcuevas@example.org,225.286.6333x30590,180069560870104,2024-12-16 +Resort Hotel,0,16,2017,July,31,29,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,1,0,A,E,0,No Deposit,16.0,75.0,0,Transient,103.73,0,0,Canceled,Eric Murphy,smithisaiah@example.net,338.305.6352,675916482135,2026-02-15 +Resort Hotel,1,241,2017,July,30,23,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Refundable,240.0,179.0,0,Transient,35.99,0,0,Canceled,Andrea Miller,nlane@example.org,887-608-2504,38939853536378,2025-02-23 +Resort Hotel,0,22,2017,November,45,10,2,1,1,0.0,0,BB,PRT,Offline TA/TO,Corporate,0,0,0,A,D,0,No Deposit,364.0500000000011,179.0,0,Transient,42.79,0,0,Check-Out,Lori Allen,swilkerson@example.org,780-656-1141x69736,3553445518629862,2025-05-20 +City Hotel,0,1,2017,March,12,17,0,1,1,1.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,101.35,0,2,Check-Out,Kimberly Clark,joel28@example.net,207.678.8032x51910,2246041844628663,2025-10-06 +City Hotel,0,34,2017,September,36,6,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,107.34,0,2,Check-Out,James Hogan,zstewart@example.org,816.562.0104,2249661071396853,2025-11-12 +Resort Hotel,1,151,2017,March,13,29,2,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,78.39,0,1,No-Show,Ruth Lloyd,denisegill@example.net,4986483075,630486667755,2024-10-24 +City Hotel,0,99,2017,October,41,12,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,137.65,0,2,Check-Out,Lindsey Brandt,dholloway@example.org,851-965-1127,574483166371,2024-12-22 +Resort Hotel,1,155,2017,February,6,5,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,E,I,0,Refundable,23.0,179.0,0,Transient,84.41,0,0,Canceled,Joel Mcdonald,christymiller@example.net,001-976-264-5270,4611063609294484,2024-04-23 +Resort Hotel,0,20,2017,January,2,6,2,1,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,2,No Deposit,248.0,225.0,0,Transient,48.33,0,0,Check-Out,Holly Dodson,ilewis@example.com,001-954-236-5745x4967,4178800093285072150,2024-10-20 +Resort Hotel,1,33,2017,May,19,12,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,1,1,1,A,C,0,No Deposit,244.0,179.0,0,Transient,89.46,0,1,Canceled,Tara Rangel,david34@example.net,001-245-251-2567x2145,36243131059655,2025-03-06 +Resort Hotel,0,42,2017,September,38,23,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,H,0,No Deposit,236.0,179.0,0,Contract,182.74,0,1,Check-Out,Alison Garza,walterstony@example.com,+1-550-527-3484x12957,30179271070076,2024-12-27 +Resort Hotel,1,48,2017,December,49,5,1,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,1,No Deposit,32.0,179.0,75,Transient-Party,78.65,0,0,Check-Out,Chad Mendoza,richard13@example.com,2014070626,6011468411749172,2025-07-14 +City Hotel,0,0,2017,October,42,20,0,1,1,0.0,0,BB,PRT,Corporate,Direct,0,1,0,A,A,0,No Deposit,37.0,179.0,0,Group,62.29,1,0,Check-Out,Gail Mooney,april12@example.net,+1-758-710-6009,6592760501542740,2024-07-13 +City Hotel,0,48,2017,July,28,8,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,133.16,0,1,Check-Out,Cheryl Cruz,phillipsjohn@example.com,(387)200-6746,4533774914756075786,2026-03-08 +City Hotel,1,241,2017,August,34,22,1,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,242.53,0,1,Canceled,Melissa Lee,grayheather@example.net,+1-716-880-5985,3559400698093524,2025-01-20 +City Hotel,1,198,2017,May,19,6,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,107.39,0,0,Canceled,Alexander Watkins,uvaughn@example.net,924-792-9984x01484,377049002968016,2024-06-18 +Resort Hotel,0,23,2017,August,34,17,4,7,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,232.33,0,1,Check-Out,Vanessa Dennis,john03@example.net,490.414.4722x08207,579614577636,2024-11-25 +City Hotel,1,267,2017,July,27,2,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,33.0,179.0,0,Transient,103.54,0,0,Canceled,Miguel Taylor,rileyandrew@example.org,984-879-2258,502036676711,2025-06-30 +City Hotel,0,1,2017,September,36,7,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,9.0,179.0,0,Transient,215.66,0,3,Check-Out,Dylan Cline,mooreemily@example.net,947.955.6207,180079976241022,2025-01-20 +City Hotel,1,25,2017,July,30,25,2,5,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,38.0,179.0,0,Transient,80.02,0,2,No-Show,Rhonda Jackson,reginamartinez@example.com,598.247.8770x136,4577125878226,2025-12-26 +Resort Hotel,1,371,2017,September,37,12,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,364.0500000000011,179.0,0,Transient-Party,48.52,0,2,Canceled,Sean Jones,curtiscurtis@example.org,+1-483-925-7889,30335775742491,2025-07-08 +Resort Hotel,0,39,2017,February,5,4,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,65.67,0,1,Check-Out,David Myers,bbell@example.org,845.856.0387x51351,6011844474144255,2025-04-15 +City Hotel,1,168,2017,May,19,5,1,2,2,0.0,0,BB,USA,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,110.89,0,2,Canceled,Gregory Stewart,tpratt@example.com,(339)500-8551,676220142399,2025-06-15 +City Hotel,1,2,2017,August,31,2,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,83.42,0,0,No-Show,Shannon Young,sethtaylor@example.net,(783)636-3606,675997363063,2025-12-27 +Resort Hotel,0,117,2017,May,19,6,4,3,2,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,1,Refundable,12.0,222.0,0,Transient-Party,125.89,0,0,Check-Out,Tanya Lewis,johnthomas@example.net,603-727-5791x94433,5552007766615211,2024-05-22 +City Hotel,1,137,2017,November,48,30,2,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,71.0,179.0,0,Transient,118.21,0,0,Canceled,Brett Kemp,zmontgomery@example.org,990-340-5425,4858068950747,2025-03-29 +Resort Hotel,0,0,2017,January,5,30,0,1,2,0.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,45.51,0,1,Check-Out,Ashley Martinez,angelbennett@example.org,578-274-3273,6536875013059642,2024-03-30 +Resort Hotel,1,15,2017,February,5,1,0,3,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,124.81,0,0,Canceled,Dana Taylor,daniel05@example.org,474-891-0923x9416,6011126335093214,2025-11-13 +Resort Hotel,0,36,2017,March,10,3,2,5,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,C,0,No Deposit,328.0,179.0,0,Group,126.85,0,0,Check-Out,William Rivas,jose10@example.com,(374)487-0625x69899,373670132202697,2026-01-06 +City Hotel,1,36,2017,October,40,2,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Contract,89.14,0,1,Canceled,Michael Brown,ann46@example.net,8929861635,4716022485533,2024-07-12 +City Hotel,0,51,2017,April,17,24,2,5,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,0,No Deposit,12.0,179.0,0,Transient,228.91,0,0,Check-Out,Trevor Landry,hscott@example.org,(870)526-2183x73078,4002074105661,2024-09-12 +City Hotel,0,194,2017,August,32,4,0,4,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,A,D,1,No Deposit,15.0,179.0,0,Transient,233.09,0,0,Check-Out,Jacqueline Chen,dblack@example.com,773-973-5780,6011031512913244,2025-08-02 +City Hotel,0,6,2017,March,12,22,1,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,108.01,0,2,Check-Out,Brittany Cervantes,woodwardsamuel@example.org,428.929.4221x73798,4003964006859574932,2025-12-18 +City Hotel,0,15,2017,August,34,22,1,0,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,B,0,No Deposit,7.0,179.0,0,Contract,91.99,0,1,Check-Out,Jose Johnson,lopezdavid@example.net,001-599-552-9129x79052,4533057773373780,2025-02-13 +City Hotel,0,0,2017,January,4,24,0,2,2,0.0,0,BB,PRT,Corporate,Direct,1,0,1,A,A,0,No Deposit,14.0,222.0,0,Transient,42.26,1,1,Check-Out,Cindy Simon,jennawright@example.com,4205678144,4685531535407798914,2025-05-03 +City Hotel,0,43,2017,November,45,6,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,86.18,0,0,Check-Out,Lauren Lewis,rtaylor@example.org,409.612.9474,3520849189828085,2025-04-22 +Resort Hotel,1,251,2017,May,21,25,2,5,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,L,2,Non Refund,316.0,179.0,0,Transient-Party,33.57,0,0,Canceled,Anthony Delgado,qjones@example.com,001-460-972-2463,6011065779207148,2025-09-17 +Resort Hotel,1,12,2017,December,49,9,0,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,83.33,0,1,Canceled,Jose Banks,qevans@example.net,001-835-979-8801,4881346059006257,2025-11-30 +City Hotel,1,332,2017,July,27,3,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,2.0,179.0,0,Transient,64.07,0,0,Canceled,Matthew Hart,nelsondavid@example.net,(606)409-6713,3522178363299600,2025-02-17 +Resort Hotel,0,31,2017,November,44,2,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,157.0,179.0,0,Transient,49.83,0,1,Check-Out,Jenny Mcfarland MD,cellis@example.net,319-310-0137,30004047557224,2025-08-04 +City Hotel,0,66,2017,August,32,5,2,4,2,0.0,0,HB,ESP,Direct,Direct,0,0,0,A,F,1,No Deposit,12.0,179.0,0,Transient-Party,237.02,0,1,Check-Out,Samantha Dixon,katherine72@example.net,(512)766-2217,4117348889407412,2025-04-29 +City Hotel,1,150,2017,January,5,27,2,5,2,0.0,0,SC,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,11.0,179.0,0,Transient,82.74,0,0,Canceled,Jennifer Gillespie,barbarasimpson@example.net,548.239.9368,3541423113824167,2024-05-02 +City Hotel,0,7,2017,August,32,8,1,3,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.23,0,1,Check-Out,Madison Gardner,nmendoza@example.net,(461)461-4916x77255,30201172395392,2025-01-21 +City Hotel,0,2,2017,March,13,31,0,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,84.0,179.0,0,Transient,80.53,0,0,Check-Out,Damon Stewart,scott08@example.com,(705)878-8891,4727337498344571,2024-05-01 +Resort Hotel,0,160,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,2,Refundable,12.0,224.0,0,Transient-Party,39.81,0,0,Check-Out,Rhonda Knox MD,glucas@example.net,+1-558-400-5667x2784,676304603415,2024-10-19 +Resort Hotel,0,185,2017,August,34,24,2,0,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Contract,63.13,0,2,Check-Out,Mrs. Terri Wagner,stephencase@example.net,001-576-950-0701,6595565417137072,2024-08-10 +Resort Hotel,0,2,2017,February,7,12,2,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,19.0,179.0,0,Transient,91.03,0,0,Check-Out,Heidi Daniels,laraalexis@example.com,(902)205-7739,30133650109260,2026-02-03 +City Hotel,1,0,2017,February,8,23,1,0,1,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,127.81,0,0,No-Show,Jodi Hopkins DVM,matthew98@example.com,001-668-936-9643,3557592197275487,2025-04-24 +Resort Hotel,1,248,2017,July,27,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,238.0,179.0,0,Contract,80.91,0,2,Canceled,Andrew Russell,pamelagonzalez@example.org,355-579-5157x366,6514357526417183,2024-09-03 +Resort Hotel,0,105,2017,April,14,4,1,2,2,1.0,0,BB,ESP,Online TA,Direct,0,0,0,G,G,0,No Deposit,13.0,179.0,0,Transient,114.54,0,3,Check-Out,Anthony Ramirez MD,zthompson@example.net,(430)450-7426,6586999229413226,2025-02-05 +Resort Hotel,1,303,2017,May,22,26,4,7,2,0.0,0,BB,GBR,Online TA,Direct,0,0,0,E,E,0,No Deposit,243.0,179.0,0,Transient,136.16,0,3,Canceled,Timothy Douglas,bennettlarry@example.org,001-222-753-6610x33072,4487007197606,2025-08-16 +City Hotel,0,99,2017,April,17,23,2,4,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient-Party,109.21,0,0,Check-Out,Kendra Mercer,michellejensen@example.org,989-925-4916,3571252193584182,2024-10-11 +Resort Hotel,1,143,2017,December,48,1,1,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,1,0,G,E,0,Non Refund,32.0,179.0,0,Transient,86.02,0,0,Canceled,Denise Nelson,moorebrittany@example.net,+1-508-608-5268x4063,4874386362820,2025-01-18 +City Hotel,1,94,2017,December,52,25,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,26.0,179.0,65,Transient,82.01,0,0,Canceled,Theresa Silva,rcarson@example.org,(615)973-6275,4219643604293,2025-11-07 +City Hotel,0,10,2017,May,18,1,0,2,1,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,20,Transient-Party,109.81,0,0,Check-Out,Kaitlyn Gilmore,janet72@example.com,715.744.8032x756,3503794709850501,2025-10-02 +City Hotel,0,19,2017,June,23,3,2,7,3,0.0,0,BB,FRA,Online TA,GDS,0,0,0,E,E,0,No Deposit,177.0,179.0,0,Transient,126.17,0,1,Check-Out,Rhonda Solomon,fsanchez@example.org,001-811-365-9484,6011715905687494,2026-02-09 +City Hotel,0,2,2017,December,49,7,1,2,1,0.0,0,BB,FRA,Corporate,Corporate,0,0,0,A,A,0,No Deposit,11.0,75.0,0,Transient,83.03,0,3,Check-Out,Charles Clayton,qjohnson@example.com,(441)405-9324x887,502032222346,2025-12-17 +Resort Hotel,0,33,2017,October,41,11,2,5,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,A,A,1,No Deposit,102.0,179.0,0,Transient,103.73,0,0,Check-Out,Steven Baker,hchan@example.org,625.824.9949x8491,4458834364875458802,2024-09-30 +Resort Hotel,1,14,2017,February,8,17,1,1,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,49.88,0,1,No-Show,Amanda Turner,keith58@example.com,001-478-333-2990x9000,4661377919400741,2025-01-22 +City Hotel,1,7,2017,December,52,30,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Contract,96.26,0,0,Canceled,Kenneth Rowe,walkeraaron@example.com,799.944.6484x3574,4590845879891121,2025-08-30 +Resort Hotel,1,112,2017,June,23,6,0,7,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,B,0,Non Refund,14.0,179.0,0,Transient,62.83,0,1,No-Show,Samantha Lee,hannapaul@example.com,001-661-615-6674x2925,6537422525658485,2025-06-08 +City Hotel,0,13,2017,November,48,27,0,4,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,2,No Deposit,13.0,45.0,0,Transient,109.32,0,0,Check-Out,Nicole Rogers,smithstephen@example.net,786.779.8704,4180469880033619,2024-10-08 +City Hotel,0,25,2017,February,9,26,1,1,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,105.83,0,1,Check-Out,Heather Hicks,williamsashley@example.net,803.318.9081x6347,4693651080522273,2024-06-10 +Resort Hotel,1,148,2017,February,9,26,1,0,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,Refundable,13.0,179.0,0,Transient-Party,80.02,1,0,No-Show,Joseph Meza,whitney32@example.org,001-426-876-0074x01501,6011461522271384,2024-06-27 +Resort Hotel,0,12,2017,February,6,4,1,0,2,0.0,0,BB,NLD,Direct,Direct,0,0,0,A,G,0,No Deposit,14.0,179.0,0,Transient,51.55,1,0,Check-Out,Richard Davenport,aaron77@example.com,+1-500-402-9264x19866,4169459798851694,2024-08-27 +City Hotel,0,2,2017,October,42,17,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,27.0,247.0,60,Transient-Party,113.61,0,0,Check-Out,Darlene Peterson,elizabeth77@example.net,+1-706-767-7346,36614368215022,2025-12-12 +City Hotel,1,146,2017,May,22,26,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,Non Refund,9.0,179.0,0,Transient,230.94,0,0,Canceled,David Gibson,james60@example.org,001-697-557-8821,4324420618227467,2025-05-10 +City Hotel,1,80,2017,December,52,26,2,4,2,1.0,0,BB,POL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,158.0,179.0,0,Transient,72.23,0,0,Canceled,Sarah Pearson,patrick48@example.com,443-348-8185x8698,30471692573568,2024-10-27 +City Hotel,0,3,2017,October,43,24,0,1,1,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,132.38,0,2,Check-Out,Jason Robinson,maria98@example.net,+1-672-877-0024,4498425137902862720,2026-02-26 +City Hotel,0,62,2017,November,44,2,1,1,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,10.0,179.0,0,Transient,78.21,0,2,Check-Out,Jeremy Hunter,jonathan49@example.net,001-822-709-1018x25399,4769184494976566595,2024-07-01 +City Hotel,0,44,2017,February,8,21,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient-Party,63.1,0,0,Check-Out,Thomas Howard,cwalton@example.net,569.263.7664,4540571055002926,2026-02-25 +City Hotel,1,258,2017,December,49,5,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,10.0,179.0,0,Transient,79.73,0,0,Canceled,Leslie Russell,phillipsbrian@example.net,981.501.8470x6850,6541178079387053,2024-08-24 +City Hotel,0,160,2017,July,30,26,2,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,215.91,0,2,Check-Out,Michael Torres,albertleonard@example.com,516.257.8358x111,4765645466815056,2025-06-22 +Resort Hotel,0,145,2017,August,35,30,1,5,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,239.0,179.0,0,Transient,252.0,0,1,Check-Out,Jake Contreras,sherry59@example.org,548-987-3877x351,3523835783979876,2025-10-29 +City Hotel,0,10,2017,June,23,3,0,3,2,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.52,0,3,Check-Out,Amy Steele,herreramatthew@example.org,+1-680-683-3013,4835343980673,2025-08-29 +City Hotel,1,39,2017,September,36,9,0,2,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,1,0,F,E,0,No Deposit,239.0,179.0,0,Transient-Party,95.74,0,0,Canceled,Michelle Ruiz,rachelfrederick@example.com,001-278-883-3109x2390,6505294956206227,2024-04-15 +City Hotel,0,110,2017,September,39,23,2,2,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,G,G,1,No Deposit,16.0,179.0,0,Transient,164.99,0,3,Check-Out,Andrew Wilson,joneserin@example.net,453-925-5118,4320856309722877873,2025-10-08 +City Hotel,0,10,2017,December,49,5,0,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,80.19,0,1,Check-Out,Adrian Thompson,waguilar@example.org,001-352-335-6805,6011066921110230,2026-01-21 +City Hotel,0,18,2017,November,48,27,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,2,No Deposit,16.0,76.0,0,Transient-Party,51.57,0,0,Check-Out,Samantha Morgan,katrina47@example.org,(794)619-5225x098,4685004981777275,2024-06-06 +City Hotel,0,17,2017,October,40,2,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,100.7,0,1,Check-Out,Leah Smith,bsantos@example.org,001-444-851-7418,30341745930687,2025-08-11 +Resort Hotel,0,122,2017,September,39,29,2,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,175.0,179.0,0,Transient-Party,84.13,1,0,Check-Out,Kelly Dickerson,balexander@example.net,+1-418-511-9400x48853,676328403156,2025-05-10 +City Hotel,0,17,2017,October,43,23,0,1,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,83.97,0,1,Check-Out,Stephen Matthews,keithmichael@example.org,282.422.3265x153,372240373220385,2024-11-29 +Resort Hotel,1,229,2017,October,44,31,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,50.19,0,2,Canceled,Heidi Larson,iduran@example.com,270-784-3936x895,2346700813047903,2026-03-16 +City Hotel,0,13,2017,August,34,20,2,5,3,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,29.0,179.0,0,Contract,121.25,0,0,Check-Out,Daniel Smith,brian27@example.org,001-605-716-2395x770,3555096163145742,2025-03-09 +Resort Hotel,0,0,2017,May,20,11,4,5,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,D,0,No Deposit,16.0,179.0,0,Transient,45.6,0,2,Check-Out,Kimberly Cain,andreaward@example.net,3594203173,3536332717275121,2024-11-21 +City Hotel,1,412,2017,May,21,24,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,276.0,179.0,0,Transient,132.97,0,0,Canceled,Matthew Reeves,qjones@example.org,384-850-5128x53743,676317945738,2024-08-04 +Resort Hotel,1,3,2017,October,41,13,0,1,1,1.0,0,BB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,246.0,179.0,0,Transient,5.6,0,0,Canceled,Phillip Patel,molly20@example.com,(723)446-9692x2149,6011632173030804,2025-06-07 +City Hotel,0,1,2017,October,41,13,0,2,1,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,C,0,No Deposit,9.0,179.0,0,Transient-Party,62.38,0,0,Check-Out,Frank Adkins MD,tgardner@example.net,(674)412-0139,349237269757835,2025-03-11 +City Hotel,1,141,2017,July,31,29,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,108.52,0,2,Canceled,Beverly Curtis,kgreene@example.net,474.454.1411,502089975390,2025-08-24 +City Hotel,0,17,2017,April,17,24,2,3,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,240.0,179.0,0,Transient,133.56,0,3,Check-Out,Linda Shelton,henry82@example.net,001-712-220-3343x744,379128291668228,2026-03-01 +City Hotel,0,3,2017,October,41,8,2,2,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,93.2,0,0,Check-Out,Susan Carpenter,gonzalezdave@example.org,932.967.7395x38553,213116310897530,2024-10-05 +Resort Hotel,1,313,2017,July,29,15,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,D,D,0,No Deposit,241.0,179.0,0,Contract,65.96,0,1,Canceled,Todd Young,dperkins@example.com,927.492.8278x405,4929455561931987,2025-04-30 +City Hotel,0,148,2017,June,22,2,0,5,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,137.0,179.0,0,Transient,87.88,0,1,Canceled,Connie Kelly,marcwright@example.com,342-550-6431,341799285251109,2026-02-01 +City Hotel,0,4,2017,May,19,8,0,1,1,0.0,0,BB,USA,Corporate,GDS,0,0,0,A,A,0,No Deposit,192.0,45.0,0,Transient,144.57,0,0,Check-Out,Shannon Johnson,austinwebb@example.net,001-445-664-9105,3576730118782127,2025-08-31 +Resort Hotel,0,11,2017,August,36,31,0,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,135.84,0,3,Check-Out,Jeff Pacheco,haydenstanley@example.net,258-980-9361,6011542344897660,2025-11-15 +Resort Hotel,0,23,2017,December,52,30,0,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,E,1,No Deposit,240.0,179.0,0,Transient,104.98,1,2,Check-Out,Cory Fitzpatrick,madams@example.net,503.621.2282,581687669449,2025-03-23 +City Hotel,1,303,2017,October,41,8,0,2,2,0.0,0,BB,ITA,Groups,TA/TO,0,0,0,B,B,0,No Deposit,1.0,179.0,0,Contract,61.56,0,0,Canceled,Melanie Brown,gjohnson@example.com,725.773.0101x68814,3529971457352365,2025-10-30 +City Hotel,0,15,2017,December,52,30,1,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,109.93,0,2,Check-Out,Richard Rodriguez,crystalsmith@example.com,465-668-6020x53824,3587453969797253,2024-12-20 +City Hotel,0,154,2017,January,5,28,0,3,2,1.0,0,BB,NLD,Direct,Direct,0,0,0,A,A,2,No Deposit,15.0,179.0,0,Transient,109.29,0,2,Check-Out,Samantha Clark,nfrench@example.net,280.894.6420,4669620565391611,2024-06-30 +City Hotel,0,102,2017,March,9,2,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,84.6,0,2,Check-Out,Terry Carter,joseph24@example.net,875-731-6342,3590622720220731,2025-07-14 +City Hotel,0,110,2017,January,2,6,0,2,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,No Deposit,11.0,179.0,0,Transient,238.75,1,3,Check-Out,Crystal Davis,lyoung@example.com,593.582.4693,341713753461520,2024-10-22 +Resort Hotel,0,257,2017,August,32,8,2,5,2,0.0,0,HB,ESP,Online TA,TA/TO,0,0,0,D,F,0,No Deposit,240.0,179.0,0,Transient,236.16,0,1,Check-Out,Molly Hester,davidwright@example.com,771-691-6854x03712,4135004331229,2025-10-30 +Resort Hotel,0,52,2017,August,32,9,1,2,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,C,C,0,No Deposit,246.0,179.0,0,Transient,199.09,1,1,Check-Out,Mr. Todd Dominguez,ephillips@example.net,888-615-1977,502088339457,2024-08-09 +Resort Hotel,0,1,2017,January,5,31,2,1,1,0.0,0,BB,BRA,Online TA,Direct,1,0,0,A,A,0,No Deposit,245.0,179.0,0,Transient,49.33,0,2,Check-Out,William Kelly,katie39@example.com,600.679.8259x923,3552193449841047,2025-02-22 +Resort Hotel,0,0,2017,March,10,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,16.0,68.0,0,Transient,44.48,0,0,Check-Out,Alicia Thomas,kaitlyn82@example.com,479.287.6428x88848,213167821910155,2024-12-16 +Resort Hotel,1,195,2017,June,25,16,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,2,Non Refund,247.0,179.0,0,Transient,44.74,0,0,Canceled,Samantha Williams,cmalone@example.com,784.224.6800x818,345835109690829,2025-02-22 +City Hotel,0,24,2017,July,31,31,0,3,2,0.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,241.0,179.0,0,Transient,108.17,0,1,Check-Out,Joseph Flores,jjohnson@example.org,963.723.1900x75888,503830363969,2024-05-14 +City Hotel,1,39,2017,December,49,5,2,4,2,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,B,B,2,No Deposit,11.0,179.0,0,Transient,129.36,0,1,No-Show,Jane Orr,erinjohnson@example.net,770-723-0074x760,4686881816226175,2025-11-29 +City Hotel,0,2,2017,August,32,9,0,1,2,2.0,0,BB,,Direct,Direct,0,0,0,F,F,1,No Deposit,11.0,179.0,0,Transient,252.0,0,0,Check-Out,Bradley Wallace,tonya28@example.net,(926)711-7643x53358,676343165814,2024-07-17 +City Hotel,0,51,2017,June,25,15,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient-Party,133.73,0,1,Check-Out,Kelly Mccarthy,tsherman@example.net,001-865-296-0027x99820,3519910417815782,2025-09-27 +City Hotel,0,54,2017,September,38,18,0,3,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,9.0,179.0,0,Contract,97.96,0,0,Check-Out,Julie Robertson,stuartbrandon@example.net,(937)313-4246x73010,4711430425033587,2025-06-26 +City Hotel,1,47,2017,September,38,14,0,3,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,130.85,0,0,Canceled,Jennifer Burch,ricardoparker@example.com,287-627-5550,30279715074252,2024-08-02 +City Hotel,1,105,2017,April,17,21,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,197.98,0,0,Canceled,Dylan Smith,thompsonjohn@example.org,+1-269-914-0420x45467,4050200636970938,2025-05-18 +City Hotel,0,48,2017,August,33,10,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,125.54,1,3,Check-Out,Ann Barnes,david56@example.org,463-331-9937x06437,6562472797396742,2024-04-21 +Resort Hotel,1,116,2017,June,24,15,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,30.0,179.0,0,Transient,100.62,0,0,Canceled,Carrie Martin,michaelriddle@example.com,4282982601,6011068904310860,2024-07-19 +City Hotel,0,176,2017,July,31,30,2,5,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,13.0,179.0,0,Transient,195.95,0,0,Check-Out,Eric Miller,michaelspence@example.org,(838)976-5420,375347133164600,2025-03-02 +City Hotel,0,12,2017,April,16,19,2,5,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,141.19,0,2,Check-Out,Anna Cunningham,rcunningham@example.org,(395)307-5628x597,4275794534192,2025-09-24 +Resort Hotel,1,90,2017,November,46,17,2,1,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,122.95,0,0,Canceled,Jessica Scott,lisabryant@example.net,811-961-4885x4659,379211476995796,2024-03-31 +Resort Hotel,1,263,2017,June,26,24,4,10,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,128.01,0,1,Canceled,Angela Gordon,richard31@example.org,(370)980-6633x8812,6011832452600216,2024-06-15 +City Hotel,0,89,2017,December,52,24,0,1,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,10.0,179.0,0,Transient,252.0,1,1,Check-Out,Julie Lucas,alisonchan@example.net,737.928.2035x22923,3501883282639183,2024-11-02 +Resort Hotel,0,8,2017,September,39,26,2,1,2,0.0,0,HB,FRA,Groups,TA/TO,0,0,0,E,E,0,No Deposit,85.0,179.0,0,Transient-Party,135.54,0,1,Check-Out,Raven Wilkerson,aaron81@example.com,769.636.8360,6011529928429168,2026-03-06 +City Hotel,1,414,2017,September,37,10,1,3,2,0.0,0,SC,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,99.56,0,0,Canceled,Nicole Lawrence,laura95@example.com,001-740-512-4745x654,4771403975990,2025-10-30 +City Hotel,0,3,2017,August,32,5,2,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,117.39,0,1,Check-Out,Natalie Castro,ericayates@example.com,+1-532-333-9465x8460,38568772575553,2025-12-15 +City Hotel,0,134,2017,August,35,25,1,1,2,1.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,111.98,0,2,Check-Out,Jason Robinson,morgancristina@example.org,+1-851-738-3933x87673,374220898413291,2025-10-21 +Resort Hotel,0,3,2017,August,34,19,2,5,3,1.0,0,BB,,Online TA,TA/TO,0,0,0,H,H,1,No Deposit,241.0,179.0,0,Transient,252.0,1,2,Check-Out,Kyle Reynolds,morganscott@example.net,2103952912,6551348538877757,2024-04-21 +City Hotel,0,197,2017,June,26,23,1,2,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,24.0,179.0,0,Transient,128.66,0,0,Check-Out,Nicholas Patel,bphillips@example.org,(992)263-7723,4020520742549,2024-05-04 +Resort Hotel,0,101,2017,August,32,5,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,243.0,179.0,0,Transient,136.32,0,1,Check-Out,Kendra Walsh,tshaffer@example.org,+1-539-622-9706x6432,4023463236594,2025-09-09 +Resort Hotel,1,53,2017,August,33,10,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,43.86,0,1,Canceled,Emily Ramirez,donaldmack@example.com,001-419-658-0600x078,6011410919671334,2025-03-15 +Resort Hotel,1,32,2017,February,7,16,0,2,2,0.0,0,HB,PRT,Direct,TA/TO,0,0,0,E,H,1,No Deposit,252.0,179.0,0,Transient,53.19,0,0,Canceled,Sara Mitchell,benjamin38@example.org,675-630-8233x91563,4538582444375950,2025-10-03 +City Hotel,1,343,2017,September,36,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,84.0,179.0,0,Transient,101.49,0,0,Canceled,Eric Schwartz,oparker@example.org,(720)800-7568,3507020778066233,2025-10-02 +City Hotel,1,15,2017,August,31,2,0,2,1,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,105.51,0,1,Canceled,Cathy Baker,maciasbobby@example.net,+1-876-277-4889x094,3544066590550529,2025-10-16 +Resort Hotel,0,171,2017,March,13,31,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,D,2,Refundable,13.0,222.0,0,Transient-Party,72.32,0,0,Check-Out,Jordan Mclean,brownsteve@example.net,+1-758-228-5725,4257218487769,2025-02-04 +City Hotel,1,16,2017,September,39,27,0,1,2,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,12.0,76.0,0,Transient,110.05,0,0,Canceled,Michael Fuentes,kprice@example.com,001-465-246-4945x81923,579596227747,2025-03-22 +City Hotel,0,0,2017,May,19,5,1,0,2,0.0,0,SC,FRA,Offline TA/TO,TA/TO,1,0,0,A,A,0,No Deposit,31.0,179.0,0,Group,0.5099000000000001,0,1,Check-Out,Jessica Anderson,alicia02@example.net,705-596-9508x46121,2240114588108261,2024-07-15 +City Hotel,0,17,2017,August,33,18,2,6,2,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,144.63,0,1,Check-Out,Jeremy Garcia,daniel33@example.net,256-829-2494,4482128384778563800,2025-02-13 +City Hotel,1,414,2017,July,31,30,0,1,2,0.0,0,BB,CN,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,81.32,0,0,Canceled,Brian Gomez,morganquinn@example.net,001-950-523-1232x097,4886796119541,2024-06-15 +City Hotel,1,18,2017,March,13,28,1,1,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,105.96,0,2,Canceled,Pamela Rivas,gcabrera@example.org,(363)895-2547x6581,4344161609142,2025-07-05 +City Hotel,1,405,2017,June,27,30,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,43,Transient,121.7,0,0,Canceled,Kevin Vargas,melissa89@example.net,6184463013,213131085861793,2025-11-16 +City Hotel,1,253,2017,May,20,14,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,258.0,179.0,0,Transient,64.54,0,0,Canceled,Michael Smith,grahamapril@example.org,001-689-711-0925x97948,3574101828657011,2024-04-29 +City Hotel,1,250,2017,May,19,9,2,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,27.0,179.0,64,Transient,120.95,0,0,Canceled,Danielle Haynes,elizabeth61@example.com,375-703-7411,372714896186489,2025-01-29 +City Hotel,0,2,2017,February,6,6,1,1,3,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,10.0,179.0,0,Transient,147.18,0,1,Check-Out,Kimberly Berger,zgonzalez@example.net,805.311.3245x1469,6011262913704011,2024-11-22 +Resort Hotel,0,11,2017,December,49,3,0,1,3,1.0,0,BB,,Online TA,Direct,0,0,0,H,H,2,No Deposit,243.0,179.0,0,Transient,61.28,1,0,Check-Out,James Lee,williamskatelyn@example.net,898-983-7856x28385,379694453291034,2024-05-21 +Resort Hotel,1,11,2017,August,34,24,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,243.0,179.0,0,Transient,43.79,0,1,Canceled,Justin Macias,rodriguezbeth@example.org,732.980.6057,2715357397480951,2024-06-21 +City Hotel,0,37,2017,January,4,24,0,2,2,0.0,0,BB,CHN,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,98.37,0,1,Check-Out,Jennifer Anderson,sabbott@example.com,(409)280-7512,676129375454,2025-10-25 +Resort Hotel,0,29,2017,March,10,6,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,10.0,179.0,0,Transient,91.43,1,1,Check-Out,Jodi Todd,ibrooks@example.com,2445291792,3520547422105747,2025-09-04 +Resort Hotel,0,86,2017,July,30,26,1,6,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,244.0,179.0,0,Transient,252.0,0,0,Check-Out,Michelle Mason,julie41@example.net,+1-524-404-9790x786,3540636326156140,2025-07-28 +City Hotel,0,16,2017,March,11,15,0,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,86.96,0,2,Check-Out,Alan Hernandez,christinawilson@example.org,591.769.3176x204,372707102317591,2025-12-15 +Resort Hotel,1,11,2017,July,31,27,0,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,252.0,0,0,Canceled,Vanessa Patton,abentley@example.net,+1-606-611-2647x4334,3569545155936868,2024-06-15 +Resort Hotel,0,293,2017,September,36,6,0,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,D,0,No Deposit,32.0,179.0,0,Transient-Party,72.16,0,0,Check-Out,Katelyn Horton,moralesjoshua@example.net,723.320.7071,376746364489322,2025-01-11 +City Hotel,1,155,2017,June,26,24,2,2,2,0.0,0,BB,PRT,Online TA,Direct,0,0,0,B,B,0,No Deposit,10.0,179.0,0,Transient,138.51,0,2,Canceled,Judy Mckinney,taylorerin@example.com,(982)465-5233x6058,3576835790045774,2025-11-16 +City Hotel,0,3,2017,July,30,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,239.0,179.0,0,Transient,138.69,0,2,Check-Out,Kenneth Moran,carriedavis@example.net,230-338-6085,3521018121841940,2025-10-30 +Resort Hotel,0,0,2017,July,27,5,1,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,247.0,179.0,0,Transient,117.06,0,1,Check-Out,Valerie Mcdaniel,edwardsjonathan@example.net,7617019084,2720370860463365,2025-06-25 +City Hotel,0,21,2017,September,37,16,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,F,0,No Deposit,7.0,179.0,0,Transient-Party,64.75,0,0,Check-Out,Samantha Knight,joseph75@example.net,776-992-1498,4939106119105,2025-07-16 +City Hotel,1,161,2017,August,31,3,1,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,D,B,0,No Deposit,10.0,179.0,0,Transient,103.02,0,0,Canceled,Thomas Nunez,lawrencemalone@example.com,618-503-6638,6590941158200640,2025-02-21 +City Hotel,0,149,2017,October,40,5,0,2,2,0.0,0,BB,,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,34.0,179.0,0,Transient-Party,101.98,0,0,Check-Out,Mark Johnson,hbrooks@example.com,351-845-6265,4569071633937,2024-05-22 +City Hotel,0,2,2017,August,33,15,0,1,2,0.0,0,BB,ESP,Groups,TA/TO,1,1,0,A,A,0,No Deposit,11.0,179.0,0,Group,51.81,0,1,Check-Out,Sarah Snyder,daniel56@example.org,281.315.8753x5101,676113266388,2024-12-14 +Resort Hotel,0,2,2017,August,33,15,1,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,4.09,1,0,Check-Out,Amanda Horn,nathan53@example.net,649-352-2760x94607,4808669449094,2025-08-23 +Resort Hotel,0,1,2017,May,21,19,0,1,2,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,C,1,No Deposit,16.0,179.0,0,Transient,139.2,1,0,Check-Out,Mr. Joseph Greene,elopez@example.net,(824)950-8894x27206,370599947801166,2025-05-06 +City Hotel,0,4,2017,March,13,26,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,142.7,0,3,Check-Out,Alan Hopkins,kristy33@example.net,001-375-313-2666x507,343953081910685,2025-05-18 +Resort Hotel,0,15,2017,March,11,15,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,41.78,0,1,Check-Out,Kayla Young,ricardo07@example.net,939-852-7748,572286414600,2025-07-05 +Resort Hotel,1,147,2017,June,23,9,0,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,133.36,0,0,Canceled,Dana Jones,christopherhill@example.com,+1-458-866-9404x3457,3502761558554634,2025-06-26 +Resort Hotel,0,2,2017,November,46,14,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,241.0,179.0,0,Transient,73.95,0,1,Check-Out,Taylor Lopez,garrett95@example.org,(448)950-2097x3238,4128468318777065,2025-03-26 +Resort Hotel,0,35,2017,March,12,19,2,5,2,0.0,0,HB,DEU,Direct,Direct,1,0,1,D,D,0,No Deposit,34.0,179.0,0,Transient,43.92,0,1,Check-Out,Diana Hunter,adam19@example.net,850.422.8371x11547,2562158023374699,2024-12-31 +Resort Hotel,1,10,2017,August,33,13,2,0,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,199.63,1,3,Canceled,Leon Tyler,william46@example.com,001-703-239-7228x0121,180099421549027,2024-12-25 +City Hotel,1,401,2017,June,25,22,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,44,Transient,78.81,0,0,Canceled,Walter Gray,vanessahernandez@example.net,001-299-722-8159,4972020850844,2024-12-03 +City Hotel,0,3,2017,October,42,20,0,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,A,0,No Deposit,9.0,73.0,42,Transient,103.55,0,0,Check-Out,Karen Golden,sancheznathaniel@example.org,+1-819-778-1214x45512,2290115699684073,2024-11-05 +Resort Hotel,1,397,2017,September,37,11,0,1,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,96.0,179.0,0,Transient-Party,119.25,0,0,Canceled,Jennifer Mcclure,kristylopez@example.org,+1-608-652-0799x0693,6517340864164762,2025-08-03 +City Hotel,0,37,2017,December,49,7,1,0,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,A,G,0,No Deposit,10.0,179.0,0,Transient,107.16,0,1,Check-Out,Sara Thomas,cherylbecker@example.net,4627837103,30284992809669,2025-10-19 +City Hotel,0,20,2017,May,18,4,1,0,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,A,A,0,No Deposit,14.0,331.0,0,Transient,0.5099000000000001,0,0,Check-Out,Nancy Johnson,sbaldwin@example.org,(748)912-2164x506,4534601362677769,2025-03-22 +Resort Hotel,0,202,2017,August,34,23,2,1,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient,233.18,1,3,Check-Out,James Doyle,erica13@example.net,(224)236-5685x1047,343916670035974,2024-06-26 +Resort Hotel,0,56,2017,April,17,26,2,5,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,81.78,0,3,Check-Out,Sandra Roberts,hayeslindsay@example.org,001-336-205-7880x990,6011699413076590,2025-03-16 +City Hotel,0,8,2017,July,27,3,0,3,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Group,160.35,0,1,Check-Out,Sarah Summers,williscindy@example.com,367-410-0941x84878,4784838692613109146,2024-10-10 +City Hotel,1,110,2017,July,29,13,0,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.36,0,0,Canceled,Stephanie Lane,dschmitt@example.org,001-793-992-0860x15677,6011037390774244,2025-06-26 +Resort Hotel,0,168,2017,October,43,24,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,1,No Deposit,17.0,222.0,0,Transient-Party,52.33,0,0,Check-Out,Dustin Smith,scottamber@example.org,(808)815-3417x875,2421129681447177,2024-04-20 +City Hotel,0,55,2017,August,34,23,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,241.02,0,1,Check-Out,Zachary Fitzgerald,joshuasanchez@example.com,299-214-0669x318,4120564390913178,2025-09-06 +Resort Hotel,1,40,2017,December,49,9,0,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,236.0,179.0,0,Transient,52.15,0,1,Canceled,Robert Walker,danielteresa@example.net,713.948.5232,4198642551343,2024-10-01 +City Hotel,0,176,2017,March,11,14,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,46.29,0,3,Check-Out,William Schmitt,reginalddalton@example.org,001-644-488-1330x87938,4668256361995274021,2025-07-11 +City Hotel,0,54,2017,March,11,12,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,1,No Deposit,9.0,179.0,0,Transient,74.5,0,1,Check-Out,Sarah Mitchell,danielle52@example.com,290.337.2821x308,675974583246,2026-03-10 +Resort Hotel,0,40,2017,April,14,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,D,2,No Deposit,248.0,179.0,0,Transient,163.65,0,1,Check-Out,Mary Brown,brewerbryce@example.com,(543)605-8741x2096,343741916437341,2025-01-14 +City Hotel,0,41,2017,November,47,25,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,77.0,179.0,0,Transient-Party,62.14,0,0,Check-Out,Thomas Murray,charlescross@example.net,(955)849-9167x0038,4748718132669918,2026-02-28 +City Hotel,0,0,2017,October,41,10,0,1,2,0.0,0,BB,NOR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,82.17,0,1,Check-Out,Mary Lawson,andrewkrueger@example.org,001-737-447-6798x04039,4963735027079860,2025-08-21 +Resort Hotel,0,191,2017,April,14,4,1,0,1,0.0,0,FB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,284.0,179.0,0,Transient-Party,65.57,0,0,Check-Out,Sharon Serrano,melindaphelps@example.com,5638433927,4695781083896156,2025-02-27 +Resort Hotel,0,28,2017,October,40,1,2,2,2,0.0,0,HB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,81.0,179.0,0,Transient-Party,101.64,0,0,Check-Out,Rebecca Powell,kristophermarshall@example.net,(307)356-3930x9149,5348204214891903,2025-09-01 +City Hotel,0,6,2017,April,15,13,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,59.93,0,0,Check-Out,Emily Walker,hobbsshelly@example.com,001-474-972-4710,3505190986919671,2025-06-19 +City Hotel,0,1,2017,February,6,7,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient,66.57,0,0,Check-Out,Gabrielle Burton,scott17@example.net,213.676.4090x408,6576963465123826,2025-06-04 +City Hotel,1,92,2017,February,6,8,2,1,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,D,D,0,Non Refund,14.0,179.0,0,Transient,94.93,0,0,Canceled,Todd Thompson,dmorrison@example.net,001-371-599-6382x36915,3512526655237047,2026-01-11 +Resort Hotel,1,0,2017,May,19,5,0,1,3,0.0,0,SC,,Complementary,Corporate,0,0,0,P,P,0,No Deposit,14.0,331.0,0,Transient,5.91,0,0,Canceled,John Miller,blakelaura@example.net,(390)575-8955,4100808731657141,2025-03-14 +City Hotel,1,103,2017,June,25,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,121.06,0,0,Canceled,Rebecca Frazier,christopher40@example.org,417.325.5788,180008806558065,2024-12-01 +Resort Hotel,0,106,2017,April,17,25,1,1,1,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,A,0,No Deposit,322.0,179.0,0,Transient-Party,63.13,0,0,Check-Out,Amber Cruz,lclark@example.net,509.522.6545,180017060319619,2025-06-01 +City Hotel,1,127,2017,July,28,9,0,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,9.0,179.0,0,Transient,104.66,0,1,Canceled,Clinton Adams,gvazquez@example.org,(852)455-7879,060442852822,2025-03-21 +Resort Hotel,0,208,2017,October,40,4,2,2,2,0.0,0,HB,IRL,Aviation,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,204.61,0,3,Check-Out,Crystal Davidson,clarkchristina@example.com,946-281-1227x181,213128208891525,2024-04-07 +City Hotel,0,153,2017,March,14,30,0,3,1,0.0,0,BB,CHN,Online TA,TA/TO,0,0,1,A,A,1,No Deposit,10.0,179.0,0,Transient,123.05,0,1,Check-Out,Angela Harrington PhD,danielle08@example.org,001-325-932-9880x36245,630414799092,2025-07-31 +Resort Hotel,1,37,2017,August,35,26,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,240.0,179.0,0,Transient,142.95,1,2,Canceled,Joseph Barron,millerdalton@example.net,678-475-7378,5507170936945052,2024-08-04 +City Hotel,0,11,2017,November,45,6,0,3,1,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,22.0,179.0,0,Transient,84.08,0,1,Check-Out,Joshua Smith,samanthagarrett@example.org,9466408707,676200498647,2026-01-14 +Resort Hotel,1,1,2017,April,16,18,1,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,345.0,331.0,0,Transient,49.51,0,0,Check-Out,Diana Lutz,hoodbenjamin@example.com,+1-745-724-3944x6207,213154166540623,2025-11-17 +City Hotel,0,21,2017,June,23,8,1,2,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,65.4,0,1,Check-Out,Crystal Friedman,april08@example.com,001-307-349-9438x73013,3515674818248548,2024-12-10 +City Hotel,0,3,2017,July,28,8,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,132.24,0,1,Check-Out,Jacob Gonzales,boonebrenda@example.net,(797)424-8790,3567354628407132,2025-05-05 +Resort Hotel,1,12,2017,December,52,28,2,3,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,37.75,0,2,Canceled,Casey Murillo,davidmayo@example.com,(490)927-5428x9370,30429026980644,2026-01-07 +Resort Hotel,0,3,2017,July,29,16,2,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,D,0,No Deposit,8.0,179.0,0,Transient,179.91,1,0,Check-Out,Amanda Zimmerman,cherrera@example.org,497.320.8378x4037,639001611206,2024-04-08 +City Hotel,1,150,2017,February,8,19,1,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,9.0,179.0,0,Transient,84.36,0,0,Canceled,Mary Solis,philip20@example.net,(276)842-9531x84087,180087411660904,2025-06-13 +City Hotel,1,42,2017,September,36,5,0,3,2,2.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,193.6,0,0,No-Show,Michael Higgins,patriciabray@example.net,4726575383,630480852866,2025-07-01 +Resort Hotel,1,237,2017,June,26,23,1,3,2,0.0,0,FB,PRT,Groups,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,109.59,0,0,Canceled,Andrew Reyes,nlee@example.com,(723)407-4829x62710,4788967308873230829,2026-01-16 +Resort Hotel,0,48,2017,March,10,2,0,3,1,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,207.31,1,1,Check-Out,Jorge Stewart,smithandrew@example.net,567.415.3485x0732,4510104895180827307,2024-08-23 +Resort Hotel,0,1,2017,May,18,3,1,1,1,0.0,0,BB,,Direct,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,38.85,1,0,Check-Out,Amy Martinez,stephen85@example.com,851.245.9326x48407,4921008613068874,2025-01-26 +City Hotel,0,34,2017,March,12,21,2,2,1,1.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,K,0,No Deposit,71.0,179.0,0,Transient,77.6,0,0,Check-Out,David Pacheco,brandonspence@example.org,001-283-769-0400,4846807994928,2024-08-31 +City Hotel,0,198,2017,June,24,14,2,2,2,2.0,0,BB,SWE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Contract,93.09,0,1,No-Show,Denise Garcia,gmartinez@example.net,555.471.2141x8031,578208302369,2026-01-05 +City Hotel,1,9,2017,April,15,7,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,123.28,0,1,Canceled,Tracy Martinez,dthompson@example.com,764.877.1051x9680,3534484731855974,2024-09-09 +Resort Hotel,0,51,2017,February,6,5,1,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,311.0,179.0,0,Transient,40.76,0,0,Check-Out,Christopher Rodriguez,alfred44@example.com,(926)561-5640x3914,4177343488571070650,2024-12-14 +Resort Hotel,0,1,2017,May,21,24,1,1,2,1.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,17.0,179.0,0,Transient,51.72,0,1,Check-Out,Sheila Mcgee,tsullivan@example.com,(242)879-3546,060423248370,2024-10-04 +City Hotel,1,208,2017,August,33,12,2,4,2,1.0,0,HB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Canceled,Amy Johnson,abenitez@example.com,853.927.8606x6722,180086207722662,2025-11-19 +Resort Hotel,0,33,2017,August,32,8,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,287.0,179.0,0,Transient,128.26,0,1,Check-Out,Cory Stevenson,johnsonricky@example.org,907.528.1789x086,4189377764546999544,2025-04-06 +Resort Hotel,0,91,2017,July,27,4,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,240.0,179.0,0,Transient,109.31,0,0,Check-Out,Nicole Martinez,williamjacobs@example.org,(609)492-3571x34218,562685095191,2025-03-15 +Resort Hotel,1,307,2017,July,31,30,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,202.15,0,0,Canceled,Marcia Taylor,ocollins@example.net,+1-279-252-6530x70775,3565318981075655,2025-07-15 +City Hotel,1,92,2017,November,46,18,2,2,2,0.0,0,Undefined,SWE,Direct,Direct,0,0,0,E,E,2,No Deposit,14.0,179.0,0,Transient,122.86,0,0,Canceled,Emily Eaton,ellismolly@example.org,(423)837-7258,213162185524312,2025-05-30 +City Hotel,1,28,2017,October,42,17,0,3,2,0.0,0,BB,DEU,Direct,Direct,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,127.9,0,0,Canceled,Barbara Zavala,audrey19@example.net,+1-996-505-4436x63037,4042657473692233,2025-06-27 +City Hotel,1,56,2017,June,26,27,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,141.73,0,2,Canceled,Evan Jackson Jr.,david71@example.net,813-350-3663x1759,180093389874279,2025-06-18 +City Hotel,0,1,2017,December,52,25,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,158.0,179.0,0,Transient-Party,112.87,0,1,Check-Out,Timothy Williamson,sara40@example.org,342-227-3947,4802575629851448,2025-06-16 +Resort Hotel,0,199,2017,August,34,25,2,6,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,16.0,179.0,0,Transient,135.1,1,1,Check-Out,Brandon Vaughn,carolmiller@example.com,(502)559-7835,4128316565964,2024-09-12 +Resort Hotel,1,53,2017,November,45,7,0,2,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,245.0,0,Transient-Party,44.58,0,0,No-Show,Rodney Carpenter,stephen38@example.com,(222)773-1281x4843,4095679954259098,2024-12-31 +Resort Hotel,0,32,2017,December,49,5,0,2,2,0.0,0,HB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,81.72,0,0,Check-Out,Charles Davis,michael73@example.net,+1-602-953-5702x86627,3570771346422082,2024-09-07 +City Hotel,1,22,2017,April,17,26,1,4,1,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,106.7,0,2,Canceled,John May,jkeller@example.net,(411)510-9019,3557892099621170,2025-01-15 +City Hotel,0,23,2017,August,34,17,1,4,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,242.0,179.0,0,Transient,252.0,0,2,Check-Out,Dr. Robin Chase DDS,melodyanderson@example.com,4209555525,6011838546858041,2025-02-24 +Resort Hotel,0,149,2017,May,20,17,1,4,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Contract,49.82,0,0,Check-Out,Edward Delgado,bryanmontoya@example.net,7673665931,4489331981903,2024-11-18 +City Hotel,0,62,2017,October,42,16,0,1,1,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,155.87,0,1,Check-Out,Franklin Martinez,khammond@example.com,763.999.0897x7060,3539182525872040,2025-08-09 +Resort Hotel,0,61,2017,December,49,9,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,D,0,No Deposit,146.0,241.0,0,Transient,53.85,0,0,Check-Out,Maria Watts,slove@example.com,865.871.5890x007,344327038627560,2025-02-20 +City Hotel,0,180,2017,June,24,12,0,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,136.41,0,1,Check-Out,Scott Mcdonald,amorrison@example.net,+1-747-587-4038x1872,30519012189752,2024-10-28 +City Hotel,1,98,2017,May,18,4,1,2,2,0.0,0,SC,ITA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,104.98,0,1,Canceled,Kimberly Miller,keith65@example.net,938-762-8346x93031,4718688658528,2024-06-30 +City Hotel,1,51,2017,March,13,28,1,4,2,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,97.45,0,2,Canceled,Alex Rodriguez,brian70@example.net,+1-664-697-5459x2597,378714522355197,2024-04-09 +Resort Hotel,0,11,2017,April,17,23,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,247.0,179.0,0,Transient,84.03,1,2,Check-Out,Nicole Roberson,medinajamie@example.org,(553)736-4430x45922,30317049735436,2024-06-14 +City Hotel,0,44,2017,September,39,26,2,1,2,0.0,0,BB,PRT,Offline TA/TO,Direct,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,189.72,0,0,Check-Out,Gregory Pham,bwilkinson@example.org,867.464.0571x9905,379516135374708,2025-02-03 +City Hotel,1,214,2017,August,33,11,1,4,2,2.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.15,0,2,Canceled,Brian Graham,sextonjuan@example.org,+1-459-341-0308x0501,3554754388596104,2024-10-23 +City Hotel,1,20,2017,March,12,21,0,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,D,1,No Deposit,170.0,179.0,0,Transient-Party,125.49,0,0,Canceled,Anthony Contreras,leetimothy@example.net,+1-850-730-0608x88108,375756761015613,2025-12-04 +City Hotel,0,0,2017,July,29,17,1,1,2,0.0,0,BB,PRT,Aviation,TA/TO,0,0,1,D,D,0,No Deposit,9.0,179.0,0,Group,3.27,0,1,Check-Out,Tim Crosby,annette79@example.com,+1-464-290-5020x5933,213177439967133,2024-04-26 +City Hotel,0,15,2017,July,27,2,2,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.27,0,0,Check-Out,Megan Winters,zburns@example.org,375-685-1919x8462,30361681116471,2025-05-08 +City Hotel,1,116,2017,November,47,25,1,1,2,0.0,0,FB,ESP,Groups,TA/TO,0,0,0,A,A,0,Non Refund,302.0,179.0,0,Transient,79.49,0,0,Canceled,Breanna Johnson,stewartmartin@example.org,(886)610-6302,4787467578442859,2024-06-16 +Resort Hotel,0,32,2017,December,49,7,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,49.08,0,2,Check-Out,Gregory Farley,michaeltorres@example.com,4816298131,371473424671154,2025-01-30 +City Hotel,0,2,2017,January,2,6,0,2,1,0.0,0,BB,,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,70.0,0,Transient,132.26,0,0,Check-Out,Alyssa Johnson,jhiggins@example.net,+1-759-856-9099x775,180075964618296,2024-04-05 +Resort Hotel,0,38,2017,June,23,4,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,1,No Deposit,249.0,179.0,0,Transient,135.04,0,1,Check-Out,Lynn Thornton,harrisonkathryn@example.com,001-624-976-2493x160,3535175975256676,2024-04-16 +Resort Hotel,0,1,2017,March,11,17,0,2,1,0.0,0,BB,PRT,Direct,Direct,1,0,0,B,C,0,No Deposit,14.0,179.0,0,Transient,3.05,0,1,Check-Out,Randall Thomas,ricardo13@example.net,+1-699-284-7624x864,3592976156792581,2025-12-27 +Resort Hotel,0,127,2017,July,27,5,3,7,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,202.2,1,0,Check-Out,Kristine Harris,schwartzjanice@example.com,+1-615-627-6463,676305056613,2025-08-29 +City Hotel,0,0,2017,November,44,4,1,1,2,0.0,0,BB,CHE,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,85.31,1,0,Check-Out,James Little,cassidy53@example.org,568.913.2839x35454,4344599809561101,2025-07-27 +Resort Hotel,0,261,2017,June,23,4,4,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,243.0,179.0,75,Transient,252.0,0,0,No-Show,Amber Lutz,umendez@example.org,001-413-495-9666x08876,501822644693,2024-12-19 +Resort Hotel,0,44,2017,April,14,1,4,10,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,180.0,179.0,0,Transient,107.29,0,1,Canceled,Gregory Watts,eric60@example.net,634.738.2425x16925,4014619120576,2024-10-08 +City Hotel,1,98,2017,July,28,9,0,6,2,0.0,0,Undefined,PRT,Offline TA/TO,TA/TO,0,0,0,A,E,0,No Deposit,74.0,179.0,0,Transient,42.88,0,0,Canceled,Mitchell Beard,ozimmerman@example.com,+1-400-216-2947x20857,3524005346785736,2025-08-10 +City Hotel,1,211,2017,August,33,15,1,5,2,0.0,0,SC,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,96.74,0,0,Canceled,Tracy Jones,butlerbrandi@example.net,650.206.6865x72539,676341683222,2025-09-11 +Resort Hotel,0,44,2017,February,6,4,1,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,54.41,0,1,Check-Out,Mrs. Rhonda Zamora,danielthompson@example.org,+1-757-354-1375x238,4275810937615883433,2024-10-17 +City Hotel,0,3,2017,May,20,14,1,0,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,A,0,No Deposit,175.0,179.0,0,Group,2.32,0,0,Check-Out,Devin Smith,ronaldcollins@example.org,(541)229-3450x233,2442257983825645,2024-10-26 +City Hotel,1,104,2017,December,49,3,2,3,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,D,A,2,No Deposit,8.0,179.0,0,Transient,120.33,0,2,Canceled,Gregory Ray,pollardstephanie@example.net,(418)976-2496x193,3552294100477863,2024-11-15 +City Hotel,0,15,2017,November,45,4,1,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,273.0,0,Transient-Party,46.59,0,0,Check-Out,Robert Wright,jenniferowens@example.org,(385)330-4996x295,4380631600156795474,2025-01-02 +City Hotel,0,42,2017,June,23,6,1,4,1,2.0,0,BB,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,169.13,0,3,Check-Out,Emily Mccoy,tiffanymckee@example.com,001-374-351-3116x6073,3568036225563636,2025-10-08 +City Hotel,0,20,2017,July,28,9,0,3,3,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,135.6,0,0,Check-Out,Andrew Contreras,jamesrusso@example.com,001-728-985-0175x2829,4660840130290037049,2024-11-15 +Resort Hotel,0,13,2017,July,28,9,2,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,133.35,0,0,Check-Out,Justin Delacruz,thompsonkimberly@example.org,850-227-9081,3568351672352981,2026-01-22 +City Hotel,0,17,2017,September,36,4,0,1,3,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,G,G,1,No Deposit,11.0,179.0,0,Transient,171.62,0,3,Check-Out,Tracey Larsen,gweber@example.com,294-292-3348,4457764488290,2026-01-24 +Resort Hotel,1,13,2017,June,24,9,4,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,17.0,179.0,0,Transient,142.95,0,0,No-Show,Laura Mcmahon,zjackson@example.net,(307)739-5511,3594325083863131,2024-05-22 +City Hotel,1,116,2017,December,50,13,1,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,82.13,0,0,No-Show,Michelle Ashley,garciaryan@example.net,+1-274-474-0739,4626695145993,2024-06-07 +City Hotel,1,107,2017,September,36,7,2,0,2,0.0,0,BB,GBR,Direct,Direct,0,1,0,A,A,0,No Deposit,13.0,179.0,60,Transient-Party,65.29,0,0,Canceled,Michael Daniels,hayesrobert@example.com,9232776278,4213343058388074,2025-06-30 +City Hotel,1,25,2017,August,31,2,0,3,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,238.0,179.0,0,Transient,252.0,0,3,Canceled,Andrew Smith,dgonzalez@example.net,285-658-8059,4582474862870,2024-06-02 +Resort Hotel,0,3,2017,July,30,27,0,2,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,0,No Deposit,200.0,179.0,0,Transient,118.27,0,1,Check-Out,Brandon Shields,mitchellvictoria@example.net,(426)629-2489x5104,501809121780,2025-07-27 +Resort Hotel,0,90,2017,February,8,24,0,2,2,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,21.0,179.0,0,Transient,80.11,1,1,Check-Out,Kelly Scott,erikhale@example.com,001-675-939-4474x05218,30240154545111,2025-08-23 +Resort Hotel,1,65,2017,March,11,9,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,237.0,179.0,0,Transient,105.55,1,2,Canceled,Ariel Hogan,kduncan@example.net,659.338.9531,371736654759083,2026-01-01 +City Hotel,0,12,2017,October,42,17,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,30.0,179.0,0,Transient-Party,81.8,0,1,Check-Out,Beverly Peterson,michael46@example.com,393.560.4365x01336,3540319604425905,2025-11-21 +Resort Hotel,0,60,2017,March,11,9,2,5,2,0.0,0,BB,NLD,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,49.57,0,1,Check-Out,Kelly Dean,justin77@example.net,429-625-1643,2271461153206463,2025-09-05 +Resort Hotel,0,241,2017,June,24,11,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,316.0,179.0,0,Transient,43.4,0,0,Check-Out,Adam Cook,matthew86@example.org,+1-681-498-6613x865,4864480921226719,2024-05-08 +City Hotel,0,13,2017,May,20,18,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,101.44,0,0,Check-Out,Lisa Lopez,treilly@example.org,001-543-793-9261x068,3515457300144031,2026-02-07 +City Hotel,0,108,2017,July,30,28,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,174.0,179.0,0,Transient,104.6,0,0,Check-Out,Austin Mccullough,kevin50@example.org,(594)218-9068x608,180068895497922,2026-02-26 +City Hotel,1,52,2017,May,22,29,0,2,2,0.0,0,SC,RUS,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,113.67,0,0,Canceled,Gloria Newton,stewartjonathan@example.org,234-487-5018x2355,3500908846495342,2025-10-23 +City Hotel,1,112,2017,December,49,3,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,22.0,179.0,42,Transient,138.31,0,0,Canceled,Ricardo Byrd,virginiahoffman@example.org,001-936-589-7963x043,6011282242992384,2025-01-07 +City Hotel,0,0,2017,September,39,27,0,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,15.0,179.0,0,Transient,127.88,1,0,Check-Out,Brianna Martinez,nicoleharrell@example.net,509-478-0845x874,38907431970120,2025-04-23 +Resort Hotel,0,150,2017,August,32,9,2,5,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,204.48,0,1,Check-Out,Jose Edwards,wgarcia@example.com,498-791-1639x0782,2234563918494254,2025-05-30 +City Hotel,0,114,2017,April,18,29,2,2,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,84.43,0,0,Check-Out,Devin Murillo,mcknightsarah@example.net,899.816.3935x732,4869131350205709,2025-09-17 +Resort Hotel,0,27,2017,December,52,27,2,6,2,0.0,0,FB,PRT,Offline TA/TO,Direct,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,89.47,0,1,Check-Out,Joshua Meyers,pettyrussell@example.net,634.820.2788x94148,4160916196580273,2024-11-12 +City Hotel,1,38,2017,March,13,31,1,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,238.0,179.0,0,Transient,42.27,0,1,Canceled,Mark Butler,harrisdaniel@example.com,806-279-0300,675912908554,2025-09-16 +City Hotel,0,91,2017,May,22,27,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,160.56,0,1,Check-Out,Jordan Gonzalez,sbaker@example.org,(845)349-5491x18092,4853400864540,2025-07-11 +City Hotel,0,36,2017,October,42,20,2,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Contract,78.49,0,1,Canceled,William Thompson,ferrelldawn@example.net,956.838.2972,2712233262032768,2026-03-02 +Resort Hotel,0,36,2017,April,17,26,1,2,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,1,No Deposit,72.0,179.0,0,Transient-Party,45.39,0,0,Check-Out,Amber Peterson,matthew44@example.net,+1-521-891-2539x472,4556621310504,2024-07-08 +City Hotel,0,41,2017,March,13,31,1,1,1,0.0,0,BB,FRA,Corporate,Direct,0,0,0,A,B,0,No Deposit,13.0,179.0,0,Transient-Party,96.57,0,0,Check-Out,Marvin Ross,gdavis@example.com,(624)387-8098x812,3568227103748494,2025-06-01 +Resort Hotel,1,414,2017,June,25,20,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,264.0,179.0,0,Transient-Party,42.3,0,0,Canceled,Joseph Hendrix,jhuff@example.com,980.729.1247x5801,4133557610169696224,2025-06-09 +City Hotel,0,18,2017,July,29,18,1,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,G,0,No Deposit,12.0,179.0,0,Transient,201.12,1,3,Check-Out,Anthony Medina,elizabeth08@example.org,8212048417,4102703781153,2025-06-09 +City Hotel,0,9,2017,February,9,27,0,1,1,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,79.78,0,0,Check-Out,Herbert Jensen,knightjennifer@example.org,001-921-336-5581x69098,3518734525488493,2025-12-13 +City Hotel,0,210,2017,July,30,23,2,3,2,1.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,216.54,0,2,Check-Out,Kevin Ruiz,amartin@example.net,738-717-2883x343,4099256083930917724,2024-09-10 +Resort Hotel,0,21,2017,October,43,27,2,5,2,0.0,0,BB,,Direct,Direct,0,0,0,H,B,1,No Deposit,16.0,222.0,0,Transient,48.47,1,1,Check-Out,David Obrien,crystal81@example.org,+1-809-500-2214x65325,4996752838016824722,2025-08-13 +Resort Hotel,0,103,2017,March,12,22,2,5,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,252.0,0,3,Check-Out,Andrew Hinton,ecarlson@example.com,443.765.0759x76391,4891092018306010,2024-06-26 +City Hotel,1,43,2017,May,22,27,0,1,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,130.08,0,2,Canceled,Michael Barnett,thompsonnicholas@example.net,+1-469-656-4777x1806,2720664949803835,2024-07-09 +City Hotel,1,53,2017,September,37,15,2,4,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient-Party,230.81,0,0,Canceled,Sharon Bush,fsmith@example.org,+1-218-675-8178x489,4670182703054,2024-06-11 +Resort Hotel,0,50,2017,May,22,27,1,1,2,1.0,0,BB,,Online TA,Direct,0,0,0,C,C,0,No Deposit,247.0,179.0,0,Transient,228.2,0,1,Check-Out,Monique Norton,whitemikayla@example.com,(929)518-6501x93784,180045803480695,2024-08-04 +Resort Hotel,1,2,2017,July,28,13,0,4,2,1.0,0,BB,PRT,Online TA,Direct,0,0,0,H,H,2,No Deposit,244.0,179.0,0,Transient,227.03,0,0,Canceled,Alicia Watson,cfowler@example.net,(660)352-9790,30273128758825,2024-08-19 +Resort Hotel,0,80,2017,March,12,18,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,1,0,1,A,C,1,No Deposit,69.0,179.0,0,Transient-Party,38.58,1,1,Check-Out,Devin Morrison,mwhite@example.com,(402)528-1201x82832,4696568393144024,2025-10-27 +City Hotel,1,102,2017,March,12,24,1,4,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,105.36,0,0,Canceled,Joseph Jones,shanemiller@example.org,955.893.3337x27026,4853256551134,2024-04-23 +Resort Hotel,0,2,2017,March,11,11,0,1,1,0.0,0,BB,PRT,Direct,Direct,1,0,1,A,I,0,No Deposit,16.0,66.0,0,Transient,4.5,1,0,Check-Out,Jesse Terry,lmorrison@example.com,396-588-4699,6011177054025309,2024-11-18 +City Hotel,0,278,2017,October,41,11,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,1,0,A,A,0,No Deposit,1.0,179.0,0,Contract,71.97,0,0,Check-Out,Tanya Silva,vgonzalez@example.net,001-374-668-4226x361,3530605694759480,2025-02-22 +Resort Hotel,0,28,2017,May,20,16,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,No Deposit,242.0,179.0,0,Transient,164.64,1,0,Check-Out,Susan White,choikenneth@example.org,001-862-289-1990x48159,4700746031002941966,2025-01-21 +Resort Hotel,0,3,2017,March,13,23,1,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,I,1,No Deposit,15.0,179.0,75,Transient-Party,59.64,1,3,Check-Out,Brenda Reid,ilindsey@example.com,(774)201-5048x649,3599142814756079,2026-03-24 +Resort Hotel,0,18,2017,March,9,1,1,1,2,0.0,0,BB,ESP,Groups,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,126.89,0,0,Check-Out,Jonathan Stevens,hrowe@example.org,(733)341-0966x11772,4650727952001074,2025-08-20 +Resort Hotel,1,56,2017,July,27,7,2,5,2,0.0,0,FB,PRT,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,364.0500000000011,179.0,0,Transient,101.55,0,0,Canceled,Brittney Clements,melissa05@example.com,+1-485-661-2989x520,342249731957940,2024-09-02 +Resort Hotel,0,3,2017,July,30,20,2,10,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,1,No Deposit,249.0,179.0,0,Transient,224.22,1,2,Check-Out,Stefanie Petersen,ualvarado@example.com,+1-488-321-0232,580884364580,2025-01-23 +City Hotel,0,380,2017,September,39,26,0,1,2,0.0,0,HB,,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,120.36,0,0,Check-Out,Daniel Phelps,carrie16@example.org,(839)590-8360x38261,4441776205556735,2025-04-10 +Resort Hotel,1,40,2017,October,40,6,0,1,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,84.67,0,2,Canceled,Erica Lucas,tmeyer@example.net,001-305-643-9655,4591747210669662,2025-10-01 +Resort Hotel,0,0,2017,September,37,10,2,0,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,244.0,179.0,0,Transient,104.89,0,2,Check-Out,Vincent Berg,lcox@example.com,(657)815-0961,2643744337434460,2024-03-27 +Resort Hotel,0,35,2017,October,43,24,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,85.0,179.0,0,Transient-Party,40.93,0,0,Check-Out,Kim Craig,jacksonashley@example.org,419.961.2654x71230,6011381172468066,2025-07-09 +City Hotel,1,111,2017,August,32,9,1,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,1.0,179.0,0,Transient-Party,93.52,0,0,Canceled,Andrea Hamilton,garciaelijah@example.com,001-934-275-1134x2027,6595082514362058,2026-01-26 +City Hotel,1,0,2017,October,41,9,1,1,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,89.52,0,0,Canceled,Sandra Hunter,amy60@example.net,+1-755-517-7864,060456141450,2025-02-27 +City Hotel,1,51,2017,June,23,3,1,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,9.0,179.0,0,Transient,82.09,0,1,Canceled,Alexis Griffith,tayloradams@example.org,628.716.8757,180091556606508,2024-12-09 +Resort Hotel,0,23,2017,May,20,18,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,I,1,No Deposit,244.0,179.0,0,Transient,51.21,0,1,Check-Out,Russell Blake,evanswanda@example.org,(470)931-5133x287,6586521813661430,2025-04-12 +City Hotel,0,45,2017,October,40,4,0,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,73.81,0,0,Check-Out,Christopher Martinez,blandry@example.com,001-215-771-9506x18766,4774095253166181,2025-01-19 +Resort Hotel,0,13,2017,December,51,20,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,D,D,2,No Deposit,243.0,223.0,0,Transient-Party,50.89,0,1,Check-Out,Leslie Hutchinson,kho@example.net,+1-656-519-9283x17938,3552230362512799,2024-04-05 +City Hotel,1,388,2017,June,26,27,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,67.0,179.0,0,Transient,104.6,0,0,Check-Out,David Garcia,owalters@example.net,(292)933-0159x61653,4754977016767054,2025-08-15 +Resort Hotel,0,1,2017,January,4,25,0,1,2,0.0,0,HB,PRT,Groups,Direct,0,0,0,A,C,0,No Deposit,311.0,179.0,0,Transient-Party,46.32,0,0,Check-Out,William Bennett,osbornedavid@example.com,+1-679-960-4718x43303,2485528843710997,2025-10-26 +City Hotel,1,104,2017,September,36,2,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,74.0,179.0,0,Transient-Party,72.39,0,0,Canceled,Sara Price,ngraham@example.org,434-602-8687x5445,5406932021291987,2025-04-20 +City Hotel,0,0,2017,June,25,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,A,2,No Deposit,16.0,45.0,0,Transient,82.22,1,0,Check-Out,Jessica Walker,cruztracey@example.net,001-800-940-7721,3527737898600775,2025-12-15 +Resort Hotel,1,10,2017,September,36,8,2,1,2,0.0,0,HB,PRT,Groups,Corporate,0,0,1,A,A,0,No Deposit,245.0,179.0,0,Transient,101.3,0,1,Canceled,Michael Hoover,kyle14@example.com,+1-959-526-5248x903,501862077051,2025-03-13 +Resort Hotel,0,17,2017,March,10,5,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,1,0,1,A,A,0,No Deposit,241.0,179.0,0,Transient,46.31,0,1,Check-Out,Christina Carpenter,fbuck@example.com,497.696.8161,180074030549098,2024-06-02 +City Hotel,0,3,2017,August,33,15,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,135.64,0,1,Check-Out,Angela Sanders,lisagarcia@example.com,+1-756-449-9824,4028565872067931,2024-04-14 +City Hotel,1,54,2017,June,26,24,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,Non Refund,14.0,179.0,0,Transient,80.7,0,0,Canceled,Jimmy Huang,hollandjoan@example.net,+1-562-579-4789x47707,376761944212490,2025-04-08 +City Hotel,0,0,2017,August,31,4,1,2,2,0.0,0,BB,,Direct,Corporate,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Contract,121.14,1,0,Check-Out,William Rivera,elizabethcoleman@example.net,2237271969,213101002989191,2025-05-28 +City Hotel,1,295,2017,May,21,24,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,28.0,179.0,38,Transient-Party,64.35,0,0,Canceled,Dustin Davis,lauren73@example.net,344-322-7314x3066,377652105082989,2025-11-11 +Resort Hotel,1,199,2017,June,25,18,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,1,No Deposit,13.0,227.0,0,Transient,45.96,0,1,Canceled,Vanessa Stout,fsmith@example.org,677-598-2615x7771,4307185972800313,2025-01-15 +Resort Hotel,1,298,2017,July,30,20,2,5,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,240.0,179.0,0,Transient,167.14,0,0,Canceled,Mrs. Tina Thomas DDS,gregoryfischer@example.org,+1-994-377-5075x1998,6011679688209290,2025-12-28 +City Hotel,0,16,2017,July,29,21,0,1,2,0.0,0,SC,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient-Party,228.55,0,1,Check-Out,Sandra Reyes,stanleyjimmy@example.com,001-857-311-2711x0509,340767816478708,2026-03-02 +Resort Hotel,1,148,2017,June,26,27,0,2,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,237.0,179.0,0,Transient,95.95,0,1,Canceled,Paul Berg,ymiller@example.org,+1-927-427-3722,2232894054653854,2025-04-01 +Resort Hotel,0,2,2017,August,32,8,2,5,2,1.0,0,HB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,14.0,179.0,0,Transient,202.82,0,3,Check-Out,Brian Long,danielwhite@example.org,(257)586-0960,4634474215467146,2024-05-05 +Resort Hotel,0,144,2017,April,15,13,2,1,2,0.0,0,Undefined,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient,91.62,0,0,Check-Out,Stacy Knapp,ghall@example.org,817-552-6312x7243,6011214902660845,2024-07-05 +City Hotel,0,17,2017,August,36,31,0,3,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,237.74,0,1,Check-Out,Michael Potter,julie94@example.net,328.714.1727x904,6528217401011291,2025-04-21 +City Hotel,0,174,2017,August,32,9,2,5,3,0.0,0,BB,,Direct,Direct,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,237.25,0,1,Check-Out,Jennifer Smith,betty38@example.org,672.838.3582x67327,3588389511668809,2024-08-07 +City Hotel,0,48,2017,August,35,24,0,4,2,1.0,0,BB,ISR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,126.78,1,3,Check-Out,James Peterson,alyssa32@example.com,001-277-979-6155x727,5563142721874046,2024-11-08 +City Hotel,0,45,2017,March,13,27,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,99.05,0,2,Check-Out,Jermaine Miller,jacksoncathy@example.com,851.286.3022x2624,30520809114011,2024-10-12 +Resort Hotel,1,0,2017,June,25,21,1,1,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,D,D,0,Non Refund,14.0,179.0,0,Transient,46.49,0,0,Canceled,Rodney Stevens,rcoleman@example.com,+1-467-821-9004x7501,4341589589070,2025-05-08 +Resort Hotel,0,100,2017,July,31,30,4,1,2,0.0,0,BB,IRL,Online TA,GDS,0,0,0,E,E,0,No Deposit,242.0,179.0,0,Transient,137.93,0,0,Check-Out,Darin Mcclure,johnsonjill@example.com,(432)788-2504x8018,213158079814249,2025-05-01 +Resort Hotel,0,35,2017,April,15,10,0,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,G,2,No Deposit,240.0,179.0,0,Transient,108.83,1,1,Check-Out,Steven Day,gwilson@example.net,554-707-2706,30523185941684,2025-06-02 +City Hotel,1,384,2017,September,39,24,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,76.69,0,0,Canceled,Cristina Campbell,duanemitchell@example.net,849.206.1815,4293466787842583,2024-07-02 +City Hotel,1,44,2017,April,15,12,0,2,3,0.0,0,BB,CHN,Online TA,TA/TO,0,0,0,D,A,1,No Deposit,8.0,179.0,0,Transient,139.92,0,1,Canceled,Thomas Gordon,medinaalexandra@example.com,(892)928-3914x45311,5510772836461976,2024-08-05 +Resort Hotel,0,8,2017,May,19,6,2,1,2,0.0,0,BB,USA,Direct,Direct,0,0,0,F,E,0,No Deposit,16.0,179.0,0,Transient,127.35,1,0,Check-Out,Gregory Lopez,ramirezscott@example.com,(905)267-8303,4354278859068831,2025-03-22 +City Hotel,1,138,2017,April,16,16,1,0,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,13.0,179.0,41,Transient,105.29,0,0,Canceled,Yvonne George,swright@example.org,001-605-837-1136x537,3591168844137228,2024-05-13 +City Hotel,1,44,2017,June,24,12,1,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,101.44,0,1,No-Show,Jermaine Roberts,amber79@example.net,001-605-979-2352x67714,3550810897178992,2024-11-09 +Resort Hotel,1,157,2017,May,19,7,1,4,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,315.0,179.0,0,Transient,83.05,0,0,Canceled,Mr. Michael Perry DVM,ynguyen@example.com,001-401-546-6131x68096,30109160710839,2024-11-01 +City Hotel,1,380,2017,May,19,5,0,4,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,117.32,0,0,Canceled,Tyler Fry,gerald24@example.net,+1-620-371-3413,2279785414022117,2025-05-24 +City Hotel,1,414,2017,July,28,13,0,3,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,No Deposit,10.0,179.0,0,Transient,47.61,0,0,Canceled,Karen Barton,johnsonlaura@example.net,(585)617-1410,180010614042605,2026-02-27 +City Hotel,1,204,2017,July,27,4,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,170.17,0,0,Canceled,Daniel Francis,pknight@example.com,8758771441,180020369248513,2025-06-21 +Resort Hotel,1,81,2017,June,23,9,0,6,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,125.6,0,0,Canceled,Daniel Galvan,wwolf@example.com,668.922.5093,213128684042544,2026-01-08 +City Hotel,0,102,2017,October,44,30,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,112.02,0,1,Check-Out,Penny Garcia,courtney52@example.net,+1-311-656-8504x2147,3597452170149039,2026-02-08 +Resort Hotel,0,15,2017,January,4,23,1,3,2,0.0,0,BB,GBR,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,127.0,179.0,0,Contract,64.67,0,2,Check-Out,Renee Alvarado,susan71@example.org,001-738-432-8827x2503,4501084005845,2025-05-01 +City Hotel,1,0,2017,July,28,12,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,109.14,0,1,No-Show,Lisa Tanner,ethan23@example.com,708-824-3938x879,4226566181329285,2024-05-08 +Resort Hotel,1,105,2017,August,35,27,2,5,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,C,C,0,No Deposit,13.0,179.0,0,Transient,245.79,0,0,Canceled,Marcia Burton,keithwhitaker@example.net,+1-958-554-3631x755,676218838784,2024-07-18 +City Hotel,0,61,2017,March,13,25,1,2,3,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,29.0,179.0,0,Transient,131.99,0,0,Check-Out,Jorge Collins,david40@example.net,+1-814-322-8515x4534,2713383010673667,2026-03-10 +City Hotel,1,148,2017,September,36,4,0,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,9.0,179.0,0,Transient,157.61,0,0,Canceled,Richard Snyder,jared76@example.org,+1-591-610-6084x16276,4497164812379355245,2024-10-14 +City Hotel,0,12,2017,January,5,29,1,2,1,1.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,118.54,1,1,Check-Out,Joseph Krueger,michaelblake@example.net,8067750579,180087738941300,2025-04-03 +Resort Hotel,0,3,2017,October,42,15,1,7,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,A,H,0,No Deposit,321.0,179.0,0,Transient,54.23,0,2,Check-Out,Stephanie Torres,matthewscott@example.net,603.731.3370x952,30562995662213,2024-06-22 +City Hotel,0,198,2017,July,28,9,0,2,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,129.94,0,1,Check-Out,Allison Christian,kirkwilkinson@example.com,001-278-389-8498x540,639028147499,2024-10-13 +City Hotel,1,61,2017,March,12,18,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,106.53,0,0,Canceled,Christina Jackson,lhahn@example.net,(608)280-8556x102,30098420896035,2026-02-04 +City Hotel,0,1,2017,July,27,8,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,12.0,179.0,0,Transient,125.21,1,1,Check-Out,Joshua Jordan,randysmith@example.net,314.384.6215,4094278390342681193,2024-08-06 +Resort Hotel,0,20,2017,August,35,24,4,2,3,0.0,0,BB,IRL,Direct,Direct,0,0,0,E,E,2,No Deposit,246.0,179.0,0,Transient,200.66,0,1,Check-Out,Jonathan Sexton,james65@example.org,(754)824-4415x5665,6011535763386215,2025-05-24 +Resort Hotel,0,167,2017,July,27,2,2,5,2,0.0,0,BB,CN,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,237.0,179.0,0,Transient,163.02,0,1,Check-Out,Brenda Bryant,watsonjesse@example.org,6113055628,30084885876928,2024-08-31 +City Hotel,0,89,2017,September,36,4,2,1,2,0.0,0,BB,FRA,Groups,TA/TO,0,0,0,D,D,0,No Deposit,2.0,179.0,0,Transient-Party,62.02,0,0,Check-Out,Paul Rogers,mhorton@example.org,(881)350-9142,3579743621398288,2025-06-17 +City Hotel,1,207,2017,October,43,23,1,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,81.0,179.0,20,Transient,99.46,0,0,Canceled,Jim Cooke,contrerasjose@example.com,(344)593-9257x35696,30143252103066,2025-09-02 +Resort Hotel,0,57,2017,December,2,31,0,3,2,0.0,0,BB,PRT,Online TA,Corporate,0,0,0,A,E,0,No Deposit,242.0,179.0,0,Transient,51.49,0,0,Check-Out,Thomas Parsons,angelamiller@example.net,4387567759,3580165727269964,2025-04-08 +City Hotel,0,15,2017,March,10,4,0,4,1,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,A,K,1,No Deposit,11.0,179.0,0,Transient,128.59,0,2,Check-Out,John Moore,misty23@example.org,5808951793,4848502862541,2025-09-27 +City Hotel,0,114,2017,April,14,2,1,4,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,122.18,0,0,Check-Out,Norma Ho,williamsjoseph@example.com,(729)203-8121x16638,4180180586982878544,2024-07-13 +City Hotel,1,400,2017,July,30,26,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,128.22,0,0,Canceled,Jennifer Marquez,erincarney@example.com,001-839-505-8695x515,4877619113136914,2024-06-06 +City Hotel,1,102,2017,June,23,3,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,A,0,Non Refund,10.0,179.0,0,Transient,102.97,0,0,Canceled,Tommy Stevens,ograham@example.org,+1-867-813-9333x9567,36635204267760,2024-08-31 +Resort Hotel,0,91,2017,November,45,5,2,4,2,0.0,0,BB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,97.31,0,1,Check-Out,Harold Pham,vreyes@example.net,001-779-597-7966,4579690253910187,2025-10-20 +City Hotel,0,95,2017,September,39,23,0,1,2,0.0,0,HB,ISR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient-Party,108.99,0,2,Check-Out,Julie Wilson MD,vlamb@example.com,+1-531-761-1195x075,4337656749860,2024-09-29 +Resort Hotel,1,161,2017,June,25,21,3,6,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,240.0,179.0,0,Transient,249.88,0,1,Canceled,Brooke Rodriguez,melissakline@example.net,(624)271-2030x096,6011925918992399,2024-08-03 +Resort Hotel,0,5,2017,March,13,26,1,3,2,0.0,0,BB,FRA,Direct,Direct,0,0,1,E,E,1,No Deposit,15.0,179.0,0,Transient,60.34,1,0,Check-Out,Natalie Martinez,peterswanson@example.com,(654)242-4452x042,343031438035843,2025-09-06 +City Hotel,0,28,2017,June,26,26,0,2,2,2.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,146.96,1,0,Check-Out,Scott Perkins,rachelhuffman@example.net,294-825-5705,3595677869484659,2024-07-31 +Resort Hotel,1,0,2017,January,2,6,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,39.03,0,1,Canceled,Timothy Acosta,mary51@example.org,555-699-9366,30259335478455,2025-05-25 +City Hotel,1,8,2017,October,41,13,1,4,1,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,109.48,0,0,Canceled,Michael Wheeler,qdonaldson@example.net,(918)966-8272,4824530115883418059,2024-05-21 +City Hotel,1,138,2017,August,32,6,1,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,10.0,179.0,0,Transient,97.42,0,0,Canceled,Jeffrey Medina,ohodge@example.com,317.607.1035,3541083634082453,2025-02-16 +City Hotel,1,149,2017,July,28,12,2,4,2,1.0,0,BB,IRL,Direct,Direct,0,0,0,D,G,0,No Deposit,13.0,179.0,0,Transient,252.0,0,3,Canceled,Jenny Turner,acooper@example.net,653.957.6766x127,502059782305,2024-07-07 +Resort Hotel,0,21,2017,April,14,2,2,5,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,56.47,0,1,Check-Out,Angel Lane,jonathanhansen@example.org,+1-247-717-9199,630462872965,2025-01-16 +City Hotel,0,111,2017,May,19,4,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,1,No Deposit,17.0,179.0,0,Transient,147.32,0,0,Check-Out,Gina Brewer,amandasmith@example.org,(987)827-0761x85476,639094164634,2026-01-10 +City Hotel,0,18,2017,August,36,31,0,6,2,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,A,0,No Deposit,16.0,179.0,0,Transient,225.37,0,0,Check-Out,Andrea Hoffman,ubriggs@example.net,+1-368-437-8324,2299073461304324,2025-02-15 +City Hotel,0,20,2017,August,32,8,2,5,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient-Party,218.02,0,0,Check-Out,Mark Smith,richardsonmichelle@example.org,602-635-8073x986,4412540620306174,2024-11-01 +City Hotel,0,102,2017,September,39,24,1,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,106.89,0,0,Check-Out,Connie Allen MD,ryannguyen@example.com,(836)594-0130x5476,3553772212298474,2025-02-13 +City Hotel,1,54,2017,December,48,2,0,2,2,0.0,0,BB,FRA,Groups,Direct,0,0,0,A,A,0,No Deposit,14.0,179.0,0,Transient-Party,78.97,0,0,Canceled,Jason Webb,elizabeth59@example.org,(883)781-1781x384,4405065064997,2026-03-13 +Resort Hotel,1,163,2017,July,30,27,2,5,3,1.0,0,HB,PRT,Direct,Direct,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,252.0,1,2,Canceled,Roger Holland,sharrell@example.com,001-285-311-4820x48530,4243851009807539682,2025-10-08 +City Hotel,0,3,2017,January,2,6,1,1,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,129.88,0,1,Check-Out,Amanda Norman,christy62@example.org,221-214-7487x937,4461969638555060,2025-09-06 +Resort Hotel,0,1,2017,October,42,21,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,15.0,63.0,0,Transient,46.6,0,0,Check-Out,Joseph Daniels,tara32@example.org,203.892.8057x667,2581873152207125,2024-07-30 +City Hotel,1,103,2017,June,24,13,2,1,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,80.51,0,2,Canceled,James Powell,rholt@example.org,(355)639-5787,4610874119896,2025-04-14 +Resort Hotel,0,3,2017,August,31,5,1,2,2,0.0,0,BB,PRT,Direct,TA/TO,0,0,0,D,H,0,No Deposit,32.0,179.0,0,Transient,84.79,1,0,Check-Out,Zachary Kelley,urivera@example.com,(608)664-6255x910,4536565928109310,2025-05-05 +City Hotel,1,49,2017,June,26,24,1,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,105.52,0,2,No-Show,Jennifer Armstrong,jill87@example.com,267-323-8489,4602215495275362,2025-10-03 +City Hotel,0,45,2017,April,14,2,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,208.81,0,0,Check-Out,Ryan Smith,adunn@example.org,(886)706-6076x190,4511962843639,2026-03-15 +Resort Hotel,0,151,2017,February,9,27,2,5,1,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,46.43,0,2,Check-Out,Susan Alexander,jennifer08@example.com,510-682-8464x1862,374088420821111,2025-12-21 +Resort Hotel,1,182,2017,June,26,23,0,10,2,0.0,0,BB,IRL,Direct,Direct,0,0,0,D,G,0,No Deposit,244.0,179.0,0,Transient,115.15,0,1,Canceled,James Peters,colleen73@example.org,+1-754-639-2666,5212331440381277,2024-08-16 +City Hotel,0,19,2017,September,39,27,2,1,2,0.0,0,BB,FRA,Direct,Direct,0,0,0,D,G,0,No Deposit,11.0,179.0,0,Transient,128.29,0,2,Check-Out,Alyssa Green,cgriffin@example.com,(322)970-1538x984,676108490555,2025-11-28 +City Hotel,1,107,2017,March,13,25,0,3,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,103.81,0,1,No-Show,Patricia Davis,mrhodes@example.net,211-531-7984,213183993735502,2026-03-16 +Resort Hotel,0,0,2017,October,40,1,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,0.5099000000000001,0,1,Check-Out,James Fields,brooke20@example.com,581-788-0915,30309367069506,2025-04-16 +Resort Hotel,1,44,2017,March,13,24,1,3,2,0.0,0,SC,FRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,13.0,211.0,0,Transient,120.67,0,0,Canceled,Mrs. Rebecca Sanders,shericoleman@example.org,001-833-767-8331x9145,4565646400737,2025-03-24 +Resort Hotel,0,41,2017,April,15,12,1,1,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,2,No Deposit,247.0,179.0,0,Transient,244.77,1,0,Check-Out,Joseph Lee,timothy33@example.net,+1-644-226-2741x0018,344485225063013,2026-01-16 +Resort Hotel,0,46,2017,May,21,22,0,3,1,0.0,0,BB,PRT,Groups,Direct,0,0,0,E,E,0,No Deposit,244.0,179.0,0,Transient,66.57,0,0,Check-Out,Anita Lamb,martinezkatherine@example.com,+1-613-415-2112x5720,5591836553267585,2025-05-10 +City Hotel,0,2,2017,October,41,10,0,1,1,0.0,0,SC,DEU,Offline TA/TO,GDS,0,0,0,A,A,0,No Deposit,176.0,179.0,0,Transient,132.17,0,0,Check-Out,Taylor Roberts,jonesmiguel@example.org,208.630.9888x57207,4362462831747031325,2025-08-25 +City Hotel,0,18,2017,October,43,26,2,5,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,2.0,179.0,0,Transient-Party,81.41,0,0,Check-Out,Alicia Hoffman,lambertrichard@example.com,924.317.6536x1676,30592683419436,2024-05-11 +City Hotel,0,19,2017,December,50,9,0,2,2,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,26.0,179.0,61,Transient-Party,105.35,0,0,Check-Out,Ryan Mendoza,gonzalezkevin@example.com,(416)729-6325,4481118613886655601,2025-02-21 +Resort Hotel,0,1,2017,February,6,5,0,1,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,D,0,No Deposit,15.0,179.0,0,Transient,64.19,0,0,Check-Out,Sean Aguilar,gsoto@example.com,342-381-3346,213131498852918,2026-01-21 +Resort Hotel,0,340,2017,July,29,16,1,1,2,0.0,0,BB,ESP,Corporate,Direct,0,0,0,D,C,0,No Deposit,12.0,179.0,0,Transient,140.17,1,0,Check-Out,Kari Moreno,russellbradley@example.com,+1-461-456-9721x546,3501995508256202,2024-06-23 +City Hotel,1,141,2017,July,30,24,2,7,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,B,A,0,No Deposit,9.0,179.0,0,Transient,221.84,0,0,Canceled,Rachael Atkinson MD,lindsey54@example.com,687.508.4714,2272127557860416,2025-05-09 +Resort Hotel,0,13,2017,September,37,15,0,2,2,2.0,0,BB,ITA,Online TA,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,164.99,1,1,Check-Out,Dana Stevens,thomas95@example.org,+1-273-808-0716x601,3595865138319265,2025-05-12 +City Hotel,1,129,2017,July,27,1,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,E,0,No Deposit,8.0,179.0,0,Transient,80.3,0,0,Canceled,Kimberly George,lisa10@example.org,+1-595-750-6484,6011710780904437,2024-08-08 +City Hotel,0,3,2017,August,34,20,2,4,2,0.0,0,BB,PRT,Online TA,Undefined,0,0,0,B,B,0,No Deposit,12.0,179.0,0,Transient-Party,60.87,0,1,Check-Out,Keith Hall,gbarr@example.net,(777)705-5279x6006,213191698953080,2025-01-19 +Resort Hotel,1,18,2017,November,47,18,1,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,241.0,179.0,0,Transient,41.55,0,1,Canceled,Nicole Poole,flynnedward@example.com,340-215-0535x808,4713773294417755,2025-02-11 +Resort Hotel,0,275,2017,July,27,4,2,10,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,28.0,179.0,0,Transient,100.36,0,1,Check-Out,Gabrielle Rangel,juanmiller@example.com,499-888-2947x21083,36961492960241,2024-03-28 +Resort Hotel,0,13,2017,June,24,9,0,2,1,1.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,241.0,179.0,0,Transient,142.88,0,0,Canceled,Sherry Williamson,jonesjonathan@example.com,001-257-561-1242x5689,4782471712672422309,2025-11-05 +City Hotel,1,414,2017,June,23,1,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,12.0,179.0,0,Transient,61.62,0,0,Canceled,Nicholas Meadows,dcarr@example.com,(397)532-8085,4289496077830,2026-01-07 +Resort Hotel,0,2,2017,April,16,20,4,7,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,328.0,179.0,0,Transient,144.37,0,1,Check-Out,Antonio Martinez,brett06@example.org,+1-673-370-0150x403,2457402145268068,2025-05-24 +City Hotel,0,0,2017,January,2,7,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,B,1,No Deposit,18.0,45.0,0,Transient,45.88,0,0,Check-Out,Erica Foster,aaron09@example.com,607.934.8671x508,4432883574550793,2025-09-30 +City Hotel,0,0,2017,June,26,27,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.81,0,1,Check-Out,Melissa Mcguire,yross@example.org,001-701-329-3091x45387,6011613825247244,2025-11-30 +Resort Hotel,0,194,2017,July,30,26,4,3,2,2.0,0,BB,IRL,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,242.0,179.0,0,Transient,252.0,0,3,Canceled,Joseph Greer,wbailey@example.com,666-434-9987x4284,4910424321491840,2024-10-24 +City Hotel,0,0,2017,July,31,30,0,1,1,0.0,0,BB,PRT,Complementary,Direct,0,0,0,G,E,0,No Deposit,14.0,179.0,0,Transient,0.5099000000000001,0,0,Check-Out,Mark Coleman,kimronald@example.net,666.376.1817x59565,4982790096732839,2025-09-15 +City Hotel,0,112,2017,July,31,29,1,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,163.56,0,1,Check-Out,Anthony Rodriguez,nicholasford@example.org,001-666-458-2098,30190049909677,2024-10-28 +City Hotel,0,159,2017,May,20,14,0,2,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,2,No Deposit,8.0,179.0,0,Transient,230.08,0,1,Check-Out,Angela Gonzalez,courtneyharris@example.com,418-596-4495x575,3542507860636177,2025-05-09 +Resort Hotel,0,162,2017,March,11,14,0,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,A,2,Refundable,12.0,222.0,0,Transient-Party,37.48,0,1,Check-Out,Kevin Perez,lori49@example.com,767-714-9834x456,180080411497047,2026-02-20 +City Hotel,0,53,2017,April,17,22,2,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,109.52,0,1,Check-Out,Joe Gonzalez,leahlee@example.org,536.368.6437,2280570232744663,2025-08-22 +Resort Hotel,0,0,2017,February,7,14,2,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,0,No Deposit,17.0,78.0,0,Transient,34.47,1,0,Check-Out,Wendy Castro,allison60@example.com,(229)385-6127x7094,6523176001722043,2024-08-02 +City Hotel,0,210,2017,March,13,27,0,4,2,1.0,0,BB,DEU,Groups,Direct,0,0,0,A,A,2,No Deposit,364.0500000000011,179.0,0,Transient-Party,77.45,0,0,Check-Out,Juan Wright,michaeljackson@example.net,957.513.7524x833,6577925226714846,2025-04-05 +City Hotel,0,95,2017,September,39,26,0,3,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,100.66,0,0,Check-Out,Madison West,julian78@example.com,951.900.3411x70049,180008166908447,2025-09-20 +City Hotel,0,99,2017,August,32,5,2,4,3,2.0,0,BB,NOR,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,11.0,179.0,0,Transient,213.87,0,1,Check-Out,Mackenzie Brown,clarkterrance@example.com,(800)499-6656x4480,30582034011321,2024-08-16 +City Hotel,1,173,2017,August,32,9,2,3,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,2.0,179.0,0,Transient,100.59,0,0,Canceled,Michael Skinner,margaret93@example.net,+1-639-926-2059x651,3593545746336313,2024-09-23 +City Hotel,0,150,2017,July,29,17,0,2,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,24.0,179.0,0,Transient,133.3,0,1,Check-Out,Dan Carney,gsilva@example.net,(894)352-2811x4785,4467336493061267,2024-12-24 +City Hotel,0,107,2017,May,21,23,2,2,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,10.0,179.0,64,Transient-Party,85.65,0,0,Check-Out,Leon Harris,anthony50@example.com,849-383-0057,30178358203899,2025-04-27 +City Hotel,0,13,2017,November,44,2,1,1,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,24.0,179.0,0,Transient,151.15,0,1,Check-Out,Clinton Farrell,kirksmith@example.com,631.440.2475x1210,30106587805838,2025-02-16 +City Hotel,0,291,2017,October,43,24,0,2,1,0.0,0,SC,IRL,Offline TA/TO,Corporate,0,0,0,A,A,0,No Deposit,25.0,179.0,0,Transient-Party,94.88,0,0,Check-Out,Cory Wood,rachel90@example.org,603-477-0253,4147723959651,2025-06-12 +City Hotel,0,4,2017,August,33,13,2,2,2,0.0,0,BB,ESP,Direct,Direct,0,0,0,A,A,0,No Deposit,13.0,179.0,0,Transient,137.16,0,1,Check-Out,Raymond Thompson,kyle43@example.com,001-726-257-4156x646,4812065972729324,2024-04-19 +Resort Hotel,1,16,2017,January,4,25,1,3,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,240.0,179.0,0,Transient,51.51,0,1,Canceled,Erica Collins,emily71@example.com,600.265.4036x1165,346744468931809,2024-04-02 +City Hotel,1,43,2017,March,12,22,0,2,1,0.0,0,BB,PRT,Online TA,TA/TO,0,1,1,A,A,0,No Deposit,9.0,179.0,0,Transient,101.5,0,1,Canceled,Benjamin Bowman,anthony94@example.net,5784810131,180052288651790,2024-12-20 +Resort Hotel,0,144,2017,October,41,7,0,3,2,0.0,0,Undefined,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,95.0,179.0,0,Transient-Party,0.55,0,0,Check-Out,James Lopez,sylviageorge@example.org,(258)661-4155,213142479410196,2024-03-30 +City Hotel,0,45,2017,October,41,9,0,3,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,6.0,179.0,0,Transient,164.81,0,2,Check-Out,Pamela French,vmckinney@example.net,823.220.9488x0506,3524165453604235,2024-09-27 +City Hotel,1,96,2017,September,37,11,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,74.0,179.0,0,Transient,103.91,0,0,Canceled,Joann Thomas,kevinparker@example.com,812-982-8644x3653,2277556912955575,2026-02-19 +Resort Hotel,0,121,2017,March,10,6,0,2,2,0.0,0,HB,PRT,Groups,Corporate,1,0,1,E,I,1,No Deposit,14.0,179.0,75,Transient-Party,0.5099000000000001,1,3,Check-Out,James Yates,wlee@example.net,604.276.7223x43730,30368567619825,2024-09-23 +Resort Hotel,0,192,2017,October,40,5,2,5,2,2.0,0,BB,GBR,Direct,Direct,0,0,0,F,F,0,No Deposit,14.0,179.0,75,Transient,230.35,0,0,Canceled,Phillip Macdonald,angelica50@example.com,226.734.3081,577931723370,2025-08-03 +Resort Hotel,1,311,2017,July,30,23,0,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,F,0,No Deposit,309.0,179.0,0,Transient-Party,105.37,0,0,Canceled,Amber Sanders,kaylahartman@example.net,(306)440-6130x13234,4079792019041956857,2024-10-04 +City Hotel,0,11,2017,July,31,29,2,4,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,134.63,0,1,Check-Out,Amy Johnson,jcampbell@example.com,(967)214-6460,377580880403726,2024-10-31 +City Hotel,1,324,2017,July,27,4,1,1,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,134.0,0,0,Canceled,Megan Cruz,michael48@example.net,(254)267-8498,4229351898530955,2025-06-24 +Resort Hotel,1,108,2017,June,25,23,1,1,2,1.0,0,BB,ESP,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,240.0,179.0,0,Transient,80.83,1,0,Canceled,Jessica Torres,tanya50@example.org,6874160995,30357923139982,2024-11-19 +City Hotel,1,108,2017,April,17,24,0,2,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,D,E,0,No Deposit,237.0,179.0,0,Transient,137.33,0,1,Canceled,Thomas Riggs,phillip96@example.org,547.477.8183,501861412275,2025-05-22 +City Hotel,0,17,2017,June,26,24,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,22.0,179.0,0,Transient,115.88,0,1,Check-Out,Courtney Cox,omiller@example.org,(949)942-7415x828,4962221327332227,2024-07-28 +Resort Hotel,0,66,2017,January,2,6,1,10,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,F,0,No Deposit,242.0,179.0,0,Transient,56.23,0,1,Check-Out,Katherine Jones,dolson@example.com,621-750-0631,4063306920143812,2024-05-26 +City Hotel,0,195,2017,August,32,4,2,1,2,0.0,0,SC,CHN,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,252.0,0,1,Check-Out,Ashley Valencia,jvilla@example.org,(589)306-3479,4127178172076667,2026-02-03 +City Hotel,0,8,2017,February,9,28,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,63.45,0,1,Check-Out,Maria Simmons,kayla43@example.org,001-828-285-9468x3537,4030799991799589,2025-07-26 +Resort Hotel,0,0,2017,March,11,15,0,1,2,0.0,0,HB,AUT,Direct,Corporate,1,0,1,E,F,1,No Deposit,12.0,179.0,75,Transient-Party,63.43,1,1,Check-Out,Albert Shelton,stephen45@example.org,286-304-8462x9620,4310069377644110487,2024-07-31 +Resort Hotel,0,1,2017,June,25,17,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,L,E,0,No Deposit,16.0,179.0,0,Transient,177.58,1,1,Check-Out,Paul Chambers,harroyo@example.com,(473)356-0025,2710746767247005,2025-08-17 +Resort Hotel,0,11,2017,March,10,6,1,2,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,188.0,331.0,0,Transient,51.57,0,1,Check-Out,Melinda Lewis,samantha89@example.net,287.507.8568x382,6545883922122419,2024-12-13 +City Hotel,0,159,2017,June,23,4,0,2,2,1.0,0,Undefined,ESP,Direct,Direct,0,0,0,A,A,1,No Deposit,14.0,179.0,0,Transient,131.99,0,1,Check-Out,Alex Zamora,christianbrown@example.net,001-280-363-3964,30405681528464,2025-03-31 +City Hotel,0,78,2017,September,36,6,0,2,2,0.0,0,BB,ITA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,16,Transient-Party,96.44,0,1,Check-Out,Jeffery Campbell II,greenjohn@example.net,467-319-9327x5061,6540865139352231,2026-01-27 +City Hotel,0,132,2017,July,27,3,4,10,3,0.0,0,BB,CN,Direct,Direct,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,131.66,0,2,Check-Out,Ms. Jennifer Irwin,reginaldrogers@example.com,804-879-7718,30355848175099,2024-05-06 +Resort Hotel,0,346,2017,September,37,16,2,5,2,0.0,0,HB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Contract,108.16,0,3,Check-Out,Allen Hardy,gentrychristina@example.org,+1-814-727-3591x5267,378232605052169,2025-09-03 +Resort Hotel,1,20,2017,March,11,17,0,2,3,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,I,0,No Deposit,242.0,179.0,0,Transient,101.39,0,2,Canceled,Carl Ross,ajohnson@example.org,275-757-4363x505,5577224397623271,2024-09-30 +City Hotel,0,17,2017,July,30,28,0,2,2,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,6.0,179.0,0,Transient,110.66,0,2,Check-Out,Lisa Cross,matthew95@example.org,(993)771-0162,4780703914138,2024-05-09 +City Hotel,0,18,2017,August,34,23,2,1,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,10.0,179.0,0,Transient,215.35,0,3,Check-Out,Denise Carter,phelpsstephen@example.org,830-264-5023,3577271686361043,2024-09-13 +City Hotel,0,15,2017,February,7,10,1,2,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,70.5,0,2,Check-Out,Erin Kaufman,abigail09@example.net,+1-999-854-4601,3507202740721810,2026-02-28 +Resort Hotel,0,56,2017,April,18,30,1,3,2,0.0,0,BB,RUS,Online TA,Direct,0,0,0,A,C,0,No Deposit,12.0,179.0,0,Transient,133.75,0,0,Check-Out,Billy Jordan,jacquelinemarks@example.net,313.364.1522,375869384068453,2025-12-15 +City Hotel,0,14,2017,December,51,22,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,0,0,A,D,1,No Deposit,14.0,229.0,0,Transient,47.46,0,1,Check-Out,Morgan Richards,jason16@example.org,(577)457-7008x3049,4038480189674205,2025-02-14 +Resort Hotel,0,3,2017,May,21,20,0,2,1,1.0,0,BB,PRT,Groups,Corporate,0,0,0,A,A,0,No Deposit,275.0,179.0,0,Transient,48.11,0,0,Check-Out,Austin Edwards,jessicaellis@example.com,6169170987,6546957417454666,2024-06-29 +City Hotel,0,2,2017,January,4,24,0,1,1,0.0,0,BB,FRA,Direct,GDS,0,0,0,A,C,0,No Deposit,197.0,179.0,0,Transient,90.81,0,0,Check-Out,James Pierce,carlrivera@example.com,(797)298-2242x149,2285068893121102,2024-10-21 +City Hotel,1,201,2017,July,28,13,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,A,0,No Deposit,238.0,179.0,0,Transient,170.96,0,1,Canceled,Cynthia Kaufman,melanie81@example.org,001-791-203-9393x07997,372905218839660,2024-08-25 +City Hotel,0,54,2017,November,45,5,0,2,1,0.0,0,BB,ITA,Offline TA/TO,Corporate,0,0,0,A,A,1,No Deposit,11.0,179.0,0,Transient-Party,163.73,0,0,Canceled,Vanessa Hughes,diana87@example.net,(409)701-6630,4926242771793015880,2025-01-07 +Resort Hotel,1,248,2017,October,42,15,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,307.0,179.0,0,Transient,121.49,0,0,Canceled,Valerie Patterson,gsmith@example.com,357-533-8292,30169678194611,2025-11-06 +City Hotel,0,36,2017,March,13,27,1,0,1,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Group,38.87,1,1,Check-Out,Kiara Gilbert,andreastrong@example.net,001-802-627-3788x7455,4933527417506773850,2026-02-10 +City Hotel,1,40,2017,October,41,9,2,5,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,D,A,0,No Deposit,18.0,179.0,0,Contract,90.67,0,0,Canceled,Alexander Freeman,tsanchez@example.com,(336)292-8715,3573247013945496,2025-04-23 +City Hotel,1,198,2017,June,26,24,0,3,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,29.0,179.0,41,Transient,91.06,0,0,Canceled,David Wagner,david69@example.org,001-458-367-6884,2234246789885954,2024-07-13 +City Hotel,0,40,2017,May,20,14,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,77.2,0,0,Canceled,Johnny Boone,smartin@example.com,+1-247-729-7530,4192835899198989,2024-10-05 +City Hotel,1,390,2017,August,33,14,0,4,2,0.0,0,BB,FRA,Online TA,Direct,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,140.14,0,0,Canceled,Debra Romero,john06@example.net,+1-839-648-5284,30164869727873,2024-04-21 +Resort Hotel,1,87,2017,June,23,3,1,2,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,G,H,0,No Deposit,240.0,179.0,0,Transient,237.41,0,1,Canceled,Joseph Phelps,tylervang@example.net,001-300-902-8443x89576,4636092378198347805,2025-02-16 +City Hotel,1,44,2017,October,44,31,1,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,73.0,179.0,65,Transient,116.68,0,0,Canceled,Jerry Campbell,sarahdawson@example.com,304-566-4525x961,6514296159294644,2024-08-13 +City Hotel,1,2,2017,February,6,6,1,2,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,59.45,0,0,Canceled,Nicole Norman,jacob68@example.com,(608)562-0979,4894638394744955,2025-07-20 +Resort Hotel,0,48,2017,December,51,22,0,2,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,D,2,No Deposit,238.0,179.0,0,Transient,53.45,0,0,Check-Out,Justin Richardson,robertgarcia@example.net,(395)570-9548x06655,3565032981685955,2024-12-15 +City Hotel,1,84,2017,June,23,6,2,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,31.0,179.0,0,Contract,86.39,0,0,Canceled,Tiffany Fuller,cervantestony@example.com,462.611.7731,4553626996138041,2025-05-24 +Resort Hotel,0,1,2017,February,8,19,2,1,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,A,1,No Deposit,17.0,331.0,0,Transient,49.81,0,0,Check-Out,Anthony Adams,nathanprince@example.net,271-296-4215,4443086089404,2024-09-26 +City Hotel,1,360,2017,September,38,18,0,2,2,0.0,0,SC,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,65.0,179.0,0,Transient,125.52,0,0,Canceled,Amanda Parsons,ericholland@example.com,964-735-9850,213199004484948,2025-09-30 +City Hotel,0,14,2017,July,27,2,2,4,2,0.0,0,SC,,Direct,Direct,0,0,0,A,A,1,No Deposit,12.0,179.0,0,Transient,240.67,0,1,Check-Out,Jordan Owen,michaelmills@example.org,+1-303-464-2624,4443869348225652,2024-04-01 +Resort Hotel,0,0,2017,December,49,9,2,1,2,0.0,0,BB,NLD,Offline TA/TO,TA/TO,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,83.48,0,0,Check-Out,Deborah Dixon,jonessarah@example.com,001-621-635-7343,4824976283227210,2024-11-26 +City Hotel,1,145,2017,July,28,14,0,4,2,0.0,0,SC,POL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,95.73,0,0,Canceled,Adriana Wilson,wbell@example.com,001-366-930-4639,371542632733954,2025-10-15 +Resort Hotel,0,28,2017,November,45,9,1,2,2,0.0,0,HB,FRA,Online TA,TA/TO,0,0,0,A,D,1,No Deposit,243.0,179.0,0,Transient,89.87,1,2,Check-Out,Jessica Williams,bwilliams@example.org,(934)712-3507x4674,4911765261075996,2025-12-21 +City Hotel,1,260,2017,May,19,12,0,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,86.6,0,0,Canceled,Patricia Harrison,myerswilliam@example.net,001-486-581-9841x71252,4126154972060,2025-11-19 +City Hotel,0,4,2017,March,12,22,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,54.89,0,2,No-Show,Teresa Cooke,beasleyedward@example.net,480.482.2370x6663,4908549692853105,2025-03-21 +City Hotel,1,64,2017,September,36,7,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,153.51,0,0,Canceled,Michael Lawrence,michellerandolph@example.com,2825674048,3577752068183238,2025-08-02 +Resort Hotel,0,153,2017,April,14,1,1,5,2,0.0,0,BB,GBR,Groups,Corporate,0,0,0,A,A,1,Refundable,14.0,223.0,0,Transient-Party,61.22,0,0,Check-Out,Pamela Hayes,ojohnson@example.com,581-415-0997x4556,2270532058687568,2025-06-06 +City Hotel,1,46,2017,October,42,19,2,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,207.63,0,0,Canceled,Jessica Smith,andrew08@example.com,611.946.3280x1420,343245665992431,2024-07-02 +City Hotel,1,406,2017,July,28,13,0,1,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Transient,72.93,0,0,Canceled,Peter King,richardperry@example.org,227.408.6709,503880711489,2025-07-16 +Resort Hotel,1,36,2017,July,30,24,0,2,2,2.0,0,BB,PRT,Direct,Direct,0,0,0,G,G,0,No Deposit,244.0,179.0,0,Transient,148.33,0,0,Canceled,Kevin Allen,jesseross@example.org,569-930-9506x48011,6011348014158536,2024-04-23 +City Hotel,0,14,2017,November,45,9,1,1,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,E,0,No Deposit,31.0,179.0,0,Group,91.46,0,2,Check-Out,Dr. Gabriela Doyle,gpalmer@example.org,5965557010,4287004316917358,2025-04-26 +City Hotel,0,268,2017,May,21,20,1,1,1,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,104.54,0,0,Check-Out,Sherry Richards,yangjuan@example.net,451.807.0876x86320,4764061969704162,2024-12-01 +City Hotel,0,6,2017,November,47,19,2,2,1,0.0,0,BB,,Corporate,Corporate,0,0,0,A,K,1,No Deposit,12.0,179.0,0,Transient,83.09,0,0,Check-Out,Lynn Maldonado,michellebriggs@example.org,4297931846,2256497219688087,2025-12-26 +City Hotel,0,241,2017,September,38,16,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,28.0,179.0,0,Transient-Party,119.35,0,0,Check-Out,Phillip Brewer,joseph99@example.net,+1-582-693-9785x8437,3511142142826425,2026-01-17 +Resort Hotel,0,25,2017,December,49,8,0,2,2,0.0,0,HB,PRT,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,239.0,179.0,0,Transient,53.66,0,1,Check-Out,Nicholas Robinson,ricejoshua@example.org,356.633.1648x13558,4160272010446,2024-08-09 +City Hotel,0,0,2017,April,14,3,1,1,1,0.0,0,BB,,Aviation,Corporate,0,0,0,A,D,0,No Deposit,12.0,152.0,0,Transient,91.79,0,0,Check-Out,Crystal Wallace,scott63@example.net,539.997.0656x216,4079426361913499,2025-10-02 +City Hotel,1,22,2017,December,49,2,0,5,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,171.0,179.0,0,Transient,93.25,0,0,Canceled,Angela Murillo,jasonbishop@example.org,+1-859-405-6465x04910,3591139002232846,2025-11-13 +City Hotel,1,3,2017,March,9,1,0,1,1,0.0,0,BB,FRA,Online TA,GDS,0,0,0,A,A,0,No Deposit,184.0,179.0,0,Transient,117.21,0,0,Canceled,Jonathan Scott,meyerrobert@example.com,001-992-492-5464x07743,4940183151091161,2024-07-13 +City Hotel,1,151,2017,July,27,7,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,Non Refund,11.0,179.0,0,Transient,126.11,0,0,Canceled,Taylor Wallace,danielscott@example.com,+1-344-702-8834x771,2301988090327501,2026-02-19 +City Hotel,0,110,2017,June,23,5,0,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Transient,144.44,0,2,Check-Out,Victoria Brown,carrie12@example.com,581.851.9175x910,4132302114540158129,2025-11-16 +Resort Hotel,1,34,2017,April,16,18,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,238.0,179.0,0,Transient,110.76,0,3,Canceled,Rebekah Collins,danielle62@example.net,981-741-7018x607,3575699130899881,2025-07-05 +City Hotel,1,23,2017,August,31,4,1,2,1,0.0,0,SC,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,110.53,0,0,Canceled,Carlos Jackson,nhill@example.com,682-892-7755,38364811840764,2024-07-17 +City Hotel,0,62,2017,October,43,22,1,2,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,86.33,0,2,Check-Out,Terry Carpenter,matthewarmstrong@example.com,(288)703-6415x789,213103646338934,2025-04-03 +Resort Hotel,1,167,2017,September,36,2,0,4,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,Non Refund,239.0,179.0,0,Transient,45.66,0,0,Canceled,Aaron West,carlabarber@example.com,432.562.4425x014,4840677411113906,2026-01-28 +City Hotel,1,318,2017,May,19,10,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,8.0,179.0,0,Transient,128.84,0,0,Canceled,Christopher Curtis,jthompson@example.net,+1-249-256-9638x4904,3584204180313153,2024-07-26 +Resort Hotel,0,9,2017,June,25,23,0,4,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,1,No Deposit,243.0,179.0,0,Transient,220.39,0,0,Check-Out,Anne Joseph,dnguyen@example.net,856.604.6187x800,180005538515033,2025-05-06 +City Hotel,0,68,2017,August,32,11,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,B,B,0,No Deposit,8.0,179.0,0,Transient,129.14,0,1,Check-Out,Stephen Price,david95@example.com,569-791-7191x271,676367972061,2025-12-20 +City Hotel,1,414,2017,March,10,4,1,2,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Refundable,11.0,179.0,0,Transient-Party,116.03,0,0,Canceled,Rhonda Daniel,crush@example.org,(250)589-4488x111,3514006701855801,2024-07-02 +City Hotel,0,9,2017,December,49,5,0,2,2,0.0,0,HB,PRT,Online TA,Direct,0,0,0,E,E,0,No Deposit,241.0,179.0,0,Transient,47.56,0,1,Check-Out,Ana Mahoney,donnalopez@example.net,001-724-236-8216x3679,4708549174302467811,2026-01-29 +Resort Hotel,1,48,2017,December,2,31,1,2,2,0.0,0,Undefined,ESP,Groups,TA/TO,0,0,0,A,C,0,No Deposit,34.0,179.0,0,Transient-Party,72.3,0,0,No-Show,Janet Quinn,zmorgan@example.org,+1-683-877-1418x9517,5368800903782132,2025-04-29 +Resort Hotel,0,127,2017,July,30,24,3,10,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,2,No Deposit,253.0,179.0,0,Transient,125.77,0,2,Check-Out,Brian Porter,ashleymorton@example.net,884-217-3435x604,4090522957817,2025-01-14 +Resort Hotel,0,142,2017,July,30,23,2,7,2,2.0,0,BB,USA,Direct,Direct,0,0,0,G,G,0,No Deposit,248.0,179.0,0,Transient,202.78,0,0,Check-Out,Jodi Collins,mespinoza@example.org,(854)314-2974,374122068551019,2025-01-16 +City Hotel,1,147,2017,July,30,28,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,26.0,179.0,40,Transient,131.09,0,0,Canceled,Megan Wilson,whiterichard@example.org,456.225.8770x255,180094704917876,2025-08-03 +City Hotel,0,41,2017,April,15,9,0,1,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,95.53,0,2,Check-Out,Jason Hobbs,kristin56@example.org,(512)689-7749x6797,6587173595676076,2025-05-09 +City Hotel,0,15,2017,April,15,12,2,4,3,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,8.0,179.0,0,Transient,112.47,1,1,Check-Out,Christopher Hill,collinsmandy@example.org,8033158621,213190401674447,2024-09-11 +Resort Hotel,0,17,2017,November,48,26,2,2,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Contract,81.54,0,1,Check-Out,Thomas White,pwagner@example.com,(933)242-6248,4938919934926515310,2025-07-29 +City Hotel,1,106,2017,November,47,24,0,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,31.0,179.0,0,Transient-Party,63.25,0,0,Canceled,Susan Navarro,millerstacey@example.com,289.850.0058,6561818931819596,2024-10-12 +City Hotel,1,200,2017,November,48,30,1,3,2,0.0,0,BB,FRA,Online TA,TA/TO,0,0,0,A,A,1,No Deposit,8.0,179.0,0,Transient,100.84,0,0,Canceled,Katherine Doyle,eric38@example.com,782.366.8376x215,373332280605003,2024-12-18 +Resort Hotel,0,172,2017,May,20,14,2,7,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,D,E,1,No Deposit,240.0,179.0,0,Transient,139.73,0,2,Check-Out,David Castillo,elizabethtorres@example.net,001-981-418-0160x2395,3595577152926681,2024-05-26 +City Hotel,1,3,2017,April,14,1,0,1,1,0.0,0,BB,PRT,Corporate,TA/TO,1,0,1,A,A,0,No Deposit,14.0,179.0,0,Transient,125.51,0,1,No-Show,James Valenzuela,wagnerjason@example.net,3515951263,4662932954319840843,2025-07-15 +City Hotel,1,164,2017,June,24,8,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,64.0,179.0,41,Transient,122.48,0,0,Canceled,Richard Robinson,wilsonstephanie@example.org,+1-525-804-5040x661,3596629561518044,2025-09-16 +City Hotel,0,49,2017,June,24,10,1,7,2,0.0,0,BB,IRL,Online TA,Direct,0,0,0,D,D,0,No Deposit,244.0,179.0,0,Transient,137.98,0,1,Check-Out,Brent Little,kevin54@example.org,+1-794-717-9811,4743465464314674893,2024-12-26 +City Hotel,0,6,2017,April,16,18,0,2,2,0.0,0,BB,BEL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,23.0,179.0,65,Transient-Party,85.98,0,0,Check-Out,Destiny Hoffman,jeffrey63@example.org,(546)445-5525x804,213113374024812,2024-05-05 +City Hotel,0,50,2017,November,45,9,0,1,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,D,A,0,No Deposit,7.0,179.0,0,Transient,96.97,0,1,Check-Out,Spencer Olson,bradshawjillian@example.net,440.968.8788x2546,4231970125348711,2024-04-25 +City Hotel,1,182,2017,May,19,10,0,2,2,2.0,0,BB,ESP,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,7.0,179.0,0,Transient,155.82,0,0,Canceled,Katie Eaton,richard55@example.com,+1-305-885-7978,4233291946344,2026-01-18 +Resort Hotel,1,20,2017,December,52,30,2,5,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,E,E,0,No Deposit,238.0,179.0,0,Transient,48.81,0,3,Canceled,Melissa Garcia,harry77@example.net,+1-244-962-6336x227,3582412705013651,2025-06-06 +City Hotel,0,332,2017,October,40,5,2,2,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,1.0,179.0,0,Transient-Party,62.27,0,0,Check-Out,Andrea Wheeler,hendrixmicheal@example.org,001-819-807-0047x86154,4718983354829141469,2024-04-09 +Resort Hotel,0,28,2017,December,49,4,0,1,2,0.0,0,Undefined,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,63.8,1,2,Check-Out,Melissa Castillo,pamela36@example.net,(797)248-4729x924,4047545356058074,2024-08-10 +City Hotel,1,167,2017,May,18,2,1,1,1,0.0,0,BB,GBR,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,137.26,0,0,Canceled,Charles Calderon,deanjohn@example.org,3505863051,6590015473238401,2026-03-20 +Resort Hotel,1,148,2017,May,18,1,1,7,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,A,D,0,Non Refund,245.0,179.0,0,Transient,75.99,0,0,Canceled,Kim Welch,howardmelissa@example.net,754-528-6882x17973,6567578054058182,2026-03-22 +City Hotel,0,23,2017,March,11,15,2,4,2,0.0,0,BB,BEL,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,185.28,0,1,Check-Out,Sydney Washington,danielle33@example.net,(885)361-3865x0555,4839534571366746,2026-03-02 +Resort Hotel,1,14,2017,February,7,14,0,1,1,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,1,E,B,0,No Deposit,87.0,179.0,0,Transient-Party,87.11,0,0,Canceled,Kevin Smith,deantimothy@example.net,234.406.3062x9598,2612892828826525,2024-12-20 +City Hotel,1,18,2017,August,35,27,2,2,1,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,10.0,179.0,0,Transient,170.69,0,0,Canceled,Darrell Lawson,stacy81@example.com,+1-415-672-9971x9422,349712254184542,2025-10-07 +City Hotel,0,7,2017,January,3,16,0,1,2,0.0,0,SC,NLD,Online TA,TA/TO,0,0,1,A,A,0,No Deposit,13.0,179.0,0,Transient,73.21,0,1,Check-Out,Jeremy Holder,eortega@example.com,(489)303-2340x78970,6011536995056139,2024-05-13 +City Hotel,0,12,2017,April,17,25,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,12.0,64.0,0,Transient,84.85,1,1,Check-Out,John Horne,blackwellkyle@example.com,407-279-6882x64877,6011229487986019,2025-11-10 +Resort Hotel,0,1,2017,August,35,31,1,4,2,0.0,0,BB,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,241.0,179.0,0,Transient,65.19,1,0,Check-Out,Connor Browning,brandon61@example.net,219-436-1494x48617,4707603249400838,2025-08-11 +Resort Hotel,0,1,2017,May,19,6,2,10,2,0.0,0,BB,GBR,Direct,Direct,0,0,0,E,E,0,No Deposit,245.0,179.0,0,Transient,51.43,0,0,Check-Out,Ethan Fernandez DDS,teresa85@example.net,001-302-746-8870x99280,3536398178095860,2024-07-30 +City Hotel,0,395,2017,January,2,3,0,2,1,0.0,0,BB,,Offline TA/TO,TA/TO,0,0,0,A,A,2,No Deposit,23.0,179.0,0,Transient,80.64,0,0,Check-Out,Jeffery Cooper,jeffrey02@example.org,001-204-285-1711,30479841899867,2024-08-11 +Resort Hotel,0,19,2017,June,26,23,0,1,2,2.0,0,BB,PRT,Online TA,TA/TO,0,0,0,H,H,0,No Deposit,236.0,179.0,0,Transient,159.33,0,2,Check-Out,Patrick Franco,tricia66@example.net,(776)253-7039x356,30462578591360,2024-09-07 +Resort Hotel,0,11,2017,June,24,9,3,7,2,1.0,0,BB,BEL,Direct,Direct,0,0,0,E,E,0,No Deposit,249.0,179.0,0,Transient,136.42,0,1,Check-Out,Jill Brown,lgrimes@example.org,6738404615,4295632911783963,2025-11-30 +Resort Hotel,0,32,2017,June,23,3,2,10,2,0.0,0,BB,BEL,Direct,Direct,0,0,0,D,D,0,No Deposit,33.0,179.0,0,Transient,131.57,0,1,Check-Out,Bryan Santiago,nrivera@example.com,2279269394,501846853593,2024-05-12 +City Hotel,0,1,2017,October,41,12,0,1,1,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,117.63,0,1,Check-Out,Jessica Flowers MD,jane45@example.net,(921)909-2977x25930,4770765883917,2026-01-25 +City Hotel,1,9,2017,October,41,8,0,1,2,0.0,0,BB,,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,9.0,179.0,0,Contract,50.07,0,2,Canceled,Ethan Maddox,adamsronnie@example.com,001-523-872-0764,4047778630757332,2024-12-05 +City Hotel,1,141,2017,August,31,1,1,4,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,239.56,0,0,Canceled,Linda Morales,conwaynatasha@example.com,001-685-685-3430x43837,2288590321466640,2025-02-06 +City Hotel,0,1,2017,October,40,5,1,2,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,106.6,0,2,Check-Out,Stephanie Dixon,leslie60@example.com,(865)440-8416x317,30413459830922,2024-09-05 +City Hotel,0,414,2017,August,35,27,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,0,0,A,A,2,No Deposit,1.0,179.0,0,Transient-Party,61.83,0,0,Canceled,Richard Davis,andre84@example.org,5304405805,503801811996,2025-03-07 +City Hotel,0,1,2017,February,9,27,0,2,2,0.0,0,BB,PRT,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,63.7,1,1,Check-Out,Ana Martin,oconnormelinda@example.net,302.707.4933x6132,4124529436733970034,2025-03-11 +City Hotel,0,363,2017,November,47,18,1,3,2,0.0,0,BB,DEU,Groups,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient-Party,74.81,0,0,Check-Out,Miguel Mejia,lknight@example.com,574.714.0579x56390,38072940748176,2024-06-14 +City Hotel,0,52,2017,March,12,19,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,2,No Deposit,9.0,179.0,0,Transient,133.39,0,1,Check-Out,Melinda Johnson,monique61@example.com,5482655282,503810545676,2024-10-19 +Resort Hotel,1,182,2017,May,20,15,0,4,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,242.0,179.0,0,Transient,108.15,0,1,Canceled,Martin Nicholson,amandamckee@example.com,(967)281-7221,4671297564832543,2025-07-16 +Resort Hotel,1,29,2017,November,45,8,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,313.0,179.0,0,Transient-Party,74.28,0,0,Canceled,Stacie Walker,john90@example.org,577.640.9733x806,30282600740540,2026-02-17 +Resort Hotel,1,104,2017,May,22,30,2,3,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,0,Transient,126.4,0,2,Canceled,Stephanie Daniels,gvaldez@example.com,8986437818,30065306407831,2024-10-02 +Resort Hotel,0,0,2017,May,19,6,0,2,1,0.0,0,BB,,Aviation,Corporate,0,0,0,D,D,2,No Deposit,14.0,186.0,0,Transient,55.26,0,0,Check-Out,Diane Bowman,brian62@example.net,+1-520-853-4961x99538,4460067377385061,2024-09-29 +Resort Hotel,0,8,2017,October,40,3,0,2,2,2.0,0,BB,GBR,Online TA,TA/TO,0,0,0,G,G,0,No Deposit,243.0,179.0,0,Transient,230.51,1,0,Check-Out,Eric York,richard45@example.org,(598)788-2649x4025,3511064107305205,2024-04-02 +City Hotel,0,8,2017,June,26,28,0,3,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,7.0,179.0,0,Transient,140.85,0,1,Check-Out,Katrina Edwards,ncooper@example.org,(931)488-8182x81216,4050716581349939434,2025-05-06 +City Hotel,0,39,2017,July,27,5,2,2,2,2.0,0,BB,,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,205.86,0,1,Check-Out,Donna Boone,mbrown@example.net,001-979-333-5360x07536,213180635516886,2024-05-31 +City Hotel,0,3,2017,May,19,4,0,1,1,0.0,0,BB,CHE,Complementary,Direct,0,0,0,E,E,0,No Deposit,12.0,179.0,0,Transient,139.23,0,3,Check-Out,Philip Fuller,bsavage@example.org,971.753.3459x42987,36693731933362,2025-05-26 +City Hotel,1,162,2017,June,24,9,2,4,2,0.0,0,BB,CHE,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,10.0,179.0,0,Transient,140.03,0,2,Canceled,Cassidy Simpson,justincruz@example.org,306.805.9672x2239,4103294266950316315,2026-02-17 +City Hotel,1,146,2017,March,13,31,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,23.0,179.0,0,Transient,107.56,0,0,Canceled,Mckenzie Hamilton,smithmegan@example.org,+1-984-595-5196x5051,3505761657612934,2024-09-20 +Resort Hotel,1,25,2017,October,42,15,0,3,2,0.0,0,HB,IRL,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,273.0,179.0,0,Transient,42.94,0,0,Canceled,Paul Ortiz,griffinalicia@example.org,001-445-976-3834x742,3575828855134592,2025-02-20 +City Hotel,1,105,2017,October,41,12,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,63,Transient-Party,101.45,0,0,Canceled,Angela Montes,kathleentate@example.org,+1-457-889-6888x413,3567082010783220,2024-07-31 +Resort Hotel,1,112,2017,October,41,8,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,276.0,179.0,0,Transient,103.18,0,0,Canceled,Mrs. Leslie Anderson MD,xjones@example.net,529-671-2019x8118,6523988762312461,2025-06-18 +City Hotel,1,15,2017,July,29,19,2,2,3,1.0,0,BB,DEU,Online TA,TA/TO,0,0,0,D,G,0,No Deposit,9.0,179.0,0,Transient,139.16,0,3,Canceled,Scott Flynn,xsmith@example.com,001-294-340-2004x90985,6593563775343657,2024-04-08 +City Hotel,0,12,2017,November,46,14,0,2,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,11.0,179.0,0,Transient,111.87,0,2,Check-Out,Christina Harris,lwilliams@example.com,001-498-576-1389x33472,2286969177380521,2024-11-10 +City Hotel,0,132,2017,March,10,4,1,4,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,87.0,179.0,0,Transient,95.59,0,1,Check-Out,Tracey Hopkins,jamiehamilton@example.net,001-322-272-1110x775,6011269113131101,2024-05-08 +City Hotel,0,1,2017,December,49,5,0,3,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,12.0,72.0,0,Transient,111.24,0,1,Check-Out,Kelly Burke,sarahlee@example.com,629.617.6374,376875925913676,2024-11-14 +City Hotel,1,152,2017,June,26,27,2,5,2,2.0,0,BB,PRT,Online TA,Direct,0,0,0,F,F,0,No Deposit,9.0,179.0,0,Transient,210.66,0,0,Canceled,Dustin Duncan,lchase@example.com,546-760-9729,3588151146364489,2026-03-06 +City Hotel,0,58,2017,March,10,5,1,2,2,0.0,0,SC,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,8.0,179.0,0,Transient,114.48,0,1,Check-Out,Vincent Johnson,hicksshelby@example.net,(570)765-5665x159,30017406005072,2025-05-18 +Resort Hotel,0,161,2017,March,11,12,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,A,E,0,Refundable,14.0,223.0,0,Transient-Party,60.66,0,0,Check-Out,Robert Hall,erojas@example.org,927-532-2684,4553278402191899,2025-05-24 +City Hotel,1,245,2017,December,49,6,1,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,62.37,0,0,Canceled,Ashley Blevins,donald58@example.net,001-447-200-2718x95189,3505390483210315,2025-04-10 +Resort Hotel,0,236,2017,July,30,23,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,No Deposit,3.0,179.0,0,Transient-Party,63.91,1,0,Check-Out,John Barnett,gshaw@example.org,(242)844-8469x5401,2720912135578293,2025-10-02 +Resort Hotel,0,314,2017,August,34,19,0,1,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,1,No Deposit,316.0,179.0,0,Transient-Party,162.73,0,1,Check-Out,Timothy Bush,brian42@example.com,995-632-0492x205,3542128429994997,2024-09-10 +Resort Hotel,0,149,2017,July,27,1,4,10,2,1.0,0,BB,GBR,Online TA,TA/TO,0,0,0,E,E,1,No Deposit,243.0,179.0,0,Transient,162.44,0,3,Check-Out,Samantha Martin,fflores@example.net,855.588.9332,30344210281644,2025-06-04 +City Hotel,1,251,2017,January,3,16,1,4,2,0.0,0,BB,BRA,Online TA,TA/TO,0,0,0,A,B,1,No Deposit,10.0,179.0,0,Transient,86.37,0,1,Canceled,Angela Jackson,nlin@example.org,001-332-929-9034x452,4886732239965667,2024-11-23 +City Hotel,0,10,2017,December,52,24,1,3,2,0.0,0,BB,FRA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,65.25,0,1,Check-Out,Emily Leonard,jennasmith@example.net,644-583-7646x2327,344267473909745,2025-09-27 +City Hotel,0,99,2017,June,25,20,1,4,2,0.0,0,BB,DEU,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,25.0,179.0,0,Transient,118.32,0,2,Check-Out,Alyssa Wilson,wardjennifer@example.net,001-471-746-2545x74485,4879075104078,2025-04-22 +City Hotel,0,103,2017,August,35,30,1,2,2,0.0,0,BB,IRL,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,239.0,179.0,0,Transient,126.65,0,1,Check-Out,Christopher Mitchell,nicole38@example.com,414.874.6641,4699308297155835,2024-07-25 +City Hotel,0,359,2017,August,34,20,0,1,2,0.0,0,BB,PRT,Groups,Direct,1,1,0,A,B,0,No Deposit,11.0,179.0,0,Transient-Party,62.64,0,1,Check-Out,Mrs. Sue Jones DDS,jessicabartlett@example.com,+1-391-672-1810x187,501829592143,2025-02-22 +Resort Hotel,0,106,2017,December,51,16,2,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient,58.43,0,1,Check-Out,Christian Sullivan,diana95@example.net,608-494-9415x01627,501809558262,2025-06-18 +Resort Hotel,1,288,2017,September,38,20,1,5,2,0.0,0,BB,PRT,Online TA,TA/TO,0,0,0,F,F,0,No Deposit,243.0,179.0,0,Transient,124.55,0,3,Canceled,Daniel Perry,lori65@example.com,309-721-6449x79109,3505007540919783,2024-12-14 +City Hotel,0,52,2017,February,8,19,2,2,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,0,Non Refund,81.0,179.0,0,Transient,62.51,0,0,Canceled,Leon Moore,johnsonwanda@example.org,001-815-496-8827x79746,377686947049343,2026-01-04 +City Hotel,1,20,2017,August,35,31,1,2,2,1.0,0,SC,FRA,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,107.28,0,0,Canceled,Amanda Barnes MD,tiffany93@example.com,(425)344-3450x903,4860771008685369103,2025-07-17 +Resort Hotel,0,2,2017,August,35,31,1,1,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,D,1,No Deposit,13.0,331.0,0,Transient,43.85,0,1,Check-Out,Jason Day,matthewbrady@example.com,460-426-1238x91454,3585775258316219,2024-11-01 +Resort Hotel,0,102,2017,April,16,17,1,1,1,0.0,0,BB,PRT,Groups,Corporate,0,0,0,A,I,1,No Deposit,33.0,331.0,0,Transient-Party,42.43,0,0,Check-Out,Rachel Brown,jhawkins@example.com,7504126844,213106511354183,2024-07-15 +City Hotel,0,40,2017,August,34,18,2,5,2,0.0,0,SC,GBR,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,7.0,179.0,0,Contract,103.91,0,1,Check-Out,Wesley Gonzales,dillonkim@example.net,473.364.2669,30232897053156,2025-03-24 +City Hotel,0,19,2017,September,37,15,0,1,2,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,D,0,No Deposit,28.0,179.0,64,Transient-Party,65.38,0,0,Check-Out,Anthony Bullock,everettthomas@example.net,706.792.1342x825,377017527801426,2025-02-10 +City Hotel,0,156,2017,July,29,15,1,1,1,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,0,Transient,112.02,0,1,Check-Out,Tammy Bonilla,qmorse@example.com,001-834-784-4512x3175,38124661821268,2025-09-04 +City Hotel,0,70,2017,March,12,24,0,2,2,0.0,0,SC,BRA,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,76.08,0,1,Check-Out,Karen Maddox,matthew03@example.com,001-214-373-8507x60063,4115578496855,2024-10-30 +City Hotel,0,12,2017,September,37,12,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,9.0,179.0,0,Transient,93.05,0,1,Check-Out,Jordan Rice,maryvelasquez@example.net,+1-825-475-7669,3539453054354746,2024-04-28 +City Hotel,1,168,2017,July,31,27,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,136.77,0,0,Canceled,Victoria Rowe,ashleyjones@example.org,834-362-8069x5206,3589005132139983,2026-03-10 +Resort Hotel,0,138,2017,May,22,27,1,3,2,0.0,0,BB,ITA,Online TA,TA/TO,0,0,0,D,D,0,No Deposit,247.0,179.0,0,Transient,166.22,1,1,Check-Out,David Harris,fernandohernandez@example.com,001-516-695-9905,3595702659281923,2024-07-16 +City Hotel,0,2,2017,December,49,5,2,1,2,0.0,0,BB,PRT,Undefined,Undefined,0,0,0,B,B,0,No Deposit,14.0,179.0,0,Transient-Party,50.54,0,1,Check-Out,Brian Holland,jason59@example.net,001-461-561-3101x313,4091832698468445713,2025-08-13 +City Hotel,0,7,2017,March,13,23,2,0,2,0.0,0,SC,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,69.16,0,1,Check-Out,Michael Hutchinson,samuel19@example.net,+1-390-969-5334x363,6011740598355522,2025-09-29 +City Hotel,0,48,2017,October,42,16,1,5,2,0.0,0,HB,ITA,Groups,TA/TO,0,0,0,A,A,1,No Deposit,9.0,179.0,75,Transient-Party,75.21,0,0,Check-Out,Sarah Horton,ronald72@example.com,938.774.0439x57671,4233306474434463,2024-06-09 +City Hotel,0,275,2017,July,29,18,0,1,2,0.0,0,BB,ESP,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,62.24,1,0,Check-Out,Brian Brown,morrisondavid@example.org,(650)929-5129x57577,4764206136435468500,2025-11-09 +City Hotel,0,4,2017,July,30,27,2,1,1,0.0,0,BB,PRT,Direct,Direct,0,0,0,A,A,0,No Deposit,12.0,179.0,0,Transient,132.29,0,0,Check-Out,Sarah Payne,sara51@example.org,001-233-907-6198x4244,4799895951106985539,2025-01-12 +City Hotel,0,18,2017,August,32,5,0,4,1,0.0,0,BB,CN,Online TA,Direct,0,0,0,A,A,1,No Deposit,10.0,179.0,0,Transient,107.69,0,1,Check-Out,Katherine Murphy,jorge88@example.org,382-244-4470x191,30059884408113,2024-04-06 +City Hotel,1,409,2017,August,31,4,0,1,2,0.0,0,BB,PRT,Offline TA/TO,TA/TO,0,1,0,A,A,0,Non Refund,76.0,179.0,0,Transient,98.32,0,0,Canceled,Pam Ward,burnsbradley@example.org,316-449-7156x855,4665766667553717,2025-02-24 +Resort Hotel,0,4,2017,December,50,12,0,2,2,0.0,0,HB,PRT,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,239.0,179.0,0,Transient-Party,65.49,1,1,Check-Out,Barbara Mccoy,xmartinez@example.org,342-924-8834,502055798032,2025-04-12 +City Hotel,1,59,2017,August,35,31,0,2,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient-Party,250.28,0,2,No-Show,David Harris,sheppardmatthew@example.net,+1-911-757-1522x042,6575941029015853,2024-10-04 +Resort Hotel,0,10,2017,February,8,21,0,2,1,0.0,0,BB,NLD,Corporate,Corporate,0,0,0,A,A,1,No Deposit,15.0,84.0,0,Transient,48.27,0,0,Check-Out,Amy Wong,mhall@example.com,+1-529-956-8286x6810,4006695545916028,2025-10-12 +City Hotel,0,53,2017,September,38,21,2,7,2,0.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,135.0,179.0,0,Transient,94.15,0,0,Check-Out,Jackson Miller,josephweaver@example.com,541-621-4488,30008520990083,2024-12-12 +City Hotel,0,157,2017,March,13,27,2,2,1,0.0,0,BB,ESP,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,9.0,179.0,0,Transient,90.71,0,0,Check-Out,Victoria Rich,esparzamichele@example.org,+1-241-445-5250x600,3585720116023227,2025-08-28 +City Hotel,0,74,2017,January,3,19,0,4,2,0.0,0,BB,,Online TA,TA/TO,0,0,0,A,A,0,No Deposit,11.0,179.0,0,Transient,40.68,0,1,Check-Out,Alexandra Williams,nmoreno@example.com,677.712.3679x24049,6011833651723718,2025-09-04 +City Hotel,0,286,2017,August,31,3,2,5,2,1.0,0,HB,FRA,Online TA,TA/TO,0,0,0,D,C,0,No Deposit,9.0,179.0,0,Transient,224.29,0,3,Check-Out,Steven Mann,evan60@example.net,001-992-508-6586x21648,4510069087680626214,2025-04-28 +City Hotel,0,1,2017,March,11,12,0,1,1,0.0,0,BB,PRT,Corporate,Corporate,1,1,1,A,D,1,No Deposit,15.0,49.0,0,Transient,55.27,0,1,Check-Out,Kenneth Carter,keith88@example.net,(734)994-0593x955,4352694120347,2025-03-05 +Resort Hotel,1,13,2017,January,2,5,0,2,2,0.0,0,SC,PRT,Online TA,TA/TO,0,1,0,A,A,0,No Deposit,241.0,179.0,0,Transient-Party,46.21,0,2,Canceled,Gary Hamilton,jessicarobinson@example.org,786-514-4841x1407,30533650790664,2025-07-07 +City Hotel,0,46,2017,April,17,24,1,3,2,0.0,0,BB,ITA,Direct,Direct,0,0,0,D,D,0,No Deposit,13.0,179.0,0,Transient,138.53,0,1,Check-Out,Kevin Patrick,tammysoto@example.net,923.822.2233x015,4783175168574650,2025-11-15 +Resort Hotel,0,191,2017,March,13,24,2,5,2,0.0,0,HB,GBR,Offline TA/TO,TA/TO,0,0,0,A,A,0,No Deposit,192.0,179.0,0,Transient,49.27,0,0,Check-Out,Jeremy Smith,georgestephenson@example.org,824-663-9593x418,180076509868982,2024-06-30 +City Hotel,0,17,2017,July,27,8,0,1,3,1.0,0,BB,FRA,Direct,Direct,0,0,0,A,E,0,No Deposit,11.0,179.0,0,Transient,209.37,0,0,Check-Out,Jennifer Pineda,robertsonrobert@example.org,001-214-486-6860x882,4926248629475581,2025-09-12 +City Hotel,0,9,2017,October,41,9,0,2,1,0.0,0,BB,PRT,Corporate,Corporate,0,0,0,A,A,0,No Deposit,38.0,240.0,0,Transient-Party,111.55,0,0,Check-Out,William Henderson,taylorcarmen@example.net,+1-387-363-9477x9170,4902558449116944,2025-10-11 +City Hotel,0,164,2017,October,43,22,2,5,2,0.0,0,BB,USA,Offline TA/TO,TA/TO,0,0,0,D,D,0,No Deposit,12.0,179.0,0,Contract,63.08,0,2,Check-Out,Bradley Thomas,victoriadaniels@example.com,9257864725,060472377344,2025-09-21 +City Hotel,0,56,2017,June,23,5,0,3,1,0.0,0,SC,BEL,Online TA,GDS,0,0,0,A,A,0,No Deposit,167.0,179.0,0,Transient,128.35,0,0,Check-Out,Madeline Thompson,zlamb@example.net,001-316-937-8710,503838968256,2025-03-19 +Resort Hotel,0,215,2017,September,39,28,2,5,2,1.0,0,BB,GBR,Offline TA/TO,TA/TO,0,0,0,C,C,0,No Deposit,242.0,179.0,0,Transient,86.67,1,2,Check-Out,Vincent Lee,jonesgloria@example.com,9498829078,675980530298,2025-03-23 +Resort Hotel,0,80,2017,May,19,6,1,3,2,0.0,0,BB,GBR,Groups,Direct,0,0,0,D,D,2,Refundable,14.0,222.0,0,Transient-Party,61.13,0,0,Check-Out,Mrs. Stephanie Rodriguez,davidmartin@example.net,+1-945-619-8451,213149661697878,2024-09-27 +Resort Hotel,1,154,2017,December,52,23,2,2,2,0.0,0,Undefined,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,364.0500000000011,179.0,16,Transient-Party,84.84,0,0,Canceled,Denise Smith,melissa98@example.net,380-402-8326,675955709406,2024-04-08 +City Hotel,1,297,2017,June,23,4,0,2,2,0.0,0,BB,PRT,Groups,TA/TO,0,1,0,A,A,0,Non Refund,1.0,179.0,0,Contract,101.92,0,0,Canceled,Charles Jennings,wolfcourtney@example.net,342-922-6444x0132,180086064089510,2025-12-25 +City Hotel,1,20,2017,March,11,15,0,1,2,0.0,0,BB,DEU,Online TA,TA/TO,0,0,0,A,C,0,No Deposit,245.0,179.0,0,Transient,71.14,0,0,Check-Out,Sophia Mckee,austincurry@example.com,(410)251-3010,4022467495493356602,2024-08-04 +City Hotel,0,10,2017,December,52,23,0,1,2,1.0,0,BB,PRT,Direct,Direct,0,0,0,E,E,0,No Deposit,13.0,179.0,0,Transient,114.98,0,2,Check-Out,Vicki Bolton,sophiajohnson@example.net,598-646-7717,3509048060883260,2025-11-09 +City Hotel,1,158,2017,May,21,24,0,2,1,0.0,0,HB,PRT,Groups,TA/TO,0,0,0,A,A,0,Non Refund,32.0,179.0,0,Transient-Party,124.64,0,0,Canceled,James Martin,wangapril@example.com,393-480-6190x737,6518541389858478,2024-04-19 diff --git a/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/metadata.json b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/metadata.json new file mode 100644 index 00000000..34c481a7 --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/metadata.json @@ -0,0 +1,94 @@ +{ + "rows": 20000, + "columns": { + "count": 36, + "names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "booking_changes", + "deposit_type", + "agent", + "company", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "name", + "email", + "phone-number", + "credit_card", + "reservation_status_date" + ], + "dtypes": { + "hotel": "object", + "is_canceled": "int64", + "lead_time": "int64", + "arrival_date_year": "int64", + "arrival_date_month": "object", + "arrival_date_week_number": "int64", + "arrival_date_day_of_month": "int64", + "stays_in_weekend_nights": "int64", + "stays_in_week_nights": "int64", + "adults": "int64", + "children": "float64", + "babies": "int64", + "meal": "object", + "country": "object", + "market_segment": "object", + "distribution_channel": "object", + "is_repeated_guest": "int64", + "previous_cancellations": "int64", + "previous_bookings_not_canceled": "int64", + "reserved_room_type": "object", + "assigned_room_type": "object", + "booking_changes": "int64", + "deposit_type": "object", + "agent": "float64", + "company": "float64", + "days_in_waiting_list": "int64", + "customer_type": "object", + "adr": "float64", + "required_car_parking_spaces": "int64", + "total_of_special_requests": "int64", + "reservation_status": "object", + "name": "object", + "email": "object", + "phone-number": "object", + "credit_card": "int64", + "reservation_status_date": "object" + } + }, + "created_at": "2026-03-28T13:38:07.993576", + "created_by": "register_raw_snapshot.py", + "owner": "Sebastijan", + "data": { + "name": "hotel_bookings", + "version": "v1", + "format": "csv", + "path_suffix": "data.csv", + "hash": "a0bc63480c4749e598f4b26aa25f3448ad49c414c30b185bee8bc177eb2a072a" + }, + "memory_usage_mb": 21.911672592163086, + "raw_run_id": "2026-03-28T13-37-46_5f55cee6" +} \ No newline at end of file diff --git a/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/quality_report.json b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/quality_report.json new file mode 100644 index 00000000..bfafbaa9 --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/quality_report.json @@ -0,0 +1,5289 @@ +{ + "overall_score": 0.8853467008917617, + "properties": [ + { + "Property": "Column Shapes", + "Score": 0.9584661290562507 + }, + { + "Property": "Column Pair Trends", + "Score": 0.8122272727272726 + } + ], + "details": { + "Column Shapes": [ + { + "Column": "hotel", + "Metric": "TVComplement", + "Score": 0.9913 + }, + { + "Column": "is_canceled", + "Metric": "KSComplement", + "Score": 0.9979 + }, + { + "Column": "lead_time", + "Metric": "KSComplement", + "Score": 0.9911 + }, + { + "Column": "arrival_date_year", + "Metric": "TVComplement", + "Score": 0.3932000002 + }, + { + "Column": "arrival_date_month", + "Metric": "TVComplement", + "Score": 0.7818 + }, + { + "Column": "arrival_date_week_number", + "Metric": "KSComplement", + "Score": 0.8766 + }, + { + "Column": "arrival_date_day_of_month", + "Metric": "KSComplement", + "Score": 0.98095 + }, + { + "Column": "stays_in_weekend_nights", + "Metric": "TVComplement", + "Score": 0.9928 + }, + { + "Column": "stays_in_week_nights", + "Metric": "TVComplement", + "Score": 0.98105 + }, + { + "Column": "adults", + "Metric": "TVComplement", + "Score": 0.99725 + }, + { + "Column": "children", + "Metric": "KSComplement", + "Score": 0.9968499999999999 + }, + { + "Column": "babies", + "Metric": "KSComplement", + "Score": 0.9788 + }, + { + "Column": "meal", + "Metric": "TVComplement", + "Score": 0.99605 + }, + { + "Column": "country", + "Metric": "TVComplement", + "Score": 0.90345000006893 + }, + { + "Column": "market_segment", + "Metric": "TVComplement", + "Score": 0.9905499999999999 + }, + { + "Column": "distribution_channel", + "Metric": "TVComplement", + "Score": 0.9962500000000001 + }, + { + "Column": "is_repeated_guest", + "Metric": "KSComplement", + "Score": 0.9983000000000001 + }, + { + "Column": "previous_cancellations", + "Metric": "TVComplement", + "Score": 0.9995499999999999 + }, + { + "Column": "previous_bookings_not_canceled", + "Metric": "TVComplement", + "Score": 0.9987999999999999 + }, + { + "Column": "reserved_room_type", + "Metric": "TVComplement", + "Score": 0.99205 + }, + { + "Column": "assigned_room_type", + "Metric": "TVComplement", + "Score": 0.9885499999999999 + }, + { + "Column": "booking_changes", + "Metric": "TVComplement", + "Score": 0.9961 + }, + { + "Column": "deposit_type", + "Metric": "TVComplement", + "Score": 0.99825 + }, + { + "Column": "agent", + "Metric": "KSComplement", + "Score": 0.99055 + }, + { + "Column": "company", + "Metric": "KSComplement", + "Score": 0.98795 + }, + { + "Column": "days_in_waiting_list", + "Metric": "KSComplement", + "Score": 0.98965 + }, + { + "Column": "customer_type", + "Metric": "TVComplement", + "Score": 0.9897 + }, + { + "Column": "adr", + "Metric": "KSComplement", + "Score": 0.97705 + }, + { + "Column": "required_car_parking_spaces", + "Metric": "TVComplement", + "Score": 0.9851000003 + }, + { + "Column": "total_of_special_requests", + "Metric": "TVComplement", + "Score": 0.97675000017484 + }, + { + "Column": "reservation_status", + "Metric": "TVComplement", + "Score": 0.9982 + } + ], + "Column Pair Trends": [ + { + "Column 1": "hotel", + "Column 2": "is_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11843267227701605, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "lead_time", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13003661494521707, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "arrival_date_year", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "arrival_date_month", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1479581964887458, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "arrival_date_week_number", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11226930476117569, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "arrival_date_day_of_month", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06093376011452988, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "stays_in_weekend_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.23281086077275806, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "stays_in_week_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2963275415941121, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "adults", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07458639708861796, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "children", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1108712411566098, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "babies", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": 0.9885, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.3339241661005608, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.28469597029543514, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14167943609032776, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16656309347443177, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.013500635604747367, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04808980339522998, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.02258674409598582, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": 0.9853, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.3721104051589426, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": 0.9806, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.440757113244715, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.15438705280177897, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.18997963151456426, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": 0.75095, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.6405228260445733, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1359166661897735, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1005844341251422, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05962817423761726, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": 0.6398999999999999, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.36291457442386255, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.22818881311494407, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04161436515953227, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "hotel", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12250886123819463, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "lead_time", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.3140975132519231, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "arrival_date_year", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "arrival_date_month", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.17114377200946845, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "arrival_date_week_number", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.12065406775203158, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "arrival_date_day_of_month", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.018136768729995114, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "stays_in_weekend_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06551179433171568, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "stays_in_week_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12729059665379616, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "adults", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09291384638733825, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "children", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.038714055923805564, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "babies", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "is_canceled", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08909511720738275, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": 0.89805, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.33736795477826964, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.22069363198276748, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.20164220796758642, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "is_repeated_guest", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.08570508596465111, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.19460059279982153, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07147868895352111, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1382507059776934, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2221787298428274, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.17209712885392672, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": 0.9965, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.44248765715891103, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "agent", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.037573810661533064, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "company", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.03993945739847827, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "days_in_waiting_list", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.06457729481691749, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14383576829870545, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.0516303092325994, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.21688735088433994, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.24448488938356114, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_canceled", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": 0.99745, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.9487507634431988, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "arrival_date_year", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "arrival_date_month", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1151260877128475, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "arrival_date_week_number", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.1810640099211965, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "arrival_date_day_of_month", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.017327212363527092, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "stays_in_weekend_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10407529664842317, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "stays_in_week_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11391883723579085, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "adults", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1513761265145615, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "children", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.0655059461243864, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "babies", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "lead_time", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10336859044613399, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08797093203774223, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.17116887810539236, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12450672503490227, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "is_repeated_guest", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.1159688432437127, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2531198434075675, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10534472071233955, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0652708583516151, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07930948259924875, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.058913804172374844, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.29347940090321467, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "agent", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.04804070693633147, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "company", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.05045459764157387, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "days_in_waiting_list", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.09456770965718869, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12711687339235225, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.032509455032185525, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13228903200493075, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12676221059734397, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "lead_time", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2416814034160382, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "arrival_date_month", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "arrival_date_week_number", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "arrival_date_day_of_month", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "stays_in_weekend_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "stays_in_week_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "adults", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "children", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "babies", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_year", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "arrival_date_week_number", + "Metric": "ContingencySimilarity", + "Score": 0.61105, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.7793966976169981, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "arrival_date_day_of_month", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08919913028938739, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "stays_in_weekend_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13046179369882172, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "stays_in_week_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10445664555345816, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "adults", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1580994637223985, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "children", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.15540025089909465, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "babies", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12068015206691665, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09786873552997762, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12630904275456906, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13071094905777092, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.17267921527594596, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11475137847488368, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.19784059218024427, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1054006776497354, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08917450838604593, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08239108003300162, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.18199177976906747, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07876961099093026, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10169684493396146, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05945876120431497, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14077826518226358, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.18263762134569544, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10149553551257583, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09704724237651985, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_month", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13075048964188618, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "arrival_date_day_of_month", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.11276843927399108, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "stays_in_weekend_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11845548933875409, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "stays_in_week_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09158213558755891, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "adults", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1386669371690281, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "children", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.07285398235781035, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "babies", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09679972536860525, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08940033431322052, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10436632954712004, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11163326391648636, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "is_repeated_guest", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.10954424906829859, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1059860900523493, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1743630978263234, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08430054829856048, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07682099941481323, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07258164121032154, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14540301791376134, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "agent", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.022829345984939325, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "company", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.027617198507761783, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "days_in_waiting_list", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.02982714715517032, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12286440010483739, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.2748603374107225, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07047829178799991, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08692983540444811, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_week_number", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10560762241424157, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "stays_in_weekend_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04642943962189079, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "stays_in_week_nights", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05643177631242152, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "adults", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.046001260620518764, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "children", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.019810856177418946, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "babies", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04169279498655419, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.056586603557736426, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05775760547757701, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05963504737785303, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "is_repeated_guest", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.0019579138329583173, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.045327239481913806, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.03952112006364277, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04705336805195866, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04490783519669415, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04483729212261072, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1599969116663181, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "agent", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.03096109635247822, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "company", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.02391998647879443, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "days_in_waiting_list", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.022179850730958017, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.051532809994694416, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.022176139714187283, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05338711498829126, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04701836569605239, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "arrival_date_day_of_month", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05804074521600999, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "stays_in_week_nights", + "Metric": "ContingencySimilarity", + "Score": 0.9678, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.32389209590967327, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "adults", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13809370025948892, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "children", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08636405174658685, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "babies", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08736243409899294, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.15054402742855044, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1142573340719303, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0743751352549696, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0853542703946121, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07528109234818846, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06517677746981683, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.18513975173524555, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16739295917475933, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0380346246621492, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11010462341826774, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12174528740470945, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08799390629264907, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0397583862847466, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0741122931438, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09653104672208926, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.024372604781147486, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.054385346025975646, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_weekend_nights", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04854700752293214, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "adults", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1636600535392037, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "children", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08449153113592822, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "babies", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1338711685865332, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10631053488242626, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12843286269922422, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11139246515917205, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1293799570503885, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07667285635896863, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10019629630399936, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.125686154988991, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12281547847830772, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05325210520180841, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1729314088939548, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10475406736949412, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09518502783811755, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.03597556384948689, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08182028688187933, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10211989549021644, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.03879625586784018, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0743761745252325, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "stays_in_week_nights", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09873178891133069, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "children", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14511569046049097, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "babies", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08799432536909337, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1490477750202279, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": 0.98315, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.301058111486919, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.27334642732456116, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.18604540713774936, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04468193094203158, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16622350795538046, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": 0.9873500000000001, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.3293712770909298, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2984033156471642, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0635800369703013, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07364987442822689, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1092848402503945, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.26213026264488154, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05296976380183749, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07857759428551817, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.207353449387038, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.019320893522814422, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06121194531757311, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adults", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11373964902973814, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "babies", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "children", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.059565526947454664, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1102274503192512, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.21140025488378392, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12275693146921779, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "is_repeated_guest", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.044555399678604606, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08542943171307867, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0381477431228872, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": 0.98765, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.5160982461220046, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": 0.982, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.4603680500414764, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08600052762081362, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09220513518760606, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "agent", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.12202228519991298, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "company", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.003007578443217497, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "days_in_waiting_list", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.041662936610604204, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09468852465432967, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.394534970545907, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.15206468139818516, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11615090645309793, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "children", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.054833651448698804, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "meal", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "is_repeated_guest", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "babies", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "agent", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "babies", + "Column 2": "company", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "babies", + "Column 2": "days_in_waiting_list", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "babies", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": null, + "Error": "ConstantInputError: The real data in column 'babies' contains a constant value. Correlation is undefined for constant data." + }, + { + "Column 1": "babies", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "babies", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "country", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1542970019569698, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1954218725093602, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08580960711133546, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06079713122593813, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0642170267198714, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.062436572598575685, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14366612709766027, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16750314506452, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07264017953569762, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10418714842849873, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1648263433360764, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07538292704648702, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08157445300828095, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14982398945125855, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1031853327645133, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07853438307359807, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0735263586013524, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "meal", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07747076831569555, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "market_segment", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.15127816295294572, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1180412293982543, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1907274547065312, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.21395857424769113, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.18373175635057679, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1195001903663832, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11160475620630976, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07774188787935939, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2909875458701115, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09239044042893862, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09398699362646636, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08349890422583307, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11166571188438017, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10941496539100026, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11043595841350905, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1408585543694264, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "country", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.23882303060024432, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "distribution_channel", + "Metric": "ContingencySimilarity", + "Score": 0.98305, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.5882259176772059, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.27300664207972875, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.23626940675299538, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.23987319512558497, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2386291288681781, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.23260532758361185, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11127374168322617, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": 0.98915, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.3654472163214235, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.17677565493325811, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": 0.058149999999999924, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.3109055705414438, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07985989767411636, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.26685477185229983, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2642216709061702, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2023663973469074, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.25942113502226977, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "market_segment", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.17632978013818795, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "is_repeated_guest", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.22418751710979506, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.106839604803607, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.20210018156529097, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.22498239083435703, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.20435480526877656, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1390947585880589, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.15038267170278222, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2279417635057221, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": 0.06064999999999976, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.32197453944770316, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04629006205464905, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10315819104515736, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16281521521356818, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16322517299648326, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09787719385563502, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "distribution_channel", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14584173353096058, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "previous_cancellations", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12714489351731872, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": 0.997, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.5714022726958988, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06884863830967503, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16550761231577793, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08537365885199621, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.056607592572581224, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "agent", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.055890078921556896, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "company", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.16169653860690103, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "days_in_waiting_list", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.053025089294420874, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06831619469279944, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.14476650146609563, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06971090703491695, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08061751207756997, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "is_repeated_guest", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08838401269539782, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "previous_bookings_not_canceled", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08763293975298624, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12124975588289298, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12420757946728841, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07003043410479534, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.27382780387841926, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08521452426751368, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09909484817300118, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10059798416197249, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2406882492870359, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.17933587684280022, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.060992085345343734, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08314756485387013, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_cancellations", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.20747928069423474, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "reserved_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0589486261788531, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13080902370611433, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0794251131039006, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05314164598021671, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05787796528721104, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.23445165493602813, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10860163760555504, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08421188239810272, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16595697076061827, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0861592093002964, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0742022389943899, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "previous_bookings_not_canceled", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0703478430672716, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "assigned_room_type", + "Metric": "ContingencySimilarity", + "Score": 0.9769, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.6698055434271315, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08630899225896445, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16058085976094072, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14993429035202127, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.18867861883764814, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05660682227248619, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12219352222017227, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.21530487035963375, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2407303165481608, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.18170481461019294, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "reserved_room_type", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10132247634164733, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "booking_changes", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11082781955647975, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.19404410905808472, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.14287330995918465, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.19182051344632867, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05709013792092026, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11453883671535209, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2218759539670194, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2527679462539069, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1716433057977487, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "assigned_room_type", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16827758672975746, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "booking_changes", + "Column 2": "deposit_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1389424130308604, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "booking_changes", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06535127247827102, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "booking_changes", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08786195790979527, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "booking_changes", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.04726826737374739, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "booking_changes", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08840317855970789, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "booking_changes", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.07812616854550423, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "booking_changes", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1293458610440374, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "booking_changes", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.053043900181445836, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "booking_changes", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12628557587832948, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "deposit_type", + "Column 2": "agent", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13256460749551693, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "deposit_type", + "Column 2": "company", + "Metric": "ContingencySimilarity", + "Score": 0.05135000000000001, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.4218223070377454, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "deposit_type", + "Column 2": "days_in_waiting_list", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.18889898371863836, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "deposit_type", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.17182401495866176, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "deposit_type", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.16063001727430992, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "deposit_type", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11785346195265685, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "deposit_type", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.22368534983961041, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "deposit_type", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": 0.9965, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.3339704478049997, + "Meets Threshold?": true, + "Error": null + }, + { + "Column 1": "agent", + "Column 2": "company", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.03551503042728958, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "agent", + "Column 2": "days_in_waiting_list", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.04808853435478128, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "agent", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.12730904004104032, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "agent", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.03708980899311179, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "agent", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.20973516082667273, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "agent", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1384230574368874, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "agent", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.05769563070347992, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "company", + "Column 2": "days_in_waiting_list", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": 0.006722668565248447, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "company", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13857362844698676, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "company", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.006938617330228723, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "company", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.028528632583909436, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "company", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.09171416458200034, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "company", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08690659073755756, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "days_in_waiting_list", + "Column 2": "customer_type", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0700143134468054, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "days_in_waiting_list", + "Column 2": "adr", + "Metric": "CorrelationSimilarity", + "Score": null, + "Real Correlation": -0.045990811176930074, + "Synthetic Correlation": null, + "Real Association": null, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "days_in_waiting_list", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.06949678464034166, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "days_in_waiting_list", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.0827447519383837, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "days_in_waiting_list", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.095203237493249, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "customer_type", + "Column 2": "adr", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1542357934954179, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "customer_type", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.061745762929380735, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "customer_type", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11679745487271179, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "customer_type", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.10101886834186061, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adr", + "Column 2": "required_car_parking_spaces", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.13880202498743793, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adr", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11724544786756222, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "adr", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.08790865548746958, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "required_car_parking_spaces", + "Column 2": "total_of_special_requests", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.11114882782187044, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "required_car_parking_spaces", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.2175699909741234, + "Meets Threshold?": false, + "Error": null + }, + { + "Column 1": "total_of_special_requests", + "Column 2": "reservation_status", + "Metric": "ContingencySimilarity", + "Score": null, + "Real Correlation": null, + "Synthetic Correlation": null, + "Real Association": 0.1819129446498313, + "Meets Threshold?": false, + "Error": null + } + ] + } +} \ No newline at end of file diff --git a/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/register_raw_snapshot.log b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/register_raw_snapshot.log new file mode 100644 index 00000000..d58c719c --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/register_raw_snapshot.log @@ -0,0 +1 @@ +2026-03-28 13:38:08,022 - ml.io.persistence.save_metadata - INFO - Metadata successfully saved to data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/metadata.json. diff --git a/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/synthesizer_metadata.json b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/synthesizer_metadata.json new file mode 100644 index 00000000..1bd87446 --- /dev/null +++ b/data/raw/hotel_bookings/v1/2026-03-28T13-37-46_5f55cee6/synthesizer_metadata.json @@ -0,0 +1,103 @@ +{ + "tables": { + "synthetic_data": { + "columns": { + "hotel": { + "sdtype": "categorical" + }, + "is_canceled": { + "sdtype": "numerical" + }, + "lead_time": { + "sdtype": "numerical" + }, + "arrival_date_year": { + "sdtype": "categorical" + }, + "arrival_date_month": { + "sdtype": "categorical" + }, + "arrival_date_week_number": { + "sdtype": "numerical" + }, + "arrival_date_day_of_month": { + "sdtype": "numerical" + }, + "stays_in_weekend_nights": { + "sdtype": "categorical" + }, + "stays_in_week_nights": { + "sdtype": "categorical" + }, + "adults": { + "sdtype": "categorical" + }, + "children": { + "sdtype": "numerical" + }, + "babies": { + "sdtype": "numerical" + }, + "meal": { + "sdtype": "categorical" + }, + "country": { + "sdtype": "categorical" + }, + "market_segment": { + "sdtype": "categorical" + }, + "distribution_channel": { + "sdtype": "categorical" + }, + "is_repeated_guest": { + "sdtype": "numerical" + }, + "previous_cancellations": { + "sdtype": "categorical" + }, + "previous_bookings_not_canceled": { + "sdtype": "categorical" + }, + "reserved_room_type": { + "sdtype": "categorical" + }, + "assigned_room_type": { + "sdtype": "categorical" + }, + "booking_changes": { + "sdtype": "categorical" + }, + "deposit_type": { + "sdtype": "categorical" + }, + "agent": { + "sdtype": "numerical" + }, + "company": { + "sdtype": "numerical" + }, + "days_in_waiting_list": { + "sdtype": "numerical" + }, + "customer_type": { + "sdtype": "categorical" + }, + "adr": { + "sdtype": "numerical" + }, + "required_car_parking_spaces": { + "sdtype": "categorical" + }, + "total_of_special_requests": { + "sdtype": "categorical" + }, + "reservation_status": { + "sdtype": "categorical" + } + } + } + }, + "relationships": [], + "METADATA_SPEC_VERSION": "V1" +} \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index e53091a4..bd16a991 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: context: . tty: true stdin_open: true - # ===== GPU support ===== + # GPU support deploy: resources: reservations: @@ -19,6 +19,11 @@ services: - ./experiments:/app/experiments - ./failure_management:/app/failure_management - ./orchestration_logs:/app/orchestration_logs + - ./model_registry:/app/model_registry + - ./predictions:/app/predictions + - ./monitoring:/app/monitoring + - ./docs:/app/docs + - ./assets:/app/assets ports: - "8000:8000" - "8050:8050" diff --git a/docs/api/ml/ml.html b/docs/api/ml/ml.html index ea702848..d38e3336 100644 --- a/docs/api/ml/ml.html +++ b/docs/api/ml/ml.html @@ -37,6 +37,7 @@

Submodules

  • modeling
  • pipelines
  • policies
  • +
  • post_promotion
  • promotion
  • registries
  • runners
  • diff --git a/docs/api/ml/ml/cli/error_handling.html b/docs/api/ml/ml/cli/error_handling.html index 3e208114..549b3bd5 100644 --- a/docs/api/ml/ml/cli/error_handling.html +++ b/docs/api/ml/ml/cli/error_handling.html @@ -73,59 +73,66 @@

    9 EXIT_DATA_ERROR, 10 EXIT_EVALUATION_ERROR, 11 EXIT_EXPLAINABILITY_ERROR, -12 EXIT_PERSISTENCE_ERROR, -13 EXIT_PIPELINE_ERROR, -14 EXIT_SEARCH_ERROR, -15 EXIT_TRAINING_ERROR, -16 EXIT_UNEXPECTED_ERROR, -17) -18from ml.exceptions import ( -19 ConfigError, -20 DataError, -21 EvaluationError, -22 ExplainabilityError, -23 PersistenceError, -24 PipelineContractError, -25 RuntimeMLError, -26 SearchError, -27 TrainingError, -28 UserError, -29) -30 -31EXCEPTION_EXIT_CODE_MAP = { -32 ConfigError: EXIT_CONFIG_ERROR, -33 DataError: EXIT_DATA_ERROR, -34 PipelineContractError: EXIT_PIPELINE_ERROR, -35 SearchError: EXIT_SEARCH_ERROR, -36 TrainingError: EXIT_TRAINING_ERROR, -37 EvaluationError: EXIT_EVALUATION_ERROR, -38 ExplainabilityError: EXIT_EXPLAINABILITY_ERROR, -39 PersistenceError: EXIT_PERSISTENCE_ERROR, -40} -41 -42def resolve_exit_code(exc: Exception) -> int: -43 """Resolve a process exit code from an exception instance. -44 -45 Resolution order: -46 1. Exact/derived matches from ``EXCEPTION_EXIT_CODE_MAP``. -47 2. ``UserError`` fallback to configuration error exit code. -48 3. ``RuntimeMLError`` fallback to unexpected error exit code. -49 4. Default unexpected error exit code for all other exceptions. -50 -51 Args: -52 exc: Exception raised during CLI execution. -53 -54 Returns: -55 int: Exit code representing the error category. -56 """ -57 for exc_type, code in EXCEPTION_EXIT_CODE_MAP.items(): -58 if isinstance(exc, exc_type): -59 return code -60 if isinstance(exc, UserError): -61 return EXIT_CONFIG_ERROR -62 if isinstance(exc, RuntimeMLError): -63 return EXIT_UNEXPECTED_ERROR -64 return EXIT_UNEXPECTED_ERROR +12 EXIT_INFERENCE_ERROR, +13 EXIT_MONITORING_ERROR, +14 EXIT_PERSISTENCE_ERROR, +15 EXIT_PIPELINE_ERROR, +16 EXIT_SEARCH_ERROR, +17 EXIT_TRAINING_ERROR, +18 EXIT_UNEXPECTED_ERROR, +19) +20from ml.exceptions import ( +21 ConfigError, +22 DataError, +23 EvaluationError, +24 ExplainabilityError, +25 InferenceError, +26 MonitoringError, +27 PersistenceError, +28 PipelineContractError, +29 RuntimeMLError, +30 SearchError, +31 TrainingError, +32 UserError, +33) +34 +35EXCEPTION_EXIT_CODE_MAP = { +36 ConfigError: EXIT_CONFIG_ERROR, +37 DataError: EXIT_DATA_ERROR, +38 PipelineContractError: EXIT_PIPELINE_ERROR, +39 SearchError: EXIT_SEARCH_ERROR, +40 TrainingError: EXIT_TRAINING_ERROR, +41 EvaluationError: EXIT_EVALUATION_ERROR, +42 ExplainabilityError: EXIT_EXPLAINABILITY_ERROR, +43 PersistenceError: EXIT_PERSISTENCE_ERROR, +44 InferenceError: EXIT_INFERENCE_ERROR, +45 MonitoringError: EXIT_MONITORING_ERROR, +46 +47} +48 +49def resolve_exit_code(exc: Exception) -> int: +50 """Resolve a process exit code from an exception instance. +51 +52 Resolution order: +53 1. Exact/derived matches from ``EXCEPTION_EXIT_CODE_MAP``. +54 2. ``UserError`` fallback to configuration error exit code. +55 3. ``RuntimeMLError`` fallback to unexpected error exit code. +56 4. Default unexpected error exit code for all other exceptions. +57 +58 Args: +59 exc: Exception raised during CLI execution. +60 +61 Returns: +62 int: Exit code representing the error category. +63 """ +64 for exc_type, code in EXCEPTION_EXIT_CODE_MAP.items(): +65 if isinstance(exc, exc_type): +66 return code +67 if isinstance(exc, UserError): +68 return EXIT_CONFIG_ERROR +69 if isinstance(exc, RuntimeMLError): +70 return EXIT_UNEXPECTED_ERROR +71 return EXIT_UNEXPECTED_ERROR @@ -134,7 +141,7 @@

    EXCEPTION_EXIT_CODE_MAP = - {<class 'ml.exceptions.ConfigError'>: 2, <class 'ml.exceptions.DataError'>: 3, <class 'ml.exceptions.PipelineContractError'>: 4, <class 'ml.exceptions.SearchError'>: 5, <class 'ml.exceptions.TrainingError'>: 6, <class 'ml.exceptions.EvaluationError'>: 7, <class 'ml.exceptions.ExplainabilityError'>: 8, <class 'ml.exceptions.PersistenceError'>: 9} + {<class 'ml.exceptions.ConfigError'>: 2, <class 'ml.exceptions.DataError'>: 3, <class 'ml.exceptions.PipelineContractError'>: 4, <class 'ml.exceptions.SearchError'>: 5, <class 'ml.exceptions.TrainingError'>: 6, <class 'ml.exceptions.EvaluationError'>: 7, <class 'ml.exceptions.ExplainabilityError'>: 8, <class 'ml.exceptions.PersistenceError'>: 9, <class 'ml.exceptions.InferenceError'>: 10, <class 'ml.exceptions.MonitoringError'>: 11}
    @@ -154,29 +161,29 @@

    -
    43def resolve_exit_code(exc: Exception) -> int:
    -44    """Resolve a process exit code from an exception instance.
    -45
    -46    Resolution order:
    -47        1. Exact/derived matches from ``EXCEPTION_EXIT_CODE_MAP``.
    -48        2. ``UserError`` fallback to configuration error exit code.
    -49        3. ``RuntimeMLError`` fallback to unexpected error exit code.
    -50        4. Default unexpected error exit code for all other exceptions.
    -51
    -52    Args:
    -53        exc: Exception raised during CLI execution.
    -54
    -55    Returns:
    -56        int: Exit code representing the error category.
    -57    """
    -58    for exc_type, code in EXCEPTION_EXIT_CODE_MAP.items():
    -59        if isinstance(exc, exc_type):
    -60            return code
    -61    if isinstance(exc, UserError):
    -62        return EXIT_CONFIG_ERROR
    -63    if isinstance(exc, RuntimeMLError):
    -64        return EXIT_UNEXPECTED_ERROR
    -65    return EXIT_UNEXPECTED_ERROR
    +            
    50def resolve_exit_code(exc: Exception) -> int:
    +51    """Resolve a process exit code from an exception instance.
    +52
    +53    Resolution order:
    +54        1. Exact/derived matches from ``EXCEPTION_EXIT_CODE_MAP``.
    +55        2. ``UserError`` fallback to configuration error exit code.
    +56        3. ``RuntimeMLError`` fallback to unexpected error exit code.
    +57        4. Default unexpected error exit code for all other exceptions.
    +58
    +59    Args:
    +60        exc: Exception raised during CLI execution.
    +61
    +62    Returns:
    +63        int: Exit code representing the error category.
    +64    """
    +65    for exc_type, code in EXCEPTION_EXIT_CODE_MAP.items():
    +66        if isinstance(exc, exc_type):
    +67            return code
    +68    if isinstance(exc, UserError):
    +69        return EXIT_CONFIG_ERROR
    +70    if isinstance(exc, RuntimeMLError):
    +71        return EXIT_UNEXPECTED_ERROR
    +72    return EXIT_UNEXPECTED_ERROR
     
    diff --git a/docs/api/ml/ml/cli/exit_codes.html b/docs/api/ml/ml/cli/exit_codes.html index 8d835b74..481773ce 100644 --- a/docs/api/ml/ml/cli/exit_codes.html +++ b/docs/api/ml/ml/cli/exit_codes.html @@ -60,6 +60,12 @@

    API Documentation

  • EXIT_PERSISTENCE_ERROR
  • +
  • + EXIT_INFERENCE_ERROR +
  • +
  • + EXIT_MONITORING_ERROR +
  • @@ -102,6 +108,8 @@

    14EXIT_EVALUATION_ERROR = 7 15EXIT_EXPLAINABILITY_ERROR = 8 16EXIT_PERSISTENCE_ERROR = 9 +17EXIT_INFERENCE_ERROR = 10 +18EXIT_MONITORING_ERROR = 11

    @@ -225,6 +233,30 @@

    + +
    +
    + EXIT_INFERENCE_ERROR = +10 + + +
    + + + + +
    +
    +
    + EXIT_MONITORING_ERROR = +11 + + +
    + + + +
    + \ No newline at end of file diff --git a/docs/api/ml/ml/metadata/schemas/post_promotion/infer.html b/docs/api/ml/ml/metadata/schemas/post_promotion/infer.html new file mode 100644 index 00000000..c3866682 --- /dev/null +++ b/docs/api/ml/ml/metadata/schemas/post_promotion/infer.html @@ -0,0 +1,512 @@ + + + + + + + ml.metadata.schemas.post_promotion.infer API documentation + + + + + + + + + +
    +
    +

    +ml.metadata.schemas.post_promotion.infer

    + +

    Models for inference metadata.

    +
    + + + + + +
     1"""Models for inference metadata."""
    + 2from typing import Literal
    + 3
    + 4from pydantic import BaseModel
    + 5
    + 6from ml.modeling.models.feature_lineage import FeatureLineage
    + 7
    + 8
    + 9class InferenceMetadata(BaseModel):
    +10    problem_type: str
    +11    segment: str
    +12    model_version: str
    +13    model_stage: str
    +14    run_id: str
    +15    timestamp: str
    +16    columns: list[str]
    +17    snapshot_bindings_id: str
    +18    feature_lineage: list[FeatureLineage]
    +19    artifact_type: Literal["pipeline", "model"]
    +20    artifact_hash: str
    +21    inference_latency_seconds: float
    +
    + + +
    +
    + +
    + + class + InferenceMetadata(pydantic.main.BaseModel): + + + +
    + +
    10class InferenceMetadata(BaseModel):
    +11    problem_type: str
    +12    segment: str
    +13    model_version: str
    +14    model_stage: str
    +15    run_id: str
    +16    timestamp: str
    +17    columns: list[str]
    +18    snapshot_bindings_id: str
    +19    feature_lineage: list[FeatureLineage]
    +20    artifact_type: Literal["pipeline", "model"]
    +21    artifact_hash: str
    +22    inference_latency_seconds: float
    +
    + + +

    !!! abstract "Usage Documentation" + Models

    + +

    A base class for creating Pydantic models.

    + +

    Attributes: + __class_vars__: The names of the class variables defined on the model. + __private_attributes__: Metadata about the private attributes of the model. + __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    + +
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.
    +__pydantic_core_schema__: The core schema of the model.
    +__pydantic_custom_init__: Whether the model has a custom `__init__` function.
    +__pydantic_decorators__: Metadata containing the decorators defined on the model.
    +    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.
    +__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to
    +    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.
    +__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.
    +__pydantic_post_init__: The name of the post-init method for the model, if defined.
    +__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].
    +__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.
    +__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.
    +
    +__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.
    +__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.
    +
    +__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]
    +    is set to `'allow'`.
    +__pydantic_fields_set__: The names of fields explicitly set during instantiation.
    +__pydantic_private__: Values of private attributes set on the model instance.
    +
    +
    + + +
    +
    + problem_type: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + segment: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + model_version: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + model_stage: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + run_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + timestamp: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + columns: list[str] = +PydanticUndefined + + +
    + + + + +
    +
    +
    + snapshot_bindings_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + feature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage] = +PydanticUndefined + + +
    + + + + +
    +
    +
    + artifact_type: Literal['pipeline', 'model'] = +PydanticUndefined + + +
    + + + + +
    +
    +
    + artifact_hash: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + inference_latency_seconds: float = +PydanticUndefined + + +
    + + + + +
    +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/metadata/schemas/promotion/promote.html b/docs/api/ml/ml/metadata/schemas/promotion/promote.html index 8d8f1d63..b46c022f 100644 --- a/docs/api/ml/ml/metadata/schemas/promotion/promote.html +++ b/docs/api/ml/ml/metadata/schemas/promotion/promote.html @@ -212,7 +212,7 @@

    4from pydantic import BaseModel 5 6from ml.modeling.models.metrics import EvaluationMetricsHelper - 7from ml.promotion.config.models import PromotionThresholds + 7from ml.promotion.config.promotion_thresholds import PromotionThresholds 8 9 10class RunIdentity(BaseModel): @@ -841,7 +841,7 @@
    Inherited Members
    - promotion_thresholds: ml.promotion.config.models.PromotionThresholds = + promotion_thresholds: ml.promotion.config.promotion_thresholds.PromotionThresholds = PydanticUndefined diff --git a/docs/api/ml/ml/metadata/validation.html b/docs/api/ml/ml/metadata/validation.html index 90a71e55..4daa2c17 100644 --- a/docs/api/ml/ml/metadata/validation.html +++ b/docs/api/ml/ml/metadata/validation.html @@ -31,6 +31,7 @@

    Submodules

    • data
    • features
    • +
    • post_promotion
    • promotion
    • runners
    • search
    • diff --git a/docs/api/ml/ml/metadata/validation/post_promotion.html b/docs/api/ml/ml/metadata/validation/post_promotion.html new file mode 100644 index 00000000..4d056675 --- /dev/null +++ b/docs/api/ml/ml/metadata/validation/post_promotion.html @@ -0,0 +1,244 @@ + + + + + + + ml.metadata.validation.post_promotion API documentation + + + + + + + + + +
      +
      +

      +ml.metadata.validation.post_promotion

      + +

      A package for post-promotion metadata validation.

      +
      + + + + + +
      1"""A package for post-promotion metadata validation."""
      +
      + + +
      +
      + + \ No newline at end of file diff --git a/docs/api/ml/ml/metadata/validation/post_promotion/infer.html b/docs/api/ml/ml/metadata/validation/post_promotion/infer.html new file mode 100644 index 00000000..bc4d4754 --- /dev/null +++ b/docs/api/ml/ml/metadata/validation/post_promotion/infer.html @@ -0,0 +1,330 @@ + + + + + + + ml.metadata.validation.post_promotion.infer API documentation + + + + + + + + + +
      +
      +

      +ml.metadata.validation.post_promotion.infer

      + +

      A module for validating inference metadata in the inference pipeline.

      +
      + + + + + +
       1"""A module for validating inference metadata in the inference pipeline."""
      + 2import logging
      + 3
      + 4from ml.exceptions import RuntimeMLError
      + 5from ml.metadata.schemas.post_promotion.infer import InferenceMetadata
      + 6
      + 7logger = logging.getLogger(__name__)
      + 8
      + 9def validate_inference_metadata(metadata: dict) -> InferenceMetadata:
      +10    """
      +11    Validate the inference metadata against the InferenceMetadata schema.
      +12
      +13    Args:
      +14        metadata (dict): The metadata dictionary to validate.
      +15
      +16    Returns:
      +17        InferenceMetadata: The validated metadata object.
      +18    """
      +19    try:
      +20        validated_metadata = InferenceMetadata.model_validate(metadata)
      +21        logger.debug("Successfully validated inference metadata.")
      +22        return validated_metadata
      +23    except Exception as e:
      +24        msg = "Error validating inference metadata."
      +25        logger.exception(msg)
      +26        raise RuntimeMLError(msg) from e
      +
      + + +
      +
      +
      + logger = +<Logger ml.metadata.validation.post_promotion.infer (WARNING)> + + +
      + + + + +
      +
      + +
      + + def + validate_inference_metadata( metadata: dict) -> ml.metadata.schemas.post_promotion.infer.InferenceMetadata: + + + +
      + +
      10def validate_inference_metadata(metadata: dict) -> InferenceMetadata:
      +11    """
      +12    Validate the inference metadata against the InferenceMetadata schema.
      +13
      +14    Args:
      +15        metadata (dict): The metadata dictionary to validate.
      +16
      +17    Returns:
      +18        InferenceMetadata: The validated metadata object.
      +19    """
      +20    try:
      +21        validated_metadata = InferenceMetadata.model_validate(metadata)
      +22        logger.debug("Successfully validated inference metadata.")
      +23        return validated_metadata
      +24    except Exception as e:
      +25        msg = "Error validating inference metadata."
      +26        logger.exception(msg)
      +27        raise RuntimeMLError(msg) from e
      +
      + + +

      Validate the inference metadata against the InferenceMetadata schema.

      + +

      Args: + metadata (dict): The metadata dictionary to validate.

      + +

      Returns: + InferenceMetadata: The validated metadata object.

      +
      + + +
      +
      + + \ No newline at end of file diff --git a/docs/api/ml/ml/metadata/validation/promotion/promote.html b/docs/api/ml/ml/metadata/validation/promotion/promote.html index e3d7307c..9c1f4435 100644 --- a/docs/api/ml/ml/metadata/validation/promotion/promote.html +++ b/docs/api/ml/ml/metadata/validation/promotion/promote.html @@ -52,55 +52,58 @@

      API Documentation

      ml.metadata.validation.promotion.promote

      - +

      A module for validating promotion metadata against Pydantic models for staging and production.

      +
      + -
       1import logging
      - 2from typing import Literal
      - 3
      - 4from ml.exceptions import RuntimeMLError
      - 5from ml.metadata.schemas.promotion.promote import (
      - 6    ProductionPromotionMetadata,
      - 7    StagingPromotionMetadata,
      - 8)
      - 9from ml.promotion.constants.promotion_metadata_dict import PromotionMetadataDict
      -10
      -11logger = logging.getLogger(__name__)
      -12
      -13def validate_promotion_metadata(promotion_metadata_raw: PromotionMetadataDict, stage: Literal["production", "staging"]) -> ProductionPromotionMetadata | StagingPromotionMetadata:
      -14    """Validate raw promotion metadata against Pydantic models for staging and production.
      -15
      -16    Args:
      -17        promotion_metadata_raw: Raw promotion metadata dictionary to validate.
      -18        stage: The stage for which to validate the metadata.
      -19
      -20    Returns:
      -21        Validated promotion metadata as either ProductionPromotionMetadata or StagingPromotionMetadata.
      -22
      -23    Raises:
      -24        RuntimeMLError: If validation fails against both staging and production models.
      -25    """
      -26    validated_metadata: ProductionPromotionMetadata | StagingPromotionMetadata
      -27    if stage == "production":
      -28        try:
      -29            validated_metadata = ProductionPromotionMetadata.model_validate(promotion_metadata_raw)
      -30            logger.debug("Promotion metadata successfully validated against ProductionPromotionMetadata model.")
      -31            return validated_metadata
      -32        except Exception as e:
      -33            msg = "Failed to validate promotion metadata against ProductionPromotionMetadata model."
      -34            logger.exception(msg)
      -35            raise RuntimeMLError(msg) from e
      -36    elif stage == "staging":
      -37        try:
      -38            validated_metadata = StagingPromotionMetadata.model_validate(promotion_metadata_raw)
      -39            logger.debug("Promotion metadata successfully validated against StagingPromotionMetadata model.")
      -40            return validated_metadata
      -41        except Exception as e:
      -42            msg = "Failed to validate promotion metadata against StagingPromotionMetadata model."
      -43            logger.exception(msg)
      -44            raise RuntimeMLError(msg) from e
      +                        
       1"""A module for validating promotion metadata against Pydantic models for staging and production."""
      + 2import logging
      + 3from typing import Literal
      + 4
      + 5from ml.exceptions import RuntimeMLError
      + 6from ml.metadata.schemas.promotion.promote import (
      + 7    ProductionPromotionMetadata,
      + 8    StagingPromotionMetadata,
      + 9)
      +10from ml.promotion.constants.promotion_metadata_dict import PromotionMetadataDict
      +11
      +12logger = logging.getLogger(__name__)
      +13
      +14def validate_promotion_metadata(promotion_metadata_raw: PromotionMetadataDict, stage: Literal["production", "staging"]) -> ProductionPromotionMetadata | StagingPromotionMetadata:
      +15    """Validate raw promotion metadata against Pydantic models for staging and production.
      +16
      +17    Args:
      +18        promotion_metadata_raw: Raw promotion metadata dictionary to validate.
      +19        stage: The stage for which to validate the metadata.
      +20
      +21    Returns:
      +22        Validated promotion metadata as either ProductionPromotionMetadata or StagingPromotionMetadata.
      +23
      +24    Raises:
      +25        RuntimeMLError: If validation fails against both staging and production models.
      +26    """
      +27    validated_metadata: ProductionPromotionMetadata | StagingPromotionMetadata
      +28    if stage == "production":
      +29        try:
      +30            validated_metadata = ProductionPromotionMetadata.model_validate(promotion_metadata_raw)
      +31            logger.debug("Promotion metadata successfully validated against ProductionPromotionMetadata model.")
      +32            return validated_metadata
      +33        except Exception as e:
      +34            msg = "Failed to validate promotion metadata against ProductionPromotionMetadata model."
      +35            logger.exception(msg)
      +36            raise RuntimeMLError(msg) from e
      +37    elif stage == "staging":
      +38        try:
      +39            validated_metadata = StagingPromotionMetadata.model_validate(promotion_metadata_raw)
      +40            logger.debug("Promotion metadata successfully validated against StagingPromotionMetadata model.")
      +41            return validated_metadata
      +42        except Exception as e:
      +43            msg = "Failed to validate promotion metadata against StagingPromotionMetadata model."
      +44            logger.exception(msg)
      +45            raise RuntimeMLError(msg) from e
       
      @@ -128,38 +131,38 @@

      -
      14def validate_promotion_metadata(promotion_metadata_raw: PromotionMetadataDict, stage: Literal["production", "staging"]) -> ProductionPromotionMetadata | StagingPromotionMetadata:
      -15    """Validate raw promotion metadata against Pydantic models for staging and production.
      -16
      -17    Args:
      -18        promotion_metadata_raw: Raw promotion metadata dictionary to validate.
      -19        stage: The stage for which to validate the metadata.
      -20
      -21    Returns:
      -22        Validated promotion metadata as either ProductionPromotionMetadata or StagingPromotionMetadata.
      -23
      -24    Raises:
      -25        RuntimeMLError: If validation fails against both staging and production models.
      -26    """
      -27    validated_metadata: ProductionPromotionMetadata | StagingPromotionMetadata
      -28    if stage == "production":
      -29        try:
      -30            validated_metadata = ProductionPromotionMetadata.model_validate(promotion_metadata_raw)
      -31            logger.debug("Promotion metadata successfully validated against ProductionPromotionMetadata model.")
      -32            return validated_metadata
      -33        except Exception as e:
      -34            msg = "Failed to validate promotion metadata against ProductionPromotionMetadata model."
      -35            logger.exception(msg)
      -36            raise RuntimeMLError(msg) from e
      -37    elif stage == "staging":
      -38        try:
      -39            validated_metadata = StagingPromotionMetadata.model_validate(promotion_metadata_raw)
      -40            logger.debug("Promotion metadata successfully validated against StagingPromotionMetadata model.")
      -41            return validated_metadata
      -42        except Exception as e:
      -43            msg = "Failed to validate promotion metadata against StagingPromotionMetadata model."
      -44            logger.exception(msg)
      -45            raise RuntimeMLError(msg) from e
      +            
      15def validate_promotion_metadata(promotion_metadata_raw: PromotionMetadataDict, stage: Literal["production", "staging"]) -> ProductionPromotionMetadata | StagingPromotionMetadata:
      +16    """Validate raw promotion metadata against Pydantic models for staging and production.
      +17
      +18    Args:
      +19        promotion_metadata_raw: Raw promotion metadata dictionary to validate.
      +20        stage: The stage for which to validate the metadata.
      +21
      +22    Returns:
      +23        Validated promotion metadata as either ProductionPromotionMetadata or StagingPromotionMetadata.
      +24
      +25    Raises:
      +26        RuntimeMLError: If validation fails against both staging and production models.
      +27    """
      +28    validated_metadata: ProductionPromotionMetadata | StagingPromotionMetadata
      +29    if stage == "production":
      +30        try:
      +31            validated_metadata = ProductionPromotionMetadata.model_validate(promotion_metadata_raw)
      +32            logger.debug("Promotion metadata successfully validated against ProductionPromotionMetadata model.")
      +33            return validated_metadata
      +34        except Exception as e:
      +35            msg = "Failed to validate promotion metadata against ProductionPromotionMetadata model."
      +36            logger.exception(msg)
      +37            raise RuntimeMLError(msg) from e
      +38    elif stage == "staging":
      +39        try:
      +40            validated_metadata = StagingPromotionMetadata.model_validate(promotion_metadata_raw)
      +41            logger.debug("Promotion metadata successfully validated against StagingPromotionMetadata model.")
      +42            return validated_metadata
      +43        except Exception as e:
      +44            msg = "Failed to validate promotion metadata against StagingPromotionMetadata model."
      +45            logger.exception(msg)
      +46            raise RuntimeMLError(msg) from e
       
      diff --git a/docs/api/ml/ml/modeling/models/feature_lineage.html b/docs/api/ml/ml/modeling/models/feature_lineage.html index e9179ab4..38967e16 100644 --- a/docs/api/ml/ml/modeling/models/feature_lineage.html +++ b/docs/api/ml/ml/modeling/models/feature_lineage.html @@ -57,6 +57,12 @@

      API Documentation

    • feature_type
    • +
    • + file_name +
    • +
    • + data_format +
    @@ -95,6 +101,8 @@

    12 feature_schema_hash: str 13 operator_hash: str 14 feature_type: Literal["tabular", "time-series"] +15 file_name: str +16 data_format: str

    @@ -119,6 +127,8 @@

    13 feature_schema_hash: str 14 operator_hash: str 15 feature_type: Literal["tabular", "time-series"] +16 file_name: str +17 data_format: str

    @@ -251,6 +261,30 @@

    + +
    +
    + file_name: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + data_format: str = +PydanticUndefined + + +
    + + + +
    diff --git a/docs/api/ml/ml/pipelines/models.html b/docs/api/ml/ml/pipelines/models.html index b0594124..c3276d9c 100644 --- a/docs/api/ml/ml/pipelines/models.html +++ b/docs/api/ml/ml/pipelines/models.html @@ -162,7 +162,7 @@

    VALID_STEPS = -{'FeatureEngineer', 'FeatureSelector', 'SchemaValidator', 'FillCategoricalMissing', 'Model'} +{'SchemaValidator', 'FeatureSelector', 'FeatureEngineer', 'Model', 'FillCategoricalMissing'}
    diff --git a/docs/api/ml/ml/post_promotion.html b/docs/api/ml/ml/post_promotion.html new file mode 100644 index 00000000..68e25d57 --- /dev/null +++ b/docs/api/ml/ml/post_promotion.html @@ -0,0 +1,246 @@ + + + + + + + ml.post_promotion API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion

    + +

    A package for post-promotion domain logic, including inference and monitoring.

    +
    + + + + + +
    1"""A package for post-promotion domain logic, including inference and monitoring."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference.html b/docs/api/ml/ml/post_promotion/inference.html new file mode 100644 index 00000000..4588d932 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference.html @@ -0,0 +1,249 @@ + + + + + + + ml.post_promotion.inference API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference

    + +

    A package for inference-related code.

    +
    + + + + + +
    1"""A package for inference-related code."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/classes.html b/docs/api/ml/ml/post_promotion/inference/classes.html new file mode 100644 index 00000000..4028cd65 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/classes.html @@ -0,0 +1,245 @@ + + + + + + + ml.post_promotion.inference.classes API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.classes

    + +

    A package for classes in the inference pipeline.

    +
    + + + + + +
    1"""A package for classes in the inference pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/classes/function_returns.html b/docs/api/ml/ml/post_promotion/inference/classes/function_returns.html new file mode 100644 index 00000000..a765c514 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/classes/function_returns.html @@ -0,0 +1,424 @@ + + + + + + + ml.post_promotion.inference.classes.function_returns API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.classes.function_returns

    + +

    A module for defining function return types in the inference pipeline.

    +
    + + + + + +
     1"""A module for defining function return types in the inference pipeline."""
    + 2from dataclasses import dataclass
    + 3from pathlib import Path
    + 4from typing import Any, Literal
    + 5
    + 6
    + 7@dataclass
    + 8class ArtifactLoadingReturn:
    + 9    """Return type for the artifact loading function."""
    +10    artifact: Any
    +11    artifact_hash: str
    +12    artifact_type: Literal["pipeline", "model"]
    +13
    +14@dataclass
    +15class PredictionStoringReturn:
    +16    """Return type for the prediction storing function."""
    +17    file_path: Path
    +18    cols: list[str]
    +
    + + +
    +
    + +
    +
    @dataclass
    + + class + ArtifactLoadingReturn: + + + +
    + +
     8@dataclass
    + 9class ArtifactLoadingReturn:
    +10    """Return type for the artifact loading function."""
    +11    artifact: Any
    +12    artifact_hash: str
    +13    artifact_type: Literal["pipeline", "model"]
    +
    + + +

    Return type for the artifact loading function.

    +
    + + +
    +
    + + ArtifactLoadingReturn( artifact: Any, artifact_hash: str, artifact_type: Literal['pipeline', 'model']) + + +
    + + + + +
    +
    +
    + artifact: Any + + +
    + + + + +
    +
    +
    + artifact_hash: str + + +
    + + + + +
    +
    +
    + artifact_type: Literal['pipeline', 'model'] + + +
    + + + + +
    +
    +
    + +
    +
    @dataclass
    + + class + PredictionStoringReturn: + + + +
    + +
    15@dataclass
    +16class PredictionStoringReturn:
    +17    """Return type for the prediction storing function."""
    +18    file_path: Path
    +19    cols: list[str]
    +
    + + +

    Return type for the prediction storing function.

    +
    + + +
    +
    + + PredictionStoringReturn(file_path: pathlib.Path, cols: list[str]) + + +
    + + + + +
    +
    +
    + file_path: pathlib.Path + + +
    + + + + +
    +
    +
    + cols: list[str] + + +
    + + + + +
    +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/classes/predictions_schema.html b/docs/api/ml/ml/post_promotion/inference/classes/predictions_schema.html new file mode 100644 index 00000000..a1fb23a6 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/classes/predictions_schema.html @@ -0,0 +1,310 @@ + + + + + + + ml.post_promotion.inference.classes.predictions_schema API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.classes.predictions_schema

    + +

    A module for defining the schema of predictions in the inference pipeline.

    +
    + + + + + +
     1"""A module for defining the schema of predictions in the inference pipeline."""
    + 2
    + 3# Hardcoded, since these are not expected to change very often.
    + 4# If changes become common, consider a refactor to make these configurable.
    + 5# For now, simply update this file when changes are needed, and ensure that
    + 6# all components of the pipeline are updated accordingly.
    + 7SCHEMA_VERSION = "V1"
    + 8
    + 9BASE_EXPECTED_COLUMNS = [
    +10    "run_id",
    +11    "prediction_id",
    +12    "timestamp",
    +13    "model_stage",
    +14    "model_version",
    +15    "entity_id",
    +16    "input_hash",
    +17    "prediction",
    +18    "schema_version"
    +19]
    +20
    +21PROBA_PREFIX = "proba_"
    +
    + + +
    +
    +
    + SCHEMA_VERSION = +'V1' + + +
    + + + + +
    +
    +
    + BASE_EXPECTED_COLUMNS = + + ['run_id', 'prediction_id', 'timestamp', 'model_stage', 'model_version', 'entity_id', 'input_hash', 'prediction', 'schema_version'] + + +
    + + + + +
    +
    +
    + PROBA_PREFIX = +'proba_' + + +
    + + + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/execution.html b/docs/api/ml/ml/post_promotion/inference/execution.html new file mode 100644 index 00000000..5da341e4 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/execution.html @@ -0,0 +1,245 @@ + + + + + + + ml.post_promotion.inference.execution API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.execution

    + +

    A package for the execution code of the inference pipeline.

    +
    + + + + + +
    1"""A package for the execution code of the inference pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/execution/execute_inference.html b/docs/api/ml/ml/post_promotion/inference/execution/execute_inference.html new file mode 100644 index 00000000..23a08bb8 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/execution/execute_inference.html @@ -0,0 +1,478 @@ + + + + + + + ml.post_promotion.inference.execution.execute_inference API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.execution.execute_inference

    + + + + + + +
      1import argparse
    +  2import logging
    +  3import time
    +  4from datetime import datetime
    +  5from pathlib import Path
    +  6from typing import Literal
    +  7
    +  8from ml.io.persistence.save_metadata import save_metadata
    +  9from ml.metadata.validation.post_promotion.infer import validate_inference_metadata
    + 10from ml.post_promotion.inference.execution.predict import predict
    + 11from ml.post_promotion.inference.hashing.input_row import hash_input_row
    + 12from ml.post_promotion.inference.loading.artifact import load_and_validate_artifact
    + 13from ml.post_promotion.inference.persistence.prepare_metadata import prepare_metadata
    + 14from ml.post_promotion.inference.persistence.store_predictions import store_predictions
    + 15from ml.post_promotion.shared.loading.features import prepare_features
    + 16from ml.promotion.config.registry_entry import RegistryEntry
    + 17
    + 18logger = logging.getLogger(__name__)
    + 19
    + 20def execute_inference(
    + 21    *,
    + 22    args: argparse.Namespace,
    + 23    model_metadata: RegistryEntry,
    + 24    stage: Literal["production", "staging"],
    + 25    timestamp: datetime,
    + 26    path: Path,
    + 27    run_id: str
    + 28) -> None:
    + 29    """Run inference for a given model and store predictions with monitoring-ready outputs.
    + 30
    + 31    Args:
    + 32        args: Command-line arguments.
    + 33        model_metadata: Metadata for the model to run inference with.
    + 34        stage: "production" or "staging" - used for labeling predictions and monitoring.
    + 35        timestamp: Current timestamp for partitioning and metadata.
    + 36        path: Directory where predictions will be stored.
    + 37    """
    + 38
    + 39    logger.info(f"Running inference for stage={stage} with model version={model_metadata.model_version}...")
    + 40
    + 41    prepare_features_return = prepare_features(
    + 42        args=args,
    + 43        model_metadata=model_metadata,
    + 44        snapshot_bindings_id=args.snapshot_bindings_id
    + 45    )
    + 46
    + 47    features = prepare_features_return.features
    + 48    entity_key = prepare_features_return.entity_key
    + 49    feature_lineage = prepare_features_return.feature_lineage
    + 50
    + 51    artifact_loading_return = load_and_validate_artifact(model_metadata)
    + 52
    + 53    artifact = artifact_loading_return.artifact
    + 54    artifact_hash = artifact_loading_return.artifact_hash
    + 55    artifact_type = artifact_loading_return.artifact_type
    + 56
    + 57    features_for_prediction = features.drop(columns=[entity_key], errors="ignore")
    + 58    features_for_prediction = features_for_prediction.sort_index(axis=1)
    + 59
    + 60    input_hash = features_for_prediction.apply(hash_input_row, axis=1)
    + 61
    + 62    start_time = time.perf_counter()
    + 63
    + 64    preds, proba = predict(features_for_prediction, artifact)
    + 65
    + 66    end_time = time.perf_counter()
    + 67
    + 68    duration = end_time - start_time
    + 69
    + 70    logger.info(f"Inference completed in {duration:.4f} seconds. Storing predictions...")
    + 71
    + 72    prediction_return = store_predictions(
    + 73        features=features,
    + 74        entity_key=entity_key,
    + 75        run_id=run_id,
    + 76        timestamp=timestamp,
    + 77        path=path,
    + 78        predictions=preds,
    + 79        probabilities=proba,
    + 80        model_metadata=model_metadata,
    + 81        stage=stage,
    + 82        input_hash=input_hash
    + 83    )
    + 84
    + 85    cols = prediction_return.cols
    + 86
    + 87    metadata_raw = prepare_metadata(
    + 88        model_metadata=model_metadata,
    + 89        args=args,
    + 90        run_id=run_id,
    + 91        timestamp=timestamp,
    + 92        stage=stage,
    + 93        snapshot_bindings_id=args.snapshot_bindings_id,
    + 94        feature_lineage=feature_lineage,
    + 95        artifact_hash=artifact_hash,
    + 96        artifact_type=artifact_type,
    + 97        inference_latency_seconds=duration,
    + 98        cols=cols
    + 99    )
    +100
    +101    metadata = validate_inference_metadata(metadata_raw)
    +102
    +103    save_metadata(
    +104        metadata = metadata.model_dump(exclude_none=True),
    +105        target_dir=path
    +106    )
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.inference.execution.execute_inference (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + execute_inference( *, args: argparse.Namespace, model_metadata: ml.promotion.config.registry_entry.RegistryEntry, stage: Literal['production', 'staging'], timestamp: datetime.datetime, path: pathlib.Path, run_id: str) -> None: + + + +
    + +
     21def execute_inference(
    + 22    *,
    + 23    args: argparse.Namespace,
    + 24    model_metadata: RegistryEntry,
    + 25    stage: Literal["production", "staging"],
    + 26    timestamp: datetime,
    + 27    path: Path,
    + 28    run_id: str
    + 29) -> None:
    + 30    """Run inference for a given model and store predictions with monitoring-ready outputs.
    + 31
    + 32    Args:
    + 33        args: Command-line arguments.
    + 34        model_metadata: Metadata for the model to run inference with.
    + 35        stage: "production" or "staging" - used for labeling predictions and monitoring.
    + 36        timestamp: Current timestamp for partitioning and metadata.
    + 37        path: Directory where predictions will be stored.
    + 38    """
    + 39
    + 40    logger.info(f"Running inference for stage={stage} with model version={model_metadata.model_version}...")
    + 41
    + 42    prepare_features_return = prepare_features(
    + 43        args=args,
    + 44        model_metadata=model_metadata,
    + 45        snapshot_bindings_id=args.snapshot_bindings_id
    + 46    )
    + 47
    + 48    features = prepare_features_return.features
    + 49    entity_key = prepare_features_return.entity_key
    + 50    feature_lineage = prepare_features_return.feature_lineage
    + 51
    + 52    artifact_loading_return = load_and_validate_artifact(model_metadata)
    + 53
    + 54    artifact = artifact_loading_return.artifact
    + 55    artifact_hash = artifact_loading_return.artifact_hash
    + 56    artifact_type = artifact_loading_return.artifact_type
    + 57
    + 58    features_for_prediction = features.drop(columns=[entity_key], errors="ignore")
    + 59    features_for_prediction = features_for_prediction.sort_index(axis=1)
    + 60
    + 61    input_hash = features_for_prediction.apply(hash_input_row, axis=1)
    + 62
    + 63    start_time = time.perf_counter()
    + 64
    + 65    preds, proba = predict(features_for_prediction, artifact)
    + 66
    + 67    end_time = time.perf_counter()
    + 68
    + 69    duration = end_time - start_time
    + 70
    + 71    logger.info(f"Inference completed in {duration:.4f} seconds. Storing predictions...")
    + 72
    + 73    prediction_return = store_predictions(
    + 74        features=features,
    + 75        entity_key=entity_key,
    + 76        run_id=run_id,
    + 77        timestamp=timestamp,
    + 78        path=path,
    + 79        predictions=preds,
    + 80        probabilities=proba,
    + 81        model_metadata=model_metadata,
    + 82        stage=stage,
    + 83        input_hash=input_hash
    + 84    )
    + 85
    + 86    cols = prediction_return.cols
    + 87
    + 88    metadata_raw = prepare_metadata(
    + 89        model_metadata=model_metadata,
    + 90        args=args,
    + 91        run_id=run_id,
    + 92        timestamp=timestamp,
    + 93        stage=stage,
    + 94        snapshot_bindings_id=args.snapshot_bindings_id,
    + 95        feature_lineage=feature_lineage,
    + 96        artifact_hash=artifact_hash,
    + 97        artifact_type=artifact_type,
    + 98        inference_latency_seconds=duration,
    + 99        cols=cols
    +100    )
    +101
    +102    metadata = validate_inference_metadata(metadata_raw)
    +103
    +104    save_metadata(
    +105        metadata = metadata.model_dump(exclude_none=True),
    +106        target_dir=path
    +107    )
    +
    + + +

    Run inference for a given model and store predictions with monitoring-ready outputs.

    + +

    Args: + args: Command-line arguments. + model_metadata: Metadata for the model to run inference with. + stage: "production" or "staging" - used for labeling predictions and monitoring. + timestamp: Current timestamp for partitioning and metadata. + path: Directory where predictions will be stored.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/execution/predict.html b/docs/api/ml/ml/post_promotion/inference/execution/predict.html new file mode 100644 index 00000000..155ae857 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/execution/predict.html @@ -0,0 +1,343 @@ + + + + + + + ml.post_promotion.inference.execution.predict API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.execution.predict

    + +

    Module for prediction execution logic.

    +
    + + + + + +
     1"""Module for prediction execution logic."""
    + 2import logging
    + 3from typing import Any
    + 4
    + 5import pandas as pd
    + 6
    + 7from ml.exceptions import InferenceError
    + 8
    + 9logger = logging.getLogger(__name__)
    +10
    +11def predict(X: pd.DataFrame, artifact: Any) -> tuple[pd.Series, pd.DataFrame]:
    +12    """Generate predictions and probabilities using the provided artifact.
    +13
    +14    Args:
    +15        X: Input features for prediction.
    +16        artifact: The trained model artifact.
    +17
    +18    Returns:
    +19        A tuple containing the predictions and probabilities.
    +20    """
    +21    try:
    +22        preds = pd.Series(artifact.predict(X), index=X.index)
    +23
    +24        if hasattr(artifact, "predict_proba"):
    +25            proba = pd.DataFrame(artifact.predict_proba(X), index=X.index)
    +26        else:
    +27            proba = pd.DataFrame()
    +28    except Exception as e:
    +29        msg = "Error during prediction. "
    +30        logger.exception(msg)
    +31        raise InferenceError(msg) from e
    +32
    +33    return preds, proba
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.inference.execution.predict (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + predict( X: pandas.core.frame.DataFrame, artifact: Any) -> tuple[pandas.core.series.Series, pandas.core.frame.DataFrame]: + + + +
    + +
    12def predict(X: pd.DataFrame, artifact: Any) -> tuple[pd.Series, pd.DataFrame]:
    +13    """Generate predictions and probabilities using the provided artifact.
    +14
    +15    Args:
    +16        X: Input features for prediction.
    +17        artifact: The trained model artifact.
    +18
    +19    Returns:
    +20        A tuple containing the predictions and probabilities.
    +21    """
    +22    try:
    +23        preds = pd.Series(artifact.predict(X), index=X.index)
    +24
    +25        if hasattr(artifact, "predict_proba"):
    +26            proba = pd.DataFrame(artifact.predict_proba(X), index=X.index)
    +27        else:
    +28            proba = pd.DataFrame()
    +29    except Exception as e:
    +30        msg = "Error during prediction. "
    +31        logger.exception(msg)
    +32        raise InferenceError(msg) from e
    +33
    +34    return preds, proba
    +
    + + +

    Generate predictions and probabilities using the provided artifact.

    + +

    Args: + X: Input features for prediction. + artifact: The trained model artifact.

    + +

    Returns: + A tuple containing the predictions and probabilities.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/hashing.html b/docs/api/ml/ml/post_promotion/inference/hashing.html new file mode 100644 index 00000000..0d6543c1 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/hashing.html @@ -0,0 +1,244 @@ + + + + + + + ml.post_promotion.inference.hashing API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.hashing

    + +

    A package for hashing utilities in the inference pipeline.

    +
    + + + + + +
    1"""A package for hashing utilities in the inference pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/hashing/input_row.html b/docs/api/ml/ml/post_promotion/inference/hashing/input_row.html new file mode 100644 index 00000000..709cdd68 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/hashing/input_row.html @@ -0,0 +1,319 @@ + + + + + + + ml.post_promotion.inference.hashing.input_row API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.hashing.input_row

    + +

    A module for hashing input rows in the inference pipeline.

    +
    + + + + + +
     1"""A module for hashing input rows in the inference pipeline."""
    + 2import hashlib
    + 3
    + 4import pandas as pd
    + 5
    + 6
    + 7def hash_input_row(row: pd.Series) -> str:
    + 8    """Generate a stable hash for a given input row.
    + 9
    +10    Args:
    +11        row: A pandas Series representing a single input row.
    +12
    +13    Returns:
    +14        A hexadecimal string representing the hash of the input row."""
    +15    row = row.sort_index()
    +16
    +17    normalized = []
    +18    for v in row.values:
    +19        if pd.isna(v):
    +20            normalized.append("NULL")
    +21        elif isinstance(v, float):
    +22            normalized.append(f"{v:.10g}")  # stable float format
    +23        else:
    +24            normalized.append(str(v))
    +25
    +26    row_str = "|".join(normalized)
    +27    return hashlib.sha256(row_str.encode()).hexdigest()
    +
    + + +
    +
    + +
    + + def + hash_input_row(row: pandas.core.series.Series) -> str: + + + +
    + +
     8def hash_input_row(row: pd.Series) -> str:
    + 9    """Generate a stable hash for a given input row.
    +10
    +11    Args:
    +12        row: A pandas Series representing a single input row.
    +13
    +14    Returns:
    +15        A hexadecimal string representing the hash of the input row."""
    +16    row = row.sort_index()
    +17
    +18    normalized = []
    +19    for v in row.values:
    +20        if pd.isna(v):
    +21            normalized.append("NULL")
    +22        elif isinstance(v, float):
    +23            normalized.append(f"{v:.10g}")  # stable float format
    +24        else:
    +25            normalized.append(str(v))
    +26
    +27    row_str = "|".join(normalized)
    +28    return hashlib.sha256(row_str.encode()).hexdigest()
    +
    + + +

    Generate a stable hash for a given input row.

    + +

    Args: + row: A pandas Series representing a single input row.

    + +

    Returns: + A hexadecimal string representing the hash of the input row.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/loading.html b/docs/api/ml/ml/post_promotion/inference/loading.html new file mode 100644 index 00000000..2059da0b --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/loading.html @@ -0,0 +1,244 @@ + + + + + + + ml.post_promotion.inference.loading API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.loading

    + +

    A module for loading utilities for the inference pipeline.

    +
    + + + + + +
    1"""A module for loading utilities for the inference pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/loading/artifact.html b/docs/api/ml/ml/post_promotion/inference/loading/artifact.html new file mode 100644 index 00000000..83c2b0b1 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/loading/artifact.html @@ -0,0 +1,341 @@ + + + + + + + ml.post_promotion.inference.loading.artifact API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.loading.artifact

    + +

    A module for loading artifacts in the inference pipeline.

    +
    + + + + + +
     1"""A module for loading artifacts in the inference pipeline."""
    + 2from pathlib import Path
    + 3
    + 4from ml.exceptions import PipelineContractError
    + 5from ml.post_promotion.inference.classes.function_returns import ArtifactLoadingReturn
    + 6from ml.promotion.config.registry_entry import RegistryEntry
    + 7from ml.runners.shared.loading.pipeline import load_model_or_pipeline
    + 8from ml.utils.hashing.service import hash_artifact
    + 9
    +10
    +11def load_and_validate_artifact(model_metadata: RegistryEntry) -> ArtifactLoadingReturn:
    +12    """Load model or pipeline artifact based on provided metadata and validate its integrity.
    +13
    +14    Args:
    +15        model_metadata: Metadata containing artifact paths and expected hash.
    +16
    +17    Returns:
    +18        ArtifactLoadingReturn: The loaded and validated artifact.
    +19    """
    +20    pipeline_path = Path(model_metadata.artifacts.pipeline_path or "")
    +21    model_path = Path(model_metadata.artifacts.model_path)
    +22    expected_hash = model_metadata.artifacts.pipeline_hash
    +23
    +24    if pipeline_path.exists():
    +25        artifact = load_model_or_pipeline(pipeline_path, target_type="pipeline")
    +26        actual_hash = hash_artifact(pipeline_path)
    +27    elif model_path.exists():
    +28        artifact = load_model_or_pipeline(model_path, target_type="model")
    +29        actual_hash = hash_artifact(model_path)
    +30    else:
    +31        raise PipelineContractError("No valid artifact found.")
    +32
    +33    if actual_hash != expected_hash:
    +34        raise PipelineContractError(f"Hash mismatch! Expected {expected_hash}, got {actual_hash}")
    +35
    +36    return ArtifactLoadingReturn(
    +37        artifact=artifact,
    +38        artifact_hash=actual_hash,
    +39        artifact_type="pipeline" if pipeline_path.exists() else "model"
    +40    )
    +
    + + +
    +
    + +
    + + def + load_and_validate_artifact( model_metadata: ml.promotion.config.registry_entry.RegistryEntry) -> ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn: + + + +
    + +
    12def load_and_validate_artifact(model_metadata: RegistryEntry) -> ArtifactLoadingReturn:
    +13    """Load model or pipeline artifact based on provided metadata and validate its integrity.
    +14
    +15    Args:
    +16        model_metadata: Metadata containing artifact paths and expected hash.
    +17
    +18    Returns:
    +19        ArtifactLoadingReturn: The loaded and validated artifact.
    +20    """
    +21    pipeline_path = Path(model_metadata.artifacts.pipeline_path or "")
    +22    model_path = Path(model_metadata.artifacts.model_path)
    +23    expected_hash = model_metadata.artifacts.pipeline_hash
    +24
    +25    if pipeline_path.exists():
    +26        artifact = load_model_or_pipeline(pipeline_path, target_type="pipeline")
    +27        actual_hash = hash_artifact(pipeline_path)
    +28    elif model_path.exists():
    +29        artifact = load_model_or_pipeline(model_path, target_type="model")
    +30        actual_hash = hash_artifact(model_path)
    +31    else:
    +32        raise PipelineContractError("No valid artifact found.")
    +33
    +34    if actual_hash != expected_hash:
    +35        raise PipelineContractError(f"Hash mismatch! Expected {expected_hash}, got {actual_hash}")
    +36
    +37    return ArtifactLoadingReturn(
    +38        artifact=artifact,
    +39        artifact_hash=actual_hash,
    +40        artifact_type="pipeline" if pipeline_path.exists() else "model"
    +41    )
    +
    + + +

    Load model or pipeline artifact based on provided metadata and validate its integrity.

    + +

    Args: + model_metadata: Metadata containing artifact paths and expected hash.

    + +

    Returns: + ArtifactLoadingReturn: The loaded and validated artifact.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/persistence.html b/docs/api/ml/ml/post_promotion/inference/persistence.html new file mode 100644 index 00000000..ffaf092a --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/persistence.html @@ -0,0 +1,245 @@ + + + + + + + ml.post_promotion.inference.persistence API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.persistence

    + +

    A package for persistence-related logic in the inference pipeline.

    +
    + + + + + +
    1"""A package for persistence-related logic in the inference pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/persistence/prepare_metadata.html b/docs/api/ml/ml/post_promotion/inference/persistence/prepare_metadata.html new file mode 100644 index 00000000..e3b1a8b9 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/persistence/prepare_metadata.html @@ -0,0 +1,388 @@ + + + + + + + ml.post_promotion.inference.persistence.prepare_metadata API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.persistence.prepare_metadata

    + +

    A module for preparing metadata to be stored alongside predictions after inference execution.

    +
    + + + + + +
     1"""A module for preparing metadata to be stored alongside predictions after inference execution."""
    + 2import argparse
    + 3from datetime import datetime
    + 4from typing import Literal
    + 5
    + 6from ml.modeling.models.feature_lineage import FeatureLineage
    + 7from ml.promotion.config.registry_entry import RegistryEntry
    + 8
    + 9
    +10def prepare_metadata(
    +11    *,
    +12    model_metadata: RegistryEntry,
    +13    args: argparse.Namespace,
    +14    run_id: str,
    +15    timestamp: datetime,
    +16    stage: Literal["production", "staging"],
    +17    cols: list[str],
    +18    snapshot_bindings_id: str,
    +19    feature_lineage: list[FeatureLineage],
    +20    artifact_type: Literal["pipeline", "model"],
    +21    artifact_hash: str,
    +22    inference_latency_seconds: float
    +23) -> dict:
    +24    """Prepare metadata dictionary to be stored with predictions for monitoring and lineage.
    +25
    +26    Args:
    +27        model_metadata: Metadata for the model used in inference.
    +28        args: Command-line arguments.
    +29        run_id: Unique identifier for the inference run.
    +30        timestamp: Current timestamp for partitioning and metadata.
    +31        stage: "production" or "staging" - used for labeling predictions and monitoring.
    +32        cols: List of column names in the predictions.
    +33        snapshot_bindings_id: ID for the snapshot bindings.
    +34        feature_lineage: List of feature lineage objects.
    +35        artifact_type: Type of the artifact (pipeline or model).
    +36        artifact_hash: Hash of the artifact.
    +37        inference_latency_seconds: Latency of the inference process in seconds.
    +38
    +39    Returns:
    +40        Dictionary of metadata to be stored with predictions.
    +41    """
    +42
    +43    metadata = {
    +44        "problem_type": args.problem,
    +45        "segment": args.segment,
    +46        "model_version": model_metadata.model_version,
    +47        "model_stage": stage,
    +48        "run_id": run_id,
    +49        "timestamp": timestamp.isoformat(),
    +50        "columns": cols,
    +51        "snapshot_bindings_id": snapshot_bindings_id,
    +52        "feature_lineage": [f.model_dump() for f in feature_lineage],
    +53        "artifact_type": artifact_type,
    +54        "artifact_hash": artifact_hash,
    +55        "inference_latency_seconds": inference_latency_seconds
    +56
    +57    }
    +58    return metadata
    +
    + + +
    +
    + +
    + + def + prepare_metadata( *, model_metadata: ml.promotion.config.registry_entry.RegistryEntry, args: argparse.Namespace, run_id: str, timestamp: datetime.datetime, stage: Literal['production', 'staging'], cols: list[str], snapshot_bindings_id: str, feature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage], artifact_type: Literal['pipeline', 'model'], artifact_hash: str, inference_latency_seconds: float) -> dict: + + + +
    + +
    11def prepare_metadata(
    +12    *,
    +13    model_metadata: RegistryEntry,
    +14    args: argparse.Namespace,
    +15    run_id: str,
    +16    timestamp: datetime,
    +17    stage: Literal["production", "staging"],
    +18    cols: list[str],
    +19    snapshot_bindings_id: str,
    +20    feature_lineage: list[FeatureLineage],
    +21    artifact_type: Literal["pipeline", "model"],
    +22    artifact_hash: str,
    +23    inference_latency_seconds: float
    +24) -> dict:
    +25    """Prepare metadata dictionary to be stored with predictions for monitoring and lineage.
    +26
    +27    Args:
    +28        model_metadata: Metadata for the model used in inference.
    +29        args: Command-line arguments.
    +30        run_id: Unique identifier for the inference run.
    +31        timestamp: Current timestamp for partitioning and metadata.
    +32        stage: "production" or "staging" - used for labeling predictions and monitoring.
    +33        cols: List of column names in the predictions.
    +34        snapshot_bindings_id: ID for the snapshot bindings.
    +35        feature_lineage: List of feature lineage objects.
    +36        artifact_type: Type of the artifact (pipeline or model).
    +37        artifact_hash: Hash of the artifact.
    +38        inference_latency_seconds: Latency of the inference process in seconds.
    +39
    +40    Returns:
    +41        Dictionary of metadata to be stored with predictions.
    +42    """
    +43
    +44    metadata = {
    +45        "problem_type": args.problem,
    +46        "segment": args.segment,
    +47        "model_version": model_metadata.model_version,
    +48        "model_stage": stage,
    +49        "run_id": run_id,
    +50        "timestamp": timestamp.isoformat(),
    +51        "columns": cols,
    +52        "snapshot_bindings_id": snapshot_bindings_id,
    +53        "feature_lineage": [f.model_dump() for f in feature_lineage],
    +54        "artifact_type": artifact_type,
    +55        "artifact_hash": artifact_hash,
    +56        "inference_latency_seconds": inference_latency_seconds
    +57
    +58    }
    +59    return metadata
    +
    + + +

    Prepare metadata dictionary to be stored with predictions for monitoring and lineage.

    + +

    Args: + model_metadata: Metadata for the model used in inference. + args: Command-line arguments. + run_id: Unique identifier for the inference run. + timestamp: Current timestamp for partitioning and metadata. + stage: "production" or "staging" - used for labeling predictions and monitoring. + cols: List of column names in the predictions. + snapshot_bindings_id: ID for the snapshot bindings. + feature_lineage: List of feature lineage objects. + artifact_type: Type of the artifact (pipeline or model). + artifact_hash: Hash of the artifact. + inference_latency_seconds: Latency of the inference process in seconds.

    + +

    Returns: + Dictionary of metadata to be stored with predictions.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/persistence/store_predictions.html b/docs/api/ml/ml/post_promotion/inference/persistence/store_predictions.html new file mode 100644 index 00000000..295bc04d --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/persistence/store_predictions.html @@ -0,0 +1,472 @@ + + + + + + + ml.post_promotion.inference.persistence.store_predictions API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.persistence.store_predictions

    + +

    A module for storing predictions and related metadata after inference execution in the post-promotion pipeline.

    +
    + + + + + +
     1"""A module for storing predictions and related metadata after inference execution in the post-promotion pipeline."""
    + 2import logging
    + 3from datetime import datetime
    + 4from pathlib import Path
    + 5from typing import Literal
    + 6from uuid import uuid4
    + 7
    + 8import pandas as pd
    + 9import pyarrow as pa
    +10import pyarrow.parquet as pq
    +11
    +12from ml.exceptions import PipelineContractError
    +13from ml.post_promotion.inference.classes.function_returns import PredictionStoringReturn
    +14from ml.post_promotion.inference.classes.predictions_schema import SCHEMA_VERSION
    +15from ml.post_promotion.inference.validation.validate_columns import validate_columns
    +16from ml.promotion.config.registry_entry import RegistryEntry
    +17
    +18logger = logging.getLogger(__name__)
    +19
    +20def store_predictions(
    +21    *,
    +22    features: pd.DataFrame,
    +23    entity_key: str,
    +24    run_id: str,
    +25    input_hash: pd.Series,
    +26    path: Path,
    +27    timestamp: datetime,
    +28    predictions: pd.Series,
    +29    probabilities: pd.DataFrame,
    +30    model_metadata: RegistryEntry,
    +31    stage: Literal["production", "staging"]
    +32) -> PredictionStoringReturn:
    +33    """Store predictions along with metadata and hashes for monitoring purposes.
    +34
    +35    Args:
    +36        features: Input features used for prediction, required for entity key and monitoring.
    +37        entity_key: Column name in features that serves as the entity identifier for monitoring joins.
    +38        run_id: Unique identifier for the inference run.
    +39        input_hash: Hashes of input rows for monitoring data drift and alignment.
    +40        path: Directory where predictions will be stored.
    +41        timestamp: Current timestamp for partitioning and metadata.
    +42        predictions: Series of prediction results.
    +43        probabilities: DataFrame of prediction probabilities.
    +44        model_metadata: Metadata for the model used for prediction.
    +45        stage: "production" or "staging" - used for labeling predictions and monitoring.
    +46
    +47    Returns:
    +48        PredictionStoringReturn: The result of the prediction storing operation.
    +49    """
    +50    path.mkdir(parents=True, exist_ok=True)
    +51
    +52    file_path = path / "predictions.parquet"
    +53
    +54    # Build schema-safe DataFrame
    +55    df = pd.DataFrame()
    +56
    +57    # --- identifiers ---
    +58    df["run_id"] = run_id
    +59    df["timestamp"] = timestamp.isoformat()
    +60    df["prediction_id"] = [uuid4().hex for _ in range(len(features))]
    +61
    +62    # --- model metadata ---
    +63    df["model_stage"] = stage
    +64    df["model_version"] = model_metadata.model_version
    +65
    +66    # --- entity key (assumes exists) ---
    +67    if entity_key not in features.columns:
    +68        msg = f"Entity key '{entity_key}' not found in features. Cannot store predictions without entity identifier for monitoring joins."
    +69        logger.error(msg)
    +70        raise PipelineContractError(msg)
    +71    df["entity_id"] = features[entity_key]
    +72
    +73    # --- hash for alignment ---
    +74    df["input_hash"] = input_hash
    +75
    +76    # --- predictions ---
    +77    df["prediction"] = predictions.values
    +78
    +79    if not probabilities.empty:
    +80        for i, col in enumerate(probabilities.columns):
    +81            df[f"proba_{i}"] = probabilities[col].astype(float)
    +82
    +83    df["schema_version"] = SCHEMA_VERSION
    +84
    +85    cols = validate_columns(df)
    +86
    +87    tmp_path = file_path.with_suffix(".tmp")
    +88    pq.write_table(pa.Table.from_pandas(df), tmp_path)
    +89    tmp_path.rename(file_path)
    +90
    +91    msg = f"Predictions successfully stored at {file_path} with columns: {cols}"
    +92    logger.info(msg)
    +93    print(msg)
    +94
    +95    return PredictionStoringReturn(
    +96        file_path=file_path,
    +97        cols = cols
    +98    )
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.inference.persistence.store_predictions (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + store_predictions( *, features: pandas.core.frame.DataFrame, entity_key: str, run_id: str, input_hash: pandas.core.series.Series, path: pathlib.Path, timestamp: datetime.datetime, predictions: pandas.core.series.Series, probabilities: pandas.core.frame.DataFrame, model_metadata: ml.promotion.config.registry_entry.RegistryEntry, stage: Literal['production', 'staging']) -> ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn: + + + +
    + +
    21def store_predictions(
    +22    *,
    +23    features: pd.DataFrame,
    +24    entity_key: str,
    +25    run_id: str,
    +26    input_hash: pd.Series,
    +27    path: Path,
    +28    timestamp: datetime,
    +29    predictions: pd.Series,
    +30    probabilities: pd.DataFrame,
    +31    model_metadata: RegistryEntry,
    +32    stage: Literal["production", "staging"]
    +33) -> PredictionStoringReturn:
    +34    """Store predictions along with metadata and hashes for monitoring purposes.
    +35
    +36    Args:
    +37        features: Input features used for prediction, required for entity key and monitoring.
    +38        entity_key: Column name in features that serves as the entity identifier for monitoring joins.
    +39        run_id: Unique identifier for the inference run.
    +40        input_hash: Hashes of input rows for monitoring data drift and alignment.
    +41        path: Directory where predictions will be stored.
    +42        timestamp: Current timestamp for partitioning and metadata.
    +43        predictions: Series of prediction results.
    +44        probabilities: DataFrame of prediction probabilities.
    +45        model_metadata: Metadata for the model used for prediction.
    +46        stage: "production" or "staging" - used for labeling predictions and monitoring.
    +47
    +48    Returns:
    +49        PredictionStoringReturn: The result of the prediction storing operation.
    +50    """
    +51    path.mkdir(parents=True, exist_ok=True)
    +52
    +53    file_path = path / "predictions.parquet"
    +54
    +55    # Build schema-safe DataFrame
    +56    df = pd.DataFrame()
    +57
    +58    # --- identifiers ---
    +59    df["run_id"] = run_id
    +60    df["timestamp"] = timestamp.isoformat()
    +61    df["prediction_id"] = [uuid4().hex for _ in range(len(features))]
    +62
    +63    # --- model metadata ---
    +64    df["model_stage"] = stage
    +65    df["model_version"] = model_metadata.model_version
    +66
    +67    # --- entity key (assumes exists) ---
    +68    if entity_key not in features.columns:
    +69        msg = f"Entity key '{entity_key}' not found in features. Cannot store predictions without entity identifier for monitoring joins."
    +70        logger.error(msg)
    +71        raise PipelineContractError(msg)
    +72    df["entity_id"] = features[entity_key]
    +73
    +74    # --- hash for alignment ---
    +75    df["input_hash"] = input_hash
    +76
    +77    # --- predictions ---
    +78    df["prediction"] = predictions.values
    +79
    +80    if not probabilities.empty:
    +81        for i, col in enumerate(probabilities.columns):
    +82            df[f"proba_{i}"] = probabilities[col].astype(float)
    +83
    +84    df["schema_version"] = SCHEMA_VERSION
    +85
    +86    cols = validate_columns(df)
    +87
    +88    tmp_path = file_path.with_suffix(".tmp")
    +89    pq.write_table(pa.Table.from_pandas(df), tmp_path)
    +90    tmp_path.rename(file_path)
    +91
    +92    msg = f"Predictions successfully stored at {file_path} with columns: {cols}"
    +93    logger.info(msg)
    +94    print(msg)
    +95
    +96    return PredictionStoringReturn(
    +97        file_path=file_path,
    +98        cols = cols
    +99    )
    +
    + + +

    Store predictions along with metadata and hashes for monitoring purposes.

    + +

    Args: + features: Input features used for prediction, required for entity key and monitoring. + entity_key: Column name in features that serves as the entity identifier for monitoring joins. + run_id: Unique identifier for the inference run. + input_hash: Hashes of input rows for monitoring data drift and alignment. + path: Directory where predictions will be stored. + timestamp: Current timestamp for partitioning and metadata. + predictions: Series of prediction results. + probabilities: DataFrame of prediction probabilities. + model_metadata: Metadata for the model used for prediction. + stage: "production" or "staging" - used for labeling predictions and monitoring.

    + +

    Returns: + PredictionStoringReturn: The result of the prediction storing operation.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/validation.html b/docs/api/ml/ml/post_promotion/inference/validation.html new file mode 100644 index 00000000..e79c8ba2 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/validation.html @@ -0,0 +1,244 @@ + + + + + + + ml.post_promotion.inference.validation API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.validation

    + +

    A package for validation utilities of the inference pipeline.

    +
    + + + + + +
    1"""A package for validation utilities of the inference pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/inference/validation/validate_columns.html b/docs/api/ml/ml/post_promotion/inference/validation/validate_columns.html new file mode 100644 index 00000000..7d2efdd0 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/inference/validation/validate_columns.html @@ -0,0 +1,305 @@ + + + + + + + ml.post_promotion.inference.validation.validate_columns API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.inference.validation.validate_columns

    + + + + + + +
     1import pandas as pd
    + 2
    + 3from ml.post_promotion.inference.classes.predictions_schema import (
    + 4    BASE_EXPECTED_COLUMNS,
    + 5    PROBA_PREFIX,
    + 6)
    + 7
    + 8
    + 9def validate_columns(df: pd.DataFrame) -> list[str]:
    +10    cols = set(df.columns)
    +11
    +12    # Check required base columns
    +13    missing = set(BASE_EXPECTED_COLUMNS) - cols
    +14    if missing:
    +15        raise ValueError(f"Missing required columns: {missing}")
    +16
    +17    # Check probability columns (optional but must follow pattern)
    +18    proba_cols = [c for c in cols if c.startswith(PROBA_PREFIX)]
    +19
    +20    if proba_cols:
    +21        # Ensure consistent indexing (proba_0, proba_1, ...)
    +22        expected = {f"{PROBA_PREFIX}{i}" for i in range(len(proba_cols))}
    +23        if set(proba_cols) != expected:
    +24            raise ValueError(f"Probability columns malformed: {proba_cols}")
    +25
    +26    return list(cols)
    +
    + + +
    +
    + +
    + + def + validate_columns(df: pandas.core.frame.DataFrame) -> list[str]: + + + +
    + +
    10def validate_columns(df: pd.DataFrame) -> list[str]:
    +11    cols = set(df.columns)
    +12
    +13    # Check required base columns
    +14    missing = set(BASE_EXPECTED_COLUMNS) - cols
    +15    if missing:
    +16        raise ValueError(f"Missing required columns: {missing}")
    +17
    +18    # Check probability columns (optional but must follow pattern)
    +19    proba_cols = [c for c in cols if c.startswith(PROBA_PREFIX)]
    +20
    +21    if proba_cols:
    +22        # Ensure consistent indexing (proba_0, proba_1, ...)
    +23        expected = {f"{PROBA_PREFIX}{i}" for i in range(len(proba_cols))}
    +24        if set(proba_cols) != expected:
    +25            raise ValueError(f"Probability columns malformed: {proba_cols}")
    +26
    +27    return list(cols)
    +
    + + + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring.html b/docs/api/ml/ml/post_promotion/monitoring.html new file mode 100644 index 00000000..249bfb06 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring.html @@ -0,0 +1,250 @@ + + + + + + + ml.post_promotion.monitoring API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring

    + +

    A package for monitoring-related code.

    +
    + + + + + +
    1"""A package for monitoring-related code."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/classes.html b/docs/api/ml/ml/post_promotion/monitoring/classes.html new file mode 100644 index 00000000..fa32bc26 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/classes.html @@ -0,0 +1,244 @@ + + + + + + + ml.post_promotion.monitoring.classes API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.classes

    + +

    A package for classes in the monitoring pipeline.

    +
    + + + + + +
    1"""A package for classes in the monitoring pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/classes/function_returns.html b/docs/api/ml/ml/post_promotion/monitoring/classes/function_returns.html new file mode 100644 index 00000000..f25b9022 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/classes/function_returns.html @@ -0,0 +1,427 @@ + + + + + + + ml.post_promotion.monitoring.classes.function_returns API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.classes.function_returns

    + +

    A module for defining function return types in the monitoring pipeline.

    +
    + + + + + +
     1"""A module for defining function return types in the monitoring pipeline."""
    + 2from dataclasses import dataclass
    + 3from typing import Any
    + 4
    + 5import pandas as pd
    + 6
    + 7from ml.promotion.config.promotion_thresholds import MetricName
    + 8
    + 9
    +10@dataclass
    +11class InferenceFeaturesAndTarget:
    +12    """Data class to hold inference features and target for monitoring."""
    +13    features: pd.DataFrame
    +14    target: pd.Series
    +15
    +16@dataclass
    +17class MonitoringExecutionOutput:
    +18    """Data class to hold the output of a monitoring execution."""
    +19    drift_results: dict[str, float]
    +20    performance_results: dict[str | MetricName, dict[str, Any]]
    +21    model_version: str
    +
    + + +
    +
    + +
    +
    @dataclass
    + + class + InferenceFeaturesAndTarget: + + + +
    + +
    11@dataclass
    +12class InferenceFeaturesAndTarget:
    +13    """Data class to hold inference features and target for monitoring."""
    +14    features: pd.DataFrame
    +15    target: pd.Series
    +
    + + +

    Data class to hold inference features and target for monitoring.

    +
    + + +
    +
    + + InferenceFeaturesAndTarget( features: pandas.core.frame.DataFrame, target: pandas.core.series.Series) + + +
    + + + + +
    +
    +
    + features: pandas.core.frame.DataFrame + + +
    + + + + +
    +
    +
    + target: pandas.core.series.Series + + +
    + + + + +
    +
    +
    + +
    +
    @dataclass
    + + class + MonitoringExecutionOutput: + + + +
    + +
    17@dataclass
    +18class MonitoringExecutionOutput:
    +19    """Data class to hold the output of a monitoring execution."""
    +20    drift_results: dict[str, float]
    +21    performance_results: dict[str | MetricName, dict[str, Any]]
    +22    model_version: str
    +
    + + +

    Data class to hold the output of a monitoring execution.

    +
    + + +
    +
    + + MonitoringExecutionOutput( drift_results: dict[str, float], performance_results: dict[str | ml.promotion.config.promotion_thresholds.MetricName, dict[str, typing.Any]], model_version: str) + + +
    + + + + +
    +
    +
    + drift_results: dict[str, float] + + +
    + + + + +
    +
    +
    + performance_results: dict[str | ml.promotion.config.promotion_thresholds.MetricName, dict[str, typing.Any]] + + +
    + + + + +
    +
    +
    + model_version: str + + +
    + + + + +
    +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/execution.html b/docs/api/ml/ml/post_promotion/monitoring/execution.html new file mode 100644 index 00000000..4a6f6820 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/execution.html @@ -0,0 +1,244 @@ + + + + + + + ml.post_promotion.monitoring.execution API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.execution

    + +

    A package for the execution code of the monitoring pipeline.

    +
    + + + + + +
    1"""A package for the execution code of the monitoring pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/execution/execute_monitoring.html b/docs/api/ml/ml/post_promotion/monitoring/execution/execute_monitoring.html new file mode 100644 index 00000000..12578199 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/execution/execute_monitoring.html @@ -0,0 +1,377 @@ + + + + + + + ml.post_promotion.monitoring.execution.execute_monitoring API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.execution.execute_monitoring

    + +

    Module for executing the post-promotion monitoring pipeline.

    +
    + + + + + +
     1"""Module for executing the post-promotion monitoring pipeline."""
    + 2import argparse
    + 3from typing import Literal
    + 4
    + 5from ml.post_promotion.monitoring.classes.function_returns import MonitoringExecutionOutput
    + 6from ml.post_promotion.monitoring.feature_drifting.comparison import compare_feature_distributions
    + 7from ml.post_promotion.monitoring.loading.inference_features_and_target import (
    + 8    load_inference_features_and_target,
    + 9)
    +10from ml.post_promotion.monitoring.loading.training_features import load_training_features
    +11from ml.post_promotion.monitoring.performance.assessment import assess_model_performance
    +12from ml.promotion.config.promotion_thresholds import PromotionMetricsConfig
    +13from ml.promotion.config.registry_entry import RegistryEntry
    +14
    +15
    +16def execute_monitoring(
    +17    *,
    +18    args: argparse.Namespace,
    +19    model_metadata: RegistryEntry,
    +20    stage: Literal["production", "staging"],
    +21    promotion_metrics_info: PromotionMetricsConfig
    +22) -> MonitoringExecutionOutput:
    +23    """Execute the post-promotion monitoring pipeline for a given model and stage.
    +24
    +25    Args:
    +26        args: Command-line arguments containing necessary identifiers.
    +27        model_metadata: Metadata for the model being evaluated.
    +28        stage: The stage for which to execute monitoring ("production" or "staging").
    +29        promotion_metrics_info: Configuration for promotion metrics.
    +30
    +31    Returns:
    +32        A MonitoringExecutionOutput object containing the results of the monitoring execution.
    +33    """
    +34    training_features = load_training_features(args=args, model_metadata=model_metadata)
    +35    inference_features_and_target = load_inference_features_and_target(args, model_metadata, stage=stage)
    +36    inference_features = inference_features_and_target.features
    +37    target = inference_features_and_target.target
    +38
    +39    drift_results = compare_feature_distributions(
    +40        stage=stage,
    +41        inference_features=inference_features,
    +42        training_features=training_features
    +43    )
    +44
    +45    performance_results = assess_model_performance(
    +46        args=args,
    +47        model_metadata=model_metadata,
    +48        stage=stage,
    +49        target=target,
    +50        promotion_metrics_info=promotion_metrics_info
    +51    )
    +52
    +53    output = MonitoringExecutionOutput(
    +54        drift_results=drift_results,
    +55        performance_results=performance_results,
    +56        model_version=model_metadata.model_version
    +57    )
    +58
    +59    return output
    +
    + + +
    +
    + +
    + + def + execute_monitoring( *, args: argparse.Namespace, model_metadata: ml.promotion.config.registry_entry.RegistryEntry, stage: Literal['production', 'staging'], promotion_metrics_info: ml.promotion.config.promotion_thresholds.PromotionMetricsConfig) -> ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput: + + + +
    + +
    17def execute_monitoring(
    +18    *,
    +19    args: argparse.Namespace,
    +20    model_metadata: RegistryEntry,
    +21    stage: Literal["production", "staging"],
    +22    promotion_metrics_info: PromotionMetricsConfig
    +23) -> MonitoringExecutionOutput:
    +24    """Execute the post-promotion monitoring pipeline for a given model and stage.
    +25
    +26    Args:
    +27        args: Command-line arguments containing necessary identifiers.
    +28        model_metadata: Metadata for the model being evaluated.
    +29        stage: The stage for which to execute monitoring ("production" or "staging").
    +30        promotion_metrics_info: Configuration for promotion metrics.
    +31
    +32    Returns:
    +33        A MonitoringExecutionOutput object containing the results of the monitoring execution.
    +34    """
    +35    training_features = load_training_features(args=args, model_metadata=model_metadata)
    +36    inference_features_and_target = load_inference_features_and_target(args, model_metadata, stage=stage)
    +37    inference_features = inference_features_and_target.features
    +38    target = inference_features_and_target.target
    +39
    +40    drift_results = compare_feature_distributions(
    +41        stage=stage,
    +42        inference_features=inference_features,
    +43        training_features=training_features
    +44    )
    +45
    +46    performance_results = assess_model_performance(
    +47        args=args,
    +48        model_metadata=model_metadata,
    +49        stage=stage,
    +50        target=target,
    +51        promotion_metrics_info=promotion_metrics_info
    +52    )
    +53
    +54    output = MonitoringExecutionOutput(
    +55        drift_results=drift_results,
    +56        performance_results=performance_results,
    +57        model_version=model_metadata.model_version
    +58    )
    +59
    +60    return output
    +
    + + +

    Execute the post-promotion monitoring pipeline for a given model and stage.

    + +

    Args: + args: Command-line arguments containing necessary identifiers. + model_metadata: Metadata for the model being evaluated. + stage: The stage for which to execute monitoring ("production" or "staging"). + promotion_metrics_info: Configuration for promotion metrics.

    + +

    Returns: + A MonitoringExecutionOutput object containing the results of the monitoring execution.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/extraction.html b/docs/api/ml/ml/post_promotion/monitoring/extraction.html new file mode 100644 index 00000000..10984d05 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/extraction.html @@ -0,0 +1,244 @@ + + + + + + + ml.post_promotion.monitoring.extraction API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.extraction

    + +

    A package for extraction-related code in post-promotion monitoring.

    +
    + + + + + +
    1"""A package for extraction-related code in post-promotion monitoring."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/extraction/expected_performance.html b/docs/api/ml/ml/post_promotion/monitoring/extraction/expected_performance.html new file mode 100644 index 00000000..890b7cc4 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/extraction/expected_performance.html @@ -0,0 +1,325 @@ + + + + + + + ml.post_promotion.monitoring.extraction.expected_performance API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.extraction.expected_performance

    + +

    Module for extracting expected performance metrics from model metadata for post-promotion monitoring.

    +
    + + + + + +
     1"""Module for extracting expected performance metrics from model metadata for post-promotion monitoring."""
    + 2import logging
    + 3
    + 4from ml.exceptions import PipelineContractError
    + 5from ml.promotion.config.promotion_thresholds import PromotionMetricsConfig
    + 6from ml.promotion.config.registry_entry import RegistryEntry
    + 7
    + 8logger = logging.getLogger(__name__)
    + 9
    +10def get_expected_performance(
    +11    model_metadata: RegistryEntry,
    +12    promotion_metrics_info: PromotionMetricsConfig
    +13):
    +14    """Extract expected performance metrics from model metadata for post-promotion monitoring."""
    +15    expected_performance = {}
    +16
    +17    for metric in promotion_metrics_info.metrics:
    +18        curr_metric_value = model_metadata.metrics.test.get(metric, None)
    +19
    +20        if not isinstance(curr_metric_value, (int, float)):
    +21            msg = f"Model metadata has null expected value for metric '{metric}' in the test set. Cannot retrieve expected performance for monitoring comparison."
    +22            logger.error(msg)
    +23            raise PipelineContractError(msg)
    +24
    +25        expected_performance[metric] = curr_metric_value
    +26
    +27    return expected_performance
    +
    + + +
    +
    + + + + + +
    +
    + +
    + + def + get_expected_performance( model_metadata: ml.promotion.config.registry_entry.RegistryEntry, promotion_metrics_info: ml.promotion.config.promotion_thresholds.PromotionMetricsConfig): + + + +
    + +
    11def get_expected_performance(
    +12    model_metadata: RegistryEntry,
    +13    promotion_metrics_info: PromotionMetricsConfig
    +14):
    +15    """Extract expected performance metrics from model metadata for post-promotion monitoring."""
    +16    expected_performance = {}
    +17
    +18    for metric in promotion_metrics_info.metrics:
    +19        curr_metric_value = model_metadata.metrics.test.get(metric, None)
    +20
    +21        if not isinstance(curr_metric_value, (int, float)):
    +22            msg = f"Model metadata has null expected value for metric '{metric}' in the test set. Cannot retrieve expected performance for monitoring comparison."
    +23            logger.error(msg)
    +24            raise PipelineContractError(msg)
    +25
    +26        expected_performance[metric] = curr_metric_value
    +27
    +28    return expected_performance
    +
    + + +

    Extract expected performance metrics from model metadata for post-promotion monitoring.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/feature_drifting.html b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting.html new file mode 100644 index 00000000..822ef9f1 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting.html @@ -0,0 +1,247 @@ + + + + + + + ml.post_promotion.monitoring.feature_drifting API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.feature_drifting

    + +

    A package for monitoring feature drifting.

    +
    + + + + + +
    1"""A package for monitoring feature drifting."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/analysis.html b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/analysis.html new file mode 100644 index 00000000..a9bda364 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/analysis.html @@ -0,0 +1,396 @@ + + + + + + + ml.post_promotion.monitoring.feature_drifting.analysis API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.feature_drifting.analysis

    + +

    Analysis functions for feature drifting monitoring.

    +
    + + + + + +
     1"""Analysis functions for feature drifting monitoring."""
    + 2import logging
    + 3
    + 4import numpy as np
    + 5
    + 6from ml.exceptions import RuntimeMLError
    + 7
    + 8logger = logging.getLogger(__name__)
    + 9
    +10def analyze_ks_result(feature_name: str, ks_stat: float) -> None:
    +11    """Analyze KS statistic result and log appropriate messages.
    +12
    +13    Args:
    +14        feature_name: Name of the feature being analyzed.
    +15        ks_stat: The KS statistic value to analyze.
    +16    """
    +17    if ks_stat < 0 or ks_stat > 1:
    +18        msg = f"KS statistic out of bounds [0,1]: {ks_stat}"
    +19        logger.error(msg)
    +20        raise RuntimeMLError(msg)
    +21    if ks_stat < 0.1:
    +22        logger.debug(f"KS statistic {ks_stat:.4f} indicates low drift for feature: {feature_name}")
    +23    elif ks_stat < 0.25:
    +24        logger.warning(f"KS statistic {ks_stat:.4f} indicates moderate drift for feature: {feature_name}")
    +25    elif ks_stat < 0.5:
    +26        logger.error(f"KS statistic {ks_stat:.4f} indicates high drift for feature: {feature_name}")
    +27    else:
    +28        logger.critical(f"KS statistic {ks_stat:.4f} indicates severe drift for feature: {feature_name}")
    +29
    +30def analyze_psi_result(feature_name: str, psi_val: float) -> None:
    +31    """Analyze PSI value and log appropriate messages.
    +32
    +33    Args:
    +34        feature_name: Name of the feature being analyzed.
    +35        psi_val: The PSI value to analyze.
    +36    """
    +37    if psi_val < 0 or not np.isfinite(psi_val):
    +38        msg = f"PSI value is invalid (negative or non-finite): {psi_val}"
    +39        logger.error(msg)
    +40        raise RuntimeMLError(msg)
    +41    if psi_val < 0.1:
    +42        logger.debug(f"PSI value {psi_val:.4f} indicates low drift for feature: {feature_name}")
    +43    elif psi_val < 0.25:
    +44        logger.warning(f"PSI value {psi_val:.4f} indicates moderate drift for feature: {feature_name}")
    +45    elif psi_val < 0.5:
    +46        logger.error(f"PSI value {psi_val:.4f} indicates high drift for feature: {feature_name}")
    +47    else:
    +48        logger.critical(f"PSI value {psi_val:.4f} indicates severe drift for feature: {feature_name}")
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.monitoring.feature_drifting.analysis (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + analyze_ks_result(feature_name: str, ks_stat: float) -> None: + + + +
    + +
    11def analyze_ks_result(feature_name: str, ks_stat: float) -> None:
    +12    """Analyze KS statistic result and log appropriate messages.
    +13
    +14    Args:
    +15        feature_name: Name of the feature being analyzed.
    +16        ks_stat: The KS statistic value to analyze.
    +17    """
    +18    if ks_stat < 0 or ks_stat > 1:
    +19        msg = f"KS statistic out of bounds [0,1]: {ks_stat}"
    +20        logger.error(msg)
    +21        raise RuntimeMLError(msg)
    +22    if ks_stat < 0.1:
    +23        logger.debug(f"KS statistic {ks_stat:.4f} indicates low drift for feature: {feature_name}")
    +24    elif ks_stat < 0.25:
    +25        logger.warning(f"KS statistic {ks_stat:.4f} indicates moderate drift for feature: {feature_name}")
    +26    elif ks_stat < 0.5:
    +27        logger.error(f"KS statistic {ks_stat:.4f} indicates high drift for feature: {feature_name}")
    +28    else:
    +29        logger.critical(f"KS statistic {ks_stat:.4f} indicates severe drift for feature: {feature_name}")
    +
    + + +

    Analyze KS statistic result and log appropriate messages.

    + +

    Args: + feature_name: Name of the feature being analyzed. + ks_stat: The KS statistic value to analyze.

    +
    + + +
    +
    + +
    + + def + analyze_psi_result(feature_name: str, psi_val: float) -> None: + + + +
    + +
    31def analyze_psi_result(feature_name: str, psi_val: float) -> None:
    +32    """Analyze PSI value and log appropriate messages.
    +33
    +34    Args:
    +35        feature_name: Name of the feature being analyzed.
    +36        psi_val: The PSI value to analyze.
    +37    """
    +38    if psi_val < 0 or not np.isfinite(psi_val):
    +39        msg = f"PSI value is invalid (negative or non-finite): {psi_val}"
    +40        logger.error(msg)
    +41        raise RuntimeMLError(msg)
    +42    if psi_val < 0.1:
    +43        logger.debug(f"PSI value {psi_val:.4f} indicates low drift for feature: {feature_name}")
    +44    elif psi_val < 0.25:
    +45        logger.warning(f"PSI value {psi_val:.4f} indicates moderate drift for feature: {feature_name}")
    +46    elif psi_val < 0.5:
    +47        logger.error(f"PSI value {psi_val:.4f} indicates high drift for feature: {feature_name}")
    +48    else:
    +49        logger.critical(f"PSI value {psi_val:.4f} indicates severe drift for feature: {feature_name}")
    +
    + + +

    Analyze PSI value and log appropriate messages.

    + +

    Args: + feature_name: Name of the feature being analyzed. + psi_val: The PSI value to analyze.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/comparison.html b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/comparison.html new file mode 100644 index 00000000..ee106fe4 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/comparison.html @@ -0,0 +1,350 @@ + + + + + + + ml.post_promotion.monitoring.feature_drifting.comparison API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.feature_drifting.comparison

    + +

    Module for comparing feature distributions between training and inference data in post-promotion monitoring.

    +
    + + + + + +
     1"""Module for comparing feature distributions between training and inference data in post-promotion monitoring."""
    + 2import logging
    + 3from typing import Literal
    + 4
    + 5import pandas as pd
    + 6
    + 7from ml.post_promotion.monitoring.feature_drifting.computations import compute_drift
    + 8
    + 9logger = logging.getLogger(__name__)
    +10
    +11def compare_feature_distributions(
    +12    *,
    +13    stage: Literal["production", "staging"],
    +14    inference_features: pd.DataFrame,
    +15    training_features: pd.DataFrame
    +16):
    +17    """Compare feature distributions between training and inference data.
    +18
    +19    Args:
    +20        stage: The stage for which to compare feature distributions ('production' or 'staging').
    +21        inference_features: DataFrame containing the inference features.
    +22        training_features: DataFrame containing the training features.
    +23
    +24    Returns:
    +25        A dictionary mapping feature names to their computed drift scores.
    +26    """
    +27    logger.info(f"Comparing feature distributions for the {stage} model...")
    +28
    +29    drift_results = {}
    +30    for col in training_features.columns:
    +31        expected = training_features[col]
    +32        actual = inference_features[col]
    +33        drift_score = compute_drift(expected, actual)
    +34        drift_results[col] = drift_score
    +35
    +36    return drift_results
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.monitoring.feature_drifting.comparison (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + compare_feature_distributions( *, stage: Literal['production', 'staging'], inference_features: pandas.core.frame.DataFrame, training_features: pandas.core.frame.DataFrame): + + + +
    + +
    12def compare_feature_distributions(
    +13    *,
    +14    stage: Literal["production", "staging"],
    +15    inference_features: pd.DataFrame,
    +16    training_features: pd.DataFrame
    +17):
    +18    """Compare feature distributions between training and inference data.
    +19
    +20    Args:
    +21        stage: The stage for which to compare feature distributions ('production' or 'staging').
    +22        inference_features: DataFrame containing the inference features.
    +23        training_features: DataFrame containing the training features.
    +24
    +25    Returns:
    +26        A dictionary mapping feature names to their computed drift scores.
    +27    """
    +28    logger.info(f"Comparing feature distributions for the {stage} model...")
    +29
    +30    drift_results = {}
    +31    for col in training_features.columns:
    +32        expected = training_features[col]
    +33        actual = inference_features[col]
    +34        drift_score = compute_drift(expected, actual)
    +35        drift_results[col] = drift_score
    +36
    +37    return drift_results
    +
    + + +

    Compare feature distributions between training and inference data.

    + +

    Args: + stage: The stage for which to compare feature distributions ('production' or 'staging'). + inference_features: DataFrame containing the inference features. + training_features: DataFrame containing the training features.

    + +

    Returns: + A dictionary mapping feature names to their computed drift scores.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/computations.html b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/computations.html new file mode 100644 index 00000000..6ff5b10e --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/computations.html @@ -0,0 +1,568 @@ + + + + + + + ml.post_promotion.monitoring.feature_drifting.computations API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.feature_drifting.computations

    + +

    Computations for feature drifting monitoring.

    +
    + + + + + +
      1"""Computations for feature drifting monitoring."""
    +  2import logging
    +  3from typing import Any
    +  4
    +  5import numpy as np
    +  6import pandas as pd
    +  7
    +  8from ml.exceptions import MonitoringError, RuntimeMLError
    +  9from ml.post_promotion.monitoring.feature_drifting.analysis import (
    + 10    analyze_ks_result,
    + 11    analyze_psi_result,
    + 12)
    + 13from ml.post_promotion.monitoring.feature_drifting.utils import infer_drift_method
    + 14
    + 15logger = logging.getLogger(__name__)
    + 16
    + 17def compute_psi(expected: pd.Series, actual: pd.Series, bins: int = 10) -> float:
    + 18    """Population Stability Index (PSI) for feature drifting.
    + 19
    + 20    Args:
    + 21        expected: A pandas Series representing the expected distribution.
    + 22        actual: A pandas Series representing the actual distribution.
    + 23        bins: Number of bins to use for numeric features.
    + 24
    + 25    Returns:
    + 26        A float representing the PSI value."""
    + 27    expected = expected.dropna()
    + 28    actual = actual.dropna()
    + 29
    + 30    if len(expected) == 0 or len(actual) == 0:
    + 31        msg = "Expected and actual distributions must have at least one non-null value."
    + 32        logger.error(msg)
    + 33        raise MonitoringError(msg)
    + 34
    + 35    if pd.api.types.is_numeric_dtype(expected):
    + 36        bin_edges = np.histogram_bin_edges(expected, bins=bins)
    + 37        bin_edges = bin_edges.tolist()  # Convert numpy array to list for pd.cut
    + 38
    + 39        expected_bins = pd.cut(expected, bins=bin_edges, include_lowest=True)
    + 40        actual_bins = pd.cut(actual, bins=bin_edges, include_lowest=True)
    + 41    else:
    + 42        expected_bins = expected.astype(str)
    + 43        actual_bins = actual.astype(str)
    + 44
    + 45    e_dist = expected_bins.value_counts(normalize=True)
    + 46    a_dist = actual_bins.value_counts(normalize=True)
    + 47
    + 48    all_bins = set(e_dist.index).union(a_dist.index)
    + 49
    + 50    psi_val = 0.0
    + 51    for b in all_bins:
    + 52        e = e_dist.get(b, 1e-6)
    + 53        a = a_dist.get(b, 1e-6)
    + 54
    + 55        # prevent log(0)
    + 56        if e == 0:
    + 57            e = 1e-6
    + 58        if a == 0:
    + 59            a = 1e-6
    + 60
    + 61        psi_val += (e - a) * np.log(e / a)
    + 62
    + 63    return float(psi_val)
    + 64
    + 65def compute_ks(expected: pd.Series, actual: pd.Series) -> float:
    + 66    """Kolmogorov-Smirnov statistic for numeric features.
    + 67
    + 68    Args:
    + 69        expected: A pandas Series representing the expected distribution.
    + 70        actual: A pandas Series representing the actual distribution.
    + 71
    + 72    Returns:
    + 73        A float representing the KS statistic.
    + 74    """
    + 75    from scipy.stats import ks_2samp
    + 76    result: Any = ks_2samp(expected, actual)
    + 77    stat = getattr(result, "statistic", None)
    + 78    if stat is None:
    + 79        # scipy may return a tuple (statistic, pvalue) in some versions
    + 80        stat = result[0]
    + 81    return float(stat)
    + 82
    + 83def compute_drift(
    + 84    expected: pd.Series,
    + 85    actual: pd.Series
    + 86) -> float:
    + 87    """Compute drift between expected and actual distributions.
    + 88
    + 89    Args:
    + 90        expected: A pandas Series representing the expected distribution.
    + 91        actual: A pandas Series representing the actual distribution.
    + 92
    + 93    Returns:
    + 94        A float representing the computed drift metric (KS statistic or PSI value).
    + 95    """
    + 96    method = infer_drift_method(expected)
    + 97
    + 98    if method == "ks":
    + 99        try:
    +100            result = compute_ks(expected, actual)
    +101        except Exception as e:
    +102            msg = f"Error computing KS statistic for feature: {expected.name}"
    +103            logger.exception(msg)
    +104            raise MonitoringError(msg) from e
    +105        feature_name = str(expected.name) if expected.name is not None else "<unknown>"
    +106        analyze_ks_result(feature_name, result)
    +107    elif method == "psi":
    +108        try:
    +109            result = compute_psi(expected, actual)
    +110        except Exception as e:
    +111            msg = f"Error computing PSI for feature: {expected.name}"
    +112            logger.exception(msg)
    +113            raise MonitoringError(msg) from e
    +114        feature_name = str(expected.name) if expected.name is not None else "<unknown>"
    +115        analyze_psi_result(feature_name, result)
    +116    else:
    +117        msg = f"Unsupported drift method: {method}"
    +118        logger.error(msg)
    +119        raise RuntimeMLError(msg)
    +120    return result
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.monitoring.feature_drifting.computations (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + compute_psi( expected: pandas.core.series.Series, actual: pandas.core.series.Series, bins: int = 10) -> float: + + + +
    + +
    18def compute_psi(expected: pd.Series, actual: pd.Series, bins: int = 10) -> float:
    +19    """Population Stability Index (PSI) for feature drifting.
    +20
    +21    Args:
    +22        expected: A pandas Series representing the expected distribution.
    +23        actual: A pandas Series representing the actual distribution.
    +24        bins: Number of bins to use for numeric features.
    +25
    +26    Returns:
    +27        A float representing the PSI value."""
    +28    expected = expected.dropna()
    +29    actual = actual.dropna()
    +30
    +31    if len(expected) == 0 or len(actual) == 0:
    +32        msg = "Expected and actual distributions must have at least one non-null value."
    +33        logger.error(msg)
    +34        raise MonitoringError(msg)
    +35
    +36    if pd.api.types.is_numeric_dtype(expected):
    +37        bin_edges = np.histogram_bin_edges(expected, bins=bins)
    +38        bin_edges = bin_edges.tolist()  # Convert numpy array to list for pd.cut
    +39
    +40        expected_bins = pd.cut(expected, bins=bin_edges, include_lowest=True)
    +41        actual_bins = pd.cut(actual, bins=bin_edges, include_lowest=True)
    +42    else:
    +43        expected_bins = expected.astype(str)
    +44        actual_bins = actual.astype(str)
    +45
    +46    e_dist = expected_bins.value_counts(normalize=True)
    +47    a_dist = actual_bins.value_counts(normalize=True)
    +48
    +49    all_bins = set(e_dist.index).union(a_dist.index)
    +50
    +51    psi_val = 0.0
    +52    for b in all_bins:
    +53        e = e_dist.get(b, 1e-6)
    +54        a = a_dist.get(b, 1e-6)
    +55
    +56        # prevent log(0)
    +57        if e == 0:
    +58            e = 1e-6
    +59        if a == 0:
    +60            a = 1e-6
    +61
    +62        psi_val += (e - a) * np.log(e / a)
    +63
    +64    return float(psi_val)
    +
    + + +

    Population Stability Index (PSI) for feature drifting.

    + +

    Args: + expected: A pandas Series representing the expected distribution. + actual: A pandas Series representing the actual distribution. + bins: Number of bins to use for numeric features.

    + +

    Returns: + A float representing the PSI value.

    +
    + + +
    +
    + +
    + + def + compute_ks( expected: pandas.core.series.Series, actual: pandas.core.series.Series) -> float: + + + +
    + +
    66def compute_ks(expected: pd.Series, actual: pd.Series) -> float:
    +67    """Kolmogorov-Smirnov statistic for numeric features.
    +68
    +69    Args:
    +70        expected: A pandas Series representing the expected distribution.
    +71        actual: A pandas Series representing the actual distribution.
    +72
    +73    Returns:
    +74        A float representing the KS statistic.
    +75    """
    +76    from scipy.stats import ks_2samp
    +77    result: Any = ks_2samp(expected, actual)
    +78    stat = getattr(result, "statistic", None)
    +79    if stat is None:
    +80        # scipy may return a tuple (statistic, pvalue) in some versions
    +81        stat = result[0]
    +82    return float(stat)
    +
    + + +

    Kolmogorov-Smirnov statistic for numeric features.

    + +

    Args: + expected: A pandas Series representing the expected distribution. + actual: A pandas Series representing the actual distribution.

    + +

    Returns: + A float representing the KS statistic.

    +
    + + +
    +
    + +
    + + def + compute_drift( expected: pandas.core.series.Series, actual: pandas.core.series.Series) -> float: + + + +
    + +
     84def compute_drift(
    + 85    expected: pd.Series,
    + 86    actual: pd.Series
    + 87) -> float:
    + 88    """Compute drift between expected and actual distributions.
    + 89
    + 90    Args:
    + 91        expected: A pandas Series representing the expected distribution.
    + 92        actual: A pandas Series representing the actual distribution.
    + 93
    + 94    Returns:
    + 95        A float representing the computed drift metric (KS statistic or PSI value).
    + 96    """
    + 97    method = infer_drift_method(expected)
    + 98
    + 99    if method == "ks":
    +100        try:
    +101            result = compute_ks(expected, actual)
    +102        except Exception as e:
    +103            msg = f"Error computing KS statistic for feature: {expected.name}"
    +104            logger.exception(msg)
    +105            raise MonitoringError(msg) from e
    +106        feature_name = str(expected.name) if expected.name is not None else "<unknown>"
    +107        analyze_ks_result(feature_name, result)
    +108    elif method == "psi":
    +109        try:
    +110            result = compute_psi(expected, actual)
    +111        except Exception as e:
    +112            msg = f"Error computing PSI for feature: {expected.name}"
    +113            logger.exception(msg)
    +114            raise MonitoringError(msg) from e
    +115        feature_name = str(expected.name) if expected.name is not None else "<unknown>"
    +116        analyze_psi_result(feature_name, result)
    +117    else:
    +118        msg = f"Unsupported drift method: {method}"
    +119        logger.error(msg)
    +120        raise RuntimeMLError(msg)
    +121    return result
    +
    + + +

    Compute drift between expected and actual distributions.

    + +

    Args: + expected: A pandas Series representing the expected distribution. + actual: A pandas Series representing the actual distribution.

    + +

    Returns: + A float representing the computed drift metric (KS statistic or PSI value).

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/utils.html b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/utils.html new file mode 100644 index 00000000..f8c5c533 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/feature_drifting/utils.html @@ -0,0 +1,310 @@ + + + + + + + ml.post_promotion.monitoring.feature_drifting.utils API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.feature_drifting.utils

    + +

    Utility functions for feature drifting monitoring.

    +
    + + + + + +
     1"""Utility functions for feature drifting monitoring."""
    + 2from typing import Literal
    + 3
    + 4import pandas as pd
    + 5
    + 6
    + 7def infer_drift_method(series: pd.Series) -> Literal["ks", "psi"]:
    + 8    """
    + 9    Decide which drift metric to use for a feature.
    +10
    +11    Returns:
    +12        "ks" or "psi"
    +13    """
    +14    if pd.api.types.is_numeric_dtype(series):
    +15        # Low cardinality numeric behaves like categorical
    +16        if series.nunique(dropna=True) < 20:
    +17            return "psi"
    +18        return "ks"
    +19
    +20    if pd.api.types.is_datetime64_any_dtype(series):
    +21        return "psi"  # always bin → PSI
    +22
    +23    # everything else → categorical
    +24    return "psi"
    +
    + + +
    +
    + +
    + + def + infer_drift_method(series: pandas.core.series.Series) -> Literal['ks', 'psi']: + + + +
    + +
     8def infer_drift_method(series: pd.Series) -> Literal["ks", "psi"]:
    + 9    """
    +10    Decide which drift metric to use for a feature.
    +11
    +12    Returns:
    +13        "ks" or "psi"
    +14    """
    +15    if pd.api.types.is_numeric_dtype(series):
    +16        # Low cardinality numeric behaves like categorical
    +17        if series.nunique(dropna=True) < 20:
    +18            return "psi"
    +19        return "ks"
    +20
    +21    if pd.api.types.is_datetime64_any_dtype(series):
    +22        return "psi"  # always bin → PSI
    +23
    +24    # everything else → categorical
    +25    return "psi"
    +
    + + +

    Decide which drift metric to use for a feature.

    + +

    Returns: + "ks" or "psi"

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/loading.html b/docs/api/ml/ml/post_promotion/monitoring/loading.html new file mode 100644 index 00000000..1a7f78ae --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/loading.html @@ -0,0 +1,248 @@ + + + + + + + ml.post_promotion.monitoring.loading API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.loading

    + +

    A package for loading utilities of the monitoring pipeline.

    +
    + + + + + +
    1"""A package for loading utilities of the monitoring pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/loading/inference_features_and_target.html b/docs/api/ml/ml/post_promotion/monitoring/loading/inference_features_and_target.html new file mode 100644 index 00000000..c8b166a2 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/loading/inference_features_and_target.html @@ -0,0 +1,358 @@ + + + + + + + ml.post_promotion.monitoring.loading.inference_features_and_target API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.loading.inference_features_and_target

    + +

    Module for loading inference features and target for post-promotion monitoring.

    +
    + + + + + +
     1"""Module for loading inference features and target for post-promotion monitoring."""
    + 2import argparse
    + 3from pathlib import Path
    + 4from typing import Literal
    + 5
    + 6from ml.metadata.validation.post_promotion.infer import validate_inference_metadata
    + 7from ml.post_promotion.monitoring.classes.function_returns import InferenceFeaturesAndTarget
    + 8from ml.post_promotion.shared.loading.features import prepare_features
    + 9from ml.promotion.config.registry_entry import RegistryEntry
    +10from ml.utils.loaders import load_json
    +11from ml.utils.snapshots.snapshot_path import get_snapshot_path
    +12
    +13
    +14def load_inference_features_and_target(
    +15    args: argparse.Namespace,
    +16    model_metadata: RegistryEntry,
    +17    stage: Literal["production", "staging"]
    +18) -> InferenceFeaturesAndTarget:
    +19    """Load inference features and target for post-promotion monitoring.
    +20
    +21    Args:
    +22        args: Command-line arguments containing necessary identifiers.
    +23        model_metadata: Metadata for the model being evaluated.
    +24        stage: The stage for which to load inference data ('production' or 'staging').
    +25
    +26    Returns:
    +27        An InferenceFeaturesAndTarget object containing the features and target.
    +28    """
    +29    inference_dir = Path("predictions") / args.problem / args.segment
    +30    snapshot_path = get_snapshot_path(args.inference_run_id, inference_dir)
    +31    inference_run_dir = snapshot_path / stage
    +32
    +33    inference_metadata_path = inference_run_dir / "metadata.json"
    +34    inference_metadata_raw = load_json(inference_metadata_path)
    +35    inference_metadata = validate_inference_metadata(inference_metadata_raw)
    +36
    +37    # Assumes supervised inference. Modify as needed for unsupervised tasks.
    +38    inference_features_return = prepare_features(
    +39        args=args,
    +40        model_metadata=model_metadata,
    +41        snapshot_bindings_id=inference_metadata.snapshot_bindings_id
    +42    )
    +43    inference_features = inference_features_return.features
    +44
    +45    result = InferenceFeaturesAndTarget(
    +46        features=inference_features,
    +47        target=inference_features_return.target
    +48    )
    +49    return result
    +
    + + +
    +
    + +
    + + def + load_inference_features_and_target( args: argparse.Namespace, model_metadata: ml.promotion.config.registry_entry.RegistryEntry, stage: Literal['production', 'staging']) -> ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget: + + + +
    + +
    15def load_inference_features_and_target(
    +16    args: argparse.Namespace,
    +17    model_metadata: RegistryEntry,
    +18    stage: Literal["production", "staging"]
    +19) -> InferenceFeaturesAndTarget:
    +20    """Load inference features and target for post-promotion monitoring.
    +21
    +22    Args:
    +23        args: Command-line arguments containing necessary identifiers.
    +24        model_metadata: Metadata for the model being evaluated.
    +25        stage: The stage for which to load inference data ('production' or 'staging').
    +26
    +27    Returns:
    +28        An InferenceFeaturesAndTarget object containing the features and target.
    +29    """
    +30    inference_dir = Path("predictions") / args.problem / args.segment
    +31    snapshot_path = get_snapshot_path(args.inference_run_id, inference_dir)
    +32    inference_run_dir = snapshot_path / stage
    +33
    +34    inference_metadata_path = inference_run_dir / "metadata.json"
    +35    inference_metadata_raw = load_json(inference_metadata_path)
    +36    inference_metadata = validate_inference_metadata(inference_metadata_raw)
    +37
    +38    # Assumes supervised inference. Modify as needed for unsupervised tasks.
    +39    inference_features_return = prepare_features(
    +40        args=args,
    +41        model_metadata=model_metadata,
    +42        snapshot_bindings_id=inference_metadata.snapshot_bindings_id
    +43    )
    +44    inference_features = inference_features_return.features
    +45
    +46    result = InferenceFeaturesAndTarget(
    +47        features=inference_features,
    +48        target=inference_features_return.target
    +49    )
    +50    return result
    +
    + + +

    Load inference features and target for post-promotion monitoring.

    + +

    Args: + args: Command-line arguments containing necessary identifiers. + model_metadata: Metadata for the model being evaluated. + stage: The stage for which to load inference data ('production' or 'staging').

    + +

    Returns: + An InferenceFeaturesAndTarget object containing the features and target.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/loading/predictions.html b/docs/api/ml/ml/post_promotion/monitoring/loading/predictions.html new file mode 100644 index 00000000..e8c48730 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/loading/predictions.html @@ -0,0 +1,318 @@ + + + + + + + ml.post_promotion.monitoring.loading.predictions API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.loading.predictions

    + +

    Module for loading predictions for post-promotion monitoring.

    +
    + + + + + +
     1"""Module for loading predictions for post-promotion monitoring."""
    + 2import argparse
    + 3from pathlib import Path
    + 4from typing import Literal
    + 5
    + 6import pandas as pd
    + 7
    + 8from ml.utils.snapshots.snapshot_path import get_snapshot_path
    + 9
    +10
    +11def load_predictions(
    +12    args: argparse.Namespace,
    +13    stage: Literal["production", "staging"]
    +14) -> pd.DataFrame:
    +15    """Load predictions for post-promotion monitoring.
    +16
    +17    Args:
    +18        args: Command-line arguments containing necessary identifiers.
    +19        stage: The stage for which to load predictions ('production' or 'staging').
    +20
    +21    Returns:
    +22        A DataFrame containing the predictions."""
    +23    inference_dir = Path("predictions") / args.problem / args.segment
    +24    snapshot_path = get_snapshot_path(args.inference_run_id, inference_dir)
    +25    inference_run_dir = snapshot_path / stage
    +26    inference_predictions_path = inference_run_dir / "predictions.parquet"
    +27    predictions = pd.read_parquet(inference_predictions_path)
    +28    return predictions
    +
    + + +
    +
    + +
    + + def + load_predictions( args: argparse.Namespace, stage: Literal['production', 'staging']) -> pandas.core.frame.DataFrame: + + + +
    + +
    12def load_predictions(
    +13    args: argparse.Namespace,
    +14    stage: Literal["production", "staging"]
    +15) -> pd.DataFrame:
    +16    """Load predictions for post-promotion monitoring.
    +17
    +18    Args:
    +19        args: Command-line arguments containing necessary identifiers.
    +20        stage: The stage for which to load predictions ('production' or 'staging').
    +21
    +22    Returns:
    +23        A DataFrame containing the predictions."""
    +24    inference_dir = Path("predictions") / args.problem / args.segment
    +25    snapshot_path = get_snapshot_path(args.inference_run_id, inference_dir)
    +26    inference_run_dir = snapshot_path / stage
    +27    inference_predictions_path = inference_run_dir / "predictions.parquet"
    +28    predictions = pd.read_parquet(inference_predictions_path)
    +29    return predictions
    +
    + + +

    Load predictions for post-promotion monitoring.

    + +

    Args: + args: Command-line arguments containing necessary identifiers. + stage: The stage for which to load predictions ('production' or 'staging').

    + +

    Returns: + A DataFrame containing the predictions.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/loading/promotion_metrics_info.html b/docs/api/ml/ml/post_promotion/monitoring/loading/promotion_metrics_info.html new file mode 100644 index 00000000..bbfd0000 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/loading/promotion_metrics_info.html @@ -0,0 +1,334 @@ + + + + + + + ml.post_promotion.monitoring.loading.promotion_metrics_info API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.loading.promotion_metrics_info

    + + + + + + +
     1import argparse
    + 2import logging
    + 3from pathlib import Path
    + 4
    + 5from ml.exceptions import PipelineContractError
    + 6from ml.promotion.config.promotion_thresholds import PromotionMetricsConfig
    + 7from ml.promotion.validation.promotion_thresholds import validate_promotion_thresholds
    + 8from ml.utils.loaders import load_yaml
    + 9
    +10logger = logging.getLogger(__name__)
    +11
    +12
    +13def get_promotion_metrics_info(
    +14    args: argparse.Namespace,
    +15) -> PromotionMetricsConfig:
    +16    """Load and validate promotion metrics information for post-promotion monitoring.
    +17
    +18    Args:
    +19        args: Command-line arguments containing necessary identifiers.
    +20
    +21    Returns:
    +22        A PromotionMetricsConfig object containing the promotion metrics information.
    +23    """
    +24    global_thresholds = load_yaml(Path("configs") / "promotion" / "thresholds.yaml")
    +25    model_thresholds_raw = global_thresholds.get(args.problem, {}).get(args.segment, {})
    +26    if not model_thresholds_raw:
    +27        msg = f"No promotion thresholds found for problem='{args.problem}' and segment='{args.segment}' in thresholds.yaml. File content: {global_thresholds}"
    +28        logger.error(msg)
    +29        raise PipelineContractError(msg)
    +30    model_thresholds = validate_promotion_thresholds(model_thresholds_raw)
    +31    return model_thresholds.promotion_metrics
    +
    + + +
    +
    + + + + + +
    +
    + +
    + + def + get_promotion_metrics_info( args: argparse.Namespace) -> ml.promotion.config.promotion_thresholds.PromotionMetricsConfig: + + + +
    + +
    14def get_promotion_metrics_info(
    +15    args: argparse.Namespace,
    +16) -> PromotionMetricsConfig:
    +17    """Load and validate promotion metrics information for post-promotion monitoring.
    +18
    +19    Args:
    +20        args: Command-line arguments containing necessary identifiers.
    +21
    +22    Returns:
    +23        A PromotionMetricsConfig object containing the promotion metrics information.
    +24    """
    +25    global_thresholds = load_yaml(Path("configs") / "promotion" / "thresholds.yaml")
    +26    model_thresholds_raw = global_thresholds.get(args.problem, {}).get(args.segment, {})
    +27    if not model_thresholds_raw:
    +28        msg = f"No promotion thresholds found for problem='{args.problem}' and segment='{args.segment}' in thresholds.yaml. File content: {global_thresholds}"
    +29        logger.error(msg)
    +30        raise PipelineContractError(msg)
    +31    model_thresholds = validate_promotion_thresholds(model_thresholds_raw)
    +32    return model_thresholds.promotion_metrics
    +
    + + +

    Load and validate promotion metrics information for post-promotion monitoring.

    + +

    Args: + args: Command-line arguments containing necessary identifiers.

    + +

    Returns: + A PromotionMetricsConfig object containing the promotion metrics information.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/loading/training_features.html b/docs/api/ml/ml/post_promotion/monitoring/loading/training_features.html new file mode 100644 index 00000000..82949f2b --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/loading/training_features.html @@ -0,0 +1,321 @@ + + + + + + + ml.post_promotion.monitoring.loading.training_features API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.loading.training_features

    + +

    Module for loading training features for post-promotion monitoring.

    +
    + + + + + +
     1"""Module for loading training features for post-promotion monitoring."""
    + 2import argparse
    + 3
    + 4import pandas as pd
    + 5
    + 6from ml.post_promotion.shared.loading.features import prepare_features
    + 7from ml.promotion.config.registry_entry import RegistryEntry
    + 8
    + 9
    +10def load_training_features(
    +11    *,
    +12    args: argparse.Namespace,
    +13    model_metadata: RegistryEntry,
    +14) -> pd.DataFrame:
    +15    """Load training features for post-promotion monitoring.
    +16
    +17    Args:
    +18        args: Command-line arguments containing necessary identifiers.
    +19        model_metadata: Metadata for the model being evaluated.
    +20
    +21    Returns:
    +22        A DataFrame containing the training features.
    +23    """
    +24    training_features_return = prepare_features(
    +25        args=args,
    +26        model_metadata=model_metadata
    +27    )
    +28    training_features = training_features_return.features
    +29    return training_features
    +
    + + +
    +
    + +
    + + def + load_training_features( *, args: argparse.Namespace, model_metadata: ml.promotion.config.registry_entry.RegistryEntry) -> pandas.core.frame.DataFrame: + + + +
    + +
    11def load_training_features(
    +12    *,
    +13    args: argparse.Namespace,
    +14    model_metadata: RegistryEntry,
    +15) -> pd.DataFrame:
    +16    """Load training features for post-promotion monitoring.
    +17
    +18    Args:
    +19        args: Command-line arguments containing necessary identifiers.
    +20        model_metadata: Metadata for the model being evaluated.
    +21
    +22    Returns:
    +23        A DataFrame containing the training features.
    +24    """
    +25    training_features_return = prepare_features(
    +26        args=args,
    +27        model_metadata=model_metadata
    +28    )
    +29    training_features = training_features_return.features
    +30    return training_features
    +
    + + +

    Load training features for post-promotion monitoring.

    + +

    Args: + args: Command-line arguments containing necessary identifiers. + model_metadata: Metadata for the model being evaluated.

    + +

    Returns: + A DataFrame containing the training features.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/loading/training_metrics.html b/docs/api/ml/ml/post_promotion/monitoring/loading/training_metrics.html new file mode 100644 index 00000000..8539491b --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/loading/training_metrics.html @@ -0,0 +1,316 @@ + + + + + + + ml.post_promotion.monitoring.loading.training_metrics API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.loading.training_metrics

    + +

    Module for loading training metrics for post-promotion monitoring.

    +
    + + + + + +
     1"""Module for loading training metrics for post-promotion monitoring."""
    + 2import argparse
    + 3from pathlib import Path
    + 4
    + 5from ml.modeling.models.metrics import TrainingMetrics
    + 6from ml.modeling.validation.metrics import validate_training_metrics
    + 7from ml.promotion.config.registry_entry import RegistryEntry
    + 8from ml.utils.loaders import load_json
    + 9
    +10
    +11def load_training_metrics_file(
    +12    args: argparse.Namespace,
    +13    model_metadata: RegistryEntry
    +14) -> TrainingMetrics:
    +15    """Load training metrics for post-promotion monitoring.
    +16
    +17    Args:
    +18        args: Command-line arguments containing necessary identifiers.
    +19        model_metadata: Metadata for the model being monitored.
    +20
    +21    Returns:
    +22        TrainingMetrics: The loaded and validated training metrics.
    +23    """
    +24    training_metrics_path = Path("experiments") / args.problem / args.segment / model_metadata.model_version / model_metadata.experiment_id / "training" / model_metadata.train_run_id / "metrics.json"
    +25    training_metrics_raw = load_json(training_metrics_path)
    +26    training_metrics = validate_training_metrics(training_metrics_raw)
    +27    return training_metrics
    +
    + + +
    +
    + +
    + + def + load_training_metrics_file( args: argparse.Namespace, model_metadata: ml.promotion.config.registry_entry.RegistryEntry) -> ml.modeling.models.metrics.TrainingMetrics: + + + +
    + +
    12def load_training_metrics_file(
    +13    args: argparse.Namespace,
    +14    model_metadata: RegistryEntry
    +15) -> TrainingMetrics:
    +16    """Load training metrics for post-promotion monitoring.
    +17
    +18    Args:
    +19        args: Command-line arguments containing necessary identifiers.
    +20        model_metadata: Metadata for the model being monitored.
    +21
    +22    Returns:
    +23        TrainingMetrics: The loaded and validated training metrics.
    +24    """
    +25    training_metrics_path = Path("experiments") / args.problem / args.segment / model_metadata.model_version / model_metadata.experiment_id / "training" / model_metadata.train_run_id / "metrics.json"
    +26    training_metrics_raw = load_json(training_metrics_path)
    +27    training_metrics = validate_training_metrics(training_metrics_raw)
    +28    return training_metrics
    +
    + + +

    Load training metrics for post-promotion monitoring.

    + +

    Args: + args: Command-line arguments containing necessary identifiers. + model_metadata: Metadata for the model being monitored.

    + +

    Returns: + TrainingMetrics: The loaded and validated training metrics.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/performance.html b/docs/api/ml/ml/post_promotion/monitoring/performance.html new file mode 100644 index 00000000..111a8c2d --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/performance.html @@ -0,0 +1,246 @@ + + + + + + + ml.post_promotion.monitoring.performance API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.performance

    + +

    A package for calculating and assessing model performance post-promotion.

    +
    + + + + + +
    1"""A package for calculating and assessing model performance post-promotion."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/performance/assessment.html b/docs/api/ml/ml/post_promotion/monitoring/performance/assessment.html new file mode 100644 index 00000000..a3db4708 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/performance/assessment.html @@ -0,0 +1,463 @@ + + + + + + + ml.post_promotion.monitoring.performance.assessment API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.performance.assessment

    + +

    Module for assessing model performance in post-promotion monitoring.

    +
    + + + + + +
     1"""Module for assessing model performance in post-promotion monitoring."""
    + 2import argparse
    + 3import logging
    + 4from typing import Any, Literal
    + 5
    + 6import pandas as pd
    + 7
    + 8from ml.exceptions import ConfigError, PipelineContractError
    + 9from ml.post_promotion.monitoring.extraction.expected_performance import get_expected_performance
    +10from ml.post_promotion.monitoring.performance.calculation import calculate_current_performance
    +11from ml.promotion.config.promotion_thresholds import MetricName, PromotionMetricsConfig
    +12from ml.promotion.config.registry_entry import RegistryEntry
    +13
    +14logger = logging.getLogger(__name__)
    +15
    +16def assess_model_performance(
    +17    *,
    +18    args: argparse.Namespace,
    +19    model_metadata: RegistryEntry,
    +20    stage: Literal["production", "staging"],
    +21    target: pd.Series,
    +22    promotion_metrics_info: PromotionMetricsConfig
    +23) -> dict[str | MetricName, dict[str, Any]]:
    +24    """Assess model performance against expected thresholds.
    +25
    +26    Args:
    +27        args: Command-line arguments containing necessary identifiers.
    +28        model_metadata: Metadata for the model being evaluated.
    +29        stage: The stage of the model being evaluated ("production" or "staging").
    +30        target: The target variable for the inference data.
    +31        promotion_metrics_info: Configuration containing expected performance thresholds and directions for each metric.
    +32
    +33    Returns:
    +34        A dictionary containing the performance assessment results for each metric.
    +35    """
    +36    expected_performance = get_expected_performance(model_metadata, promotion_metrics_info)
    +37    current_performance = calculate_current_performance(
    +38        args=args,
    +39        model_metadata=model_metadata,
    +40        stage=stage,
    +41        target=target
    +42    )
    +43
    +44    performance_results: dict[str | MetricName, dict[str, Any]] = {}
    +45
    +46    for metric in promotion_metrics_info.metrics:
    +47        expected_value = expected_performance[metric]
    +48
    +49        current_value = current_performance[metric]
    +50        if current_value is None or not isinstance(current_value, (int, float)):
    +51            msg = f"Current performance is missing value for metric '{metric}'. Cannot assess model performance against expected thresholds. Current performance content: {current_performance}"
    +52            logger.error(msg)
    +53            raise PipelineContractError(msg)
    +54
    +55        direction = promotion_metrics_info.directions[metric]
    +56        if direction == "maximize":
    +57            if current_value < expected_value:
    +58                logger.warning(f"{stage.capitalize()} model performance degradation detected for metric '{metric}': expected >= {expected_value:.4f}, got {current_value:.4f}")
    +59                performance_results[metric] = {
    +60                    "status": "degradation",
    +61                    "expected": expected_value,
    +62                    "current": current_value,
    +63                    "direction": direction
    +64                }
    +65            else:
    +66                logger.info(f"{stage.capitalize()} model performance for metric '{metric}' is acceptable: expected >= {expected_value:.4f}, got {current_value:.4f}")
    +67                performance_results[metric] = {
    +68                    "status": "acceptable",
    +69                    "expected": expected_value,
    +70                    "current": current_value,
    +71                    "direction": direction
    +72                }
    +73        elif direction == "minimize":
    +74            if current_value > expected_value:
    +75                logger.warning(f"{stage.capitalize()} model performance degradation detected for metric '{metric}': expected <= {expected_value:.4f}, got {current_value:.4f}")
    +76                performance_results[metric] = {
    +77                    "status": "degradation",
    +78                    "expected": expected_value,
    +79                    "current": current_value,
    +80                    "direction": direction
    +81                }
    +82            else:
    +83                logger.info(f"{stage.capitalize()} model performance for metric '{metric}' is acceptable: expected <= {expected_value:.4f}, got {current_value:.4f}")
    +84                performance_results[metric] = {
    +85                    "status": "acceptable",
    +86                    "expected": expected_value,
    +87                    "current": current_value,
    +88                    "direction": direction
    +89                }
    +90        else:
    +91            msg = f"Invalid direction '{direction}' for metric '{metric}'. Must be 'higher' or 'lower'."
    +92            logger.error(msg)
    +93            raise ConfigError(msg)
    +94    return performance_results
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.monitoring.performance.assessment (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + assess_model_performance( *, args: argparse.Namespace, model_metadata: ml.promotion.config.registry_entry.RegistryEntry, stage: Literal['production', 'staging'], target: pandas.core.series.Series, promotion_metrics_info: ml.promotion.config.promotion_thresholds.PromotionMetricsConfig) -> dict[str | ml.promotion.config.promotion_thresholds.MetricName, dict[str, typing.Any]]: + + + +
    + +
    17def assess_model_performance(
    +18    *,
    +19    args: argparse.Namespace,
    +20    model_metadata: RegistryEntry,
    +21    stage: Literal["production", "staging"],
    +22    target: pd.Series,
    +23    promotion_metrics_info: PromotionMetricsConfig
    +24) -> dict[str | MetricName, dict[str, Any]]:
    +25    """Assess model performance against expected thresholds.
    +26
    +27    Args:
    +28        args: Command-line arguments containing necessary identifiers.
    +29        model_metadata: Metadata for the model being evaluated.
    +30        stage: The stage of the model being evaluated ("production" or "staging").
    +31        target: The target variable for the inference data.
    +32        promotion_metrics_info: Configuration containing expected performance thresholds and directions for each metric.
    +33
    +34    Returns:
    +35        A dictionary containing the performance assessment results for each metric.
    +36    """
    +37    expected_performance = get_expected_performance(model_metadata, promotion_metrics_info)
    +38    current_performance = calculate_current_performance(
    +39        args=args,
    +40        model_metadata=model_metadata,
    +41        stage=stage,
    +42        target=target
    +43    )
    +44
    +45    performance_results: dict[str | MetricName, dict[str, Any]] = {}
    +46
    +47    for metric in promotion_metrics_info.metrics:
    +48        expected_value = expected_performance[metric]
    +49
    +50        current_value = current_performance[metric]
    +51        if current_value is None or not isinstance(current_value, (int, float)):
    +52            msg = f"Current performance is missing value for metric '{metric}'. Cannot assess model performance against expected thresholds. Current performance content: {current_performance}"
    +53            logger.error(msg)
    +54            raise PipelineContractError(msg)
    +55
    +56        direction = promotion_metrics_info.directions[metric]
    +57        if direction == "maximize":
    +58            if current_value < expected_value:
    +59                logger.warning(f"{stage.capitalize()} model performance degradation detected for metric '{metric}': expected >= {expected_value:.4f}, got {current_value:.4f}")
    +60                performance_results[metric] = {
    +61                    "status": "degradation",
    +62                    "expected": expected_value,
    +63                    "current": current_value,
    +64                    "direction": direction
    +65                }
    +66            else:
    +67                logger.info(f"{stage.capitalize()} model performance for metric '{metric}' is acceptable: expected >= {expected_value:.4f}, got {current_value:.4f}")
    +68                performance_results[metric] = {
    +69                    "status": "acceptable",
    +70                    "expected": expected_value,
    +71                    "current": current_value,
    +72                    "direction": direction
    +73                }
    +74        elif direction == "minimize":
    +75            if current_value > expected_value:
    +76                logger.warning(f"{stage.capitalize()} model performance degradation detected for metric '{metric}': expected <= {expected_value:.4f}, got {current_value:.4f}")
    +77                performance_results[metric] = {
    +78                    "status": "degradation",
    +79                    "expected": expected_value,
    +80                    "current": current_value,
    +81                    "direction": direction
    +82                }
    +83            else:
    +84                logger.info(f"{stage.capitalize()} model performance for metric '{metric}' is acceptable: expected <= {expected_value:.4f}, got {current_value:.4f}")
    +85                performance_results[metric] = {
    +86                    "status": "acceptable",
    +87                    "expected": expected_value,
    +88                    "current": current_value,
    +89                    "direction": direction
    +90                }
    +91        else:
    +92            msg = f"Invalid direction '{direction}' for metric '{metric}'. Must be 'higher' or 'lower'."
    +93            logger.error(msg)
    +94            raise ConfigError(msg)
    +95    return performance_results
    +
    + + +

    Assess model performance against expected thresholds.

    + +

    Args: + args: Command-line arguments containing necessary identifiers. + model_metadata: Metadata for the model being evaluated. + stage: The stage of the model being evaluated ("production" or "staging"). + target: The target variable for the inference data. + promotion_metrics_info: Configuration containing expected performance thresholds and directions for each metric.

    + +

    Returns: + A dictionary containing the performance assessment results for each metric.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/performance/calculation.html b/docs/api/ml/ml/post_promotion/monitoring/performance/calculation.html new file mode 100644 index 00000000..b69c2741 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/performance/calculation.html @@ -0,0 +1,409 @@ + + + + + + + ml.post_promotion.monitoring.performance.calculation API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.performance.calculation

    + +

    Module for calculating current performance metrics for post-promotion monitoring.

    +
    + + + + + +
     1"""Module for calculating current performance metrics for post-promotion monitoring."""
    + 2import argparse
    + 3import logging
    + 4from typing import Literal
    + 5
    + 6import pandas as pd
    + 7
    + 8from ml.exceptions import PipelineContractError
    + 9from ml.post_promotion.monitoring.loading.predictions import load_predictions
    +10from ml.post_promotion.monitoring.loading.training_metrics import load_training_metrics_file
    +11from ml.promotion.config.registry_entry import RegistryEntry
    +12from ml.runners.evaluation.evaluators.classification.metrics import (
    +13    compute_metrics as compute_classification_metrics,
    +14)
    +15from ml.runners.evaluation.evaluators.regression.metrics import (
    +16    compute_metrics as compute_regression_metrics,
    +17)
    +18
    +19logger = logging.getLogger(__name__)
    +20
    +21def calculate_current_performance(
    +22    *,
    +23    args: argparse.Namespace,
    +24    model_metadata: RegistryEntry,
    +25    stage: Literal["production", "staging"],
    +26    target: pd.Series
    +27) -> dict[str, float]:
    +28    """Calculate current performance metrics based on predictions and target values.
    +29
    +30    Args:
    +31        args: Command-line arguments containing necessary identifiers.
    +32        model_metadata: Metadata for the model being evaluated.
    +33        stage: The stage of the model being evaluated ("production" or "staging").
    +34        target: The target variable for the inference data.
    +35
    +36    Returns:
    +37        A dictionary containing the current performance metrics.
    +38    """
    +39    predictions = load_predictions(args, stage)
    +40    df = predictions.join(target.rename("target"), how="inner")
    +41    y_true = df["target"]
    +42    y_pred = df["prediction"]
    +43    training_metrics = load_training_metrics_file(args, model_metadata)
    +44    if training_metrics.task_type == "classification":
    +45        threshold = None
    +46        threshold_info = training_metrics.metrics.get("threshold", {})
    +47        if isinstance(threshold_info, dict):
    +48            threshold = threshold_info.get("value")
    +49        if threshold is None or not isinstance(threshold, (int, float)):
    +50            msg = "Training metrics for classification task is missing 'threshold' information. Defaulting to 0.5."
    +51            logger.critical(msg)
    +52            threshold = 0.5
    +53        # Consider changing for multiclass in the future
    +54        y_prob = predictions.get("proba_1") if "proba_1" in predictions.columns else None
    +55        current_performance = compute_classification_metrics(
    +56            y_true=y_true,
    +57            y_pred=y_pred,
    +58            y_prob=y_prob,
    +59            threshold=threshold,
    +60        )
    +61    elif training_metrics.task_type == "regression":
    +62        current_performance = compute_regression_metrics(
    +63            y_true=y_true,
    +64            y_pred=y_pred
    +65        )
    +66    else:
    +67        msg = f"Unsupported task type in training metrics: {training_metrics.task_type}"
    +68        logger.error(msg)
    +69        raise PipelineContractError(msg)
    +70    return current_performance
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.monitoring.performance.calculation (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + calculate_current_performance( *, args: argparse.Namespace, model_metadata: ml.promotion.config.registry_entry.RegistryEntry, stage: Literal['production', 'staging'], target: pandas.core.series.Series) -> dict[str, float]: + + + +
    + +
    22def calculate_current_performance(
    +23    *,
    +24    args: argparse.Namespace,
    +25    model_metadata: RegistryEntry,
    +26    stage: Literal["production", "staging"],
    +27    target: pd.Series
    +28) -> dict[str, float]:
    +29    """Calculate current performance metrics based on predictions and target values.
    +30
    +31    Args:
    +32        args: Command-line arguments containing necessary identifiers.
    +33        model_metadata: Metadata for the model being evaluated.
    +34        stage: The stage of the model being evaluated ("production" or "staging").
    +35        target: The target variable for the inference data.
    +36
    +37    Returns:
    +38        A dictionary containing the current performance metrics.
    +39    """
    +40    predictions = load_predictions(args, stage)
    +41    df = predictions.join(target.rename("target"), how="inner")
    +42    y_true = df["target"]
    +43    y_pred = df["prediction"]
    +44    training_metrics = load_training_metrics_file(args, model_metadata)
    +45    if training_metrics.task_type == "classification":
    +46        threshold = None
    +47        threshold_info = training_metrics.metrics.get("threshold", {})
    +48        if isinstance(threshold_info, dict):
    +49            threshold = threshold_info.get("value")
    +50        if threshold is None or not isinstance(threshold, (int, float)):
    +51            msg = "Training metrics for classification task is missing 'threshold' information. Defaulting to 0.5."
    +52            logger.critical(msg)
    +53            threshold = 0.5
    +54        # Consider changing for multiclass in the future
    +55        y_prob = predictions.get("proba_1") if "proba_1" in predictions.columns else None
    +56        current_performance = compute_classification_metrics(
    +57            y_true=y_true,
    +58            y_pred=y_pred,
    +59            y_prob=y_prob,
    +60            threshold=threshold,
    +61        )
    +62    elif training_metrics.task_type == "regression":
    +63        current_performance = compute_regression_metrics(
    +64            y_true=y_true,
    +65            y_pred=y_pred
    +66        )
    +67    else:
    +68        msg = f"Unsupported task type in training metrics: {training_metrics.task_type}"
    +69        logger.error(msg)
    +70        raise PipelineContractError(msg)
    +71    return current_performance
    +
    + + +

    Calculate current performance metrics based on predictions and target values.

    + +

    Args: + args: Command-line arguments containing necessary identifiers. + model_metadata: Metadata for the model being evaluated. + stage: The stage of the model being evaluated ("production" or "staging"). + target: The target variable for the inference data.

    + +

    Returns: + A dictionary containing the current performance metrics.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/performance/comparison.html b/docs/api/ml/ml/post_promotion/monitoring/performance/comparison.html new file mode 100644 index 00000000..3236ccb3 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/performance/comparison.html @@ -0,0 +1,410 @@ + + + + + + + ml.post_promotion.monitoring.performance.comparison API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.performance.comparison

    + +

    A module for comparing performance metrics between production and staging models in post-promotion monitoring.

    +
    + + + + + +
     1"""A module for comparing performance metrics between production and staging models in post-promotion monitoring."""
    + 2
    + 3import logging
    + 4from typing import Any
    + 5
    + 6from ml.exceptions import ConfigError, PipelineContractError
    + 7from ml.post_promotion.monitoring.classes.function_returns import MonitoringExecutionOutput
    + 8from ml.promotion.config.promotion_thresholds import MetricName
    + 9
    +10logger = logging.getLogger(__name__)
    +11
    +12def compare_production_and_staging_performance(
    +13    prod_monitoring_output: MonitoringExecutionOutput,
    +14    stage_monitoring_output: MonitoringExecutionOutput
    +15) -> dict[str, Any]:
    +16    """Compare performance metrics between production and staging monitoring models.
    +17
    +18    Args:
    +19        prod_monitoring_output: The monitoring output from the production model.
    +20        stage_monitoring_output: The monitoring output from the staging model.
    +21
    +22    Returns:
    +23        A dictionary containing the comparison results for each metric.
    +24    """
    +25    performance_comparison: dict[str | MetricName, dict[str, Any]] = {}
    +26
    +27    for metric in prod_monitoring_output.performance_results:
    +28        if metric not in stage_monitoring_output.performance_results:
    +29            logger.warning(f"Metric '{metric}' is present in production monitoring results but missing in staging monitoring results. Skipping comparison for this metric.")
    +30            continue
    +31        prod_metric_info = prod_monitoring_output.performance_results[metric]
    +32        stage_metric_info = stage_monitoring_output.performance_results[metric]
    +33
    +34        prod_perf = prod_metric_info["current"]
    +35        stage_perf = stage_metric_info["current"]
    +36
    +37        if not isinstance(prod_perf, (int, float)) or not isinstance(stage_perf, (int, float)):
    +38            msg = f"Current performance values for metric '{metric}' must be numeric for comparison. Got production: {prod_perf} ({type(prod_perf)}), staging: {stage_perf} ({type(stage_perf)})."
    +39            logger.error(msg)
    +40            raise PipelineContractError(msg)
    +41
    +42        if prod_metric_info["direction"] != stage_metric_info["direction"]:
    +43            msg = f"Direction for metric '{metric}' is different between production and staging: '{prod_metric_info['direction']}' vs '{stage_metric_info['direction']}'. This should not happen."
    +44            logger.error(msg)
    +45            raise ConfigError(msg)
    +46
    +47        direction = prod_metric_info["direction"]
    +48        if direction == "maximize":
    +49            diff = stage_perf - prod_perf
    +50            status = "improvement" if diff > 0 else "degradation" if diff < 0 else "no_change"
    +51        elif direction == "minimize":
    +52            diff = prod_perf - stage_perf
    +53            status = "improvement" if diff > 0 else "degradation" if diff < 0 else "no_change"
    +54        else:
    +55            msg = f"Invalid direction '{direction}' for metric '{metric}'. Must be 'maximize' or 'minimize'."
    +56            logger.error(msg)
    +57            raise ConfigError(msg)
    +58
    +59        performance_comparison[metric] = {
    +60            "production": prod_perf,
    +61            "staging": stage_perf,
    +62            "difference": diff,
    +63            "status": status,
    +64            "direction": direction
    +65        }
    +66
    +67    return performance_comparison
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.monitoring.performance.comparison (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + compare_production_and_staging_performance( prod_monitoring_output: ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput, stage_monitoring_output: ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput) -> dict[str, typing.Any]: + + + +
    + +
    13def compare_production_and_staging_performance(
    +14    prod_monitoring_output: MonitoringExecutionOutput,
    +15    stage_monitoring_output: MonitoringExecutionOutput
    +16) -> dict[str, Any]:
    +17    """Compare performance metrics between production and staging monitoring models.
    +18
    +19    Args:
    +20        prod_monitoring_output: The monitoring output from the production model.
    +21        stage_monitoring_output: The monitoring output from the staging model.
    +22
    +23    Returns:
    +24        A dictionary containing the comparison results for each metric.
    +25    """
    +26    performance_comparison: dict[str | MetricName, dict[str, Any]] = {}
    +27
    +28    for metric in prod_monitoring_output.performance_results:
    +29        if metric not in stage_monitoring_output.performance_results:
    +30            logger.warning(f"Metric '{metric}' is present in production monitoring results but missing in staging monitoring results. Skipping comparison for this metric.")
    +31            continue
    +32        prod_metric_info = prod_monitoring_output.performance_results[metric]
    +33        stage_metric_info = stage_monitoring_output.performance_results[metric]
    +34
    +35        prod_perf = prod_metric_info["current"]
    +36        stage_perf = stage_metric_info["current"]
    +37
    +38        if not isinstance(prod_perf, (int, float)) or not isinstance(stage_perf, (int, float)):
    +39            msg = f"Current performance values for metric '{metric}' must be numeric for comparison. Got production: {prod_perf} ({type(prod_perf)}), staging: {stage_perf} ({type(stage_perf)})."
    +40            logger.error(msg)
    +41            raise PipelineContractError(msg)
    +42
    +43        if prod_metric_info["direction"] != stage_metric_info["direction"]:
    +44            msg = f"Direction for metric '{metric}' is different between production and staging: '{prod_metric_info['direction']}' vs '{stage_metric_info['direction']}'. This should not happen."
    +45            logger.error(msg)
    +46            raise ConfigError(msg)
    +47
    +48        direction = prod_metric_info["direction"]
    +49        if direction == "maximize":
    +50            diff = stage_perf - prod_perf
    +51            status = "improvement" if diff > 0 else "degradation" if diff < 0 else "no_change"
    +52        elif direction == "minimize":
    +53            diff = prod_perf - stage_perf
    +54            status = "improvement" if diff > 0 else "degradation" if diff < 0 else "no_change"
    +55        else:
    +56            msg = f"Invalid direction '{direction}' for metric '{metric}'. Must be 'maximize' or 'minimize'."
    +57            logger.error(msg)
    +58            raise ConfigError(msg)
    +59
    +60        performance_comparison[metric] = {
    +61            "production": prod_perf,
    +62            "staging": stage_perf,
    +63            "difference": diff,
    +64            "status": status,
    +65            "direction": direction
    +66        }
    +67
    +68    return performance_comparison
    +
    + + +

    Compare performance metrics between production and staging monitoring models.

    + +

    Args: + prod_monitoring_output: The monitoring output from the production model. + stage_monitoring_output: The monitoring output from the staging model.

    + +

    Returns: + A dictionary containing the comparison results for each metric.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/persistence.html b/docs/api/ml/ml/post_promotion/monitoring/persistence.html new file mode 100644 index 00000000..7e994b28 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/persistence.html @@ -0,0 +1,244 @@ + + + + + + + ml.post_promotion.monitoring.persistence API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.persistence

    + +

    A package for persistence-related functionality in the post-promotion monitoring pipeline.

    +
    + + + + + +
    1"""A package for persistence-related functionality in the post-promotion monitoring pipeline."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/monitoring/persistence/prepare_metadata.html b/docs/api/ml/ml/post_promotion/monitoring/persistence/prepare_metadata.html new file mode 100644 index 00000000..f0d18cac --- /dev/null +++ b/docs/api/ml/ml/post_promotion/monitoring/persistence/prepare_metadata.html @@ -0,0 +1,354 @@ + + + + + + + ml.post_promotion.monitoring.persistence.prepare_metadata API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.monitoring.persistence.prepare_metadata

    + +

    A module for preparing metadata for post-promotion monitoring.

    +
    + + + + + +
     1"""A module for preparing metadata for post-promotion monitoring."""
    + 2
    + 3import argparse
    + 4from datetime import datetime
    + 5from typing import Any
    + 6
    + 7from ml.post_promotion.monitoring.classes.function_returns import MonitoringExecutionOutput
    + 8
    + 9
    +10def prepare_metadata(
    +11    *,
    +12    args: argparse.Namespace,
    +13    run_id: str,
    +14    timestamp: datetime,
    +15    prod_monitoring_output: MonitoringExecutionOutput | None = None,
    +16    stage_monitoring_output: MonitoringExecutionOutput | None = None
    +17) -> dict[str, Any]:
    +18    """Prepare metadata for post-promotion monitoring.
    +19
    +20    Args:
    +21        args: Command-line arguments containing necessary identifiers.
    +22        run_id: The ID of the monitoring run.
    +23        timestamp: The timestamp of the monitoring run.
    +24        prod_monitoring_output: The monitoring output from the production model.
    +25        stage_monitoring_output: The monitoring output from the staging model.
    +26
    +27    Returns:
    +28        A dictionary containing the prepared metadata.
    +29    """
    +30    metadata = {
    +31        "problem_type": args.problem,
    +32        "segment": args.segment,
    +33        "timestamp": timestamp.isoformat(),
    +34        "run_id": run_id,
    +35        "inference_run_id": args.inference_run_id,
    +36    }
    +37
    +38    if prod_monitoring_output:
    +39        metadata["production"] = prod_monitoring_output.__dict__
    +40
    +41    if stage_monitoring_output:
    +42        metadata["staging"] = stage_monitoring_output.__dict__
    +43
    +44    return metadata
    +
    + + +
    +
    + +
    + + def + prepare_metadata( *, args: argparse.Namespace, run_id: str, timestamp: datetime.datetime, prod_monitoring_output: ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput | None = None, stage_monitoring_output: ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput | None = None) -> dict[str, typing.Any]: + + + +
    + +
    11def prepare_metadata(
    +12    *,
    +13    args: argparse.Namespace,
    +14    run_id: str,
    +15    timestamp: datetime,
    +16    prod_monitoring_output: MonitoringExecutionOutput | None = None,
    +17    stage_monitoring_output: MonitoringExecutionOutput | None = None
    +18) -> dict[str, Any]:
    +19    """Prepare metadata for post-promotion monitoring.
    +20
    +21    Args:
    +22        args: Command-line arguments containing necessary identifiers.
    +23        run_id: The ID of the monitoring run.
    +24        timestamp: The timestamp of the monitoring run.
    +25        prod_monitoring_output: The monitoring output from the production model.
    +26        stage_monitoring_output: The monitoring output from the staging model.
    +27
    +28    Returns:
    +29        A dictionary containing the prepared metadata.
    +30    """
    +31    metadata = {
    +32        "problem_type": args.problem,
    +33        "segment": args.segment,
    +34        "timestamp": timestamp.isoformat(),
    +35        "run_id": run_id,
    +36        "inference_run_id": args.inference_run_id,
    +37    }
    +38
    +39    if prod_monitoring_output:
    +40        metadata["production"] = prod_monitoring_output.__dict__
    +41
    +42    if stage_monitoring_output:
    +43        metadata["staging"] = stage_monitoring_output.__dict__
    +44
    +45    return metadata
    +
    + + +

    Prepare metadata for post-promotion monitoring.

    + +

    Args: + args: Command-line arguments containing necessary identifiers. + run_id: The ID of the monitoring run. + timestamp: The timestamp of the monitoring run. + prod_monitoring_output: The monitoring output from the production model. + stage_monitoring_output: The monitoring output from the staging model.

    + +

    Returns: + A dictionary containing the prepared metadata.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/shared.html b/docs/api/ml/ml/post_promotion/shared.html new file mode 100644 index 00000000..5c4194fc --- /dev/null +++ b/docs/api/ml/ml/post_promotion/shared.html @@ -0,0 +1,245 @@ + + + + + + + ml.post_promotion.shared API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.shared

    + +

    A package for shared utilities in post-promotion pipelines.

    +
    + + + + + +
    1"""A package for shared utilities in post-promotion pipelines."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/shared/classes.html b/docs/api/ml/ml/post_promotion/shared/classes.html new file mode 100644 index 00000000..558730a0 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/shared/classes.html @@ -0,0 +1,244 @@ + + + + + + + ml.post_promotion.shared.classes API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.shared.classes

    + +

    A package for shared classes in post-promotion pipelines.

    +
    + + + + + +
    1"""A package for shared classes in post-promotion pipelines."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/shared/classes/function_returns.html b/docs/api/ml/ml/post_promotion/shared/classes/function_returns.html new file mode 100644 index 00000000..195552c3 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/shared/classes/function_returns.html @@ -0,0 +1,443 @@ + + + + + + + ml.post_promotion.shared.classes.function_returns API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.shared.classes.function_returns

    + +

    A module for defining function return types in post-promotion pipelines.

    +
    + + + + + +
     1"""A module for defining function return types in post-promotion pipelines."""
    + 2from dataclasses import dataclass
    + 3
    + 4import pandas as pd
    + 5
    + 6from ml.modeling.models.feature_lineage import FeatureLineage
    + 7from ml.promotion.config.registry_entry import RegistryEntry
    + 8
    + 9
    +10@dataclass
    +11class ModelRegistryInfo:
    +12    """A dataclass to hold model registry information."""
    +13    prod_meta: RegistryEntry | None
    +14    stage_meta: RegistryEntry | None
    +15
    +16@dataclass
    +17class PrepareFeaturesReturn:
    +18    """A dataclass to hold the return values of the prepare_features function."""
    +19    features: pd.DataFrame
    +20    entity_key: str
    +21    feature_lineage: list[FeatureLineage]
    +22    target: pd.Series
    +
    + + +
    +
    + +
    +
    @dataclass
    + + class + ModelRegistryInfo: + + + +
    + +
    11@dataclass
    +12class ModelRegistryInfo:
    +13    """A dataclass to hold model registry information."""
    +14    prod_meta: RegistryEntry | None
    +15    stage_meta: RegistryEntry | None
    +
    + + +

    A dataclass to hold model registry information.

    +
    + + +
    +
    + + ModelRegistryInfo( prod_meta: ml.promotion.config.registry_entry.RegistryEntry | None, stage_meta: ml.promotion.config.registry_entry.RegistryEntry | None) + + +
    + + + + +
    +
    + + + + + +
    +
    + + + + + +
    +
    +
    + +
    +
    @dataclass
    + + class + PrepareFeaturesReturn: + + + +
    + +
    17@dataclass
    +18class PrepareFeaturesReturn:
    +19    """A dataclass to hold the return values of the prepare_features function."""
    +20    features: pd.DataFrame
    +21    entity_key: str
    +22    feature_lineage: list[FeatureLineage]
    +23    target: pd.Series
    +
    + + +

    A dataclass to hold the return values of the prepare_features function.

    +
    + + +
    +
    + + PrepareFeaturesReturn( features: pandas.core.frame.DataFrame, entity_key: str, feature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage], target: pandas.core.series.Series) + + +
    + + + + +
    +
    +
    + features: pandas.core.frame.DataFrame + + +
    + + + + +
    +
    +
    + entity_key: str + + +
    + + + + +
    +
    +
    + feature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage] + + +
    + + + + +
    +
    +
    + target: pandas.core.series.Series + + +
    + + + + +
    +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/shared/loading.html b/docs/api/ml/ml/post_promotion/shared/loading.html new file mode 100644 index 00000000..2e02fdd5 --- /dev/null +++ b/docs/api/ml/ml/post_promotion/shared/loading.html @@ -0,0 +1,245 @@ + + + + + + + ml.post_promotion.shared.loading API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.shared.loading

    + +

    A package for shared loading utilities in post-promotion pipelines.

    +
    + + + + + +
    1"""A package for shared loading utilities in post-promotion pipelines."""
    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/shared/loading/features.html b/docs/api/ml/ml/post_promotion/shared/loading/features.html new file mode 100644 index 00000000..e71c83ca --- /dev/null +++ b/docs/api/ml/ml/post_promotion/shared/loading/features.html @@ -0,0 +1,398 @@ + + + + + + + ml.post_promotion.shared.loading.features API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.shared.loading.features

    + +

    Module responsible for preparing features for post-promotion pipelines (monitoring and inference).

    +
    + + + + + +
     1"""Module responsible for preparing features for post-promotion pipelines (monitoring and inference)."""
    + 2import argparse
    + 3from pathlib import Path
    + 4
    + 5from ml.config.loader import load_and_validate_config
    + 6from ml.features.loading.resolve_feature_snapshots import resolve_feature_snapshots
    + 7from ml.metadata.validation.runners.training import validate_training_metadata
    + 8from ml.metadata.validation.search.search import validate_search_record
    + 9from ml.post_promotion.shared.classes.function_returns import PrepareFeaturesReturn
    +10from ml.promotion.config.registry_entry import RegistryEntry
    +11from ml.utils.loaders import load_json
    +12
    +13
    +14def prepare_features(
    +15    *,
    +16    args: argparse.Namespace,
    +17    model_metadata: RegistryEntry,
    +18    snapshot_bindings_id: str | None = None
    +19) -> PrepareFeaturesReturn:
    +20    # Lazy import to avoid circular dependencies
    +21    from ml.features.loading.features_and_target import load_features_and_target
    +22
    +23    experiment_id = model_metadata.experiment_id
    +24    train_run_id = model_metadata.train_run_id
    +25
    +26    experiment_path = Path("experiments") / args.problem / args.segment / model_metadata.model_version / experiment_id
    +27
    +28    training_metadata_file = experiment_path / "training" / train_run_id / "metadata.json"
    +29    training_metadata = validate_training_metadata(load_json(training_metadata_file))
    +30
    +31    feature_sets = training_metadata.lineage.feature_lineage
    +32
    +33    if snapshot_bindings_id is None:
    +34        snapshot_binding = training_metadata.lineage.feature_lineage
    +35        resolved_snapshots = resolve_feature_snapshots(
    +36            feature_store_path=Path("feature_store"),
    +37            feature_sets=feature_sets,
    +38            snapshot_binding = snapshot_binding
    +39        )
    +40    else:
    +41        resolved_snapshots = resolve_feature_snapshots(
    +42            feature_store_path=Path("feature_store"),
    +43            feature_sets=feature_sets,
    +44            snapshot_binding_key=snapshot_bindings_id
    +45        )
    +46
    +47    search_metadata = validate_search_record(
    +48        load_json(experiment_path / "search" / "metadata.json")
    +49    )
    +50
    +51    model_version = search_metadata.metadata.version
    +52    env = search_metadata.metadata.env
    +53
    +54    model_cfg = load_and_validate_config(
    +55        path=Path("configs") / "search" / args.problem / args.segment / f"{model_version}.yaml",
    +56        search_dir=None,
    +57        cfg_type="search",
    +58        env=env
    +59    )
    +60
    +61
    +62    X, y, _, entity_key = load_features_and_target(
    +63        model_cfg,
    +64        snapshot_selection=resolved_snapshots,
    +65        drop_entity_key=False, # could be useful for joins
    +66        strict=True
    +67    )
    +68
    +69    return PrepareFeaturesReturn(
    +70        features=X,
    +71        entity_key=entity_key,
    +72        feature_lineage=training_metadata.lineage.feature_lineage,
    +73        target=y
    +74    )
    +
    + + +
    +
    + +
    + + def + prepare_features( *, args: argparse.Namespace, model_metadata: ml.promotion.config.registry_entry.RegistryEntry, snapshot_bindings_id: str | None = None) -> ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn: + + + +
    + +
    15def prepare_features(
    +16    *,
    +17    args: argparse.Namespace,
    +18    model_metadata: RegistryEntry,
    +19    snapshot_bindings_id: str | None = None
    +20) -> PrepareFeaturesReturn:
    +21    # Lazy import to avoid circular dependencies
    +22    from ml.features.loading.features_and_target import load_features_and_target
    +23
    +24    experiment_id = model_metadata.experiment_id
    +25    train_run_id = model_metadata.train_run_id
    +26
    +27    experiment_path = Path("experiments") / args.problem / args.segment / model_metadata.model_version / experiment_id
    +28
    +29    training_metadata_file = experiment_path / "training" / train_run_id / "metadata.json"
    +30    training_metadata = validate_training_metadata(load_json(training_metadata_file))
    +31
    +32    feature_sets = training_metadata.lineage.feature_lineage
    +33
    +34    if snapshot_bindings_id is None:
    +35        snapshot_binding = training_metadata.lineage.feature_lineage
    +36        resolved_snapshots = resolve_feature_snapshots(
    +37            feature_store_path=Path("feature_store"),
    +38            feature_sets=feature_sets,
    +39            snapshot_binding = snapshot_binding
    +40        )
    +41    else:
    +42        resolved_snapshots = resolve_feature_snapshots(
    +43            feature_store_path=Path("feature_store"),
    +44            feature_sets=feature_sets,
    +45            snapshot_binding_key=snapshot_bindings_id
    +46        )
    +47
    +48    search_metadata = validate_search_record(
    +49        load_json(experiment_path / "search" / "metadata.json")
    +50    )
    +51
    +52    model_version = search_metadata.metadata.version
    +53    env = search_metadata.metadata.env
    +54
    +55    model_cfg = load_and_validate_config(
    +56        path=Path("configs") / "search" / args.problem / args.segment / f"{model_version}.yaml",
    +57        search_dir=None,
    +58        cfg_type="search",
    +59        env=env
    +60    )
    +61
    +62
    +63    X, y, _, entity_key = load_features_and_target(
    +64        model_cfg,
    +65        snapshot_selection=resolved_snapshots,
    +66        drop_entity_key=False, # could be useful for joins
    +67        strict=True
    +68    )
    +69
    +70    return PrepareFeaturesReturn(
    +71        features=X,
    +72        entity_key=entity_key,
    +73        feature_lineage=training_metadata.lineage.feature_lineage,
    +74        target=y
    +75    )
    +
    + + + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/post_promotion/shared/loading/model_registry.html b/docs/api/ml/ml/post_promotion/shared/loading/model_registry.html new file mode 100644 index 00000000..b5e6a94e --- /dev/null +++ b/docs/api/ml/ml/post_promotion/shared/loading/model_registry.html @@ -0,0 +1,347 @@ + + + + + + + ml.post_promotion.shared.loading.model_registry API documentation + + + + + + + + + +
    +
    +

    +ml.post_promotion.shared.loading.model_registry

    + +

    A module for loading model registry information in post-promotion pipelines.

    +
    + + + + + +
     1"""A module for loading model registry information in post-promotion pipelines."""
    + 2import argparse
    + 3import logging
    + 4from pathlib import Path
    + 5
    + 6from ml.exceptions import PipelineContractError
    + 7from ml.post_promotion.shared.classes.function_returns import ModelRegistryInfo
    + 8from ml.promotion.validation.registry_entry import validate_registry_entry
    + 9from ml.utils.loaders import load_yaml
    +10
    +11logger = logging.getLogger(__name__)
    +12
    +13def get_model_registry_info(args: argparse.Namespace) -> ModelRegistryInfo:
    +14    """Fetch model registry information for the latest snapshot.
    +15
    +16    Returns:
    +17        ModelRegistryInfo: An instance of ModelRegistryInfo containing model registry information.
    +18    """
    +19    model_registry = Path("model_registry/models.yaml")
    +20    registry = load_yaml(model_registry)
    +21
    +22    entry = registry.get(args.problem, {}).get(args.segment, {})
    +23
    +24    prod_meta_raw = entry.get("production")
    +25    stage_meta_raw = entry.get("staging")
    +26
    +27    if not prod_meta_raw and not stage_meta_raw:
    +28        msg = f"No production or staging model found in registry for problem '{args.problem}' and segment '{args.segment}'."
    +29        logger.error(msg)
    +30        raise PipelineContractError(msg)
    +31
    +32    prod_meta, stage_meta = None, None
    +33    if prod_meta_raw:
    +34        prod_meta = validate_registry_entry(prod_meta_raw)
    +35    if stage_meta_raw:
    +36        stage_meta = validate_registry_entry(stage_meta_raw)
    +37
    +38    return ModelRegistryInfo(prod_meta=prod_meta, stage_meta=stage_meta)
    +
    + + +
    +
    +
    + logger = +<Logger ml.post_promotion.shared.loading.model_registry (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + get_model_registry_info( args: argparse.Namespace) -> ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo: + + + +
    + +
    14def get_model_registry_info(args: argparse.Namespace) -> ModelRegistryInfo:
    +15    """Fetch model registry information for the latest snapshot.
    +16
    +17    Returns:
    +18        ModelRegistryInfo: An instance of ModelRegistryInfo containing model registry information.
    +19    """
    +20    model_registry = Path("model_registry/models.yaml")
    +21    registry = load_yaml(model_registry)
    +22
    +23    entry = registry.get(args.problem, {}).get(args.segment, {})
    +24
    +25    prod_meta_raw = entry.get("production")
    +26    stage_meta_raw = entry.get("staging")
    +27
    +28    if not prod_meta_raw and not stage_meta_raw:
    +29        msg = f"No production or staging model found in registry for problem '{args.problem}' and segment '{args.segment}'."
    +30        logger.error(msg)
    +31        raise PipelineContractError(msg)
    +32
    +33    prod_meta, stage_meta = None, None
    +34    if prod_meta_raw:
    +35        prod_meta = validate_registry_entry(prod_meta_raw)
    +36    if stage_meta_raw:
    +37        stage_meta = validate_registry_entry(stage_meta_raw)
    +38
    +39    return ModelRegistryInfo(prod_meta=prod_meta, stage_meta=stage_meta)
    +
    + + +

    Fetch model registry information for the latest snapshot.

    + +

    Returns: + ModelRegistryInfo: An instance of ModelRegistryInfo containing model registry information.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/promotion/comparisons/production.html b/docs/api/ml/ml/promotion/comparisons/production.html index bec01f1e..6fddb5f2 100644 --- a/docs/api/ml/ml/promotion/comparisons/production.html +++ b/docs/api/ml/ml/promotion/comparisons/production.html @@ -64,7 +64,7 @@

    3import logging 4 5from ml.exceptions import ConfigError, UserError - 6from ml.promotion.config.models import Direction, MetricName, MetricSet + 6from ml.promotion.config.promotion_thresholds import Direction, MetricName, MetricSet 7from ml.promotion.constants.constants import COMPARISON_DIRECTIONS, ProductionComparisonResult 8 9logger = logging.getLogger(__name__) @@ -166,7 +166,7 @@

    def - compare_against_production_model( *, evaluation_metrics: dict[str, dict[str, float]], current_prod_model_info: dict | None, metric_sets: list[ml.promotion.config.models.MetricSet], metric_names: list[ml.promotion.config.models.MetricName], directions: dict[ml.promotion.config.models.MetricName, ml.promotion.config.models.Direction]) -> ml.promotion.constants.constants.ProductionComparisonResult: + compare_against_production_model( *, evaluation_metrics: dict[str, dict[str, float]], current_prod_model_info: dict | None, metric_sets: list[ml.promotion.config.promotion_thresholds.MetricSet], metric_names: list[ml.promotion.config.promotion_thresholds.MetricName], directions: dict[ml.promotion.config.promotion_thresholds.MetricName, ml.promotion.config.promotion_thresholds.Direction]) -> ml.promotion.constants.constants.ProductionComparisonResult: diff --git a/docs/api/ml/ml/promotion/comparisons/thresholds.html b/docs/api/ml/ml/promotion/comparisons/thresholds.html index cf696dbf..9ca4553f 100644 --- a/docs/api/ml/ml/promotion/comparisons/thresholds.html +++ b/docs/api/ml/ml/promotion/comparisons/thresholds.html @@ -64,7 +64,7 @@

    3import logging 4 5from ml.exceptions import ConfigError, UserError - 6from ml.promotion.config.models import PromotionThresholds + 6from ml.promotion.config.promotion_thresholds import PromotionThresholds 7from ml.promotion.constants.constants import COMPARISON_DIRECTIONS, ThresholdComparisonResult 8 9logger = logging.getLogger(__name__) @@ -160,7 +160,7 @@

    def - compare_against_thresholds( *, evaluation_metrics: dict[str, dict[str, float]], promotion_thresholds: ml.promotion.config.models.PromotionThresholds) -> ml.promotion.constants.constants.ThresholdComparisonResult: + compare_against_thresholds( *, evaluation_metrics: dict[str, dict[str, float]], promotion_thresholds: ml.promotion.config.promotion_thresholds.PromotionThresholds) -> ml.promotion.constants.constants.ThresholdComparisonResult: diff --git a/docs/api/ml/ml/promotion/config.html b/docs/api/ml/ml/promotion/config.html index 74ec101e..3447f9f7 100644 --- a/docs/api/ml/ml/promotion/config.html +++ b/docs/api/ml/ml/promotion/config.html @@ -29,7 +29,8 @@

    Submodules

    diff --git a/docs/api/ml/ml/promotion/config/models.html b/docs/api/ml/ml/promotion/config/promotion_thresholds.html similarity index 99% rename from docs/api/ml/ml/promotion/config/models.html rename to docs/api/ml/ml/promotion/config/promotion_thresholds.html index 647452cf..e7538038 100644 --- a/docs/api/ml/ml/promotion/config/models.html +++ b/docs/api/ml/ml/promotion/config/promotion_thresholds.html @@ -4,7 +4,7 @@ - ml.promotion.config.models API documentation + ml.promotion.config.promotion_thresholds API documentation @@ -206,14 +206,14 @@

    API Documentation

    -ml.promotion.config.models

    +ml.promotion.config.promotion_thresholds

    Pydantic schemas and enums for promotion policy configuration.

    - + - +
      1"""Pydantic schemas and enums for promotion policy configuration."""
       2
    @@ -366,7 +366,7 @@ 

    logger = -<Logger ml.promotion.config.models (WARNING)> +<Logger ml.promotion.config.promotion_thresholds (WARNING)>
    diff --git a/docs/api/ml/ml/promotion/config/registry_entry.html b/docs/api/ml/ml/promotion/config/registry_entry.html new file mode 100644 index 00000000..7525951d --- /dev/null +++ b/docs/api/ml/ml/promotion/config/registry_entry.html @@ -0,0 +1,1193 @@ + + + + + + + ml.promotion.config.registry_entry API documentation + + + + + + + + + +
    +
    +

    +ml.promotion.config.registry_entry

    + +

    A module defining the data model for a registry entry in the ML promotion process. This includes details about the experiment, artifacts, feature lineage, and metrics associated with a promoted model.

    +
    + + + + + +
     1"""A module defining the data model for a registry entry in the ML promotion process. This includes details about the experiment, artifacts, feature lineage, and metrics associated with a promoted model."""
    + 2from typing import Literal
    + 3
    + 4from pydantic import BaseModel
    + 5
    + 6
    + 7class RegistryArtifacts(BaseModel):
    + 8    model_hash: str
    + 9    model_path: str
    +10    pipeline_hash: str | None = None
    +11    pipeline_path: str | None = None
    +12    top_k_feature_importances_path: str | None = None
    +13    top_k_feature_importances_hash: str | None = None
    +14    top_k_shap_importances_path: str | None = None
    +15    top_k_shap_importances_hash: str | None = None
    +16
    +17class RegistryFeatureSetLineage(BaseModel):
    +18    name: str
    +19    version: str
    +20    snapshot_id: str
    +21    file_hash: str
    +22    in_memory_hash: str
    +23    feature_schema_hash: str
    +24    operator_hash: str
    +25    feature_type: Literal["tabular"]
    +26
    +27class RegistryEntryMetrics(BaseModel):
    +28    train: dict[str, float | int]
    +29    val: dict[str, float | int]
    +30    test: dict[str, float | int]
    +31
    +32class RegistryEntry(BaseModel):
    +33    experiment_id: str
    +34    train_run_id: str
    +35    eval_run_id: str
    +36    explain_run_id: str
    +37    model_version: str
    +38    pipeline_cfg_hash: str | None = None
    +39    artifacts: RegistryArtifacts
    +40    feature_lineage: list[RegistryFeatureSetLineage]
    +41    metrics: RegistryEntryMetrics
    +42    git_commit: str
    +43
    +44class ProductionRegistryEntry(RegistryEntry):
    +45    promotion_id: str
    +46    promoted_at: str
    +47
    +48class StagingRegistryEntry(RegistryEntry):
    +49    staging_id: str
    +50    staged_at: str
    +
    + + +
    +
    + +
    + + class + RegistryArtifacts(pydantic.main.BaseModel): + + + +
    + +
     8class RegistryArtifacts(BaseModel):
    + 9    model_hash: str
    +10    model_path: str
    +11    pipeline_hash: str | None = None
    +12    pipeline_path: str | None = None
    +13    top_k_feature_importances_path: str | None = None
    +14    top_k_feature_importances_hash: str | None = None
    +15    top_k_shap_importances_path: str | None = None
    +16    top_k_shap_importances_hash: str | None = None
    +
    + + +

    !!! abstract "Usage Documentation" + Models

    + +

    A base class for creating Pydantic models.

    + +

    Attributes: + __class_vars__: The names of the class variables defined on the model. + __private_attributes__: Metadata about the private attributes of the model. + __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    + +
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.
    +__pydantic_core_schema__: The core schema of the model.
    +__pydantic_custom_init__: Whether the model has a custom `__init__` function.
    +__pydantic_decorators__: Metadata containing the decorators defined on the model.
    +    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.
    +__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to
    +    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.
    +__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.
    +__pydantic_post_init__: The name of the post-init method for the model, if defined.
    +__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].
    +__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.
    +__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.
    +
    +__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.
    +__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.
    +
    +__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]
    +    is set to `'allow'`.
    +__pydantic_fields_set__: The names of fields explicitly set during instantiation.
    +__pydantic_private__: Values of private attributes set on the model instance.
    +
    +
    + + +
    +
    + model_hash: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + model_path: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + pipeline_hash: str | None = +None + + +
    + + + + +
    +
    +
    + pipeline_path: str | None = +None + + +
    + + + + +
    +
    +
    + top_k_feature_importances_path: str | None = +None + + +
    + + + + +
    +
    +
    + top_k_feature_importances_hash: str | None = +None + + +
    + + + + +
    +
    +
    + top_k_shap_importances_path: str | None = +None + + +
    + + + + +
    +
    +
    + top_k_shap_importances_hash: str | None = +None + + +
    + + + + +
    +
    +
    + +
    + + class + RegistryFeatureSetLineage(pydantic.main.BaseModel): + + + +
    + +
    18class RegistryFeatureSetLineage(BaseModel):
    +19    name: str
    +20    version: str
    +21    snapshot_id: str
    +22    file_hash: str
    +23    in_memory_hash: str
    +24    feature_schema_hash: str
    +25    operator_hash: str
    +26    feature_type: Literal["tabular"]
    +
    + + +

    !!! abstract "Usage Documentation" + Models

    + +

    A base class for creating Pydantic models.

    + +

    Attributes: + __class_vars__: The names of the class variables defined on the model. + __private_attributes__: Metadata about the private attributes of the model. + __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    + +
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.
    +__pydantic_core_schema__: The core schema of the model.
    +__pydantic_custom_init__: Whether the model has a custom `__init__` function.
    +__pydantic_decorators__: Metadata containing the decorators defined on the model.
    +    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.
    +__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to
    +    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.
    +__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.
    +__pydantic_post_init__: The name of the post-init method for the model, if defined.
    +__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].
    +__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.
    +__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.
    +
    +__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.
    +__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.
    +
    +__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]
    +    is set to `'allow'`.
    +__pydantic_fields_set__: The names of fields explicitly set during instantiation.
    +__pydantic_private__: Values of private attributes set on the model instance.
    +
    +
    + + +
    +
    + name: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + version: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + snapshot_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + file_hash: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + in_memory_hash: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + feature_schema_hash: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + operator_hash: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + feature_type: Literal['tabular'] = +PydanticUndefined + + +
    + + + + +
    +
    +
    + +
    + + class + RegistryEntryMetrics(pydantic.main.BaseModel): + + + +
    + +
    28class RegistryEntryMetrics(BaseModel):
    +29    train: dict[str, float | int]
    +30    val: dict[str, float | int]
    +31    test: dict[str, float | int]
    +
    + + +

    !!! abstract "Usage Documentation" + Models

    + +

    A base class for creating Pydantic models.

    + +

    Attributes: + __class_vars__: The names of the class variables defined on the model. + __private_attributes__: Metadata about the private attributes of the model. + __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    + +
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.
    +__pydantic_core_schema__: The core schema of the model.
    +__pydantic_custom_init__: Whether the model has a custom `__init__` function.
    +__pydantic_decorators__: Metadata containing the decorators defined on the model.
    +    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.
    +__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to
    +    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.
    +__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.
    +__pydantic_post_init__: The name of the post-init method for the model, if defined.
    +__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].
    +__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.
    +__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.
    +
    +__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.
    +__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.
    +
    +__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]
    +    is set to `'allow'`.
    +__pydantic_fields_set__: The names of fields explicitly set during instantiation.
    +__pydantic_private__: Values of private attributes set on the model instance.
    +
    +
    + + +
    +
    + train: dict[str, float | int] = +PydanticUndefined + + +
    + + + + +
    +
    +
    + val: dict[str, float | int] = +PydanticUndefined + + +
    + + + + +
    +
    +
    + test: dict[str, float | int] = +PydanticUndefined + + +
    + + + + +
    +
    +
    + +
    + + class + RegistryEntry(pydantic.main.BaseModel): + + + +
    + +
    33class RegistryEntry(BaseModel):
    +34    experiment_id: str
    +35    train_run_id: str
    +36    eval_run_id: str
    +37    explain_run_id: str
    +38    model_version: str
    +39    pipeline_cfg_hash: str | None = None
    +40    artifacts: RegistryArtifacts
    +41    feature_lineage: list[RegistryFeatureSetLineage]
    +42    metrics: RegistryEntryMetrics
    +43    git_commit: str
    +
    + + +

    !!! abstract "Usage Documentation" + Models

    + +

    A base class for creating Pydantic models.

    + +

    Attributes: + __class_vars__: The names of the class variables defined on the model. + __private_attributes__: Metadata about the private attributes of the model. + __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    + +
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.
    +__pydantic_core_schema__: The core schema of the model.
    +__pydantic_custom_init__: Whether the model has a custom `__init__` function.
    +__pydantic_decorators__: Metadata containing the decorators defined on the model.
    +    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.
    +__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to
    +    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.
    +__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.
    +__pydantic_post_init__: The name of the post-init method for the model, if defined.
    +__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].
    +__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.
    +__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.
    +
    +__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.
    +__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.
    +
    +__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]
    +    is set to `'allow'`.
    +__pydantic_fields_set__: The names of fields explicitly set during instantiation.
    +__pydantic_private__: Values of private attributes set on the model instance.
    +
    +
    + + +
    +
    + experiment_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + train_run_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + eval_run_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + explain_run_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + model_version: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + pipeline_cfg_hash: str | None = +None + + +
    + + + + +
    +
    +
    + artifacts: RegistryArtifacts = +PydanticUndefined + + +
    + + + + +
    +
    +
    + feature_lineage: list[RegistryFeatureSetLineage] = +PydanticUndefined + + +
    + + + + +
    +
    +
    + metrics: RegistryEntryMetrics = +PydanticUndefined + + +
    + + + + +
    +
    +
    + git_commit: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + +
    + + class + ProductionRegistryEntry(RegistryEntry): + + + +
    + +
    45class ProductionRegistryEntry(RegistryEntry):
    +46    promotion_id: str
    +47    promoted_at: str
    +
    + + +

    !!! abstract "Usage Documentation" + Models

    + +

    A base class for creating Pydantic models.

    + +

    Attributes: + __class_vars__: The names of the class variables defined on the model. + __private_attributes__: Metadata about the private attributes of the model. + __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    + +
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.
    +__pydantic_core_schema__: The core schema of the model.
    +__pydantic_custom_init__: Whether the model has a custom `__init__` function.
    +__pydantic_decorators__: Metadata containing the decorators defined on the model.
    +    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.
    +__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to
    +    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.
    +__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.
    +__pydantic_post_init__: The name of the post-init method for the model, if defined.
    +__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].
    +__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.
    +__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.
    +
    +__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.
    +__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.
    +
    +__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]
    +    is set to `'allow'`.
    +__pydantic_fields_set__: The names of fields explicitly set during instantiation.
    +__pydantic_private__: Values of private attributes set on the model instance.
    +
    +
    + + +
    +
    + promotion_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + promoted_at: str = +PydanticUndefined + + +
    + + + + +
    + +
    +
    + +
    + + class + StagingRegistryEntry(RegistryEntry): + + + +
    + +
    49class StagingRegistryEntry(RegistryEntry):
    +50    staging_id: str
    +51    staged_at: str
    +
    + + +

    !!! abstract "Usage Documentation" + Models

    + +

    A base class for creating Pydantic models.

    + +

    Attributes: + __class_vars__: The names of the class variables defined on the model. + __private_attributes__: Metadata about the private attributes of the model. + __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    + +
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.
    +__pydantic_core_schema__: The core schema of the model.
    +__pydantic_custom_init__: Whether the model has a custom `__init__` function.
    +__pydantic_decorators__: Metadata containing the decorators defined on the model.
    +    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.
    +__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to
    +    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.
    +__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.
    +__pydantic_post_init__: The name of the post-init method for the model, if defined.
    +__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].
    +__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.
    +__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.
    +
    +__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.
    +__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.
    +
    +__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]
    +    is set to `'allow'`.
    +__pydantic_fields_set__: The names of fields explicitly set during instantiation.
    +__pydantic_private__: Values of private attributes set on the model instance.
    +
    +
    + + +
    +
    + staging_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + staged_at: str = +PydanticUndefined + + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/promotion/constants/constants.html b/docs/api/ml/ml/promotion/constants/constants.html index 4a5d5d39..17642446 100644 --- a/docs/api/ml/ml/promotion/constants/constants.html +++ b/docs/api/ml/ml/promotion/constants/constants.html @@ -158,7 +158,7 @@

    7from ml.metadata.schemas.runners.evaluation import EvaluationMetadata 8from ml.metadata.schemas.runners.explainability import ExplainabilityMetadata 9from ml.metadata.schemas.runners.training import TrainingMetadata -10from ml.promotion.config.models import Direction, MetricName, MetricSet +10from ml.promotion.config.promotion_thresholds import Direction, MetricName, MetricSet 11 12logger = logging.getLogger(__name__) 13 @@ -337,7 +337,7 @@

    - ThresholdComparisonResult( meets_thresholds: bool, message: str, target_sets: list[ml.promotion.config.models.MetricSet], target_metrics: list[ml.promotion.config.models.MetricName], directions: dict[ml.promotion.config.models.MetricName, ml.promotion.config.models.Direction]) + ThresholdComparisonResult( meets_thresholds: bool, message: str, target_sets: list[ml.promotion.config.promotion_thresholds.MetricSet], target_metrics: list[ml.promotion.config.promotion_thresholds.MetricName], directions: dict[ml.promotion.config.promotion_thresholds.MetricName, ml.promotion.config.promotion_thresholds.Direction])
    @@ -370,7 +370,7 @@

    @@ -381,7 +381,7 @@

    @@ -392,7 +392,7 @@

    diff --git a/docs/api/ml/ml/promotion/persistence/prepare.html b/docs/api/ml/ml/promotion/persistence/prepare.html index 4e7a8145..694d045b 100644 --- a/docs/api/ml/ml/promotion/persistence/prepare.html +++ b/docs/api/ml/ml/promotion/persistence/prepare.html @@ -72,7 +72,7 @@

    8from ml.metadata.schemas.runners.explainability import ExplainabilityMetadata 9from ml.metadata.schemas.runners.training import TrainingMetadata 10from ml.metadata.validation.promotion.promote import validate_promotion_metadata - 11from ml.promotion.config.models import PromotionThresholds + 11from ml.promotion.config.promotion_thresholds import PromotionThresholds 12from ml.promotion.constants.constants import PreviousProductionRunIdentity 13from ml.promotion.constants.promotion_metadata_dict import PromotionMetadataDict 14from ml.promotion.getters.get import get_pipeline_cfg_hash, get_training_conda_env_hash @@ -373,7 +373,7 @@

    def - prepare_metadata( *, run_id: str, args: argparse.Namespace, metrics: dict, previous_production_metrics: dict | None, promotion_thresholds: ml.promotion.config.models.PromotionThresholds, promoted: bool, beats_previous: bool, reason: str, git_commit: str, timestamp: str, previous_production_run_identity: ml.promotion.constants.constants.PreviousProductionRunIdentity, train_run_dir: pathlib.Path) -> dict: + prepare_metadata( *, run_id: str, args: argparse.Namespace, metrics: dict, previous_production_metrics: dict | None, promotion_thresholds: ml.promotion.config.promotion_thresholds.PromotionThresholds, promoted: bool, beats_previous: bool, reason: str, git_commit: str, timestamp: str, previous_production_run_identity: ml.promotion.constants.constants.PreviousProductionRunIdentity, train_run_dir: pathlib.Path) -> dict: diff --git a/docs/api/ml/ml/promotion/persistence/registry.html b/docs/api/ml/ml/promotion/persistence/registry.html index 7c800753..6451c14b 100644 --- a/docs/api/ml/ml/promotion/persistence/registry.html +++ b/docs/api/ml/ml/promotion/persistence/registry.html @@ -73,106 +73,118 @@

    9 10from ml.exceptions import PersistenceError 11from ml.promotion.constants.constants import Stage - 12 - 13logger = logging.getLogger(__name__) - 14 - 15def update_registry_and_archive( - 16 *, - 17 model_registry: dict, - 18 archive_registry: dict, - 19 stage: Stage, - 20 run_info: dict, - 21 problem: str, - 22 segment: str, - 23 registry_path: Path = Path("model_registry") / "models.yaml", - 24 archive_path: Path = Path("model_registry") / "archive.yaml" - 25) -> dict: - 26 """Update active registry and archive previous production entry when needed. - 27 - 28 Args: - 29 model_registry: Current active model registry. - 30 archive_registry: Current archive registry. - 31 stage: Promotion stage. - 32 run_info: Registry run-info payload. - 33 problem: Problem key. - 34 segment: Segment key. - 35 registry_path: Active registry file path. - 36 archive_path: Archive registry file path. - 37 - 38 Returns: - 39 dict: Updated active registry dictionary. - 40 """ - 41 - 42 new_registry = copy.deepcopy(model_registry, {}) - 43 - 44 new_registry.setdefault(problem, {}) - 45 new_registry[problem].setdefault(segment, {}) - 46 new_archive = None - 47 - 48 if stage == "production": - 49 current_prod_model_info = new_registry[problem][segment].get("production") - 50 if current_prod_model_info: - 51 promotion_id = current_prod_model_info.get("promotion_id") - 52 if not promotion_id: - 53 msg = f"Current production model for problem '{problem}' and segment '{segment}' is missing promotion_id. Cannot archive without promotion_id. Current production model info: {current_prod_model_info}" - 54 logger.error(msg) - 55 raise PersistenceError(msg) - 56 new_archive = copy.deepcopy(archive_registry, {}) - 57 new_archive.setdefault(problem, {}).setdefault(segment, {}) - 58 new_archive[problem][segment][promotion_id] = current_prod_model_info - 59 - 60 new_registry[problem][segment]["production"] = run_info - 61 else: - 62 # Only one staging model is allowed per problem/segment, so we can directly set it without archiving - 63 new_registry[problem][segment]["staging"] = run_info - 64 - 65 try: - 66 if new_archive is not None: - 67 temp_archive_path = archive_path.with_suffix(".tmp") - 68 with open(temp_archive_path, "w", encoding="utf-8") as f: - 69 yaml.safe_dump(new_archive, f, sort_keys=False) - 70 os.replace(temp_archive_path, archive_path) - 71 - 72 temp_registry_path = registry_path.with_suffix(".tmp") - 73 with open(temp_registry_path, "w", encoding="utf-8") as f: - 74 yaml.safe_dump(new_registry, f, sort_keys=False) - 75 os.replace(temp_registry_path, registry_path) - 76 - 77 return new_registry - 78 except Exception as e: - 79 msg = f"Failed to update model registry and archive. Run info: {run_info}" - 80 logger.exception(msg) - 81 raise PersistenceError(msg) from e - 82 - 83def persist_registry_diff( - 84 *, - 85 previous_registry: dict, - 86 updated_registry: dict, - 87 run_dir: Path - 88) -> None: - 89 """Persist before/after registry snapshot for auditability. - 90 - 91 Args: - 92 previous_registry: Registry state before update. - 93 updated_registry: Registry state after update. - 94 run_dir: Promotion run directory. - 95 - 96 Returns: - 97 None: Writes registry-diff artifact to disk. - 98 """ + 12from ml.promotion.validation.registry_entry import validate_registry_entry + 13 + 14logger = logging.getLogger(__name__) + 15 + 16def update_registry_and_archive( + 17 *, + 18 model_registry: dict, + 19 archive_registry: dict, + 20 stage: Stage, + 21 run_info: dict, + 22 problem: str, + 23 segment: str, + 24 registry_path: Path = Path("model_registry") / "models.yaml", + 25 archive_path: Path = Path("model_registry") / "archive.yaml" + 26) -> dict: + 27 """Update active registry and archive previous production entry when needed. + 28 + 29 Args: + 30 model_registry: Current active model registry. + 31 archive_registry: Current archive registry. + 32 stage: Promotion stage. + 33 run_info: Registry run-info payload. + 34 problem: Problem key. + 35 segment: Segment key. + 36 registry_path: Active registry file path. + 37 archive_path: Archive registry file path. + 38 + 39 Returns: + 40 dict: Updated active registry dictionary. + 41 """ + 42 + 43 validate_registry_entry(run_info) + 44 + 45 new_registry = copy.deepcopy(model_registry, {}) + 46 + 47 new_registry.setdefault(problem, {}) + 48 new_registry[problem].setdefault(segment, {}) + 49 new_archive = None + 50 + 51 if stage == "production": + 52 current_prod_model_info = new_registry[problem][segment].get("production") + 53 if current_prod_model_info: + 54 promotion_id = current_prod_model_info.get("promotion_id") + 55 if not promotion_id: + 56 msg = f"Current production model for problem '{problem}' and segment '{segment}' is missing promotion_id. Cannot archive without promotion_id. Current production model info: {current_prod_model_info}" + 57 logger.error(msg) + 58 raise PersistenceError(msg) + 59 new_archive = copy.deepcopy(archive_registry, {}) + 60 new_archive.setdefault(problem, {}).setdefault(segment, {}) + 61 new_archive[problem][segment][promotion_id] = current_prod_model_info + 62 + 63 new_registry[problem][segment]["production"] = run_info + 64 else: + 65 # Only one staging model is allowed per problem/segment, so we can directly set it without archiving + 66 new_registry[problem][segment]["staging"] = run_info + 67 + 68 try: + 69 if new_archive is not None: + 70 temp_archive_path = archive_path.with_suffix(".tmp") + 71 with open(temp_archive_path, "w", encoding="utf-8") as f: + 72 yaml.safe_dump(new_archive, f, sort_keys=False) + 73 os.replace(temp_archive_path, archive_path) + 74 + 75 temp_registry_path = registry_path.with_suffix(".tmp") + 76 with open(temp_registry_path, "w", encoding="utf-8") as f: + 77 yaml.safe_dump(new_registry, f, sort_keys=False) + 78 os.replace(temp_registry_path, registry_path) + 79 + 80 msg = f"Model registry successfully updated at {registry_path}." + 81 if new_archive is not None: + 82 msg += f" Previous production model archived at {archive_path}." + 83 logger.info(msg) + 84 print(msg) + 85 + 86 return new_registry + 87 except Exception as e: + 88 msg = f"Failed to update model registry and archive. Run info: {run_info}" + 89 logger.exception(msg) + 90 raise PersistenceError(msg) from e + 91 + 92def persist_registry_diff( + 93 *, + 94 previous_registry: dict, + 95 updated_registry: dict, + 96 run_dir: Path + 97) -> None: + 98 """Persist before/after registry snapshot for auditability. 99 -100 diff_path = run_dir / "registry_diff.yaml" -101 diff = { -102 "previous": previous_registry, -103 "updated": updated_registry -104 } -105 try: -106 with open(diff_path, "w", encoding="utf-8") as f: -107 yaml.safe_dump(diff, f, sort_keys=False) -108 except Exception as e: -109 msg = f"Failed to persist registry diff to {diff_path}" -110 logger.exception(msg) -111 raise PersistenceError(msg) from e +100 Args: +101 previous_registry: Registry state before update. +102 updated_registry: Registry state after update. +103 run_dir: Promotion run directory. +104 +105 Returns: +106 None: Writes registry-diff artifact to disk. +107 """ +108 +109 diff_path = run_dir / "registry_diff.yaml" +110 diff = { +111 "previous": previous_registry, +112 "updated": updated_registry +113 } +114 try: +115 with open(diff_path, "w", encoding="utf-8") as f: +116 yaml.safe_dump(diff, f, sort_keys=False) +117 msg = f"Registry diff successfully saved to {diff_path}." +118 logger.info(msg) +119 print(msg) +120 except Exception as e: +121 msg = f"Failed to persist registry diff to {diff_path}" +122 logger.exception(msg) +123 raise PersistenceError(msg) from e

    @@ -200,73 +212,81 @@

    -
    16def update_registry_and_archive(
    -17    *,
    -18    model_registry: dict,
    -19    archive_registry: dict,
    -20    stage: Stage,
    -21    run_info: dict,
    -22    problem: str,
    -23    segment: str,
    -24    registry_path: Path = Path("model_registry") / "models.yaml",
    -25    archive_path: Path = Path("model_registry") / "archive.yaml"
    -26) -> dict:
    -27    """Update active registry and archive previous production entry when needed.
    -28
    -29    Args:
    -30        model_registry: Current active model registry.
    -31        archive_registry: Current archive registry.
    -32        stage: Promotion stage.
    -33        run_info: Registry run-info payload.
    -34        problem: Problem key.
    -35        segment: Segment key.
    -36        registry_path: Active registry file path.
    -37        archive_path: Archive registry file path.
    -38
    -39    Returns:
    -40        dict: Updated active registry dictionary.
    -41    """
    -42
    -43    new_registry = copy.deepcopy(model_registry, {})
    -44
    -45    new_registry.setdefault(problem, {})
    -46    new_registry[problem].setdefault(segment, {})
    -47    new_archive = None
    -48
    -49    if stage == "production":
    -50        current_prod_model_info = new_registry[problem][segment].get("production")
    -51        if current_prod_model_info:
    -52            promotion_id = current_prod_model_info.get("promotion_id")
    -53            if not promotion_id:
    -54                msg = f"Current production model for problem '{problem}' and segment '{segment}' is missing promotion_id. Cannot archive without promotion_id. Current production model info: {current_prod_model_info}"
    -55                logger.error(msg)
    -56                raise PersistenceError(msg)
    -57            new_archive = copy.deepcopy(archive_registry, {})
    -58            new_archive.setdefault(problem, {}).setdefault(segment, {})
    -59            new_archive[problem][segment][promotion_id] = current_prod_model_info
    -60
    -61        new_registry[problem][segment]["production"] = run_info
    -62    else:
    -63        # Only one staging model is allowed per problem/segment, so we can directly set it without archiving
    -64        new_registry[problem][segment]["staging"] = run_info
    -65
    -66    try:
    -67        if new_archive is not None:
    -68            temp_archive_path = archive_path.with_suffix(".tmp")
    -69            with open(temp_archive_path, "w", encoding="utf-8") as f:
    -70                yaml.safe_dump(new_archive, f, sort_keys=False)
    -71            os.replace(temp_archive_path, archive_path)
    -72
    -73        temp_registry_path = registry_path.with_suffix(".tmp")
    -74        with open(temp_registry_path, "w", encoding="utf-8") as f:
    -75            yaml.safe_dump(new_registry, f, sort_keys=False)
    -76        os.replace(temp_registry_path, registry_path)
    -77
    -78        return new_registry
    -79    except Exception as e:
    -80        msg = f"Failed to update model registry and archive. Run info: {run_info}"
    -81        logger.exception(msg)
    -82        raise PersistenceError(msg) from e
    +            
    17def update_registry_and_archive(
    +18    *,
    +19    model_registry: dict,
    +20    archive_registry: dict,
    +21    stage: Stage,
    +22    run_info: dict,
    +23    problem: str,
    +24    segment: str,
    +25    registry_path: Path = Path("model_registry") / "models.yaml",
    +26    archive_path: Path = Path("model_registry") / "archive.yaml"
    +27) -> dict:
    +28    """Update active registry and archive previous production entry when needed.
    +29
    +30    Args:
    +31        model_registry: Current active model registry.
    +32        archive_registry: Current archive registry.
    +33        stage: Promotion stage.
    +34        run_info: Registry run-info payload.
    +35        problem: Problem key.
    +36        segment: Segment key.
    +37        registry_path: Active registry file path.
    +38        archive_path: Archive registry file path.
    +39
    +40    Returns:
    +41        dict: Updated active registry dictionary.
    +42    """
    +43
    +44    validate_registry_entry(run_info)
    +45
    +46    new_registry = copy.deepcopy(model_registry, {})
    +47
    +48    new_registry.setdefault(problem, {})
    +49    new_registry[problem].setdefault(segment, {})
    +50    new_archive = None
    +51
    +52    if stage == "production":
    +53        current_prod_model_info = new_registry[problem][segment].get("production")
    +54        if current_prod_model_info:
    +55            promotion_id = current_prod_model_info.get("promotion_id")
    +56            if not promotion_id:
    +57                msg = f"Current production model for problem '{problem}' and segment '{segment}' is missing promotion_id. Cannot archive without promotion_id. Current production model info: {current_prod_model_info}"
    +58                logger.error(msg)
    +59                raise PersistenceError(msg)
    +60            new_archive = copy.deepcopy(archive_registry, {})
    +61            new_archive.setdefault(problem, {}).setdefault(segment, {})
    +62            new_archive[problem][segment][promotion_id] = current_prod_model_info
    +63
    +64        new_registry[problem][segment]["production"] = run_info
    +65    else:
    +66        # Only one staging model is allowed per problem/segment, so we can directly set it without archiving
    +67        new_registry[problem][segment]["staging"] = run_info
    +68
    +69    try:
    +70        if new_archive is not None:
    +71            temp_archive_path = archive_path.with_suffix(".tmp")
    +72            with open(temp_archive_path, "w", encoding="utf-8") as f:
    +73                yaml.safe_dump(new_archive, f, sort_keys=False)
    +74            os.replace(temp_archive_path, archive_path)
    +75
    +76        temp_registry_path = registry_path.with_suffix(".tmp")
    +77        with open(temp_registry_path, "w", encoding="utf-8") as f:
    +78            yaml.safe_dump(new_registry, f, sort_keys=False)
    +79        os.replace(temp_registry_path, registry_path)
    +80
    +81        msg = f"Model registry successfully updated at {registry_path}."
    +82        if new_archive is not None:
    +83            msg += f" Previous production model archived at {archive_path}."
    +84        logger.info(msg)
    +85        print(msg)
    +86
    +87        return new_registry
    +88    except Exception as e:
    +89        msg = f"Failed to update model registry and archive. Run info: {run_info}"
    +90        logger.exception(msg)
    +91        raise PersistenceError(msg) from e
     
    @@ -299,35 +319,38 @@

    -
     84def persist_registry_diff(
    - 85    *,
    - 86    previous_registry: dict,
    - 87    updated_registry: dict,
    - 88    run_dir: Path
    - 89) -> None:
    - 90    """Persist before/after registry snapshot for auditability.
    - 91
    - 92    Args:
    - 93        previous_registry: Registry state before update.
    - 94        updated_registry: Registry state after update.
    - 95        run_dir: Promotion run directory.
    - 96
    - 97    Returns:
    - 98        None: Writes registry-diff artifact to disk.
    - 99    """
    +            
     93def persist_registry_diff(
    + 94    *,
    + 95    previous_registry: dict,
    + 96    updated_registry: dict,
    + 97    run_dir: Path
    + 98) -> None:
    + 99    """Persist before/after registry snapshot for auditability.
     100
    -101    diff_path = run_dir / "registry_diff.yaml"
    -102    diff = {
    -103        "previous": previous_registry,
    -104        "updated": updated_registry
    -105    }
    -106    try:
    -107        with open(diff_path, "w", encoding="utf-8") as f:
    -108            yaml.safe_dump(diff, f, sort_keys=False)
    -109    except Exception as e:
    -110        msg = f"Failed to persist registry diff to {diff_path}"
    -111        logger.exception(msg)
    -112        raise PersistenceError(msg) from e
    +101    Args:
    +102        previous_registry: Registry state before update.
    +103        updated_registry: Registry state after update.
    +104        run_dir: Promotion run directory.
    +105
    +106    Returns:
    +107        None: Writes registry-diff artifact to disk.
    +108    """
    +109
    +110    diff_path = run_dir / "registry_diff.yaml"
    +111    diff = {
    +112        "previous": previous_registry,
    +113        "updated": updated_registry
    +114    }
    +115    try:
    +116        with open(diff_path, "w", encoding="utf-8") as f:
    +117            yaml.safe_dump(diff, f, sort_keys=False)
    +118        msg = f"Registry diff successfully saved to {diff_path}."
    +119        logger.info(msg)
    +120        print(msg)
    +121    except Exception as e:
    +122        msg = f"Failed to persist registry diff to {diff_path}"
    +123        logger.exception(msg)
    +124        raise PersistenceError(msg) from e
     
    diff --git a/docs/api/ml/ml/promotion/service.html b/docs/api/ml/ml/promotion/service.html index ba610f00..e3295553 100644 --- a/docs/api/ml/ml/promotion/service.html +++ b/docs/api/ml/ml/promotion/service.html @@ -82,95 +82,94 @@

    12from ml.promotion.state_loader import PromotionStateLoader 13from ml.promotion.strategies.production import ProductionPromotionStrategy 14from ml.promotion.strategies.staging import StagingPromotionStrategy - 15from ml.promotion.validation.validate import ( + 15from ml.promotion.validation.artifacts import ( 16 validate_artifacts_consistency, 17 validate_explainability_artifacts, - 18 validate_run_dirs, - 19 validate_run_ids, - 20) - 21 - 22logger = logging.getLogger(__name__) - 23 - 24class PromotionService: - 25 """Coordinates validation, state loading, strategy execution, and persistence.""" - 26 - 27 def __init__(self): - 28 """Initialize promotion service dependencies.""" - 29 self._state_loader = PromotionStateLoader() - 30 self._persister = PromotionPersister() - 31 - 32 def run(self, context: PromotionContext): - 33 """Execute complete promotion workflow for the given context. - 34 - 35 Args: - 36 context: Promotion execution context. - 37 - 38 Returns: - 39 Any: Strategy result payload persisted by the promotion service. - 40 """ - 41 - 42 context = self._validate(context) - 43 - 44 with self._registry_lock(context): - 45 state = self._state_loader.load(context) - 46 strategy = self._get_strategy(context.args.stage) - 47 result = strategy.execute(context, state) - 48 self._persister.persist(context, state, result) - 49 - 50 return result - 51 - 52 def _validate(self, context: PromotionContext) -> PromotionContext: - 53 """Validate input run artifacts and enrich context with runner metadata. - 54 - 55 Args: - 56 context: Promotion execution context. - 57 - 58 Returns: - 59 PromotionContext: Enriched and validated promotion context. - 60 """ - 61 - 62 validate_run_dirs(context.paths.train_run_dir, context.paths.eval_run_dir, context.paths.explain_run_dir) - 63 runners_metadata = get_runners_metadata(context.paths.train_run_dir, context.paths.eval_run_dir, context.paths.explain_run_dir) - 64 validate_run_ids(args=context.args, runners_metadata=runners_metadata) - 65 validate_artifacts_consistency(runners_metadata=runners_metadata) - 66 validate_explainability_artifacts(runners_metadata.explainability_metadata.artifacts) - 67 context.runners_metadata = runners_metadata - 68 return context - 69 - 70 @contextmanager - 71 def _registry_lock(self, context: PromotionContext): - 72 """Acquire file lock around registry mutations to avoid concurrent writes. - 73 - 74 Args: - 75 context: Promotion execution context containing registry paths. - 76 - 77 Yields: - 78 None: Context manager yielding lock scope. - 79 """ - 80 - 81 lock_path = str(context.paths.registry_path) + ".lock" - 82 lock = FileLock(lock_path, timeout=300) - 83 with lock: - 84 yield - 85 - 86 def _get_strategy(self, stage: str): - 87 """Resolve stage-specific promotion strategy implementation. - 88 - 89 Args: - 90 stage: Target promotion stage. - 91 - 92 Returns: - 93 Any: Instantiated promotion strategy implementation. - 94 """ - 95 - 96 if stage == "production": - 97 return ProductionPromotionStrategy() - 98 elif stage == "staging": - 99 return StagingPromotionStrategy() -100 else: -101 msg = f"Unknown stage specified: {stage}. Supported stages are 'production' and 'staging'." -102 logger.error(msg) -103 raise UserError(msg) + 18) + 19from ml.promotion.validation.runners import validate_run_dirs, validate_run_ids + 20 + 21logger = logging.getLogger(__name__) + 22 + 23class PromotionService: + 24 """Coordinates validation, state loading, strategy execution, and persistence.""" + 25 + 26 def __init__(self): + 27 """Initialize promotion service dependencies.""" + 28 self._state_loader = PromotionStateLoader() + 29 self._persister = PromotionPersister() + 30 + 31 def run(self, context: PromotionContext): + 32 """Execute complete promotion workflow for the given context. + 33 + 34 Args: + 35 context: Promotion execution context. + 36 + 37 Returns: + 38 Any: Strategy result payload persisted by the promotion service. + 39 """ + 40 + 41 context = self._validate(context) + 42 + 43 with self._registry_lock(context): + 44 state = self._state_loader.load(context) + 45 strategy = self._get_strategy(context.args.stage) + 46 result = strategy.execute(context, state) + 47 self._persister.persist(context, state, result) + 48 + 49 return result + 50 + 51 def _validate(self, context: PromotionContext) -> PromotionContext: + 52 """Validate input run artifacts and enrich context with runner metadata. + 53 + 54 Args: + 55 context: Promotion execution context. + 56 + 57 Returns: + 58 PromotionContext: Enriched and validated promotion context. + 59 """ + 60 + 61 validate_run_dirs(context.paths.train_run_dir, context.paths.eval_run_dir, context.paths.explain_run_dir) + 62 runners_metadata = get_runners_metadata(context.paths.train_run_dir, context.paths.eval_run_dir, context.paths.explain_run_dir) + 63 validate_run_ids(args=context.args, runners_metadata=runners_metadata) + 64 validate_artifacts_consistency(runners_metadata=runners_metadata) + 65 validate_explainability_artifacts(runners_metadata.explainability_metadata.artifacts) + 66 context.runners_metadata = runners_metadata + 67 return context + 68 + 69 @contextmanager + 70 def _registry_lock(self, context: PromotionContext): + 71 """Acquire file lock around registry mutations to avoid concurrent writes. + 72 + 73 Args: + 74 context: Promotion execution context containing registry paths. + 75 + 76 Yields: + 77 None: Context manager yielding lock scope. + 78 """ + 79 + 80 lock_path = str(context.paths.registry_path) + ".lock" + 81 lock = FileLock(lock_path, timeout=300) + 82 with lock: + 83 yield + 84 + 85 def _get_strategy(self, stage: str): + 86 """Resolve stage-specific promotion strategy implementation. + 87 + 88 Args: + 89 stage: Target promotion stage. + 90 + 91 Returns: + 92 Any: Instantiated promotion strategy implementation. + 93 """ + 94 + 95 if stage == "production": + 96 return ProductionPromotionStrategy() + 97 elif stage == "staging": + 98 return StagingPromotionStrategy() + 99 else: +100 msg = f"Unknown stage specified: {stage}. Supported stages are 'production' and 'staging'." +101 logger.error(msg) +102 raise UserError(msg)

    @@ -198,86 +197,86 @@

    -
     25class PromotionService:
    - 26    """Coordinates validation, state loading, strategy execution, and persistence."""
    - 27
    - 28    def __init__(self):
    - 29        """Initialize promotion service dependencies."""
    - 30        self._state_loader = PromotionStateLoader()
    - 31        self._persister = PromotionPersister()
    - 32
    - 33    def run(self, context: PromotionContext):
    - 34        """Execute complete promotion workflow for the given context.
    - 35
    - 36        Args:
    - 37            context: Promotion execution context.
    - 38
    - 39        Returns:
    - 40            Any: Strategy result payload persisted by the promotion service.
    - 41        """
    - 42
    - 43        context = self._validate(context)
    - 44
    - 45        with self._registry_lock(context):
    - 46            state = self._state_loader.load(context)
    - 47            strategy = self._get_strategy(context.args.stage)
    - 48            result = strategy.execute(context, state)
    - 49            self._persister.persist(context, state, result)
    - 50
    - 51        return result
    - 52
    - 53    def _validate(self, context: PromotionContext) -> PromotionContext:
    - 54        """Validate input run artifacts and enrich context with runner metadata.
    - 55
    - 56        Args:
    - 57            context: Promotion execution context.
    - 58
    - 59        Returns:
    - 60            PromotionContext: Enriched and validated promotion context.
    - 61        """
    - 62
    - 63        validate_run_dirs(context.paths.train_run_dir, context.paths.eval_run_dir, context.paths.explain_run_dir)
    - 64        runners_metadata = get_runners_metadata(context.paths.train_run_dir, context.paths.eval_run_dir, context.paths.explain_run_dir)
    - 65        validate_run_ids(args=context.args, runners_metadata=runners_metadata)
    - 66        validate_artifacts_consistency(runners_metadata=runners_metadata)
    - 67        validate_explainability_artifacts(runners_metadata.explainability_metadata.artifacts)
    - 68        context.runners_metadata = runners_metadata
    - 69        return context
    - 70
    - 71    @contextmanager
    - 72    def _registry_lock(self, context: PromotionContext):
    - 73        """Acquire file lock around registry mutations to avoid concurrent writes.
    - 74
    - 75        Args:
    - 76            context: Promotion execution context containing registry paths.
    - 77
    - 78        Yields:
    - 79            None: Context manager yielding lock scope.
    - 80        """
    - 81
    - 82        lock_path = str(context.paths.registry_path) + ".lock"
    - 83        lock = FileLock(lock_path, timeout=300)
    - 84        with lock:
    - 85            yield
    - 86
    - 87    def _get_strategy(self, stage: str):
    - 88        """Resolve stage-specific promotion strategy implementation.
    - 89
    - 90        Args:
    - 91            stage: Target promotion stage.
    - 92
    - 93        Returns:
    - 94            Any: Instantiated promotion strategy implementation.
    - 95        """
    - 96
    - 97        if stage == "production":
    - 98            return ProductionPromotionStrategy()
    - 99        elif stage == "staging":
    -100            return StagingPromotionStrategy()
    -101        else:
    -102            msg = f"Unknown stage specified: {stage}. Supported stages are 'production' and 'staging'."
    -103            logger.error(msg)
    -104            raise UserError(msg)
    +            
     24class PromotionService:
    + 25    """Coordinates validation, state loading, strategy execution, and persistence."""
    + 26
    + 27    def __init__(self):
    + 28        """Initialize promotion service dependencies."""
    + 29        self._state_loader = PromotionStateLoader()
    + 30        self._persister = PromotionPersister()
    + 31
    + 32    def run(self, context: PromotionContext):
    + 33        """Execute complete promotion workflow for the given context.
    + 34
    + 35        Args:
    + 36            context: Promotion execution context.
    + 37
    + 38        Returns:
    + 39            Any: Strategy result payload persisted by the promotion service.
    + 40        """
    + 41
    + 42        context = self._validate(context)
    + 43
    + 44        with self._registry_lock(context):
    + 45            state = self._state_loader.load(context)
    + 46            strategy = self._get_strategy(context.args.stage)
    + 47            result = strategy.execute(context, state)
    + 48            self._persister.persist(context, state, result)
    + 49
    + 50        return result
    + 51
    + 52    def _validate(self, context: PromotionContext) -> PromotionContext:
    + 53        """Validate input run artifacts and enrich context with runner metadata.
    + 54
    + 55        Args:
    + 56            context: Promotion execution context.
    + 57
    + 58        Returns:
    + 59            PromotionContext: Enriched and validated promotion context.
    + 60        """
    + 61
    + 62        validate_run_dirs(context.paths.train_run_dir, context.paths.eval_run_dir, context.paths.explain_run_dir)
    + 63        runners_metadata = get_runners_metadata(context.paths.train_run_dir, context.paths.eval_run_dir, context.paths.explain_run_dir)
    + 64        validate_run_ids(args=context.args, runners_metadata=runners_metadata)
    + 65        validate_artifacts_consistency(runners_metadata=runners_metadata)
    + 66        validate_explainability_artifacts(runners_metadata.explainability_metadata.artifacts)
    + 67        context.runners_metadata = runners_metadata
    + 68        return context
    + 69
    + 70    @contextmanager
    + 71    def _registry_lock(self, context: PromotionContext):
    + 72        """Acquire file lock around registry mutations to avoid concurrent writes.
    + 73
    + 74        Args:
    + 75            context: Promotion execution context containing registry paths.
    + 76
    + 77        Yields:
    + 78            None: Context manager yielding lock scope.
    + 79        """
    + 80
    + 81        lock_path = str(context.paths.registry_path) + ".lock"
    + 82        lock = FileLock(lock_path, timeout=300)
    + 83        with lock:
    + 84            yield
    + 85
    + 86    def _get_strategy(self, stage: str):
    + 87        """Resolve stage-specific promotion strategy implementation.
    + 88
    + 89        Args:
    + 90            stage: Target promotion stage.
    + 91
    + 92        Returns:
    + 93            Any: Instantiated promotion strategy implementation.
    + 94        """
    + 95
    + 96        if stage == "production":
    + 97            return ProductionPromotionStrategy()
    + 98        elif stage == "staging":
    + 99            return StagingPromotionStrategy()
    +100        else:
    +101            msg = f"Unknown stage specified: {stage}. Supported stages are 'production' and 'staging'."
    +102            logger.error(msg)
    +103            raise UserError(msg)
     
    @@ -295,10 +294,10 @@

    -
    28    def __init__(self):
    -29        """Initialize promotion service dependencies."""
    -30        self._state_loader = PromotionStateLoader()
    -31        self._persister = PromotionPersister()
    +            
    27    def __init__(self):
    +28        """Initialize promotion service dependencies."""
    +29        self._state_loader = PromotionStateLoader()
    +30        self._persister = PromotionPersister()
     
    @@ -318,25 +317,25 @@

    -
    33    def run(self, context: PromotionContext):
    -34        """Execute complete promotion workflow for the given context.
    -35
    -36        Args:
    -37            context: Promotion execution context.
    -38
    -39        Returns:
    -40            Any: Strategy result payload persisted by the promotion service.
    -41        """
    -42
    -43        context = self._validate(context)
    -44
    -45        with self._registry_lock(context):
    -46            state = self._state_loader.load(context)
    -47            strategy = self._get_strategy(context.args.stage)
    -48            result = strategy.execute(context, state)
    -49            self._persister.persist(context, state, result)
    -50
    -51        return result
    +            
    32    def run(self, context: PromotionContext):
    +33        """Execute complete promotion workflow for the given context.
    +34
    +35        Args:
    +36            context: Promotion execution context.
    +37
    +38        Returns:
    +39            Any: Strategy result payload persisted by the promotion service.
    +40        """
    +41
    +42        context = self._validate(context)
    +43
    +44        with self._registry_lock(context):
    +45            state = self._state_loader.load(context)
    +46            strategy = self._get_strategy(context.args.stage)
    +47            result = strategy.execute(context, state)
    +48            self._persister.persist(context, state, result)
    +49
    +50        return result
     
    diff --git a/docs/api/ml/ml/promotion/state.html b/docs/api/ml/ml/promotion/state.html index 1fd80815..5b6158b8 100644 --- a/docs/api/ml/ml/promotion/state.html +++ b/docs/api/ml/ml/promotion/state.html @@ -90,7 +90,7 @@

    2 3from dataclasses import dataclass 4 - 5from ml.promotion.config.models import PromotionThresholds + 5from ml.promotion.config.promotion_thresholds import PromotionThresholds 6from ml.promotion.constants.constants import ( 7 PreviousProductionRunIdentity, 8 ThresholdComparisonResult, @@ -147,7 +147,7 @@

    - PromotionState( model_registry: dict, archive_registry: dict, evaluation_metrics: dict, promotion_thresholds: ml.promotion.config.models.PromotionThresholds, current_prod_model_info: dict | None, previous_production_run_identity: ml.promotion.constants.constants.PreviousProductionRunIdentity, git_commit: str, threshold_comparison: ml.promotion.constants.constants.ThresholdComparisonResult) + PromotionState( model_registry: dict, archive_registry: dict, evaluation_metrics: dict, promotion_thresholds: ml.promotion.config.promotion_thresholds.PromotionThresholds, current_prod_model_info: dict | None, previous_production_run_identity: ml.promotion.constants.constants.PreviousProductionRunIdentity, git_commit: str, threshold_comparison: ml.promotion.constants.constants.ThresholdComparisonResult)
    @@ -191,7 +191,7 @@

    diff --git a/docs/api/ml/ml/promotion/state_loader.html b/docs/api/ml/ml/promotion/state_loader.html index 423fcad8..e49595e4 100644 --- a/docs/api/ml/ml/promotion/state_loader.html +++ b/docs/api/ml/ml/promotion/state_loader.html @@ -74,7 +74,7 @@

    7from ml.promotion.context import PromotionContext 8from ml.promotion.getters.get import extract_thresholds 9from ml.promotion.state import PromotionState -10from ml.promotion.validation.validate import validate_promotion_thresholds +10from ml.promotion.validation.promotion_thresholds import validate_promotion_thresholds 11from ml.utils.git import get_git_commit 12from ml.utils.loaders import load_json, load_yaml 13 diff --git a/docs/api/ml/ml/promotion/validation.html b/docs/api/ml/ml/promotion/validation.html index 753ab364..3a7d69c9 100644 --- a/docs/api/ml/ml/promotion/validation.html +++ b/docs/api/ml/ml/promotion/validation.html @@ -29,7 +29,10 @@

    Submodules

    diff --git a/docs/api/ml/ml/promotion/validation/validate.html b/docs/api/ml/ml/promotion/validation/artifacts.html similarity index 55% rename from docs/api/ml/ml/promotion/validation/validate.html rename to docs/api/ml/ml/promotion/validation/artifacts.html index b352921f..b45e95b7 100644 --- a/docs/api/ml/ml/promotion/validation/validate.html +++ b/docs/api/ml/ml/promotion/validation/artifacts.html @@ -4,7 +4,7 @@ - ml.promotion.validation.validate API documentation + ml.promotion.validation.artifacts API documentation @@ -33,12 +33,6 @@

    API Documentation

  • logger
  • -
  • - validate_run_dirs -
  • -
  • - validate_run_ids -
  • validate_artifacts_consistency
  • @@ -48,9 +42,6 @@

    API Documentation

  • validate_explainability_artifacts
  • -
  • - validate_promotion_thresholds -
  • @@ -65,305 +56,228 @@

    API Documentation

    -ml.promotion.validation.validate

    +ml.promotion.validation.artifacts

    -

    Validation helpers for promotion run inputs and metadata consistency.

    +

    Validation functions for artifacts.

    - - - - -
      1"""Validation helpers for promotion run inputs and metadata consistency."""
    -  2
    -  3import argparse
    -  4import logging
    -  5from pathlib import Path
    -  6
    -  7from ml.exceptions import ConfigError, UserError
    -  8from ml.metadata.schemas.runners.explainability import ExplainabilityArtifacts
    -  9from ml.promotion.config.models import PromotionThresholds
    - 10from ml.promotion.constants.constants import RunnersMetadata
    - 11from ml.utils.hashing.service import hash_artifact
    +                        
    +
    +                        
    +
    +                        
      1"""Validation functions for artifacts."""
    +  2import logging
    +  3from pathlib import Path
    +  4
    +  5from ml.exceptions import UserError
    +  6from ml.metadata.schemas.runners.explainability import ExplainabilityArtifacts
    +  7from ml.promotion.constants.constants import RunnersMetadata
    +  8from ml.utils.hashing.service import hash_artifact
    +  9
    + 10logger = logging.getLogger(__name__)
    + 11
      12
    - 13logger = logging.getLogger(__name__)
    - 14
    - 15def validate_run_dirs(
    - 16    train_run_dir: Path,
    - 17    eval_run_dir: Path,
    - 18    explain_run_dir: Path
    - 19) -> None:
    - 20    """Validate required train/eval/explain run directories exist.
    - 21
    - 22    Args:
    - 23        train_run_dir: Training run directory.
    - 24        eval_run_dir: Evaluation run directory.
    - 25        explain_run_dir: Explainability run directory.
    - 26
    - 27    Returns:
    - 28        None: Raises on validation failure.
    - 29    """
    + 13def validate_artifacts_consistency(
    + 14    runners_metadata: RunnersMetadata
    + 15) -> None:
    + 16    """Validate artifacts consistency across train/eval/explain runs.
    + 17
    + 18    Args:
    + 19        runners_metadata: Loaded train/eval/explain metadata bundle.
    + 20
    + 21    Returns:
    + 22        None: Raises on validation failure.
    + 23    """
    + 24
    + 25    statuses = {
    + 26        "train": runners_metadata.training_metadata.run_identity.status,
    + 27        "eval": runners_metadata.evaluation_metadata.run_identity.status,
    + 28        "explain": runners_metadata.explainability_metadata.run_identity.status,
    + 29    }
      30
    - 31    if not train_run_dir.exists():
    - 32        msg = f"Train run directory does not exist: {train_run_dir}"
    - 33        logger.error(msg)
    - 34        raise UserError(msg)
    - 35    if not eval_run_dir.exists():
    - 36        msg = f"Eval run directory does not exist: {eval_run_dir}"
    - 37        logger.error(msg)
    - 38        raise UserError(msg)
    - 39    if not explain_run_dir.exists():
    - 40        msg = f"Explain run directory does not exist: {explain_run_dir}"
    - 41        logger.error(msg)
    - 42        raise UserError(msg)
    - 43
    - 44def validate_run_ids(
    - 45    *,
    - 46    args: argparse.Namespace,
    - 47    runners_metadata: RunnersMetadata
    - 48) -> None:
    - 49    """Validate eval/explain runs are linked to the provided train run.
    - 50
    - 51    Args:
    - 52        args: Parsed CLI arguments with run IDs.
    - 53        runners_metadata: Loaded train/eval/explain metadata bundle.
    - 54
    - 55    Returns:
    - 56        None: Raises on validation failure.
    - 57    """
    - 58
    - 59    training_metadata = runners_metadata.training_metadata
    - 60    evaluation_metadata = runners_metadata.evaluation_metadata
    - 61    explainability_metadata = runners_metadata.explainability_metadata
    + 31    for name, status in statuses.items():
    + 32        if not status:
    + 33            msg = f"Missing run status for '{name}'. Statuses: {statuses}"
    + 34            logger.error(msg)
    + 35            raise UserError(msg)
    + 36
    + 37        if status != "success":
    + 38            msg = f"Run '{name}' did not complete successfully. Statuses: {statuses}"
    + 39            logger.error(msg)
    + 40            raise UserError(msg)
    + 41
    + 42    train_artifacts = runners_metadata.training_metadata.artifacts
    + 43    eval_artifacts = runners_metadata.evaluation_metadata.artifacts
    + 44    explain_artifacts = runners_metadata.explainability_metadata.artifacts
    + 45
    + 46    model_paths = {
    + 47        "train": train_artifacts.model_path,
    + 48        "eval": eval_artifacts.model_path,
    + 49        "explain": explain_artifacts.model_path,
    + 50    }
    + 51
    + 52    if len(set(model_paths.values())) != 1:
    + 53        msg = f"Model path mismatch across runs: {model_paths}"
    + 54        logger.error(msg)
    + 55        raise UserError(msg)
    + 56
    + 57    model_path = model_paths["train"]
    + 58    if not model_path:
    + 59        msg = "Model path is missing from metadata."
    + 60        logger.error(msg)
    + 61        raise UserError(msg)
      62
    - 63    if evaluation_metadata.run_identity.train_run_id != training_metadata.run_identity.train_run_id:
    - 64        msg = f"Evaluation run {args.eval_run_id} is not linked to train run {args.train_run_id}"
    - 65        logger.error(msg)
    - 66        raise UserError(msg)
    - 67
    - 68    if explainability_metadata.run_identity.train_run_id != training_metadata.run_identity.train_run_id:
    - 69        msg = f"Explain run {args.explain_run_id} is not linked to train run {args.train_run_id}"
    - 70        logger.error(msg)
    - 71        raise UserError(msg)
    - 72
    - 73def validate_artifacts_consistency(
    - 74    runners_metadata: RunnersMetadata
    - 75) -> None:
    - 76    """Validate artifacts consistency across train/eval/explain runs.
    + 63    model_path_obj = Path(model_path)
    + 64    if not model_path_obj.exists():
    + 65        msg = f"Model artifact path does not exist: {model_path}"
    + 66        logger.error(msg)
    + 67        raise UserError(msg)
    + 68
    + 69    model_hash_runtime = hash_artifact(model_path_obj)
    + 70
    + 71    model_hashes = {
    + 72        "runtime": model_hash_runtime,
    + 73        "train": train_artifacts.model_hash,
    + 74        "eval": eval_artifacts.model_hash,
    + 75        "explain": explain_artifacts.model_hash,
    + 76    }
      77
    - 78    Args:
    - 79        runners_metadata: Loaded train/eval/explain metadata bundle.
    - 80
    - 81    Returns:
    - 82        None: Raises on validation failure.
    - 83    """
    - 84
    - 85    statuses = {
    - 86        "train": runners_metadata.training_metadata.run_identity.status,
    - 87        "eval": runners_metadata.evaluation_metadata.run_identity.status,
    - 88        "explain": runners_metadata.explainability_metadata.run_identity.status,
    - 89    }
    - 90
    - 91    for name, status in statuses.items():
    - 92        if not status:
    - 93            msg = f"Missing run status for '{name}'. Statuses: {statuses}"
    - 94            logger.error(msg)
    - 95            raise UserError(msg)
    - 96
    - 97        if status != "success":
    - 98            msg = f"Run '{name}' did not complete successfully. Statuses: {statuses}"
    - 99            logger.error(msg)
    -100            raise UserError(msg)
    -101
    -102    train_artifacts = runners_metadata.training_metadata.artifacts
    -103    eval_artifacts = runners_metadata.evaluation_metadata.artifacts
    -104    explain_artifacts = runners_metadata.explainability_metadata.artifacts
    -105
    -106    model_paths = {
    -107        "train": train_artifacts.model_path,
    -108        "eval": eval_artifacts.model_path,
    -109        "explain": explain_artifacts.model_path,
    -110    }
    -111
    -112    if len(set(model_paths.values())) != 1:
    -113        msg = f"Model path mismatch across runs: {model_paths}"
    -114        logger.error(msg)
    -115        raise UserError(msg)
    -116
    -117    model_path = model_paths["train"]
    -118    if not model_path:
    -119        msg = "Model path is missing from metadata."
    -120        logger.error(msg)
    -121        raise UserError(msg)
    -122
    -123    model_path_obj = Path(model_path)
    -124    if not model_path_obj.exists():
    -125        msg = f"Model artifact path does not exist: {model_path}"
    -126        logger.error(msg)
    -127        raise UserError(msg)
    -128
    -129    model_hash_runtime = hash_artifact(model_path_obj)
    -130
    -131    model_hashes = {
    -132        "runtime": model_hash_runtime,
    -133        "train": train_artifacts.model_hash,
    -134        "eval": eval_artifacts.model_hash,
    -135        "explain": explain_artifacts.model_hash,
    -136    }
    -137
    -138    for name, h in model_hashes.items():
    -139        if not h:
    -140            msg = f"Missing model hash for '{name}'. Hashes: {model_hashes}"
    -141            logger.error(msg)
    -142            raise UserError(msg)
    -143
    -144    if len(set(model_hashes.values())) != 1:
    -145        msg = f"Model hash mismatch across runs/runtime. Hashes: {model_hashes}"
    -146        logger.error(msg)
    -147        raise UserError(msg)
    -148
    -149    pipeline_paths = {
    -150        "train": train_artifacts.pipeline_path,
    -151        "eval": eval_artifacts.pipeline_path,
    -152        "explain": explain_artifacts.pipeline_path,
    -153    }
    -154
    -155    pipeline_hashes = {
    -156        "train": train_artifacts.pipeline_hash,
    -157        "eval": eval_artifacts.pipeline_hash,
    -158        "explain": explain_artifacts.pipeline_hash,
    -159    }
    -160
    -161    paths_present = [bool(p) for p in pipeline_paths.values()]
    -162    hashes_present = [bool(h) for h in pipeline_hashes.values()]
    -163
    -164    if len(set(paths_present)) > 1:
    -165        msg = f"Inconsistent pipeline_path presence across runs: {pipeline_paths}"
    -166        logger.error(msg)
    -167        raise UserError(msg)
    -168
    -169    if len(set(hashes_present)) > 1:
    -170        msg = f"Inconsistent pipeline_hash presence across runs: {pipeline_hashes}"
    -171        logger.error(msg)
    -172        raise UserError(msg)
    + 78    for name, h in model_hashes.items():
    + 79        if not h:
    + 80            msg = f"Missing model hash for '{name}'. Hashes: {model_hashes}"
    + 81            logger.error(msg)
    + 82            raise UserError(msg)
    + 83
    + 84    if len(set(model_hashes.values())) != 1:
    + 85        msg = f"Model hash mismatch across runs/runtime. Hashes: {model_hashes}"
    + 86        logger.error(msg)
    + 87        raise UserError(msg)
    + 88
    + 89    pipeline_paths = {
    + 90        "train": train_artifacts.pipeline_path,
    + 91        "eval": eval_artifacts.pipeline_path,
    + 92        "explain": explain_artifacts.pipeline_path,
    + 93    }
    + 94
    + 95    pipeline_hashes = {
    + 96        "train": train_artifacts.pipeline_hash,
    + 97        "eval": eval_artifacts.pipeline_hash,
    + 98        "explain": explain_artifacts.pipeline_hash,
    + 99    }
    +100
    +101    paths_present = [bool(p) for p in pipeline_paths.values()]
    +102    hashes_present = [bool(h) for h in pipeline_hashes.values()]
    +103
    +104    if len(set(paths_present)) > 1:
    +105        msg = f"Inconsistent pipeline_path presence across runs: {pipeline_paths}"
    +106        logger.error(msg)
    +107        raise UserError(msg)
    +108
    +109    if len(set(hashes_present)) > 1:
    +110        msg = f"Inconsistent pipeline_hash presence across runs: {pipeline_hashes}"
    +111        logger.error(msg)
    +112        raise UserError(msg)
    +113
    +114    if any(paths_present):
    +115        if len(set(pipeline_paths.values())) != 1:
    +116            msg = f"Pipeline path mismatch across runs: {pipeline_paths}"
    +117            logger.error(msg)
    +118            raise UserError(msg)
    +119
    +120        pipeline_path = pipeline_paths["train"]
    +121        if pipeline_path is None:
    +122            msg = "Pipeline path unexpectedly None while marked present."
    +123            logger.error(msg)
    +124            raise UserError(msg)
    +125
    +126        pipeline_path_obj = Path(pipeline_path)
    +127
    +128        if not pipeline_path_obj.exists():
    +129            msg = f"Pipeline artifact path does not exist: {pipeline_path}"
    +130            logger.error(msg)
    +131            raise UserError(msg)
    +132
    +133        pipeline_hash_runtime = hash_artifact(pipeline_path_obj)
    +134
    +135        full_pipeline_hashes = {
    +136            "runtime": pipeline_hash_runtime,
    +137            **pipeline_hashes,
    +138        }
    +139
    +140        for name, h in full_pipeline_hashes.items():
    +141            if not h:
    +142                msg = f"Missing pipeline hash for '{name}'. Hashes: {full_pipeline_hashes}"
    +143                logger.error(msg)
    +144                raise UserError(msg)
    +145
    +146        if len(set(full_pipeline_hashes.values())) != 1:
    +147            msg = f"Pipeline hash mismatch across runs/runtime. Hashes: {full_pipeline_hashes}"
    +148            logger.error(msg)
    +149            raise UserError(msg)
    +150
    +151def validate_optional_artifact(
    +152    path: str | None,
    +153    expected_hash: str | None,
    +154    name: str
    +155) -> None:
    +156    """Validate optional artifact presence and hash consistency.
    +157
    +158    Args:
    +159        path: Path to the artifact.
    +160        expected_hash: Expected hash of the artifact.
    +161        name: Name of the artifact for logging.
    +162
    +163    Returns:
    +164        None: Raises on validation failure.
    +165    """
    +166    if bool(path) != bool(expected_hash):
    +167        msg = f"Inconsistent presence for '{name}'. Path: {path}, Hash: {expected_hash}"
    +168        logger.error(msg)
    +169        raise UserError(msg)
    +170
    +171    if not path:
    +172        return # Artifact not present, which is consistent
     173
    -174    if any(paths_present):
    -175        if len(set(pipeline_paths.values())) != 1:
    -176            msg = f"Pipeline path mismatch across runs: {pipeline_paths}"
    -177            logger.error(msg)
    -178            raise UserError(msg)
    -179
    -180        pipeline_path = pipeline_paths["train"]
    -181        if pipeline_path is None:
    -182            msg = "Pipeline path unexpectedly None while marked present."
    -183            logger.error(msg)
    -184            raise UserError(msg)
    -185
    -186        pipeline_path_obj = Path(pipeline_path)
    -187
    -188        if not pipeline_path_obj.exists():
    -189            msg = f"Pipeline artifact path does not exist: {pipeline_path}"
    -190            logger.error(msg)
    -191            raise UserError(msg)
    -192
    -193        pipeline_hash_runtime = hash_artifact(pipeline_path_obj)
    -194
    -195        full_pipeline_hashes = {
    -196            "runtime": pipeline_hash_runtime,
    -197            **pipeline_hashes,
    -198        }
    -199
    -200        for name, h in full_pipeline_hashes.items():
    -201            if not h:
    -202                msg = f"Missing pipeline hash for '{name}'. Hashes: {full_pipeline_hashes}"
    -203                logger.error(msg)
    -204                raise UserError(msg)
    -205
    -206        if len(set(full_pipeline_hashes.values())) != 1:
    -207            msg = f"Pipeline hash mismatch across runs/runtime. Hashes: {full_pipeline_hashes}"
    -208            logger.error(msg)
    -209            raise UserError(msg)
    -210
    -211def validate_optional_artifact(
    -212    path: str | None,
    -213    expected_hash: str | None,
    -214    name: str
    -215) -> None:
    -216    """Validate optional artifact presence and hash consistency.
    -217
    -218    Args:
    -219        path: Path to the artifact.
    -220        expected_hash: Expected hash of the artifact.
    -221        name: Name of the artifact for logging.
    -222
    -223    Returns:
    -224        None: Raises on validation failure.
    -225    """
    -226    if bool(path) != bool(expected_hash):
    -227        msg = f"Inconsistent presence for '{name}'. Path: {path}, Hash: {expected_hash}"
    -228        logger.error(msg)
    -229        raise UserError(msg)
    -230
    -231    if not path:
    -232        return # Artifact not present, which is consistent
    -233
    -234    path_obj = Path(path)
    -235
    -236    if not path_obj.exists():
    -237        msg = f"Explainability artifact does not exist: {path}"
    -238        logger.error(msg)
    -239        raise UserError(msg)
    -240
    -241    actual_hash = hash_artifact(path_obj)
    -242
    -243    if actual_hash != expected_hash:
    -244        msg = (
    -245            f"Artifact hash mismatch for '{name}'. "
    -246            f"Expected: {expected_hash}, Actual: {actual_hash}"
    -247        )
    -248        logger.error(msg)
    -249        raise UserError(msg)
    -250
    -251def validate_explainability_artifacts(
    -252    explainability_artifacts: ExplainabilityArtifacts
    -253) -> None:
    -254    """Validate explainability artifact paths and hashes.
    -255
    -256    Args:
    -257        explainability_artifacts: ExplainabilityArtifacts object containing paths and hashes.
    -258
    -259    Returns:
    -260        None: Raises on validation failure.
    -261    """
    -262
    -263    validate_optional_artifact(
    -264        explainability_artifacts.top_k_feature_importances_path,
    -265        explainability_artifacts.top_k_feature_importances_hash,
    -266        "top_k_feature_importances",
    -267    )
    -268
    -269    validate_optional_artifact(
    -270        explainability_artifacts.top_k_shap_importances_path,
    -271        explainability_artifacts.top_k_shap_importances_hash,
    -272        "top_k_shap_importances",
    -273    )
    -274
    -275def validate_promotion_thresholds(promotion_thresholds: dict) -> PromotionThresholds:
    -276    """Validate raw promotion thresholds payload into typed schema.
    -277
    -278    Args:
    -279        promotion_thresholds: Raw threshold configuration dictionary.
    -280
    -281    Returns:
    -282        PromotionThresholds: Validated threshold configuration object.
    -283    """
    -284
    -285    try:
    -286        return PromotionThresholds(**promotion_thresholds)
    -287    except Exception as e:
    -288        msg = f"Invalid promotion thresholds configuration. Configuration: {promotion_thresholds}"
    -289        logger.exception(msg)
    -290        raise ConfigError(msg) from e
    +174    path_obj = Path(path)
    +175
    +176    if not path_obj.exists():
    +177        msg = f"Explainability artifact does not exist: {path}"
    +178        logger.error(msg)
    +179        raise UserError(msg)
    +180
    +181    actual_hash = hash_artifact(path_obj)
    +182
    +183    if actual_hash != expected_hash:
    +184        msg = (
    +185            f"Artifact hash mismatch for '{name}'. "
    +186            f"Expected: {expected_hash}, Actual: {actual_hash}"
    +187        )
    +188        logger.error(msg)
    +189        raise UserError(msg)
    +190
    +191def validate_explainability_artifacts(
    +192    explainability_artifacts: ExplainabilityArtifacts
    +193) -> None:
    +194    """Validate explainability artifact paths and hashes.
    +195
    +196    Args:
    +197        explainability_artifacts: ExplainabilityArtifacts object containing paths and hashes.
    +198
    +199    Returns:
    +200        None: Raises on validation failure.
    +201    """
    +202
    +203    validate_optional_artifact(
    +204        explainability_artifacts.top_k_feature_importances_path,
    +205        explainability_artifacts.top_k_feature_importances_hash,
    +206        "top_k_feature_importances",
    +207    )
    +208
    +209    validate_optional_artifact(
    +210        explainability_artifacts.top_k_shap_importances_path,
    +211        explainability_artifacts.top_k_shap_importances_hash,
    +212        "top_k_shap_importances",
    +213    )
     
    @@ -371,7 +285,7 @@

    logger = -<Logger ml.promotion.validation.validate (WARNING)> +<Logger ml.promotion.validation.artifacts (WARNING)>
    @@ -379,115 +293,6 @@

    -

    -
    - -
    - - def - validate_run_dirs( train_run_dir: pathlib.Path, eval_run_dir: pathlib.Path, explain_run_dir: pathlib.Path) -> None: - - - -
    - -
    16def validate_run_dirs(
    -17    train_run_dir: Path,
    -18    eval_run_dir: Path,
    -19    explain_run_dir: Path
    -20) -> None:
    -21    """Validate required train/eval/explain run directories exist.
    -22
    -23    Args:
    -24        train_run_dir: Training run directory.
    -25        eval_run_dir: Evaluation run directory.
    -26        explain_run_dir: Explainability run directory.
    -27
    -28    Returns:
    -29        None: Raises on validation failure.
    -30    """
    -31
    -32    if not train_run_dir.exists():
    -33        msg = f"Train run directory does not exist: {train_run_dir}"
    -34        logger.error(msg)
    -35        raise UserError(msg)
    -36    if not eval_run_dir.exists():
    -37        msg = f"Eval run directory does not exist: {eval_run_dir}"
    -38        logger.error(msg)
    -39        raise UserError(msg)
    -40    if not explain_run_dir.exists():
    -41        msg = f"Explain run directory does not exist: {explain_run_dir}"
    -42        logger.error(msg)
    -43        raise UserError(msg)
    -
    - - -

    Validate required train/eval/explain run directories exist.

    - -

    Args: - train_run_dir: Training run directory. - eval_run_dir: Evaluation run directory. - explain_run_dir: Explainability run directory.

    - -

    Returns: - None: Raises on validation failure.

    -
    - - -
    -
    - -
    - - def - validate_run_ids( *, args: argparse.Namespace, runners_metadata: ml.promotion.constants.constants.RunnersMetadata) -> None: - - - -
    - -
    45def validate_run_ids(
    -46    *,
    -47    args: argparse.Namespace,
    -48    runners_metadata: RunnersMetadata
    -49) -> None:
    -50    """Validate eval/explain runs are linked to the provided train run.
    -51
    -52    Args:
    -53        args: Parsed CLI arguments with run IDs.
    -54        runners_metadata: Loaded train/eval/explain metadata bundle.
    -55
    -56    Returns:
    -57        None: Raises on validation failure.
    -58    """
    -59
    -60    training_metadata = runners_metadata.training_metadata
    -61    evaluation_metadata = runners_metadata.evaluation_metadata
    -62    explainability_metadata = runners_metadata.explainability_metadata
    -63
    -64    if evaluation_metadata.run_identity.train_run_id != training_metadata.run_identity.train_run_id:
    -65        msg = f"Evaluation run {args.eval_run_id} is not linked to train run {args.train_run_id}"
    -66        logger.error(msg)
    -67        raise UserError(msg)
    -68
    -69    if explainability_metadata.run_identity.train_run_id != training_metadata.run_identity.train_run_id:
    -70        msg = f"Explain run {args.explain_run_id} is not linked to train run {args.train_run_id}"
    -71        logger.error(msg)
    -72        raise UserError(msg)
    -
    - - -

    Validate eval/explain runs are linked to the provided train run.

    - -

    Args: - args: Parsed CLI arguments with run IDs. - runners_metadata: Loaded train/eval/explain metadata bundle.

    - -

    Returns: - None: Raises on validation failure.

    -
    - -
    @@ -500,143 +305,143 @@

    -
     74def validate_artifacts_consistency(
    - 75    runners_metadata: RunnersMetadata
    - 76) -> None:
    - 77    """Validate artifacts consistency across train/eval/explain runs.
    +            
     14def validate_artifacts_consistency(
    + 15    runners_metadata: RunnersMetadata
    + 16) -> None:
    + 17    """Validate artifacts consistency across train/eval/explain runs.
    + 18
    + 19    Args:
    + 20        runners_metadata: Loaded train/eval/explain metadata bundle.
    + 21
    + 22    Returns:
    + 23        None: Raises on validation failure.
    + 24    """
    + 25
    + 26    statuses = {
    + 27        "train": runners_metadata.training_metadata.run_identity.status,
    + 28        "eval": runners_metadata.evaluation_metadata.run_identity.status,
    + 29        "explain": runners_metadata.explainability_metadata.run_identity.status,
    + 30    }
    + 31
    + 32    for name, status in statuses.items():
    + 33        if not status:
    + 34            msg = f"Missing run status for '{name}'. Statuses: {statuses}"
    + 35            logger.error(msg)
    + 36            raise UserError(msg)
    + 37
    + 38        if status != "success":
    + 39            msg = f"Run '{name}' did not complete successfully. Statuses: {statuses}"
    + 40            logger.error(msg)
    + 41            raise UserError(msg)
    + 42
    + 43    train_artifacts = runners_metadata.training_metadata.artifacts
    + 44    eval_artifacts = runners_metadata.evaluation_metadata.artifacts
    + 45    explain_artifacts = runners_metadata.explainability_metadata.artifacts
    + 46
    + 47    model_paths = {
    + 48        "train": train_artifacts.model_path,
    + 49        "eval": eval_artifacts.model_path,
    + 50        "explain": explain_artifacts.model_path,
    + 51    }
    + 52
    + 53    if len(set(model_paths.values())) != 1:
    + 54        msg = f"Model path mismatch across runs: {model_paths}"
    + 55        logger.error(msg)
    + 56        raise UserError(msg)
    + 57
    + 58    model_path = model_paths["train"]
    + 59    if not model_path:
    + 60        msg = "Model path is missing from metadata."
    + 61        logger.error(msg)
    + 62        raise UserError(msg)
    + 63
    + 64    model_path_obj = Path(model_path)
    + 65    if not model_path_obj.exists():
    + 66        msg = f"Model artifact path does not exist: {model_path}"
    + 67        logger.error(msg)
    + 68        raise UserError(msg)
    + 69
    + 70    model_hash_runtime = hash_artifact(model_path_obj)
    + 71
    + 72    model_hashes = {
    + 73        "runtime": model_hash_runtime,
    + 74        "train": train_artifacts.model_hash,
    + 75        "eval": eval_artifacts.model_hash,
    + 76        "explain": explain_artifacts.model_hash,
    + 77    }
      78
    - 79    Args:
    - 80        runners_metadata: Loaded train/eval/explain metadata bundle.
    - 81
    - 82    Returns:
    - 83        None: Raises on validation failure.
    - 84    """
    - 85
    - 86    statuses = {
    - 87        "train": runners_metadata.training_metadata.run_identity.status,
    - 88        "eval": runners_metadata.evaluation_metadata.run_identity.status,
    - 89        "explain": runners_metadata.explainability_metadata.run_identity.status,
    - 90    }
    - 91
    - 92    for name, status in statuses.items():
    - 93        if not status:
    - 94            msg = f"Missing run status for '{name}'. Statuses: {statuses}"
    - 95            logger.error(msg)
    - 96            raise UserError(msg)
    - 97
    - 98        if status != "success":
    - 99            msg = f"Run '{name}' did not complete successfully. Statuses: {statuses}"
    -100            logger.error(msg)
    -101            raise UserError(msg)
    -102
    -103    train_artifacts = runners_metadata.training_metadata.artifacts
    -104    eval_artifacts = runners_metadata.evaluation_metadata.artifacts
    -105    explain_artifacts = runners_metadata.explainability_metadata.artifacts
    -106
    -107    model_paths = {
    -108        "train": train_artifacts.model_path,
    -109        "eval": eval_artifacts.model_path,
    -110        "explain": explain_artifacts.model_path,
    -111    }
    -112
    -113    if len(set(model_paths.values())) != 1:
    -114        msg = f"Model path mismatch across runs: {model_paths}"
    -115        logger.error(msg)
    -116        raise UserError(msg)
    -117
    -118    model_path = model_paths["train"]
    -119    if not model_path:
    -120        msg = "Model path is missing from metadata."
    -121        logger.error(msg)
    -122        raise UserError(msg)
    -123
    -124    model_path_obj = Path(model_path)
    -125    if not model_path_obj.exists():
    -126        msg = f"Model artifact path does not exist: {model_path}"
    -127        logger.error(msg)
    -128        raise UserError(msg)
    -129
    -130    model_hash_runtime = hash_artifact(model_path_obj)
    -131
    -132    model_hashes = {
    -133        "runtime": model_hash_runtime,
    -134        "train": train_artifacts.model_hash,
    -135        "eval": eval_artifacts.model_hash,
    -136        "explain": explain_artifacts.model_hash,
    -137    }
    -138
    -139    for name, h in model_hashes.items():
    -140        if not h:
    -141            msg = f"Missing model hash for '{name}'. Hashes: {model_hashes}"
    -142            logger.error(msg)
    -143            raise UserError(msg)
    -144
    -145    if len(set(model_hashes.values())) != 1:
    -146        msg = f"Model hash mismatch across runs/runtime. Hashes: {model_hashes}"
    -147        logger.error(msg)
    -148        raise UserError(msg)
    -149
    -150    pipeline_paths = {
    -151        "train": train_artifacts.pipeline_path,
    -152        "eval": eval_artifacts.pipeline_path,
    -153        "explain": explain_artifacts.pipeline_path,
    -154    }
    -155
    -156    pipeline_hashes = {
    -157        "train": train_artifacts.pipeline_hash,
    -158        "eval": eval_artifacts.pipeline_hash,
    -159        "explain": explain_artifacts.pipeline_hash,
    -160    }
    -161
    -162    paths_present = [bool(p) for p in pipeline_paths.values()]
    -163    hashes_present = [bool(h) for h in pipeline_hashes.values()]
    -164
    -165    if len(set(paths_present)) > 1:
    -166        msg = f"Inconsistent pipeline_path presence across runs: {pipeline_paths}"
    -167        logger.error(msg)
    -168        raise UserError(msg)
    -169
    -170    if len(set(hashes_present)) > 1:
    -171        msg = f"Inconsistent pipeline_hash presence across runs: {pipeline_hashes}"
    -172        logger.error(msg)
    -173        raise UserError(msg)
    -174
    -175    if any(paths_present):
    -176        if len(set(pipeline_paths.values())) != 1:
    -177            msg = f"Pipeline path mismatch across runs: {pipeline_paths}"
    -178            logger.error(msg)
    -179            raise UserError(msg)
    -180
    -181        pipeline_path = pipeline_paths["train"]
    -182        if pipeline_path is None:
    -183            msg = "Pipeline path unexpectedly None while marked present."
    -184            logger.error(msg)
    -185            raise UserError(msg)
    -186
    -187        pipeline_path_obj = Path(pipeline_path)
    -188
    -189        if not pipeline_path_obj.exists():
    -190            msg = f"Pipeline artifact path does not exist: {pipeline_path}"
    -191            logger.error(msg)
    -192            raise UserError(msg)
    -193
    -194        pipeline_hash_runtime = hash_artifact(pipeline_path_obj)
    -195
    -196        full_pipeline_hashes = {
    -197            "runtime": pipeline_hash_runtime,
    -198            **pipeline_hashes,
    -199        }
    -200
    -201        for name, h in full_pipeline_hashes.items():
    -202            if not h:
    -203                msg = f"Missing pipeline hash for '{name}'. Hashes: {full_pipeline_hashes}"
    -204                logger.error(msg)
    -205                raise UserError(msg)
    -206
    -207        if len(set(full_pipeline_hashes.values())) != 1:
    -208            msg = f"Pipeline hash mismatch across runs/runtime. Hashes: {full_pipeline_hashes}"
    -209            logger.error(msg)
    -210            raise UserError(msg)
    + 79    for name, h in model_hashes.items():
    + 80        if not h:
    + 81            msg = f"Missing model hash for '{name}'. Hashes: {model_hashes}"
    + 82            logger.error(msg)
    + 83            raise UserError(msg)
    + 84
    + 85    if len(set(model_hashes.values())) != 1:
    + 86        msg = f"Model hash mismatch across runs/runtime. Hashes: {model_hashes}"
    + 87        logger.error(msg)
    + 88        raise UserError(msg)
    + 89
    + 90    pipeline_paths = {
    + 91        "train": train_artifacts.pipeline_path,
    + 92        "eval": eval_artifacts.pipeline_path,
    + 93        "explain": explain_artifacts.pipeline_path,
    + 94    }
    + 95
    + 96    pipeline_hashes = {
    + 97        "train": train_artifacts.pipeline_hash,
    + 98        "eval": eval_artifacts.pipeline_hash,
    + 99        "explain": explain_artifacts.pipeline_hash,
    +100    }
    +101
    +102    paths_present = [bool(p) for p in pipeline_paths.values()]
    +103    hashes_present = [bool(h) for h in pipeline_hashes.values()]
    +104
    +105    if len(set(paths_present)) > 1:
    +106        msg = f"Inconsistent pipeline_path presence across runs: {pipeline_paths}"
    +107        logger.error(msg)
    +108        raise UserError(msg)
    +109
    +110    if len(set(hashes_present)) > 1:
    +111        msg = f"Inconsistent pipeline_hash presence across runs: {pipeline_hashes}"
    +112        logger.error(msg)
    +113        raise UserError(msg)
    +114
    +115    if any(paths_present):
    +116        if len(set(pipeline_paths.values())) != 1:
    +117            msg = f"Pipeline path mismatch across runs: {pipeline_paths}"
    +118            logger.error(msg)
    +119            raise UserError(msg)
    +120
    +121        pipeline_path = pipeline_paths["train"]
    +122        if pipeline_path is None:
    +123            msg = "Pipeline path unexpectedly None while marked present."
    +124            logger.error(msg)
    +125            raise UserError(msg)
    +126
    +127        pipeline_path_obj = Path(pipeline_path)
    +128
    +129        if not pipeline_path_obj.exists():
    +130            msg = f"Pipeline artifact path does not exist: {pipeline_path}"
    +131            logger.error(msg)
    +132            raise UserError(msg)
    +133
    +134        pipeline_hash_runtime = hash_artifact(pipeline_path_obj)
    +135
    +136        full_pipeline_hashes = {
    +137            "runtime": pipeline_hash_runtime,
    +138            **pipeline_hashes,
    +139        }
    +140
    +141        for name, h in full_pipeline_hashes.items():
    +142            if not h:
    +143                msg = f"Missing pipeline hash for '{name}'. Hashes: {full_pipeline_hashes}"
    +144                logger.error(msg)
    +145                raise UserError(msg)
    +146
    +147        if len(set(full_pipeline_hashes.values())) != 1:
    +148            msg = f"Pipeline hash mismatch across runs/runtime. Hashes: {full_pipeline_hashes}"
    +149            logger.error(msg)
    +150            raise UserError(msg)
     
    @@ -662,45 +467,45 @@

    -
    212def validate_optional_artifact(
    -213    path: str | None,
    -214    expected_hash: str | None,
    -215    name: str
    -216) -> None:
    -217    """Validate optional artifact presence and hash consistency.
    -218
    -219    Args:
    -220        path: Path to the artifact.
    -221        expected_hash: Expected hash of the artifact.
    -222        name: Name of the artifact for logging.
    -223
    -224    Returns:
    -225        None: Raises on validation failure.
    -226    """
    -227    if bool(path) != bool(expected_hash):
    -228        msg = f"Inconsistent presence for '{name}'. Path: {path}, Hash: {expected_hash}"
    -229        logger.error(msg)
    -230        raise UserError(msg)
    -231
    -232    if not path:
    -233        return # Artifact not present, which is consistent
    -234
    -235    path_obj = Path(path)
    -236
    -237    if not path_obj.exists():
    -238        msg = f"Explainability artifact does not exist: {path}"
    -239        logger.error(msg)
    -240        raise UserError(msg)
    -241
    -242    actual_hash = hash_artifact(path_obj)
    -243
    -244    if actual_hash != expected_hash:
    -245        msg = (
    -246            f"Artifact hash mismatch for '{name}'. "
    -247            f"Expected: {expected_hash}, Actual: {actual_hash}"
    -248        )
    -249        logger.error(msg)
    -250        raise UserError(msg)
    +            
    152def validate_optional_artifact(
    +153    path: str | None,
    +154    expected_hash: str | None,
    +155    name: str
    +156) -> None:
    +157    """Validate optional artifact presence and hash consistency.
    +158
    +159    Args:
    +160        path: Path to the artifact.
    +161        expected_hash: Expected hash of the artifact.
    +162        name: Name of the artifact for logging.
    +163
    +164    Returns:
    +165        None: Raises on validation failure.
    +166    """
    +167    if bool(path) != bool(expected_hash):
    +168        msg = f"Inconsistent presence for '{name}'. Path: {path}, Hash: {expected_hash}"
    +169        logger.error(msg)
    +170        raise UserError(msg)
    +171
    +172    if not path:
    +173        return # Artifact not present, which is consistent
    +174
    +175    path_obj = Path(path)
    +176
    +177    if not path_obj.exists():
    +178        msg = f"Explainability artifact does not exist: {path}"
    +179        logger.error(msg)
    +180        raise UserError(msg)
    +181
    +182    actual_hash = hash_artifact(path_obj)
    +183
    +184    if actual_hash != expected_hash:
    +185        msg = (
    +186            f"Artifact hash mismatch for '{name}'. "
    +187            f"Expected: {expected_hash}, Actual: {actual_hash}"
    +188        )
    +189        logger.error(msg)
    +190        raise UserError(msg)
     
    @@ -728,29 +533,29 @@

    -
    252def validate_explainability_artifacts(
    -253    explainability_artifacts: ExplainabilityArtifacts
    -254) -> None:
    -255    """Validate explainability artifact paths and hashes.
    -256
    -257    Args:
    -258        explainability_artifacts: ExplainabilityArtifacts object containing paths and hashes.
    -259
    -260    Returns:
    -261        None: Raises on validation failure.
    -262    """
    -263
    -264    validate_optional_artifact(
    -265        explainability_artifacts.top_k_feature_importances_path,
    -266        explainability_artifacts.top_k_feature_importances_hash,
    -267        "top_k_feature_importances",
    -268    )
    -269
    -270    validate_optional_artifact(
    -271        explainability_artifacts.top_k_shap_importances_path,
    -272        explainability_artifacts.top_k_shap_importances_hash,
    -273        "top_k_shap_importances",
    -274    )
    +            
    192def validate_explainability_artifacts(
    +193    explainability_artifacts: ExplainabilityArtifacts
    +194) -> None:
    +195    """Validate explainability artifact paths and hashes.
    +196
    +197    Args:
    +198        explainability_artifacts: ExplainabilityArtifacts object containing paths and hashes.
    +199
    +200    Returns:
    +201        None: Raises on validation failure.
    +202    """
    +203
    +204    validate_optional_artifact(
    +205        explainability_artifacts.top_k_feature_importances_path,
    +206        explainability_artifacts.top_k_feature_importances_hash,
    +207        "top_k_feature_importances",
    +208    )
    +209
    +210    validate_optional_artifact(
    +211        explainability_artifacts.top_k_shap_importances_path,
    +212        explainability_artifacts.top_k_shap_importances_hash,
    +213        "top_k_shap_importances",
    +214    )
     
    @@ -764,47 +569,6 @@

    -

    -
    - -
    - - def - validate_promotion_thresholds( promotion_thresholds: dict) -> ml.promotion.config.models.PromotionThresholds: - - - -
    - -
    276def validate_promotion_thresholds(promotion_thresholds: dict) -> PromotionThresholds:
    -277    """Validate raw promotion thresholds payload into typed schema.
    -278
    -279    Args:
    -280        promotion_thresholds: Raw threshold configuration dictionary.
    -281
    -282    Returns:
    -283        PromotionThresholds: Validated threshold configuration object.
    -284    """
    -285
    -286    try:
    -287        return PromotionThresholds(**promotion_thresholds)
    -288    except Exception as e:
    -289        msg = f"Invalid promotion thresholds configuration. Configuration: {promotion_thresholds}"
    -290        logger.exception(msg)
    -291        raise ConfigError(msg) from e
    -
    - - -

    Validate raw promotion thresholds payload into typed schema.

    - -

    Args: - promotion_thresholds: Raw threshold configuration dictionary.

    - -

    Returns: - PromotionThresholds: Validated threshold configuration object.

    -
    - -
    + \ No newline at end of file diff --git a/docs/api/ml/ml/promotion/validation/registry_entry.html b/docs/api/ml/ml/promotion/validation/registry_entry.html new file mode 100644 index 00000000..8454a250 --- /dev/null +++ b/docs/api/ml/ml/promotion/validation/registry_entry.html @@ -0,0 +1,327 @@ + + + + + + + ml.promotion.validation.registry_entry API documentation + + + + + + + + + +
    +
    +

    +ml.promotion.validation.registry_entry

    + + + + + + +
     1import logging
    + 2
    + 3from ml.exceptions import RuntimeMLError
    + 4from ml.promotion.config.registry_entry import RegistryEntry
    + 5
    + 6logger = logging.getLogger(__name__)
    + 7
    + 8def validate_registry_entry(entry_raw: dict) -> RegistryEntry:
    + 9    """
    +10    Validate the raw registry entry against the RegistryEntry schema.
    +11
    +12    Args:
    +13        entry_raw (dict): The raw registry entry dictionary to validate.
    +14
    +15    Returns:
    +16        RegistryEntry: The validated registry entry object.
    +17    """
    +18    try:
    +19        validated_entry = RegistryEntry.model_validate(entry_raw)
    +20        logger.debug("Successfully validated raw registry entry.")
    +21        return validated_entry
    +22    except Exception as e:
    +23        msg = "Error validating raw registry entry."
    +24        logger.exception(msg)
    +25        raise RuntimeMLError(msg) from e
    +
    + + +
    +
    +
    + logger = +<Logger ml.promotion.validation.registry_entry (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + validate_registry_entry(entry_raw: dict) -> ml.promotion.config.registry_entry.RegistryEntry: + + + +
    + +
     9def validate_registry_entry(entry_raw: dict) -> RegistryEntry:
    +10    """
    +11    Validate the raw registry entry against the RegistryEntry schema.
    +12
    +13    Args:
    +14        entry_raw (dict): The raw registry entry dictionary to validate.
    +15
    +16    Returns:
    +17        RegistryEntry: The validated registry entry object.
    +18    """
    +19    try:
    +20        validated_entry = RegistryEntry.model_validate(entry_raw)
    +21        logger.debug("Successfully validated raw registry entry.")
    +22        return validated_entry
    +23    except Exception as e:
    +24        msg = "Error validating raw registry entry."
    +25        logger.exception(msg)
    +26        raise RuntimeMLError(msg) from e
    +
    + + +

    Validate the raw registry entry against the RegistryEntry schema.

    + +

    Args: + entry_raw (dict): The raw registry entry dictionary to validate.

    + +

    Returns: + RegistryEntry: The validated registry entry object.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/promotion/validation/runners.html b/docs/api/ml/ml/promotion/validation/runners.html new file mode 100644 index 00000000..3706dd90 --- /dev/null +++ b/docs/api/ml/ml/promotion/validation/runners.html @@ -0,0 +1,441 @@ + + + + + + + ml.promotion.validation.runners API documentation + + + + + + + + + +
    +
    +

    +ml.promotion.validation.runners

    + +

    Validation functions for ML promotion run metadata and directories.

    +
    + + + + + +
     1"""Validation functions for ML promotion run metadata and directories."""
    + 2
    + 3import argparse
    + 4import logging
    + 5from pathlib import Path
    + 6
    + 7from ml.exceptions import UserError
    + 8from ml.promotion.constants.constants import RunnersMetadata
    + 9
    +10logger = logging.getLogger(__name__)
    +11
    +12def validate_run_dirs(
    +13    train_run_dir: Path,
    +14    eval_run_dir: Path,
    +15    explain_run_dir: Path
    +16) -> None:
    +17    """Validate required train/eval/explain run directories exist.
    +18
    +19    Args:
    +20        train_run_dir: Training run directory.
    +21        eval_run_dir: Evaluation run directory.
    +22        explain_run_dir: Explainability run directory.
    +23
    +24    Returns:
    +25        None: Raises on validation failure.
    +26    """
    +27
    +28    if not train_run_dir.exists():
    +29        msg = f"Train run directory does not exist: {train_run_dir}"
    +30        logger.error(msg)
    +31        raise UserError(msg)
    +32    if not eval_run_dir.exists():
    +33        msg = f"Eval run directory does not exist: {eval_run_dir}"
    +34        logger.error(msg)
    +35        raise UserError(msg)
    +36    if not explain_run_dir.exists():
    +37        msg = f"Explain run directory does not exist: {explain_run_dir}"
    +38        logger.error(msg)
    +39        raise UserError(msg)
    +40
    +41def validate_run_ids(
    +42    *,
    +43    args: argparse.Namespace,
    +44    runners_metadata: RunnersMetadata
    +45) -> None:
    +46    """Validate eval/explain runs are linked to the provided train run.
    +47
    +48    Args:
    +49        args: Parsed CLI arguments with run IDs.
    +50        runners_metadata: Loaded train/eval/explain metadata bundle.
    +51
    +52    Returns:
    +53        None: Raises on validation failure.
    +54    """
    +55
    +56    training_metadata = runners_metadata.training_metadata
    +57    evaluation_metadata = runners_metadata.evaluation_metadata
    +58    explainability_metadata = runners_metadata.explainability_metadata
    +59
    +60    if evaluation_metadata.run_identity.train_run_id != training_metadata.run_identity.train_run_id:
    +61        msg = f"Evaluation run {args.eval_run_id} is not linked to train run {args.train_run_id}"
    +62        logger.error(msg)
    +63        raise UserError(msg)
    +64
    +65    if explainability_metadata.run_identity.train_run_id != training_metadata.run_identity.train_run_id:
    +66        msg = f"Explain run {args.explain_run_id} is not linked to train run {args.train_run_id}"
    +67        logger.error(msg)
    +68        raise UserError(msg)
    +
    + + +
    +
    +
    + logger = +<Logger ml.promotion.validation.runners (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + validate_run_dirs( train_run_dir: pathlib.Path, eval_run_dir: pathlib.Path, explain_run_dir: pathlib.Path) -> None: + + + +
    + +
    13def validate_run_dirs(
    +14    train_run_dir: Path,
    +15    eval_run_dir: Path,
    +16    explain_run_dir: Path
    +17) -> None:
    +18    """Validate required train/eval/explain run directories exist.
    +19
    +20    Args:
    +21        train_run_dir: Training run directory.
    +22        eval_run_dir: Evaluation run directory.
    +23        explain_run_dir: Explainability run directory.
    +24
    +25    Returns:
    +26        None: Raises on validation failure.
    +27    """
    +28
    +29    if not train_run_dir.exists():
    +30        msg = f"Train run directory does not exist: {train_run_dir}"
    +31        logger.error(msg)
    +32        raise UserError(msg)
    +33    if not eval_run_dir.exists():
    +34        msg = f"Eval run directory does not exist: {eval_run_dir}"
    +35        logger.error(msg)
    +36        raise UserError(msg)
    +37    if not explain_run_dir.exists():
    +38        msg = f"Explain run directory does not exist: {explain_run_dir}"
    +39        logger.error(msg)
    +40        raise UserError(msg)
    +
    + + +

    Validate required train/eval/explain run directories exist.

    + +

    Args: + train_run_dir: Training run directory. + eval_run_dir: Evaluation run directory. + explain_run_dir: Explainability run directory.

    + +

    Returns: + None: Raises on validation failure.

    +
    + + +
    +
    + +
    + + def + validate_run_ids( *, args: argparse.Namespace, runners_metadata: ml.promotion.constants.constants.RunnersMetadata) -> None: + + + +
    + +
    42def validate_run_ids(
    +43    *,
    +44    args: argparse.Namespace,
    +45    runners_metadata: RunnersMetadata
    +46) -> None:
    +47    """Validate eval/explain runs are linked to the provided train run.
    +48
    +49    Args:
    +50        args: Parsed CLI arguments with run IDs.
    +51        runners_metadata: Loaded train/eval/explain metadata bundle.
    +52
    +53    Returns:
    +54        None: Raises on validation failure.
    +55    """
    +56
    +57    training_metadata = runners_metadata.training_metadata
    +58    evaluation_metadata = runners_metadata.evaluation_metadata
    +59    explainability_metadata = runners_metadata.explainability_metadata
    +60
    +61    if evaluation_metadata.run_identity.train_run_id != training_metadata.run_identity.train_run_id:
    +62        msg = f"Evaluation run {args.eval_run_id} is not linked to train run {args.train_run_id}"
    +63        logger.error(msg)
    +64        raise UserError(msg)
    +65
    +66    if explainability_metadata.run_identity.train_run_id != training_metadata.run_identity.train_run_id:
    +67        msg = f"Explain run {args.explain_run_id} is not linked to train run {args.train_run_id}"
    +68        logger.error(msg)
    +69        raise UserError(msg)
    +
    + + +

    Validate eval/explain runs are linked to the provided train run.

    + +

    Args: + args: Parsed CLI arguments with run IDs. + runners_metadata: Loaded train/eval/explain metadata bundle.

    + +

    Returns: + None: Raises on validation failure.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/ml/ml/runners/evaluation/evaluators/classification/classification.html b/docs/api/ml/ml/runners/evaluation/evaluators/classification/classification.html index 81dd4112..823833dc 100644 --- a/docs/api/ml/ml/runners/evaluation/evaluators/classification/classification.html +++ b/docs/api/ml/ml/runners/evaluation/evaluators/classification/classification.html @@ -72,141 +72,143 @@

    5 6from ml.config.schemas.model_cfg import TrainModelConfig 7from ml.exceptions import PipelineContractError - 8from ml.features.loading.features_and_target import load_features_and_target - 9from ml.features.loading.resolve_feature_snapshots import resolve_feature_snapshots - 10from ml.features.splitting.splitting import get_splits - 11from ml.features.validation.validate_snapshot_ids import validate_snapshot_ids - 12from ml.metadata.validation.runners.training import validate_training_metadata - 13from ml.modeling.models.feature_lineage import FeatureLineage - 14from ml.runners.evaluation.constants.data_splits import DataSplits - 15from ml.runners.evaluation.constants.output import EvaluateOutput - 16from ml.runners.evaluation.evaluators.base import Evaluator - 17from ml.runners.evaluation.evaluators.classification.metrics import evaluate_model - 18from ml.runners.evaluation.models.predictions import PredictionArtifacts - 19from ml.runners.shared.loading.get_snapshot_binding_from_training_metadata import ( - 20 get_snapshot_binding_from_training_metadata, - 21) - 22from ml.runners.shared.loading.pipeline import load_model_or_pipeline - 23from ml.utils.loaders import load_json - 24 - 25logger = logging.getLogger(__name__) - 26 - 27class ClassificationEvaluator(Evaluator): - 28 """Evaluate binary classification models across train/val/test splits.""" - 29 - 30 def evaluate( - 31 self, - 32 *, - 33 model_cfg: TrainModelConfig, - 34 strict: bool, - 35 best_threshold: float | None, - 36 train_dir: Path, - 37 ) -> EvaluateOutput: - 38 """Load artifacts and data, run split-wise evaluation, return outputs. - 39 - 40 Args: - 41 model_cfg: Validated training model configuration. - 42 strict: Whether data-loading checks should fail strictly. - 43 best_threshold: Optional decision threshold for binary classification. - 44 train_dir: Directory containing training artifacts and metadata. - 45 entity_key: The name of the entity key column to extract. - 46 - 47 Returns: - 48 Evaluation output with metrics, predictions, and feature lineage. - 49 - 50 Raises: - 51 PipelineContractError: If the loaded pipeline does not expose - 52 ``predict_proba`` required for classification evaluation. - 53 - 54 Notes: - 55 Uses training metadata lineage bindings to resolve feature snapshots so - 56 evaluation inputs match training-time feature versions. - 57 - 58 Side Effects: - 59 Loads persisted artifacts and executes split-wise inference on - 60 train/validation/test data. - 61 """ - 62 - 63 data_splits: DataSplits - 64 prediction_dfs: PredictionArtifacts - 65 feature_lineage: list[FeatureLineage] - 66 - 67 if best_threshold is None and model_cfg.task.subtype and model_cfg.task.subtype.lower() == "binary": - 68 msg = f"Best threshold for classification evaluation is not defined for task '{model_cfg.task.type}' with subtype '{model_cfg.task.subtype}'. Defaulting to 0.5." - 69 logger.warning(msg) - 70 best_threshold = 0.5 - 71 - 72 # Load the trained pipeline from the training artifacts - 73 training_metadata_file = train_dir / "metadata.json" - 74 training_metadata_raw = load_json(training_metadata_file) - 75 training_metadata = validate_training_metadata(training_metadata_raw) - 76 - 77 if not training_metadata.artifacts.pipeline_path: - 78 msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline." - 79 logger.error(msg) - 80 raise PipelineContractError(msg) - 81 - 82 pipeline_file = Path(training_metadata.artifacts.pipeline_path) - 83 pipeline = load_model_or_pipeline(pipeline_file, "pipeline") - 84 - 85 if not hasattr(pipeline, "predict_proba"): - 86 msg = "The loaded pipeline does not implement 'predict_proba', which is required for classification evaluation. Please ensure the pipeline is a probabilistic classifier." - 87 logger.error(msg) - 88 raise PipelineContractError(msg) - 89 - 90 # Get data splits - 91 snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata) - 92 - 93 snapshot_selection = resolve_feature_snapshots( - 94 feature_store_path=Path(model_cfg.feature_store.path), - 95 feature_sets=model_cfg.feature_store.feature_sets, - 96 snapshot_binding=snapshot_binding, - 97 snapshot_binding_key=None - 98 ) - 99 X, y, feature_lineage, entity_key = load_features_and_target( -100 model_cfg, -101 snapshot_selection=snapshot_selection, -102 drop_entity_key=False, -103 strict=strict -104 ) -105 -106 validate_snapshot_ids(feature_lineage, snapshot_selection) + 8from ml.features.loading.resolve_feature_snapshots import resolve_feature_snapshots + 9from ml.features.splitting.splitting import get_splits + 10from ml.features.validation.validate_snapshot_ids import validate_snapshot_ids + 11from ml.metadata.validation.runners.training import validate_training_metadata + 12from ml.modeling.models.feature_lineage import FeatureLineage + 13from ml.runners.evaluation.constants.data_splits import DataSplits + 14from ml.runners.evaluation.constants.output import EvaluateOutput + 15from ml.runners.evaluation.evaluators.base import Evaluator + 16from ml.runners.evaluation.evaluators.classification.metrics import evaluate_model + 17from ml.runners.evaluation.models.predictions import PredictionArtifacts + 18from ml.runners.shared.loading.get_snapshot_binding_from_training_metadata import ( + 19 get_snapshot_binding_from_training_metadata, + 20) + 21from ml.runners.shared.loading.pipeline import load_model_or_pipeline + 22from ml.utils.loaders import load_json + 23 + 24logger = logging.getLogger(__name__) + 25 + 26class ClassificationEvaluator(Evaluator): + 27 """Evaluate binary classification models across train/val/test splits.""" + 28 + 29 def evaluate( + 30 self, + 31 *, + 32 model_cfg: TrainModelConfig, + 33 strict: bool, + 34 best_threshold: float | None, + 35 train_dir: Path, + 36 ) -> EvaluateOutput: + 37 """Load artifacts and data, run split-wise evaluation, return outputs. + 38 + 39 Args: + 40 model_cfg: Validated training model configuration. + 41 strict: Whether data-loading checks should fail strictly. + 42 best_threshold: Optional decision threshold for binary classification. + 43 train_dir: Directory containing training artifacts and metadata. + 44 entity_key: The name of the entity key column to extract. + 45 + 46 Returns: + 47 Evaluation output with metrics, predictions, and feature lineage. + 48 + 49 Raises: + 50 PipelineContractError: If the loaded pipeline does not expose + 51 ``predict_proba`` required for classification evaluation. + 52 + 53 Notes: + 54 Uses training metadata lineage bindings to resolve feature snapshots so + 55 evaluation inputs match training-time feature versions. + 56 + 57 Side Effects: + 58 Loads persisted artifacts and executes split-wise inference on + 59 train/validation/test data. + 60 """ + 61 + 62 # Lazy import to avoid circular dependencies + 63 from ml.features.loading.features_and_target import load_features_and_target + 64 + 65 data_splits: DataSplits + 66 prediction_dfs: PredictionArtifacts + 67 feature_lineage: list[FeatureLineage] + 68 + 69 if best_threshold is None and model_cfg.task.subtype and model_cfg.task.subtype.lower() == "binary": + 70 msg = f"Best threshold for classification evaluation is not defined for task '{model_cfg.task.type}' with subtype '{model_cfg.task.subtype}'. Defaulting to 0.5." + 71 logger.warning(msg) + 72 best_threshold = 0.5 + 73 + 74 # Load the trained pipeline from the training artifacts + 75 training_metadata_file = train_dir / "metadata.json" + 76 training_metadata_raw = load_json(training_metadata_file) + 77 training_metadata = validate_training_metadata(training_metadata_raw) + 78 + 79 if not training_metadata.artifacts.pipeline_path: + 80 msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline." + 81 logger.error(msg) + 82 raise PipelineContractError(msg) + 83 + 84 pipeline_file = Path(training_metadata.artifacts.pipeline_path) + 85 pipeline = load_model_or_pipeline(pipeline_file, "pipeline") + 86 + 87 if not hasattr(pipeline, "predict_proba"): + 88 msg = "The loaded pipeline does not implement 'predict_proba', which is required for classification evaluation. Please ensure the pipeline is a probabilistic classifier." + 89 logger.error(msg) + 90 raise PipelineContractError(msg) + 91 + 92 # Get data splits + 93 snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata) + 94 + 95 snapshot_selection = resolve_feature_snapshots( + 96 feature_store_path=Path(model_cfg.feature_store.path), + 97 feature_sets=model_cfg.feature_store.feature_sets, + 98 snapshot_binding=snapshot_binding, + 99 snapshot_binding_key=None +100 ) +101 X, y, feature_lineage, entity_key = load_features_and_target( +102 model_cfg, +103 snapshot_selection=snapshot_selection, +104 drop_entity_key=False, +105 strict=strict +106 ) 107 -108 splits, splits_info = get_splits( -109 X=X, -110 y=y, -111 split_cfg=model_cfg.split, -112 data_type=model_cfg.data_type, -113 task_cfg=model_cfg.task -114 ) -115 X_train = splits.X_train -116 y_train = splits.y_train -117 X_val = splits.X_val -118 y_val = splits.y_val -119 X_test = splits.X_test -120 y_test = splits.y_test -121 -122 data_splits = DataSplits( -123 train=(X_train, y_train), -124 val=(X_val, y_val), -125 test=(X_test, y_test) -126 ) -127 -128 # Evaluate the model -129 metrics, prediction_dfs = evaluate_model( -130 model_cfg, -131 pipeline=pipeline, -132 data_splits=data_splits, -133 best_threshold=best_threshold, -134 entity_key=entity_key -135 ) -136 -137 output = EvaluateOutput( -138 metrics=metrics, -139 prediction_dfs=prediction_dfs, -140 lineage=feature_lineage -141 ) -142 return output +108 validate_snapshot_ids(feature_lineage, snapshot_selection) +109 +110 splits, splits_info = get_splits( +111 X=X, +112 y=y, +113 split_cfg=model_cfg.split, +114 data_type=model_cfg.data_type, +115 task_cfg=model_cfg.task +116 ) +117 X_train = splits.X_train +118 y_train = splits.y_train +119 X_val = splits.X_val +120 y_val = splits.y_val +121 X_test = splits.X_test +122 y_test = splits.y_test +123 +124 data_splits = DataSplits( +125 train=(X_train, y_train), +126 val=(X_val, y_val), +127 test=(X_test, y_test) +128 ) +129 +130 # Evaluate the model +131 metrics, prediction_dfs = evaluate_model( +132 model_cfg, +133 pipeline=pipeline, +134 data_splits=data_splits, +135 best_threshold=best_threshold, +136 entity_key=entity_key +137 ) +138 +139 output = EvaluateOutput( +140 metrics=metrics, +141 prediction_dfs=prediction_dfs, +142 lineage=feature_lineage +143 ) +144 return output @@ -234,122 +236,125 @@

    -
     28class ClassificationEvaluator(Evaluator):
    - 29    """Evaluate binary classification models across train/val/test splits."""
    - 30
    - 31    def evaluate(
    - 32        self,
    - 33        *,
    - 34        model_cfg: TrainModelConfig,
    - 35        strict: bool,
    - 36        best_threshold: float | None,
    - 37        train_dir: Path,
    - 38    ) -> EvaluateOutput:
    - 39        """Load artifacts and data, run split-wise evaluation, return outputs.
    - 40
    - 41        Args:
    - 42            model_cfg: Validated training model configuration.
    - 43            strict: Whether data-loading checks should fail strictly.
    - 44            best_threshold: Optional decision threshold for binary classification.
    - 45            train_dir: Directory containing training artifacts and metadata.
    - 46            entity_key: The name of the entity key column to extract.
    - 47
    - 48        Returns:
    - 49            Evaluation output with metrics, predictions, and feature lineage.
    - 50
    - 51        Raises:
    - 52            PipelineContractError: If the loaded pipeline does not expose
    - 53                ``predict_proba`` required for classification evaluation.
    - 54
    - 55        Notes:
    - 56            Uses training metadata lineage bindings to resolve feature snapshots so
    - 57            evaluation inputs match training-time feature versions.
    - 58
    - 59        Side Effects:
    - 60            Loads persisted artifacts and executes split-wise inference on
    - 61            train/validation/test data.
    - 62        """
    - 63
    - 64        data_splits: DataSplits
    - 65        prediction_dfs: PredictionArtifacts
    - 66        feature_lineage: list[FeatureLineage]
    - 67
    - 68        if best_threshold is None and model_cfg.task.subtype and model_cfg.task.subtype.lower() == "binary":
    - 69            msg = f"Best threshold for classification evaluation is not defined for task '{model_cfg.task.type}' with subtype '{model_cfg.task.subtype}'. Defaulting to 0.5."
    - 70            logger.warning(msg)
    - 71            best_threshold = 0.5
    - 72
    - 73        # Load the trained pipeline from the training artifacts
    - 74        training_metadata_file = train_dir / "metadata.json"
    - 75        training_metadata_raw = load_json(training_metadata_file)
    - 76        training_metadata = validate_training_metadata(training_metadata_raw)
    - 77
    - 78        if  not training_metadata.artifacts.pipeline_path:
    - 79            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline."
    - 80            logger.error(msg)
    - 81            raise PipelineContractError(msg)
    - 82
    - 83        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    - 84        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    - 85
    - 86        if not hasattr(pipeline, "predict_proba"):
    - 87            msg = "The loaded pipeline does not implement 'predict_proba', which is required for classification evaluation. Please ensure the pipeline is a probabilistic classifier."
    - 88            logger.error(msg)
    - 89            raise PipelineContractError(msg)
    - 90
    - 91        # Get data splits
    - 92        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    - 93
    - 94        snapshot_selection = resolve_feature_snapshots(
    - 95            feature_store_path=Path(model_cfg.feature_store.path),
    - 96            feature_sets=model_cfg.feature_store.feature_sets,
    - 97            snapshot_binding=snapshot_binding,
    - 98            snapshot_binding_key=None
    - 99        )
    -100        X, y, feature_lineage, entity_key = load_features_and_target(
    -101            model_cfg,
    -102            snapshot_selection=snapshot_selection,
    -103            drop_entity_key=False,
    -104            strict=strict
    -105        )
    -106
    -107        validate_snapshot_ids(feature_lineage, snapshot_selection)
    +            
     27class ClassificationEvaluator(Evaluator):
    + 28    """Evaluate binary classification models across train/val/test splits."""
    + 29
    + 30    def evaluate(
    + 31        self,
    + 32        *,
    + 33        model_cfg: TrainModelConfig,
    + 34        strict: bool,
    + 35        best_threshold: float | None,
    + 36        train_dir: Path,
    + 37    ) -> EvaluateOutput:
    + 38        """Load artifacts and data, run split-wise evaluation, return outputs.
    + 39
    + 40        Args:
    + 41            model_cfg: Validated training model configuration.
    + 42            strict: Whether data-loading checks should fail strictly.
    + 43            best_threshold: Optional decision threshold for binary classification.
    + 44            train_dir: Directory containing training artifacts and metadata.
    + 45            entity_key: The name of the entity key column to extract.
    + 46
    + 47        Returns:
    + 48            Evaluation output with metrics, predictions, and feature lineage.
    + 49
    + 50        Raises:
    + 51            PipelineContractError: If the loaded pipeline does not expose
    + 52                ``predict_proba`` required for classification evaluation.
    + 53
    + 54        Notes:
    + 55            Uses training metadata lineage bindings to resolve feature snapshots so
    + 56            evaluation inputs match training-time feature versions.
    + 57
    + 58        Side Effects:
    + 59            Loads persisted artifacts and executes split-wise inference on
    + 60            train/validation/test data.
    + 61        """
    + 62
    + 63        # Lazy import to avoid circular dependencies
    + 64        from ml.features.loading.features_and_target import load_features_and_target
    + 65
    + 66        data_splits: DataSplits
    + 67        prediction_dfs: PredictionArtifacts
    + 68        feature_lineage: list[FeatureLineage]
    + 69
    + 70        if best_threshold is None and model_cfg.task.subtype and model_cfg.task.subtype.lower() == "binary":
    + 71            msg = f"Best threshold for classification evaluation is not defined for task '{model_cfg.task.type}' with subtype '{model_cfg.task.subtype}'. Defaulting to 0.5."
    + 72            logger.warning(msg)
    + 73            best_threshold = 0.5
    + 74
    + 75        # Load the trained pipeline from the training artifacts
    + 76        training_metadata_file = train_dir / "metadata.json"
    + 77        training_metadata_raw = load_json(training_metadata_file)
    + 78        training_metadata = validate_training_metadata(training_metadata_raw)
    + 79
    + 80        if  not training_metadata.artifacts.pipeline_path:
    + 81            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline."
    + 82            logger.error(msg)
    + 83            raise PipelineContractError(msg)
    + 84
    + 85        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    + 86        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    + 87
    + 88        if not hasattr(pipeline, "predict_proba"):
    + 89            msg = "The loaded pipeline does not implement 'predict_proba', which is required for classification evaluation. Please ensure the pipeline is a probabilistic classifier."
    + 90            logger.error(msg)
    + 91            raise PipelineContractError(msg)
    + 92
    + 93        # Get data splits
    + 94        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    + 95
    + 96        snapshot_selection = resolve_feature_snapshots(
    + 97            feature_store_path=Path(model_cfg.feature_store.path),
    + 98            feature_sets=model_cfg.feature_store.feature_sets,
    + 99            snapshot_binding=snapshot_binding,
    +100            snapshot_binding_key=None
    +101        )
    +102        X, y, feature_lineage, entity_key = load_features_and_target(
    +103            model_cfg,
    +104            snapshot_selection=snapshot_selection,
    +105            drop_entity_key=False,
    +106            strict=strict
    +107        )
     108
    -109        splits, splits_info = get_splits(
    -110            X=X,
    -111            y=y,
    -112            split_cfg=model_cfg.split,
    -113            data_type=model_cfg.data_type,
    -114            task_cfg=model_cfg.task
    -115        )
    -116        X_train = splits.X_train
    -117        y_train = splits.y_train
    -118        X_val = splits.X_val
    -119        y_val = splits.y_val
    -120        X_test = splits.X_test
    -121        y_test = splits.y_test
    -122
    -123        data_splits = DataSplits(
    -124            train=(X_train, y_train),
    -125            val=(X_val, y_val),
    -126            test=(X_test, y_test)
    -127        )
    -128
    -129        # Evaluate the model
    -130        metrics, prediction_dfs = evaluate_model(
    -131            model_cfg,
    -132            pipeline=pipeline,
    -133            data_splits=data_splits,
    -134            best_threshold=best_threshold,
    -135            entity_key=entity_key
    -136        )
    -137
    -138        output = EvaluateOutput(
    -139            metrics=metrics,
    -140            prediction_dfs=prediction_dfs,
    -141            lineage=feature_lineage
    -142        )
    -143        return output
    +109        validate_snapshot_ids(feature_lineage, snapshot_selection)
    +110
    +111        splits, splits_info = get_splits(
    +112            X=X,
    +113            y=y,
    +114            split_cfg=model_cfg.split,
    +115            data_type=model_cfg.data_type,
    +116            task_cfg=model_cfg.task
    +117        )
    +118        X_train = splits.X_train
    +119        y_train = splits.y_train
    +120        X_val = splits.X_val
    +121        y_val = splits.y_val
    +122        X_test = splits.X_test
    +123        y_test = splits.y_test
    +124
    +125        data_splits = DataSplits(
    +126            train=(X_train, y_train),
    +127            val=(X_val, y_val),
    +128            test=(X_test, y_test)
    +129        )
    +130
    +131        # Evaluate the model
    +132        metrics, prediction_dfs = evaluate_model(
    +133            model_cfg,
    +134            pipeline=pipeline,
    +135            data_splits=data_splits,
    +136            best_threshold=best_threshold,
    +137            entity_key=entity_key
    +138        )
    +139
    +140        output = EvaluateOutput(
    +141            metrics=metrics,
    +142            prediction_dfs=prediction_dfs,
    +143            lineage=feature_lineage
    +144        )
    +145        return output
     
    @@ -368,119 +373,122 @@

    -
     31    def evaluate(
    - 32        self,
    - 33        *,
    - 34        model_cfg: TrainModelConfig,
    - 35        strict: bool,
    - 36        best_threshold: float | None,
    - 37        train_dir: Path,
    - 38    ) -> EvaluateOutput:
    - 39        """Load artifacts and data, run split-wise evaluation, return outputs.
    - 40
    - 41        Args:
    - 42            model_cfg: Validated training model configuration.
    - 43            strict: Whether data-loading checks should fail strictly.
    - 44            best_threshold: Optional decision threshold for binary classification.
    - 45            train_dir: Directory containing training artifacts and metadata.
    - 46            entity_key: The name of the entity key column to extract.
    - 47
    - 48        Returns:
    - 49            Evaluation output with metrics, predictions, and feature lineage.
    - 50
    - 51        Raises:
    - 52            PipelineContractError: If the loaded pipeline does not expose
    - 53                ``predict_proba`` required for classification evaluation.
    - 54
    - 55        Notes:
    - 56            Uses training metadata lineage bindings to resolve feature snapshots so
    - 57            evaluation inputs match training-time feature versions.
    - 58
    - 59        Side Effects:
    - 60            Loads persisted artifacts and executes split-wise inference on
    - 61            train/validation/test data.
    - 62        """
    - 63
    - 64        data_splits: DataSplits
    - 65        prediction_dfs: PredictionArtifacts
    - 66        feature_lineage: list[FeatureLineage]
    - 67
    - 68        if best_threshold is None and model_cfg.task.subtype and model_cfg.task.subtype.lower() == "binary":
    - 69            msg = f"Best threshold for classification evaluation is not defined for task '{model_cfg.task.type}' with subtype '{model_cfg.task.subtype}'. Defaulting to 0.5."
    - 70            logger.warning(msg)
    - 71            best_threshold = 0.5
    - 72
    - 73        # Load the trained pipeline from the training artifacts
    - 74        training_metadata_file = train_dir / "metadata.json"
    - 75        training_metadata_raw = load_json(training_metadata_file)
    - 76        training_metadata = validate_training_metadata(training_metadata_raw)
    - 77
    - 78        if  not training_metadata.artifacts.pipeline_path:
    - 79            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline."
    - 80            logger.error(msg)
    - 81            raise PipelineContractError(msg)
    - 82
    - 83        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    - 84        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    - 85
    - 86        if not hasattr(pipeline, "predict_proba"):
    - 87            msg = "The loaded pipeline does not implement 'predict_proba', which is required for classification evaluation. Please ensure the pipeline is a probabilistic classifier."
    - 88            logger.error(msg)
    - 89            raise PipelineContractError(msg)
    - 90
    - 91        # Get data splits
    - 92        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    - 93
    - 94        snapshot_selection = resolve_feature_snapshots(
    - 95            feature_store_path=Path(model_cfg.feature_store.path),
    - 96            feature_sets=model_cfg.feature_store.feature_sets,
    - 97            snapshot_binding=snapshot_binding,
    - 98            snapshot_binding_key=None
    - 99        )
    -100        X, y, feature_lineage, entity_key = load_features_and_target(
    -101            model_cfg,
    -102            snapshot_selection=snapshot_selection,
    -103            drop_entity_key=False,
    -104            strict=strict
    -105        )
    -106
    -107        validate_snapshot_ids(feature_lineage, snapshot_selection)
    +            
     30    def evaluate(
    + 31        self,
    + 32        *,
    + 33        model_cfg: TrainModelConfig,
    + 34        strict: bool,
    + 35        best_threshold: float | None,
    + 36        train_dir: Path,
    + 37    ) -> EvaluateOutput:
    + 38        """Load artifacts and data, run split-wise evaluation, return outputs.
    + 39
    + 40        Args:
    + 41            model_cfg: Validated training model configuration.
    + 42            strict: Whether data-loading checks should fail strictly.
    + 43            best_threshold: Optional decision threshold for binary classification.
    + 44            train_dir: Directory containing training artifacts and metadata.
    + 45            entity_key: The name of the entity key column to extract.
    + 46
    + 47        Returns:
    + 48            Evaluation output with metrics, predictions, and feature lineage.
    + 49
    + 50        Raises:
    + 51            PipelineContractError: If the loaded pipeline does not expose
    + 52                ``predict_proba`` required for classification evaluation.
    + 53
    + 54        Notes:
    + 55            Uses training metadata lineage bindings to resolve feature snapshots so
    + 56            evaluation inputs match training-time feature versions.
    + 57
    + 58        Side Effects:
    + 59            Loads persisted artifacts and executes split-wise inference on
    + 60            train/validation/test data.
    + 61        """
    + 62
    + 63        # Lazy import to avoid circular dependencies
    + 64        from ml.features.loading.features_and_target import load_features_and_target
    + 65
    + 66        data_splits: DataSplits
    + 67        prediction_dfs: PredictionArtifacts
    + 68        feature_lineage: list[FeatureLineage]
    + 69
    + 70        if best_threshold is None and model_cfg.task.subtype and model_cfg.task.subtype.lower() == "binary":
    + 71            msg = f"Best threshold for classification evaluation is not defined for task '{model_cfg.task.type}' with subtype '{model_cfg.task.subtype}'. Defaulting to 0.5."
    + 72            logger.warning(msg)
    + 73            best_threshold = 0.5
    + 74
    + 75        # Load the trained pipeline from the training artifacts
    + 76        training_metadata_file = train_dir / "metadata.json"
    + 77        training_metadata_raw = load_json(training_metadata_file)
    + 78        training_metadata = validate_training_metadata(training_metadata_raw)
    + 79
    + 80        if  not training_metadata.artifacts.pipeline_path:
    + 81            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline."
    + 82            logger.error(msg)
    + 83            raise PipelineContractError(msg)
    + 84
    + 85        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    + 86        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    + 87
    + 88        if not hasattr(pipeline, "predict_proba"):
    + 89            msg = "The loaded pipeline does not implement 'predict_proba', which is required for classification evaluation. Please ensure the pipeline is a probabilistic classifier."
    + 90            logger.error(msg)
    + 91            raise PipelineContractError(msg)
    + 92
    + 93        # Get data splits
    + 94        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    + 95
    + 96        snapshot_selection = resolve_feature_snapshots(
    + 97            feature_store_path=Path(model_cfg.feature_store.path),
    + 98            feature_sets=model_cfg.feature_store.feature_sets,
    + 99            snapshot_binding=snapshot_binding,
    +100            snapshot_binding_key=None
    +101        )
    +102        X, y, feature_lineage, entity_key = load_features_and_target(
    +103            model_cfg,
    +104            snapshot_selection=snapshot_selection,
    +105            drop_entity_key=False,
    +106            strict=strict
    +107        )
     108
    -109        splits, splits_info = get_splits(
    -110            X=X,
    -111            y=y,
    -112            split_cfg=model_cfg.split,
    -113            data_type=model_cfg.data_type,
    -114            task_cfg=model_cfg.task
    -115        )
    -116        X_train = splits.X_train
    -117        y_train = splits.y_train
    -118        X_val = splits.X_val
    -119        y_val = splits.y_val
    -120        X_test = splits.X_test
    -121        y_test = splits.y_test
    -122
    -123        data_splits = DataSplits(
    -124            train=(X_train, y_train),
    -125            val=(X_val, y_val),
    -126            test=(X_test, y_test)
    -127        )
    -128
    -129        # Evaluate the model
    -130        metrics, prediction_dfs = evaluate_model(
    -131            model_cfg,
    -132            pipeline=pipeline,
    -133            data_splits=data_splits,
    -134            best_threshold=best_threshold,
    -135            entity_key=entity_key
    -136        )
    -137
    -138        output = EvaluateOutput(
    -139            metrics=metrics,
    -140            prediction_dfs=prediction_dfs,
    -141            lineage=feature_lineage
    -142        )
    -143        return output
    +109        validate_snapshot_ids(feature_lineage, snapshot_selection)
    +110
    +111        splits, splits_info = get_splits(
    +112            X=X,
    +113            y=y,
    +114            split_cfg=model_cfg.split,
    +115            data_type=model_cfg.data_type,
    +116            task_cfg=model_cfg.task
    +117        )
    +118        X_train = splits.X_train
    +119        y_train = splits.y_train
    +120        X_val = splits.X_val
    +121        y_val = splits.y_val
    +122        X_test = splits.X_test
    +123        y_test = splits.y_test
    +124
    +125        data_splits = DataSplits(
    +126            train=(X_train, y_train),
    +127            val=(X_val, y_val),
    +128            test=(X_test, y_test)
    +129        )
    +130
    +131        # Evaluate the model
    +132        metrics, prediction_dfs = evaluate_model(
    +133            model_cfg,
    +134            pipeline=pipeline,
    +135            data_splits=data_splits,
    +136            best_threshold=best_threshold,
    +137            entity_key=entity_key
    +138        )
    +139
    +140        output = EvaluateOutput(
    +141            metrics=metrics,
    +142            prediction_dfs=prediction_dfs,
    +143            lineage=feature_lineage
    +144        )
    +145        return output
     
    diff --git a/docs/api/ml/ml/runners/evaluation/evaluators/regression/regression.html b/docs/api/ml/ml/runners/evaluation/evaluators/regression/regression.html index 8a1a02d9..aba453ad 100644 --- a/docs/api/ml/ml/runners/evaluation/evaluators/regression/regression.html +++ b/docs/api/ml/ml/runners/evaluation/evaluators/regression/regression.html @@ -72,141 +72,144 @@

    5 6from ml.config.schemas.model_cfg import TrainModelConfig 7from ml.exceptions import PipelineContractError - 8from ml.features.loading.features_and_target import load_features_and_target - 9from ml.features.loading.resolve_feature_snapshots import resolve_feature_snapshots - 10from ml.features.splitting.splitting import get_splits - 11from ml.features.validation.validate_snapshot_ids import validate_snapshot_ids - 12from ml.metadata.validation.runners.training import validate_training_metadata - 13from ml.modeling.models.feature_lineage import FeatureLineage - 14from ml.runners.evaluation.constants.data_splits import DataSplits - 15from ml.runners.evaluation.constants.output import EvaluateOutput - 16from ml.runners.evaluation.evaluators.base import Evaluator - 17from ml.runners.evaluation.evaluators.regression.metrics import evaluate_model - 18from ml.runners.evaluation.models.predictions import PredictionArtifacts - 19from ml.runners.shared.loading.get_snapshot_binding_from_training_metadata import ( - 20 get_snapshot_binding_from_training_metadata, - 21) - 22from ml.runners.shared.loading.pipeline import load_model_or_pipeline - 23from ml.utils.loaders import load_json - 24 - 25logger = logging.getLogger(__name__) + 8from ml.features.loading.resolve_feature_snapshots import resolve_feature_snapshots + 9from ml.features.splitting.splitting import get_splits + 10from ml.features.validation.validate_snapshot_ids import validate_snapshot_ids + 11from ml.metadata.validation.runners.training import validate_training_metadata + 12from ml.modeling.models.feature_lineage import FeatureLineage + 13from ml.runners.evaluation.constants.data_splits import DataSplits + 14from ml.runners.evaluation.constants.output import EvaluateOutput + 15from ml.runners.evaluation.evaluators.base import Evaluator + 16from ml.runners.evaluation.evaluators.regression.metrics import evaluate_model + 17from ml.runners.evaluation.models.predictions import PredictionArtifacts + 18from ml.runners.shared.loading.get_snapshot_binding_from_training_metadata import ( + 19 get_snapshot_binding_from_training_metadata, + 20) + 21from ml.runners.shared.loading.pipeline import load_model_or_pipeline + 22from ml.utils.loaders import load_json + 23 + 24logger = logging.getLogger(__name__) + 25 26 - 27 - 28class EvaluateRegression(Evaluator): - 29 """Evaluate regression models across train/val/test splits.""" - 30 - 31 def evaluate( - 32 self, - 33 *, - 34 model_cfg: TrainModelConfig, - 35 strict: bool, - 36 best_threshold: float | None, # unused, kept for interface consistency - 37 train_dir: Path, - 38 ) -> EvaluateOutput: - 39 """Load artifacts and data, run split-wise regression evaluation. - 40 - 41 Args: - 42 model_cfg: Validated training model configuration. - 43 strict: Whether data-loading checks should fail strictly. - 44 best_threshold: Unused threshold parameter kept for interface parity. - 45 train_dir: Directory containing training artifacts and metadata. - 46 entity_key: The name of the entity key column to extract. - 47 Returns: - 48 Evaluation output with metrics, predictions, and feature lineage. - 49 - 50 Raises: - 51 PipelineContractError: If loaded pipeline cannot produce predictions. - 52 - 53 Notes: - 54 Uses training metadata lineage bindings to resolve feature snapshots so - 55 evaluation inputs match training-time feature versions. - 56 - 57 Side Effects: - 58 Loads persisted artifacts and executes split-wise inference on - 59 train/validation/test data. - 60 """ - 61 prediction_dfs: PredictionArtifacts - 62 feature_lineage: list[FeatureLineage] + 27class EvaluateRegression(Evaluator): + 28 """Evaluate regression models across train/val/test splits.""" + 29 + 30 def evaluate( + 31 self, + 32 *, + 33 model_cfg: TrainModelConfig, + 34 strict: bool, + 35 best_threshold: float | None, # unused, kept for interface consistency + 36 train_dir: Path, + 37 ) -> EvaluateOutput: + 38 """Load artifacts and data, run split-wise regression evaluation. + 39 + 40 Args: + 41 model_cfg: Validated training model configuration. + 42 strict: Whether data-loading checks should fail strictly. + 43 best_threshold: Unused threshold parameter kept for interface parity. + 44 train_dir: Directory containing training artifacts and metadata. + 45 entity_key: The name of the entity key column to extract. + 46 Returns: + 47 Evaluation output with metrics, predictions, and feature lineage. + 48 + 49 Raises: + 50 PipelineContractError: If loaded pipeline cannot produce predictions. + 51 + 52 Notes: + 53 Uses training metadata lineage bindings to resolve feature snapshots so + 54 evaluation inputs match training-time feature versions. + 55 + 56 Side Effects: + 57 Loads persisted artifacts and executes split-wise inference on + 58 train/validation/test data. + 59 """ + 60 + 61 # Lazy import to avoid circular dependencies + 62 from ml.features.loading.features_and_target import load_features_and_target 63 - 64 # ------------------------- - 65 # Load trained pipeline - 66 # ------------------------- - 67 training_metadata_file = train_dir / "metadata.json" - 68 training_metadata_raw = load_json(training_metadata_file) - 69 training_metadata = validate_training_metadata(training_metadata_raw) - 70 - 71 if not training_metadata.artifacts.pipeline_path: - 72 msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline." - 73 logger.error(msg) - 74 raise PipelineContractError(msg) - 75 - 76 pipeline_file = Path(training_metadata.artifacts.pipeline_path) - 77 pipeline = load_model_or_pipeline(pipeline_file, "pipeline") + 64 prediction_dfs: PredictionArtifacts + 65 feature_lineage: list[FeatureLineage] + 66 + 67 # ------------------------- + 68 # Load trained pipeline + 69 # ------------------------- + 70 training_metadata_file = train_dir / "metadata.json" + 71 training_metadata_raw = load_json(training_metadata_file) + 72 training_metadata = validate_training_metadata(training_metadata_raw) + 73 + 74 if not training_metadata.artifacts.pipeline_path: + 75 msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline." + 76 logger.error(msg) + 77 raise PipelineContractError(msg) 78 - 79 if not hasattr(pipeline, "predict"): - 80 msg = "Loaded pipeline does not implement 'predict', required for regression evaluation." - 81 logger.error(msg) - 82 raise PipelineContractError(msg) - 83 - 84 # ------------------------- - 85 # Load data - 86 # ------------------------- - 87 snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata) - 88 - 89 snapshot_selection = resolve_feature_snapshots( - 90 feature_store_path=Path(model_cfg.feature_store.path), - 91 feature_sets=model_cfg.feature_store.feature_sets, - 92 snapshot_binding=snapshot_binding, - 93 snapshot_binding_key=None - 94 ) - 95 - 96 X, y, feature_lineage, entity_key = load_features_and_target( - 97 model_cfg, - 98 snapshot_selection=snapshot_selection, - 99 drop_entity_key=False, -100 strict=strict, -101 snapshot_binding_key=None -102 ) -103 -104 validate_snapshot_ids(feature_lineage, snapshot_selection) -105 -106 splits, splits_info = get_splits( -107 X=X, -108 y=y, -109 split_cfg=model_cfg.split, -110 data_type=model_cfg.data_type, -111 task_cfg=model_cfg.task -112 ) -113 X_train = splits.X_train -114 y_train = splits.y_train -115 X_val = splits.X_val -116 y_val = splits.y_val -117 X_test = splits.X_test -118 y_test = splits.y_test -119 -120 data_splits = DataSplits( -121 train=(X_train, y_train), -122 val=(X_val, y_val), -123 test=(X_test, y_test) -124 ) -125 -126 # ------------------------- -127 # Evaluate -128 # ------------------------- -129 metrics, prediction_dfs = evaluate_model( -130 pipeline=pipeline, -131 data_splits=data_splits, -132 transform_cfg=model_cfg.target.transform, -133 entity_key=entity_key -134 ) -135 -136 output = EvaluateOutput( -137 metrics=metrics, -138 prediction_dfs=prediction_dfs, -139 lineage=feature_lineage, -140 ) -141 -142 return output + 79 pipeline_file = Path(training_metadata.artifacts.pipeline_path) + 80 pipeline = load_model_or_pipeline(pipeline_file, "pipeline") + 81 + 82 if not hasattr(pipeline, "predict"): + 83 msg = "Loaded pipeline does not implement 'predict', required for regression evaluation." + 84 logger.error(msg) + 85 raise PipelineContractError(msg) + 86 + 87 # ------------------------- + 88 # Load data + 89 # ------------------------- + 90 snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata) + 91 + 92 snapshot_selection = resolve_feature_snapshots( + 93 feature_store_path=Path(model_cfg.feature_store.path), + 94 feature_sets=model_cfg.feature_store.feature_sets, + 95 snapshot_binding=snapshot_binding, + 96 snapshot_binding_key=None + 97 ) + 98 + 99 X, y, feature_lineage, entity_key = load_features_and_target( +100 model_cfg, +101 snapshot_selection=snapshot_selection, +102 drop_entity_key=False, +103 strict=strict, +104 snapshot_binding_key=None +105 ) +106 +107 validate_snapshot_ids(feature_lineage, snapshot_selection) +108 +109 splits, splits_info = get_splits( +110 X=X, +111 y=y, +112 split_cfg=model_cfg.split, +113 data_type=model_cfg.data_type, +114 task_cfg=model_cfg.task +115 ) +116 X_train = splits.X_train +117 y_train = splits.y_train +118 X_val = splits.X_val +119 y_val = splits.y_val +120 X_test = splits.X_test +121 y_test = splits.y_test +122 +123 data_splits = DataSplits( +124 train=(X_train, y_train), +125 val=(X_val, y_val), +126 test=(X_test, y_test) +127 ) +128 +129 # ------------------------- +130 # Evaluate +131 # ------------------------- +132 metrics, prediction_dfs = evaluate_model( +133 pipeline=pipeline, +134 data_splits=data_splits, +135 transform_cfg=model_cfg.target.transform, +136 entity_key=entity_key +137 ) +138 +139 output = EvaluateOutput( +140 metrics=metrics, +141 prediction_dfs=prediction_dfs, +142 lineage=feature_lineage, +143 ) +144 +145 return output

    @@ -234,121 +237,125 @@

    -
     29class EvaluateRegression(Evaluator):
    - 30    """Evaluate regression models across train/val/test splits."""
    - 31
    - 32    def evaluate(
    - 33        self,
    - 34        *,
    - 35        model_cfg: TrainModelConfig,
    - 36        strict: bool,
    - 37        best_threshold: float | None,  # unused, kept for interface consistency
    - 38        train_dir: Path,
    - 39    ) -> EvaluateOutput:
    - 40        """Load artifacts and data, run split-wise regression evaluation.
    - 41
    - 42        Args:
    - 43            model_cfg: Validated training model configuration.
    - 44            strict: Whether data-loading checks should fail strictly.
    - 45            best_threshold: Unused threshold parameter kept for interface parity.
    - 46            train_dir: Directory containing training artifacts and metadata.
    - 47            entity_key: The name of the entity key column to extract.
    - 48        Returns:
    - 49            Evaluation output with metrics, predictions, and feature lineage.
    - 50
    - 51        Raises:
    - 52            PipelineContractError: If loaded pipeline cannot produce predictions.
    - 53
    - 54        Notes:
    - 55            Uses training metadata lineage bindings to resolve feature snapshots so
    - 56            evaluation inputs match training-time feature versions.
    - 57
    - 58        Side Effects:
    - 59            Loads persisted artifacts and executes split-wise inference on
    - 60            train/validation/test data.
    - 61        """
    - 62        prediction_dfs: PredictionArtifacts
    - 63        feature_lineage: list[FeatureLineage]
    +            
     28class EvaluateRegression(Evaluator):
    + 29    """Evaluate regression models across train/val/test splits."""
    + 30
    + 31    def evaluate(
    + 32        self,
    + 33        *,
    + 34        model_cfg: TrainModelConfig,
    + 35        strict: bool,
    + 36        best_threshold: float | None,  # unused, kept for interface consistency
    + 37        train_dir: Path,
    + 38    ) -> EvaluateOutput:
    + 39        """Load artifacts and data, run split-wise regression evaluation.
    + 40
    + 41        Args:
    + 42            model_cfg: Validated training model configuration.
    + 43            strict: Whether data-loading checks should fail strictly.
    + 44            best_threshold: Unused threshold parameter kept for interface parity.
    + 45            train_dir: Directory containing training artifacts and metadata.
    + 46            entity_key: The name of the entity key column to extract.
    + 47        Returns:
    + 48            Evaluation output with metrics, predictions, and feature lineage.
    + 49
    + 50        Raises:
    + 51            PipelineContractError: If loaded pipeline cannot produce predictions.
    + 52
    + 53        Notes:
    + 54            Uses training metadata lineage bindings to resolve feature snapshots so
    + 55            evaluation inputs match training-time feature versions.
    + 56
    + 57        Side Effects:
    + 58            Loads persisted artifacts and executes split-wise inference on
    + 59            train/validation/test data.
    + 60        """
    + 61
    + 62        # Lazy import to avoid circular dependencies
    + 63        from ml.features.loading.features_and_target import load_features_and_target
      64
    - 65        # -------------------------
    - 66        # Load trained pipeline
    - 67        # -------------------------
    - 68        training_metadata_file = train_dir / "metadata.json"
    - 69        training_metadata_raw = load_json(training_metadata_file)
    - 70        training_metadata = validate_training_metadata(training_metadata_raw)
    - 71
    - 72        if not training_metadata.artifacts.pipeline_path:
    - 73            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline."
    - 74            logger.error(msg)
    - 75            raise PipelineContractError(msg)
    - 76
    - 77        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    - 78        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    + 65        prediction_dfs: PredictionArtifacts
    + 66        feature_lineage: list[FeatureLineage]
    + 67
    + 68        # -------------------------
    + 69        # Load trained pipeline
    + 70        # -------------------------
    + 71        training_metadata_file = train_dir / "metadata.json"
    + 72        training_metadata_raw = load_json(training_metadata_file)
    + 73        training_metadata = validate_training_metadata(training_metadata_raw)
    + 74
    + 75        if not training_metadata.artifacts.pipeline_path:
    + 76            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline."
    + 77            logger.error(msg)
    + 78            raise PipelineContractError(msg)
      79
    - 80        if not hasattr(pipeline, "predict"):
    - 81            msg = "Loaded pipeline does not implement 'predict', required for regression evaluation."
    - 82            logger.error(msg)
    - 83            raise PipelineContractError(msg)
    - 84
    - 85        # -------------------------
    - 86        # Load data
    - 87        # -------------------------
    - 88        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    - 89
    - 90        snapshot_selection = resolve_feature_snapshots(
    - 91            feature_store_path=Path(model_cfg.feature_store.path),
    - 92            feature_sets=model_cfg.feature_store.feature_sets,
    - 93            snapshot_binding=snapshot_binding,
    - 94            snapshot_binding_key=None
    - 95        )
    - 96
    - 97        X, y, feature_lineage, entity_key = load_features_and_target(
    - 98            model_cfg,
    - 99            snapshot_selection=snapshot_selection,
    -100            drop_entity_key=False,
    -101            strict=strict,
    -102            snapshot_binding_key=None
    -103        )
    -104
    -105        validate_snapshot_ids(feature_lineage, snapshot_selection)
    -106
    -107        splits, splits_info = get_splits(
    -108            X=X,
    -109            y=y,
    -110            split_cfg=model_cfg.split,
    -111            data_type=model_cfg.data_type,
    -112            task_cfg=model_cfg.task
    -113        )
    -114        X_train = splits.X_train
    -115        y_train = splits.y_train
    -116        X_val = splits.X_val
    -117        y_val = splits.y_val
    -118        X_test = splits.X_test
    -119        y_test = splits.y_test
    -120
    -121        data_splits = DataSplits(
    -122            train=(X_train, y_train),
    -123            val=(X_val, y_val),
    -124            test=(X_test, y_test)
    -125        )
    -126
    -127        # -------------------------
    -128        # Evaluate
    -129        # -------------------------
    -130        metrics, prediction_dfs = evaluate_model(
    -131            pipeline=pipeline,
    -132            data_splits=data_splits,
    -133            transform_cfg=model_cfg.target.transform,
    -134            entity_key=entity_key
    -135        )
    -136
    -137        output = EvaluateOutput(
    -138            metrics=metrics,
    -139            prediction_dfs=prediction_dfs,
    -140            lineage=feature_lineage,
    -141        )
    -142
    -143        return output
    + 80        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    + 81        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    + 82
    + 83        if not hasattr(pipeline, "predict"):
    + 84            msg = "Loaded pipeline does not implement 'predict', required for regression evaluation."
    + 85            logger.error(msg)
    + 86            raise PipelineContractError(msg)
    + 87
    + 88        # -------------------------
    + 89        # Load data
    + 90        # -------------------------
    + 91        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    + 92
    + 93        snapshot_selection = resolve_feature_snapshots(
    + 94            feature_store_path=Path(model_cfg.feature_store.path),
    + 95            feature_sets=model_cfg.feature_store.feature_sets,
    + 96            snapshot_binding=snapshot_binding,
    + 97            snapshot_binding_key=None
    + 98        )
    + 99
    +100        X, y, feature_lineage, entity_key = load_features_and_target(
    +101            model_cfg,
    +102            snapshot_selection=snapshot_selection,
    +103            drop_entity_key=False,
    +104            strict=strict,
    +105            snapshot_binding_key=None
    +106        )
    +107
    +108        validate_snapshot_ids(feature_lineage, snapshot_selection)
    +109
    +110        splits, splits_info = get_splits(
    +111            X=X,
    +112            y=y,
    +113            split_cfg=model_cfg.split,
    +114            data_type=model_cfg.data_type,
    +115            task_cfg=model_cfg.task
    +116        )
    +117        X_train = splits.X_train
    +118        y_train = splits.y_train
    +119        X_val = splits.X_val
    +120        y_val = splits.y_val
    +121        X_test = splits.X_test
    +122        y_test = splits.y_test
    +123
    +124        data_splits = DataSplits(
    +125            train=(X_train, y_train),
    +126            val=(X_val, y_val),
    +127            test=(X_test, y_test)
    +128        )
    +129
    +130        # -------------------------
    +131        # Evaluate
    +132        # -------------------------
    +133        metrics, prediction_dfs = evaluate_model(
    +134            pipeline=pipeline,
    +135            data_splits=data_splits,
    +136            transform_cfg=model_cfg.target.transform,
    +137            entity_key=entity_key
    +138        )
    +139
    +140        output = EvaluateOutput(
    +141            metrics=metrics,
    +142            prediction_dfs=prediction_dfs,
    +143            lineage=feature_lineage,
    +144        )
    +145
    +146        return output
     
    @@ -367,118 +374,122 @@

    -
     32    def evaluate(
    - 33        self,
    - 34        *,
    - 35        model_cfg: TrainModelConfig,
    - 36        strict: bool,
    - 37        best_threshold: float | None,  # unused, kept for interface consistency
    - 38        train_dir: Path,
    - 39    ) -> EvaluateOutput:
    - 40        """Load artifacts and data, run split-wise regression evaluation.
    - 41
    - 42        Args:
    - 43            model_cfg: Validated training model configuration.
    - 44            strict: Whether data-loading checks should fail strictly.
    - 45            best_threshold: Unused threshold parameter kept for interface parity.
    - 46            train_dir: Directory containing training artifacts and metadata.
    - 47            entity_key: The name of the entity key column to extract.
    - 48        Returns:
    - 49            Evaluation output with metrics, predictions, and feature lineage.
    - 50
    - 51        Raises:
    - 52            PipelineContractError: If loaded pipeline cannot produce predictions.
    - 53
    - 54        Notes:
    - 55            Uses training metadata lineage bindings to resolve feature snapshots so
    - 56            evaluation inputs match training-time feature versions.
    - 57
    - 58        Side Effects:
    - 59            Loads persisted artifacts and executes split-wise inference on
    - 60            train/validation/test data.
    - 61        """
    - 62        prediction_dfs: PredictionArtifacts
    - 63        feature_lineage: list[FeatureLineage]
    +            
     31    def evaluate(
    + 32        self,
    + 33        *,
    + 34        model_cfg: TrainModelConfig,
    + 35        strict: bool,
    + 36        best_threshold: float | None,  # unused, kept for interface consistency
    + 37        train_dir: Path,
    + 38    ) -> EvaluateOutput:
    + 39        """Load artifacts and data, run split-wise regression evaluation.
    + 40
    + 41        Args:
    + 42            model_cfg: Validated training model configuration.
    + 43            strict: Whether data-loading checks should fail strictly.
    + 44            best_threshold: Unused threshold parameter kept for interface parity.
    + 45            train_dir: Directory containing training artifacts and metadata.
    + 46            entity_key: The name of the entity key column to extract.
    + 47        Returns:
    + 48            Evaluation output with metrics, predictions, and feature lineage.
    + 49
    + 50        Raises:
    + 51            PipelineContractError: If loaded pipeline cannot produce predictions.
    + 52
    + 53        Notes:
    + 54            Uses training metadata lineage bindings to resolve feature snapshots so
    + 55            evaluation inputs match training-time feature versions.
    + 56
    + 57        Side Effects:
    + 58            Loads persisted artifacts and executes split-wise inference on
    + 59            train/validation/test data.
    + 60        """
    + 61
    + 62        # Lazy import to avoid circular dependencies
    + 63        from ml.features.loading.features_and_target import load_features_and_target
      64
    - 65        # -------------------------
    - 66        # Load trained pipeline
    - 67        # -------------------------
    - 68        training_metadata_file = train_dir / "metadata.json"
    - 69        training_metadata_raw = load_json(training_metadata_file)
    - 70        training_metadata = validate_training_metadata(training_metadata_raw)
    - 71
    - 72        if not training_metadata.artifacts.pipeline_path:
    - 73            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline."
    - 74            logger.error(msg)
    - 75            raise PipelineContractError(msg)
    - 76
    - 77        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    - 78        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    + 65        prediction_dfs: PredictionArtifacts
    + 66        feature_lineage: list[FeatureLineage]
    + 67
    + 68        # -------------------------
    + 69        # Load trained pipeline
    + 70        # -------------------------
    + 71        training_metadata_file = train_dir / "metadata.json"
    + 72        training_metadata_raw = load_json(training_metadata_file)
    + 73        training_metadata = validate_training_metadata(training_metadata_raw)
    + 74
    + 75        if not training_metadata.artifacts.pipeline_path:
    + 76            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with evaluation without the pipeline."
    + 77            logger.error(msg)
    + 78            raise PipelineContractError(msg)
      79
    - 80        if not hasattr(pipeline, "predict"):
    - 81            msg = "Loaded pipeline does not implement 'predict', required for regression evaluation."
    - 82            logger.error(msg)
    - 83            raise PipelineContractError(msg)
    - 84
    - 85        # -------------------------
    - 86        # Load data
    - 87        # -------------------------
    - 88        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    - 89
    - 90        snapshot_selection = resolve_feature_snapshots(
    - 91            feature_store_path=Path(model_cfg.feature_store.path),
    - 92            feature_sets=model_cfg.feature_store.feature_sets,
    - 93            snapshot_binding=snapshot_binding,
    - 94            snapshot_binding_key=None
    - 95        )
    - 96
    - 97        X, y, feature_lineage, entity_key = load_features_and_target(
    - 98            model_cfg,
    - 99            snapshot_selection=snapshot_selection,
    -100            drop_entity_key=False,
    -101            strict=strict,
    -102            snapshot_binding_key=None
    -103        )
    -104
    -105        validate_snapshot_ids(feature_lineage, snapshot_selection)
    -106
    -107        splits, splits_info = get_splits(
    -108            X=X,
    -109            y=y,
    -110            split_cfg=model_cfg.split,
    -111            data_type=model_cfg.data_type,
    -112            task_cfg=model_cfg.task
    -113        )
    -114        X_train = splits.X_train
    -115        y_train = splits.y_train
    -116        X_val = splits.X_val
    -117        y_val = splits.y_val
    -118        X_test = splits.X_test
    -119        y_test = splits.y_test
    -120
    -121        data_splits = DataSplits(
    -122            train=(X_train, y_train),
    -123            val=(X_val, y_val),
    -124            test=(X_test, y_test)
    -125        )
    -126
    -127        # -------------------------
    -128        # Evaluate
    -129        # -------------------------
    -130        metrics, prediction_dfs = evaluate_model(
    -131            pipeline=pipeline,
    -132            data_splits=data_splits,
    -133            transform_cfg=model_cfg.target.transform,
    -134            entity_key=entity_key
    -135        )
    -136
    -137        output = EvaluateOutput(
    -138            metrics=metrics,
    -139            prediction_dfs=prediction_dfs,
    -140            lineage=feature_lineage,
    -141        )
    -142
    -143        return output
    + 80        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    + 81        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    + 82
    + 83        if not hasattr(pipeline, "predict"):
    + 84            msg = "Loaded pipeline does not implement 'predict', required for regression evaluation."
    + 85            logger.error(msg)
    + 86            raise PipelineContractError(msg)
    + 87
    + 88        # -------------------------
    + 89        # Load data
    + 90        # -------------------------
    + 91        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    + 92
    + 93        snapshot_selection = resolve_feature_snapshots(
    + 94            feature_store_path=Path(model_cfg.feature_store.path),
    + 95            feature_sets=model_cfg.feature_store.feature_sets,
    + 96            snapshot_binding=snapshot_binding,
    + 97            snapshot_binding_key=None
    + 98        )
    + 99
    +100        X, y, feature_lineage, entity_key = load_features_and_target(
    +101            model_cfg,
    +102            snapshot_selection=snapshot_selection,
    +103            drop_entity_key=False,
    +104            strict=strict,
    +105            snapshot_binding_key=None
    +106        )
    +107
    +108        validate_snapshot_ids(feature_lineage, snapshot_selection)
    +109
    +110        splits, splits_info = get_splits(
    +111            X=X,
    +112            y=y,
    +113            split_cfg=model_cfg.split,
    +114            data_type=model_cfg.data_type,
    +115            task_cfg=model_cfg.task
    +116        )
    +117        X_train = splits.X_train
    +118        y_train = splits.y_train
    +119        X_val = splits.X_val
    +120        y_val = splits.y_val
    +121        X_test = splits.X_test
    +122        y_test = splits.y_test
    +123
    +124        data_splits = DataSplits(
    +125            train=(X_train, y_train),
    +126            val=(X_val, y_val),
    +127            test=(X_test, y_test)
    +128        )
    +129
    +130        # -------------------------
    +131        # Evaluate
    +132        # -------------------------
    +133        metrics, prediction_dfs = evaluate_model(
    +134            pipeline=pipeline,
    +135            data_splits=data_splits,
    +136            transform_cfg=model_cfg.target.transform,
    +137            entity_key=entity_key
    +138        )
    +139
    +140        output = EvaluateOutput(
    +141            metrics=metrics,
    +142            prediction_dfs=prediction_dfs,
    +143            lineage=feature_lineage,
    +144        )
    +145
    +146        return output
     
    diff --git a/docs/api/ml/ml/runners/evaluation/persistence/save_predictions.html b/docs/api/ml/ml/runners/evaluation/persistence/save_predictions.html index 06f56e0f..41b7198a 100644 --- a/docs/api/ml/ml/runners/evaluation/persistence/save_predictions.html +++ b/docs/api/ml/ml/runners/evaluation/persistence/save_predictions.html @@ -118,27 +118,33 @@

    57 try: 58 train_path = target_dir / "predictions_train.parquet" 59 _write_parquet_atomic(prediction_dfs.train, train_path) -60 logger.info(f"Saved predictions for the train split to {train_path}") -61 paths_raw["train_predictions_path"] = train_path.as_posix() -62 -63 val_path = target_dir / "predictions_val.parquet" -64 _write_parquet_atomic(prediction_dfs.val, val_path) -65 logger.info(f"Saved predictions for the validation split to {val_path}") -66 paths_raw["val_predictions_path"] = val_path.as_posix() -67 -68 test_path = target_dir / "predictions_test.parquet" -69 _write_parquet_atomic(prediction_dfs.test, test_path) -70 logger.info(f"Saved predictions for the test split to {test_path}") -71 paths_raw["test_predictions_path"] = test_path.as_posix() -72 -73 paths = PredictionsPaths(**paths_raw) -74 -75 return paths -76 -77 except Exception as e: -78 msg = f"Failed to save predictions to {target_dir}. " -79 logger.error(msg + f"Details: {e}") -80 raise PersistenceError(msg) from e +60 msg = f"Saved predictions for the train split to {train_path}" +61 logger.info(msg) +62 print(msg) +63 paths_raw["train_predictions_path"] = train_path.as_posix() +64 +65 val_path = target_dir / "predictions_val.parquet" +66 _write_parquet_atomic(prediction_dfs.val, val_path) +67 msg = f"Saved predictions for the validation split to {val_path}" +68 logger.info(msg) +69 print(msg) +70 paths_raw["val_predictions_path"] = val_path.as_posix() +71 +72 test_path = target_dir / "predictions_test.parquet" +73 _write_parquet_atomic(prediction_dfs.test, test_path) +74 msg = f"Saved predictions for the test split to {test_path}" +75 logger.info(msg) +76 print(msg) +77 paths_raw["test_predictions_path"] = test_path.as_posix() +78 +79 paths = PredictionsPaths(**paths_raw) +80 +81 return paths +82 +83 except Exception as e: +84 msg = f"Failed to save predictions to {target_dir}. " +85 logger.error(msg + f"Details: {e}") +86 raise PersistenceError(msg) from e

    @@ -183,27 +189,33 @@

    58 try: 59 train_path = target_dir / "predictions_train.parquet" 60 _write_parquet_atomic(prediction_dfs.train, train_path) -61 logger.info(f"Saved predictions for the train split to {train_path}") -62 paths_raw["train_predictions_path"] = train_path.as_posix() -63 -64 val_path = target_dir / "predictions_val.parquet" -65 _write_parquet_atomic(prediction_dfs.val, val_path) -66 logger.info(f"Saved predictions for the validation split to {val_path}") -67 paths_raw["val_predictions_path"] = val_path.as_posix() -68 -69 test_path = target_dir / "predictions_test.parquet" -70 _write_parquet_atomic(prediction_dfs.test, test_path) -71 logger.info(f"Saved predictions for the test split to {test_path}") -72 paths_raw["test_predictions_path"] = test_path.as_posix() -73 -74 paths = PredictionsPaths(**paths_raw) -75 -76 return paths -77 -78 except Exception as e: -79 msg = f"Failed to save predictions to {target_dir}. " -80 logger.error(msg + f"Details: {e}") -81 raise PersistenceError(msg) from e +61 msg = f"Saved predictions for the train split to {train_path}" +62 logger.info(msg) +63 print(msg) +64 paths_raw["train_predictions_path"] = train_path.as_posix() +65 +66 val_path = target_dir / "predictions_val.parquet" +67 _write_parquet_atomic(prediction_dfs.val, val_path) +68 msg = f"Saved predictions for the validation split to {val_path}" +69 logger.info(msg) +70 print(msg) +71 paths_raw["val_predictions_path"] = val_path.as_posix() +72 +73 test_path = target_dir / "predictions_test.parquet" +74 _write_parquet_atomic(prediction_dfs.test, test_path) +75 msg = f"Saved predictions for the test split to {test_path}" +76 logger.info(msg) +77 print(msg) +78 paths_raw["test_predictions_path"] = test_path.as_posix() +79 +80 paths = PredictionsPaths(**paths_raw) +81 +82 return paths +83 +84 except Exception as e: +85 msg = f"Failed to save predictions to {target_dir}. " +86 logger.error(msg + f"Details: {e}") +87 raise PersistenceError(msg) from e diff --git a/docs/api/ml/ml/runners/evaluation/utils/get_evaluator.html b/docs/api/ml/ml/runners/evaluation/utils/get_evaluator.html index e67a4a7a..ec49e798 100644 --- a/docs/api/ml/ml/runners/evaluation/utils/get_evaluator.html +++ b/docs/api/ml/ml/runners/evaluation/utils/get_evaluator.html @@ -79,14 +79,14 @@

    18 Instantiated evaluator implementation. 19 """ 20 -21 evaluator_cls = EVALUATORS.get(key) +21 evaluator_cls: type[Evaluator] | None = EVALUATORS.get(key) 22 -23 if not evaluator_cls: +23 if evaluator_cls is None: 24 msg = f"No evaluator found for algorithm '{key}'." 25 logger.error(msg) 26 raise PipelineContractError(msg) 27 -28 evaluator = evaluator_cls() +28 evaluator: Evaluator = evaluator_cls() 29 30 logger.debug( 31 "Using evaluator %s for algorithm=%s", @@ -132,14 +132,14 @@

    19 Instantiated evaluator implementation. 20 """ 21 -22 evaluator_cls = EVALUATORS.get(key) +22 evaluator_cls: type[Evaluator] | None = EVALUATORS.get(key) 23 -24 if not evaluator_cls: +24 if evaluator_cls is None: 25 msg = f"No evaluator found for algorithm '{key}'." 26 logger.error(msg) 27 raise PipelineContractError(msg) 28 -29 evaluator = evaluator_cls() +29 evaluator: Evaluator = evaluator_cls() 30 31 logger.debug( 32 "Using evaluator %s for algorithm=%s", diff --git a/docs/api/ml/ml/runners/explainability/explainers/tree_model/tree_model.html b/docs/api/ml/ml/runners/explainability/explainers/tree_model/tree_model.html index edc9bc02..4ff9ca4d 100644 --- a/docs/api/ml/ml/runners/explainability/explainers/tree_model/tree_model.html +++ b/docs/api/ml/ml/runners/explainability/explainers/tree_model/tree_model.html @@ -71,128 +71,130 @@

    4from pathlib import Path 5 6from ml.config.schemas.model_cfg import TrainModelConfig - 7from ml.features.loading.features_and_target import load_features_and_target - 8from ml.features.loading.resolve_feature_snapshots import resolve_feature_snapshots - 9from ml.features.splitting.splitting import get_splits - 10from ml.features.validation.validate_snapshot_ids import validate_snapshot_ids - 11from ml.metadata.validation.runners.training import validate_training_metadata - 12from ml.runners.explainability.constants.explainability_metrics_class import ExplainabilityMetrics - 13from ml.runners.explainability.constants.output import ExplainabilityOutput - 14from ml.runners.explainability.explainers.base import Explainer - 15from ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter import ( - 16 get_tree_model_adapter, - 17) - 18from ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances import ( - 19 get_feature_importances, - 20) - 21from ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances import ( - 22 get_shap_importances, - 23) - 24from ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features import ( - 25 get_feature_names_and_transformed_features, - 26) - 27from ml.runners.shared.loading.get_snapshot_binding_from_training_metadata import ( - 28 get_snapshot_binding_from_training_metadata, - 29) - 30from ml.runners.shared.loading.pipeline import load_model_or_pipeline - 31from ml.types import TabularSplits - 32from ml.utils.loaders import load_json - 33 - 34logger = logging.getLogger(__name__) - 35 - 36class ExplainTreeModel(Explainer): - 37 """Run explainability workflow for tree-based pipelines.""" - 38 - 39 def explain(self, *, model_cfg: TrainModelConfig, train_dir: Path, top_k: int) -> ExplainabilityOutput: - 40 """Load artifacts/data and compute configured explainability outputs. - 41 - 42 Args: - 43 model_cfg: Validated training model configuration. - 44 train_dir: Directory containing training artifacts and metadata. - 45 top_k: Number of top features to include in explainability outputs. - 46 - 47 Returns: - 48 Explainability output with computed metrics and feature lineage. - 49 - 50 Raises: - 51 DataError: Propagated when required artifact/data lineage inputs are - 52 inconsistent or missing during explainability preparation. - 53 - 54 Notes: - 55 Explanations are computed on the test split after applying the same - 56 preprocessing pipeline used during training. - 57 - 58 Side Effects: - 59 Loads persisted training metadata/artifacts and may incur substantial - 60 compute for SHAP calculations. - 61 """ - 62 - 63 splits: TabularSplits + 7from ml.features.loading.resolve_feature_snapshots import resolve_feature_snapshots + 8from ml.features.splitting.splitting import get_splits + 9from ml.features.validation.validate_snapshot_ids import validate_snapshot_ids + 10from ml.metadata.validation.runners.training import validate_training_metadata + 11from ml.runners.explainability.constants.explainability_metrics_class import ExplainabilityMetrics + 12from ml.runners.explainability.constants.output import ExplainabilityOutput + 13from ml.runners.explainability.explainers.base import Explainer + 14from ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter import ( + 15 get_tree_model_adapter, + 16) + 17from ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances import ( + 18 get_feature_importances, + 19) + 20from ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances import ( + 21 get_shap_importances, + 22) + 23from ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features import ( + 24 get_feature_names_and_transformed_features, + 25) + 26from ml.runners.shared.loading.get_snapshot_binding_from_training_metadata import ( + 27 get_snapshot_binding_from_training_metadata, + 28) + 29from ml.runners.shared.loading.pipeline import load_model_or_pipeline + 30from ml.types import TabularSplits + 31from ml.utils.loaders import load_json + 32 + 33logger = logging.getLogger(__name__) + 34 + 35class ExplainTreeModel(Explainer): + 36 """Run explainability workflow for tree-based pipelines.""" + 37 + 38 def explain(self, *, model_cfg: TrainModelConfig, train_dir: Path, top_k: int) -> ExplainabilityOutput: + 39 """Load artifacts/data and compute configured explainability outputs. + 40 + 41 Args: + 42 model_cfg: Validated training model configuration. + 43 train_dir: Directory containing training artifacts and metadata. + 44 top_k: Number of top features to include in explainability outputs. + 45 + 46 Returns: + 47 Explainability output with computed metrics and feature lineage. + 48 + 49 Raises: + 50 DataError: Propagated when required artifact/data lineage inputs are + 51 inconsistent or missing during explainability preparation. + 52 + 53 Notes: + 54 Explanations are computed on the test split after applying the same + 55 preprocessing pipeline used during training. + 56 + 57 Side Effects: + 58 Loads persisted training metadata/artifacts and may incur substantial + 59 compute for SHAP calculations. + 60 """ + 61 + 62 # Lazy import to avoid circular dependencies + 63 from ml.features.loading.features_and_target import load_features_and_target 64 - 65 training_metadata_file = train_dir / "metadata.json" - 66 training_metadata_raw = load_json(training_metadata_file) - 67 training_metadata = validate_training_metadata(training_metadata_raw) - 68 - 69 if not training_metadata.artifacts.pipeline_path: - 70 msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with explainability without the pipeline." - 71 logger.error(msg) - 72 raise ValueError(msg) - 73 pipeline_file = Path(training_metadata.artifacts.pipeline_path) - 74 pipeline = load_model_or_pipeline(pipeline_file, "pipeline") - 75 - 76 snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata) + 65 splits: TabularSplits + 66 + 67 training_metadata_file = train_dir / "metadata.json" + 68 training_metadata_raw = load_json(training_metadata_file) + 69 training_metadata = validate_training_metadata(training_metadata_raw) + 70 + 71 if not training_metadata.artifacts.pipeline_path: + 72 msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with explainability without the pipeline." + 73 logger.error(msg) + 74 raise ValueError(msg) + 75 pipeline_file = Path(training_metadata.artifacts.pipeline_path) + 76 pipeline = load_model_or_pipeline(pipeline_file, "pipeline") 77 - 78 snapshot_selection = resolve_feature_snapshots( - 79 feature_store_path=Path(model_cfg.feature_store.path), - 80 feature_sets=model_cfg.feature_store.feature_sets, - 81 snapshot_binding=snapshot_binding, - 82 snapshot_binding_key=None - 83 ) - 84 - 85 X, y, feature_lineage, _ = load_features_and_target(model_cfg, snapshot_selection=snapshot_selection, strict=True) - 86 splits, splits_info = get_splits( - 87 X=X, - 88 y=y, - 89 split_cfg=model_cfg.split, - 90 data_type=model_cfg.data_type, - 91 task_cfg=model_cfg.task - 92 ) - 93 - 94 validate_snapshot_ids(feature_lineage, snapshot_selection) + 78 snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata) + 79 + 80 snapshot_selection = resolve_feature_snapshots( + 81 feature_store_path=Path(model_cfg.feature_store.path), + 82 feature_sets=model_cfg.feature_store.feature_sets, + 83 snapshot_binding=snapshot_binding, + 84 snapshot_binding_key=None + 85 ) + 86 + 87 X, y, feature_lineage, _ = load_features_and_target(model_cfg, snapshot_selection=snapshot_selection, strict=True) + 88 splits, splits_info = get_splits( + 89 X=X, + 90 y=y, + 91 split_cfg=model_cfg.split, + 92 data_type=model_cfg.data_type, + 93 task_cfg=model_cfg.task + 94 ) 95 - 96 X_test = splits.X_test + 96 validate_snapshot_ids(feature_lineage, snapshot_selection) 97 - 98 feature_names, X_test_transformed = get_feature_names_and_transformed_features(pipeline, X_test) + 98 X_test = splits.X_test 99 -100 adapter = get_tree_model_adapter(pipeline[-1]) +100 feature_names, X_test_transformed = get_feature_names_and_transformed_features(pipeline, X_test) 101 -102 top_k_feature_importances = get_feature_importances( -103 feature_names=feature_names, -104 pipeline=pipeline, -105 model_cfg=model_cfg, -106 top_k=top_k, -107 adapter=adapter -108 ) -109 -110 top_k_shap_importances = get_shap_importances( -111 feature_names=feature_names, -112 model_configs=model_cfg, -113 top_k=top_k, -114 X_test_transformed=X_test_transformed, -115 adapter=adapter -116 ) -117 -118 explainability_metrics = ExplainabilityMetrics( -119 top_k_feature_importances=top_k_feature_importances, -120 top_k_shap_importances=top_k_shap_importances, -121 ) -122 -123 output = ExplainabilityOutput( -124 explainability_metrics=explainability_metrics, -125 feature_lineage=feature_lineage -126 ) -127 -128 return output +102 adapter = get_tree_model_adapter(pipeline[-1]) +103 +104 top_k_feature_importances = get_feature_importances( +105 feature_names=feature_names, +106 pipeline=pipeline, +107 model_cfg=model_cfg, +108 top_k=top_k, +109 adapter=adapter +110 ) +111 +112 top_k_shap_importances = get_shap_importances( +113 feature_names=feature_names, +114 model_configs=model_cfg, +115 top_k=top_k, +116 X_test_transformed=X_test_transformed, +117 adapter=adapter +118 ) +119 +120 explainability_metrics = ExplainabilityMetrics( +121 top_k_feature_importances=top_k_feature_importances, +122 top_k_shap_importances=top_k_shap_importances, +123 ) +124 +125 output = ExplainabilityOutput( +126 explainability_metrics=explainability_metrics, +127 feature_lineage=feature_lineage +128 ) +129 +130 return output @@ -220,99 +222,102 @@

    -
     37class ExplainTreeModel(Explainer):
    - 38    """Run explainability workflow for tree-based pipelines."""
    - 39
    - 40    def explain(self, *, model_cfg: TrainModelConfig, train_dir: Path, top_k: int) -> ExplainabilityOutput:
    - 41        """Load artifacts/data and compute configured explainability outputs.
    - 42
    - 43        Args:
    - 44            model_cfg: Validated training model configuration.
    - 45            train_dir: Directory containing training artifacts and metadata.
    - 46            top_k: Number of top features to include in explainability outputs.
    - 47
    - 48        Returns:
    - 49            Explainability output with computed metrics and feature lineage.
    - 50
    - 51        Raises:
    - 52            DataError: Propagated when required artifact/data lineage inputs are
    - 53                inconsistent or missing during explainability preparation.
    - 54
    - 55        Notes:
    - 56            Explanations are computed on the test split after applying the same
    - 57            preprocessing pipeline used during training.
    - 58
    - 59        Side Effects:
    - 60            Loads persisted training metadata/artifacts and may incur substantial
    - 61            compute for SHAP calculations.
    - 62        """
    - 63
    - 64        splits: TabularSplits
    +            
     36class ExplainTreeModel(Explainer):
    + 37    """Run explainability workflow for tree-based pipelines."""
    + 38
    + 39    def explain(self, *, model_cfg: TrainModelConfig, train_dir: Path, top_k: int) -> ExplainabilityOutput:
    + 40        """Load artifacts/data and compute configured explainability outputs.
    + 41
    + 42        Args:
    + 43            model_cfg: Validated training model configuration.
    + 44            train_dir: Directory containing training artifacts and metadata.
    + 45            top_k: Number of top features to include in explainability outputs.
    + 46
    + 47        Returns:
    + 48            Explainability output with computed metrics and feature lineage.
    + 49
    + 50        Raises:
    + 51            DataError: Propagated when required artifact/data lineage inputs are
    + 52                inconsistent or missing during explainability preparation.
    + 53
    + 54        Notes:
    + 55            Explanations are computed on the test split after applying the same
    + 56            preprocessing pipeline used during training.
    + 57
    + 58        Side Effects:
    + 59            Loads persisted training metadata/artifacts and may incur substantial
    + 60            compute for SHAP calculations.
    + 61        """
    + 62
    + 63        # Lazy import to avoid circular dependencies
    + 64        from ml.features.loading.features_and_target import load_features_and_target
      65
    - 66        training_metadata_file = train_dir / "metadata.json"
    - 67        training_metadata_raw = load_json(training_metadata_file)
    - 68        training_metadata = validate_training_metadata(training_metadata_raw)
    - 69
    - 70        if not training_metadata.artifacts.pipeline_path:
    - 71            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with explainability without the pipeline."
    - 72            logger.error(msg)
    - 73            raise ValueError(msg)
    - 74        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    - 75        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    - 76
    - 77        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    + 66        splits: TabularSplits
    + 67
    + 68        training_metadata_file = train_dir / "metadata.json"
    + 69        training_metadata_raw = load_json(training_metadata_file)
    + 70        training_metadata = validate_training_metadata(training_metadata_raw)
    + 71
    + 72        if not training_metadata.artifacts.pipeline_path:
    + 73            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with explainability without the pipeline."
    + 74            logger.error(msg)
    + 75            raise ValueError(msg)
    + 76        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    + 77        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
      78
    - 79        snapshot_selection = resolve_feature_snapshots(
    - 80            feature_store_path=Path(model_cfg.feature_store.path),
    - 81            feature_sets=model_cfg.feature_store.feature_sets,
    - 82            snapshot_binding=snapshot_binding,
    - 83            snapshot_binding_key=None
    - 84        )
    - 85
    - 86        X, y, feature_lineage, _ = load_features_and_target(model_cfg, snapshot_selection=snapshot_selection, strict=True)
    - 87        splits, splits_info = get_splits(
    - 88            X=X,
    - 89            y=y,
    - 90            split_cfg=model_cfg.split,
    - 91            data_type=model_cfg.data_type,
    - 92            task_cfg=model_cfg.task
    - 93        )
    - 94
    - 95        validate_snapshot_ids(feature_lineage, snapshot_selection)
    + 79        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    + 80
    + 81        snapshot_selection = resolve_feature_snapshots(
    + 82            feature_store_path=Path(model_cfg.feature_store.path),
    + 83            feature_sets=model_cfg.feature_store.feature_sets,
    + 84            snapshot_binding=snapshot_binding,
    + 85            snapshot_binding_key=None
    + 86        )
    + 87
    + 88        X, y, feature_lineage, _ = load_features_and_target(model_cfg, snapshot_selection=snapshot_selection, strict=True)
    + 89        splits, splits_info = get_splits(
    + 90            X=X,
    + 91            y=y,
    + 92            split_cfg=model_cfg.split,
    + 93            data_type=model_cfg.data_type,
    + 94            task_cfg=model_cfg.task
    + 95        )
      96
    - 97        X_test = splits.X_test
    + 97        validate_snapshot_ids(feature_lineage, snapshot_selection)
      98
    - 99        feature_names, X_test_transformed = get_feature_names_and_transformed_features(pipeline, X_test)
    + 99        X_test = splits.X_test
     100
    -101        adapter = get_tree_model_adapter(pipeline[-1])
    +101        feature_names, X_test_transformed = get_feature_names_and_transformed_features(pipeline, X_test)
     102
    -103        top_k_feature_importances = get_feature_importances(
    -104            feature_names=feature_names,
    -105            pipeline=pipeline,
    -106            model_cfg=model_cfg,
    -107            top_k=top_k,
    -108            adapter=adapter
    -109        )
    -110
    -111        top_k_shap_importances = get_shap_importances(
    -112            feature_names=feature_names,
    -113            model_configs=model_cfg,
    -114            top_k=top_k,
    -115            X_test_transformed=X_test_transformed,
    -116            adapter=adapter
    -117        )
    -118
    -119        explainability_metrics = ExplainabilityMetrics(
    -120            top_k_feature_importances=top_k_feature_importances,
    -121            top_k_shap_importances=top_k_shap_importances,
    -122        )
    -123
    -124        output = ExplainabilityOutput(
    -125            explainability_metrics=explainability_metrics,
    -126            feature_lineage=feature_lineage
    -127        )
    -128
    -129        return output
    +103        adapter = get_tree_model_adapter(pipeline[-1])
    +104
    +105        top_k_feature_importances = get_feature_importances(
    +106            feature_names=feature_names,
    +107            pipeline=pipeline,
    +108            model_cfg=model_cfg,
    +109            top_k=top_k,
    +110            adapter=adapter
    +111        )
    +112
    +113        top_k_shap_importances = get_shap_importances(
    +114            feature_names=feature_names,
    +115            model_configs=model_cfg,
    +116            top_k=top_k,
    +117            X_test_transformed=X_test_transformed,
    +118            adapter=adapter
    +119        )
    +120
    +121        explainability_metrics = ExplainabilityMetrics(
    +122            top_k_feature_importances=top_k_feature_importances,
    +123            top_k_shap_importances=top_k_shap_importances,
    +124        )
    +125
    +126        output = ExplainabilityOutput(
    +127            explainability_metrics=explainability_metrics,
    +128            feature_lineage=feature_lineage
    +129        )
    +130
    +131        return output
     
    @@ -331,96 +336,99 @@

    -
     40    def explain(self, *, model_cfg: TrainModelConfig, train_dir: Path, top_k: int) -> ExplainabilityOutput:
    - 41        """Load artifacts/data and compute configured explainability outputs.
    - 42
    - 43        Args:
    - 44            model_cfg: Validated training model configuration.
    - 45            train_dir: Directory containing training artifacts and metadata.
    - 46            top_k: Number of top features to include in explainability outputs.
    - 47
    - 48        Returns:
    - 49            Explainability output with computed metrics and feature lineage.
    - 50
    - 51        Raises:
    - 52            DataError: Propagated when required artifact/data lineage inputs are
    - 53                inconsistent or missing during explainability preparation.
    - 54
    - 55        Notes:
    - 56            Explanations are computed on the test split after applying the same
    - 57            preprocessing pipeline used during training.
    - 58
    - 59        Side Effects:
    - 60            Loads persisted training metadata/artifacts and may incur substantial
    - 61            compute for SHAP calculations.
    - 62        """
    - 63
    - 64        splits: TabularSplits
    +            
     39    def explain(self, *, model_cfg: TrainModelConfig, train_dir: Path, top_k: int) -> ExplainabilityOutput:
    + 40        """Load artifacts/data and compute configured explainability outputs.
    + 41
    + 42        Args:
    + 43            model_cfg: Validated training model configuration.
    + 44            train_dir: Directory containing training artifacts and metadata.
    + 45            top_k: Number of top features to include in explainability outputs.
    + 46
    + 47        Returns:
    + 48            Explainability output with computed metrics and feature lineage.
    + 49
    + 50        Raises:
    + 51            DataError: Propagated when required artifact/data lineage inputs are
    + 52                inconsistent or missing during explainability preparation.
    + 53
    + 54        Notes:
    + 55            Explanations are computed on the test split after applying the same
    + 56            preprocessing pipeline used during training.
    + 57
    + 58        Side Effects:
    + 59            Loads persisted training metadata/artifacts and may incur substantial
    + 60            compute for SHAP calculations.
    + 61        """
    + 62
    + 63        # Lazy import to avoid circular dependencies
    + 64        from ml.features.loading.features_and_target import load_features_and_target
      65
    - 66        training_metadata_file = train_dir / "metadata.json"
    - 67        training_metadata_raw = load_json(training_metadata_file)
    - 68        training_metadata = validate_training_metadata(training_metadata_raw)
    - 69
    - 70        if not training_metadata.artifacts.pipeline_path:
    - 71            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with explainability without the pipeline."
    - 72            logger.error(msg)
    - 73            raise ValueError(msg)
    - 74        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    - 75        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
    - 76
    - 77        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    + 66        splits: TabularSplits
    + 67
    + 68        training_metadata_file = train_dir / "metadata.json"
    + 69        training_metadata_raw = load_json(training_metadata_file)
    + 70        training_metadata = validate_training_metadata(training_metadata_raw)
    + 71
    + 72        if not training_metadata.artifacts.pipeline_path:
    + 73            msg = "Training metadata is missing the path to the trained pipeline artifact. Cannot proceed with explainability without the pipeline."
    + 74            logger.error(msg)
    + 75            raise ValueError(msg)
    + 76        pipeline_file = Path(training_metadata.artifacts.pipeline_path)
    + 77        pipeline = load_model_or_pipeline(pipeline_file, "pipeline")
      78
    - 79        snapshot_selection = resolve_feature_snapshots(
    - 80            feature_store_path=Path(model_cfg.feature_store.path),
    - 81            feature_sets=model_cfg.feature_store.feature_sets,
    - 82            snapshot_binding=snapshot_binding,
    - 83            snapshot_binding_key=None
    - 84        )
    - 85
    - 86        X, y, feature_lineage, _ = load_features_and_target(model_cfg, snapshot_selection=snapshot_selection, strict=True)
    - 87        splits, splits_info = get_splits(
    - 88            X=X,
    - 89            y=y,
    - 90            split_cfg=model_cfg.split,
    - 91            data_type=model_cfg.data_type,
    - 92            task_cfg=model_cfg.task
    - 93        )
    - 94
    - 95        validate_snapshot_ids(feature_lineage, snapshot_selection)
    + 79        snapshot_binding = get_snapshot_binding_from_training_metadata(training_metadata)
    + 80
    + 81        snapshot_selection = resolve_feature_snapshots(
    + 82            feature_store_path=Path(model_cfg.feature_store.path),
    + 83            feature_sets=model_cfg.feature_store.feature_sets,
    + 84            snapshot_binding=snapshot_binding,
    + 85            snapshot_binding_key=None
    + 86        )
    + 87
    + 88        X, y, feature_lineage, _ = load_features_and_target(model_cfg, snapshot_selection=snapshot_selection, strict=True)
    + 89        splits, splits_info = get_splits(
    + 90            X=X,
    + 91            y=y,
    + 92            split_cfg=model_cfg.split,
    + 93            data_type=model_cfg.data_type,
    + 94            task_cfg=model_cfg.task
    + 95        )
      96
    - 97        X_test = splits.X_test
    + 97        validate_snapshot_ids(feature_lineage, snapshot_selection)
      98
    - 99        feature_names, X_test_transformed = get_feature_names_and_transformed_features(pipeline, X_test)
    + 99        X_test = splits.X_test
     100
    -101        adapter = get_tree_model_adapter(pipeline[-1])
    +101        feature_names, X_test_transformed = get_feature_names_and_transformed_features(pipeline, X_test)
     102
    -103        top_k_feature_importances = get_feature_importances(
    -104            feature_names=feature_names,
    -105            pipeline=pipeline,
    -106            model_cfg=model_cfg,
    -107            top_k=top_k,
    -108            adapter=adapter
    -109        )
    -110
    -111        top_k_shap_importances = get_shap_importances(
    -112            feature_names=feature_names,
    -113            model_configs=model_cfg,
    -114            top_k=top_k,
    -115            X_test_transformed=X_test_transformed,
    -116            adapter=adapter
    -117        )
    -118
    -119        explainability_metrics = ExplainabilityMetrics(
    -120            top_k_feature_importances=top_k_feature_importances,
    -121            top_k_shap_importances=top_k_shap_importances,
    -122        )
    -123
    -124        output = ExplainabilityOutput(
    -125            explainability_metrics=explainability_metrics,
    -126            feature_lineage=feature_lineage
    -127        )
    -128
    -129        return output
    +103        adapter = get_tree_model_adapter(pipeline[-1])
    +104
    +105        top_k_feature_importances = get_feature_importances(
    +106            feature_names=feature_names,
    +107            pipeline=pipeline,
    +108            model_cfg=model_cfg,
    +109            top_k=top_k,
    +110            adapter=adapter
    +111        )
    +112
    +113        top_k_shap_importances = get_shap_importances(
    +114            feature_names=feature_names,
    +115            model_configs=model_cfg,
    +116            top_k=top_k,
    +117            X_test_transformed=X_test_transformed,
    +118            adapter=adapter
    +119        )
    +120
    +121        explainability_metrics = ExplainabilityMetrics(
    +122            top_k_feature_importances=top_k_feature_importances,
    +123            top_k_shap_importances=top_k_shap_importances,
    +124        )
    +125
    +126        output = ExplainabilityOutput(
    +127            explainability_metrics=explainability_metrics,
    +128            feature_lineage=feature_lineage
    +129        )
    +130
    +131        return output
     
    diff --git a/docs/api/ml/ml/runners/explainability/persistence/save_metrics_csv.html b/docs/api/ml/ml/runners/explainability/persistence/save_metrics_csv.html index 91dcad55..7f389071 100644 --- a/docs/api/ml/ml/runners/explainability/persistence/save_metrics_csv.html +++ b/docs/api/ml/ml/runners/explainability/persistence/save_metrics_csv.html @@ -107,17 +107,20 @@

    46 os.fsync(tmp_file.fileno()) 47 48 os.replace(temp_path, target_file) -49 logger.info(f'{name} successfully saved to {target_file}.') -50 except Exception as e: -51 if temp_path and Path(temp_path).exists(): -52 try: -53 Path(temp_path).unlink() -54 except OSError: -55 logger.warning("Failed to clean up temporary explainability CSV file: %s", temp_path) -56 -57 msg = f"Failed to save {name} to {target_file}" -58 logger.exception(msg) -59 raise PersistenceError(msg) from e +49 +50 msg = f"{name} successfully saved to {target_file}." +51 logger.info(msg) +52 print(msg) +53 except Exception as e: +54 if temp_path and Path(temp_path).exists(): +55 try: +56 Path(temp_path).unlink() +57 except OSError: +58 logger.warning("Failed to clean up temporary explainability CSV file: %s", temp_path) +59 +60 msg = f"Failed to save {name} to {target_file}" +61 logger.exception(msg) +62 raise PersistenceError(msg) from e

    @@ -179,17 +182,20 @@

    47 os.fsync(tmp_file.fileno()) 48 49 os.replace(temp_path, target_file) -50 logger.info(f'{name} successfully saved to {target_file}.') -51 except Exception as e: -52 if temp_path and Path(temp_path).exists(): -53 try: -54 Path(temp_path).unlink() -55 except OSError: -56 logger.warning("Failed to clean up temporary explainability CSV file: %s", temp_path) -57 -58 msg = f"Failed to save {name} to {target_file}" -59 logger.exception(msg) -60 raise PersistenceError(msg) from e +50 +51 msg = f"{name} successfully saved to {target_file}." +52 logger.info(msg) +53 print(msg) +54 except Exception as e: +55 if temp_path and Path(temp_path).exists(): +56 try: +57 Path(temp_path).unlink() +58 except OSError: +59 logger.warning("Failed to clean up temporary explainability CSV file: %s", temp_path) +60 +61 msg = f"Failed to save {name} to {target_file}" +62 logger.exception(msg) +63 raise PersistenceError(msg) from e diff --git a/docs/api/ml/ml/runners/shared/persistence/save_metrics.html b/docs/api/ml/ml/runners/shared/persistence/save_metrics.html index 170fb802..70ffa252 100644 --- a/docs/api/ml/ml/runners/shared/persistence/save_metrics.html +++ b/docs/api/ml/ml/runners/shared/persistence/save_metrics.html @@ -121,18 +121,21 @@

    60 os.fsync(tmp_file.fileno()) 61 62 os.replace(temp_path, metrics_file) -63 logger.info(f"Metrics successfully saved to {metrics_file}.") -64 return str(metrics_file) -65 except Exception as e: -66 if temp_path and Path(temp_path).exists(): -67 try: -68 Path(temp_path).unlink() -69 except OSError: -70 logger.warning("Failed to clean up temporary metrics file: %s", temp_path) -71 -72 msg = f"Failed to save metrics to {metrics_file}" -73 logger.exception(msg) -74 raise PersistenceError(msg) from e +63 +64 msg = f"Metrics successfully saved to {metrics_file}." +65 logger.info(msg) +66 print(msg) +67 return str(metrics_file) +68 except Exception as e: +69 if temp_path and Path(temp_path).exists(): +70 try: +71 Path(temp_path).unlink() +72 except OSError: +73 logger.warning("Failed to clean up temporary metrics file: %s", temp_path) +74 +75 msg = f"Failed to save metrics to {metrics_file}" +76 logger.exception(msg) +77 raise PersistenceError(msg) from e @@ -206,18 +209,21 @@

    61 os.fsync(tmp_file.fileno()) 62 63 os.replace(temp_path, metrics_file) -64 logger.info(f"Metrics successfully saved to {metrics_file}.") -65 return str(metrics_file) -66 except Exception as e: -67 if temp_path and Path(temp_path).exists(): -68 try: -69 Path(temp_path).unlink() -70 except OSError: -71 logger.warning("Failed to clean up temporary metrics file: %s", temp_path) -72 -73 msg = f"Failed to save metrics to {metrics_file}" -74 logger.exception(msg) -75 raise PersistenceError(msg) from e +64 +65 msg = f"Metrics successfully saved to {metrics_file}." +66 logger.info(msg) +67 print(msg) +68 return str(metrics_file) +69 except Exception as e: +70 if temp_path and Path(temp_path).exists(): +71 try: +72 Path(temp_path).unlink() +73 except OSError: +74 logger.warning("Failed to clean up temporary metrics file: %s", temp_path) +75 +76 msg = f"Failed to save metrics to {metrics_file}" +77 logger.exception(msg) +78 raise PersistenceError(msg) from e diff --git a/docs/api/ml/ml/runners/training/persistence/artifacts/save_model.html b/docs/api/ml/ml/runners/training/persistence/artifacts/save_model.html index 424514d8..2af5560e 100644 --- a/docs/api/ml/ml/runners/training/persistence/artifacts/save_model.html +++ b/docs/api/ml/ml/runners/training/persistence/artifacts/save_model.html @@ -99,18 +99,21 @@

    38 39 joblib.dump(model, temp_path) 40 os.replace(temp_path, model_file) -41 logger.info(f"Model successfully saved to {model_file}.") -42 return model_file -43 except Exception as e: -44 if temp_path and temp_path.exists(): -45 try: -46 temp_path.unlink() -47 except OSError: -48 logger.warning("Failed to clean up temporary model file: %s", temp_path) -49 -50 msg = f"Failed to save model to {model_file}." -51 logger.exception(msg) -52 raise PersistenceError(msg) from e +41 +42 msg = f"Model successfully saved to {model_file}." +43 logger.info(msg) +44 print(msg) +45 return model_file +46 except Exception as e: +47 if temp_path and temp_path.exists(): +48 try: +49 temp_path.unlink() +50 except OSError: +51 logger.warning("Failed to clean up temporary model file: %s", temp_path) +52 +53 msg = f"Failed to save model to {model_file}." +54 logger.exception(msg) +55 raise PersistenceError(msg) from e @@ -165,18 +168,21 @@

    39 40 joblib.dump(model, temp_path) 41 os.replace(temp_path, model_file) -42 logger.info(f"Model successfully saved to {model_file}.") -43 return model_file -44 except Exception as e: -45 if temp_path and temp_path.exists(): -46 try: -47 temp_path.unlink() -48 except OSError: -49 logger.warning("Failed to clean up temporary model file: %s", temp_path) -50 -51 msg = f"Failed to save model to {model_file}." -52 logger.exception(msg) -53 raise PersistenceError(msg) from e +42 +43 msg = f"Model successfully saved to {model_file}." +44 logger.info(msg) +45 print(msg) +46 return model_file +47 except Exception as e: +48 if temp_path and temp_path.exists(): +49 try: +50 temp_path.unlink() +51 except OSError: +52 logger.warning("Failed to clean up temporary model file: %s", temp_path) +53 +54 msg = f"Failed to save model to {model_file}." +55 logger.exception(msg) +56 raise PersistenceError(msg) from e diff --git a/docs/api/ml/ml/runners/training/persistence/artifacts/save_pipeline.html b/docs/api/ml/ml/runners/training/persistence/artifacts/save_pipeline.html index ec79aedc..2822f663 100644 --- a/docs/api/ml/ml/runners/training/persistence/artifacts/save_pipeline.html +++ b/docs/api/ml/ml/runners/training/persistence/artifacts/save_pipeline.html @@ -101,18 +101,21 @@

    40 41 joblib.dump(pipeline, temp_path) 42 os.replace(temp_path, pipeline_file) -43 logger.info(f"Pipeline successfully saved to {pipeline_file}.") -44 return pipeline_file -45 except Exception as e: -46 if temp_path and temp_path.exists(): -47 try: -48 temp_path.unlink() -49 except OSError: -50 logger.warning("Failed to clean up temporary pipeline file: %s", temp_path) -51 -52 msg = f"Failed to save pipeline to {pipeline_file}." -53 logger.exception(msg) -54 raise PersistenceError(msg) from e +43 +44 msg = f"Pipeline successfully saved to {pipeline_file}." +45 logger.info(msg) +46 print(msg) +47 return pipeline_file +48 except Exception as e: +49 if temp_path and temp_path.exists(): +50 try: +51 temp_path.unlink() +52 except OSError: +53 logger.warning("Failed to clean up temporary pipeline file: %s", temp_path) +54 +55 msg = f"Failed to save pipeline to {pipeline_file}." +56 logger.exception(msg) +57 raise PersistenceError(msg) from e @@ -168,18 +171,21 @@

    41 42 joblib.dump(pipeline, temp_path) 43 os.replace(temp_path, pipeline_file) -44 logger.info(f"Pipeline successfully saved to {pipeline_file}.") -45 return pipeline_file -46 except Exception as e: -47 if temp_path and temp_path.exists(): -48 try: -49 temp_path.unlink() -50 except OSError: -51 logger.warning("Failed to clean up temporary pipeline file: %s", temp_path) -52 -53 msg = f"Failed to save pipeline to {pipeline_file}." -54 logger.exception(msg) -55 raise PersistenceError(msg) from e +44 +45 msg = f"Pipeline successfully saved to {pipeline_file}." +46 logger.info(msg) +47 print(msg) +48 return pipeline_file +49 except Exception as e: +50 if temp_path and temp_path.exists(): +51 try: +52 temp_path.unlink() +53 except OSError: +54 logger.warning("Failed to clean up temporary pipeline file: %s", temp_path) +55 +56 msg = f"Failed to save pipeline to {pipeline_file}." +57 logger.exception(msg) +58 raise PersistenceError(msg) from e diff --git a/docs/api/ml/ml/runners/training/trainers/catboost/catboost.html b/docs/api/ml/ml/runners/training/trainers/catboost/catboost.html index bbe6d34f..2f5fcec7 100644 --- a/docs/api/ml/ml/runners/training/trainers/catboost/catboost.html +++ b/docs/api/ml/ml/runners/training/trainers/catboost/catboost.html @@ -92,153 +92,155 @@

    17from ml.config.hashing import compute_model_config_hash 18from ml.config.schemas.model_cfg import TrainModelConfig 19from ml.features.extraction.cat_features import get_cat_features - 20from ml.features.loading.features_and_target import load_features_and_target - 21from ml.features.loading.schemas import load_schemas - 22from ml.features.splitting.splitting import get_splits - 23from ml.features.transforms.transform_target import transform_target - 24from ml.features.validation.validate_contract import validate_model_feature_pipeline_contract - 25from ml.modeling.catboost.build_pipeline_with_model import build_pipeline_with_model - 26from ml.modeling.class_weighting.models import DataStats - 27from ml.modeling.class_weighting.resolve_class_weighting import resolve_class_weighting - 28from ml.modeling.class_weighting.stats_resolver import compute_data_stats - 29from ml.pipelines.validation import validate_pipeline_config, validate_pipeline_config_consistency - 30from ml.runners.training.constants.output import TrainOutput - 31from ml.runners.training.trainers.base import Trainer - 32from ml.runners.training.trainers.catboost.train_catboost_model import train_catboost_model - 33from ml.runners.training.utils.metrics.compute_metrics import compute_metrics - 34from ml.runners.training.utils.model_specific.catboost import prepare_model - 35from ml.utils.loaders import load_yaml + 20from ml.features.loading.schemas import load_schemas + 21from ml.features.splitting.splitting import get_splits + 22from ml.features.transforms.transform_target import transform_target + 23from ml.features.validation.validate_contract import validate_model_feature_pipeline_contract + 24from ml.modeling.catboost.build_pipeline_with_model import build_pipeline_with_model + 25from ml.modeling.class_weighting.models import DataStats + 26from ml.modeling.class_weighting.resolve_class_weighting import resolve_class_weighting + 27from ml.modeling.class_weighting.stats_resolver import compute_data_stats + 28from ml.pipelines.validation import validate_pipeline_config, validate_pipeline_config_consistency + 29from ml.runners.training.constants.output import TrainOutput + 30from ml.runners.training.trainers.base import Trainer + 31from ml.runners.training.trainers.catboost.train_catboost_model import train_catboost_model + 32from ml.runners.training.utils.metrics.compute_metrics import compute_metrics + 33from ml.runners.training.utils.model_specific.catboost import prepare_model + 34from ml.utils.loaders import load_yaml + 35 36 - 37 - 38class CatBoostTrainer(Trainer): - 39 """Concrete trainer for CatBoost models within project training flow.""" - 40 - 41 def train( - 42 self, - 43 model_cfg: TrainModelConfig, - 44 *, - 45 snapshot_binding_key: str | None = None, - 46 strict: bool, - 47 failure_management_dir: Path, - 48 search_dir: Path - 49 ) -> TrainOutput: - 50 """Execute end-to-end CatBoost training and return standardized output. - 51 - 52 Args: - 53 model_cfg: Validated model configuration for training. - 54 strict: Whether feature/data loading operations should fail strictly. - 55 failure_management_dir: Directory for storing failure-management artifacts. - 56 search_dir: Directory for storing search-related artifacts. - 57 Returns: - 58 Standardized training output containing model, pipeline, lineage, and metrics. - 59 - 60 Raises: - 61 PipelineContractError: Propagated when pipeline/model contract checks - 62 fail in downstream validation helpers. - 63 - 64 Notes: - 65 Class weighting and categorical feature handling are resolved - 66 dynamically from configuration and task type before model fitting. - 67 - 68 Side Effects: - 69 Performs model training and pipeline fitting, which can be - 70 computationally intensive and may write failure-management artifacts - 71 through downstream helpers. - 72 """ - 73 - 74 stats: DataStats + 37class CatBoostTrainer(Trainer): + 38 """Concrete trainer for CatBoost models within project training flow.""" + 39 + 40 def train( + 41 self, + 42 model_cfg: TrainModelConfig, + 43 *, + 44 snapshot_binding_key: str | None = None, + 45 strict: bool, + 46 failure_management_dir: Path, + 47 search_dir: Path + 48 ) -> TrainOutput: + 49 """Execute end-to-end CatBoost training and return standardized output. + 50 + 51 Args: + 52 model_cfg: Validated model configuration for training. + 53 strict: Whether feature/data loading operations should fail strictly. + 54 failure_management_dir: Directory for storing failure-management artifacts. + 55 search_dir: Directory for storing search-related artifacts. + 56 Returns: + 57 Standardized training output containing model, pipeline, lineage, and metrics. + 58 + 59 Raises: + 60 PipelineContractError: Propagated when pipeline/model contract checks + 61 fail in downstream validation helpers. + 62 + 63 Notes: + 64 Class weighting and categorical feature handling are resolved + 65 dynamically from configuration and task type before model fitting. + 66 + 67 Side Effects: + 68 Performs model training and pipeline fitting, which can be + 69 computationally intensive and may write failure-management artifacts + 70 through downstream helpers. + 71 """ + 72 + 73 # Lazy import to avoid circular dependencies + 74 from ml.features.loading.features_and_target import load_features_and_target 75 - 76 X, y, lineage, _ = load_features_and_target( - 77 model_cfg, - 78 snapshot_selection=None, - 79 snapshot_binding_key=snapshot_binding_key, - 80 strict=strict - 81 ) - 82 splits, splits_info = get_splits( - 83 X=X, - 84 y=y, - 85 split_cfg=model_cfg.split, - 86 data_type=model_cfg.data_type, - 87 task_cfg=model_cfg.task - 88 ) - 89 - 90 X_train = splits.X_train - 91 y_train = transform_target( - 92 splits.y_train, - 93 transform_config=model_cfg.target.transform, - 94 split_name="train" - 95 ) - 96 X_val = splits.X_val - 97 y_val = transform_target( - 98 splits.y_val, - 99 transform_config=model_cfg.target.transform, -100 split_name="val" -101 ) -102 -103 input_schema, derived_schema = load_schemas(model_cfg, lineage) + 76 stats: DataStats + 77 + 78 X, y, lineage, _ = load_features_and_target( + 79 model_cfg, + 80 snapshot_selection=None, + 81 snapshot_binding_key=snapshot_binding_key, + 82 strict=strict + 83 ) + 84 splits, splits_info = get_splits( + 85 X=X, + 86 y=y, + 87 split_cfg=model_cfg.split, + 88 data_type=model_cfg.data_type, + 89 task_cfg=model_cfg.task + 90 ) + 91 + 92 X_train = splits.X_train + 93 y_train = transform_target( + 94 splits.y_train, + 95 transform_config=model_cfg.target.transform, + 96 split_name="train" + 97 ) + 98 X_val = splits.X_val + 99 y_val = transform_target( +100 splits.y_val, +101 transform_config=model_cfg.target.transform, +102 split_name="val" +103 ) 104 -105 cat_features = get_cat_features(model_cfg, input_schema, derived_schema) +105 input_schema, derived_schema = load_schemas(model_cfg, lineage) 106 -107 pipeline_path = Path(f"{model_cfg.pipeline.path}").resolve() -108 pipeline_cfg_raw = load_yaml(pipeline_path) -109 pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw) -110 pipeline_cfg_hash = compute_model_config_hash(pipeline_cfg.model_dump()) -111 validate_pipeline_config_consistency(pipeline_cfg_hash, search_dir) -112 -113 validate_model_feature_pipeline_contract( -114 model_cfg, -115 pipeline_cfg, -116 cat_features -117 ) -118 -119 class_weights = {} -120 if model_cfg.task.type == "classification": -121 stats = compute_data_stats(y_train) -122 class_weights = resolve_class_weighting(model_cfg, stats, "catboost") -123 -124 model = prepare_model( -125 model_cfg, -126 cat_features=cat_features, -127 class_weights=class_weights, -128 failure_management_dir=failure_management_dir -129 ) -130 -131 pipeline = build_pipeline_with_model( -132 model_cfg=model_cfg, -133 pipeline_cfg=pipeline_cfg, -134 input_schema=input_schema, -135 derived_schema=derived_schema, -136 model=model -137 ) -138 -139 model_trained, pipeline_trained = train_catboost_model( -140 model_cfg, -141 steps=pipeline.steps, -142 X_train=X_train, -143 y_train=y_train, -144 X_val=X_val, -145 y_val=y_val -146 ) -147 -148 metrics = compute_metrics( -149 model=model_trained, -150 pipeline=pipeline_trained, -151 model_cfg=model_cfg, -152 X_train=X_train, -153 y_train=y_train, -154 X_val=X_val, -155 y_val=y_val -156 ) -157 -158 output = TrainOutput( -159 model=model_trained, -160 pipeline=pipeline_trained, -161 lineage=lineage, -162 metrics=metrics, -163 pipeline_cfg_hash=pipeline_cfg_hash -164 ) -165 -166 return output +107 cat_features = get_cat_features(model_cfg, input_schema, derived_schema) +108 +109 pipeline_path = Path(f"{model_cfg.pipeline.path}").resolve() +110 pipeline_cfg_raw = load_yaml(pipeline_path) +111 pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw) +112 pipeline_cfg_hash = compute_model_config_hash(pipeline_cfg.model_dump()) +113 validate_pipeline_config_consistency(pipeline_cfg_hash, search_dir) +114 +115 validate_model_feature_pipeline_contract( +116 model_cfg, +117 pipeline_cfg, +118 cat_features +119 ) +120 +121 class_weights = {} +122 if model_cfg.task.type == "classification": +123 stats = compute_data_stats(y_train) +124 class_weights = resolve_class_weighting(model_cfg, stats, "catboost") +125 +126 model = prepare_model( +127 model_cfg, +128 cat_features=cat_features, +129 class_weights=class_weights, +130 failure_management_dir=failure_management_dir +131 ) +132 +133 pipeline = build_pipeline_with_model( +134 model_cfg=model_cfg, +135 pipeline_cfg=pipeline_cfg, +136 input_schema=input_schema, +137 derived_schema=derived_schema, +138 model=model +139 ) +140 +141 model_trained, pipeline_trained = train_catboost_model( +142 model_cfg, +143 steps=pipeline.steps, +144 X_train=X_train, +145 y_train=y_train, +146 X_val=X_val, +147 y_val=y_val +148 ) +149 +150 metrics = compute_metrics( +151 model=model_trained, +152 pipeline=pipeline_trained, +153 model_cfg=model_cfg, +154 X_train=X_train, +155 y_train=y_train, +156 X_val=X_val, +157 y_val=y_val +158 ) +159 +160 output = TrainOutput( +161 model=model_trained, +162 pipeline=pipeline_trained, +163 lineage=lineage, +164 metrics=metrics, +165 pipeline_cfg_hash=pipeline_cfg_hash +166 ) +167 +168 return output @@ -254,135 +256,138 @@

    -
     39class CatBoostTrainer(Trainer):
    - 40    """Concrete trainer for CatBoost models within project training flow."""
    - 41
    - 42    def train(
    - 43        self,
    - 44        model_cfg: TrainModelConfig,
    - 45        *,
    - 46        snapshot_binding_key: str | None = None,
    - 47        strict: bool,
    - 48        failure_management_dir: Path,
    - 49        search_dir: Path
    - 50    ) -> TrainOutput:
    - 51        """Execute end-to-end CatBoost training and return standardized output.
    - 52
    - 53        Args:
    - 54            model_cfg: Validated model configuration for training.
    - 55            strict: Whether feature/data loading operations should fail strictly.
    - 56            failure_management_dir: Directory for storing failure-management artifacts.
    - 57            search_dir: Directory for storing search-related artifacts.
    - 58        Returns:
    - 59            Standardized training output containing model, pipeline, lineage, and metrics.
    - 60
    - 61        Raises:
    - 62            PipelineContractError: Propagated when pipeline/model contract checks
    - 63                fail in downstream validation helpers.
    - 64
    - 65        Notes:
    - 66            Class weighting and categorical feature handling are resolved
    - 67            dynamically from configuration and task type before model fitting.
    - 68
    - 69        Side Effects:
    - 70            Performs model training and pipeline fitting, which can be
    - 71            computationally intensive and may write failure-management artifacts
    - 72            through downstream helpers.
    - 73        """
    - 74
    - 75        stats: DataStats
    +            
     38class CatBoostTrainer(Trainer):
    + 39    """Concrete trainer for CatBoost models within project training flow."""
    + 40
    + 41    def train(
    + 42        self,
    + 43        model_cfg: TrainModelConfig,
    + 44        *,
    + 45        snapshot_binding_key: str | None = None,
    + 46        strict: bool,
    + 47        failure_management_dir: Path,
    + 48        search_dir: Path
    + 49    ) -> TrainOutput:
    + 50        """Execute end-to-end CatBoost training and return standardized output.
    + 51
    + 52        Args:
    + 53            model_cfg: Validated model configuration for training.
    + 54            strict: Whether feature/data loading operations should fail strictly.
    + 55            failure_management_dir: Directory for storing failure-management artifacts.
    + 56            search_dir: Directory for storing search-related artifacts.
    + 57        Returns:
    + 58            Standardized training output containing model, pipeline, lineage, and metrics.
    + 59
    + 60        Raises:
    + 61            PipelineContractError: Propagated when pipeline/model contract checks
    + 62                fail in downstream validation helpers.
    + 63
    + 64        Notes:
    + 65            Class weighting and categorical feature handling are resolved
    + 66            dynamically from configuration and task type before model fitting.
    + 67
    + 68        Side Effects:
    + 69            Performs model training and pipeline fitting, which can be
    + 70            computationally intensive and may write failure-management artifacts
    + 71            through downstream helpers.
    + 72        """
    + 73
    + 74        # Lazy import to avoid circular dependencies
    + 75        from ml.features.loading.features_and_target import load_features_and_target
      76
    - 77        X, y, lineage, _ = load_features_and_target(
    - 78            model_cfg,
    - 79            snapshot_selection=None,
    - 80            snapshot_binding_key=snapshot_binding_key,
    - 81            strict=strict
    - 82        )
    - 83        splits, splits_info = get_splits(
    - 84            X=X,
    - 85            y=y,
    - 86            split_cfg=model_cfg.split,
    - 87            data_type=model_cfg.data_type,
    - 88            task_cfg=model_cfg.task
    - 89        )
    - 90
    - 91        X_train = splits.X_train
    - 92        y_train = transform_target(
    - 93            splits.y_train,
    - 94            transform_config=model_cfg.target.transform,
    - 95            split_name="train"
    - 96        )
    - 97        X_val = splits.X_val
    - 98        y_val = transform_target(
    - 99            splits.y_val,
    -100            transform_config=model_cfg.target.transform,
    -101            split_name="val"
    -102        )
    -103
    -104        input_schema, derived_schema = load_schemas(model_cfg, lineage)
    + 77        stats: DataStats
    + 78
    + 79        X, y, lineage, _ = load_features_and_target(
    + 80            model_cfg,
    + 81            snapshot_selection=None,
    + 82            snapshot_binding_key=snapshot_binding_key,
    + 83            strict=strict
    + 84        )
    + 85        splits, splits_info = get_splits(
    + 86            X=X,
    + 87            y=y,
    + 88            split_cfg=model_cfg.split,
    + 89            data_type=model_cfg.data_type,
    + 90            task_cfg=model_cfg.task
    + 91        )
    + 92
    + 93        X_train = splits.X_train
    + 94        y_train = transform_target(
    + 95            splits.y_train,
    + 96            transform_config=model_cfg.target.transform,
    + 97            split_name="train"
    + 98        )
    + 99        X_val = splits.X_val
    +100        y_val = transform_target(
    +101            splits.y_val,
    +102            transform_config=model_cfg.target.transform,
    +103            split_name="val"
    +104        )
     105
    -106        cat_features = get_cat_features(model_cfg, input_schema, derived_schema)
    +106        input_schema, derived_schema = load_schemas(model_cfg, lineage)
     107
    -108        pipeline_path = Path(f"{model_cfg.pipeline.path}").resolve()
    -109        pipeline_cfg_raw = load_yaml(pipeline_path)
    -110        pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw)
    -111        pipeline_cfg_hash = compute_model_config_hash(pipeline_cfg.model_dump())
    -112        validate_pipeline_config_consistency(pipeline_cfg_hash, search_dir)
    -113
    -114        validate_model_feature_pipeline_contract(
    -115            model_cfg,
    -116            pipeline_cfg,
    -117            cat_features
    -118        )
    -119
    -120        class_weights = {}
    -121        if model_cfg.task.type == "classification":
    -122            stats = compute_data_stats(y_train)
    -123            class_weights = resolve_class_weighting(model_cfg, stats, "catboost")
    -124
    -125        model = prepare_model(
    -126            model_cfg,
    -127            cat_features=cat_features,
    -128            class_weights=class_weights,
    -129            failure_management_dir=failure_management_dir
    -130        )
    -131
    -132        pipeline = build_pipeline_with_model(
    -133            model_cfg=model_cfg,
    -134            pipeline_cfg=pipeline_cfg,
    -135            input_schema=input_schema,
    -136            derived_schema=derived_schema,
    -137            model=model
    -138        )
    -139
    -140        model_trained, pipeline_trained = train_catboost_model(
    -141            model_cfg,
    -142            steps=pipeline.steps,
    -143            X_train=X_train,
    -144            y_train=y_train,
    -145            X_val=X_val,
    -146            y_val=y_val
    -147        )
    -148
    -149        metrics = compute_metrics(
    -150            model=model_trained,
    -151            pipeline=pipeline_trained,
    -152            model_cfg=model_cfg,
    -153            X_train=X_train,
    -154            y_train=y_train,
    -155            X_val=X_val,
    -156            y_val=y_val
    -157        )
    -158
    -159        output = TrainOutput(
    -160            model=model_trained,
    -161            pipeline=pipeline_trained,
    -162            lineage=lineage,
    -163            metrics=metrics,
    -164            pipeline_cfg_hash=pipeline_cfg_hash
    -165        )
    -166
    -167        return output
    +108        cat_features = get_cat_features(model_cfg, input_schema, derived_schema)
    +109
    +110        pipeline_path = Path(f"{model_cfg.pipeline.path}").resolve()
    +111        pipeline_cfg_raw = load_yaml(pipeline_path)
    +112        pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw)
    +113        pipeline_cfg_hash = compute_model_config_hash(pipeline_cfg.model_dump())
    +114        validate_pipeline_config_consistency(pipeline_cfg_hash, search_dir)
    +115
    +116        validate_model_feature_pipeline_contract(
    +117            model_cfg,
    +118            pipeline_cfg,
    +119            cat_features
    +120        )
    +121
    +122        class_weights = {}
    +123        if model_cfg.task.type == "classification":
    +124            stats = compute_data_stats(y_train)
    +125            class_weights = resolve_class_weighting(model_cfg, stats, "catboost")
    +126
    +127        model = prepare_model(
    +128            model_cfg,
    +129            cat_features=cat_features,
    +130            class_weights=class_weights,
    +131            failure_management_dir=failure_management_dir
    +132        )
    +133
    +134        pipeline = build_pipeline_with_model(
    +135            model_cfg=model_cfg,
    +136            pipeline_cfg=pipeline_cfg,
    +137            input_schema=input_schema,
    +138            derived_schema=derived_schema,
    +139            model=model
    +140        )
    +141
    +142        model_trained, pipeline_trained = train_catboost_model(
    +143            model_cfg,
    +144            steps=pipeline.steps,
    +145            X_train=X_train,
    +146            y_train=y_train,
    +147            X_val=X_val,
    +148            y_val=y_val
    +149        )
    +150
    +151        metrics = compute_metrics(
    +152            model=model_trained,
    +153            pipeline=pipeline_trained,
    +154            model_cfg=model_cfg,
    +155            X_train=X_train,
    +156            y_train=y_train,
    +157            X_val=X_val,
    +158            y_val=y_val
    +159        )
    +160
    +161        output = TrainOutput(
    +162            model=model_trained,
    +163            pipeline=pipeline_trained,
    +164            lineage=lineage,
    +165            metrics=metrics,
    +166            pipeline_cfg_hash=pipeline_cfg_hash
    +167        )
    +168
    +169        return output
     
    @@ -401,132 +406,135 @@

    -
     42    def train(
    - 43        self,
    - 44        model_cfg: TrainModelConfig,
    - 45        *,
    - 46        snapshot_binding_key: str | None = None,
    - 47        strict: bool,
    - 48        failure_management_dir: Path,
    - 49        search_dir: Path
    - 50    ) -> TrainOutput:
    - 51        """Execute end-to-end CatBoost training and return standardized output.
    - 52
    - 53        Args:
    - 54            model_cfg: Validated model configuration for training.
    - 55            strict: Whether feature/data loading operations should fail strictly.
    - 56            failure_management_dir: Directory for storing failure-management artifacts.
    - 57            search_dir: Directory for storing search-related artifacts.
    - 58        Returns:
    - 59            Standardized training output containing model, pipeline, lineage, and metrics.
    - 60
    - 61        Raises:
    - 62            PipelineContractError: Propagated when pipeline/model contract checks
    - 63                fail in downstream validation helpers.
    - 64
    - 65        Notes:
    - 66            Class weighting and categorical feature handling are resolved
    - 67            dynamically from configuration and task type before model fitting.
    - 68
    - 69        Side Effects:
    - 70            Performs model training and pipeline fitting, which can be
    - 71            computationally intensive and may write failure-management artifacts
    - 72            through downstream helpers.
    - 73        """
    - 74
    - 75        stats: DataStats
    +            
     41    def train(
    + 42        self,
    + 43        model_cfg: TrainModelConfig,
    + 44        *,
    + 45        snapshot_binding_key: str | None = None,
    + 46        strict: bool,
    + 47        failure_management_dir: Path,
    + 48        search_dir: Path
    + 49    ) -> TrainOutput:
    + 50        """Execute end-to-end CatBoost training and return standardized output.
    + 51
    + 52        Args:
    + 53            model_cfg: Validated model configuration for training.
    + 54            strict: Whether feature/data loading operations should fail strictly.
    + 55            failure_management_dir: Directory for storing failure-management artifacts.
    + 56            search_dir: Directory for storing search-related artifacts.
    + 57        Returns:
    + 58            Standardized training output containing model, pipeline, lineage, and metrics.
    + 59
    + 60        Raises:
    + 61            PipelineContractError: Propagated when pipeline/model contract checks
    + 62                fail in downstream validation helpers.
    + 63
    + 64        Notes:
    + 65            Class weighting and categorical feature handling are resolved
    + 66            dynamically from configuration and task type before model fitting.
    + 67
    + 68        Side Effects:
    + 69            Performs model training and pipeline fitting, which can be
    + 70            computationally intensive and may write failure-management artifacts
    + 71            through downstream helpers.
    + 72        """
    + 73
    + 74        # Lazy import to avoid circular dependencies
    + 75        from ml.features.loading.features_and_target import load_features_and_target
      76
    - 77        X, y, lineage, _ = load_features_and_target(
    - 78            model_cfg,
    - 79            snapshot_selection=None,
    - 80            snapshot_binding_key=snapshot_binding_key,
    - 81            strict=strict
    - 82        )
    - 83        splits, splits_info = get_splits(
    - 84            X=X,
    - 85            y=y,
    - 86            split_cfg=model_cfg.split,
    - 87            data_type=model_cfg.data_type,
    - 88            task_cfg=model_cfg.task
    - 89        )
    - 90
    - 91        X_train = splits.X_train
    - 92        y_train = transform_target(
    - 93            splits.y_train,
    - 94            transform_config=model_cfg.target.transform,
    - 95            split_name="train"
    - 96        )
    - 97        X_val = splits.X_val
    - 98        y_val = transform_target(
    - 99            splits.y_val,
    -100            transform_config=model_cfg.target.transform,
    -101            split_name="val"
    -102        )
    -103
    -104        input_schema, derived_schema = load_schemas(model_cfg, lineage)
    + 77        stats: DataStats
    + 78
    + 79        X, y, lineage, _ = load_features_and_target(
    + 80            model_cfg,
    + 81            snapshot_selection=None,
    + 82            snapshot_binding_key=snapshot_binding_key,
    + 83            strict=strict
    + 84        )
    + 85        splits, splits_info = get_splits(
    + 86            X=X,
    + 87            y=y,
    + 88            split_cfg=model_cfg.split,
    + 89            data_type=model_cfg.data_type,
    + 90            task_cfg=model_cfg.task
    + 91        )
    + 92
    + 93        X_train = splits.X_train
    + 94        y_train = transform_target(
    + 95            splits.y_train,
    + 96            transform_config=model_cfg.target.transform,
    + 97            split_name="train"
    + 98        )
    + 99        X_val = splits.X_val
    +100        y_val = transform_target(
    +101            splits.y_val,
    +102            transform_config=model_cfg.target.transform,
    +103            split_name="val"
    +104        )
     105
    -106        cat_features = get_cat_features(model_cfg, input_schema, derived_schema)
    +106        input_schema, derived_schema = load_schemas(model_cfg, lineage)
     107
    -108        pipeline_path = Path(f"{model_cfg.pipeline.path}").resolve()
    -109        pipeline_cfg_raw = load_yaml(pipeline_path)
    -110        pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw)
    -111        pipeline_cfg_hash = compute_model_config_hash(pipeline_cfg.model_dump())
    -112        validate_pipeline_config_consistency(pipeline_cfg_hash, search_dir)
    -113
    -114        validate_model_feature_pipeline_contract(
    -115            model_cfg,
    -116            pipeline_cfg,
    -117            cat_features
    -118        )
    -119
    -120        class_weights = {}
    -121        if model_cfg.task.type == "classification":
    -122            stats = compute_data_stats(y_train)
    -123            class_weights = resolve_class_weighting(model_cfg, stats, "catboost")
    -124
    -125        model = prepare_model(
    -126            model_cfg,
    -127            cat_features=cat_features,
    -128            class_weights=class_weights,
    -129            failure_management_dir=failure_management_dir
    -130        )
    -131
    -132        pipeline = build_pipeline_with_model(
    -133            model_cfg=model_cfg,
    -134            pipeline_cfg=pipeline_cfg,
    -135            input_schema=input_schema,
    -136            derived_schema=derived_schema,
    -137            model=model
    -138        )
    -139
    -140        model_trained, pipeline_trained = train_catboost_model(
    -141            model_cfg,
    -142            steps=pipeline.steps,
    -143            X_train=X_train,
    -144            y_train=y_train,
    -145            X_val=X_val,
    -146            y_val=y_val
    -147        )
    -148
    -149        metrics = compute_metrics(
    -150            model=model_trained,
    -151            pipeline=pipeline_trained,
    -152            model_cfg=model_cfg,
    -153            X_train=X_train,
    -154            y_train=y_train,
    -155            X_val=X_val,
    -156            y_val=y_val
    -157        )
    -158
    -159        output = TrainOutput(
    -160            model=model_trained,
    -161            pipeline=pipeline_trained,
    -162            lineage=lineage,
    -163            metrics=metrics,
    -164            pipeline_cfg_hash=pipeline_cfg_hash
    -165        )
    -166
    -167        return output
    +108        cat_features = get_cat_features(model_cfg, input_schema, derived_schema)
    +109
    +110        pipeline_path = Path(f"{model_cfg.pipeline.path}").resolve()
    +111        pipeline_cfg_raw = load_yaml(pipeline_path)
    +112        pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw)
    +113        pipeline_cfg_hash = compute_model_config_hash(pipeline_cfg.model_dump())
    +114        validate_pipeline_config_consistency(pipeline_cfg_hash, search_dir)
    +115
    +116        validate_model_feature_pipeline_contract(
    +117            model_cfg,
    +118            pipeline_cfg,
    +119            cat_features
    +120        )
    +121
    +122        class_weights = {}
    +123        if model_cfg.task.type == "classification":
    +124            stats = compute_data_stats(y_train)
    +125            class_weights = resolve_class_weighting(model_cfg, stats, "catboost")
    +126
    +127        model = prepare_model(
    +128            model_cfg,
    +129            cat_features=cat_features,
    +130            class_weights=class_weights,
    +131            failure_management_dir=failure_management_dir
    +132        )
    +133
    +134        pipeline = build_pipeline_with_model(
    +135            model_cfg=model_cfg,
    +136            pipeline_cfg=pipeline_cfg,
    +137            input_schema=input_schema,
    +138            derived_schema=derived_schema,
    +139            model=model
    +140        )
    +141
    +142        model_trained, pipeline_trained = train_catboost_model(
    +143            model_cfg,
    +144            steps=pipeline.steps,
    +145            X_train=X_train,
    +146            y_train=y_train,
    +147            X_val=X_val,
    +148            y_val=y_val
    +149        )
    +150
    +151        metrics = compute_metrics(
    +152            model=model_trained,
    +153            pipeline=pipeline_trained,
    +154            model_cfg=model_cfg,
    +155            X_train=X_train,
    +156            y_train=y_train,
    +157            X_val=X_val,
    +158            y_val=y_val
    +159        )
    +160
    +161        output = TrainOutput(
    +162            model=model_trained,
    +163            pipeline=pipeline_trained,
    +164            lineage=lineage,
    +165            metrics=metrics,
    +166            pipeline_cfg_hash=pipeline_cfg_hash
    +167        )
    +168
    +169        return output
     
    diff --git a/docs/api/ml/ml/search/searchers/catboost/pipeline/steps/preparation.html b/docs/api/ml/ml/search/searchers/catboost/pipeline/steps/preparation.html index 4970ece1..b16f37c9 100644 --- a/docs/api/ml/ml/search/searchers/catboost/pipeline/steps/preparation.html +++ b/docs/api/ml/ml/search/searchers/catboost/pipeline/steps/preparation.html @@ -84,129 +84,132 @@

    5 6from ml.config.hashing import compute_model_config_hash 7from ml.features.extraction.cat_features import get_cat_features - 8from ml.features.loading.features_and_target import load_features_and_target - 9from ml.features.loading.schemas import load_schemas - 10from ml.features.splitting.splitting import get_splits - 11from ml.features.transforms.transform_target import transform_target - 12from ml.features.validation.validate_contract import validate_model_feature_pipeline_contract - 13from ml.modeling.class_weighting.models import DataStats - 14from ml.modeling.class_weighting.resolve_class_weighting import resolve_class_weighting - 15from ml.modeling.class_weighting.resolve_metric import resolve_metric - 16from ml.modeling.class_weighting.stats_resolver import compute_data_stats - 17from ml.pipelines.validation import validate_pipeline_config - 18from ml.search.searchers.catboost.pipeline.context import SearchContext - 19from ml.utils.loaders import load_yaml - 20from ml.utils.pipeline_core.step import PipelineStep - 21 - 22logger = logging.getLogger(__name__) - 23 - 24class PreparationStep(PipelineStep[SearchContext]): - 25 """Load data/schemas, resolve scoring, and prepare search context state.""" - 26 - 27 name = "preparation" - 28 - 29 stats: DataStats - 30 - 31 def before(self, ctx: SearchContext) -> None: - 32 """Emit pre-step log message. - 33 - 34 Args: - 35 ctx: Search pipeline context. - 36 - 37 Returns: - 38 None: Emits logging side effect only. - 39 """ - 40 logger.info("Starting preparation step.") - 41 - 42 def after(self, ctx: SearchContext) -> None: - 43 """Emit post-step log message. - 44 - 45 Args: - 46 ctx: Search pipeline context. - 47 - 48 Returns: - 49 None: Emits logging side effect only. - 50 """ - 51 logger.info("Completed preparation step.") - 52 - 53 def run(self, ctx: SearchContext) -> SearchContext: - 54 """Prepare training inputs/config artifacts required by search phases. - 55 - 56 Args: - 57 ctx: Search pipeline context. - 58 - 59 Returns: - 60 SearchContext: Updated context with prepared data/config artifacts. - 61 - 62 Raises: - 63 DataError: Propagated from feature/target loading and validation. - 64 PipelineContractError: Propagated when model/pipeline contract checks - 65 fail. - 66 - 67 Notes: - 68 This step centralizes all shared preparation work so broad and narrow - 69 phases consume the same validated inputs and derived artifacts. - 70 - 71 Side Effects: - 72 Reads data/config files from disk and mutates multiple context fields - 73 required by downstream search steps. - 74 """ - 75 X, y, lineage, _ = load_features_and_target( - 76 ctx.model_cfg, - 77 snapshot_selection=None, - 78 snapshot_binding_key=ctx.snapshot_binding_key, - 79 strict=ctx.strict - 80 ) - 81 splits, splits_info = get_splits( - 82 X, - 83 y, - 84 split_cfg=ctx.model_cfg.split, - 85 data_type=ctx.model_cfg.data_type, - 86 task_cfg=ctx.model_cfg.task - 87 ) - 88 input_schema, derived_schema = load_schemas(ctx.model_cfg, lineage) - 89 - 90 pipeline_path = Path(f"{ctx.model_cfg.pipeline.path}").resolve() - 91 pipeline_cfg_raw = load_yaml(pipeline_path) - 92 pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw) - 93 pipeline_hash = compute_model_config_hash(pipeline_cfg.model_dump()) - 94 - 95 cat_features = get_cat_features(ctx.model_cfg, input_schema, derived_schema) - 96 - 97 validate_model_feature_pipeline_contract( - 98 ctx.model_cfg, - 99 pipeline_cfg, -100 cat_features -101 ) -102 -103 stats = None -104 if ctx.model_cfg.task.type == "classification": -105 stats = compute_data_stats(splits.y_train) -106 -107 scoring = resolve_metric(ctx.model_cfg, stats) -108 ctx.scoring = scoring + 8from ml.features.loading.schemas import load_schemas + 9from ml.features.splitting.splitting import get_splits + 10from ml.features.transforms.transform_target import transform_target + 11from ml.features.validation.validate_contract import validate_model_feature_pipeline_contract + 12from ml.modeling.class_weighting.models import DataStats + 13from ml.modeling.class_weighting.resolve_class_weighting import resolve_class_weighting + 14from ml.modeling.class_weighting.resolve_metric import resolve_metric + 15from ml.modeling.class_weighting.stats_resolver import compute_data_stats + 16from ml.pipelines.validation import validate_pipeline_config + 17from ml.search.searchers.catboost.pipeline.context import SearchContext + 18from ml.utils.loaders import load_yaml + 19from ml.utils.pipeline_core.step import PipelineStep + 20 + 21logger = logging.getLogger(__name__) + 22 + 23class PreparationStep(PipelineStep[SearchContext]): + 24 """Load data/schemas, resolve scoring, and prepare search context state.""" + 25 + 26 name = "preparation" + 27 + 28 stats: DataStats + 29 + 30 def before(self, ctx: SearchContext) -> None: + 31 """Emit pre-step log message. + 32 + 33 Args: + 34 ctx: Search pipeline context. + 35 + 36 Returns: + 37 None: Emits logging side effect only. + 38 """ + 39 logger.info("Starting preparation step.") + 40 + 41 def after(self, ctx: SearchContext) -> None: + 42 """Emit post-step log message. + 43 + 44 Args: + 45 ctx: Search pipeline context. + 46 + 47 Returns: + 48 None: Emits logging side effect only. + 49 """ + 50 logger.info("Completed preparation step.") + 51 + 52 def run(self, ctx: SearchContext) -> SearchContext: + 53 """Prepare training inputs/config artifacts required by search phases. + 54 + 55 Args: + 56 ctx: Search pipeline context. + 57 + 58 Returns: + 59 SearchContext: Updated context with prepared data/config artifacts. + 60 + 61 Raises: + 62 DataError: Propagated from feature/target loading and validation. + 63 PipelineContractError: Propagated when model/pipeline contract checks + 64 fail. + 65 + 66 Notes: + 67 This step centralizes all shared preparation work so broad and narrow + 68 phases consume the same validated inputs and derived artifacts. + 69 + 70 Side Effects: + 71 Reads data/config files from disk and mutates multiple context fields + 72 required by downstream search steps. + 73 """ + 74 + 75 # Lazy import to avoid circular dependencies + 76 from ml.features.loading.features_and_target import load_features_and_target + 77 + 78 X, y, lineage, _ = load_features_and_target( + 79 ctx.model_cfg, + 80 snapshot_selection=None, + 81 snapshot_binding_key=ctx.snapshot_binding_key, + 82 strict=ctx.strict + 83 ) + 84 splits, splits_info = get_splits( + 85 X, + 86 y, + 87 split_cfg=ctx.model_cfg.split, + 88 data_type=ctx.model_cfg.data_type, + 89 task_cfg=ctx.model_cfg.task + 90 ) + 91 input_schema, derived_schema = load_schemas(ctx.model_cfg, lineage) + 92 + 93 pipeline_path = Path(f"{ctx.model_cfg.pipeline.path}").resolve() + 94 pipeline_cfg_raw = load_yaml(pipeline_path) + 95 pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw) + 96 pipeline_hash = compute_model_config_hash(pipeline_cfg.model_dump()) + 97 + 98 cat_features = get_cat_features(ctx.model_cfg, input_schema, derived_schema) + 99 +100 validate_model_feature_pipeline_contract( +101 ctx.model_cfg, +102 pipeline_cfg, +103 cat_features +104 ) +105 +106 stats = None +107 if ctx.model_cfg.task.type == "classification": +108 stats = compute_data_stats(splits.y_train) 109 -110 if stats is not None: -111 class_weights = resolve_class_weighting(ctx.model_cfg, stats, library="catboost") -112 ctx.class_weights = class_weights -113 -114 y_train = transform_target( -115 splits.y_train, -116 transform_config=ctx.model_cfg.target.transform, -117 split_name="train" -118 ) -119 -120 ctx.X_train = splits.X_train -121 ctx.y_train = y_train -122 ctx.splits_info = splits_info -123 ctx.pipeline_cfg = pipeline_cfg -124 ctx.input_schema = input_schema -125 ctx.derived_schema = derived_schema -126 ctx.cat_features = cat_features -127 ctx.pipeline_hash = pipeline_hash -128 ctx.feature_lineage = lineage -129 -130 return ctx +110 scoring = resolve_metric(ctx.model_cfg, stats) +111 ctx.scoring = scoring +112 +113 if stats is not None: +114 class_weights = resolve_class_weighting(ctx.model_cfg, stats, library="catboost") +115 ctx.class_weights = class_weights +116 +117 y_train = transform_target( +118 splits.y_train, +119 transform_config=ctx.model_cfg.target.transform, +120 split_name="train" +121 ) +122 +123 ctx.X_train = splits.X_train +124 ctx.y_train = y_train +125 ctx.splits_info = splits_info +126 ctx.pipeline_cfg = pipeline_cfg +127 ctx.input_schema = input_schema +128 ctx.derived_schema = derived_schema +129 ctx.cat_features = cat_features +130 ctx.pipeline_hash = pipeline_hash +131 ctx.feature_lineage = lineage +132 +133 return ctx

    @@ -234,113 +237,117 @@

    -
     25class PreparationStep(PipelineStep[SearchContext]):
    - 26    """Load data/schemas, resolve scoring, and prepare search context state."""
    - 27
    - 28    name = "preparation"
    - 29
    - 30    stats: DataStats
    - 31
    - 32    def before(self, ctx: SearchContext) -> None:
    - 33        """Emit pre-step log message.
    - 34
    - 35        Args:
    - 36            ctx: Search pipeline context.
    - 37
    - 38        Returns:
    - 39            None: Emits logging side effect only.
    - 40        """
    - 41        logger.info("Starting preparation step.")
    - 42
    - 43    def after(self, ctx: SearchContext) -> None:
    - 44        """Emit post-step log message.
    - 45
    - 46        Args:
    - 47            ctx: Search pipeline context.
    - 48
    - 49        Returns:
    - 50            None: Emits logging side effect only.
    - 51        """
    - 52        logger.info("Completed preparation step.")
    - 53
    - 54    def run(self, ctx: SearchContext) -> SearchContext:
    - 55        """Prepare training inputs/config artifacts required by search phases.
    - 56
    - 57        Args:
    - 58            ctx: Search pipeline context.
    - 59
    - 60        Returns:
    - 61            SearchContext: Updated context with prepared data/config artifacts.
    - 62
    - 63        Raises:
    - 64            DataError: Propagated from feature/target loading and validation.
    - 65            PipelineContractError: Propagated when model/pipeline contract checks
    - 66                fail.
    - 67
    - 68        Notes:
    - 69            This step centralizes all shared preparation work so broad and narrow
    - 70            phases consume the same validated inputs and derived artifacts.
    - 71
    - 72        Side Effects:
    - 73            Reads data/config files from disk and mutates multiple context fields
    - 74            required by downstream search steps.
    - 75        """
    - 76        X, y, lineage, _ = load_features_and_target(
    - 77            ctx.model_cfg,
    - 78            snapshot_selection=None,
    - 79            snapshot_binding_key=ctx.snapshot_binding_key,
    - 80            strict=ctx.strict
    - 81        )
    - 82        splits, splits_info = get_splits(
    - 83            X,
    - 84            y,
    - 85            split_cfg=ctx.model_cfg.split,
    - 86            data_type=ctx.model_cfg.data_type,
    - 87            task_cfg=ctx.model_cfg.task
    - 88        )
    - 89        input_schema, derived_schema = load_schemas(ctx.model_cfg, lineage)
    - 90
    - 91        pipeline_path = Path(f"{ctx.model_cfg.pipeline.path}").resolve()
    - 92        pipeline_cfg_raw = load_yaml(pipeline_path)
    - 93        pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw)
    - 94        pipeline_hash = compute_model_config_hash(pipeline_cfg.model_dump())
    - 95
    - 96        cat_features = get_cat_features(ctx.model_cfg, input_schema, derived_schema)
    - 97
    - 98        validate_model_feature_pipeline_contract(
    - 99            ctx.model_cfg,
    -100            pipeline_cfg,
    -101            cat_features
    -102        )
    -103
    -104        stats = None
    -105        if ctx.model_cfg.task.type == "classification":
    -106            stats = compute_data_stats(splits.y_train)
    -107
    -108        scoring = resolve_metric(ctx.model_cfg, stats)
    -109        ctx.scoring = scoring
    +            
     24class PreparationStep(PipelineStep[SearchContext]):
    + 25    """Load data/schemas, resolve scoring, and prepare search context state."""
    + 26
    + 27    name = "preparation"
    + 28
    + 29    stats: DataStats
    + 30
    + 31    def before(self, ctx: SearchContext) -> None:
    + 32        """Emit pre-step log message.
    + 33
    + 34        Args:
    + 35            ctx: Search pipeline context.
    + 36
    + 37        Returns:
    + 38            None: Emits logging side effect only.
    + 39        """
    + 40        logger.info("Starting preparation step.")
    + 41
    + 42    def after(self, ctx: SearchContext) -> None:
    + 43        """Emit post-step log message.
    + 44
    + 45        Args:
    + 46            ctx: Search pipeline context.
    + 47
    + 48        Returns:
    + 49            None: Emits logging side effect only.
    + 50        """
    + 51        logger.info("Completed preparation step.")
    + 52
    + 53    def run(self, ctx: SearchContext) -> SearchContext:
    + 54        """Prepare training inputs/config artifacts required by search phases.
    + 55
    + 56        Args:
    + 57            ctx: Search pipeline context.
    + 58
    + 59        Returns:
    + 60            SearchContext: Updated context with prepared data/config artifacts.
    + 61
    + 62        Raises:
    + 63            DataError: Propagated from feature/target loading and validation.
    + 64            PipelineContractError: Propagated when model/pipeline contract checks
    + 65                fail.
    + 66
    + 67        Notes:
    + 68            This step centralizes all shared preparation work so broad and narrow
    + 69            phases consume the same validated inputs and derived artifacts.
    + 70
    + 71        Side Effects:
    + 72            Reads data/config files from disk and mutates multiple context fields
    + 73            required by downstream search steps.
    + 74        """
    + 75
    + 76        # Lazy import to avoid circular dependencies
    + 77        from ml.features.loading.features_and_target import load_features_and_target
    + 78
    + 79        X, y, lineage, _ = load_features_and_target(
    + 80            ctx.model_cfg,
    + 81            snapshot_selection=None,
    + 82            snapshot_binding_key=ctx.snapshot_binding_key,
    + 83            strict=ctx.strict
    + 84        )
    + 85        splits, splits_info = get_splits(
    + 86            X,
    + 87            y,
    + 88            split_cfg=ctx.model_cfg.split,
    + 89            data_type=ctx.model_cfg.data_type,
    + 90            task_cfg=ctx.model_cfg.task
    + 91        )
    + 92        input_schema, derived_schema = load_schemas(ctx.model_cfg, lineage)
    + 93
    + 94        pipeline_path = Path(f"{ctx.model_cfg.pipeline.path}").resolve()
    + 95        pipeline_cfg_raw = load_yaml(pipeline_path)
    + 96        pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw)
    + 97        pipeline_hash = compute_model_config_hash(pipeline_cfg.model_dump())
    + 98
    + 99        cat_features = get_cat_features(ctx.model_cfg, input_schema, derived_schema)
    +100
    +101        validate_model_feature_pipeline_contract(
    +102            ctx.model_cfg,
    +103            pipeline_cfg,
    +104            cat_features
    +105        )
    +106
    +107        stats = None
    +108        if ctx.model_cfg.task.type == "classification":
    +109            stats = compute_data_stats(splits.y_train)
     110
    -111        if stats is not None:
    -112            class_weights = resolve_class_weighting(ctx.model_cfg, stats, library="catboost")
    -113            ctx.class_weights = class_weights
    -114
    -115        y_train = transform_target(
    -116            splits.y_train,
    -117            transform_config=ctx.model_cfg.target.transform,
    -118            split_name="train"
    -119        )
    -120
    -121        ctx.X_train = splits.X_train
    -122        ctx.y_train = y_train
    -123        ctx.splits_info = splits_info
    -124        ctx.pipeline_cfg = pipeline_cfg
    -125        ctx.input_schema = input_schema
    -126        ctx.derived_schema = derived_schema
    -127        ctx.cat_features = cat_features
    -128        ctx.pipeline_hash = pipeline_hash
    -129        ctx.feature_lineage = lineage
    -130
    -131        return ctx
    +111        scoring = resolve_metric(ctx.model_cfg, stats)
    +112        ctx.scoring = scoring
    +113
    +114        if stats is not None:
    +115            class_weights = resolve_class_weighting(ctx.model_cfg, stats, library="catboost")
    +116            ctx.class_weights = class_weights
    +117
    +118        y_train = transform_target(
    +119            splits.y_train,
    +120            transform_config=ctx.model_cfg.target.transform,
    +121            split_name="train"
    +122        )
    +123
    +124        ctx.X_train = splits.X_train
    +125        ctx.y_train = y_train
    +126        ctx.splits_info = splits_info
    +127        ctx.pipeline_cfg = pipeline_cfg
    +128        ctx.input_schema = input_schema
    +129        ctx.derived_schema = derived_schema
    +130        ctx.cat_features = cat_features
    +131        ctx.pipeline_hash = pipeline_hash
    +132        ctx.feature_lineage = lineage
    +133
    +134        return ctx
     
    @@ -382,16 +389,16 @@

    -
    32    def before(self, ctx: SearchContext) -> None:
    -33        """Emit pre-step log message.
    -34
    -35        Args:
    -36            ctx: Search pipeline context.
    -37
    -38        Returns:
    -39            None: Emits logging side effect only.
    -40        """
    -41        logger.info("Starting preparation step.")
    +            
    31    def before(self, ctx: SearchContext) -> None:
    +32        """Emit pre-step log message.
    +33
    +34        Args:
    +35            ctx: Search pipeline context.
    +36
    +37        Returns:
    +38            None: Emits logging side effect only.
    +39        """
    +40        logger.info("Starting preparation step.")
     
    @@ -417,16 +424,16 @@

    -
    43    def after(self, ctx: SearchContext) -> None:
    -44        """Emit post-step log message.
    -45
    -46        Args:
    -47            ctx: Search pipeline context.
    -48
    -49        Returns:
    -50            None: Emits logging side effect only.
    -51        """
    -52        logger.info("Completed preparation step.")
    +            
    42    def after(self, ctx: SearchContext) -> None:
    +43        """Emit post-step log message.
    +44
    +45        Args:
    +46            ctx: Search pipeline context.
    +47
    +48        Returns:
    +49            None: Emits logging side effect only.
    +50        """
    +51        logger.info("Completed preparation step.")
     
    @@ -452,84 +459,88 @@

    -
     54    def run(self, ctx: SearchContext) -> SearchContext:
    - 55        """Prepare training inputs/config artifacts required by search phases.
    - 56
    - 57        Args:
    - 58            ctx: Search pipeline context.
    - 59
    - 60        Returns:
    - 61            SearchContext: Updated context with prepared data/config artifacts.
    - 62
    - 63        Raises:
    - 64            DataError: Propagated from feature/target loading and validation.
    - 65            PipelineContractError: Propagated when model/pipeline contract checks
    - 66                fail.
    - 67
    - 68        Notes:
    - 69            This step centralizes all shared preparation work so broad and narrow
    - 70            phases consume the same validated inputs and derived artifacts.
    - 71
    - 72        Side Effects:
    - 73            Reads data/config files from disk and mutates multiple context fields
    - 74            required by downstream search steps.
    - 75        """
    - 76        X, y, lineage, _ = load_features_and_target(
    - 77            ctx.model_cfg,
    - 78            snapshot_selection=None,
    - 79            snapshot_binding_key=ctx.snapshot_binding_key,
    - 80            strict=ctx.strict
    - 81        )
    - 82        splits, splits_info = get_splits(
    - 83            X,
    - 84            y,
    - 85            split_cfg=ctx.model_cfg.split,
    - 86            data_type=ctx.model_cfg.data_type,
    - 87            task_cfg=ctx.model_cfg.task
    - 88        )
    - 89        input_schema, derived_schema = load_schemas(ctx.model_cfg, lineage)
    - 90
    - 91        pipeline_path = Path(f"{ctx.model_cfg.pipeline.path}").resolve()
    - 92        pipeline_cfg_raw = load_yaml(pipeline_path)
    - 93        pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw)
    - 94        pipeline_hash = compute_model_config_hash(pipeline_cfg.model_dump())
    - 95
    - 96        cat_features = get_cat_features(ctx.model_cfg, input_schema, derived_schema)
    - 97
    - 98        validate_model_feature_pipeline_contract(
    - 99            ctx.model_cfg,
    -100            pipeline_cfg,
    -101            cat_features
    -102        )
    -103
    -104        stats = None
    -105        if ctx.model_cfg.task.type == "classification":
    -106            stats = compute_data_stats(splits.y_train)
    -107
    -108        scoring = resolve_metric(ctx.model_cfg, stats)
    -109        ctx.scoring = scoring
    +            
     53    def run(self, ctx: SearchContext) -> SearchContext:
    + 54        """Prepare training inputs/config artifacts required by search phases.
    + 55
    + 56        Args:
    + 57            ctx: Search pipeline context.
    + 58
    + 59        Returns:
    + 60            SearchContext: Updated context with prepared data/config artifacts.
    + 61
    + 62        Raises:
    + 63            DataError: Propagated from feature/target loading and validation.
    + 64            PipelineContractError: Propagated when model/pipeline contract checks
    + 65                fail.
    + 66
    + 67        Notes:
    + 68            This step centralizes all shared preparation work so broad and narrow
    + 69            phases consume the same validated inputs and derived artifacts.
    + 70
    + 71        Side Effects:
    + 72            Reads data/config files from disk and mutates multiple context fields
    + 73            required by downstream search steps.
    + 74        """
    + 75
    + 76        # Lazy import to avoid circular dependencies
    + 77        from ml.features.loading.features_and_target import load_features_and_target
    + 78
    + 79        X, y, lineage, _ = load_features_and_target(
    + 80            ctx.model_cfg,
    + 81            snapshot_selection=None,
    + 82            snapshot_binding_key=ctx.snapshot_binding_key,
    + 83            strict=ctx.strict
    + 84        )
    + 85        splits, splits_info = get_splits(
    + 86            X,
    + 87            y,
    + 88            split_cfg=ctx.model_cfg.split,
    + 89            data_type=ctx.model_cfg.data_type,
    + 90            task_cfg=ctx.model_cfg.task
    + 91        )
    + 92        input_schema, derived_schema = load_schemas(ctx.model_cfg, lineage)
    + 93
    + 94        pipeline_path = Path(f"{ctx.model_cfg.pipeline.path}").resolve()
    + 95        pipeline_cfg_raw = load_yaml(pipeline_path)
    + 96        pipeline_cfg = validate_pipeline_config(pipeline_cfg_raw)
    + 97        pipeline_hash = compute_model_config_hash(pipeline_cfg.model_dump())
    + 98
    + 99        cat_features = get_cat_features(ctx.model_cfg, input_schema, derived_schema)
    +100
    +101        validate_model_feature_pipeline_contract(
    +102            ctx.model_cfg,
    +103            pipeline_cfg,
    +104            cat_features
    +105        )
    +106
    +107        stats = None
    +108        if ctx.model_cfg.task.type == "classification":
    +109            stats = compute_data_stats(splits.y_train)
     110
    -111        if stats is not None:
    -112            class_weights = resolve_class_weighting(ctx.model_cfg, stats, library="catboost")
    -113            ctx.class_weights = class_weights
    -114
    -115        y_train = transform_target(
    -116            splits.y_train,
    -117            transform_config=ctx.model_cfg.target.transform,
    -118            split_name="train"
    -119        )
    -120
    -121        ctx.X_train = splits.X_train
    -122        ctx.y_train = y_train
    -123        ctx.splits_info = splits_info
    -124        ctx.pipeline_cfg = pipeline_cfg
    -125        ctx.input_schema = input_schema
    -126        ctx.derived_schema = derived_schema
    -127        ctx.cat_features = cat_features
    -128        ctx.pipeline_hash = pipeline_hash
    -129        ctx.feature_lineage = lineage
    -130
    -131        return ctx
    +111        scoring = resolve_metric(ctx.model_cfg, stats)
    +112        ctx.scoring = scoring
    +113
    +114        if stats is not None:
    +115            class_weights = resolve_class_weighting(ctx.model_cfg, stats, library="catboost")
    +116            ctx.class_weights = class_weights
    +117
    +118        y_train = transform_target(
    +119            splits.y_train,
    +120            transform_config=ctx.model_cfg.target.transform,
    +121            split_name="train"
    +122        )
    +123
    +124        ctx.X_train = splits.X_train
    +125        ctx.y_train = y_train
    +126        ctx.splits_info = splits_info
    +127        ctx.pipeline_cfg = pipeline_cfg
    +128        ctx.input_schema = input_schema
    +129        ctx.derived_schema = derived_schema
    +130        ctx.cat_features = cat_features
    +131        ctx.pipeline_hash = pipeline_hash
    +132        ctx.feature_lineage = lineage
    +133
    +134        return ctx
     
    diff --git a/docs/api/ml/ml/utils/runtime/save_runtime.html b/docs/api/ml/ml/utils/runtime/save_runtime.html index d3ad16e5..befbfe32 100644 --- a/docs/api/ml/ml/utils/runtime/save_runtime.html +++ b/docs/api/ml/ml/utils/runtime/save_runtime.html @@ -110,17 +110,19 @@

    49 os.fsync(tmp_file.fileno()) 50 51 os.replace(temp_path, snapshot_path) -52 logger.info("Runtime snapshot successfully saved to %s", snapshot_path) -53 except Exception as e: -54 if temp_path and Path(temp_path).exists(): -55 try: -56 Path(temp_path).unlink() -57 except OSError: -58 logger.warning("Failed to clean up temporary runtime snapshot file: %s", temp_path) -59 -60 msg = f"Failed to save runtime snapshot to {snapshot_path}" -61 logger.exception(msg) -62 raise PersistenceError(msg) from e +52 msg = f"Runtime snapshot successfully saved to {snapshot_path}" +53 logger.info(msg) +54 print(msg) +55 except Exception as e: +56 if temp_path and Path(temp_path).exists(): +57 try: +58 Path(temp_path).unlink() +59 except OSError: +60 logger.warning("Failed to clean up temporary runtime snapshot file: %s", temp_path) +61 +62 msg = f"Failed to save runtime snapshot to {snapshot_path}" +63 logger.exception(msg) +64 raise PersistenceError(msg) from e

    @@ -185,17 +187,19 @@

    50 os.fsync(tmp_file.fileno()) 51 52 os.replace(temp_path, snapshot_path) -53 logger.info("Runtime snapshot successfully saved to %s", snapshot_path) -54 except Exception as e: -55 if temp_path and Path(temp_path).exists(): -56 try: -57 Path(temp_path).unlink() -58 except OSError: -59 logger.warning("Failed to clean up temporary runtime snapshot file: %s", temp_path) -60 -61 msg = f"Failed to save runtime snapshot to {snapshot_path}" -62 logger.exception(msg) -63 raise PersistenceError(msg) from e +53 msg = f"Runtime snapshot successfully saved to {snapshot_path}" +54 logger.info(msg) +55 print(msg) +56 except Exception as e: +57 if temp_path and Path(temp_path).exists(): +58 try: +59 Path(temp_path).unlink() +60 except OSError: +61 logger.warning("Failed to clean up temporary runtime snapshot file: %s", temp_path) +62 +63 msg = f"Failed to save runtime snapshot to {snapshot_path}" +64 logger.exception(msg) +65 raise PersistenceError(msg) from e diff --git a/docs/api/ml/search.js b/docs/api/ml/search.js index 7368dc15..4945f683 100644 --- a/docs/api/ml/search.js +++ b/docs/api/ml/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();oCore machine-learning package for hotel management pipelines.

    \n"}, "ml.cli": {"fullname": "ml.cli", "modulename": "ml.cli", "kind": "module", "doc": "

    A package for the machine learning command-line interface.

    \n"}, "ml.cli.error_handling": {"fullname": "ml.cli.error_handling", "modulename": "ml.cli.error_handling", "kind": "module", "doc": "

    CLI exception-to-exit-code mapping utilities.

    \n\n

    This module centralizes translation of domain-specific exceptions into stable\nprocess exit codes so command-line entrypoints can fail consistently.

    \n"}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"fullname": "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP", "modulename": "ml.cli.error_handling", "qualname": "EXCEPTION_EXIT_CODE_MAP", "kind": "variable", "doc": "

    \n", "default_value": "{<class 'ml.exceptions.ConfigError'>: 2, <class 'ml.exceptions.DataError'>: 3, <class 'ml.exceptions.PipelineContractError'>: 4, <class 'ml.exceptions.SearchError'>: 5, <class 'ml.exceptions.TrainingError'>: 6, <class 'ml.exceptions.EvaluationError'>: 7, <class 'ml.exceptions.ExplainabilityError'>: 8, <class 'ml.exceptions.PersistenceError'>: 9}"}, "ml.cli.error_handling.resolve_exit_code": {"fullname": "ml.cli.error_handling.resolve_exit_code", "modulename": "ml.cli.error_handling", "qualname": "resolve_exit_code", "kind": "function", "doc": "

    Resolve a process exit code from an exception instance.

    \n\n

    Resolution order:\n 1. Exact/derived matches from EXCEPTION_EXIT_CODE_MAP.\n 2. UserError fallback to configuration error exit code.\n 3. RuntimeMLError fallback to unexpected error exit code.\n 4. Default unexpected error exit code for all other exceptions.

    \n\n

    Args:\n exc: Exception raised during CLI execution.

    \n\n

    Returns:\n int: Exit code representing the error category.

    \n", "signature": "(exc: Exception) -> int:", "funcdef": "def"}, "ml.cli.exit_codes": {"fullname": "ml.cli.exit_codes", "modulename": "ml.cli.exit_codes", "kind": "module", "doc": "

    Canonical process exit codes for project CLIs.

    \n\n

    The constants in this module define stable numeric exit codes for broad\nfailure categories so shell scripts and orchestrators can react reliably.

    \n"}, "ml.cli.exit_codes.EXIT_SUCCESS": {"fullname": "ml.cli.exit_codes.EXIT_SUCCESS", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_SUCCESS", "kind": "variable", "doc": "

    \n", "default_value": "0"}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_UNEXPECTED_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "1"}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_CONFIG_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_CONFIG_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "2"}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_DATA_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_DATA_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "3"}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_PIPELINE_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_PIPELINE_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "4"}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_SEARCH_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_SEARCH_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "5"}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_TRAINING_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_TRAINING_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "6"}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_EVALUATION_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_EVALUATION_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "7"}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_EXPLAINABILITY_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "8"}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_PERSISTENCE_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "9"}, "ml.components": {"fullname": "ml.components", "modulename": "ml.components", "kind": "module", "doc": "

    Reusable ML pipeline components and transformer building blocks.

    \n"}, "ml.components.base": {"fullname": "ml.components.base", "modulename": "ml.components.base", "kind": "module", "doc": "

    Base classes and mixins for scikit-learn-compatible pipeline components.

    \n"}, "ml.components.base.PipelineComponent": {"fullname": "ml.components.base.PipelineComponent", "modulename": "ml.components.base", "qualname": "PipelineComponent", "kind": "class", "doc": "

    Base class for all pipeline components.

    \n", "bases": "sklearn.base.BaseEstimator, sklearn.base.TransformerMixin"}, "ml.components.base.PipelineComponent.fit": {"fullname": "ml.components.base.PipelineComponent.fit", "modulename": "ml.components.base", "qualname": "PipelineComponent.fit", "kind": "function", "doc": "

    Return self to satisfy scikit-learn estimator interface.

    \n\n

    Args:\n X: Input feature matrix.\n y: Optional target vector.

    \n\n

    Returns:\n PipelineComponent: Fitted component instance.

    \n", "signature": "(self, X, y=None):", "funcdef": "def"}, "ml.components.base.SklearnFeatureMixin": {"fullname": "ml.components.base.SklearnFeatureMixin", "modulename": "ml.components.base", "qualname": "SklearnFeatureMixin", "kind": "class", "doc": "

    Mixin for transformers that must expose n_features_in_.

    \n"}, "ml.components.base.SklearnFeatureMixin.fit": {"fullname": "ml.components.base.SklearnFeatureMixin.fit", "modulename": "ml.components.base", "qualname": "SklearnFeatureMixin.fit", "kind": "function", "doc": "

    Store input feature count on fit for downstream compatibility.

    \n\n

    Args:\n X: Input feature matrix.\n y: Optional target vector.

    \n\n

    Returns:\n SklearnFeatureMixin: Fitted mixin instance.

    \n", "signature": "(self, X, y=None):", "funcdef": "def"}, "ml.components.feature_engineering": {"fullname": "ml.components.feature_engineering", "modulename": "ml.components.feature_engineering", "kind": "module", "doc": "

    Feature engineering operators and orchestration utilities.

    \n"}, "ml.components.feature_engineering.adr_per_person": {"fullname": "ml.components.feature_engineering.adr_per_person", "modulename": "ml.components.feature_engineering.adr_per_person", "kind": "module", "doc": "

    Feature operator for per-person average daily rate (ADR).

    \n"}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"fullname": "ml.components.feature_engineering.adr_per_person.AdrPerPerson", "modulename": "ml.components.feature_engineering.adr_per_person", "qualname": "AdrPerPerson", "kind": "class", "doc": "

    Create adr_per_person from ADR and party-size columns.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"fullname": "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features", "modulename": "ml.components.feature_engineering.adr_per_person", "qualname": "AdrPerPerson.output_features", "kind": "variable", "doc": "

    \n", "default_value": "['adr_per_person']"}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"fullname": "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform", "modulename": "ml.components.feature_engineering.adr_per_person", "qualname": "AdrPerPerson.transform", "kind": "function", "doc": "

    Compute ADR normalized by number of guests in each booking.

    \n\n

    Args:\n X: Input feature frame containing adr, adults, children,\n and babies columns.

    \n\n

    Returns:\n DataFrame with an added adr_per_person feature.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_engineering.arrival_date": {"fullname": "ml.components.feature_engineering.arrival_date", "modulename": "ml.components.feature_engineering.arrival_date", "kind": "module", "doc": "

    Feature operator for constructing a normalized arrival datetime column.

    \n"}, "ml.components.feature_engineering.arrival_date.month_map": {"fullname": "ml.components.feature_engineering.arrival_date.month_map", "modulename": "ml.components.feature_engineering.arrival_date", "qualname": "month_map", "kind": "variable", "doc": "

    \n", "default_value": "{'January': 1, 'February': 2, 'March': 3, 'April': 4, 'May': 5, 'June': 6, 'July': 7, 'August': 8, 'September': 9, 'October': 10, 'November': 11, 'December': 12}"}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"fullname": "ml.components.feature_engineering.arrival_date.ArrivalDate", "modulename": "ml.components.feature_engineering.arrival_date", "qualname": "ArrivalDate", "kind": "class", "doc": "

    Create arrival_date from year, month-name, and day columns.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"fullname": "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features", "modulename": "ml.components.feature_engineering.arrival_date", "qualname": "ArrivalDate.output_features", "kind": "variable", "doc": "

    \n", "default_value": "['arrival_date']"}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"fullname": "ml.components.feature_engineering.arrival_date.ArrivalDate.transform", "modulename": "ml.components.feature_engineering.arrival_date", "qualname": "ArrivalDate.transform", "kind": "function", "doc": "

    Build a datetime feature representing booking arrival date.

    \n\n

    Args:\n X: Input feature frame containing arrival year, month name, and day\n components.

    \n\n

    Returns:\n DataFrame with an added arrival_date datetime column.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_engineering.arrival_season": {"fullname": "ml.components.feature_engineering.arrival_season", "modulename": "ml.components.feature_engineering.arrival_season", "kind": "module", "doc": "

    Feature operator for deriving seasonal arrival categories.

    \n"}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"fullname": "ml.components.feature_engineering.arrival_season.ArrivalSeason", "modulename": "ml.components.feature_engineering.arrival_season", "qualname": "ArrivalSeason", "kind": "class", "doc": "

    Map arrival week numbers to coarse seasonal labels.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"fullname": "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features", "modulename": "ml.components.feature_engineering.arrival_season", "qualname": "ArrivalSeason.output_features", "kind": "variable", "doc": "

    \n", "default_value": "['arrival_season']"}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"fullname": "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform", "modulename": "ml.components.feature_engineering.arrival_season", "qualname": "ArrivalSeason.transform", "kind": "function", "doc": "

    Create arrival_season using week-number based season buckets.

    \n\n

    Args:\n X: Input dataframe containing arrival_date_week_number.

    \n\n

    Returns:\n pd.DataFrame: Dataframe including derived arrival_season.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_engineering.base": {"fullname": "ml.components.feature_engineering.base", "modulename": "ml.components.feature_engineering.base", "kind": "module", "doc": "

    Base abstractions and orchestration for feature engineering operators.

    \n"}, "ml.components.feature_engineering.base.logger": {"fullname": "ml.components.feature_engineering.base.logger", "modulename": "ml.components.feature_engineering.base", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.components.feature_engineering.base (WARNING)>"}, "ml.components.feature_engineering.base.FeatureOperator": {"fullname": "ml.components.feature_engineering.base.FeatureOperator", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureOperator", "kind": "class", "doc": "

    Produces one or more features.

    \n", "bases": "ml.components.base.PipelineComponent"}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"fullname": "ml.components.feature_engineering.base.FeatureOperator.output_features", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureOperator.output_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "[]"}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"fullname": "ml.components.feature_engineering.base.FeatureOperator.transform", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureOperator.transform", "kind": "function", "doc": "

    Transform input data by producing configured derived features.

    \n\n

    Args:\n X: Input dataframe for operator transformation.

    \n\n

    Returns:\n pd.DataFrame: Transformed dataframe including operator outputs.

    \n", "signature": "(self, X: pandas.core.frame.DataFrame) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.components.feature_engineering.base.FeatureEngineer": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer", "kind": "class", "doc": "

    Apply configured feature operators in schema-defined execution order.

    \n", "bases": "ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.__init__", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.__init__", "kind": "function", "doc": "

    Initialize feature engineer with derived schema and operator map.

    \n\n

    Args:\n derived_schema: Derived schema describing operator execution order.\n operators: Mapping of operator name to instantiated operator.

    \n\n

    Returns:\n None: Initializes feature-engineering orchestrator state.

    \n", "signature": "(derived_schema: pandas.core.frame.DataFrame, operators: dict)"}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.derived_schema", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.derived_schema", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.operators", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.operators", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.fit", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.fit", "kind": "function", "doc": "

    Return self for scikit-learn compatibility.

    \n\n

    Args:\n X: Feature input ignored in this no-op fit.\n y: Optional target input ignored in this no-op fit.

    \n\n

    Returns:\n FeatureEngineer: Fitted estimator instance.

    \n", "signature": "(self, X, y=None):", "funcdef": "def"}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.transform", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.transform", "kind": "function", "doc": "

    Run all configured operators and validate expected outputs exist.

    \n\n

    Args:\n X: Input dataframe to transform.

    \n\n

    Returns:\n pd.DataFrame: Transformed dataframe after applying all operators.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_engineering.pit_operator": {"fullname": "ml.components.feature_engineering.pit_operator", "modulename": "ml.components.feature_engineering.pit_operator", "kind": "module", "doc": "

    Point-in-time-safe feature operator for grouped cumulative aggregations.

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator", "kind": "class", "doc": "

    Generic PIT-safe operator for cumulative/aggregate features.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.__init__", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.__init__", "kind": "function", "doc": "

    Configure grouped aggregation inputs and generated feature metadata.

    \n\n

    Args:\n groupby_cols: Columns used for grouping.\n agg_col: Aggregation source column.\n agg_func: Aggregation function.\n feature_name: Name of derived feature column.

    \n\n

    Returns:\n None: Initializes operator configuration.

    \n", "signature": "(groupby_cols, agg_col, agg_func, feature_name)"}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.groupby_cols", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.agg_col", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.agg_col", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.agg_func", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.agg_func", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.feature_name", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.feature_name", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.output_features", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.output_features", "kind": "variable", "doc": "

    \n", "default_value": "[]"}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.transform", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.transform", "kind": "function", "doc": "

    Generate lagged grouped cumulative aggregate without leakage.

    \n\n

    Args:\n X: Input dataframe.

    \n\n

    Returns:\n pd.DataFrame: Dataframe with derived PIT-safe feature column.

    \n", "signature": "(self, X: pandas.core.frame.DataFrame) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.components.feature_engineering.total_stay": {"fullname": "ml.components.feature_engineering.total_stay", "modulename": "ml.components.feature_engineering.total_stay", "kind": "module", "doc": "

    Feature operator for computing total stay duration in nights.

    \n"}, "ml.components.feature_engineering.total_stay.TotalStay": {"fullname": "ml.components.feature_engineering.total_stay.TotalStay", "modulename": "ml.components.feature_engineering.total_stay", "qualname": "TotalStay", "kind": "class", "doc": "

    Create total_stay as weekend plus weekday nights.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"fullname": "ml.components.feature_engineering.total_stay.TotalStay.output_features", "modulename": "ml.components.feature_engineering.total_stay", "qualname": "TotalStay.output_features", "kind": "variable", "doc": "

    \n", "default_value": "['total_stay']"}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"fullname": "ml.components.feature_engineering.total_stay.TotalStay.transform", "modulename": "ml.components.feature_engineering.total_stay", "qualname": "TotalStay.transform", "kind": "function", "doc": "

    Compute total number of booked nights for each reservation.

    \n\n

    Args:\n X: Input feature frame containing weekday and weekend night counts.

    \n\n

    Returns:\n DataFrame with an added total_stay feature.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_selection": {"fullname": "ml.components.feature_selection", "modulename": "ml.components.feature_selection", "kind": "module", "doc": "

    Feature selection transformers for model-ready datasets.

    \n"}, "ml.components.feature_selection.selector": {"fullname": "ml.components.feature_selection.selector", "modulename": "ml.components.feature_selection.selector", "kind": "module", "doc": "

    Feature selection transformer for fixed-column model inputs.

    \n"}, "ml.components.feature_selection.selector.logger": {"fullname": "ml.components.feature_selection.selector.logger", "modulename": "ml.components.feature_selection.selector", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.components.feature_selection.selector (WARNING)>"}, "ml.components.feature_selection.selector.FeatureSelector": {"fullname": "ml.components.feature_selection.selector.FeatureSelector", "modulename": "ml.components.feature_selection.selector", "qualname": "FeatureSelector", "kind": "class", "doc": "

    Select a fixed set of columns for model training.

    \n\n

    The transformer validates presence of selected columns and returns a\nDataFrame with only the requested columns.

    \n", "bases": "ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"fullname": "ml.components.feature_selection.selector.FeatureSelector.__init__", "modulename": "ml.components.feature_selection.selector", "qualname": "FeatureSelector.__init__", "kind": "function", "doc": "

    Initialize selector with the required feature list.

    \n\n

    Args:\n selected_features: Feature names to keep.

    \n\n

    Returns:\n None: Initializes selector state.

    \n", "signature": "(selected_features)"}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"fullname": "ml.components.feature_selection.selector.FeatureSelector.selected_features", "modulename": "ml.components.feature_selection.selector", "qualname": "FeatureSelector.selected_features", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"fullname": "ml.components.feature_selection.selector.FeatureSelector.transform", "modulename": "ml.components.feature_selection.selector", "qualname": "FeatureSelector.transform", "kind": "function", "doc": "

    Return only selected features after validating their presence.

    \n\n

    Args:\n X: Input dataframe.

    \n\n

    Returns:\n pd.DataFrame: Dataframe restricted to selected features.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.imputation": {"fullname": "ml.components.imputation", "modulename": "ml.components.imputation", "kind": "module", "doc": "

    Imputation transformers for handling missing feature values.

    \n"}, "ml.components.imputation.categorical": {"fullname": "ml.components.imputation.categorical", "modulename": "ml.components.imputation.categorical", "kind": "module", "doc": "

    Categorical missing-value imputation components.

    \n"}, "ml.components.imputation.categorical.FillCategoricalMissing": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing", "kind": "class", "doc": "

    Fill missing values in categorical columns with the string \"missing\".

    \n\n

    This transformer coerces values to string and replaces NA values with\nthe literal \"missing\" to keep downstream categorical encoders robust.

    \n", "bases": "ml.components.base.PipelineComponent"}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing.__init__", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing.__init__", "kind": "function", "doc": "

    Store categorical feature names targeted for imputation.

    \n\n

    Args:\n categorical_features: Column names to impute.

    \n\n

    Returns:\n None: Initializes transformer state.

    \n", "signature": "(categorical_features)"}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing.categorical_features", "kind": "variable", "doc": "

    \n"}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing.fit", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing.fit", "kind": "function", "doc": "

    Return self because this transformer is stateless.

    \n\n

    Args:\n X: Input features (unused).\n y: Optional target (unused).

    \n\n

    Returns:\n FillCategoricalMissing: Fitted transformer instance.

    \n", "signature": "(self, X, y=None):", "funcdef": "def"}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing.transform", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing.transform", "kind": "function", "doc": "

    Replace missing categorical values with the literal \"missing\" and coerce all values to string type for consistency.

    \n\n

    Args:\n X: Input dataframe.

    \n\n

    Returns:\n pd.DataFrame: Dataframe with imputed categorical columns, all as string dtype.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.schema_validation": {"fullname": "ml.components.schema_validation", "modulename": "ml.components.schema_validation", "kind": "module", "doc": "

    Schema validation components for model input safeguards.

    \n"}, "ml.components.schema_validation.validator": {"fullname": "ml.components.schema_validation.validator", "modulename": "ml.components.schema_validation.validator", "kind": "module", "doc": "

    Schema validation transformer for model input integrity checks.

    \n"}, "ml.components.schema_validation.validator.logger": {"fullname": "ml.components.schema_validation.validator.logger", "modulename": "ml.components.schema_validation.validator", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.components.schema_validation.validator (WARNING)>"}, "ml.components.schema_validation.validator.SchemaValidator": {"fullname": "ml.components.schema_validation.validator.SchemaValidator", "modulename": "ml.components.schema_validation.validator", "qualname": "SchemaValidator", "kind": "class", "doc": "

    Validate that incoming DataFrame contains required columns.

    \n\n

    Args:\n required_features (list): List of column names expected in the input.

    \n", "bases": "ml.components.base.PipelineComponent"}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"fullname": "ml.components.schema_validation.validator.SchemaValidator.__init__", "modulename": "ml.components.schema_validation.validator", "qualname": "SchemaValidator.__init__", "kind": "function", "doc": "

    Initialize validator with required input feature names.

    \n\n

    Args:\n required_features: Required feature names.

    \n\n

    Returns:\n None: Initializes validator state.

    \n", "signature": "(required_features)"}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"fullname": "ml.components.schema_validation.validator.SchemaValidator.required_features", "modulename": "ml.components.schema_validation.validator", "qualname": "SchemaValidator.required_features", "kind": "variable", "doc": "

    \n"}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"fullname": "ml.components.schema_validation.validator.SchemaValidator.transform", "modulename": "ml.components.schema_validation.validator", "qualname": "SchemaValidator.transform", "kind": "function", "doc": "

    Validate required columns are present and return input unchanged.

    \n\n

    Args:\n X: Input dataframe.

    \n\n

    Returns:\n pd.DataFrame: Original dataframe when schema validation passes.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.config": {"fullname": "ml.config", "modulename": "ml.config", "kind": "module", "doc": "

    A package for storing machine learning configuration.

    \n"}, "ml.config.best_params": {"fullname": "ml.config.best_params", "modulename": "ml.config.best_params", "kind": "module", "doc": "

    Utilities for applying persisted best-search parameters to configs.

    \n"}, "ml.config.best_params.logger": {"fullname": "ml.config.best_params.logger", "modulename": "ml.config.best_params", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.best_params (WARNING)>"}, "ml.config.best_params.MergeTarget": {"fullname": "ml.config.best_params.MergeTarget", "modulename": "ml.config.best_params", "qualname": "MergeTarget", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['training', 'model', 'ensemble']"}, "ml.config.best_params.MODEL_KEYS": {"fullname": "ml.config.best_params.MODEL_KEYS", "modulename": "ml.config.best_params", "qualname": "MODEL_KEYS", "kind": "variable", "doc": "

    \n", "default_value": "{'colsample_bylevel', 'depth', 'l2_leaf_reg', 'random_strength', 'learning_rate', 'min_data_in_leaf', 'border_count'}"}, "ml.config.best_params.ENSEMBLE_KEYS": {"fullname": "ml.config.best_params.ENSEMBLE_KEYS", "modulename": "ml.config.best_params", "qualname": "ENSEMBLE_KEYS", "kind": "variable", "doc": "

    \n", "default_value": "{'bagging_temperature'}"}, "ml.config.best_params.unflatten_best_params": {"fullname": "ml.config.best_params.unflatten_best_params", "modulename": "ml.config.best_params", "qualname": "unflatten_best_params", "kind": "function", "doc": "

    Convert flattened search parameters into structured model/ensemble blocks.

    \n\n

    Args:\n flat: Flat parameter mapping, typically using section__name keys.

    \n\n

    Returns:\n Structured parameter mapping with model and ensemble groups when\n matching keys are present.

    \n", "signature": "(flat: dict[str, typing.Any]) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.best_params.apply_best_params": {"fullname": "ml.config.best_params.apply_best_params", "modulename": "ml.config.best_params", "qualname": "apply_best_params", "kind": "function", "doc": "

    Merge best parameters from search metadata into a config dictionary.

    \n\n

    Args:\n cfg: Base configuration dictionary.\n best_params_path: Path to search metadata containing best parameters.\n merge_target: Config section where structured params are merged.\n strict: Whether missing/invalid data should raise instead of warn.

    \n\n

    Returns:\n dict[str, Any]: Updated configuration dictionary.

    \n", "signature": "(\tcfg: dict[str, typing.Any],\tbest_params_path: pathlib.Path,\t*,\tmerge_target: Literal['training', 'model', 'ensemble'] = 'training',\tstrict: bool = True) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.compute_data_config_hash": {"fullname": "ml.config.compute_data_config_hash", "modulename": "ml.config.compute_data_config_hash", "kind": "module", "doc": "

    Hash utilities for non-model Pydantic configuration objects.

    \n"}, "ml.config.compute_data_config_hash.logger": {"fullname": "ml.config.compute_data_config_hash.logger", "modulename": "ml.config.compute_data_config_hash", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.compute_data_config_hash (WARNING)>"}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"fullname": "ml.config.compute_data_config_hash.compute_data_config_hash", "modulename": "ml.config.compute_data_config_hash", "qualname": "compute_data_config_hash", "kind": "function", "doc": "

    Compute a deterministic MD5 hash for a typed configuration object.

    \n\n

    Args:\n config: Interim, processed, or tabular feature-freezing config object.

    \n\n

    Returns:\n str: Hex digest of the serialized configuration content.

    \n", "signature": "(\tconfig: ml.data.config.schemas.interim.InterimConfig | ml.data.config.schemas.processed.ProcessedConfig | ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig) -> str:", "funcdef": "def"}, "ml.config.hashing": {"fullname": "ml.config.hashing", "modulename": "ml.config.hashing", "kind": "module", "doc": "

    Hashing helpers for validated model configuration objects.

    \n"}, "ml.config.hashing.logger": {"fullname": "ml.config.hashing.logger", "modulename": "ml.config.hashing", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.hashing (WARNING)>"}, "ml.config.hashing.compute_model_config_hash": {"fullname": "ml.config.hashing.compute_model_config_hash", "modulename": "ml.config.hashing", "qualname": "compute_model_config_hash", "kind": "function", "doc": "

    Compute SHA-256 hash for a config dictionary excluding _meta.

    \n\n

    Args:\n cfg: Configuration dictionary payload.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(cfg: dict[str, typing.Any]) -> str:", "funcdef": "def"}, "ml.config.hashing.add_config_hash": {"fullname": "ml.config.hashing.add_config_hash", "modulename": "ml.config.hashing", "qualname": "add_config_hash", "kind": "function", "doc": "

    Compute and attach config hash to cfg.meta.config_hash.

    \n\n

    Args:\n cfg: Search or training configuration object.

    \n\n

    Returns:\n SearchModelConfig | TrainModelConfig: Updated config object.

    \n", "signature": "(\tcfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig) -> ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig:", "funcdef": "def"}, "ml.config.loader": {"fullname": "ml.config.loader", "modulename": "ml.config.loader", "kind": "module", "doc": "

    Configuration loading, composition, and validation entrypoints.

    \n"}, "ml.config.loader.logger": {"fullname": "ml.config.loader.logger", "modulename": "ml.config.loader", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.loader (WARNING)>"}, "ml.config.loader.load_config": {"fullname": "ml.config.loader.load_config", "modulename": "ml.config.loader", "qualname": "load_config", "kind": "function", "doc": "

    Load and compose raw config with extends/env overlays and metadata.

    \n\n

    Args:\n path: Primary config file path.\n env: Environment overlay key.\n cfg_type: Configuration type (search or train).\n search_dir: Search output directory used by train configs.\n merge_target: Section where best params are merged for train configs.\n skip_missing_extends: Whether to ignore missing extended config files.\n skip_missing_env: Whether to ignore missing env overlay files.

    \n\n

    Returns:\n dict[str, Any]: Merged raw configuration dictionary.

    \n", "signature": "(\tpath: pathlib.Path,\t*,\tenv: str = 'default',\tcfg_type: Literal['search', 'train'],\tsearch_dir: pathlib.Path | None = None,\tmerge_target: Literal['training', 'model', 'ensemble'] = 'training',\tskip_missing_extends: bool = False,\tskip_missing_env: bool = True) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.loader.load_and_validate_config": {"fullname": "ml.config.loader.load_and_validate_config", "modulename": "ml.config.loader", "qualname": "load_and_validate_config", "kind": "function", "doc": "

    Load and validate model config into typed schema objects.

    \n\n

    Args:\n path: Config file path.\n search_dir: Optional search run directory for training configs.\n cfg_type: Config type discriminator.\n env: Environment overlay key.

    \n\n

    Returns:\n SearchModelConfig | TrainModelConfig: Validated typed configuration.

    \n", "signature": "(\tpath: pathlib.Path,\tsearch_dir: pathlib.Path | None = None,\t*,\tcfg_type: Literal['search', 'train'],\tenv: str = 'default') -> ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig:", "funcdef": "def"}, "ml.config.merge": {"fullname": "ml.config.merge", "modulename": "ml.config.merge", "kind": "module", "doc": "

    Config composition helpers for recursive merges and overlays.

    \n"}, "ml.config.merge.logger": {"fullname": "ml.config.merge.logger", "modulename": "ml.config.merge", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.merge (WARNING)>"}, "ml.config.merge.deep_merge": {"fullname": "ml.config.merge.deep_merge", "modulename": "ml.config.merge", "qualname": "deep_merge", "kind": "function", "doc": "

    Recursively merge config dictionaries where later entries take precedence.

    \n\n

    Args:\n dicts: Ordered dictionaries to merge.

    \n\n

    Returns:\n dict[str, Any]: Deep-merged configuration dictionary.

    \n", "signature": "(dicts: list[dict[str, typing.Any]]) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.merge.resolve_extends": {"fullname": "ml.config.merge.resolve_extends", "modulename": "ml.config.merge", "qualname": "resolve_extends", "kind": "function", "doc": "

    Resolve recursive extends references and deep-merge parent configs.

    \n\n

    Args:\n cfg: Raw configuration dictionary.\n base_path: Directory used to resolve relative parent paths.\n skip_missing: Whether missing parent configs should be ignored.

    \n\n

    Returns:\n dict[str, Any]: Configuration with all parent configs merged.

    \n", "signature": "(\tcfg: dict[str, typing.Any],\tbase_path: pathlib.Path,\t*,\tskip_missing: bool = False) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.merge.apply_env_overlay": {"fullname": "ml.config.merge.apply_env_overlay", "modulename": "ml.config.merge", "qualname": "apply_env_overlay", "kind": "function", "doc": "

    Apply environment overlay config on top of the base configuration.

    \n\n

    Args:\n cfg: Base configuration dictionary.\n env: Environment overlay key.\n env_path: Environment config file path.\n skip_missing: Whether missing overlays should be ignored.

    \n\n

    Returns:\n dict[str, Any]: Configuration after applying env overlay.

    \n", "signature": "(\tcfg: dict[str, typing.Any],\tenv: str | None,\tenv_path: pathlib.Path,\tskip_missing: bool = True) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.schemas": {"fullname": "ml.config.schemas", "modulename": "ml.config.schemas", "kind": "module", "doc": "

    A package for storing machine learning configuration schemas.

    \n"}, "ml.config.schemas.base_model_params": {"fullname": "ml.config.schemas.base_model_params", "modulename": "ml.config.schemas.base_model_params", "kind": "module", "doc": "

    Shared base parameter schemas for train/search model configurations.

    \n"}, "ml.config.schemas.base_model_params.BaseModelParams": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams", "kind": "class", "doc": "

    Core model hyperparameters shared across workflows.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.depth", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.depth", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.learning_rate", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.learning_rate", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.l2_leaf_reg", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.random_strength", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.random_strength", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.min_data_in_leaf", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.border_count", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.border_count", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"fullname": "ml.config.schemas.base_model_params.BaseEnsembleParams", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseEnsembleParams", "kind": "class", "doc": "

    Ensemble-related hyperparameters shared across workflows.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"fullname": "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseEnsembleParams.bagging_temperature", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"fullname": "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseEnsembleParams.colsample_bylevel", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.hardware_cfg": {"fullname": "ml.config.schemas.hardware_cfg", "modulename": "ml.config.schemas.hardware_cfg", "kind": "module", "doc": "

    Hardware execution configuration schemas for model workflows.

    \n"}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"fullname": "ml.config.schemas.hardware_cfg.HardwareTaskType", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareTaskType", "kind": "class", "doc": "

    Supported compute backends for model execution.

    \n", "bases": "enum.StrEnum"}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"fullname": "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareTaskType.CPU", "kind": "variable", "doc": "

    \n", "default_value": "<HardwareTaskType.CPU: 'CPU'>"}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"fullname": "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareTaskType.GPU", "kind": "variable", "doc": "

    \n", "default_value": "<HardwareTaskType.GPU: 'GPU'>"}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig", "kind": "class", "doc": "

    Runtime hardware settings for search/training operations.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.task_type", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.task_type", "kind": "variable", "doc": "

    Compute backend to use for model execution.

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareTaskType", "default_value": "PydanticUndefined"}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.devices", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.devices", "kind": "variable", "doc": "

    List of device IDs to utilize (e.g., GPU indices).

    \n", "annotation": ": list[int]", "default_value": "PydanticUndefined"}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.memory_limit_gb", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.allow_growth", "kind": "variable", "doc": "

    \n", "annotation": ": bool | None", "default_value": "False"}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.normalize_task_type", "kind": "function", "doc": "

    Normalize task type values to uppercase prior to enum parsing.

    \n\n

    Args:\n cls: Pydantic model class invoking the validator.\n v: Raw task_type value supplied by configuration input.

    \n\n

    Returns:\n Uppercased string when v is text, otherwise the original value.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.config.schemas.model_cfg": {"fullname": "ml.config.schemas.model_cfg", "modulename": "ml.config.schemas.model_cfg", "kind": "module", "doc": "

    Top-level validated schemas for search and train model configurations.

    \n"}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"fullname": "ml.config.schemas.model_cfg.SearchLineageConfig", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchLineageConfig", "kind": "class", "doc": "

    Lineage metadata captured when creating search configurations.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"fullname": "ml.config.schemas.model_cfg.SearchLineageConfig.created_by", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchLineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"fullname": "ml.config.schemas.model_cfg.SearchLineageConfig.created_at", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchLineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"fullname": "ml.config.schemas.model_cfg.TrainingLineageConfig", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainingLineageConfig", "kind": "class", "doc": "

    Lineage metadata captured when creating training configurations.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"fullname": "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainingLineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"fullname": "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainingLineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig", "kind": "class", "doc": "

    Validated model specification used by hyperparameter search stage.

    \n", "bases": "ml.config.schemas.model_specs.ModelSpecs"}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.extends", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.extends", "kind": "variable", "doc": "

    List of config names to extend from, in order. Configs will be merged in the order they are listed, with later configs taking precedence in case of conflicts.

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.search", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.search", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.SearchConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.seed", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.seed", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.cv", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.cv", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.verbose", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.verbose", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "100"}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.search_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_cfg.SearchLineageConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.training", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.training", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, typing.Any] | None", "default_value": "None"}, "ml.config.schemas.model_cfg.TrainModelConfig": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig", "kind": "class", "doc": "

    Validated model specification used by model training stage.

    \n", "bases": "ml.config.schemas.model_specs.ModelSpecs"}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.extends", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.extends", "kind": "variable", "doc": "

    List of config names to extend from, in order. Configs will be merged in the order they are listed, with later configs taking precedence in case of conflicts.

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.training", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.training", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.train_cfg.TrainConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.seed", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.seed", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.cv", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.cv", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.verbose", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.verbose", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "100"}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.training_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_cfg.TrainingLineageConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.search", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.search", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, typing.Any] | None", "default_value": "None"}, "ml.config.schemas.model_specs": {"fullname": "ml.config.schemas.model_specs", "modulename": "ml.config.schemas.model_specs", "kind": "module", "doc": "

    Canonical Pydantic schemas for model specification configuration.

    \n\n

    This module defines shared model-spec structures and validation rules used by\nboth search and training configuration entrypoints.

    \n"}, "ml.config.schemas.model_specs.logger": {"fullname": "ml.config.schemas.model_specs.logger", "modulename": "ml.config.schemas.model_specs", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.schemas.model_specs (WARNING)>"}, "ml.config.schemas.model_specs.SegmentConfig": {"fullname": "ml.config.schemas.model_specs.SegmentConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentConfig", "kind": "class", "doc": "

    Model segment identifier and optional description.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SegmentConfig.name": {"fullname": "ml.config.schemas.model_specs.SegmentConfig.name", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentConfig.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SegmentConfig.description": {"fullname": "ml.config.schemas.model_specs.SegmentConfig.description", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentConfig.description", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.TaskType": {"fullname": "ml.config.schemas.model_specs.TaskType", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType", "kind": "class", "doc": "

    Supported high-level ML task categories.

    \n", "bases": "enum.StrEnum"}, "ml.config.schemas.model_specs.TaskType.classification": {"fullname": "ml.config.schemas.model_specs.TaskType.classification", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType.classification", "kind": "variable", "doc": "

    \n", "default_value": "<TaskType.classification: 'classification'>"}, "ml.config.schemas.model_specs.TaskType.regression": {"fullname": "ml.config.schemas.model_specs.TaskType.regression", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType.regression", "kind": "variable", "doc": "

    \n", "default_value": "<TaskType.regression: 'regression'>"}, "ml.config.schemas.model_specs.TaskType.ranking": {"fullname": "ml.config.schemas.model_specs.TaskType.ranking", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType.ranking", "kind": "variable", "doc": "

    \n", "default_value": "<TaskType.ranking: 'ranking'>"}, "ml.config.schemas.model_specs.TaskType.time_series": {"fullname": "ml.config.schemas.model_specs.TaskType.time_series", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType.time_series", "kind": "variable", "doc": "

    \n", "default_value": "<TaskType.time_series: 'time_series'>"}, "ml.config.schemas.model_specs.TaskConfig": {"fullname": "ml.config.schemas.model_specs.TaskConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskConfig", "kind": "class", "doc": "

    Task type metadata for model execution and validation logic.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.TaskConfig.type": {"fullname": "ml.config.schemas.model_specs.TaskConfig.type", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskConfig.type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TaskType", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"fullname": "ml.config.schemas.model_specs.TaskConfig.subtype", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskConfig.subtype", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"fullname": "ml.config.schemas.model_specs.TaskConfig.normalize_task_type", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskConfig.normalize_task_type", "kind": "function", "doc": "

    Normalize task type strings to lowercase before enum coercion.

    \n\n

    Args:\n v: Raw task type value.

    \n\n

    Returns:\n Any: Normalized task type value.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.config.schemas.model_specs.ClassesConfig": {"fullname": "ml.config.schemas.model_specs.ClassesConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassesConfig", "kind": "class", "doc": "

    Class metadata for classification targets.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ClassesConfig.count": {"fullname": "ml.config.schemas.model_specs.ClassesConfig.count", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassesConfig.count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"fullname": "ml.config.schemas.model_specs.ClassesConfig.positive_class", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassesConfig.positive_class", "kind": "variable", "doc": "

    \n", "annotation": ": int | str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"fullname": "ml.config.schemas.model_specs.ClassesConfig.min_class_count", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassesConfig.min_class_count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"fullname": "ml.config.schemas.model_specs.TargetConstraintsConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConstraintsConfig", "kind": "class", "doc": "

    Numeric constraints applicable to target values.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"fullname": "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConstraintsConfig.min_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"fullname": "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConstraintsConfig.max_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.TargetTransformConfig": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig", "kind": "class", "doc": "

    Optional target transformation settings.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig.type", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig.type", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['log1p', 'sqrt', 'boxcox']]", "default_value": "None"}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig.lambda_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig.validate_lambda_value_based_on_type", "kind": "function", "doc": "

    Validate transformation-specific lambda usage constraints.

    \n\n

    Args:\n v: Lambda value candidate.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated lambda value.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.TargetConfig": {"fullname": "ml.config.schemas.model_specs.TargetConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig", "kind": "class", "doc": "

    Target definition, datatype constraints, and transform options.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.TargetConfig.name": {"fullname": "ml.config.schemas.model_specs.TargetConfig.name", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.version": {"fullname": "ml.config.schemas.model_specs.TargetConfig.version", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"fullname": "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.allowed_dtypes", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.classes": {"fullname": "ml.config.schemas.model_specs.TargetConfig.classes", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.classes", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ClassesConfig | None", "default_value": "None"}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"fullname": "ml.config.schemas.model_specs.TargetConfig.constraints", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.constraints", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TargetConstraintsConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.transform": {"fullname": "ml.config.schemas.model_specs.TargetConfig.transform", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.transform", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TargetTransformConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"fullname": "ml.config.schemas.model_specs.TargetConfig.validate_version_format", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.validate_version_format", "kind": "function", "doc": "

    Ensure target version follows v{number} convention.

    \n\n

    Args:\n v: Raw target version value.

    \n\n

    Returns:\n str: Validated target version string.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.config.schemas.model_specs.SegmentationFilter": {"fullname": "ml.config.schemas.model_specs.SegmentationFilter", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationFilter", "kind": "class", "doc": "

    Single logical filter rule for dataset segmentation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"fullname": "ml.config.schemas.model_specs.SegmentationFilter.column", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationFilter.column", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"fullname": "ml.config.schemas.model_specs.SegmentationFilter.op", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationFilter.op", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['eq', 'neq', 'in', 'not_in', 'gt', 'gte', 'lt', 'lte']", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"fullname": "ml.config.schemas.model_specs.SegmentationFilter.value", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationFilter.value", "kind": "variable", "doc": "

    \n", "annotation": ": int | str | list[int] | list[str]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SegmentationConfig": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig", "kind": "class", "doc": "

    Segmentation enablement and filter configuration.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.include_in_model", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.include_in_model", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.filters", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.filters", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.config.schemas.model_specs.SegmentationFilter]", "default_value": "[]"}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.validate_filters_based_on_enabled", "kind": "function", "doc": "

    Validate filter presence based on segmentation enablement.

    \n\n

    Args:\n v: Segmentation filters list.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n list: Validated filters list.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.validate_include_in_model_based_on_enabled", "kind": "function", "doc": "

    Validate model-include flag consistency with segmentation state.

    \n\n

    Args:\n v: Include-in-model flag value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n bool: Validated include-in-model flag.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.FeatureSetConfig": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig", "kind": "class", "doc": "

    Feature-set artifact references in the feature store.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig.name", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig.version", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig.data_format", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig.data_format", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig.file_name", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig.file_name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SplitConfig": {"fullname": "ml.config.schemas.model_specs.SplitConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig", "kind": "class", "doc": "

    Train/validation/test split strategy settings.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"fullname": "ml.config.schemas.model_specs.SplitConfig.strategy", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.strategy", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['random']", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"fullname": "ml.config.schemas.model_specs.SplitConfig.stratify_by", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.stratify_by", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"fullname": "ml.config.schemas.model_specs.SplitConfig.test_size", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.test_size", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"fullname": "ml.config.schemas.model_specs.SplitConfig.val_size", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.val_size", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"fullname": "ml.config.schemas.model_specs.SplitConfig.random_state", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.random_state", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.AlgorithmConfig": {"fullname": "ml.config.schemas.model_specs.AlgorithmConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "AlgorithmConfig", "kind": "class", "doc": "

    Supported algorithm families.

    \n", "bases": "enum.StrEnum"}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"fullname": "ml.config.schemas.model_specs.AlgorithmConfig.catboost", "modulename": "ml.config.schemas.model_specs", "qualname": "AlgorithmConfig.catboost", "kind": "variable", "doc": "

    \n", "default_value": "<AlgorithmConfig.catboost: 'catboost'>"}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"fullname": "ml.config.schemas.model_specs.FeatureStoreConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureStoreConfig", "kind": "class", "doc": "

    Feature store location and required feature set references.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"fullname": "ml.config.schemas.model_specs.FeatureStoreConfig.path", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureStoreConfig.path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"fullname": "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureStoreConfig.feature_sets", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.config.schemas.model_specs.FeatureSetConfig]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.PipelineConfig": {"fullname": "ml.config.schemas.model_specs.PipelineConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "PipelineConfig", "kind": "class", "doc": "

    Pipeline artifact metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.PipelineConfig.version": {"fullname": "ml.config.schemas.model_specs.PipelineConfig.version", "modulename": "ml.config.schemas.model_specs", "qualname": "PipelineConfig.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.PipelineConfig.path": {"fullname": "ml.config.schemas.model_specs.PipelineConfig.path", "modulename": "ml.config.schemas.model_specs", "qualname": "PipelineConfig.path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ScoringConfig": {"fullname": "ml.config.schemas.model_specs.ScoringConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig", "kind": "class", "doc": "

    Metric-scoring policy and optional thresholds.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.policy", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.policy", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['fixed', 'adaptive_binary', 'regression_default']", "default_value": "'fixed'"}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.fixed_metric", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.fixed_metric", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']]", "default_value": "None"}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.pr_auc_threshold", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.validate_fixed_metric_if_fixed_policy", "kind": "function", "doc": "

    Ensure fixed scoring policy specifies a fixed metric.

    \n\n

    Args:\n v: Fixed metric value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated fixed metric.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy", "kind": "function", "doc": "

    Ensure adaptive-binary policy specifies PR-AUC threshold.

    \n\n

    Args:\n v: PR-AUC threshold value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated PR-AUC threshold.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"fullname": "ml.config.schemas.model_specs.ClassImbalancePolicy", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassImbalancePolicy", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['off', 'if_imbalanced', 'always']"}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"fullname": "ml.config.schemas.model_specs.ClassWeightingConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassWeightingConfig", "kind": "class", "doc": "

    Class-weighting policy for classification imbalance handling.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"fullname": "ml.config.schemas.model_specs.ClassWeightingConfig.policy", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassWeightingConfig.policy", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['off', 'if_imbalanced', 'always']", "default_value": "'off'"}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"fullname": "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassWeightingConfig.imbalance_threshold", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"fullname": "ml.config.schemas.model_specs.ClassWeightingConfig.strategy", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassWeightingConfig.strategy", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['ratio', 'balanced']]", "default_value": "None"}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"fullname": "ml.config.schemas.model_specs.FeatureImportanceMethodConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureImportanceMethodConfig", "kind": "class", "doc": "

    Configuration for feature-importance explainability method.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"fullname": "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureImportanceMethodConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"fullname": "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureImportanceMethodConfig.type", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['PredictionValuesChange', 'LossFunctionChange', 'FeatureImportance', 'TotalGain']]", "default_value": "None"}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"fullname": "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureImportanceMethodConfig.validate_type_if_enabled", "kind": "function", "doc": "

    Require feature-importance method type when enabled.

    \n\n

    Args:\n v: Feature-importance type value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated feature-importance type.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"fullname": "ml.config.schemas.model_specs.SHAPMethodConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "SHAPMethodConfig", "kind": "class", "doc": "

    Configuration for SHAP-based explainability method.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"fullname": "ml.config.schemas.model_specs.SHAPMethodConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SHAPMethodConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"fullname": "ml.config.schemas.model_specs.SHAPMethodConfig.approximate", "modulename": "ml.config.schemas.model_specs", "qualname": "SHAPMethodConfig.approximate", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['tree', 'linear', 'kernel']]", "default_value": "None"}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"fullname": "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SHAPMethodConfig.validate_approximate_if_enabled", "kind": "function", "doc": "

    Require SHAP approximation mode when SHAP is enabled.

    \n\n

    Args:\n v: SHAP approximation mode value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated SHAP approximation mode.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"fullname": "ml.config.schemas.model_specs.ExplainabilityMethodsConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityMethodsConfig", "kind": "class", "doc": "

    Container for explainability method-level settings.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"fullname": "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityMethodsConfig.feature_importances", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.FeatureImportanceMethodConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"fullname": "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityMethodsConfig.shap", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.SHAPMethodConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"fullname": "ml.config.schemas.model_specs.ExplainabilityConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityConfig", "kind": "class", "doc": "

    Top-level explainability settings used during post-training analysis.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"fullname": "ml.config.schemas.model_specs.ExplainabilityConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "True"}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"fullname": "ml.config.schemas.model_specs.ExplainabilityConfig.top_k", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityConfig.top_k", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "20"}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"fullname": "ml.config.schemas.model_specs.ExplainabilityConfig.methods", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityConfig.methods", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ExplainabilityMethodsConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.DATA_TYPE": {"fullname": "ml.config.schemas.model_specs.DATA_TYPE", "modulename": "ml.config.schemas.model_specs", "qualname": "DATA_TYPE", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['tabular', 'time-series']"}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"fullname": "ml.config.schemas.model_specs.ModelSpecsLineageConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecsLineageConfig", "kind": "class", "doc": "

    Lineage metadata for model specification creation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"fullname": "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecsLineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"fullname": "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecsLineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.MetaConfig": {"fullname": "ml.config.schemas.model_specs.MetaConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig", "kind": "class", "doc": "

    Runtime metadata attached during config loading/validation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.MetaConfig.sources": {"fullname": "ml.config.schemas.model_specs.MetaConfig.sources", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.sources", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, typing.Any] | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.env": {"fullname": "ml.config.schemas.model_specs.MetaConfig.env", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.env", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"fullname": "ml.config.schemas.model_specs.MetaConfig.best_params_path", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.best_params_path", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"fullname": "ml.config.schemas.model_specs.MetaConfig.validation_status", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.validation_status", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"fullname": "ml.config.schemas.model_specs.MetaConfig.validation_errors", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.validation_errors", "kind": "variable", "doc": "

    \n", "annotation": ": list[typing.Any] | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"fullname": "ml.config.schemas.model_specs.MetaConfig.config_hash", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.ModelSpecs": {"fullname": "ml.config.schemas.model_specs.ModelSpecs", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs", "kind": "class", "doc": "

    Canonical model specification shared by search and training schemas.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.problem", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.problem", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.segment", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.segment", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.SegmentConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.version": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.version", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.task": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.task", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.task", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TaskConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.target": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.target", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.target", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TargetConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.segmentation", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.segmentation", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.SegmentationConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.min_rows", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.min_rows", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "10000"}, "ml.config.schemas.model_specs.ModelSpecs.split": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.split", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.split", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.SplitConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.algorithm", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.algorithm", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.AlgorithmConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.model_class", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.model_class", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.pipeline", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.pipeline", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.PipelineConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.scoring", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.scoring", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ScoringConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.class_weighting", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.class_weighting", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ClassWeightingConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.feature_store", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.feature_store", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.FeatureStoreConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.explainability", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.explainability", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ExplainabilityConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.data_type", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.data_type", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['tabular', 'time-series']", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.model_specs_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ModelSpecsLineageConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.meta", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.meta", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.MetaConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.validate_task_target_consistency", "kind": "function", "doc": "

    Enforce consistency between task type and target class metadata.

    \n\n

    Returns:\n ModelSpecs: Validated model specs instance.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.validate_target_transform_consistency", "kind": "function", "doc": "

    Validate target transformation compatibility with task type.

    \n\n

    Args:\n self: Candidate model specs instance.

    \n\n

    Returns:\n ModelSpecs: Validated model specs instance.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.validate_class_weighting_consistency", "kind": "function", "doc": "

    Ensure class weighting is only enabled for classification tasks.

    \n\n

    Args:\n self: Candidate model specs instance.

    \n\n

    Returns:\n ModelSpecs: Validated model specs instance.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.config.schemas.search_cfg": {"fullname": "ml.config.schemas.search_cfg", "modulename": "ml.config.schemas.search_cfg", "kind": "module", "doc": "

    Validation schemas for broad/narrow hyperparameter search settings.

    \n"}, "ml.config.schemas.search_cfg.BroadModelParams": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams", "kind": "class", "doc": "

    Broad-search parameter candidates for model-level hyperparameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.depth", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.depth", "kind": "variable", "doc": "

    \n", "annotation": ": list[int] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.learning_rate", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.learning_rate", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.l2_leaf_reg", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.colsample_bylevel", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.random_strength", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.random_strength", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.min_data_in_leaf", "kind": "variable", "doc": "

    \n", "annotation": ": list[int] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.border_count", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.border_count", "kind": "variable", "doc": "

    \n", "annotation": ": list[int] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"fullname": "ml.config.schemas.search_cfg.BroadEnsembleParams", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadEnsembleParams", "kind": "class", "doc": "

    Broad-search parameter candidates for ensemble-level hyperparameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"fullname": "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadEnsembleParams.bagging_temperature", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"fullname": "ml.config.schemas.search_cfg.BroadParamDistributions", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadParamDistributions", "kind": "class", "doc": "

    Container for broad-search parameter distributions.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"fullname": "ml.config.schemas.search_cfg.BroadParamDistributions.model", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadParamDistributions.model", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.BroadModelParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"fullname": "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadParamDistributions.ensemble", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.BroadEnsembleParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"fullname": "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadParamDistributions.to_flat_dict", "kind": "function", "doc": "

    Flatten structured params for grid/random search.\nAll keys use 'Model__' prefix for CatBoost compatibility.

    \n\n

    Args:\n prefix_map: Optional mapping from top-level blocks (for example,\n model and ensemble) to flattened key prefixes.

    \n\n

    Returns:\n Flattened parameter dictionary suitable for search estimators.

    \n", "signature": "(self, prefix_map: dict | None = None) -> dict:", "funcdef": "def"}, "ml.config.schemas.search_cfg.NarrowIntParam": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam", "kind": "class", "doc": "

    Narrow-search configuration for integer-valued parameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam.include", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam.include", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam.offsets", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam.offsets", "kind": "variable", "doc": "

    \n", "annotation": ": list[int] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam.low", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam.low", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam.high", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam.high", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam", "kind": "class", "doc": "

    Narrow-search configuration for float-valued parameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.include", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.include", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.factors", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.factors", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.low", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.low", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.high", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.high", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.decimals", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.decimals", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams", "kind": "class", "doc": "

    Narrow-search parameter rules for model-level hyperparameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.depth", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.depth", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowIntParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.learning_rate", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.l2_leaf_reg", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.colsample_bylevel", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.random_strength", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.random_strength", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.min_data_in_leaf", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowIntParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.border_count", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.border_count", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowIntParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"fullname": "ml.config.schemas.search_cfg.NarrowEnsembleParams", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowEnsembleParams", "kind": "class", "doc": "

    Narrow-search parameter rules for ensemble hyperparameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"fullname": "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowEnsembleParams.bagging_temperature", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"fullname": "ml.config.schemas.search_cfg.NarrowParamConfig", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowParamConfig", "kind": "class", "doc": "

    Container for narrow-search parameter configuration blocks.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"fullname": "ml.config.schemas.search_cfg.NarrowParamConfig.model", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowParamConfig.model", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowModelParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"fullname": "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowParamConfig.ensemble", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowEnsembleParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig", "kind": "class", "doc": "

    Configuration for refinement search around broad-search results.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig.iterations", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig.n_iter", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig.param_configurations", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowParamConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"fullname": "ml.config.schemas.search_cfg.BroadSearchConfig", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadSearchConfig", "kind": "class", "doc": "

    Configuration for broad hyperparameter search stage.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"fullname": "ml.config.schemas.search_cfg.BroadSearchConfig.iterations", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadSearchConfig.iterations", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"fullname": "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadSearchConfig.n_iter", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"fullname": "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadSearchConfig.param_distributions", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.BroadParamDistributions", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig": {"fullname": "ml.config.schemas.search_cfg.SearchConfig", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig", "kind": "class", "doc": "

    Full search-stage configuration including hardware and error policy.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.random_state", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.random_state", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.broad", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.broad", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.BroadSearchConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.narrow", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.narrow", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowSearchConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.hardware", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.hardware", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.error_score", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.error_score", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.train_cfg": {"fullname": "ml.config.schemas.train_cfg", "modulename": "ml.config.schemas.train_cfg", "kind": "module", "doc": "

    Validation schema for model training-stage configuration.

    \n"}, "ml.config.schemas.train_cfg.TrainConfig": {"fullname": "ml.config.schemas.train_cfg.TrainConfig", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig", "kind": "class", "doc": "

    Training hyperparameters, hardware settings, and runtime controls.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.iterations", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.iterations", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.train_cfg.TrainConfig.model": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.model", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.model", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.base_model_params.BaseModelParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.ensemble", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.ensemble", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.base_model_params.BaseEnsembleParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.hardware", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.hardware", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.early_stopping_rounds", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "0"}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.snapshot_interval_seconds", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "600"}, "ml.config.validation": {"fullname": "ml.config.validation", "modulename": "ml.config.validation", "kind": "module", "doc": "

    Validation entrypoint for model configuration dictionaries.

    \n"}, "ml.config.validation.logger": {"fullname": "ml.config.validation.logger", "modulename": "ml.config.validation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.validation (WARNING)>"}, "ml.config.validation.validate_model_config": {"fullname": "ml.config.validation.validate_model_config", "modulename": "ml.config.validation", "qualname": "validate_model_config", "kind": "function", "doc": "

    Validate raw model config payload with the appropriate schema.

    \n\n

    Args:\n cfg_raw: Raw config loaded from YAML/JSON.\n cfg_type: Type of config to validate.

    \n\n

    Returns:\n SearchModelConfig | TrainModelConfig: Validated config model instance.

    \n\n

    Raises:\n ConfigError: If cfg_type is unknown or validation fails.

    \n", "signature": "(\tcfg_raw: dict[str, typing.Any],\tcfg_type: Literal['search', 'train']) -> ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig:", "funcdef": "def"}, "ml.data": {"fullname": "ml.data", "modulename": "ml.data", "kind": "module", "doc": "

    A package for storing machine learning data-related code.

    \n"}, "ml.data.config": {"fullname": "ml.data.config", "modulename": "ml.data.config", "kind": "module", "doc": "

    A package for storing data configurations.

    \n"}, "ml.data.config.schemas": {"fullname": "ml.data.config.schemas", "modulename": "ml.data.config.schemas", "kind": "module", "doc": "

    A package for storing data configuration schemas.

    \n"}, "ml.data.config.schemas.constants": {"fullname": "ml.data.config.schemas.constants", "modulename": "ml.data.config.schemas.constants", "kind": "module", "doc": "

    Shared schema constants and typed value wrappers for data configs.

    \n"}, "ml.data.config.schemas.constants.BorderValue": {"fullname": "ml.data.config.schemas.constants.BorderValue", "modulename": "ml.data.config.schemas.constants", "qualname": "BorderValue", "kind": "class", "doc": "

    Boundary value and comparison operator used in invariant checks.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.constants.BorderValue.value": {"fullname": "ml.data.config.schemas.constants.BorderValue.value", "modulename": "ml.data.config.schemas.constants", "qualname": "BorderValue.value", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.constants.BorderValue.op": {"fullname": "ml.data.config.schemas.constants.BorderValue.op", "modulename": "ml.data.config.schemas.constants", "qualname": "BorderValue.op", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['lt', 'lte', 'gte', 'ge']", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim": {"fullname": "ml.data.config.schemas.interim", "modulename": "ml.data.config.schemas.interim", "kind": "module", "doc": "

    Validation schemas for interim-stage data processing configuration.

    \n"}, "ml.data.config.schemas.interim.logger": {"fullname": "ml.data.config.schemas.interim.logger", "modulename": "ml.data.config.schemas.interim", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.config.schemas.interim (WARNING)>"}, "ml.data.config.schemas.interim.DataSchema": {"fullname": "ml.data.config.schemas.interim.DataSchema", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema", "kind": "class", "doc": "

    Expected interim dataset column names and target dtypes.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.DataSchema.hotel": {"fullname": "ml.data.config.schemas.interim.DataSchema.hotel", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.hotel", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"fullname": "ml.data.config.schemas.interim.DataSchema.is_canceled", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.is_canceled", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"fullname": "ml.data.config.schemas.interim.DataSchema.lead_time", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.lead_time", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int16'"}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"fullname": "ml.data.config.schemas.interim.DataSchema.arrival_date_year", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.arrival_date_year", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int16'"}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"fullname": "ml.data.config.schemas.interim.DataSchema.arrival_date_month", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.arrival_date_month", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"fullname": "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.arrival_date_week_number", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"fullname": "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.arrival_date_day_of_month", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"fullname": "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.stays_in_weekend_nights", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"fullname": "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.stays_in_week_nights", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.adults": {"fullname": "ml.data.config.schemas.interim.DataSchema.adults", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.adults", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int16'"}, "ml.data.config.schemas.interim.DataSchema.children": {"fullname": "ml.data.config.schemas.interim.DataSchema.children", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.children", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.babies": {"fullname": "ml.data.config.schemas.interim.DataSchema.babies", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.babies", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.meal": {"fullname": "ml.data.config.schemas.interim.DataSchema.meal", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.meal", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.country": {"fullname": "ml.data.config.schemas.interim.DataSchema.country", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.country", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"fullname": "ml.data.config.schemas.interim.DataSchema.market_segment", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.market_segment", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"fullname": "ml.data.config.schemas.interim.DataSchema.distribution_channel", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.distribution_channel", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"fullname": "ml.data.config.schemas.interim.DataSchema.is_repeated_guest", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.is_repeated_guest", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"fullname": "ml.data.config.schemas.interim.DataSchema.previous_cancellations", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.previous_cancellations", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"fullname": "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.previous_bookings_not_canceled", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"fullname": "ml.data.config.schemas.interim.DataSchema.reserved_room_type", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.reserved_room_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"fullname": "ml.data.config.schemas.interim.DataSchema.assigned_room_type", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.assigned_room_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"fullname": "ml.data.config.schemas.interim.DataSchema.booking_changes", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.booking_changes", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"fullname": "ml.data.config.schemas.interim.DataSchema.deposit_type", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.deposit_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.agent": {"fullname": "ml.data.config.schemas.interim.DataSchema.agent", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.agent", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.company": {"fullname": "ml.data.config.schemas.interim.DataSchema.company", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.company", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"fullname": "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.days_in_waiting_list", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int16'"}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"fullname": "ml.data.config.schemas.interim.DataSchema.customer_type", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.customer_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.adr": {"fullname": "ml.data.config.schemas.interim.DataSchema.adr", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.adr", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'float32'"}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"fullname": "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.required_car_parking_spaces", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"fullname": "ml.data.config.schemas.interim.DataSchema.total_of_special_requests", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.total_of_special_requests", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"fullname": "ml.data.config.schemas.interim.DataSchema.reservation_status", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.reservation_status", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"fullname": "ml.data.config.schemas.interim.DataSchema.reservation_status_date", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.reservation_status_date", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'datetime64[ns]'"}, "ml.data.config.schemas.interim.DataSchema.name": {"fullname": "ml.data.config.schemas.interim.DataSchema.name", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'string'"}, "ml.data.config.schemas.interim.DataSchema.email": {"fullname": "ml.data.config.schemas.interim.DataSchema.email", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.email", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'string'"}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"fullname": "ml.data.config.schemas.interim.DataSchema.phone_number", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.phone_number", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'string'"}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"fullname": "ml.data.config.schemas.interim.DataSchema.credit_card", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.credit_card", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'string'"}, "ml.data.config.schemas.interim.Cleaning": {"fullname": "ml.data.config.schemas.interim.Cleaning", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning", "kind": "class", "doc": "

    Column-name normalization options for preprocessing input data.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"fullname": "ml.data.config.schemas.interim.Cleaning.lowercase_columns", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning.lowercase_columns", "kind": "variable", "doc": "

    Whether to convert column names to lowercase.

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"fullname": "ml.data.config.schemas.interim.Cleaning.strip_strings", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning.strip_strings", "kind": "variable", "doc": "

    Whether to strip leading/trailing whitespace from string columns.

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"fullname": "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning.replace_spaces_in_columns", "kind": "variable", "doc": "

    Whether to replace spaces in column names with underscores.

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"fullname": "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning.replace_dashes_in_columns", "kind": "variable", "doc": "

    Whether to replace dashes in column names with underscores.

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.Invariant": {"fullname": "ml.data.config.schemas.interim.Invariant", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariant", "kind": "class", "doc": "

    Validation and filtering rules for a single column.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.Invariant.min": {"fullname": "ml.data.config.schemas.interim.Invariant.min", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariant.min", "kind": "variable", "doc": "

    Minimum allowed value for the column.

    \n", "annotation": ": ml.data.config.schemas.constants.BorderValue | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariant.max": {"fullname": "ml.data.config.schemas.interim.Invariant.max", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariant.max", "kind": "variable", "doc": "

    Maximum allowed value for the column.

    \n", "annotation": ": ml.data.config.schemas.constants.BorderValue | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"fullname": "ml.data.config.schemas.interim.Invariant.allowed_values", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariant.allowed_values", "kind": "variable", "doc": "

    List of allowed values for the column.

    \n", "annotation": ": list | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants": {"fullname": "ml.data.config.schemas.interim.Invariants", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants", "kind": "class", "doc": "

    Column-level invariant rules covering the interim dataset schema.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.Invariants.hotel": {"fullname": "ml.data.config.schemas.interim.Invariants.hotel", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.hotel", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"fullname": "ml.data.config.schemas.interim.Invariants.is_canceled", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.is_canceled", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.lead_time": {"fullname": "ml.data.config.schemas.interim.Invariants.lead_time", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.lead_time", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"fullname": "ml.data.config.schemas.interim.Invariants.arrival_date_year", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.arrival_date_year", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"fullname": "ml.data.config.schemas.interim.Invariants.arrival_date_month", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.arrival_date_month", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"fullname": "ml.data.config.schemas.interim.Invariants.arrival_date_week_number", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.arrival_date_week_number", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"fullname": "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.arrival_date_day_of_month", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"fullname": "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.stays_in_weekend_nights", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"fullname": "ml.data.config.schemas.interim.Invariants.stays_in_week_nights", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.stays_in_week_nights", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.adults": {"fullname": "ml.data.config.schemas.interim.Invariants.adults", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.adults", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.children": {"fullname": "ml.data.config.schemas.interim.Invariants.children", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.children", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.babies": {"fullname": "ml.data.config.schemas.interim.Invariants.babies", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.babies", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.meal": {"fullname": "ml.data.config.schemas.interim.Invariants.meal", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.meal", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.country": {"fullname": "ml.data.config.schemas.interim.Invariants.country", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.country", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.market_segment": {"fullname": "ml.data.config.schemas.interim.Invariants.market_segment", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.market_segment", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"fullname": "ml.data.config.schemas.interim.Invariants.distribution_channel", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.distribution_channel", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"fullname": "ml.data.config.schemas.interim.Invariants.is_repeated_guest", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.is_repeated_guest", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"fullname": "ml.data.config.schemas.interim.Invariants.previous_cancellations", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.previous_cancellations", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"fullname": "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.previous_bookings_not_canceled", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"fullname": "ml.data.config.schemas.interim.Invariants.reserved_room_type", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.reserved_room_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"fullname": "ml.data.config.schemas.interim.Invariants.assigned_room_type", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.assigned_room_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"fullname": "ml.data.config.schemas.interim.Invariants.booking_changes", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.booking_changes", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"fullname": "ml.data.config.schemas.interim.Invariants.deposit_type", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.deposit_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.agent": {"fullname": "ml.data.config.schemas.interim.Invariants.agent", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.agent", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.company": {"fullname": "ml.data.config.schemas.interim.Invariants.company", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.company", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"fullname": "ml.data.config.schemas.interim.Invariants.days_in_waiting_list", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.days_in_waiting_list", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.customer_type": {"fullname": "ml.data.config.schemas.interim.Invariants.customer_type", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.customer_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.adr": {"fullname": "ml.data.config.schemas.interim.Invariants.adr", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.adr", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"fullname": "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.required_car_parking_spaces", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"fullname": "ml.data.config.schemas.interim.Invariants.total_of_special_requests", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.total_of_special_requests", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"fullname": "ml.data.config.schemas.interim.Invariants.reservation_status", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.reservation_status", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"fullname": "ml.data.config.schemas.interim.Invariants.reservation_status_date", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.reservation_status_date", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.name": {"fullname": "ml.data.config.schemas.interim.Invariants.name", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.name", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.email": {"fullname": "ml.data.config.schemas.interim.Invariants.email", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.email", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.phone_number": {"fullname": "ml.data.config.schemas.interim.Invariants.phone_number", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.phone_number", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.credit_card": {"fullname": "ml.data.config.schemas.interim.Invariants.credit_card", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.credit_card", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"fullname": "ml.data.config.schemas.interim.Invariants.validate_constraints", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.validate_constraints", "kind": "function", "doc": "

    Ensure configured invariants stay within registry-defined limits.

    \n\n

    Args:\n self: Candidate invariants instance.

    \n\n

    Returns:\n Invariants: Validated invariants object.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"fullname": "ml.data.config.schemas.interim.Invariants.assign_default_invariants", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.assign_default_invariants", "kind": "function", "doc": "

    Populate missing column invariants with registry-based defaults.

    \n\n

    Args:\n values: Raw invariants payload dictionary.

    \n\n

    Returns:\n dict: Invariants payload with defaults assigned.

    \n", "signature": "(cls, values):", "funcdef": "def"}, "ml.data.config.schemas.interim.LineageConfig": {"fullname": "ml.data.config.schemas.interim.LineageConfig", "modulename": "ml.data.config.schemas.interim", "qualname": "LineageConfig", "kind": "class", "doc": "

    Lineage metadata describing interim config provenance.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"fullname": "ml.data.config.schemas.interim.LineageConfig.created_by", "modulename": "ml.data.config.schemas.interim", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"fullname": "ml.data.config.schemas.interim.LineageConfig.created_at", "modulename": "ml.data.config.schemas.interim", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig": {"fullname": "ml.data.config.schemas.interim.InterimConfig", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig", "kind": "class", "doc": "

    Top-level validated configuration for interim data creation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.InterimConfig.data": {"fullname": "ml.data.config.schemas.interim.InterimConfig.data", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.shared.DataInfo", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"fullname": "ml.data.config.schemas.interim.InterimConfig.data_schema", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.data_schema", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.DataSchema", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"fullname": "ml.data.config.schemas.interim.InterimConfig.raw_data_version", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.raw_data_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"fullname": "ml.data.config.schemas.interim.InterimConfig.cleaning", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.cleaning", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Cleaning", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"fullname": "ml.data.config.schemas.interim.InterimConfig.invariants", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.invariants", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariants", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"fullname": "ml.data.config.schemas.interim.InterimConfig.drop_duplicates", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.drop_duplicates", "kind": "variable", "doc": "

    Whether to drop duplicate rows from the data (default: True).

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"fullname": "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.drop_missing_ints", "kind": "variable", "doc": "

    Whether to drop rows with missing values in integer columns (default: True).

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"fullname": "ml.data.config.schemas.interim.InterimConfig.min_rows", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.min_rows", "kind": "variable", "doc": "

    Minimum number of rows required after cleaning (default: 0).

    \n", "annotation": ": int", "default_value": "0"}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"fullname": "ml.data.config.schemas.interim.InterimConfig.lineage", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.LineageConfig", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"fullname": "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.validate_raw_data_version", "kind": "function", "doc": "

    Validate that raw_data_version follows the v{number} format.

    \n\n

    Args:\n self: Candidate interim config instance.

    \n\n

    Returns:\n The validated interim config instance.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.data.config.schemas.processed": {"fullname": "ml.data.config.schemas.processed", "modulename": "ml.data.config.schemas.processed", "kind": "module", "doc": "

    Validation schemas for processed-stage data pipeline configuration.

    \n"}, "ml.data.config.schemas.processed.logger": {"fullname": "ml.data.config.schemas.processed.logger", "modulename": "ml.data.config.schemas.processed", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.config.schemas.processed (WARNING)>"}, "ml.data.config.schemas.processed.LineageConfig": {"fullname": "ml.data.config.schemas.processed.LineageConfig", "modulename": "ml.data.config.schemas.processed", "qualname": "LineageConfig", "kind": "class", "doc": "

    Lineage metadata describing processed config provenance.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"fullname": "ml.data.config.schemas.processed.LineageConfig.created_by", "modulename": "ml.data.config.schemas.processed", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"fullname": "ml.data.config.schemas.processed.LineageConfig.created_at", "modulename": "ml.data.config.schemas.processed", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig", "kind": "class", "doc": "

    Top-level validated configuration for processed data generation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.data", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.shared.DataInfo", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.interim_data_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.remove_columns", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.remove_columns", "kind": "variable", "doc": "

    List of column names to remove from the data during processing.

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.lineage", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.processed.LineageConfig", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.validate_interim_data_version", "kind": "function", "doc": "

    Validate that interim_data_version follows the v{number} format.

    \n\n

    Args:\n values: The validated values of the model.\nReturns:\n The validated model instance.\nRaises:\n ConfigError: If the interim_data_version does not follow the required format.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.data.config.schemas.shared": {"fullname": "ml.data.config.schemas.shared", "modulename": "ml.data.config.schemas.shared", "kind": "module", "doc": "

    Shared schema blocks reused by interim and processed data configs.

    \n"}, "ml.data.config.schemas.shared.Output": {"fullname": "ml.data.config.schemas.shared.Output", "modulename": "ml.data.config.schemas.shared", "qualname": "Output", "kind": "class", "doc": "

    Output artifact settings for persisted datasets.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.shared.Output.path_suffix": {"fullname": "ml.data.config.schemas.shared.Output.path_suffix", "modulename": "ml.data.config.schemas.shared", "qualname": "Output.path_suffix", "kind": "variable", "doc": "

    Suffix for the output data file path, which will be combined with the data name and version to create the full path.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.shared.Output.format": {"fullname": "ml.data.config.schemas.shared.Output.format", "modulename": "ml.data.config.schemas.shared", "qualname": "Output.format", "kind": "variable", "doc": "

    Format to save the interim data.

    \n", "annotation": ": Literal['parquet']", "default_value": "'parquet'"}, "ml.data.config.schemas.shared.Output.compression": {"fullname": "ml.data.config.schemas.shared.Output.compression", "modulename": "ml.data.config.schemas.shared", "qualname": "Output.compression", "kind": "variable", "doc": "

    Compression method to use when saving the data (default: 'snappy').

    \n", "annotation": ": Optional[Literal['snappy', 'gzip', 'brotli', 'lz4', 'zstd']]", "default_value": "None"}, "ml.data.config.schemas.shared.DataInfo": {"fullname": "ml.data.config.schemas.shared.DataInfo", "modulename": "ml.data.config.schemas.shared", "qualname": "DataInfo", "kind": "class", "doc": "

    Dataset identity and output target metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.shared.DataInfo.name": {"fullname": "ml.data.config.schemas.shared.DataInfo.name", "modulename": "ml.data.config.schemas.shared", "qualname": "DataInfo.name", "kind": "variable", "doc": "

    Name of the data being processed.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.shared.DataInfo.version": {"fullname": "ml.data.config.schemas.shared.DataInfo.version", "modulename": "ml.data.config.schemas.shared", "qualname": "DataInfo.version", "kind": "variable", "doc": "

    Version of the interim data being created.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.shared.DataInfo.output": {"fullname": "ml.data.config.schemas.shared.DataInfo.output", "modulename": "ml.data.config.schemas.shared", "qualname": "DataInfo.output", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.shared.Output", "default_value": "PydanticUndefined"}, "ml.data.config.validate_config": {"fullname": "ml.data.config.validate_config", "modulename": "ml.data.config.validate_config", "kind": "module", "doc": "

    Validation entrypoint for interim and processed data configs.

    \n"}, "ml.data.config.validate_config.logger": {"fullname": "ml.data.config.validate_config.logger", "modulename": "ml.data.config.validate_config", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.config.validate_config (WARNING)>"}, "ml.data.config.validate_config.validate_config": {"fullname": "ml.data.config.validate_config.validate_config", "modulename": "ml.data.config.validate_config", "qualname": "validate_config", "kind": "function", "doc": "

    Validate raw config dictionary using stage-specific Pydantic schema.

    \n\n

    Args:\n config: Raw configuration payload.\n type: Config type selector (\"interim\" or \"processed\").

    \n\n

    Returns:\n InterimConfig | ProcessedConfig: Typed validated configuration object.

    \n", "signature": "(\tconfig: dict,\ttype: Literal['interim', 'processed']) -> ml.data.config.schemas.interim.InterimConfig | ml.data.config.schemas.processed.ProcessedConfig:", "funcdef": "def"}, "ml.data.interim": {"fullname": "ml.data.interim", "modulename": "ml.data.interim", "kind": "module", "doc": "

    A package for storing interim machine learning data-related code.

    \n"}, "ml.data.interim.data_preparation": {"fullname": "ml.data.interim.data_preparation", "modulename": "ml.data.interim.data_preparation", "kind": "module", "doc": "

    A package for storing data preparation code.

    \n"}, "ml.data.interim.data_preparation.prepare_data": {"fullname": "ml.data.interim.data_preparation.prepare_data", "modulename": "ml.data.interim.data_preparation.prepare_data", "kind": "module", "doc": "

    Interim-stage data preparation utilities.

    \n\n

    Includes column normalization, schema enforcement, and invariant-driven row\nfiltering used by the interim data pipeline.

    \n"}, "ml.data.interim.data_preparation.prepare_data.logger": {"fullname": "ml.data.interim.data_preparation.prepare_data.logger", "modulename": "ml.data.interim.data_preparation.prepare_data", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.interim.data_preparation.prepare_data (WARNING)>"}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"fullname": "ml.data.interim.data_preparation.prepare_data.normalize_columns", "modulename": "ml.data.interim.data_preparation.prepare_data", "qualname": "normalize_columns", "kind": "function", "doc": "

    Normalize column names according to configured cleaning options.

    \n\n

    Args:\n df: Input dataframe whose column names are normalized.\n cleaning: Cleaning configuration flags controlling normalization steps.

    \n\n

    Returns:\n Dataframe with normalized column names.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\tcleaning: ml.data.config.schemas.interim.Cleaning):", "funcdef": "def"}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"fullname": "ml.data.interim.data_preparation.prepare_data.enforce_schema", "modulename": "ml.data.interim.data_preparation.prepare_data", "qualname": "enforce_schema", "kind": "function", "doc": "

    Validate columns and coerce dataframe dtypes to schema definition.

    \n\n

    Args:\n df: Input dataframe.\n schema: Expected column-to-dtype mapping.\n drop_missing_ints: Whether to drop rows with nulls in integer columns.

    \n\n

    Returns:\n pd.DataFrame: Schema-aligned dataframe.

    \n\n

    Raises:\n DataError: If required columns are missing or type coercion/validation fails.

    \n\n

    Notes:\n Integer columns containing nulls are either row-dropped or widened to\n float64 depending on drop_missing_ints.

    \n\n

    Side Effects:\n May drop extra columns and may mutate row count when null integer rows\n are removed.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\tschema: ml.data.config.schemas.interim.DataSchema,\tdrop_missing_ints: bool) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"fullname": "ml.data.interim.data_preparation.prepare_data.clean_data", "modulename": "ml.data.interim.data_preparation.prepare_data", "qualname": "clean_data", "kind": "function", "doc": "

    Filter dataframe rows using configured invariant constraints.

    \n\n

    Args:\n df: Input dataframe.\n invariants: Column-level min/max/allowed-value constraints.

    \n\n

    Returns:\n pd.DataFrame: Cleaned dataframe after invariant filtering.

    \n\n

    Raises:\n DataError: If invariant evaluation fails.

    \n\n

    Side Effects:\n Performs row filtering and object-string trimming; resulting row count can\n decrease substantially based on configured invariants.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\tinvariants: ml.data.config.schemas.interim.Invariants):", "funcdef": "def"}, "ml.data.interim.persistence": {"fullname": "ml.data.interim.persistence", "modulename": "ml.data.interim.persistence", "kind": "module", "doc": "

    A package for storing persistence code.

    \n"}, "ml.data.interim.persistence.prepare_metadata": {"fullname": "ml.data.interim.persistence.prepare_metadata", "modulename": "ml.data.interim.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata assembly helpers for interim data pipeline outputs.

    \n"}, "ml.data.interim.persistence.prepare_metadata.logger": {"fullname": "ml.data.interim.persistence.prepare_metadata.logger", "modulename": "ml.data.interim.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.interim.persistence.prepare_metadata (WARNING)>"}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.data.interim.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.data.interim.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build metadata payload describing an interim data run.

    \n\n

    Args:\n df: Final interim dataframe.\n config: Validated interim configuration.\n start_time: Run start timestamp from time.perf_counter.\n data_path: Persisted interim data file path.\n source_data_path: Source raw data file path.\n source_data_format: Source raw data format.\n owner: Human owner for governance metadata.\n memory_info: Memory usage delta details.\n interim_run_id: Unique interim run identifier.

    \n\n

    Returns:\n InterimDatasetMetadata: The validated metadata object.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\tconfig: ml.data.config.schemas.interim.InterimConfig,\tstart_time: float,\tdata_path: pathlib.Path,\tsource_data_path: pathlib.Path,\tsource_data_format: str,\towner: str,\tmemory_info: dict,\tinterim_run_id: str) -> ml.metadata.schemas.data.interim.InterimDatasetMetadata:", "funcdef": "def"}, "ml.data.merge": {"fullname": "ml.data.merge", "modulename": "ml.data.merge", "kind": "module", "doc": "

    A package for merging data.

    \n"}, "ml.data.merge.merge_dataset_into_main": {"fullname": "ml.data.merge.merge_dataset_into_main", "modulename": "ml.data.merge.merge_dataset_into_main", "kind": "module", "doc": "

    Utilities for validated feature-dataset merges into the main frame.

    \n"}, "ml.data.merge.merge_dataset_into_main.logger": {"fullname": "ml.data.merge.merge_dataset_into_main.logger", "modulename": "ml.data.merge.merge_dataset_into_main", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.merge.merge_dataset_into_main (WARNING)>"}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"fullname": "ml.data.merge.merge_dataset_into_main.normalize_keys", "modulename": "ml.data.merge.merge_dataset_into_main", "qualname": "normalize_keys", "kind": "function", "doc": "

    \n", "signature": "(key: str | tuple[str, ...]) -> list[str]:", "funcdef": "def"}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"fullname": "ml.data.merge.merge_dataset_into_main.build_dataset_dag", "modulename": "ml.data.merge.merge_dataset_into_main", "qualname": "build_dataset_dag", "kind": "function", "doc": "

    Build DAG and return topological merge order.

    \n", "signature": "(\tdatasets: list[ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig]) -> list[str]:", "funcdef": "def"}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"fullname": "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main", "modulename": "ml.data.merge.merge_dataset_into_main", "qualname": "merge_dataset_into_main", "kind": "function", "doc": "

    Validate and merge one dataset into the main frame, returning data hash.

    \n\n

    Args:\n data: Main dataframe accumulated from previous merges.\n df: New dataset dataframe to merge into data.\n merge_key: Key column(s) used for inner merge.\n merge_how: Type of merge to perform.\n merge_validate: Merge validation for row explosion protection.\n dataset_name: Logical dataset name used for logging/errors.\n dataset_version: Dataset version string.\n dataset_snapshot_path: Snapshot directory containing dataset metadata.\n dataset_path: Dataset file path used for data validation.

    \n\n

    Returns:\n Tuple of merged dataframe and validated data hash.

    \n\n

    Raises:\n DataError: If merge keys are missing, merge alignment fails, or merged\n output becomes empty.

    \n\n

    Side Effects:\n May drop overlapping non-key columns from df before merge and logs\n dataset-level merge diagnostics/warnings.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tdf: pandas.core.frame.DataFrame,\t*,\tmerge_key: str | tuple[str, ...],\tmerge_how: Literal['left', 'right', 'inner', 'outer', 'cross'] = 'inner',\tmerge_validate: Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m'] = 'm:m',\tdataset_name: str,\tdataset_version: str,\tdataset_snapshot_path: pathlib.Path,\tdataset_path: pathlib.Path) -> tuple[pandas.core.frame.DataFrame, str]:", "funcdef": "def"}, "ml.data.processed": {"fullname": "ml.data.processed", "modulename": "ml.data.processed", "kind": "module", "doc": "

    A package for building processed datasets.

    \n"}, "ml.data.processed.persistence": {"fullname": "ml.data.processed.persistence", "modulename": "ml.data.processed.persistence", "kind": "module", "doc": "

    A package for persisting processed data.

    \n"}, "ml.data.processed.persistence.prepare_metadata": {"fullname": "ml.data.processed.persistence.prepare_metadata", "modulename": "ml.data.processed.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata assembly helpers for processed data pipeline outputs.

    \n"}, "ml.data.processed.persistence.prepare_metadata.logger": {"fullname": "ml.data.processed.persistence.prepare_metadata.logger", "modulename": "ml.data.processed.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.processed.persistence.prepare_metadata (WARNING)>"}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.data.processed.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.data.processed.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build metadata payload describing a processed data run.

    \n\n

    Args:\n df: Final processed dataframe.\n config: Validated processed configuration.\n start_time: Run start timestamp from time.perf_counter.\n data_path: Persisted processed data file path.\n source_data_path: Source interim data file path.\n source_data_format: Source interim data format.\n source_data_version: Source interim data version.\n owner: Human owner for governance metadata.\n memory_info: Memory usage delta details.\n processed_run_id: Unique processed run identifier.\n row_id_info: Optional row-id generation trace metadata.

    \n\n

    Returns:\n ProcessedDatasetMetadata: Serializable metadata object.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\tconfig: ml.data.config.schemas.processed.ProcessedConfig,\tstart_time: float,\tdata_path: pathlib.Path,\tsource_data_path: pathlib.Path,\tsource_data_format: str,\tsource_data_version: str,\towner: str,\tmemory_info: dict,\tprocessed_run_id: str,\trow_id_info: ml.data.processed.processing.add_row_id_base.RowIDMetadata | None = None) -> ml.metadata.schemas.data.processed.ProcessedDatasetMetadata:", "funcdef": "def"}, "ml.data.processed.processing": {"fullname": "ml.data.processed.processing", "modulename": "ml.data.processed.processing", "kind": "module", "doc": "

    A package for processing data.

    \n"}, "ml.data.processed.processing.add_row_id_base": {"fullname": "ml.data.processed.processing.add_row_id_base", "modulename": "ml.data.processed.processing.add_row_id_base", "kind": "module", "doc": "

    Abstract base interface for dataset-specific row-id generators.

    \n"}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"fullname": "ml.data.processed.processing.add_row_id_base.RowIDMetadata", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "RowIDMetadata", "kind": "class", "doc": "

    Metadata about the row_id generation process for lineage tracking.

    \n", "bases": "typing.TypedDict"}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"fullname": "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "RowIDMetadata.cols_for_row_id", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"fullname": "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "RowIDMetadata.fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"fullname": "ml.data.processed.processing.add_row_id_base.AddRowIDBase", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "AddRowIDBase", "kind": "class", "doc": "

    Base contract for row-id generation implementations.

    \n", "bases": "abc.ABC"}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"fullname": "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "AddRowIDBase.add_row_id", "kind": "function", "doc": "

    Return dataframe augmented with row identifiers and trace metadata.

    \n\n

    Args:\n df: Input dataframe requiring row identifier creation.

    \n\n

    Returns:\n Tuple of augmented dataframe and row-id lineage metadata.

    \n", "signature": "(\tself,\tdf: pandas.core.frame.DataFrame) -> tuple[pandas.core.frame.DataFrame, ml.data.processed.processing.add_row_id_base.RowIDMetadata]:", "funcdef": "def"}, "ml.data.processed.processing.hotel_bookings": {"fullname": "ml.data.processed.processing.hotel_bookings", "modulename": "ml.data.processed.processing.hotel_bookings", "kind": "module", "doc": "

    A package for hotel_bookings-specific data processing.

    \n"}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "kind": "module", "doc": "

    Row ID generation strategy for processed hotel bookings datasets.

    \n"}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id.logger", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.processed.processing.hotel_bookings.add_row_id (WARNING)>"}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "qualname": "validate_cols_for_row_id", "kind": "function", "doc": "

    Validate row-id column fingerprint against the expected immutable reference.

    \n\n

    Returns:\n str: Computed fingerprint for the configured row-id source columns.

    \n", "signature": "() -> str:", "funcdef": "def"}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "qualname": "AddRowIDToHotelBookings", "kind": "class", "doc": "

    Concrete row-id generator for hotel bookings based on stable key columns.

    \n", "bases": "ml.data.processed.processing.add_row_id_base.AddRowIDBase"}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "qualname": "AddRowIDToHotelBookings.add_row_id", "kind": "function", "doc": "

    Create deterministic row identifiers and return dataframe plus lineage metadata.

    \n\n

    Args:\n df: Input bookings dataframe.

    \n\n

    Returns:\n tuple[pd.DataFrame, RowIDMetadata]: Dataframe with row_id and row-id metadata.

    \n", "signature": "(\tself,\tdf: pandas.core.frame.DataFrame) -> tuple[pandas.core.frame.DataFrame, ml.data.processed.processing.add_row_id_base.RowIDMetadata]:", "funcdef": "def"}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.cols_for_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.cols_for_row_id", "kind": "module", "doc": "

    Immutable source columns and fingerprint used for hotel-bookings row-id generation.

    \n"}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.cols_for_row_id", "qualname": "cols_for_row_id", "kind": "variable", "doc": "

    \n", "default_value": "['hotel', 'arrival_date_year', 'arrival_date_month', 'arrival_date_day_of_month', 'reserved_room_type', 'assigned_room_type', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'country', 'agent']"}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"fullname": "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT", "modulename": "ml.data.processed.processing.hotel_bookings.cols_for_row_id", "qualname": "COLS_FOR_ROW_ID_FINGERPRINT", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda'"}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"fullname": "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint", "modulename": "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint", "kind": "module", "doc": "

    Utilities for deriving stable fingerprints for row-id source columns.

    \n"}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"fullname": "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint", "modulename": "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint", "qualname": "compute_cols_for_row_id_fingerprint", "kind": "function", "doc": "

    Compute an order-insensitive fingerprint for row-id column definitions.

    \n\n

    Args:\n cols: Iterable of column names used to derive row identifiers.

    \n\n

    Returns:\n Stable hash fingerprint for the provided column set.

    \n", "signature": "(cols):", "funcdef": "def"}, "ml.data.processed.processing.process_data": {"fullname": "ml.data.processed.processing.process_data", "modulename": "ml.data.processed.processing.process_data", "kind": "module", "doc": "

    Processed-stage transformation helpers.

    \n\n

    Includes column removal and dataset-specific row-id generation dispatch.

    \n"}, "ml.data.processed.processing.process_data.logger": {"fullname": "ml.data.processed.processing.process_data.logger", "modulename": "ml.data.processed.processing.process_data", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.processed.processing.process_data (WARNING)>"}, "ml.data.processed.processing.process_data.remove_columns": {"fullname": "ml.data.processed.processing.process_data.remove_columns", "modulename": "ml.data.processed.processing.process_data", "qualname": "remove_columns", "kind": "function", "doc": "

    Drop required columns, raising when requested columns are missing.

    \n\n

    Args:\n df: Input dataframe.\n columns_to_remove: Column names to drop.

    \n\n

    Returns:\n pd.DataFrame: Dataframe with specified columns removed.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\tcolumns_to_remove: list) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.data.processed.processing.process_data.add_row_id": {"fullname": "ml.data.processed.processing.process_data.add_row_id", "modulename": "ml.data.processed.processing.process_data", "qualname": "add_row_id", "kind": "function", "doc": "

    Apply registered row-id generation function for configured dataset.

    \n\n

    Args:\n df: Input dataframe.\n cfg: Processed-data configuration.

    \n\n

    Returns:\n tuple[pd.DataFrame, RowIDMetadata]: Dataframe with row IDs and row-id metadata.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\tcfg: ml.data.config.schemas.processed.ProcessedConfig) -> tuple[pandas.core.frame.DataFrame, ml.data.processed.processing.add_row_id_base.RowIDMetadata]:", "funcdef": "def"}, "ml.data.raw": {"fullname": "ml.data.raw", "modulename": "ml.data.raw", "kind": "module", "doc": "

    A package for working with raw data.

    \n"}, "ml.data.raw.persistence": {"fullname": "ml.data.raw.persistence", "modulename": "ml.data.raw.persistence", "kind": "module", "doc": "

    A package for persisting the register_raw_snapshot.py pipeline.

    \n"}, "ml.data.raw.persistence.prepare_metadata": {"fullname": "ml.data.raw.persistence.prepare_metadata", "modulename": "ml.data.raw.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata assembly helper for raw data snapshots.

    \n"}, "ml.data.raw.persistence.prepare_metadata.logger": {"fullname": "ml.data.raw.persistence.prepare_metadata.logger", "modulename": "ml.data.raw.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.raw.persistence.prepare_metadata (WARNING)>"}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.data.raw.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.data.raw.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build metadata payload for a raw data snapshot.

    \n\n

    Args:\n df: Loaded raw dataframe.\n args: CLI arguments namespace with data/version/owner fields.\n data_path: Raw data file path.\n raw_run_id: Unique run identifier for raw handling stage.\n data_format: Raw data file format.\n data_suffix: Raw data file name or suffix.

    \n\n

    Returns:\n RawSnapshotMetadata: The validated metadata object.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\targs,\tdata_path: pathlib.Path,\traw_run_id: str,\tdata_format: str,\tdata_suffix: str) -> ml.metadata.schemas.data.raw.RawSnapshotMetadata:", "funcdef": "def"}, "ml.data.utils": {"fullname": "ml.data.utils", "modulename": "ml.data.utils", "kind": "module", "doc": "

    A package with utilities for working with data.

    \n"}, "ml.data.utils.extraction": {"fullname": "ml.data.utils.extraction", "modulename": "ml.data.utils.extraction", "kind": "module", "doc": "

    A package for data extraction utilities.

    \n"}, "ml.data.utils.extraction.get_data_suffix_and_format": {"fullname": "ml.data.utils.extraction.get_data_suffix_and_format", "modulename": "ml.data.utils.extraction.get_data_suffix_and_format", "kind": "module", "doc": "

    Helpers for resolving dataset path suffix and format from metadata.

    \n"}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"fullname": "ml.data.utils.extraction.get_data_suffix_and_format.logger", "modulename": "ml.data.utils.extraction.get_data_suffix_and_format", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.utils.extraction.get_data_suffix_and_format (WARNING)>"}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"fullname": "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format", "modulename": "ml.data.utils.extraction.get_data_suffix_and_format", "qualname": "get_data_suffix_and_format", "kind": "function", "doc": "

    Extract required data path suffix and format fields for a metadata location.

    \n\n

    Args:\n metadata: Metadata dictionary containing data path and format fields.\n location: Metadata location key to resolve (data/output or data).

    \n\n

    Returns:\n Tuple of data path suffix and data format.

    \n", "signature": "(\tmetadata: dict,\tlocation: Literal['data/output', 'data']) -> tuple[str, str]:", "funcdef": "def"}, "ml.data.utils.memory": {"fullname": "ml.data.utils.memory", "modulename": "ml.data.utils.memory", "kind": "module", "doc": "

    A package for memory utilities for working with data.

    \n"}, "ml.data.utils.memory.compute_memory_change": {"fullname": "ml.data.utils.memory.compute_memory_change", "modulename": "ml.data.utils.memory.compute_memory_change", "kind": "module", "doc": "

    Utilities to compute memory usage deltas across data pipeline stages.

    \n"}, "ml.data.utils.memory.compute_memory_change.logger": {"fullname": "ml.data.utils.memory.compute_memory_change.logger", "modulename": "ml.data.utils.memory.compute_memory_change", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.utils.memory.compute_memory_change (WARNING)>"}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"fullname": "ml.data.utils.memory.compute_memory_change.compute_memory_change", "modulename": "ml.data.utils.memory.compute_memory_change", "qualname": "compute_memory_change", "kind": "function", "doc": "

    Compute old/new memory usage and change metrics for a pipeline stage.

    \n\n

    Args:\n target_metadata: Upstream stage metadata containing baseline memory.\n new_memory_usage: Memory usage of the current dataframe in MB.\n stage: Stage being evaluated (\"interim\" or \"processed\").

    \n\n

    Returns:\n dict: Memory delta payload with absolute and percentage change.

    \n", "signature": "(\t*,\ttarget_metadata: dict,\tnew_memory_usage: float,\tstage: Literal['interim', 'processed']) -> dict:", "funcdef": "def"}, "ml.data.utils.memory.get_memory_usage": {"fullname": "ml.data.utils.memory.get_memory_usage", "modulename": "ml.data.utils.memory.get_memory_usage", "kind": "module", "doc": "

    Memory usage helpers for pandas dataframes.

    \n"}, "ml.data.utils.memory.get_memory_usage.logger": {"fullname": "ml.data.utils.memory.get_memory_usage.logger", "modulename": "ml.data.utils.memory.get_memory_usage", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.utils.memory.get_memory_usage (WARNING)>"}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"fullname": "ml.data.utils.memory.get_memory_usage.get_memory_usage", "modulename": "ml.data.utils.memory.get_memory_usage", "qualname": "get_memory_usage", "kind": "function", "doc": "

    Calculate dataframe memory footprint in megabytes (deep mode).

    \n\n

    Args:\n df: Dataframe whose memory usage should be measured.

    \n\n

    Returns:\n Total dataframe memory usage in megabytes.

    \n", "signature": "(df: pandas.core.frame.DataFrame) -> float:", "funcdef": "def"}, "ml.data.utils.persistence": {"fullname": "ml.data.utils.persistence", "modulename": "ml.data.utils.persistence", "kind": "module", "doc": "

    A package for persisting data.

    \n"}, "ml.data.utils.persistence.save_data": {"fullname": "ml.data.utils.persistence.save_data", "modulename": "ml.data.utils.persistence.save_data", "kind": "module", "doc": "

    Dataset persistence helpers for interim and processed pipeline stages.

    \n"}, "ml.data.utils.persistence.save_data.logger": {"fullname": "ml.data.utils.persistence.save_data.logger", "modulename": "ml.data.utils.persistence.save_data", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.utils.persistence.save_data (WARNING)>"}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"fullname": "ml.data.utils.persistence.save_data.SAVE_FORMAT", "modulename": "ml.data.utils.persistence.save_data", "qualname": "SAVE_FORMAT", "kind": "variable", "doc": "

    \n", "default_value": "{'parquet': <function DataFrame.to_parquet>}"}, "ml.data.utils.persistence.save_data.save_data": {"fullname": "ml.data.utils.persistence.save_data.save_data", "modulename": "ml.data.utils.persistence.save_data", "qualname": "save_data", "kind": "function", "doc": "

    Persist dataframe using output settings from validated stage config.

    \n\n

    Args:\n df: Dataframe to persist.\n config: Validated interim or processed configuration.\n data_dir: Target run directory where output file is written.

    \n\n

    Returns:\n Path: Absolute path to the written data file.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\tconfig: ml.data.config.schemas.interim.InterimConfig | ml.data.config.schemas.processed.ProcessedConfig,\tdata_dir: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}, "ml.data.validation": {"fullname": "ml.data.validation", "modulename": "ml.data.validation", "kind": "module", "doc": "

    A package for validating data.

    \n"}, "ml.data.validation.validate_data": {"fullname": "ml.data.validation.validate_data", "modulename": "ml.data.validation.validate_data", "kind": "module", "doc": "

    Data integrity validation helpers based on persisted hashes.

    \n"}, "ml.data.validation.validate_data.logger": {"fullname": "ml.data.validation.validate_data.logger", "modulename": "ml.data.validation.validate_data", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.validation.validate_data (WARNING)>"}, "ml.data.validation.validate_data.validate_data": {"fullname": "ml.data.validation.validate_data.validate_data", "modulename": "ml.data.validation.validate_data", "qualname": "validate_data", "kind": "function", "doc": "

    Validate dataset hash against metadata and return the computed hash.

    \n\n

    Args:\n data_path: Dataset file path.\n metadata: Metadata dictionary containing expected data hash.

    \n\n

    Returns:\n Computed data hash, or empty string when no expected hash is present.

    \n", "signature": "(*, data_path: pathlib.Path, metadata: dict) -> str:", "funcdef": "def"}, "ml.data.validation.validate_entity_key": {"fullname": "ml.data.validation.validate_entity_key", "modulename": "ml.data.validation.validate_entity_key", "kind": "module", "doc": "

    Validation helpers for row identifier integrity in feature datasets.

    \n"}, "ml.data.validation.validate_entity_key.logger": {"fullname": "ml.data.validation.validate_entity_key.logger", "modulename": "ml.data.validation.validate_entity_key", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.validation.validate_entity_key (WARNING)>"}, "ml.data.validation.validate_entity_key.validate_entity_key": {"fullname": "ml.data.validation.validate_entity_key.validate_entity_key", "modulename": "ml.data.validation.validate_entity_key", "qualname": "validate_entity_key", "kind": "function", "doc": "

    Validate that entity_key exists and is unique within the dataframe.

    \n\n

    Args:\n df: Dataframe expected to contain unique entity_key values.

    \n\n

    Returns:\n None.

    \n", "signature": "(df: pandas.core.frame.DataFrame, entity_key: str) -> None:", "funcdef": "def"}, "ml.data.validation.validate_min_rows": {"fullname": "ml.data.validation.validate_min_rows", "modulename": "ml.data.validation.validate_min_rows", "kind": "module", "doc": "

    Validation helpers for minimum-row requirements in dataframes.

    \n"}, "ml.data.validation.validate_min_rows.logger": {"fullname": "ml.data.validation.validate_min_rows.logger", "modulename": "ml.data.validation.validate_min_rows", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.validation.validate_min_rows (WARNING)>"}, "ml.data.validation.validate_min_rows.validate_min_rows": {"fullname": "ml.data.validation.validate_min_rows.validate_min_rows", "modulename": "ml.data.validation.validate_min_rows", "qualname": "validate_min_rows", "kind": "function", "doc": "

    Ensure dataframe row count meets configured minimum threshold.

    \n\n

    Args:\n df: Dataframe to validate.\n min_rows: Minimum required number of rows.

    \n\n

    Returns:\n None.

    \n", "signature": "(df: pandas.core.frame.DataFrame, min_rows: int):", "funcdef": "def"}, "ml.exceptions": {"fullname": "ml.exceptions", "modulename": "ml.exceptions", "kind": "module", "doc": "

    Project-wide exception hierarchy for ML workflows.

    \n\n

    The hierarchy separates user-actionable issues from internal runtime failures,\nenabling consistent error handling, logging, and CLI exit-code mapping.

    \n"}, "ml.exceptions.MLBaseError": {"fullname": "ml.exceptions.MLBaseError", "modulename": "ml.exceptions", "qualname": "MLBaseError", "kind": "class", "doc": "

    Base class for all ML pipeline errors.

    \n", "bases": "builtins.Exception"}, "ml.exceptions.UserError": {"fullname": "ml.exceptions.UserError", "modulename": "ml.exceptions", "qualname": "UserError", "kind": "class", "doc": "

    Errors caused by user configuration or misuse.

    \n", "bases": "MLBaseError"}, "ml.exceptions.RuntimeMLError": {"fullname": "ml.exceptions.RuntimeMLError", "modulename": "ml.exceptions", "qualname": "RuntimeMLError", "kind": "class", "doc": "

    Errors caused by internal failures.

    \n", "bases": "MLBaseError"}, "ml.exceptions.ConfigError": {"fullname": "ml.exceptions.ConfigError", "modulename": "ml.exceptions", "qualname": "ConfigError", "kind": "class", "doc": "

    Invalid or inconsistent configuration.

    \n", "bases": "UserError"}, "ml.exceptions.DataError": {"fullname": "ml.exceptions.DataError", "modulename": "ml.exceptions", "qualname": "DataError", "kind": "class", "doc": "

    Feature store or data issues.

    \n", "bases": "UserError"}, "ml.exceptions.PipelineContractError": {"fullname": "ml.exceptions.PipelineContractError", "modulename": "ml.exceptions", "qualname": "PipelineContractError", "kind": "class", "doc": "

    Violations of structural or logical expectations between pipeline\nstages or experiment components, including incompatible artifacts,\nlineage inconsistencies, incorrect stage ordering, or execution under\nan unrelated or incompatible experiment context.

    \n", "bases": "UserError"}, "ml.exceptions.SearchError": {"fullname": "ml.exceptions.SearchError", "modulename": "ml.exceptions", "qualname": "SearchError", "kind": "class", "doc": "

    Hyperparameter search failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.TrainingError": {"fullname": "ml.exceptions.TrainingError", "modulename": "ml.exceptions", "qualname": "TrainingError", "kind": "class", "doc": "

    Model training failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.EvaluationError": {"fullname": "ml.exceptions.EvaluationError", "modulename": "ml.exceptions", "qualname": "EvaluationError", "kind": "class", "doc": "

    Evaluation or metric computation failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.ExplainabilityError": {"fullname": "ml.exceptions.ExplainabilityError", "modulename": "ml.exceptions", "qualname": "ExplainabilityError", "kind": "class", "doc": "

    Explainability or interpretation stage failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.PersistenceError": {"fullname": "ml.exceptions.PersistenceError", "modulename": "ml.exceptions", "qualname": "PersistenceError", "kind": "class", "doc": "

    Experiment or artifact saving failure.

    \n", "bases": "RuntimeMLError"}, "ml.feature_freezing": {"fullname": "ml.feature_freezing", "modulename": "ml.feature_freezing", "kind": "module", "doc": "

    A package for freezing feature sets.

    \n"}, "ml.feature_freezing.constants": {"fullname": "ml.feature_freezing.constants", "modulename": "ml.feature_freezing.constants", "kind": "module", "doc": "

    A package with constants for feature freezing.

    \n"}, "ml.feature_freezing.constants.output": {"fullname": "ml.feature_freezing.constants.output", "modulename": "ml.feature_freezing.constants.output", "kind": "module", "doc": "

    Output models shared by feature-freezing strategies.

    \n"}, "ml.feature_freezing.constants.output.FreezeOutput": {"fullname": "ml.feature_freezing.constants.output.FreezeOutput", "modulename": "ml.feature_freezing.constants.output", "qualname": "FreezeOutput", "kind": "class", "doc": "

    Result payload returned by a feature-freezing strategy run.

    \n"}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"fullname": "ml.feature_freezing.constants.output.FreezeOutput.__init__", "modulename": "ml.feature_freezing.constants.output", "qualname": "FreezeOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(snapshot_path: pathlib.Path, metadata: dict)"}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"fullname": "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path", "modulename": "ml.feature_freezing.constants.output", "qualname": "FreezeOutput.snapshot_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"fullname": "ml.feature_freezing.constants.output.FreezeOutput.metadata", "modulename": "ml.feature_freezing.constants.output", "qualname": "FreezeOutput.metadata", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.feature_freezing.freeze_strategies": {"fullname": "ml.feature_freezing.freeze_strategies", "modulename": "ml.feature_freezing.freeze_strategies", "kind": "module", "doc": "

    A package containing strategies for freezing feature sets.

    \n"}, "ml.feature_freezing.freeze_strategies.base": {"fullname": "ml.feature_freezing.freeze_strategies.base", "modulename": "ml.feature_freezing.freeze_strategies.base", "kind": "module", "doc": "

    Abstract interfaces for feature freezing strategies.

    \n"}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"fullname": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy", "modulename": "ml.feature_freezing.freeze_strategies.base", "qualname": "FreezeStrategy", "kind": "class", "doc": "

    Base strategy contract for feature snapshot generation.

    \n", "bases": "abc.ABC"}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"fullname": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze", "modulename": "ml.feature_freezing.freeze_strategies.base", "qualname": "FreezeStrategy.freeze", "kind": "function", "doc": "

    Execute strategy-specific freeze workflow and return output payload.

    \n\n

    Args:\n config: Feature-freezing configuration.\n timestamp: Snapshot creation timestamp.\n snapshot_id: Snapshot identifier.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\n start_time: Monotonic start timestamp.\n owner: Snapshot owner identifier.

    \n\n

    Returns:\n FreezeOutput: Freeze operation output payload.

    \n", "signature": "(\tself,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\t*,\ttimestamp: str,\tsnapshot_id: str,\tsnapshot_binding_key: str | None,\tstart_time: float,\towner: str) -> ml.feature_freezing.constants.output.FreezeOutput:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"fullname": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config", "modulename": "ml.feature_freezing.freeze_strategies.base", "qualname": "FreezeStrategy.hash_config", "kind": "function", "doc": "

    Compute deterministic hash for strategy configuration object.

    \n\n

    Args:\n config: Feature-freezing configuration object.

    \n\n

    Returns:\n str: Deterministic config hash.

    \n", "signature": "(\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig) -> str:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.config": {"fullname": "ml.feature_freezing.freeze_strategies.config", "modulename": "ml.feature_freezing.freeze_strategies.config", "kind": "module", "doc": "

    A package with configurations regarding feature freezing strategies.

    \n"}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"fullname": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "modulename": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "kind": "module", "doc": "

    Validation entrypoint for feature registry strategy configs.

    \n"}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"fullname": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger", "modulename": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.config.validate_feature_registry (WARNING)>"}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"fullname": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS", "modulename": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "qualname": "SCHEMAS", "kind": "variable", "doc": "

    \n", "default_value": "{'tabular': <class 'ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig'>}"}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"fullname": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry", "modulename": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "qualname": "validate_feature_registry", "kind": "function", "doc": "

    Validate raw feature registry payload for the given strategy type.

    \n\n

    Args:\n raw_config: Raw strategy config dictionary.\n data_type: Feature strategy type identifier.

    \n\n

    Returns:\n TabularFeaturesConfig: Validated tabular strategy configuration.

    \n", "signature": "(\traw_config: dict,\tdata_type: str) -> ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular": {"fullname": "ml.feature_freezing.freeze_strategies.tabular", "modulename": "ml.feature_freezing.freeze_strategies.tabular", "kind": "module", "doc": "

    A package for freezing tabular features.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.config": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config", "kind": "module", "doc": "

    A package with configurations for tabular feature freezing.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "kind": "module", "doc": "

    Pydantic schemas for tabular feature-freezing strategy configuration.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.config.models (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "MergeHow", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['left', 'right', 'inner', 'outer', 'cross']"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "MergeValidate", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m']"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig", "kind": "class", "doc": "

    Source dataset definition used for feature freezing ingestion.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.ref", "kind": "variable", "doc": "

    Reference path for the dataset, e.g., 'data/processed'

    \n", "annotation": ": str", "default_value": "'data/processed'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.name", "kind": "variable", "doc": "

    Name of the dataset, e.g., 'hotel_bookings'

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.version", "kind": "variable", "doc": "

    Version of the dataset, e.g., 'v1'

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.format", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['csv', 'parquet']", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.merge_key", "kind": "variable", "doc": "

    Key(s) to merge datasets on, default is 'row_id'

    \n", "annotation": ": str | list[str]", "default_value": "'row_id'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.merge_how", "kind": "variable", "doc": "

    Merge type, default 'inner'

    \n", "annotation": ": Literal['left', 'right', 'inner', 'outer', 'cross']", "default_value": "'inner'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.merge_validate", "kind": "variable", "doc": "

    Merge validation for row explosion protection

    \n", "annotation": ": Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m']", "default_value": "'m:m'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.path_suffix", "kind": "variable", "doc": "

    Suffix for the dataset file, supports {format} placeholder

    \n", "annotation": ": str", "default_value": "'data.{format}'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.ensure_merge_key_list", "kind": "function", "doc": "

    Always convert merge_key to a list internally.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.validate_merge_how", "kind": "function", "doc": "

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.normalize_merge_validate", "kind": "function", "doc": "

    Normalize merge_validate to pandas-compatible strings.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "FeatureRolesConfig", "kind": "class", "doc": "

    Feature role partitioning for validation and downstream usage.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "FeatureRolesConfig.categorical", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "FeatureRolesConfig.numerical", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "FeatureRolesConfig.datetime", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig", "kind": "class", "doc": "

    Operator execution settings and reproducibility hash metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig.mode", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['materialized', 'logical']", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig.names", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig.hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig.required_features", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, list[str]]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "ConstraintsConfig", "kind": "class", "doc": "

    Data quality constraints enforced on frozen features.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "ConstraintsConfig.forbid_nulls", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "ConstraintsConfig.max_cardinality", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, int]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "StorageConfig", "kind": "class", "doc": "

    Snapshot storage format and compression settings.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "StorageConfig.format", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['parquet']", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "StorageConfig.compression", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "'snappy'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "LineageConfig", "kind": "class", "doc": "

    Lineage metadata for feature registry config provenance.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig", "kind": "class", "doc": "

    Top-level validated config for tabular feature freezing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'tabular'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.description", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.entity_key", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'row_id'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.data", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.min_rows", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "1000"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.feature_store_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.columns", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.feature_roles", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.operators", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.constraints", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.storage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.required_features_must_equal_operator_names", "kind": "function", "doc": "

    Validate operator names align with required-features mapping keys.

    \n\n

    Args:\n v: Raw operators payload.

    \n\n

    Returns:\n Any: Validated operators payload.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.validate_feature_roles_match_columns", "kind": "function", "doc": "

    Ensure feature role assignments exactly match included columns.

    \n\n

    Args:\n self: Candidate tabular features config.

    \n\n

    Returns:\n TabularFeaturesConfig: Validated config.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.validate_constraints_match_columns", "kind": "function", "doc": "

    Ensure constraint-referenced columns exist in included columns.

    \n\n

    Args:\n self: Candidate tabular features config.

    \n\n

    Returns:\n TabularFeaturesConfig: Validated config.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.validate_required_features_for_operators", "kind": "function", "doc": "

    Ensure all operator required features are present in included columns.

    \n\n

    Args:\n self: Candidate tabular features config.

    \n\n

    Returns:\n TabularFeaturesConfig: Validated config.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.features", "kind": "module", "doc": "

    Feature preparation and operator-application helpers for tabular freezing.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.features.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.features", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.features (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.features", "qualname": "prepare_features", "kind": "function", "doc": "

    Select configured feature columns and enforce entity_key presence.

    \n\n

    Args:\n data: Source dataframe.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n pd.DataFrame: Prepared feature dataframe including entity_key.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators", "modulename": "ml.feature_freezing.freeze_strategies.tabular.features", "qualname": "apply_operators", "kind": "function", "doc": "

    Apply configured feature operators after dependency checks.

    \n\n

    Args:\n X: Input feature dataframe.\n operator_names: Ordered operator names to apply.\n required_features: Operator dependency mapping.

    \n\n

    Returns:\n pd.DataFrame: Transformed feature dataframe.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\toperator_names: list[str],\trequired_features: dict[str, list[str]]) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "kind": "module", "doc": "

    Persistence and metadata helpers for tabular feature freezing outputs.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.persistence (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "freeze_parquet", "kind": "function", "doc": "

    Persist feature dataframe as parquet and return output file path.

    \n\n

    Args:\n path: Snapshot directory path.\n features: Features dataframe to persist.\n compression: Optional parquet compression codec.

    \n\n

    Returns:\n Path: Path to persisted parquet file.

    \n", "signature": "(\tpath: pathlib.Path,\t*,\tfeatures: pandas.core.frame.DataFrame,\tcompression=None) -> pathlib.Path:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "persist_feature_snapshot", "kind": "function", "doc": "

    Persist frozen feature snapshot and return snapshot/data paths.

    \n\n

    Args:\n config: Tabular feature freezing configuration.\n features: Features dataframe to persist.\n snapshot_id: Snapshot identifier.

    \n\n

    Returns:\n tuple[Path, Path]: Snapshot directory path and persisted data-file path.

    \n", "signature": "(\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\t*,\tfeatures: pandas.core.frame.DataFrame,\tsnapshot_id: str) -> tuple[pathlib.Path, pathlib.Path]:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "save_input_schema", "kind": "function", "doc": "

    Persist input schema CSV when missing.

    \n\n

    Args:\n path: Snapshot directory path.\n features: Input dataframe for schema extraction.

    \n\n

    Returns:\n None: This function writes schema side effects only.

    \n", "signature": "(path: pathlib.Path, features: pandas.core.frame.DataFrame):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "save_derived_schema", "kind": "function", "doc": "

    Persist derived schema CSV inferred from configured operators.

    \n\n

    Args:\n path: Snapshot directory path.\n features: Sample features dataframe.\n operator_names: Ordered operator names used to derive features.\n mode: Operator execution mode.

    \n\n

    Returns:\n None: This function writes schema side effects only.

    \n", "signature": "(\tpath: pathlib.Path,\t*,\tfeatures: pandas.core.frame.DataFrame,\toperator_names: list[str],\tmode: str):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "create_metadata", "kind": "function", "doc": "

    Build final metadata payload for a frozen tabular feature snapshot.

    \n\n

    Args:\n timestamp: Snapshot creation timestamp.\n snapshot_path: Snapshot directory path.\n schema_path: Input schema file path.\n data_lineage: Data lineage entries backing the features.\n in_memory_hash: Hash of in-memory features frame.\n file_hash: Hash of persisted feature artifact.\n operator_hash: Hash representing applied operators.\n config_hash: Feature-freezing config hash.\n feature_schema_hash: Hash of feature schema representation.\n runtime: Runtime metadata payload.\n features: Persisted features dataframe.\n duration: Snapshot creation duration in seconds.\n owner: Snapshot owner identifier.

    \n\n

    Returns:\n dict: Metadata payload ready for persistence.

    \n", "signature": "(\t*,\ttimestamp: str,\tsnapshot_path: pathlib.Path,\tschema_path: pathlib.Path,\tdata_lineage: list[dict],\tin_memory_hash: str,\tfile_hash: str,\toperator_hash: str,\tconfig_hash: str,\tfeature_schema_hash: str,\truntime: dict,\tfeatures: pandas.core.frame.DataFrame,\tduration: float,\tentity_key: str,\towner: str) -> dict:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline", "kind": "module", "doc": "

    A package for defining the tabular feature freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "kind": "module", "doc": "

    Execution context model for tabular feature-freezing pipeline stages.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.context (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext", "kind": "class", "doc": "

    Mutable context shared across tabular freeze pipeline steps.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\ttimestamp: str,\tsnapshot_id: str,\tstart_time: float,\towner: str,\tsnapshot_binding_key: str | None,\tdata: pandas.core.frame.DataFrame | None = None,\tdata_lineage: list[ml.types.lineage.data_lineage.DataLineageEntry] | None = None,\tfeatures: pandas.core.frame.DataFrame | None = None,\tsnapshot_path: pathlib.Path | None = None,\tschema_path: pathlib.Path | None = None,\tdata_path: pathlib.Path | None = None,\tmetadata: dict | None = None,\tconfig_hash: str | None = None)"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.config", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.timestamp", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.start_time", "kind": "variable", "doc": "

    \n", "annotation": ": float"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.owner", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.snapshot_binding_key", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.data", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.data_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.types.lineage.data_lineage.DataLineageEntry] | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.features", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.snapshot_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.schema_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.data_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.metadata", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_data", "kind": "variable", "doc": "

    Return loaded source data or raise if ingestion has not run.

    \n\n

    Returns:\n pd.DataFrame: Loaded source data.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_data_lineage", "kind": "variable", "doc": "

    Return data lineage entries or raise if not yet populated.

    \n\n

    Returns:\n list[DataLineageEntry]: Source data lineage entries.

    \n", "annotation": ": list[ml.types.lineage.data_lineage.DataLineageEntry]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_features", "kind": "variable", "doc": "

    Return prepared feature dataframe or raise if unavailable.

    \n\n

    Returns:\n pd.DataFrame: Prepared feature dataframe.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_snapshot_path", "kind": "variable", "doc": "

    Return persisted snapshot path or raise if persistence not run.

    \n\n

    Returns:\n Path: Snapshot directory path.

    \n", "annotation": ": pathlib.Path"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_schema_path", "kind": "variable", "doc": "

    Return schema path or raise if persistence not run.

    \n\n

    Returns:\n Path: Persisted input schema path.

    \n", "annotation": ": pathlib.Path"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_data_path", "kind": "variable", "doc": "

    Return persisted feature data path or raise if unset.

    \n\n

    Returns:\n Path: Persisted features data-file path.

    \n", "annotation": ": pathlib.Path"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_config_hash", "kind": "variable", "doc": "

    Return computed config hash or raise if metadata step not run.

    \n\n

    Returns:\n str: Computed feature-freezing config hash.

    \n", "annotation": ": str"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_metadata", "kind": "variable", "doc": "

    Return assembled metadata payload or raise if missing.

    \n\n

    Returns:\n dict: Assembled metadata payload.

    \n", "annotation": ": dict"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps", "kind": "module", "doc": "

    A package containing the steps of the tabular feature freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "kind": "module", "doc": "

    Ingestion step for tabular feature-freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep", "kind": "class", "doc": "

    Load source data, validate prerequisites, and attach lineage.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'ingestion'"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep.run", "kind": "function", "doc": "

    Execute ingestion workflow and update context with data and lineage.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n FreezeContext: Updated context with loaded data and lineage.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "kind": "module", "doc": "

    Metadata step for tabular feature-freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep", "kind": "class", "doc": "

    Compute hashes/runtime metadata and attach final metadata payload.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.__init__", "kind": "function", "doc": "

    Initialize metadata step with injected config-hash function.

    \n\n

    Args:\n hash_config: Callable used to hash configuration payloads.

    \n\n

    Returns:\n None: Initializes step dependencies.

    \n", "signature": "(hash_config)"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'metadata'"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.hash_config", "kind": "variable", "doc": "

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.run", "kind": "function", "doc": "

    Build and store metadata payload for the frozen snapshot.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n FreezeContext: Updated context with computed metadata.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "kind": "module", "doc": "

    Persistence step for tabular feature-freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep", "kind": "class", "doc": "

    Persist feature snapshot and associated schema artifacts.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'persistence'"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep.run", "kind": "function", "doc": "

    Persist data and schemas, then update context artifact paths.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n FreezeContext: Updated context with persisted artifact paths.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "kind": "module", "doc": "

    Preprocessing step for tabular feature-freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep", "kind": "class", "doc": "

    Prepare feature columns, validate constraints, and apply operators.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'preprocessing'"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep.run", "kind": "function", "doc": "

    Execute preprocessing workflow and store resulting features.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n FreezeContext: Updated context with prepared features.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.strategy", "modulename": "ml.feature_freezing.freeze_strategies.tabular.strategy", "kind": "module", "doc": "

    Concrete feature-freezing strategy for tabular datasets.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.strategy.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.strategy", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.strategy (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular", "modulename": "ml.feature_freezing.freeze_strategies.tabular.strategy", "qualname": "FreezeTabular", "kind": "class", "doc": "

    Run the tabular freeze pipeline and return snapshot metadata.

    \n", "bases": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy"}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze", "modulename": "ml.feature_freezing.freeze_strategies.tabular.strategy", "qualname": "FreezeTabular.freeze", "kind": "function", "doc": "

    Execute tabular freezing steps using pipeline runner orchestration.

    \n\n

    Args:\n config: Validated tabular feature-freezing configuration.\n timestamp: Run timestamp string used for metadata and paths.\n snapshot_id: Unique snapshot identifier.\n start_time: Process start time used for runtime metadata.\n owner: Owner identifier stored in snapshot metadata.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\nReturns:\n Freeze output containing persisted snapshot path and metadata.

    \n", "signature": "(\tself,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\t*,\tsnapshot_binding_key: str | None,\ttimestamp: str,\tsnapshot_id: str,\tstart_time: float,\towner: str) -> ml.feature_freezing.constants.output.FreezeOutput:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "kind": "module", "doc": "

    Validation helpers for tabular feature constraints and data types.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.validation (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "validate_input_no_nulls", "kind": "function", "doc": "

    Validate configured no-null constraints on selected feature columns.

    \n\n

    Args:\n X: Feature dataframe or series.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame | pandas.core.series.Series,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "validate_max_cardinality", "kind": "function", "doc": "

    Validate categorical cardinality does not exceed configured limits.

    \n\n

    Args:\n X: Feature dataframe or series.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame | pandas.core.series.Series,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "validate_constraints", "kind": "function", "doc": "

    Run all configured feature constraint validations.

    \n\n

    Args:\n X: Feature dataframe or series.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame | pandas.core.series.Series,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "validate_data_types", "kind": "function", "doc": "

    Validate feature dtypes against configured role-specific allowlists.

    \n\n

    Args:\n X: Feature dataframe or series.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame | pandas.core.series.Series,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.time_series": {"fullname": "ml.feature_freezing.freeze_strategies.time_series", "modulename": "ml.feature_freezing.freeze_strategies.time_series", "kind": "module", "doc": "

    Placeholder strategy module for future time-series feature freezing.

    \n"}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"fullname": "ml.feature_freezing.freeze_strategies.time_series.logger", "modulename": "ml.feature_freezing.freeze_strategies.time_series", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.time_series (WARNING)>"}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"fullname": "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries", "modulename": "ml.feature_freezing.freeze_strategies.time_series", "qualname": "FreezeTimeSeries", "kind": "class", "doc": "

    Stub strategy for time-series feature freezing workflows.

    \n", "bases": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy"}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"fullname": "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze", "modulename": "ml.feature_freezing.freeze_strategies.time_series", "qualname": "FreezeTimeSeries.freeze", "kind": "function", "doc": "

    Execute time-series freeze workflow (not yet implemented).

    \n\n

    Args:\n config: Time-series feature-freezing configuration.\n timestamp: Run timestamp string used for metadata and paths.\n snapshot_id: Unique snapshot identifier.\n start_time: Process start time used for runtime metadata.\n owner: Owner identifier stored in snapshot metadata.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\nReturns:\n Freeze output containing persisted snapshot path and metadata.

    \n", "signature": "(\tself,\tconfig,\t*,\tsnapshot_id: str,\ttimestamp: str,\tstart_time: float,\towner: str,\tsnapshot_binding_key: str | None) -> ml.feature_freezing.constants.output.FreezeOutput:", "funcdef": "def"}, "ml.feature_freezing.models": {"fullname": "ml.feature_freezing.models", "modulename": "ml.feature_freezing.models", "kind": "module", "doc": "

    A package containing pydantic models for feature freezing.

    \n"}, "ml.feature_freezing.models.freeze_runtime": {"fullname": "ml.feature_freezing.models.freeze_runtime", "modulename": "ml.feature_freezing.models.freeze_runtime", "kind": "module", "doc": "

    Schemas for the feature freezing process, including dependency versions and runtime information.

    \n"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps", "kind": "class", "doc": "

    Schema for dependency versions used in the feature freezing process.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.numpy", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.pandas", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.scikit_learn", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.pyarrow", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.pydantic", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.PyYAML", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo", "kind": "class", "doc": "

    Schema for runtime information of the feature freezing process.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo.runtime_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.Runtime", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo.deps", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.models.freeze_runtime.FreezeDeps", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo.python_executable", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.persistence": {"fullname": "ml.feature_freezing.persistence", "modulename": "ml.feature_freezing.persistence", "kind": "module", "doc": "

    A package for persisting feature-freezing-specific information.

    \n"}, "ml.feature_freezing.persistence.get_deps": {"fullname": "ml.feature_freezing.persistence.get_deps", "modulename": "ml.feature_freezing.persistence.get_deps", "kind": "module", "doc": "

    Dependency version collection utilities for freeze runtime metadata.

    \n"}, "ml.feature_freezing.persistence.get_deps.logger": {"fullname": "ml.feature_freezing.persistence.get_deps.logger", "modulename": "ml.feature_freezing.persistence.get_deps", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.persistence.get_deps (WARNING)>"}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"fullname": "ml.feature_freezing.persistence.get_deps.get_pkg_version", "modulename": "ml.feature_freezing.persistence.get_deps", "qualname": "get_pkg_version", "kind": "function", "doc": "

    Return installed package version for the provided package name.

    \n\n

    Args:\n name: Package name.

    \n\n

    Returns:\n str: Installed package version.

    \n", "signature": "(name):", "funcdef": "def"}, "ml.feature_freezing.persistence.get_deps.get_deps": {"fullname": "ml.feature_freezing.persistence.get_deps.get_deps", "modulename": "ml.feature_freezing.persistence.get_deps", "qualname": "get_deps", "kind": "function", "doc": "

    Collect key runtime dependency versions for metadata persistence.

    \n\n

    Returns:\n dict: Dependency versions keyed by package name.

    \n", "signature": "():", "funcdef": "def"}, "ml.feature_freezing.utils": {"fullname": "ml.feature_freezing.utils", "modulename": "ml.feature_freezing.utils", "kind": "module", "doc": "

    A package for feature freezing utilities.

    \n"}, "ml.feature_freezing.utils.data_loader": {"fullname": "ml.feature_freezing.utils.data_loader", "modulename": "ml.feature_freezing.utils.data_loader", "kind": "module", "doc": "

    Dataset loading and lineage assembly utilities for feature freezing.

    \n"}, "ml.feature_freezing.utils.data_loader.logger": {"fullname": "ml.feature_freezing.utils.data_loader.logger", "modulename": "ml.feature_freezing.utils.data_loader", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.utils.data_loader (WARNING)>"}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"fullname": "ml.feature_freezing.utils.data_loader.load_data_with_lineage", "modulename": "ml.feature_freezing.utils.data_loader", "qualname": "load_data_with_lineage", "kind": "function", "doc": "

    Load configured datasets, merge them, and build lineage entries.

    \n\n

    Args:\n config: Validated tabular freeze configuration.

    \n\n

    Returns:\n tuple[pd.DataFrame, list[DataLineageEntry]]: Merged dataframe and\n dataset lineage metadata.

    \n", "signature": "(\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\tsnapshot_binding_key: str | None = None) -> tuple[pandas.core.frame.DataFrame, list[ml.types.lineage.data_lineage.DataLineageEntry]]:", "funcdef": "def"}, "ml.feature_freezing.utils.get_strategy": {"fullname": "ml.feature_freezing.utils.get_strategy", "modulename": "ml.feature_freezing.utils.get_strategy", "kind": "module", "doc": "

    Factory helper for resolving registered feature freeze strategies.

    \n"}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"fullname": "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES", "modulename": "ml.feature_freezing.utils.get_strategy", "qualname": "FREEZE_STRATEGIES", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, type[ml.feature_freezing.freeze_strategies.base.FreezeStrategy]]", "default_value": "{'tabular': <class 'ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular'>, 'time_series': <class 'ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries'>}"}, "ml.feature_freezing.utils.get_strategy.logger": {"fullname": "ml.feature_freezing.utils.get_strategy.logger", "modulename": "ml.feature_freezing.utils.get_strategy", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.utils.get_strategy (WARNING)>"}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"fullname": "ml.feature_freezing.utils.get_strategy.get_strategy", "modulename": "ml.feature_freezing.utils.get_strategy", "qualname": "get_strategy", "kind": "function", "doc": "

    Instantiate strategy implementation for the requested data type.

    \n\n

    Args:\n data_type: Feature data type key used to resolve a freeze strategy.

    \n\n

    Returns:\n Instantiated freeze strategy matching data_type.

    \n", "signature": "(\tdata_type: str) -> ml.feature_freezing.freeze_strategies.base.FreezeStrategy:", "funcdef": "def"}, "ml.feature_freezing.utils.get_strategy_type": {"fullname": "ml.feature_freezing.utils.get_strategy_type", "modulename": "ml.feature_freezing.utils.get_strategy_type", "kind": "module", "doc": "

    Helpers for resolving feature freeze strategy type from raw config.

    \n"}, "ml.feature_freezing.utils.get_strategy_type.logger": {"fullname": "ml.feature_freezing.utils.get_strategy_type.logger", "modulename": "ml.feature_freezing.utils.get_strategy_type", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.utils.get_strategy_type (WARNING)>"}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"fullname": "ml.feature_freezing.utils.get_strategy_type.get_strategy_type", "modulename": "ml.feature_freezing.utils.get_strategy_type", "qualname": "get_strategy_type", "kind": "function", "doc": "

    Extract and validate the required strategy type field.

    \n\n

    Args:\n cfg_raw: Raw feature registry configuration dictionary.

    \n\n

    Returns:\n Strategy type string from the configuration.

    \n", "signature": "(cfg_raw: dict) -> str:", "funcdef": "def"}, "ml.feature_freezing.utils.operators": {"fullname": "ml.feature_freezing.utils.operators", "modulename": "ml.feature_freezing.utils.operators", "kind": "module", "doc": "

    Operator hashing utility for operator integrity.

    \n"}, "ml.feature_freezing.utils.operators.logger": {"fullname": "ml.feature_freezing.utils.operators.logger", "modulename": "ml.feature_freezing.utils.operators", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.utils.operators (WARNING)>"}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"fullname": "ml.feature_freezing.utils.operators.generate_operator_hash", "modulename": "ml.feature_freezing.utils.operators", "qualname": "generate_operator_hash", "kind": "function", "doc": "

    Generate deterministic hash for operator set and runtime context.

    \n\n

    Args:\n operator_names: Operator names included in the freeze process.

    \n\n

    Returns:\n str: Deterministic operator hash.

    \n", "signature": "(operator_names):", "funcdef": "def"}, "ml.features": {"fullname": "ml.features", "modulename": "ml.features", "kind": "module", "doc": "

    A package for feature-specific logic.

    \n"}, "ml.features.extraction": {"fullname": "ml.features.extraction", "modulename": "ml.features.extraction", "kind": "module", "doc": "

    A package for feature extraction.

    \n"}, "ml.features.extraction.cat_features": {"fullname": "ml.features.extraction.cat_features", "modulename": "ml.features.extraction.cat_features", "kind": "module", "doc": "

    Utilities for resolving categorical feature columns for model training.

    \n"}, "ml.features.extraction.cat_features.get_cat_features": {"fullname": "ml.features.extraction.cat_features.get_cat_features", "modulename": "ml.features.extraction.cat_features", "qualname": "get_cat_features", "kind": "function", "doc": "

    Return categorical feature names from input/derived schemas with segmentation rules.

    \n\n

    Args:\n model_cfg: Validated training or search model configuration.\n input_schema: Schema dataframe for raw input features.\n derived_schema: Schema dataframe for derived features.

    \n\n

    Returns:\n Combined list of categorical input and derived feature names.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tinput_schema: pandas.core.frame.DataFrame,\tderived_schema: pandas.core.frame.DataFrame) -> list[str]:", "funcdef": "def"}, "ml.features.hashing": {"fullname": "ml.features.hashing", "modulename": "ml.features.hashing", "kind": "module", "doc": "

    A package for feature hashing.

    \n"}, "ml.features.hashing.hash_arrow_metadata": {"fullname": "ml.features.hashing.hash_arrow_metadata", "modulename": "ml.features.hashing.hash_arrow_metadata", "kind": "module", "doc": "

    Hashing helpers for Arrow file metadata integrity fingerprints.

    \n"}, "ml.features.hashing.hash_arrow_metadata.logger": {"fullname": "ml.features.hashing.hash_arrow_metadata.logger", "modulename": "ml.features.hashing.hash_arrow_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.hashing.hash_arrow_metadata (WARNING)>"}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"fullname": "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata", "modulename": "ml.features.hashing.hash_arrow_metadata", "qualname": "hash_arrow_metadata", "kind": "function", "doc": "

    Compute a deterministic hash from Arrow schema and batch metadata.

    \n\n

    Args:\n path: Path to the Arrow file to fingerprint.

    \n\n

    Returns:\n Deterministic metadata hash for the Arrow file.

    \n", "signature": "(path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.features.hashing.hash_dataframe_content": {"fullname": "ml.features.hashing.hash_dataframe_content", "modulename": "ml.features.hashing.hash_dataframe_content", "kind": "module", "doc": "

    Hashing helpers for in-memory dataframe content fingerprints.

    \n"}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"fullname": "ml.features.hashing.hash_dataframe_content.hash_dataframe_content", "modulename": "ml.features.hashing.hash_dataframe_content", "qualname": "hash_dataframe_content", "kind": "function", "doc": "

    Return an MD5 hash of dataframe row content excluding index values.

    \n\n

    Args:\n X: Dataframe whose row content should be hashed.

    \n\n

    Returns:\n Content hash string for the dataframe rows.

    \n", "signature": "(X: pandas.core.frame.DataFrame) -> str:", "funcdef": "def"}, "ml.features.hashing.hash_feature_schema": {"fullname": "ml.features.hashing.hash_feature_schema", "modulename": "ml.features.hashing.hash_feature_schema", "kind": "module", "doc": "

    Hashing helpers for feature schema structure fingerprints.

    \n"}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"fullname": "ml.features.hashing.hash_feature_schema.hash_feature_schema", "modulename": "ml.features.hashing.hash_feature_schema", "qualname": "hash_feature_schema", "kind": "function", "doc": "

    Compute a stable hash from feature names and dtype signatures.

    \n\n

    Args:\n X: Dataframe whose schema should be hashed.

    \n\n

    Returns:\n Stable schema hash string.

    \n", "signature": "(X: pandas.core.frame.DataFrame) -> str:", "funcdef": "def"}, "ml.features.hashing.hash_parquet_metadata": {"fullname": "ml.features.hashing.hash_parquet_metadata", "modulename": "ml.features.hashing.hash_parquet_metadata", "kind": "module", "doc": "

    Hashing helpers for Parquet metadata integrity fingerprints.

    \n"}, "ml.features.hashing.hash_parquet_metadata.logger": {"fullname": "ml.features.hashing.hash_parquet_metadata.logger", "modulename": "ml.features.hashing.hash_parquet_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.hashing.hash_parquet_metadata (WARNING)>"}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"fullname": "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata", "modulename": "ml.features.hashing.hash_parquet_metadata", "qualname": "hash_parquet_metadata", "kind": "function", "doc": "

    Compute a deterministic hash from Parquet schema and statistics metadata.

    \n\n

    Args:\n path: Path to the Parquet file to fingerprint.

    \n\n

    Returns:\n Deterministic metadata hash for the Parquet file.

    \n", "signature": "(path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.features.hashing.safe": {"fullname": "ml.features.hashing.safe", "modulename": "ml.features.hashing.safe", "kind": "module", "doc": "

    Small helpers for safe string conversion during metadata hashing.

    \n"}, "ml.features.hashing.safe.safe": {"fullname": "ml.features.hashing.safe.safe", "modulename": "ml.features.hashing.safe", "qualname": "safe", "kind": "function", "doc": "

    Convert optional values to a deterministic string representation.

    \n\n

    Args:\n val: Value to normalize for hashing serialization.

    \n\n

    Returns:\n Deterministic string representation.

    \n", "signature": "(val) -> str:", "funcdef": "def"}, "ml.features.loading": {"fullname": "ml.features.loading", "modulename": "ml.features.loading", "kind": "module", "doc": "

    A package for feature loading.

    \n"}, "ml.features.loading.data_loader": {"fullname": "ml.features.loading.data_loader", "modulename": "ml.features.loading.data_loader", "kind": "module", "doc": "

    Data loading utilities for assembling merged feature datasets from lineage.

    \n"}, "ml.features.loading.data_loader.logger": {"fullname": "ml.features.loading.data_loader.logger", "modulename": "ml.features.loading.data_loader", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.data_loader (WARNING)>"}, "ml.features.loading.data_loader.required_fields": {"fullname": "ml.features.loading.data_loader.required_fields", "modulename": "ml.features.loading.data_loader", "qualname": "required_fields", "kind": "variable", "doc": "

    \n", "default_value": "['ref', 'name', 'version', 'format', 'path_suffix', 'merge_key', 'snapshot_id', 'path', 'loader_validation_hash', 'data_hash', 'row_count', 'column_count']"}, "ml.features.loading.data_loader.lineage_identity": {"fullname": "ml.features.loading.data_loader.lineage_identity", "modulename": "ml.features.loading.data_loader", "qualname": "lineage_identity", "kind": "function", "doc": "

    Return the identity tuple used for lineage consistency comparisons.

    \n\n

    Args:\n entry: Dataset lineage entry.

    \n\n

    Returns:\n tuple: Identity fields used to compare expected and actual lineage.

    \n", "signature": "(entry: ml.types.lineage.data_lineage.DataLineageEntry) -> tuple:", "funcdef": "def"}, "ml.features.loading.data_loader.load_and_validate_data": {"fullname": "ml.features.loading.data_loader.load_and_validate_data", "modulename": "ml.features.loading.data_loader", "qualname": "load_and_validate_data", "kind": "function", "doc": "

    Load, merge, hash-validate, and lineage-validate datasets from lineage entries\nin DAG-based topological order to respect merge dependencies.

    \n\n

    Args:\n input_lineage: Iterable of dataset lineage entries to load and merge.

    \n\n

    Returns:\n pd.DataFrame: Fully merged dataframe assembled from all lineage datasets.

    \n", "signature": "(\tinput_lineage: Iterable[ml.types.lineage.data_lineage.DataLineageEntry]) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.features.loading.features_and_target": {"fullname": "ml.features.loading.features_and_target", "modulename": "ml.features.loading.features_and_target", "kind": "module", "doc": "

    Orchestration utilities for loading, validating, and aligning features and targets.

    \n"}, "ml.features.loading.features_and_target.logger": {"fullname": "ml.features.loading.features_and_target.logger", "modulename": "ml.features.loading.features_and_target", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.features_and_target (WARNING)>"}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"fullname": "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD", "modulename": "ml.features.loading.features_and_target", "qualname": "COVERAGE_WARNING_THRESHOLD", "kind": "variable", "doc": "

    \n", "default_value": "0.9"}, "ml.features.loading.features_and_target.load_features_and_target": {"fullname": "ml.features.loading.features_and_target.load_features_and_target", "modulename": "ml.features.loading.features_and_target", "qualname": "load_features_and_target", "kind": "function", "doc": "

    Load feature sets and target, apply validations, and return (X, y, lineage).

    \n\n

    Args:\n model_cfg: Validated model configuration driving data loading and validation behavior.\n snapshot_selection: Optional pre-resolved snapshot selection descriptors.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\n drop_entity_key: Whether to drop entity_key from output features.\n strict: Whether strict hash/integrity checks should be enforced.

    \n\n

    Returns:\n tuple[pd.DataFrame, pd.Series, list[FeatureLineage]]: Features, target series, and feature-lineage metadata.

    \n\n

    Raises:\n DataError: If feature/target integrity checks fail, required metadata is\n invalid, or segmentation/alignment leaves invalid data.

    \n\n

    Notes:\n When snapshot_selection is not supplied, snapshots are resolved from\n the feature-store config and then validated for schema, hashing, lineage,\n and row alignment before target extraction.

    \n\n

    Side Effects:\n Performs disk reads across feature snapshots/metadata and emits extensive\n validation logs.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tsnapshot_selection: list[dict] | None,\tsnapshot_binding_key: str | None = None,\tdrop_entity_key: bool = True,\tstrict: bool = True) -> tuple[pandas.core.frame.DataFrame, pandas.core.series.Series, list[ml.modeling.models.feature_lineage.FeatureLineage], str]:", "funcdef": "def"}, "ml.features.loading.get_target": {"fullname": "ml.features.loading.get_target", "modulename": "ml.features.loading.get_target", "kind": "module", "doc": "

    Utilities for resolving and building targets from registered strategies.

    \n"}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"fullname": "ml.features.loading.get_target.TARGET_STRATEGIES", "modulename": "ml.features.loading.get_target", "qualname": "TARGET_STRATEGIES", "kind": "variable", "doc": "

    \n", "annotation": ": dict[tuple[str, str], type[ml.targets.base.TargetStrategy]]", "default_value": "{('adr', 'v1'): <class 'ml.targets.adr.v1.AdrTargetV1'>, ('lead_time', 'v1'): <class 'ml.targets.lead_time.v1.LeadTimeTargetV1'>, ('no_show', 'v1'): <class 'ml.targets.no_show.v1.NoShowTargetV1'>, ('is_repeated_guest', 'v1'): <class 'ml.targets.repeated_guest.v1.RepeatedGuestTargetV1'>, ('room_upgrade', 'v1'): <class 'ml.targets.room_upgrade.v1.RoomUpgradeTargetV1'>, ('total_of_special_requests', 'v1'): <class 'ml.targets.special_requests.v1.SpecialRequestsTargetV1'>, ('is_canceled', 'v1'): <class 'ml.targets.cancellation.v1.CancellationTargetV1'>}"}, "ml.features.loading.get_target.logger": {"fullname": "ml.features.loading.get_target.logger", "modulename": "ml.features.loading.get_target", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.get_target (WARNING)>"}, "ml.features.loading.get_target.get_target_with_entity_key": {"fullname": "ml.features.loading.get_target.get_target_with_entity_key", "modulename": "ml.features.loading.get_target", "qualname": "get_target_with_entity_key", "kind": "function", "doc": "

    Build target dataframe with entity_key using a registry-resolved strategy.

    \n\n

    Args:\n data: Source dataframe containing raw columns required for target derivation.\n key: Target strategy registry key as (target_name, target_version).\n entity_key: The name of the entity key column to use for traceability.

    \n\n

    Returns:\n pd.DataFrame: Target dataframe including the entity_key column.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tkey: tuple[str, str],\tentity_key: str) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.features.loading.resolve_feature_snapshots": {"fullname": "ml.features.loading.resolve_feature_snapshots", "modulename": "ml.features.loading.resolve_feature_snapshots", "kind": "module", "doc": "

    Helpers for resolving feature snapshot directories for data loading.

    \n"}, "ml.features.loading.resolve_feature_snapshots.logger": {"fullname": "ml.features.loading.resolve_feature_snapshots.logger", "modulename": "ml.features.loading.resolve_feature_snapshots", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.resolve_feature_snapshots (WARNING)>"}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"fullname": "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots", "modulename": "ml.features.loading.resolve_feature_snapshots", "qualname": "resolve_feature_snapshots", "kind": "function", "doc": "

    Resolve snapshot metadata for each feature set using binding or latest snapshot.

    \n\n

    Args:\n feature_store_path: Root path of the feature store.\n feature_sets: Configured feature-set specifications.\n snapshot_binding: Optional explicit snapshot mapping, typically from training metadata.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\nReturns:\n list[dict]: Resolved snapshot descriptors containing feature spec, path, id, and metadata.

    \n", "signature": "(\tfeature_store_path: pathlib.Path,\tfeature_sets: list,\tsnapshot_binding: list[ml.modeling.models.feature_lineage.FeatureLineage] | None = None,\tsnapshot_binding_key: str | None = None) -> list[dict]:", "funcdef": "def"}, "ml.features.loading.schemas": {"fullname": "ml.features.loading.schemas", "modulename": "ml.features.loading.schemas", "kind": "module", "doc": "

    Schema loading and aggregation utilities for configured feature sets.

    \n"}, "ml.features.loading.schemas.logger": {"fullname": "ml.features.loading.schemas.logger", "modulename": "ml.features.loading.schemas", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.schemas (WARNING)>"}, "ml.features.loading.schemas.load_feature_set_schemas": {"fullname": "ml.features.loading.schemas.load_feature_set_schemas", "modulename": "ml.features.loading.schemas", "qualname": "load_feature_set_schemas", "kind": "function", "doc": "

    Load input and derived schema CSVs for a single feature-set version path.

    \n\n

    Args:\n features_path: Feature-set version directory containing schema files.\n file_path: Path to the feature set snapshot for which to load schemas.

    \n\n

    Returns:\n tuple[pd.DataFrame, pd.DataFrame]: Input schema and derived schema dataframes.

    \n", "signature": "(\tfeatures_path: pathlib.Path,\tfile_path: pathlib.Path) -> tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.features.loading.schemas.aggregate_schema_dfs": {"fullname": "ml.features.loading.schemas.aggregate_schema_dfs", "modulename": "ml.features.loading.schemas", "qualname": "aggregate_schema_dfs", "kind": "function", "doc": "

    Aggregate schema rows while preserving first occurrence per feature name.

    \n\n

    Args:\n schemas: List of schema dataframes to combine.

    \n\n

    Returns:\n pd.DataFrame: Aggregated schema dataframe with deduplicated features.

    \n", "signature": "(\tschemas: list[pandas.core.frame.DataFrame]) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.features.loading.schemas.load_schemas": {"fullname": "ml.features.loading.schemas.load_schemas", "modulename": "ml.features.loading.schemas", "qualname": "load_schemas", "kind": "function", "doc": "

    Load and aggregate input/derived schemas for all configured feature sets.

    \n\n

    Args:\n model_cfg: Validated model configuration containing feature-store settings.\n feature_lineage: Feature lineage information for validation.

    \n\n

    Returns:\n tuple[pd.DataFrame, pd.DataFrame]: Aggregated input and derived schemas.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage]) -> tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.features.segmentation": {"fullname": "ml.features.segmentation", "modulename": "ml.features.segmentation", "kind": "module", "doc": "

    A package for feature segmentation.

    \n"}, "ml.features.segmentation.segment": {"fullname": "ml.features.segmentation.segment", "modulename": "ml.features.segmentation.segment", "kind": "module", "doc": "

    Segmentation utilities for filtering datasets by configured criteria.

    \n"}, "ml.features.segmentation.segment.logger": {"fullname": "ml.features.segmentation.segment.logger", "modulename": "ml.features.segmentation.segment", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.segmentation.segment (WARNING)>"}, "ml.features.segmentation.segment.apply_segmentation": {"fullname": "ml.features.segmentation.segment.apply_segmentation", "modulename": "ml.features.segmentation.segment", "qualname": "apply_segmentation", "kind": "function", "doc": "

    Apply configured segmentation filters and remove segmentation columns.

    \n\n

    Args:\n data: Input dataframe before segmentation filters.\n seg_cfg: Segmentation configuration containing enabled flag and filters.

    \n\n

    Returns:\n pd.DataFrame: Filtered dataframe with segmentation columns removed.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tseg_cfg: ml.config.schemas.model_specs.SegmentationConfig) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.features.splitting": {"fullname": "ml.features.splitting", "modulename": "ml.features.splitting", "kind": "module", "doc": "

    A package for splitting features.

    \n"}, "ml.features.splitting.splitting": {"fullname": "ml.features.splitting.splitting", "modulename": "ml.features.splitting.splitting", "kind": "module", "doc": "

    Utilities for train/validation/test splitting of feature datasets.

    \n"}, "ml.features.splitting.splitting.logger": {"fullname": "ml.features.splitting.splitting.logger", "modulename": "ml.features.splitting.splitting", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.splitting.splitting (WARNING)>"}, "ml.features.splitting.splitting.SPLIT": {"fullname": "ml.features.splitting.splitting.SPLIT", "modulename": "ml.features.splitting.splitting", "qualname": "SPLIT", "kind": "variable", "doc": "

    \n", "default_value": "tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame, pandas.core.series.Series, pandas.core.series.Series]"}, "ml.features.splitting.splitting.random_split": {"fullname": "ml.features.splitting.splitting.random_split", "modulename": "ml.features.splitting.splitting", "qualname": "random_split", "kind": "function", "doc": "

    Perform a random train-test split with optional stratification.

    \n\n

    Args:\n X: Feature dataframe.\n y: Target series.\n test_size: Fraction reserved for the holdout partition.\n random_state: Random seed used by sklearn split.\n stratify: Optional stratification series.

    \n\n

    Returns:\n SPLIT: Split tuple (X_train, X_test, y_train, y_test).

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\ttest_size: float,\trandom_state: int,\tstratify: pandas.core.series.Series | None) -> tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame, pandas.core.series.Series, pandas.core.series.Series]:", "funcdef": "def"}, "ml.features.splitting.splitting.split_data": {"fullname": "ml.features.splitting.splitting.split_data", "modulename": "ml.features.splitting.splitting", "qualname": "split_data", "kind": "function", "doc": "

    Dispatch to the configured split strategy and return split partitions.

    \n\n

    Args:\n X: Feature dataframe.\n y: Target series.\n split_cfg: Split strategy configuration.\n test_size: Holdout fraction for this split call.

    \n\n

    Returns:\n SPLIT: Split tuple (X_1, X_2, y_1, y_2) for the configured strategy.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\tsplit_cfg: ml.config.schemas.model_specs.SplitConfig,\ttest_size: float) -> tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame, pandas.core.series.Series, pandas.core.series.Series]:", "funcdef": "def"}, "ml.features.splitting.splitting.get_splits_tabular": {"fullname": "ml.features.splitting.splitting.get_splits_tabular", "modulename": "ml.features.splitting.splitting", "qualname": "get_splits_tabular", "kind": "function", "doc": "

    Produce tabular train/val/test splits and corresponding summary statistics.

    \n\n

    Args:\n X: Feature dataframe.\n y: Target series.\n split_cfg: Split configuration with test/validation fractions.\n task_cfg: Task configuration used for classification-specific metrics.

    \n\n

    Returns:\n tuple[TabularSplits, AllSplitsInfo]: Materialized split data and split metadata.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\t*,\tsplit_cfg: ml.config.schemas.model_specs.SplitConfig,\ttask_cfg: ml.config.schemas.model_specs.TaskConfig) -> tuple[ml.types.splits.TabularSplits, ml.types.splits.AllSplitsInfo]:", "funcdef": "def"}, "ml.features.splitting.splitting.get_splits": {"fullname": "ml.features.splitting.splitting.get_splits", "modulename": "ml.features.splitting.splitting", "qualname": "get_splits", "kind": "function", "doc": "

    Route split logic by data type and return splits with metadata.

    \n\n

    Args:\n X: Feature dataframe.\n y: Target series.\n split_cfg: Split configuration.\n data_type: Dataset modality selector.\n task_cfg: Task configuration for split metadata generation.

    \n\n

    Returns:\n tuple[TabularSplits, AllSplitsInfo]: Computed splits and associated split info.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\t*,\tsplit_cfg: ml.config.schemas.model_specs.SplitConfig,\tdata_type: Literal['tabular', 'time-series'],\ttask_cfg: ml.config.schemas.model_specs.TaskConfig) -> tuple[ml.types.splits.TabularSplits, ml.types.splits.AllSplitsInfo]:", "funcdef": "def"}, "ml.features.transforms": {"fullname": "ml.features.transforms", "modulename": "ml.features.transforms", "kind": "module", "doc": "

    A package for feature transformations.

    \n"}, "ml.features.transforms.transform_target": {"fullname": "ml.features.transforms.transform_target", "modulename": "ml.features.transforms.transform_target", "kind": "module", "doc": "

    Utilities for forward and inverse transformations of target variables.

    \n"}, "ml.features.transforms.transform_target.logger": {"fullname": "ml.features.transforms.transform_target.logger", "modulename": "ml.features.transforms.transform_target", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.transforms.transform_target (WARNING)>"}, "ml.features.transforms.transform_target.transform_target": {"fullname": "ml.features.transforms.transform_target.transform_target", "modulename": "ml.features.transforms.transform_target", "qualname": "transform_target", "kind": "function", "doc": "

    Apply configured target transformation for a named dataset split.

    \n\n

    Args:\n y: Target values for a single split.\n transform_config: Target transformation configuration.\n split_name: Human-readable split label for logging.

    \n\n

    Returns:\n pd.Series: Transformed target values indexed like input y.

    \n", "signature": "(\ty: pandas.core.series.Series,\t*,\ttransform_config: ml.config.schemas.model_specs.TargetTransformConfig,\tsplit_name: str) -> pandas.core.series.Series:", "funcdef": "def"}, "ml.features.transforms.transform_target.inverse_transform_target": {"fullname": "ml.features.transforms.transform_target.inverse_transform_target", "modulename": "ml.features.transforms.transform_target", "qualname": "inverse_transform_target", "kind": "function", "doc": "

    Apply inverse transformation to transformed target predictions or values.

    \n\n

    Args:\n y_transformed: Transformed target array.\n transform_config: Target transformation configuration.\n split_name: Human-readable split label for logging.

    \n\n

    Returns:\n NDArray[np.floating]: Values mapped back to the original target scale.

    \n", "signature": "(\ty_transformed: numpy.ndarray,\t*,\ttransform_config: ml.config.schemas.model_specs.TargetTransformConfig,\tsplit_name: str) -> numpy.ndarray[typing.Any, numpy.dtype[numpy.floating]]:", "funcdef": "def"}, "ml.features.validation": {"fullname": "ml.features.validation", "modulename": "ml.features.validation", "kind": "module", "doc": "

    A package for feature validation.

    \n"}, "ml.features.validation.normalize_dtype": {"fullname": "ml.features.validation.normalize_dtype", "modulename": "ml.features.validation.normalize_dtype", "kind": "module", "doc": "

    Utilities for normalizing pandas dtypes to canonical string labels.

    \n"}, "ml.features.validation.normalize_dtype.normalize_dtype": {"fullname": "ml.features.validation.normalize_dtype.normalize_dtype", "modulename": "ml.features.validation.normalize_dtype", "qualname": "normalize_dtype", "kind": "function", "doc": "

    Normalize pandas and extension dtypes to stable string categories.

    \n\n

    Args:\n dtype: Pandas or NumPy dtype object.

    \n\n

    Returns:\n Canonical dtype category string.

    \n", "signature": "(dtype) -> str:", "funcdef": "def"}, "ml.features.validation.validate_contract": {"fullname": "ml.features.validation.validate_contract", "modulename": "ml.features.validation.validate_contract", "kind": "module", "doc": "

    Validation helpers for model and feature-pipeline compatibility contracts.

    \n"}, "ml.features.validation.validate_contract.logger": {"fullname": "ml.features.validation.validate_contract.logger", "modulename": "ml.features.validation.validate_contract", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_contract (WARNING)>"}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"fullname": "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract", "modulename": "ml.features.validation.validate_contract", "qualname": "validate_model_feature_pipeline_contract", "kind": "function", "doc": "

    Validate task and categorical handling compatibility between model and pipeline.

    \n\n

    Args:\n model_cfg: Validated training or search model configuration.\n pipeline_cfg: Pipeline configuration object.\n cat_features: Optional categorical feature list required by some algorithms.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tpipeline_cfg: ml.pipelines.models.PipelineConfig,\tcat_features: list | None = None) -> None:", "funcdef": "def"}, "ml.features.validation.validate_feature_set": {"fullname": "ml.features.validation.validate_feature_set", "modulename": "ml.features.validation.validate_feature_set", "kind": "module", "doc": "

    Validation utilities for feature-set schema and integrity hash checks.

    \n"}, "ml.features.validation.validate_feature_set.logger": {"fullname": "ml.features.validation.validate_feature_set.logger", "modulename": "ml.features.validation.validate_feature_set", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_feature_set (WARNING)>"}, "ml.features.validation.validate_feature_set.validate_feature_set": {"fullname": "ml.features.validation.validate_feature_set.validate_feature_set", "modulename": "ml.features.validation.validate_feature_set", "qualname": "validate_feature_set", "kind": "function", "doc": "

    Validate required columns and metadata hash consistency for a feature set.

    \n\n

    Args:\n feature_set: Feature dataframe to validate.\n metadata: Snapshot metadata containing expected hashes.\n file_path: Feature file path used for file-hash validation.\n strict: Whether to enforce strict in-memory and file hash checks.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tfeature_set: pandas.core.frame.DataFrame,\t*,\tmetadata: dict,\tfile_path: pathlib.Path,\tstrict: bool = True) -> None:", "funcdef": "def"}, "ml.features.validation.validate_feature_target_entity_key": {"fullname": "ml.features.validation.validate_feature_target_entity_key", "modulename": "ml.features.validation.validate_feature_target_entity_key", "kind": "module", "doc": "

    Validation helpers ensuring row-id alignment between features and target.

    \n"}, "ml.features.validation.validate_feature_target_entity_key.logger": {"fullname": "ml.features.validation.validate_feature_target_entity_key.logger", "modulename": "ml.features.validation.validate_feature_target_entity_key", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_feature_target_entity_key (WARNING)>"}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"fullname": "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key", "modulename": "ml.features.validation.validate_feature_target_entity_key", "qualname": "validate_feature_target_entity_key", "kind": "function", "doc": "

    Validate that all feature entity_key values are present in target data.

    \n\n

    Args:\n X: Feature dataframe containing entity_key values.\n y_with_entity_key: Target dataframe containing entity_key values.\n entity_key: The name of the entity key column.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty_with_entity_key: pandas.core.frame.DataFrame,\tentity_key: str) -> None:", "funcdef": "def"}, "ml.features.validation.validate_operators": {"fullname": "ml.features.validation.validate_operators", "modulename": "ml.features.validation.validate_operators", "kind": "module", "doc": "

    \n"}, "ml.features.validation.validate_operators.logger": {"fullname": "ml.features.validation.validate_operators.logger", "modulename": "ml.features.validation.validate_operators", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_operators (WARNING)>"}, "ml.features.validation.validate_operators.validate_operators": {"fullname": "ml.features.validation.validate_operators.validate_operators", "modulename": "ml.features.validation.validate_operators", "qualname": "validate_operators", "kind": "function", "doc": "

    Validate operator names and verify computed hash matches expected hash.

    \n\n

    Args:\n operators: Operator names to validate.\n operator_hash: Expected operator hash value.\n file_path: Optional file path for logging context in case of validation failure.

    \n\n

    Returns:\n None: Raises on validation/hash mismatch failure.

    \n", "signature": "(\toperators: list,\toperator_hash: str | None,\tfile_path: str | None = None) -> None:", "funcdef": "def"}, "ml.features.validation.validate_set": {"fullname": "ml.features.validation.validate_set", "modulename": "ml.features.validation.validate_set", "kind": "module", "doc": "

    Validation helpers for set-level consistency across feature snapshots.

    \n"}, "ml.features.validation.validate_set.logger": {"fullname": "ml.features.validation.validate_set.logger", "modulename": "ml.features.validation.validate_set", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_set (WARNING)>"}, "ml.features.validation.validate_set.validate_set": {"fullname": "ml.features.validation.validate_set.validate_set", "modulename": "ml.features.validation.validate_set", "qualname": "validate_set", "kind": "function", "doc": "

    Ensure all feature sets share the same expected hash/category value.

    \n\n

    Args:\n hash_type: Hash/category label being validated.\n hashes: Set of observed hash values across feature sets.\n feature_sets: Feature-set descriptors used for error context.

    \n\n

    Returns:\n None.

    \n", "signature": "(hash_type: str, hashes: set, feature_sets: list) -> None:", "funcdef": "def"}, "ml.features.validation.validate_snapshot_ids": {"fullname": "ml.features.validation.validate_snapshot_ids", "modulename": "ml.features.validation.validate_snapshot_ids", "kind": "module", "doc": "

    Validation helpers for expected versus actual feature snapshot IDs.

    \n"}, "ml.features.validation.validate_snapshot_ids.logger": {"fullname": "ml.features.validation.validate_snapshot_ids.logger", "modulename": "ml.features.validation.validate_snapshot_ids", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_snapshot_ids (WARNING)>"}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"fullname": "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids", "modulename": "ml.features.validation.validate_snapshot_ids", "qualname": "validate_snapshot_ids", "kind": "function", "doc": "

    Validate that loaded feature lineage snapshot IDs match requested selection.

    \n\n

    Args:\n feature_lineage: Loaded feature lineage records.\n snapshot_selection: Snapshot selections expected from training metadata.

    \n\n

    Returns:\n None.

    \n", "signature": "(feature_lineage, snapshot_selection):", "funcdef": "def"}, "ml.features.validation.validate_target": {"fullname": "ml.features.validation.validate_target", "modulename": "ml.features.validation.validate_target", "kind": "module", "doc": "

    Validation utilities for classification and regression target constraints.

    \n"}, "ml.features.validation.validate_target.logger": {"fullname": "ml.features.validation.validate_target.logger", "modulename": "ml.features.validation.validate_target", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_target (WARNING)>"}, "ml.features.validation.validate_target.validate_min_class_count": {"fullname": "ml.features.validation.validate_target.validate_min_class_count", "modulename": "ml.features.validation.validate_target", "qualname": "validate_min_class_count", "kind": "function", "doc": "

    Validate minimum sample count requirements across target classes.

    \n\n

    Args:\n y: Target class labels.\n min_class_count: Minimum count required per class.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(y: pandas.core.series.Series, min_class_count: int):", "funcdef": "def"}, "ml.features.validation.validate_target.validate_target": {"fullname": "ml.features.validation.validate_target.validate_target", "modulename": "ml.features.validation.validate_target", "qualname": "validate_target", "kind": "function", "doc": "

    Validate target nullability, dtype, and task-specific target constraints.

    \n\n

    Args:\n y: Target series.\n model_cfg: Model configuration with target constraints.\n data: Full data frame used for additional class-count checks.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\t*,\ty: pandas.core.series.Series,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig | ml.config.schemas.model_cfg.SearchModelConfig,\tdata: pandas.core.frame.DataFrame) -> None:", "funcdef": "def"}, "ml.io": {"fullname": "ml.io", "modulename": "ml.io", "kind": "module", "doc": "

    A package for input/output code.

    \n"}, "ml.io.formatting": {"fullname": "ml.io.formatting", "modulename": "ml.io.formatting", "kind": "module", "doc": "

    A package for i/o formatting.

    \n"}, "ml.io.formatting.iso_no_colon": {"fullname": "ml.io.formatting.iso_no_colon", "modulename": "ml.io.formatting.iso_no_colon", "kind": "module", "doc": "

    Datetime formatting helpers for filesystem-safe timestamp strings.

    \n"}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"fullname": "ml.io.formatting.iso_no_colon.iso_no_colon", "modulename": "ml.io.formatting.iso_no_colon", "qualname": "iso_no_colon", "kind": "function", "doc": "

    Return ISO timestamp without colon characters in the time component.

    \n\n

    Args:\n dt: Datetime-like object supporting isoformat.

    \n\n

    Returns:\n Filesystem-safe ISO timestamp string.

    \n", "signature": "(dt):", "funcdef": "def"}, "ml.io.formatting.str_to_bool": {"fullname": "ml.io.formatting.str_to_bool", "modulename": "ml.io.formatting.str_to_bool", "kind": "module", "doc": "

    Parsing helpers for robust command-line boolean argument handling.

    \n"}, "ml.io.formatting.str_to_bool.logger": {"fullname": "ml.io.formatting.str_to_bool.logger", "modulename": "ml.io.formatting.str_to_bool", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.io.formatting.str_to_bool (WARNING)>"}, "ml.io.formatting.str_to_bool.str_to_bool": {"fullname": "ml.io.formatting.str_to_bool.str_to_bool", "modulename": "ml.io.formatting.str_to_bool", "qualname": "str_to_bool", "kind": "function", "doc": "

    Convert common truthy/falsy string tokens to boolean values.

    \n\n

    Args:\n v: Boolean or string token representing a boolean value.

    \n\n

    Returns:\n Parsed boolean value.

    \n", "signature": "(v):", "funcdef": "def"}, "ml.io.persistence": {"fullname": "ml.io.persistence", "modulename": "ml.io.persistence", "kind": "module", "doc": "

    A package for persisting general information.

    \n"}, "ml.io.persistence.save_metadata": {"fullname": "ml.io.persistence.save_metadata", "modulename": "ml.io.persistence.save_metadata", "kind": "module", "doc": "

    Persistence utilities for writing experiment metadata artifacts.

    \n"}, "ml.io.persistence.save_metadata.logger": {"fullname": "ml.io.persistence.save_metadata.logger", "modulename": "ml.io.persistence.save_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.io.persistence.save_metadata (WARNING)>"}, "ml.io.persistence.save_metadata.save_metadata": {"fullname": "ml.io.persistence.save_metadata.save_metadata", "modulename": "ml.io.persistence.save_metadata", "qualname": "save_metadata", "kind": "function", "doc": "

    Persist metadata JSON to target directory with overwrite safeguards.

    \n\n

    Args:\n metadata: Metadata dictionary to persist.\n target_dir: Target directory for metadata.json.\n overwrite_existing: Whether existing metadata file may be overwritten.

    \n\n

    Returns:\n None.

    \n\n

    Raises:\n PersistenceError: If overwrite policy is violated or file serialization\n fails.

    \n\n

    Side Effects:\n Creates target directories as needed and writes/overwrites\n metadata.json on disk.

    \n\n

    Examples:

    \n\n
    \n
    \n
    \n

    save_metadata(metadata, target_dir=Path(\"/path/to/metadata\"), overwrite_existing=False)

    \n
    \n
    \n
    \n", "signature": "(\tmetadata: dict,\t*,\ttarget_dir: pathlib.Path,\toverwrite_existing: bool = False) -> None:", "funcdef": "def"}, "ml.io.validation": {"fullname": "ml.io.validation", "modulename": "ml.io.validation", "kind": "module", "doc": "

    A package for i/o validation.

    \n"}, "ml.io.validation.validate_mapping": {"fullname": "ml.io.validation.validate_mapping", "modulename": "ml.io.validation.validate_mapping", "kind": "module", "doc": "

    Dictionary validation helpers for required-field enforcement.

    \n"}, "ml.io.validation.validate_mapping.logger": {"fullname": "ml.io.validation.validate_mapping.logger", "modulename": "ml.io.validation.validate_mapping", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.io.validation.validate_mapping (WARNING)>"}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"fullname": "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict", "modulename": "ml.io.validation.validate_mapping", "qualname": "ensure_required_fields_present_in_dict", "kind": "function", "doc": "

    Raise an error when required keys are missing from an input dictionary.

    \n", "signature": "(*, input_dict: dict, required_fields: list[str]) -> None:", "funcdef": "def"}, "ml.logging_config": {"fullname": "ml.logging_config", "modulename": "ml.logging_config", "kind": "module", "doc": "

    Shared logging configuration helpers for scripts and pipeline entrypoints.

    \n"}, "ml.logging_config.LOG_FORMAT": {"fullname": "ml.logging_config.LOG_FORMAT", "modulename": "ml.logging_config", "qualname": "LOG_FORMAT", "kind": "variable", "doc": "

    \n", "default_value": "'%(asctime)s - %(name)s - %(levelname)s - %(message)s'"}, "ml.logging_config.setup_logging": {"fullname": "ml.logging_config.setup_logging", "modulename": "ml.logging_config", "qualname": "setup_logging", "kind": "function", "doc": "

    Configure root logger to write to path at the given level.

    \n\n

    Args:\n path: Destination log file path.\n level: Logging level.

    \n\n

    Returns:\n None: Configures global logging side effects.

    \n", "signature": "(path: pathlib.Path, level: int = 20) -> None:", "funcdef": "def"}, "ml.logging_config.add_file_handler": {"fullname": "ml.logging_config.add_file_handler", "modulename": "ml.logging_config", "qualname": "add_file_handler", "kind": "function", "doc": "

    Attach an additional file handler to the root logger.

    \n\n

    Useful when the final log destination is only known after the\ninitial setup_logging call (e.g. after an experiment-id or\nsnapshot-id has been generated).

    \n\n

    Args:\n path: Destination log file.\n level: Optional handler log level.

    \n\n

    Returns:\n logging.FileHandler: The handler that was added.

    \n", "signature": "(path: pathlib.Path, level: int = 20) -> logging.FileHandler:", "funcdef": "def"}, "ml.logging_config.bootstrap_logging": {"fullname": "ml.logging_config.bootstrap_logging", "modulename": "ml.logging_config", "qualname": "bootstrap_logging", "kind": "function", "doc": "

    Initialize console/root logging without a file destination.

    \n\n

    This is useful for early-stage CLI startup before run-specific output\ndirectories are known.

    \n\n

    Args:\n level: Logging level for the root logger.

    \n\n

    Returns:\n None: Configures global logging side effects.

    \n", "signature": "(level=20) -> None:", "funcdef": "def"}, "ml.metadata": {"fullname": "ml.metadata", "modulename": "ml.metadata", "kind": "module", "doc": "

    A package for metadata-related code.

    \n"}, "ml.metadata.schemas": {"fullname": "ml.metadata.schemas", "modulename": "ml.metadata.schemas", "kind": "module", "doc": "

    A package for metadata schemas.

    \n"}, "ml.metadata.schemas.data": {"fullname": "ml.metadata.schemas.data", "modulename": "ml.metadata.schemas.data", "kind": "module", "doc": "

    A package for data metadata schemas.

    \n"}, "ml.metadata.schemas.data.interim": {"fullname": "ml.metadata.schemas.data.interim", "modulename": "ml.metadata.schemas.data.interim", "kind": "module", "doc": "

    Schemas for interim dataset metadata.

    \n"}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"fullname": "ml.metadata.schemas.data.interim.InterimDatasetMetadata", "modulename": "ml.metadata.schemas.data.interim", "qualname": "InterimDatasetMetadata", "kind": "class", "doc": "

    Schema for the metadata of an interim dataset.

    \n", "bases": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata"}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"fullname": "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id", "modulename": "ml.metadata.schemas.data.interim", "qualname": "InterimDatasetMetadata.interim_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.processed": {"fullname": "ml.metadata.schemas.data.processed", "modulename": "ml.metadata.schemas.data.processed", "kind": "module", "doc": "

    Schemas for processed dataset metadata.

    \n"}, "ml.metadata.schemas.data.processed.RowIdInfo": {"fullname": "ml.metadata.schemas.data.processed.RowIdInfo", "modulename": "ml.metadata.schemas.data.processed", "qualname": "RowIdInfo", "kind": "class", "doc": "

    Schema for information about row identifiers in the processed dataset.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"fullname": "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id", "modulename": "ml.metadata.schemas.data.processed", "qualname": "RowIdInfo.cols_for_row_id", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"fullname": "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint", "modulename": "ml.metadata.schemas.data.processed", "qualname": "RowIdInfo.fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"fullname": "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata", "modulename": "ml.metadata.schemas.data.processed", "qualname": "ProcessedDatasetMetadata", "kind": "class", "doc": "

    Schema for the metadata of a processed dataset.

    \n", "bases": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata"}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"fullname": "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id", "modulename": "ml.metadata.schemas.data.processed", "qualname": "ProcessedDatasetMetadata.processed_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"fullname": "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info", "modulename": "ml.metadata.schemas.data.processed", "qualname": "ProcessedDatasetMetadata.row_id_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.processed.RowIdInfo | None", "default_value": "None"}, "ml.metadata.schemas.data.raw": {"fullname": "ml.metadata.schemas.data.raw", "modulename": "ml.metadata.schemas.data.raw", "kind": "module", "doc": "

    Schemas for raw snapshot metadata.

    \n"}, "ml.metadata.schemas.data.raw.RawData": {"fullname": "ml.metadata.schemas.data.raw.RawData", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawData", "kind": "class", "doc": "

    Schema for raw data information in the metadata.

    \n", "bases": "ml.metadata.schemas.data.shared.DataBasic"}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"fullname": "ml.metadata.schemas.data.raw.RawData.path_suffix", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawData.path_suffix", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.raw.RawData.hash": {"fullname": "ml.metadata.schemas.data.raw.RawData.hash", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawData.hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"fullname": "ml.metadata.schemas.data.raw.RawSnapshotMetadata", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawSnapshotMetadata", "kind": "class", "doc": "

    Schema for the metadata of a raw data snapshot.

    \n", "bases": "ml.metadata.schemas.data.shared.MetadataBase"}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"fullname": "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawSnapshotMetadata.data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.raw.RawData", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"fullname": "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawSnapshotMetadata.memory_usage_mb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"fullname": "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawSnapshotMetadata.raw_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared": {"fullname": "ml.metadata.schemas.data.shared", "modulename": "ml.metadata.schemas.data.shared", "kind": "module", "doc": "

    Schemas for shared metadata components used across different dataset types.

    \n"}, "ml.metadata.schemas.data.shared.DataBasic": {"fullname": "ml.metadata.schemas.data.shared.DataBasic", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataBasic", "kind": "class", "doc": "

    Schema for basic data information.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.DataBasic.name": {"fullname": "ml.metadata.schemas.data.shared.DataBasic.name", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataBasic.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataBasic.version": {"fullname": "ml.metadata.schemas.data.shared.DataBasic.version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataBasic.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataBasic.format": {"fullname": "ml.metadata.schemas.data.shared.DataBasic.format", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataBasic.format", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SourceData": {"fullname": "ml.metadata.schemas.data.shared.SourceData", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SourceData", "kind": "class", "doc": "

    Schema for source data information in the metadata.

    \n", "bases": "DataBasic"}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"fullname": "ml.metadata.schemas.data.shared.SourceData.snapshot_id", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SourceData.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SourceData.path": {"fullname": "ml.metadata.schemas.data.shared.SourceData.path", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SourceData.path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.CurrentData": {"fullname": "ml.metadata.schemas.data.shared.CurrentData", "modulename": "ml.metadata.schemas.data.shared", "qualname": "CurrentData", "kind": "class", "doc": "

    Schema for current data information in the metadata.

    \n", "bases": "ml.data.config.schemas.shared.DataInfo"}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"fullname": "ml.metadata.schemas.data.shared.CurrentData.hash", "modulename": "ml.metadata.schemas.data.shared", "qualname": "CurrentData.hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataMemory": {"fullname": "ml.metadata.schemas.data.shared.DataMemory", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory", "kind": "class", "doc": "

    Schema for memory usage information in the metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"fullname": "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory.old_memory_mb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"fullname": "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory.new_memory_mb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"fullname": "ml.metadata.schemas.data.shared.DataMemory.change_mb", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory.change_mb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"fullname": "ml.metadata.schemas.data.shared.DataMemory.change_percentage", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory.change_percentage", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.Columns": {"fullname": "ml.metadata.schemas.data.shared.Columns", "modulename": "ml.metadata.schemas.data.shared", "qualname": "Columns", "kind": "class", "doc": "

    Schema for column information in the metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.Columns.count": {"fullname": "ml.metadata.schemas.data.shared.Columns.count", "modulename": "ml.metadata.schemas.data.shared", "qualname": "Columns.count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.Columns.names": {"fullname": "ml.metadata.schemas.data.shared.Columns.names", "modulename": "ml.metadata.schemas.data.shared", "qualname": "Columns.names", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"fullname": "ml.metadata.schemas.data.shared.Columns.dtypes", "modulename": "ml.metadata.schemas.data.shared", "qualname": "Columns.dtypes", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, str]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo", "kind": "class", "doc": "

    Schema for runtime information of the data processing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo.pandas_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo.numpy_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo.yaml_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo.python_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase", "kind": "class", "doc": "

    Base schema for dataset metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.rows", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.rows", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.columns", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.columns", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.Columns", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.created_at", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.created_by", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.owner", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.owner", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata", "kind": "class", "doc": "

    Base schema for metadata of both interim and processed datasets.

    \n", "bases": "MetadataBase"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.source_data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.SourceData", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.CurrentData", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.memory", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.DataMemory", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.duration", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.runtime_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.DataRuntimeInfo", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features": {"fullname": "ml.metadata.schemas.features", "modulename": "ml.metadata.schemas.features", "kind": "module", "doc": "

    A package for feature freezing metadata schemas.

    \n"}, "ml.metadata.schemas.features.feature_freezing": {"fullname": "ml.metadata.schemas.features.feature_freezing", "modulename": "ml.metadata.schemas.features.feature_freezing", "kind": "module", "doc": "

    Schema for metadata of a frozen feature snapshot.

    \n"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata", "kind": "class", "doc": "

    Schema for metadata of a frozen feature snapshot.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.owner", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.feature_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.snapshot_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.schema_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.entity_key", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.data_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.types.lineage.data_lineage.DataLineageEntry]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.in_memory_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.file_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.operator_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.feature_schema_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.runtime", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.row_count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.column_count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.duration_seconds", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion": {"fullname": "ml.metadata.schemas.promotion", "modulename": "ml.metadata.schemas.promotion", "kind": "module", "doc": "

    A package for promotion metadata schemas.

    \n"}, "ml.metadata.schemas.promotion.promote": {"fullname": "ml.metadata.schemas.promotion.promote", "modulename": "ml.metadata.schemas.promotion.promote", "kind": "module", "doc": "

    Models for promotion metadata.

    \n"}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentRunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentRunIdentity", "kind": "class", "doc": "

    Base model for current run identity, extended by staging and production identities.

    \n", "bases": "RunIdentity"}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentRunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['staging', 'production']", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentProductionRunIdentity", "kind": "class", "doc": "

    Model for current production run identity, extending base run identity.

    \n", "bases": "CurrentRunIdentity"}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentProductionRunIdentity.promotion_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentStagingRunIdentity", "kind": "class", "doc": "

    Model for current staging run identity, extending base run identity.

    \n", "bases": "CurrentRunIdentity"}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentStagingRunIdentity.staging_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity", "kind": "class", "doc": "

    Model for previous production run identity, extending base run identity.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.promotion_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionDecision", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionDecision", "kind": "class", "doc": "

    Base model for promotion decision results.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionDecision.promoted", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionDecision.reason", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionDecision.reason", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionDecision", "kind": "class", "doc": "

    Model for production promotion decision, extending base promotion decision.

    \n", "bases": "PromotionDecision"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionDecision.beats_previous", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.Context": {"fullname": "ml.metadata.schemas.promotion.promote.Context", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context", "kind": "class", "doc": "

    Model for promotion execution context.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"fullname": "ml.metadata.schemas.promotion.promote.Context.git_commit", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"fullname": "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context.promotion_conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"fullname": "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context.training_conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"fullname": "ml.metadata.schemas.promotion.promote.Context.timestamp", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context.timestamp", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata", "kind": "class", "doc": "

    Base model for promotion metadata, containing all relevant information for decision making and metadata preparation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.previous_production_run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.metrics.EvaluationMetricsHelper", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.previous_production_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.metrics.EvaluationMetricsHelper | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.promotion_thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.models.PromotionThresholds", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.promotion_thresholds_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.context", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.context", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.Context", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionMetadata", "kind": "class", "doc": "

    Model for production promotion metadata, extending base promotion metadata.

    \n", "bases": "PromotionMetadata"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionMetadata.decision", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.ProductionPromotionDecision", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"fullname": "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "StagingPromotionMetadata", "kind": "class", "doc": "

    Model for staging promotion metadata, extending base promotion metadata.

    \n", "bases": "PromotionMetadata"}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"fullname": "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "StagingPromotionMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"fullname": "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "StagingPromotionMetadata.decision", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.PromotionDecision", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners": {"fullname": "ml.metadata.schemas.runners", "modulename": "ml.metadata.schemas.runners", "kind": "module", "doc": "

    A package for train/eval/explain metadata schemas.

    \n"}, "ml.metadata.schemas.runners.evaluation": {"fullname": "ml.metadata.schemas.runners.evaluation", "modulename": "ml.metadata.schemas.runners.evaluation", "kind": "module", "doc": "

    Metadata models for evaluation runs.

    \n"}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationRunIdentity", "kind": "class", "doc": "

    Identity of a run, including stage, identifiers, and status.

    \n", "bases": "ml.modeling.models.run_identity.RunIdentity"}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationRunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['evaluation']", "default_value": "'evaluation'"}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationRunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationArtifacts", "kind": "class", "doc": "

    Artifacts produced during evaluation, including paths and hashes.

    \n", "bases": "ml.modeling.models.artifacts.Artifacts, ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes"}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationArtifacts.metrics_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationArtifacts.metrics_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata", "kind": "class", "doc": "

    Metadata for evaluation results.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.experiment_lineage.ExperimentLineage", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata.config_fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.config_fingerprint.ConfigFingerprint", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata.artifacts", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.evaluation.EvaluationArtifacts", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability": {"fullname": "ml.metadata.schemas.runners.explainability", "modulename": "ml.metadata.schemas.runners.explainability", "kind": "module", "doc": "

    \n"}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityRunIdentity", "kind": "class", "doc": "

    Model representing the identity of an explainability run.

    \n", "bases": "ml.modeling.models.run_identity.RunIdentity"}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityRunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'explainability'"}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityRunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts", "kind": "class", "doc": "

    Model representing the artifacts produced by the explainability runner.

    \n", "bases": "ml.modeling.models.artifacts.Artifacts"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts.top_k_feature_importances_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts.top_k_feature_importances_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts.top_k_shap_importances_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts.top_k_shap_importances_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata", "kind": "class", "doc": "

    Metadata for explainability runs.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.experiment_lineage.ExperimentLineage", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.config_fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.config_fingerprint.ConfigFingerprint", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.artifacts", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.top_k", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.training": {"fullname": "ml.metadata.schemas.runners.training", "modulename": "ml.metadata.schemas.runners.training", "kind": "module", "doc": "

    \n"}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"fullname": "ml.metadata.schemas.runners.training.TrainingRunIdentity", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingRunIdentity", "kind": "class", "doc": "

    Model representing the identity of a run.

    \n", "bases": "ml.modeling.models.run_identity.RunIdentity"}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"fullname": "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingRunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['training']", "default_value": "'training'"}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata", "kind": "class", "doc": "

    Metadata for training a machine learning model.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.training.TrainingRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata.lineage", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.experiment_lineage.ExperimentLineage", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata.config_fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.config_fingerprint.ConfigFingerprint", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata.artifacts", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.artifacts.Artifacts", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.search": {"fullname": "ml.metadata.schemas.search", "modulename": "ml.metadata.schemas.search", "kind": "module", "doc": "

    A package for search metadata schemas.

    \n"}, "ml.metadata.schemas.search.search": {"fullname": "ml.metadata.schemas.search.search", "modulename": "ml.metadata.schemas.search.search", "kind": "module", "doc": "

    \n"}, "ml.metadata.schemas.search.search.SearchRecord": {"fullname": "ml.metadata.schemas.search.search.SearchRecord", "modulename": "ml.metadata.schemas.search.search", "qualname": "SearchRecord", "kind": "class", "doc": "

    Structured data model representing a complete search record, including metadata, configuration, and results.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"fullname": "ml.metadata.schemas.search.search.SearchRecord.metadata", "modulename": "ml.metadata.schemas.search.search", "qualname": "SearchRecord.metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.search.models.experiment_metadata.ExperimentMetadata", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.search.search.SearchRecord.config": {"fullname": "ml.metadata.schemas.search.search.SearchRecord.config", "modulename": "ml.metadata.schemas.search.search", "qualname": "SearchRecord.config", "kind": "variable", "doc": "

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"fullname": "ml.metadata.schemas.search.search.SearchRecord.search_results", "modulename": "ml.metadata.schemas.search.search", "qualname": "SearchRecord.search_results", "kind": "variable", "doc": "

    \n", "annotation": ": ml.search.models.search_results.SearchResults", "default_value": "PydanticUndefined"}, "ml.metadata.validation": {"fullname": "ml.metadata.validation", "modulename": "ml.metadata.validation", "kind": "module", "doc": "

    A package for metadata schema validation.

    \n"}, "ml.metadata.validation.data": {"fullname": "ml.metadata.validation.data", "modulename": "ml.metadata.validation.data", "kind": "module", "doc": "

    A package for data metadata schema validation.

    \n"}, "ml.metadata.validation.data.interim": {"fullname": "ml.metadata.validation.data.interim", "modulename": "ml.metadata.validation.data.interim", "kind": "module", "doc": "

    Module for validating interim dataset metadata.

    \n"}, "ml.metadata.validation.data.interim.logger": {"fullname": "ml.metadata.validation.data.interim.logger", "modulename": "ml.metadata.validation.data.interim", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.data.interim (WARNING)>"}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"fullname": "ml.metadata.validation.data.interim.validate_interim_dataset_metadata", "modulename": "ml.metadata.validation.data.interim", "qualname": "validate_interim_dataset_metadata", "kind": "function", "doc": "

    Validate the interim dataset metadata against the InterimDatasetMetadata schema.

    \n\n

    Args:\n metadata (dict): The metadata dictionary to validate.

    \n\n

    Returns:\n InterimDatasetMetadata: The validated metadata object.

    \n", "signature": "(\tmetadata: dict) -> ml.metadata.schemas.data.interim.InterimDatasetMetadata:", "funcdef": "def"}, "ml.metadata.validation.data.processed": {"fullname": "ml.metadata.validation.data.processed", "modulename": "ml.metadata.validation.data.processed", "kind": "module", "doc": "

    Module for validating processed dataset metadata.

    \n"}, "ml.metadata.validation.data.processed.logger": {"fullname": "ml.metadata.validation.data.processed.logger", "modulename": "ml.metadata.validation.data.processed", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.data.processed (WARNING)>"}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"fullname": "ml.metadata.validation.data.processed.validate_processed_dataset_metadata", "modulename": "ml.metadata.validation.data.processed", "qualname": "validate_processed_dataset_metadata", "kind": "function", "doc": "

    Validate the processed dataset metadata against the ProcessedDatasetMetadata schema.

    \n\n

    Args:\n metadata (dict): The metadata dictionary to validate.

    \n\n

    Returns:\n ProcessedDatasetMetadata: The validated metadata object.

    \n", "signature": "(\tmetadata: dict) -> ml.metadata.schemas.data.processed.ProcessedDatasetMetadata:", "funcdef": "def"}, "ml.metadata.validation.data.raw": {"fullname": "ml.metadata.validation.data.raw", "modulename": "ml.metadata.validation.data.raw", "kind": "module", "doc": "

    Module for validating raw snapshot metadata against the RawSnapshotMetadata schema.

    \n"}, "ml.metadata.validation.data.raw.logger": {"fullname": "ml.metadata.validation.data.raw.logger", "modulename": "ml.metadata.validation.data.raw", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.data.raw (WARNING)>"}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"fullname": "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata", "modulename": "ml.metadata.validation.data.raw", "qualname": "validate_raw_snapshot_metadata", "kind": "function", "doc": "

    Validate the raw snapshot metadata against the RawSnapshotMetadata schema.

    \n\n

    Args:\n metadata (dict): The metadata dictionary to validate.

    \n\n

    Returns:\n RawSnapshotMetadata: The validated metadata object.

    \n", "signature": "(metadata: dict) -> ml.metadata.schemas.data.raw.RawSnapshotMetadata:", "funcdef": "def"}, "ml.metadata.validation.features": {"fullname": "ml.metadata.validation.features", "modulename": "ml.metadata.validation.features", "kind": "module", "doc": "

    A package for feature freezing metadata validation.

    \n"}, "ml.metadata.validation.features.feature_freezing": {"fullname": "ml.metadata.validation.features.feature_freezing", "modulename": "ml.metadata.validation.features.feature_freezing", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.features.feature_freezing.logger": {"fullname": "ml.metadata.validation.features.feature_freezing.logger", "modulename": "ml.metadata.validation.features.feature_freezing", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.features.feature_freezing (WARNING)>"}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"fullname": "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata", "modulename": "ml.metadata.validation.features.feature_freezing", "qualname": "validate_freeze_metadata", "kind": "function", "doc": "

    Validate freeze metadata dictionary against the FreezeMetadata Pydantic model.

    \n\n

    Args:\n metadata_dict: Dictionary containing freeze metadata to be validated.

    \n\n

    Returns:\n An instance of FreezeMetadata if validation is successful.

    \n\n

    Raises:\n RuntimeMLError: If the input dictionary does not conform to the FreezeMetadata schema.

    \n", "signature": "(\tmetadata_dict: dict[str, typing.Any]) -> ml.metadata.schemas.features.feature_freezing.FreezeMetadata:", "funcdef": "def"}, "ml.metadata.validation.promotion": {"fullname": "ml.metadata.validation.promotion", "modulename": "ml.metadata.validation.promotion", "kind": "module", "doc": "

    A package for promotion metadata validation.

    \n"}, "ml.metadata.validation.promotion.promote": {"fullname": "ml.metadata.validation.promotion.promote", "modulename": "ml.metadata.validation.promotion.promote", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.promotion.promote.logger": {"fullname": "ml.metadata.validation.promotion.promote.logger", "modulename": "ml.metadata.validation.promotion.promote", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.promotion.promote (WARNING)>"}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"fullname": "ml.metadata.validation.promotion.promote.validate_promotion_metadata", "modulename": "ml.metadata.validation.promotion.promote", "qualname": "validate_promotion_metadata", "kind": "function", "doc": "

    Validate raw promotion metadata against Pydantic models for staging and production.

    \n\n

    Args:\n promotion_metadata_raw: Raw promotion metadata dictionary to validate.\n stage: The stage for which to validate the metadata.

    \n\n

    Returns:\n Validated promotion metadata as either ProductionPromotionMetadata or StagingPromotionMetadata.

    \n\n

    Raises:\n RuntimeMLError: If validation fails against both staging and production models.

    \n", "signature": "(\tpromotion_metadata_raw: ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict,\tstage: Literal['production', 'staging']) -> ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata | ml.metadata.schemas.promotion.promote.StagingPromotionMetadata:", "funcdef": "def"}, "ml.metadata.validation.runners": {"fullname": "ml.metadata.validation.runners", "modulename": "ml.metadata.validation.runners", "kind": "module", "doc": "

    A package for runners metadata validation.

    \n"}, "ml.metadata.validation.runners.evaluation": {"fullname": "ml.metadata.validation.runners.evaluation", "modulename": "ml.metadata.validation.runners.evaluation", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.runners.evaluation.logger": {"fullname": "ml.metadata.validation.runners.evaluation.logger", "modulename": "ml.metadata.validation.runners.evaluation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.runners.evaluation (WARNING)>"}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"fullname": "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata", "modulename": "ml.metadata.validation.runners.evaluation", "qualname": "validate_evaluation_metadata", "kind": "function", "doc": "

    Validate evaluation metadata dictionary against the EvaluationMetadata Pydantic model.

    \n\n

    Args:\n metadata_dict: Dictionary containing evaluation metadata to be validated.

    \n\n

    Returns:\n An instance of EvaluationMetadata if validation is successful.

    \n\n

    Raises:\n RuntimeMLError: If the input dictionary does not conform to the EvaluationMetadata schema.

    \n", "signature": "(\tmetadata_dict: dict[str, typing.Any]) -> ml.metadata.schemas.runners.evaluation.EvaluationMetadata:", "funcdef": "def"}, "ml.metadata.validation.runners.explainability": {"fullname": "ml.metadata.validation.runners.explainability", "modulename": "ml.metadata.validation.runners.explainability", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.runners.explainability.logger": {"fullname": "ml.metadata.validation.runners.explainability.logger", "modulename": "ml.metadata.validation.runners.explainability", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.runners.explainability (WARNING)>"}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"fullname": "ml.metadata.validation.runners.explainability.validate_explainability_metadata", "modulename": "ml.metadata.validation.runners.explainability", "qualname": "validate_explainability_metadata", "kind": "function", "doc": "

    Validate the structure and content of explainability metadata.

    \n\n

    Args:\n explainability_metadata: The explainability metadata dictionary to validate.\nReturns:\n The validated ExplainabilityMetadata object.\nRaises:\n RuntimeMLError: If any required fields are missing or contain invalid values.

    \n", "signature": "(\texplainability_metadata: dict[str, typing.Any]) -> ml.metadata.schemas.runners.explainability.ExplainabilityMetadata:", "funcdef": "def"}, "ml.metadata.validation.runners.training": {"fullname": "ml.metadata.validation.runners.training", "modulename": "ml.metadata.validation.runners.training", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.runners.training.logger": {"fullname": "ml.metadata.validation.runners.training.logger", "modulename": "ml.metadata.validation.runners.training", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.runners.training (WARNING)>"}, "ml.metadata.validation.runners.training.validate_training_metadata": {"fullname": "ml.metadata.validation.runners.training.validate_training_metadata", "modulename": "ml.metadata.validation.runners.training", "qualname": "validate_training_metadata", "kind": "function", "doc": "

    Validate the structure and content of training metadata.

    \n\n

    Args:\n training_metadata: The training metadata dictionary to validate.\nReturns:\n The validated TrainingMetadata object.\nRaises:\n RuntimeMLError: If any required fields are missing or contain invalid values.

    \n", "signature": "(\ttraining_metadata: dict[str, typing.Any]) -> ml.metadata.schemas.runners.training.TrainingMetadata:", "funcdef": "def"}, "ml.metadata.validation.search": {"fullname": "ml.metadata.validation.search", "modulename": "ml.metadata.validation.search", "kind": "module", "doc": "

    A package for search metadata validation.

    \n"}, "ml.metadata.validation.search.search": {"fullname": "ml.metadata.validation.search.search", "modulename": "ml.metadata.validation.search.search", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.search.search.logger": {"fullname": "ml.metadata.validation.search.search.logger", "modulename": "ml.metadata.validation.search.search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.search.search (WARNING)>"}, "ml.metadata.validation.search.search.validate_search_record": {"fullname": "ml.metadata.validation.search.search.validate_search_record", "modulename": "ml.metadata.validation.search.search", "qualname": "validate_search_record", "kind": "function", "doc": "

    \n", "signature": "(record_raw: dict) -> ml.metadata.schemas.search.search.SearchRecord:", "funcdef": "def"}, "ml.modeling": {"fullname": "ml.modeling", "modulename": "ml.modeling", "kind": "module", "doc": "

    A package for modeling-specific code.

    \n"}, "ml.modeling.catboost": {"fullname": "ml.modeling.catboost", "modulename": "ml.modeling.catboost", "kind": "module", "doc": "

    A package for modeling with CatBoost.

    \n"}, "ml.modeling.catboost.build_pipeline_with_model": {"fullname": "ml.modeling.catboost.build_pipeline_with_model", "modulename": "ml.modeling.catboost.build_pipeline_with_model", "kind": "module", "doc": "

    Helpers for constructing CatBoost-ready sklearn pipelines.

    \n"}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"fullname": "ml.modeling.catboost.build_pipeline_with_model.logger", "modulename": "ml.modeling.catboost.build_pipeline_with_model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.catboost.build_pipeline_with_model (WARNING)>"}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"fullname": "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model", "modulename": "ml.modeling.catboost.build_pipeline_with_model", "qualname": "build_pipeline_with_model", "kind": "function", "doc": "

    Build a feature pipeline and append a validated CatBoost model step.

    \n\n

    Args:\n model_cfg: Validated search or train model configuration.\n pipeline_cfg: Pipeline configuration object.\n input_schema: Input feature schema dataframe.\n derived_schema: Derived feature schema dataframe.\n model: Instantiated CatBoost estimator.

    \n\n

    Returns:\n Pipeline: Constructed sklearn pipeline with final Model step attached.

    \n", "signature": "(\t*,\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tpipeline_cfg: ml.pipelines.models.PipelineConfig,\tinput_schema: pandas.core.frame.DataFrame,\tderived_schema: pandas.core.frame.DataFrame,\tmodel: catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor) -> sklearn.pipeline.Pipeline:", "funcdef": "def"}, "ml.modeling.class_weighting": {"fullname": "ml.modeling.class_weighting", "modulename": "ml.modeling.class_weighting", "kind": "module", "doc": "

    A package for class weighting.

    \n"}, "ml.modeling.class_weighting.constants": {"fullname": "ml.modeling.class_weighting.constants", "modulename": "ml.modeling.class_weighting.constants", "kind": "module", "doc": "

    Type constraints for supported scoring metrics and ML libraries.

    \n"}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"fullname": "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS", "modulename": "ml.modeling.class_weighting.constants", "qualname": "SUPPORTED_SCORING_FUNCTIONS", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']"}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"fullname": "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES", "modulename": "ml.modeling.class_weighting.constants", "qualname": "SUPPORTED_LIBRARIES", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['xgboost', 'lightgbm', 'catboost', 'sklearn']"}, "ml.modeling.class_weighting.models": {"fullname": "ml.modeling.class_weighting.models", "modulename": "ml.modeling.class_weighting.models", "kind": "module", "doc": "

    Data models used by class-weighting and scoring policy resolution.

    \n"}, "ml.modeling.class_weighting.models.DataStats": {"fullname": "ml.modeling.class_weighting.models.DataStats", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats", "kind": "class", "doc": "

    Summary statistics for target distribution and class imbalance.

    \n"}, "ml.modeling.class_weighting.models.DataStats.__init__": {"fullname": "ml.modeling.class_weighting.models.DataStats.__init__", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats.__init__", "kind": "function", "doc": "

    \n", "signature": "(n_samples: int, class_counts: dict[int, int], minority_ratio: float)"}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"fullname": "ml.modeling.class_weighting.models.DataStats.n_samples", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats.n_samples", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"fullname": "ml.modeling.class_weighting.models.DataStats.class_counts", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats.class_counts", "kind": "variable", "doc": "

    \n", "annotation": ": dict[int, int]"}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"fullname": "ml.modeling.class_weighting.models.DataStats.minority_ratio", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats.minority_ratio", "kind": "variable", "doc": "

    \n", "annotation": ": float"}, "ml.modeling.class_weighting.resolve_class_weighting": {"fullname": "ml.modeling.class_weighting.resolve_class_weighting", "modulename": "ml.modeling.class_weighting.resolve_class_weighting", "kind": "module", "doc": "

    Resolve class-weight parameters from policy, data statistics, and library.

    \n"}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"fullname": "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting", "modulename": "ml.modeling.class_weighting.resolve_class_weighting", "qualname": "resolve_class_weighting", "kind": "function", "doc": "

    Return library-specific class-weight parameters based on configured policy.

    \n\n

    Args:\n config: Validated training or search configuration with class-weighting settings.\n stats: Dataset class distribution statistics.\n library: Target ML library receiving class-weight parameters.

    \n\n

    Returns:\n Dictionary of class-weight parameters for the selected library.

    \n", "signature": "(\tconfig: ml.config.schemas.model_cfg.TrainModelConfig | ml.config.schemas.model_cfg.SearchModelConfig,\tstats: ml.modeling.class_weighting.models.DataStats,\tlibrary: Literal['xgboost', 'lightgbm', 'catboost', 'sklearn']) -> dict:", "funcdef": "def"}, "ml.modeling.class_weighting.resolve_metric": {"fullname": "ml.modeling.class_weighting.resolve_metric", "modulename": "ml.modeling.class_weighting.resolve_metric", "kind": "module", "doc": "

    Resolve the scoring metric according to policy and dataset characteristics.

    \n"}, "ml.modeling.class_weighting.resolve_metric.logger": {"fullname": "ml.modeling.class_weighting.resolve_metric.logger", "modulename": "ml.modeling.class_weighting.resolve_metric", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.class_weighting.resolve_metric (WARNING)>"}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"fullname": "ml.modeling.class_weighting.resolve_metric.resolve_metric", "modulename": "ml.modeling.class_weighting.resolve_metric", "qualname": "resolve_metric", "kind": "function", "doc": "

    Select and return the scoring metric for search/training workflows.

    \n\n

    Args:\n config: Validated training or search configuration with scoring policy.\n stats: Optional class-distribution statistics for adaptive policies.

    \n\n

    Returns:\n Scoring function name used by search/training routines.

    \n", "signature": "(\tconfig: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tstats: ml.modeling.class_weighting.models.DataStats | None) -> Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']:", "funcdef": "def"}, "ml.modeling.class_weighting.stats_resolver": {"fullname": "ml.modeling.class_weighting.stats_resolver", "modulename": "ml.modeling.class_weighting.stats_resolver", "kind": "module", "doc": "

    Utilities for computing class-distribution statistics from targets.

    \n"}, "ml.modeling.class_weighting.stats_resolver.logger": {"fullname": "ml.modeling.class_weighting.stats_resolver.logger", "modulename": "ml.modeling.class_weighting.stats_resolver", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.class_weighting.stats_resolver (WARNING)>"}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"fullname": "ml.modeling.class_weighting.stats_resolver.compute_data_stats", "modulename": "ml.modeling.class_weighting.stats_resolver", "qualname": "compute_data_stats", "kind": "function", "doc": "

    Compute sample count, class counts, and minority ratio for target labels.

    \n\n

    Args:\n y: Target label sequence.

    \n\n

    Returns:\n Data statistics object with sample size, class counts, and minority ratio.

    \n", "signature": "(y):", "funcdef": "def"}, "ml.modeling.models": {"fullname": "ml.modeling.models", "modulename": "ml.modeling.models", "kind": "module", "doc": "

    A package with modeling-specific pydantic models.

    \n"}, "ml.modeling.models.artifacts": {"fullname": "ml.modeling.models.artifacts", "modulename": "ml.modeling.models.artifacts", "kind": "module", "doc": "

    Artifacts model for tracking model and pipeline artifacts.

    \n"}, "ml.modeling.models.artifacts.Artifacts": {"fullname": "ml.modeling.models.artifacts.Artifacts", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts", "kind": "class", "doc": "

    Model representing the artifacts produced during training or evaluation, including paths and hashes for integrity verification.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"fullname": "ml.modeling.models.artifacts.Artifacts.model_hash", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts.model_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.artifacts.Artifacts.model_path": {"fullname": "ml.modeling.models.artifacts.Artifacts.model_path", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts.model_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"fullname": "ml.modeling.models.artifacts.Artifacts.pipeline_path", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts.pipeline_path", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"fullname": "ml.modeling.models.artifacts.Artifacts.pipeline_hash", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts.pipeline_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.modeling.models.config_fingerprint": {"fullname": "ml.modeling.models.config_fingerprint", "modulename": "ml.modeling.models.config_fingerprint", "kind": "module", "doc": "

    \n"}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"fullname": "ml.modeling.models.config_fingerprint.ConfigFingerprint", "modulename": "ml.modeling.models.config_fingerprint", "qualname": "ConfigFingerprint", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"fullname": "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash", "modulename": "ml.modeling.models.config_fingerprint", "qualname": "ConfigFingerprint.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"fullname": "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash", "modulename": "ml.modeling.models.config_fingerprint", "qualname": "ConfigFingerprint.pipeline_cfg_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.modeling.models.experiment_lineage": {"fullname": "ml.modeling.models.experiment_lineage", "modulename": "ml.modeling.models.experiment_lineage", "kind": "module", "doc": "

    \n"}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]", "default_value": "PydanticUndefined"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.target_column", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.problem", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.problem", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.segment", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.segment", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.model_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage": {"fullname": "ml.modeling.models.feature_lineage", "modulename": "ml.modeling.models.feature_lineage", "kind": "module", "doc": "

    \n"}, "ml.modeling.models.feature_lineage.FeatureLineage": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.name", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.version", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.file_hash", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.file_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.in_memory_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.feature_schema_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.operator_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.feature_type", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.feature_type", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['tabular', 'time-series']", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics": {"fullname": "ml.modeling.models.metrics", "modulename": "ml.modeling.models.metrics", "kind": "module", "doc": "

    This module defines the data models for training and evaluation metrics using Pydantic.

    \n"}, "ml.modeling.models.metrics.Metrics": {"fullname": "ml.modeling.models.metrics.Metrics", "modulename": "ml.modeling.models.metrics", "qualname": "Metrics", "kind": "class", "doc": "

    Base model for metrics data.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.metrics.Metrics.task_type": {"fullname": "ml.modeling.models.metrics.Metrics.task_type", "modulename": "ml.modeling.models.metrics", "qualname": "Metrics.task_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.Metrics.algorithm": {"fullname": "ml.modeling.models.metrics.Metrics.algorithm", "modulename": "ml.modeling.models.metrics", "qualname": "Metrics.algorithm", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.TrainingMetrics": {"fullname": "ml.modeling.models.metrics.TrainingMetrics", "modulename": "ml.modeling.models.metrics", "qualname": "TrainingMetrics", "kind": "class", "doc": "

    Model training metrics.

    \n", "bases": "Metrics"}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"fullname": "ml.modeling.models.metrics.TrainingMetrics.metrics", "modulename": "ml.modeling.models.metrics", "qualname": "TrainingMetrics.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float | dict[str, float]]", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"fullname": "ml.modeling.models.metrics.EvaluationMetricsHelper", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetricsHelper", "kind": "class", "doc": "

    Helper model for evaluation metrics to allow nested structure.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"fullname": "ml.modeling.models.metrics.EvaluationMetricsHelper.train", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetricsHelper.train", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"fullname": "ml.modeling.models.metrics.EvaluationMetricsHelper.val", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetricsHelper.val", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"fullname": "ml.modeling.models.metrics.EvaluationMetricsHelper.test", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetricsHelper.test", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.EvaluationMetrics": {"fullname": "ml.modeling.models.metrics.EvaluationMetrics", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetrics", "kind": "class", "doc": "

    Model evaluation metrics.

    \n", "bases": "Metrics"}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"fullname": "ml.modeling.models.metrics.EvaluationMetrics.metrics", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetrics.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.metrics.EvaluationMetricsHelper", "default_value": "PydanticUndefined"}, "ml.modeling.models.run_identity": {"fullname": "ml.modeling.models.run_identity", "modulename": "ml.modeling.models.run_identity", "kind": "module", "doc": "

    \n"}, "ml.modeling.models.run_identity.RunIdentity": {"fullname": "ml.modeling.models.run_identity.RunIdentity", "modulename": "ml.modeling.models.run_identity", "qualname": "RunIdentity", "kind": "class", "doc": "

    Model representing the identity of a run.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"fullname": "ml.modeling.models.run_identity.RunIdentity.train_run_id", "modulename": "ml.modeling.models.run_identity", "qualname": "RunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"fullname": "ml.modeling.models.run_identity.RunIdentity.snapshot_id", "modulename": "ml.modeling.models.run_identity", "qualname": "RunIdentity.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.run_identity.RunIdentity.status": {"fullname": "ml.modeling.models.run_identity.RunIdentity.status", "modulename": "ml.modeling.models.run_identity", "qualname": "RunIdentity.status", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['success']", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info": {"fullname": "ml.modeling.models.runtime_info", "modulename": "ml.modeling.models.runtime_info", "kind": "module", "doc": "

    Runtime information about the system where the runner is executing.

    \n"}, "ml.modeling.models.runtime_info.Environment": {"fullname": "ml.modeling.models.runtime_info.Environment", "modulename": "ml.modeling.models.runtime_info", "qualname": "Environment", "kind": "class", "doc": "

    Environment information about the conda environment where the runner is executing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"fullname": "ml.modeling.models.runtime_info.Environment.conda_env_export", "modulename": "ml.modeling.models.runtime_info", "qualname": "Environment.conda_env_export", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"fullname": "ml.modeling.models.runtime_info.Environment.conda_env_hash", "modulename": "ml.modeling.models.runtime_info", "qualname": "Environment.conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Execution": {"fullname": "ml.modeling.models.runtime_info.Execution", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution", "kind": "class", "doc": "

    Execution information about the run being executed.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.Execution.created_at": {"fullname": "ml.modeling.models.runtime_info.Execution.created_at", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"fullname": "ml.modeling.models.runtime_info.Execution.duration_seconds", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution.duration_seconds", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Execution.git_commit": {"fullname": "ml.modeling.models.runtime_info.Execution.git_commit", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Execution.python_executable": {"fullname": "ml.modeling.models.runtime_info.Execution.python_executable", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution.python_executable", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo": {"fullname": "ml.modeling.models.runtime_info.GpuInfo", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo", "kind": "class", "doc": "

    GPU information about the system where the runner is executing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.cuda_version", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.cuda_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_count", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_devices_available", "kind": "variable", "doc": "

    \n", "annotation": ": list[int]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_devices_used", "kind": "variable", "doc": "

    \n", "annotation": ": list[int]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_driver_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_memories_gb", "kind": "variable", "doc": "

    \n", "annotation": ": list[float]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_names", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_names", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.task_type", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.task_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareTaskType", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime": {"fullname": "ml.modeling.models.runtime_info.Runtime", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime", "kind": "class", "doc": "

    Runtime information about the system where the runner is executing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.Runtime.os": {"fullname": "ml.modeling.models.runtime_info.Runtime.os", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.os", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.os_release": {"fullname": "ml.modeling.models.runtime_info.Runtime.os_release", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.os_release", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.architecture": {"fullname": "ml.modeling.models.runtime_info.Runtime.architecture", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.architecture", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.processor": {"fullname": "ml.modeling.models.runtime_info.Runtime.processor", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.processor", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"fullname": "ml.modeling.models.runtime_info.Runtime.ram_total_gb", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.ram_total_gb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"fullname": "ml.modeling.models.runtime_info.Runtime.platform_string", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.platform_string", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.hostname": {"fullname": "ml.modeling.models.runtime_info.Runtime.hostname", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.hostname", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.python_version": {"fullname": "ml.modeling.models.runtime_info.Runtime.python_version", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.python_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"fullname": "ml.modeling.models.runtime_info.Runtime.python_impl", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.python_impl", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.python_build": {"fullname": "ml.modeling.models.runtime_info.Runtime.python_build", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.python_build", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[str, str]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.RuntimeInfo": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo", "kind": "class", "doc": "

    Comprehensive runtime information about the system where the runner is executing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo.environment", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo.environment", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.Environment", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo.execution", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo.execution", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.Execution", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo.gpu_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.GpuInfo", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo.runtime", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo.runtime", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.Runtime", "default_value": "PydanticUndefined"}, "ml.modeling.validation": {"fullname": "ml.modeling.validation", "modulename": "ml.modeling.validation", "kind": "module", "doc": "

    A package for modeling-specific validation.

    \n"}, "ml.modeling.validation.artifacts": {"fullname": "ml.modeling.validation.artifacts", "modulename": "ml.modeling.validation.artifacts", "kind": "module", "doc": "

    \n"}, "ml.modeling.validation.artifacts.logger": {"fullname": "ml.modeling.validation.artifacts.logger", "modulename": "ml.modeling.validation.artifacts", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.validation.artifacts (WARNING)>"}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"fullname": "ml.modeling.validation.artifacts.validate_evaluation_artifacts", "modulename": "ml.modeling.validation.artifacts", "qualname": "validate_evaluation_artifacts", "kind": "function", "doc": "

    Validate the evaluation artifacts by attempting to construct the EvaluationArtifacts model.

    \n\n

    Args:\n evaluation_artifacts_raw: Raw dictionary of evaluation artifact paths and hashes.

    \n\n

    Returns:\n EvaluationArtifacts: Validated evaluation artifacts model.

    \n\n

    Raises:\n RuntimeMLError: If validation fails due to missing required fields or incorrect types.

    \n", "signature": "(\tevaluation_artifacts_raw: dict) -> ml.metadata.schemas.runners.evaluation.EvaluationArtifacts:", "funcdef": "def"}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"fullname": "ml.modeling.validation.artifacts.validate_explainability_artifacts", "modulename": "ml.modeling.validation.artifacts", "qualname": "validate_explainability_artifacts", "kind": "function", "doc": "

    Validate the explainability artifacts by attempting to construct the ExplainabilityArtifacts model.

    \n\n

    Args:\n explainability_artifacts_raw: Raw dictionary of explainability artifact paths and hashes.

    \n\n

    Returns:\n ExplainabilityArtifacts: Validated explainability artifacts model.

    \n\n

    Raises:\n RuntimeMLError: If validation fails due to missing required fields or incorrect types.

    \n", "signature": "(\texplainability_artifacts_raw: dict) -> ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts:", "funcdef": "def"}, "ml.modeling.validation.feature_lineage": {"fullname": "ml.modeling.validation.feature_lineage", "modulename": "ml.modeling.validation.feature_lineage", "kind": "module", "doc": "

    \n"}, "ml.modeling.validation.feature_lineage.logger": {"fullname": "ml.modeling.validation.feature_lineage.logger", "modulename": "ml.modeling.validation.feature_lineage", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.validation.feature_lineage (WARNING)>"}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"fullname": "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage", "modulename": "ml.modeling.validation.feature_lineage", "qualname": "validate_and_construct_feature_lineage", "kind": "function", "doc": "

    \n", "signature": "(\tfeature_lineage_raw: list[dict]) -> list[ml.modeling.models.feature_lineage.FeatureLineage]:", "funcdef": "def"}, "ml.modeling.validation.metrics": {"fullname": "ml.modeling.validation.metrics", "modulename": "ml.modeling.validation.metrics", "kind": "module", "doc": "

    This module contains functions for validating training and evaluation metrics against their respective Pydantic models. It ensures that the metrics conform to the expected structure and types defined in the TrainingMetrics and EvaluationMetrics models. If the validation fails, it raises a RuntimeMLError with an appropriate error message.

    \n"}, "ml.modeling.validation.metrics.logger": {"fullname": "ml.modeling.validation.metrics.logger", "modulename": "ml.modeling.validation.metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.validation.metrics (WARNING)>"}, "ml.modeling.validation.metrics.validate_training_metrics": {"fullname": "ml.modeling.validation.metrics.validate_training_metrics", "modulename": "ml.modeling.validation.metrics", "qualname": "validate_training_metrics", "kind": "function", "doc": "

    Validate the training metrics against the TrainingMetrics model.

    \n\n

    Args:\n training_metrics_raw: A dictionary containing the training metrics.

    \n\n

    Returns:\n TrainingMetrics: A validated TrainingMetrics object.

    \n\n

    Raises:\n RuntimeMLError: If the training metrics are invalid.

    \n", "signature": "(training_metrics_raw: dict) -> ml.modeling.models.metrics.TrainingMetrics:", "funcdef": "def"}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"fullname": "ml.modeling.validation.metrics.validate_evaluation_metrics", "modulename": "ml.modeling.validation.metrics", "qualname": "validate_evaluation_metrics", "kind": "function", "doc": "

    Validate the evaluation metrics against the EvaluationMetrics model.

    \n\n

    Args:\n evaluation_metrics_raw: A dictionary containing the evaluation metrics.

    \n\n

    Returns:\n EvaluationMetrics: A validated EvaluationMetrics object.

    \n\n

    Raises:\n RuntimeMLError: If the evaluation metrics are invalid.

    \n", "signature": "(\tevaluation_metrics_raw: dict) -> ml.modeling.models.metrics.EvaluationMetrics:", "funcdef": "def"}, "ml.modeling.validation.runtime_info": {"fullname": "ml.modeling.validation.runtime_info", "modulename": "ml.modeling.validation.runtime_info", "kind": "module", "doc": "

    \n"}, "ml.modeling.validation.runtime_info.logger": {"fullname": "ml.modeling.validation.runtime_info.logger", "modulename": "ml.modeling.validation.runtime_info", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.validation.runtime_info (WARNING)>"}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"fullname": "ml.modeling.validation.runtime_info.validate_runtime_info", "modulename": "ml.modeling.validation.runtime_info", "qualname": "validate_runtime_info", "kind": "function", "doc": "

    Validate raw runtime info payload.

    \n\n

    Args:\n runtime_info_raw: Raw runtime info payload.

    \n\n

    Returns:\n RuntimeInfo: Validated runtime info.

    \n", "signature": "(runtime_info_raw: dict) -> ml.modeling.models.runtime_info.RuntimeInfo:", "funcdef": "def"}, "ml.pipelines": {"fullname": "ml.pipelines", "modulename": "ml.pipelines", "kind": "module", "doc": "

    A package for building sklearn Pipelines.

    \n"}, "ml.pipelines.builders": {"fullname": "ml.pipelines.builders", "modulename": "ml.pipelines.builders", "kind": "module", "doc": "

    Pipeline builder utilities for assembling configured sklearn pipelines.

    \n"}, "ml.pipelines.builders.logger": {"fullname": "ml.pipelines.builders.logger", "modulename": "ml.pipelines.builders", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.pipelines.builders (WARNING)>"}, "ml.pipelines.builders.build_pipeline": {"fullname": "ml.pipelines.builders.build_pipeline", "modulename": "ml.pipelines.builders", "qualname": "build_pipeline", "kind": "function", "doc": "

    Build an sklearn Pipeline from config and schema metadata.

    \n\n

    Args:\n model_cfg: Validated search or training model config.\n pipeline_cfg: Pipeline configuration object.\n input_schema: DataFrame with columns 'feature' and 'dtype' for raw inputs.\n derived_schema: DataFrame with columns 'feature' and 'source_operator' for engineered features.

    \n\n

    Returns:\n Pipeline: Configured sklearn pipeline instance.

    \n", "signature": "(\t*,\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tpipeline_cfg: ml.pipelines.models.PipelineConfig,\tinput_schema: pandas.core.frame.DataFrame,\tderived_schema: pandas.core.frame.DataFrame) -> sklearn.pipeline.Pipeline:", "funcdef": "def"}, "ml.pipelines.composition": {"fullname": "ml.pipelines.composition", "modulename": "ml.pipelines.composition", "kind": "module", "doc": "

    A package for composition logic with sklearn Pipelines.

    \n"}, "ml.pipelines.composition.add_model_to_pipeline": {"fullname": "ml.pipelines.composition.add_model_to_pipeline", "modulename": "ml.pipelines.composition.add_model_to_pipeline", "kind": "module", "doc": "

    Helpers for appending validated model instances to sklearn pipelines.

    \n"}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"fullname": "ml.pipelines.composition.add_model_to_pipeline.logger", "modulename": "ml.pipelines.composition.add_model_to_pipeline", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.pipelines.composition.add_model_to_pipeline (WARNING)>"}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"fullname": "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline", "modulename": "ml.pipelines.composition.add_model_to_pipeline", "qualname": "add_model_to_pipeline", "kind": "function", "doc": "

    Append a supported estimator as the final Model step in a pipeline.

    \n\n

    Args:\n pipeline: Existing sklearn pipeline.\n model: Estimator instance expected to be supported by registry.

    \n\n

    Returns:\n Pipeline: New pipeline instance with appended Model step.

    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\tmodel: Any) -> sklearn.pipeline.Pipeline:", "funcdef": "def"}, "ml.pipelines.constants": {"fullname": "ml.pipelines.constants", "modulename": "ml.pipelines.constants", "kind": "module", "doc": "

    A package with constants for working with sklearn Pipelines.

    \n"}, "ml.pipelines.constants.pipeline_features": {"fullname": "ml.pipelines.constants.pipeline_features", "modulename": "ml.pipelines.constants.pipeline_features", "kind": "module", "doc": "

    Typed container models for schema-derived pipeline feature groups.

    \n"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures", "kind": "class", "doc": "

    Feature groups used during pipeline assembly and validation.

    \n"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tinput_features: list[str],\tderived_features: list[str],\tcategorical_features: list[str],\tselected_features: list[str])"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.input_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.derived_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.categorical_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.selected_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.pipelines.models": {"fullname": "ml.pipelines.models", "modulename": "ml.pipelines.models", "kind": "module", "doc": "

    Pipeline config Pydantic models for validation.

    \n"}, "ml.pipelines.models.VALID_STEPS": {"fullname": "ml.pipelines.models.VALID_STEPS", "modulename": "ml.pipelines.models", "qualname": "VALID_STEPS", "kind": "variable", "doc": "

    \n", "default_value": "{'FeatureEngineer', 'FeatureSelector', 'SchemaValidator', 'FillCategoricalMissing', 'Model'}"}, "ml.pipelines.models.LineageConfig": {"fullname": "ml.pipelines.models.LineageConfig", "modulename": "ml.pipelines.models", "qualname": "LineageConfig", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.pipelines.models.LineageConfig.created_by": {"fullname": "ml.pipelines.models.LineageConfig.created_by", "modulename": "ml.pipelines.models", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    Author of the pipeline config

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.pipelines.models.LineageConfig.created_at": {"fullname": "ml.pipelines.models.LineageConfig.created_at", "modulename": "ml.pipelines.models", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    Timestamp of config creation

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig": {"fullname": "ml.pipelines.models.PipelineConfig", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig", "kind": "class", "doc": "

    Pydantic schema for pipeline configurations.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.pipelines.models.PipelineConfig.name": {"fullname": "ml.pipelines.models.PipelineConfig.name", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.name", "kind": "variable", "doc": "

    Name of the pipeline

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.version": {"fullname": "ml.pipelines.models.PipelineConfig.version", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.version", "kind": "variable", "doc": "

    Version of the pipeline (e.g., v1)

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.description": {"fullname": "ml.pipelines.models.PipelineConfig.description", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.description", "kind": "variable", "doc": "

    Optional description of the pipeline

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.pipelines.models.PipelineConfig.steps": {"fullname": "ml.pipelines.models.PipelineConfig.steps", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.steps", "kind": "variable", "doc": "

    Ordered list of pipeline steps

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.assumptions": {"fullname": "ml.pipelines.models.PipelineConfig.assumptions", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.assumptions", "kind": "variable", "doc": "

    Assumptions about supported tasks and categorical handling

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.lineage": {"fullname": "ml.pipelines.models.PipelineConfig.lineage", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.pipelines.models.LineageConfig", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.check_version_format": {"fullname": "ml.pipelines.models.PipelineConfig.check_version_format", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.check_version_format", "kind": "function", "doc": "

    Ensure version starts with 'v' followed by a number.

    \n", "signature": "(cls, v: str) -> str:", "funcdef": "def"}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"fullname": "ml.pipelines.models.PipelineConfig.check_steps_valid", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.check_steps_valid", "kind": "function", "doc": "

    Ensure all pipeline steps are known and non-empty.

    \n", "signature": "(cls, v: list[str]) -> list[str]:", "funcdef": "def"}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"fullname": "ml.pipelines.models.PipelineConfig.validate_assumptions_keys", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.validate_assumptions_keys", "kind": "function", "doc": "

    Ensure assumptions contain all required keys.

    \n", "signature": "(cls, values: dict) -> dict:", "funcdef": "def"}, "ml.pipelines.operator_factory": {"fullname": "ml.pipelines.operator_factory", "modulename": "ml.pipelines.operator_factory", "kind": "module", "doc": "

    Factory helpers for creating feature engineering operator instances.

    \n"}, "ml.pipelines.operator_factory.build_operators": {"fullname": "ml.pipelines.operator_factory.build_operators", "modulename": "ml.pipelines.operator_factory", "qualname": "build_operators", "kind": "function", "doc": "

    Instantiate operators declared in derived_schema.

    \n\n

    Args:\n derived_schema: DataFrame containing a source_operator column.

    \n\n

    Returns:\n dict[str, object]: Mapping of operator name to instantiated operator.

    \n", "signature": "(derived_schema: pandas.core.frame.DataFrame) -> dict[str, object]:", "funcdef": "def"}, "ml.pipelines.schema_utils": {"fullname": "ml.pipelines.schema_utils", "modulename": "ml.pipelines.schema_utils", "kind": "module", "doc": "

    Schema-derived feature list utilities for pipeline assembly.

    \n"}, "ml.pipelines.schema_utils.get_categorical_features": {"fullname": "ml.pipelines.schema_utils.get_categorical_features", "modulename": "ml.pipelines.schema_utils", "qualname": "get_categorical_features", "kind": "function", "doc": "

    Return categorical feature names inferred from schema dtypes.

    \n\n

    Args:\n schema: Schema dataframe containing at least feature and dtype.

    \n\n

    Returns:\n List of feature names with categorical-compatible dtypes.

    \n", "signature": "(schema: pandas.core.frame.DataFrame) -> list[str]:", "funcdef": "def"}, "ml.pipelines.schema_utils.get_pipeline_features": {"fullname": "ml.pipelines.schema_utils.get_pipeline_features", "modulename": "ml.pipelines.schema_utils", "qualname": "get_pipeline_features", "kind": "function", "doc": "

    Compute feature groups used by the training/inference pipeline.

    \n\n

    Args:\n model_cfg: Validated search or training model config.\n input_schema: Schema dataframe for raw input features.\n derived_schema: Schema dataframe for engineered features.

    \n\n

    Returns:\n PipelineFeatures: Structured feature groups for pipeline construction.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tinput_schema: pandas.core.frame.DataFrame,\tderived_schema: pandas.core.frame.DataFrame) -> ml.pipelines.constants.pipeline_features.PipelineFeatures:", "funcdef": "def"}, "ml.pipelines.validation": {"fullname": "ml.pipelines.validation", "modulename": "ml.pipelines.validation", "kind": "module", "doc": "

    Pipeline config validation.

    \n"}, "ml.pipelines.validation.logger": {"fullname": "ml.pipelines.validation.logger", "modulename": "ml.pipelines.validation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.pipelines.validation (WARNING)>"}, "ml.pipelines.validation.validate_pipeline_config": {"fullname": "ml.pipelines.validation.validate_pipeline_config", "modulename": "ml.pipelines.validation", "qualname": "validate_pipeline_config", "kind": "function", "doc": "

    Validate pipeline config dictionary against the PipelineConfig Pydantic model.

    \n\n

    Args:\n pipeline_cfg_raw: Dictionary containing pipeline config to be validated.

    \n\n

    Returns:\n An instance of PipelineConfig if validation is successful.

    \n\n

    Raises:\n ConfigError: If the input dictionary does not conform to the PipelineConfig schema.

    \n", "signature": "(\tpipeline_cfg_raw: dict[str, typing.Any]) -> ml.pipelines.models.PipelineConfig:", "funcdef": "def"}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"fullname": "ml.pipelines.validation.validate_pipeline_config_consistency", "modulename": "ml.pipelines.validation", "qualname": "validate_pipeline_config_consistency", "kind": "function", "doc": "

    \n", "signature": "(actual_hash, search_dir):", "funcdef": "def"}, "ml.policies": {"fullname": "ml.policies", "modulename": "ml.policies", "kind": "module", "doc": "

    A package with ml policies.

    \n"}, "ml.policies.data": {"fullname": "ml.policies.data", "modulename": "ml.policies.data", "kind": "module", "doc": "

    A package with data policies.

    \n"}, "ml.policies.data.interim_constraints": {"fullname": "ml.policies.data.interim_constraints", "modulename": "ml.policies.data.interim_constraints", "kind": "module", "doc": "

    Predefined column constraint registries for interim data validation.

    \n"}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"fullname": "ml.policies.data.interim_constraints.MIN_CONSTRAINTS", "modulename": "ml.policies.data.interim_constraints", "qualname": "MIN_CONSTRAINTS", "kind": "variable", "doc": "

    \n", "default_value": "{'lead_time': BorderValue(value=0.0, op='gte'), 'arrival_date_year': BorderValue(value=2015.0, op='gte'), 'arrival_date_week_number': BorderValue(value=1.0, op='gte'), 'arrival_date_day_of_month': BorderValue(value=1.0, op='gte'), 'stays_in_weekend_nights': BorderValue(value=0.0, op='gte'), 'stays_in_week_nights': BorderValue(value=0.0, op='gte'), 'adults': BorderValue(value=0.0, op='gte'), 'children': BorderValue(value=0.0, op='gte'), 'babies': BorderValue(value=0.0, op='gte'), 'previous_cancellations': BorderValue(value=0.0, op='gte'), 'previous_bookings_not_canceled': BorderValue(value=0.0, op='gte'), 'booking_changes': BorderValue(value=0.0, op='gte'), 'days_in_waiting_list': BorderValue(value=0.0, op='gte'), 'adr': BorderValue(value=0.0, op='gte'), 'required_car_parking_spaces': BorderValue(value=0.0, op='gte'), 'total_of_special_requests': BorderValue(value=0.0, op='gte')}"}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"fullname": "ml.policies.data.interim_constraints.MAX_CONSTRAINTS", "modulename": "ml.policies.data.interim_constraints", "qualname": "MAX_CONSTRAINTS", "kind": "variable", "doc": "

    \n", "default_value": "{'arrival_date_week_number': BorderValue(value=53.0, op='lte'), 'arrival_date_day_of_month': BorderValue(value=31.0, op='lte')}"}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"fullname": "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS", "modulename": "ml.policies.data.interim_constraints", "qualname": "ALLOWED_VALUES_CONSTRAINTS", "kind": "variable", "doc": "

    \n", "default_value": "{'hotel': ['City Hotel', 'Resort Hotel'], 'arrival_date_month': ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], 'meal': ['BB', 'HB', 'FB', 'SC', 'Undefined'], 'market_segment': ['Aviation', 'Direct', 'Complementary', 'Corporate', 'Groups', 'Offline TA/TO', 'Online TA', 'Undefined'], 'distribution_channel': ['Direct', 'Corporate', 'GDS', 'TA/TO', 'Undefined'], 'deposit_type': ['No Deposit', 'Refundable', 'Non Refund'], 'customer_type': ['Contract', 'Transient', 'Transient-Party', 'Group'], 'reservation_status': ['Canceled', 'Check-Out', 'No-Show'], 'reserved_room_type': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'L', 'P'], 'assigned_room_type': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'K', 'L', 'P'], 'agent': ['1.0', '2.0', '3.0', '4.0', '5.0', '6.0', '7.0', '8.0', '9.0', '10.0', '11.0', '12.0', '13.0', '14.0', '15.0', '16.0', '17.0', '18.0', '19.0', '20.0', '21.0', '22.0', '23.0', '24.0', '25.0', '26.0', '27.0', '28.0', '29.0', '30.0', '31.0', '32.0', '33.0', '34.0', '35.0', '36.0', '37.0', '38.0', '39.0', '40.0', '41.0', '42.0', '43.0', '44.0', '45.0', '46.0', '47.0', '48.0', '49.0', '50.0', '51.0', '52.0', '53.0', '54.0', '55.0', '56.0', '57.0', '58.0', '59.0', '60.0', '61.0', '62.0', '63.0', '64.0', '65.0', '66.0', '67.0', '68.0', '69.0', '70.0', '71.0', '72.0', '73.0', '74.0', '75.0', '76.0', '77.0', '78.0', '79.0', '80.0', '81.0', '82.0', '83.0', '84.0', '85.0', '86.0', '87.0', '88.0', '89.0', '90.0', '91.0', '92.0', '93.0', '94.0', '95.0', '96.0', '97.0', '98.0', '99.0', '100.0', '101.0', '102.0', '103.0', '104.0', '105.0', '106.0', '107.0', '108.0', '109.0', '110.0', '111.0', '112.0', '113.0', '114.0', '115.0', '116.0', '117.0', '118.0', '119.0', '120.0', '121.0', '122.0', '123.0', '124.0', '125.0', '126.0', '127.0', '128.0', '129.0', '130.0', '131.0', '132.0', '133.0', '134.0', '135.0', '136.0', '137.0', '138.0', '139.0', '140.0', '141.0', '142.0', '143.0', '144.0', '145.0', '146.0', '147.0', '148.0', '149.0', '150.0', '151.0', '152.0', '153.0', '154.0', '155.0', '156.0', '157.0', '158.0', '159.0', '160.0', '161.0', '162.0', '163.0', '164.0', '165.0', '166.0', '167.0', '168.0', '169.0', '170.0', '171.0', '172.0', '173.0', '174.0', '175.0', '176.0', '177.0', '178.0', '179.0', '180.0', '181.0', '182.0', '183.0', '184.0', '185.0', '186.0', '187.0', '188.0', '189.0', '190.0', '191.0', '192.0', '193.0', '194.0', '195.0', '196.0', '197.0', '198.0', '199.0', '200.0', '201.0', '202.0', '203.0', '204.0', '205.0', '206.0', '207.0', '208.0', '209.0', '210.0', '211.0', '212.0', '213.0', '214.0', '215.0', '216.0', '217.0', '218.0', '219.0', '220.0', '221.0', '222.0', '223.0', '224.0', '225.0', '226.0', '227.0', '228.0', '229.0', '230.0', '231.0', '232.0', '233.0', '234.0', '235.0', '236.0', '237.0', '238.0', '239.0', '240.0', '241.0', '242.0', '243.0', '244.0', '245.0', '246.0', '247.0', '248.0', '249.0', '250.0', '251.0', '252.0', '253.0', '254.0', '255.0', '256.0', '257.0', '258.0', '259.0', '260.0', '261.0', '262.0', '263.0', '264.0', '265.0', '266.0', '267.0', '268.0', '269.0', '270.0', '271.0', '272.0', '273.0', '274.0', '275.0', '276.0', '277.0', '278.0', '279.0', '280.0', '281.0', '282.0', '283.0', '284.0', '285.0', '286.0', '287.0', '288.0', '289.0', '290.0', '291.0', '292.0', '293.0', '294.0', '295.0', '296.0', '297.0', '298.0', '299.0', '300.0', '301.0', '302.0', '303.0', '304.0', '305.0', '306.0', '307.0', '308.0', '309.0', '310.0', '311.0', '312.0', '313.0', '314.0', '315.0', '316.0', '317.0', '318.0', '319.0', '320.0', '321.0', '322.0', '323.0', '324.0', '325.0', '326.0', '327.0', '328.0', '329.0', '330.0', '331.0', '332.0', '333.0', '334.0', '335.0', '336.0', '337.0', '338.0', '339.0', '340.0', '341.0', '342.0', '343.0', '344.0', '345.0', '346.0', '347.0', '348.0', '349.0', '350.0', '351.0', '352.0', '353.0', '354.0', '355.0', '356.0', '357.0', '358.0', '359.0', '360.0', '361.0', '362.0', '363.0', '364.0', '365.0', '366.0', '367.0', '368.0', '369.0', '370.0', '371.0', '372.0', '373.0', '374.0', '375.0', '376.0', '377.0', '378.0', '379.0', '380.0', '381.0', '382.0', '383.0', '384.0', '385.0', '386.0', '387.0', '388.0', '389.0', '390.0', '391.0', '392.0', '393.0', '394.0', '395.0', '396.0', '397.0', '398.0', '399.0', '400.0', '401.0', '402.0', '403.0', '404.0', '405.0', '406.0', '407.0', '408.0', '409.0', '410.0', '411.0', '412.0', '413.0', '414.0', '415.0', '416.0', '417.0', '418.0', '419.0', '420.0', '421.0', '422.0', '423.0', '424.0', '425.0', '426.0', '427.0', '428.0', '429.0', '430.0', '431.0', '432.0', '433.0', '434.0', '435.0', '436.0', '437.0', '438.0', '439.0', '440.0', '441.0', '442.0', '443.0', '444.0', '445.0', '446.0', '447.0', '448.0', '449.0', '450.0', '451.0', '452.0', '453.0', '454.0', '455.0', '456.0', '457.0', '458.0', '459.0', '460.0', '461.0', '462.0', '463.0', '464.0', '465.0', '466.0', '467.0', '468.0', '469.0', '470.0', '471.0', '472.0', '473.0', '474.0', '475.0', '476.0', '477.0', '478.0', '479.0', '480.0', '481.0', '482.0', '483.0', '484.0', '485.0', '486.0', '487.0', '488.0', '489.0', '490.0', '491.0', '492.0', '493.0', '494.0', '495.0', '496.0', '497.0', '498.0', '499.0', '500.0', '501.0', '502.0', '503.0', '504.0', '505.0', '506.0', '507.0', '508.0', '509.0', '510.0', '511.0', '512.0', '513.0', '514.0', '515.0', '516.0', '517.0', '518.0', '519.0', '520.0', '521.0', '522.0', '523.0', '524.0', '525.0', '526.0', '527.0', '528.0', '529.0', '530.0', '531.0', '532.0', '533.0', '534.0', '535.0', '536.0', '537.0', '538.0', '539.0', '540.0', '541.0', '542.0', '543.0', '544.0', '545.0', '546.0', '547.0', '548.0', '549.0', '550.0', '551.0', '552.0', '553.0', '554.0', '555.0', '556.0', '557.0', '558.0', '559.0', '560.0', '561.0', '562.0', '563.0', '564.0', '565.0', '566.0', '567.0', '568.0', '569.0', '570.0', '571.0', '572.0', '573.0', '574.0', '575.0', '576.0', '577.0', '578.0', '579.0', '580.0', '581.0', '582.0', '583.0', '584.0', '585.0', '586.0', '587.0', '588.0', '589.0', '590.0', '591.0', '592.0', '593.0', '594.0', '595.0', '596.0', '597.0', '598.0', '599.0', '600.0', '601.0', '602.0', '603.0', '604.0', '605.0', '606.0', '607.0', '608.0', '609.0', '610.0', '611.0', '612.0', '613.0', '614.0', '615.0', '616.0', '617.0', '618.0', '619.0', '620.0', '621.0', '622.0', '623.0', '624.0', '625.0', '626.0', '627.0', '628.0', '629.0', '630.0', '631.0', '632.0', '633.0', '634.0', '635.0', '636.0', '637.0', '638.0', '639.0', '640.0', '641.0', '642.0', '643.0', '644.0', '645.0', '646.0', '647.0', '648.0', '649.0', '650.0', '651.0', '652.0', '653.0', '654.0', '655.0', '656.0', '657.0', '658.0', '659.0', '660.0', '661.0', '662.0', '663.0', '664.0', '665.0', '666.0', '667.0', '668.0', '669.0', '670.0', '671.0', '672.0', '673.0', '674.0', '675.0', '676.0', '677.0', '678.0', '679.0', '680.0', '681.0', '682.0', '683.0', '684.0', '685.0', '686.0', '687.0', '688.0', '689.0', '690.0', '691.0', '692.0', '693.0', '694.0', '695.0', '696.0', '697.0', '698.0', '699.0', '700.0', '701.0', '702.0', '703.0', '704.0', '705.0', '706.0', '707.0', '708.0', '709.0', '710.0', '711.0', '712.0', '713.0', '714.0', '715.0', '716.0', '717.0', '718.0', '719.0', '720.0', '721.0', '722.0', '723.0', '724.0', '725.0', '726.0', '727.0', '728.0', '729.0', '730.0', '731.0', '732.0', '733.0', '734.0', '735.0', '736.0', '737.0', '738.0', '739.0', '740.0', '741.0', '742.0', '743.0', '744.0', '745.0', '746.0', '747.0', '748.0', '749.0', '750.0', '751.0', '752.0', '753.0', '754.0', '755.0', '756.0', '757.0', '758.0', '759.0', '760.0', '761.0', '762.0', '763.0', '764.0', '765.0', '766.0', '767.0', '768.0', '769.0', '770.0', '771.0', '772.0', '773.0', '774.0', '775.0', '776.0', '777.0', '778.0', '779.0', '780.0', '781.0', '782.0', '783.0', '784.0', '785.0', '786.0', '787.0', '788.0', '789.0', '790.0', '791.0', '792.0', '793.0', '794.0', '795.0', '796.0', '797.0', '798.0', '799.0', '800.0', '801.0', '802.0', '803.0', '804.0', '805.0', '806.0', '807.0', '808.0', '809.0', '810.0', '811.0', '812.0', '813.0', '814.0', '815.0', '816.0', '817.0', '818.0', '819.0', '820.0', '821.0', '822.0', '823.0', '824.0', '825.0', '826.0', '827.0', '828.0', '829.0', '830.0', '831.0', '832.0', '833.0', '834.0', '835.0', '836.0', '837.0', '838.0', '839.0', '840.0', '841.0', '842.0', '843.0', '844.0', '845.0', '846.0', '847.0', '848.0', '849.0', '850.0', '851.0', '852.0', '853.0', '854.0', '855.0', '856.0', '857.0', '858.0', '859.0', '860.0', '861.0', '862.0', '863.0', '864.0', '865.0', '866.0', '867.0', '868.0', '869.0', '870.0', '871.0', '872.0', '873.0', '874.0', '875.0', '876.0', '877.0', '878.0', '879.0', '880.0', '881.0', '882.0', '883.0', '884.0', '885.0', '886.0', '887.0', '888.0', '889.0', '890.0', '891.0', '892.0', '893.0', '894.0', '895.0', '896.0', '897.0', '898.0', '899.0', '900.0', '901.0', '902.0', '903.0', '904.0', '905.0', '906.0', '907.0', '908.0', '909.0', '910.0', '911.0', '912.0', '913.0', '914.0', '915.0', '916.0', '917.0', '918.0', '919.0', '920.0', '921.0', '922.0', '923.0', '924.0', '925.0', '926.0', '927.0', '928.0', '929.0', '930.0', '931.0', '932.0', '933.0', '934.0', '935.0', '936.0', '937.0', '938.0', '939.0', '940.0', '941.0', '942.0', '943.0', '944.0', '945.0', '946.0', '947.0', '948.0', '949.0', '950.0', '951.0', '952.0', '953.0', '954.0', '955.0', '956.0', '957.0', '958.0', '959.0', '960.0', '961.0', '962.0', '963.0', '964.0', '965.0', '966.0', '967.0', '968.0', '969.0', '970.0', '971.0', '972.0', '973.0', '974.0', '975.0', '976.0', '977.0', '978.0', '979.0', '980.0', '981.0', '982.0', '983.0', '984.0', '985.0', '986.0', '987.0', '988.0', '989.0', '990.0', '991.0', '992.0', '993.0', '994.0', '995.0', '996.0', '997.0', '998.0', '999.0'], 'company': ['1.0', '2.0', '3.0', '4.0', '5.0', '6.0', '7.0', '8.0', '9.0', '10.0', '11.0', '12.0', '13.0', '14.0', '15.0', '16.0', '17.0', '18.0', '19.0', '20.0', '21.0', '22.0', '23.0', '24.0', '25.0', '26.0', '27.0', '28.0', '29.0', '30.0', '31.0', '32.0', '33.0', '34.0', '35.0', '36.0', '37.0', '38.0', '39.0', '40.0', '41.0', '42.0', '43.0', '44.0', '45.0', '46.0', '47.0', '48.0', '49.0', '50.0', '51.0', '52.0', '53.0', '54.0', '55.0', '56.0', '57.0', '58.0', '59.0', '60.0', '61.0', '62.0', '63.0', '64.0', '65.0', '66.0', '67.0', '68.0', '69.0', '70.0', '71.0', '72.0', '73.0', '74.0', '75.0', '76.0', '77.0', '78.0', '79.0', '80.0', '81.0', '82.0', '83.0', '84.0', '85.0', '86.0', '87.0', '88.0', '89.0', '90.0', '91.0', '92.0', '93.0', '94.0', '95.0', '96.0', '97.0', '98.0', '99.0', '100.0', '101.0', '102.0', '103.0', '104.0', '105.0', '106.0', '107.0', '108.0', '109.0', '110.0', '111.0', '112.0', '113.0', '114.0', '115.0', '116.0', '117.0', '118.0', '119.0', '120.0', '121.0', '122.0', '123.0', '124.0', '125.0', '126.0', '127.0', '128.0', '129.0', '130.0', '131.0', '132.0', '133.0', '134.0', '135.0', '136.0', '137.0', '138.0', '139.0', '140.0', '141.0', '142.0', '143.0', '144.0', '145.0', '146.0', '147.0', '148.0', '149.0', '150.0', '151.0', '152.0', '153.0', '154.0', '155.0', '156.0', '157.0', '158.0', '159.0', '160.0', '161.0', '162.0', '163.0', '164.0', '165.0', '166.0', '167.0', '168.0', '169.0', '170.0', '171.0', '172.0', '173.0', '174.0', '175.0', '176.0', '177.0', '178.0', '179.0', '180.0', '181.0', '182.0', '183.0', '184.0', '185.0', '186.0', '187.0', '188.0', '189.0', '190.0', '191.0', '192.0', '193.0', '194.0', '195.0', '196.0', '197.0', '198.0', '199.0', '200.0', '201.0', '202.0', '203.0', '204.0', '205.0', '206.0', '207.0', '208.0', '209.0', '210.0', '211.0', '212.0', '213.0', '214.0', '215.0', '216.0', '217.0', '218.0', '219.0', '220.0', '221.0', '222.0', '223.0', '224.0', '225.0', '226.0', '227.0', '228.0', '229.0', '230.0', '231.0', '232.0', '233.0', '234.0', '235.0', '236.0', '237.0', '238.0', '239.0', '240.0', '241.0', '242.0', '243.0', '244.0', '245.0', '246.0', '247.0', '248.0', '249.0', '250.0', '251.0', '252.0', '253.0', '254.0', '255.0', '256.0', '257.0', '258.0', '259.0', '260.0', '261.0', '262.0', '263.0', '264.0', '265.0', '266.0', '267.0', '268.0', '269.0', '270.0', '271.0', '272.0', '273.0', '274.0', '275.0', '276.0', '277.0', '278.0', '279.0', '280.0', '281.0', '282.0', '283.0', '284.0', '285.0', '286.0', '287.0', '288.0', '289.0', '290.0', '291.0', '292.0', '293.0', '294.0', '295.0', '296.0', '297.0', '298.0', '299.0', '300.0', '301.0', '302.0', '303.0', '304.0', '305.0', '306.0', '307.0', '308.0', '309.0', '310.0', '311.0', '312.0', '313.0', '314.0', '315.0', '316.0', '317.0', '318.0', '319.0', '320.0', '321.0', '322.0', '323.0', '324.0', '325.0', '326.0', '327.0', '328.0', '329.0', '330.0', '331.0', '332.0', '333.0', '334.0', '335.0', '336.0', '337.0', '338.0', '339.0', '340.0', '341.0', '342.0', '343.0', '344.0', '345.0', '346.0', '347.0', '348.0', '349.0', '350.0', '351.0', '352.0', '353.0', '354.0', '355.0', '356.0', '357.0', '358.0', '359.0', '360.0', '361.0', '362.0', '363.0', '364.0', '365.0', '366.0', '367.0', '368.0', '369.0', '370.0', '371.0', '372.0', '373.0', '374.0', '375.0', '376.0', '377.0', '378.0', '379.0', '380.0', '381.0', '382.0', '383.0', '384.0', '385.0', '386.0', '387.0', '388.0', '389.0', '390.0', '391.0', '392.0', '393.0', '394.0', '395.0', '396.0', '397.0', '398.0', '399.0', '400.0', '401.0', '402.0', '403.0', '404.0', '405.0', '406.0', '407.0', '408.0', '409.0', '410.0', '411.0', '412.0', '413.0', '414.0', '415.0', '416.0', '417.0', '418.0', '419.0', '420.0', '421.0', '422.0', '423.0', '424.0', '425.0', '426.0', '427.0', '428.0', '429.0', '430.0', '431.0', '432.0', '433.0', '434.0', '435.0', '436.0', '437.0', '438.0', '439.0', '440.0', '441.0', '442.0', '443.0', '444.0', '445.0', '446.0', '447.0', '448.0', '449.0', '450.0', '451.0', '452.0', '453.0', '454.0', '455.0', '456.0', '457.0', '458.0', '459.0', '460.0', '461.0', '462.0', '463.0', '464.0', '465.0', '466.0', '467.0', '468.0', '469.0', '470.0', '471.0', '472.0', '473.0', '474.0', '475.0', '476.0', '477.0', '478.0', '479.0', '480.0', '481.0', '482.0', '483.0', '484.0', '485.0', '486.0', '487.0', '488.0', '489.0', '490.0', '491.0', '492.0', '493.0', '494.0', '495.0', '496.0', '497.0', '498.0', '499.0', '500.0', '501.0', '502.0', '503.0', '504.0', '505.0', '506.0', '507.0', '508.0', '509.0', '510.0', '511.0', '512.0', '513.0', '514.0', '515.0', '516.0', '517.0', '518.0', '519.0', '520.0', '521.0', '522.0', '523.0', '524.0', '525.0', '526.0', '527.0', '528.0', '529.0', '530.0', '531.0', '532.0', '533.0', '534.0', '535.0', '536.0', '537.0', '538.0', '539.0', '540.0', '541.0', '542.0', '543.0', '544.0', '545.0', '546.0', '547.0', '548.0', '549.0', '550.0', '551.0', '552.0', '553.0', '554.0', '555.0', '556.0', '557.0', '558.0', '559.0', '560.0', '561.0', '562.0', '563.0', '564.0', '565.0', '566.0', '567.0', '568.0', '569.0', '570.0', '571.0', '572.0', '573.0', '574.0', '575.0', '576.0', '577.0', '578.0', '579.0', '580.0', '581.0', '582.0', '583.0', '584.0', '585.0', '586.0', '587.0', '588.0', '589.0', '590.0', '591.0', '592.0', '593.0', '594.0', '595.0', '596.0', '597.0', '598.0', '599.0', '600.0', '601.0', '602.0', '603.0', '604.0', '605.0', '606.0', '607.0', '608.0', '609.0', '610.0', '611.0', '612.0', '613.0', '614.0', '615.0', '616.0', '617.0', '618.0', '619.0', '620.0', '621.0', '622.0', '623.0', '624.0', '625.0', '626.0', '627.0', '628.0', '629.0', '630.0', '631.0', '632.0', '633.0', '634.0', '635.0', '636.0', '637.0', '638.0', '639.0', '640.0', '641.0', '642.0', '643.0', '644.0', '645.0', '646.0', '647.0', '648.0', '649.0', '650.0', '651.0', '652.0', '653.0', '654.0', '655.0', '656.0', '657.0', '658.0', '659.0', '660.0', '661.0', '662.0', '663.0', '664.0', '665.0', '666.0', '667.0', '668.0', '669.0', '670.0', '671.0', '672.0', '673.0', '674.0', '675.0', '676.0', '677.0', '678.0', '679.0', '680.0', '681.0', '682.0', '683.0', '684.0', '685.0', '686.0', '687.0', '688.0', '689.0', '690.0', '691.0', '692.0', '693.0', '694.0', '695.0', '696.0', '697.0', '698.0', '699.0', '700.0', '701.0', '702.0', '703.0', '704.0', '705.0', '706.0', '707.0', '708.0', '709.0', '710.0', '711.0', '712.0', '713.0', '714.0', '715.0', '716.0', '717.0', '718.0', '719.0', '720.0', '721.0', '722.0', '723.0', '724.0', '725.0', '726.0', '727.0', '728.0', '729.0', '730.0', '731.0', '732.0', '733.0', '734.0', '735.0', '736.0', '737.0', '738.0', '739.0', '740.0', '741.0', '742.0', '743.0', '744.0', '745.0', '746.0', '747.0', '748.0', '749.0', '750.0', '751.0', '752.0', '753.0', '754.0', '755.0', '756.0', '757.0', '758.0', '759.0', '760.0', '761.0', '762.0', '763.0', '764.0', '765.0', '766.0', '767.0', '768.0', '769.0', '770.0', '771.0', '772.0', '773.0', '774.0', '775.0', '776.0', '777.0', '778.0', '779.0', '780.0', '781.0', '782.0', '783.0', '784.0', '785.0', '786.0', '787.0', '788.0', '789.0', '790.0', '791.0', '792.0', '793.0', '794.0', '795.0', '796.0', '797.0', '798.0', '799.0', '800.0', '801.0', '802.0', '803.0', '804.0', '805.0', '806.0', '807.0', '808.0', '809.0', '810.0', '811.0', '812.0', '813.0', '814.0', '815.0', '816.0', '817.0', '818.0', '819.0', '820.0', '821.0', '822.0', '823.0', '824.0', '825.0', '826.0', '827.0', '828.0', '829.0', '830.0', '831.0', '832.0', '833.0', '834.0', '835.0', '836.0', '837.0', '838.0', '839.0', '840.0', '841.0', '842.0', '843.0', '844.0', '845.0', '846.0', '847.0', '848.0', '849.0', '850.0', '851.0', '852.0', '853.0', '854.0', '855.0', '856.0', '857.0', '858.0', '859.0', '860.0', '861.0', '862.0', '863.0', '864.0', '865.0', '866.0', '867.0', '868.0', '869.0', '870.0', '871.0', '872.0', '873.0', '874.0', '875.0', '876.0', '877.0', '878.0', '879.0', '880.0', '881.0', '882.0', '883.0', '884.0', '885.0', '886.0', '887.0', '888.0', '889.0', '890.0', '891.0', '892.0', '893.0', '894.0', '895.0', '896.0', '897.0', '898.0', '899.0', '900.0', '901.0', '902.0', '903.0', '904.0', '905.0', '906.0', '907.0', '908.0', '909.0', '910.0', '911.0', '912.0', '913.0', '914.0', '915.0', '916.0', '917.0', '918.0', '919.0', '920.0', '921.0', '922.0', '923.0', '924.0', '925.0', '926.0', '927.0', '928.0', '929.0', '930.0', '931.0', '932.0', '933.0', '934.0', '935.0', '936.0', '937.0', '938.0', '939.0', '940.0', '941.0', '942.0', '943.0', '944.0', '945.0', '946.0', '947.0', '948.0', '949.0', '950.0', '951.0', '952.0', '953.0', '954.0', '955.0', '956.0', '957.0', '958.0', '959.0', '960.0', '961.0', '962.0', '963.0', '964.0', '965.0', '966.0', '967.0', '968.0', '969.0', '970.0', '971.0', '972.0', '973.0', '974.0', '975.0', '976.0', '977.0', '978.0', '979.0', '980.0', '981.0', '982.0', '983.0', '984.0', '985.0', '986.0', '987.0', '988.0', '989.0', '990.0', '991.0', '992.0', '993.0', '994.0', '995.0', '996.0', '997.0', '998.0', '999.0'], 'country': ['PRT', 'GBR', 'USA', 'ESP', 'IRL', 'FRA', 'ROU', 'NOR', 'OMN', 'ARG', 'POL', 'DEU', 'BEL', 'CHE', 'CN', 'GRC', 'ITA', 'NLD', 'DNK', 'RUS', 'SWE', 'AUS', 'EST', 'CZE', 'BRA', 'FIN', 'MOZ', 'BWA', 'LUX', 'SVN', 'ALB', 'IND', 'CHN', 'MEX', 'MAR', 'UKR', 'SMR', 'LVA', 'PRI', 'SRB', 'CHL', 'AUT', 'BLR', 'LTU', 'TUR', 'ZAF', 'AGO', 'ISR', 'CYM', 'ZMB', 'CPV', 'ZWE', 'DZA', 'KOR', 'CRI', 'HUN', 'ARE', 'TUN', 'JAM', 'HRV', 'HKG', 'IRN', 'GEO', 'AND', 'GIB', 'URY', 'JEY', 'CAF', 'CYP', 'COL', 'GGY', 'KWT', 'NGA', 'MDV', 'VEN', 'SVK', 'FJI', 'KAZ', 'PAK', 'IDN', 'LBN', 'PHL', 'SEN', 'SYC', 'AZE', 'BHR', 'NZL', 'THA', 'DOM', 'MKD', 'MYS', 'ARM', 'JPN', 'LKA', 'CUB', 'CMR', 'BIH', 'MUS', 'COM', 'SUR', 'UGA', 'BGR', 'CIV', 'JOR', 'SYR', 'SGP', 'BDI', 'SAU', 'VNM', 'PLW', 'QAT', 'EGY', 'PER', 'MLT', 'MWI', 'ECU', 'MDG', 'ISL', 'UZB', 'NPL', 'BHS', 'MAC', 'TGO', 'TWN', 'DJI', 'STP', 'KNA', 'ETH', 'IRQ', 'HND', 'RWA', 'KHM', 'MCO', 'BGD', 'IMN', 'TJK', 'NIC', 'BEN', 'VGB', 'TZA', 'GAB', 'GHA', 'TMP', 'GLP', 'KEN', 'LIE', 'GNB', 'MNE', 'UMI', 'MYT', 'FRO', 'MMR', 'PAN', 'BFA', 'LBY', 'MLI', 'NAM', 'BOL', 'PRY', 'BRB', 'ABW', 'AIA', 'SLV', 'DMA', 'PYF', 'GUY', 'LCA', 'ATA', 'GTM', 'ASM', 'MRT', 'NCL', 'KIR', 'SDN', 'ATF', 'SLE', 'LAO']}"}, "ml.policies.data.row_id": {"fullname": "ml.policies.data.row_id", "modulename": "ml.policies.data.row_id", "kind": "module", "doc": "

    Registry of datasets requiring row-id generation and their handlers.

    \n"}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"fullname": "ml.policies.data.row_id.ROW_ID_REQUIRED", "modulename": "ml.policies.data.row_id", "qualname": "ROW_ID_REQUIRED", "kind": "variable", "doc": "

    \n", "default_value": "['hotel_bookings']"}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"fullname": "ml.policies.data.row_id.ROW_ID_FUNCTIONS", "modulename": "ml.policies.data.row_id", "qualname": "ROW_ID_FUNCTIONS", "kind": "variable", "doc": "

    \n", "default_value": "{'hotel_bookings': <bound method AddRowIDToHotelBookings.add_row_id of <ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings object>>}"}, "ml.policies.model_params": {"fullname": "ml.policies.model_params", "modulename": "ml.policies.model_params", "kind": "module", "doc": "

    A package with model params policies.

    \n"}, "ml.policies.model_params.catboost_constraints": {"fullname": "ml.policies.model_params.catboost_constraints", "modulename": "ml.policies.model_params.catboost_constraints", "kind": "module", "doc": "

    CatBoost hyperparameter constraint definitions used by validation logic.

    \n"}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints", "kind": "class", "doc": "

    Numeric bounds and sign constraints for a single hyperparameter.

    \n"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmin_value: float | int | None = None,\tmax_value: float | int | None = None,\tallow_zero: bool = True,\tallow_negative: bool = False)"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.min_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | int | None", "default_value": "None"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.max_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | int | None", "default_value": "None"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.allow_zero", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "True"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.allow_negative", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"fullname": "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "CATBOOST_PARAM_CONSTRAINTS", "kind": "variable", "doc": "

    \n", "default_value": "{'depth': ParamConstraints(min_value=1, max_value=16, allow_zero=False, allow_negative=False), 'learning_rate': ParamConstraints(min_value=1e-06, max_value=1.0, allow_zero=False, allow_negative=False), 'l2_leaf_reg': ParamConstraints(min_value=0.0, max_value=100.0, allow_zero=True, allow_negative=False), 'random_strength': ParamConstraints(min_value=0.0, max_value=100.0, allow_zero=True, allow_negative=False), 'min_data_in_leaf': ParamConstraints(min_value=1, max_value=10000, allow_zero=False, allow_negative=False), 'bagging_temperature': ParamConstraints(min_value=0.0, max_value=10.0, allow_zero=True, allow_negative=False), 'border_count': ParamConstraints(min_value=1, max_value=254, allow_zero=False, allow_negative=False), 'colsample_bylevel': ParamConstraints(min_value=0.0, max_value=1.0, allow_zero=False, allow_negative=False)}"}, "ml.policies.promotion": {"fullname": "ml.policies.promotion", "modulename": "ml.policies.promotion", "kind": "module", "doc": "

    A package with promotion policies.

    \n"}, "ml.policies.promotion.threshold_support": {"fullname": "ml.policies.promotion.threshold_support", "modulename": "ml.policies.promotion.threshold_support", "kind": "module", "doc": "

    Task/subtask combinations that support threshold-based decisioning.

    \n"}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"fullname": "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS", "modulename": "ml.policies.promotion.threshold_support", "qualname": "TASKS_SUPPORTING_THRESHOLDS", "kind": "variable", "doc": "

    \n", "default_value": "{('classification', 'binary')}"}, "ml.promotion": {"fullname": "ml.promotion", "modulename": "ml.promotion", "kind": "module", "doc": "

    A package with promotion-specific code.

    \n"}, "ml.promotion.comparisons": {"fullname": "ml.promotion.comparisons", "modulename": "ml.promotion.comparisons", "kind": "module", "doc": "

    A package for comparisons of candidate models.

    \n"}, "ml.promotion.comparisons.production": {"fullname": "ml.promotion.comparisons.production", "modulename": "ml.promotion.comparisons.production", "kind": "module", "doc": "

    Production-baseline comparison logic for promotion decisions.

    \n"}, "ml.promotion.comparisons.production.logger": {"fullname": "ml.promotion.comparisons.production.logger", "modulename": "ml.promotion.comparisons.production", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.comparisons.production (WARNING)>"}, "ml.promotion.comparisons.production.compare_against_production_model": {"fullname": "ml.promotion.comparisons.production.compare_against_production_model", "modulename": "ml.promotion.comparisons.production", "qualname": "compare_against_production_model", "kind": "function", "doc": "

    Compare candidate evaluation metrics against current production metrics.

    \n\n

    Args:\n evaluation_metrics: Nested metrics grouped by split set.\n current_prod_model_info: Registry payload for current production model.\n metric_sets: Metric sets to compare.\n metric_names: Metric names to compare.\n directions: Comparison direction for each metric.

    \n\n

    Returns:\n ProductionComparisonResult: Production comparison outcome.

    \n", "signature": "(\t*,\tevaluation_metrics: dict[str, dict[str, float]],\tcurrent_prod_model_info: dict | None,\tmetric_sets: list[ml.promotion.config.models.MetricSet],\tmetric_names: list[ml.promotion.config.models.MetricName],\tdirections: dict[ml.promotion.config.models.MetricName, ml.promotion.config.models.Direction]) -> ml.promotion.constants.constants.ProductionComparisonResult:", "funcdef": "def"}, "ml.promotion.comparisons.thresholds": {"fullname": "ml.promotion.comparisons.thresholds", "modulename": "ml.promotion.comparisons.thresholds", "kind": "module", "doc": "

    Threshold comparison logic for promotion decisions.

    \n"}, "ml.promotion.comparisons.thresholds.logger": {"fullname": "ml.promotion.comparisons.thresholds.logger", "modulename": "ml.promotion.comparisons.thresholds", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.comparisons.thresholds (WARNING)>"}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"fullname": "ml.promotion.comparisons.thresholds.compare_against_thresholds", "modulename": "ml.promotion.comparisons.thresholds", "qualname": "compare_against_thresholds", "kind": "function", "doc": "

    Compare evaluation metrics against configured promotion thresholds.

    \n\n

    Args:\n evaluation_metrics: Nested metrics grouped by split set.\n promotion_thresholds: Validated threshold configuration.

    \n\n

    Returns:\n ThresholdComparisonResult: Threshold comparison outcome.

    \n", "signature": "(\t*,\tevaluation_metrics: dict[str, dict[str, float]],\tpromotion_thresholds: ml.promotion.config.models.PromotionThresholds) -> ml.promotion.constants.constants.ThresholdComparisonResult:", "funcdef": "def"}, "ml.promotion.config": {"fullname": "ml.promotion.config", "modulename": "ml.promotion.config", "kind": "module", "doc": "

    A package with promotion-specific pydantic models.

    \n"}, "ml.promotion.config.models": {"fullname": "ml.promotion.config.models", "modulename": "ml.promotion.config.models", "kind": "module", "doc": "

    Pydantic schemas and enums for promotion policy configuration.

    \n"}, "ml.promotion.config.models.logger": {"fullname": "ml.promotion.config.models.logger", "modulename": "ml.promotion.config.models", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.config.models (WARNING)>"}, "ml.promotion.config.models.MetricSet": {"fullname": "ml.promotion.config.models.MetricSet", "modulename": "ml.promotion.config.models", "qualname": "MetricSet", "kind": "class", "doc": "

    Supported metric split sets for promotion evaluation.

    \n", "bases": "enum.StrEnum"}, "ml.promotion.config.models.MetricSet.TEST": {"fullname": "ml.promotion.config.models.MetricSet.TEST", "modulename": "ml.promotion.config.models", "qualname": "MetricSet.TEST", "kind": "variable", "doc": "

    \n", "default_value": "<MetricSet.TEST: 'test'>"}, "ml.promotion.config.models.MetricSet.VAL": {"fullname": "ml.promotion.config.models.MetricSet.VAL", "modulename": "ml.promotion.config.models", "qualname": "MetricSet.VAL", "kind": "variable", "doc": "

    \n", "default_value": "<MetricSet.VAL: 'val'>"}, "ml.promotion.config.models.MetricSet.TRAIN": {"fullname": "ml.promotion.config.models.MetricSet.TRAIN", "modulename": "ml.promotion.config.models", "qualname": "MetricSet.TRAIN", "kind": "variable", "doc": "

    \n", "default_value": "<MetricSet.TRAIN: 'train'>"}, "ml.promotion.config.models.MetricName": {"fullname": "ml.promotion.config.models.MetricName", "modulename": "ml.promotion.config.models", "qualname": "MetricName", "kind": "class", "doc": "

    Supported metric names used in promotion criteria.

    \n", "bases": "enum.StrEnum"}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"fullname": "ml.promotion.config.models.MetricName.POSITIVE_RATE", "modulename": "ml.promotion.config.models", "qualname": "MetricName.POSITIVE_RATE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.POSITIVE_RATE: 'positive_rate'>"}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"fullname": "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE", "modulename": "ml.promotion.config.models", "qualname": "MetricName.PREDICTION_POSITIVE_RATE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.PREDICTION_POSITIVE_RATE: 'prediction_positive_rate'>"}, "ml.promotion.config.models.MetricName.ACCURACY": {"fullname": "ml.promotion.config.models.MetricName.ACCURACY", "modulename": "ml.promotion.config.models", "qualname": "MetricName.ACCURACY", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.ACCURACY: 'accuracy'>"}, "ml.promotion.config.models.MetricName.F1": {"fullname": "ml.promotion.config.models.MetricName.F1", "modulename": "ml.promotion.config.models", "qualname": "MetricName.F1", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.F1: 'f1'>"}, "ml.promotion.config.models.MetricName.PRECISION": {"fullname": "ml.promotion.config.models.MetricName.PRECISION", "modulename": "ml.promotion.config.models", "qualname": "MetricName.PRECISION", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.PRECISION: 'precision'>"}, "ml.promotion.config.models.MetricName.RECALL": {"fullname": "ml.promotion.config.models.MetricName.RECALL", "modulename": "ml.promotion.config.models", "qualname": "MetricName.RECALL", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.RECALL: 'recall'>"}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"fullname": "ml.promotion.config.models.MetricName.BALANCED_ACCURACY", "modulename": "ml.promotion.config.models", "qualname": "MetricName.BALANCED_ACCURACY", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.BALANCED_ACCURACY: 'balanced_accuracy'>"}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"fullname": "ml.promotion.config.models.MetricName.SPECIFICITY", "modulename": "ml.promotion.config.models", "qualname": "MetricName.SPECIFICITY", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.SPECIFICITY: 'specificity'>"}, "ml.promotion.config.models.MetricName.ROC_AUC": {"fullname": "ml.promotion.config.models.MetricName.ROC_AUC", "modulename": "ml.promotion.config.models", "qualname": "MetricName.ROC_AUC", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.ROC_AUC: 'roc_auc'>"}, "ml.promotion.config.models.MetricName.PR_AUC": {"fullname": "ml.promotion.config.models.MetricName.PR_AUC", "modulename": "ml.promotion.config.models", "qualname": "MetricName.PR_AUC", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.PR_AUC: 'pr_auc'>"}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"fullname": "ml.promotion.config.models.MetricName.LOG_LOSS", "modulename": "ml.promotion.config.models", "qualname": "MetricName.LOG_LOSS", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.LOG_LOSS: 'log_loss'>"}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"fullname": "ml.promotion.config.models.MetricName.BRIER_SCORE", "modulename": "ml.promotion.config.models", "qualname": "MetricName.BRIER_SCORE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.BRIER_SCORE: 'brier_score'>"}, "ml.promotion.config.models.MetricName.ECE": {"fullname": "ml.promotion.config.models.MetricName.ECE", "modulename": "ml.promotion.config.models", "qualname": "MetricName.ECE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.ECE: 'ece'>"}, "ml.promotion.config.models.MetricName.MAE": {"fullname": "ml.promotion.config.models.MetricName.MAE", "modulename": "ml.promotion.config.models", "qualname": "MetricName.MAE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.MAE: 'mae'>"}, "ml.promotion.config.models.MetricName.MSE": {"fullname": "ml.promotion.config.models.MetricName.MSE", "modulename": "ml.promotion.config.models", "qualname": "MetricName.MSE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.MSE: 'mse'>"}, "ml.promotion.config.models.MetricName.RMSE": {"fullname": "ml.promotion.config.models.MetricName.RMSE", "modulename": "ml.promotion.config.models", "qualname": "MetricName.RMSE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.RMSE: 'rmse'>"}, "ml.promotion.config.models.MetricName.R2": {"fullname": "ml.promotion.config.models.MetricName.R2", "modulename": "ml.promotion.config.models", "qualname": "MetricName.R2", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.R2: 'r2'>"}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"fullname": "ml.promotion.config.models.MetricName.MEDIAN_AE", "modulename": "ml.promotion.config.models", "qualname": "MetricName.MEDIAN_AE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.MEDIAN_AE: 'median_ae'>"}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"fullname": "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE", "modulename": "ml.promotion.config.models", "qualname": "MetricName.EXPLAINED_VARIANCE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.EXPLAINED_VARIANCE: 'explained_variance'>"}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"fullname": "ml.promotion.config.models.MetricName.RESIDUAL_MEAN", "modulename": "ml.promotion.config.models", "qualname": "MetricName.RESIDUAL_MEAN", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.RESIDUAL_MEAN: 'residual_mean'>"}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"fullname": "ml.promotion.config.models.MetricName.RESIDUAL_STD", "modulename": "ml.promotion.config.models", "qualname": "MetricName.RESIDUAL_STD", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.RESIDUAL_STD: 'residual_std'>"}, "ml.promotion.config.models.Direction": {"fullname": "ml.promotion.config.models.Direction", "modulename": "ml.promotion.config.models", "qualname": "Direction", "kind": "class", "doc": "

    Optimization direction per promotion metric.

    \n", "bases": "enum.StrEnum"}, "ml.promotion.config.models.Direction.MAXIMIZE": {"fullname": "ml.promotion.config.models.Direction.MAXIMIZE", "modulename": "ml.promotion.config.models", "qualname": "Direction.MAXIMIZE", "kind": "variable", "doc": "

    \n", "default_value": "<Direction.MAXIMIZE: 'maximize'>"}, "ml.promotion.config.models.Direction.MINIMIZE": {"fullname": "ml.promotion.config.models.Direction.MINIMIZE", "modulename": "ml.promotion.config.models", "qualname": "Direction.MINIMIZE", "kind": "variable", "doc": "

    \n", "default_value": "<Direction.MINIMIZE: 'minimize'>"}, "ml.promotion.config.models.PromotionMetricsConfig": {"fullname": "ml.promotion.config.models.PromotionMetricsConfig", "modulename": "ml.promotion.config.models", "qualname": "PromotionMetricsConfig", "kind": "class", "doc": "

    Metric selection and direction configuration for promotion checks.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"fullname": "ml.promotion.config.models.PromotionMetricsConfig.sets", "modulename": "ml.promotion.config.models", "qualname": "PromotionMetricsConfig.sets", "kind": "variable", "doc": "

    List of metric sets to consider for promotion

    \n", "annotation": ": list[ml.promotion.config.models.MetricSet]", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"fullname": "ml.promotion.config.models.PromotionMetricsConfig.metrics", "modulename": "ml.promotion.config.models", "qualname": "PromotionMetricsConfig.metrics", "kind": "variable", "doc": "

    List of metrics to consider for promotion

    \n", "annotation": ": list[ml.promotion.config.models.MetricName]", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"fullname": "ml.promotion.config.models.PromotionMetricsConfig.directions", "modulename": "ml.promotion.config.models", "qualname": "PromotionMetricsConfig.directions", "kind": "variable", "doc": "

    dictionary mapping each metric to its optimization direction

    \n", "annotation": ": dict[ml.promotion.config.models.MetricName, ml.promotion.config.models.Direction]", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"fullname": "ml.promotion.config.models.PromotionMetricsConfig.validate_directions", "modulename": "ml.promotion.config.models", "qualname": "PromotionMetricsConfig.validate_directions", "kind": "function", "doc": "

    Ensure direction entries are provided for every configured metric.

    \n\n

    Args:\n directions: Directions mapping.\n info: Pydantic validation context containing already parsed data.

    \n\n

    Returns:\n dict[MetricName, Direction]: Validated directions mapping.

    \n", "signature": "(\tcls,\tdirections: dict[ml.promotion.config.models.MetricName, ml.promotion.config.models.Direction],\tinfo: pydantic_core.core_schema.ValidationInfo) -> dict[ml.promotion.config.models.MetricName, ml.promotion.config.models.Direction]:", "funcdef": "def"}, "ml.promotion.config.models.ThresholdsConfig": {"fullname": "ml.promotion.config.models.ThresholdsConfig", "modulename": "ml.promotion.config.models", "qualname": "ThresholdsConfig", "kind": "class", "doc": "

    Per-split threshold values for promotion metrics.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.models.ThresholdsConfig.test": {"fullname": "ml.promotion.config.models.ThresholdsConfig.test", "modulename": "ml.promotion.config.models", "qualname": "ThresholdsConfig.test", "kind": "variable", "doc": "

    dictionary of metric thresholds for the test set

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.ThresholdsConfig.val": {"fullname": "ml.promotion.config.models.ThresholdsConfig.val", "modulename": "ml.promotion.config.models", "qualname": "ThresholdsConfig.val", "kind": "variable", "doc": "

    dictionary of metric thresholds for the validation set

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.ThresholdsConfig.train": {"fullname": "ml.promotion.config.models.ThresholdsConfig.train", "modulename": "ml.promotion.config.models", "qualname": "ThresholdsConfig.train", "kind": "variable", "doc": "

    dictionary of metric thresholds for the training set

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.LineageConfig": {"fullname": "ml.promotion.config.models.LineageConfig", "modulename": "ml.promotion.config.models", "qualname": "LineageConfig", "kind": "class", "doc": "

    Lineage metadata describing threshold config provenance.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.models.LineageConfig.created_by": {"fullname": "ml.promotion.config.models.LineageConfig.created_by", "modulename": "ml.promotion.config.models", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.LineageConfig.created_at": {"fullname": "ml.promotion.config.models.LineageConfig.created_at", "modulename": "ml.promotion.config.models", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.PromotionThresholds": {"fullname": "ml.promotion.config.models.PromotionThresholds", "modulename": "ml.promotion.config.models", "qualname": "PromotionThresholds", "kind": "class", "doc": "

    Top-level validated promotion threshold configuration.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"fullname": "ml.promotion.config.models.PromotionThresholds.promotion_metrics", "modulename": "ml.promotion.config.models", "qualname": "PromotionThresholds.promotion_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.models.PromotionMetricsConfig", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"fullname": "ml.promotion.config.models.PromotionThresholds.thresholds", "modulename": "ml.promotion.config.models", "qualname": "PromotionThresholds.thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.models.ThresholdsConfig", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.PromotionThresholds.lineage": {"fullname": "ml.promotion.config.models.PromotionThresholds.lineage", "modulename": "ml.promotion.config.models", "qualname": "PromotionThresholds.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.models.LineageConfig", "default_value": "PydanticUndefined"}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"fullname": "ml.promotion.config.models.PromotionThresholds.validate_consistency", "modulename": "ml.promotion.config.models", "qualname": "PromotionThresholds.validate_consistency", "kind": "function", "doc": "

    Validate metric sets/metrics align with provided threshold blocks.

    \n\n

    Args:\n self: Candidate promotion thresholds instance.

    \n\n

    Returns:\n PromotionThresholds: Validated promotion-threshold object.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.promotion.constants": {"fullname": "ml.promotion.constants", "modulename": "ml.promotion.constants", "kind": "module", "doc": "

    A package with promotion-specific constants.

    \n"}, "ml.promotion.constants.constants": {"fullname": "ml.promotion.constants.constants", "modulename": "ml.promotion.constants.constants", "kind": "module", "doc": "

    Shared constants and typed result containers for promotion workflows.

    \n"}, "ml.promotion.constants.constants.logger": {"fullname": "ml.promotion.constants.constants.logger", "modulename": "ml.promotion.constants.constants", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.constants.constants (WARNING)>"}, "ml.promotion.constants.constants.Stage": {"fullname": "ml.promotion.constants.constants.Stage", "modulename": "ml.promotion.constants.constants", "qualname": "Stage", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['staging', 'production']"}, "ml.promotion.constants.constants.RunnersMetadata": {"fullname": "ml.promotion.constants.constants.RunnersMetadata", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata", "kind": "class", "doc": "

    Metadata payloads loaded from train/eval/explain run directories.

    \n"}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"fullname": "ml.promotion.constants.constants.RunnersMetadata.__init__", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata.__init__", "kind": "function", "doc": "

    \n", "signature": "(\ttraining_metadata: ml.metadata.schemas.runners.training.TrainingMetadata,\tevaluation_metadata: ml.metadata.schemas.runners.evaluation.EvaluationMetadata,\texplainability_metadata: ml.metadata.schemas.runners.explainability.ExplainabilityMetadata)"}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"fullname": "ml.promotion.constants.constants.RunnersMetadata.training_metadata", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata.training_metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.training.TrainingMetadata"}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"fullname": "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata.evaluation_metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.evaluation.EvaluationMetadata"}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"fullname": "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata.explainability_metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.explainability.ExplainabilityMetadata"}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult", "kind": "class", "doc": "

    Outcome of comparing evaluation metrics against promotion thresholds.

    \n"}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.__init__", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmeets_thresholds: bool,\tmessage: str,\ttarget_sets: list[ml.promotion.config.models.MetricSet],\ttarget_metrics: list[ml.promotion.config.models.MetricName],\tdirections: dict[ml.promotion.config.models.MetricName, ml.promotion.config.models.Direction])"}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.meets_thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.message", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.message", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.target_sets", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.promotion.config.models.MetricSet]"}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.target_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.promotion.config.models.MetricName]"}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.directions", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.directions", "kind": "variable", "doc": "

    \n", "annotation": ": dict[ml.promotion.config.models.MetricName, ml.promotion.config.models.Direction]"}, "ml.promotion.constants.constants.ProductionComparisonResult": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult", "kind": "class", "doc": "

    Outcome of comparing candidate model metrics against production.

    \n"}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult.__init__", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tbeats_previous: bool,\tmessage: str,\tprevious_production_metrics: dict | None)"}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult.beats_previous", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult.message", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult.message", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult.previous_production_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity", "kind": "class", "doc": "

    Identifiers for the currently registered production model run.

    \n"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.__init__", "kind": "function", "doc": "

    \n", "signature": "(\texperiment_id: str | None,\ttrain_run_id: str | None,\teval_run_id: str | None,\texplain_run_id: str | None,\tpromotion_id: str | None)"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.promotion_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.EPSILON": {"fullname": "ml.promotion.constants.constants.EPSILON", "modulename": "ml.promotion.constants.constants", "qualname": "EPSILON", "kind": "variable", "doc": "

    \n", "default_value": "1e-08"}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"fullname": "ml.promotion.constants.constants.COMPARISON_DIRECTIONS", "modulename": "ml.promotion.constants.constants", "qualname": "COMPARISON_DIRECTIONS", "kind": "variable", "doc": "

    \n", "default_value": "{<Direction.MAXIMIZE: 'maximize'>: <function <lambda>>, <Direction.MINIMIZE: 'minimize'>: <function <lambda>>}"}, "ml.promotion.constants.promotion_metadata_dict": {"fullname": "ml.promotion.constants.promotion_metadata_dict", "modulename": "ml.promotion.constants.promotion_metadata_dict", "kind": "module", "doc": "

    \n"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.promotion_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.staging_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Decision", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Decision", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Decision.promoted", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Decision.promoted", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Decision.reason", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Decision.reason", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Decision.beats_previous", "kind": "variable", "doc": "

    \n", "annotation": ": bool | None"}, "ml.promotion.constants.promotion_metadata_dict.Context": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context.git_commit", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context.promotion_conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context.training_conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context.timestamp", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context.timestamp", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.promotion_metadata_dict.RunIdentity"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.previous_production_run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.promotion_metadata_dict.RunIdentity"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.previous_production_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.promotion_thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.promotion_thresholds_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.decision", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.promotion_metadata_dict.Decision"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.context", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.promotion_metadata_dict.Context"}, "ml.promotion.context": {"fullname": "ml.promotion.context", "modulename": "ml.promotion.context", "kind": "module", "doc": "

    Context builders and path models for promotion workflow execution.

    \n"}, "ml.promotion.context.PromotionPaths": {"fullname": "ml.promotion.context.PromotionPaths", "modulename": "ml.promotion.context", "qualname": "PromotionPaths", "kind": "class", "doc": "

    Filesystem paths required during a promotion run.

    \n"}, "ml.promotion.context.PromotionPaths.__init__": {"fullname": "ml.promotion.context.PromotionPaths.__init__", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmodel_registry_dir: pathlib.Path,\trun_dir: pathlib.Path,\tpromotion_configs_dir: pathlib.Path,\ttrain_run_dir: pathlib.Path,\teval_run_dir: pathlib.Path,\texplain_run_dir: pathlib.Path,\tregistry_path: pathlib.Path,\tarchive_path: pathlib.Path)"}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"fullname": "ml.promotion.context.PromotionPaths.model_registry_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.model_registry_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.run_dir": {"fullname": "ml.promotion.context.PromotionPaths.run_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.run_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"fullname": "ml.promotion.context.PromotionPaths.promotion_configs_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.promotion_configs_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.train_run_dir": {"fullname": "ml.promotion.context.PromotionPaths.train_run_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.train_run_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"fullname": "ml.promotion.context.PromotionPaths.eval_run_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.eval_run_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"fullname": "ml.promotion.context.PromotionPaths.explain_run_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.explain_run_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.registry_path": {"fullname": "ml.promotion.context.PromotionPaths.registry_path", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.registry_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.archive_path": {"fullname": "ml.promotion.context.PromotionPaths.archive_path", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.archive_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionContext": {"fullname": "ml.promotion.context.PromotionContext", "modulename": "ml.promotion.context", "qualname": "PromotionContext", "kind": "class", "doc": "

    Runtime context passed through promotion service components.

    \n"}, "ml.promotion.context.PromotionContext.__init__": {"fullname": "ml.promotion.context.PromotionContext.__init__", "modulename": "ml.promotion.context", "qualname": "PromotionContext.__init__", "kind": "function", "doc": "

    \n", "signature": "(\targs: argparse.Namespace,\trun_id: str,\ttimestamp: str,\tpaths: ml.promotion.context.PromotionPaths,\trunners_metadata: ml.promotion.constants.constants.RunnersMetadata | None = None)"}, "ml.promotion.context.PromotionContext.args": {"fullname": "ml.promotion.context.PromotionContext.args", "modulename": "ml.promotion.context", "qualname": "PromotionContext.args", "kind": "variable", "doc": "

    \n", "annotation": ": argparse.Namespace"}, "ml.promotion.context.PromotionContext.run_id": {"fullname": "ml.promotion.context.PromotionContext.run_id", "modulename": "ml.promotion.context", "qualname": "PromotionContext.run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.context.PromotionContext.timestamp": {"fullname": "ml.promotion.context.PromotionContext.timestamp", "modulename": "ml.promotion.context", "qualname": "PromotionContext.timestamp", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.context.PromotionContext.paths": {"fullname": "ml.promotion.context.PromotionContext.paths", "modulename": "ml.promotion.context", "qualname": "PromotionContext.paths", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.context.PromotionPaths"}, "ml.promotion.context.PromotionContext.runners_metadata": {"fullname": "ml.promotion.context.PromotionContext.runners_metadata", "modulename": "ml.promotion.context", "qualname": "PromotionContext.runners_metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.constants.RunnersMetadata | None", "default_value": "None"}, "ml.promotion.context.build_context": {"fullname": "ml.promotion.context.build_context", "modulename": "ml.promotion.context", "qualname": "build_context", "kind": "function", "doc": "

    Build promotion context with generated run identity and paths.

    \n\n

    Args:\n args: Parsed CLI arguments for the promotion command.

    \n\n

    Returns:\n Promotion context containing run identifiers, resolved paths, and metadata.

    \n", "signature": "(args: argparse.Namespace) -> ml.promotion.context.PromotionContext:", "funcdef": "def"}, "ml.promotion.getters": {"fullname": "ml.promotion.getters", "modulename": "ml.promotion.getters", "kind": "module", "doc": "

    A package with promotion getters.

    \n"}, "ml.promotion.getters.get": {"fullname": "ml.promotion.getters.get", "modulename": "ml.promotion.getters.get", "kind": "module", "doc": "

    Data extraction helpers for promotion workflow inputs and artifacts.

    \n"}, "ml.promotion.getters.get.logger": {"fullname": "ml.promotion.getters.get.logger", "modulename": "ml.promotion.getters.get", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.getters.get (WARNING)>"}, "ml.promotion.getters.get.get_runners_metadata": {"fullname": "ml.promotion.getters.get.get_runners_metadata", "modulename": "ml.promotion.getters.get", "qualname": "get_runners_metadata", "kind": "function", "doc": "

    Load train/eval/explain metadata payloads from run directories.

    \n\n

    Args:\n train_run_dir: Training run directory.\n eval_run_dir: Evaluation run directory.\n explain_run_dir: Explainability run directory.

    \n\n

    Returns:\n RunnersMetadata: Wrapper containing loaded metadata payloads.

    \n", "signature": "(\ttrain_run_dir: pathlib.Path,\teval_run_dir: pathlib.Path,\texplain_run_dir: pathlib.Path) -> ml.promotion.constants.constants.RunnersMetadata:", "funcdef": "def"}, "ml.promotion.getters.get.extract_thresholds": {"fullname": "ml.promotion.getters.get.extract_thresholds", "modulename": "ml.promotion.getters.get", "qualname": "extract_thresholds", "kind": "function", "doc": "

    Extract problem/segment-specific threshold config from global mapping.

    \n\n

    Args:\n promotion_thresholds: Full promotion-threshold mapping.\n problem: Problem key.\n segment: Segment key.

    \n\n

    Returns:\n dict: Threshold configuration for the given problem and segment.

    \n", "signature": "(promotion_thresholds: dict, problem: str, segment: str) -> dict:", "funcdef": "def"}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"fullname": "ml.promotion.getters.get.get_pipeline_cfg_hash", "modulename": "ml.promotion.getters.get", "qualname": "get_pipeline_cfg_hash", "kind": "function", "doc": "

    Extract pipeline config hash from training metadata.

    \n\n

    Args:\n training_metadata: Training metadata payload.

    \n\n

    Returns:\n str: Pipeline configuration hash.

    \n", "signature": "(\ttraining_metadata: ml.metadata.schemas.runners.training.TrainingMetadata) -> str:", "funcdef": "def"}, "ml.promotion.getters.get.get_training_conda_env_hash": {"fullname": "ml.promotion.getters.get.get_training_conda_env_hash", "modulename": "ml.promotion.getters.get", "qualname": "get_training_conda_env_hash", "kind": "function", "doc": "

    Load training runtime and return recorded conda environment hash.

    \n\n

    Args:\n train_run_dir: Training run directory.

    \n\n

    Returns:\n str: Conda environment hash captured during training.

    \n", "signature": "(train_run_dir: pathlib.Path) -> str:", "funcdef": "def"}, "ml.promotion.persistence": {"fullname": "ml.promotion.persistence", "modulename": "ml.promotion.persistence", "kind": "module", "doc": "

    A package for promotion-specific persistance.

    \n"}, "ml.promotion.persistence.prepare": {"fullname": "ml.promotion.persistence.prepare", "modulename": "ml.promotion.persistence.prepare", "kind": "module", "doc": "

    Preparation helpers for promotion run-info and metadata payloads.

    \n"}, "ml.promotion.persistence.prepare.logger": {"fullname": "ml.promotion.persistence.prepare.logger", "modulename": "ml.promotion.persistence.prepare", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.persistence.prepare (WARNING)>"}, "ml.promotion.persistence.prepare.prepare_run_information": {"fullname": "ml.promotion.persistence.prepare.prepare_run_information", "modulename": "ml.promotion.persistence.prepare", "qualname": "prepare_run_information", "kind": "function", "doc": "

    Build run-info payload to be written into model registry entries.

    \n\n

    Args:\n args: Parsed promotion CLI arguments.\n experiment_id: Experiment identifier.\n train_run_id: Training run identifier.\n eval_run_id: Evaluation run identifier.\n explain_run_id: Explainability run identifier.\n run_id: Promotion/staging run identifier.\n timestamp: Current timestamp string.\n training_metadata: Training metadata payload.\n explainability_metadata: Explainability metadata payload.\n metrics: Evaluation metrics payload.\n git_commit: Git commit hash.

    \n\n

    Returns:\n dict: Registry-ready run information payload.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\texperiment_id: str,\ttrain_run_id: str,\teval_run_id: str,\texplain_run_id: str,\trun_id: str | None,\ttimestamp: str,\ttraining_metadata: ml.metadata.schemas.runners.training.TrainingMetadata,\texplainability_metadata: ml.metadata.schemas.runners.explainability.ExplainabilityMetadata,\tmetrics: dict,\tgit_commit: str) -> dict:", "funcdef": "def"}, "ml.promotion.persistence.prepare.prepare_metadata": {"fullname": "ml.promotion.persistence.prepare.prepare_metadata", "modulename": "ml.promotion.persistence.prepare", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build promotion metadata payload persisted in promotion run directory.

    \n\n

    Args:\n run_id: Promotion/staging run identifier.\n args: Parsed promotion CLI arguments.\n metrics: Evaluation metrics payload.\n previous_production_metrics: Metrics for previous production run, if any.\n promotion_thresholds: Validated promotion thresholds.\n promoted: Whether promotion decision is positive.\n beats_previous: Whether candidate beats previous production model.\n reason: Human-readable decision reason.\n git_commit: Git commit hash.\n timestamp: Current timestamp string.\n previous_production_run_identity: Previous production run identity metadata.\n train_run_dir: Training run directory.

    \n\n

    Returns:\n dict: Promotion metadata payload.

    \n\n

    Notes:\n Promotion and training conda-environment hashes are compared and logged\n to surface reproducibility risk without blocking promotion flow.

    \n\n

    Side Effects:\n Captures runtime environment export and may emit warnings on\n environment/hash mismatches.

    \n", "signature": "(\t*,\trun_id: str,\targs: argparse.Namespace,\tmetrics: dict,\tprevious_production_metrics: dict | None,\tpromotion_thresholds: ml.promotion.config.models.PromotionThresholds,\tpromoted: bool,\tbeats_previous: bool,\treason: str,\tgit_commit: str,\ttimestamp: str,\tprevious_production_run_identity: ml.promotion.constants.constants.PreviousProductionRunIdentity,\ttrain_run_dir: pathlib.Path) -> dict:", "funcdef": "def"}, "ml.promotion.persistence.registry": {"fullname": "ml.promotion.persistence.registry", "modulename": "ml.promotion.persistence.registry", "kind": "module", "doc": "

    Registry update and diff-persistence helpers for promotion workflow.

    \n"}, "ml.promotion.persistence.registry.logger": {"fullname": "ml.promotion.persistence.registry.logger", "modulename": "ml.promotion.persistence.registry", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.persistence.registry (WARNING)>"}, "ml.promotion.persistence.registry.update_registry_and_archive": {"fullname": "ml.promotion.persistence.registry.update_registry_and_archive", "modulename": "ml.promotion.persistence.registry", "qualname": "update_registry_and_archive", "kind": "function", "doc": "

    Update active registry and archive previous production entry when needed.

    \n\n

    Args:\n model_registry: Current active model registry.\n archive_registry: Current archive registry.\n stage: Promotion stage.\n run_info: Registry run-info payload.\n problem: Problem key.\n segment: Segment key.\n registry_path: Active registry file path.\n archive_path: Archive registry file path.

    \n\n

    Returns:\n dict: Updated active registry dictionary.

    \n", "signature": "(\t*,\tmodel_registry: dict,\tarchive_registry: dict,\tstage: Literal['staging', 'production'],\trun_info: dict,\tproblem: str,\tsegment: str,\tregistry_path: pathlib.Path = WindowsPath('model_registry/models.yaml'),\tarchive_path: pathlib.Path = WindowsPath('model_registry/archive.yaml')) -> dict:", "funcdef": "def"}, "ml.promotion.persistence.registry.persist_registry_diff": {"fullname": "ml.promotion.persistence.registry.persist_registry_diff", "modulename": "ml.promotion.persistence.registry", "qualname": "persist_registry_diff", "kind": "function", "doc": "

    Persist before/after registry snapshot for auditability.

    \n\n

    Args:\n previous_registry: Registry state before update.\n updated_registry: Registry state after update.\n run_dir: Promotion run directory.

    \n\n

    Returns:\n None: Writes registry-diff artifact to disk.

    \n", "signature": "(\t*,\tprevious_registry: dict,\tupdated_registry: dict,\trun_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.promotion.persister": {"fullname": "ml.promotion.persister", "modulename": "ml.promotion.persister", "kind": "module", "doc": "

    Persistence service for promotion decisions, registry updates, and metadata.

    \n"}, "ml.promotion.persister.logger": {"fullname": "ml.promotion.persister.logger", "modulename": "ml.promotion.persister", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.persister (WARNING)>"}, "ml.promotion.persister.PromotionPersister": {"fullname": "ml.promotion.persister.PromotionPersister", "modulename": "ml.promotion.persister", "qualname": "PromotionPersister", "kind": "class", "doc": "

    Persists promotion outcomes and registry mutations.

    \n"}, "ml.promotion.persister.PromotionPersister.persist": {"fullname": "ml.promotion.persister.PromotionPersister.persist", "modulename": "ml.promotion.persister", "qualname": "PromotionPersister.persist", "kind": "function", "doc": "

    Persist decision effects, registry diffs, and promotion metadata.

    \n\n

    Args:\n context: Promotion execution context.\n state: Promotion state snapshot.\n result: Promotion strategy result.

    \n\n

    Returns:\n None: Persists promotion side effects.

    \n", "signature": "(\tself,\tcontext: ml.promotion.context.PromotionContext,\tstate: ml.promotion.state.PromotionState,\tresult: ml.promotion.result.PromotionResult):", "funcdef": "def"}, "ml.promotion.result": {"fullname": "ml.promotion.result", "modulename": "ml.promotion.result", "kind": "module", "doc": "

    Result model for promotion strategy execution outcomes.

    \n"}, "ml.promotion.result.PromotionResult": {"fullname": "ml.promotion.result.PromotionResult", "modulename": "ml.promotion.result", "qualname": "PromotionResult", "kind": "class", "doc": "

    Normalized outcome payload returned by promotion strategies.

    \n"}, "ml.promotion.result.PromotionResult.__init__": {"fullname": "ml.promotion.result.PromotionResult.__init__", "modulename": "ml.promotion.result", "qualname": "PromotionResult.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tpromotion_decision: bool,\tbeats_previous: bool,\tprevious_production_metrics: dict | None,\trun_info: dict | None = None,\tproduction_comparison: ml.promotion.constants.constants.ProductionComparisonResult | None = None)"}, "ml.promotion.result.PromotionResult.promotion_decision": {"fullname": "ml.promotion.result.PromotionResult.promotion_decision", "modulename": "ml.promotion.result", "qualname": "PromotionResult.promotion_decision", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.result.PromotionResult.beats_previous": {"fullname": "ml.promotion.result.PromotionResult.beats_previous", "modulename": "ml.promotion.result", "qualname": "PromotionResult.beats_previous", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"fullname": "ml.promotion.result.PromotionResult.previous_production_metrics", "modulename": "ml.promotion.result", "qualname": "PromotionResult.previous_production_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None"}, "ml.promotion.result.PromotionResult.run_info": {"fullname": "ml.promotion.result.PromotionResult.run_info", "modulename": "ml.promotion.result", "qualname": "PromotionResult.run_info", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.promotion.result.PromotionResult.production_comparison": {"fullname": "ml.promotion.result.PromotionResult.production_comparison", "modulename": "ml.promotion.result", "qualname": "PromotionResult.production_comparison", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.constants.ProductionComparisonResult | None", "default_value": "None"}, "ml.promotion.service": {"fullname": "ml.promotion.service", "modulename": "ml.promotion.service", "kind": "module", "doc": "

    Application service orchestrating end-to-end promotion workflow.

    \n"}, "ml.promotion.service.logger": {"fullname": "ml.promotion.service.logger", "modulename": "ml.promotion.service", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.service (WARNING)>"}, "ml.promotion.service.PromotionService": {"fullname": "ml.promotion.service.PromotionService", "modulename": "ml.promotion.service", "qualname": "PromotionService", "kind": "class", "doc": "

    Coordinates validation, state loading, strategy execution, and persistence.

    \n"}, "ml.promotion.service.PromotionService.__init__": {"fullname": "ml.promotion.service.PromotionService.__init__", "modulename": "ml.promotion.service", "qualname": "PromotionService.__init__", "kind": "function", "doc": "

    Initialize promotion service dependencies.

    \n", "signature": "()"}, "ml.promotion.service.PromotionService.run": {"fullname": "ml.promotion.service.PromotionService.run", "modulename": "ml.promotion.service", "qualname": "PromotionService.run", "kind": "function", "doc": "

    Execute complete promotion workflow for the given context.

    \n\n

    Args:\n context: Promotion execution context.

    \n\n

    Returns:\n Any: Strategy result payload persisted by the promotion service.

    \n", "signature": "(self, context: ml.promotion.context.PromotionContext):", "funcdef": "def"}, "ml.promotion.state": {"fullname": "ml.promotion.state", "modulename": "ml.promotion.state", "kind": "module", "doc": "

    State model containing promotion inputs loaded from persisted artifacts.

    \n"}, "ml.promotion.state.PromotionState": {"fullname": "ml.promotion.state.PromotionState", "modulename": "ml.promotion.state", "qualname": "PromotionState", "kind": "class", "doc": "

    Immutable-like snapshot of loaded state for promotion decision flow.

    \n"}, "ml.promotion.state.PromotionState.__init__": {"fullname": "ml.promotion.state.PromotionState.__init__", "modulename": "ml.promotion.state", "qualname": "PromotionState.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmodel_registry: dict,\tarchive_registry: dict,\tevaluation_metrics: dict,\tpromotion_thresholds: ml.promotion.config.models.PromotionThresholds,\tcurrent_prod_model_info: dict | None,\tprevious_production_run_identity: ml.promotion.constants.constants.PreviousProductionRunIdentity,\tgit_commit: str,\tthreshold_comparison: ml.promotion.constants.constants.ThresholdComparisonResult)"}, "ml.promotion.state.PromotionState.model_registry": {"fullname": "ml.promotion.state.PromotionState.model_registry", "modulename": "ml.promotion.state", "qualname": "PromotionState.model_registry", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.state.PromotionState.archive_registry": {"fullname": "ml.promotion.state.PromotionState.archive_registry", "modulename": "ml.promotion.state", "qualname": "PromotionState.archive_registry", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.state.PromotionState.evaluation_metrics": {"fullname": "ml.promotion.state.PromotionState.evaluation_metrics", "modulename": "ml.promotion.state", "qualname": "PromotionState.evaluation_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.state.PromotionState.promotion_thresholds": {"fullname": "ml.promotion.state.PromotionState.promotion_thresholds", "modulename": "ml.promotion.state", "qualname": "PromotionState.promotion_thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.models.PromotionThresholds"}, "ml.promotion.state.PromotionState.current_prod_model_info": {"fullname": "ml.promotion.state.PromotionState.current_prod_model_info", "modulename": "ml.promotion.state", "qualname": "PromotionState.current_prod_model_info", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None"}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"fullname": "ml.promotion.state.PromotionState.previous_production_run_identity", "modulename": "ml.promotion.state", "qualname": "PromotionState.previous_production_run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.constants.PreviousProductionRunIdentity"}, "ml.promotion.state.PromotionState.git_commit": {"fullname": "ml.promotion.state.PromotionState.git_commit", "modulename": "ml.promotion.state", "qualname": "PromotionState.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.state.PromotionState.threshold_comparison": {"fullname": "ml.promotion.state.PromotionState.threshold_comparison", "modulename": "ml.promotion.state", "qualname": "PromotionState.threshold_comparison", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.constants.ThresholdComparisonResult"}, "ml.promotion.state_loader": {"fullname": "ml.promotion.state_loader", "modulename": "ml.promotion.state_loader", "kind": "module", "doc": "

    State-loading service for promotion workflow execution.

    \n"}, "ml.promotion.state_loader.logger": {"fullname": "ml.promotion.state_loader.logger", "modulename": "ml.promotion.state_loader", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.state_loader (WARNING)>"}, "ml.promotion.state_loader.PromotionStateLoader": {"fullname": "ml.promotion.state_loader.PromotionStateLoader", "modulename": "ml.promotion.state_loader", "qualname": "PromotionStateLoader", "kind": "class", "doc": "

    Loads registries, thresholds, and metrics into a promotion state object.

    \n"}, "ml.promotion.state_loader.PromotionStateLoader.load": {"fullname": "ml.promotion.state_loader.PromotionStateLoader.load", "modulename": "ml.promotion.state_loader", "qualname": "PromotionStateLoader.load", "kind": "function", "doc": "

    Load and assemble promotion state from persisted artifacts.

    \n\n

    Args:\n context: Promotion context containing paths and run arguments.

    \n\n

    Returns:\n Promotion state with registries, thresholds, metrics, and comparisons.

    \n", "signature": "(\tself,\tcontext: ml.promotion.context.PromotionContext) -> ml.promotion.state.PromotionState:", "funcdef": "def"}, "ml.promotion.strategies": {"fullname": "ml.promotion.strategies", "modulename": "ml.promotion.strategies", "kind": "module", "doc": "

    A package with promotion strategies.

    \n"}, "ml.promotion.strategies.base": {"fullname": "ml.promotion.strategies.base", "modulename": "ml.promotion.strategies.base", "kind": "module", "doc": "

    Abstract strategy interface for stage-specific promotion behavior.

    \n"}, "ml.promotion.strategies.base.PromotionStrategy": {"fullname": "ml.promotion.strategies.base.PromotionStrategy", "modulename": "ml.promotion.strategies.base", "qualname": "PromotionStrategy", "kind": "class", "doc": "

    Base contract for promotion strategy implementations.

    \n", "bases": "abc.ABC"}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"fullname": "ml.promotion.strategies.base.PromotionStrategy.execute", "modulename": "ml.promotion.strategies.base", "qualname": "PromotionStrategy.execute", "kind": "function", "doc": "

    Execute stage-specific promotion logic and return result payload.

    \n\n

    Args:\n context: Promotion runtime context.\n state: Loaded promotion state.

    \n\n

    Returns:\n Promotion decision result.

    \n", "signature": "(\tself,\tcontext: ml.promotion.context.PromotionContext,\tstate: ml.promotion.state.PromotionState) -> ml.promotion.result.PromotionResult:", "funcdef": "def"}, "ml.promotion.strategies.production": {"fullname": "ml.promotion.strategies.production", "modulename": "ml.promotion.strategies.production", "kind": "module", "doc": "

    Production-stage promotion strategy implementation.

    \n"}, "ml.promotion.strategies.production.logger": {"fullname": "ml.promotion.strategies.production.logger", "modulename": "ml.promotion.strategies.production", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.strategies.production (WARNING)>"}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"fullname": "ml.promotion.strategies.production.ProductionPromotionStrategy", "modulename": "ml.promotion.strategies.production", "qualname": "ProductionPromotionStrategy", "kind": "class", "doc": "

    Apply thresholds and production-baseline checks for promotion.

    \n", "bases": "ml.promotion.strategies.base.PromotionStrategy"}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"fullname": "ml.promotion.strategies.production.ProductionPromotionStrategy.execute", "modulename": "ml.promotion.strategies.production", "qualname": "ProductionPromotionStrategy.execute", "kind": "function", "doc": "

    Execute production promotion decision logic.

    \n\n

    Args:\n context: Promotion runtime context with arguments, paths, and metadata.\n state: Loaded promotion state with thresholds and production metrics.

    \n\n

    Returns:\n Promotion decision result for the production strategy.

    \n\n

    Raises:\n RuntimeMLError: If required runner metadata is missing from\n promotion context.

    \n\n

    Notes:\n Promotion requires both threshold compliance and improvement against\n currently deployed production metrics.

    \n\n

    Side Effects:\n Emits promotion decision logs and may construct promotion run metadata\n payload for downstream persistence.

    \n", "signature": "(self, context, state) -> ml.promotion.result.PromotionResult:", "funcdef": "def"}, "ml.promotion.strategies.staging": {"fullname": "ml.promotion.strategies.staging", "modulename": "ml.promotion.strategies.staging", "kind": "module", "doc": "

    Staging-stage promotion strategy implementation.

    \n"}, "ml.promotion.strategies.staging.logger": {"fullname": "ml.promotion.strategies.staging.logger", "modulename": "ml.promotion.strategies.staging", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.strategies.staging (WARNING)>"}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"fullname": "ml.promotion.strategies.staging.StagingPromotionStrategy", "modulename": "ml.promotion.strategies.staging", "qualname": "StagingPromotionStrategy", "kind": "class", "doc": "

    Apply threshold-only checks for staging promotion decisions.

    \n", "bases": "ml.promotion.strategies.base.PromotionStrategy"}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"fullname": "ml.promotion.strategies.staging.StagingPromotionStrategy.execute", "modulename": "ml.promotion.strategies.staging", "qualname": "StagingPromotionStrategy.execute", "kind": "function", "doc": "

    Execute staging promotion decision logic.

    \n\n

    Args:\n context: Promotion runtime context with arguments, paths, and metadata.\n state: Loaded promotion state with thresholds and metrics.

    \n\n

    Returns:\n Promotion decision result for the staging strategy.

    \n", "signature": "(self, context, state) -> ml.promotion.result.PromotionResult:", "funcdef": "def"}, "ml.promotion.validation": {"fullname": "ml.promotion.validation", "modulename": "ml.promotion.validation", "kind": "module", "doc": "

    A package with promotion validation.

    \n"}, "ml.promotion.validation.validate": {"fullname": "ml.promotion.validation.validate", "modulename": "ml.promotion.validation.validate", "kind": "module", "doc": "

    Validation helpers for promotion run inputs and metadata consistency.

    \n"}, "ml.promotion.validation.validate.logger": {"fullname": "ml.promotion.validation.validate.logger", "modulename": "ml.promotion.validation.validate", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.validation.validate (WARNING)>"}, "ml.promotion.validation.validate.validate_run_dirs": {"fullname": "ml.promotion.validation.validate.validate_run_dirs", "modulename": "ml.promotion.validation.validate", "qualname": "validate_run_dirs", "kind": "function", "doc": "

    Validate required train/eval/explain run directories exist.

    \n\n

    Args:\n train_run_dir: Training run directory.\n eval_run_dir: Evaluation run directory.\n explain_run_dir: Explainability run directory.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\ttrain_run_dir: pathlib.Path,\teval_run_dir: pathlib.Path,\texplain_run_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.promotion.validation.validate.validate_run_ids": {"fullname": "ml.promotion.validation.validate.validate_run_ids", "modulename": "ml.promotion.validation.validate", "qualname": "validate_run_ids", "kind": "function", "doc": "

    Validate eval/explain runs are linked to the provided train run.

    \n\n

    Args:\n args: Parsed CLI arguments with run IDs.\n runners_metadata: Loaded train/eval/explain metadata bundle.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\trunners_metadata: ml.promotion.constants.constants.RunnersMetadata) -> None:", "funcdef": "def"}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"fullname": "ml.promotion.validation.validate.validate_artifacts_consistency", "modulename": "ml.promotion.validation.validate", "qualname": "validate_artifacts_consistency", "kind": "function", "doc": "

    Validate artifacts consistency across train/eval/explain runs.

    \n\n

    Args:\n runners_metadata: Loaded train/eval/explain metadata bundle.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\trunners_metadata: ml.promotion.constants.constants.RunnersMetadata) -> None:", "funcdef": "def"}, "ml.promotion.validation.validate.validate_optional_artifact": {"fullname": "ml.promotion.validation.validate.validate_optional_artifact", "modulename": "ml.promotion.validation.validate", "qualname": "validate_optional_artifact", "kind": "function", "doc": "

    Validate optional artifact presence and hash consistency.

    \n\n

    Args:\n path: Path to the artifact.\n expected_hash: Expected hash of the artifact.\n name: Name of the artifact for logging.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(path: str | None, expected_hash: str | None, name: str) -> None:", "funcdef": "def"}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"fullname": "ml.promotion.validation.validate.validate_explainability_artifacts", "modulename": "ml.promotion.validation.validate", "qualname": "validate_explainability_artifacts", "kind": "function", "doc": "

    Validate explainability artifact paths and hashes.

    \n\n

    Args:\n explainability_artifacts: ExplainabilityArtifacts object containing paths and hashes.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\texplainability_artifacts: ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts) -> None:", "funcdef": "def"}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"fullname": "ml.promotion.validation.validate.validate_promotion_thresholds", "modulename": "ml.promotion.validation.validate", "qualname": "validate_promotion_thresholds", "kind": "function", "doc": "

    Validate raw promotion thresholds payload into typed schema.

    \n\n

    Args:\n promotion_thresholds: Raw threshold configuration dictionary.

    \n\n

    Returns:\n PromotionThresholds: Validated threshold configuration object.

    \n", "signature": "(\tpromotion_thresholds: dict) -> ml.promotion.config.models.PromotionThresholds:", "funcdef": "def"}, "ml.registries": {"fullname": "ml.registries", "modulename": "ml.registries", "kind": "module", "doc": "

    This module serves as a central registry for various components used in the machine learning pipeline. It includes catalogs of feature operators, model classes, and loss functions, as well as factories for creating evaluators, explainers, freeze strategies, searchers, target strategies, and trainers. By centralizing these components, we can easily manage and extend the functionality of our machine learning framework.

    \n"}, "ml.registries.FEATURE_OPERATORS": {"fullname": "ml.registries.FEATURE_OPERATORS", "modulename": "ml.registries", "qualname": "FEATURE_OPERATORS", "kind": "variable", "doc": "

    \n", "default_value": "{'TotalStay': <class 'ml.components.feature_engineering.total_stay.TotalStay'>, 'AdrPerPerson': <class 'ml.components.feature_engineering.adr_per_person.AdrPerPerson'>, 'ArrivalSeason': <class 'ml.components.feature_engineering.arrival_season.ArrivalSeason'>, 'ArrivalDate': <class 'ml.components.feature_engineering.arrival_date.ArrivalDate'>}"}, "ml.registries.MODEL_CLASS_REGISTRY": {"fullname": "ml.registries.MODEL_CLASS_REGISTRY", "modulename": "ml.registries", "qualname": "MODEL_CLASS_REGISTRY", "kind": "variable", "doc": "

    \n", "default_value": "{'CatBoostClassifier': <class 'catboost.core.CatBoostClassifier'>, 'CatBoostRegressor': <class 'catboost.core.CatBoostRegressor'>}"}, "ml.registries.MODEL_PARAM_REGISTRY": {"fullname": "ml.registries.MODEL_PARAM_REGISTRY", "modulename": "ml.registries", "qualname": "MODEL_PARAM_REGISTRY", "kind": "variable", "doc": "

    \n", "default_value": "{'catboost': ['depth', 'learning_rate', 'l2_leaf_reg', 'random_strength', 'min_data_in_leaf', 'bagging_temperature', 'border_count', 'colsample_bylevel']}"}, "ml.registries.OP_MAP": {"fullname": "ml.registries.OP_MAP", "modulename": "ml.registries", "qualname": "OP_MAP", "kind": "variable", "doc": "

    \n", "default_value": "{'eq': <function <lambda>>, 'neq': <function <lambda>>, 'in': <function <lambda>>, 'not_in': <function <lambda>>, 'gt': <function <lambda>>, 'gte': <function <lambda>>, 'lt': <function <lambda>>, 'lte': <function <lambda>>}"}, "ml.registries.PIPELINE_COMPONENTS": {"fullname": "ml.registries.PIPELINE_COMPONENTS", "modulename": "ml.registries", "qualname": "PIPELINE_COMPONENTS", "kind": "variable", "doc": "

    \n", "default_value": "{'SchemaValidator': <class 'ml.components.schema_validation.validator.SchemaValidator'>, 'FillCategoricalMissing': <class 'ml.components.imputation.categorical.FillCategoricalMissing'>, 'FeatureEngineer': <class 'ml.components.feature_engineering.base.FeatureEngineer'>, 'FeatureSelector': <class 'ml.components.feature_selection.selector.FeatureSelector'>, 'Model': None}"}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"fullname": "ml.registries.REGRESSION_LOSS_FUNCTIONS", "modulename": "ml.registries", "qualname": "REGRESSION_LOSS_FUNCTIONS", "kind": "variable", "doc": "

    \n", "default_value": "{'neg_root_mean_squared_error': 'RMSE', 'neg_mean_absolute_error': 'MAE', 'neg_mean_poisson_deviance': 'Poisson'}"}, "ml.registries.EVALUATORS": {"fullname": "ml.registries.EVALUATORS", "modulename": "ml.registries", "qualname": "EVALUATORS", "kind": "variable", "doc": "

    \n", "default_value": "{'classification': <class 'ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator'>, 'regression': <class 'ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression'>}"}, "ml.registries.EXPLAINERS": {"fullname": "ml.registries.EXPLAINERS", "modulename": "ml.registries", "qualname": "EXPLAINERS", "kind": "variable", "doc": "

    \n", "default_value": "{'catboost': <class 'ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel'>}"}, "ml.registries.SEARCHERS": {"fullname": "ml.registries.SEARCHERS", "modulename": "ml.registries", "qualname": "SEARCHERS", "kind": "variable", "doc": "

    \n", "default_value": "{'catboost': <class 'ml.search.searchers.catboost.catboost.CatBoostSearcher'>}"}, "ml.registries.TRAINERS": {"fullname": "ml.registries.TRAINERS", "modulename": "ml.registries", "qualname": "TRAINERS", "kind": "variable", "doc": "

    \n", "default_value": "{'catboost': <class 'ml.runners.training.trainers.catboost.catboost.CatBoostTrainer'>}"}, "ml.runners": {"fullname": "ml.runners", "modulename": "ml.runners", "kind": "module", "doc": "

    Runner implementations for search, training, evaluation, and explainability.

    \n"}, "ml.runners.evaluation": {"fullname": "ml.runners.evaluation", "modulename": "ml.runners.evaluation", "kind": "module", "doc": "

    Evaluation runners, metrics, persistence, and utility helpers.

    \n"}, "ml.runners.evaluation.constants": {"fullname": "ml.runners.evaluation.constants", "modulename": "ml.runners.evaluation.constants", "kind": "module", "doc": "

    A package with evaluation-specific constants.

    \n"}, "ml.runners.evaluation.constants.data_splits": {"fullname": "ml.runners.evaluation.constants.data_splits", "modulename": "ml.runners.evaluation.constants.data_splits", "kind": "module", "doc": "

    Typed containers for train/validation/test evaluation split payloads.

    \n"}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits", "kind": "class", "doc": "

    Feature/target tuples for train, validation, and test splits.

    \n"}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits.__init__", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits.__init__", "kind": "function", "doc": "

    \n", "signature": "(\ttrain: tuple[pandas.core.frame.DataFrame, pandas.core.series.Series],\tval: tuple[pandas.core.frame.DataFrame, pandas.core.series.Series],\ttest: tuple[pandas.core.frame.DataFrame, pandas.core.series.Series])"}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits.train", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits.train", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[pandas.core.frame.DataFrame, pandas.core.series.Series]"}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits.val", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits.val", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[pandas.core.frame.DataFrame, pandas.core.series.Series]"}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits.test", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits.test", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[pandas.core.frame.DataFrame, pandas.core.series.Series]"}, "ml.runners.evaluation.constants.output": {"fullname": "ml.runners.evaluation.constants.output", "modulename": "ml.runners.evaluation.constants.output", "kind": "module", "doc": "

    Typed output model for evaluation runner results.

    \n"}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput", "kind": "class", "doc": "

    Evaluation metrics, prediction artifacts, and feature lineage payload.

    \n"}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput.__init__", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmetrics: dict[str, dict[str, float]],\tprediction_dfs: ml.runners.evaluation.models.predictions.PredictionArtifacts,\tlineage: list[ml.modeling.models.feature_lineage.FeatureLineage])"}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput.metrics", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, dict[str, float]]"}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput.prediction_dfs", "kind": "variable", "doc": "

    \n", "annotation": ": ml.runners.evaluation.models.predictions.PredictionArtifacts"}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput.lineage", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.runners.evaluation.evaluators": {"fullname": "ml.runners.evaluation.evaluators", "modulename": "ml.runners.evaluation.evaluators", "kind": "module", "doc": "

    A package containing evaluators.

    \n"}, "ml.runners.evaluation.evaluators.base": {"fullname": "ml.runners.evaluation.evaluators.base", "modulename": "ml.runners.evaluation.evaluators.base", "kind": "module", "doc": "

    Protocol definition for evaluation runner implementations.

    \n"}, "ml.runners.evaluation.evaluators.base.Evaluator": {"fullname": "ml.runners.evaluation.evaluators.base.Evaluator", "modulename": "ml.runners.evaluation.evaluators.base", "qualname": "Evaluator", "kind": "class", "doc": "

    Structural interface for task-specific evaluator implementations.

    \n", "bases": "typing.Protocol"}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"fullname": "ml.runners.evaluation.evaluators.base.Evaluator.evaluate", "modulename": "ml.runners.evaluation.evaluators.base", "qualname": "Evaluator.evaluate", "kind": "function", "doc": "

    Evaluate a trained model and return standardized evaluation output.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tstrict: bool,\tbest_threshold: float | None,\ttrain_dir: pathlib.Path) -> ml.runners.evaluation.constants.output.EvaluateOutput:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification": {"fullname": "ml.runners.evaluation.evaluators.classification", "modulename": "ml.runners.evaluation.evaluators.classification", "kind": "module", "doc": "

    A package for evaluation of classification models.

    \n"}, "ml.runners.evaluation.evaluators.classification.classification": {"fullname": "ml.runners.evaluation.evaluators.classification.classification", "modulename": "ml.runners.evaluation.evaluators.classification.classification", "kind": "module", "doc": "

    Classification evaluator implementation for trained model artifacts.

    \n"}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"fullname": "ml.runners.evaluation.evaluators.classification.classification.logger", "modulename": "ml.runners.evaluation.evaluators.classification.classification", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.evaluators.classification.classification (WARNING)>"}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"fullname": "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator", "modulename": "ml.runners.evaluation.evaluators.classification.classification", "qualname": "ClassificationEvaluator", "kind": "class", "doc": "

    Evaluate binary classification models across train/val/test splits.

    \n", "bases": "ml.runners.evaluation.evaluators.base.Evaluator"}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"fullname": "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate", "modulename": "ml.runners.evaluation.evaluators.classification.classification", "qualname": "ClassificationEvaluator.evaluate", "kind": "function", "doc": "

    Load artifacts and data, run split-wise evaluation, return outputs.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n strict: Whether data-loading checks should fail strictly.\n best_threshold: Optional decision threshold for binary classification.\n train_dir: Directory containing training artifacts and metadata.\n entity_key: The name of the entity key column to extract.

    \n\n

    Returns:\n Evaluation output with metrics, predictions, and feature lineage.

    \n\n

    Raises:\n PipelineContractError: If the loaded pipeline does not expose\n predict_proba required for classification evaluation.

    \n\n

    Notes:\n Uses training metadata lineage bindings to resolve feature snapshots so\n evaluation inputs match training-time feature versions.

    \n\n

    Side Effects:\n Loads persisted artifacts and executes split-wise inference on\n train/validation/test data.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tstrict: bool,\tbest_threshold: float | None,\ttrain_dir: pathlib.Path) -> ml.runners.evaluation.constants.output.EvaluateOutput:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification.metrics": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "kind": "module", "doc": "

    Metric computation and split evaluation helpers for classification tasks.

    \n"}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.logger", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.evaluators.classification.metrics (WARNING)>"}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "expected_calibration_error", "kind": "function", "doc": "

    Compute expected calibration error (ECE) from labels and probabilities.

    \n\n

    Args:\n y_true: Ground-truth binary labels.\n y_prob: Predicted probabilities for the positive class.\n n_bins: Number of confidence bins.

    \n\n

    Returns:\n float: Expected calibration error value.

    \n", "signature": "(\ty_true: pandas.core.series.Series,\ty_prob: pandas.core.series.Series,\tn_bins: int = 10) -> float:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "compute_metrics", "kind": "function", "doc": "

    Compute threshold-based and probability-based classification metrics.

    \n\n

    Args:\n y_true: Ground-truth binary labels.\n y_pred: Predicted binary labels.\n y_prob: Optional predicted probabilities for the positive class.\n threshold: Optional decision threshold used for converting probabilities.

    \n\n

    Returns:\n dict[str, float]: Computed classification metrics.

    \n", "signature": "(\ty_true: pandas.core.series.Series,\ty_pred: pandas.core.series.Series,\ty_prob: pandas.core.series.Series | None = None,\t*,\tthreshold: float | None = None) -> dict[str, float]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "evaluate_split", "kind": "function", "doc": "

    Evaluate a single split and return metrics plus prediction dataframe.

    \n\n

    Args:\n pipeline: Fitted model pipeline.\n X: Split features.\n y: Split target labels.\n split_entity_keys: Entity keys corresponding to split records.\n split_name: Split label (train/val/test).\n best_threshold: Decision threshold for positive-class prediction.

    \n\n

    Returns:\n tuple[dict[str, float], pd.DataFrame]: Split metrics and prediction rows.

    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\t*,\tsplit_entity_keys: pandas.core.series.Series,\tsplit_name: str,\tbest_threshold: float | None) -> tuple[dict[str, float], pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "evaluate_model", "kind": "function", "doc": "

    Evaluate all configured splits and aggregate metrics/prediction frames.

    \n\n

    Args:\n model_cfg: Training configuration used for task/subtype decisions.\n pipeline: Fitted model pipeline.\n data_splits: Data split container.\n best_threshold: Decision threshold for positive-class prediction.\n entity_key: The name of the entity key column to extract.\nReturns:\n tuple[dict[str, dict[str, float]], PredictionArtifacts]: Metrics and predictions by split.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tpipeline: sklearn.pipeline.Pipeline,\tdata_splits: ml.runners.evaluation.constants.data_splits.DataSplits,\tbest_threshold: float | None,\tentity_key: str) -> tuple[dict[str, dict[str, float]], ml.runners.evaluation.models.predictions.PredictionArtifacts]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.regression": {"fullname": "ml.runners.evaluation.evaluators.regression", "modulename": "ml.runners.evaluation.evaluators.regression", "kind": "module", "doc": "

    A package for evaluation of regression models.

    \n"}, "ml.runners.evaluation.evaluators.regression.metrics": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "kind": "module", "doc": "

    Metric computation and split evaluation helpers for regression tasks.

    \n"}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics.logger", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.evaluators.regression.metrics (WARNING)>"}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "qualname": "compute_metrics", "kind": "function", "doc": "

    Compute core regression metrics and residual summary statistics.

    \n\n

    Args:\n y_true: Ground-truth regression targets.\n y_pred: Predicted regression values.

    \n\n

    Returns:\n dict[str, float]: Computed regression metrics.

    \n", "signature": "(\ty_true: pandas.core.series.Series,\ty_pred: pandas.core.series.Series) -> dict[str, float]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "qualname": "evaluate_split", "kind": "function", "doc": "

    Evaluate one split and return metrics and per-row prediction output.

    \n\n

    Args:\n pipeline: Fitted model pipeline.\n X: Split features.\n y: Split target values.\n split_entity_keys: Row identifiers for split records.\n split_name: Split label.\n transform_cfg: Target-transform configuration for inverse transform.\n entity_key: The name of the entity key column to extract.

    \n\n

    Returns:\n tuple[dict[str, float], pd.DataFrame]: Split metrics and prediction dataframe.

    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\t*,\tsplit_entity_keys: pandas.core.series.Series,\tsplit_name: str,\ttransform_cfg: ml.config.schemas.model_specs.TargetTransformConfig,\tentity_key: str) -> tuple[dict[str, float], pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "qualname": "evaluate_model", "kind": "function", "doc": "

    Evaluate all splits and aggregate regression metrics/predictions.

    \n\n

    Args:\n pipeline: Fitted model pipeline.\n data_splits: Dataset split container.\n transform_cfg: Target-transform configuration for inverse transform.

    \n\n

    Returns:\n tuple[dict[str, dict[str, float]], PredictionArtifacts]: Metrics and predictions by split.

    \n", "signature": "(\t*,\tpipeline: sklearn.pipeline.Pipeline,\tdata_splits: ml.runners.evaluation.constants.data_splits.DataSplits,\ttransform_cfg: ml.config.schemas.model_specs.TargetTransformConfig,\tentity_key: str) -> tuple[dict[str, dict[str, float]], ml.runners.evaluation.models.predictions.PredictionArtifacts]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.regression.regression": {"fullname": "ml.runners.evaluation.evaluators.regression.regression", "modulename": "ml.runners.evaluation.evaluators.regression.regression", "kind": "module", "doc": "

    Regression evaluator implementation for trained model artifacts.

    \n"}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"fullname": "ml.runners.evaluation.evaluators.regression.regression.logger", "modulename": "ml.runners.evaluation.evaluators.regression.regression", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.evaluators.regression.regression (WARNING)>"}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"fullname": "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression", "modulename": "ml.runners.evaluation.evaluators.regression.regression", "qualname": "EvaluateRegression", "kind": "class", "doc": "

    Evaluate regression models across train/val/test splits.

    \n", "bases": "ml.runners.evaluation.evaluators.base.Evaluator"}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"fullname": "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate", "modulename": "ml.runners.evaluation.evaluators.regression.regression", "qualname": "EvaluateRegression.evaluate", "kind": "function", "doc": "

    Load artifacts and data, run split-wise regression evaluation.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n strict: Whether data-loading checks should fail strictly.\n best_threshold: Unused threshold parameter kept for interface parity.\n train_dir: Directory containing training artifacts and metadata.\n entity_key: The name of the entity key column to extract.\nReturns:\n Evaluation output with metrics, predictions, and feature lineage.

    \n\n

    Raises:\n PipelineContractError: If loaded pipeline cannot produce predictions.

    \n\n

    Notes:\n Uses training metadata lineage bindings to resolve feature snapshots so\n evaluation inputs match training-time feature versions.

    \n\n

    Side Effects:\n Loads persisted artifacts and executes split-wise inference on\n train/validation/test data.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tstrict: bool,\tbest_threshold: float | None,\ttrain_dir: pathlib.Path) -> ml.runners.evaluation.constants.output.EvaluateOutput:", "funcdef": "def"}, "ml.runners.evaluation.models": {"fullname": "ml.runners.evaluation.models", "modulename": "ml.runners.evaluation.models", "kind": "module", "doc": "

    A package with evaluation-specific pydantic models.

    \n"}, "ml.runners.evaluation.models.predictions": {"fullname": "ml.runners.evaluation.models.predictions", "modulename": "ml.runners.evaluation.models.predictions", "kind": "module", "doc": "

    Module defining Pydantic models for representing prediction artifacts and their associated metadata in the evaluation runner.

    \n"}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"fullname": "ml.runners.evaluation.models.predictions.PredictionArtifacts", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionArtifacts", "kind": "class", "doc": "

    Model representing the prediction artifacts for each data split.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"fullname": "ml.runners.evaluation.models.predictions.PredictionArtifacts.train", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionArtifacts.train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"fullname": "ml.runners.evaluation.models.predictions.PredictionArtifacts.val", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionArtifacts.val", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"fullname": "ml.runners.evaluation.models.predictions.PredictionArtifacts.test", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionArtifacts.test", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPaths", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPaths", "kind": "class", "doc": "

    Model representing the file paths to the persisted prediction artifacts.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPaths.train_predictions_path", "kind": "variable", "doc": "

    File path to the training predictions parquet file.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPaths.val_predictions_path", "kind": "variable", "doc": "

    File path to the validation predictions parquet file.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPaths.test_predictions_path", "kind": "variable", "doc": "

    File path to the test predictions parquet file.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPathsAndHashes", "kind": "class", "doc": "

    Model representing the file paths and hashes of the persisted prediction artifacts.

    \n", "bases": "PredictionsPaths"}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPathsAndHashes.train_predictions_hash", "kind": "variable", "doc": "

    Hash of the training predictions artifact for integrity verification.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPathsAndHashes.val_predictions_hash", "kind": "variable", "doc": "

    Hash of the validation predictions artifact for integrity verification.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPathsAndHashes.test_predictions_hash", "kind": "variable", "doc": "

    Hash of the test predictions artifact for integrity verification.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.persistence": {"fullname": "ml.runners.evaluation.persistence", "modulename": "ml.runners.evaluation.persistence", "kind": "module", "doc": "

    A package for evaluation-specific persistence.

    \n"}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"fullname": "ml.runners.evaluation.persistence.persist_evaluation_run", "modulename": "ml.runners.evaluation.persistence.persist_evaluation_run", "kind": "module", "doc": "

    Persistence orchestration for evaluation run artifacts and metadata.

    \n"}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"fullname": "ml.runners.evaluation.persistence.persist_evaluation_run.logger", "modulename": "ml.runners.evaluation.persistence.persist_evaluation_run", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.persistence.persist_evaluation_run (WARNING)>"}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"fullname": "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run", "modulename": "ml.runners.evaluation.persistence.persist_evaluation_run", "qualname": "persist_evaluation_run", "kind": "function", "doc": "

    Persist evaluation metrics, predictions, metadata, and runtime snapshot.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n eval_run_id: Evaluation run identifier.\n train_run_id: Upstream training run identifier.\n experiment_dir: Base experiment directory.\n eval_run_dir: Evaluation output directory.\n metrics: Evaluation metrics payload.\n prediction_dfs: Per-split prediction dataframes.\n feature_lineage: Feature lineage records.\n start_time: Process start time used for runtime metadata.\n timestamp: Run timestamp string.\n artifacts: Mutable artifact-path/hash mapping.\n pipeline_cfg_hash: Pipeline configuration hash.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\teval_run_id: str,\ttrain_run_id: str,\texperiment_dir: pathlib.Path,\teval_run_dir: pathlib.Path,\tmetrics: dict[str, dict[str, float]],\tprediction_dfs: ml.runners.evaluation.models.predictions.PredictionArtifacts,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tstart_time: float,\ttimestamp: str,\tartifacts: ml.modeling.models.artifacts.Artifacts,\tpipeline_cfg_hash: str) -> None:", "funcdef": "def"}, "ml.runners.evaluation.persistence.prepare_metadata": {"fullname": "ml.runners.evaluation.persistence.prepare_metadata", "modulename": "ml.runners.evaluation.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata payload construction for evaluation runs.

    \n"}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"fullname": "ml.runners.evaluation.persistence.prepare_metadata.logger", "modulename": "ml.runners.evaluation.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.persistence.prepare_metadata (WARNING)>"}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.runners.evaluation.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build evaluation metadata payload for persistence.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n eval_run_id: Evaluation run identifier.\n train_run_id: Source training run identifier.\n experiment_dir: Experiment directory path.\n feature_lineage: Feature lineage records for reproducibility.\n artifacts: Evaluation artifacts object.\n pipeline_cfg_hash: Hash of the runtime pipeline configuration.

    \n\n

    Returns:\n Evaluation metadata dictionary for run persistence.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\teval_run_id: str,\ttrain_run_id: str,\texperiment_dir: pathlib.Path,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tartifacts: ml.metadata.schemas.runners.evaluation.EvaluationArtifacts,\tpipeline_cfg_hash: str) -> dict:", "funcdef": "def"}, "ml.runners.evaluation.persistence.save_predictions": {"fullname": "ml.runners.evaluation.persistence.save_predictions", "modulename": "ml.runners.evaluation.persistence.save_predictions", "kind": "module", "doc": "

    Prediction artifact persistence helpers for evaluation splits.

    \n"}, "ml.runners.evaluation.persistence.save_predictions.logger": {"fullname": "ml.runners.evaluation.persistence.save_predictions.logger", "modulename": "ml.runners.evaluation.persistence.save_predictions", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.persistence.save_predictions (WARNING)>"}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"fullname": "ml.runners.evaluation.persistence.save_predictions.save_predictions", "modulename": "ml.runners.evaluation.persistence.save_predictions", "qualname": "save_predictions", "kind": "function", "doc": "

    Persist per-split prediction dataframes as parquet artifacts.

    \n\n

    Args:\n prediction_dfs: Mapping from split names to prediction dataframes.\n target_dir: Directory where prediction parquet files are written.

    \n\n

    Returns:\n PredictionsPaths object with paths to the saved prediction artifacts.

    \n", "signature": "(\tprediction_dfs: ml.runners.evaluation.models.predictions.PredictionArtifacts,\ttarget_dir: pathlib.Path) -> ml.runners.evaluation.models.predictions.PredictionsPaths:", "funcdef": "def"}, "ml.runners.evaluation.utils": {"fullname": "ml.runners.evaluation.utils", "modulename": "ml.runners.evaluation.utils", "kind": "module", "doc": "

    A package with evaluation utilities.

    \n"}, "ml.runners.evaluation.utils.get_entity_keys": {"fullname": "ml.runners.evaluation.utils.get_entity_keys", "modulename": "ml.runners.evaluation.utils.get_entity_keys", "kind": "module", "doc": "

    Helpers for extracting row identifiers from evaluation feature frames.

    \n"}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"fullname": "ml.runners.evaluation.utils.get_entity_keys.logger", "modulename": "ml.runners.evaluation.utils.get_entity_keys", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.utils.get_entity_keys (WARNING)>"}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"fullname": "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys", "modulename": "ml.runners.evaluation.utils.get_entity_keys", "qualname": "get_entity_keys", "kind": "function", "doc": "

    Return entity_key series from dataframe, raising if missing.

    \n\n

    Args:\n data: Input dataframe expected to contain a entity_key column.\n entity_key: The name of the entity key column to extract.

    \n\n

    Returns:\n Entity key series extracted from the dataframe.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tentity_key: str) -> pandas.core.series.Series:", "funcdef": "def"}, "ml.runners.evaluation.utils.get_evaluator": {"fullname": "ml.runners.evaluation.utils.get_evaluator", "modulename": "ml.runners.evaluation.utils.get_evaluator", "kind": "module", "doc": "

    Factory helper for resolving evaluation implementations by task key.

    \n"}, "ml.runners.evaluation.utils.get_evaluator.logger": {"fullname": "ml.runners.evaluation.utils.get_evaluator.logger", "modulename": "ml.runners.evaluation.utils.get_evaluator", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.utils.get_evaluator (WARNING)>"}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"fullname": "ml.runners.evaluation.utils.get_evaluator.get_evaluator", "modulename": "ml.runners.evaluation.utils.get_evaluator", "qualname": "get_evaluator", "kind": "function", "doc": "

    Instantiate evaluator class registered for the provided key.

    \n\n

    Args:\n key: Evaluator registry key, typically aligned with task or algorithm.

    \n\n

    Returns:\n Instantiated evaluator implementation.

    \n", "signature": "(key: str) -> ml.runners.evaluation.evaluators.base.Evaluator:", "funcdef": "def"}, "ml.runners.explainability": {"fullname": "ml.runners.explainability", "modulename": "ml.runners.explainability", "kind": "module", "doc": "

    Explainability runners, explainers, persistence helpers, and utilities.

    \n"}, "ml.runners.explainability.constants": {"fullname": "ml.runners.explainability.constants", "modulename": "ml.runners.explainability.constants", "kind": "module", "doc": "

    A package for explainability-specific constants.

    \n"}, "ml.runners.explainability.constants.explainability_metrics_class": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "kind": "module", "doc": "

    Typed explainability metric containers produced by explainers.

    \n"}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "qualname": "ExplainabilityMetrics", "kind": "class", "doc": "

    Top-k explainability tables for model-level interpretation outputs.

    \n"}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "qualname": "ExplainabilityMetrics.__init__", "kind": "function", "doc": "

    \n", "signature": "(\ttop_k_feature_importances: pandas.core.frame.DataFrame | None = None,\ttop_k_shap_importances: pandas.core.frame.DataFrame | None = None)"}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "qualname": "ExplainabilityMetrics.top_k_feature_importances", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "qualname": "ExplainabilityMetrics.top_k_shap_importances", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.runners.explainability.constants.output": {"fullname": "ml.runners.explainability.constants.output", "modulename": "ml.runners.explainability.constants.output", "kind": "module", "doc": "

    Typed output model returned by explainability runner implementations.

    \n"}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"fullname": "ml.runners.explainability.constants.output.ExplainabilityOutput", "modulename": "ml.runners.explainability.constants.output", "qualname": "ExplainabilityOutput", "kind": "class", "doc": "

    Explainability metrics and feature lineage payload for persistence.

    \n"}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"fullname": "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__", "modulename": "ml.runners.explainability.constants.output", "qualname": "ExplainabilityOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(\texplainability_metrics: ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage])"}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"fullname": "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics", "modulename": "ml.runners.explainability.constants.output", "qualname": "ExplainabilityOutput.explainability_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics"}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"fullname": "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage", "modulename": "ml.runners.explainability.constants.output", "qualname": "ExplainabilityOutput.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.runners.explainability.explainers": {"fullname": "ml.runners.explainability.explainers", "modulename": "ml.runners.explainability.explainers", "kind": "module", "doc": "

    A package with explainers.

    \n"}, "ml.runners.explainability.explainers.base": {"fullname": "ml.runners.explainability.explainers.base", "modulename": "ml.runners.explainability.explainers.base", "kind": "module", "doc": "

    Protocol definitions for explainability runner implementations.

    \n"}, "ml.runners.explainability.explainers.base.Explainer": {"fullname": "ml.runners.explainability.explainers.base.Explainer", "modulename": "ml.runners.explainability.explainers.base", "qualname": "Explainer", "kind": "class", "doc": "

    Structural interface implemented by explainability engines.

    \n", "bases": "typing.Protocol"}, "ml.runners.explainability.explainers.base.Explainer.explain": {"fullname": "ml.runners.explainability.explainers.base.Explainer.explain", "modulename": "ml.runners.explainability.explainers.base", "qualname": "Explainer.explain", "kind": "function", "doc": "

    Generate explainability artifacts for a trained model run.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\ttrain_dir: pathlib.Path,\ttop_k: int) -> ml.runners.explainability.constants.output.ExplainabilityOutput:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model": {"fullname": "ml.runners.explainability.explainers.tree_model", "modulename": "ml.runners.explainability.explainers.tree_model", "kind": "module", "doc": "

    A package with tree-model explainers.

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters", "modulename": "ml.runners.explainability.explainers.tree_model.adapters", "kind": "module", "doc": "

    A package with adapters for tree-model explainers.

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "kind": "module", "doc": "

    Abstract adapter interface for tree-model explainability backends.

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter", "kind": "class", "doc": "

    Adapter contract exposing SHAP and feature-importance operations.

    \n", "bases": "abc.ABC"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter.__init__", "kind": "function", "doc": "

    Store wrapped model instance for downstream explainability calls.

    \n\n

    Args:\n model: Wrapped tree-model instance.

    \n\n

    Returns:\n None: Initializes adapter state.

    \n", "signature": "(model)"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter.model", "kind": "variable", "doc": "

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter.compute_shap_values", "kind": "function", "doc": "

    Compute SHAP value matrix for provided feature dataframe.

    \n\n

    Args:\n X: Feature dataframe for SHAP computation.

    \n\n

    Returns:\n np.ndarray: SHAP value matrix.

    \n", "signature": "(self, X: pandas.core.frame.DataFrame) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter.compute_feature_importances", "kind": "function", "doc": "

    Compute model feature-importance vector for requested importance type.

    \n\n

    Args:\n importance_type: Importance definition requested by backend.

    \n\n

    Returns:\n np.ndarray: Feature-importance vector.

    \n", "signature": "(\tself,\timportance_type: Optional[Literal['PredictionValuesChange', 'LossFunctionChange', 'FeatureImportance', 'TotalGain']]) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "kind": "module", "doc": "

    CatBoost-specific implementation of the tree-model adapter interface.

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.adapters.catboost (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "qualname": "CatBoostAdapter", "kind": "class", "doc": "

    Adapter exposing CatBoost SHAP and feature-importance APIs.

    \n", "bases": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "qualname": "CatBoostAdapter.compute_shap_values", "kind": "function", "doc": "

    Compute SHAP values for CatBoost model and return feature-only matrix.

    \n\n

    Args:\n X: Feature dataframe for SHAP computation.

    \n\n

    Returns:\n np.ndarray: SHAP value matrix excluding expected-value column.

    \n", "signature": "(self, X: pandas.core.frame.DataFrame) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "qualname": "CatBoostAdapter.compute_feature_importances", "kind": "function", "doc": "

    Compute CatBoost feature importances for the requested type.

    \n\n

    Args:\n importance_type: Requested CatBoost importance type.

    \n\n

    Returns:\n np.ndarray: Feature importance values.

    \n", "signature": "(\tself,\timportance_type: Optional[Literal['PredictionValuesChange', 'LossFunctionChange', 'FeatureImportance', 'TotalGain']]) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.tree_model": {"fullname": "ml.runners.explainability.explainers.tree_model.tree_model", "modulename": "ml.runners.explainability.explainers.tree_model.tree_model", "kind": "module", "doc": "

    Tree-model explainability runner implementation.

    \n"}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.tree_model.logger", "modulename": "ml.runners.explainability.explainers.tree_model.tree_model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.tree_model (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"fullname": "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel", "modulename": "ml.runners.explainability.explainers.tree_model.tree_model", "qualname": "ExplainTreeModel", "kind": "class", "doc": "

    Run explainability workflow for tree-based pipelines.

    \n", "bases": "ml.runners.explainability.explainers.base.Explainer"}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"fullname": "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain", "modulename": "ml.runners.explainability.explainers.tree_model.tree_model", "qualname": "ExplainTreeModel.explain", "kind": "function", "doc": "

    Load artifacts/data and compute configured explainability outputs.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n train_dir: Directory containing training artifacts and metadata.\n top_k: Number of top features to include in explainability outputs.

    \n\n

    Returns:\n Explainability output with computed metrics and feature lineage.

    \n\n

    Raises:\n DataError: Propagated when required artifact/data lineage inputs are\n inconsistent or missing during explainability preparation.

    \n\n

    Notes:\n Explanations are computed on the test split after applying the same\n preprocessing pipeline used during training.

    \n\n

    Side Effects:\n Loads persisted training metadata/artifacts and may incur substantial\n compute for SHAP calculations.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\ttrain_dir: pathlib.Path,\ttop_k: int) -> ml.runners.explainability.constants.output.ExplainabilityOutput:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils": {"fullname": "ml.runners.explainability.explainers.tree_model.utils", "modulename": "ml.runners.explainability.explainers.tree_model.utils", "kind": "module", "doc": "

    A package with utilities for tree-model explainers.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.adapter", "modulename": "ml.runners.explainability.explainers.tree_model.utils.adapter", "kind": "module", "doc": "

    A package for tree-model adapter utilities.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter", "modulename": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter", "kind": "module", "doc": "

    Adapter factory for tree-model explainability backends.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter", "modulename": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter", "qualname": "get_tree_model_adapter", "kind": "function", "doc": "

    Resolve and instantiate tree-model adapter for the provided model.

    \n\n

    Args:\n model: Trained tree-based model instance requiring an explainability adapter.

    \n\n

    Returns:\n Adapter implementation compatible with the model type.

    \n", "signature": "(\tmodel) -> ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators", "kind": "module", "doc": "

    A package for tree-model explainers calculators.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances", "kind": "module", "doc": "

    Feature-importance calculation helpers for tree-model explainability.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances", "qualname": "get_feature_importances", "kind": "function", "doc": "

    Compute top-k feature importances from configured explainability method.

    \n\n

    Args:\n feature_names: Transformed feature-name array.\n adapter: Tree-model adapter implementing importance extraction.\n pipeline: Fitted pipeline whose last step is the model.\n model_cfg: Validated training model configuration.\n top_k: Number of top features to return.

    \n\n

    Returns:\n Top-k feature-importance dataframe, or None when disabled.

    \n", "signature": "(\t*,\tfeature_names: numpy.ndarray[typing.Any, numpy.dtype[numpy.str_]],\tadapter: ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter,\tpipeline: sklearn.pipeline.Pipeline,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\ttop_k: int) -> pandas.core.frame.DataFrame | None:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances", "kind": "module", "doc": "

    SHAP-based importance calculation helpers for tree-model explainability.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances", "qualname": "get_shap_importances", "kind": "function", "doc": "

    Compute top-k mean absolute SHAP importances for transformed test data.

    \n\n

    Args:\n feature_names: Transformed feature-name array.\n model_configs: Validated training model configuration.\n top_k: Number of top features to return.\n X_test_transformed: Transformed test feature dataframe.\n adapter: Tree-model adapter implementing SHAP computation.

    \n\n

    Returns:\n Top-k SHAP-importance dataframe, or None when disabled.

    \n", "signature": "(\t*,\tfeature_names: numpy.ndarray[typing.Any, numpy.dtype[numpy.str_]],\tmodel_configs: ml.config.schemas.model_cfg.TrainModelConfig,\ttop_k: int,\tX_test_transformed: pandas.core.frame.DataFrame,\tadapter: ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter) -> pandas.core.frame.DataFrame | None:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.transformers", "modulename": "ml.runners.explainability.explainers.tree_model.utils.transformers", "kind": "module", "doc": "

    A package for tree-model's transformers.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features", "modulename": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features", "kind": "module", "doc": "

    Helpers to transform features and recover transformed feature names.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features", "modulename": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features", "qualname": "get_feature_names_and_transformed_features", "kind": "function", "doc": "

    Transform features with pipeline preprocessors and return feature names.

    \n\n

    Args:\n pipeline: Fitted sklearn pipeline whose final step is the model.\n X: Raw feature dataframe to transform via preprocessing steps.

    \n\n

    Returns:\n Tuple of transformed feature names and transformed feature matrix.

    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\tX: pandas.core.frame.DataFrame) -> tuple[numpy.ndarray[typing.Any, numpy.dtype[numpy.str_]], pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.validators", "modulename": "ml.runners.explainability.explainers.tree_model.utils.validators", "kind": "module", "doc": "

    A package for tree-model's explainers validations.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths", "modulename": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths", "kind": "module", "doc": "

    Validation helpers for explainability vector/feature alignment checks.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths", "modulename": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths", "qualname": "validate_lengths", "kind": "function", "doc": "

    Ensure feature-name and importance arrays have identical lengths.

    \n\n

    Args:\n feature_names: Feature-name array.\n importances: Importance-value array.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tfeature_names: numpy.ndarray[typing.Any, numpy.dtype[numpy.str_]],\timportances: numpy.ndarray[typing.Any, numpy.dtype[numpy.float64]]) -> None:", "funcdef": "def"}, "ml.runners.explainability.persistence": {"fullname": "ml.runners.explainability.persistence", "modulename": "ml.runners.explainability.persistence", "kind": "module", "doc": "

    A package for explainability-specific persistence logic.

    \n"}, "ml.runners.explainability.persistence.persist_explainability_run": {"fullname": "ml.runners.explainability.persistence.persist_explainability_run", "modulename": "ml.runners.explainability.persistence.persist_explainability_run", "kind": "module", "doc": "

    Persistence orchestration for explainability artifacts and metadata.

    \n"}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"fullname": "ml.runners.explainability.persistence.persist_explainability_run.logger", "modulename": "ml.runners.explainability.persistence.persist_explainability_run", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.persistence.persist_explainability_run (WARNING)>"}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"fullname": "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run", "modulename": "ml.runners.explainability.persistence.persist_explainability_run", "qualname": "persist_explainability_run", "kind": "function", "doc": "

    Persist explainability metrics, metadata, and runtime snapshot.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n explain_run_id: Explainability run identifier.\n train_run_id: Upstream training run identifier.\n experiment_dir: Base experiment directory.\n explain_run_dir: Explainability output directory.\n explainability_metrics: Computed explainability metrics container.\n feature_lineage: Feature lineage records.\n start_time: Process start time used for runtime metadata.\n timestamp: Run timestamp string.\n artifacts: Mutable artifact-path/hash mapping.\n pipeline_cfg_hash: Pipeline configuration hash.\n top_k: Number of top features persisted per explainability method.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\texplain_run_id: str,\ttrain_run_id: str,\texperiment_dir: pathlib.Path,\texplain_run_dir: pathlib.Path,\texplainability_metrics: ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tstart_time: float,\ttimestamp: str,\tartifacts: ml.modeling.models.artifacts.Artifacts,\tpipeline_cfg_hash: str,\ttop_k: int) -> None:", "funcdef": "def"}, "ml.runners.explainability.persistence.save_metrics_csv": {"fullname": "ml.runners.explainability.persistence.save_metrics_csv", "modulename": "ml.runners.explainability.persistence.save_metrics_csv", "kind": "module", "doc": "

    CSV persistence helpers for explainability metric tables.

    \n"}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"fullname": "ml.runners.explainability.persistence.save_metrics_csv.logger", "modulename": "ml.runners.explainability.persistence.save_metrics_csv", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.persistence.save_metrics_csv (WARNING)>"}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"fullname": "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv", "modulename": "ml.runners.explainability.persistence.save_metrics_csv", "qualname": "save_metrics_csv", "kind": "function", "doc": "

    Persist explainability metric dataframe to CSV at target path.

    \n\n

    Args:\n metrics: Explainability metrics dataframe to persist.\n target_file: Destination CSV file path.\n name: Human-readable metric table name for logging.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmetrics: pandas.core.frame.DataFrame,\t*,\ttarget_file: pathlib.Path,\tname: Literal['Feature importances', 'SHAP importances']) -> None:", "funcdef": "def"}, "ml.runners.explainability.utils": {"fullname": "ml.runners.explainability.utils", "modulename": "ml.runners.explainability.utils", "kind": "module", "doc": "

    A package for explainability-specific utilities.

    \n"}, "ml.runners.explainability.utils.get_explainer": {"fullname": "ml.runners.explainability.utils.get_explainer", "modulename": "ml.runners.explainability.utils.get_explainer", "kind": "module", "doc": "

    Factory helper for resolving explainability implementations by key.

    \n"}, "ml.runners.explainability.utils.get_explainer.logger": {"fullname": "ml.runners.explainability.utils.get_explainer.logger", "modulename": "ml.runners.explainability.utils.get_explainer", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.utils.get_explainer (WARNING)>"}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"fullname": "ml.runners.explainability.utils.get_explainer.get_explainer", "modulename": "ml.runners.explainability.utils.get_explainer", "qualname": "get_explainer", "kind": "function", "doc": "

    Instantiate explainer class registered for the provided key.

    \n\n

    Args:\n key: Explainer registry key, typically aligned with model family.

    \n\n

    Returns:\n Instantiated explainer implementation.

    \n", "signature": "(key: str) -> ml.runners.explainability.explainers.base.Explainer:", "funcdef": "def"}, "ml.runners.shared": {"fullname": "ml.runners.shared", "modulename": "ml.runners.shared", "kind": "module", "doc": "

    A process for code shared across runners.

    \n"}, "ml.runners.shared.formatting": {"fullname": "ml.runners.shared.formatting", "modulename": "ml.runners.shared.formatting", "kind": "module", "doc": "

    A package for runners-specific formatting logic.

    \n"}, "ml.runners.shared.formatting.ensure_1d_array": {"fullname": "ml.runners.shared.formatting.ensure_1d_array", "modulename": "ml.runners.shared.formatting.ensure_1d_array", "kind": "module", "doc": "

    Validation utilities for normalizing prediction outputs to 1D arrays.

    \n"}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"fullname": "ml.runners.shared.formatting.ensure_1d_array.logger", "modulename": "ml.runners.shared.formatting.ensure_1d_array", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.formatting.ensure_1d_array (WARNING)>"}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"fullname": "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array", "modulename": "ml.runners.shared.formatting.ensure_1d_array", "qualname": "ensure_1d_array", "kind": "function", "doc": "

    Validate prediction output is one-dimensional and return as ndarray.

    \n\n

    Args:\n pred: Prediction output from a model or pipeline.

    \n\n

    Returns:\n One-dimensional NumPy array of predictions.

    \n", "signature": "(pred: Any) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.shared.lineage": {"fullname": "ml.runners.shared.lineage", "modulename": "ml.runners.shared.lineage", "kind": "module", "doc": "

    A package for lineage tracking logic shared across runners.

    \n"}, "ml.runners.shared.lineage.validate_lineage_integrity": {"fullname": "ml.runners.shared.lineage.validate_lineage_integrity", "modulename": "ml.runners.shared.lineage.validate_lineage_integrity", "kind": "module", "doc": "

    Orchestration entrypoint for lineage integrity validation checks.

    \n"}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"fullname": "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity", "modulename": "ml.runners.shared.lineage.validate_lineage_integrity", "qualname": "validate_lineage_integrity", "kind": "function", "doc": "

    Run baseline lineage checks and optional config-hash consistency validation.

    \n\n

    Args:\n source_dir: Directory containing run metadata to validate.\n cfg: Optional validated config for hash consistency validation.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tsource_dir: pathlib.Path,\tcfg: ml.config.schemas.model_cfg.TrainModelConfig | ml.config.schemas.model_cfg.SearchModelConfig | None = None) -> None:", "funcdef": "def"}, "ml.runners.shared.lineage.validations": {"fullname": "ml.runners.shared.lineage.validations", "modulename": "ml.runners.shared.lineage.validations", "kind": "module", "doc": "

    A package for validating lineage across runners.

    \n"}, "ml.runners.shared.lineage.validations.base": {"fullname": "ml.runners.shared.lineage.validations.base", "modulename": "ml.runners.shared.lineage.validations.base", "kind": "module", "doc": "

    Base lineage integrity checks for required experiment metadata files.

    \n"}, "ml.runners.shared.lineage.validations.base.logger": {"fullname": "ml.runners.shared.lineage.validations.base.logger", "modulename": "ml.runners.shared.lineage.validations.base", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.lineage.validations.base (WARNING)>"}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"fullname": "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity", "modulename": "ml.runners.shared.lineage.validations.base", "qualname": "validate_base_lineage_integrity", "kind": "function", "doc": "

    Ensure core lineage files exist in the provided experiment directory.

    \n\n

    Args:\n source_dir: Experiment/run directory expected to contain lineage artifacts.

    \n\n

    Returns:\n None.

    \n", "signature": "(source_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.runners.shared.lineage.validations.configs_match": {"fullname": "ml.runners.shared.lineage.validations.configs_match", "modulename": "ml.runners.shared.lineage.validations.configs_match", "kind": "module", "doc": "

    Lineage validation helpers that verify runtime config hash consistency.

    \n"}, "ml.runners.shared.lineage.validations.configs_match.logger": {"fullname": "ml.runners.shared.lineage.validations.configs_match.logger", "modulename": "ml.runners.shared.lineage.validations.configs_match", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.lineage.validations.configs_match (WARNING)>"}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"fullname": "ml.runners.shared.lineage.validations.configs_match.validate_configs_match", "modulename": "ml.runners.shared.lineage.validations.configs_match", "qualname": "validate_configs_match", "kind": "function", "doc": "

    Validate that runtime config hash matches the hash persisted in metadata.

    \n\n

    Args:\n train_dir: Training run directory.\n cfg: Search or training configuration object.

    \n\n

    Returns:\n None: Raises on mismatch.

    \n", "signature": "(\ttrain_dir: pathlib.Path,\tcfg: ml.config.schemas.model_cfg.TrainModelConfig | ml.config.schemas.model_cfg.SearchModelConfig) -> None:", "funcdef": "def"}, "ml.runners.shared.loading": {"fullname": "ml.runners.shared.loading", "modulename": "ml.runners.shared.loading", "kind": "module", "doc": "

    A package for loading logic across runners.

    \n"}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"fullname": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata", "modulename": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata", "kind": "module", "doc": "

    Helpers for extracting feature snapshot bindings from training metadata.

    \n"}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"fullname": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger", "modulename": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.loading.get_snapshot_binding_from_training_metadata (WARNING)>"}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"fullname": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata", "modulename": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata", "qualname": "get_snapshot_binding_from_training_metadata", "kind": "function", "doc": "

    Return feature lineage snapshot bindings required for consistent loading.

    \n\n

    Args:\n training_metadata: Training metadata object containing lineage information.

    \n\n

    Returns:\n list of FeatureLineage objects representing the snapshot binding.

    \n", "signature": "(\ttraining_metadata: ml.metadata.schemas.runners.training.TrainingMetadata) -> list[ml.modeling.models.feature_lineage.FeatureLineage]:", "funcdef": "def"}, "ml.runners.shared.loading.pipeline": {"fullname": "ml.runners.shared.loading.pipeline", "modulename": "ml.runners.shared.loading.pipeline", "kind": "module", "doc": "

    Utilities for loading serialized model and pipeline artifacts safely.

    \n"}, "ml.runners.shared.loading.pipeline.logger": {"fullname": "ml.runners.shared.loading.pipeline.logger", "modulename": "ml.runners.shared.loading.pipeline", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.loading.pipeline (WARNING)>"}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"fullname": "ml.runners.shared.loading.pipeline.load_model_or_pipeline", "modulename": "ml.runners.shared.loading.pipeline", "qualname": "load_model_or_pipeline", "kind": "function", "doc": "

    Load and type-validate a serialized model or pipeline artifact from disk.

    \n\n

    Args:\n file: Serialized artifact file path.\n target_type: Artifact type discriminator.

    \n\n

    Returns:\n AllowedModels | Pipeline: Deserialized artifact with expected type.

    \n", "signature": "(\tfile: pathlib.Path,\ttarget_type: Literal['model', 'pipeline']) -> catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor | sklearn.pipeline.Pipeline:", "funcdef": "def"}, "ml.runners.shared.logical_config": {"fullname": "ml.runners.shared.logical_config", "modulename": "ml.runners.shared.logical_config", "kind": "module", "doc": "

    A package for logical configuration logic across runners.

    \n"}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"fullname": "ml.runners.shared.logical_config.validate_model_and_pipeline", "modulename": "ml.runners.shared.logical_config.validate_model_and_pipeline", "kind": "module", "doc": "

    Logical-config validation for model and pipeline artifact integrity.

    \n"}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"fullname": "ml.runners.shared.logical_config.validate_model_and_pipeline.logger", "modulename": "ml.runners.shared.logical_config.validate_model_and_pipeline", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.logical_config.validate_model_and_pipeline (WARNING)>"}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"fullname": "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline", "modulename": "ml.runners.shared.logical_config.validate_model_and_pipeline", "qualname": "validate_model_and_pipeline", "kind": "function", "doc": "

    Validate persisted artifact hashes and return artifact metadata payload.

    \n\n

    Args:\n train_dir: Training run directory containing metadata and artifacts.

    \n\n

    Returns:\n Artifact metadata mapping after successful integrity checks.

    \n", "signature": "(train_dir: pathlib.Path) -> ml.modeling.models.artifacts.Artifacts:", "funcdef": "def"}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"fullname": "ml.runners.shared.logical_config.validate_pipeline_cfg", "modulename": "ml.runners.shared.logical_config.validate_pipeline_cfg", "kind": "module", "doc": "

    Validation helpers for pipeline configuration hash consistency.

    \n"}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"fullname": "ml.runners.shared.logical_config.validate_pipeline_cfg.logger", "modulename": "ml.runners.shared.logical_config.validate_pipeline_cfg", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.logical_config.validate_pipeline_cfg (WARNING)>"}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"fullname": "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg", "modulename": "ml.runners.shared.logical_config.validate_pipeline_cfg", "qualname": "validate_pipeline_cfg", "kind": "function", "doc": "

    Validate active pipeline config hash against metadata and return hash.

    \n\n

    Args:\n metadata_file: Metadata file path containing expected pipeline hash.\n model_cfg: Validated training configuration with pipeline location.

    \n\n

    Returns:\n Validated active pipeline configuration hash.

    \n", "signature": "(\tmetadata_file: pathlib.Path,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig) -> str:", "funcdef": "def"}, "ml.runners.shared.logical_config.validate_threshold": {"fullname": "ml.runners.shared.logical_config.validate_threshold", "modulename": "ml.runners.shared.logical_config.validate_threshold", "kind": "module", "doc": "

    Validation helpers for threshold compatibility and value constraints.

    \n"}, "ml.runners.shared.logical_config.validate_threshold.logger": {"fullname": "ml.runners.shared.logical_config.validate_threshold.logger", "modulename": "ml.runners.shared.logical_config.validate_threshold", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.logical_config.validate_threshold (WARNING)>"}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"fullname": "ml.runners.shared.logical_config.validate_threshold.validate_threshold", "modulename": "ml.runners.shared.logical_config.validate_threshold", "qualname": "validate_threshold", "kind": "function", "doc": "

    Return validated threshold for supported tasks or None when unsupported.

    \n\n

    Args:\n task: Task configuration describing problem type/subtype.\n metrics_path: Metrics file path potentially containing a threshold value.

    \n\n

    Returns:\n Validated threshold value, default threshold, or None when unsupported.

    \n", "signature": "(\ttask: ml.config.schemas.model_specs.TaskConfig,\tmetrics_path: pathlib.Path) -> float | None:", "funcdef": "def"}, "ml.runners.shared.persistence": {"fullname": "ml.runners.shared.persistence", "modulename": "ml.runners.shared.persistence", "kind": "module", "doc": "

    A package for persistence logic used by multiple runners.

    \n"}, "ml.runners.shared.persistence.save_metrics": {"fullname": "ml.runners.shared.persistence.save_metrics", "modulename": "ml.runners.shared.persistence.save_metrics", "kind": "module", "doc": "

    Persistence helpers for writing training and evaluation metrics artifacts.

    \n"}, "ml.runners.shared.persistence.save_metrics.logger": {"fullname": "ml.runners.shared.persistence.save_metrics.logger", "modulename": "ml.runners.shared.persistence.save_metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.persistence.save_metrics (WARNING)>"}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"fullname": "ml.runners.shared.persistence.save_metrics.save_metrics", "modulename": "ml.runners.shared.persistence.save_metrics", "qualname": "save_metrics", "kind": "function", "doc": "

    Serialize and persist metrics payload for a run stage, returning file path.

    \n\n

    Args:\n metrics: Metrics payload for the run stage.\n model_cfg: Validated training configuration.\n target_run_id: Target run identifier for stage-specific output.\n experiment_dir: Base experiment directory path.\n stage: Run stage name (training or evaluation).

    \n\n

    Returns:\n String path to the persisted metrics file.

    \n", "signature": "(\tmetrics: dict[str, float] | dict[str, dict[str, float]],\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\ttarget_run_id: str,\texperiment_dir: pathlib.Path,\tstage: Literal['training', 'evaluation']) -> str:", "funcdef": "def"}, "ml.runners.shared.reproducibility": {"fullname": "ml.runners.shared.reproducibility", "modulename": "ml.runners.shared.reproducibility", "kind": "module", "doc": "

    A package regarding reproducibility across runners.

    \n"}, "ml.runners.shared.reproducibility.validate_reproducibility": {"fullname": "ml.runners.shared.reproducibility.validate_reproducibility", "modulename": "ml.runners.shared.reproducibility.validate_reproducibility", "kind": "module", "doc": "

    Orchestration entrypoint for reproducibility validation checks.

    \n"}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"fullname": "ml.runners.shared.reproducibility.validate_reproducibility.logger", "modulename": "ml.runners.shared.reproducibility.validate_reproducibility", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validate_reproducibility (WARNING)>"}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"fullname": "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility", "modulename": "ml.runners.shared.reproducibility.validate_reproducibility", "qualname": "validate_reproducibility", "kind": "function", "doc": "

    Load runtime metadata and run git, environment, and runtime checks.

    \n\n

    Args:\n runtime_info_path: Path to runtime metadata JSON file.

    \n\n

    Returns:\n None.

    \n", "signature": "(runtime_info_path: pathlib.Path) -> None:", "funcdef": "def"}, "ml.runners.shared.reproducibility.validations": {"fullname": "ml.runners.shared.reproducibility.validations", "modulename": "ml.runners.shared.reproducibility.validations", "kind": "module", "doc": "

    A package for reproducibility validation across runners.

    \n"}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"fullname": "ml.runners.shared.reproducibility.validations.conda_envs_match", "modulename": "ml.runners.shared.reproducibility.validations.conda_envs_match", "kind": "module", "doc": "

    Reproducibility checks for conda environment hash consistency.

    \n"}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"fullname": "ml.runners.shared.reproducibility.validations.conda_envs_match.logger", "modulename": "ml.runners.shared.reproducibility.validations.conda_envs_match", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validations.conda_envs_match (WARNING)>"}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"fullname": "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match", "modulename": "ml.runners.shared.reproducibility.validations.conda_envs_match", "qualname": "validate_conda_envs_match", "kind": "function", "doc": "

    Compare current conda environment hash with expected runtime metadata hash.

    \n\n

    Args:\n runtime_info: Runtime metadata dictionary containing expected environment hash.

    \n\n

    Returns:\n None.

    \n", "signature": "(runtime_info: ml.modeling.models.runtime_info.RuntimeInfo) -> None:", "funcdef": "def"}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"fullname": "ml.runners.shared.reproducibility.validations.git_commits_match", "modulename": "ml.runners.shared.reproducibility.validations.git_commits_match", "kind": "module", "doc": "

    Reproducibility checks for git commit ancestry and branch alignment.

    \n"}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"fullname": "ml.runners.shared.reproducibility.validations.git_commits_match.logger", "modulename": "ml.runners.shared.reproducibility.validations.git_commits_match", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validations.git_commits_match (WARNING)>"}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"fullname": "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match", "modulename": "ml.runners.shared.reproducibility.validations.git_commits_match", "qualname": "validate_git_commits_match", "kind": "function", "doc": "

    Compare current git commit to expected commit and log reproducibility risk.

    \n\n

    Args:\n runtime_info: Runtime metadata dictionary containing expected git commit.

    \n\n

    Returns:\n None.

    \n\n

    Notes:\n This check is advisory by design: it logs reproducibility risks for\n descendant/divergent commits and does not raise to avoid blocking\n post-hoc reproducibility inspection workflows.

    \n\n

    Side Effects:\n Executes git introspection helpers and emits warning/debug logs.

    \n", "signature": "(runtime_info: ml.modeling.models.runtime_info.RuntimeInfo) -> None:", "funcdef": "def"}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"fullname": "ml.runners.shared.reproducibility.validations.runtime_comparison", "modulename": "ml.runners.shared.reproducibility.validations.runtime_comparison", "kind": "module", "doc": "

    Reproducibility checks comparing runtime platform characteristics.

    \n"}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"fullname": "ml.runners.shared.reproducibility.validations.runtime_comparison.logger", "modulename": "ml.runners.shared.reproducibility.validations.runtime_comparison", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validations.runtime_comparison (WARNING)>"}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"fullname": "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches", "modulename": "ml.runners.shared.reproducibility.validations.runtime_comparison", "qualname": "validate_runtime_matches", "kind": "function", "doc": "

    Compare current runtime details with expected metadata and log mismatches.

    \n\n

    Args:\n runtime_info: Runtime metadata dictionary with expected platform details.

    \n\n

    Returns:\n None.

    \n", "signature": "(runtime_info: ml.modeling.models.runtime_info.RuntimeInfo) -> None:", "funcdef": "def"}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"fullname": "ml.runners.shared.reproducibility.validations.validate_runtime_info", "modulename": "ml.runners.shared.reproducibility.validations.validate_runtime_info", "kind": "module", "doc": "

    Module for validating runtime information against expected metadata to ensure reproducibility.

    \n"}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"fullname": "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger", "modulename": "ml.runners.shared.reproducibility.validations.validate_runtime_info", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validations.validate_runtime_info (WARNING)>"}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"fullname": "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info", "modulename": "ml.runners.shared.reproducibility.validations.validate_runtime_info", "qualname": "validate_runtime_info", "kind": "function", "doc": "

    Validate runtime information dictionary against the RuntimeInfo model.

    \n\n

    Args:\n runtime_info_dict: Dictionary containing runtime information to validate.

    \n\n

    Returns:\n An instance of RuntimeInfo if validation is successful.

    \n", "signature": "(runtime_info_dict: dict) -> ml.modeling.models.runtime_info.RuntimeInfo:", "funcdef": "def"}, "ml.runners.training": {"fullname": "ml.runners.training", "modulename": "ml.runners.training", "kind": "module", "doc": "

    A package for training machine learning models.

    \n"}, "ml.runners.training.constants": {"fullname": "ml.runners.training.constants", "modulename": "ml.runners.training.constants", "kind": "module", "doc": "

    A package for training-specific constants.

    \n"}, "ml.runners.training.constants.output": {"fullname": "ml.runners.training.constants.output", "modulename": "ml.runners.training.constants.output", "kind": "module", "doc": "

    Typed output contract for training runner implementations.

    \n"}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"fullname": "ml.runners.training.constants.output.SUPPORTED_MODELS", "modulename": "ml.runners.training.constants.output", "qualname": "SUPPORTED_MODELS", "kind": "variable", "doc": "

    \n", "annotation": ": TypeAlias", "default_value": "catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor"}, "ml.runners.training.constants.output.TrainOutput": {"fullname": "ml.runners.training.constants.output.TrainOutput", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput", "kind": "class", "doc": "

    Container for trained artifacts, lineage, metrics, and pipeline hash.

    \n"}, "ml.runners.training.constants.output.TrainOutput.__init__": {"fullname": "ml.runners.training.constants.output.TrainOutput.__init__", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmodel: catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor,\tpipeline: sklearn.pipeline.Pipeline | None,\tlineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tmetrics: dict[str, float],\tpipeline_cfg_hash: str | None)"}, "ml.runners.training.constants.output.TrainOutput.model": {"fullname": "ml.runners.training.constants.output.TrainOutput.model", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.model", "kind": "variable", "doc": "

    \n", "annotation": ": catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor"}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"fullname": "ml.runners.training.constants.output.TrainOutput.pipeline", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.pipeline", "kind": "variable", "doc": "

    \n", "annotation": ": sklearn.pipeline.Pipeline | None"}, "ml.runners.training.constants.output.TrainOutput.lineage": {"fullname": "ml.runners.training.constants.output.TrainOutput.lineage", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.runners.training.constants.output.TrainOutput.metrics": {"fullname": "ml.runners.training.constants.output.TrainOutput.metrics", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float]"}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"fullname": "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.pipeline_cfg_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.runners.training.persistence": {"fullname": "ml.runners.training.persistence", "modulename": "ml.runners.training.persistence", "kind": "module", "doc": "

    Persistence helpers for training artifacts, metadata, and runtime snapshots.

    \n"}, "ml.runners.training.persistence.artifacts": {"fullname": "ml.runners.training.persistence.artifacts", "modulename": "ml.runners.training.persistence.artifacts", "kind": "module", "doc": "

    A package for storing training artifacts.

    \n"}, "ml.runners.training.persistence.artifacts.save_model": {"fullname": "ml.runners.training.persistence.artifacts.save_model", "modulename": "ml.runners.training.persistence.artifacts.save_model", "kind": "module", "doc": "

    Model artifact persistence helpers for training runs.

    \n"}, "ml.runners.training.persistence.artifacts.save_model.logger": {"fullname": "ml.runners.training.persistence.artifacts.save_model.logger", "modulename": "ml.runners.training.persistence.artifacts.save_model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.persistence.artifacts.save_model (WARNING)>"}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"fullname": "ml.runners.training.persistence.artifacts.save_model.save_model", "modulename": "ml.runners.training.persistence.artifacts.save_model", "qualname": "save_model", "kind": "function", "doc": "

    Persist trained model artifact using joblib and return file path.

    \n\n

    Args:\n model: Trained model object to serialize.\n path: Target directory where the model artifact is saved.

    \n\n

    Returns:\n Filesystem path to the persisted model artifact.

    \n", "signature": "(model, path: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}, "ml.runners.training.persistence.artifacts.save_pipeline": {"fullname": "ml.runners.training.persistence.artifacts.save_pipeline", "modulename": "ml.runners.training.persistence.artifacts.save_pipeline", "kind": "module", "doc": "

    Pipeline artifact persistence helpers for training runs.

    \n"}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"fullname": "ml.runners.training.persistence.artifacts.save_pipeline.logger", "modulename": "ml.runners.training.persistence.artifacts.save_pipeline", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.persistence.artifacts.save_pipeline (WARNING)>"}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"fullname": "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline", "modulename": "ml.runners.training.persistence.artifacts.save_pipeline", "qualname": "save_pipeline", "kind": "function", "doc": "

    Persist trained preprocessing+model pipeline and return file path.

    \n\n

    Args:\n pipeline: Trained sklearn pipeline to serialize.\n path: Target directory where the pipeline artifact is saved.

    \n\n

    Returns:\n Filesystem path to the persisted pipeline artifact.

    \n", "signature": "(pipeline: sklearn.pipeline.Pipeline, path: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}, "ml.runners.training.persistence.run_info": {"fullname": "ml.runners.training.persistence.run_info", "modulename": "ml.runners.training.persistence.run_info", "kind": "module", "doc": "

    A package for storing run information.

    \n"}, "ml.runners.training.persistence.run_info.persist_training_run": {"fullname": "ml.runners.training.persistence.run_info.persist_training_run", "modulename": "ml.runners.training.persistence.run_info.persist_training_run", "kind": "module", "doc": "

    Persistence orchestration for training run metadata, metrics, and runtime.

    \n"}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"fullname": "ml.runners.training.persistence.run_info.persist_training_run.logger", "modulename": "ml.runners.training.persistence.run_info.persist_training_run", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.persistence.run_info.persist_training_run (WARNING)>"}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"fullname": "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run", "modulename": "ml.runners.training.persistence.run_info.persist_training_run", "qualname": "persist_training_run", "kind": "function", "doc": "

    Persist training metadata, metrics artifact, and runtime snapshot.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n train_run_id: Training run identifier.\n experiment_dir: Base experiment directory.\n train_run_dir: Training output directory.\n start_time: Process start time used for runtime metadata.\n timestamp: Run timestamp string.\n feature_lineage: Feature lineage records.\n metrics: Training metrics payload.\n model_hash: Trained model artifact hash.\n pipeline_hash: Optional pipeline artifact hash.\n model_path: Persisted model artifact path.\n pipeline_path: Optional persisted pipeline artifact path.\n pipeline_cfg_hash: Optional pipeline configuration hash.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\ttrain_run_id: str,\texperiment_dir: pathlib.Path,\ttrain_run_dir: pathlib.Path,\tstart_time: float,\ttimestamp: str,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tmetrics: dict[str, float],\tmodel_hash: str,\tpipeline_hash: str | None,\tmodel_path: pathlib.Path,\tpipeline_path: pathlib.Path | None,\tpipeline_cfg_hash: str | None) -> None:", "funcdef": "def"}, "ml.runners.training.trainers": {"fullname": "ml.runners.training.trainers", "modulename": "ml.runners.training.trainers", "kind": "module", "doc": "

    A package for trainers.

    \n"}, "ml.runners.training.trainers.base": {"fullname": "ml.runners.training.trainers.base", "modulename": "ml.runners.training.trainers.base", "kind": "module", "doc": "

    Protocol definition for model training runner implementations.

    \n"}, "ml.runners.training.trainers.base.Trainer": {"fullname": "ml.runners.training.trainers.base.Trainer", "modulename": "ml.runners.training.trainers.base", "qualname": "Trainer", "kind": "class", "doc": "

    Structural interface implemented by concrete model trainers.

    \n", "bases": "typing.Protocol"}, "ml.runners.training.trainers.base.Trainer.train": {"fullname": "ml.runners.training.trainers.base.Trainer.train", "modulename": "ml.runners.training.trainers.base", "qualname": "Trainer.train", "kind": "function", "doc": "

    Train model artifacts using provided configuration and runtime controls.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n strict: Whether data/validation loading should fail strictly.\n failure_management_dir: Directory for failure-management artifacts.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\nReturns:\n Standardized training output.

    \n", "signature": "(\tself,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tsnapshot_binding_key: str | None = None,\tstrict: bool,\tfailure_management_dir: pathlib.Path,\tsearch_dir: pathlib.Path) -> ml.runners.training.constants.output.TrainOutput:", "funcdef": "def"}, "ml.runners.training.trainers.catboost": {"fullname": "ml.runners.training.trainers.catboost", "modulename": "ml.runners.training.trainers.catboost", "kind": "module", "doc": "

    A package for training CatBoost models.

    \n"}, "ml.runners.training.trainers.catboost.catboost": {"fullname": "ml.runners.training.trainers.catboost.catboost", "modulename": "ml.runners.training.trainers.catboost.catboost", "kind": "module", "doc": "

    Binary classification training utilities using CatBoost.

    \n\n

    This module contains helper routines and a top-level training function\nused to train binary classification models with CatBoost within the\nproject training framework. It provides deterministic data loading,\ndynamic import of model-specific pipeline components from the\nml.components package, pipeline construction, model definition,\nand training orchestration.

    \n\n

    The public entrypoint is train_binary_classification_with_catboost which\nreturns a fitted sklearn.pipeline.Pipeline combining preprocessing\nsteps and the trained CatBoost model.

    \n"}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"fullname": "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer", "modulename": "ml.runners.training.trainers.catboost.catboost", "qualname": "CatBoostTrainer", "kind": "class", "doc": "

    Concrete trainer for CatBoost models within project training flow.

    \n", "bases": "ml.runners.training.trainers.base.Trainer"}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"fullname": "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train", "modulename": "ml.runners.training.trainers.catboost.catboost", "qualname": "CatBoostTrainer.train", "kind": "function", "doc": "

    Execute end-to-end CatBoost training and return standardized output.

    \n\n

    Args:\n model_cfg: Validated model configuration for training.\n strict: Whether feature/data loading operations should fail strictly.\n failure_management_dir: Directory for storing failure-management artifacts.\n search_dir: Directory for storing search-related artifacts.\nReturns:\n Standardized training output containing model, pipeline, lineage, and metrics.

    \n\n

    Raises:\n PipelineContractError: Propagated when pipeline/model contract checks\n fail in downstream validation helpers.

    \n\n

    Notes:\n Class weighting and categorical feature handling are resolved\n dynamically from configuration and task type before model fitting.

    \n\n

    Side Effects:\n Performs model training and pipeline fitting, which can be\n computationally intensive and may write failure-management artifacts\n through downstream helpers.

    \n", "signature": "(\tself,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tsnapshot_binding_key: str | None = None,\tstrict: bool,\tfailure_management_dir: pathlib.Path,\tsearch_dir: pathlib.Path) -> ml.runners.training.constants.output.TrainOutput:", "funcdef": "def"}, "ml.runners.training.trainers.catboost.train_catboost_model": {"fullname": "ml.runners.training.trainers.catboost.train_catboost_model", "modulename": "ml.runners.training.trainers.catboost.train_catboost_model", "kind": "module", "doc": "

    Low-level CatBoost fitting helper used by training runner.

    \n"}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"fullname": "ml.runners.training.trainers.catboost.train_catboost_model.logger", "modulename": "ml.runners.training.trainers.catboost.train_catboost_model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.trainers.catboost.train_catboost_model (WARNING)>"}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"fullname": "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model", "modulename": "ml.runners.training.trainers.catboost.train_catboost_model", "qualname": "train_catboost_model", "kind": "function", "doc": "

    Fit preprocessing steps and CatBoost model, returning trained pipeline.

    \n\n

    The function separates preprocessing steps from the final model, fits\nthe preprocessing pipeline on the training data, transforms both train\nand validation sets, and fits the CatBoost model using the transformed\ndata and validation set for early stopping.

    \n\n

    Args:\n model_cfg (TrainModelConfig): Configuration object for the model.\n steps (list): Pipeline steps where the last element is the model.\n X_train, y_train, X_val, y_val: Training and validation data.

    \n\n

    Returns:\n tuple[CatBoostClassifier | CatBoostRegressor, Pipeline]: Trained model\n and fitted preprocessing+model pipeline.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tsteps: list,\tX_train: pandas.core.frame.DataFrame,\ty_train: pandas.core.series.Series,\tX_val: pandas.core.frame.DataFrame,\ty_val: pandas.core.series.Series) -> tuple[catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor, sklearn.pipeline.Pipeline]:", "funcdef": "def"}, "ml.runners.training.utils": {"fullname": "ml.runners.training.utils", "modulename": "ml.runners.training.utils", "kind": "module", "doc": "

    A package for training utilities.

    \n"}, "ml.runners.training.utils.get_trainer": {"fullname": "ml.runners.training.utils.get_trainer", "modulename": "ml.runners.training.utils.get_trainer", "kind": "module", "doc": "

    Factory helper for resolving training runner implementations by key.

    \n"}, "ml.runners.training.utils.get_trainer.logger": {"fullname": "ml.runners.training.utils.get_trainer.logger", "modulename": "ml.runners.training.utils.get_trainer", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.get_trainer (WARNING)>"}, "ml.runners.training.utils.get_trainer.get_trainer": {"fullname": "ml.runners.training.utils.get_trainer.get_trainer", "modulename": "ml.runners.training.utils.get_trainer", "qualname": "get_trainer", "kind": "function", "doc": "

    Instantiate trainer class registered for the provided algorithm key.

    \n\n

    Args:\n key: Trainer registry key identifying the algorithm implementation.

    \n\n

    Returns:\n Instantiated trainer implementation.

    \n", "signature": "(key: str) -> ml.runners.training.trainers.base.Trainer:", "funcdef": "def"}, "ml.runners.training.utils.logical_config_checks": {"fullname": "ml.runners.training.utils.logical_config_checks", "modulename": "ml.runners.training.utils.logical_config_checks", "kind": "module", "doc": "

    A package for logical configuration checks in training.

    \n"}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"fullname": "ml.runners.training.utils.logical_config_checks.validate_logical_config", "modulename": "ml.runners.training.utils.logical_config_checks.validate_logical_config", "kind": "module", "doc": "

    Orchestrator for logical consistency validations on training config.

    \n"}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"fullname": "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config", "modulename": "ml.runners.training.utils.logical_config_checks.validate_logical_config", "qualname": "validate_logical_config", "kind": "function", "doc": "

    Perform logical consistency checks on the training configuration.

    \n\n

    This function runs a series of validations to ensure that the provided\ntraining configuration is logically consistent and adheres to expected\nconstraints. It checks for allowed parameters, consistency of training\nbehavior settings, and any other logical rules defined for the training\nprocess.

    \n\n

    Args:\n model_cfg (TrainModelConfig): The validated training configuration object.\n search_dir (Path): The directory where search artifacts are stored, used for lineage checks.

    \n\n

    Raises:\n ConfigError: If any logical inconsistency is detected in the configuration.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tsearch_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.runners.training.utils.logical_config_checks.validations": {"fullname": "ml.runners.training.utils.logical_config_checks.validations", "modulename": "ml.runners.training.utils.logical_config_checks.validations", "kind": "module", "doc": "

    A package for logical configuration validation in training.

    \n"}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params", "kind": "module", "doc": "

    Validation helper for allowed best-parameter keys by algorithm.

    \n"}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params (WARNING)>"}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params", "qualname": "validate_allowed_params", "kind": "function", "doc": "

    Validate search-derived best params contain only allowed keys.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n search_dir: Search run directory containing metadata.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tsearch_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency", "kind": "module", "doc": "

    Logical consistency checks for training behavior configuration.

    \n"}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency (WARNING)>"}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency", "qualname": "validate_training_behavior_consistency", "kind": "function", "doc": "

    Validate seed and early-stopping settings are logically consistent.

    \n\n

    Args:\n model_cfg: Validated training model configuration.

    \n\n

    Returns:\n None.

    \n", "signature": "(model_cfg: ml.config.schemas.model_cfg.TrainModelConfig) -> None:", "funcdef": "def"}, "ml.runners.training.utils.metrics": {"fullname": "ml.runners.training.utils.metrics", "modulename": "ml.runners.training.utils.metrics", "kind": "module", "doc": "

    A package for training metrics.

    \n"}, "ml.runners.training.utils.metrics.best_f1": {"fullname": "ml.runners.training.utils.metrics.best_f1", "modulename": "ml.runners.training.utils.metrics.best_f1", "kind": "module", "doc": "

    Threshold search utility for maximizing F1 in binary classification.

    \n"}, "ml.runners.training.utils.metrics.best_f1.logger": {"fullname": "ml.runners.training.utils.metrics.best_f1.logger", "modulename": "ml.runners.training.utils.metrics.best_f1", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.metrics.best_f1 (WARNING)>"}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"fullname": "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold", "modulename": "ml.runners.training.utils.metrics.best_f1", "qualname": "get_best_f1_threshold", "kind": "function", "doc": "

    Find probability threshold in [0, 1] grid that maximizes F1 score.

    \n\n

    Args:\n pipeline: Fitted probabilistic classifier pipeline.\n X: Feature matrix used to generate predicted probabilities.\n y_true: Ground-truth binary labels.

    \n\n

    Returns:\n Tuple containing best threshold and corresponding F1 score.

    \n", "signature": "(pipeline, X, y_true):", "funcdef": "def"}, "ml.runners.training.utils.metrics.compute_metrics": {"fullname": "ml.runners.training.utils.metrics.compute_metrics", "modulename": "ml.runners.training.utils.metrics.compute_metrics", "kind": "module", "doc": "

    Training-time metric computation helpers across task types.

    \n"}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"fullname": "ml.runners.training.utils.metrics.compute_metrics.logger", "modulename": "ml.runners.training.utils.metrics.compute_metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.metrics.compute_metrics (WARNING)>"}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"fullname": "ml.runners.training.utils.metrics.compute_metrics.compute_metrics", "modulename": "ml.runners.training.utils.metrics.compute_metrics", "qualname": "compute_metrics", "kind": "function", "doc": "

    Compute training/validation metrics for configured model task type.

    \n\n

    Args:\n model: Fitted model instance.\n pipeline: Fitted pipeline used for prediction.\n model_cfg: Validated training model configuration.\n X_train: Training feature dataframe.\n y_train: Training target series.\n X_val: Validation feature dataframe.\n y_val: Validation target series.

    \n\n

    Returns:\n Dictionary of computed training and validation metrics.

    \n\n

    Raises:\n UserError: If model_cfg.task.type is unsupported.

    \n\n

    Notes:\n Classification metrics are computed from probabilistic outputs at the\n model's best iteration. Regression/forecasting branches inverse-transform\n predictions before metric calculation when target transformation is enabled.

    \n\n

    Side Effects:\n Executes model/pipeline inference on both train and validation splits and\n emits task-specific metric computation logs.

    \n", "signature": "(\t*,\tmodel: Any,\tpipeline: sklearn.pipeline.Pipeline,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tX_train: pandas.core.frame.DataFrame,\ty_train: pandas.core.series.Series,\tX_val: pandas.core.frame.DataFrame,\ty_val: pandas.core.series.Series) -> dict[str, float]:", "funcdef": "def"}, "ml.runners.training.utils.model_specific": {"fullname": "ml.runners.training.utils.model_specific", "modulename": "ml.runners.training.utils.model_specific", "kind": "module", "doc": "

    A package for model-specific training utilities.

    \n"}, "ml.runners.training.utils.model_specific.catboost": {"fullname": "ml.runners.training.utils.model_specific.catboost", "modulename": "ml.runners.training.utils.model_specific.catboost", "kind": "module", "doc": "

    CatBoost-specific model parameter extraction and estimator preparation.

    \n"}, "ml.runners.training.utils.model_specific.catboost.logger": {"fullname": "ml.runners.training.utils.model_specific.catboost.logger", "modulename": "ml.runners.training.utils.model_specific.catboost", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.model_specific.catboost (WARNING)>"}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"fullname": "ml.runners.training.utils.model_specific.catboost.extract_catboost_params", "modulename": "ml.runners.training.utils.model_specific.catboost", "qualname": "extract_catboost_params", "kind": "function", "doc": "

    Extract non-null CatBoost model and ensemble params from config.

    \n\n

    Args:\n model_cfg: Training model configuration.

    \n\n

    Returns:\n dict[str, Any]: Flattened CatBoost parameter mapping.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"fullname": "ml.runners.training.utils.model_specific.catboost.prepare_model", "modulename": "ml.runners.training.utils.model_specific.catboost", "qualname": "prepare_model", "kind": "function", "doc": "

    Construct configured CatBoost estimator for the current training run.

    \n\n

    Args:\n model_cfg: Training model configuration.\n cat_features: Categorical feature names.\n class_weights: Class-weight payload.\n failure_management_dir: Directory used by CatBoost for logs/artifacts.

    \n\n

    Returns:\n CatBoostClassifier | CatBoostRegressor: Configured CatBoost estimator instance.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tcat_features: list,\tclass_weights: dict,\tfailure_management_dir: pathlib.Path) -> catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor:", "funcdef": "def"}, "ml.search": {"fullname": "ml.search", "modulename": "ml.search", "kind": "module", "doc": "

    A package for performing hyperparameter searches.

    \n"}, "ml.search.constants": {"fullname": "ml.search.constants", "modulename": "ml.search.constants", "kind": "module", "doc": "

    Shared literal types and constants for search orchestration stages.

    \n"}, "ml.search.constants.SEARCH_PHASES": {"fullname": "ml.search.constants.SEARCH_PHASES", "modulename": "ml.search.constants", "qualname": "SEARCH_PHASES", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['broad', 'narrow']"}, "ml.search.models": {"fullname": "ml.search.models", "modulename": "ml.search.models", "kind": "module", "doc": "

    A package with search-specific pydantic models.

    \n"}, "ml.search.models.experiment_metadata": {"fullname": "ml.search.models.experiment_metadata", "modulename": "ml.search.models.experiment_metadata", "kind": "module", "doc": "

    \n"}, "ml.search.models.experiment_metadata.Sources": {"fullname": "ml.search.models.experiment_metadata.Sources", "modulename": "ml.search.models.experiment_metadata", "qualname": "Sources", "kind": "class", "doc": "

    Represents the source information for the search experiment, including main source and any extended sources.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.search.models.experiment_metadata.Sources.main": {"fullname": "ml.search.models.experiment_metadata.Sources.main", "modulename": "ml.search.models.experiment_metadata", "qualname": "Sources.main", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.Sources.extends": {"fullname": "ml.search.models.experiment_metadata.Sources.extends", "modulename": "ml.search.models.experiment_metadata", "qualname": "Sources.extends", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "[]"}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata", "kind": "class", "doc": "

    Structured representation of experiment metadata, capturing configuration, environment, and lineage details.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.problem", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.problem", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.segment", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.segment", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.version", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.sources", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.sources", "kind": "variable", "doc": "

    \n", "annotation": ": ml.search.models.experiment_metadata.Sources", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.env", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.env", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['default', 'dev', 'test', 'prod']", "default_value": "'default'"}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.best_params_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.algorithm", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.pipeline_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.created_by", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.created_at", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.owner", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.owner", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.seed", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.seed", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.hardware", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.hardware", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareConfig", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.validation_status", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.pipeline_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.scoring_method", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.splits_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.AllSplitsInfo", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.target_transform", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TargetTransformConfig | None", "default_value": "None"}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.class_weighting", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ClassWeightingConfig | None", "default_value": "None"}, "ml.search.models.search_results": {"fullname": "ml.search.models.search_results", "modulename": "ml.search.models.search_results", "kind": "module", "doc": "

    Defines data models for representing search results and related metadata in a structured format.

    \n"}, "ml.search.models.search_results.Phases": {"fullname": "ml.search.models.search_results.Phases", "modulename": "ml.search.models.search_results", "qualname": "Phases", "kind": "class", "doc": "

    Represents the different phases of the search process.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.search.models.search_results.Phases.broad": {"fullname": "ml.search.models.search_results.Phases.broad", "modulename": "ml.search.models.search_results", "qualname": "Phases.broad", "kind": "variable", "doc": "

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.search.models.search_results.Phases.narrow": {"fullname": "ml.search.models.search_results.Phases.narrow", "modulename": "ml.search.models.search_results", "qualname": "Phases.narrow", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.models.search_results.SearchResults": {"fullname": "ml.search.models.search_results.SearchResults", "modulename": "ml.search.models.search_results", "qualname": "SearchResults", "kind": "class", "doc": "

    Structured representation of search results, including best parameters and phase details.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"fullname": "ml.search.models.search_results.SearchResults.best_pipeline_params", "modulename": "ml.search.models.search_results", "qualname": "SearchResults.best_pipeline_params", "kind": "variable", "doc": "

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.search.models.search_results.SearchResults.best_model_params": {"fullname": "ml.search.models.search_results.SearchResults.best_model_params", "modulename": "ml.search.models.search_results", "qualname": "SearchResults.best_model_params", "kind": "variable", "doc": "

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.search.models.search_results.SearchResults.phases": {"fullname": "ml.search.models.search_results.SearchResults.phases", "modulename": "ml.search.models.search_results", "qualname": "SearchResults.phases", "kind": "variable", "doc": "

    \n", "annotation": ": ml.search.models.search_results.Phases", "default_value": "PydanticUndefined"}, "ml.search.params": {"fullname": "ml.search.params", "modulename": "ml.search.params", "kind": "module", "doc": "

    A package with param-specific logic for hyperparameter searches.

    \n"}, "ml.search.params.catboost": {"fullname": "ml.search.params.catboost", "modulename": "ml.search.params.catboost", "kind": "module", "doc": "

    A package for CatBoost-param-specific logic for hyperparameter searches.

    \n"}, "ml.search.params.catboost.refinement": {"fullname": "ml.search.params.catboost.refinement", "modulename": "ml.search.params.catboost.refinement", "kind": "module", "doc": "

    Narrow-search parameter refinement helpers for CatBoost searches.

    \n"}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"fullname": "ml.search.params.catboost.refinement.prepare_narrow_params", "modulename": "ml.search.params.catboost.refinement", "qualname": "prepare_narrow_params", "kind": "function", "doc": "

    Build narrow search distributions around broad-search best parameters.

    \n\n

    Args:\n best_params: Best-parameter mapping returned by broad search.\n narrow_params_cfg: Narrow-search configuration object with refinement rules.\n task_type: Compute task type (for example CPU or GPU).

    \n\n

    Returns:\n Refined parameter distributions for narrow search.

    \n\n

    Notes:\n GPU-specific constraints are applied for selected parameters (for\n example colsample_bylevel), and only params marked include in\n narrow config are expanded.

    \n\n

    Examples:

    \n\n
    \n
    \n
    \n

    params = prepare_narrow_params(best_params, narrow_cfg, task_type=\"GPU\")

    \n
    \n
    \n
    \n\n

    Side Effects:\n None.

    \n", "signature": "(best_params: dict, narrow_params_cfg, task_type: str) -> dict:", "funcdef": "def"}, "ml.search.params.catboost.validation": {"fullname": "ml.search.params.catboost.validation", "modulename": "ml.search.params.catboost.validation", "kind": "module", "doc": "

    Validation helpers for CatBoost hyperparameter value constraints.

    \n"}, "ml.search.params.catboost.validation.logger": {"fullname": "ml.search.params.catboost.validation.logger", "modulename": "ml.search.params.catboost.validation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.params.catboost.validation (WARNING)>"}, "ml.search.params.catboost.validation.validate_param_value": {"fullname": "ml.search.params.catboost.validation.validate_param_value", "modulename": "ml.search.params.catboost.validation", "qualname": "validate_param_value", "kind": "function", "doc": "

    Validate one hyperparameter value against configured constraints.

    \n\n

    Args:\n param_name: Hyperparameter name to validate.\n value: Hyperparameter value to validate.\n task_type: Compute task type (for example CPU or GPU).

    \n\n

    Returns:\n None.

    \n", "signature": "(param_name: str, value, task_type: str):", "funcdef": "def"}, "ml.search.params.refiners": {"fullname": "ml.search.params.refiners", "modulename": "ml.search.params.refiners", "kind": "module", "doc": "

    Primitive refinement functions for integer/float search neighborhoods.

    \n"}, "ml.search.params.refiners.logger": {"fullname": "ml.search.params.refiners.logger", "modulename": "ml.search.params.refiners", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.params.refiners (WARNING)>"}, "ml.search.params.refiners.refine_int": {"fullname": "ml.search.params.refiners.refine_int", "modulename": "ml.search.params.refiners", "qualname": "refine_int", "kind": "function", "doc": "

    Generate bounded integer neighborhood around center using offsets.

    \n\n

    Args:\n center: Center integer value.\n offsets: Integer offsets around center.\n low: Minimum allowed value.\n high: Maximum allowed value.

    \n\n

    Returns:\n list[int]: Sorted bounded integer candidates.

    \n", "signature": "(center, offsets, low, high):", "funcdef": "def"}, "ml.search.params.refiners.refine_float_mult": {"fullname": "ml.search.params.refiners.refine_float_mult", "modulename": "ml.search.params.refiners", "qualname": "refine_float_mult", "kind": "function", "doc": "

    Generate bounded multiplicative float neighborhood around center.

    \n\n

    Args:\n center: Center numeric value.\n factors: Multipliers to apply around center.\n low: Minimum allowed value.\n high: Maximum allowed value.\n decimals: Rounding precision.

    \n\n

    Returns:\n list[float]: Sorted bounded float candidates.

    \n", "signature": "(center, factors, low, high, decimals=5):", "funcdef": "def"}, "ml.search.params.refiners.refine_border_count": {"fullname": "ml.search.params.refiners.refine_border_count", "modulename": "ml.search.params.refiners", "qualname": "refine_border_count", "kind": "function", "doc": "

    Refine GPU-safe CatBoost border_count using adjacent allowed values.

    \n\n

    Args:\n center: Current border_count value.

    \n\n

    Returns:\n list[int]: Neighboring allowed border_count values including center.

    \n", "signature": "(center):", "funcdef": "def"}, "ml.search.params.utils": {"fullname": "ml.search.params.utils", "modulename": "ml.search.params.utils", "kind": "module", "doc": "

    Utility helpers for resolving default narrowing parameter settings.

    \n"}, "ml.search.params.utils.logger": {"fullname": "ml.search.params.utils.logger", "modulename": "ml.search.params.utils", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.params.utils (WARNING)>"}, "ml.search.params.utils.get_default_int_params": {"fullname": "ml.search.params.utils.get_default_int_params", "modulename": "ml.search.params.utils", "qualname": "get_default_int_params", "kind": "function", "doc": "

    Resolve integer narrowing params with config overrides and fallbacks.

    \n\n

    Args:\n param_cfg: Parameter refinement configuration object.\n default_offsets: Default integer offsets.\n default_low: Default lower bound.\n default_high: Default upper bound.

    \n\n

    Returns:\n tuple: Effective (offsets, low, high) parameters.

    \n", "signature": "(param_cfg, default_offsets, default_low, default_high):", "funcdef": "def"}, "ml.search.params.utils.get_default_float_params": {"fullname": "ml.search.params.utils.get_default_float_params", "modulename": "ml.search.params.utils", "qualname": "get_default_float_params", "kind": "function", "doc": "

    Resolve float narrowing params with config overrides and validation.

    \n\n

    Args:\n param_cfg: Parameter refinement configuration object.\n default_factors: Default multiplicative factors.\n default_low: Default lower bound.\n default_high: Default upper bound.\n default_decimals: Default rounding precision.

    \n\n

    Returns:\n tuple: Effective (factors, low, high, decimals) parameters.

    \n", "signature": "(\tparam_cfg,\tdefault_factors,\tdefault_low,\tdefault_high,\tdefault_decimals):", "funcdef": "def"}, "ml.search.persistence": {"fullname": "ml.search.persistence", "modulename": "ml.search.persistence", "kind": "module", "doc": "

    A package for search-specific persistence logic.

    \n"}, "ml.search.persistence.persist_experiment": {"fullname": "ml.search.persistence.persist_experiment", "modulename": "ml.search.persistence.persist_experiment", "kind": "module", "doc": "

    Persistence orchestration for search experiment metadata and runtime.

    \n"}, "ml.search.persistence.persist_experiment.logger": {"fullname": "ml.search.persistence.persist_experiment.logger", "modulename": "ml.search.persistence.persist_experiment", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.persistence.persist_experiment (WARNING)>"}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"fullname": "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR", "modulename": "ml.search.persistence.persist_experiment", "qualname": "EXPERIMENTS_DIR", "kind": "variable", "doc": "

    \n", "default_value": "WindowsPath('experiments')"}, "ml.search.persistence.persist_experiment.persist_experiment": {"fullname": "ml.search.persistence.persist_experiment.persist_experiment", "modulename": "ml.search.persistence.persist_experiment", "qualname": "persist_experiment", "kind": "function", "doc": "

    Persist search metadata and runtime snapshot for an experiment run.

    \n\n

    Args:\n model_cfg: Validated search model configuration.\n search_results: Search results payload.\n owner: Owner identifier for the experiment.\n experiment_id: Experiment identifier.\n search_dir: Target experiment directory.\n timestamp: Run timestamp string.\n start_time: Process start time used for runtime metadata.\n feature_lineage: Feature lineage records.\n pipeline_hash: Pipeline hash fingerprint.\n scoring_method: Scoring method used during search.\n splits_info: Dataset split information.\n overwrite_existing: Whether existing metadata/runtime should be overwritten.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsearch_results: dict,\towner: str,\texperiment_id: str,\tsearch_dir: pathlib.Path,\ttimestamp: str,\tstart_time: float,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tpipeline_hash: str,\tscoring_method: str,\tsplits_info: ml.types.splits.AllSplitsInfo,\toverwrite_existing: bool = False) -> None:", "funcdef": "def"}, "ml.search.persistence.prepare_metadata": {"fullname": "ml.search.persistence.prepare_metadata", "modulename": "ml.search.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata payload construction for search experiment persistence.

    \n"}, "ml.search.persistence.prepare_metadata.logger": {"fullname": "ml.search.persistence.prepare_metadata.logger", "modulename": "ml.search.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.persistence.prepare_metadata (WARNING)>"}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.search.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.search.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build metadata record for a completed search experiment.

    \n\n

    Args:\n model_cfg: Validated search model configuration.\n search_results: Search results payload to persist.\n owner: Owner identifier for the search run.\n experiment_id: Experiment identifier.\n timestamp: Run creation timestamp.\n feature_lineage: Feature lineage records used by the run.\n pipeline_hash: Pipeline configuration hash.\n scoring_method: Metric/scoring method used during search.\n splits_info: Dataset split information for reproducibility metadata.

    \n\n

    Returns:\n Search metadata record ready for persistence.

    \n\n

    Notes:\n Datetime lineage fields are normalized to ISO strings before payload\n assembly to keep metadata JSON-serializable.

    \n\n

    Side Effects:\n Reads git commit metadata from the active repository context.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsearch_results: dict,\towner: str,\texperiment_id: str,\ttimestamp: str,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tpipeline_hash: str,\tscoring_method: str,\tsplits_info: ml.types.splits.AllSplitsInfo) -> dict:", "funcdef": "def"}, "ml.search.searchers": {"fullname": "ml.search.searchers", "modulename": "ml.search.searchers", "kind": "module", "doc": "

    A package for searchers.

    \n"}, "ml.search.searchers.base": {"fullname": "ml.search.searchers.base", "modulename": "ml.search.searchers.base", "kind": "module", "doc": "

    Protocol definition for hyperparameter searcher implementations.

    \n"}, "ml.search.searchers.base.Searcher": {"fullname": "ml.search.searchers.base.Searcher", "modulename": "ml.search.searchers.base", "qualname": "Searcher", "kind": "class", "doc": "

    Structural interface implemented by concrete search backends.

    \n", "bases": "typing.Protocol"}, "ml.search.searchers.base.Searcher.search": {"fullname": "ml.search.searchers.base.Searcher.search", "modulename": "ml.search.searchers.base", "qualname": "Searcher.search", "kind": "function", "doc": "

    Run hyperparameter search and return standardized search artifacts.

    \n\n

    Args:\n model_cfg: Validated search model configuration.\n strict: Whether loading and validation should fail strictly.\n failure_management_dir: Directory for failure-management artifacts.

    \n\n

    Returns:\n Standardized search output.

    \n", "signature": "(\tself,\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsnapshot_binding_key: str | None = None,\tstrict: bool,\tfailure_management_dir: pathlib.Path) -> ml.search.searchers.output.SearchOutput:", "funcdef": "def"}, "ml.search.searchers.catboost": {"fullname": "ml.search.searchers.catboost", "modulename": "ml.search.searchers.catboost", "kind": "module", "doc": "

    A package for searching CatBoost hyperparameters.

    \n"}, "ml.search.searchers.catboost.catboost": {"fullname": "ml.search.searchers.catboost.catboost", "modulename": "ml.search.searchers.catboost.catboost", "kind": "module", "doc": "

    CatBoost searcher implementation using multi-step pipeline orchestration.

    \n"}, "ml.search.searchers.catboost.catboost.logger": {"fullname": "ml.search.searchers.catboost.catboost.logger", "modulename": "ml.search.searchers.catboost.catboost", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.catboost (WARNING)>"}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"fullname": "ml.search.searchers.catboost.catboost.CatBoostSearcher", "modulename": "ml.search.searchers.catboost.catboost", "qualname": "CatBoostSearcher", "kind": "class", "doc": "

    Run preparation, broad search, and optional narrow search phases.

    \n", "bases": "ml.search.searchers.base.Searcher"}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"fullname": "ml.search.searchers.catboost.catboost.CatBoostSearcher.search", "modulename": "ml.search.searchers.catboost.catboost", "qualname": "CatBoostSearcher.search", "kind": "function", "doc": "

    Execute CatBoost hyperparameter search and return structured output.

    \n\n

    Args:\n model_cfg: Validated search configuration.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\n strict: Whether loading and validation stages should fail strictly.\n failure_management_dir: Directory for persisting failure-management artifacts.

    \n\n

    Returns:\n Search output containing search results, lineage, and run metadata.

    \n", "signature": "(\tself,\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsnapshot_binding_key: str | None = None,\tstrict: bool,\tfailure_management_dir: pathlib.Path) -> ml.search.searchers.output.SearchOutput:", "funcdef": "def"}, "ml.search.searchers.catboost.model": {"fullname": "ml.search.searchers.catboost.model", "modulename": "ml.search.searchers.catboost.model", "kind": "module", "doc": "

    CatBoost estimator preparation utilities for search phases.

    \n"}, "ml.search.searchers.catboost.model.logger": {"fullname": "ml.search.searchers.catboost.model.logger", "modulename": "ml.search.searchers.catboost.model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.model (WARNING)>"}, "ml.search.searchers.catboost.model.prepare_model": {"fullname": "ml.search.searchers.catboost.model.prepare_model", "modulename": "ml.search.searchers.catboost.model", "qualname": "prepare_model", "kind": "function", "doc": "

    Build CatBoost model configured for broad or narrow search phase.

    \n\n

    Args:\n model_cfg: Validated search model configuration.\n search_phase: Search phase whose settings should be applied.\n cat_features: Categorical feature indices or names for CatBoost.\n class_weights: Optional class-weight mapping for classification tasks.

    \n\n

    Returns:\n Configured CatBoost classifier or regressor instance.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsearch_phase: Literal['broad', 'narrow'],\tcat_features: list,\tclass_weights: dict | None) -> catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline": {"fullname": "ml.search.searchers.catboost.pipeline", "modulename": "ml.search.searchers.catboost.pipeline", "kind": "module", "doc": "

    A package for pipeline logic for searching CatBoost hyperparameters.

    \n"}, "ml.search.searchers.catboost.pipeline.context": {"fullname": "ml.search.searchers.catboost.pipeline.context", "modulename": "ml.search.searchers.catboost.pipeline.context", "kind": "module", "doc": "

    Execution context model shared across CatBoost search pipeline steps.

    \n"}, "ml.search.searchers.catboost.pipeline.context.logger": {"fullname": "ml.search.searchers.catboost.pipeline.context.logger", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.pipeline.context (WARNING)>"}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext", "kind": "class", "doc": "

    Mutable state container for CatBoost search pipeline orchestration.

    \n"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\tstrict: bool,\tfailure_management_dir: pathlib.Path,\tsnapshot_binding_key: str | None = None,\tX_train: pandas.core.frame.DataFrame | None = None,\ty_train: pandas.core.series.Series | None = None,\tsplits_info: ml.types.splits.AllSplitsInfo | None = None,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage] | None = None,\tinput_schema: pandas.core.frame.DataFrame | None = None,\tderived_schema: pandas.core.frame.DataFrame | None = None,\tpipeline_cfg: ml.pipelines.models.PipelineConfig | None = None,\tpipeline_hash: str | None = None,\tcat_features: list[str] | None = None,\tscoring: Optional[Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']] = None,\tclass_weights: dict | None = None,\tbest_params_1: dict | None = None,\tbroad_result: dict | None = None,\tnarrow_disabled: bool | None = None,\tbest_params: dict | None = None,\tnarrow_result: dict | None = None)"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.model_cfg", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_cfg.SearchModelConfig"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.strict", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.strict", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.failure_management_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.snapshot_binding_key", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.X_train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.y_train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.splits_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.AllSplitsInfo | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage] | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.input_schema", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.derived_schema", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.pipeline_cfg", "kind": "variable", "doc": "

    \n", "annotation": ": ml.pipelines.models.PipelineConfig | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.pipeline_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.cat_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str] | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.scoring", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']]", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.class_weights", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.best_params_1", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.broad_result", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.narrow_disabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.best_params", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.narrow_result", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_x_train", "kind": "variable", "doc": "

    Return prepared training features or raise if unavailable.

    \n\n

    Returns:\n pd.DataFrame: Prepared training features.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_y_train", "kind": "variable", "doc": "

    Return prepared training target or raise if unavailable.

    \n\n

    Returns:\n pd.Series: Prepared training target.

    \n", "annotation": ": pandas.core.series.Series"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_splits_info", "kind": "variable", "doc": "

    Return split summary metadata or raise if not prepared.

    \n\n

    Returns:\n AllSplitsInfo: Summary information for data splits.

    \n", "annotation": ": ml.types.splits.AllSplitsInfo"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_feature_lineage", "kind": "variable", "doc": "

    Return feature lineage or raise if not prepared.

    \n\n

    Returns:\n list[FeatureLineage]: Loaded feature lineage metadata.

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_input_schema", "kind": "variable", "doc": "

    Return input schema dataframe or raise if not loaded.

    \n\n

    Returns:\n pd.DataFrame: Input feature schema.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_derived_schema", "kind": "variable", "doc": "

    Return derived schema dataframe or raise if not loaded.

    \n\n

    Returns:\n pd.DataFrame: Derived feature schema.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_pipeline_cfg", "kind": "variable", "doc": "

    Return loaded pipeline config or raise if missing.

    \n\n

    Returns:\n PipelineConfig: Loaded pipeline configuration.

    \n", "annotation": ": ml.pipelines.models.PipelineConfig"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_pipeline_hash", "kind": "variable", "doc": "

    Return computed pipeline hash or raise if not set.

    \n\n

    Returns:\n str: Pipeline configuration hash.

    \n", "annotation": ": str"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_cat_features", "kind": "variable", "doc": "

    Return categorical feature list or raise if not prepared.

    \n\n

    Returns:\n list[str]: Categorical feature names.

    \n", "annotation": ": list[str]"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_scoring", "kind": "variable", "doc": "

    Return resolved scoring function or raise if unset.

    \n\n

    Returns:\n SUPPORTED_SCORING_FUNCTIONS: Selected scoring metric.

    \n", "annotation": ": Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_best_params_1", "kind": "variable", "doc": "

    Return broad-phase best params or raise if broad step not run.

    \n\n

    Returns:\n dict: Best parameters from broad search.

    \n", "annotation": ": dict"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_broad_result", "kind": "variable", "doc": "

    Return broad-phase search result payload or raise if missing.

    \n\n

    Returns:\n dict: Broad search result payload.

    \n", "annotation": ": dict"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_narrow_disabled", "kind": "variable", "doc": "

    Return narrow-enabled flag or raise if not decided yet.

    \n\n

    Returns:\n bool: Whether narrow search is disabled.

    \n", "annotation": ": bool"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_best_params", "kind": "variable", "doc": "

    Return narrow-phase best params or raise if missing.

    \n\n

    Returns:\n dict: Best parameters from narrow search.

    \n", "annotation": ": dict"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_narrow_result", "kind": "variable", "doc": "

    Return narrow-phase result payload or raise if missing.

    \n\n

    Returns:\n dict: Narrow search result payload.

    \n", "annotation": ": dict"}, "ml.search.searchers.catboost.pipeline.steps": {"fullname": "ml.search.searchers.catboost.pipeline.steps", "modulename": "ml.search.searchers.catboost.pipeline.steps", "kind": "module", "doc": "

    A package with steps forming the catboost search pipeline.

    \n"}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "kind": "module", "doc": "

    Broad hyperparameter search pipeline step for CatBoost searcher.

    \n"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.logger", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.pipeline.steps.broad_search (WARNING)>"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep", "kind": "class", "doc": "

    Execute broad randomized search and persist resumable broad state.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.search.searchers.catboost.pipeline.context.SearchContext]"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'broad_search'"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep.run", "kind": "function", "doc": "

    Run broad search phase or restore existing broad phase outputs.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n SearchContext: Updated context with broad-search outputs.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> ml.search.searchers.catboost.pipeline.context.SearchContext:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "kind": "module", "doc": "

    Narrow hyperparameter search pipeline step for CatBoost searcher.

    \n"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.pipeline.steps.narrow_search (WARNING)>"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep", "kind": "class", "doc": "

    Execute narrow randomized search around broad-phase best parameters.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.search.searchers.catboost.pipeline.context.SearchContext]"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'narrow_search'"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep.run", "kind": "function", "doc": "

    Run narrow phase, validate params, and persist resumable state.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n SearchContext: Updated context with narrow-search outputs.

    \n\n

    Raises:\n UserError: If resumable narrow-search state is malformed.\n ConfigError: If narrow-search configuration is missing/invalid.\n SearchError: If underlying narrow randomized search execution fails.

    \n\n

    Notes:\n The step supports resume mode via narrow_info.json and may skip\n compute when previously persisted outputs are available.

    \n\n

    Side Effects:\n May write failure-management narrow-search state to disk and emits\n step-level progress logs.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> ml.search.searchers.catboost.pipeline.context.SearchContext:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "kind": "module", "doc": "

    Preparation pipeline step for CatBoost search orchestration.

    \n"}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.logger", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.pipeline.steps.preparation (WARNING)>"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep", "kind": "class", "doc": "

    Load data/schemas, resolve scoring, and prepare search context state.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.search.searchers.catboost.pipeline.context.SearchContext]"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'preparation'"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.stats", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.class_weighting.models.DataStats"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.run", "kind": "function", "doc": "

    Prepare training inputs/config artifacts required by search phases.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n SearchContext: Updated context with prepared data/config artifacts.

    \n\n

    Raises:\n DataError: Propagated from feature/target loading and validation.\n PipelineContractError: Propagated when model/pipeline contract checks\n fail.

    \n\n

    Notes:\n This step centralizes all shared preparation work so broad and narrow\n phases consume the same validated inputs and derived artifacts.

    \n\n

    Side Effects:\n Reads data/config files from disk and mutates multiple context fields\n required by downstream search steps.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> ml.search.searchers.catboost.pipeline.context.SearchContext:", "funcdef": "def"}, "ml.search.searchers.catboost.search_results_creator": {"fullname": "ml.search.searchers.catboost.search_results_creator", "modulename": "ml.search.searchers.catboost.search_results_creator", "kind": "module", "doc": "

    Helpers for assembling normalized search-results payloads.

    \n"}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"fullname": "ml.search.searchers.catboost.search_results_creator.create_search_results", "modulename": "ml.search.searchers.catboost.search_results_creator", "qualname": "create_search_results", "kind": "function", "doc": "

    Build final search results from context state across completed phases.

    \n\n

    Args:\n ctx: Search pipeline context with broad/narrow phase outputs.

    \n\n

    Returns:\n Normalized search-results payload ready for persistence.

    \n", "signature": "(\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.search.searchers.output": {"fullname": "ml.search.searchers.output", "modulename": "ml.search.searchers.output", "kind": "module", "doc": "

    Typed output model returned by searcher implementations.

    \n"}, "ml.search.searchers.output.SearchOutput": {"fullname": "ml.search.searchers.output.SearchOutput", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput", "kind": "class", "doc": "

    Search results plus lineage, scoring method, and split metadata.

    \n"}, "ml.search.searchers.output.SearchOutput.__init__": {"fullname": "ml.search.searchers.output.SearchOutput.__init__", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tsearch_results: dict[str, typing.Any],\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tpipeline_hash: str,\tscoring_method: str,\tsplits_info: ml.types.splits.AllSplitsInfo)"}, "ml.search.searchers.output.SearchOutput.search_results": {"fullname": "ml.search.searchers.output.SearchOutput.search_results", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.search_results", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, typing.Any]"}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"fullname": "ml.search.searchers.output.SearchOutput.feature_lineage", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"fullname": "ml.search.searchers.output.SearchOutput.pipeline_hash", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.pipeline_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.search.searchers.output.SearchOutput.scoring_method": {"fullname": "ml.search.searchers.output.SearchOutput.scoring_method", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.scoring_method", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.search.searchers.output.SearchOutput.splits_info": {"fullname": "ml.search.searchers.output.SearchOutput.splits_info", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.splits_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.AllSplitsInfo"}, "ml.search.utils": {"fullname": "ml.search.utils", "modulename": "ml.search.utils", "kind": "module", "doc": "

    A package with utilities for hyperparameter searching.

    \n"}, "ml.search.utils.failure_management": {"fullname": "ml.search.utils.failure_management", "modulename": "ml.search.utils.failure_management", "kind": "module", "doc": "

    A package for managing failed search runs.

    \n"}, "ml.search.utils.failure_management.delete_failure_management_folder": {"fullname": "ml.search.utils.failure_management.delete_failure_management_folder", "modulename": "ml.search.utils.failure_management.delete_failure_management_folder", "kind": "module", "doc": "

    Cleanup helpers for search/training failure-management directories.

    \n"}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"fullname": "ml.search.utils.failure_management.delete_failure_management_folder.logger", "modulename": "ml.search.utils.failure_management.delete_failure_management_folder", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.failure_management.delete_failure_management_folder (WARNING)>"}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"fullname": "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE", "modulename": "ml.search.utils.failure_management.delete_failure_management_folder", "qualname": "DIRS_OK_TO_DELETE", "kind": "variable", "doc": "

    \n", "default_value": "['learn', 'test', 'tmp']"}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"fullname": "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder", "modulename": "ml.search.utils.failure_management.delete_failure_management_folder", "qualname": "delete_failure_management_folder", "kind": "function", "doc": "

    Safely remove failure-management directories when cleanup is enabled.

    \n", "signature": "(\t*,\tfolder_path: pathlib.Path,\tcleanup: bool,\tstage: Literal['search', 'train']) -> None:", "funcdef": "def"}, "ml.search.utils.failure_management.save_broad": {"fullname": "ml.search.utils.failure_management.save_broad", "modulename": "ml.search.utils.failure_management.save_broad", "kind": "module", "doc": "

    Persistence helper for saving broad-search resumable state.

    \n"}, "ml.search.utils.failure_management.save_broad.logger": {"fullname": "ml.search.utils.failure_management.save_broad.logger", "modulename": "ml.search.utils.failure_management.save_broad", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.failure_management.save_broad (WARNING)>"}, "ml.search.utils.failure_management.save_broad.save_broad": {"fullname": "ml.search.utils.failure_management.save_broad.save_broad", "modulename": "ml.search.utils.failure_management.save_broad", "qualname": "save_broad", "kind": "function", "doc": "

    Persist broad search result and best params to JSON marker file.

    \n", "signature": "(\t*,\tbroad_result: dict,\tbest_params_1: dict,\ttgt_file: pathlib.Path) -> None:", "funcdef": "def"}, "ml.search.utils.failure_management.save_narrow": {"fullname": "ml.search.utils.failure_management.save_narrow", "modulename": "ml.search.utils.failure_management.save_narrow", "kind": "module", "doc": "

    Persistence helper for saving narrow-search resumable state.

    \n"}, "ml.search.utils.failure_management.save_narrow.logger": {"fullname": "ml.search.utils.failure_management.save_narrow.logger", "modulename": "ml.search.utils.failure_management.save_narrow", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.failure_management.save_narrow (WARNING)>"}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"fullname": "ml.search.utils.failure_management.save_narrow.save_narrow", "modulename": "ml.search.utils.failure_management.save_narrow", "qualname": "save_narrow", "kind": "function", "doc": "

    Persist narrow search result and best params to JSON marker file.

    \n", "signature": "(\t*,\tnarrow_result: dict,\tbest_params: dict,\ttgt_file: pathlib.Path) -> None:", "funcdef": "def"}, "ml.search.utils.get_searcher": {"fullname": "ml.search.utils.get_searcher", "modulename": "ml.search.utils.get_searcher", "kind": "module", "doc": "

    Factory helper for resolving registered searcher implementations.

    \n"}, "ml.search.utils.get_searcher.logger": {"fullname": "ml.search.utils.get_searcher.logger", "modulename": "ml.search.utils.get_searcher", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.get_searcher (WARNING)>"}, "ml.search.utils.get_searcher.get_searcher": {"fullname": "ml.search.utils.get_searcher.get_searcher", "modulename": "ml.search.utils.get_searcher", "qualname": "get_searcher", "kind": "function", "doc": "

    Instantiate the searcher registered for the provided algorithm key.

    \n\n

    Args:\n key: Searcher registry key identifying the algorithm implementation.

    \n\n

    Returns:\n Instantiated searcher implementation.

    \n", "signature": "(key: str) -> ml.search.searchers.base.Searcher:", "funcdef": "def"}, "ml.search.utils.model_params_extraction": {"fullname": "ml.search.utils.model_params_extraction", "modulename": "ml.search.utils.model_params_extraction", "kind": "module", "doc": "

    Helpers for extracting model-specific parameters from pipeline search output.

    \n"}, "ml.search.utils.model_params_extraction.extract_model_params": {"fullname": "ml.search.utils.model_params_extraction.extract_model_params", "modulename": "ml.search.utils.model_params_extraction", "qualname": "extract_model_params", "kind": "function", "doc": "

    Extract estimator-level parameters from pipeline-prefixed best params.

    \n\n

    Args:\n best_params: Mapping of best parameters from a pipeline search.

    \n\n

    Returns:\n Parameter mapping containing only Model__ entries without prefix.

    \n", "signature": "(best_params):", "funcdef": "def"}, "ml.search.utils.randomized_search": {"fullname": "ml.search.utils.randomized_search", "modulename": "ml.search.utils.randomized_search", "kind": "module", "doc": "

    Utilities for running randomized hyperparameter searches.

    \n"}, "ml.search.utils.randomized_search.logger": {"fullname": "ml.search.utils.randomized_search.logger", "modulename": "ml.search.utils.randomized_search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.randomized_search (WARNING)>"}, "ml.search.utils.randomized_search.perform_randomized_search": {"fullname": "ml.search.utils.randomized_search.perform_randomized_search", "modulename": "ml.search.utils.randomized_search", "qualname": "perform_randomized_search", "kind": "function", "doc": "

    Run randomized search and return serializable best-result metadata.

    \n\n

    Args:\n pipeline: Estimator pipeline used for randomized search.\n X_train: Training feature matrix.\n y_train: Training target vector.\n param_distributions: Hyperparameter distributions for randomized sampling.\n model_cfg: Validated search model configuration.\n search_phase: Search phase identifier (broad or narrow).\n scoring: Supported scoring method used by the search.

    \n\n

    Returns:\n Serializable dictionary containing best parameters, scores, and CV summary.

    \n\n

    Raises:\n ValueError: Propagated when search inputs are invalid (for example,\n incompatible parameter distributions or CV configuration).

    \n\n

    Notes:\n For GPU execution, n_jobs is forced to 1 to avoid parallel worker\n contention with GPU-bound estimators.

    \n\n

    Side Effects:\n Fits pipeline via RandomizedSearchCV.fit and emits detailed run\n configuration logs.

    \n\n

    Examples:

    \n\n
    \n
    \n
    \n

    results = perform_randomized_search(\n ... pipeline,\n ... X_train=X_train,\n ... y_train=y_train,\n ... param_distributions=param_distributions,\n ... model_cfg=model_cfg,\n ... search_phase=\"broad\",\n ... scoring=\"roc_auc\",\n ... )

    \n
    \n
    \n
    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\t*,\tX_train: pandas.core.frame.DataFrame,\ty_train: pandas.core.series.Series,\tparam_distributions: dict[str, typing.Any],\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\tsearch_phase: Literal['broad', 'narrow'],\tscoring: Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.snapshot_bindings": {"fullname": "ml.snapshot_bindings", "modulename": "ml.snapshot_bindings", "kind": "module", "doc": "

    A package for snapshot bindings logic.

    \n"}, "ml.snapshot_bindings.config": {"fullname": "ml.snapshot_bindings.config", "modulename": "ml.snapshot_bindings.config", "kind": "module", "doc": "

    A package for snapshot bindings pydantic models and dataclasses.

    \n"}, "ml.snapshot_bindings.config.models": {"fullname": "ml.snapshot_bindings.config.models", "modulename": "ml.snapshot_bindings.config.models", "kind": "module", "doc": "

    A module defining the data models for snapshot bindings configuration.

    \n"}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"fullname": "ml.snapshot_bindings.config.models.DatasetSnapshotBinding", "modulename": "ml.snapshot_bindings.config.models", "qualname": "DatasetSnapshotBinding", "kind": "class", "doc": "

    Defines the snapshot binding for a specific dataset version.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"fullname": "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot", "modulename": "ml.snapshot_bindings.config.models", "qualname": "DatasetSnapshotBinding.snapshot", "kind": "variable", "doc": "

    The identifier of the snapshot to use for this dataset version.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"fullname": "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding", "modulename": "ml.snapshot_bindings.config.models", "qualname": "FeatureSetSnapshotBinding", "kind": "class", "doc": "

    Defines the snapshot binding for a specific feature set version.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"fullname": "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot", "modulename": "ml.snapshot_bindings.config.models", "qualname": "FeatureSetSnapshotBinding.snapshot", "kind": "variable", "doc": "

    The identifier of the snapshot to use for this feature set version.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBinding", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBinding", "kind": "class", "doc": "

    Defines the overall snapshot binding configuration, including dataset and feature set bindings, with versions.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBinding.datasets", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBinding.datasets", "kind": "variable", "doc": "

    Mapping of dataset names to versions, which then map to their respective snapshot bindings.\nExample: datasets[dataset_name][dataset_version].snapshot

    \n", "annotation": ": dict[str, dict[str, ml.snapshot_bindings.config.models.DatasetSnapshotBinding]]", "default_value": "PydanticUndefined"}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBinding.feature_sets", "kind": "variable", "doc": "

    Mapping of feature set names to versions, which then map to their respective snapshot bindings.\nExample: feature_sets[feature_set_name][feature_set_version].snapshot

    \n", "annotation": ": dict[str, dict[str, ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding]]", "default_value": "PydanticUndefined"}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBindingsRegistry", "kind": "class", "doc": "

    Defines the registry of snapshot bindings, mapping binding keys to their configurations.

    \n", "bases": "pydantic.main.BaseModel, typing.Generic[~RootModelRootType]"}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBindingsRegistry.get", "kind": "function", "doc": "

    \n", "signature": "(self, key: str, default=None):", "funcdef": "def"}, "ml.snapshot_bindings.extraction": {"fullname": "ml.snapshot_bindings.extraction", "modulename": "ml.snapshot_bindings.extraction", "kind": "module", "doc": "

    A package for extracting snapshot binding information.

    \n"}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"fullname": "ml.snapshot_bindings.extraction.get_snapshot_binding", "modulename": "ml.snapshot_bindings.extraction.get_snapshot_binding", "kind": "module", "doc": "

    A module to retrieve snapshot bindings from a registry based on a provided key.

    \n"}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"fullname": "ml.snapshot_bindings.extraction.get_snapshot_binding.logger", "modulename": "ml.snapshot_bindings.extraction.get_snapshot_binding", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.snapshot_bindings.extraction.get_snapshot_binding (WARNING)>"}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"fullname": "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding", "modulename": "ml.snapshot_bindings.extraction.get_snapshot_binding", "qualname": "get_and_validate_snapshot_binding", "kind": "function", "doc": "

    Retrieve and validate snapshot binding from registry based on the provided key.

    \n\n

    Args:\n snapshot_binding_key: Key to identify which snapshot binding to retrieve, typically defined in training metadata.

    \n", "signature": "(\tsnapshot_binding_key: str,\texpect_dataset_bindings: bool = False,\texpect_feature_set_bindings: bool = False) -> ml.snapshot_bindings.config.models.SnapshotBinding:", "funcdef": "def"}, "ml.snapshot_bindings.validation": {"fullname": "ml.snapshot_bindings.validation", "modulename": "ml.snapshot_bindings.validation", "kind": "module", "doc": "

    A package for snapshot bindings validation logic.

    \n"}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"fullname": "ml.snapshot_bindings.validation.validate_snapshot_binding", "modulename": "ml.snapshot_bindings.validation.validate_snapshot_binding", "kind": "module", "doc": "

    A module for validating snapshot binding configurations.

    \n"}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"fullname": "ml.snapshot_bindings.validation.validate_snapshot_binding.logger", "modulename": "ml.snapshot_bindings.validation.validate_snapshot_binding", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.snapshot_bindings.validation.validate_snapshot_binding (WARNING)>"}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"fullname": "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding", "modulename": "ml.snapshot_bindings.validation.validate_snapshot_binding", "qualname": "validate_snapshot_binding", "kind": "function", "doc": "

    Validate the snapshot binding configuration against the defined data model.

    \n\n

    Args:\n snapshot_binding_config: The snapshot binding configuration to validate, typically loaded from a YAML file.\n expect_dataset_bindings: Whether to expect dataset bindings in the configuration.\n expect_feature_set_bindings: Whether to expect feature set bindings in the configuration.

    \n\n

    Returns:\n SnapshotBinding: The validated snapshot binding configuration as a Pydantic model instance.

    \n", "signature": "(\tsnapshot_binding_config: ml.snapshot_bindings.config.models.SnapshotBinding | None,\texpect_dataset_bindings: bool = False,\texpect_feature_set_bindings: bool = False) -> ml.snapshot_bindings.config.models.SnapshotBinding:", "funcdef": "def"}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"fullname": "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry", "modulename": "ml.snapshot_bindings.validation.validate_snapshot_binding", "qualname": "validate_snapshot_binding_registry", "kind": "function", "doc": "

    Validate the snapshot bindings registry configuration against the defined data model.

    \n\n

    Args:\n snapshot_bindings_registry_config: The snapshot bindings registry configuration to validate, typically loaded from a YAML file.

    \n\n

    Returns:\n SnapshotBindingsRegistry: The validated snapshot bindings registry configuration as a Pydantic model instance.

    \n", "signature": "(\tsnapshot_bindings_registry_config: dict) -> ml.snapshot_bindings.config.models.SnapshotBindingsRegistry:", "funcdef": "def"}, "ml.targets": {"fullname": "ml.targets", "modulename": "ml.targets", "kind": "module", "doc": "

    A package defining how targets are created at runtime.

    \n"}, "ml.targets.adr": {"fullname": "ml.targets.adr", "modulename": "ml.targets.adr", "kind": "module", "doc": "

    A package defining how adr target is created at runtime.

    \n"}, "ml.targets.adr.v1": {"fullname": "ml.targets.adr.v1", "modulename": "ml.targets.adr.v1", "kind": "module", "doc": "

    Version 1 ADR target strategy.

    \n"}, "ml.targets.adr.v1.AdrTargetV1": {"fullname": "ml.targets.adr.v1.AdrTargetV1", "modulename": "ml.targets.adr.v1", "qualname": "AdrTargetV1", "kind": "class", "doc": "

    Build the ADR regression target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.base": {"fullname": "ml.targets.base", "modulename": "ml.targets.base", "kind": "module", "doc": "

    Base abstractions for target construction strategies.

    \n"}, "ml.targets.base.logger": {"fullname": "ml.targets.base.logger", "modulename": "ml.targets.base", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.targets.base (WARNING)>"}, "ml.targets.base.TargetStrategy": {"fullname": "ml.targets.base.TargetStrategy", "modulename": "ml.targets.base", "qualname": "TargetStrategy", "kind": "class", "doc": "

    Abstract strategy for building model targets from prepared data.

    \n", "bases": "abc.ABC"}, "ml.targets.base.TargetStrategy.__init__": {"fullname": "ml.targets.base.TargetStrategy.__init__", "modulename": "ml.targets.base", "qualname": "TargetStrategy.__init__", "kind": "function", "doc": "

    Initialize the target strategy with a specified entity key column name.

    \n\n

    Args:\n entity_key: The name of the entity key column to use for traceability.

    \n", "signature": "(entity_key: str)"}, "ml.targets.base.TargetStrategy.entity_key": {"fullname": "ml.targets.base.TargetStrategy.entity_key", "modulename": "ml.targets.base", "qualname": "TargetStrategy.entity_key", "kind": "variable", "doc": "

    \n"}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"fullname": "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS", "modulename": "ml.targets.base", "qualname": "TargetStrategy.REQUIRED_COLUMNS", "kind": "variable", "doc": "

    \n"}, "ml.targets.base.TargetStrategy.build": {"fullname": "ml.targets.base.TargetStrategy.build", "modulename": "ml.targets.base", "qualname": "TargetStrategy.build", "kind": "function", "doc": "

    Validate input frame and delegate target construction to implementation.

    \n\n

    Args:\n data: Source dataframe containing target columns.\n entity_key: The name of the entity key column to extract.

    \n\n

    Returns:\n pd.DataFrame: Built target dataframe with entity_key.

    \n", "signature": "(self, data: pandas.core.frame.DataFrame) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.targets.cancellation": {"fullname": "ml.targets.cancellation", "modulename": "ml.targets.cancellation", "kind": "module", "doc": "

    A package defining how cancellation target is created at runtime.

    \n"}, "ml.targets.cancellation.v1": {"fullname": "ml.targets.cancellation.v1", "modulename": "ml.targets.cancellation.v1", "kind": "module", "doc": "

    Version 1 cancellation target strategy.

    \n"}, "ml.targets.cancellation.v1.CancellationTargetV1": {"fullname": "ml.targets.cancellation.v1.CancellationTargetV1", "modulename": "ml.targets.cancellation.v1", "qualname": "CancellationTargetV1", "kind": "class", "doc": "

    Build the cancellation classification target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.lead_time": {"fullname": "ml.targets.lead_time", "modulename": "ml.targets.lead_time", "kind": "module", "doc": "

    A package defining how lead_time target is created at runtime.

    \n"}, "ml.targets.lead_time.v1": {"fullname": "ml.targets.lead_time.v1", "modulename": "ml.targets.lead_time.v1", "kind": "module", "doc": "

    Version 1 lead-time target strategy.

    \n"}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"fullname": "ml.targets.lead_time.v1.LeadTimeTargetV1", "modulename": "ml.targets.lead_time.v1", "qualname": "LeadTimeTargetV1", "kind": "class", "doc": "

    Build the lead-time regression target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.no_show": {"fullname": "ml.targets.no_show", "modulename": "ml.targets.no_show", "kind": "module", "doc": "

    A package defining how no_show target is created at runtime.

    \n"}, "ml.targets.no_show.v1": {"fullname": "ml.targets.no_show.v1", "modulename": "ml.targets.no_show.v1", "kind": "module", "doc": "

    Version 1 no-show target strategy.

    \n"}, "ml.targets.no_show.v1.NoShowTargetV1": {"fullname": "ml.targets.no_show.v1.NoShowTargetV1", "modulename": "ml.targets.no_show.v1", "qualname": "NoShowTargetV1", "kind": "class", "doc": "

    Build a binary no-show target derived from reservation status.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.repeated_guest": {"fullname": "ml.targets.repeated_guest", "modulename": "ml.targets.repeated_guest", "kind": "module", "doc": "

    A package defining how repeated_guest target is created at runtime.

    \n"}, "ml.targets.repeated_guest.v1": {"fullname": "ml.targets.repeated_guest.v1", "modulename": "ml.targets.repeated_guest.v1", "kind": "module", "doc": "

    Version 1 repeated-guest target strategy.

    \n"}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"fullname": "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1", "modulename": "ml.targets.repeated_guest.v1", "qualname": "RepeatedGuestTargetV1", "kind": "class", "doc": "

    Build the repeated-guest classification target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.room_upgrade": {"fullname": "ml.targets.room_upgrade", "modulename": "ml.targets.room_upgrade", "kind": "module", "doc": "

    A package defining how room_upgrade target is created at runtime.

    \n"}, "ml.targets.room_upgrade.v1": {"fullname": "ml.targets.room_upgrade.v1", "modulename": "ml.targets.room_upgrade.v1", "kind": "module", "doc": "

    Version 1 room-upgrade target strategy.

    \n"}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"fullname": "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1", "modulename": "ml.targets.room_upgrade.v1", "qualname": "RoomUpgradeTargetV1", "kind": "class", "doc": "

    Build a binary room-upgrade target by comparing reserved and assigned rooms.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.special_requests": {"fullname": "ml.targets.special_requests", "modulename": "ml.targets.special_requests", "kind": "module", "doc": "

    A package defining how special_requests target is created at runtime.

    \n"}, "ml.targets.special_requests.v1": {"fullname": "ml.targets.special_requests.v1", "modulename": "ml.targets.special_requests.v1", "kind": "module", "doc": "

    Version 1 special-requests target strategy.

    \n"}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"fullname": "ml.targets.special_requests.v1.SpecialRequestsTargetV1", "modulename": "ml.targets.special_requests.v1", "qualname": "SpecialRequestsTargetV1", "kind": "class", "doc": "

    Build the special-requests count target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.types": {"fullname": "ml.types", "modulename": "ml.types", "kind": "module", "doc": "

    Package for type definitions used across the project.

    \n"}, "ml.types.DataLineageEntry": {"fullname": "ml.types.DataLineageEntry", "modulename": "ml.types", "qualname": "DataLineageEntry", "kind": "class", "doc": "

    Normalized lineage record for a dataset included in a merged artifact.

    \n"}, "ml.types.DataLineageEntry.__init__": {"fullname": "ml.types.DataLineageEntry.__init__", "modulename": "ml.types", "qualname": "DataLineageEntry.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tref: str,\tname: str,\tversion: str,\tformat: str,\tpath_suffix: str,\tmerge_key: tuple[str, ...] | str,\tmerge_how: Literal['left', 'right', 'inner', 'outer', 'cross'],\tmerge_validate: Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m'],\tsnapshot_id: str,\tpath: str,\tloader_validation_hash: str,\tdata_hash: str,\trow_count: int,\tcolumn_count: int)"}, "ml.types.DataLineageEntry.ref": {"fullname": "ml.types.DataLineageEntry.ref", "modulename": "ml.types", "qualname": "DataLineageEntry.ref", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.name": {"fullname": "ml.types.DataLineageEntry.name", "modulename": "ml.types", "qualname": "DataLineageEntry.name", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.version": {"fullname": "ml.types.DataLineageEntry.version", "modulename": "ml.types", "qualname": "DataLineageEntry.version", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.format": {"fullname": "ml.types.DataLineageEntry.format", "modulename": "ml.types", "qualname": "DataLineageEntry.format", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.path_suffix": {"fullname": "ml.types.DataLineageEntry.path_suffix", "modulename": "ml.types", "qualname": "DataLineageEntry.path_suffix", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.merge_key": {"fullname": "ml.types.DataLineageEntry.merge_key", "modulename": "ml.types", "qualname": "DataLineageEntry.merge_key", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[str, ...] | str"}, "ml.types.DataLineageEntry.merge_how": {"fullname": "ml.types.DataLineageEntry.merge_how", "modulename": "ml.types", "qualname": "DataLineageEntry.merge_how", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['left', 'right', 'inner', 'outer', 'cross']"}, "ml.types.DataLineageEntry.merge_validate": {"fullname": "ml.types.DataLineageEntry.merge_validate", "modulename": "ml.types", "qualname": "DataLineageEntry.merge_validate", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m']"}, "ml.types.DataLineageEntry.snapshot_id": {"fullname": "ml.types.DataLineageEntry.snapshot_id", "modulename": "ml.types", "qualname": "DataLineageEntry.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.path": {"fullname": "ml.types.DataLineageEntry.path", "modulename": "ml.types", "qualname": "DataLineageEntry.path", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.loader_validation_hash": {"fullname": "ml.types.DataLineageEntry.loader_validation_hash", "modulename": "ml.types", "qualname": "DataLineageEntry.loader_validation_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.data_hash": {"fullname": "ml.types.DataLineageEntry.data_hash", "modulename": "ml.types", "qualname": "DataLineageEntry.data_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.row_count": {"fullname": "ml.types.DataLineageEntry.row_count", "modulename": "ml.types", "qualname": "DataLineageEntry.row_count", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.types.DataLineageEntry.column_count": {"fullname": "ml.types.DataLineageEntry.column_count", "modulename": "ml.types", "qualname": "DataLineageEntry.column_count", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.types.LatestSnapshot": {"fullname": "ml.types.LatestSnapshot", "modulename": "ml.types", "qualname": "LatestSnapshot", "kind": "class", "doc": "

    Enum for representing the 'latest' option in snapshot selection.

    \n", "bases": "enum.StrEnum"}, "ml.types.LatestSnapshot.LATEST": {"fullname": "ml.types.LatestSnapshot.LATEST", "modulename": "ml.types", "qualname": "LatestSnapshot.LATEST", "kind": "variable", "doc": "

    \n", "default_value": "<LatestSnapshot.LATEST: 'latest'>"}, "ml.types.AllowedModels": {"fullname": "ml.types.AllowedModels", "modulename": "ml.types", "qualname": "AllowedModels", "kind": "variable", "doc": "

    \n", "default_value": "catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor"}, "ml.types.AllSplitsInfo": {"fullname": "ml.types.AllSplitsInfo", "modulename": "ml.types", "qualname": "AllSplitsInfo", "kind": "class", "doc": "

    Grouped split summaries for train/validation/test partitions.

    \n"}, "ml.types.AllSplitsInfo.__init__": {"fullname": "ml.types.AllSplitsInfo.__init__", "modulename": "ml.types", "qualname": "AllSplitsInfo.__init__", "kind": "function", "doc": "

    \n", "signature": "(\ttrain: ml.types.splits.SplitInfo,\tval: ml.types.splits.SplitInfo,\ttest: ml.types.splits.SplitInfo)"}, "ml.types.AllSplitsInfo.train": {"fullname": "ml.types.AllSplitsInfo.train", "modulename": "ml.types", "qualname": "AllSplitsInfo.train", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.SplitInfo"}, "ml.types.AllSplitsInfo.val": {"fullname": "ml.types.AllSplitsInfo.val", "modulename": "ml.types", "qualname": "AllSplitsInfo.val", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.SplitInfo"}, "ml.types.AllSplitsInfo.test": {"fullname": "ml.types.AllSplitsInfo.test", "modulename": "ml.types", "qualname": "AllSplitsInfo.test", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.SplitInfo"}, "ml.types.SplitInfo": {"fullname": "ml.types.SplitInfo", "modulename": "ml.types", "qualname": "SplitInfo", "kind": "class", "doc": "

    Summary information for a single dataset split.

    \n"}, "ml.types.SplitInfo.__init__": {"fullname": "ml.types.SplitInfo.__init__", "modulename": "ml.types", "qualname": "SplitInfo.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tn_rows: int,\tclass_distribution: dict | None = None,\tpositive_rate: float | None = None)"}, "ml.types.SplitInfo.n_rows": {"fullname": "ml.types.SplitInfo.n_rows", "modulename": "ml.types", "qualname": "SplitInfo.n_rows", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.types.SplitInfo.class_distribution": {"fullname": "ml.types.SplitInfo.class_distribution", "modulename": "ml.types", "qualname": "SplitInfo.class_distribution", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.types.SplitInfo.positive_rate": {"fullname": "ml.types.SplitInfo.positive_rate", "modulename": "ml.types", "qualname": "SplitInfo.positive_rate", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.types.TabularSplits": {"fullname": "ml.types.TabularSplits", "modulename": "ml.types", "qualname": "TabularSplits", "kind": "class", "doc": "

    Concrete train/validation/test feature and target split payloads.

    \n"}, "ml.types.TabularSplits.__init__": {"fullname": "ml.types.TabularSplits.__init__", "modulename": "ml.types", "qualname": "TabularSplits.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tX_train: pandas.core.frame.DataFrame,\tX_val: pandas.core.frame.DataFrame,\tX_test: pandas.core.frame.DataFrame,\ty_train: pandas.core.series.Series,\ty_val: pandas.core.series.Series,\ty_test: pandas.core.series.Series)"}, "ml.types.TabularSplits.X_train": {"fullname": "ml.types.TabularSplits.X_train", "modulename": "ml.types", "qualname": "TabularSplits.X_train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.types.TabularSplits.X_val": {"fullname": "ml.types.TabularSplits.X_val", "modulename": "ml.types", "qualname": "TabularSplits.X_val", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.types.TabularSplits.X_test": {"fullname": "ml.types.TabularSplits.X_test", "modulename": "ml.types", "qualname": "TabularSplits.X_test", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.types.TabularSplits.y_train": {"fullname": "ml.types.TabularSplits.y_train", "modulename": "ml.types", "qualname": "TabularSplits.y_train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series"}, "ml.types.TabularSplits.y_val": {"fullname": "ml.types.TabularSplits.y_val", "modulename": "ml.types", "qualname": "TabularSplits.y_val", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series"}, "ml.types.TabularSplits.y_test": {"fullname": "ml.types.TabularSplits.y_test", "modulename": "ml.types", "qualname": "TabularSplits.y_test", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series"}, "ml.utils": {"fullname": "ml.utils", "modulename": "ml.utils", "kind": "module", "doc": "

    A package with utilities used across the ml workflow.

    \n"}, "ml.utils.git": {"fullname": "ml.utils.git", "modulename": "ml.utils.git", "kind": "module", "doc": "

    Git utility helpers for reproducibility and ancestry checks.

    \n"}, "ml.utils.git.logger": {"fullname": "ml.utils.git.logger", "modulename": "ml.utils.git", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.git (WARNING)>"}, "ml.utils.git.MergeTarget": {"fullname": "ml.utils.git.MergeTarget", "modulename": "ml.utils.git", "qualname": "MergeTarget", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['training', 'model', 'ensemble']"}, "ml.utils.git.get_git_commit": {"fullname": "ml.utils.git.get_git_commit", "modulename": "ml.utils.git", "qualname": "get_git_commit", "kind": "function", "doc": "

    Return the current HEAD commit hash for the repository or unknown.

    \n\n

    Args:\n repo_dir: Directory inside the target git repository.

    \n\n

    Returns:\n str: HEAD commit hash, or \"unknown\" when unavailable.

    \n", "signature": "(repo_dir: pathlib.Path = WindowsPath('.')) -> str:", "funcdef": "def"}, "ml.utils.git.is_descendant_commit": {"fullname": "ml.utils.git.is_descendant_commit", "modulename": "ml.utils.git", "qualname": "is_descendant_commit", "kind": "function", "doc": "

    Return whether commit_a descends from commit_b in git history.

    \n\n

    Args:\n commit_a: Candidate descendant commit hash.\n commit_b: Candidate ancestor commit hash.

    \n\n

    Returns:\n bool: True when commit_b is an ancestor of commit_a.

    \n", "signature": "(commit_a: str, commit_b: str) -> bool:", "funcdef": "def"}, "ml.utils.hashing": {"fullname": "ml.utils.hashing", "modulename": "ml.utils.hashing", "kind": "module", "doc": "

    A package with hashing utilities used across the ml workflow.

    \n"}, "ml.utils.hashing.hash_dict": {"fullname": "ml.utils.hashing.hash_dict", "modulename": "ml.utils.hashing.hash_dict", "kind": "module", "doc": "

    Hashing helpers for deterministic dictionary fingerprints.

    \n"}, "ml.utils.hashing.hash_dict.canonicalize": {"fullname": "ml.utils.hashing.hash_dict.canonicalize", "modulename": "ml.utils.hashing.hash_dict", "qualname": "canonicalize", "kind": "function", "doc": "

    Recursively canonicalize nested containers into stable ordering.

    \n\n

    Args:\n obj: Arbitrary nested structure.

    \n\n

    Returns:\n Any: Canonicalized structure.

    \n", "signature": "(obj):", "funcdef": "def"}, "ml.utils.hashing.hash_dict.hash_dict": {"fullname": "ml.utils.hashing.hash_dict.hash_dict", "modulename": "ml.utils.hashing.hash_dict", "qualname": "hash_dict", "kind": "function", "doc": "

    Return a SHA-256 hash for a canonicalized dictionary payload.

    \n\n

    Args:\n d: Input dictionary payload.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(d: dict) -> str:", "funcdef": "def"}, "ml.utils.hashing.hash_list": {"fullname": "ml.utils.hashing.hash_list", "modulename": "ml.utils.hashing.hash_list", "kind": "module", "doc": "

    Hashing helpers for list payloads with optional order invariance.

    \n"}, "ml.utils.hashing.hash_list.hash_list": {"fullname": "ml.utils.hashing.hash_list.hash_list", "modulename": "ml.utils.hashing.hash_list", "qualname": "hash_list", "kind": "function", "doc": "

    Return a SHA-256 hash for a JSON-normalized list representation.

    \n\n

    Args:\n lst: List payload to hash.\n order_matters: Whether list order should affect the resulting hash.

    \n\n

    Returns:\n SHA-256 hash of the normalized list representation.

    \n", "signature": "(lst: list, order_matters: bool = True) -> str:", "funcdef": "def"}, "ml.utils.hashing.hash_streaming": {"fullname": "ml.utils.hashing.hash_streaming", "modulename": "ml.utils.hashing.hash_streaming", "kind": "module", "doc": "

    Streaming file hashing utilities for large artifact integrity checks.

    \n"}, "ml.utils.hashing.hash_streaming.logger": {"fullname": "ml.utils.hashing.hash_streaming.logger", "modulename": "ml.utils.hashing.hash_streaming", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.hashing.hash_streaming (WARNING)>"}, "ml.utils.hashing.hash_streaming.hash_streaming": {"fullname": "ml.utils.hashing.hash_streaming.hash_streaming", "modulename": "ml.utils.hashing.hash_streaming", "qualname": "hash_streaming", "kind": "function", "doc": "

    Compute SHA-256 hash incrementally by reading file chunks.

    \n\n

    Args:\n path: File path to hash.\n chunk_size: Byte size for incremental read chunks.

    \n\n

    Returns:\n SHA-256 hash for the file content.

    \n", "signature": "(path: pathlib.Path, chunk_size=1048576) -> str:", "funcdef": "def"}, "ml.utils.hashing.service": {"fullname": "ml.utils.hashing.service", "modulename": "ml.utils.hashing.service", "kind": "module", "doc": "

    Hash function registries and convenience wrappers for artifacts/data.

    \n\n

    The wrappers hash_file, hash_data, and hash_artifact are\nintentional semantic aliases over the same streaming hash implementation.\nThey keep call sites domain-explicit while preserving a single hashing\nmechanism.

    \n"}, "ml.utils.hashing.service.logger": {"fullname": "ml.utils.hashing.service.logger", "modulename": "ml.utils.hashing.service", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.hashing.service (WARNING)>"}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"fullname": "ml.utils.hashing.service.HASH_LOADER_REGISTRY", "modulename": "ml.utils.hashing.service", "qualname": "HASH_LOADER_REGISTRY", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, Callable[[pathlib.Path], str]]", "default_value": "{'parquet': <function hash_parquet_metadata>, 'arrow': <function hash_arrow_metadata>, 'csv': <function hash_streaming>, 'json': <function hash_streaming>}"}, "ml.utils.hashing.service.hash_file": {"fullname": "ml.utils.hashing.service.hash_file", "modulename": "ml.utils.hashing.service", "qualname": "hash_file", "kind": "function", "doc": "

    Compute SHA-256 hash of a file using streaming reads.

    \n\n

    Args:\n file_path: File path to hash.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(file_path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.utils.hashing.service.hash_data": {"fullname": "ml.utils.hashing.service.hash_data", "modulename": "ml.utils.hashing.service", "qualname": "hash_data", "kind": "function", "doc": "

    Compute SHA-256 hash of persisted dataset contents.

    \n\n

    Args:\n file_path: Persisted dataset file path.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(file_path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.utils.hashing.service.hash_artifact": {"fullname": "ml.utils.hashing.service.hash_artifact", "modulename": "ml.utils.hashing.service", "qualname": "hash_artifact", "kind": "function", "doc": "

    Compute SHA-256 hash of any persisted artifact file.

    \n\n

    Args:\n file_path: Artifact file path.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(file_path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.utils.hashing.service.hash_thresholds": {"fullname": "ml.utils.hashing.service.hash_thresholds", "modulename": "ml.utils.hashing.service", "qualname": "hash_thresholds", "kind": "function", "doc": "

    Compute deterministic hash for thresholds dictionary payload.

    \n\n

    Args:\n thresholds: Threshold mapping payload.

    \n\n

    Returns:\n str: Deterministic hash digest for thresholds payload.

    \n", "signature": "(thresholds: dict) -> str:", "funcdef": "def"}, "ml.utils.loaders": {"fullname": "ml.utils.loaders", "modulename": "ml.utils.loaders", "kind": "module", "doc": "

    Loading helpers for YAML/JSON configs and tabular data artifacts.

    \n"}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"fullname": "ml.utils.loaders.FORMAT_REGISTRY_READ", "modulename": "ml.utils.loaders", "qualname": "FORMAT_REGISTRY_READ", "kind": "variable", "doc": "

    \n", "default_value": "{'parquet': <function read_parquet>, 'csv': <function read_csv>, 'json': <function read_json>, 'arrow': <function <lambda>>}"}, "ml.utils.loaders.logger": {"fullname": "ml.utils.loaders.logger", "modulename": "ml.utils.loaders", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.loaders (WARNING)>"}, "ml.utils.loaders.load_yaml": {"fullname": "ml.utils.loaders.load_yaml", "modulename": "ml.utils.loaders", "qualname": "load_yaml", "kind": "function", "doc": "

    Load a YAML mapping from disk with validation and typed errors.

    \n\n

    Args:\n path: YAML file path.

    \n\n

    Returns:\n dict[str, Any]: Parsed YAML mapping.

    \n", "signature": "(path: pathlib.Path) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.utils.loaders.load_json": {"fullname": "ml.utils.loaders.load_json", "modulename": "ml.utils.loaders", "qualname": "load_json", "kind": "function", "doc": "

    Load a JSON object from disk, optionally returning empty dict when absent.

    \n\n

    Args:\n path: JSON file path.\n strict: Whether missing files should raise instead of returning {}.

    \n\n

    Returns:\n dict[str, Any]: Parsed JSON object.

    \n", "signature": "(path: pathlib.Path, strict=True) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.utils.loaders.read_data": {"fullname": "ml.utils.loaders.read_data", "modulename": "ml.utils.loaders", "qualname": "read_data", "kind": "function", "doc": "

    Read tabular data by registered format and normalize read-time failures.

    \n\n

    Args:\n format: Registered file format key.\n path: Data file path.

    \n\n

    Returns:\n pd.DataFrame: Loaded dataframe.

    \n", "signature": "(format: str, path: pathlib.Path) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.utils.pipeline_core": {"fullname": "ml.utils.pipeline_core", "modulename": "ml.utils.pipeline_core", "kind": "module", "doc": "

    A package with core code for defining pipelines where needed.

    \n"}, "ml.utils.pipeline_core.runner": {"fullname": "ml.utils.pipeline_core.runner", "modulename": "ml.utils.pipeline_core.runner", "kind": "module", "doc": "

    Execution utilities for running ordered pipeline step sequences.

    \n"}, "ml.utils.pipeline_core.runner.logger": {"fullname": "ml.utils.pipeline_core.runner.logger", "modulename": "ml.utils.pipeline_core.runner", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.pipeline_core.runner (WARNING)>"}, "ml.utils.pipeline_core.runner.PipelineRunner": {"fullname": "ml.utils.pipeline_core.runner.PipelineRunner", "modulename": "ml.utils.pipeline_core.runner", "qualname": "PipelineRunner", "kind": "class", "doc": "

    Generic runner that executes pipeline steps against a mutable context.

    \n", "bases": "typing.Generic[~C]"}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"fullname": "ml.utils.pipeline_core.runner.PipelineRunner.__init__", "modulename": "ml.utils.pipeline_core.runner", "qualname": "PipelineRunner.__init__", "kind": "function", "doc": "

    Initialize runner with an ordered collection of pipeline steps.

    \n\n

    Args:\n steps: Ordered pipeline steps.

    \n\n

    Returns:\n None: Initializes runner state.

    \n", "signature": "(steps: list[ml.utils.pipeline_core.step.PipelineStep[~C]])"}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"fullname": "ml.utils.pipeline_core.runner.PipelineRunner.steps", "modulename": "ml.utils.pipeline_core.runner", "qualname": "PipelineRunner.steps", "kind": "variable", "doc": "

    \n"}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"fullname": "ml.utils.pipeline_core.runner.PipelineRunner.run", "modulename": "ml.utils.pipeline_core.runner", "qualname": "PipelineRunner.run", "kind": "function", "doc": "

    Execute all steps with optional before/after hooks and return context.

    \n\n

    Args:\n ctx: Mutable pipeline context.

    \n\n

    Returns:\n C: Final context after all steps run.

    \n", "signature": "(self, ctx: ~C) -> ~C:", "funcdef": "def"}, "ml.utils.pipeline_core.step": {"fullname": "ml.utils.pipeline_core.step", "modulename": "ml.utils.pipeline_core.step", "kind": "module", "doc": "

    Abstract step contract for context-driven pipeline execution.

    \n"}, "ml.utils.pipeline_core.step.PipelineStep": {"fullname": "ml.utils.pipeline_core.step.PipelineStep", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep", "kind": "class", "doc": "

    Base class for pipeline steps operating on a shared context object.

    \n", "bases": "abc.ABC, typing.Generic[~ContextT]"}, "ml.utils.pipeline_core.step.PipelineStep.name": {"fullname": "ml.utils.pipeline_core.step.PipelineStep.name", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'unnamed'"}, "ml.utils.pipeline_core.step.PipelineStep.before": {"fullname": "ml.utils.pipeline_core.step.PipelineStep.before", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep.before", "kind": "function", "doc": "

    Optional hook executed before run; default implementation is no-op.

    \n\n

    Args:\n ctx: Pipeline context object.

    \n\n

    Returns:\n None: No-op by default.

    \n", "signature": "(self, ctx: ~ContextT) -> None:", "funcdef": "def"}, "ml.utils.pipeline_core.step.PipelineStep.after": {"fullname": "ml.utils.pipeline_core.step.PipelineStep.after", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep.after", "kind": "function", "doc": "

    Optional hook executed after run; default implementation is no-op.

    \n\n

    Args:\n ctx: Pipeline context object.

    \n\n

    Returns:\n None: No-op by default.

    \n", "signature": "(self, ctx: ~ContextT) -> None:", "funcdef": "def"}, "ml.utils.pipeline_core.step.PipelineStep.run": {"fullname": "ml.utils.pipeline_core.step.PipelineStep.run", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep.run", "kind": "function", "doc": "

    Execute step logic and return the updated context.

    \n\n

    Args:\n ctx: Pipeline context object.

    \n\n

    Returns:\n ContextT: Updated context object.

    \n", "signature": "(self, ctx: ~ContextT) -> ~ContextT:", "funcdef": "def"}, "ml.utils.runtime": {"fullname": "ml.utils.runtime", "modulename": "ml.utils.runtime", "kind": "module", "doc": "

    A package for runtime-specific logic used across the ml workflow.

    \n"}, "ml.utils.runtime.gpu_info": {"fullname": "ml.utils.runtime.gpu_info", "modulename": "ml.utils.runtime.gpu_info", "kind": "module", "doc": "

    Runtime GPU information collection helpers backed by NVML.

    \n"}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.task_type", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.task_type", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_count", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_devices_available", "kind": "variable", "doc": "

    \n", "annotation": ": list[int]"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_names", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_memories_gb", "kind": "variable", "doc": "

    \n", "annotation": ": list[float]"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_devices_used", "kind": "variable", "doc": "

    \n", "annotation": ": list[int]"}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.cuda_version", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_driver_version", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"fullname": "ml.utils.runtime.gpu_info.parse_cuda_driver_version", "modulename": "ml.utils.runtime.gpu_info", "qualname": "parse_cuda_driver_version", "kind": "function", "doc": "

    Convert NVML integer CUDA version encoding into dotted string format.

    \n\n

    Args:\n version_int: NVML-encoded CUDA driver version.

    \n\n

    Returns:\n str: CUDA version in dotted major.minor format.

    \n", "signature": "(version_int: int) -> str:", "funcdef": "def"}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"fullname": "ml.utils.runtime.gpu_info.prepare_gpu_info", "modulename": "ml.utils.runtime.gpu_info", "qualname": "prepare_gpu_info", "kind": "function", "doc": "

    Collect available GPU names, indices, memory, and driver version metadata.

    \n\n

    Returns:\n tuple[list[str], list[int], list[float], str, str]: Names, indices, memory sizes, CUDA version, and driver version.

    \n", "signature": "() -> tuple[list[str], list[int], list[float], str, str]:", "funcdef": "def"}, "ml.utils.runtime.gpu_info.get_gpu_info": {"fullname": "ml.utils.runtime.gpu_info.get_gpu_info", "modulename": "ml.utils.runtime.gpu_info", "qualname": "get_gpu_info", "kind": "function", "doc": "

    Assemble standardized GPU runtime info aligned with hardware config.

    \n\n

    Args:\n hardware_info: Hardware configuration with selected GPU settings.

    \n\n

    Returns:\n dict: GPU runtime summary payload.

    \n", "signature": "(\thardware_info: ml.config.schemas.hardware_cfg.HardwareConfig) -> ml.utils.runtime.gpu_info.GPUInfoDict:", "funcdef": "def"}, "ml.utils.runtime.runtime_info": {"fullname": "ml.utils.runtime.runtime_info", "modulename": "ml.utils.runtime.runtime_info", "kind": "module", "doc": "

    Runtime platform information collection utilities.

    \n"}, "ml.utils.runtime.runtime_info.logger": {"fullname": "ml.utils.runtime.runtime_info.logger", "modulename": "ml.utils.runtime.runtime_info", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.runtime.runtime_info (WARNING)>"}, "ml.utils.runtime.runtime_info.get_runtime_info": {"fullname": "ml.utils.runtime.runtime_info.get_runtime_info", "modulename": "ml.utils.runtime.runtime_info", "qualname": "get_runtime_info", "kind": "function", "doc": "

    Collect OS, hardware, and Python runtime characteristics.

    \n\n

    Args:\n None.

    \n\n

    Returns:\n Dictionary containing runtime platform characteristics.

    \n", "signature": "() -> dict:", "funcdef": "def"}, "ml.utils.runtime.runtime_snapshot": {"fullname": "ml.utils.runtime.runtime_snapshot", "modulename": "ml.utils.runtime.runtime_snapshot", "kind": "module", "doc": "

    Runtime snapshot builders for reproducibility and environment capture.

    \n"}, "ml.utils.runtime.runtime_snapshot.logger": {"fullname": "ml.utils.runtime.runtime_snapshot.logger", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.runtime.runtime_snapshot (WARNING)>"}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"fullname": "ml.utils.runtime.runtime_snapshot.find_conda_executable", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "find_conda_executable", "kind": "function", "doc": "

    Locate the conda executable from PATH or active conda environment.

    \n\n

    Returns:\n str: Absolute path to the conda executable.

    \n", "signature": "():", "funcdef": "def"}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"fullname": "ml.utils.runtime.runtime_snapshot.get_conda_env_export", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "get_conda_env_export", "kind": "function", "doc": "

    Return raw YAML output of conda env export --no-builds.

    \n\n

    Returns:\n str: Full conda environment export YAML content.

    \n", "signature": "() -> str:", "funcdef": "def"}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"fullname": "ml.utils.runtime.runtime_snapshot.hash_environment", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "hash_environment", "kind": "function", "doc": "

    Compute deterministic SHA-256 hash for exported environment text.

    \n\n

    Args:\n env_export: Raw conda environment export text.

    \n\n

    Returns:\n str: SHA-256 hash digest for the export payload.

    \n", "signature": "(env_export: str) -> str:", "funcdef": "def"}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"fullname": "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "build_runtime_snapshot", "kind": "function", "doc": "

    Build and return runtime snapshot metadata for experiment persistence.

    \n\n

    Args:\n timestamp: Run creation timestamp string.\n hardware_info: Validated hardware configuration.\n start_time: Monotonic run start time for duration calculation.

    \n\n

    Returns:\n dict: Runtime snapshot payload containing execution, runtime, GPU, and environment info.

    \n", "signature": "(\ttimestamp: str,\thardware_info: ml.config.schemas.hardware_cfg.HardwareConfig,\tstart_time: float) -> dict:", "funcdef": "def"}, "ml.utils.runtime.save_runtime": {"fullname": "ml.utils.runtime.save_runtime", "modulename": "ml.utils.runtime.save_runtime", "kind": "module", "doc": "

    Persistence utilities for writing runtime snapshot artifacts.

    \n"}, "ml.utils.runtime.save_runtime.logger": {"fullname": "ml.utils.runtime.save_runtime.logger", "modulename": "ml.utils.runtime.save_runtime", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.runtime.save_runtime (WARNING)>"}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"fullname": "ml.utils.runtime.save_runtime.save_runtime_snapshot", "modulename": "ml.utils.runtime.save_runtime", "qualname": "save_runtime_snapshot", "kind": "function", "doc": "

    Build and persist runtime snapshot JSON with overwrite protections.

    \n", "signature": "(\t*,\ttarget_dir: pathlib.Path,\ttimestamp: str,\thardware_info: ml.config.schemas.hardware_cfg.HardwareConfig,\tstart_time: float,\toverwrite_existing: bool = False) -> None:", "funcdef": "def"}, "ml.utils.snapshots": {"fullname": "ml.utils.snapshots", "modulename": "ml.utils.snapshots", "kind": "module", "doc": "

    A package for snapshot-specific logic used across the ml workflow.

    \n"}, "ml.utils.snapshots.latest_snapshot": {"fullname": "ml.utils.snapshots.latest_snapshot", "modulename": "ml.utils.snapshots.latest_snapshot", "kind": "module", "doc": "

    Utilities for resolving the latest valid snapshot directory.

    \n"}, "ml.utils.snapshots.latest_snapshot.logger": {"fullname": "ml.utils.snapshots.latest_snapshot.logger", "modulename": "ml.utils.snapshots.latest_snapshot", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.snapshots.latest_snapshot (WARNING)>"}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"fullname": "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path", "modulename": "ml.utils.snapshots.latest_snapshot", "qualname": "get_latest_snapshot_path", "kind": "function", "doc": "

    Return newest valid snapshot path using timestamp and UUID tie-breaking.

    \n\n

    Args:\n snapshot_dir: Directory containing snapshot subdirectories.

    \n\n

    Returns:\n Path: Latest valid snapshot path.

    \n", "signature": "(snapshot_dir: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}, "ml.utils.snapshots.snapshot_path": {"fullname": "ml.utils.snapshots.snapshot_path", "modulename": "ml.utils.snapshots.snapshot_path", "kind": "module", "doc": "

    Utilities for resolving explicit or latest snapshot directory paths.

    \n"}, "ml.utils.snapshots.snapshot_path.logger": {"fullname": "ml.utils.snapshots.snapshot_path.logger", "modulename": "ml.utils.snapshots.snapshot_path", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.snapshots.snapshot_path (WARNING)>"}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"fullname": "ml.utils.snapshots.snapshot_path.get_snapshot_path", "modulename": "ml.utils.snapshots.snapshot_path", "qualname": "get_snapshot_path", "kind": "function", "doc": "

    Resolve snapshot path from ID, supporting automatic latest selection.

    \n\n

    Args:\n snapshot_id: Snapshot identifier or latest.\n snapshot_dir: Directory containing snapshot subdirectories.

    \n\n

    Returns:\n Resolved snapshot path.

    \n", "signature": "(snapshot_id: str, snapshot_dir: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}}, "docInfo": {"ml": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.cli": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.cli.error_handling": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 81, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.error_handling.resolve_exit_code": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 78}, "ml.cli.exit_codes": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}, "ml.cli.exit_codes.EXIT_SUCCESS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.components": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.components.base": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.components.base.PipelineComponent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 9}, "ml.components.base.PipelineComponent.fit": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 33}, "ml.components.base.SklearnFeatureMixin": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.components.base.SklearnFeatureMixin.fit": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 32}, "ml.components.feature_engineering": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.components.feature_engineering.adr_per_person": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 15}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 7, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 50}, "ml.components.feature_engineering.arrival_date": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.components.feature_engineering.arrival_date.month_map": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 61, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 15}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 41}, "ml.components.feature_engineering.arrival_season": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 11}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 41}, "ml.components.feature_engineering.base": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.components.feature_engineering.base.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.base.FeatureOperator": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 8}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 32}, "ml.components.feature_engineering.base.FeatureEngineer": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 42}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 42}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 33}, "ml.components.feature_engineering.pit_operator": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.components.feature_engineering.pit_operator.PITOperator": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 10}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 30}, "ml.components.feature_engineering.total_stay": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.components.feature_engineering.total_stay.TotalStay": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 13}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 39}, "ml.components.feature_selection": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.components.feature_selection.selector": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.components.feature_selection.selector.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_selection.selector.FeatureSelector": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 31}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 28}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 29}, "ml.components.imputation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.components.imputation.categorical": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.components.imputation.categorical.FillCategoricalMissing": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 36}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 28}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 32}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 42}, "ml.components.schema_validation": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.components.schema_validation.validator": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.components.schema_validation.validator.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.components.schema_validation.validator.SchemaValidator": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 26}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 27}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 31}, "ml.config": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.best_params": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.config.best_params.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.config.best_params.MergeTarget": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.config.best_params.MODEL_KEYS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 32, "signature": 0, "bases": 0, "doc": 3}, "ml.config.best_params.ENSEMBLE_KEYS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.config.best_params.unflatten_best_params": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 53, "bases": 0, "doc": 47}, "ml.config.best_params.apply_best_params": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 149, "bases": 0, "doc": 58}, "ml.config.compute_data_config_hash": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.config.compute_data_config_hash.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 114, "bases": 0, "doc": 38}, "ml.config.hashing": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.hashing.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.hashing.compute_model_config_hash": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 33}, "ml.config.hashing.add_config_hash": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 116, "bases": 0, "doc": 35}, "ml.config.loader": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.config.loader.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.loader.load_config": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 225, "bases": 0, "doc": 83}, "ml.config.loader.load_and_validate_config": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 163, "bases": 0, "doc": 48}, "ml.config.merge": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.config.merge.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.merge.deep_merge": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 31}, "ml.config.merge.resolve_extends": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 52}, "ml.config.merge.apply_env_overlay": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 50}, "ml.config.schemas": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.config.schemas.base_model_params": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.config.schemas.base_model_params.BaseModelParams": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"qualname": 2, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"qualname": 5, "fullname": 11, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 13}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 51}, "ml.config.schemas.model_cfg": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 31}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 31}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 31}, "ml.config.schemas.model_specs.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.SegmentConfig.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentConfig.description": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskType": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ml.config.schemas.model_specs.TaskType.classification": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskType.regression": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskType.ranking": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskType.time_series": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.config.schemas.model_specs.TaskConfig.type": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 30}, "ml.config.schemas.model_specs.ClassesConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.config.schemas.model_specs.ClassesConfig.count": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetTransformConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"qualname": 2, "fullname": 7, "annotation": 12, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"qualname": 7, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 30}, "ml.config.schemas.model_specs.TargetConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_specs.TargetConfig.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.classes": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.transform": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 29}, "ml.config.schemas.model_specs.SegmentationFilter": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"qualname": 2, "fullname": 7, "annotation": 28, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"qualname": 2, "fullname": 7, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"qualname": 6, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 31}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"qualname": 8, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 36}, "ml.config.schemas.model_specs.FeatureSetConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.AlgorithmConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.PipelineConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 6}, "ml.config.schemas.model_specs.PipelineConfig.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.PipelineConfig.path": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ScoringConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"qualname": 2, "fullname": 7, "annotation": 14, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"qualname": 3, "fullname": 8, "annotation": 30, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"qualname": 7, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 32}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"qualname": 9, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 34}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"qualname": 2, "fullname": 7, "annotation": 13, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"qualname": 2, "fullname": 7, "annotation": 15, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 33}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"qualname": 2, "fullname": 7, "annotation": 12, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 34}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.DATA_TYPE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.MetaConfig.sources": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.env": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"qualname": 3, "fullname": 8, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.task": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.target": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.split": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"qualname": 3, "fullname": 8, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"qualname": 4, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 21}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 28}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 30}, "ml.config.schemas.search_cfg": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.schemas.search_cfg.BroadModelParams": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"qualname": 5, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 53}, "ml.config.schemas.search_cfg.NarrowIntParam": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.schemas.train_cfg.TrainConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.model": {"qualname": 2, "fullname": 7, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"qualname": 2, "fullname": 7, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.config.validation.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.validation.validate_model_config": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 118, "bases": 0, "doc": 54}, "ml.data": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.config": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.data.config.schemas.constants": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.config.schemas.constants.BorderValue": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.data.config.schemas.constants.BorderValue.value": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.constants.BorderValue.op": {"qualname": 2, "fullname": 7, "annotation": 15, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.config.schemas.interim.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.interim.DataSchema.hotel": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.adults": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.children": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.babies": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.meal": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.country": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.agent": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.company": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.adr": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.email": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Cleaning": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.data.config.schemas.interim.Invariant": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.interim.Invariant.min": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas.interim.Invariant.max": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.data.config.schemas.interim.Invariants": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.data.config.schemas.interim.Invariants.hotel": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.lead_time": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"qualname": 6, "fullname": 11, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.adults": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.children": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.babies": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.meal": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.country": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.market_segment": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.agent": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.company": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.customer_type": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.adr": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.name": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.email": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.phone_number": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.credit_card": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 27}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 30}, "ml.data.config.schemas.interim.LineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.interim.InterimConfig.data": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 13}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 15}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 34}, "ml.data.config.schemas.processed": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.config.schemas.processed.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.LineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.ProcessedConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 14}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 47}, "ml.data.config.schemas.shared": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.config.schemas.shared.Output": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.data.config.schemas.shared.Output.path_suffix": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 25}, "ml.data.config.schemas.shared.Output.format": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 5, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas.shared.Output.compression": {"qualname": 2, "fullname": 7, "annotation": 18, "default_value": 1, "signature": 0, "bases": 0, "doc": 13}, "ml.data.config.schemas.shared.DataInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.data.config.schemas.shared.DataInfo.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas.shared.DataInfo.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.data.config.schemas.shared.DataInfo.output": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.validate_config": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.config.validate_config.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.validate_config.validate_config": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 46}, "ml.data.interim": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.interim.data_preparation": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.data.interim.data_preparation.prepare_data": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 27}, "ml.data.interim.data_preparation.prepare_data.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 68, "bases": 0, "doc": 39}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 105, "bases": 0, "doc": 105}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 68, "bases": 0, "doc": 65}, "ml.data.interim.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.interim.persistence.prepare_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.interim.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 198, "bases": 0, "doc": 84}, "ml.data.merge": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.data.merge.merge_dataset_into_main": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.merge.merge_dataset_into_main.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 10}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 368, "bases": 0, "doc": 143}, "ml.data.processed": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.processed.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.processed.persistence.prepare_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.processed.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 265, "bases": 0, "doc": 99}, "ml.data.processed.processing": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.data.processed.processing.add_row_id_base": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 13}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"qualname": 5, "fullname": 13, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 36}, "ml.data.processed.processing.hotel_bookings": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"qualname": 5, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 27}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 15}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"qualname": 4, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 38}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"qualname": 4, "fullname": 14, "annotation": 0, "default_value": 85, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"qualname": 5, "fullname": 15, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"qualname": 0, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"qualname": 6, "fullname": 18, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 39}, "ml.data.processed.processing.process_data": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.data.processed.processing.process_data.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.process_data.remove_columns": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 37}, "ml.data.processed.processing.process_data.add_row_id": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 38}, "ml.data.raw": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.data.raw.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.raw.persistence.prepare_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.data.raw.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 65}, "ml.data.utils": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.utils.extraction": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.utils.extraction.get_data_suffix_and_format": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"qualname": 5, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 53}, "ml.data.utils.memory": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.utils.memory.compute_memory_change": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.utils.memory.compute_memory_change.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 71, "bases": 0, "doc": 65}, "ml.data.utils.memory.get_memory_usage": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.utils.memory.get_memory_usage.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 33}, "ml.data.utils.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.data.utils.persistence.save_data": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.utils.persistence.save_data.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.persistence.save_data.save_data": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 130, "bases": 0, "doc": 48}, "ml.data.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.data.validation.validate_data": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.validation.validate_data.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.data.validation.validate_data.validate_data": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 45}, "ml.data.validation.validate_entity_key": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.validation.validate_entity_key.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.validation.validate_entity_key.validate_entity_key": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 36}, "ml.data.validation.validate_min_rows": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.validation.validate_min_rows.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.validation.validate_min_rows.validate_min_rows": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 31}, "ml.exceptions": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "ml.exceptions.MLBaseError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.exceptions.UserError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 10}, "ml.exceptions.RuntimeMLError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.exceptions.ConfigError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 7}, "ml.exceptions.DataError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.exceptions.PipelineContractError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 32}, "ml.exceptions.SearchError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 6}, "ml.exceptions.TrainingError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 6}, "ml.exceptions.EvaluationError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.exceptions.ExplainabilityError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.exceptions.PersistenceError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.feature_freezing": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.constants.output": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.constants.output.FreezeOutput": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 3}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.base": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 150, "bases": 0, "doc": 64}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 27}, "ml.feature_freezing.freeze_strategies.config": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 20, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"qualname": 3, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 38}, "ml.feature_freezing.freeze_strategies.tabular": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.freeze_strategies.tabular.config": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 18, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 35, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"qualname": 2, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"qualname": 3, "fullname": 11, "annotation": 4, "default_value": 6, "signature": 0, "bases": 0, "doc": 13}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"qualname": 3, "fullname": 11, "annotation": 18, "default_value": 5, "signature": 0, "bases": 0, "doc": 7}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"qualname": 3, "fullname": 11, "annotation": 35, "default_value": 5, "signature": 0, "bases": 0, "doc": 8}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 6, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"qualname": 5, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"qualname": 2, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"qualname": 3, "fullname": 11, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"qualname": 3, "fullname": 11, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"qualname": 2, "fullname": 10, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"qualname": 2, "fullname": 10, "annotation": 4, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"qualname": 3, "fullname": 11, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"qualname": 2, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"qualname": 4, "fullname": 12, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"qualname": 3, "fullname": 11, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"qualname": 2, "fullname": 10, "annotation": 12, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"qualname": 7, "fullname": 15, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 28}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"qualname": 6, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 27}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"qualname": 5, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 27}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"qualname": 6, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 29}, "ml.feature_freezing.freeze_strategies.tabular.features": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 93, "bases": 0, "doc": 40}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 39}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 41}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 118, "bases": 0, "doc": 43}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 35}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 48}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 211, "bases": 0, "doc": 104}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 381, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"qualname": 4, "fullname": 12, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"qualname": 2, "fullname": 10, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"qualname": 3, "fullname": 11, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"qualname": 2, "fullname": 10, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"qualname": 2, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"qualname": 3, "fullname": 11, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"qualname": 4, "fullname": 12, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"qualname": 4, "fullname": 12, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"qualname": 4, "fullname": 12, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"qualname": 4, "fullname": 12, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"qualname": 4, "fullname": 12, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 14, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 33}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 14, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"qualname": 3, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 31}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"qualname": 3, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 30}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 14, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 31}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 14, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 28}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 7, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 150, "bases": 0, "doc": 78}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 35}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 34}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 32}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 34}, "ml.feature_freezing.freeze_strategies.time_series": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 7, "doc": 11}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 78}, "ml.feature_freezing.models": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.models.freeze_runtime": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"qualname": 2, "fullname": 8, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.persistence.get_deps": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.persistence.get_deps.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 27}, "ml.feature_freezing.persistence.get_deps.get_deps": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 22}, "ml.feature_freezing.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.utils.data_loader": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.utils.data_loader.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 130, "bases": 0, "doc": 34}, "ml.feature_freezing.utils.get_strategy": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"qualname": 2, "fullname": 8, "annotation": 9, "default_value": 37, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.get_strategy.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 43, "bases": 0, "doc": 39}, "ml.feature_freezing.utils.get_strategy_type": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.feature_freezing.utils.get_strategy_type.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 34}, "ml.feature_freezing.utils.operators": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.utils.operators.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 12, "bases": 0, "doc": 33}, "ml.features": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.features.extraction": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.extraction.cat_features": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.extraction.cat_features.get_cat_features": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 129, "bases": 0, "doc": 53}, "ml.features.hashing": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.hashing.hash_arrow_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.features.hashing.hash_arrow_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 36}, "ml.features.hashing.hash_dataframe_content": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 37}, "ml.features.hashing.hash_feature_schema": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 32}, "ml.features.hashing.hash_parquet_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.features.hashing.hash_parquet_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 36}, "ml.features.hashing.safe": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.hashing.safe.safe": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 29}, "ml.features.loading": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.loading.data_loader": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.features.loading.data_loader.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.data_loader.required_fields": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 46, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.data_loader.lineage_identity": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 34}, "ml.features.loading.data_loader.load_and_validate_data": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 52}, "ml.features.loading.features_and_target": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.features.loading.features_and_target.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.features_and_target.load_features_and_target": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 242, "bases": 0, "doc": 165}, "ml.features.loading.get_target": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 135, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.get_target.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.get_target.get_target_with_entity_key": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 72}, "ml.features.loading.resolve_feature_snapshots": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.loading.resolve_feature_snapshots.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 123, "bases": 0, "doc": 74}, "ml.features.loading.schemas": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.loading.schemas.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.schemas.load_feature_set_schemas": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 56}, "ml.features.loading.schemas.aggregate_schema_dfs": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 36}, "ml.features.loading.schemas.load_schemas": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 150, "bases": 0, "doc": 46}, "ml.features.segmentation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.segmentation.segment": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.features.segmentation.segment.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.features.segmentation.segment.apply_segmentation": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 42}, "ml.features.splitting": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.splitting.splitting": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.features.splitting.splitting.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.features.splitting.splitting.SPLIT": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.features.splitting.splitting.random_split": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 201, "bases": 0, "doc": 61}, "ml.features.splitting.splitting.split_data": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 190, "bases": 0, "doc": 59}, "ml.features.splitting.splitting.get_splits_tabular": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 175, "bases": 0, "doc": 49}, "ml.features.splitting.splitting.get_splits": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 53}, "ml.features.transforms": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.transforms.transform_target": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.transforms.transform_target.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.transforms.transform_target.transform_target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 101, "bases": 0, "doc": 51}, "ml.features.transforms.transform_target.inverse_transform_target": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 48}, "ml.features.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.validation.normalize_dtype": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.validation.normalize_dtype.normalize_dtype": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 30}, "ml.features.validation.validate_contract": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.validation.validate_contract.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 121, "bases": 0, "doc": 45}, "ml.features.validation.validate_feature_set": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.features.validation.validate_feature_set.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_feature_set.validate_feature_set": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 56}, "ml.features.validation.validate_feature_target_entity_key": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.features.validation.validate_feature_target_entity_key.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"qualname": 5, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 56}, "ml.features.validation.validate_operators": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_operators.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_operators.validate_operators": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 51}, "ml.features.validation.validate_set": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.validation.validate_set.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_set.validate_set": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 46}, "ml.features.validation.validate_snapshot_ids": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.validation.validate_snapshot_ids.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 36}, "ml.features.validation.validate_target": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.features.validation.validate_target.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_target.validate_min_class_count": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 43, "bases": 0, "doc": 36}, "ml.features.validation.validate_target.validate_target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 127, "bases": 0, "doc": 45}, "ml.io": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.io.formatting": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.io.formatting.iso_no_colon": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 34}, "ml.io.formatting.str_to_bool": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.io.formatting.str_to_bool.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.io.formatting.str_to_bool.str_to_bool": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 31}, "ml.io.persistence": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.io.persistence.save_metadata": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.io.persistence.save_metadata.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.io.persistence.save_metadata.save_metadata": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 62, "bases": 0, "doc": 104}, "ml.io.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.io.validation.validate_mapping": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.io.validation.validate_mapping.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"qualname": 6, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 15}, "ml.logging_config": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.logging_config.LOG_FORMAT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.logging_config.setup_logging": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 40}, "ml.logging_config.add_file_handler": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 68}, "ml.logging_config.bootstrap_logging": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 49}, "ml.metadata": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.data": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas.data.interim": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.processed": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.data.processed.RowIdInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.data.raw.RawData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw.RawData.hash": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 12}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.metadata.schemas.data.shared.DataBasic": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.metadata.schemas.data.shared.DataBasic.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataBasic.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataBasic.format": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SourceData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SourceData.path": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.CurrentData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataMemory": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.Columns": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.metadata.schemas.data.shared.Columns.count": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.Columns.names": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"qualname": 2, "fullname": 7, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 13}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.metadata.schemas.features.feature_freezing": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"qualname": 2, "fullname": 8, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas.promotion.promote": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 15}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 13}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 13}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.Context": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 18}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"qualname": 5, "fullname": 10, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"qualname": 4, "fullname": 9, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"qualname": 3, "fullname": 8, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas.runners.evaluation": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 12}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 11, "doc": 11}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 12}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 10}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.search": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas.search.search": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.search.search.SearchRecord": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 16}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.search.search.SearchRecord.config": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.data": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.metadata.validation.data.interim": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.data.interim.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 33}, "ml.metadata.validation.data.processed": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.data.processed.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 33}, "ml.metadata.validation.data.raw": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.metadata.validation.data.raw.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 33}, "ml.metadata.validation.features": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.metadata.validation.features.feature_freezing": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.features.feature_freezing.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 53}, "ml.metadata.validation.promotion": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.promotion.promote": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.promotion.promote.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 131, "bases": 0, "doc": 62}, "ml.metadata.validation.runners": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.runners.evaluation": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.evaluation.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 53}, "ml.metadata.validation.runners.explainability": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.explainability.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 40}, "ml.metadata.validation.runners.training": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.training.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.training.validate_training_metadata": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 40}, "ml.metadata.validation.search": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.search.search": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.search.search.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.search.search.validate_search_record": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 3}, "ml.modeling": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.modeling.catboost": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.modeling.catboost.build_pipeline_with_model": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 203, "bases": 0, "doc": 62}, "ml.modeling.class_weighting": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.modeling.class_weighting.constants": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 30, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.models": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.modeling.class_weighting.models.DataStats": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.modeling.class_weighting.models.DataStats.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.resolve_class_weighting": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 53}, "ml.modeling.class_weighting.resolve_metric": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.modeling.class_weighting.resolve_metric.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 168, "bases": 0, "doc": 44}, "ml.modeling.class_weighting.stats_resolver": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.modeling.class_weighting.stats_resolver.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 37}, "ml.modeling.models": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.modeling.models.artifacts": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.modeling.models.artifacts.Artifacts": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 19}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.artifacts.Artifacts.model_path": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.config_fingerprint": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"qualname": 3, "fullname": 8, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "ml.modeling.models.metrics.Metrics": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.modeling.models.metrics.Metrics.task_type": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.Metrics.algorithm": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.TrainingMetrics": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 6}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.EvaluationMetrics": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 6}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.run_identity": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.run_identity.RunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.run_identity.RunIdentity.status": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.modeling.models.runtime_info.Environment": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 14}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Execution": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.modeling.models.runtime_info.Execution.created_at": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Execution.git_commit": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Execution.python_executable": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.modeling.models.runtime_info.Runtime.os": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.os_release": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.architecture": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.processor": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.hostname": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.python_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.python_build": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.RuntimeInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 14}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.modeling.validation.artifacts": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.artifacts.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 54}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 54}, "ml.modeling.validation.feature_lineage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.feature_lineage.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 55, "bases": 0, "doc": 3}, "ml.modeling.validation.metrics": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 50}, "ml.modeling.validation.metrics.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.metrics.validate_training_metrics": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 44}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 44}, "ml.modeling.validation.runtime_info": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.runtime_info.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 27}, "ml.pipelines": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.pipelines.builders": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.builders.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.builders.build_pipeline": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 166, "bases": 0, "doc": 63}, "ml.pipelines.composition": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.composition.add_model_to_pipeline": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 48}, "ml.pipelines.constants": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.pipelines.constants.pipeline_features": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 3}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.models": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.pipelines.models.VALID_STEPS": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 17, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.models.LineageConfig": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.pipelines.models.LineageConfig.created_by": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 7}, "ml.pipelines.models.LineageConfig.created_at": {"qualname": 3, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "ml.pipelines.models.PipelineConfig": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.pipelines.models.PipelineConfig.name": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "ml.pipelines.models.PipelineConfig.version": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.pipelines.models.PipelineConfig.description": {"qualname": 2, "fullname": 5, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 7}, "ml.pipelines.models.PipelineConfig.steps": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 7}, "ml.pipelines.models.PipelineConfig.assumptions": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.pipelines.models.PipelineConfig.lineage": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.models.PipelineConfig.check_version_format": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 12}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 12}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 9}, "ml.pipelines.operator_factory": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.operator_factory.build_operators": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 38}, "ml.pipelines.schema_utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.schema_utils.get_categorical_features": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 40}, "ml.pipelines.schema_utils.get_pipeline_features": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 150, "bases": 0, "doc": 49}, "ml.pipelines.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "ml.pipelines.validation.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.validation.validate_pipeline_config": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 54}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "ml.policies": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.policies.data": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.policies.data.interim_constraints": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 224, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 33, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 8814, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.data.row_id": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 29, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.policies.model_params.catboost_constraints": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 104, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"qualname": 3, "fullname": 9, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"qualname": 3, "fullname": 9, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 158, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.promotion": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.policies.promotion.threshold_support": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.comparisons": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.comparisons.production": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.comparisons.production.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.comparisons.production.compare_against_production_model": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 228, "bases": 0, "doc": 59}, "ml.promotion.comparisons.thresholds": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.comparisons.thresholds.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 101, "bases": 0, "doc": 35}, "ml.promotion.config": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.models": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.config.models.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricSet": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.promotion.config.models.MetricSet.TEST": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricSet.VAL": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricSet.TRAIN": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.ACCURACY": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.F1": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.PRECISION": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.RECALL": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.ROC_AUC": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.PR_AUC": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.ECE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.MAE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.MSE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.RMSE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.R2": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.Direction": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 8}, "ml.promotion.config.models.Direction.MAXIMIZE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.Direction.MINIMIZE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.PromotionMetricsConfig": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"qualname": 2, "fullname": 6, "annotation": 11, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 153, "bases": 0, "doc": 36}, "ml.promotion.config.models.ThresholdsConfig": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.promotion.config.models.ThresholdsConfig.test": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.models.ThresholdsConfig.val": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.models.ThresholdsConfig.train": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.models.LineageConfig": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.promotion.config.models.LineageConfig.created_by": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.LineageConfig.created_at": {"qualname": 3, "fullname": 7, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.PromotionThresholds": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"qualname": 3, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.PromotionThresholds.lineage": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 29}, "ml.promotion.constants": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.constants.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.constants.constants.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.Stage": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.RunnersMetadata": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 166, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"qualname": 3, "fullname": 7, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"qualname": 3, "fullname": 7, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"qualname": 2, "fullname": 6, "annotation": 11, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ProductionComparisonResult": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"qualname": 4, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 97, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"qualname": 4, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"qualname": 4, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"qualname": 4, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.EPSILON": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 30, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"qualname": 5, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"qualname": 5, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"qualname": 3, "fullname": 9, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"qualname": 5, "fullname": 11, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"qualname": 2, "fullname": 8, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"qualname": 2, "fullname": 8, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.context.PromotionPaths": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.context.PromotionPaths.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 145, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.run_dir": {"qualname": 3, "fullname": 6, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.train_run_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.registry_path": {"qualname": 3, "fullname": 6, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.archive_path": {"qualname": 3, "fullname": 6, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.context.PromotionContext.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 114, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.args": {"qualname": 2, "fullname": 5, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.run_id": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.timestamp": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.paths": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.runners_metadata": {"qualname": 3, "fullname": 6, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.build_context": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 37}, "ml.promotion.getters": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.getters.get": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.getters.get.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.getters.get.get_runners_metadata": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 42}, "ml.promotion.getters.get.extract_thresholds": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 40}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 27}, "ml.promotion.getters.get.get_training_conda_env_hash": {"qualname": 5, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 33}, "ml.promotion.persistence": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.persistence.prepare": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.persistence.prepare.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.persistence.prepare.prepare_run_information": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 83}, "ml.promotion.persistence.prepare.prepare_metadata": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 214, "bases": 0, "doc": 134}, "ml.promotion.persistence.registry": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.persistence.registry.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.persistence.registry.update_registry_and_archive": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 180, "bases": 0, "doc": 64}, "ml.promotion.persistence.registry.persist_registry_diff": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 41}, "ml.promotion.persister": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.persister.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.persister.PromotionPersister": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.persister.PromotionPersister.persist": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 36}, "ml.promotion.result": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.result.PromotionResult": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.result.PromotionResult.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 117, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.promotion_decision": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.beats_previous": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"qualname": 4, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.run_info": {"qualname": 3, "fullname": 6, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.production_comparison": {"qualname": 3, "fullname": 6, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.service": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.service.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.service.PromotionService": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.service.PromotionService.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 7}, "ml.promotion.service.PromotionService.run": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 32}, "ml.promotion.state": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.state.PromotionState": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.promotion.state.PromotionState.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 170, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.model_registry": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.archive_registry": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.evaluation_metrics": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.promotion_thresholds": {"qualname": 3, "fullname": 6, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.current_prod_model_info": {"qualname": 5, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"qualname": 5, "fullname": 8, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.git_commit": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.threshold_comparison": {"qualname": 3, "fullname": 6, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state_loader": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.state_loader.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state_loader.PromotionStateLoader": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.promotion.state_loader.PromotionStateLoader.load": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 35}, "ml.promotion.strategies": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.strategies.base": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.strategies.base.PromotionStrategy": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 31}, "ml.promotion.strategies.production": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.strategies.production.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 11}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 90}, "ml.promotion.strategies.staging": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.strategies.staging.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 11}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 40}, "ml.promotion.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.validation.validate": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.validation.validate.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.validation.validate.validate_run_dirs": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 40}, "ml.promotion.validation.validate.validate_run_ids": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 39}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 28}, "ml.promotion.validation.validate.validate_optional_artifact": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 42}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 30}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 30}, "ml.registries": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 62}, "ml.registries.FEATURE_OPERATORS": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 67, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.MODEL_CLASS_REGISTRY": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 26, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.MODEL_PARAM_REGISTRY": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 41, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.OP_MAP": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 83, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.PIPELINE_COMPONENTS": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 65, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 33, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.EVALUATORS": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 34, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.EXPLAINERS": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 20, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.SEARCHERS": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 17, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.TRAINERS": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 18, "signature": 0, "bases": 0, "doc": 3}, "ml.runners": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.evaluation.constants.data_splits": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 163, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"qualname": 2, "fullname": 8, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"qualname": 2, "fullname": 8, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"qualname": 2, "fullname": 8, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.output": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 112, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.runners.evaluation.evaluators.base": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.evaluation.evaluators.base.Evaluator": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 125, "bases": 0, "doc": 12}, "ml.runners.evaluation.evaluators.classification": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.evaluators.classification.classification": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 10}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 125, "bases": 0, "doc": 127}, "ml.runners.evaluation.evaluators.classification.metrics": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 45}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 145, "bases": 0, "doc": 52}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 183, "bases": 0, "doc": 63}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 194, "bases": 0, "doc": 61}, "ml.runners.evaluation.evaluators.regression": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.evaluators.regression.metrics": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 75, "bases": 0, "doc": 35}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 210, "bases": 0, "doc": 73}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 176, "bases": 0, "doc": 44}, "ml.runners.evaluation.evaluators.regression.regression": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 9}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 125, "bases": 0, "doc": 115}, "ml.runners.evaluation.models": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.models.predictions": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"qualname": 2, "fullname": 7, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"qualname": 2, "fullname": 7, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"qualname": 2, "fullname": 7, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 15}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 285, "bases": 0, "doc": 89}, "ml.runners.evaluation.persistence.prepare_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 179, "bases": 0, "doc": 67}, "ml.runners.evaluation.persistence.save_predictions": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.persistence.save_predictions.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 46}, "ml.runners.evaluation.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.runners.evaluation.utils.get_entity_keys": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 62, "bases": 0, "doc": 52}, "ml.runners.evaluation.utils.get_evaluator": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.utils.get_evaluator.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 32}, "ml.runners.explainability": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.explainability.constants.explainability_metrics_class": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"qualname": 5, "fullname": 12, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"qualname": 5, "fullname": 12, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.output": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.runners.explainability.explainers.base": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.explainability.explainers.base.Explainer": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ml.runners.explainability.explainers.base.Explainer.explain": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.explainability.explainers.tree_model.adapters": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 11}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 28}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 30}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 32}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 11}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 37}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 30}, "ml.runners.explainability.explainers.tree_model.tree_model": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 10}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 106}, "ml.runners.explainability.explainers.tree_model.utils": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"qualname": 4, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 38}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"qualname": 3, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 198, "bases": 0, "doc": 67}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"qualname": 3, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 205, "bases": 0, "doc": 67}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"qualname": 0, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"qualname": 1, "fullname": 15, "annotation": 0, "default_value": 20, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"qualname": 6, "fullname": 20, "annotation": 0, "default_value": 0, "signature": 118, "bases": 0, "doc": 48}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"qualname": 2, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 105, "bases": 0, "doc": 30}, "ml.runners.explainability.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.persistence.persist_explainability_run": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 266, "bases": 0, "doc": 94}, "ml.runners.explainability.persistence.save_metrics_csv": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 91, "bases": 0, "doc": 41}, "ml.runners.explainability.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.explainability.utils.get_explainer": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.utils.get_explainer.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 31}, "ml.runners.shared": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.formatting": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.formatting.ensure_1d_array": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 35}, "ml.runners.shared.lineage": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.lineage.validate_lineage_integrity": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 98, "bases": 0, "doc": 38}, "ml.runners.shared.lineage.validations": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.lineage.validations.base": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.lineage.validations.base.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 31}, "ml.runners.shared.lineage.validations.configs_match": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.lineage.validations.configs_match.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 37}, "ml.runners.shared.loading": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"qualname": 6, "fullname": 16, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 36}, "ml.runners.shared.loading.pipeline": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.loading.pipeline.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 99, "bases": 0, "doc": 41}, "ml.runners.shared.logical_config": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"qualname": 4, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 36}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 43}, "ml.runners.shared.logical_config.validate_threshold": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.shared.logical_config.validate_threshold.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 50}, "ml.runners.shared.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.persistence.save_metrics": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.persistence.save_metrics.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 160, "bases": 0, "doc": 65}, "ml.runners.shared.reproducibility": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.shared.reproducibility.validate_reproducibility": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 31}, "ml.runners.shared.reproducibility.validations": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 31}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 74}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 31}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 36}, "ml.runners.training": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.training.constants.output": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 7, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.constants.output.TrainOutput.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 148, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.model": {"qualname": 2, "fullname": 7, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.metrics": {"qualname": 2, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.persistence.artifacts": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.training.persistence.artifacts.save_model": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.persistence.artifacts.save_model.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 43}, "ml.runners.training.persistence.artifacts.save_pipeline": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 41}, "ml.runners.training.persistence.run_info": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.training.persistence.run_info.persist_training_run": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"qualname": 3, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 270, "bases": 0, "doc": 97}, "ml.runners.training.trainers": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.runners.training.trainers.base": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.trainers.base.Trainer": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.runners.training.trainers.base.Trainer.train": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 59}, "ml.runners.training.trainers.catboost": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.training.trainers.catboost.catboost": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 93}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 12}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 120}, "ml.runners.training.trainers.catboost.train_catboost_model": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 215, "bases": 0, "doc": 104}, "ml.runners.training.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.runners.training.utils.get_trainer": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.utils.get_trainer.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.get_trainer.get_trainer": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 31}, "ml.runners.training.utils.logical_config_checks": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"qualname": 3, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 98}, "ml.runners.training.utils.logical_config_checks.validations": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"qualname": 0, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"qualname": 1, "fullname": 12, "annotation": 0, "default_value": 17, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"qualname": 3, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 34}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"qualname": 0, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"qualname": 1, "fullname": 13, "annotation": 0, "default_value": 18, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"qualname": 4, "fullname": 16, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 27}, "ml.runners.training.utils.metrics": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.runners.training.utils.metrics.best_f1": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.utils.metrics.best_f1.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 49}, "ml.runners.training.utils.metrics.compute_metrics": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 200, "bases": 0, "doc": 127}, "ml.runners.training.utils.model_specific": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.utils.model_specific.catboost": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.model_specific.catboost.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 32}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 116, "bases": 0, "doc": 51}, "ml.search": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.search.constants": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.constants.SEARCH_PHASES": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.models.experiment_metadata": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.Sources": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 18}, "ml.search.models.experiment_metadata.Sources.main": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.Sources.extends": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 14}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"qualname": 2, "fullname": 7, "annotation": 15, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"qualname": 3, "fullname": 8, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "ml.search.models.search_results.Phases": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.search.models.search_results.Phases.broad": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results.Phases.narrow": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results.SearchResults": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 14}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results.SearchResults.best_model_params": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results.SearchResults.phases": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.params": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.params.catboost": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.search.params.catboost.refinement": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 124}, "ml.search.params.catboost.validation": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.params.catboost.validation.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.params.catboost.validation.validate_param_value": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 33, "bases": 0, "doc": 44}, "ml.search.params.refiners": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.params.refiners.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.search.params.refiners.refine_int": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 41}, "ml.search.params.refiners.refine_float_mult": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 44}, "ml.search.params.refiners.refine_border_count": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 34}, "ml.search.params.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.params.utils.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.search.params.utils.get_default_int_params": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 51}, "ml.search.params.utils.get_default_float_params": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 57}, "ml.search.persistence": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.persistence.persist_experiment": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.persistence.persist_experiment.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.search.persistence.persist_experiment.persist_experiment": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 232, "bases": 0, "doc": 91}, "ml.search.persistence.prepare_metadata": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 184, "bases": 0, "doc": 116}, "ml.search.searchers": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.search.searchers.base": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.search.searchers.base.Searcher": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.search.searchers.base.Searcher.search": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 129, "bases": 0, "doc": 44}, "ml.search.searchers.catboost": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.search.searchers.catboost.catboost": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.searchers.catboost.catboost.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 12}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 129, "bases": 0, "doc": 69}, "ml.search.searchers.catboost.model": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.searchers.catboost.model.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.model.prepare_model": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 136, "bases": 0, "doc": 60}, "ml.search.searchers.catboost.pipeline": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.searchers.catboost.pipeline.context": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.searchers.catboost.pipeline.context.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 675, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"qualname": 4, "fullname": 10, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"qualname": 3, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"qualname": 2, "fullname": 8, "annotation": 30, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"qualname": 4, "fullname": 10, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"qualname": 3, "fullname": 9, "annotation": 30, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"qualname": 5, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 25}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.search.searchers.catboost.pipeline.steps": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 12, "doc": 12}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 32}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 12, "doc": 12}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 103}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 12, "doc": 12}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"qualname": 2, "fullname": 9, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 92}, "ml.search.searchers.catboost.search_results_creator": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 67, "bases": 0, "doc": 36}, "ml.search.searchers.output": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.searchers.output.SearchOutput": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.searchers.output.SearchOutput.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 123, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.search_results": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.scoring_method": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.splits_info": {"qualname": 3, "fullname": 7, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.utils.failure_management": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.utils.failure_management.delete_failure_management_folder": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"qualname": 4, "fullname": 13, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"qualname": 4, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 12}, "ml.search.utils.failure_management.save_broad": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.utils.failure_management.save_broad.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.failure_management.save_broad.save_broad": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 14}, "ml.search.utils.failure_management.save_narrow": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.utils.failure_management.save_narrow.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 14}, "ml.search.utils.get_searcher": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.utils.get_searcher.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.get_searcher.get_searcher": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 31}, "ml.search.utils.model_params_extraction": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.search.utils.model_params_extraction.extract_model_params": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 12, "bases": 0, "doc": 41}, "ml.search.utils.randomized_search": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.search.utils.randomized_search.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.randomized_search.perform_randomized_search": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 274, "bases": 0, "doc": 185}, "ml.snapshot_bindings": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.snapshot_bindings.config": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.snapshot_bindings.config.models": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 14}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 15}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 17}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 21}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 25}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 15}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 3}, "ml.snapshot_bindings.extraction": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"qualname": 5, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 84, "bases": 0, "doc": 35}, "ml.snapshot_bindings.validation": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 111, "bases": 0, "doc": 71}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 51}, "ml.targets": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.targets.adr": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.targets.adr.v1": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.targets.adr.v1.AdrTargetV1": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 11}, "ml.targets.base": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.base.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.targets.base.TargetStrategy": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 12}, "ml.targets.base.TargetStrategy.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 31}, "ml.targets.base.TargetStrategy.entity_key": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.targets.base.TargetStrategy.build": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 47}, "ml.targets.cancellation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.targets.cancellation.v1": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.targets.cancellation.v1.CancellationTargetV1": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 11}, "ml.targets.lead_time": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.lead_time.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ml.targets.no_show": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.no_show.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.no_show.v1.NoShowTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 13}, "ml.targets.repeated_guest": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.repeated_guest.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ml.targets.room_upgrade": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.room_upgrade.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 15}, "ml.targets.special_requests": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.special_requests.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ml.types": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.types.DataLineageEntry": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.types.DataLineageEntry.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 325, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.ref": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.name": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.version": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.format": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.path_suffix": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.merge_key": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.merge_how": {"qualname": 3, "fullname": 5, "annotation": 18, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.merge_validate": {"qualname": 3, "fullname": 5, "annotation": 35, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.snapshot_id": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.path": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.loader_validation_hash": {"qualname": 4, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.data_hash": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.row_count": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.column_count": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.LatestSnapshot": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 12}, "ml.types.LatestSnapshot.LATEST": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.types.AllowedModels": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 7, "signature": 0, "bases": 0, "doc": 3}, "ml.types.AllSplitsInfo": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.types.AllSplitsInfo.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 3}, "ml.types.AllSplitsInfo.train": {"qualname": 2, "fullname": 4, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.AllSplitsInfo.val": {"qualname": 2, "fullname": 4, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.AllSplitsInfo.test": {"qualname": 2, "fullname": 4, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.SplitInfo": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.types.SplitInfo.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 3}, "ml.types.SplitInfo.n_rows": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.SplitInfo.class_distribution": {"qualname": 3, "fullname": 5, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.types.SplitInfo.positive_rate": {"qualname": 3, "fullname": 5, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.types.TabularSplits.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 166, "bases": 0, "doc": 3}, "ml.types.TabularSplits.X_train": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.X_val": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.X_test": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.y_train": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.y_val": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.y_test": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.git": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.git.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.git.MergeTarget": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.git.get_git_commit": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 43, "bases": 0, "doc": 44}, "ml.utils.git.is_descendant_commit": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 55}, "ml.utils.hashing": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.utils.hashing.hash_dict": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.utils.hashing.hash_dict.canonicalize": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 25}, "ml.utils.hashing.hash_dict.hash_dict": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 30}, "ml.utils.hashing.hash_list": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.hashing.hash_list.hash_list": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 45}, "ml.utils.hashing.hash_streaming": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.hashing.hash_streaming.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.hashing.hash_streaming.hash_streaming": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 35, "bases": 0, "doc": 40}, "ml.utils.hashing.service": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 51}, "ml.utils.hashing.service.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"qualname": 3, "fullname": 7, "annotation": 5, "default_value": 40, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.hashing.service.hash_file": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 32}, "ml.utils.hashing.service.hash_data": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 30}, "ml.utils.hashing.service.hash_artifact": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 30}, "ml.utils.hashing.service.hash_thresholds": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 29}, "ml.utils.loaders": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 39, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.loaders.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.loaders.load_yaml": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 31}, "ml.utils.loaders.load_json": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 44}, "ml.utils.loaders.read_data": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 35}, "ml.utils.pipeline_core": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.utils.pipeline_core.runner": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.pipeline_core.runner.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.pipeline_core.runner.PipelineRunner": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 13}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 28}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 36}, "ml.utils.pipeline_core.step": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.pipeline_core.step.PipelineStep": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 14}, "ml.utils.pipeline_core.step.PipelineStep.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.pipeline_core.step.PipelineStep.before": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 32}, "ml.utils.pipeline_core.step.PipelineStep.after": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 32}, "ml.utils.pipeline_core.step.PipelineStep.run": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 27}, "ml.utils.runtime": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.utils.runtime.gpu_info": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 38}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 31}, "ml.utils.runtime.gpu_info.get_gpu_info": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 33}, "ml.utils.runtime.runtime_info": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.utils.runtime.runtime_info.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.runtime_info.get_runtime_info": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 24}, "ml.utils.runtime.runtime_snapshot": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.runtime.runtime_snapshot.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 28}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 26}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 36}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 50}, "ml.utils.runtime.save_runtime": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.utils.runtime.save_runtime.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 12}, "ml.utils.snapshots": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.utils.snapshots.latest_snapshot": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.snapshots.latest_snapshot.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 33}, "ml.utils.snapshots.snapshot_path": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.snapshots.snapshot_path.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 37}}, "length": 2009, "save": true}, "index": {"qualname": {"root": {"1": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 1}}, "docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 34, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}}, "df": 12}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 8, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}}, "df": 3}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ExplainabilityError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}}, "df": 5}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}}, "df": 1}, "r": {"docs": {"ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 6, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}}, "df": 6}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 24}}}}}}}}, "s": {"docs": {"ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 3}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 11, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}}, "df": 6, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.EvaluationError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}}, "df": 3}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}}, "df": 2, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.registries.EVALUATORS": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 3}}}}, "v": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 11, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 5}}}}}}}}, "s": {"docs": {"ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}}, "df": 10}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}}, "df": 7}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.ECE": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.constants.EPSILON": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}}, "df": 25, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}}, "df": 3}}}}}}}}}}}, "s": {"docs": {"ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 9, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}}, "df": 3}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 7}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}}, "df": 1}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}}, "df": 13}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 10}}}, "l": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}}, "df": 7, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}}, "df": 15}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 12}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 3}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}}, "df": 14, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}}, "df": 2}}, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 4}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 2}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}}, "df": 23}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}}, "df": 2}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}}, "df": 4}}}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}}, "df": 6}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}}, "df": 2}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 3}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 7}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3}, "x": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"ml.promotion.config.models.MetricName.MAE": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 5}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}}, "df": 1, "l": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 36, "s": {"docs": {"ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}}, "df": 22, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 11, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 2}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}}, "df": 9}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 27, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}}, "df": 4}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.models.MetricName.R2": {"tf": 1}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 22}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}}, "df": 7}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 28, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}}, "df": 7}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}}, "df": 6}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}}, "df": 2}, "n": {"docs": {"ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}}, "df": 13, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}}, "df": 4}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.MSE": {"tf": 1}}, "df": 1}}}, "r": {"2": {"docs": {"ml.promotion.config.models.MetricName.R2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 5}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 23, "d": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}}, "df": 2}}}}}}, "g": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 12}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}}, "df": 2}}}, "d": {"docs": {"ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.validation.search.search.validate_search_record": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.models.MetricName.RECALL": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {"ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}}, "df": 4, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "m": {"docs": {"ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}}, "df": 3}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}}, "df": 4, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}}, "df": 2}}}, "c": {"docs": {"ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 49, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 21, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}}, "df": 5}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}}, "df": 17}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.RMSE": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}}, "df": 5}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 12, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}}, "df": 8}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}}, "df": 6}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 37}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.SearchError": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.registries.SEARCHERS": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 7}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}}, "df": 3}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}}, "df": 5, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}}, "df": 4}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 4}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}}, "df": 3}}}}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}}, "df": 16, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 4}}}}}}}}}, "s": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}}, "df": 3}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 6}}}}}}}}}, "e": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}}, "df": 7}}, "s": {"docs": {"ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 2}}, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 3}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}}, "df": 4}}}, "d": {"docs": {"ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}}, "df": 6}}}}}}, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.SplitInfo": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 7, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 5}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}}, "df": 3}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 26, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 1}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 13}}, "f": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.safe.safe": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.UserError": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 38, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}}, "df": 37}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}}, "df": 12}}}}}}, "s": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 5}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}}, "df": 5}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.DataError": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}}, "df": 5}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.types.DataLineageEntry": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}}, "df": 16}}}}}}}}}}}}}, "e": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}}, "df": 10, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}}, "df": 5}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}}, "df": 2}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}}, "df": 8}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {"ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {"ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 2}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}}, "df": 3}}}}}}}, "f": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}}, "df": 28, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 13}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}}, "df": 6}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 8}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PersistenceError": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 16}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 32, "s": {"docs": {"ml.promotion.context.PromotionContext.paths": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 4}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 4}}}}}, "r": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}}, "df": 3}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 6}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}}, "df": 16, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}}, "df": 3}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}}, "df": 9}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 5}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}}, "df": 7}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}}, "df": 7}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 10, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {"ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 9, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 15, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 12}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 6}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}}, "df": 4}}}}}}}}}, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 5}}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}}, "df": 6}}}}}, "k": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}}, "df": 23, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 13, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.TrainingError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}}, "df": 2}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}}, "df": 2}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}}, "df": 8}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}}, "df": 7}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.registries.TRAINERS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}}, "df": 7}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 15, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "o": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 3}}}}}}}, "p": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 8}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 11}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}}, "df": 8, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}}, "df": 5}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 14, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}}, "df": 8}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}}, "df": 17}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.TabularSplits": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}}, "df": 25, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}}, "df": 4}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 12, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}}}, "f": {"1": {"docs": {"ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}}, "df": 5}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1.4142135623730951}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}}, "df": 7}}}}}}}}, "d": {"docs": {"ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 35, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 26, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}}, "df": 3}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}}, "df": 6}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}}, "df": 4}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 3}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}}, "df": 7, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 12}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 6, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}}, "df": 24}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}}, "df": 7}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}}, "df": 5}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}}, "df": 19}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 3}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.adr.v1.AdrTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}, "d": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 8, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 3}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}}, "df": 12}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.args": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 2}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 9}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}}, "df": 4, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.AllowedModels": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 5}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "t": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}}, "df": 12}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}}, "df": 4}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 2}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 8}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}}, "df": 2}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {"ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}}, "df": 11}}}}}, "p": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 3}, "f": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}}, "df": 4, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}}, "df": 2}, "r": {"docs": {"ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 1}, "k": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 1}}, "l": {"2": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 168}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 11, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}}, "df": 3}}}}}, "f": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}}, "df": 6}, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 27, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}}, "df": 15}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 4}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}}, "df": 16, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 34}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}}, "df": 4}}}}}, "t": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}}, "df": 11}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 1}, "o": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}}, "df": 40}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}}, "df": 5}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 15, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 4}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 11}}}}}}}}, "l": {"docs": {"ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 5, "o": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}}, "df": 48, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 10}}}}}}, "s": {"docs": {"ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 16, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}}, "df": 9, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}}, "df": 9}}}}}}}}}}, "b": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 4}, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 36}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 8}}}, "n": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}}, "df": 21, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}}, "df": 6}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}}, "df": 5}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}}, "df": 6}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}}, "df": 8}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}}, "df": 3}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "o": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 6}}}}}}}, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 1}}}}}}}}, "k": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}}, "df": 11, "s": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}}, "df": 5}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}}, "df": 11}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}}, "df": 4}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}}, "df": 7}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 3}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 4, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 3}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}}, "df": 12, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 6}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}}, "df": 5, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}}, "df": 8}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 8}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 62}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 6}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}}, "df": 2}}}, "w": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}}, "df": 11, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 87}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}}, "df": 4}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 30}}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 4}}}, "s": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "k": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}}, "df": 3}}}}, "y": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 2}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}}, "df": 5}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.utils.loaders.load_json": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"1": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}}, "df": 3}}, "docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 34, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.exceptions.ConfigError": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.metadata.validation.search.search": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.models.MetricName.R2": {"tf": 1}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.constants.EPSILON": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.types": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 2009, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 3}}}}}, "x": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}}, "df": 6}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}}, "df": 11, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"ml.promotion.config.models.MetricName.MAE": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 12}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 5}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}}, "df": 1, "l": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}}, "df": 249, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.models.MetricName.R2": {"tf": 1}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 275, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}}, "df": 22, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}}, "df": 117}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 20, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 2}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}}, "df": 14}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}}, "df": 60, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}}, "df": 4}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.models.MetricName.R2": {"tf": 1}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 22}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}}, "df": 7}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.search": {"tf": 1}, "ml.metadata.validation.search.search": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 297, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}}, "df": 7}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}}, "df": 6}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}}, "df": 2}, "n": {"docs": {"ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}}, "df": 15, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}}, "df": 4}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.MSE": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}}, "df": 15}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 33, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}}, "df": 4}}}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}}, "df": 6}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}}, "df": 11}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.logger": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.7320508075688772}, "ml.config.hashing": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.merge": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.logger": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.models.MetricName.R2": {"tf": 1}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 547, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}}, "df": 3}}}}}}}}}}}, "s": {"docs": {"ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 17, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}}, "df": 3}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.logger": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.Stage": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.EPSILON": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}}, "df": 114}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}}, "df": 9}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 96}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 12}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 66}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 4}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}}, "df": 19}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 7}}}}}, "e": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "l": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}}, "df": 9, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}}, "df": 15}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}}, "df": 14, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}}, "df": 2}}, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 13}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 9}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 108, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 2}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 7}}}}}}}}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 104}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}}, "df": 23}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}}, "df": 2}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 10}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}}, "df": 2}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.exceptions.ConfigError": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}}, "df": 12}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1.4142135623730951}}, "df": 13}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 87, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}}, "df": 3}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ExplainabilityError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}}, "df": 5}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}}, "df": 1}, "r": {"docs": {"ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 42}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}}, "df": 43, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}}, "df": 6}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 24}}}}}}}}, "s": {"docs": {"ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 13}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 3}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}}, "df": 6, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}}, "df": 90, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.EvaluationError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}}, "df": 3}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}}, "df": 2, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.registries.EVALUATORS": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 26}}}, "e": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 38}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}}, "df": 5}}}}, "v": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 11, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 5}}}}}}}}, "s": {"docs": {"ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}}, "df": 3}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}}, "df": 10}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}}, "df": 13}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.ECE": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.constants.EPSILON": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 75, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 33}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}}, "df": 13, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 13}}}, "w": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"2": {"docs": {"ml.promotion.config.models.MetricName.R2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}}, "df": 10, "r": {"docs": {"ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.result": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 12, "s": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}}, "df": 12}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 23, "d": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 5}}}}}}, "g": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 17}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}}, "df": 11}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 5, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}}, "df": 17}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}}, "df": 2}}}, "d": {"docs": {"ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.validation.search.search.validate_search_record": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.models.MetricName.RECALL": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {"ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}}, "df": 18, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "m": {"docs": {"ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.4142135623730951}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.row_count": {"tf": 1}}, "df": 24, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}}, "df": 8}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}}, "df": 3}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}}, "df": 2}}}, "c": {"docs": {"ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 60, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1.4142135623730951}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1.7320508075688772}}, "df": 84, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}}, "df": 5}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}}, "df": 17}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 296, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.RMSE": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}}, "df": 7}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1.7320508075688772}, "ml.metadata.validation.search": {"tf": 1}, "ml.metadata.validation.search.search": {"tf": 1.4142135623730951}, "ml.metadata.validation.search.search.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1.7320508075688772}, "ml.search": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1.4142135623730951}, "ml.search.models": {"tf": 1}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases.broad": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases.narrow": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1.4142135623730951}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.7320508075688772}, "ml.search.searchers.output": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.logger": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 237, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}}, "df": 8}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}}, "df": 6}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 37}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.4142135623730951}}, "df": 5, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.SearchError": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.registries.SEARCHERS": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 86}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 7}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 7}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 6}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}}, "df": 3}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}}, "df": 8, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}}, "df": 5, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}}, "df": 4}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}}, "df": 5}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.service": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 12}}}}}, "t": {"docs": {"ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}}, "df": 7, "s": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 4}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}}, "df": 3}}}}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}}, "df": 27, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 4}}}}}}}}}, "s": {"docs": {"ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}}, "df": 523}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 6}}}}}}}}}, "e": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}}, "df": 17}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}}, "df": 7}}, "s": {"docs": {"ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 6, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {"ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}}, "df": 3, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}}, "df": 13}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 160}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 3}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}}, "df": 58}}}, "d": {"docs": {"ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}}, "df": 122}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 5, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}}, "df": 6}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.logger": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.SPLIT": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}}, "df": 8}}}}, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 12}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.SplitInfo": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}}, "df": 9, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}}, "df": 99, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 5}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}}, "df": 3}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 55, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 10}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 33}}, "f": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}}, "df": 2}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 189}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.UserError": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 3}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 2}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.logger": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.logger": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.7320508075688772}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1.7320508075688772}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 319, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}}, "df": 37}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}}, "df": 12}}}}}}, "s": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 5}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}}, "df": 5}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.DataError": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}}, "df": 5}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.types.DataLineageEntry": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}}, "df": 16}}}}}}}}}}}}}, "e": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}}, "df": 15, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}}, "df": 5}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1.4142135623730951}}, "df": 5}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}}, "df": 8}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}}, "df": 32}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {"ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {"ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 2}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}}, "df": 3}}}}}}}, "f": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 177, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 13}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {"ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}}, "df": 40, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 5}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}}, "df": 6}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "t": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 9, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 8}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}}, "df": 16, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 91, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PersistenceError": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}}, "df": 5}}}}}}}, "r": {"docs": {"ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}}, "df": 57}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 34, "s": {"docs": {"ml.promotion.context.PromotionContext.paths": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 4}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 21}}}}}}}, "r": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}}, "df": 3}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}}, "df": 48, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 6}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 22}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.policies.promotion": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.models.MetricName.R2": {"tf": 1}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.EPSILON": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1.4142135623730951}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1.4142135623730951}}, "df": 251, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}}, "df": 3}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}}, "df": 9}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 5}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}}, "df": 7}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}}, "df": 7}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 10, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}, "e": {"docs": {"ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 44, "d": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {"ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 15, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 15, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 14, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 6}}}}}}}}}, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 29}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}}, "df": 7, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}}, "df": 16, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 5}}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}}, "df": 6}}}}}, "k": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}}, "df": 33, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 83, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.TrainingError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}}, "df": 2}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}}, "df": 2}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}}, "df": 8}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}}, "df": 7}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.registries.TRAINERS": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 12}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}}, "df": 7}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 17, "s": {"docs": {"ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}}, "df": 4}}, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 37, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "o": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 8, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}}, "df": 7, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 3}}}}}}}, "p": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 8}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 11}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}}, "df": 8, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}}, "df": 5}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 26, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}}, "df": 8}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "s": {"docs": {"ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 29, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 133, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}}, "df": 17}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.TabularSplits": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}}, "df": 27, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.types": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 39}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 11, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}}, "df": 4}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 11, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 14, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 68, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}}, "df": 7}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 3}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}}, "df": 18}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}}, "df": 4}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 4, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 3}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 13}}}}}, "l": {"docs": {"ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}}, "df": 3}, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}}, "df": 12, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}}, "df": 12, "s": {"docs": {"ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 21}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1.4142135623730951}}, "df": 14, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}}, "df": 8}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 10, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"1": {"docs": {"ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}}, "df": 4}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}}, "df": 5}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1.4142135623730951}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}}, "df": 12}}}}}}}}, "d": {"docs": {"ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1.4142135623730951}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 302, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.logger": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 138, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}}, "df": 3}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}}, "df": 6}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}}, "df": 4}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 3}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}}, "df": 9, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 14, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 10}}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}}, "df": 1}, "y": {"docs": {"ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 12}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 209}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 161, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}}, "df": 24}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}}, "df": 7}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}}, "df": 5}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}}, "df": 19}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}}, "df": 9, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 3}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.adr.v1.AdrTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}, "d": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}}, "df": 17, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 12}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 17, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 3}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}}, "df": 3}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}}, "df": 22}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.args": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 2}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 18}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}}, "df": 6, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.AllowedModels": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 5}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "t": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}}, "df": 12}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}}, "df": 4}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 2}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 8}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}}, "df": 2}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {"ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 44}}}}}, "p": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 12, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 3}, "f": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}}, "df": 4, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}}, "df": 2}, "r": {"docs": {"ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 1}, "k": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 1}}, "l": {"2": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 168}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1.4142135623730951}}, "df": 5}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 20}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 11, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.loader": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 18, "s": {"docs": {"ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 6}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 29}}}}}, "w": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}}, "df": 3}}}}}, "f": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}}, "df": 6}, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 53, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}}, "df": 15}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}}, "df": 5}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}}, "df": 16, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 34}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}}, "df": 4}}}}}, "t": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 124, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}}, "df": 11}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 1}, "o": {"docs": {"ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}}, "df": 5}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}}, "df": 40}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}}, "df": 5}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}}, "df": 7, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1.4142135623730951}}, "df": 69, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}}, "df": 1}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}}, "df": 7}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}, "l": {"docs": {"ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 5, "o": {"docs": {"ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}}, "df": 2}}, "d": {"docs": {"ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.4142135623730951}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}}, "df": 58, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 15}}}}}}, "s": {"docs": {"ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 4}}, "o": {"docs": {"ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 15}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}}, "df": 21, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}}, "df": 9, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}}, "df": 9}}}}}}}}}}, "b": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 4}, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 5}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 71, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.getters": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}}, "df": 7}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 14}}}, "n": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}}, "df": 21, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}}, "df": 8}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1.4142135623730951}}, "df": 17, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}}, "df": 5}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}}, "df": 6}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}}, "df": 8}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}}, "df": 3}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "o": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"1": {"docs": {"ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 14}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}}, "df": 11, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.metadata.validation.search.search": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}}, "df": 128, "s": {"docs": {"ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 27}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 137}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 30}}}}}}}, "k": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}}, "df": 7}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 21}}}, "s": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "k": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}}, "df": 5}}}}, "y": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 2}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}}, "df": 5}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.utils.loaders.load_json": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"1": {"docs": {}, "df": 0, ":": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "m": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 2}}}, "docs": {"ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 2}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1.4142135623730951}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.merge_how": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1.4142135623730951}, "ml.types.SplitInfo.positive_rate": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}}, "df": 731, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}}, "df": 1, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}}, "df": 27}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 10}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 18}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 8}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 21}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 14, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "g": {"1": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 2, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 2}}, "z": {"4": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}}, "df": 45, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}}, "df": 40}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 36, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}}, "df": 5}}}, "f": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 160}}, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "q": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}}, "df": 1}, "g": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.7320508075688772}}, "df": 3}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 5}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionContext.args": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 39}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 18, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 8}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}}, "df": 3}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}}, "df": 10}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}}, "df": 10, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}}, "df": 21}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 175}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}}, "df": 29, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 54, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 24}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.7320508075688772}}, "df": 3}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 27}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 4}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 2}, "ml.types.DataLineageEntry.merge_validate": {"tf": 2}}, "df": 2}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}}, "df": 1}}}}}}}}}}}, ":": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "m": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 121, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}}, "df": 11}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 27}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}}, "df": 26}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.constants.output.TrainOutput.model": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}}, "df": 119}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}}, "df": 268, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}}, "df": 8}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1.4142135623730951}}, "df": 21, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.y_train": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.y_val": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.y_test": {"tf": 1.4142135623730951}}, "df": 10}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 24}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 3}}}}}}}}, "q": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}}, "df": 8}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}}, "df": 2}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 29}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 4, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1.4142135623730951}}, "df": 8}}}}}, "a": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}}, "df": 56, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}}, "df": 21}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 33, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 20}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 10}, "[": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "s": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}}, "df": 9, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 2}, "ml.types.DataLineageEntry.merge_validate": {"tf": 2}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}}, "df": 3}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}}, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionContext.args": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 2}, "ml.types.DataLineageEntry.merge_validate": {"tf": 2}}, "df": 2}}}, "x": {"2": {"7": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 4}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 3.1622776601683795}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 2}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 2.8284271247461903}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 2}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 2.8284271247461903}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.compression": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 4}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 2}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 2}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 2.8284271247461903}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 3.1622776601683795}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 3.1622776601683795}, "ml.types.DataLineageEntry.merge_how": {"tf": 3.1622776601683795}, "ml.types.DataLineageEntry.merge_validate": {"tf": 4}}, "df": 28}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "q": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.4142135623730951}}, "df": 3}}}}, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1.4142135623730951}}, "df": 4, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}}, "df": 3}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 5, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}}, "df": 3}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}}, "df": 1}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}}, "df": 1, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 2}}, "e": {"docs": {"ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 1}, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1.4142135623730951}}, "df": 7}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}}, "df": 10, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}}, "df": 2}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "s": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 26, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.paths": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}}, "df": 6}}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 3}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 18, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}}, "df": 17}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 26}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}}, "df": 1}}}}}}, "z": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 1}}}}}}}}}}}, "default_value": {"root": {"0": {"6": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 1}, "8": {"docs": {"ml.promotion.constants.constants.EPSILON": {"tf": 1}}, "df": 1}, "docs": {"ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 5.385164807134504}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 44.69899327725402}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 3.605551275463989}}, "df": 8}, "1": {"0": {"0": {"0": {"0": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 2}, "docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}}, "df": 1}, "docs": {"ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 3}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 2}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.23606797749979}}, "df": 5, ":": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "m": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}}, "e": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.promotion.constants.constants.EPSILON": {"tf": 1}}, "df": 2}, "d": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}}, "df": 1}}, "2": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"5": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 2}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "3": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "4": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "b": {"2": {"4": {"1": {"3": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"2": {"docs": {}, "df": 0, "d": {"2": {"8": {"7": {"1": {"4": {"0": {"6": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "e": {"1": {"docs": {}, "df": 0, "e": {"7": {"6": {"3": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"4": {"3": {"0": {"6": {"docs": {}, "df": 0, "e": {"4": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "b": {"1": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"8": {"3": {"4": {"docs": {}, "df": 0, "a": {"2": {"9": {"docs": {}, "df": 0, "e": {"1": {"4": {"5": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"0": {"docs": {}, "df": 0, "f": {"3": {"9": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "5": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "6": {"0": {"0": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "7": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "8": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "9": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 5}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 3}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 3.605551275463989}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.logger": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.logger": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.logger": {"tf": 1.4142135623730951}, "ml.config.best_params.logger": {"tf": 1.4142135623730951}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1.4142135623730951}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.logger": {"tf": 1.4142135623730951}, "ml.config.hashing.logger": {"tf": 1.4142135623730951}, "ml.config.loader.logger": {"tf": 1.4142135623730951}, "ml.config.merge.logger": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.logger": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.validation.logger": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.logger": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.logger": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.logger": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.logger": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.logger": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_min_rows.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 2}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.logger": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.logger": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.required_fields": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.logger": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 3}, "ml.features.loading.get_target.logger": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.logger": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.logger": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.logger": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.logger": {"tf": 1.4142135623730951}, "ml.io.formatting.str_to_bool.logger": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata.logger": {"tf": 1.4142135623730951}, "ml.io.validation.validate_mapping.logger": {"tf": 1.4142135623730951}, "ml.logging_config.LOG_FORMAT": {"tf": 2.449489742783178}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.processed.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.search.search.logger": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.logger": {"tf": 1.4142135623730951}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.logger": {"tf": 1.4142135623730951}, "ml.modeling.validation.runtime_info.logger": {"tf": 1.4142135623730951}, "ml.pipelines.builders.logger": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1.4142135623730951}, "ml.pipelines.models.VALID_STEPS": {"tf": 1.4142135623730951}, "ml.pipelines.validation.logger": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4.242640687119285}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 2}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 6.324555320336759}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.4142135623730951}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 3.1622776601683795}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.logger": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1.4142135623730951}, "ml.promotion.config.models.logger": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.F1": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.R2": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1.4142135623730951}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.logger": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 2}, "ml.promotion.getters.get.logger": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.logger": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.logger": {"tf": 1.4142135623730951}, "ml.promotion.persister.logger": {"tf": 1.4142135623730951}, "ml.promotion.service.logger": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.logger": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.logger": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.logger": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.logger": {"tf": 1.4142135623730951}, "ml.registries.FEATURE_OPERATORS": {"tf": 2.449489742783178}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 2}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 2}, "ml.registries.OP_MAP": {"tf": 3.1622776601683795}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2.449489742783178}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 2.23606797749979}, "ml.registries.EVALUATORS": {"tf": 2}, "ml.registries.EXPLAINERS": {"tf": 1.7320508075688772}, "ml.registries.SEARCHERS": {"tf": 1.7320508075688772}, "ml.registries.TRAINERS": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1.4142135623730951}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.logger": {"tf": 1.4142135623730951}, "ml.search.params.refiners.logger": {"tf": 1.4142135623730951}, "ml.search.params.utils.logger": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.logger": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1.4142135623730951}, "ml.search.utils.get_searcher.logger": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.targets.base.logger": {"tf": 1.4142135623730951}, "ml.types.LatestSnapshot.LATEST": {"tf": 1.4142135623730951}, "ml.types.AllowedModels": {"tf": 1}, "ml.utils.git.logger": {"tf": 1.4142135623730951}, "ml.utils.git.MergeTarget": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.logger": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2.449489742783178}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2.449489742783178}, "ml.utils.loaders.logger": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.logger": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.logger": {"tf": 1.4142135623730951}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1.4142135623730951}}, "df": 321, "l": {"2": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 2.8284271247461903}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.models.MetricName.R2": {"tf": 1}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 2.449489742783178}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 4.123105625617661}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2.23606797749979}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 219, "e": {"docs": {"ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 2}, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1.4142135623730951}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 168}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 5}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.utils.loaders.logger": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}}, "df": 7}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 10}}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "f": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1.4142135623730951}}, "df": 3}, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "x": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 2.8284271247461903}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot.LATEST": {"tf": 1.4142135623730951}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot.LATEST": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 2.8284271247461903}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}}, "df": 13, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.classification": {"tf": 1.4142135623730951}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.EVALUATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1.4142135623730951}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 19, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.logger": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}}, "df": 1}}}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 4, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.SPLIT": {"tf": 2}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1.4142135623730951}, "ml.types.AllowedModels": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}}, "df": 5}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1.4142135623730951}}, "df": 1}, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1.7320508075688772}, "ml.registries.TRAINERS": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1.4142135623730951}}, "df": 20, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1}}, "df": 3}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.SEARCHERS": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.TRAINERS": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}}, "df": 13}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}, "f": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}}, "df": 2}}}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.4142135623730951}}, "df": 3}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}}, "df": 1}}}, "x": {"2": {"7": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 4}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 4.898979485566356}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1.4142135623730951}, "ml.config.best_params.MergeTarget": {"tf": 2.449489742783178}, "ml.config.best_params.MODEL_KEYS": {"tf": 3.7416573867739413}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 2}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 6.164414002968976}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 4}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 2.8284271247461903}, "ml.features.loading.data_loader.required_fields": {"tf": 4.898979485566356}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 6.48074069840786}, "ml.logging_config.LOG_FORMAT": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 3.1622776601683795}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 2.8284271247461903}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.pipelines.models.VALID_STEPS": {"tf": 3.1622776601683795}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 8}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 2.8284271247461903}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 67.11184694225007}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.4142135623730951}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 4}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 2}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.F1": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.R2": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1.4142135623730951}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.Stage": {"tf": 2}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 2}, "ml.registries.FEATURE_OPERATORS": {"tf": 4}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 2.8284271247461903}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 4.242640687119285}, "ml.registries.OP_MAP": {"tf": 4}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 4.242640687119285}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 3.4641016151377544}, "ml.registries.EVALUATORS": {"tf": 2.8284271247461903}, "ml.registries.EXPLAINERS": {"tf": 2}, "ml.registries.SEARCHERS": {"tf": 2}, "ml.registries.TRAINERS": {"tf": 2}, "ml.search.constants.SEARCH_PHASES": {"tf": 2}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 2.449489742783178}, "ml.types.LatestSnapshot.LATEST": {"tf": 1.4142135623730951}, "ml.utils.git.MergeTarget": {"tf": 2.449489742783178}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2.8284271247461903}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2.8284271247461903}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1.4142135623730951}}, "df": 147}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 2.8284271247461903}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 179, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 2}}, "df": 1}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}}, "df": 3}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.validation.validate_mapping.logger": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "x": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.8284271247461903}}, "df": 1, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "e": {"docs": {"ml.promotion.config.models.MetricName.MAE": {"tf": 1.4142135623730951}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 20, "s": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}}, "df": 7}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 4}}}, "z": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 3}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.4142135623730951}}, "df": 21}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1.4142135623730951}}, "df": 7, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.models.MetricName.R2": {"tf": 1}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 21}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}, "n": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1.4142135623730951}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.7320508075688772}}, "df": 3}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.utils.memory.compute_memory_change.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1.4142135623730951}}, "df": 1}}}}}, ":": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "m": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "g": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.MSE": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 2.8284271247461903}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1.4142135623730951}}, "df": 1}, "r": {"docs": {"ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}}, "df": 8}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.persistence.persist_experiment.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}}, "df": 2}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}}, "df": 5}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.registries.EVALUATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}}, "df": 3}}}}, "v": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "e": {"docs": {"ml.promotion.config.models.MetricName.ECE": {"tf": 1.4142135623730951}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "q": {"docs": {"ml.registries.OP_MAP": {"tf": 1}}, "df": 1}}, "g": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 2.8284271247461903}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.F1": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.models.MetricName.R2": {"tf": 1}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 2.449489742783178}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 4.123105625617661}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2.23606797749979}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 219, "e": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 2}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1.4142135623730951}}, "df": 1}}, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 2}}}, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}}, "df": 16, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.getters.get.logger": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "t": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 29, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"6": {"4": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}, "y": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}, "s": {"docs": {"ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "j": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}}, "df": 16, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {"ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}}, "df": 22, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {"ml.promotion.persister.logger": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.best_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}}, "df": 5}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.8284271247461903}}, "df": 1}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.4142135623730951}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.4142135623730951}}, "df": 5}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 2}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.splitting.splitting.SPLIT": {"tf": 1.7320508075688772}}, "df": 1}}}}, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 344}}}}}}}}}}}}}}}, "f": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {"ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1.4142135623730951}}, "df": 1, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.process_data.logger": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 3}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}}, "df": 14}}}, "e": {"docs": {"ml.metadata.validation.promotion.promote.logger": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}}, "df": 7}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}}, "df": 2}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "w": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 2}}, "df": 1, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.metadata.validation.search.search.logger": {"tf": 1.4142135623730951}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1.4142135623730951}}, "df": 20, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.get_searcher.logger": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.registries.SEARCHERS": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}}, "df": 7}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.SPLIT": {"tf": 2}}, "df": 5}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.service.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.segmentation.segment.logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {"ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}}, "df": 2}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {"ml.promotion.state_loader.logger": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {"ml.io.formatting.str_to_bool.logger": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}}, "df": 16}}}, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}}, "df": 7}}}, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1.4142135623730951}}, "df": 1}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}}, "df": 4}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1.4142135623730951}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.logger": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting.splitting.logger": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}}, "df": 10}}, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 3}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}}, "df": 14}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.get_trainer.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.registries.TRAINERS": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.features.transforms.transform_target.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.features.transforms.transform_target.logger": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.7320508075688772}}, "df": 9}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}}, "df": 8}}}, "o": {"docs": {"ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 2}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 10}}}, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 2}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.models.MetricSet.TEST": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 2}}}, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}}, "df": 4}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 14, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.targets.base.logger": {"tf": 1}}, "df": 2}}}}}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 6}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.splitting.splitting.SPLIT": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.promotion.comparisons.thresholds.logger": {"tf": 1}}, "df": 1}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "j": {"docs": {}, "df": 0, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 2}}}, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 3, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1.4142135623730951}}, "df": 3}, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 7, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.4142135623730951}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}}, "df": 3}}}}}}}, "g": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 4}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}}, "df": 5}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}}}, "w": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "f": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "e": {"docs": {"ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1.4142135623730951}}, "df": 1}}, "j": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.4142135623730951}}, "df": 2}}}}, "f": {"1": {"docs": {"ml.promotion.config.models.MetricName.F1": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}}, "df": 2}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 30, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 20, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 3.605551275463989}}, "df": 8}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 2.8284271247461903}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2}}, "df": 5}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}}, "df": 20}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 14, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.SPLIT": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "m": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "j": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 5, "f": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 2}}, "df": 1}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "e": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 145}}, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}}}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "e": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.7320508075688772}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.8284271247461903}}, "df": 1}}}}}}, "q": {"docs": {"ml.registries.OP_MAP": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}}, "df": 4}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}}, "df": 2}}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "l": {"docs": {"ml.io.formatting.str_to_bool.logger": {"tf": 1}}, "df": 1}}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.builders.logger": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}}, "df": 4}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "h": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}}, "df": 2}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.models.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 168}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}}, "df": 1}}}}}}}}}}}, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 3.7416573867739413}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.models.MetricSet.VAL": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}}, "df": 33, "s": {"docs": {"ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 8}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.promotion.validation.validate.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}}, "df": 23}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 4}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "r": {"2": {"docs": {"ml.promotion.config.models.MetricName.R2": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.regression": {"tf": 1.4142135623730951}, "ml.registries.EVALUATORS": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}}, "df": 2, "r": {"docs": {"ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 2, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "f": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.logger": {"tf": 1}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.models.MetricName.RECALL": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.7320508075688772}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search.logger": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 5}}, "w": {"docs": {"ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.data.validation.validate_min_rows.logger": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 3, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}, "t": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}, "c": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1.4142135623730951}}, "df": 2}, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}}, "df": 3, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.pipeline_core.runner.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}}, "df": 49}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.logger": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.MetricName.RMSE": {"tf": 1.4142135623730951}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "n": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1.4142135623730951}}, "df": 6, "t": {"1": {"6": {"docs": {"ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}, "8": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}}, "df": 13}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}}, "df": 4}}}}, "o": {"docs": {"ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}}, "df": 2}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}}, "df": 4}}, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "f": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}}, "df": 1}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 2, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {"ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}}, "df": 3}, "r": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "q": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "h": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 5}}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 38}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "z": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "f": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.8284271247461903}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}, "signature": {"root": {"1": {"0": {"4": {"8": {"5": {"7": {"6": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}, "docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}}, "df": 2, ":": {"1": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "m": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}, "2": {"0": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "3": {"9": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 2.8284271247461903}, "ml.config.loader.load_config": {"tf": 3.7416573867739413}, "ml.config.loader.load_and_validate_config": {"tf": 2.449489742783178}, "ml.config.validation.validate_model_config": {"tf": 2}, "ml.data.config.validate_config.validate_config": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 5.477225575051661}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 2}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 2}, "ml.features.splitting.splitting.get_splits": {"tf": 2}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 2.8284271247461903}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 3.1622776601683795}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2.8284271247461903}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 2.8284271247461903}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 2.8284271247461903}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 2}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 2}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 3.1622776601683795}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 2}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 3.7416573867739413}, "ml.types.DataLineageEntry.__init__": {"tf": 5.0990195135927845}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}}, "df": 24}, "docs": {}, "df": 0}, "5": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 1}, "docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 4}, "ml.components.base.PipelineComponent.fit": {"tf": 4.69041575982343}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 4.69041575982343}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 3.7416573867739413}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 3.7416573867739413}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 3.7416573867739413}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 6.6332495807108}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 5.656854249492381}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 4.69041575982343}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 3.7416573867739413}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 4.47213595499958}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 6.6332495807108}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 3.7416573867739413}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 2.8284271247461903}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 3.7416573867739413}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 2.8284271247461903}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 4.69041575982343}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 3.7416573867739413}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 2.8284271247461903}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 3.7416573867739413}, "ml.config.best_params.unflatten_best_params": {"tf": 6.6332495807108}, "ml.config.best_params.apply_best_params": {"tf": 10.816653826391969}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 9.539392014169456}, "ml.config.hashing.compute_model_config_hash": {"tf": 5.477225575051661}, "ml.config.hashing.add_config_hash": {"tf": 9.539392014169456}, "ml.config.loader.load_config": {"tf": 13.152946437965905}, "ml.config.loader.load_and_validate_config": {"tf": 11.313708498984761}, "ml.config.merge.deep_merge": {"tf": 6.855654600401044}, "ml.config.merge.resolve_extends": {"tf": 8.888194417315589}, "ml.config.merge.apply_env_overlay": {"tf": 9.327379053088816}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 3.7416573867739413}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 3.7416573867739413}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 3.7416573867739413}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 3.1622776601683795}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 3.1622776601683795}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 3.1622776601683795}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 5.5677643628300215}, "ml.config.validation.validate_model_config": {"tf": 9.539392014169456}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 3.1622776601683795}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 3.7416573867739413}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 3.1622776601683795}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 3.1622776601683795}, "ml.data.config.validate_config.validate_config": {"tf": 9.219544457292887}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 7.483314773547883}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 9.219544457292887}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 7.483314773547883}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 12.449899597988733}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 6.164414002968976}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 7.14142842854285}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 16.522711641858304}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 14.2828568570857}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 8.717797887081348}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 3}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 8.717797887081348}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 3.1622776601683795}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 7.0710678118654755}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 10}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 10}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 7.0710678118654755}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 7.416198487095663}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 5.291502622129181}, "ml.data.utils.persistence.save_data.save_data": {"tf": 10.295630140987}, "ml.data.validation.validate_data.validate_data": {"tf": 5.744562646538029}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 6}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 5.830951894845301}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 4.898979485566356}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 10.862780491200215}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 6.4031242374328485}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 7.0710678118654755}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 3.7416573867739413}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 3.7416573867739413}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 3.7416573867739413}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 3.7416573867739413}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 8.602325267042627}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 7.810249675906654}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 9.746794344808963}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 6.164414002968976}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 8.306623862918075}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 12.84523257866513}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 17.435595774162696}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 8.366600265340756}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 2.8284271247461903}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 8.366600265340756}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 8.366600265340756}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 8.366600265340756}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 10.862780491200215}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 9.486832980505138}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 3.1622776601683795}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 2.6457513110645907}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 10.099504938362077}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 5.744562646538029}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 4}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 3.1622776601683795}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 10.04987562112089}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 4.47213595499958}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 5.291502622129181}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 5.291502622129181}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 4.47213595499958}, "ml.features.hashing.safe.safe": {"tf": 3.4641016151377544}, "ml.features.loading.data_loader.lineage_identity": {"tf": 5.656854249492381}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 7.0710678118654755}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 13.856406460551018}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 8.306623862918075}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 9.797958971132712}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 8.246211251235321}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 6.782329983125268}, "ml.features.loading.schemas.load_schemas": {"tf": 10.862780491200215}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 8.12403840463596}, "ml.features.splitting.splitting.random_split": {"tf": 12.727922061357855}, "ml.features.splitting.splitting.split_data": {"tf": 12.328828005937952}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 11.832159566199232}, "ml.features.splitting.splitting.get_splits": {"tf": 12.767145334803704}, "ml.features.transforms.transform_target.transform_target": {"tf": 9}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 9.486832980505138}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 3.4641016151377544}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 9.746794344808963}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 8.48528137423857}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 7.681145747868608}, "ml.features.validation.validate_operators.validate_operators": {"tf": 7.14142842854285}, "ml.features.validation.validate_set.validate_set": {"tf": 5.656854249492381}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 3.7416573867739413}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 5.830951894845301}, "ml.features.validation.validate_target.validate_target": {"tf": 10.099504938362077}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 3.1622776601683795}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 3.1622776601683795}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 7.14142842854285}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 5.830951894845301}, "ml.logging_config.setup_logging": {"tf": 5.830951894845301}, "ml.logging_config.add_file_handler": {"tf": 6.164414002968976}, "ml.logging_config.bootstrap_logging": {"tf": 4}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 6.082762530298219}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 6.082762530298219}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 6}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 7.14142842854285}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 10.04987562112089}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 7.14142842854285}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 7.14142842854285}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 7.14142842854285}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 6}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 12.68857754044952}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 6.164414002968976}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 10.770329614269007}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 10.908712114635714}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 3.1622776601683795}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 6.082762530298219}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 6.082762530298219}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 6.557438524302}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 5.656854249492381}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 5.744562646538029}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 5.656854249492381}, "ml.pipelines.builders.build_pipeline": {"tf": 11.445523142259598}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 6.48074069840786}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 7.745966692414834}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 4.47213595499958}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 5.477225575051661}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 4.47213595499958}, "ml.pipelines.operator_factory.build_operators": {"tf": 6.164414002968976}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 5.744562646538029}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 10.862780491200215}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 6.557438524302}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 3.7416573867739413}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 9.16515138991168}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 13.490737563232042}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 9.055385138137417}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 11.090536506409418}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 3.1622776601683795}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 9.539392014169456}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 11.532562594670797}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 6}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 8.602325267042627}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 10.392304845413264}, "ml.promotion.context.PromotionContext.__init__": {"tf": 9.591663046625438}, "ml.promotion.context.build_context": {"tf": 5.656854249492381}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 7.937253933193772}, "ml.promotion.getters.get.extract_thresholds": {"tf": 5.656854249492381}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 6.082762530298219}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 4.47213595499958}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 12.727922061357855}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 12.922847983320086}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 11.74734012447073}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 6.708203932499369}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 8.602325267042627}, "ml.promotion.result.PromotionResult.__init__": {"tf": 9.591663046625438}, "ml.promotion.service.PromotionService.__init__": {"tf": 2}, "ml.promotion.service.PromotionService.run": {"tf": 5.477225575051661}, "ml.promotion.state.PromotionState.__init__": {"tf": 11.357816691600547}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 6.782329983125268}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 8.18535277187245}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 5.656854249492381}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 5.656854249492381}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 6.855654600401044}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 7.211102550927978}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 5.744562646538029}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 6.48074069840786}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 6.082762530298219}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 5.744562646538029}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 11.532562594670797}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 9.486832980505138}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 10}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 10}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 8.06225774829855}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 10.862780491200215}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 12.12435565298214}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 12.409673645990857}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 7.745966692414834}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 12.922847983320086}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 11.832159566199232}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 10}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 14.866068747318506}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 11.74734012447073}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 8.366600265340756}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 7.0710678118654755}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 6}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 8.246211251235321}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 7.937253933193772}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 9.273618495495704}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 2.8284271247461903}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 6}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 7.54983443527075}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 6}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 7.54983443527075}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 9.273618495495704}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 6.4031242374328485}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 12.569805089976535}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 12.727922061357855}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 9.797958971132712}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 9.219544457292887}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 14.247806848775006}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 8.426149773176359}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 6}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 4.47213595499958}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 8.831760866327848}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 4.47213595499958}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 8.18535277187245}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 7.615773105863909}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 8.831760866327848}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 6}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 6.782329983125268}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 7.14142842854285}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 11.224972160321824}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 4.47213595499958}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 5.656854249492381}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 5.656854249492381}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 5.656854249492381}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 5.656854249492381}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 10.908712114635714}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 5.291502622129181}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 6.324555320336759}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 14.45683229480096}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 10.908712114635714}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 10.908712114635714}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 13.076696830622021}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 6}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 6.782329983125268}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 6.782329983125268}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 5.656854249492381}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 4.242640687119285}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 12.609520212918492}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 6.855654600401044}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 9.539392014169456}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 5.291502622129181}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 5.0990195135927845}, "ml.search.params.refiners.refine_int": {"tf": 4.69041575982343}, "ml.search.params.refiners.refine_float_mult": {"tf": 5.477225575051661}, "ml.search.params.refiners.refine_border_count": {"tf": 3.1622776601683795}, "ml.search.params.utils.get_default_int_params": {"tf": 4.69041575982343}, "ml.search.params.utils.get_default_float_params": {"tf": 5.5677643628300215}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 13.45362404707371}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 12}, "ml.search.searchers.base.Searcher.search": {"tf": 10.099504938362077}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 10.099504938362077}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 10.295630140987}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 22.847319317591726}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 8.366600265340756}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 8.366600265340756}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 8.366600265340756}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 7.416198487095663}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 9.797958971132712}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 7.681145747868608}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 6.708203932499369}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 6.708203932499369}, "ml.search.utils.get_searcher.get_searcher": {"tf": 5.656854249492381}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 3.1622776601683795}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 14.212670403551895}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 5.0990195135927845}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 7.937253933193772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 9.16515138991168}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 5.744562646538029}, "ml.targets.base.TargetStrategy.__init__": {"tf": 3.4641016151377544}, "ml.targets.base.TargetStrategy.build": {"tf": 6.6332495807108}, "ml.types.DataLineageEntry.__init__": {"tf": 15.427248620541512}, "ml.types.AllSplitsInfo.__init__": {"tf": 8.18535277187245}, "ml.types.SplitInfo.__init__": {"tf": 7.280109889280518}, "ml.types.TabularSplits.__init__": {"tf": 11.40175425099138}, "ml.utils.git.get_git_commit": {"tf": 5.916079783099616}, "ml.utils.git.is_descendant_commit": {"tf": 4.898979485566356}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 3.1622776601683795}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 4}, "ml.utils.hashing.hash_list.hash_list": {"tf": 5.477225575051661}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 5.291502622129181}, "ml.utils.hashing.service.hash_file": {"tf": 4.47213595499958}, "ml.utils.hashing.service.hash_data": {"tf": 4.47213595499958}, "ml.utils.hashing.service.hash_artifact": {"tf": 4.47213595499958}, "ml.utils.hashing.service.hash_thresholds": {"tf": 4}, "ml.utils.loaders.load_yaml": {"tf": 5.830951894845301}, "ml.utils.loaders.load_json": {"tf": 6.48074069840786}, "ml.utils.loaders.read_data": {"tf": 6.324555320336759}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 6.164414002968976}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 4.898979485566356}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 4.69041575982343}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 4.69041575982343}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 4.898979485566356}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 4}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 6.557438524302}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 7}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 3}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 2.6457513110645907}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 3}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 4}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 7.14142842854285}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 9.219544457292887}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 4.898979485566356}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 5.656854249492381}}, "df": 352, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.loader.load_config": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 3}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}}, "df": 6, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 13, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 9}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}}, "df": 2}}}}}}, "v": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}}, "df": 11}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}}, "df": 18, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}}, "df": 1, "t": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 18, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}}, "df": 9, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}}, "df": 4}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 27}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 8}}}}, "d": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 2.23606797749979}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.23606797749979}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 24, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 76}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1.4142135623730951}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 28, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 22}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.validation.search.search.validate_search_record": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 13}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 10}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 2.8284271247461903}, "ml.features.splitting.splitting.split_data": {"tf": 2.449489742783178}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target.transform_target": {"tf": 2}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 2.449489742783178}}, "df": 24}}}}, "t": {"docs": {"ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 4}}, "g": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}}, "df": 12, "s": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 2}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 84}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2.23606797749979}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 2}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2.8284271247461903}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 2}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 2.23606797749979}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.6457513110645907}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 2.449489742783178}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 2}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2.23606797749979}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 2.23606797749979}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 2.23606797749979}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 3.3166247903554}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 133, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 12}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}}, "df": 27}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 12}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 6}, "s": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 16}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 23, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 9}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}}, "df": 7, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.4142135623730951}, "ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}}, "df": 9}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 2}}}}, "x": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}}, "df": 38, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}}, "df": 25, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}}, "df": 1}}}}, "n": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 4.123105625617661}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 2}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 2}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 2.23606797749979}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 2.23606797749979}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1.7320508075688772}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 5.744562646538029}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 2}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 101}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 11, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 5}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 5}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}, "g": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 3, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 2.449489742783178}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 10}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 10}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 2.6457513110645907}, "ml.features.splitting.splitting.split_data": {"tf": 2.449489742783178}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 2}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 2.449489742783178}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 76}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 6}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.loader.load_and_validate_config": {"tf": 1.7320508075688772}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 2.449489742783178}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 2}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 3.1622776601683795}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_file": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_yaml": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_json": {"tf": 1.4142135623730951}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 81, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 2.8284271247461903}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 78}}}, "s": {"docs": {"ml.promotion.context.PromotionContext.__init__": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 9, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}}, "df": 5}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 4}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2.23606797749979}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2.23606797749979}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 2}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 2}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 2}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1.4142135623730951}}, "df": 23, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}}, "df": 4}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.__init__": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}}, "df": 5}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 4}}}}}}}}}, "e": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 6, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}}, "df": 5, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 5}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 2.23606797749979}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 2}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 50, "s": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 5}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.4142135623730951}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 2.6457513110645907}, "ml.features.splitting.splitting.split_data": {"tf": 2.449489742783178}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2.449489742783178}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 2}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 2.449489742783178}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 82}}, "l": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.processed.processing.process_data.remove_columns": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 2}, "ml.config.hashing.add_config_hash": {"tf": 2}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 2}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 2}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 92, "s": {"docs": {"ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 2}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 25}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.service.PromotionService.run": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 30, "t": {"docs": {"ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 17, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 2.23606797749979}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1.7320508075688772}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 2}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_schemas": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 2}, "ml.features.validation.validate_target.validate_target": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 2}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 66}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 19}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.4142135623730951}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 10}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "x": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 26}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 71}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 29}}}, "e": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}}, "df": 27, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 57, "s": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 2}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 18}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 16}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"6": {"4": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 38, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 8}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 6}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 5}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}}, "df": 12, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {"ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2.23606797749979}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 2}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 35, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 71}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 2}}}}}}, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1.7320508075688772}, "ml.search.params.utils.get_default_float_params": {"tf": 2}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 5}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.result.PromotionResult.__init__": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 2}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 2.23606797749979}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 94, "s": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}}}, "r": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 2.449489742783178}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 39, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "f": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 3}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 9}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 12}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.types.DataLineageEntry.__init__": {"tf": 2}}, "df": 2}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 3}}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.pipelines.operator_factory.build_operators": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 3}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 27}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 4}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 3}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 6}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 3}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 6}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.process_data.remove_columns": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.validation.search.search.validate_search_record": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.context.PromotionPaths.__init__": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 5, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 3}}}}}, "f": {"docs": {"ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "o": {"docs": {"ml.utils.git.get_git_commit": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}}, "df": 14, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}}, "df": 1}}, "e": {"docs": {"ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 2}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}}, "df": 20, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}}, "df": 5}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 34, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 4}}}}}}}}}}, "s": {"docs": {"ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 2}}, "c": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 24}}}, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 13, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}}, "df": 11}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 10, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 27, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 2}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 5, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 3}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.4142135623730951}}, "df": 29, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 12, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}}, "df": 1}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 38}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 2}}}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 12}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 13, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 15}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 26}}}}, "o": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 2}}, "df": 3, "p": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 6}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.4142135623730951}}, "df": 6}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 7}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 2}}}, "b": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 11}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 28}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 13}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.__init__": {"tf": 1.7320508075688772}}, "df": 4}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 2.449489742783178}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}}, "df": 31}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}}, "df": 19, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 3}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}}, "df": 1, "l": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 2}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_schemas": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 66, "s": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 2}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 2}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 57}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 26}}}}}}}, "l": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.7320508075688772}, "ml.config.hashing.add_config_hash": {"tf": 2}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 2}, "ml.features.splitting.splitting.get_splits": {"tf": 2}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2.23606797749979}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 2}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 2}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 2}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 2}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 2}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 169}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {"ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.types.DataLineageEntry.__init__": {"tf": 2}}, "df": 2}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 6}}}}}}}}, "x": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}}}}, ":": {"1": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "m": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}}, "df": 23}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 2}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.7320508075688772}}, "df": 42}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.4142135623730951}}, "df": 22}}}}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "w": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 4}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}, "v": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 17, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.hashing.safe.safe": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.4142135623730951}}, "df": 6, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 4}}}}}}}, "k": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 30, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}}, "df": 17, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 2}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 2}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 3}}}}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}}, "df": 1}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1.4142135623730951}}, "df": 1, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}}, "df": 8}}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 7}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 29, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 102}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}}, "df": 13}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}}, "df": 6}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}}, "df": 4}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 7, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 47, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 102}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}}, "df": 4, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}}, "df": 10}}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 11, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}}, "df": 5}}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}}, "df": 7}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}}, "df": 2}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 2}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1.4142135623730951}}, "df": 7, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 102}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1.4142135623730951}}, "df": 6}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 6, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.SearchError": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}}, "df": 5}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 4}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 6}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 2}, "1": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}}, "df": 11, "d": {"docs": {"ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}}, "df": 1}}, "2": {"5": {"6": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_file": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}}, "df": 8}, "docs": {}, "df": 0}, "docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}}, "df": 2}, "3": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}, "4": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}, "docs": {"ml": {"tf": 1.7320508075688772}, "ml.cli": {"tf": 1.7320508075688772}, "ml.cli.error_handling": {"tf": 2.449489742783178}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1.7320508075688772}, "ml.cli.error_handling.resolve_exit_code": {"tf": 4.242640687119285}, "ml.cli.exit_codes": {"tf": 2.449489742783178}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1.7320508075688772}, "ml.components": {"tf": 1.7320508075688772}, "ml.components.base": {"tf": 1.7320508075688772}, "ml.components.base.PipelineComponent": {"tf": 1.7320508075688772}, "ml.components.base.PipelineComponent.fit": {"tf": 3.3166247903554}, "ml.components.base.SklearnFeatureMixin": {"tf": 1.7320508075688772}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 3}, "ml.components.feature_engineering": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.adr_per_person": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 2.23606797749979}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 4.358898943540674}, "ml.components.feature_engineering.arrival_date": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 2.23606797749979}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 3.3166247903554}, "ml.components.feature_engineering.arrival_season": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 3.872983346207417}, "ml.components.feature_engineering.base": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.logger": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 3}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 3}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 3.3166247903554}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 3}, "ml.components.feature_engineering.pit_operator": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 3}, "ml.components.feature_engineering.total_stay": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 2.23606797749979}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 3.3166247903554}, "ml.components.feature_selection": {"tf": 1.7320508075688772}, "ml.components.feature_selection.selector": {"tf": 1.7320508075688772}, "ml.components.feature_selection.selector.logger": {"tf": 1.7320508075688772}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 2.449489742783178}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 3}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1.7320508075688772}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 3}, "ml.components.imputation": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 2.449489742783178}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 3}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 3.3166247903554}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 3}, "ml.components.schema_validation": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.logger": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 2.6457513110645907}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 3}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 3}, "ml.config": {"tf": 1.7320508075688772}, "ml.config.best_params": {"tf": 1.7320508075688772}, "ml.config.best_params.logger": {"tf": 1.7320508075688772}, "ml.config.best_params.MergeTarget": {"tf": 1.7320508075688772}, "ml.config.best_params.MODEL_KEYS": {"tf": 1.7320508075688772}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1.7320508075688772}, "ml.config.best_params.unflatten_best_params": {"tf": 3.872983346207417}, "ml.config.best_params.apply_best_params": {"tf": 3}, "ml.config.compute_data_config_hash": {"tf": 1.7320508075688772}, "ml.config.compute_data_config_hash.logger": {"tf": 1.7320508075688772}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 3}, "ml.config.hashing": {"tf": 1.7320508075688772}, "ml.config.hashing.logger": {"tf": 1.7320508075688772}, "ml.config.hashing.compute_model_config_hash": {"tf": 3.4641016151377544}, "ml.config.hashing.add_config_hash": {"tf": 3.4641016151377544}, "ml.config.loader": {"tf": 1.7320508075688772}, "ml.config.loader.logger": {"tf": 1.7320508075688772}, "ml.config.loader.load_config": {"tf": 3}, "ml.config.loader.load_and_validate_config": {"tf": 3.1622776601683795}, "ml.config.merge": {"tf": 1.7320508075688772}, "ml.config.merge.logger": {"tf": 1.7320508075688772}, "ml.config.merge.deep_merge": {"tf": 3}, "ml.config.merge.resolve_extends": {"tf": 3.3166247903554}, "ml.config.merge.apply_env_overlay": {"tf": 3}, "ml.config.schemas": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 3.605551275463989}, "ml.config.schemas.model_cfg": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.logger": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 3}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 3}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 3.3166247903554}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 3}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 3}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 3}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 3}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 3}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 3}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 3}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 3}, "ml.config.schemas.search_cfg": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 3.605551275463989}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1.7320508075688772}, "ml.config.validation": {"tf": 1.7320508075688772}, "ml.config.validation.logger": {"tf": 1.7320508075688772}, "ml.config.validation.validate_model_config": {"tf": 3.605551275463989}, "ml.data": {"tf": 1.7320508075688772}, "ml.data.config": {"tf": 1.7320508075688772}, "ml.data.config.schemas": {"tf": 1.7320508075688772}, "ml.data.config.schemas.constants": {"tf": 1.7320508075688772}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1.7320508075688772}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1.7320508075688772}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.logger": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 3}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 3}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 3.605551275463989}, "ml.data.config.schemas.processed": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.logger": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 3.4641016151377544}, "ml.data.config.schemas.shared": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1.7320508075688772}, "ml.data.config.validate_config": {"tf": 1.7320508075688772}, "ml.data.config.validate_config.logger": {"tf": 1.7320508075688772}, "ml.data.config.validate_config.validate_config": {"tf": 4.242640687119285}, "ml.data.interim": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data": {"tf": 2.449489742783178}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 3}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 4.69041575982343}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 3.872983346207417}, "ml.data.interim.persistence": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 3.3166247903554}, "ml.data.merge": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 4.358898943540674}, "ml.data.processed": {"tf": 1.7320508075688772}, "ml.data.processed.persistence": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 3.3166247903554}, "ml.data.processed.processing": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 3}, "ml.data.processed.processing.hotel_bookings": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 2.449489742783178}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 3.3166247903554}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 3}, "ml.data.processed.processing.process_data": {"tf": 2.449489742783178}, "ml.data.processed.processing.process_data.logger": {"tf": 1.7320508075688772}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 3}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 3}, "ml.data.raw": {"tf": 1.7320508075688772}, "ml.data.raw.persistence": {"tf": 1.7320508075688772}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 3}, "ml.data.utils": {"tf": 1.7320508075688772}, "ml.data.utils.extraction": {"tf": 1.7320508075688772}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1.7320508075688772}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 3.605551275463989}, "ml.data.utils.memory": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 4.123105625617661}, "ml.data.utils.memory.get_memory_usage": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 3}, "ml.data.utils.persistence": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.logger": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.save_data": {"tf": 3}, "ml.data.validation": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data.logger": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data.validate_data": {"tf": 3}, "ml.data.validation.validate_entity_key": {"tf": 1.7320508075688772}, "ml.data.validation.validate_entity_key.logger": {"tf": 1.7320508075688772}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 3.605551275463989}, "ml.data.validation.validate_min_rows": {"tf": 1.7320508075688772}, "ml.data.validation.validate_min_rows.logger": {"tf": 1.7320508075688772}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 3}, "ml.exceptions": {"tf": 2.449489742783178}, "ml.exceptions.MLBaseError": {"tf": 1.7320508075688772}, "ml.exceptions.UserError": {"tf": 1.7320508075688772}, "ml.exceptions.RuntimeMLError": {"tf": 1.7320508075688772}, "ml.exceptions.ConfigError": {"tf": 1.7320508075688772}, "ml.exceptions.DataError": {"tf": 1.7320508075688772}, "ml.exceptions.PipelineContractError": {"tf": 1.7320508075688772}, "ml.exceptions.SearchError": {"tf": 1.7320508075688772}, "ml.exceptions.TrainingError": {"tf": 1.7320508075688772}, "ml.exceptions.EvaluationError": {"tf": 1.7320508075688772}, "ml.exceptions.ExplainabilityError": {"tf": 1.7320508075688772}, "ml.exceptions.PersistenceError": {"tf": 1.7320508075688772}, "ml.feature_freezing": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 3}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 3}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 3.605551275463989}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 3}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2.449489742783178}, "ml.feature_freezing.models": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence.get_deps": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 3}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 2.449489742783178}, "ml.feature_freezing.utils": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.data_loader": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 3}, "ml.feature_freezing.utils.get_strategy": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 3.3166247903554}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 3.3166247903554}, "ml.feature_freezing.utils.operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.operators.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 3}, "ml.features": {"tf": 1.7320508075688772}, "ml.features.extraction": {"tf": 1.7320508075688772}, "ml.features.extraction.cat_features": {"tf": 1.7320508075688772}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 3}, "ml.features.hashing": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 3}, "ml.features.hashing.hash_dataframe_content": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 3}, "ml.features.hashing.hash_feature_schema": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 3}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 3}, "ml.features.hashing.safe": {"tf": 1.7320508075688772}, "ml.features.hashing.safe.safe": {"tf": 3}, "ml.features.loading": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.logger": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.required_fields": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.lineage_identity": {"tf": 3}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 3}, "ml.features.loading.features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.logger": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 5.0990195135927845}, "ml.features.loading.get_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.logger": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 4.123105625617661}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2.449489742783178}, "ml.features.loading.schemas": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.logger": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 3}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 3}, "ml.features.loading.schemas.load_schemas": {"tf": 3}, "ml.features.segmentation": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.logger": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 3}, "ml.features.splitting": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.logger": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.SPLIT": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.random_split": {"tf": 3.605551275463989}, "ml.features.splitting.splitting.split_data": {"tf": 3.605551275463989}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 3}, "ml.features.splitting.splitting.get_splits": {"tf": 3}, "ml.features.transforms": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target.logger": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target.transform_target": {"tf": 3.3166247903554}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 3}, "ml.features.validation": {"tf": 1.7320508075688772}, "ml.features.validation.normalize_dtype": {"tf": 1.7320508075688772}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 3}, "ml.features.validation.validate_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_contract.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 3}, "ml.features.validation.validate_feature_set": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 3}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 3.872983346207417}, "ml.features.validation.validate_operators": {"tf": 1.7320508075688772}, "ml.features.validation.validate_operators.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_operators.validate_operators": {"tf": 3}, "ml.features.validation.validate_set": {"tf": 1.7320508075688772}, "ml.features.validation.validate_set.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_set.validate_set": {"tf": 3}, "ml.features.validation.validate_snapshot_ids": {"tf": 1.7320508075688772}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 3}, "ml.features.validation.validate_target": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 3}, "ml.features.validation.validate_target.validate_target": {"tf": 3}, "ml.io": {"tf": 1.7320508075688772}, "ml.io.formatting": {"tf": 1.7320508075688772}, "ml.io.formatting.iso_no_colon": {"tf": 1.7320508075688772}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 3.3166247903554}, "ml.io.formatting.str_to_bool": {"tf": 1.7320508075688772}, "ml.io.formatting.str_to_bool.logger": {"tf": 1.7320508075688772}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 3}, "ml.io.persistence": {"tf": 1.7320508075688772}, "ml.io.persistence.save_metadata": {"tf": 1.7320508075688772}, "ml.io.persistence.save_metadata.logger": {"tf": 1.7320508075688772}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 6}, "ml.io.validation": {"tf": 1.7320508075688772}, "ml.io.validation.validate_mapping": {"tf": 1.7320508075688772}, "ml.io.validation.validate_mapping.logger": {"tf": 1.7320508075688772}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1.7320508075688772}, "ml.logging_config": {"tf": 1.7320508075688772}, "ml.logging_config.LOG_FORMAT": {"tf": 1.7320508075688772}, "ml.logging_config.setup_logging": {"tf": 3.605551275463989}, "ml.logging_config.add_file_handler": {"tf": 3.7416573867739413}, "ml.logging_config.bootstrap_logging": {"tf": 3.4641016151377544}, "ml.metadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.interim": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 6.782329983125268}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1.7320508075688772}, "ml.metadata.validation": {"tf": 1.7320508075688772}, "ml.metadata.validation.data": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.interim": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.interim.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 3.1622776601683795}, "ml.metadata.validation.data.processed": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.processed.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 3.1622776601683795}, "ml.metadata.validation.data.raw": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.raw.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 3.1622776601683795}, "ml.metadata.validation.features": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 3.4641016151377544}, "ml.metadata.validation.promotion": {"tf": 1.7320508075688772}, "ml.metadata.validation.promotion.promote": {"tf": 1.7320508075688772}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 3.4641016151377544}, "ml.metadata.validation.runners": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 3.4641016151377544}, "ml.metadata.validation.runners.explainability": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 2.449489742783178}, "ml.metadata.validation.runners.training": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.training.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 2.449489742783178}, "ml.metadata.validation.search": {"tf": 1.7320508075688772}, "ml.metadata.validation.search.search": {"tf": 1.7320508075688772}, "ml.metadata.validation.search.search.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1.7320508075688772}, "ml.modeling": {"tf": 1.7320508075688772}, "ml.modeling.catboost": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 3.3166247903554}, "ml.modeling.class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.constants": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 3}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 3}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 3}, "ml.modeling.models": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 6.782329983125268}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 6.782329983125268}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 6.782329983125268}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.Metrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Environment": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1.7320508075688772}, "ml.modeling.validation": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.logger": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 3.4641016151377544}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 3.4641016151377544}, "ml.modeling.validation.feature_lineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1.7320508075688772}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.metrics": {"tf": 1.7320508075688772}, "ml.modeling.validation.metrics.logger": {"tf": 1.7320508075688772}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 3.4641016151377544}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 3.4641016151377544}, "ml.modeling.validation.runtime_info": {"tf": 1.7320508075688772}, "ml.modeling.validation.runtime_info.logger": {"tf": 1.7320508075688772}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 3}, "ml.pipelines": {"tf": 1.7320508075688772}, "ml.pipelines.builders": {"tf": 1.7320508075688772}, "ml.pipelines.builders.logger": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 3.3166247903554}, "ml.pipelines.composition": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 3.605551275463989}, "ml.pipelines.constants": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1.7320508075688772}, "ml.pipelines.models": {"tf": 1.7320508075688772}, "ml.pipelines.models.VALID_STEPS": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 6.782329983125268}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1.7320508075688772}, "ml.pipelines.operator_factory": {"tf": 1.7320508075688772}, "ml.pipelines.operator_factory.build_operators": {"tf": 3.605551275463989}, "ml.pipelines.schema_utils": {"tf": 1.7320508075688772}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 3.605551275463989}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 3}, "ml.pipelines.validation": {"tf": 1.7320508075688772}, "ml.pipelines.validation.logger": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 3.4641016151377544}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1.7320508075688772}, "ml.policies": {"tf": 1.7320508075688772}, "ml.policies.data": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.row_id": {"tf": 1.7320508075688772}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.7320508075688772}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.policies.model_params": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.promotion": {"tf": 1.7320508075688772}, "ml.policies.promotion.threshold_support": {"tf": 1.7320508075688772}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1.7320508075688772}, "ml.promotion": {"tf": 1.7320508075688772}, "ml.promotion.comparisons": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.production": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.production.logger": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 3}, "ml.promotion.comparisons.thresholds": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 3}, "ml.promotion.config": {"tf": 1.7320508075688772}, "ml.promotion.config.models": {"tf": 1.7320508075688772}, "ml.promotion.config.models.logger": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricSet": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricSet.TEST": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricSet.VAL": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricSet.TRAIN": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.POSITIVE_RATE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.ACCURACY": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.F1": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.PRECISION": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.RECALL": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.BALANCED_ACCURACY": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.SPECIFICITY": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.ROC_AUC": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.PR_AUC": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.LOG_LOSS": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.BRIER_SCORE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.ECE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.MAE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.MSE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.RMSE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.R2": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.MEDIAN_AE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.EXPLAINED_VARIANCE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.RESIDUAL_MEAN": {"tf": 1.7320508075688772}, "ml.promotion.config.models.MetricName.RESIDUAL_STD": {"tf": 1.7320508075688772}, "ml.promotion.config.models.Direction": {"tf": 1.7320508075688772}, "ml.promotion.config.models.Direction.MAXIMIZE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.Direction.MINIMIZE": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 3}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1.4142135623730951}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1.4142135623730951}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1.4142135623730951}, "ml.promotion.config.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.models.LineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.promotion.config.models.LineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionThresholds.promotion_metrics": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionThresholds.thresholds": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionThresholds.lineage": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 3}, "ml.promotion.constants": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.logger": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.Stage": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.EPSILON": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1.7320508075688772}, "ml.promotion.context": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.args": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.paths": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.context.build_context": {"tf": 3}, "ml.promotion.getters": {"tf": 1.7320508075688772}, "ml.promotion.getters.get": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.logger": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 3}, "ml.promotion.getters.get.extract_thresholds": {"tf": 3}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 3}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 3}, "ml.promotion.persistence": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.logger": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 3}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 3.872983346207417}, "ml.promotion.persistence.registry": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.logger": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 3}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 3}, "ml.promotion.persister": {"tf": 1.7320508075688772}, "ml.promotion.persister.logger": {"tf": 1.7320508075688772}, "ml.promotion.persister.PromotionPersister": {"tf": 1.7320508075688772}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 3}, "ml.promotion.result": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1.7320508075688772}, "ml.promotion.service": {"tf": 1.7320508075688772}, "ml.promotion.service.logger": {"tf": 1.7320508075688772}, "ml.promotion.service.PromotionService": {"tf": 1.7320508075688772}, "ml.promotion.service.PromotionService.__init__": {"tf": 1.7320508075688772}, "ml.promotion.service.PromotionService.run": {"tf": 3}, "ml.promotion.state": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.__init__": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1.7320508075688772}, "ml.promotion.state_loader": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.logger": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 3}, "ml.promotion.strategies": {"tf": 1.7320508075688772}, "ml.promotion.strategies.base": {"tf": 1.7320508075688772}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1.7320508075688772}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 3}, "ml.promotion.strategies.production": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.logger": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 4.242640687119285}, "ml.promotion.strategies.staging": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.logger": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 3}, "ml.promotion.validation": {"tf": 1.7320508075688772}, "ml.promotion.validation.validate": {"tf": 1.7320508075688772}, "ml.promotion.validation.validate.logger": {"tf": 1.7320508075688772}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 3}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 3}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 3}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 3}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 3}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 3}, "ml.registries": {"tf": 1.7320508075688772}, "ml.registries.FEATURE_OPERATORS": {"tf": 1.7320508075688772}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.7320508075688772}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1.7320508075688772}, "ml.registries.OP_MAP": {"tf": 1.7320508075688772}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.7320508075688772}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.registries.EVALUATORS": {"tf": 1.7320508075688772}, "ml.registries.EXPLAINERS": {"tf": 1.7320508075688772}, "ml.registries.SEARCHERS": {"tf": 1.7320508075688772}, "ml.registries.TRAINERS": {"tf": 1.7320508075688772}, "ml.runners": {"tf": 1.7320508075688772}, "ml.runners.evaluation": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 4.47213595499958}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 3}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 3}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 3}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.regression": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 3}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 3}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 3}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 3.872983346207417}, "ml.runners.evaluation.models": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 3}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 3}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 3}, "ml.runners.evaluation.utils": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 3.605551275463989}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 3}, "ml.runners.explainability": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 4.242640687119285}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 3.3166247903554}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 3.3166247903554}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 3}, "ml.runners.explainability.persistence": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 3}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 3}, "ml.runners.explainability.utils": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 3}, "ml.runners.shared": {"tf": 1.7320508075688772}, "ml.runners.shared.formatting": {"tf": 1.7320508075688772}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1.7320508075688772}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 3}, "ml.runners.shared.lineage": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 3}, "ml.runners.shared.lineage.validations": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.base": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 3}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 3}, "ml.runners.shared.loading": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 3}, "ml.runners.shared.loading.pipeline": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 3.1622776601683795}, "ml.runners.shared.logical_config": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 3}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 3}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 3.605551275463989}, "ml.runners.shared.persistence": {"tf": 1.7320508075688772}, "ml.runners.shared.persistence.save_metrics": {"tf": 1.7320508075688772}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 3}, "ml.runners.shared.reproducibility": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 3}, "ml.runners.shared.reproducibility.validations": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 3}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 3.872983346207417}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 3}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 3}, "ml.runners.training": {"tf": 1.7320508075688772}, "ml.runners.training.constants": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1.7320508075688772}, "ml.runners.training.persistence": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 3}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 3}, "ml.runners.training.persistence.run_info": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 3}, "ml.runners.training.trainers": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 2.449489742783178}, "ml.runners.training.trainers.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost": {"tf": 3.872983346207417}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 3.872983346207417}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 3.872983346207417}, "ml.runners.training.utils": {"tf": 1.7320508075688772}, "ml.runners.training.utils.get_trainer": {"tf": 1.7320508075688772}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 3}, "ml.runners.training.utils.logical_config_checks": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 3.7416573867739413}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 3}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 3}, "ml.runners.training.utils.metrics": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 3}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 4.47213595499958}, "ml.runners.training.utils.model_specific": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 3}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 3.1622776601683795}, "ml.search": {"tf": 1.7320508075688772}, "ml.search.constants": {"tf": 1.7320508075688772}, "ml.search.constants.SEARCH_PHASES": {"tf": 1.7320508075688772}, "ml.search.models": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.Sources": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1.7320508075688772}, "ml.search.models.search_results": {"tf": 1.7320508075688772}, "ml.search.models.search_results.Phases": {"tf": 1.7320508075688772}, "ml.search.models.search_results.Phases.broad": {"tf": 1.7320508075688772}, "ml.search.models.search_results.Phases.narrow": {"tf": 1.7320508075688772}, "ml.search.models.search_results.SearchResults": {"tf": 1.7320508075688772}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1.7320508075688772}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1.7320508075688772}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1.7320508075688772}, "ml.search.params": {"tf": 1.7320508075688772}, "ml.search.params.catboost": {"tf": 1.7320508075688772}, "ml.search.params.catboost.refinement": {"tf": 1.7320508075688772}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 6.324555320336759}, "ml.search.params.catboost.validation": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.logger": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 3.605551275463989}, "ml.search.params.refiners": {"tf": 1.7320508075688772}, "ml.search.params.refiners.logger": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_int": {"tf": 3}, "ml.search.params.refiners.refine_float_mult": {"tf": 3}, "ml.search.params.refiners.refine_border_count": {"tf": 3}, "ml.search.params.utils": {"tf": 1.7320508075688772}, "ml.search.params.utils.logger": {"tf": 1.7320508075688772}, "ml.search.params.utils.get_default_int_params": {"tf": 3.605551275463989}, "ml.search.params.utils.get_default_float_params": {"tf": 3.605551275463989}, "ml.search.persistence": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.logger": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 3}, "ml.search.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 3.872983346207417}, "ml.search.searchers": {"tf": 1.7320508075688772}, "ml.search.searchers.base": {"tf": 1.7320508075688772}, "ml.search.searchers.base.Searcher": {"tf": 1.7320508075688772}, "ml.search.searchers.base.Searcher.search": {"tf": 3}, "ml.search.searchers.catboost": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 3}, "ml.search.searchers.catboost.model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.model.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 3}, "ml.search.searchers.catboost.pipeline": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 4.47213595499958}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 4.242640687119285}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 3}, "ml.search.searchers.output": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1.7320508075688772}, "ml.search.utils": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_narrow": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1.7320508075688772}, "ml.search.utils.get_searcher": {"tf": 1.7320508075688772}, "ml.search.utils.get_searcher.logger": {"tf": 1.7320508075688772}, "ml.search.utils.get_searcher.get_searcher": {"tf": 3}, "ml.search.utils.model_params_extraction": {"tf": 1.7320508075688772}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 3.4641016151377544}, "ml.search.utils.randomized_search": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.logger": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 6.557438524302}, "ml.snapshot_bindings": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 2.449489742783178}, "ml.snapshot_bindings.validation": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 3}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 3}, "ml.targets": {"tf": 1.7320508075688772}, "ml.targets.adr": {"tf": 1.7320508075688772}, "ml.targets.adr.v1": {"tf": 1.7320508075688772}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1.7320508075688772}, "ml.targets.base": {"tf": 1.7320508075688772}, "ml.targets.base.logger": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.__init__": {"tf": 2.449489742783178}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.build": {"tf": 3.3166247903554}, "ml.targets.cancellation": {"tf": 1.7320508075688772}, "ml.targets.cancellation.v1": {"tf": 1.7320508075688772}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1.7320508075688772}, "ml.targets.lead_time": {"tf": 1.7320508075688772}, "ml.targets.lead_time.v1": {"tf": 1.7320508075688772}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1.7320508075688772}, "ml.targets.no_show": {"tf": 1.7320508075688772}, "ml.targets.no_show.v1": {"tf": 1.7320508075688772}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1.7320508075688772}, "ml.targets.repeated_guest": {"tf": 1.7320508075688772}, "ml.targets.repeated_guest.v1": {"tf": 1.7320508075688772}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1.7320508075688772}, "ml.targets.room_upgrade": {"tf": 1.7320508075688772}, "ml.targets.room_upgrade.v1": {"tf": 1.7320508075688772}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1.7320508075688772}, "ml.targets.special_requests": {"tf": 1.7320508075688772}, "ml.targets.special_requests.v1": {"tf": 1.7320508075688772}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1.7320508075688772}, "ml.types": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.__init__": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.ref": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.name": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.version": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.format": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.merge_key": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.merge_how": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.path": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.data_hash": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.row_count": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.column_count": {"tf": 1.7320508075688772}, "ml.types.LatestSnapshot": {"tf": 1.7320508075688772}, "ml.types.LatestSnapshot.LATEST": {"tf": 1.7320508075688772}, "ml.types.AllowedModels": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo.train": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo.val": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo.test": {"tf": 1.7320508075688772}, "ml.types.SplitInfo": {"tf": 1.7320508075688772}, "ml.types.SplitInfo.__init__": {"tf": 1.7320508075688772}, "ml.types.SplitInfo.n_rows": {"tf": 1.7320508075688772}, "ml.types.SplitInfo.class_distribution": {"tf": 1.7320508075688772}, "ml.types.SplitInfo.positive_rate": {"tf": 1.7320508075688772}, "ml.types.TabularSplits": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.X_train": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.X_val": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.X_test": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.y_train": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.y_val": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.y_test": {"tf": 1.7320508075688772}, "ml.utils": {"tf": 1.7320508075688772}, "ml.utils.git": {"tf": 1.7320508075688772}, "ml.utils.git.logger": {"tf": 1.7320508075688772}, "ml.utils.git.MergeTarget": {"tf": 1.7320508075688772}, "ml.utils.git.get_git_commit": {"tf": 3.872983346207417}, "ml.utils.git.is_descendant_commit": {"tf": 4.358898943540674}, "ml.utils.hashing": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_dict": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 3}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 3}, "ml.utils.hashing.hash_list": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_list.hash_list": {"tf": 3}, "ml.utils.hashing.hash_streaming": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 3}, "ml.utils.hashing.service": {"tf": 3.4641016151377544}, "ml.utils.hashing.service.logger": {"tf": 1.7320508075688772}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.7320508075688772}, "ml.utils.hashing.service.hash_file": {"tf": 3}, "ml.utils.hashing.service.hash_data": {"tf": 3}, "ml.utils.hashing.service.hash_artifact": {"tf": 3}, "ml.utils.hashing.service.hash_thresholds": {"tf": 3}, "ml.utils.loaders": {"tf": 1.7320508075688772}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.7320508075688772}, "ml.utils.loaders.logger": {"tf": 1.7320508075688772}, "ml.utils.loaders.load_yaml": {"tf": 3}, "ml.utils.loaders.load_json": {"tf": 3.4641016151377544}, "ml.utils.loaders.read_data": {"tf": 3}, "ml.utils.pipeline_core": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.logger": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 3}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 3.4641016151377544}, "ml.utils.pipeline_core.step": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 3.3166247903554}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 3.3166247903554}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 3}, "ml.utils.runtime": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 3.3166247903554}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 2.449489742783178}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 3}, "ml.utils.runtime.runtime_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_info.logger": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 3}, "ml.utils.runtime.runtime_snapshot": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 3.1622776601683795}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 2.8284271247461903}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 3}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 3}, "ml.utils.runtime.save_runtime": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime.logger": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1.7320508075688772}, "ml.utils.snapshots": {"tf": 1.7320508075688772}, "ml.utils.snapshots.latest_snapshot": {"tf": 1.7320508075688772}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1.7320508075688772}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 3}, "ml.utils.snapshots.snapshot_path": {"tf": 1.7320508075688772}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1.7320508075688772}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 3.3166247903554}}, "df": 2009, "c": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 10}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 8}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 2.8284271247461903}}, "df": 7, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}}, "df": 11}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.loader": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}}, "df": 7}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 6, "d": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 37, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}}, "df": 17, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5, "`": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.exceptions.EvaluationError": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}}, "df": 7, "d": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 7}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 2.449489742783178}, "ml.data": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.io": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 13, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1.4142135623730951}}, "df": 2}, "c": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.exceptions": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 4, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.error_handling": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}}, "df": 16}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.search.constants": {"tf": 1}}, "df": 10}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 17}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1.7320508075688772}, "ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.loader.load_and_validate_config": {"tf": 1.7320508075688772}, "ml.config.merge": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 2}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.4142135623730951}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 75, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.ConfigError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 2}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2.23606797749979}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 131, "s": {"docs": {"ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}}, "df": 10}}}}}}, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}}, "df": 36}, "s": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.4142135623730951}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.utils.loaders": {"tf": 1}}, "df": 12}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 5}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 64}}}, "s": {"docs": {"ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 8}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.promotion.constants.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.utils.hashing.service.hash_data": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.service.PromotionService.run": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1.7320508075688772}}, "df": 56, "t": {"docs": {"ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}}, "df": 2}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.features.validation.validate_contract": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.hashing.safe": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}}, "df": 6}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 8}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1.7320508075688772}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}}, "df": 2}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.7320508075688772}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 41, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 2.23606797749979}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 30}}}}, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Invariants": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.service.PromotionService": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 2.23606797749979}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 33, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.base": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 17}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.7320508075688772}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.registries": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 2}, "ml.search.params.refiners.refine_float_mult": {"tf": 2}, "ml.search.params.refiners.refine_border_count": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 5, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}}, "df": 14, "s": {"docs": {"ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 4}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}}, "df": 3}}}}}}}}}}, "t": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 4}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 2}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.7320508075688772}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}}, "df": 34, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.runtime_snapshot": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}}, "df": 3}, "s": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {"ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}}, "df": 6, "d": {"docs": {"ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}}, "df": 9}, "s": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 9}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 8}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"ml.features.segmentation.segment": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.schema_validation.validator": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}}, "df": 29}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 15, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}}, "df": 5}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 2}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.7320508075688772}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 56}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "x": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 26}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 2}}, "v": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 1}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.training": {"tf": 1}}, "df": 9}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.registries": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 9}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.utils.failure_management": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 6, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1.4142135623730951}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 7}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.utils.metrics.best_f1": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}}, "df": 13}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}}, "df": 3}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}, "r": {"docs": {"ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}}, "df": 21}}}, "e": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 4, "l": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.hashing": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 4.123105625617661}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2.23606797749979}, "ml.modeling.models.artifacts": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 4.123105625617661}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 4.123105625617661}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 4.123105625617661}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 4.123105625617661}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.result": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 2.23606797749979}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 2.23606797749979}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 2.23606797749979}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2.6457513110645907}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2.6457513110645907}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy": {"tf": 1}}, "df": 170, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 2}}}}}}}}}, "s": {"docs": {"ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}}, "df": 33, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.validation": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}}, "df": 1}}}, "l": {"docs": {"ml.components": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 12}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components.base": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 2}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 27, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.exceptions.UserError": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 2}}}}}}}}, "n": {"docs": {"ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 7}}}}, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 6}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"ml.search.searchers.catboost.catboost": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.persistence": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 2}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.7320508075688772}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 2.8284271247461903}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 2}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 2}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 2}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2.23606797749979}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 2.23606797749979}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 168, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1.7320508075688772}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2.23606797749979}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 25, "s": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 2}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 2}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}}, "df": 47, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 16}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 3.4641016151377544}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.7320508075688772}}, "df": 13, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}}, "df": 11}, "s": {"docs": {"ml.config.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.merge": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 2.23606797749979}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}}, "df": 12}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 15}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"5": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "b": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.training": {"tf": 1}}, "df": 9}}}}}, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.7320508075688772}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.logging_config.bootstrap_logging": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 24}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 2.23606797749979}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.7320508075688772}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}}, "df": 50}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 2}}, "df": 22, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 2}}, "[": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.search.constants": {"tf": 1}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}}, "df": 3}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.constants": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 2}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 8}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 6}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1.7320508075688772}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_streaming": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 25, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.loaders": {"tf": 1}}, "df": 22, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.MetaConfig": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 23}}, "s": {"docs": {"ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 4}}}, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 18, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 25, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}}, "df": 10, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 2}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.logging_config.bootstrap_logging": {"tf": 1.7320508075688772}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 24, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 3}, "d": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 7, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}}, "df": 5, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 2}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.search": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.types": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 147}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 6, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 20, "s": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 23}}}}}, "s": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2.449489742783178}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}}, "df": 15}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.merge.resolve_extends": {"tf": 2}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}}, "df": 6}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 8}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}}, "df": 7}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 2}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.7320508075688772}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_file": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_yaml": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_json": {"tf": 1.4142135623730951}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.4142135623730951}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.7320508075688772}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 61, "s": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 19}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 2}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.23606797749979}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 48, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}}, "df": 8}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.logging_config": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2.23606797749979}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 2.23606797749979}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 2.23606797749979}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 2}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 2.23606797749979}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.runners.training.trainers.catboost.catboost": {"tf": 2}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2.23606797749979}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 121, "s": {"docs": {"ml": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 9}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.pipelines.validation.validate_pipeline_config": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}}, "df": 1}}}}}}}}, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 2}}, "r": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1.7320508075688772}}, "df": 1, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 17, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2.449489742783178}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 24, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.validate_config.validate_config": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}}, "df": 5}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.types": {"tf": 1}}, "df": 5}}}}, "d": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2.23606797749979}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 2}}, "df": 15, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 16}, "s": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2}, "ml.policies.promotion": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1.4142135623730951}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.7320508075688772}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 3}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 2.23606797749979}, "ml.promotion.result": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1.7320508075688772}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.7320508075688772}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 2}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 2.8284271247461903}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 2}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1.4142135623730951}}, "df": 69, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}}, "df": 2}}}}}}}}}}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 3, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 3}}}, "y": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 2}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}}, "df": 5}}, "t": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}}, "df": 5}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}}, "df": 7, "+": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 11}}}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 4, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}}, "df": 10}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2.449489742783178}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 2.23606797749979}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 14, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.loader.load_config": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}}, "df": 5}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 11, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 25, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}}, "df": 33}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}}, "df": 38, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.persistence": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 6}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 30}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}}, "df": 12}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.promotion": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 14}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 5}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}}, "df": 4}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 4}}}}}}}, "y": {"docs": {"ml.data.raw.persistence": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 4.358898943540674}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 4.358898943540674}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 4.358898943540674}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 4.358898943540674}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 4.358898943540674}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 36}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 11, "s": {"docs": {"ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 5}}}}}}, "f": {"1": {"docs": {"ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1.4142135623730951}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 2}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1.4142135623730951}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2.23606797749979}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2.23606797749979}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2.23606797749979}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2.23606797749979}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2.23606797749979}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1.4142135623730951}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.4142135623730951}, "ml.utils.loaders": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 570, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.4142135623730951}}, "df": 13, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.transforms.transform_target": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 3}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 9, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 26, "s": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 10}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.failure_management": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 83}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 8, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"ml.registries": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}}, "df": 46}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1}}, "df": 25, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}}, "df": 4}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1.4142135623730951}, "ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1.4142135623730951}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1.4142135623730951}, "ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 2}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2.449489742783178}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 2}, "ml.features.segmentation": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 2}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 2}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.7320508075688772}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.types.TabularSplits": {"tf": 1}}, "df": 178, "s": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1.4142135623730951}}, "df": 45}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}}, "df": 1}}}}}}}}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}}, "df": 14}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 2}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 2}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.7320508075688772}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1.7320508075688772}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.7320508075688772}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 52, "s": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 7, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}}, "df": 5}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.7320508075688772}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}}, "df": 14, "s": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2.6457513110645907}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2.6457513110645907}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2.6457513110645907}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2.6457513110645907}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2.6457513110645907}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 14}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5, "`": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 11}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}}, "df": 6}}}}}}}}}, "d": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 16, "s": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 4}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 5, "y": {"docs": {"ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 3}}}}}}, "g": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"6": {"4": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 10, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 3}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}}, "df": 6}}}, "w": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}}, "df": 9}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "k": {"docs": {"ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 8}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"ml.policies.data.row_id": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 7, "h": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.7320508075688772}, "ml.features.validation.validate_operators.validate_operators": {"tf": 2}, "ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 2}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 2}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.7320508075688772}, "ml.utils.hashing.service": {"tf": 2.23606797749979}, "ml.utils.hashing.service.hash_file": {"tf": 1.7320508075688772}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}}, "df": 56, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 15}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.validation.validate_data": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}}, "df": 11, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {"ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}}, "df": 2}}, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 7}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}}, "df": 12, "s": {"docs": {"ml.config.hashing": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}}, "df": 69}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.search": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.7320508075688772}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 19, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}}, "df": 5}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "y": {"docs": {"ml.exceptions": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 6}}}}}, "a": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1.4142135623730951}, "ml.config": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.validation": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2.6457513110645907}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2.6457513110645907}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2.6457513110645907}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2.6457513110645907}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1.4142135623730951}, "ml.pipelines": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2.6457513110645907}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.search": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1.4142135623730951}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1.7320508075688772}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 237, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 22, "d": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 2.6457513110645907}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.7320508075688772}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 2}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1.7320508075688772}, "ml.runners": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 2}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 2.449489742783178}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2.449489742783178}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 2}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1.4142135623730951}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 280}, "y": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 23}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.utils.git": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.4142135623730951}}, "df": 20, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_border_count": {"tf": 1.4142135623730951}}, "df": 9, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}}, "df": 3}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 4}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}}, "df": 5}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 308}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.io.formatting.str_to_bool": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 8}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.7320508075688772}}, "df": 6}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.7320508075688772}}, "df": 2}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 40}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 2}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 2}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.23606797749979}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}}, "df": 29, "s": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.7320508075688772}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.7320508075688772}, "ml.utils.loaders": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}}, "df": 46, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 2}}}}}}, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}}, "df": 5}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2.23606797749979}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1.7320508075688772}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}}, "df": 6}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}}, "df": 10, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}}, "df": 11, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.base": {"tf": 1}, "ml.targets.base": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.loaders.load_json": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}}, "df": 14}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.promotion.service": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 12}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.4142135623730951}}, "df": 1, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.7320508075688772}, "ml.features.loading.schemas": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 5, "d": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 26}}}}}}, "s": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.registries": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 12, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 7}, "e": {"docs": {"ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.data_loader": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 2}}}}}}}}}}, "t": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}}, "df": 12, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.types": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 27}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.exceptions": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 4}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 6}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.models.LineageConfig.created_by": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 2.449489742783178}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 2}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 4.795831523312719}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 2}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 2}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 2}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 4.795831523312719}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 4.795831523312719}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 4.795831523312719}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Environment": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics": {"tf": 2}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 2}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 2}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 4.795831523312719}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.7320508075688772}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1.7320508075688772}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 2}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 3}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 2.449489742783178}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2.449489742783178}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 2}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.types": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.7320508075688772}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}}, "df": 219, "i": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.policies.data.row_id": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 12}}, "y": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 3}, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 4}, "m": {"docs": {"ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 6}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}}, "df": 24}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 15}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1.7320508075688772}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 2}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 23, "s": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.7320508075688772}}, "df": 16}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1.4142135623730951}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.logging_config.setup_logging": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 165, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}}, "df": 4}}}, "p": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 2}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 14, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 2}}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 10, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.imputation": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}}, "df": 4}}, "d": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 10}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2.449489742783178}}, "df": 25, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 2}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 2}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.23606797749979}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 2}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 2}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 2.23606797749979}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 90, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}}, "df": 1}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 5}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}}, "df": 7}}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 4}}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.7320508075688772}}, "df": 2, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}}, "df": 3}}, "d": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}}, "df": 11}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 7}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 4, "y": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}}, "df": 18}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 2.449489742783178}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 2}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 2}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 2}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 2.23606797749979}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1.7320508075688772}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 74, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}}, "df": 7}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 34, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}}, "df": 19, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 6}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 21, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 18}}}}}}}, "e": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.7320508075688772}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 2}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 2}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}, "ml.types": {"tf": 1}}, "df": 30, "d": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 14}, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.search.constants": {"tf": 1}}, "df": 7}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 7}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 2}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}}, "df": 8, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 10, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}}, "df": 6}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 4}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {"ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 70, "t": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 11, "s": {"docs": {"ml.feature_freezing.freeze_strategies.base": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2.449489742783178}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}}, "df": 27, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.validate_config.validate_config": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}}, "df": 2}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.schema_validation.validator": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}}, "df": 17}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_int": {"tf": 2}, "ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 6, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 11}, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}}, "df": 1}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 31, "s": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory": {"tf": 1}}, "df": 7}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 7, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 8}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.git.get_git_commit": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 48, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 11, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 1}}}}}}}}, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.io": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}}, "df": 15}}}, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 3}, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}}, "df": 5}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2.23606797749979}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2.23606797749979}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2.23606797749979}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2.23606797749979}, "ml.pipelines.models.LineageConfig": {"tf": 2.23606797749979}}, "df": 5, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 8}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {"ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 2}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}}, "df": 3}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_list": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 7}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 5}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 2}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 26, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}}, "df": 33}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 3}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}}, "df": 4}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 2.23606797749979}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}}, "df": 11, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 4}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 17, "s": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}}, "df": 15}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}}, "df": 2}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 53, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.policies.data.row_id": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.23606797749979}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 35, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.23606797749979}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 25, "s": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}}, "df": 9}}}}, "y": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 12}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.7320508075688772}}, "df": 55}, "t": {"docs": {"ml.modeling.validation.metrics": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}}, "df": 1}}, "/": {"docs": {}, "df": 0, "o": {"docs": {"ml.io.formatting": {"tf": 1}, "ml.io.validation": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}}, "df": 6, "x": {"docs": {}, "df": 0, "c": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1.7320508075688772}, "ml.exceptions": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.error_handling": {"tf": 1.4142135623730951}, "ml.cli.error_handling.resolve_exit_code": {"tf": 2.449489742783178}, "ml.cli.exit_codes": {"tf": 1.4142135623730951}, "ml.exceptions": {"tf": 1}}, "df": 4}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}}, "df": 4}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 25}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}}, "df": 5}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 15, "d": {"docs": {"ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 3}, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.7320508075688772}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 27}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1.4142135623730951}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 2.23606797749979}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 19, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}}, "df": 4, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 2}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.7320508075688772}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.runners": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 2.449489742783178}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}}, "df": 42, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}}, "df": 9}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {"ml.config.loader.load_config": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}}, "df": 6}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}}, "df": 6, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.extraction": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}}, "df": 7}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}}, "df": 1}}}}, "`": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.validation": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.logging_config": {"tf": 1}}, "df": 4}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 8}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 2}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 2.23606797749979}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.build": {"tf": 1.7320508075688772}}, "df": 13}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.runners.explainability.explainers.base.Explainer": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 6}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 18, "s": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.validation.validate_feature_target_entity_key": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {"ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Environment": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 15, "/": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.promotion.config.models": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.exceptions": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {"ml.promotion.service": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}}, "df": 2}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 2}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}}, "df": 7, "s": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 4}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 12}}, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 23}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 2}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 2}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 2}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}}, "df": 48, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 7, "d": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}}, "df": 2}}}}}}, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.validation.validate.validate_run_ids": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 20}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.components.feature_engineering": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 50}}}, "y": {"docs": {"ml.feature_freezing.utils.operators": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.utils.git": {"tf": 1}}, "df": 5}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}}, "df": 7, "r": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.types": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 59}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 18}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 14}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}, "i": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}}, "df": 6}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 4}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 2}}}}}}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}}, "df": 5, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1.4142135623730951}}, "df": 12}, "s": {"docs": {"ml.promotion.persister": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 3}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 3.605551275463989}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 3.605551275463989}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 3.605551275463989}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 3.605551275463989}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 3.605551275463989}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 131, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1.7320508075688772}, "ml.search.params.utils.get_default_int_params": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "r": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.ConfigError": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 2}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 90, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}}, "df": 10, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1.4142135623730951}}, "df": 6}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}}, "df": 15}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.service": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 2, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1.4142135623730951}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.types.LatestSnapshot": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 36, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.utils.loaders.load_json": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}}, "df": 3}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}}, "df": 2}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 2}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 2}, "ml.features.validation.validate_operators.validate_operators": {"tf": 2}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1.7320508075688772}}, "df": 23, "s": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 13}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 40, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 5}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 25}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 33, "s": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 13}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.result": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1.4142135623730951}}, "df": 42, "s": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.hashing": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}}, "df": 9}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 3}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 2}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 3}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 8}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {"ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 7}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 7}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 2.449489742783178}, "ml.search.params.utils.get_default_float_params": {"tf": 2.8284271247461903}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1.4142135623730951}}, "df": 13, "s": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 8, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 12}, "s": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.types": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 12}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 19}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.config.models.LineageConfig": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 7}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 4}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 11}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}}, "df": 3}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1.4142135623730951}}, "df": 5}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 13, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 5}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.operator_factory.build_operators": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.utils.memory.compute_memory_change": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 18}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 3}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}, "e": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2.23606797749979}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 3}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 2.23606797749979}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.7320508075688772}, "ml.exceptions.DataError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 2}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}, "ml.search.models.search_results": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 113, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 2}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 2}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 2}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.7320508075688772}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.7320508075688772}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 2}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1.7320508075688772}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 79, "s": {"docs": {"ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}}, "df": 6}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 3.3166247903554}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}}, "df": 54, "s": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}}, "df": 14, "[": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 6}}}}}, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.training.trainers.base.Trainer.train": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.snapshot_bindings.config": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1.4142135623730951}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 5}}}}}}, "y": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 2}}, "t": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 22, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.7320508075688772}, "ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.7320508075688772}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 52}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.validation": {"tf": 1}}, "df": 2}}}}}}}}, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 13}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 8}}}}, "r": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 33, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 46}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.models.Direction": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 2}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2.23606797749979}}, "df": 3}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.data.processed.processing.process_data": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}}, "df": 2}}}}}, "k": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 8}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.data.shared": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {"ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}}, "df": 6, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}}, "df": 2}, "r": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 2}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 49, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 2}, "d": {"docs": {"ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 3}}}, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1.4142135623730951}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 2}, "ml.features.splitting.splitting.split_data": {"tf": 2.6457513110645907}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 2}, "ml.features.splitting.splitting.get_splits": {"tf": 2.23606797749979}, "ml.features.transforms.transform_target.transform_target": {"tf": 2}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 2.8284271247461903}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 2.8284271247461903}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}}, "df": 31, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}}, "df": 12}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 8}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 26, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}}, "df": 9}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 2}}, "s": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}, "y": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}}, "df": 4}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 2}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2.23606797749979}}, "df": 24, "s": {"docs": {"ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}}, "df": 7, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 10, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 5}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}}, "df": 11, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}}, "df": 11}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 22, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.4142135623730951}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 28, "s": {"docs": {"ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 10, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 6}}}}, "p": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1.4142135623730951}}, "df": 6, "d": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 9}, "s": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}}, "df": 36}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.targets.base": {"tf": 1}}, "df": 10}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "y": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 34, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 16}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {"ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}, "o": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2.449489742783178}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 20, "s": {"docs": {"ml.search.models.experiment_metadata.Sources": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 17}}}, "w": {"docs": {"ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 3}}, "a": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_file": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}}, "df": 8, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 18}}}, "p": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}}, "df": 9}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.logging_config": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}}, "df": 3}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1.7320508075688772}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 2}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 2}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.7320508075688772}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 2}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1.4142135623730951}}, "df": 71, "s": {"docs": {"ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.promotion.config.models": {"tf": 1}}, "df": 28, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 12}}}, "e": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 11}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.promotion.config.models.PromotionMetricsConfig": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 8}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.7320508075688772}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2.23606797749979}, "ml.search.params.refiners": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 2.449489742783178}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 2}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 2}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 3}}, "df": 95, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}}, "df": 3}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}}, "df": 3}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.7320508075688772}}, "df": 7, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.search.searchers": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.search": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.utils": {"tf": 1}}, "df": 3}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 3}}}}}}}}}}}, "t": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 28, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 18}}}}}, "s": {"docs": {"ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.sets": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 11, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 1}}}}}}}}, "[": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}}, "df": 3, "d": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}}, "df": 3}, "r": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.hashing.safe.safe": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 2}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}}, "df": 18}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}}, "df": 3, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 2.23606797749979}}, "df": 8, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 2}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.utils.pipeline_core.runner": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 7, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.schema_validation": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}}, "df": 4}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 4}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 13, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 8}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 37}}, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}}, "df": 5, "s": {"docs": {"ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.promotion.config.models.MetricSet": {"tf": 1}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 11}}, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}}, "df": 5}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.AllSplitsInfo": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}}, "df": 5}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 2.6457513110645907}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2.6457513110645907}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2.6457513110645907}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 2.449489742783178}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2.8284271247461903}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.7320508075688772}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.7320508075688772}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 2}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 2}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 2.449489742783178}}, "df": 70, "s": {"docs": {"ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}}, "df": 6, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}}}}}}}}, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.hashing.safe": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 14, "d": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 13}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.result": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 13, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 14}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 78, "s": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 330}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1.4142135623730951}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}}, "df": 17}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "s": {"docs": {"ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}}, "df": 14}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 6}, "d": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}, "o": {"docs": {"ml.utils.git.get_git_commit": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 2, "y": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 6}, "s": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}}, "df": 4}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}}, "df": 6}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.components": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.shared": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.4142135623730951}}, "df": 6}}, "s": {"docs": {"ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}}, "df": 35}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.validation.validate_min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}}, "df": 3}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 14}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}}, "df": 3}, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 3.1622776601683795}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 2.449489742783178}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 2}}, "df": 26}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.raw.persistence": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 10}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.validation.validate_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 10, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 4, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.processed.processing.process_data": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 2.6457513110645907}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 3.1622776601683795}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2.8284271247461903}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 2.6457513110645907}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 2.449489742783178}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 2.23606797749979}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 2.449489742783178}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2.23606797749979}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 72, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 2}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 2}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.7320508075688772}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 58, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 12}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1.4142135623730951}}, "df": 21, "s": {"docs": {"ml.metadata.validation.runners": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}}, "df": 14, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.getters.get.get_runners_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.utils.randomized_search": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}}, "df": 9}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 27, "d": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}, "s": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 41}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}}, "df": 1}}}, "w": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 38, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}}, "df": 1, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2}}, "df": 5, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "v": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.7320508075688772}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}}, "df": 30, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}}, "df": 9}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 2}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}}, "df": 9, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5, "`": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}, "m": {"docs": {"ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 4}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 11, "s": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}}, "df": 1}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.validation.validate_target.validate_target": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 9, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 7, "d": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}}, "df": 10}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.validation.normalize_dtype": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}}, "df": 2}}}}}}}}}, "n": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 4, "e": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 71}}, "t": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 22, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 15}}}}, "a": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.4142135623730951}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 41, "s": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.config.models.MetricName": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}}, "df": 41, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "d": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}}, "df": 1}, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2.6457513110645907}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 2.6457513110645907}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 19, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 3}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1.4142135623730951}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.search.params.refiners": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 5, "[": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 4}, "v": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.4142135623730951}}, "df": 2}}}}, "b": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1.7320508075688772}}, "df": 1, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 19, "/": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.search_cfg": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 28, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}}, "df": 10}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.builders": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.promotion.context": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 1}}, "t": {"docs": {"ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"ml.components": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 36, "d": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 16}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 4}}}, "d": {"docs": {"ml.utils.runtime.gpu_info": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}}, "df": 66, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}}, "df": 6}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 1}}}, "l": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 2}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 6}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.refiners.refine_border_count": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "e": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 23, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.7320508075688772}, "ml.config.loader.load_config": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 20}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}}, "df": 11, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}}, "df": 5}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 10}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}}, "df": 16, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 2}}, "df": 15}}}}}, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}}, "df": 1}}}}, "x": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 37}, "y": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 24, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 2}}, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1.4142135623730951}}, "df": 4, "/": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.utils.loaders": {"tf": 1}}, "df": 2}}}}}}}}}, "v": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}}, "df": 7}, "docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 2}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.7320508075688772}}, "df": 29, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 8}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.validation.validate_snapshot_ids": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}}, "df": 4}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.hashing.safe.safe": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}}, "df": 3, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 76, "s": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.config.hashing": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.validate.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 97}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}}, "df": 10}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.promotion.config.models.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.models.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.validate": {"tf": 1}, "ml.promotion.validation.validate.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.promotion.validation.validate.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.validate.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.validate.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 103, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 5}, "/": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.validation.validate_operators.validate_operators": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_int": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 30, "s": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.7320508075688772}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.models.ThresholdsConfig": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1.4142135623730951}}, "df": 30}, "d": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.transforms.transform_target": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 6}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}, "{": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}}, "df": 6, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}}, "df": 6}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}}, "df": 4}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}}, "df": 5}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 6, "d": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}}, "df": 11}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.processed.processing.add_row_id_base": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {"ml.io.persistence": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.getters": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 10}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2}}}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}}, "df": 4}}}, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 9}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}}, "df": 3}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils": {"tf": 1.4142135623730951}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.models.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.validate.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.search.models": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 126, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 5}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}}, "df": 3}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.exceptions": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}}, "df": 2}}}, "e": {"docs": {"ml.registries": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "k": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 6}}}, "s": {"docs": {"ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 29}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 15}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 32}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 15}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.raw": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.getters.get.get_runners_metadata": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.config.schemas.constants": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1.4142135623730951}}, "df": 2}}, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 3, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.persistence.save_metadata": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}}, "df": 3}}}}}}}, "k": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 4}}, "y": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 2}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 2.449489742783178}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 2.449489742783178}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 2.23606797749979}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.build": {"tf": 1.7320508075688772}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 41, "s": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 11}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 3}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}}, "df": 1}}}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 9}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"ml": {"fullname": "ml", "modulename": "ml", "kind": "module", "doc": "

    Core machine-learning package for hotel management pipelines.

    \n"}, "ml.cli": {"fullname": "ml.cli", "modulename": "ml.cli", "kind": "module", "doc": "

    A package for the machine learning command-line interface.

    \n"}, "ml.cli.error_handling": {"fullname": "ml.cli.error_handling", "modulename": "ml.cli.error_handling", "kind": "module", "doc": "

    CLI exception-to-exit-code mapping utilities.

    \n\n

    This module centralizes translation of domain-specific exceptions into stable\nprocess exit codes so command-line entrypoints can fail consistently.

    \n"}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"fullname": "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP", "modulename": "ml.cli.error_handling", "qualname": "EXCEPTION_EXIT_CODE_MAP", "kind": "variable", "doc": "

    \n", "default_value": "{<class 'ml.exceptions.ConfigError'>: 2, <class 'ml.exceptions.DataError'>: 3, <class 'ml.exceptions.PipelineContractError'>: 4, <class 'ml.exceptions.SearchError'>: 5, <class 'ml.exceptions.TrainingError'>: 6, <class 'ml.exceptions.EvaluationError'>: 7, <class 'ml.exceptions.ExplainabilityError'>: 8, <class 'ml.exceptions.PersistenceError'>: 9, <class 'ml.exceptions.InferenceError'>: 10, <class 'ml.exceptions.MonitoringError'>: 11}"}, "ml.cli.error_handling.resolve_exit_code": {"fullname": "ml.cli.error_handling.resolve_exit_code", "modulename": "ml.cli.error_handling", "qualname": "resolve_exit_code", "kind": "function", "doc": "

    Resolve a process exit code from an exception instance.

    \n\n

    Resolution order:\n 1. Exact/derived matches from EXCEPTION_EXIT_CODE_MAP.\n 2. UserError fallback to configuration error exit code.\n 3. RuntimeMLError fallback to unexpected error exit code.\n 4. Default unexpected error exit code for all other exceptions.

    \n\n

    Args:\n exc: Exception raised during CLI execution.

    \n\n

    Returns:\n int: Exit code representing the error category.

    \n", "signature": "(exc: Exception) -> int:", "funcdef": "def"}, "ml.cli.exit_codes": {"fullname": "ml.cli.exit_codes", "modulename": "ml.cli.exit_codes", "kind": "module", "doc": "

    Canonical process exit codes for project CLIs.

    \n\n

    The constants in this module define stable numeric exit codes for broad\nfailure categories so shell scripts and orchestrators can react reliably.

    \n"}, "ml.cli.exit_codes.EXIT_SUCCESS": {"fullname": "ml.cli.exit_codes.EXIT_SUCCESS", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_SUCCESS", "kind": "variable", "doc": "

    \n", "default_value": "0"}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_UNEXPECTED_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "1"}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_CONFIG_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_CONFIG_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "2"}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_DATA_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_DATA_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "3"}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_PIPELINE_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_PIPELINE_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "4"}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_SEARCH_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_SEARCH_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "5"}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_TRAINING_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_TRAINING_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "6"}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_EVALUATION_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_EVALUATION_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "7"}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_EXPLAINABILITY_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "8"}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_PERSISTENCE_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "9"}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_INFERENCE_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_INFERENCE_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "10"}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"fullname": "ml.cli.exit_codes.EXIT_MONITORING_ERROR", "modulename": "ml.cli.exit_codes", "qualname": "EXIT_MONITORING_ERROR", "kind": "variable", "doc": "

    \n", "default_value": "11"}, "ml.components": {"fullname": "ml.components", "modulename": "ml.components", "kind": "module", "doc": "

    Reusable ML pipeline components and transformer building blocks.

    \n"}, "ml.components.base": {"fullname": "ml.components.base", "modulename": "ml.components.base", "kind": "module", "doc": "

    Base classes and mixins for scikit-learn-compatible pipeline components.

    \n"}, "ml.components.base.PipelineComponent": {"fullname": "ml.components.base.PipelineComponent", "modulename": "ml.components.base", "qualname": "PipelineComponent", "kind": "class", "doc": "

    Base class for all pipeline components.

    \n", "bases": "sklearn.base.BaseEstimator, sklearn.base.TransformerMixin"}, "ml.components.base.PipelineComponent.fit": {"fullname": "ml.components.base.PipelineComponent.fit", "modulename": "ml.components.base", "qualname": "PipelineComponent.fit", "kind": "function", "doc": "

    Return self to satisfy scikit-learn estimator interface.

    \n\n

    Args:\n X: Input feature matrix.\n y: Optional target vector.

    \n\n

    Returns:\n PipelineComponent: Fitted component instance.

    \n", "signature": "(self, X, y=None):", "funcdef": "def"}, "ml.components.base.SklearnFeatureMixin": {"fullname": "ml.components.base.SklearnFeatureMixin", "modulename": "ml.components.base", "qualname": "SklearnFeatureMixin", "kind": "class", "doc": "

    Mixin for transformers that must expose n_features_in_.

    \n"}, "ml.components.base.SklearnFeatureMixin.fit": {"fullname": "ml.components.base.SklearnFeatureMixin.fit", "modulename": "ml.components.base", "qualname": "SklearnFeatureMixin.fit", "kind": "function", "doc": "

    Store input feature count on fit for downstream compatibility.

    \n\n

    Args:\n X: Input feature matrix.\n y: Optional target vector.

    \n\n

    Returns:\n SklearnFeatureMixin: Fitted mixin instance.

    \n", "signature": "(self, X, y=None):", "funcdef": "def"}, "ml.components.feature_engineering": {"fullname": "ml.components.feature_engineering", "modulename": "ml.components.feature_engineering", "kind": "module", "doc": "

    Feature engineering operators and orchestration utilities.

    \n"}, "ml.components.feature_engineering.adr_per_person": {"fullname": "ml.components.feature_engineering.adr_per_person", "modulename": "ml.components.feature_engineering.adr_per_person", "kind": "module", "doc": "

    Feature operator for per-person average daily rate (ADR).

    \n"}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"fullname": "ml.components.feature_engineering.adr_per_person.AdrPerPerson", "modulename": "ml.components.feature_engineering.adr_per_person", "qualname": "AdrPerPerson", "kind": "class", "doc": "

    Create adr_per_person from ADR and party-size columns.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"fullname": "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features", "modulename": "ml.components.feature_engineering.adr_per_person", "qualname": "AdrPerPerson.output_features", "kind": "variable", "doc": "

    \n", "default_value": "['adr_per_person']"}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"fullname": "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform", "modulename": "ml.components.feature_engineering.adr_per_person", "qualname": "AdrPerPerson.transform", "kind": "function", "doc": "

    Compute ADR normalized by number of guests in each booking.

    \n\n

    Args:\n X: Input feature frame containing adr, adults, children,\n and babies columns.

    \n\n

    Returns:\n DataFrame with an added adr_per_person feature.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_engineering.arrival_date": {"fullname": "ml.components.feature_engineering.arrival_date", "modulename": "ml.components.feature_engineering.arrival_date", "kind": "module", "doc": "

    Feature operator for constructing a normalized arrival datetime column.

    \n"}, "ml.components.feature_engineering.arrival_date.month_map": {"fullname": "ml.components.feature_engineering.arrival_date.month_map", "modulename": "ml.components.feature_engineering.arrival_date", "qualname": "month_map", "kind": "variable", "doc": "

    \n", "default_value": "{'January': 1, 'February': 2, 'March': 3, 'April': 4, 'May': 5, 'June': 6, 'July': 7, 'August': 8, 'September': 9, 'October': 10, 'November': 11, 'December': 12}"}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"fullname": "ml.components.feature_engineering.arrival_date.ArrivalDate", "modulename": "ml.components.feature_engineering.arrival_date", "qualname": "ArrivalDate", "kind": "class", "doc": "

    Create arrival_date from year, month-name, and day columns.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"fullname": "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features", "modulename": "ml.components.feature_engineering.arrival_date", "qualname": "ArrivalDate.output_features", "kind": "variable", "doc": "

    \n", "default_value": "['arrival_date']"}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"fullname": "ml.components.feature_engineering.arrival_date.ArrivalDate.transform", "modulename": "ml.components.feature_engineering.arrival_date", "qualname": "ArrivalDate.transform", "kind": "function", "doc": "

    Build a datetime feature representing booking arrival date.

    \n\n

    Args:\n X: Input feature frame containing arrival year, month name, and day\n components.

    \n\n

    Returns:\n DataFrame with an added arrival_date datetime column.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_engineering.arrival_season": {"fullname": "ml.components.feature_engineering.arrival_season", "modulename": "ml.components.feature_engineering.arrival_season", "kind": "module", "doc": "

    Feature operator for deriving seasonal arrival categories.

    \n"}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"fullname": "ml.components.feature_engineering.arrival_season.ArrivalSeason", "modulename": "ml.components.feature_engineering.arrival_season", "qualname": "ArrivalSeason", "kind": "class", "doc": "

    Map arrival week numbers to coarse seasonal labels.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"fullname": "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features", "modulename": "ml.components.feature_engineering.arrival_season", "qualname": "ArrivalSeason.output_features", "kind": "variable", "doc": "

    \n", "default_value": "['arrival_season']"}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"fullname": "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform", "modulename": "ml.components.feature_engineering.arrival_season", "qualname": "ArrivalSeason.transform", "kind": "function", "doc": "

    Create arrival_season using week-number based season buckets.

    \n\n

    Args:\n X: Input dataframe containing arrival_date_week_number.

    \n\n

    Returns:\n pd.DataFrame: Dataframe including derived arrival_season.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_engineering.base": {"fullname": "ml.components.feature_engineering.base", "modulename": "ml.components.feature_engineering.base", "kind": "module", "doc": "

    Base abstractions and orchestration for feature engineering operators.

    \n"}, "ml.components.feature_engineering.base.logger": {"fullname": "ml.components.feature_engineering.base.logger", "modulename": "ml.components.feature_engineering.base", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.components.feature_engineering.base (WARNING)>"}, "ml.components.feature_engineering.base.FeatureOperator": {"fullname": "ml.components.feature_engineering.base.FeatureOperator", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureOperator", "kind": "class", "doc": "

    Produces one or more features.

    \n", "bases": "ml.components.base.PipelineComponent"}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"fullname": "ml.components.feature_engineering.base.FeatureOperator.output_features", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureOperator.output_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "[]"}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"fullname": "ml.components.feature_engineering.base.FeatureOperator.transform", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureOperator.transform", "kind": "function", "doc": "

    Transform input data by producing configured derived features.

    \n\n

    Args:\n X: Input dataframe for operator transformation.

    \n\n

    Returns:\n pd.DataFrame: Transformed dataframe including operator outputs.

    \n", "signature": "(self, X: pandas.core.frame.DataFrame) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.components.feature_engineering.base.FeatureEngineer": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer", "kind": "class", "doc": "

    Apply configured feature operators in schema-defined execution order.

    \n", "bases": "ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.__init__", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.__init__", "kind": "function", "doc": "

    Initialize feature engineer with derived schema and operator map.

    \n\n

    Args:\n derived_schema: Derived schema describing operator execution order.\n operators: Mapping of operator name to instantiated operator.

    \n\n

    Returns:\n None: Initializes feature-engineering orchestrator state.

    \n", "signature": "(derived_schema: pandas.core.frame.DataFrame, operators: dict)"}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.derived_schema", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.derived_schema", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.operators", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.operators", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.fit", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.fit", "kind": "function", "doc": "

    Return self for scikit-learn compatibility.

    \n\n

    Args:\n X: Feature input ignored in this no-op fit.\n y: Optional target input ignored in this no-op fit.

    \n\n

    Returns:\n FeatureEngineer: Fitted estimator instance.

    \n", "signature": "(self, X, y=None):", "funcdef": "def"}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"fullname": "ml.components.feature_engineering.base.FeatureEngineer.transform", "modulename": "ml.components.feature_engineering.base", "qualname": "FeatureEngineer.transform", "kind": "function", "doc": "

    Run all configured operators and validate expected outputs exist.

    \n\n

    Args:\n X: Input dataframe to transform.

    \n\n

    Returns:\n pd.DataFrame: Transformed dataframe after applying all operators.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_engineering.pit_operator": {"fullname": "ml.components.feature_engineering.pit_operator", "modulename": "ml.components.feature_engineering.pit_operator", "kind": "module", "doc": "

    Point-in-time-safe feature operator for grouped cumulative aggregations.

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator", "kind": "class", "doc": "

    Generic PIT-safe operator for cumulative/aggregate features.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.__init__", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.__init__", "kind": "function", "doc": "

    Configure grouped aggregation inputs and generated feature metadata.

    \n\n

    Args:\n groupby_cols: Columns used for grouping.\n agg_col: Aggregation source column.\n agg_func: Aggregation function.\n feature_name: Name of derived feature column.

    \n\n

    Returns:\n None: Initializes operator configuration.

    \n", "signature": "(groupby_cols, agg_col, agg_func, feature_name)"}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.groupby_cols", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.agg_col", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.agg_col", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.agg_func", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.agg_func", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.feature_name", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.feature_name", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.output_features", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.output_features", "kind": "variable", "doc": "

    \n", "default_value": "[]"}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"fullname": "ml.components.feature_engineering.pit_operator.PITOperator.transform", "modulename": "ml.components.feature_engineering.pit_operator", "qualname": "PITOperator.transform", "kind": "function", "doc": "

    Generate lagged grouped cumulative aggregate without leakage.

    \n\n

    Args:\n X: Input dataframe.

    \n\n

    Returns:\n pd.DataFrame: Dataframe with derived PIT-safe feature column.

    \n", "signature": "(self, X: pandas.core.frame.DataFrame) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.components.feature_engineering.total_stay": {"fullname": "ml.components.feature_engineering.total_stay", "modulename": "ml.components.feature_engineering.total_stay", "kind": "module", "doc": "

    Feature operator for computing total stay duration in nights.

    \n"}, "ml.components.feature_engineering.total_stay.TotalStay": {"fullname": "ml.components.feature_engineering.total_stay.TotalStay", "modulename": "ml.components.feature_engineering.total_stay", "qualname": "TotalStay", "kind": "class", "doc": "

    Create total_stay as weekend plus weekday nights.

    \n", "bases": "ml.components.feature_engineering.base.FeatureOperator, ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"fullname": "ml.components.feature_engineering.total_stay.TotalStay.output_features", "modulename": "ml.components.feature_engineering.total_stay", "qualname": "TotalStay.output_features", "kind": "variable", "doc": "

    \n", "default_value": "['total_stay']"}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"fullname": "ml.components.feature_engineering.total_stay.TotalStay.transform", "modulename": "ml.components.feature_engineering.total_stay", "qualname": "TotalStay.transform", "kind": "function", "doc": "

    Compute total number of booked nights for each reservation.

    \n\n

    Args:\n X: Input feature frame containing weekday and weekend night counts.

    \n\n

    Returns:\n DataFrame with an added total_stay feature.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.feature_selection": {"fullname": "ml.components.feature_selection", "modulename": "ml.components.feature_selection", "kind": "module", "doc": "

    Feature selection transformers for model-ready datasets.

    \n"}, "ml.components.feature_selection.selector": {"fullname": "ml.components.feature_selection.selector", "modulename": "ml.components.feature_selection.selector", "kind": "module", "doc": "

    Feature selection transformer for fixed-column model inputs.

    \n"}, "ml.components.feature_selection.selector.logger": {"fullname": "ml.components.feature_selection.selector.logger", "modulename": "ml.components.feature_selection.selector", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.components.feature_selection.selector (WARNING)>"}, "ml.components.feature_selection.selector.FeatureSelector": {"fullname": "ml.components.feature_selection.selector.FeatureSelector", "modulename": "ml.components.feature_selection.selector", "qualname": "FeatureSelector", "kind": "class", "doc": "

    Select a fixed set of columns for model training.

    \n\n

    The transformer validates presence of selected columns and returns a\nDataFrame with only the requested columns.

    \n", "bases": "ml.components.base.SklearnFeatureMixin"}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"fullname": "ml.components.feature_selection.selector.FeatureSelector.__init__", "modulename": "ml.components.feature_selection.selector", "qualname": "FeatureSelector.__init__", "kind": "function", "doc": "

    Initialize selector with the required feature list.

    \n\n

    Args:\n selected_features: Feature names to keep.

    \n\n

    Returns:\n None: Initializes selector state.

    \n", "signature": "(selected_features)"}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"fullname": "ml.components.feature_selection.selector.FeatureSelector.selected_features", "modulename": "ml.components.feature_selection.selector", "qualname": "FeatureSelector.selected_features", "kind": "variable", "doc": "

    \n"}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"fullname": "ml.components.feature_selection.selector.FeatureSelector.transform", "modulename": "ml.components.feature_selection.selector", "qualname": "FeatureSelector.transform", "kind": "function", "doc": "

    Return only selected features after validating their presence.

    \n\n

    Args:\n X: Input dataframe.

    \n\n

    Returns:\n pd.DataFrame: Dataframe restricted to selected features.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.imputation": {"fullname": "ml.components.imputation", "modulename": "ml.components.imputation", "kind": "module", "doc": "

    Imputation transformers for handling missing feature values.

    \n"}, "ml.components.imputation.categorical": {"fullname": "ml.components.imputation.categorical", "modulename": "ml.components.imputation.categorical", "kind": "module", "doc": "

    Categorical missing-value imputation components.

    \n"}, "ml.components.imputation.categorical.FillCategoricalMissing": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing", "kind": "class", "doc": "

    Fill missing values in categorical columns with the string \"missing\".

    \n\n

    This transformer coerces values to string and replaces NA values with\nthe literal \"missing\" to keep downstream categorical encoders robust.

    \n", "bases": "ml.components.base.PipelineComponent"}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing.__init__", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing.__init__", "kind": "function", "doc": "

    Store categorical feature names targeted for imputation.

    \n\n

    Args:\n categorical_features: Column names to impute.

    \n\n

    Returns:\n None: Initializes transformer state.

    \n", "signature": "(categorical_features)"}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing.categorical_features", "kind": "variable", "doc": "

    \n"}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing.fit", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing.fit", "kind": "function", "doc": "

    Return self because this transformer is stateless.

    \n\n

    Args:\n X: Input features (unused).\n y: Optional target (unused).

    \n\n

    Returns:\n FillCategoricalMissing: Fitted transformer instance.

    \n", "signature": "(self, X, y=None):", "funcdef": "def"}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"fullname": "ml.components.imputation.categorical.FillCategoricalMissing.transform", "modulename": "ml.components.imputation.categorical", "qualname": "FillCategoricalMissing.transform", "kind": "function", "doc": "

    Replace missing categorical values with the literal \"missing\" and coerce all values to string type for consistency.

    \n\n

    Args:\n X: Input dataframe.

    \n\n

    Returns:\n pd.DataFrame: Dataframe with imputed categorical columns, all as string dtype.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.components.schema_validation": {"fullname": "ml.components.schema_validation", "modulename": "ml.components.schema_validation", "kind": "module", "doc": "

    Schema validation components for model input safeguards.

    \n"}, "ml.components.schema_validation.validator": {"fullname": "ml.components.schema_validation.validator", "modulename": "ml.components.schema_validation.validator", "kind": "module", "doc": "

    Schema validation transformer for model input integrity checks.

    \n"}, "ml.components.schema_validation.validator.logger": {"fullname": "ml.components.schema_validation.validator.logger", "modulename": "ml.components.schema_validation.validator", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.components.schema_validation.validator (WARNING)>"}, "ml.components.schema_validation.validator.SchemaValidator": {"fullname": "ml.components.schema_validation.validator.SchemaValidator", "modulename": "ml.components.schema_validation.validator", "qualname": "SchemaValidator", "kind": "class", "doc": "

    Validate that incoming DataFrame contains required columns.

    \n\n

    Args:\n required_features (list): List of column names expected in the input.

    \n", "bases": "ml.components.base.PipelineComponent"}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"fullname": "ml.components.schema_validation.validator.SchemaValidator.__init__", "modulename": "ml.components.schema_validation.validator", "qualname": "SchemaValidator.__init__", "kind": "function", "doc": "

    Initialize validator with required input feature names.

    \n\n

    Args:\n required_features: Required feature names.

    \n\n

    Returns:\n None: Initializes validator state.

    \n", "signature": "(required_features)"}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"fullname": "ml.components.schema_validation.validator.SchemaValidator.required_features", "modulename": "ml.components.schema_validation.validator", "qualname": "SchemaValidator.required_features", "kind": "variable", "doc": "

    \n"}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"fullname": "ml.components.schema_validation.validator.SchemaValidator.transform", "modulename": "ml.components.schema_validation.validator", "qualname": "SchemaValidator.transform", "kind": "function", "doc": "

    Validate required columns are present and return input unchanged.

    \n\n

    Args:\n X: Input dataframe.

    \n\n

    Returns:\n pd.DataFrame: Original dataframe when schema validation passes.

    \n", "signature": "(self, X):", "funcdef": "def"}, "ml.config": {"fullname": "ml.config", "modulename": "ml.config", "kind": "module", "doc": "

    A package for storing machine learning configuration.

    \n"}, "ml.config.best_params": {"fullname": "ml.config.best_params", "modulename": "ml.config.best_params", "kind": "module", "doc": "

    Utilities for applying persisted best-search parameters to configs.

    \n"}, "ml.config.best_params.logger": {"fullname": "ml.config.best_params.logger", "modulename": "ml.config.best_params", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.best_params (WARNING)>"}, "ml.config.best_params.MergeTarget": {"fullname": "ml.config.best_params.MergeTarget", "modulename": "ml.config.best_params", "qualname": "MergeTarget", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['training', 'model', 'ensemble']"}, "ml.config.best_params.MODEL_KEYS": {"fullname": "ml.config.best_params.MODEL_KEYS", "modulename": "ml.config.best_params", "qualname": "MODEL_KEYS", "kind": "variable", "doc": "

    \n", "default_value": "{'random_strength', 'l2_leaf_reg', 'depth', 'min_data_in_leaf', 'border_count', 'learning_rate', 'colsample_bylevel'}"}, "ml.config.best_params.ENSEMBLE_KEYS": {"fullname": "ml.config.best_params.ENSEMBLE_KEYS", "modulename": "ml.config.best_params", "qualname": "ENSEMBLE_KEYS", "kind": "variable", "doc": "

    \n", "default_value": "{'bagging_temperature'}"}, "ml.config.best_params.unflatten_best_params": {"fullname": "ml.config.best_params.unflatten_best_params", "modulename": "ml.config.best_params", "qualname": "unflatten_best_params", "kind": "function", "doc": "

    Convert flattened search parameters into structured model/ensemble blocks.

    \n\n

    Args:\n flat: Flat parameter mapping, typically using section__name keys.

    \n\n

    Returns:\n Structured parameter mapping with model and ensemble groups when\n matching keys are present.

    \n", "signature": "(flat: dict[str, typing.Any]) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.best_params.apply_best_params": {"fullname": "ml.config.best_params.apply_best_params", "modulename": "ml.config.best_params", "qualname": "apply_best_params", "kind": "function", "doc": "

    Merge best parameters from search metadata into a config dictionary.

    \n\n

    Args:\n cfg: Base configuration dictionary.\n best_params_path: Path to search metadata containing best parameters.\n merge_target: Config section where structured params are merged.\n strict: Whether missing/invalid data should raise instead of warn.

    \n\n

    Returns:\n dict[str, Any]: Updated configuration dictionary.

    \n", "signature": "(\tcfg: dict[str, typing.Any],\tbest_params_path: pathlib.Path,\t*,\tmerge_target: Literal['training', 'model', 'ensemble'] = 'training',\tstrict: bool = True) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.compute_data_config_hash": {"fullname": "ml.config.compute_data_config_hash", "modulename": "ml.config.compute_data_config_hash", "kind": "module", "doc": "

    Hash utilities for non-model Pydantic configuration objects.

    \n"}, "ml.config.compute_data_config_hash.logger": {"fullname": "ml.config.compute_data_config_hash.logger", "modulename": "ml.config.compute_data_config_hash", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.compute_data_config_hash (WARNING)>"}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"fullname": "ml.config.compute_data_config_hash.compute_data_config_hash", "modulename": "ml.config.compute_data_config_hash", "qualname": "compute_data_config_hash", "kind": "function", "doc": "

    Compute a deterministic MD5 hash for a typed configuration object.

    \n\n

    Args:\n config: Interim, processed, or tabular feature-freezing config object.

    \n\n

    Returns:\n str: Hex digest of the serialized configuration content.

    \n", "signature": "(\tconfig: ml.data.config.schemas.interim.InterimConfig | ml.data.config.schemas.processed.ProcessedConfig | ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig) -> str:", "funcdef": "def"}, "ml.config.hashing": {"fullname": "ml.config.hashing", "modulename": "ml.config.hashing", "kind": "module", "doc": "

    Hashing helpers for validated model configuration objects.

    \n"}, "ml.config.hashing.logger": {"fullname": "ml.config.hashing.logger", "modulename": "ml.config.hashing", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.hashing (WARNING)>"}, "ml.config.hashing.compute_model_config_hash": {"fullname": "ml.config.hashing.compute_model_config_hash", "modulename": "ml.config.hashing", "qualname": "compute_model_config_hash", "kind": "function", "doc": "

    Compute SHA-256 hash for a config dictionary excluding _meta.

    \n\n

    Args:\n cfg: Configuration dictionary payload.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(cfg: dict[str, typing.Any]) -> str:", "funcdef": "def"}, "ml.config.hashing.add_config_hash": {"fullname": "ml.config.hashing.add_config_hash", "modulename": "ml.config.hashing", "qualname": "add_config_hash", "kind": "function", "doc": "

    Compute and attach config hash to cfg.meta.config_hash.

    \n\n

    Args:\n cfg: Search or training configuration object.

    \n\n

    Returns:\n SearchModelConfig | TrainModelConfig: Updated config object.

    \n", "signature": "(\tcfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig) -> ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig:", "funcdef": "def"}, "ml.config.loader": {"fullname": "ml.config.loader", "modulename": "ml.config.loader", "kind": "module", "doc": "

    Configuration loading, composition, and validation entrypoints.

    \n"}, "ml.config.loader.logger": {"fullname": "ml.config.loader.logger", "modulename": "ml.config.loader", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.loader (WARNING)>"}, "ml.config.loader.load_config": {"fullname": "ml.config.loader.load_config", "modulename": "ml.config.loader", "qualname": "load_config", "kind": "function", "doc": "

    Load and compose raw config with extends/env overlays and metadata.

    \n\n

    Args:\n path: Primary config file path.\n env: Environment overlay key.\n cfg_type: Configuration type (search or train).\n search_dir: Search output directory used by train configs.\n merge_target: Section where best params are merged for train configs.\n skip_missing_extends: Whether to ignore missing extended config files.\n skip_missing_env: Whether to ignore missing env overlay files.

    \n\n

    Returns:\n dict[str, Any]: Merged raw configuration dictionary.

    \n", "signature": "(\tpath: pathlib.Path,\t*,\tenv: str = 'default',\tcfg_type: Literal['search', 'train'],\tsearch_dir: pathlib.Path | None = None,\tmerge_target: Literal['training', 'model', 'ensemble'] = 'training',\tskip_missing_extends: bool = False,\tskip_missing_env: bool = True) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.loader.load_and_validate_config": {"fullname": "ml.config.loader.load_and_validate_config", "modulename": "ml.config.loader", "qualname": "load_and_validate_config", "kind": "function", "doc": "

    Load and validate model config into typed schema objects.

    \n\n

    Args:\n path: Config file path.\n search_dir: Optional search run directory for training configs.\n cfg_type: Config type discriminator.\n env: Environment overlay key.

    \n\n

    Returns:\n SearchModelConfig | TrainModelConfig: Validated typed configuration.

    \n", "signature": "(\tpath: pathlib.Path,\tsearch_dir: pathlib.Path | None = None,\t*,\tcfg_type: Literal['search', 'train'],\tenv: str = 'default') -> ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig:", "funcdef": "def"}, "ml.config.merge": {"fullname": "ml.config.merge", "modulename": "ml.config.merge", "kind": "module", "doc": "

    Config composition helpers for recursive merges and overlays.

    \n"}, "ml.config.merge.logger": {"fullname": "ml.config.merge.logger", "modulename": "ml.config.merge", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.merge (WARNING)>"}, "ml.config.merge.deep_merge": {"fullname": "ml.config.merge.deep_merge", "modulename": "ml.config.merge", "qualname": "deep_merge", "kind": "function", "doc": "

    Recursively merge config dictionaries where later entries take precedence.

    \n\n

    Args:\n dicts: Ordered dictionaries to merge.

    \n\n

    Returns:\n dict[str, Any]: Deep-merged configuration dictionary.

    \n", "signature": "(dicts: list[dict[str, typing.Any]]) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.merge.resolve_extends": {"fullname": "ml.config.merge.resolve_extends", "modulename": "ml.config.merge", "qualname": "resolve_extends", "kind": "function", "doc": "

    Resolve recursive extends references and deep-merge parent configs.

    \n\n

    Args:\n cfg: Raw configuration dictionary.\n base_path: Directory used to resolve relative parent paths.\n skip_missing: Whether missing parent configs should be ignored.

    \n\n

    Returns:\n dict[str, Any]: Configuration with all parent configs merged.

    \n", "signature": "(\tcfg: dict[str, typing.Any],\tbase_path: pathlib.Path,\t*,\tskip_missing: bool = False) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.merge.apply_env_overlay": {"fullname": "ml.config.merge.apply_env_overlay", "modulename": "ml.config.merge", "qualname": "apply_env_overlay", "kind": "function", "doc": "

    Apply environment overlay config on top of the base configuration.

    \n\n

    Args:\n cfg: Base configuration dictionary.\n env: Environment overlay key.\n env_path: Environment config file path.\n skip_missing: Whether missing overlays should be ignored.

    \n\n

    Returns:\n dict[str, Any]: Configuration after applying env overlay.

    \n", "signature": "(\tcfg: dict[str, typing.Any],\tenv: str | None,\tenv_path: pathlib.Path,\tskip_missing: bool = True) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.config.schemas": {"fullname": "ml.config.schemas", "modulename": "ml.config.schemas", "kind": "module", "doc": "

    A package for storing machine learning configuration schemas.

    \n"}, "ml.config.schemas.base_model_params": {"fullname": "ml.config.schemas.base_model_params", "modulename": "ml.config.schemas.base_model_params", "kind": "module", "doc": "

    Shared base parameter schemas for train/search model configurations.

    \n"}, "ml.config.schemas.base_model_params.BaseModelParams": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams", "kind": "class", "doc": "

    Core model hyperparameters shared across workflows.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.depth", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.depth", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.learning_rate", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.learning_rate", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.l2_leaf_reg", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.random_strength", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.random_strength", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.min_data_in_leaf", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"fullname": "ml.config.schemas.base_model_params.BaseModelParams.border_count", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseModelParams.border_count", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"fullname": "ml.config.schemas.base_model_params.BaseEnsembleParams", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseEnsembleParams", "kind": "class", "doc": "

    Ensemble-related hyperparameters shared across workflows.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"fullname": "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseEnsembleParams.bagging_temperature", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"fullname": "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel", "modulename": "ml.config.schemas.base_model_params", "qualname": "BaseEnsembleParams.colsample_bylevel", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.hardware_cfg": {"fullname": "ml.config.schemas.hardware_cfg", "modulename": "ml.config.schemas.hardware_cfg", "kind": "module", "doc": "

    Hardware execution configuration schemas for model workflows.

    \n"}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"fullname": "ml.config.schemas.hardware_cfg.HardwareTaskType", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareTaskType", "kind": "class", "doc": "

    Supported compute backends for model execution.

    \n", "bases": "enum.StrEnum"}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"fullname": "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareTaskType.CPU", "kind": "variable", "doc": "

    \n", "default_value": "<HardwareTaskType.CPU: 'CPU'>"}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"fullname": "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareTaskType.GPU", "kind": "variable", "doc": "

    \n", "default_value": "<HardwareTaskType.GPU: 'GPU'>"}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig", "kind": "class", "doc": "

    Runtime hardware settings for search/training operations.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.task_type", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.task_type", "kind": "variable", "doc": "

    Compute backend to use for model execution.

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareTaskType", "default_value": "PydanticUndefined"}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.devices", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.devices", "kind": "variable", "doc": "

    List of device IDs to utilize (e.g., GPU indices).

    \n", "annotation": ": list[int]", "default_value": "PydanticUndefined"}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.memory_limit_gb", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.allow_growth", "kind": "variable", "doc": "

    \n", "annotation": ": bool | None", "default_value": "False"}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"fullname": "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type", "modulename": "ml.config.schemas.hardware_cfg", "qualname": "HardwareConfig.normalize_task_type", "kind": "function", "doc": "

    Normalize task type values to uppercase prior to enum parsing.

    \n\n

    Args:\n cls: Pydantic model class invoking the validator.\n v: Raw task_type value supplied by configuration input.

    \n\n

    Returns:\n Uppercased string when v is text, otherwise the original value.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.config.schemas.model_cfg": {"fullname": "ml.config.schemas.model_cfg", "modulename": "ml.config.schemas.model_cfg", "kind": "module", "doc": "

    Top-level validated schemas for search and train model configurations.

    \n"}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"fullname": "ml.config.schemas.model_cfg.SearchLineageConfig", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchLineageConfig", "kind": "class", "doc": "

    Lineage metadata captured when creating search configurations.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"fullname": "ml.config.schemas.model_cfg.SearchLineageConfig.created_by", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchLineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"fullname": "ml.config.schemas.model_cfg.SearchLineageConfig.created_at", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchLineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"fullname": "ml.config.schemas.model_cfg.TrainingLineageConfig", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainingLineageConfig", "kind": "class", "doc": "

    Lineage metadata captured when creating training configurations.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"fullname": "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainingLineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"fullname": "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainingLineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig", "kind": "class", "doc": "

    Validated model specification used by hyperparameter search stage.

    \n", "bases": "ml.config.schemas.model_specs.ModelSpecs"}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.extends", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.extends", "kind": "variable", "doc": "

    List of config names to extend from, in order. Configs will be merged in the order they are listed, with later configs taking precedence in case of conflicts.

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.search", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.search", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.SearchConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.seed", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.seed", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.cv", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.cv", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.verbose", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.verbose", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "100"}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.search_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_cfg.SearchLineageConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"fullname": "ml.config.schemas.model_cfg.SearchModelConfig.training", "modulename": "ml.config.schemas.model_cfg", "qualname": "SearchModelConfig.training", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, typing.Any] | None", "default_value": "None"}, "ml.config.schemas.model_cfg.TrainModelConfig": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig", "kind": "class", "doc": "

    Validated model specification used by model training stage.

    \n", "bases": "ml.config.schemas.model_specs.ModelSpecs"}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.extends", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.extends", "kind": "variable", "doc": "

    List of config names to extend from, in order. Configs will be merged in the order they are listed, with later configs taking precedence in case of conflicts.

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.training", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.training", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.train_cfg.TrainConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.seed", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.seed", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.cv", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.cv", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.verbose", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.verbose", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "100"}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.training_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_cfg.TrainingLineageConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"fullname": "ml.config.schemas.model_cfg.TrainModelConfig.search", "modulename": "ml.config.schemas.model_cfg", "qualname": "TrainModelConfig.search", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, typing.Any] | None", "default_value": "None"}, "ml.config.schemas.model_specs": {"fullname": "ml.config.schemas.model_specs", "modulename": "ml.config.schemas.model_specs", "kind": "module", "doc": "

    Canonical Pydantic schemas for model specification configuration.

    \n\n

    This module defines shared model-spec structures and validation rules used by\nboth search and training configuration entrypoints.

    \n"}, "ml.config.schemas.model_specs.logger": {"fullname": "ml.config.schemas.model_specs.logger", "modulename": "ml.config.schemas.model_specs", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.schemas.model_specs (WARNING)>"}, "ml.config.schemas.model_specs.SegmentConfig": {"fullname": "ml.config.schemas.model_specs.SegmentConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentConfig", "kind": "class", "doc": "

    Model segment identifier and optional description.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SegmentConfig.name": {"fullname": "ml.config.schemas.model_specs.SegmentConfig.name", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentConfig.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SegmentConfig.description": {"fullname": "ml.config.schemas.model_specs.SegmentConfig.description", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentConfig.description", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.TaskType": {"fullname": "ml.config.schemas.model_specs.TaskType", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType", "kind": "class", "doc": "

    Supported high-level ML task categories.

    \n", "bases": "enum.StrEnum"}, "ml.config.schemas.model_specs.TaskType.classification": {"fullname": "ml.config.schemas.model_specs.TaskType.classification", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType.classification", "kind": "variable", "doc": "

    \n", "default_value": "<TaskType.classification: 'classification'>"}, "ml.config.schemas.model_specs.TaskType.regression": {"fullname": "ml.config.schemas.model_specs.TaskType.regression", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType.regression", "kind": "variable", "doc": "

    \n", "default_value": "<TaskType.regression: 'regression'>"}, "ml.config.schemas.model_specs.TaskType.ranking": {"fullname": "ml.config.schemas.model_specs.TaskType.ranking", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType.ranking", "kind": "variable", "doc": "

    \n", "default_value": "<TaskType.ranking: 'ranking'>"}, "ml.config.schemas.model_specs.TaskType.time_series": {"fullname": "ml.config.schemas.model_specs.TaskType.time_series", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskType.time_series", "kind": "variable", "doc": "

    \n", "default_value": "<TaskType.time_series: 'time_series'>"}, "ml.config.schemas.model_specs.TaskConfig": {"fullname": "ml.config.schemas.model_specs.TaskConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskConfig", "kind": "class", "doc": "

    Task type metadata for model execution and validation logic.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.TaskConfig.type": {"fullname": "ml.config.schemas.model_specs.TaskConfig.type", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskConfig.type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TaskType", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"fullname": "ml.config.schemas.model_specs.TaskConfig.subtype", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskConfig.subtype", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"fullname": "ml.config.schemas.model_specs.TaskConfig.normalize_task_type", "modulename": "ml.config.schemas.model_specs", "qualname": "TaskConfig.normalize_task_type", "kind": "function", "doc": "

    Normalize task type strings to lowercase before enum coercion.

    \n\n

    Args:\n v: Raw task type value.

    \n\n

    Returns:\n Any: Normalized task type value.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.config.schemas.model_specs.ClassesConfig": {"fullname": "ml.config.schemas.model_specs.ClassesConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassesConfig", "kind": "class", "doc": "

    Class metadata for classification targets.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ClassesConfig.count": {"fullname": "ml.config.schemas.model_specs.ClassesConfig.count", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassesConfig.count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"fullname": "ml.config.schemas.model_specs.ClassesConfig.positive_class", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassesConfig.positive_class", "kind": "variable", "doc": "

    \n", "annotation": ": int | str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"fullname": "ml.config.schemas.model_specs.ClassesConfig.min_class_count", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassesConfig.min_class_count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"fullname": "ml.config.schemas.model_specs.TargetConstraintsConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConstraintsConfig", "kind": "class", "doc": "

    Numeric constraints applicable to target values.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"fullname": "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConstraintsConfig.min_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"fullname": "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConstraintsConfig.max_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.TargetTransformConfig": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig", "kind": "class", "doc": "

    Optional target transformation settings.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig.type", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig.type", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['log1p', 'sqrt', 'boxcox']]", "default_value": "None"}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig.lambda_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"fullname": "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetTransformConfig.validate_lambda_value_based_on_type", "kind": "function", "doc": "

    Validate transformation-specific lambda usage constraints.

    \n\n

    Args:\n v: Lambda value candidate.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated lambda value.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.TargetConfig": {"fullname": "ml.config.schemas.model_specs.TargetConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig", "kind": "class", "doc": "

    Target definition, datatype constraints, and transform options.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.TargetConfig.name": {"fullname": "ml.config.schemas.model_specs.TargetConfig.name", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.version": {"fullname": "ml.config.schemas.model_specs.TargetConfig.version", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"fullname": "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.allowed_dtypes", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.classes": {"fullname": "ml.config.schemas.model_specs.TargetConfig.classes", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.classes", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ClassesConfig | None", "default_value": "None"}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"fullname": "ml.config.schemas.model_specs.TargetConfig.constraints", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.constraints", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TargetConstraintsConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.transform": {"fullname": "ml.config.schemas.model_specs.TargetConfig.transform", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.transform", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TargetTransformConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"fullname": "ml.config.schemas.model_specs.TargetConfig.validate_version_format", "modulename": "ml.config.schemas.model_specs", "qualname": "TargetConfig.validate_version_format", "kind": "function", "doc": "

    Ensure target version follows v{number} convention.

    \n\n

    Args:\n v: Raw target version value.

    \n\n

    Returns:\n str: Validated target version string.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.config.schemas.model_specs.SegmentationFilter": {"fullname": "ml.config.schemas.model_specs.SegmentationFilter", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationFilter", "kind": "class", "doc": "

    Single logical filter rule for dataset segmentation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"fullname": "ml.config.schemas.model_specs.SegmentationFilter.column", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationFilter.column", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"fullname": "ml.config.schemas.model_specs.SegmentationFilter.op", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationFilter.op", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['eq', 'neq', 'in', 'not_in', 'gt', 'gte', 'lt', 'lte']", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"fullname": "ml.config.schemas.model_specs.SegmentationFilter.value", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationFilter.value", "kind": "variable", "doc": "

    \n", "annotation": ": int | str | list[int] | list[str]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SegmentationConfig": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig", "kind": "class", "doc": "

    Segmentation enablement and filter configuration.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.include_in_model", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.include_in_model", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.filters", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.filters", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.config.schemas.model_specs.SegmentationFilter]", "default_value": "[]"}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.validate_filters_based_on_enabled", "kind": "function", "doc": "

    Validate filter presence based on segmentation enablement.

    \n\n

    Args:\n v: Segmentation filters list.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n list: Validated filters list.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"fullname": "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SegmentationConfig.validate_include_in_model_based_on_enabled", "kind": "function", "doc": "

    Validate model-include flag consistency with segmentation state.

    \n\n

    Args:\n v: Include-in-model flag value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n bool: Validated include-in-model flag.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.FeatureSetConfig": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig", "kind": "class", "doc": "

    Feature-set artifact references in the feature store.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig.name", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig.version", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig.data_format", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig.data_format", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"fullname": "ml.config.schemas.model_specs.FeatureSetConfig.file_name", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureSetConfig.file_name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SplitConfig": {"fullname": "ml.config.schemas.model_specs.SplitConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig", "kind": "class", "doc": "

    Train/validation/test split strategy settings.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"fullname": "ml.config.schemas.model_specs.SplitConfig.strategy", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.strategy", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['random']", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"fullname": "ml.config.schemas.model_specs.SplitConfig.stratify_by", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.stratify_by", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"fullname": "ml.config.schemas.model_specs.SplitConfig.test_size", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.test_size", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"fullname": "ml.config.schemas.model_specs.SplitConfig.val_size", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.val_size", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"fullname": "ml.config.schemas.model_specs.SplitConfig.random_state", "modulename": "ml.config.schemas.model_specs", "qualname": "SplitConfig.random_state", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.AlgorithmConfig": {"fullname": "ml.config.schemas.model_specs.AlgorithmConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "AlgorithmConfig", "kind": "class", "doc": "

    Supported algorithm families.

    \n", "bases": "enum.StrEnum"}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"fullname": "ml.config.schemas.model_specs.AlgorithmConfig.catboost", "modulename": "ml.config.schemas.model_specs", "qualname": "AlgorithmConfig.catboost", "kind": "variable", "doc": "

    \n", "default_value": "<AlgorithmConfig.catboost: 'catboost'>"}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"fullname": "ml.config.schemas.model_specs.FeatureStoreConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureStoreConfig", "kind": "class", "doc": "

    Feature store location and required feature set references.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"fullname": "ml.config.schemas.model_specs.FeatureStoreConfig.path", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureStoreConfig.path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"fullname": "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureStoreConfig.feature_sets", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.config.schemas.model_specs.FeatureSetConfig]", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.PipelineConfig": {"fullname": "ml.config.schemas.model_specs.PipelineConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "PipelineConfig", "kind": "class", "doc": "

    Pipeline artifact metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.PipelineConfig.version": {"fullname": "ml.config.schemas.model_specs.PipelineConfig.version", "modulename": "ml.config.schemas.model_specs", "qualname": "PipelineConfig.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.PipelineConfig.path": {"fullname": "ml.config.schemas.model_specs.PipelineConfig.path", "modulename": "ml.config.schemas.model_specs", "qualname": "PipelineConfig.path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ScoringConfig": {"fullname": "ml.config.schemas.model_specs.ScoringConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig", "kind": "class", "doc": "

    Metric-scoring policy and optional thresholds.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.policy", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.policy", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['fixed', 'adaptive_binary', 'regression_default']", "default_value": "'fixed'"}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.fixed_metric", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.fixed_metric", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']]", "default_value": "None"}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.pr_auc_threshold", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.validate_fixed_metric_if_fixed_policy", "kind": "function", "doc": "

    Ensure fixed scoring policy specifies a fixed metric.

    \n\n

    Args:\n v: Fixed metric value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated fixed metric.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"fullname": "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy", "modulename": "ml.config.schemas.model_specs", "qualname": "ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy", "kind": "function", "doc": "

    Ensure adaptive-binary policy specifies PR-AUC threshold.

    \n\n

    Args:\n v: PR-AUC threshold value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated PR-AUC threshold.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"fullname": "ml.config.schemas.model_specs.ClassImbalancePolicy", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassImbalancePolicy", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['off', 'if_imbalanced', 'always']"}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"fullname": "ml.config.schemas.model_specs.ClassWeightingConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassWeightingConfig", "kind": "class", "doc": "

    Class-weighting policy for classification imbalance handling.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"fullname": "ml.config.schemas.model_specs.ClassWeightingConfig.policy", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassWeightingConfig.policy", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['off', 'if_imbalanced', 'always']", "default_value": "'off'"}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"fullname": "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassWeightingConfig.imbalance_threshold", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"fullname": "ml.config.schemas.model_specs.ClassWeightingConfig.strategy", "modulename": "ml.config.schemas.model_specs", "qualname": "ClassWeightingConfig.strategy", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['ratio', 'balanced']]", "default_value": "None"}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"fullname": "ml.config.schemas.model_specs.FeatureImportanceMethodConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureImportanceMethodConfig", "kind": "class", "doc": "

    Configuration for feature-importance explainability method.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"fullname": "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureImportanceMethodConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"fullname": "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureImportanceMethodConfig.type", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['PredictionValuesChange', 'LossFunctionChange', 'FeatureImportance', 'TotalGain']]", "default_value": "None"}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"fullname": "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "FeatureImportanceMethodConfig.validate_type_if_enabled", "kind": "function", "doc": "

    Require feature-importance method type when enabled.

    \n\n

    Args:\n v: Feature-importance type value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated feature-importance type.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"fullname": "ml.config.schemas.model_specs.SHAPMethodConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "SHAPMethodConfig", "kind": "class", "doc": "

    Configuration for SHAP-based explainability method.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"fullname": "ml.config.schemas.model_specs.SHAPMethodConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SHAPMethodConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"fullname": "ml.config.schemas.model_specs.SHAPMethodConfig.approximate", "modulename": "ml.config.schemas.model_specs", "qualname": "SHAPMethodConfig.approximate", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['tree', 'linear', 'kernel']]", "default_value": "None"}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"fullname": "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "SHAPMethodConfig.validate_approximate_if_enabled", "kind": "function", "doc": "

    Require SHAP approximation mode when SHAP is enabled.

    \n\n

    Args:\n v: SHAP approximation mode value.\n info: Pydantic field-validation context.

    \n\n

    Returns:\n Any: Validated SHAP approximation mode.

    \n", "signature": "(cls, v, info):", "funcdef": "def"}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"fullname": "ml.config.schemas.model_specs.ExplainabilityMethodsConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityMethodsConfig", "kind": "class", "doc": "

    Container for explainability method-level settings.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"fullname": "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityMethodsConfig.feature_importances", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.FeatureImportanceMethodConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"fullname": "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityMethodsConfig.shap", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.SHAPMethodConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"fullname": "ml.config.schemas.model_specs.ExplainabilityConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityConfig", "kind": "class", "doc": "

    Top-level explainability settings used during post-training analysis.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"fullname": "ml.config.schemas.model_specs.ExplainabilityConfig.enabled", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "True"}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"fullname": "ml.config.schemas.model_specs.ExplainabilityConfig.top_k", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityConfig.top_k", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "20"}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"fullname": "ml.config.schemas.model_specs.ExplainabilityConfig.methods", "modulename": "ml.config.schemas.model_specs", "qualname": "ExplainabilityConfig.methods", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ExplainabilityMethodsConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.DATA_TYPE": {"fullname": "ml.config.schemas.model_specs.DATA_TYPE", "modulename": "ml.config.schemas.model_specs", "qualname": "DATA_TYPE", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['tabular', 'time-series']"}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"fullname": "ml.config.schemas.model_specs.ModelSpecsLineageConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecsLineageConfig", "kind": "class", "doc": "

    Lineage metadata for model specification creation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"fullname": "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecsLineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"fullname": "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecsLineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.MetaConfig": {"fullname": "ml.config.schemas.model_specs.MetaConfig", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig", "kind": "class", "doc": "

    Runtime metadata attached during config loading/validation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.MetaConfig.sources": {"fullname": "ml.config.schemas.model_specs.MetaConfig.sources", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.sources", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, typing.Any] | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.env": {"fullname": "ml.config.schemas.model_specs.MetaConfig.env", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.env", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"fullname": "ml.config.schemas.model_specs.MetaConfig.best_params_path", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.best_params_path", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"fullname": "ml.config.schemas.model_specs.MetaConfig.validation_status", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.validation_status", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"fullname": "ml.config.schemas.model_specs.MetaConfig.validation_errors", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.validation_errors", "kind": "variable", "doc": "

    \n", "annotation": ": list[typing.Any] | None", "default_value": "None"}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"fullname": "ml.config.schemas.model_specs.MetaConfig.config_hash", "modulename": "ml.config.schemas.model_specs", "qualname": "MetaConfig.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.model_specs.ModelSpecs": {"fullname": "ml.config.schemas.model_specs.ModelSpecs", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs", "kind": "class", "doc": "

    Canonical model specification shared by search and training schemas.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.problem", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.problem", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.segment", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.segment", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.SegmentConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.version": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.version", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.task": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.task", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.task", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TaskConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.target": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.target", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.target", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TargetConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.segmentation", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.segmentation", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.SegmentationConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.min_rows", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.min_rows", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "10000"}, "ml.config.schemas.model_specs.ModelSpecs.split": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.split", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.split", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.SplitConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.algorithm", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.algorithm", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.AlgorithmConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.model_class", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.model_class", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.pipeline", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.pipeline", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.PipelineConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.scoring", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.scoring", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ScoringConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.class_weighting", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.class_weighting", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ClassWeightingConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.feature_store", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.feature_store", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.FeatureStoreConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.explainability", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.explainability", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ExplainabilityConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.data_type", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.data_type", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['tabular', 'time-series']", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.model_specs_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ModelSpecsLineageConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.meta", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.meta", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.MetaConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.validate_task_target_consistency", "kind": "function", "doc": "

    Enforce consistency between task type and target class metadata.

    \n\n

    Returns:\n ModelSpecs: Validated model specs instance.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.validate_target_transform_consistency", "kind": "function", "doc": "

    Validate target transformation compatibility with task type.

    \n\n

    Args:\n self: Candidate model specs instance.

    \n\n

    Returns:\n ModelSpecs: Validated model specs instance.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"fullname": "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency", "modulename": "ml.config.schemas.model_specs", "qualname": "ModelSpecs.validate_class_weighting_consistency", "kind": "function", "doc": "

    Ensure class weighting is only enabled for classification tasks.

    \n\n

    Args:\n self: Candidate model specs instance.

    \n\n

    Returns:\n ModelSpecs: Validated model specs instance.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.config.schemas.search_cfg": {"fullname": "ml.config.schemas.search_cfg", "modulename": "ml.config.schemas.search_cfg", "kind": "module", "doc": "

    Validation schemas for broad/narrow hyperparameter search settings.

    \n"}, "ml.config.schemas.search_cfg.BroadModelParams": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams", "kind": "class", "doc": "

    Broad-search parameter candidates for model-level hyperparameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.depth", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.depth", "kind": "variable", "doc": "

    \n", "annotation": ": list[int] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.learning_rate", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.learning_rate", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.l2_leaf_reg", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.colsample_bylevel", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.random_strength", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.random_strength", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.min_data_in_leaf", "kind": "variable", "doc": "

    \n", "annotation": ": list[int] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"fullname": "ml.config.schemas.search_cfg.BroadModelParams.border_count", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadModelParams.border_count", "kind": "variable", "doc": "

    \n", "annotation": ": list[int] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"fullname": "ml.config.schemas.search_cfg.BroadEnsembleParams", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadEnsembleParams", "kind": "class", "doc": "

    Broad-search parameter candidates for ensemble-level hyperparameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"fullname": "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadEnsembleParams.bagging_temperature", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"fullname": "ml.config.schemas.search_cfg.BroadParamDistributions", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadParamDistributions", "kind": "class", "doc": "

    Container for broad-search parameter distributions.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"fullname": "ml.config.schemas.search_cfg.BroadParamDistributions.model", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadParamDistributions.model", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.BroadModelParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"fullname": "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadParamDistributions.ensemble", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.BroadEnsembleParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"fullname": "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadParamDistributions.to_flat_dict", "kind": "function", "doc": "

    Flatten structured params for grid/random search.\nAll keys use 'Model__' prefix for CatBoost compatibility.

    \n\n

    Args:\n prefix_map: Optional mapping from top-level blocks (for example,\n model and ensemble) to flattened key prefixes.

    \n\n

    Returns:\n Flattened parameter dictionary suitable for search estimators.

    \n", "signature": "(self, prefix_map: dict | None = None) -> dict:", "funcdef": "def"}, "ml.config.schemas.search_cfg.NarrowIntParam": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam", "kind": "class", "doc": "

    Narrow-search configuration for integer-valued parameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam.include", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam.include", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam.offsets", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam.offsets", "kind": "variable", "doc": "

    \n", "annotation": ": list[int] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam.low", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam.low", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"fullname": "ml.config.schemas.search_cfg.NarrowIntParam.high", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowIntParam.high", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam", "kind": "class", "doc": "

    Narrow-search configuration for float-valued parameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.include", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.include", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.factors", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.factors", "kind": "variable", "doc": "

    \n", "annotation": ": list[float] | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.low", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.low", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.high", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.high", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"fullname": "ml.config.schemas.search_cfg.NarrowFloatParam.decimals", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowFloatParam.decimals", "kind": "variable", "doc": "

    \n", "annotation": ": int | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams", "kind": "class", "doc": "

    Narrow-search parameter rules for model-level hyperparameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.depth", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.depth", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowIntParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.learning_rate", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.l2_leaf_reg", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.colsample_bylevel", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.random_strength", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.random_strength", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.min_data_in_leaf", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowIntParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"fullname": "ml.config.schemas.search_cfg.NarrowModelParams.border_count", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowModelParams.border_count", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowIntParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"fullname": "ml.config.schemas.search_cfg.NarrowEnsembleParams", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowEnsembleParams", "kind": "class", "doc": "

    Narrow-search parameter rules for ensemble hyperparameters.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"fullname": "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowEnsembleParams.bagging_temperature", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowFloatParam | None", "default_value": "None"}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"fullname": "ml.config.schemas.search_cfg.NarrowParamConfig", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowParamConfig", "kind": "class", "doc": "

    Container for narrow-search parameter configuration blocks.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"fullname": "ml.config.schemas.search_cfg.NarrowParamConfig.model", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowParamConfig.model", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowModelParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"fullname": "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowParamConfig.ensemble", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowEnsembleParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig", "kind": "class", "doc": "

    Configuration for refinement search around broad-search results.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig.enabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig.iterations", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig.n_iter", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"fullname": "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations", "modulename": "ml.config.schemas.search_cfg", "qualname": "NarrowSearchConfig.param_configurations", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowParamConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"fullname": "ml.config.schemas.search_cfg.BroadSearchConfig", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadSearchConfig", "kind": "class", "doc": "

    Configuration for broad hyperparameter search stage.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"fullname": "ml.config.schemas.search_cfg.BroadSearchConfig.iterations", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadSearchConfig.iterations", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"fullname": "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadSearchConfig.n_iter", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"fullname": "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions", "modulename": "ml.config.schemas.search_cfg", "qualname": "BroadSearchConfig.param_distributions", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.BroadParamDistributions", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig": {"fullname": "ml.config.schemas.search_cfg.SearchConfig", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig", "kind": "class", "doc": "

    Full search-stage configuration including hardware and error policy.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.random_state", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.random_state", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.broad", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.broad", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.BroadSearchConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.narrow", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.narrow", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.search_cfg.NarrowSearchConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.hardware", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.hardware", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"fullname": "ml.config.schemas.search_cfg.SearchConfig.error_score", "modulename": "ml.config.schemas.search_cfg", "qualname": "SearchConfig.error_score", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.config.schemas.train_cfg": {"fullname": "ml.config.schemas.train_cfg", "modulename": "ml.config.schemas.train_cfg", "kind": "module", "doc": "

    Validation schema for model training-stage configuration.

    \n"}, "ml.config.schemas.train_cfg.TrainConfig": {"fullname": "ml.config.schemas.train_cfg.TrainConfig", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig", "kind": "class", "doc": "

    Training hyperparameters, hardware settings, and runtime controls.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.iterations", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.iterations", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.config.schemas.train_cfg.TrainConfig.model": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.model", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.model", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.base_model_params.BaseModelParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.ensemble", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.ensemble", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.base_model_params.BaseEnsembleParams", "default_value": "PydanticUndefined"}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.hardware", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.hardware", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareConfig", "default_value": "PydanticUndefined"}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.early_stopping_rounds", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "0"}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"fullname": "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds", "modulename": "ml.config.schemas.train_cfg", "qualname": "TrainConfig.snapshot_interval_seconds", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "600"}, "ml.config.validation": {"fullname": "ml.config.validation", "modulename": "ml.config.validation", "kind": "module", "doc": "

    Validation entrypoint for model configuration dictionaries.

    \n"}, "ml.config.validation.logger": {"fullname": "ml.config.validation.logger", "modulename": "ml.config.validation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.config.validation (WARNING)>"}, "ml.config.validation.validate_model_config": {"fullname": "ml.config.validation.validate_model_config", "modulename": "ml.config.validation", "qualname": "validate_model_config", "kind": "function", "doc": "

    Validate raw model config payload with the appropriate schema.

    \n\n

    Args:\n cfg_raw: Raw config loaded from YAML/JSON.\n cfg_type: Type of config to validate.

    \n\n

    Returns:\n SearchModelConfig | TrainModelConfig: Validated config model instance.

    \n\n

    Raises:\n ConfigError: If cfg_type is unknown or validation fails.

    \n", "signature": "(\tcfg_raw: dict[str, typing.Any],\tcfg_type: Literal['search', 'train']) -> ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig:", "funcdef": "def"}, "ml.data": {"fullname": "ml.data", "modulename": "ml.data", "kind": "module", "doc": "

    A package for storing machine learning data-related code.

    \n"}, "ml.data.config": {"fullname": "ml.data.config", "modulename": "ml.data.config", "kind": "module", "doc": "

    A package for storing data configurations.

    \n"}, "ml.data.config.schemas": {"fullname": "ml.data.config.schemas", "modulename": "ml.data.config.schemas", "kind": "module", "doc": "

    A package for storing data configuration schemas.

    \n"}, "ml.data.config.schemas.constants": {"fullname": "ml.data.config.schemas.constants", "modulename": "ml.data.config.schemas.constants", "kind": "module", "doc": "

    Shared schema constants and typed value wrappers for data configs.

    \n"}, "ml.data.config.schemas.constants.BorderValue": {"fullname": "ml.data.config.schemas.constants.BorderValue", "modulename": "ml.data.config.schemas.constants", "qualname": "BorderValue", "kind": "class", "doc": "

    Boundary value and comparison operator used in invariant checks.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.constants.BorderValue.value": {"fullname": "ml.data.config.schemas.constants.BorderValue.value", "modulename": "ml.data.config.schemas.constants", "qualname": "BorderValue.value", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.constants.BorderValue.op": {"fullname": "ml.data.config.schemas.constants.BorderValue.op", "modulename": "ml.data.config.schemas.constants", "qualname": "BorderValue.op", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['lt', 'lte', 'gte', 'ge']", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim": {"fullname": "ml.data.config.schemas.interim", "modulename": "ml.data.config.schemas.interim", "kind": "module", "doc": "

    Validation schemas for interim-stage data processing configuration.

    \n"}, "ml.data.config.schemas.interim.logger": {"fullname": "ml.data.config.schemas.interim.logger", "modulename": "ml.data.config.schemas.interim", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.config.schemas.interim (WARNING)>"}, "ml.data.config.schemas.interim.DataSchema": {"fullname": "ml.data.config.schemas.interim.DataSchema", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema", "kind": "class", "doc": "

    Expected interim dataset column names and target dtypes.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.DataSchema.hotel": {"fullname": "ml.data.config.schemas.interim.DataSchema.hotel", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.hotel", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"fullname": "ml.data.config.schemas.interim.DataSchema.is_canceled", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.is_canceled", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"fullname": "ml.data.config.schemas.interim.DataSchema.lead_time", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.lead_time", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int16'"}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"fullname": "ml.data.config.schemas.interim.DataSchema.arrival_date_year", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.arrival_date_year", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int16'"}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"fullname": "ml.data.config.schemas.interim.DataSchema.arrival_date_month", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.arrival_date_month", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"fullname": "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.arrival_date_week_number", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"fullname": "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.arrival_date_day_of_month", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"fullname": "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.stays_in_weekend_nights", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"fullname": "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.stays_in_week_nights", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.adults": {"fullname": "ml.data.config.schemas.interim.DataSchema.adults", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.adults", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int16'"}, "ml.data.config.schemas.interim.DataSchema.children": {"fullname": "ml.data.config.schemas.interim.DataSchema.children", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.children", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.babies": {"fullname": "ml.data.config.schemas.interim.DataSchema.babies", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.babies", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.meal": {"fullname": "ml.data.config.schemas.interim.DataSchema.meal", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.meal", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.country": {"fullname": "ml.data.config.schemas.interim.DataSchema.country", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.country", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"fullname": "ml.data.config.schemas.interim.DataSchema.market_segment", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.market_segment", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"fullname": "ml.data.config.schemas.interim.DataSchema.distribution_channel", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.distribution_channel", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"fullname": "ml.data.config.schemas.interim.DataSchema.is_repeated_guest", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.is_repeated_guest", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"fullname": "ml.data.config.schemas.interim.DataSchema.previous_cancellations", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.previous_cancellations", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"fullname": "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.previous_bookings_not_canceled", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"fullname": "ml.data.config.schemas.interim.DataSchema.reserved_room_type", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.reserved_room_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"fullname": "ml.data.config.schemas.interim.DataSchema.assigned_room_type", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.assigned_room_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"fullname": "ml.data.config.schemas.interim.DataSchema.booking_changes", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.booking_changes", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"fullname": "ml.data.config.schemas.interim.DataSchema.deposit_type", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.deposit_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.agent": {"fullname": "ml.data.config.schemas.interim.DataSchema.agent", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.agent", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.company": {"fullname": "ml.data.config.schemas.interim.DataSchema.company", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.company", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"fullname": "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.days_in_waiting_list", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int16'"}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"fullname": "ml.data.config.schemas.interim.DataSchema.customer_type", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.customer_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.adr": {"fullname": "ml.data.config.schemas.interim.DataSchema.adr", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.adr", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'float32'"}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"fullname": "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.required_car_parking_spaces", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"fullname": "ml.data.config.schemas.interim.DataSchema.total_of_special_requests", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.total_of_special_requests", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'int8'"}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"fullname": "ml.data.config.schemas.interim.DataSchema.reservation_status", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.reservation_status", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'category'"}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"fullname": "ml.data.config.schemas.interim.DataSchema.reservation_status_date", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.reservation_status_date", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'datetime64[ns]'"}, "ml.data.config.schemas.interim.DataSchema.name": {"fullname": "ml.data.config.schemas.interim.DataSchema.name", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'string'"}, "ml.data.config.schemas.interim.DataSchema.email": {"fullname": "ml.data.config.schemas.interim.DataSchema.email", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.email", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'string'"}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"fullname": "ml.data.config.schemas.interim.DataSchema.phone_number", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.phone_number", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'string'"}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"fullname": "ml.data.config.schemas.interim.DataSchema.credit_card", "modulename": "ml.data.config.schemas.interim", "qualname": "DataSchema.credit_card", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'string'"}, "ml.data.config.schemas.interim.Cleaning": {"fullname": "ml.data.config.schemas.interim.Cleaning", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning", "kind": "class", "doc": "

    Column-name normalization options for preprocessing input data.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"fullname": "ml.data.config.schemas.interim.Cleaning.lowercase_columns", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning.lowercase_columns", "kind": "variable", "doc": "

    Whether to convert column names to lowercase.

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"fullname": "ml.data.config.schemas.interim.Cleaning.strip_strings", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning.strip_strings", "kind": "variable", "doc": "

    Whether to strip leading/trailing whitespace from string columns.

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"fullname": "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning.replace_spaces_in_columns", "kind": "variable", "doc": "

    Whether to replace spaces in column names with underscores.

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"fullname": "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns", "modulename": "ml.data.config.schemas.interim", "qualname": "Cleaning.replace_dashes_in_columns", "kind": "variable", "doc": "

    Whether to replace dashes in column names with underscores.

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.Invariant": {"fullname": "ml.data.config.schemas.interim.Invariant", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariant", "kind": "class", "doc": "

    Validation and filtering rules for a single column.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.Invariant.min": {"fullname": "ml.data.config.schemas.interim.Invariant.min", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariant.min", "kind": "variable", "doc": "

    Minimum allowed value for the column.

    \n", "annotation": ": ml.data.config.schemas.constants.BorderValue | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariant.max": {"fullname": "ml.data.config.schemas.interim.Invariant.max", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariant.max", "kind": "variable", "doc": "

    Maximum allowed value for the column.

    \n", "annotation": ": ml.data.config.schemas.constants.BorderValue | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"fullname": "ml.data.config.schemas.interim.Invariant.allowed_values", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariant.allowed_values", "kind": "variable", "doc": "

    List of allowed values for the column.

    \n", "annotation": ": list | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants": {"fullname": "ml.data.config.schemas.interim.Invariants", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants", "kind": "class", "doc": "

    Column-level invariant rules covering the interim dataset schema.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.Invariants.hotel": {"fullname": "ml.data.config.schemas.interim.Invariants.hotel", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.hotel", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"fullname": "ml.data.config.schemas.interim.Invariants.is_canceled", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.is_canceled", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.lead_time": {"fullname": "ml.data.config.schemas.interim.Invariants.lead_time", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.lead_time", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"fullname": "ml.data.config.schemas.interim.Invariants.arrival_date_year", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.arrival_date_year", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"fullname": "ml.data.config.schemas.interim.Invariants.arrival_date_month", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.arrival_date_month", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"fullname": "ml.data.config.schemas.interim.Invariants.arrival_date_week_number", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.arrival_date_week_number", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"fullname": "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.arrival_date_day_of_month", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"fullname": "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.stays_in_weekend_nights", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"fullname": "ml.data.config.schemas.interim.Invariants.stays_in_week_nights", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.stays_in_week_nights", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.adults": {"fullname": "ml.data.config.schemas.interim.Invariants.adults", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.adults", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.children": {"fullname": "ml.data.config.schemas.interim.Invariants.children", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.children", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.babies": {"fullname": "ml.data.config.schemas.interim.Invariants.babies", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.babies", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.meal": {"fullname": "ml.data.config.schemas.interim.Invariants.meal", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.meal", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.country": {"fullname": "ml.data.config.schemas.interim.Invariants.country", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.country", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.market_segment": {"fullname": "ml.data.config.schemas.interim.Invariants.market_segment", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.market_segment", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"fullname": "ml.data.config.schemas.interim.Invariants.distribution_channel", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.distribution_channel", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"fullname": "ml.data.config.schemas.interim.Invariants.is_repeated_guest", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.is_repeated_guest", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"fullname": "ml.data.config.schemas.interim.Invariants.previous_cancellations", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.previous_cancellations", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"fullname": "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.previous_bookings_not_canceled", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"fullname": "ml.data.config.schemas.interim.Invariants.reserved_room_type", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.reserved_room_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"fullname": "ml.data.config.schemas.interim.Invariants.assigned_room_type", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.assigned_room_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"fullname": "ml.data.config.schemas.interim.Invariants.booking_changes", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.booking_changes", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"fullname": "ml.data.config.schemas.interim.Invariants.deposit_type", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.deposit_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.agent": {"fullname": "ml.data.config.schemas.interim.Invariants.agent", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.agent", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.company": {"fullname": "ml.data.config.schemas.interim.Invariants.company", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.company", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"fullname": "ml.data.config.schemas.interim.Invariants.days_in_waiting_list", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.days_in_waiting_list", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.customer_type": {"fullname": "ml.data.config.schemas.interim.Invariants.customer_type", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.customer_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.adr": {"fullname": "ml.data.config.schemas.interim.Invariants.adr", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.adr", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"fullname": "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.required_car_parking_spaces", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"fullname": "ml.data.config.schemas.interim.Invariants.total_of_special_requests", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.total_of_special_requests", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"fullname": "ml.data.config.schemas.interim.Invariants.reservation_status", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.reservation_status", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"fullname": "ml.data.config.schemas.interim.Invariants.reservation_status_date", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.reservation_status_date", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.name": {"fullname": "ml.data.config.schemas.interim.Invariants.name", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.name", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.email": {"fullname": "ml.data.config.schemas.interim.Invariants.email", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.email", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.phone_number": {"fullname": "ml.data.config.schemas.interim.Invariants.phone_number", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.phone_number", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.credit_card": {"fullname": "ml.data.config.schemas.interim.Invariants.credit_card", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.credit_card", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariant | None", "default_value": "None"}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"fullname": "ml.data.config.schemas.interim.Invariants.validate_constraints", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.validate_constraints", "kind": "function", "doc": "

    Ensure configured invariants stay within registry-defined limits.

    \n\n

    Args:\n self: Candidate invariants instance.

    \n\n

    Returns:\n Invariants: Validated invariants object.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"fullname": "ml.data.config.schemas.interim.Invariants.assign_default_invariants", "modulename": "ml.data.config.schemas.interim", "qualname": "Invariants.assign_default_invariants", "kind": "function", "doc": "

    Populate missing column invariants with registry-based defaults.

    \n\n

    Args:\n values: Raw invariants payload dictionary.

    \n\n

    Returns:\n dict: Invariants payload with defaults assigned.

    \n", "signature": "(cls, values):", "funcdef": "def"}, "ml.data.config.schemas.interim.LineageConfig": {"fullname": "ml.data.config.schemas.interim.LineageConfig", "modulename": "ml.data.config.schemas.interim", "qualname": "LineageConfig", "kind": "class", "doc": "

    Lineage metadata describing interim config provenance.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"fullname": "ml.data.config.schemas.interim.LineageConfig.created_by", "modulename": "ml.data.config.schemas.interim", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"fullname": "ml.data.config.schemas.interim.LineageConfig.created_at", "modulename": "ml.data.config.schemas.interim", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig": {"fullname": "ml.data.config.schemas.interim.InterimConfig", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig", "kind": "class", "doc": "

    Top-level validated configuration for interim data creation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.interim.InterimConfig.data": {"fullname": "ml.data.config.schemas.interim.InterimConfig.data", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.shared.DataInfo", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"fullname": "ml.data.config.schemas.interim.InterimConfig.data_schema", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.data_schema", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.DataSchema", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"fullname": "ml.data.config.schemas.interim.InterimConfig.raw_data_version", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.raw_data_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"fullname": "ml.data.config.schemas.interim.InterimConfig.cleaning", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.cleaning", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Cleaning", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"fullname": "ml.data.config.schemas.interim.InterimConfig.invariants", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.invariants", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.Invariants", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"fullname": "ml.data.config.schemas.interim.InterimConfig.drop_duplicates", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.drop_duplicates", "kind": "variable", "doc": "

    Whether to drop duplicate rows from the data (default: True).

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"fullname": "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.drop_missing_ints", "kind": "variable", "doc": "

    Whether to drop rows with missing values in integer columns (default: True).

    \n", "annotation": ": bool", "default_value": "True"}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"fullname": "ml.data.config.schemas.interim.InterimConfig.min_rows", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.min_rows", "kind": "variable", "doc": "

    Minimum number of rows required after cleaning (default: 0).

    \n", "annotation": ": int", "default_value": "0"}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"fullname": "ml.data.config.schemas.interim.InterimConfig.lineage", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.interim.LineageConfig", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"fullname": "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version", "modulename": "ml.data.config.schemas.interim", "qualname": "InterimConfig.validate_raw_data_version", "kind": "function", "doc": "

    Validate that raw_data_version follows the v{number} format.

    \n\n

    Args:\n self: Candidate interim config instance.

    \n\n

    Returns:\n The validated interim config instance.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.data.config.schemas.processed": {"fullname": "ml.data.config.schemas.processed", "modulename": "ml.data.config.schemas.processed", "kind": "module", "doc": "

    Validation schemas for processed-stage data pipeline configuration.

    \n"}, "ml.data.config.schemas.processed.logger": {"fullname": "ml.data.config.schemas.processed.logger", "modulename": "ml.data.config.schemas.processed", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.config.schemas.processed (WARNING)>"}, "ml.data.config.schemas.processed.LineageConfig": {"fullname": "ml.data.config.schemas.processed.LineageConfig", "modulename": "ml.data.config.schemas.processed", "qualname": "LineageConfig", "kind": "class", "doc": "

    Lineage metadata describing processed config provenance.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"fullname": "ml.data.config.schemas.processed.LineageConfig.created_by", "modulename": "ml.data.config.schemas.processed", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"fullname": "ml.data.config.schemas.processed.LineageConfig.created_at", "modulename": "ml.data.config.schemas.processed", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig", "kind": "class", "doc": "

    Top-level validated configuration for processed data generation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.data", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.shared.DataInfo", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.interim_data_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.remove_columns", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.remove_columns", "kind": "variable", "doc": "

    List of column names to remove from the data during processing.

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.lineage", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.processed.LineageConfig", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"fullname": "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version", "modulename": "ml.data.config.schemas.processed", "qualname": "ProcessedConfig.validate_interim_data_version", "kind": "function", "doc": "

    Validate that interim_data_version follows the v{number} format.

    \n\n

    Args:\n values: The validated values of the model.\nReturns:\n The validated model instance.\nRaises:\n ConfigError: If the interim_data_version does not follow the required format.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.data.config.schemas.shared": {"fullname": "ml.data.config.schemas.shared", "modulename": "ml.data.config.schemas.shared", "kind": "module", "doc": "

    Shared schema blocks reused by interim and processed data configs.

    \n"}, "ml.data.config.schemas.shared.Output": {"fullname": "ml.data.config.schemas.shared.Output", "modulename": "ml.data.config.schemas.shared", "qualname": "Output", "kind": "class", "doc": "

    Output artifact settings for persisted datasets.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.shared.Output.path_suffix": {"fullname": "ml.data.config.schemas.shared.Output.path_suffix", "modulename": "ml.data.config.schemas.shared", "qualname": "Output.path_suffix", "kind": "variable", "doc": "

    Suffix for the output data file path, which will be combined with the data name and version to create the full path.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.shared.Output.format": {"fullname": "ml.data.config.schemas.shared.Output.format", "modulename": "ml.data.config.schemas.shared", "qualname": "Output.format", "kind": "variable", "doc": "

    Format to save the interim data.

    \n", "annotation": ": Literal['parquet']", "default_value": "'parquet'"}, "ml.data.config.schemas.shared.Output.compression": {"fullname": "ml.data.config.schemas.shared.Output.compression", "modulename": "ml.data.config.schemas.shared", "qualname": "Output.compression", "kind": "variable", "doc": "

    Compression method to use when saving the data (default: 'snappy').

    \n", "annotation": ": Optional[Literal['snappy', 'gzip', 'brotli', 'lz4', 'zstd']]", "default_value": "None"}, "ml.data.config.schemas.shared.DataInfo": {"fullname": "ml.data.config.schemas.shared.DataInfo", "modulename": "ml.data.config.schemas.shared", "qualname": "DataInfo", "kind": "class", "doc": "

    Dataset identity and output target metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.data.config.schemas.shared.DataInfo.name": {"fullname": "ml.data.config.schemas.shared.DataInfo.name", "modulename": "ml.data.config.schemas.shared", "qualname": "DataInfo.name", "kind": "variable", "doc": "

    Name of the data being processed.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.shared.DataInfo.version": {"fullname": "ml.data.config.schemas.shared.DataInfo.version", "modulename": "ml.data.config.schemas.shared", "qualname": "DataInfo.version", "kind": "variable", "doc": "

    Version of the interim data being created.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.data.config.schemas.shared.DataInfo.output": {"fullname": "ml.data.config.schemas.shared.DataInfo.output", "modulename": "ml.data.config.schemas.shared", "qualname": "DataInfo.output", "kind": "variable", "doc": "

    \n", "annotation": ": ml.data.config.schemas.shared.Output", "default_value": "PydanticUndefined"}, "ml.data.config.validate_config": {"fullname": "ml.data.config.validate_config", "modulename": "ml.data.config.validate_config", "kind": "module", "doc": "

    Validation entrypoint for interim and processed data configs.

    \n"}, "ml.data.config.validate_config.logger": {"fullname": "ml.data.config.validate_config.logger", "modulename": "ml.data.config.validate_config", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.config.validate_config (WARNING)>"}, "ml.data.config.validate_config.validate_config": {"fullname": "ml.data.config.validate_config.validate_config", "modulename": "ml.data.config.validate_config", "qualname": "validate_config", "kind": "function", "doc": "

    Validate raw config dictionary using stage-specific Pydantic schema.

    \n\n

    Args:\n config: Raw configuration payload.\n type: Config type selector (\"interim\" or \"processed\").

    \n\n

    Returns:\n InterimConfig | ProcessedConfig: Typed validated configuration object.

    \n", "signature": "(\tconfig: dict,\ttype: Literal['interim', 'processed']) -> ml.data.config.schemas.interim.InterimConfig | ml.data.config.schemas.processed.ProcessedConfig:", "funcdef": "def"}, "ml.data.interim": {"fullname": "ml.data.interim", "modulename": "ml.data.interim", "kind": "module", "doc": "

    A package for storing interim machine learning data-related code.

    \n"}, "ml.data.interim.data_preparation": {"fullname": "ml.data.interim.data_preparation", "modulename": "ml.data.interim.data_preparation", "kind": "module", "doc": "

    A package for storing data preparation code.

    \n"}, "ml.data.interim.data_preparation.prepare_data": {"fullname": "ml.data.interim.data_preparation.prepare_data", "modulename": "ml.data.interim.data_preparation.prepare_data", "kind": "module", "doc": "

    Interim-stage data preparation utilities.

    \n\n

    Includes column normalization, schema enforcement, and invariant-driven row\nfiltering used by the interim data pipeline.

    \n"}, "ml.data.interim.data_preparation.prepare_data.logger": {"fullname": "ml.data.interim.data_preparation.prepare_data.logger", "modulename": "ml.data.interim.data_preparation.prepare_data", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.interim.data_preparation.prepare_data (WARNING)>"}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"fullname": "ml.data.interim.data_preparation.prepare_data.normalize_columns", "modulename": "ml.data.interim.data_preparation.prepare_data", "qualname": "normalize_columns", "kind": "function", "doc": "

    Normalize column names according to configured cleaning options.

    \n\n

    Args:\n df: Input dataframe whose column names are normalized.\n cleaning: Cleaning configuration flags controlling normalization steps.

    \n\n

    Returns:\n Dataframe with normalized column names.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\tcleaning: ml.data.config.schemas.interim.Cleaning):", "funcdef": "def"}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"fullname": "ml.data.interim.data_preparation.prepare_data.enforce_schema", "modulename": "ml.data.interim.data_preparation.prepare_data", "qualname": "enforce_schema", "kind": "function", "doc": "

    Validate columns and coerce dataframe dtypes to schema definition.

    \n\n

    Args:\n df: Input dataframe.\n schema: Expected column-to-dtype mapping.\n drop_missing_ints: Whether to drop rows with nulls in integer columns.

    \n\n

    Returns:\n pd.DataFrame: Schema-aligned dataframe.

    \n\n

    Raises:\n DataError: If required columns are missing or type coercion/validation fails.

    \n\n

    Notes:\n Integer columns containing nulls are either row-dropped or widened to\n float64 depending on drop_missing_ints.

    \n\n

    Side Effects:\n May drop extra columns and may mutate row count when null integer rows\n are removed.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\tschema: ml.data.config.schemas.interim.DataSchema,\tdrop_missing_ints: bool) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"fullname": "ml.data.interim.data_preparation.prepare_data.clean_data", "modulename": "ml.data.interim.data_preparation.prepare_data", "qualname": "clean_data", "kind": "function", "doc": "

    Filter dataframe rows using configured invariant constraints.

    \n\n

    Args:\n df: Input dataframe.\n invariants: Column-level min/max/allowed-value constraints.

    \n\n

    Returns:\n pd.DataFrame: Cleaned dataframe after invariant filtering.

    \n\n

    Raises:\n DataError: If invariant evaluation fails.

    \n\n

    Side Effects:\n Performs row filtering and object-string trimming; resulting row count can\n decrease substantially based on configured invariants.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\tinvariants: ml.data.config.schemas.interim.Invariants):", "funcdef": "def"}, "ml.data.interim.persistence": {"fullname": "ml.data.interim.persistence", "modulename": "ml.data.interim.persistence", "kind": "module", "doc": "

    A package for storing persistence code.

    \n"}, "ml.data.interim.persistence.prepare_metadata": {"fullname": "ml.data.interim.persistence.prepare_metadata", "modulename": "ml.data.interim.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata assembly helpers for interim data pipeline outputs.

    \n"}, "ml.data.interim.persistence.prepare_metadata.logger": {"fullname": "ml.data.interim.persistence.prepare_metadata.logger", "modulename": "ml.data.interim.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.interim.persistence.prepare_metadata (WARNING)>"}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.data.interim.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.data.interim.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build metadata payload describing an interim data run.

    \n\n

    Args:\n df: Final interim dataframe.\n config: Validated interim configuration.\n start_time: Run start timestamp from time.perf_counter.\n data_path: Persisted interim data file path.\n source_data_path: Source raw data file path.\n source_data_format: Source raw data format.\n owner: Human owner for governance metadata.\n memory_info: Memory usage delta details.\n interim_run_id: Unique interim run identifier.

    \n\n

    Returns:\n InterimDatasetMetadata: The validated metadata object.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\tconfig: ml.data.config.schemas.interim.InterimConfig,\tstart_time: float,\tdata_path: pathlib.Path,\tsource_data_path: pathlib.Path,\tsource_data_format: str,\towner: str,\tmemory_info: dict,\tinterim_run_id: str) -> ml.metadata.schemas.data.interim.InterimDatasetMetadata:", "funcdef": "def"}, "ml.data.merge": {"fullname": "ml.data.merge", "modulename": "ml.data.merge", "kind": "module", "doc": "

    A package for merging data.

    \n"}, "ml.data.merge.merge_dataset_into_main": {"fullname": "ml.data.merge.merge_dataset_into_main", "modulename": "ml.data.merge.merge_dataset_into_main", "kind": "module", "doc": "

    Utilities for validated feature-dataset merges into the main frame.

    \n"}, "ml.data.merge.merge_dataset_into_main.logger": {"fullname": "ml.data.merge.merge_dataset_into_main.logger", "modulename": "ml.data.merge.merge_dataset_into_main", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.merge.merge_dataset_into_main (WARNING)>"}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"fullname": "ml.data.merge.merge_dataset_into_main.normalize_keys", "modulename": "ml.data.merge.merge_dataset_into_main", "qualname": "normalize_keys", "kind": "function", "doc": "

    \n", "signature": "(key: str | tuple[str, ...]) -> list[str]:", "funcdef": "def"}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"fullname": "ml.data.merge.merge_dataset_into_main.build_dataset_dag", "modulename": "ml.data.merge.merge_dataset_into_main", "qualname": "build_dataset_dag", "kind": "function", "doc": "

    Build DAG and return topological merge order.

    \n", "signature": "(\tdatasets: list[ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig]) -> list[str]:", "funcdef": "def"}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"fullname": "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main", "modulename": "ml.data.merge.merge_dataset_into_main", "qualname": "merge_dataset_into_main", "kind": "function", "doc": "

    Validate and merge one dataset into the main frame, returning data hash.

    \n\n

    Args:\n data: Main dataframe accumulated from previous merges.\n df: New dataset dataframe to merge into data.\n merge_key: Key column(s) used for inner merge.\n merge_how: Type of merge to perform.\n merge_validate: Merge validation for row explosion protection.\n dataset_name: Logical dataset name used for logging/errors.\n dataset_version: Dataset version string.\n dataset_snapshot_path: Snapshot directory containing dataset metadata.\n dataset_path: Dataset file path used for data validation.

    \n\n

    Returns:\n Tuple of merged dataframe and validated data hash.

    \n\n

    Raises:\n DataError: If merge keys are missing, merge alignment fails, or merged\n output becomes empty.

    \n\n

    Side Effects:\n May drop overlapping non-key columns from df before merge and logs\n dataset-level merge diagnostics/warnings.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tdf: pandas.core.frame.DataFrame,\t*,\tmerge_key: str | tuple[str, ...],\tmerge_how: Literal['left', 'right', 'inner', 'outer', 'cross'] = 'inner',\tmerge_validate: Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m'] = 'm:m',\tdataset_name: str,\tdataset_version: str,\tdataset_snapshot_path: pathlib.Path,\tdataset_path: pathlib.Path) -> tuple[pandas.core.frame.DataFrame, str]:", "funcdef": "def"}, "ml.data.processed": {"fullname": "ml.data.processed", "modulename": "ml.data.processed", "kind": "module", "doc": "

    A package for building processed datasets.

    \n"}, "ml.data.processed.persistence": {"fullname": "ml.data.processed.persistence", "modulename": "ml.data.processed.persistence", "kind": "module", "doc": "

    A package for persisting processed data.

    \n"}, "ml.data.processed.persistence.prepare_metadata": {"fullname": "ml.data.processed.persistence.prepare_metadata", "modulename": "ml.data.processed.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata assembly helpers for processed data pipeline outputs.

    \n"}, "ml.data.processed.persistence.prepare_metadata.logger": {"fullname": "ml.data.processed.persistence.prepare_metadata.logger", "modulename": "ml.data.processed.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.processed.persistence.prepare_metadata (WARNING)>"}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.data.processed.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.data.processed.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build metadata payload describing a processed data run.

    \n\n

    Args:\n df: Final processed dataframe.\n config: Validated processed configuration.\n start_time: Run start timestamp from time.perf_counter.\n data_path: Persisted processed data file path.\n source_data_path: Source interim data file path.\n source_data_format: Source interim data format.\n source_data_version: Source interim data version.\n owner: Human owner for governance metadata.\n memory_info: Memory usage delta details.\n processed_run_id: Unique processed run identifier.\n row_id_info: Optional row-id generation trace metadata.

    \n\n

    Returns:\n ProcessedDatasetMetadata: Serializable metadata object.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\tconfig: ml.data.config.schemas.processed.ProcessedConfig,\tstart_time: float,\tdata_path: pathlib.Path,\tsource_data_path: pathlib.Path,\tsource_data_format: str,\tsource_data_version: str,\towner: str,\tmemory_info: dict,\tprocessed_run_id: str,\trow_id_info: ml.data.processed.processing.add_row_id_base.RowIDMetadata | None = None) -> ml.metadata.schemas.data.processed.ProcessedDatasetMetadata:", "funcdef": "def"}, "ml.data.processed.processing": {"fullname": "ml.data.processed.processing", "modulename": "ml.data.processed.processing", "kind": "module", "doc": "

    A package for processing data.

    \n"}, "ml.data.processed.processing.add_row_id_base": {"fullname": "ml.data.processed.processing.add_row_id_base", "modulename": "ml.data.processed.processing.add_row_id_base", "kind": "module", "doc": "

    Abstract base interface for dataset-specific row-id generators.

    \n"}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"fullname": "ml.data.processed.processing.add_row_id_base.RowIDMetadata", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "RowIDMetadata", "kind": "class", "doc": "

    Metadata about the row_id generation process for lineage tracking.

    \n", "bases": "typing.TypedDict"}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"fullname": "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "RowIDMetadata.cols_for_row_id", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"fullname": "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "RowIDMetadata.fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"fullname": "ml.data.processed.processing.add_row_id_base.AddRowIDBase", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "AddRowIDBase", "kind": "class", "doc": "

    Base contract for row-id generation implementations.

    \n", "bases": "abc.ABC"}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"fullname": "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id", "modulename": "ml.data.processed.processing.add_row_id_base", "qualname": "AddRowIDBase.add_row_id", "kind": "function", "doc": "

    Return dataframe augmented with row identifiers and trace metadata.

    \n\n

    Args:\n df: Input dataframe requiring row identifier creation.

    \n\n

    Returns:\n Tuple of augmented dataframe and row-id lineage metadata.

    \n", "signature": "(\tself,\tdf: pandas.core.frame.DataFrame) -> tuple[pandas.core.frame.DataFrame, ml.data.processed.processing.add_row_id_base.RowIDMetadata]:", "funcdef": "def"}, "ml.data.processed.processing.hotel_bookings": {"fullname": "ml.data.processed.processing.hotel_bookings", "modulename": "ml.data.processed.processing.hotel_bookings", "kind": "module", "doc": "

    A package for hotel_bookings-specific data processing.

    \n"}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "kind": "module", "doc": "

    Row ID generation strategy for processed hotel bookings datasets.

    \n"}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id.logger", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.processed.processing.hotel_bookings.add_row_id (WARNING)>"}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "qualname": "validate_cols_for_row_id", "kind": "function", "doc": "

    Validate row-id column fingerprint against the expected immutable reference.

    \n\n

    Returns:\n str: Computed fingerprint for the configured row-id source columns.

    \n", "signature": "() -> str:", "funcdef": "def"}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "qualname": "AddRowIDToHotelBookings", "kind": "class", "doc": "

    Concrete row-id generator for hotel bookings based on stable key columns.

    \n", "bases": "ml.data.processed.processing.add_row_id_base.AddRowIDBase"}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.add_row_id", "qualname": "AddRowIDToHotelBookings.add_row_id", "kind": "function", "doc": "

    Create deterministic row identifiers and return dataframe plus lineage metadata.

    \n\n

    Args:\n df: Input bookings dataframe.

    \n\n

    Returns:\n tuple[pd.DataFrame, RowIDMetadata]: Dataframe with row_id and row-id metadata.

    \n", "signature": "(\tself,\tdf: pandas.core.frame.DataFrame) -> tuple[pandas.core.frame.DataFrame, ml.data.processed.processing.add_row_id_base.RowIDMetadata]:", "funcdef": "def"}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.cols_for_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.cols_for_row_id", "kind": "module", "doc": "

    Immutable source columns and fingerprint used for hotel-bookings row-id generation.

    \n"}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"fullname": "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id", "modulename": "ml.data.processed.processing.hotel_bookings.cols_for_row_id", "qualname": "cols_for_row_id", "kind": "variable", "doc": "

    \n", "default_value": "['hotel', 'arrival_date_year', 'arrival_date_month', 'arrival_date_day_of_month', 'reserved_room_type', 'assigned_room_type', 'stays_in_weekend_nights', 'stays_in_week_nights', 'adults', 'children', 'babies', 'meal', 'market_segment', 'distribution_channel', 'is_repeated_guest', 'previous_cancellations', 'previous_bookings_not_canceled', 'country', 'agent']"}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"fullname": "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT", "modulename": "ml.data.processed.processing.hotel_bookings.cols_for_row_id", "qualname": "COLS_FOR_ROW_ID_FINGERPRINT", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'456cb2413ef2d2871406ae1e763ce4306e4fb1aad834a29e145cddb0f39bfbda'"}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"fullname": "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint", "modulename": "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint", "kind": "module", "doc": "

    Utilities for deriving stable fingerprints for row-id source columns.

    \n"}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"fullname": "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint", "modulename": "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint", "qualname": "compute_cols_for_row_id_fingerprint", "kind": "function", "doc": "

    Compute an order-insensitive fingerprint for row-id column definitions.

    \n\n

    Args:\n cols: Iterable of column names used to derive row identifiers.

    \n\n

    Returns:\n Stable hash fingerprint for the provided column set.

    \n", "signature": "(cols):", "funcdef": "def"}, "ml.data.processed.processing.process_data": {"fullname": "ml.data.processed.processing.process_data", "modulename": "ml.data.processed.processing.process_data", "kind": "module", "doc": "

    Processed-stage transformation helpers.

    \n\n

    Includes column removal and dataset-specific row-id generation dispatch.

    \n"}, "ml.data.processed.processing.process_data.logger": {"fullname": "ml.data.processed.processing.process_data.logger", "modulename": "ml.data.processed.processing.process_data", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.processed.processing.process_data (WARNING)>"}, "ml.data.processed.processing.process_data.remove_columns": {"fullname": "ml.data.processed.processing.process_data.remove_columns", "modulename": "ml.data.processed.processing.process_data", "qualname": "remove_columns", "kind": "function", "doc": "

    Drop required columns, raising when requested columns are missing.

    \n\n

    Args:\n df: Input dataframe.\n columns_to_remove: Column names to drop.

    \n\n

    Returns:\n pd.DataFrame: Dataframe with specified columns removed.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\tcolumns_to_remove: list) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.data.processed.processing.process_data.add_row_id": {"fullname": "ml.data.processed.processing.process_data.add_row_id", "modulename": "ml.data.processed.processing.process_data", "qualname": "add_row_id", "kind": "function", "doc": "

    Apply registered row-id generation function for configured dataset.

    \n\n

    Args:\n df: Input dataframe.\n cfg: Processed-data configuration.

    \n\n

    Returns:\n tuple[pd.DataFrame, RowIDMetadata]: Dataframe with row IDs and row-id metadata.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\tcfg: ml.data.config.schemas.processed.ProcessedConfig) -> tuple[pandas.core.frame.DataFrame, ml.data.processed.processing.add_row_id_base.RowIDMetadata]:", "funcdef": "def"}, "ml.data.raw": {"fullname": "ml.data.raw", "modulename": "ml.data.raw", "kind": "module", "doc": "

    A package for working with raw data.

    \n"}, "ml.data.raw.persistence": {"fullname": "ml.data.raw.persistence", "modulename": "ml.data.raw.persistence", "kind": "module", "doc": "

    A package for persisting the register_raw_snapshot.py pipeline.

    \n"}, "ml.data.raw.persistence.prepare_metadata": {"fullname": "ml.data.raw.persistence.prepare_metadata", "modulename": "ml.data.raw.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata assembly helper for raw data snapshots.

    \n"}, "ml.data.raw.persistence.prepare_metadata.logger": {"fullname": "ml.data.raw.persistence.prepare_metadata.logger", "modulename": "ml.data.raw.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.raw.persistence.prepare_metadata (WARNING)>"}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.data.raw.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.data.raw.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build metadata payload for a raw data snapshot.

    \n\n

    Args:\n df: Loaded raw dataframe.\n args: CLI arguments namespace with data/version/owner fields.\n data_path: Raw data file path.\n raw_run_id: Unique run identifier for raw handling stage.\n data_format: Raw data file format.\n data_suffix: Raw data file name or suffix.

    \n\n

    Returns:\n RawSnapshotMetadata: The validated metadata object.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\targs,\tdata_path: pathlib.Path,\traw_run_id: str,\tdata_format: str,\tdata_suffix: str) -> ml.metadata.schemas.data.raw.RawSnapshotMetadata:", "funcdef": "def"}, "ml.data.utils": {"fullname": "ml.data.utils", "modulename": "ml.data.utils", "kind": "module", "doc": "

    A package with utilities for working with data.

    \n"}, "ml.data.utils.extraction": {"fullname": "ml.data.utils.extraction", "modulename": "ml.data.utils.extraction", "kind": "module", "doc": "

    A package for data extraction utilities.

    \n"}, "ml.data.utils.extraction.get_data_suffix_and_format": {"fullname": "ml.data.utils.extraction.get_data_suffix_and_format", "modulename": "ml.data.utils.extraction.get_data_suffix_and_format", "kind": "module", "doc": "

    Helpers for resolving dataset path suffix and format from metadata.

    \n"}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"fullname": "ml.data.utils.extraction.get_data_suffix_and_format.logger", "modulename": "ml.data.utils.extraction.get_data_suffix_and_format", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.utils.extraction.get_data_suffix_and_format (WARNING)>"}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"fullname": "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format", "modulename": "ml.data.utils.extraction.get_data_suffix_and_format", "qualname": "get_data_suffix_and_format", "kind": "function", "doc": "

    Extract required data path suffix and format fields for a metadata location.

    \n\n

    Args:\n metadata: Metadata dictionary containing data path and format fields.\n location: Metadata location key to resolve (data/output or data).

    \n\n

    Returns:\n Tuple of data path suffix and data format.

    \n", "signature": "(\tmetadata: dict,\tlocation: Literal['data/output', 'data']) -> tuple[str, str]:", "funcdef": "def"}, "ml.data.utils.memory": {"fullname": "ml.data.utils.memory", "modulename": "ml.data.utils.memory", "kind": "module", "doc": "

    A package for memory utilities for working with data.

    \n"}, "ml.data.utils.memory.compute_memory_change": {"fullname": "ml.data.utils.memory.compute_memory_change", "modulename": "ml.data.utils.memory.compute_memory_change", "kind": "module", "doc": "

    Utilities to compute memory usage deltas across data pipeline stages.

    \n"}, "ml.data.utils.memory.compute_memory_change.logger": {"fullname": "ml.data.utils.memory.compute_memory_change.logger", "modulename": "ml.data.utils.memory.compute_memory_change", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.utils.memory.compute_memory_change (WARNING)>"}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"fullname": "ml.data.utils.memory.compute_memory_change.compute_memory_change", "modulename": "ml.data.utils.memory.compute_memory_change", "qualname": "compute_memory_change", "kind": "function", "doc": "

    Compute old/new memory usage and change metrics for a pipeline stage.

    \n\n

    Args:\n target_metadata: Upstream stage metadata containing baseline memory.\n new_memory_usage: Memory usage of the current dataframe in MB.\n stage: Stage being evaluated (\"interim\" or \"processed\").

    \n\n

    Returns:\n dict: Memory delta payload with absolute and percentage change.

    \n", "signature": "(\t*,\ttarget_metadata: dict,\tnew_memory_usage: float,\tstage: Literal['interim', 'processed']) -> dict:", "funcdef": "def"}, "ml.data.utils.memory.get_memory_usage": {"fullname": "ml.data.utils.memory.get_memory_usage", "modulename": "ml.data.utils.memory.get_memory_usage", "kind": "module", "doc": "

    Memory usage helpers for pandas dataframes.

    \n"}, "ml.data.utils.memory.get_memory_usage.logger": {"fullname": "ml.data.utils.memory.get_memory_usage.logger", "modulename": "ml.data.utils.memory.get_memory_usage", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.utils.memory.get_memory_usage (WARNING)>"}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"fullname": "ml.data.utils.memory.get_memory_usage.get_memory_usage", "modulename": "ml.data.utils.memory.get_memory_usage", "qualname": "get_memory_usage", "kind": "function", "doc": "

    Calculate dataframe memory footprint in megabytes (deep mode).

    \n\n

    Args:\n df: Dataframe whose memory usage should be measured.

    \n\n

    Returns:\n Total dataframe memory usage in megabytes.

    \n", "signature": "(df: pandas.core.frame.DataFrame) -> float:", "funcdef": "def"}, "ml.data.utils.persistence": {"fullname": "ml.data.utils.persistence", "modulename": "ml.data.utils.persistence", "kind": "module", "doc": "

    A package for persisting data.

    \n"}, "ml.data.utils.persistence.save_data": {"fullname": "ml.data.utils.persistence.save_data", "modulename": "ml.data.utils.persistence.save_data", "kind": "module", "doc": "

    Dataset persistence helpers for interim and processed pipeline stages.

    \n"}, "ml.data.utils.persistence.save_data.logger": {"fullname": "ml.data.utils.persistence.save_data.logger", "modulename": "ml.data.utils.persistence.save_data", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.utils.persistence.save_data (WARNING)>"}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"fullname": "ml.data.utils.persistence.save_data.SAVE_FORMAT", "modulename": "ml.data.utils.persistence.save_data", "qualname": "SAVE_FORMAT", "kind": "variable", "doc": "

    \n", "default_value": "{'parquet': <function DataFrame.to_parquet>}"}, "ml.data.utils.persistence.save_data.save_data": {"fullname": "ml.data.utils.persistence.save_data.save_data", "modulename": "ml.data.utils.persistence.save_data", "qualname": "save_data", "kind": "function", "doc": "

    Persist dataframe using output settings from validated stage config.

    \n\n

    Args:\n df: Dataframe to persist.\n config: Validated interim or processed configuration.\n data_dir: Target run directory where output file is written.

    \n\n

    Returns:\n Path: Absolute path to the written data file.

    \n", "signature": "(\tdf: pandas.core.frame.DataFrame,\t*,\tconfig: ml.data.config.schemas.interim.InterimConfig | ml.data.config.schemas.processed.ProcessedConfig,\tdata_dir: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}, "ml.data.validation": {"fullname": "ml.data.validation", "modulename": "ml.data.validation", "kind": "module", "doc": "

    A package for validating data.

    \n"}, "ml.data.validation.validate_data": {"fullname": "ml.data.validation.validate_data", "modulename": "ml.data.validation.validate_data", "kind": "module", "doc": "

    Data integrity validation helpers based on persisted hashes.

    \n"}, "ml.data.validation.validate_data.logger": {"fullname": "ml.data.validation.validate_data.logger", "modulename": "ml.data.validation.validate_data", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.validation.validate_data (WARNING)>"}, "ml.data.validation.validate_data.validate_data": {"fullname": "ml.data.validation.validate_data.validate_data", "modulename": "ml.data.validation.validate_data", "qualname": "validate_data", "kind": "function", "doc": "

    Validate dataset hash against metadata and return the computed hash.

    \n\n

    Args:\n data_path: Dataset file path.\n metadata: Metadata dictionary containing expected data hash.

    \n\n

    Returns:\n Computed data hash, or empty string when no expected hash is present.

    \n", "signature": "(*, data_path: pathlib.Path, metadata: dict) -> str:", "funcdef": "def"}, "ml.data.validation.validate_entity_key": {"fullname": "ml.data.validation.validate_entity_key", "modulename": "ml.data.validation.validate_entity_key", "kind": "module", "doc": "

    Validation helpers for row identifier integrity in feature datasets.

    \n"}, "ml.data.validation.validate_entity_key.logger": {"fullname": "ml.data.validation.validate_entity_key.logger", "modulename": "ml.data.validation.validate_entity_key", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.validation.validate_entity_key (WARNING)>"}, "ml.data.validation.validate_entity_key.validate_entity_key": {"fullname": "ml.data.validation.validate_entity_key.validate_entity_key", "modulename": "ml.data.validation.validate_entity_key", "qualname": "validate_entity_key", "kind": "function", "doc": "

    Validate that entity_key exists and is unique within the dataframe.

    \n\n

    Args:\n df: Dataframe expected to contain unique entity_key values.

    \n\n

    Returns:\n None.

    \n", "signature": "(df: pandas.core.frame.DataFrame, entity_key: str) -> None:", "funcdef": "def"}, "ml.data.validation.validate_min_rows": {"fullname": "ml.data.validation.validate_min_rows", "modulename": "ml.data.validation.validate_min_rows", "kind": "module", "doc": "

    Validation helpers for minimum-row requirements in dataframes.

    \n"}, "ml.data.validation.validate_min_rows.logger": {"fullname": "ml.data.validation.validate_min_rows.logger", "modulename": "ml.data.validation.validate_min_rows", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.data.validation.validate_min_rows (WARNING)>"}, "ml.data.validation.validate_min_rows.validate_min_rows": {"fullname": "ml.data.validation.validate_min_rows.validate_min_rows", "modulename": "ml.data.validation.validate_min_rows", "qualname": "validate_min_rows", "kind": "function", "doc": "

    Ensure dataframe row count meets configured minimum threshold.

    \n\n

    Args:\n df: Dataframe to validate.\n min_rows: Minimum required number of rows.

    \n\n

    Returns:\n None.

    \n", "signature": "(df: pandas.core.frame.DataFrame, min_rows: int):", "funcdef": "def"}, "ml.exceptions": {"fullname": "ml.exceptions", "modulename": "ml.exceptions", "kind": "module", "doc": "

    Project-wide exception hierarchy for ML workflows.

    \n\n

    The hierarchy separates user-actionable issues from internal runtime failures,\nenabling consistent error handling, logging, and CLI exit-code mapping.

    \n"}, "ml.exceptions.MLBaseError": {"fullname": "ml.exceptions.MLBaseError", "modulename": "ml.exceptions", "qualname": "MLBaseError", "kind": "class", "doc": "

    Base class for all ML pipeline errors.

    \n", "bases": "builtins.Exception"}, "ml.exceptions.UserError": {"fullname": "ml.exceptions.UserError", "modulename": "ml.exceptions", "qualname": "UserError", "kind": "class", "doc": "

    Errors caused by user configuration or misuse.

    \n", "bases": "MLBaseError"}, "ml.exceptions.RuntimeMLError": {"fullname": "ml.exceptions.RuntimeMLError", "modulename": "ml.exceptions", "qualname": "RuntimeMLError", "kind": "class", "doc": "

    Errors caused by internal failures.

    \n", "bases": "MLBaseError"}, "ml.exceptions.ConfigError": {"fullname": "ml.exceptions.ConfigError", "modulename": "ml.exceptions", "qualname": "ConfigError", "kind": "class", "doc": "

    Invalid or inconsistent configuration.

    \n", "bases": "UserError"}, "ml.exceptions.DataError": {"fullname": "ml.exceptions.DataError", "modulename": "ml.exceptions", "qualname": "DataError", "kind": "class", "doc": "

    Feature store or data issues.

    \n", "bases": "UserError"}, "ml.exceptions.PipelineContractError": {"fullname": "ml.exceptions.PipelineContractError", "modulename": "ml.exceptions", "qualname": "PipelineContractError", "kind": "class", "doc": "

    Violations of structural or logical expectations between pipeline\nstages or experiment components, including incompatible artifacts,\nlineage inconsistencies, incorrect stage ordering, or execution under\nan unrelated or incompatible experiment context.

    \n", "bases": "UserError"}, "ml.exceptions.SearchError": {"fullname": "ml.exceptions.SearchError", "modulename": "ml.exceptions", "qualname": "SearchError", "kind": "class", "doc": "

    Hyperparameter search failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.TrainingError": {"fullname": "ml.exceptions.TrainingError", "modulename": "ml.exceptions", "qualname": "TrainingError", "kind": "class", "doc": "

    Model training failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.EvaluationError": {"fullname": "ml.exceptions.EvaluationError", "modulename": "ml.exceptions", "qualname": "EvaluationError", "kind": "class", "doc": "

    Evaluation or metric computation failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.ExplainabilityError": {"fullname": "ml.exceptions.ExplainabilityError", "modulename": "ml.exceptions", "qualname": "ExplainabilityError", "kind": "class", "doc": "

    Explainability or interpretation stage failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.PersistenceError": {"fullname": "ml.exceptions.PersistenceError", "modulename": "ml.exceptions", "qualname": "PersistenceError", "kind": "class", "doc": "

    Experiment or artifact saving failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.InferenceError": {"fullname": "ml.exceptions.InferenceError", "modulename": "ml.exceptions", "qualname": "InferenceError", "kind": "class", "doc": "

    Inference or prediction failure.

    \n", "bases": "RuntimeMLError"}, "ml.exceptions.MonitoringError": {"fullname": "ml.exceptions.MonitoringError", "modulename": "ml.exceptions", "qualname": "MonitoringError", "kind": "class", "doc": "

    Monitoring or drift detection failure.

    \n", "bases": "RuntimeMLError"}, "ml.feature_freezing": {"fullname": "ml.feature_freezing", "modulename": "ml.feature_freezing", "kind": "module", "doc": "

    A package for freezing feature sets.

    \n"}, "ml.feature_freezing.constants": {"fullname": "ml.feature_freezing.constants", "modulename": "ml.feature_freezing.constants", "kind": "module", "doc": "

    A package with constants for feature freezing.

    \n"}, "ml.feature_freezing.constants.output": {"fullname": "ml.feature_freezing.constants.output", "modulename": "ml.feature_freezing.constants.output", "kind": "module", "doc": "

    Output models shared by feature-freezing strategies.

    \n"}, "ml.feature_freezing.constants.output.FreezeOutput": {"fullname": "ml.feature_freezing.constants.output.FreezeOutput", "modulename": "ml.feature_freezing.constants.output", "qualname": "FreezeOutput", "kind": "class", "doc": "

    Result payload returned by a feature-freezing strategy run.

    \n"}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"fullname": "ml.feature_freezing.constants.output.FreezeOutput.__init__", "modulename": "ml.feature_freezing.constants.output", "qualname": "FreezeOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(snapshot_path: pathlib.Path, metadata: dict)"}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"fullname": "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path", "modulename": "ml.feature_freezing.constants.output", "qualname": "FreezeOutput.snapshot_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"fullname": "ml.feature_freezing.constants.output.FreezeOutput.metadata", "modulename": "ml.feature_freezing.constants.output", "qualname": "FreezeOutput.metadata", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.feature_freezing.freeze_strategies": {"fullname": "ml.feature_freezing.freeze_strategies", "modulename": "ml.feature_freezing.freeze_strategies", "kind": "module", "doc": "

    A package containing strategies for freezing feature sets.

    \n"}, "ml.feature_freezing.freeze_strategies.base": {"fullname": "ml.feature_freezing.freeze_strategies.base", "modulename": "ml.feature_freezing.freeze_strategies.base", "kind": "module", "doc": "

    Abstract interfaces for feature freezing strategies.

    \n"}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"fullname": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy", "modulename": "ml.feature_freezing.freeze_strategies.base", "qualname": "FreezeStrategy", "kind": "class", "doc": "

    Base strategy contract for feature snapshot generation.

    \n", "bases": "abc.ABC"}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"fullname": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze", "modulename": "ml.feature_freezing.freeze_strategies.base", "qualname": "FreezeStrategy.freeze", "kind": "function", "doc": "

    Execute strategy-specific freeze workflow and return output payload.

    \n\n

    Args:\n config: Feature-freezing configuration.\n timestamp: Snapshot creation timestamp.\n snapshot_id: Snapshot identifier.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\n start_time: Monotonic start timestamp.\n owner: Snapshot owner identifier.

    \n\n

    Returns:\n FreezeOutput: Freeze operation output payload.

    \n", "signature": "(\tself,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\t*,\ttimestamp: str,\tsnapshot_id: str,\tsnapshot_binding_key: str | None,\tstart_time: float,\towner: str) -> ml.feature_freezing.constants.output.FreezeOutput:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"fullname": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config", "modulename": "ml.feature_freezing.freeze_strategies.base", "qualname": "FreezeStrategy.hash_config", "kind": "function", "doc": "

    Compute deterministic hash for strategy configuration object.

    \n\n

    Args:\n config: Feature-freezing configuration object.

    \n\n

    Returns:\n str: Deterministic config hash.

    \n", "signature": "(\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig) -> str:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.config": {"fullname": "ml.feature_freezing.freeze_strategies.config", "modulename": "ml.feature_freezing.freeze_strategies.config", "kind": "module", "doc": "

    A package with configurations regarding feature freezing strategies.

    \n"}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"fullname": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "modulename": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "kind": "module", "doc": "

    Validation entrypoint for feature registry strategy configs.

    \n"}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"fullname": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger", "modulename": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.config.validate_feature_registry (WARNING)>"}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"fullname": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS", "modulename": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "qualname": "SCHEMAS", "kind": "variable", "doc": "

    \n", "default_value": "{'tabular': <class 'ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig'>}"}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"fullname": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry", "modulename": "ml.feature_freezing.freeze_strategies.config.validate_feature_registry", "qualname": "validate_feature_registry", "kind": "function", "doc": "

    Validate raw feature registry payload for the given strategy type.

    \n\n

    Args:\n raw_config: Raw strategy config dictionary.\n data_type: Feature strategy type identifier.

    \n\n

    Returns:\n TabularFeaturesConfig: Validated tabular strategy configuration.

    \n", "signature": "(\traw_config: dict,\tdata_type: str) -> ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular": {"fullname": "ml.feature_freezing.freeze_strategies.tabular", "modulename": "ml.feature_freezing.freeze_strategies.tabular", "kind": "module", "doc": "

    A package for freezing tabular features.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.config": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config", "kind": "module", "doc": "

    A package with configurations for tabular feature freezing.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "kind": "module", "doc": "

    Pydantic schemas for tabular feature-freezing strategy configuration.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.config.models (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "MergeHow", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['left', 'right', 'inner', 'outer', 'cross']"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "MergeValidate", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m']"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig", "kind": "class", "doc": "

    Source dataset definition used for feature freezing ingestion.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.ref", "kind": "variable", "doc": "

    Reference path for the dataset, e.g., 'data/processed'

    \n", "annotation": ": str", "default_value": "'data/processed'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.name", "kind": "variable", "doc": "

    Name of the dataset, e.g., 'hotel_bookings'

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.version", "kind": "variable", "doc": "

    Version of the dataset, e.g., 'v1'

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.format", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['csv', 'parquet']", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.merge_key", "kind": "variable", "doc": "

    Key(s) to merge datasets on, default is 'row_id'

    \n", "annotation": ": str | list[str]", "default_value": "'row_id'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.merge_how", "kind": "variable", "doc": "

    Merge type, default 'inner'

    \n", "annotation": ": Literal['left', 'right', 'inner', 'outer', 'cross']", "default_value": "'inner'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.merge_validate", "kind": "variable", "doc": "

    Merge validation for row explosion protection

    \n", "annotation": ": Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m']", "default_value": "'m:m'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.path_suffix", "kind": "variable", "doc": "

    Suffix for the dataset file, supports {format} placeholder

    \n", "annotation": ": str", "default_value": "'data.{format}'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.ensure_merge_key_list", "kind": "function", "doc": "

    Always convert merge_key to a list internally.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.validate_merge_how", "kind": "function", "doc": "

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "DatasetConfig.normalize_merge_validate", "kind": "function", "doc": "

    Normalize merge_validate to pandas-compatible strings.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "FeatureRolesConfig", "kind": "class", "doc": "

    Feature role partitioning for validation and downstream usage.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "FeatureRolesConfig.categorical", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "FeatureRolesConfig.numerical", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "FeatureRolesConfig.datetime", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig", "kind": "class", "doc": "

    Operator execution settings and reproducibility hash metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig.mode", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['materialized', 'logical']", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig.names", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig.hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "OperatorsConfig.required_features", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, list[str]]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "ConstraintsConfig", "kind": "class", "doc": "

    Data quality constraints enforced on frozen features.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "ConstraintsConfig.forbid_nulls", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "ConstraintsConfig.max_cardinality", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, int]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "StorageConfig", "kind": "class", "doc": "

    Snapshot storage format and compression settings.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "StorageConfig.format", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['parquet']", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "StorageConfig.compression", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "'snappy'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "LineageConfig", "kind": "class", "doc": "

    Lineage metadata for feature registry config provenance.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig", "kind": "class", "doc": "

    Top-level validated config for tabular feature freezing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'tabular'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.description", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.entity_key", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'row_id'"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.data", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.min_rows", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "1000"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.feature_store_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.columns", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.feature_roles", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.operators", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.constraints", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.storage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig", "default_value": "PydanticUndefined"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.required_features_must_equal_operator_names", "kind": "function", "doc": "

    Validate operator names align with required-features mapping keys.

    \n\n

    Args:\n v: Raw operators payload.

    \n\n

    Returns:\n Any: Validated operators payload.

    \n", "signature": "(cls, v):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.validate_feature_roles_match_columns", "kind": "function", "doc": "

    Ensure feature role assignments exactly match included columns.

    \n\n

    Args:\n self: Candidate tabular features config.

    \n\n

    Returns:\n TabularFeaturesConfig: Validated config.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.validate_constraints_match_columns", "kind": "function", "doc": "

    Ensure constraint-referenced columns exist in included columns.

    \n\n

    Args:\n self: Candidate tabular features config.

    \n\n

    Returns:\n TabularFeaturesConfig: Validated config.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators", "modulename": "ml.feature_freezing.freeze_strategies.tabular.config.models", "qualname": "TabularFeaturesConfig.validate_required_features_for_operators", "kind": "function", "doc": "

    Ensure all operator required features are present in included columns.

    \n\n

    Args:\n self: Candidate tabular features config.

    \n\n

    Returns:\n TabularFeaturesConfig: Validated config.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.features", "kind": "module", "doc": "

    Feature preparation and operator-application helpers for tabular freezing.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.features.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.features", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.features (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.features", "qualname": "prepare_features", "kind": "function", "doc": "

    Select configured feature columns and enforce entity_key presence.

    \n\n

    Args:\n data: Source dataframe.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n pd.DataFrame: Prepared feature dataframe including entity_key.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators", "modulename": "ml.feature_freezing.freeze_strategies.tabular.features", "qualname": "apply_operators", "kind": "function", "doc": "

    Apply configured feature operators after dependency checks.

    \n\n

    Args:\n X: Input feature dataframe.\n operator_names: Ordered operator names to apply.\n required_features: Operator dependency mapping.

    \n\n

    Returns:\n pd.DataFrame: Transformed feature dataframe.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\toperator_names: list[str],\trequired_features: dict[str, list[str]]) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "kind": "module", "doc": "

    Persistence and metadata helpers for tabular feature freezing outputs.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.persistence (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "freeze_parquet", "kind": "function", "doc": "

    Persist feature dataframe as parquet and return output file path.

    \n\n

    Args:\n path: Snapshot directory path.\n features: Features dataframe to persist.\n compression: Optional parquet compression codec.

    \n\n

    Returns:\n Path: Path to persisted parquet file.

    \n", "signature": "(\tpath: pathlib.Path,\t*,\tfeatures: pandas.core.frame.DataFrame,\tcompression=None) -> pathlib.Path:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "persist_feature_snapshot", "kind": "function", "doc": "

    Persist frozen feature snapshot and return snapshot/data paths.

    \n\n

    Args:\n config: Tabular feature freezing configuration.\n features: Features dataframe to persist.\n snapshot_id: Snapshot identifier.

    \n\n

    Returns:\n tuple[Path, Path]: Snapshot directory path and persisted data-file path.

    \n", "signature": "(\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\t*,\tfeatures: pandas.core.frame.DataFrame,\tsnapshot_id: str) -> tuple[pathlib.Path, pathlib.Path]:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "save_input_schema", "kind": "function", "doc": "

    Persist input schema CSV when missing.

    \n\n

    Args:\n path: Snapshot directory path.\n features: Input dataframe for schema extraction.

    \n\n

    Returns:\n None: This function writes schema side effects only.

    \n", "signature": "(path: pathlib.Path, features: pandas.core.frame.DataFrame):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "save_derived_schema", "kind": "function", "doc": "

    Persist derived schema CSV inferred from configured operators.

    \n\n

    Args:\n path: Snapshot directory path.\n features: Sample features dataframe.\n operator_names: Ordered operator names used to derive features.\n mode: Operator execution mode.

    \n\n

    Returns:\n None: This function writes schema side effects only.

    \n", "signature": "(\tpath: pathlib.Path,\t*,\tfeatures: pandas.core.frame.DataFrame,\toperator_names: list[str],\tmode: str):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata", "modulename": "ml.feature_freezing.freeze_strategies.tabular.persistence", "qualname": "create_metadata", "kind": "function", "doc": "

    Build final metadata payload for a frozen tabular feature snapshot.

    \n\n

    Args:\n timestamp: Snapshot creation timestamp.\n snapshot_path: Snapshot directory path.\n schema_path: Input schema file path.\n data_lineage: Data lineage entries backing the features.\n in_memory_hash: Hash of in-memory features frame.\n file_hash: Hash of persisted feature artifact.\n operator_hash: Hash representing applied operators.\n config_hash: Feature-freezing config hash.\n feature_schema_hash: Hash of feature schema representation.\n runtime: Runtime metadata payload.\n features: Persisted features dataframe.\n duration: Snapshot creation duration in seconds.\n owner: Snapshot owner identifier.

    \n\n

    Returns:\n dict: Metadata payload ready for persistence.

    \n", "signature": "(\t*,\ttimestamp: str,\tsnapshot_path: pathlib.Path,\tschema_path: pathlib.Path,\tdata_lineage: list[dict],\tin_memory_hash: str,\tfile_hash: str,\toperator_hash: str,\tconfig_hash: str,\tfeature_schema_hash: str,\truntime: dict,\tfeatures: pandas.core.frame.DataFrame,\tduration: float,\tentity_key: str,\towner: str) -> dict:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline", "kind": "module", "doc": "

    A package for defining the tabular feature freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "kind": "module", "doc": "

    Execution context model for tabular feature-freezing pipeline stages.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.context (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext", "kind": "class", "doc": "

    Mutable context shared across tabular freeze pipeline steps.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\ttimestamp: str,\tsnapshot_id: str,\tstart_time: float,\towner: str,\tsnapshot_binding_key: str | None,\tdata: pandas.core.frame.DataFrame | None = None,\tdata_lineage: list[ml.types.lineage.data_lineage.DataLineageEntry] | None = None,\tfeatures: pandas.core.frame.DataFrame | None = None,\tsnapshot_path: pathlib.Path | None = None,\tschema_path: pathlib.Path | None = None,\tdata_path: pathlib.Path | None = None,\tmetadata: dict | None = None,\tconfig_hash: str | None = None)"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.config", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.timestamp", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.start_time", "kind": "variable", "doc": "

    \n", "annotation": ": float"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.owner", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.snapshot_binding_key", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.data", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.data_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.types.lineage.data_lineage.DataLineageEntry] | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.features", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.snapshot_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.schema_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.data_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.metadata", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_data", "kind": "variable", "doc": "

    Return loaded source data or raise if ingestion has not run.

    \n\n

    Returns:\n pd.DataFrame: Loaded source data.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_data_lineage", "kind": "variable", "doc": "

    Return data lineage entries or raise if not yet populated.

    \n\n

    Returns:\n list[DataLineageEntry]: Source data lineage entries.

    \n", "annotation": ": list[ml.types.lineage.data_lineage.DataLineageEntry]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_features", "kind": "variable", "doc": "

    Return prepared feature dataframe or raise if unavailable.

    \n\n

    Returns:\n pd.DataFrame: Prepared feature dataframe.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_snapshot_path", "kind": "variable", "doc": "

    Return persisted snapshot path or raise if persistence not run.

    \n\n

    Returns:\n Path: Snapshot directory path.

    \n", "annotation": ": pathlib.Path"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_schema_path", "kind": "variable", "doc": "

    Return schema path or raise if persistence not run.

    \n\n

    Returns:\n Path: Persisted input schema path.

    \n", "annotation": ": pathlib.Path"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_data_path", "kind": "variable", "doc": "

    Return persisted feature data path or raise if unset.

    \n\n

    Returns:\n Path: Persisted features data-file path.

    \n", "annotation": ": pathlib.Path"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_config_hash", "kind": "variable", "doc": "

    Return computed config hash or raise if metadata step not run.

    \n\n

    Returns:\n str: Computed feature-freezing config hash.

    \n", "annotation": ": str"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.context", "qualname": "FreezeContext.require_metadata", "kind": "variable", "doc": "

    Return assembled metadata payload or raise if missing.

    \n\n

    Returns:\n dict: Assembled metadata payload.

    \n", "annotation": ": dict"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps", "kind": "module", "doc": "

    A package containing the steps of the tabular feature freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "kind": "module", "doc": "

    Ingestion step for tabular feature-freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep", "kind": "class", "doc": "

    Load source data, validate prerequisites, and attach lineage.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'ingestion'"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion", "qualname": "IngestionStep.run", "kind": "function", "doc": "

    Execute ingestion workflow and update context with data and lineage.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n FreezeContext: Updated context with loaded data and lineage.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "kind": "module", "doc": "

    Metadata step for tabular feature-freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep", "kind": "class", "doc": "

    Compute hashes/runtime metadata and attach final metadata payload.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.__init__", "kind": "function", "doc": "

    Initialize metadata step with injected config-hash function.

    \n\n

    Args:\n hash_config: Callable used to hash configuration payloads.

    \n\n

    Returns:\n None: Initializes step dependencies.

    \n", "signature": "(hash_config)"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'metadata'"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.hash_config", "kind": "variable", "doc": "

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata", "qualname": "MetadataStep.run", "kind": "function", "doc": "

    Build and store metadata payload for the frozen snapshot.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n FreezeContext: Updated context with computed metadata.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "kind": "module", "doc": "

    Persistence step for tabular feature-freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep", "kind": "class", "doc": "

    Persist feature snapshot and associated schema artifacts.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'persistence'"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence", "qualname": "PersistenceStep.run", "kind": "function", "doc": "

    Persist data and schemas, then update context artifact paths.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n FreezeContext: Updated context with persisted artifact paths.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "kind": "module", "doc": "

    Preprocessing step for tabular feature-freezing pipeline.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep", "kind": "class", "doc": "

    Prepare feature columns, validate constraints, and apply operators.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext]"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'preprocessing'"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> None:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run", "modulename": "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing", "qualname": "PreprocessingStep.run", "kind": "function", "doc": "

    Execute preprocessing workflow and store resulting features.

    \n\n

    Args:\n ctx: Freeze pipeline context.

    \n\n

    Returns:\n FreezeContext: Updated context with prepared features.

    \n", "signature": "(\tself,\tctx: ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext) -> ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.strategy", "modulename": "ml.feature_freezing.freeze_strategies.tabular.strategy", "kind": "module", "doc": "

    Concrete feature-freezing strategy for tabular datasets.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.strategy.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.strategy", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.strategy (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular", "modulename": "ml.feature_freezing.freeze_strategies.tabular.strategy", "qualname": "FreezeTabular", "kind": "class", "doc": "

    Run the tabular freeze pipeline and return snapshot metadata.

    \n", "bases": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy"}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze", "modulename": "ml.feature_freezing.freeze_strategies.tabular.strategy", "qualname": "FreezeTabular.freeze", "kind": "function", "doc": "

    Execute tabular freezing steps using pipeline runner orchestration.

    \n\n

    Args:\n config: Validated tabular feature-freezing configuration.\n timestamp: Run timestamp string used for metadata and paths.\n snapshot_id: Unique snapshot identifier.\n start_time: Process start time used for runtime metadata.\n owner: Owner identifier stored in snapshot metadata.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\nReturns:\n Freeze output containing persisted snapshot path and metadata.

    \n", "signature": "(\tself,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\t*,\tsnapshot_binding_key: str | None,\ttimestamp: str,\tsnapshot_id: str,\tstart_time: float,\towner: str) -> ml.feature_freezing.constants.output.FreezeOutput:", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "kind": "module", "doc": "

    Validation helpers for tabular feature constraints and data types.

    \n"}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.logger", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.tabular.validation (WARNING)>"}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "validate_input_no_nulls", "kind": "function", "doc": "

    Validate configured no-null constraints on selected feature columns.

    \n\n

    Args:\n X: Feature dataframe or series.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame | pandas.core.series.Series,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "validate_max_cardinality", "kind": "function", "doc": "

    Validate categorical cardinality does not exceed configured limits.

    \n\n

    Args:\n X: Feature dataframe or series.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame | pandas.core.series.Series,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "validate_constraints", "kind": "function", "doc": "

    Run all configured feature constraint validations.

    \n\n

    Args:\n X: Feature dataframe or series.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame | pandas.core.series.Series,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"fullname": "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types", "modulename": "ml.feature_freezing.freeze_strategies.tabular.validation", "qualname": "validate_data_types", "kind": "function", "doc": "

    Validate feature dtypes against configured role-specific allowlists.

    \n\n

    Args:\n X: Feature dataframe or series.\n config: Tabular feature-freezing configuration.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame | pandas.core.series.Series,\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig):", "funcdef": "def"}, "ml.feature_freezing.freeze_strategies.time_series": {"fullname": "ml.feature_freezing.freeze_strategies.time_series", "modulename": "ml.feature_freezing.freeze_strategies.time_series", "kind": "module", "doc": "

    Placeholder strategy module for future time-series feature freezing.

    \n"}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"fullname": "ml.feature_freezing.freeze_strategies.time_series.logger", "modulename": "ml.feature_freezing.freeze_strategies.time_series", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.freeze_strategies.time_series (WARNING)>"}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"fullname": "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries", "modulename": "ml.feature_freezing.freeze_strategies.time_series", "qualname": "FreezeTimeSeries", "kind": "class", "doc": "

    Stub strategy for time-series feature freezing workflows.

    \n", "bases": "ml.feature_freezing.freeze_strategies.base.FreezeStrategy"}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"fullname": "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze", "modulename": "ml.feature_freezing.freeze_strategies.time_series", "qualname": "FreezeTimeSeries.freeze", "kind": "function", "doc": "

    Execute time-series freeze workflow (not yet implemented).

    \n\n

    Args:\n config: Time-series feature-freezing configuration.\n timestamp: Run timestamp string used for metadata and paths.\n snapshot_id: Unique snapshot identifier.\n start_time: Process start time used for runtime metadata.\n owner: Owner identifier stored in snapshot metadata.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\nReturns:\n Freeze output containing persisted snapshot path and metadata.

    \n", "signature": "(\tself,\tconfig,\t*,\tsnapshot_id: str,\ttimestamp: str,\tstart_time: float,\towner: str,\tsnapshot_binding_key: str | None) -> ml.feature_freezing.constants.output.FreezeOutput:", "funcdef": "def"}, "ml.feature_freezing.models": {"fullname": "ml.feature_freezing.models", "modulename": "ml.feature_freezing.models", "kind": "module", "doc": "

    A package containing pydantic models for feature freezing.

    \n"}, "ml.feature_freezing.models.freeze_runtime": {"fullname": "ml.feature_freezing.models.freeze_runtime", "modulename": "ml.feature_freezing.models.freeze_runtime", "kind": "module", "doc": "

    Schemas for the feature freezing process, including dependency versions and runtime information.

    \n"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps", "kind": "class", "doc": "

    Schema for dependency versions used in the feature freezing process.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.numpy", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.pandas", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.scikit_learn", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.pyarrow", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.pydantic", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeDeps.PyYAML", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo", "kind": "class", "doc": "

    Schema for runtime information of the feature freezing process.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo.runtime_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.Runtime", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo.deps", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.models.freeze_runtime.FreezeDeps", "default_value": "PydanticUndefined"}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"fullname": "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable", "modulename": "ml.feature_freezing.models.freeze_runtime", "qualname": "FreezeRuntimeInfo.python_executable", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.feature_freezing.persistence": {"fullname": "ml.feature_freezing.persistence", "modulename": "ml.feature_freezing.persistence", "kind": "module", "doc": "

    A package for persisting feature-freezing-specific information.

    \n"}, "ml.feature_freezing.persistence.get_deps": {"fullname": "ml.feature_freezing.persistence.get_deps", "modulename": "ml.feature_freezing.persistence.get_deps", "kind": "module", "doc": "

    Dependency version collection utilities for freeze runtime metadata.

    \n"}, "ml.feature_freezing.persistence.get_deps.logger": {"fullname": "ml.feature_freezing.persistence.get_deps.logger", "modulename": "ml.feature_freezing.persistence.get_deps", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.persistence.get_deps (WARNING)>"}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"fullname": "ml.feature_freezing.persistence.get_deps.get_pkg_version", "modulename": "ml.feature_freezing.persistence.get_deps", "qualname": "get_pkg_version", "kind": "function", "doc": "

    Return installed package version for the provided package name.

    \n\n

    Args:\n name: Package name.

    \n\n

    Returns:\n str: Installed package version.

    \n", "signature": "(name):", "funcdef": "def"}, "ml.feature_freezing.persistence.get_deps.get_deps": {"fullname": "ml.feature_freezing.persistence.get_deps.get_deps", "modulename": "ml.feature_freezing.persistence.get_deps", "qualname": "get_deps", "kind": "function", "doc": "

    Collect key runtime dependency versions for metadata persistence.

    \n\n

    Returns:\n dict: Dependency versions keyed by package name.

    \n", "signature": "():", "funcdef": "def"}, "ml.feature_freezing.utils": {"fullname": "ml.feature_freezing.utils", "modulename": "ml.feature_freezing.utils", "kind": "module", "doc": "

    A package for feature freezing utilities.

    \n"}, "ml.feature_freezing.utils.data_loader": {"fullname": "ml.feature_freezing.utils.data_loader", "modulename": "ml.feature_freezing.utils.data_loader", "kind": "module", "doc": "

    Dataset loading and lineage assembly utilities for feature freezing.

    \n"}, "ml.feature_freezing.utils.data_loader.logger": {"fullname": "ml.feature_freezing.utils.data_loader.logger", "modulename": "ml.feature_freezing.utils.data_loader", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.utils.data_loader (WARNING)>"}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"fullname": "ml.feature_freezing.utils.data_loader.load_data_with_lineage", "modulename": "ml.feature_freezing.utils.data_loader", "qualname": "load_data_with_lineage", "kind": "function", "doc": "

    Load configured datasets, merge them, and build lineage entries.

    \n\n

    Args:\n config: Validated tabular freeze configuration.

    \n\n

    Returns:\n tuple[pd.DataFrame, list[DataLineageEntry]]: Merged dataframe and\n dataset lineage metadata.

    \n", "signature": "(\tconfig: ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig,\tsnapshot_binding_key: str | None = None) -> tuple[pandas.core.frame.DataFrame, list[ml.types.lineage.data_lineage.DataLineageEntry]]:", "funcdef": "def"}, "ml.feature_freezing.utils.get_strategy": {"fullname": "ml.feature_freezing.utils.get_strategy", "modulename": "ml.feature_freezing.utils.get_strategy", "kind": "module", "doc": "

    Factory helper for resolving registered feature freeze strategies.

    \n"}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"fullname": "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES", "modulename": "ml.feature_freezing.utils.get_strategy", "qualname": "FREEZE_STRATEGIES", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, type[ml.feature_freezing.freeze_strategies.base.FreezeStrategy]]", "default_value": "{'tabular': <class 'ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular'>, 'time_series': <class 'ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries'>}"}, "ml.feature_freezing.utils.get_strategy.logger": {"fullname": "ml.feature_freezing.utils.get_strategy.logger", "modulename": "ml.feature_freezing.utils.get_strategy", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.utils.get_strategy (WARNING)>"}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"fullname": "ml.feature_freezing.utils.get_strategy.get_strategy", "modulename": "ml.feature_freezing.utils.get_strategy", "qualname": "get_strategy", "kind": "function", "doc": "

    Instantiate strategy implementation for the requested data type.

    \n\n

    Args:\n data_type: Feature data type key used to resolve a freeze strategy.

    \n\n

    Returns:\n Instantiated freeze strategy matching data_type.

    \n", "signature": "(\tdata_type: str) -> ml.feature_freezing.freeze_strategies.base.FreezeStrategy:", "funcdef": "def"}, "ml.feature_freezing.utils.get_strategy_type": {"fullname": "ml.feature_freezing.utils.get_strategy_type", "modulename": "ml.feature_freezing.utils.get_strategy_type", "kind": "module", "doc": "

    Helpers for resolving feature freeze strategy type from raw config.

    \n"}, "ml.feature_freezing.utils.get_strategy_type.logger": {"fullname": "ml.feature_freezing.utils.get_strategy_type.logger", "modulename": "ml.feature_freezing.utils.get_strategy_type", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.utils.get_strategy_type (WARNING)>"}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"fullname": "ml.feature_freezing.utils.get_strategy_type.get_strategy_type", "modulename": "ml.feature_freezing.utils.get_strategy_type", "qualname": "get_strategy_type", "kind": "function", "doc": "

    Extract and validate the required strategy type field.

    \n\n

    Args:\n cfg_raw: Raw feature registry configuration dictionary.

    \n\n

    Returns:\n Strategy type string from the configuration.

    \n", "signature": "(cfg_raw: dict) -> str:", "funcdef": "def"}, "ml.feature_freezing.utils.operators": {"fullname": "ml.feature_freezing.utils.operators", "modulename": "ml.feature_freezing.utils.operators", "kind": "module", "doc": "

    Operator hashing utility for operator integrity.

    \n"}, "ml.feature_freezing.utils.operators.logger": {"fullname": "ml.feature_freezing.utils.operators.logger", "modulename": "ml.feature_freezing.utils.operators", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.feature_freezing.utils.operators (WARNING)>"}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"fullname": "ml.feature_freezing.utils.operators.generate_operator_hash", "modulename": "ml.feature_freezing.utils.operators", "qualname": "generate_operator_hash", "kind": "function", "doc": "

    Generate deterministic hash for operator set and runtime context.

    \n\n

    Args:\n operator_names: Operator names included in the freeze process.

    \n\n

    Returns:\n str: Deterministic operator hash.

    \n", "signature": "(operator_names):", "funcdef": "def"}, "ml.features": {"fullname": "ml.features", "modulename": "ml.features", "kind": "module", "doc": "

    A package for feature-specific logic.

    \n"}, "ml.features.extraction": {"fullname": "ml.features.extraction", "modulename": "ml.features.extraction", "kind": "module", "doc": "

    A package for feature extraction.

    \n"}, "ml.features.extraction.cat_features": {"fullname": "ml.features.extraction.cat_features", "modulename": "ml.features.extraction.cat_features", "kind": "module", "doc": "

    Utilities for resolving categorical feature columns for model training.

    \n"}, "ml.features.extraction.cat_features.get_cat_features": {"fullname": "ml.features.extraction.cat_features.get_cat_features", "modulename": "ml.features.extraction.cat_features", "qualname": "get_cat_features", "kind": "function", "doc": "

    Return categorical feature names from input/derived schemas with segmentation rules.

    \n\n

    Args:\n model_cfg: Validated training or search model configuration.\n input_schema: Schema dataframe for raw input features.\n derived_schema: Schema dataframe for derived features.

    \n\n

    Returns:\n Combined list of categorical input and derived feature names.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tinput_schema: pandas.core.frame.DataFrame,\tderived_schema: pandas.core.frame.DataFrame) -> list[str]:", "funcdef": "def"}, "ml.features.hashing": {"fullname": "ml.features.hashing", "modulename": "ml.features.hashing", "kind": "module", "doc": "

    A package for feature hashing.

    \n"}, "ml.features.hashing.hash_arrow_metadata": {"fullname": "ml.features.hashing.hash_arrow_metadata", "modulename": "ml.features.hashing.hash_arrow_metadata", "kind": "module", "doc": "

    Hashing helpers for Arrow file metadata integrity fingerprints.

    \n"}, "ml.features.hashing.hash_arrow_metadata.logger": {"fullname": "ml.features.hashing.hash_arrow_metadata.logger", "modulename": "ml.features.hashing.hash_arrow_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.hashing.hash_arrow_metadata (WARNING)>"}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"fullname": "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata", "modulename": "ml.features.hashing.hash_arrow_metadata", "qualname": "hash_arrow_metadata", "kind": "function", "doc": "

    Compute a deterministic hash from Arrow schema and batch metadata.

    \n\n

    Args:\n path: Path to the Arrow file to fingerprint.

    \n\n

    Returns:\n Deterministic metadata hash for the Arrow file.

    \n", "signature": "(path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.features.hashing.hash_dataframe_content": {"fullname": "ml.features.hashing.hash_dataframe_content", "modulename": "ml.features.hashing.hash_dataframe_content", "kind": "module", "doc": "

    Hashing helpers for in-memory dataframe content fingerprints.

    \n"}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"fullname": "ml.features.hashing.hash_dataframe_content.hash_dataframe_content", "modulename": "ml.features.hashing.hash_dataframe_content", "qualname": "hash_dataframe_content", "kind": "function", "doc": "

    Return an MD5 hash of dataframe row content excluding index values.

    \n\n

    Args:\n X: Dataframe whose row content should be hashed.

    \n\n

    Returns:\n Content hash string for the dataframe rows.

    \n", "signature": "(X: pandas.core.frame.DataFrame) -> str:", "funcdef": "def"}, "ml.features.hashing.hash_feature_schema": {"fullname": "ml.features.hashing.hash_feature_schema", "modulename": "ml.features.hashing.hash_feature_schema", "kind": "module", "doc": "

    Hashing helpers for feature schema structure fingerprints.

    \n"}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"fullname": "ml.features.hashing.hash_feature_schema.hash_feature_schema", "modulename": "ml.features.hashing.hash_feature_schema", "qualname": "hash_feature_schema", "kind": "function", "doc": "

    Compute a stable hash from feature names and dtype signatures.

    \n\n

    Args:\n X: Dataframe whose schema should be hashed.

    \n\n

    Returns:\n Stable schema hash string.

    \n", "signature": "(X: pandas.core.frame.DataFrame) -> str:", "funcdef": "def"}, "ml.features.hashing.hash_parquet_metadata": {"fullname": "ml.features.hashing.hash_parquet_metadata", "modulename": "ml.features.hashing.hash_parquet_metadata", "kind": "module", "doc": "

    Hashing helpers for Parquet metadata integrity fingerprints.

    \n"}, "ml.features.hashing.hash_parquet_metadata.logger": {"fullname": "ml.features.hashing.hash_parquet_metadata.logger", "modulename": "ml.features.hashing.hash_parquet_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.hashing.hash_parquet_metadata (WARNING)>"}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"fullname": "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata", "modulename": "ml.features.hashing.hash_parquet_metadata", "qualname": "hash_parquet_metadata", "kind": "function", "doc": "

    Compute a deterministic hash from Parquet schema and statistics metadata.

    \n\n

    Args:\n path: Path to the Parquet file to fingerprint.

    \n\n

    Returns:\n Deterministic metadata hash for the Parquet file.

    \n", "signature": "(path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.features.hashing.safe": {"fullname": "ml.features.hashing.safe", "modulename": "ml.features.hashing.safe", "kind": "module", "doc": "

    Small helpers for safe string conversion during metadata hashing.

    \n"}, "ml.features.hashing.safe.safe": {"fullname": "ml.features.hashing.safe.safe", "modulename": "ml.features.hashing.safe", "qualname": "safe", "kind": "function", "doc": "

    Convert optional values to a deterministic string representation.

    \n\n

    Args:\n val: Value to normalize for hashing serialization.

    \n\n

    Returns:\n Deterministic string representation.

    \n", "signature": "(val) -> str:", "funcdef": "def"}, "ml.features.loading": {"fullname": "ml.features.loading", "modulename": "ml.features.loading", "kind": "module", "doc": "

    A package for feature loading.

    \n"}, "ml.features.loading.data_loader": {"fullname": "ml.features.loading.data_loader", "modulename": "ml.features.loading.data_loader", "kind": "module", "doc": "

    Data loading utilities for assembling merged feature datasets from lineage.

    \n"}, "ml.features.loading.data_loader.logger": {"fullname": "ml.features.loading.data_loader.logger", "modulename": "ml.features.loading.data_loader", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.data_loader (WARNING)>"}, "ml.features.loading.data_loader.required_fields": {"fullname": "ml.features.loading.data_loader.required_fields", "modulename": "ml.features.loading.data_loader", "qualname": "required_fields", "kind": "variable", "doc": "

    \n", "default_value": "['ref', 'name', 'version', 'format', 'path_suffix', 'merge_key', 'snapshot_id', 'path', 'loader_validation_hash', 'data_hash', 'row_count', 'column_count']"}, "ml.features.loading.data_loader.lineage_identity": {"fullname": "ml.features.loading.data_loader.lineage_identity", "modulename": "ml.features.loading.data_loader", "qualname": "lineage_identity", "kind": "function", "doc": "

    Return the identity tuple used for lineage consistency comparisons.

    \n\n

    Args:\n entry: Dataset lineage entry.

    \n\n

    Returns:\n tuple: Identity fields used to compare expected and actual lineage.

    \n", "signature": "(entry: ml.types.lineage.data_lineage.DataLineageEntry) -> tuple:", "funcdef": "def"}, "ml.features.loading.data_loader.load_and_validate_data": {"fullname": "ml.features.loading.data_loader.load_and_validate_data", "modulename": "ml.features.loading.data_loader", "qualname": "load_and_validate_data", "kind": "function", "doc": "

    Load, merge, hash-validate, and lineage-validate datasets from lineage entries\nin DAG-based topological order to respect merge dependencies.

    \n\n

    Args:\n input_lineage: Iterable of dataset lineage entries to load and merge.

    \n\n

    Returns:\n pd.DataFrame: Fully merged dataframe assembled from all lineage datasets.

    \n", "signature": "(\tinput_lineage: Iterable[ml.types.lineage.data_lineage.DataLineageEntry]) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.features.loading.features_and_target": {"fullname": "ml.features.loading.features_and_target", "modulename": "ml.features.loading.features_and_target", "kind": "module", "doc": "

    Orchestration utilities for loading, validating, and aligning features and targets.

    \n"}, "ml.features.loading.features_and_target.logger": {"fullname": "ml.features.loading.features_and_target.logger", "modulename": "ml.features.loading.features_and_target", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.features_and_target (WARNING)>"}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"fullname": "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD", "modulename": "ml.features.loading.features_and_target", "qualname": "COVERAGE_WARNING_THRESHOLD", "kind": "variable", "doc": "

    \n", "default_value": "0.9"}, "ml.features.loading.features_and_target.load_features_and_target": {"fullname": "ml.features.loading.features_and_target.load_features_and_target", "modulename": "ml.features.loading.features_and_target", "qualname": "load_features_and_target", "kind": "function", "doc": "

    Load feature sets and target, apply validations, and return (X, y, lineage).

    \n\n

    Args:\n model_cfg: Validated model configuration driving data loading and validation behavior.\n snapshot_selection: Optional pre-resolved snapshot selection descriptors.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\n drop_entity_key: Whether to drop entity_key from output features.\n strict: Whether strict hash/integrity checks should be enforced.

    \n\n

    Returns:\n tuple[pd.DataFrame, pd.Series, list[FeatureLineage], str]: Features, target series, feature lineage information, and entity key name.

    \n\n

    Raises:\n DataError: If feature/target integrity checks fail, required metadata is\n invalid, or segmentation/alignment leaves invalid data.

    \n\n

    Notes:\n When snapshot_selection is not supplied, snapshots are resolved from\n the feature-store config and then validated for schema, hashing, lineage,\n and row alignment before target extraction.

    \n\n

    Side Effects:\n Performs disk reads across feature snapshots/metadata and emits extensive\n validation logs.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tsnapshot_selection: list[dict] | None,\tsnapshot_binding_key: str | None = None,\tdrop_entity_key: bool = True,\tstrict: bool = True) -> tuple[pandas.core.frame.DataFrame, pandas.core.series.Series, list[ml.modeling.models.feature_lineage.FeatureLineage], str]:", "funcdef": "def"}, "ml.features.loading.get_target": {"fullname": "ml.features.loading.get_target", "modulename": "ml.features.loading.get_target", "kind": "module", "doc": "

    Utilities for resolving and building targets from registered strategies.

    \n"}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"fullname": "ml.features.loading.get_target.TARGET_STRATEGIES", "modulename": "ml.features.loading.get_target", "qualname": "TARGET_STRATEGIES", "kind": "variable", "doc": "

    \n", "annotation": ": dict[tuple[str, str], type[ml.targets.base.TargetStrategy]]", "default_value": "{('adr', 'v1'): <class 'ml.targets.adr.v1.AdrTargetV1'>, ('lead_time', 'v1'): <class 'ml.targets.lead_time.v1.LeadTimeTargetV1'>, ('no_show', 'v1'): <class 'ml.targets.no_show.v1.NoShowTargetV1'>, ('is_repeated_guest', 'v1'): <class 'ml.targets.repeated_guest.v1.RepeatedGuestTargetV1'>, ('room_upgrade', 'v1'): <class 'ml.targets.room_upgrade.v1.RoomUpgradeTargetV1'>, ('total_of_special_requests', 'v1'): <class 'ml.targets.special_requests.v1.SpecialRequestsTargetV1'>, ('is_canceled', 'v1'): <class 'ml.targets.cancellation.v1.CancellationTargetV1'>}"}, "ml.features.loading.get_target.logger": {"fullname": "ml.features.loading.get_target.logger", "modulename": "ml.features.loading.get_target", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.get_target (WARNING)>"}, "ml.features.loading.get_target.get_target_with_entity_key": {"fullname": "ml.features.loading.get_target.get_target_with_entity_key", "modulename": "ml.features.loading.get_target", "qualname": "get_target_with_entity_key", "kind": "function", "doc": "

    Build target dataframe with entity_key using a registry-resolved strategy.

    \n\n

    Args:\n data: Source dataframe containing raw columns required for target derivation.\n key: Target strategy registry key as (target_name, target_version).\n entity_key: The name of the entity key column to use for traceability.

    \n\n

    Returns:\n pd.DataFrame: Target dataframe including the entity_key column.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tkey: tuple[str, str],\tentity_key: str) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.features.loading.resolve_feature_snapshots": {"fullname": "ml.features.loading.resolve_feature_snapshots", "modulename": "ml.features.loading.resolve_feature_snapshots", "kind": "module", "doc": "

    Helpers for resolving feature snapshot directories for data loading.

    \n"}, "ml.features.loading.resolve_feature_snapshots.logger": {"fullname": "ml.features.loading.resolve_feature_snapshots.logger", "modulename": "ml.features.loading.resolve_feature_snapshots", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.resolve_feature_snapshots (WARNING)>"}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"fullname": "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots", "modulename": "ml.features.loading.resolve_feature_snapshots", "qualname": "resolve_feature_snapshots", "kind": "function", "doc": "

    Resolve snapshot metadata for each feature set using binding or latest snapshot.

    \n\n

    Args:\n feature_store_path: Root path of the feature store.\n feature_sets: Configured feature-set specifications.\n snapshot_binding: Optional explicit snapshot mapping, typically from training metadata.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\nReturns:\n list[dict]: Resolved snapshot descriptors containing feature spec, path, id, and metadata.

    \n", "signature": "(\tfeature_store_path: pathlib.Path,\tfeature_sets: list,\tsnapshot_binding: list[ml.modeling.models.feature_lineage.FeatureLineage] | None = None,\tsnapshot_binding_key: str | None = None) -> list[dict]:", "funcdef": "def"}, "ml.features.loading.schemas": {"fullname": "ml.features.loading.schemas", "modulename": "ml.features.loading.schemas", "kind": "module", "doc": "

    Schema loading and aggregation utilities for configured feature sets.

    \n"}, "ml.features.loading.schemas.logger": {"fullname": "ml.features.loading.schemas.logger", "modulename": "ml.features.loading.schemas", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.loading.schemas (WARNING)>"}, "ml.features.loading.schemas.load_feature_set_schemas": {"fullname": "ml.features.loading.schemas.load_feature_set_schemas", "modulename": "ml.features.loading.schemas", "qualname": "load_feature_set_schemas", "kind": "function", "doc": "

    Load input and derived schema CSVs for a single feature-set version path.

    \n\n

    Args:\n features_path: Feature-set version directory containing schema files.\n file_path: Path to the feature set snapshot for which to load schemas.

    \n\n

    Returns:\n tuple[pd.DataFrame, pd.DataFrame]: Input schema and derived schema dataframes.

    \n", "signature": "(\tfeatures_path: pathlib.Path,\tfile_path: pathlib.Path) -> tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.features.loading.schemas.aggregate_schema_dfs": {"fullname": "ml.features.loading.schemas.aggregate_schema_dfs", "modulename": "ml.features.loading.schemas", "qualname": "aggregate_schema_dfs", "kind": "function", "doc": "

    Aggregate schema rows while preserving first occurrence per feature name.

    \n\n

    Args:\n schemas: List of schema dataframes to combine.

    \n\n

    Returns:\n pd.DataFrame: Aggregated schema dataframe with deduplicated features.

    \n", "signature": "(\tschemas: list[pandas.core.frame.DataFrame]) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.features.loading.schemas.load_schemas": {"fullname": "ml.features.loading.schemas.load_schemas", "modulename": "ml.features.loading.schemas", "qualname": "load_schemas", "kind": "function", "doc": "

    Load and aggregate input/derived schemas for all configured feature sets.

    \n\n

    Args:\n model_cfg: Validated model configuration containing feature-store settings.\n feature_lineage: Feature lineage information for validation.

    \n\n

    Returns:\n tuple[pd.DataFrame, pd.DataFrame]: Aggregated input and derived schemas.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage]) -> tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.features.segmentation": {"fullname": "ml.features.segmentation", "modulename": "ml.features.segmentation", "kind": "module", "doc": "

    A package for feature segmentation.

    \n"}, "ml.features.segmentation.segment": {"fullname": "ml.features.segmentation.segment", "modulename": "ml.features.segmentation.segment", "kind": "module", "doc": "

    Segmentation utilities for filtering datasets by configured criteria.

    \n"}, "ml.features.segmentation.segment.logger": {"fullname": "ml.features.segmentation.segment.logger", "modulename": "ml.features.segmentation.segment", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.segmentation.segment (WARNING)>"}, "ml.features.segmentation.segment.apply_segmentation": {"fullname": "ml.features.segmentation.segment.apply_segmentation", "modulename": "ml.features.segmentation.segment", "qualname": "apply_segmentation", "kind": "function", "doc": "

    Apply configured segmentation filters and remove segmentation columns.

    \n\n

    Args:\n data: Input dataframe before segmentation filters.\n seg_cfg: Segmentation configuration containing enabled flag and filters.

    \n\n

    Returns:\n pd.DataFrame: Filtered dataframe with segmentation columns removed.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tseg_cfg: ml.config.schemas.model_specs.SegmentationConfig) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.features.splitting": {"fullname": "ml.features.splitting", "modulename": "ml.features.splitting", "kind": "module", "doc": "

    A package for splitting features.

    \n"}, "ml.features.splitting.splitting": {"fullname": "ml.features.splitting.splitting", "modulename": "ml.features.splitting.splitting", "kind": "module", "doc": "

    Utilities for train/validation/test splitting of feature datasets.

    \n"}, "ml.features.splitting.splitting.logger": {"fullname": "ml.features.splitting.splitting.logger", "modulename": "ml.features.splitting.splitting", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.splitting.splitting (WARNING)>"}, "ml.features.splitting.splitting.SPLIT": {"fullname": "ml.features.splitting.splitting.SPLIT", "modulename": "ml.features.splitting.splitting", "qualname": "SPLIT", "kind": "variable", "doc": "

    \n", "default_value": "tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame, pandas.core.series.Series, pandas.core.series.Series]"}, "ml.features.splitting.splitting.random_split": {"fullname": "ml.features.splitting.splitting.random_split", "modulename": "ml.features.splitting.splitting", "qualname": "random_split", "kind": "function", "doc": "

    Perform a random train-test split with optional stratification.

    \n\n

    Args:\n X: Feature dataframe.\n y: Target series.\n test_size: Fraction reserved for the holdout partition.\n random_state: Random seed used by sklearn split.\n stratify: Optional stratification series.

    \n\n

    Returns:\n SPLIT: Split tuple (X_train, X_test, y_train, y_test).

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\ttest_size: float,\trandom_state: int,\tstratify: pandas.core.series.Series | None) -> tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame, pandas.core.series.Series, pandas.core.series.Series]:", "funcdef": "def"}, "ml.features.splitting.splitting.split_data": {"fullname": "ml.features.splitting.splitting.split_data", "modulename": "ml.features.splitting.splitting", "qualname": "split_data", "kind": "function", "doc": "

    Dispatch to the configured split strategy and return split partitions.

    \n\n

    Args:\n X: Feature dataframe.\n y: Target series.\n split_cfg: Split strategy configuration.\n test_size: Holdout fraction for this split call.

    \n\n

    Returns:\n SPLIT: Split tuple (X_1, X_2, y_1, y_2) for the configured strategy.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\tsplit_cfg: ml.config.schemas.model_specs.SplitConfig,\ttest_size: float) -> tuple[pandas.core.frame.DataFrame, pandas.core.frame.DataFrame, pandas.core.series.Series, pandas.core.series.Series]:", "funcdef": "def"}, "ml.features.splitting.splitting.get_splits_tabular": {"fullname": "ml.features.splitting.splitting.get_splits_tabular", "modulename": "ml.features.splitting.splitting", "qualname": "get_splits_tabular", "kind": "function", "doc": "

    Produce tabular train/val/test splits and corresponding summary statistics.

    \n\n

    Args:\n X: Feature dataframe.\n y: Target series.\n split_cfg: Split configuration with test/validation fractions.\n task_cfg: Task configuration used for classification-specific metrics.

    \n\n

    Returns:\n tuple[TabularSplits, AllSplitsInfo]: Materialized split data and split metadata.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\t*,\tsplit_cfg: ml.config.schemas.model_specs.SplitConfig,\ttask_cfg: ml.config.schemas.model_specs.TaskConfig) -> tuple[ml.types.splits.TabularSplits, ml.types.splits.AllSplitsInfo]:", "funcdef": "def"}, "ml.features.splitting.splitting.get_splits": {"fullname": "ml.features.splitting.splitting.get_splits", "modulename": "ml.features.splitting.splitting", "qualname": "get_splits", "kind": "function", "doc": "

    Route split logic by data type and return splits with metadata.

    \n\n

    Args:\n X: Feature dataframe.\n y: Target series.\n split_cfg: Split configuration.\n data_type: Dataset modality selector.\n task_cfg: Task configuration for split metadata generation.

    \n\n

    Returns:\n tuple[TabularSplits, AllSplitsInfo]: Computed splits and associated split info.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\t*,\tsplit_cfg: ml.config.schemas.model_specs.SplitConfig,\tdata_type: Literal['tabular', 'time-series'],\ttask_cfg: ml.config.schemas.model_specs.TaskConfig) -> tuple[ml.types.splits.TabularSplits, ml.types.splits.AllSplitsInfo]:", "funcdef": "def"}, "ml.features.transforms": {"fullname": "ml.features.transforms", "modulename": "ml.features.transforms", "kind": "module", "doc": "

    A package for feature transformations.

    \n"}, "ml.features.transforms.transform_target": {"fullname": "ml.features.transforms.transform_target", "modulename": "ml.features.transforms.transform_target", "kind": "module", "doc": "

    Utilities for forward and inverse transformations of target variables.

    \n"}, "ml.features.transforms.transform_target.logger": {"fullname": "ml.features.transforms.transform_target.logger", "modulename": "ml.features.transforms.transform_target", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.transforms.transform_target (WARNING)>"}, "ml.features.transforms.transform_target.transform_target": {"fullname": "ml.features.transforms.transform_target.transform_target", "modulename": "ml.features.transforms.transform_target", "qualname": "transform_target", "kind": "function", "doc": "

    Apply configured target transformation for a named dataset split.

    \n\n

    Args:\n y: Target values for a single split.\n transform_config: Target transformation configuration.\n split_name: Human-readable split label for logging.

    \n\n

    Returns:\n pd.Series: Transformed target values indexed like input y.

    \n", "signature": "(\ty: pandas.core.series.Series,\t*,\ttransform_config: ml.config.schemas.model_specs.TargetTransformConfig,\tsplit_name: str) -> pandas.core.series.Series:", "funcdef": "def"}, "ml.features.transforms.transform_target.inverse_transform_target": {"fullname": "ml.features.transforms.transform_target.inverse_transform_target", "modulename": "ml.features.transforms.transform_target", "qualname": "inverse_transform_target", "kind": "function", "doc": "

    Apply inverse transformation to transformed target predictions or values.

    \n\n

    Args:\n y_transformed: Transformed target array.\n transform_config: Target transformation configuration.\n split_name: Human-readable split label for logging.

    \n\n

    Returns:\n NDArray[np.floating]: Values mapped back to the original target scale.

    \n", "signature": "(\ty_transformed: numpy.ndarray,\t*,\ttransform_config: ml.config.schemas.model_specs.TargetTransformConfig,\tsplit_name: str) -> numpy.ndarray[typing.Any, numpy.dtype[numpy.floating]]:", "funcdef": "def"}, "ml.features.validation": {"fullname": "ml.features.validation", "modulename": "ml.features.validation", "kind": "module", "doc": "

    A package for feature validation.

    \n"}, "ml.features.validation.normalize_dtype": {"fullname": "ml.features.validation.normalize_dtype", "modulename": "ml.features.validation.normalize_dtype", "kind": "module", "doc": "

    Utilities for normalizing pandas dtypes to canonical string labels.

    \n"}, "ml.features.validation.normalize_dtype.normalize_dtype": {"fullname": "ml.features.validation.normalize_dtype.normalize_dtype", "modulename": "ml.features.validation.normalize_dtype", "qualname": "normalize_dtype", "kind": "function", "doc": "

    Normalize pandas and extension dtypes to stable string categories.

    \n\n

    Args:\n dtype: Pandas or NumPy dtype object.

    \n\n

    Returns:\n Canonical dtype category string.

    \n", "signature": "(dtype) -> str:", "funcdef": "def"}, "ml.features.validation.validate_contract": {"fullname": "ml.features.validation.validate_contract", "modulename": "ml.features.validation.validate_contract", "kind": "module", "doc": "

    Validation helpers for model and feature-pipeline compatibility contracts.

    \n"}, "ml.features.validation.validate_contract.logger": {"fullname": "ml.features.validation.validate_contract.logger", "modulename": "ml.features.validation.validate_contract", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_contract (WARNING)>"}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"fullname": "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract", "modulename": "ml.features.validation.validate_contract", "qualname": "validate_model_feature_pipeline_contract", "kind": "function", "doc": "

    Validate task and categorical handling compatibility between model and pipeline.

    \n\n

    Args:\n model_cfg: Validated training or search model configuration.\n pipeline_cfg: Pipeline configuration object.\n cat_features: Optional categorical feature list required by some algorithms.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tpipeline_cfg: ml.pipelines.models.PipelineConfig,\tcat_features: list | None = None) -> None:", "funcdef": "def"}, "ml.features.validation.validate_feature_set": {"fullname": "ml.features.validation.validate_feature_set", "modulename": "ml.features.validation.validate_feature_set", "kind": "module", "doc": "

    Validation utilities for feature-set schema and integrity hash checks.

    \n"}, "ml.features.validation.validate_feature_set.logger": {"fullname": "ml.features.validation.validate_feature_set.logger", "modulename": "ml.features.validation.validate_feature_set", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_feature_set (WARNING)>"}, "ml.features.validation.validate_feature_set.validate_feature_set": {"fullname": "ml.features.validation.validate_feature_set.validate_feature_set", "modulename": "ml.features.validation.validate_feature_set", "qualname": "validate_feature_set", "kind": "function", "doc": "

    Validate required columns and metadata hash consistency for a feature set.

    \n\n

    Args:\n feature_set: Feature dataframe to validate.\n metadata: Snapshot metadata containing expected hashes.\n file_path: Feature file path used for file-hash validation.\n strict: Whether to enforce strict in-memory and file hash checks.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tfeature_set: pandas.core.frame.DataFrame,\t*,\tmetadata: dict,\tfile_path: pathlib.Path,\tstrict: bool = True) -> None:", "funcdef": "def"}, "ml.features.validation.validate_feature_target_entity_key": {"fullname": "ml.features.validation.validate_feature_target_entity_key", "modulename": "ml.features.validation.validate_feature_target_entity_key", "kind": "module", "doc": "

    Validation helpers ensuring row-id alignment between features and target.

    \n"}, "ml.features.validation.validate_feature_target_entity_key.logger": {"fullname": "ml.features.validation.validate_feature_target_entity_key.logger", "modulename": "ml.features.validation.validate_feature_target_entity_key", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_feature_target_entity_key (WARNING)>"}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"fullname": "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key", "modulename": "ml.features.validation.validate_feature_target_entity_key", "qualname": "validate_feature_target_entity_key", "kind": "function", "doc": "

    Validate that all feature entity_key values are present in target data.

    \n\n

    Args:\n X: Feature dataframe containing entity_key values.\n y_with_entity_key: Target dataframe containing entity_key values.\n entity_key: The name of the entity key column.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\ty_with_entity_key: pandas.core.frame.DataFrame,\tentity_key: str) -> None:", "funcdef": "def"}, "ml.features.validation.validate_operators": {"fullname": "ml.features.validation.validate_operators", "modulename": "ml.features.validation.validate_operators", "kind": "module", "doc": "

    \n"}, "ml.features.validation.validate_operators.logger": {"fullname": "ml.features.validation.validate_operators.logger", "modulename": "ml.features.validation.validate_operators", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_operators (WARNING)>"}, "ml.features.validation.validate_operators.validate_operators": {"fullname": "ml.features.validation.validate_operators.validate_operators", "modulename": "ml.features.validation.validate_operators", "qualname": "validate_operators", "kind": "function", "doc": "

    Validate operator names and verify computed hash matches expected hash.

    \n\n

    Args:\n operators: Operator names to validate.\n operator_hash: Expected operator hash value.\n file_path: Optional file path for logging context in case of validation failure.

    \n\n

    Returns:\n None: Raises on validation/hash mismatch failure.

    \n", "signature": "(\toperators: list,\toperator_hash: str | None,\tfile_path: str | None = None) -> None:", "funcdef": "def"}, "ml.features.validation.validate_set": {"fullname": "ml.features.validation.validate_set", "modulename": "ml.features.validation.validate_set", "kind": "module", "doc": "

    Validation helpers for set-level consistency across feature snapshots.

    \n"}, "ml.features.validation.validate_set.logger": {"fullname": "ml.features.validation.validate_set.logger", "modulename": "ml.features.validation.validate_set", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_set (WARNING)>"}, "ml.features.validation.validate_set.validate_set": {"fullname": "ml.features.validation.validate_set.validate_set", "modulename": "ml.features.validation.validate_set", "qualname": "validate_set", "kind": "function", "doc": "

    Ensure all feature sets share the same expected hash/category value.

    \n\n

    Args:\n hash_type: Hash/category label being validated.\n hashes: Set of observed hash values across feature sets.\n feature_sets: Feature-set descriptors used for error context.

    \n\n

    Returns:\n None.

    \n", "signature": "(hash_type: str, hashes: set, feature_sets: list) -> None:", "funcdef": "def"}, "ml.features.validation.validate_snapshot_ids": {"fullname": "ml.features.validation.validate_snapshot_ids", "modulename": "ml.features.validation.validate_snapshot_ids", "kind": "module", "doc": "

    Validation helpers for expected versus actual feature snapshot IDs.

    \n"}, "ml.features.validation.validate_snapshot_ids.logger": {"fullname": "ml.features.validation.validate_snapshot_ids.logger", "modulename": "ml.features.validation.validate_snapshot_ids", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_snapshot_ids (WARNING)>"}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"fullname": "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids", "modulename": "ml.features.validation.validate_snapshot_ids", "qualname": "validate_snapshot_ids", "kind": "function", "doc": "

    Validate that loaded feature lineage snapshot IDs match requested selection.

    \n\n

    Args:\n feature_lineage: Loaded feature lineage records.\n snapshot_selection: Snapshot selections expected from training metadata.

    \n\n

    Returns:\n None.

    \n", "signature": "(feature_lineage, snapshot_selection):", "funcdef": "def"}, "ml.features.validation.validate_target": {"fullname": "ml.features.validation.validate_target", "modulename": "ml.features.validation.validate_target", "kind": "module", "doc": "

    Validation utilities for classification and regression target constraints.

    \n"}, "ml.features.validation.validate_target.logger": {"fullname": "ml.features.validation.validate_target.logger", "modulename": "ml.features.validation.validate_target", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.features.validation.validate_target (WARNING)>"}, "ml.features.validation.validate_target.validate_min_class_count": {"fullname": "ml.features.validation.validate_target.validate_min_class_count", "modulename": "ml.features.validation.validate_target", "qualname": "validate_min_class_count", "kind": "function", "doc": "

    Validate minimum sample count requirements across target classes.

    \n\n

    Args:\n y: Target class labels.\n min_class_count: Minimum count required per class.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(y: pandas.core.series.Series, min_class_count: int):", "funcdef": "def"}, "ml.features.validation.validate_target.validate_target": {"fullname": "ml.features.validation.validate_target.validate_target", "modulename": "ml.features.validation.validate_target", "qualname": "validate_target", "kind": "function", "doc": "

    Validate target nullability, dtype, and task-specific target constraints.

    \n\n

    Args:\n y: Target series.\n model_cfg: Model configuration with target constraints.\n data: Full data frame used for additional class-count checks.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\t*,\ty: pandas.core.series.Series,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig | ml.config.schemas.model_cfg.SearchModelConfig,\tdata: pandas.core.frame.DataFrame) -> None:", "funcdef": "def"}, "ml.io": {"fullname": "ml.io", "modulename": "ml.io", "kind": "module", "doc": "

    A package for input/output code.

    \n"}, "ml.io.formatting": {"fullname": "ml.io.formatting", "modulename": "ml.io.formatting", "kind": "module", "doc": "

    A package for i/o formatting.

    \n"}, "ml.io.formatting.iso_no_colon": {"fullname": "ml.io.formatting.iso_no_colon", "modulename": "ml.io.formatting.iso_no_colon", "kind": "module", "doc": "

    Datetime formatting helpers for filesystem-safe timestamp strings.

    \n"}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"fullname": "ml.io.formatting.iso_no_colon.iso_no_colon", "modulename": "ml.io.formatting.iso_no_colon", "qualname": "iso_no_colon", "kind": "function", "doc": "

    Return ISO timestamp without colon characters in the time component.

    \n\n

    Args:\n dt: Datetime-like object supporting isoformat.

    \n\n

    Returns:\n Filesystem-safe ISO timestamp string.

    \n", "signature": "(dt):", "funcdef": "def"}, "ml.io.formatting.str_to_bool": {"fullname": "ml.io.formatting.str_to_bool", "modulename": "ml.io.formatting.str_to_bool", "kind": "module", "doc": "

    Parsing helpers for robust command-line boolean argument handling.

    \n"}, "ml.io.formatting.str_to_bool.logger": {"fullname": "ml.io.formatting.str_to_bool.logger", "modulename": "ml.io.formatting.str_to_bool", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.io.formatting.str_to_bool (WARNING)>"}, "ml.io.formatting.str_to_bool.str_to_bool": {"fullname": "ml.io.formatting.str_to_bool.str_to_bool", "modulename": "ml.io.formatting.str_to_bool", "qualname": "str_to_bool", "kind": "function", "doc": "

    Convert common truthy/falsy string tokens to boolean values.

    \n\n

    Args:\n v: Boolean or string token representing a boolean value.

    \n\n

    Returns:\n Parsed boolean value.

    \n", "signature": "(v):", "funcdef": "def"}, "ml.io.persistence": {"fullname": "ml.io.persistence", "modulename": "ml.io.persistence", "kind": "module", "doc": "

    A package for persisting general information.

    \n"}, "ml.io.persistence.save_metadata": {"fullname": "ml.io.persistence.save_metadata", "modulename": "ml.io.persistence.save_metadata", "kind": "module", "doc": "

    Persistence utilities for writing experiment metadata artifacts.

    \n"}, "ml.io.persistence.save_metadata.logger": {"fullname": "ml.io.persistence.save_metadata.logger", "modulename": "ml.io.persistence.save_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.io.persistence.save_metadata (WARNING)>"}, "ml.io.persistence.save_metadata.save_metadata": {"fullname": "ml.io.persistence.save_metadata.save_metadata", "modulename": "ml.io.persistence.save_metadata", "qualname": "save_metadata", "kind": "function", "doc": "

    Persist metadata JSON to target directory with overwrite safeguards.

    \n\n

    Args:\n metadata: Metadata dictionary to persist.\n target_dir: Target directory for metadata.json.\n overwrite_existing: Whether existing metadata file may be overwritten.

    \n\n

    Returns:\n None.

    \n\n

    Raises:\n PersistenceError: If overwrite policy is violated or file serialization\n fails.

    \n\n

    Side Effects:\n Creates target directories as needed and writes/overwrites\n metadata.json on disk.

    \n\n

    Examples:

    \n\n
    \n
    \n
    \n

    save_metadata(metadata, target_dir=Path(\"/path/to/metadata\"), overwrite_existing=False)

    \n
    \n
    \n
    \n", "signature": "(\tmetadata: dict,\t*,\ttarget_dir: pathlib.Path,\toverwrite_existing: bool = False) -> None:", "funcdef": "def"}, "ml.io.validation": {"fullname": "ml.io.validation", "modulename": "ml.io.validation", "kind": "module", "doc": "

    A package for i/o validation.

    \n"}, "ml.io.validation.validate_mapping": {"fullname": "ml.io.validation.validate_mapping", "modulename": "ml.io.validation.validate_mapping", "kind": "module", "doc": "

    Dictionary validation helpers for required-field enforcement.

    \n"}, "ml.io.validation.validate_mapping.logger": {"fullname": "ml.io.validation.validate_mapping.logger", "modulename": "ml.io.validation.validate_mapping", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.io.validation.validate_mapping (WARNING)>"}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"fullname": "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict", "modulename": "ml.io.validation.validate_mapping", "qualname": "ensure_required_fields_present_in_dict", "kind": "function", "doc": "

    Raise an error when required keys are missing from an input dictionary.

    \n", "signature": "(*, input_dict: dict, required_fields: list[str]) -> None:", "funcdef": "def"}, "ml.logging_config": {"fullname": "ml.logging_config", "modulename": "ml.logging_config", "kind": "module", "doc": "

    Shared logging configuration helpers for scripts and pipeline entrypoints.

    \n"}, "ml.logging_config.LOG_FORMAT": {"fullname": "ml.logging_config.LOG_FORMAT", "modulename": "ml.logging_config", "qualname": "LOG_FORMAT", "kind": "variable", "doc": "

    \n", "default_value": "'%(asctime)s - %(name)s - %(levelname)s - %(message)s'"}, "ml.logging_config.setup_logging": {"fullname": "ml.logging_config.setup_logging", "modulename": "ml.logging_config", "qualname": "setup_logging", "kind": "function", "doc": "

    Configure root logger to write to path at the given level.

    \n\n

    Args:\n path: Destination log file path.\n level: Logging level.

    \n\n

    Returns:\n None: Configures global logging side effects.

    \n", "signature": "(path: pathlib.Path, level: int = 20) -> None:", "funcdef": "def"}, "ml.logging_config.add_file_handler": {"fullname": "ml.logging_config.add_file_handler", "modulename": "ml.logging_config", "qualname": "add_file_handler", "kind": "function", "doc": "

    Attach an additional file handler to the root logger.

    \n\n

    Useful when the final log destination is only known after the\ninitial setup_logging call (e.g. after an experiment-id or\nsnapshot-id has been generated).

    \n\n

    Args:\n path: Destination log file.\n level: Optional handler log level.

    \n\n

    Returns:\n logging.FileHandler: The handler that was added.

    \n", "signature": "(path: pathlib.Path, level: int = 20) -> logging.FileHandler:", "funcdef": "def"}, "ml.logging_config.bootstrap_logging": {"fullname": "ml.logging_config.bootstrap_logging", "modulename": "ml.logging_config", "qualname": "bootstrap_logging", "kind": "function", "doc": "

    Initialize console/root logging without a file destination.

    \n\n

    This is useful for early-stage CLI startup before run-specific output\ndirectories are known.

    \n\n

    Args:\n level: Logging level for the root logger.

    \n\n

    Returns:\n None: Configures global logging side effects.

    \n", "signature": "(level=20) -> None:", "funcdef": "def"}, "ml.metadata": {"fullname": "ml.metadata", "modulename": "ml.metadata", "kind": "module", "doc": "

    A package for metadata-related code.

    \n"}, "ml.metadata.schemas": {"fullname": "ml.metadata.schemas", "modulename": "ml.metadata.schemas", "kind": "module", "doc": "

    A package for metadata schemas.

    \n"}, "ml.metadata.schemas.data": {"fullname": "ml.metadata.schemas.data", "modulename": "ml.metadata.schemas.data", "kind": "module", "doc": "

    A package for data metadata schemas.

    \n"}, "ml.metadata.schemas.data.interim": {"fullname": "ml.metadata.schemas.data.interim", "modulename": "ml.metadata.schemas.data.interim", "kind": "module", "doc": "

    Schemas for interim dataset metadata.

    \n"}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"fullname": "ml.metadata.schemas.data.interim.InterimDatasetMetadata", "modulename": "ml.metadata.schemas.data.interim", "qualname": "InterimDatasetMetadata", "kind": "class", "doc": "

    Schema for the metadata of an interim dataset.

    \n", "bases": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata"}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"fullname": "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id", "modulename": "ml.metadata.schemas.data.interim", "qualname": "InterimDatasetMetadata.interim_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.processed": {"fullname": "ml.metadata.schemas.data.processed", "modulename": "ml.metadata.schemas.data.processed", "kind": "module", "doc": "

    Schemas for processed dataset metadata.

    \n"}, "ml.metadata.schemas.data.processed.RowIdInfo": {"fullname": "ml.metadata.schemas.data.processed.RowIdInfo", "modulename": "ml.metadata.schemas.data.processed", "qualname": "RowIdInfo", "kind": "class", "doc": "

    Schema for information about row identifiers in the processed dataset.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"fullname": "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id", "modulename": "ml.metadata.schemas.data.processed", "qualname": "RowIdInfo.cols_for_row_id", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"fullname": "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint", "modulename": "ml.metadata.schemas.data.processed", "qualname": "RowIdInfo.fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"fullname": "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata", "modulename": "ml.metadata.schemas.data.processed", "qualname": "ProcessedDatasetMetadata", "kind": "class", "doc": "

    Schema for the metadata of a processed dataset.

    \n", "bases": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata"}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"fullname": "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id", "modulename": "ml.metadata.schemas.data.processed", "qualname": "ProcessedDatasetMetadata.processed_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"fullname": "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info", "modulename": "ml.metadata.schemas.data.processed", "qualname": "ProcessedDatasetMetadata.row_id_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.processed.RowIdInfo | None", "default_value": "None"}, "ml.metadata.schemas.data.raw": {"fullname": "ml.metadata.schemas.data.raw", "modulename": "ml.metadata.schemas.data.raw", "kind": "module", "doc": "

    Schemas for raw snapshot metadata.

    \n"}, "ml.metadata.schemas.data.raw.RawData": {"fullname": "ml.metadata.schemas.data.raw.RawData", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawData", "kind": "class", "doc": "

    Schema for raw data information in the metadata.

    \n", "bases": "ml.metadata.schemas.data.shared.DataBasic"}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"fullname": "ml.metadata.schemas.data.raw.RawData.path_suffix", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawData.path_suffix", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.raw.RawData.hash": {"fullname": "ml.metadata.schemas.data.raw.RawData.hash", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawData.hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"fullname": "ml.metadata.schemas.data.raw.RawSnapshotMetadata", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawSnapshotMetadata", "kind": "class", "doc": "

    Schema for the metadata of a raw data snapshot.

    \n", "bases": "ml.metadata.schemas.data.shared.MetadataBase"}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"fullname": "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawSnapshotMetadata.data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.raw.RawData", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"fullname": "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawSnapshotMetadata.memory_usage_mb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"fullname": "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id", "modulename": "ml.metadata.schemas.data.raw", "qualname": "RawSnapshotMetadata.raw_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared": {"fullname": "ml.metadata.schemas.data.shared", "modulename": "ml.metadata.schemas.data.shared", "kind": "module", "doc": "

    Schemas for shared metadata components used across different dataset types.

    \n"}, "ml.metadata.schemas.data.shared.DataBasic": {"fullname": "ml.metadata.schemas.data.shared.DataBasic", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataBasic", "kind": "class", "doc": "

    Schema for basic data information.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.DataBasic.name": {"fullname": "ml.metadata.schemas.data.shared.DataBasic.name", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataBasic.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataBasic.version": {"fullname": "ml.metadata.schemas.data.shared.DataBasic.version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataBasic.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataBasic.format": {"fullname": "ml.metadata.schemas.data.shared.DataBasic.format", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataBasic.format", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SourceData": {"fullname": "ml.metadata.schemas.data.shared.SourceData", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SourceData", "kind": "class", "doc": "

    Schema for source data information in the metadata.

    \n", "bases": "DataBasic"}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"fullname": "ml.metadata.schemas.data.shared.SourceData.snapshot_id", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SourceData.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SourceData.path": {"fullname": "ml.metadata.schemas.data.shared.SourceData.path", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SourceData.path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.CurrentData": {"fullname": "ml.metadata.schemas.data.shared.CurrentData", "modulename": "ml.metadata.schemas.data.shared", "qualname": "CurrentData", "kind": "class", "doc": "

    Schema for current data information in the metadata.

    \n", "bases": "ml.data.config.schemas.shared.DataInfo"}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"fullname": "ml.metadata.schemas.data.shared.CurrentData.hash", "modulename": "ml.metadata.schemas.data.shared", "qualname": "CurrentData.hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataMemory": {"fullname": "ml.metadata.schemas.data.shared.DataMemory", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory", "kind": "class", "doc": "

    Schema for memory usage information in the metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"fullname": "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory.old_memory_mb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"fullname": "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory.new_memory_mb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"fullname": "ml.metadata.schemas.data.shared.DataMemory.change_mb", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory.change_mb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"fullname": "ml.metadata.schemas.data.shared.DataMemory.change_percentage", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataMemory.change_percentage", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.Columns": {"fullname": "ml.metadata.schemas.data.shared.Columns", "modulename": "ml.metadata.schemas.data.shared", "qualname": "Columns", "kind": "class", "doc": "

    Schema for column information in the metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.Columns.count": {"fullname": "ml.metadata.schemas.data.shared.Columns.count", "modulename": "ml.metadata.schemas.data.shared", "qualname": "Columns.count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.Columns.names": {"fullname": "ml.metadata.schemas.data.shared.Columns.names", "modulename": "ml.metadata.schemas.data.shared", "qualname": "Columns.names", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"fullname": "ml.metadata.schemas.data.shared.Columns.dtypes", "modulename": "ml.metadata.schemas.data.shared", "qualname": "Columns.dtypes", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, str]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo", "kind": "class", "doc": "

    Schema for runtime information of the data processing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo.pandas_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo.numpy_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo.yaml_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"fullname": "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version", "modulename": "ml.metadata.schemas.data.shared", "qualname": "DataRuntimeInfo.python_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase", "kind": "class", "doc": "

    Base schema for dataset metadata.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.rows", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.rows", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.columns", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.columns", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.Columns", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.created_at", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.created_by", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"fullname": "ml.metadata.schemas.data.shared.MetadataBase.owner", "modulename": "ml.metadata.schemas.data.shared", "qualname": "MetadataBase.owner", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata", "kind": "class", "doc": "

    Base schema for metadata of both interim and processed datasets.

    \n", "bases": "MetadataBase"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.source_data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.SourceData", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.data", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.CurrentData", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.memory", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.DataMemory", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.duration", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"fullname": "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info", "modulename": "ml.metadata.schemas.data.shared", "qualname": "SharedInterimProcessedMetadata.runtime_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.data.shared.DataRuntimeInfo", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features": {"fullname": "ml.metadata.schemas.features", "modulename": "ml.metadata.schemas.features", "kind": "module", "doc": "

    A package for feature freezing metadata schemas.

    \n"}, "ml.metadata.schemas.features.feature_freezing": {"fullname": "ml.metadata.schemas.features.feature_freezing", "modulename": "ml.metadata.schemas.features.feature_freezing", "kind": "module", "doc": "

    Schema for metadata of a frozen feature snapshot.

    \n"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata", "kind": "class", "doc": "

    Schema for metadata of a frozen feature snapshot.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.owner", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.feature_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.snapshot_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.schema_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.entity_key", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.data_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.types.lineage.data_lineage.DataLineageEntry]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.in_memory_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.file_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.operator_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.feature_schema_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.runtime", "kind": "variable", "doc": "

    \n", "annotation": ": ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.row_count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.column_count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"fullname": "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds", "modulename": "ml.metadata.schemas.features.feature_freezing", "qualname": "FreezeMetadata.duration_seconds", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion": {"fullname": "ml.metadata.schemas.post_promotion", "modulename": "ml.metadata.schemas.post_promotion", "kind": "module", "doc": "

    A package for post-promotion metadata schemas.

    \n"}, "ml.metadata.schemas.post_promotion.infer": {"fullname": "ml.metadata.schemas.post_promotion.infer", "modulename": "ml.metadata.schemas.post_promotion.infer", "kind": "module", "doc": "

    Models for inference metadata.

    \n"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.problem_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.segment", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.model_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.model_stage", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.timestamp", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.columns", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.snapshot_bindings_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.artifact_type", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['pipeline', 'model']", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.artifact_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"fullname": "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds", "modulename": "ml.metadata.schemas.post_promotion.infer", "qualname": "InferenceMetadata.inference_latency_seconds", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion": {"fullname": "ml.metadata.schemas.promotion", "modulename": "ml.metadata.schemas.promotion", "kind": "module", "doc": "

    A package for promotion metadata schemas.

    \n"}, "ml.metadata.schemas.promotion.promote": {"fullname": "ml.metadata.schemas.promotion.promote", "modulename": "ml.metadata.schemas.promotion.promote", "kind": "module", "doc": "

    Models for promotion metadata.

    \n"}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "RunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentRunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentRunIdentity", "kind": "class", "doc": "

    Base model for current run identity, extended by staging and production identities.

    \n", "bases": "RunIdentity"}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentRunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['staging', 'production']", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentProductionRunIdentity", "kind": "class", "doc": "

    Model for current production run identity, extending base run identity.

    \n", "bases": "CurrentRunIdentity"}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentProductionRunIdentity.promotion_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentStagingRunIdentity", "kind": "class", "doc": "

    Model for current staging run identity, extending base run identity.

    \n", "bases": "CurrentRunIdentity"}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"fullname": "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "CurrentStagingRunIdentity.staging_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity", "kind": "class", "doc": "

    Model for previous production run identity, extending base run identity.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"fullname": "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PreviousProductionRunIdentity.promotion_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionDecision", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionDecision", "kind": "class", "doc": "

    Base model for promotion decision results.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionDecision.promoted", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionDecision.reason", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionDecision.reason", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionDecision", "kind": "class", "doc": "

    Model for production promotion decision, extending base promotion decision.

    \n", "bases": "PromotionDecision"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionDecision.beats_previous", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.Context": {"fullname": "ml.metadata.schemas.promotion.promote.Context", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context", "kind": "class", "doc": "

    Model for promotion execution context.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"fullname": "ml.metadata.schemas.promotion.promote.Context.git_commit", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"fullname": "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context.promotion_conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"fullname": "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context.training_conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"fullname": "ml.metadata.schemas.promotion.promote.Context.timestamp", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "Context.timestamp", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata", "kind": "class", "doc": "

    Base model for promotion metadata, containing all relevant information for decision making and metadata preparation.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.previous_production_run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.metrics.EvaluationMetricsHelper", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.previous_production_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.metrics.EvaluationMetricsHelper | None", "default_value": "None"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.promotion_thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.promotion_thresholds.PromotionThresholds", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.promotion_thresholds_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"fullname": "ml.metadata.schemas.promotion.promote.PromotionMetadata.context", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "PromotionMetadata.context", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.Context", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionMetadata", "kind": "class", "doc": "

    Model for production promotion metadata, extending base promotion metadata.

    \n", "bases": "PromotionMetadata"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"fullname": "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "ProductionPromotionMetadata.decision", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.ProductionPromotionDecision", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"fullname": "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "StagingPromotionMetadata", "kind": "class", "doc": "

    Model for staging promotion metadata, extending base promotion metadata.

    \n", "bases": "PromotionMetadata"}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"fullname": "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "StagingPromotionMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"fullname": "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision", "modulename": "ml.metadata.schemas.promotion.promote", "qualname": "StagingPromotionMetadata.decision", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.promotion.promote.PromotionDecision", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners": {"fullname": "ml.metadata.schemas.runners", "modulename": "ml.metadata.schemas.runners", "kind": "module", "doc": "

    A package for train/eval/explain metadata schemas.

    \n"}, "ml.metadata.schemas.runners.evaluation": {"fullname": "ml.metadata.schemas.runners.evaluation", "modulename": "ml.metadata.schemas.runners.evaluation", "kind": "module", "doc": "

    Metadata models for evaluation runs.

    \n"}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationRunIdentity", "kind": "class", "doc": "

    Identity of a run, including stage, identifiers, and status.

    \n", "bases": "ml.modeling.models.run_identity.RunIdentity"}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationRunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['evaluation']", "default_value": "'evaluation'"}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationRunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationArtifacts", "kind": "class", "doc": "

    Artifacts produced during evaluation, including paths and hashes.

    \n", "bases": "ml.modeling.models.artifacts.Artifacts, ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes"}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationArtifacts.metrics_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationArtifacts.metrics_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata", "kind": "class", "doc": "

    Metadata for evaluation results.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.experiment_lineage.ExperimentLineage", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata.config_fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.config_fingerprint.ConfigFingerprint", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"fullname": "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts", "modulename": "ml.metadata.schemas.runners.evaluation", "qualname": "EvaluationMetadata.artifacts", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.evaluation.EvaluationArtifacts", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability": {"fullname": "ml.metadata.schemas.runners.explainability", "modulename": "ml.metadata.schemas.runners.explainability", "kind": "module", "doc": "

    \n"}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityRunIdentity", "kind": "class", "doc": "

    Model representing the identity of an explainability run.

    \n", "bases": "ml.modeling.models.run_identity.RunIdentity"}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityRunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'explainability'"}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityRunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts", "kind": "class", "doc": "

    Model representing the artifacts produced by the explainability runner.

    \n", "bases": "ml.modeling.models.artifacts.Artifacts"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts.top_k_feature_importances_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts.top_k_feature_importances_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts.top_k_shap_importances_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityArtifacts.top_k_shap_importances_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata", "kind": "class", "doc": "

    Metadata for explainability runs.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.experiment_lineage.ExperimentLineage", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.config_fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.config_fingerprint.ConfigFingerprint", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.artifacts", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"fullname": "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k", "modulename": "ml.metadata.schemas.runners.explainability", "qualname": "ExplainabilityMetadata.top_k", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.training": {"fullname": "ml.metadata.schemas.runners.training", "modulename": "ml.metadata.schemas.runners.training", "kind": "module", "doc": "

    \n"}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"fullname": "ml.metadata.schemas.runners.training.TrainingRunIdentity", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingRunIdentity", "kind": "class", "doc": "

    Model representing the identity of a run.

    \n", "bases": "ml.modeling.models.run_identity.RunIdentity"}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"fullname": "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingRunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['training']", "default_value": "'training'"}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata", "kind": "class", "doc": "

    Metadata for training a machine learning model.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.training.TrainingRunIdentity", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata.lineage", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.experiment_lineage.ExperimentLineage", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata.config_fingerprint", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.config_fingerprint.ConfigFingerprint", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"fullname": "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts", "modulename": "ml.metadata.schemas.runners.training", "qualname": "TrainingMetadata.artifacts", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.artifacts.Artifacts", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.search": {"fullname": "ml.metadata.schemas.search", "modulename": "ml.metadata.schemas.search", "kind": "module", "doc": "

    A package for search metadata schemas.

    \n"}, "ml.metadata.schemas.search.search": {"fullname": "ml.metadata.schemas.search.search", "modulename": "ml.metadata.schemas.search.search", "kind": "module", "doc": "

    \n"}, "ml.metadata.schemas.search.search.SearchRecord": {"fullname": "ml.metadata.schemas.search.search.SearchRecord", "modulename": "ml.metadata.schemas.search.search", "qualname": "SearchRecord", "kind": "class", "doc": "

    Structured data model representing a complete search record, including metadata, configuration, and results.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"fullname": "ml.metadata.schemas.search.search.SearchRecord.metadata", "modulename": "ml.metadata.schemas.search.search", "qualname": "SearchRecord.metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.search.models.experiment_metadata.ExperimentMetadata", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.search.search.SearchRecord.config": {"fullname": "ml.metadata.schemas.search.search.SearchRecord.config", "modulename": "ml.metadata.schemas.search.search", "qualname": "SearchRecord.config", "kind": "variable", "doc": "

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"fullname": "ml.metadata.schemas.search.search.SearchRecord.search_results", "modulename": "ml.metadata.schemas.search.search", "qualname": "SearchRecord.search_results", "kind": "variable", "doc": "

    \n", "annotation": ": ml.search.models.search_results.SearchResults", "default_value": "PydanticUndefined"}, "ml.metadata.validation": {"fullname": "ml.metadata.validation", "modulename": "ml.metadata.validation", "kind": "module", "doc": "

    A package for metadata schema validation.

    \n"}, "ml.metadata.validation.data": {"fullname": "ml.metadata.validation.data", "modulename": "ml.metadata.validation.data", "kind": "module", "doc": "

    A package for data metadata schema validation.

    \n"}, "ml.metadata.validation.data.interim": {"fullname": "ml.metadata.validation.data.interim", "modulename": "ml.metadata.validation.data.interim", "kind": "module", "doc": "

    Module for validating interim dataset metadata.

    \n"}, "ml.metadata.validation.data.interim.logger": {"fullname": "ml.metadata.validation.data.interim.logger", "modulename": "ml.metadata.validation.data.interim", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.data.interim (WARNING)>"}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"fullname": "ml.metadata.validation.data.interim.validate_interim_dataset_metadata", "modulename": "ml.metadata.validation.data.interim", "qualname": "validate_interim_dataset_metadata", "kind": "function", "doc": "

    Validate the interim dataset metadata against the InterimDatasetMetadata schema.

    \n\n

    Args:\n metadata (dict): The metadata dictionary to validate.

    \n\n

    Returns:\n InterimDatasetMetadata: The validated metadata object.

    \n", "signature": "(\tmetadata: dict) -> ml.metadata.schemas.data.interim.InterimDatasetMetadata:", "funcdef": "def"}, "ml.metadata.validation.data.processed": {"fullname": "ml.metadata.validation.data.processed", "modulename": "ml.metadata.validation.data.processed", "kind": "module", "doc": "

    Module for validating processed dataset metadata.

    \n"}, "ml.metadata.validation.data.processed.logger": {"fullname": "ml.metadata.validation.data.processed.logger", "modulename": "ml.metadata.validation.data.processed", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.data.processed (WARNING)>"}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"fullname": "ml.metadata.validation.data.processed.validate_processed_dataset_metadata", "modulename": "ml.metadata.validation.data.processed", "qualname": "validate_processed_dataset_metadata", "kind": "function", "doc": "

    Validate the processed dataset metadata against the ProcessedDatasetMetadata schema.

    \n\n

    Args:\n metadata (dict): The metadata dictionary to validate.

    \n\n

    Returns:\n ProcessedDatasetMetadata: The validated metadata object.

    \n", "signature": "(\tmetadata: dict) -> ml.metadata.schemas.data.processed.ProcessedDatasetMetadata:", "funcdef": "def"}, "ml.metadata.validation.data.raw": {"fullname": "ml.metadata.validation.data.raw", "modulename": "ml.metadata.validation.data.raw", "kind": "module", "doc": "

    Module for validating raw snapshot metadata against the RawSnapshotMetadata schema.

    \n"}, "ml.metadata.validation.data.raw.logger": {"fullname": "ml.metadata.validation.data.raw.logger", "modulename": "ml.metadata.validation.data.raw", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.data.raw (WARNING)>"}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"fullname": "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata", "modulename": "ml.metadata.validation.data.raw", "qualname": "validate_raw_snapshot_metadata", "kind": "function", "doc": "

    Validate the raw snapshot metadata against the RawSnapshotMetadata schema.

    \n\n

    Args:\n metadata (dict): The metadata dictionary to validate.

    \n\n

    Returns:\n RawSnapshotMetadata: The validated metadata object.

    \n", "signature": "(metadata: dict) -> ml.metadata.schemas.data.raw.RawSnapshotMetadata:", "funcdef": "def"}, "ml.metadata.validation.features": {"fullname": "ml.metadata.validation.features", "modulename": "ml.metadata.validation.features", "kind": "module", "doc": "

    A package for feature freezing metadata validation.

    \n"}, "ml.metadata.validation.features.feature_freezing": {"fullname": "ml.metadata.validation.features.feature_freezing", "modulename": "ml.metadata.validation.features.feature_freezing", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.features.feature_freezing.logger": {"fullname": "ml.metadata.validation.features.feature_freezing.logger", "modulename": "ml.metadata.validation.features.feature_freezing", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.features.feature_freezing (WARNING)>"}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"fullname": "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata", "modulename": "ml.metadata.validation.features.feature_freezing", "qualname": "validate_freeze_metadata", "kind": "function", "doc": "

    Validate freeze metadata dictionary against the FreezeMetadata Pydantic model.

    \n\n

    Args:\n metadata_dict: Dictionary containing freeze metadata to be validated.

    \n\n

    Returns:\n An instance of FreezeMetadata if validation is successful.

    \n\n

    Raises:\n RuntimeMLError: If the input dictionary does not conform to the FreezeMetadata schema.

    \n", "signature": "(\tmetadata_dict: dict[str, typing.Any]) -> ml.metadata.schemas.features.feature_freezing.FreezeMetadata:", "funcdef": "def"}, "ml.metadata.validation.post_promotion": {"fullname": "ml.metadata.validation.post_promotion", "modulename": "ml.metadata.validation.post_promotion", "kind": "module", "doc": "

    A package for post-promotion metadata validation.

    \n"}, "ml.metadata.validation.post_promotion.infer": {"fullname": "ml.metadata.validation.post_promotion.infer", "modulename": "ml.metadata.validation.post_promotion.infer", "kind": "module", "doc": "

    A module for validating inference metadata in the inference pipeline.

    \n"}, "ml.metadata.validation.post_promotion.infer.logger": {"fullname": "ml.metadata.validation.post_promotion.infer.logger", "modulename": "ml.metadata.validation.post_promotion.infer", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.post_promotion.infer (WARNING)>"}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"fullname": "ml.metadata.validation.post_promotion.infer.validate_inference_metadata", "modulename": "ml.metadata.validation.post_promotion.infer", "qualname": "validate_inference_metadata", "kind": "function", "doc": "

    Validate the inference metadata against the InferenceMetadata schema.

    \n\n

    Args:\n metadata (dict): The metadata dictionary to validate.

    \n\n

    Returns:\n InferenceMetadata: The validated metadata object.

    \n", "signature": "(\tmetadata: dict) -> ml.metadata.schemas.post_promotion.infer.InferenceMetadata:", "funcdef": "def"}, "ml.metadata.validation.promotion": {"fullname": "ml.metadata.validation.promotion", "modulename": "ml.metadata.validation.promotion", "kind": "module", "doc": "

    A package for promotion metadata validation.

    \n"}, "ml.metadata.validation.promotion.promote": {"fullname": "ml.metadata.validation.promotion.promote", "modulename": "ml.metadata.validation.promotion.promote", "kind": "module", "doc": "

    A module for validating promotion metadata against Pydantic models for staging and production.

    \n"}, "ml.metadata.validation.promotion.promote.logger": {"fullname": "ml.metadata.validation.promotion.promote.logger", "modulename": "ml.metadata.validation.promotion.promote", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.promotion.promote (WARNING)>"}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"fullname": "ml.metadata.validation.promotion.promote.validate_promotion_metadata", "modulename": "ml.metadata.validation.promotion.promote", "qualname": "validate_promotion_metadata", "kind": "function", "doc": "

    Validate raw promotion metadata against Pydantic models for staging and production.

    \n\n

    Args:\n promotion_metadata_raw: Raw promotion metadata dictionary to validate.\n stage: The stage for which to validate the metadata.

    \n\n

    Returns:\n Validated promotion metadata as either ProductionPromotionMetadata or StagingPromotionMetadata.

    \n\n

    Raises:\n RuntimeMLError: If validation fails against both staging and production models.

    \n", "signature": "(\tpromotion_metadata_raw: ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict,\tstage: Literal['production', 'staging']) -> ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata | ml.metadata.schemas.promotion.promote.StagingPromotionMetadata:", "funcdef": "def"}, "ml.metadata.validation.runners": {"fullname": "ml.metadata.validation.runners", "modulename": "ml.metadata.validation.runners", "kind": "module", "doc": "

    A package for runners metadata validation.

    \n"}, "ml.metadata.validation.runners.evaluation": {"fullname": "ml.metadata.validation.runners.evaluation", "modulename": "ml.metadata.validation.runners.evaluation", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.runners.evaluation.logger": {"fullname": "ml.metadata.validation.runners.evaluation.logger", "modulename": "ml.metadata.validation.runners.evaluation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.runners.evaluation (WARNING)>"}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"fullname": "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata", "modulename": "ml.metadata.validation.runners.evaluation", "qualname": "validate_evaluation_metadata", "kind": "function", "doc": "

    Validate evaluation metadata dictionary against the EvaluationMetadata Pydantic model.

    \n\n

    Args:\n metadata_dict: Dictionary containing evaluation metadata to be validated.

    \n\n

    Returns:\n An instance of EvaluationMetadata if validation is successful.

    \n\n

    Raises:\n RuntimeMLError: If the input dictionary does not conform to the EvaluationMetadata schema.

    \n", "signature": "(\tmetadata_dict: dict[str, typing.Any]) -> ml.metadata.schemas.runners.evaluation.EvaluationMetadata:", "funcdef": "def"}, "ml.metadata.validation.runners.explainability": {"fullname": "ml.metadata.validation.runners.explainability", "modulename": "ml.metadata.validation.runners.explainability", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.runners.explainability.logger": {"fullname": "ml.metadata.validation.runners.explainability.logger", "modulename": "ml.metadata.validation.runners.explainability", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.runners.explainability (WARNING)>"}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"fullname": "ml.metadata.validation.runners.explainability.validate_explainability_metadata", "modulename": "ml.metadata.validation.runners.explainability", "qualname": "validate_explainability_metadata", "kind": "function", "doc": "

    Validate the structure and content of explainability metadata.

    \n\n

    Args:\n explainability_metadata: The explainability metadata dictionary to validate.\nReturns:\n The validated ExplainabilityMetadata object.\nRaises:\n RuntimeMLError: If any required fields are missing or contain invalid values.

    \n", "signature": "(\texplainability_metadata: dict[str, typing.Any]) -> ml.metadata.schemas.runners.explainability.ExplainabilityMetadata:", "funcdef": "def"}, "ml.metadata.validation.runners.training": {"fullname": "ml.metadata.validation.runners.training", "modulename": "ml.metadata.validation.runners.training", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.runners.training.logger": {"fullname": "ml.metadata.validation.runners.training.logger", "modulename": "ml.metadata.validation.runners.training", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.runners.training (WARNING)>"}, "ml.metadata.validation.runners.training.validate_training_metadata": {"fullname": "ml.metadata.validation.runners.training.validate_training_metadata", "modulename": "ml.metadata.validation.runners.training", "qualname": "validate_training_metadata", "kind": "function", "doc": "

    Validate the structure and content of training metadata.

    \n\n

    Args:\n training_metadata: The training metadata dictionary to validate.\nReturns:\n The validated TrainingMetadata object.\nRaises:\n RuntimeMLError: If any required fields are missing or contain invalid values.

    \n", "signature": "(\ttraining_metadata: dict[str, typing.Any]) -> ml.metadata.schemas.runners.training.TrainingMetadata:", "funcdef": "def"}, "ml.metadata.validation.search": {"fullname": "ml.metadata.validation.search", "modulename": "ml.metadata.validation.search", "kind": "module", "doc": "

    A package for search metadata validation.

    \n"}, "ml.metadata.validation.search.search": {"fullname": "ml.metadata.validation.search.search", "modulename": "ml.metadata.validation.search.search", "kind": "module", "doc": "

    \n"}, "ml.metadata.validation.search.search.logger": {"fullname": "ml.metadata.validation.search.search.logger", "modulename": "ml.metadata.validation.search.search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.metadata.validation.search.search (WARNING)>"}, "ml.metadata.validation.search.search.validate_search_record": {"fullname": "ml.metadata.validation.search.search.validate_search_record", "modulename": "ml.metadata.validation.search.search", "qualname": "validate_search_record", "kind": "function", "doc": "

    \n", "signature": "(record_raw: dict) -> ml.metadata.schemas.search.search.SearchRecord:", "funcdef": "def"}, "ml.modeling": {"fullname": "ml.modeling", "modulename": "ml.modeling", "kind": "module", "doc": "

    A package for modeling-specific code.

    \n"}, "ml.modeling.catboost": {"fullname": "ml.modeling.catboost", "modulename": "ml.modeling.catboost", "kind": "module", "doc": "

    A package for modeling with CatBoost.

    \n"}, "ml.modeling.catboost.build_pipeline_with_model": {"fullname": "ml.modeling.catboost.build_pipeline_with_model", "modulename": "ml.modeling.catboost.build_pipeline_with_model", "kind": "module", "doc": "

    Helpers for constructing CatBoost-ready sklearn pipelines.

    \n"}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"fullname": "ml.modeling.catboost.build_pipeline_with_model.logger", "modulename": "ml.modeling.catboost.build_pipeline_with_model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.catboost.build_pipeline_with_model (WARNING)>"}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"fullname": "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model", "modulename": "ml.modeling.catboost.build_pipeline_with_model", "qualname": "build_pipeline_with_model", "kind": "function", "doc": "

    Build a feature pipeline and append a validated CatBoost model step.

    \n\n

    Args:\n model_cfg: Validated search or train model configuration.\n pipeline_cfg: Pipeline configuration object.\n input_schema: Input feature schema dataframe.\n derived_schema: Derived feature schema dataframe.\n model: Instantiated CatBoost estimator.

    \n\n

    Returns:\n Pipeline: Constructed sklearn pipeline with final Model step attached.

    \n", "signature": "(\t*,\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tpipeline_cfg: ml.pipelines.models.PipelineConfig,\tinput_schema: pandas.core.frame.DataFrame,\tderived_schema: pandas.core.frame.DataFrame,\tmodel: catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor) -> sklearn.pipeline.Pipeline:", "funcdef": "def"}, "ml.modeling.class_weighting": {"fullname": "ml.modeling.class_weighting", "modulename": "ml.modeling.class_weighting", "kind": "module", "doc": "

    A package for class weighting.

    \n"}, "ml.modeling.class_weighting.constants": {"fullname": "ml.modeling.class_weighting.constants", "modulename": "ml.modeling.class_weighting.constants", "kind": "module", "doc": "

    Type constraints for supported scoring metrics and ML libraries.

    \n"}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"fullname": "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS", "modulename": "ml.modeling.class_weighting.constants", "qualname": "SUPPORTED_SCORING_FUNCTIONS", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']"}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"fullname": "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES", "modulename": "ml.modeling.class_weighting.constants", "qualname": "SUPPORTED_LIBRARIES", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['xgboost', 'lightgbm', 'catboost', 'sklearn']"}, "ml.modeling.class_weighting.models": {"fullname": "ml.modeling.class_weighting.models", "modulename": "ml.modeling.class_weighting.models", "kind": "module", "doc": "

    Data models used by class-weighting and scoring policy resolution.

    \n"}, "ml.modeling.class_weighting.models.DataStats": {"fullname": "ml.modeling.class_weighting.models.DataStats", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats", "kind": "class", "doc": "

    Summary statistics for target distribution and class imbalance.

    \n"}, "ml.modeling.class_weighting.models.DataStats.__init__": {"fullname": "ml.modeling.class_weighting.models.DataStats.__init__", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats.__init__", "kind": "function", "doc": "

    \n", "signature": "(n_samples: int, class_counts: dict[int, int], minority_ratio: float)"}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"fullname": "ml.modeling.class_weighting.models.DataStats.n_samples", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats.n_samples", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"fullname": "ml.modeling.class_weighting.models.DataStats.class_counts", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats.class_counts", "kind": "variable", "doc": "

    \n", "annotation": ": dict[int, int]"}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"fullname": "ml.modeling.class_weighting.models.DataStats.minority_ratio", "modulename": "ml.modeling.class_weighting.models", "qualname": "DataStats.minority_ratio", "kind": "variable", "doc": "

    \n", "annotation": ": float"}, "ml.modeling.class_weighting.resolve_class_weighting": {"fullname": "ml.modeling.class_weighting.resolve_class_weighting", "modulename": "ml.modeling.class_weighting.resolve_class_weighting", "kind": "module", "doc": "

    Resolve class-weight parameters from policy, data statistics, and library.

    \n"}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"fullname": "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting", "modulename": "ml.modeling.class_weighting.resolve_class_weighting", "qualname": "resolve_class_weighting", "kind": "function", "doc": "

    Return library-specific class-weight parameters based on configured policy.

    \n\n

    Args:\n config: Validated training or search configuration with class-weighting settings.\n stats: Dataset class distribution statistics.\n library: Target ML library receiving class-weight parameters.

    \n\n

    Returns:\n Dictionary of class-weight parameters for the selected library.

    \n", "signature": "(\tconfig: ml.config.schemas.model_cfg.TrainModelConfig | ml.config.schemas.model_cfg.SearchModelConfig,\tstats: ml.modeling.class_weighting.models.DataStats,\tlibrary: Literal['xgboost', 'lightgbm', 'catboost', 'sklearn']) -> dict:", "funcdef": "def"}, "ml.modeling.class_weighting.resolve_metric": {"fullname": "ml.modeling.class_weighting.resolve_metric", "modulename": "ml.modeling.class_weighting.resolve_metric", "kind": "module", "doc": "

    Resolve the scoring metric according to policy and dataset characteristics.

    \n"}, "ml.modeling.class_weighting.resolve_metric.logger": {"fullname": "ml.modeling.class_weighting.resolve_metric.logger", "modulename": "ml.modeling.class_weighting.resolve_metric", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.class_weighting.resolve_metric (WARNING)>"}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"fullname": "ml.modeling.class_weighting.resolve_metric.resolve_metric", "modulename": "ml.modeling.class_weighting.resolve_metric", "qualname": "resolve_metric", "kind": "function", "doc": "

    Select and return the scoring metric for search/training workflows.

    \n\n

    Args:\n config: Validated training or search configuration with scoring policy.\n stats: Optional class-distribution statistics for adaptive policies.

    \n\n

    Returns:\n Scoring function name used by search/training routines.

    \n", "signature": "(\tconfig: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tstats: ml.modeling.class_weighting.models.DataStats | None) -> Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']:", "funcdef": "def"}, "ml.modeling.class_weighting.stats_resolver": {"fullname": "ml.modeling.class_weighting.stats_resolver", "modulename": "ml.modeling.class_weighting.stats_resolver", "kind": "module", "doc": "

    Utilities for computing class-distribution statistics from targets.

    \n"}, "ml.modeling.class_weighting.stats_resolver.logger": {"fullname": "ml.modeling.class_weighting.stats_resolver.logger", "modulename": "ml.modeling.class_weighting.stats_resolver", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.class_weighting.stats_resolver (WARNING)>"}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"fullname": "ml.modeling.class_weighting.stats_resolver.compute_data_stats", "modulename": "ml.modeling.class_weighting.stats_resolver", "qualname": "compute_data_stats", "kind": "function", "doc": "

    Compute sample count, class counts, and minority ratio for target labels.

    \n\n

    Args:\n y: Target label sequence.

    \n\n

    Returns:\n Data statistics object with sample size, class counts, and minority ratio.

    \n", "signature": "(y):", "funcdef": "def"}, "ml.modeling.models": {"fullname": "ml.modeling.models", "modulename": "ml.modeling.models", "kind": "module", "doc": "

    A package with modeling-specific pydantic models.

    \n"}, "ml.modeling.models.artifacts": {"fullname": "ml.modeling.models.artifacts", "modulename": "ml.modeling.models.artifacts", "kind": "module", "doc": "

    Artifacts model for tracking model and pipeline artifacts.

    \n"}, "ml.modeling.models.artifacts.Artifacts": {"fullname": "ml.modeling.models.artifacts.Artifacts", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts", "kind": "class", "doc": "

    Model representing the artifacts produced during training or evaluation, including paths and hashes for integrity verification.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"fullname": "ml.modeling.models.artifacts.Artifacts.model_hash", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts.model_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.artifacts.Artifacts.model_path": {"fullname": "ml.modeling.models.artifacts.Artifacts.model_path", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts.model_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"fullname": "ml.modeling.models.artifacts.Artifacts.pipeline_path", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts.pipeline_path", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"fullname": "ml.modeling.models.artifacts.Artifacts.pipeline_hash", "modulename": "ml.modeling.models.artifacts", "qualname": "Artifacts.pipeline_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.modeling.models.config_fingerprint": {"fullname": "ml.modeling.models.config_fingerprint", "modulename": "ml.modeling.models.config_fingerprint", "kind": "module", "doc": "

    \n"}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"fullname": "ml.modeling.models.config_fingerprint.ConfigFingerprint", "modulename": "ml.modeling.models.config_fingerprint", "qualname": "ConfigFingerprint", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"fullname": "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash", "modulename": "ml.modeling.models.config_fingerprint", "qualname": "ConfigFingerprint.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"fullname": "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash", "modulename": "ml.modeling.models.config_fingerprint", "qualname": "ConfigFingerprint.pipeline_cfg_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "''"}, "ml.modeling.models.experiment_lineage": {"fullname": "ml.modeling.models.experiment_lineage", "modulename": "ml.modeling.models.experiment_lineage", "kind": "module", "doc": "

    \n"}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]", "default_value": "PydanticUndefined"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.target_column", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.problem", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.problem", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.segment", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.segment", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"fullname": "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version", "modulename": "ml.modeling.models.experiment_lineage", "qualname": "ExperimentLineage.model_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage": {"fullname": "ml.modeling.models.feature_lineage", "modulename": "ml.modeling.models.feature_lineage", "kind": "module", "doc": "

    \n"}, "ml.modeling.models.feature_lineage.FeatureLineage": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.name", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.version", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.file_hash", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.file_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.in_memory_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.feature_schema_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.operator_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.feature_type", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.feature_type", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['tabular', 'time-series']", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.file_name", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.file_name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"fullname": "ml.modeling.models.feature_lineage.FeatureLineage.data_format", "modulename": "ml.modeling.models.feature_lineage", "qualname": "FeatureLineage.data_format", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics": {"fullname": "ml.modeling.models.metrics", "modulename": "ml.modeling.models.metrics", "kind": "module", "doc": "

    This module defines the data models for training and evaluation metrics using Pydantic.

    \n"}, "ml.modeling.models.metrics.Metrics": {"fullname": "ml.modeling.models.metrics.Metrics", "modulename": "ml.modeling.models.metrics", "qualname": "Metrics", "kind": "class", "doc": "

    Base model for metrics data.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.metrics.Metrics.task_type": {"fullname": "ml.modeling.models.metrics.Metrics.task_type", "modulename": "ml.modeling.models.metrics", "qualname": "Metrics.task_type", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.Metrics.algorithm": {"fullname": "ml.modeling.models.metrics.Metrics.algorithm", "modulename": "ml.modeling.models.metrics", "qualname": "Metrics.algorithm", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.TrainingMetrics": {"fullname": "ml.modeling.models.metrics.TrainingMetrics", "modulename": "ml.modeling.models.metrics", "qualname": "TrainingMetrics", "kind": "class", "doc": "

    Model training metrics.

    \n", "bases": "Metrics"}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"fullname": "ml.modeling.models.metrics.TrainingMetrics.metrics", "modulename": "ml.modeling.models.metrics", "qualname": "TrainingMetrics.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float | dict[str, float]]", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"fullname": "ml.modeling.models.metrics.EvaluationMetricsHelper", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetricsHelper", "kind": "class", "doc": "

    Helper model for evaluation metrics to allow nested structure.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"fullname": "ml.modeling.models.metrics.EvaluationMetricsHelper.train", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetricsHelper.train", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"fullname": "ml.modeling.models.metrics.EvaluationMetricsHelper.val", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetricsHelper.val", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"fullname": "ml.modeling.models.metrics.EvaluationMetricsHelper.test", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetricsHelper.test", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.modeling.models.metrics.EvaluationMetrics": {"fullname": "ml.modeling.models.metrics.EvaluationMetrics", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetrics", "kind": "class", "doc": "

    Model evaluation metrics.

    \n", "bases": "Metrics"}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"fullname": "ml.modeling.models.metrics.EvaluationMetrics.metrics", "modulename": "ml.modeling.models.metrics", "qualname": "EvaluationMetrics.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.metrics.EvaluationMetricsHelper", "default_value": "PydanticUndefined"}, "ml.modeling.models.run_identity": {"fullname": "ml.modeling.models.run_identity", "modulename": "ml.modeling.models.run_identity", "kind": "module", "doc": "

    \n"}, "ml.modeling.models.run_identity.RunIdentity": {"fullname": "ml.modeling.models.run_identity.RunIdentity", "modulename": "ml.modeling.models.run_identity", "qualname": "RunIdentity", "kind": "class", "doc": "

    Model representing the identity of a run.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"fullname": "ml.modeling.models.run_identity.RunIdentity.train_run_id", "modulename": "ml.modeling.models.run_identity", "qualname": "RunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"fullname": "ml.modeling.models.run_identity.RunIdentity.snapshot_id", "modulename": "ml.modeling.models.run_identity", "qualname": "RunIdentity.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.run_identity.RunIdentity.status": {"fullname": "ml.modeling.models.run_identity.RunIdentity.status", "modulename": "ml.modeling.models.run_identity", "qualname": "RunIdentity.status", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['success']", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info": {"fullname": "ml.modeling.models.runtime_info", "modulename": "ml.modeling.models.runtime_info", "kind": "module", "doc": "

    Runtime information about the system where the runner is executing.

    \n"}, "ml.modeling.models.runtime_info.Environment": {"fullname": "ml.modeling.models.runtime_info.Environment", "modulename": "ml.modeling.models.runtime_info", "qualname": "Environment", "kind": "class", "doc": "

    Environment information about the conda environment where the runner is executing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"fullname": "ml.modeling.models.runtime_info.Environment.conda_env_export", "modulename": "ml.modeling.models.runtime_info", "qualname": "Environment.conda_env_export", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"fullname": "ml.modeling.models.runtime_info.Environment.conda_env_hash", "modulename": "ml.modeling.models.runtime_info", "qualname": "Environment.conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Execution": {"fullname": "ml.modeling.models.runtime_info.Execution", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution", "kind": "class", "doc": "

    Execution information about the run being executed.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.Execution.created_at": {"fullname": "ml.modeling.models.runtime_info.Execution.created_at", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"fullname": "ml.modeling.models.runtime_info.Execution.duration_seconds", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution.duration_seconds", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Execution.git_commit": {"fullname": "ml.modeling.models.runtime_info.Execution.git_commit", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Execution.python_executable": {"fullname": "ml.modeling.models.runtime_info.Execution.python_executable", "modulename": "ml.modeling.models.runtime_info", "qualname": "Execution.python_executable", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo": {"fullname": "ml.modeling.models.runtime_info.GpuInfo", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo", "kind": "class", "doc": "

    GPU information about the system where the runner is executing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.cuda_version", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.cuda_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_count", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_count", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_devices_available", "kind": "variable", "doc": "

    \n", "annotation": ": list[int]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_devices_used", "kind": "variable", "doc": "

    \n", "annotation": ": list[int]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_driver_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_memories_gb", "kind": "variable", "doc": "

    \n", "annotation": ": list[float]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.gpu_names", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.gpu_names", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"fullname": "ml.modeling.models.runtime_info.GpuInfo.task_type", "modulename": "ml.modeling.models.runtime_info", "qualname": "GpuInfo.task_type", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareTaskType", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime": {"fullname": "ml.modeling.models.runtime_info.Runtime", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime", "kind": "class", "doc": "

    Runtime information about the system where the runner is executing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.Runtime.os": {"fullname": "ml.modeling.models.runtime_info.Runtime.os", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.os", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.os_release": {"fullname": "ml.modeling.models.runtime_info.Runtime.os_release", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.os_release", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.architecture": {"fullname": "ml.modeling.models.runtime_info.Runtime.architecture", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.architecture", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.processor": {"fullname": "ml.modeling.models.runtime_info.Runtime.processor", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.processor", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"fullname": "ml.modeling.models.runtime_info.Runtime.ram_total_gb", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.ram_total_gb", "kind": "variable", "doc": "

    \n", "annotation": ": float", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"fullname": "ml.modeling.models.runtime_info.Runtime.platform_string", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.platform_string", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.hostname": {"fullname": "ml.modeling.models.runtime_info.Runtime.hostname", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.hostname", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.python_version": {"fullname": "ml.modeling.models.runtime_info.Runtime.python_version", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.python_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"fullname": "ml.modeling.models.runtime_info.Runtime.python_impl", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.python_impl", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.Runtime.python_build": {"fullname": "ml.modeling.models.runtime_info.Runtime.python_build", "modulename": "ml.modeling.models.runtime_info", "qualname": "Runtime.python_build", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[str, str]", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.RuntimeInfo": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo", "kind": "class", "doc": "

    Comprehensive runtime information about the system where the runner is executing.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo.environment", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo.environment", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.Environment", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo.execution", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo.execution", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.Execution", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo.gpu_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.GpuInfo", "default_value": "PydanticUndefined"}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"fullname": "ml.modeling.models.runtime_info.RuntimeInfo.runtime", "modulename": "ml.modeling.models.runtime_info", "qualname": "RuntimeInfo.runtime", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.models.runtime_info.Runtime", "default_value": "PydanticUndefined"}, "ml.modeling.validation": {"fullname": "ml.modeling.validation", "modulename": "ml.modeling.validation", "kind": "module", "doc": "

    A package for modeling-specific validation.

    \n"}, "ml.modeling.validation.artifacts": {"fullname": "ml.modeling.validation.artifacts", "modulename": "ml.modeling.validation.artifacts", "kind": "module", "doc": "

    \n"}, "ml.modeling.validation.artifacts.logger": {"fullname": "ml.modeling.validation.artifacts.logger", "modulename": "ml.modeling.validation.artifacts", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.validation.artifacts (WARNING)>"}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"fullname": "ml.modeling.validation.artifacts.validate_evaluation_artifacts", "modulename": "ml.modeling.validation.artifacts", "qualname": "validate_evaluation_artifacts", "kind": "function", "doc": "

    Validate the evaluation artifacts by attempting to construct the EvaluationArtifacts model.

    \n\n

    Args:\n evaluation_artifacts_raw: Raw dictionary of evaluation artifact paths and hashes.

    \n\n

    Returns:\n EvaluationArtifacts: Validated evaluation artifacts model.

    \n\n

    Raises:\n RuntimeMLError: If validation fails due to missing required fields or incorrect types.

    \n", "signature": "(\tevaluation_artifacts_raw: dict) -> ml.metadata.schemas.runners.evaluation.EvaluationArtifacts:", "funcdef": "def"}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"fullname": "ml.modeling.validation.artifacts.validate_explainability_artifacts", "modulename": "ml.modeling.validation.artifacts", "qualname": "validate_explainability_artifacts", "kind": "function", "doc": "

    Validate the explainability artifacts by attempting to construct the ExplainabilityArtifacts model.

    \n\n

    Args:\n explainability_artifacts_raw: Raw dictionary of explainability artifact paths and hashes.

    \n\n

    Returns:\n ExplainabilityArtifacts: Validated explainability artifacts model.

    \n\n

    Raises:\n RuntimeMLError: If validation fails due to missing required fields or incorrect types.

    \n", "signature": "(\texplainability_artifacts_raw: dict) -> ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts:", "funcdef": "def"}, "ml.modeling.validation.feature_lineage": {"fullname": "ml.modeling.validation.feature_lineage", "modulename": "ml.modeling.validation.feature_lineage", "kind": "module", "doc": "

    \n"}, "ml.modeling.validation.feature_lineage.logger": {"fullname": "ml.modeling.validation.feature_lineage.logger", "modulename": "ml.modeling.validation.feature_lineage", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.validation.feature_lineage (WARNING)>"}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"fullname": "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage", "modulename": "ml.modeling.validation.feature_lineage", "qualname": "validate_and_construct_feature_lineage", "kind": "function", "doc": "

    \n", "signature": "(\tfeature_lineage_raw: list[dict]) -> list[ml.modeling.models.feature_lineage.FeatureLineage]:", "funcdef": "def"}, "ml.modeling.validation.metrics": {"fullname": "ml.modeling.validation.metrics", "modulename": "ml.modeling.validation.metrics", "kind": "module", "doc": "

    This module contains functions for validating training and evaluation metrics against their respective Pydantic models. It ensures that the metrics conform to the expected structure and types defined in the TrainingMetrics and EvaluationMetrics models. If the validation fails, it raises a RuntimeMLError with an appropriate error message.

    \n"}, "ml.modeling.validation.metrics.logger": {"fullname": "ml.modeling.validation.metrics.logger", "modulename": "ml.modeling.validation.metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.validation.metrics (WARNING)>"}, "ml.modeling.validation.metrics.validate_training_metrics": {"fullname": "ml.modeling.validation.metrics.validate_training_metrics", "modulename": "ml.modeling.validation.metrics", "qualname": "validate_training_metrics", "kind": "function", "doc": "

    Validate the training metrics against the TrainingMetrics model.

    \n\n

    Args:\n training_metrics_raw: A dictionary containing the training metrics.

    \n\n

    Returns:\n TrainingMetrics: A validated TrainingMetrics object.

    \n\n

    Raises:\n RuntimeMLError: If the training metrics are invalid.

    \n", "signature": "(training_metrics_raw: dict) -> ml.modeling.models.metrics.TrainingMetrics:", "funcdef": "def"}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"fullname": "ml.modeling.validation.metrics.validate_evaluation_metrics", "modulename": "ml.modeling.validation.metrics", "qualname": "validate_evaluation_metrics", "kind": "function", "doc": "

    Validate the evaluation metrics against the EvaluationMetrics model.

    \n\n

    Args:\n evaluation_metrics_raw: A dictionary containing the evaluation metrics.

    \n\n

    Returns:\n EvaluationMetrics: A validated EvaluationMetrics object.

    \n\n

    Raises:\n RuntimeMLError: If the evaluation metrics are invalid.

    \n", "signature": "(\tevaluation_metrics_raw: dict) -> ml.modeling.models.metrics.EvaluationMetrics:", "funcdef": "def"}, "ml.modeling.validation.runtime_info": {"fullname": "ml.modeling.validation.runtime_info", "modulename": "ml.modeling.validation.runtime_info", "kind": "module", "doc": "

    \n"}, "ml.modeling.validation.runtime_info.logger": {"fullname": "ml.modeling.validation.runtime_info.logger", "modulename": "ml.modeling.validation.runtime_info", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.modeling.validation.runtime_info (WARNING)>"}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"fullname": "ml.modeling.validation.runtime_info.validate_runtime_info", "modulename": "ml.modeling.validation.runtime_info", "qualname": "validate_runtime_info", "kind": "function", "doc": "

    Validate raw runtime info payload.

    \n\n

    Args:\n runtime_info_raw: Raw runtime info payload.

    \n\n

    Returns:\n RuntimeInfo: Validated runtime info.

    \n", "signature": "(runtime_info_raw: dict) -> ml.modeling.models.runtime_info.RuntimeInfo:", "funcdef": "def"}, "ml.pipelines": {"fullname": "ml.pipelines", "modulename": "ml.pipelines", "kind": "module", "doc": "

    A package for building sklearn Pipelines.

    \n"}, "ml.pipelines.builders": {"fullname": "ml.pipelines.builders", "modulename": "ml.pipelines.builders", "kind": "module", "doc": "

    Pipeline builder utilities for assembling configured sklearn pipelines.

    \n"}, "ml.pipelines.builders.logger": {"fullname": "ml.pipelines.builders.logger", "modulename": "ml.pipelines.builders", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.pipelines.builders (WARNING)>"}, "ml.pipelines.builders.build_pipeline": {"fullname": "ml.pipelines.builders.build_pipeline", "modulename": "ml.pipelines.builders", "qualname": "build_pipeline", "kind": "function", "doc": "

    Build an sklearn Pipeline from config and schema metadata.

    \n\n

    Args:\n model_cfg: Validated search or training model config.\n pipeline_cfg: Pipeline configuration object.\n input_schema: DataFrame with columns 'feature' and 'dtype' for raw inputs.\n derived_schema: DataFrame with columns 'feature' and 'source_operator' for engineered features.

    \n\n

    Returns:\n Pipeline: Configured sklearn pipeline instance.

    \n", "signature": "(\t*,\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\tpipeline_cfg: ml.pipelines.models.PipelineConfig,\tinput_schema: pandas.core.frame.DataFrame,\tderived_schema: pandas.core.frame.DataFrame) -> sklearn.pipeline.Pipeline:", "funcdef": "def"}, "ml.pipelines.composition": {"fullname": "ml.pipelines.composition", "modulename": "ml.pipelines.composition", "kind": "module", "doc": "

    A package for composition logic with sklearn Pipelines.

    \n"}, "ml.pipelines.composition.add_model_to_pipeline": {"fullname": "ml.pipelines.composition.add_model_to_pipeline", "modulename": "ml.pipelines.composition.add_model_to_pipeline", "kind": "module", "doc": "

    Helpers for appending validated model instances to sklearn pipelines.

    \n"}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"fullname": "ml.pipelines.composition.add_model_to_pipeline.logger", "modulename": "ml.pipelines.composition.add_model_to_pipeline", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.pipelines.composition.add_model_to_pipeline (WARNING)>"}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"fullname": "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline", "modulename": "ml.pipelines.composition.add_model_to_pipeline", "qualname": "add_model_to_pipeline", "kind": "function", "doc": "

    Append a supported estimator as the final Model step in a pipeline.

    \n\n

    Args:\n pipeline: Existing sklearn pipeline.\n model: Estimator instance expected to be supported by registry.

    \n\n

    Returns:\n Pipeline: New pipeline instance with appended Model step.

    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\tmodel: Any) -> sklearn.pipeline.Pipeline:", "funcdef": "def"}, "ml.pipelines.constants": {"fullname": "ml.pipelines.constants", "modulename": "ml.pipelines.constants", "kind": "module", "doc": "

    A package with constants for working with sklearn Pipelines.

    \n"}, "ml.pipelines.constants.pipeline_features": {"fullname": "ml.pipelines.constants.pipeline_features", "modulename": "ml.pipelines.constants.pipeline_features", "kind": "module", "doc": "

    Typed container models for schema-derived pipeline feature groups.

    \n"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures", "kind": "class", "doc": "

    Feature groups used during pipeline assembly and validation.

    \n"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tinput_features: list[str],\tderived_features: list[str],\tcategorical_features: list[str],\tselected_features: list[str])"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.input_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.derived_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.categorical_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"fullname": "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features", "modulename": "ml.pipelines.constants.pipeline_features", "qualname": "PipelineFeatures.selected_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.pipelines.models": {"fullname": "ml.pipelines.models", "modulename": "ml.pipelines.models", "kind": "module", "doc": "

    Pipeline config Pydantic models for validation.

    \n"}, "ml.pipelines.models.VALID_STEPS": {"fullname": "ml.pipelines.models.VALID_STEPS", "modulename": "ml.pipelines.models", "qualname": "VALID_STEPS", "kind": "variable", "doc": "

    \n", "default_value": "{'SchemaValidator', 'FeatureSelector', 'FeatureEngineer', 'Model', 'FillCategoricalMissing'}"}, "ml.pipelines.models.LineageConfig": {"fullname": "ml.pipelines.models.LineageConfig", "modulename": "ml.pipelines.models", "qualname": "LineageConfig", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.pipelines.models.LineageConfig.created_by": {"fullname": "ml.pipelines.models.LineageConfig.created_by", "modulename": "ml.pipelines.models", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    Author of the pipeline config

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.pipelines.models.LineageConfig.created_at": {"fullname": "ml.pipelines.models.LineageConfig.created_at", "modulename": "ml.pipelines.models", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    Timestamp of config creation

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig": {"fullname": "ml.pipelines.models.PipelineConfig", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig", "kind": "class", "doc": "

    Pydantic schema for pipeline configurations.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.pipelines.models.PipelineConfig.name": {"fullname": "ml.pipelines.models.PipelineConfig.name", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.name", "kind": "variable", "doc": "

    Name of the pipeline

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.version": {"fullname": "ml.pipelines.models.PipelineConfig.version", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.version", "kind": "variable", "doc": "

    Version of the pipeline (e.g., v1)

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.description": {"fullname": "ml.pipelines.models.PipelineConfig.description", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.description", "kind": "variable", "doc": "

    Optional description of the pipeline

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.pipelines.models.PipelineConfig.steps": {"fullname": "ml.pipelines.models.PipelineConfig.steps", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.steps", "kind": "variable", "doc": "

    Ordered list of pipeline steps

    \n", "annotation": ": list[str]", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.assumptions": {"fullname": "ml.pipelines.models.PipelineConfig.assumptions", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.assumptions", "kind": "variable", "doc": "

    Assumptions about supported tasks and categorical handling

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.lineage": {"fullname": "ml.pipelines.models.PipelineConfig.lineage", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.pipelines.models.LineageConfig", "default_value": "PydanticUndefined"}, "ml.pipelines.models.PipelineConfig.check_version_format": {"fullname": "ml.pipelines.models.PipelineConfig.check_version_format", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.check_version_format", "kind": "function", "doc": "

    Ensure version starts with 'v' followed by a number.

    \n", "signature": "(cls, v: str) -> str:", "funcdef": "def"}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"fullname": "ml.pipelines.models.PipelineConfig.check_steps_valid", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.check_steps_valid", "kind": "function", "doc": "

    Ensure all pipeline steps are known and non-empty.

    \n", "signature": "(cls, v: list[str]) -> list[str]:", "funcdef": "def"}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"fullname": "ml.pipelines.models.PipelineConfig.validate_assumptions_keys", "modulename": "ml.pipelines.models", "qualname": "PipelineConfig.validate_assumptions_keys", "kind": "function", "doc": "

    Ensure assumptions contain all required keys.

    \n", "signature": "(cls, values: dict) -> dict:", "funcdef": "def"}, "ml.pipelines.operator_factory": {"fullname": "ml.pipelines.operator_factory", "modulename": "ml.pipelines.operator_factory", "kind": "module", "doc": "

    Factory helpers for creating feature engineering operator instances.

    \n"}, "ml.pipelines.operator_factory.build_operators": {"fullname": "ml.pipelines.operator_factory.build_operators", "modulename": "ml.pipelines.operator_factory", "qualname": "build_operators", "kind": "function", "doc": "

    Instantiate operators declared in derived_schema.

    \n\n

    Args:\n derived_schema: DataFrame containing a source_operator column.

    \n\n

    Returns:\n dict[str, object]: Mapping of operator name to instantiated operator.

    \n", "signature": "(derived_schema: pandas.core.frame.DataFrame) -> dict[str, object]:", "funcdef": "def"}, "ml.pipelines.schema_utils": {"fullname": "ml.pipelines.schema_utils", "modulename": "ml.pipelines.schema_utils", "kind": "module", "doc": "

    Schema-derived feature list utilities for pipeline assembly.

    \n"}, "ml.pipelines.schema_utils.get_categorical_features": {"fullname": "ml.pipelines.schema_utils.get_categorical_features", "modulename": "ml.pipelines.schema_utils", "qualname": "get_categorical_features", "kind": "function", "doc": "

    Return categorical feature names inferred from schema dtypes.

    \n\n

    Args:\n schema: Schema dataframe containing at least feature and dtype.

    \n\n

    Returns:\n List of feature names with categorical-compatible dtypes.

    \n", "signature": "(schema: pandas.core.frame.DataFrame) -> list[str]:", "funcdef": "def"}, "ml.pipelines.schema_utils.get_pipeline_features": {"fullname": "ml.pipelines.schema_utils.get_pipeline_features", "modulename": "ml.pipelines.schema_utils", "qualname": "get_pipeline_features", "kind": "function", "doc": "

    Compute feature groups used by the training/inference pipeline.

    \n\n

    Args:\n model_cfg: Validated search or training model config.\n input_schema: Schema dataframe for raw input features.\n derived_schema: Schema dataframe for engineered features.

    \n\n

    Returns:\n PipelineFeatures: Structured feature groups for pipeline construction.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig | ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tinput_schema: pandas.core.frame.DataFrame,\tderived_schema: pandas.core.frame.DataFrame) -> ml.pipelines.constants.pipeline_features.PipelineFeatures:", "funcdef": "def"}, "ml.pipelines.validation": {"fullname": "ml.pipelines.validation", "modulename": "ml.pipelines.validation", "kind": "module", "doc": "

    Pipeline config validation.

    \n"}, "ml.pipelines.validation.logger": {"fullname": "ml.pipelines.validation.logger", "modulename": "ml.pipelines.validation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.pipelines.validation (WARNING)>"}, "ml.pipelines.validation.validate_pipeline_config": {"fullname": "ml.pipelines.validation.validate_pipeline_config", "modulename": "ml.pipelines.validation", "qualname": "validate_pipeline_config", "kind": "function", "doc": "

    Validate pipeline config dictionary against the PipelineConfig Pydantic model.

    \n\n

    Args:\n pipeline_cfg_raw: Dictionary containing pipeline config to be validated.

    \n\n

    Returns:\n An instance of PipelineConfig if validation is successful.

    \n\n

    Raises:\n ConfigError: If the input dictionary does not conform to the PipelineConfig schema.

    \n", "signature": "(\tpipeline_cfg_raw: dict[str, typing.Any]) -> ml.pipelines.models.PipelineConfig:", "funcdef": "def"}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"fullname": "ml.pipelines.validation.validate_pipeline_config_consistency", "modulename": "ml.pipelines.validation", "qualname": "validate_pipeline_config_consistency", "kind": "function", "doc": "

    \n", "signature": "(actual_hash, search_dir):", "funcdef": "def"}, "ml.policies": {"fullname": "ml.policies", "modulename": "ml.policies", "kind": "module", "doc": "

    A package with ml policies.

    \n"}, "ml.policies.data": {"fullname": "ml.policies.data", "modulename": "ml.policies.data", "kind": "module", "doc": "

    A package with data policies.

    \n"}, "ml.policies.data.interim_constraints": {"fullname": "ml.policies.data.interim_constraints", "modulename": "ml.policies.data.interim_constraints", "kind": "module", "doc": "

    Predefined column constraint registries for interim data validation.

    \n"}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"fullname": "ml.policies.data.interim_constraints.MIN_CONSTRAINTS", "modulename": "ml.policies.data.interim_constraints", "qualname": "MIN_CONSTRAINTS", "kind": "variable", "doc": "

    \n", "default_value": "{'lead_time': BorderValue(value=0.0, op='gte'), 'arrival_date_year': BorderValue(value=2015.0, op='gte'), 'arrival_date_week_number': BorderValue(value=1.0, op='gte'), 'arrival_date_day_of_month': BorderValue(value=1.0, op='gte'), 'stays_in_weekend_nights': BorderValue(value=0.0, op='gte'), 'stays_in_week_nights': BorderValue(value=0.0, op='gte'), 'adults': BorderValue(value=0.0, op='gte'), 'children': BorderValue(value=0.0, op='gte'), 'babies': BorderValue(value=0.0, op='gte'), 'previous_cancellations': BorderValue(value=0.0, op='gte'), 'previous_bookings_not_canceled': BorderValue(value=0.0, op='gte'), 'booking_changes': BorderValue(value=0.0, op='gte'), 'days_in_waiting_list': BorderValue(value=0.0, op='gte'), 'adr': BorderValue(value=0.0, op='gte'), 'required_car_parking_spaces': BorderValue(value=0.0, op='gte'), 'total_of_special_requests': BorderValue(value=0.0, op='gte')}"}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"fullname": "ml.policies.data.interim_constraints.MAX_CONSTRAINTS", "modulename": "ml.policies.data.interim_constraints", "qualname": "MAX_CONSTRAINTS", "kind": "variable", "doc": "

    \n", "default_value": "{'arrival_date_week_number': BorderValue(value=53.0, op='lte'), 'arrival_date_day_of_month': BorderValue(value=31.0, op='lte')}"}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"fullname": "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS", "modulename": "ml.policies.data.interim_constraints", "qualname": "ALLOWED_VALUES_CONSTRAINTS", "kind": "variable", "doc": "

    \n", "default_value": "{'hotel': ['City Hotel', 'Resort Hotel'], 'arrival_date_month': ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], 'meal': ['BB', 'HB', 'FB', 'SC', 'Undefined'], 'market_segment': ['Aviation', 'Direct', 'Complementary', 'Corporate', 'Groups', 'Offline TA/TO', 'Online TA', 'Undefined'], 'distribution_channel': ['Direct', 'Corporate', 'GDS', 'TA/TO', 'Undefined'], 'deposit_type': ['No Deposit', 'Refundable', 'Non Refund'], 'customer_type': ['Contract', 'Transient', 'Transient-Party', 'Group'], 'reservation_status': ['Canceled', 'Check-Out', 'No-Show'], 'reserved_room_type': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'L', 'P'], 'assigned_room_type': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'K', 'L', 'P'], 'agent': ['1.0', '2.0', '3.0', '4.0', '5.0', '6.0', '7.0', '8.0', '9.0', '10.0', '11.0', '12.0', '13.0', '14.0', '15.0', '16.0', '17.0', '18.0', '19.0', '20.0', '21.0', '22.0', '23.0', '24.0', '25.0', '26.0', '27.0', '28.0', '29.0', '30.0', '31.0', '32.0', '33.0', '34.0', '35.0', '36.0', '37.0', '38.0', '39.0', '40.0', '41.0', '42.0', '43.0', '44.0', '45.0', '46.0', '47.0', '48.0', '49.0', '50.0', '51.0', '52.0', '53.0', '54.0', '55.0', '56.0', '57.0', '58.0', '59.0', '60.0', '61.0', '62.0', '63.0', '64.0', '65.0', '66.0', '67.0', '68.0', '69.0', '70.0', '71.0', '72.0', '73.0', '74.0', '75.0', '76.0', '77.0', '78.0', '79.0', '80.0', '81.0', '82.0', '83.0', '84.0', '85.0', '86.0', '87.0', '88.0', '89.0', '90.0', '91.0', '92.0', '93.0', '94.0', '95.0', '96.0', '97.0', '98.0', '99.0', '100.0', '101.0', '102.0', '103.0', '104.0', '105.0', '106.0', '107.0', '108.0', '109.0', '110.0', '111.0', '112.0', '113.0', '114.0', '115.0', '116.0', '117.0', '118.0', '119.0', '120.0', '121.0', '122.0', '123.0', '124.0', '125.0', '126.0', '127.0', '128.0', '129.0', '130.0', '131.0', '132.0', '133.0', '134.0', '135.0', '136.0', '137.0', '138.0', '139.0', '140.0', '141.0', '142.0', '143.0', '144.0', '145.0', '146.0', '147.0', '148.0', '149.0', '150.0', '151.0', '152.0', '153.0', '154.0', '155.0', '156.0', '157.0', '158.0', '159.0', '160.0', '161.0', '162.0', '163.0', '164.0', '165.0', '166.0', '167.0', '168.0', '169.0', '170.0', '171.0', '172.0', '173.0', '174.0', '175.0', '176.0', '177.0', '178.0', '179.0', '180.0', '181.0', '182.0', '183.0', '184.0', '185.0', '186.0', '187.0', '188.0', '189.0', '190.0', '191.0', '192.0', '193.0', '194.0', '195.0', '196.0', '197.0', '198.0', '199.0', '200.0', '201.0', '202.0', '203.0', '204.0', '205.0', '206.0', '207.0', '208.0', '209.0', '210.0', '211.0', '212.0', '213.0', '214.0', '215.0', '216.0', '217.0', '218.0', '219.0', '220.0', '221.0', '222.0', '223.0', '224.0', '225.0', '226.0', '227.0', '228.0', '229.0', '230.0', '231.0', '232.0', '233.0', '234.0', '235.0', '236.0', '237.0', '238.0', '239.0', '240.0', '241.0', '242.0', '243.0', '244.0', '245.0', '246.0', '247.0', '248.0', '249.0', '250.0', '251.0', '252.0', '253.0', '254.0', '255.0', '256.0', '257.0', '258.0', '259.0', '260.0', '261.0', '262.0', '263.0', '264.0', '265.0', '266.0', '267.0', '268.0', '269.0', '270.0', '271.0', '272.0', '273.0', '274.0', '275.0', '276.0', '277.0', '278.0', '279.0', '280.0', '281.0', '282.0', '283.0', '284.0', '285.0', '286.0', '287.0', '288.0', '289.0', '290.0', '291.0', '292.0', '293.0', '294.0', '295.0', '296.0', '297.0', '298.0', '299.0', '300.0', '301.0', '302.0', '303.0', '304.0', '305.0', '306.0', '307.0', '308.0', '309.0', '310.0', '311.0', '312.0', '313.0', '314.0', '315.0', '316.0', '317.0', '318.0', '319.0', '320.0', '321.0', '322.0', '323.0', '324.0', '325.0', '326.0', '327.0', '328.0', '329.0', '330.0', '331.0', '332.0', '333.0', '334.0', '335.0', '336.0', '337.0', '338.0', '339.0', '340.0', '341.0', '342.0', '343.0', '344.0', '345.0', '346.0', '347.0', '348.0', '349.0', '350.0', '351.0', '352.0', '353.0', '354.0', '355.0', '356.0', '357.0', '358.0', '359.0', '360.0', '361.0', '362.0', '363.0', '364.0', '365.0', '366.0', '367.0', '368.0', '369.0', '370.0', '371.0', '372.0', '373.0', '374.0', '375.0', '376.0', '377.0', '378.0', '379.0', '380.0', '381.0', '382.0', '383.0', '384.0', '385.0', '386.0', '387.0', '388.0', '389.0', '390.0', '391.0', '392.0', '393.0', '394.0', '395.0', '396.0', '397.0', '398.0', '399.0', '400.0', '401.0', '402.0', '403.0', '404.0', '405.0', '406.0', '407.0', '408.0', '409.0', '410.0', '411.0', '412.0', '413.0', '414.0', '415.0', '416.0', '417.0', '418.0', '419.0', '420.0', '421.0', '422.0', '423.0', '424.0', '425.0', '426.0', '427.0', '428.0', '429.0', '430.0', '431.0', '432.0', '433.0', '434.0', '435.0', '436.0', '437.0', '438.0', '439.0', '440.0', '441.0', '442.0', '443.0', '444.0', '445.0', '446.0', '447.0', '448.0', '449.0', '450.0', '451.0', '452.0', '453.0', '454.0', '455.0', '456.0', '457.0', '458.0', '459.0', '460.0', '461.0', '462.0', '463.0', '464.0', '465.0', '466.0', '467.0', '468.0', '469.0', '470.0', '471.0', '472.0', '473.0', '474.0', '475.0', '476.0', '477.0', '478.0', '479.0', '480.0', '481.0', '482.0', '483.0', '484.0', '485.0', '486.0', '487.0', '488.0', '489.0', '490.0', '491.0', '492.0', '493.0', '494.0', '495.0', '496.0', '497.0', '498.0', '499.0', '500.0', '501.0', '502.0', '503.0', '504.0', '505.0', '506.0', '507.0', '508.0', '509.0', '510.0', '511.0', '512.0', '513.0', '514.0', '515.0', '516.0', '517.0', '518.0', '519.0', '520.0', '521.0', '522.0', '523.0', '524.0', '525.0', '526.0', '527.0', '528.0', '529.0', '530.0', '531.0', '532.0', '533.0', '534.0', '535.0', '536.0', '537.0', '538.0', '539.0', '540.0', '541.0', '542.0', '543.0', '544.0', '545.0', '546.0', '547.0', '548.0', '549.0', '550.0', '551.0', '552.0', '553.0', '554.0', '555.0', '556.0', '557.0', '558.0', '559.0', '560.0', '561.0', '562.0', '563.0', '564.0', '565.0', '566.0', '567.0', '568.0', '569.0', '570.0', '571.0', '572.0', '573.0', '574.0', '575.0', '576.0', '577.0', '578.0', '579.0', '580.0', '581.0', '582.0', '583.0', '584.0', '585.0', '586.0', '587.0', '588.0', '589.0', '590.0', '591.0', '592.0', '593.0', '594.0', '595.0', '596.0', '597.0', '598.0', '599.0', '600.0', '601.0', '602.0', '603.0', '604.0', '605.0', '606.0', '607.0', '608.0', '609.0', '610.0', '611.0', '612.0', '613.0', '614.0', '615.0', '616.0', '617.0', '618.0', '619.0', '620.0', '621.0', '622.0', '623.0', '624.0', '625.0', '626.0', '627.0', '628.0', '629.0', '630.0', '631.0', '632.0', '633.0', '634.0', '635.0', '636.0', '637.0', '638.0', '639.0', '640.0', '641.0', '642.0', '643.0', '644.0', '645.0', '646.0', '647.0', '648.0', '649.0', '650.0', '651.0', '652.0', '653.0', '654.0', '655.0', '656.0', '657.0', '658.0', '659.0', '660.0', '661.0', '662.0', '663.0', '664.0', '665.0', '666.0', '667.0', '668.0', '669.0', '670.0', '671.0', '672.0', '673.0', '674.0', '675.0', '676.0', '677.0', '678.0', '679.0', '680.0', '681.0', '682.0', '683.0', '684.0', '685.0', '686.0', '687.0', '688.0', '689.0', '690.0', '691.0', '692.0', '693.0', '694.0', '695.0', '696.0', '697.0', '698.0', '699.0', '700.0', '701.0', '702.0', '703.0', '704.0', '705.0', '706.0', '707.0', '708.0', '709.0', '710.0', '711.0', '712.0', '713.0', '714.0', '715.0', '716.0', '717.0', '718.0', '719.0', '720.0', '721.0', '722.0', '723.0', '724.0', '725.0', '726.0', '727.0', '728.0', '729.0', '730.0', '731.0', '732.0', '733.0', '734.0', '735.0', '736.0', '737.0', '738.0', '739.0', '740.0', '741.0', '742.0', '743.0', '744.0', '745.0', '746.0', '747.0', '748.0', '749.0', '750.0', '751.0', '752.0', '753.0', '754.0', '755.0', '756.0', '757.0', '758.0', '759.0', '760.0', '761.0', '762.0', '763.0', '764.0', '765.0', '766.0', '767.0', '768.0', '769.0', '770.0', '771.0', '772.0', '773.0', '774.0', '775.0', '776.0', '777.0', '778.0', '779.0', '780.0', '781.0', '782.0', '783.0', '784.0', '785.0', '786.0', '787.0', '788.0', '789.0', '790.0', '791.0', '792.0', '793.0', '794.0', '795.0', '796.0', '797.0', '798.0', '799.0', '800.0', '801.0', '802.0', '803.0', '804.0', '805.0', '806.0', '807.0', '808.0', '809.0', '810.0', '811.0', '812.0', '813.0', '814.0', '815.0', '816.0', '817.0', '818.0', '819.0', '820.0', '821.0', '822.0', '823.0', '824.0', '825.0', '826.0', '827.0', '828.0', '829.0', '830.0', '831.0', '832.0', '833.0', '834.0', '835.0', '836.0', '837.0', '838.0', '839.0', '840.0', '841.0', '842.0', '843.0', '844.0', '845.0', '846.0', '847.0', '848.0', '849.0', '850.0', '851.0', '852.0', '853.0', '854.0', '855.0', '856.0', '857.0', '858.0', '859.0', '860.0', '861.0', '862.0', '863.0', '864.0', '865.0', '866.0', '867.0', '868.0', '869.0', '870.0', '871.0', '872.0', '873.0', '874.0', '875.0', '876.0', '877.0', '878.0', '879.0', '880.0', '881.0', '882.0', '883.0', '884.0', '885.0', '886.0', '887.0', '888.0', '889.0', '890.0', '891.0', '892.0', '893.0', '894.0', '895.0', '896.0', '897.0', '898.0', '899.0', '900.0', '901.0', '902.0', '903.0', '904.0', '905.0', '906.0', '907.0', '908.0', '909.0', '910.0', '911.0', '912.0', '913.0', '914.0', '915.0', '916.0', '917.0', '918.0', '919.0', '920.0', '921.0', '922.0', '923.0', '924.0', '925.0', '926.0', '927.0', '928.0', '929.0', '930.0', '931.0', '932.0', '933.0', '934.0', '935.0', '936.0', '937.0', '938.0', '939.0', '940.0', '941.0', '942.0', '943.0', '944.0', '945.0', '946.0', '947.0', '948.0', '949.0', '950.0', '951.0', '952.0', '953.0', '954.0', '955.0', '956.0', '957.0', '958.0', '959.0', '960.0', '961.0', '962.0', '963.0', '964.0', '965.0', '966.0', '967.0', '968.0', '969.0', '970.0', '971.0', '972.0', '973.0', '974.0', '975.0', '976.0', '977.0', '978.0', '979.0', '980.0', '981.0', '982.0', '983.0', '984.0', '985.0', '986.0', '987.0', '988.0', '989.0', '990.0', '991.0', '992.0', '993.0', '994.0', '995.0', '996.0', '997.0', '998.0', '999.0'], 'company': ['1.0', '2.0', '3.0', '4.0', '5.0', '6.0', '7.0', '8.0', '9.0', '10.0', '11.0', '12.0', '13.0', '14.0', '15.0', '16.0', '17.0', '18.0', '19.0', '20.0', '21.0', '22.0', '23.0', '24.0', '25.0', '26.0', '27.0', '28.0', '29.0', '30.0', '31.0', '32.0', '33.0', '34.0', '35.0', '36.0', '37.0', '38.0', '39.0', '40.0', '41.0', '42.0', '43.0', '44.0', '45.0', '46.0', '47.0', '48.0', '49.0', '50.0', '51.0', '52.0', '53.0', '54.0', '55.0', '56.0', '57.0', '58.0', '59.0', '60.0', '61.0', '62.0', '63.0', '64.0', '65.0', '66.0', '67.0', '68.0', '69.0', '70.0', '71.0', '72.0', '73.0', '74.0', '75.0', '76.0', '77.0', '78.0', '79.0', '80.0', '81.0', '82.0', '83.0', '84.0', '85.0', '86.0', '87.0', '88.0', '89.0', '90.0', '91.0', '92.0', '93.0', '94.0', '95.0', '96.0', '97.0', '98.0', '99.0', '100.0', '101.0', '102.0', '103.0', '104.0', '105.0', '106.0', '107.0', '108.0', '109.0', '110.0', '111.0', '112.0', '113.0', '114.0', '115.0', '116.0', '117.0', '118.0', '119.0', '120.0', '121.0', '122.0', '123.0', '124.0', '125.0', '126.0', '127.0', '128.0', '129.0', '130.0', '131.0', '132.0', '133.0', '134.0', '135.0', '136.0', '137.0', '138.0', '139.0', '140.0', '141.0', '142.0', '143.0', '144.0', '145.0', '146.0', '147.0', '148.0', '149.0', '150.0', '151.0', '152.0', '153.0', '154.0', '155.0', '156.0', '157.0', '158.0', '159.0', '160.0', '161.0', '162.0', '163.0', '164.0', '165.0', '166.0', '167.0', '168.0', '169.0', '170.0', '171.0', '172.0', '173.0', '174.0', '175.0', '176.0', '177.0', '178.0', '179.0', '180.0', '181.0', '182.0', '183.0', '184.0', '185.0', '186.0', '187.0', '188.0', '189.0', '190.0', '191.0', '192.0', '193.0', '194.0', '195.0', '196.0', '197.0', '198.0', '199.0', '200.0', '201.0', '202.0', '203.0', '204.0', '205.0', '206.0', '207.0', '208.0', '209.0', '210.0', '211.0', '212.0', '213.0', '214.0', '215.0', '216.0', '217.0', '218.0', '219.0', '220.0', '221.0', '222.0', '223.0', '224.0', '225.0', '226.0', '227.0', '228.0', '229.0', '230.0', '231.0', '232.0', '233.0', '234.0', '235.0', '236.0', '237.0', '238.0', '239.0', '240.0', '241.0', '242.0', '243.0', '244.0', '245.0', '246.0', '247.0', '248.0', '249.0', '250.0', '251.0', '252.0', '253.0', '254.0', '255.0', '256.0', '257.0', '258.0', '259.0', '260.0', '261.0', '262.0', '263.0', '264.0', '265.0', '266.0', '267.0', '268.0', '269.0', '270.0', '271.0', '272.0', '273.0', '274.0', '275.0', '276.0', '277.0', '278.0', '279.0', '280.0', '281.0', '282.0', '283.0', '284.0', '285.0', '286.0', '287.0', '288.0', '289.0', '290.0', '291.0', '292.0', '293.0', '294.0', '295.0', '296.0', '297.0', '298.0', '299.0', '300.0', '301.0', '302.0', '303.0', '304.0', '305.0', '306.0', '307.0', '308.0', '309.0', '310.0', '311.0', '312.0', '313.0', '314.0', '315.0', '316.0', '317.0', '318.0', '319.0', '320.0', '321.0', '322.0', '323.0', '324.0', '325.0', '326.0', '327.0', '328.0', '329.0', '330.0', '331.0', '332.0', '333.0', '334.0', '335.0', '336.0', '337.0', '338.0', '339.0', '340.0', '341.0', '342.0', '343.0', '344.0', '345.0', '346.0', '347.0', '348.0', '349.0', '350.0', '351.0', '352.0', '353.0', '354.0', '355.0', '356.0', '357.0', '358.0', '359.0', '360.0', '361.0', '362.0', '363.0', '364.0', '365.0', '366.0', '367.0', '368.0', '369.0', '370.0', '371.0', '372.0', '373.0', '374.0', '375.0', '376.0', '377.0', '378.0', '379.0', '380.0', '381.0', '382.0', '383.0', '384.0', '385.0', '386.0', '387.0', '388.0', '389.0', '390.0', '391.0', '392.0', '393.0', '394.0', '395.0', '396.0', '397.0', '398.0', '399.0', '400.0', '401.0', '402.0', '403.0', '404.0', '405.0', '406.0', '407.0', '408.0', '409.0', '410.0', '411.0', '412.0', '413.0', '414.0', '415.0', '416.0', '417.0', '418.0', '419.0', '420.0', '421.0', '422.0', '423.0', '424.0', '425.0', '426.0', '427.0', '428.0', '429.0', '430.0', '431.0', '432.0', '433.0', '434.0', '435.0', '436.0', '437.0', '438.0', '439.0', '440.0', '441.0', '442.0', '443.0', '444.0', '445.0', '446.0', '447.0', '448.0', '449.0', '450.0', '451.0', '452.0', '453.0', '454.0', '455.0', '456.0', '457.0', '458.0', '459.0', '460.0', '461.0', '462.0', '463.0', '464.0', '465.0', '466.0', '467.0', '468.0', '469.0', '470.0', '471.0', '472.0', '473.0', '474.0', '475.0', '476.0', '477.0', '478.0', '479.0', '480.0', '481.0', '482.0', '483.0', '484.0', '485.0', '486.0', '487.0', '488.0', '489.0', '490.0', '491.0', '492.0', '493.0', '494.0', '495.0', '496.0', '497.0', '498.0', '499.0', '500.0', '501.0', '502.0', '503.0', '504.0', '505.0', '506.0', '507.0', '508.0', '509.0', '510.0', '511.0', '512.0', '513.0', '514.0', '515.0', '516.0', '517.0', '518.0', '519.0', '520.0', '521.0', '522.0', '523.0', '524.0', '525.0', '526.0', '527.0', '528.0', '529.0', '530.0', '531.0', '532.0', '533.0', '534.0', '535.0', '536.0', '537.0', '538.0', '539.0', '540.0', '541.0', '542.0', '543.0', '544.0', '545.0', '546.0', '547.0', '548.0', '549.0', '550.0', '551.0', '552.0', '553.0', '554.0', '555.0', '556.0', '557.0', '558.0', '559.0', '560.0', '561.0', '562.0', '563.0', '564.0', '565.0', '566.0', '567.0', '568.0', '569.0', '570.0', '571.0', '572.0', '573.0', '574.0', '575.0', '576.0', '577.0', '578.0', '579.0', '580.0', '581.0', '582.0', '583.0', '584.0', '585.0', '586.0', '587.0', '588.0', '589.0', '590.0', '591.0', '592.0', '593.0', '594.0', '595.0', '596.0', '597.0', '598.0', '599.0', '600.0', '601.0', '602.0', '603.0', '604.0', '605.0', '606.0', '607.0', '608.0', '609.0', '610.0', '611.0', '612.0', '613.0', '614.0', '615.0', '616.0', '617.0', '618.0', '619.0', '620.0', '621.0', '622.0', '623.0', '624.0', '625.0', '626.0', '627.0', '628.0', '629.0', '630.0', '631.0', '632.0', '633.0', '634.0', '635.0', '636.0', '637.0', '638.0', '639.0', '640.0', '641.0', '642.0', '643.0', '644.0', '645.0', '646.0', '647.0', '648.0', '649.0', '650.0', '651.0', '652.0', '653.0', '654.0', '655.0', '656.0', '657.0', '658.0', '659.0', '660.0', '661.0', '662.0', '663.0', '664.0', '665.0', '666.0', '667.0', '668.0', '669.0', '670.0', '671.0', '672.0', '673.0', '674.0', '675.0', '676.0', '677.0', '678.0', '679.0', '680.0', '681.0', '682.0', '683.0', '684.0', '685.0', '686.0', '687.0', '688.0', '689.0', '690.0', '691.0', '692.0', '693.0', '694.0', '695.0', '696.0', '697.0', '698.0', '699.0', '700.0', '701.0', '702.0', '703.0', '704.0', '705.0', '706.0', '707.0', '708.0', '709.0', '710.0', '711.0', '712.0', '713.0', '714.0', '715.0', '716.0', '717.0', '718.0', '719.0', '720.0', '721.0', '722.0', '723.0', '724.0', '725.0', '726.0', '727.0', '728.0', '729.0', '730.0', '731.0', '732.0', '733.0', '734.0', '735.0', '736.0', '737.0', '738.0', '739.0', '740.0', '741.0', '742.0', '743.0', '744.0', '745.0', '746.0', '747.0', '748.0', '749.0', '750.0', '751.0', '752.0', '753.0', '754.0', '755.0', '756.0', '757.0', '758.0', '759.0', '760.0', '761.0', '762.0', '763.0', '764.0', '765.0', '766.0', '767.0', '768.0', '769.0', '770.0', '771.0', '772.0', '773.0', '774.0', '775.0', '776.0', '777.0', '778.0', '779.0', '780.0', '781.0', '782.0', '783.0', '784.0', '785.0', '786.0', '787.0', '788.0', '789.0', '790.0', '791.0', '792.0', '793.0', '794.0', '795.0', '796.0', '797.0', '798.0', '799.0', '800.0', '801.0', '802.0', '803.0', '804.0', '805.0', '806.0', '807.0', '808.0', '809.0', '810.0', '811.0', '812.0', '813.0', '814.0', '815.0', '816.0', '817.0', '818.0', '819.0', '820.0', '821.0', '822.0', '823.0', '824.0', '825.0', '826.0', '827.0', '828.0', '829.0', '830.0', '831.0', '832.0', '833.0', '834.0', '835.0', '836.0', '837.0', '838.0', '839.0', '840.0', '841.0', '842.0', '843.0', '844.0', '845.0', '846.0', '847.0', '848.0', '849.0', '850.0', '851.0', '852.0', '853.0', '854.0', '855.0', '856.0', '857.0', '858.0', '859.0', '860.0', '861.0', '862.0', '863.0', '864.0', '865.0', '866.0', '867.0', '868.0', '869.0', '870.0', '871.0', '872.0', '873.0', '874.0', '875.0', '876.0', '877.0', '878.0', '879.0', '880.0', '881.0', '882.0', '883.0', '884.0', '885.0', '886.0', '887.0', '888.0', '889.0', '890.0', '891.0', '892.0', '893.0', '894.0', '895.0', '896.0', '897.0', '898.0', '899.0', '900.0', '901.0', '902.0', '903.0', '904.0', '905.0', '906.0', '907.0', '908.0', '909.0', '910.0', '911.0', '912.0', '913.0', '914.0', '915.0', '916.0', '917.0', '918.0', '919.0', '920.0', '921.0', '922.0', '923.0', '924.0', '925.0', '926.0', '927.0', '928.0', '929.0', '930.0', '931.0', '932.0', '933.0', '934.0', '935.0', '936.0', '937.0', '938.0', '939.0', '940.0', '941.0', '942.0', '943.0', '944.0', '945.0', '946.0', '947.0', '948.0', '949.0', '950.0', '951.0', '952.0', '953.0', '954.0', '955.0', '956.0', '957.0', '958.0', '959.0', '960.0', '961.0', '962.0', '963.0', '964.0', '965.0', '966.0', '967.0', '968.0', '969.0', '970.0', '971.0', '972.0', '973.0', '974.0', '975.0', '976.0', '977.0', '978.0', '979.0', '980.0', '981.0', '982.0', '983.0', '984.0', '985.0', '986.0', '987.0', '988.0', '989.0', '990.0', '991.0', '992.0', '993.0', '994.0', '995.0', '996.0', '997.0', '998.0', '999.0'], 'country': ['PRT', 'GBR', 'USA', 'ESP', 'IRL', 'FRA', 'ROU', 'NOR', 'OMN', 'ARG', 'POL', 'DEU', 'BEL', 'CHE', 'CN', 'GRC', 'ITA', 'NLD', 'DNK', 'RUS', 'SWE', 'AUS', 'EST', 'CZE', 'BRA', 'FIN', 'MOZ', 'BWA', 'LUX', 'SVN', 'ALB', 'IND', 'CHN', 'MEX', 'MAR', 'UKR', 'SMR', 'LVA', 'PRI', 'SRB', 'CHL', 'AUT', 'BLR', 'LTU', 'TUR', 'ZAF', 'AGO', 'ISR', 'CYM', 'ZMB', 'CPV', 'ZWE', 'DZA', 'KOR', 'CRI', 'HUN', 'ARE', 'TUN', 'JAM', 'HRV', 'HKG', 'IRN', 'GEO', 'AND', 'GIB', 'URY', 'JEY', 'CAF', 'CYP', 'COL', 'GGY', 'KWT', 'NGA', 'MDV', 'VEN', 'SVK', 'FJI', 'KAZ', 'PAK', 'IDN', 'LBN', 'PHL', 'SEN', 'SYC', 'AZE', 'BHR', 'NZL', 'THA', 'DOM', 'MKD', 'MYS', 'ARM', 'JPN', 'LKA', 'CUB', 'CMR', 'BIH', 'MUS', 'COM', 'SUR', 'UGA', 'BGR', 'CIV', 'JOR', 'SYR', 'SGP', 'BDI', 'SAU', 'VNM', 'PLW', 'QAT', 'EGY', 'PER', 'MLT', 'MWI', 'ECU', 'MDG', 'ISL', 'UZB', 'NPL', 'BHS', 'MAC', 'TGO', 'TWN', 'DJI', 'STP', 'KNA', 'ETH', 'IRQ', 'HND', 'RWA', 'KHM', 'MCO', 'BGD', 'IMN', 'TJK', 'NIC', 'BEN', 'VGB', 'TZA', 'GAB', 'GHA', 'TMP', 'GLP', 'KEN', 'LIE', 'GNB', 'MNE', 'UMI', 'MYT', 'FRO', 'MMR', 'PAN', 'BFA', 'LBY', 'MLI', 'NAM', 'BOL', 'PRY', 'BRB', 'ABW', 'AIA', 'SLV', 'DMA', 'PYF', 'GUY', 'LCA', 'ATA', 'GTM', 'ASM', 'MRT', 'NCL', 'KIR', 'SDN', 'ATF', 'SLE', 'LAO']}"}, "ml.policies.data.row_id": {"fullname": "ml.policies.data.row_id", "modulename": "ml.policies.data.row_id", "kind": "module", "doc": "

    Registry of datasets requiring row-id generation and their handlers.

    \n"}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"fullname": "ml.policies.data.row_id.ROW_ID_REQUIRED", "modulename": "ml.policies.data.row_id", "qualname": "ROW_ID_REQUIRED", "kind": "variable", "doc": "

    \n", "default_value": "['hotel_bookings']"}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"fullname": "ml.policies.data.row_id.ROW_ID_FUNCTIONS", "modulename": "ml.policies.data.row_id", "qualname": "ROW_ID_FUNCTIONS", "kind": "variable", "doc": "

    \n", "default_value": "{'hotel_bookings': <bound method AddRowIDToHotelBookings.add_row_id of <ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings object>>}"}, "ml.policies.model_params": {"fullname": "ml.policies.model_params", "modulename": "ml.policies.model_params", "kind": "module", "doc": "

    A package with model params policies.

    \n"}, "ml.policies.model_params.catboost_constraints": {"fullname": "ml.policies.model_params.catboost_constraints", "modulename": "ml.policies.model_params.catboost_constraints", "kind": "module", "doc": "

    CatBoost hyperparameter constraint definitions used by validation logic.

    \n"}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints", "kind": "class", "doc": "

    Numeric bounds and sign constraints for a single hyperparameter.

    \n"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmin_value: float | int | None = None,\tmax_value: float | int | None = None,\tallow_zero: bool = True,\tallow_negative: bool = False)"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.min_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | int | None", "default_value": "None"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.max_value", "kind": "variable", "doc": "

    \n", "annotation": ": float | int | None", "default_value": "None"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.allow_zero", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "True"}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"fullname": "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "ParamConstraints.allow_negative", "kind": "variable", "doc": "

    \n", "annotation": ": bool", "default_value": "False"}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"fullname": "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS", "modulename": "ml.policies.model_params.catboost_constraints", "qualname": "CATBOOST_PARAM_CONSTRAINTS", "kind": "variable", "doc": "

    \n", "default_value": "{'depth': ParamConstraints(min_value=1, max_value=16, allow_zero=False, allow_negative=False), 'learning_rate': ParamConstraints(min_value=1e-06, max_value=1.0, allow_zero=False, allow_negative=False), 'l2_leaf_reg': ParamConstraints(min_value=0.0, max_value=100.0, allow_zero=True, allow_negative=False), 'random_strength': ParamConstraints(min_value=0.0, max_value=100.0, allow_zero=True, allow_negative=False), 'min_data_in_leaf': ParamConstraints(min_value=1, max_value=10000, allow_zero=False, allow_negative=False), 'bagging_temperature': ParamConstraints(min_value=0.0, max_value=10.0, allow_zero=True, allow_negative=False), 'border_count': ParamConstraints(min_value=1, max_value=254, allow_zero=False, allow_negative=False), 'colsample_bylevel': ParamConstraints(min_value=0.0, max_value=1.0, allow_zero=False, allow_negative=False)}"}, "ml.policies.promotion": {"fullname": "ml.policies.promotion", "modulename": "ml.policies.promotion", "kind": "module", "doc": "

    A package with promotion policies.

    \n"}, "ml.policies.promotion.threshold_support": {"fullname": "ml.policies.promotion.threshold_support", "modulename": "ml.policies.promotion.threshold_support", "kind": "module", "doc": "

    Task/subtask combinations that support threshold-based decisioning.

    \n"}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"fullname": "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS", "modulename": "ml.policies.promotion.threshold_support", "qualname": "TASKS_SUPPORTING_THRESHOLDS", "kind": "variable", "doc": "

    \n", "default_value": "{('classification', 'binary')}"}, "ml.post_promotion": {"fullname": "ml.post_promotion", "modulename": "ml.post_promotion", "kind": "module", "doc": "

    A package for post-promotion domain logic, including inference and monitoring.

    \n"}, "ml.post_promotion.inference": {"fullname": "ml.post_promotion.inference", "modulename": "ml.post_promotion.inference", "kind": "module", "doc": "

    A package for inference-related code.

    \n"}, "ml.post_promotion.inference.classes": {"fullname": "ml.post_promotion.inference.classes", "modulename": "ml.post_promotion.inference.classes", "kind": "module", "doc": "

    A package for classes in the inference pipeline.

    \n"}, "ml.post_promotion.inference.classes.function_returns": {"fullname": "ml.post_promotion.inference.classes.function_returns", "modulename": "ml.post_promotion.inference.classes.function_returns", "kind": "module", "doc": "

    A module for defining function return types in the inference pipeline.

    \n"}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"fullname": "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn", "modulename": "ml.post_promotion.inference.classes.function_returns", "qualname": "ArtifactLoadingReturn", "kind": "class", "doc": "

    Return type for the artifact loading function.

    \n"}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"fullname": "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__", "modulename": "ml.post_promotion.inference.classes.function_returns", "qualname": "ArtifactLoadingReturn.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tartifact: Any,\tartifact_hash: str,\tartifact_type: Literal['pipeline', 'model'])"}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"fullname": "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact", "modulename": "ml.post_promotion.inference.classes.function_returns", "qualname": "ArtifactLoadingReturn.artifact", "kind": "variable", "doc": "

    \n", "annotation": ": Any"}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"fullname": "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash", "modulename": "ml.post_promotion.inference.classes.function_returns", "qualname": "ArtifactLoadingReturn.artifact_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"fullname": "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type", "modulename": "ml.post_promotion.inference.classes.function_returns", "qualname": "ArtifactLoadingReturn.artifact_type", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['pipeline', 'model']"}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"fullname": "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn", "modulename": "ml.post_promotion.inference.classes.function_returns", "qualname": "PredictionStoringReturn", "kind": "class", "doc": "

    Return type for the prediction storing function.

    \n"}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"fullname": "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__", "modulename": "ml.post_promotion.inference.classes.function_returns", "qualname": "PredictionStoringReturn.__init__", "kind": "function", "doc": "

    \n", "signature": "(file_path: pathlib.Path, cols: list[str])"}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"fullname": "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path", "modulename": "ml.post_promotion.inference.classes.function_returns", "qualname": "PredictionStoringReturn.file_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"fullname": "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols", "modulename": "ml.post_promotion.inference.classes.function_returns", "qualname": "PredictionStoringReturn.cols", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.post_promotion.inference.classes.predictions_schema": {"fullname": "ml.post_promotion.inference.classes.predictions_schema", "modulename": "ml.post_promotion.inference.classes.predictions_schema", "kind": "module", "doc": "

    A module for defining the schema of predictions in the inference pipeline.

    \n"}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"fullname": "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION", "modulename": "ml.post_promotion.inference.classes.predictions_schema", "qualname": "SCHEMA_VERSION", "kind": "variable", "doc": "

    \n", "default_value": "'V1'"}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"fullname": "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS", "modulename": "ml.post_promotion.inference.classes.predictions_schema", "qualname": "BASE_EXPECTED_COLUMNS", "kind": "variable", "doc": "

    \n", "default_value": "['run_id', 'prediction_id', 'timestamp', 'model_stage', 'model_version', 'entity_id', 'input_hash', 'prediction', 'schema_version']"}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"fullname": "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX", "modulename": "ml.post_promotion.inference.classes.predictions_schema", "qualname": "PROBA_PREFIX", "kind": "variable", "doc": "

    \n", "default_value": "'proba_'"}, "ml.post_promotion.inference.execution": {"fullname": "ml.post_promotion.inference.execution", "modulename": "ml.post_promotion.inference.execution", "kind": "module", "doc": "

    A package for the execution code of the inference pipeline.

    \n"}, "ml.post_promotion.inference.execution.execute_inference": {"fullname": "ml.post_promotion.inference.execution.execute_inference", "modulename": "ml.post_promotion.inference.execution.execute_inference", "kind": "module", "doc": "

    \n"}, "ml.post_promotion.inference.execution.execute_inference.logger": {"fullname": "ml.post_promotion.inference.execution.execute_inference.logger", "modulename": "ml.post_promotion.inference.execution.execute_inference", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.inference.execution.execute_inference (WARNING)>"}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"fullname": "ml.post_promotion.inference.execution.execute_inference.execute_inference", "modulename": "ml.post_promotion.inference.execution.execute_inference", "qualname": "execute_inference", "kind": "function", "doc": "

    Run inference for a given model and store predictions with monitoring-ready outputs.

    \n\n

    Args:\n args: Command-line arguments.\n model_metadata: Metadata for the model to run inference with.\n stage: \"production\" or \"staging\" - used for labeling predictions and monitoring.\n timestamp: Current timestamp for partitioning and metadata.\n path: Directory where predictions will be stored.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry,\tstage: Literal['production', 'staging'],\ttimestamp: datetime.datetime,\tpath: pathlib.Path,\trun_id: str) -> None:", "funcdef": "def"}, "ml.post_promotion.inference.execution.predict": {"fullname": "ml.post_promotion.inference.execution.predict", "modulename": "ml.post_promotion.inference.execution.predict", "kind": "module", "doc": "

    Module for prediction execution logic.

    \n"}, "ml.post_promotion.inference.execution.predict.logger": {"fullname": "ml.post_promotion.inference.execution.predict.logger", "modulename": "ml.post_promotion.inference.execution.predict", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.inference.execution.predict (WARNING)>"}, "ml.post_promotion.inference.execution.predict.predict": {"fullname": "ml.post_promotion.inference.execution.predict.predict", "modulename": "ml.post_promotion.inference.execution.predict", "qualname": "predict", "kind": "function", "doc": "

    Generate predictions and probabilities using the provided artifact.

    \n\n

    Args:\n X: Input features for prediction.\n artifact: The trained model artifact.

    \n\n

    Returns:\n A tuple containing the predictions and probabilities.

    \n", "signature": "(\tX: pandas.core.frame.DataFrame,\tartifact: Any) -> tuple[pandas.core.series.Series, pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.post_promotion.inference.hashing": {"fullname": "ml.post_promotion.inference.hashing", "modulename": "ml.post_promotion.inference.hashing", "kind": "module", "doc": "

    A package for hashing utilities in the inference pipeline.

    \n"}, "ml.post_promotion.inference.hashing.input_row": {"fullname": "ml.post_promotion.inference.hashing.input_row", "modulename": "ml.post_promotion.inference.hashing.input_row", "kind": "module", "doc": "

    A module for hashing input rows in the inference pipeline.

    \n"}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"fullname": "ml.post_promotion.inference.hashing.input_row.hash_input_row", "modulename": "ml.post_promotion.inference.hashing.input_row", "qualname": "hash_input_row", "kind": "function", "doc": "

    Generate a stable hash for a given input row.

    \n\n

    Args:\n row: A pandas Series representing a single input row.

    \n\n

    Returns:\n A hexadecimal string representing the hash of the input row.

    \n", "signature": "(row: pandas.core.series.Series) -> str:", "funcdef": "def"}, "ml.post_promotion.inference.loading": {"fullname": "ml.post_promotion.inference.loading", "modulename": "ml.post_promotion.inference.loading", "kind": "module", "doc": "

    A module for loading utilities for the inference pipeline.

    \n"}, "ml.post_promotion.inference.loading.artifact": {"fullname": "ml.post_promotion.inference.loading.artifact", "modulename": "ml.post_promotion.inference.loading.artifact", "kind": "module", "doc": "

    A module for loading artifacts in the inference pipeline.

    \n"}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"fullname": "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact", "modulename": "ml.post_promotion.inference.loading.artifact", "qualname": "load_and_validate_artifact", "kind": "function", "doc": "

    Load model or pipeline artifact based on provided metadata and validate its integrity.

    \n\n

    Args:\n model_metadata: Metadata containing artifact paths and expected hash.

    \n\n

    Returns:\n ArtifactLoadingReturn: The loaded and validated artifact.

    \n", "signature": "(\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry) -> ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn:", "funcdef": "def"}, "ml.post_promotion.inference.persistence": {"fullname": "ml.post_promotion.inference.persistence", "modulename": "ml.post_promotion.inference.persistence", "kind": "module", "doc": "

    A package for persistence-related logic in the inference pipeline.

    \n"}, "ml.post_promotion.inference.persistence.prepare_metadata": {"fullname": "ml.post_promotion.inference.persistence.prepare_metadata", "modulename": "ml.post_promotion.inference.persistence.prepare_metadata", "kind": "module", "doc": "

    A module for preparing metadata to be stored alongside predictions after inference execution.

    \n"}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.post_promotion.inference.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Prepare metadata dictionary to be stored with predictions for monitoring and lineage.

    \n\n

    Args:\n model_metadata: Metadata for the model used in inference.\n args: Command-line arguments.\n run_id: Unique identifier for the inference run.\n timestamp: Current timestamp for partitioning and metadata.\n stage: \"production\" or \"staging\" - used for labeling predictions and monitoring.\n cols: List of column names in the predictions.\n snapshot_bindings_id: ID for the snapshot bindings.\n feature_lineage: List of feature lineage objects.\n artifact_type: Type of the artifact (pipeline or model).\n artifact_hash: Hash of the artifact.\n inference_latency_seconds: Latency of the inference process in seconds.

    \n\n

    Returns:\n Dictionary of metadata to be stored with predictions.

    \n", "signature": "(\t*,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry,\targs: argparse.Namespace,\trun_id: str,\ttimestamp: datetime.datetime,\tstage: Literal['production', 'staging'],\tcols: list[str],\tsnapshot_bindings_id: str,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tartifact_type: Literal['pipeline', 'model'],\tartifact_hash: str,\tinference_latency_seconds: float) -> dict:", "funcdef": "def"}, "ml.post_promotion.inference.persistence.store_predictions": {"fullname": "ml.post_promotion.inference.persistence.store_predictions", "modulename": "ml.post_promotion.inference.persistence.store_predictions", "kind": "module", "doc": "

    A module for storing predictions and related metadata after inference execution in the post-promotion pipeline.

    \n"}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"fullname": "ml.post_promotion.inference.persistence.store_predictions.logger", "modulename": "ml.post_promotion.inference.persistence.store_predictions", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.inference.persistence.store_predictions (WARNING)>"}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"fullname": "ml.post_promotion.inference.persistence.store_predictions.store_predictions", "modulename": "ml.post_promotion.inference.persistence.store_predictions", "qualname": "store_predictions", "kind": "function", "doc": "

    Store predictions along with metadata and hashes for monitoring purposes.

    \n\n

    Args:\n features: Input features used for prediction, required for entity key and monitoring.\n entity_key: Column name in features that serves as the entity identifier for monitoring joins.\n run_id: Unique identifier for the inference run.\n input_hash: Hashes of input rows for monitoring data drift and alignment.\n path: Directory where predictions will be stored.\n timestamp: Current timestamp for partitioning and metadata.\n predictions: Series of prediction results.\n probabilities: DataFrame of prediction probabilities.\n model_metadata: Metadata for the model used for prediction.\n stage: \"production\" or \"staging\" - used for labeling predictions and monitoring.

    \n\n

    Returns:\n PredictionStoringReturn: The result of the prediction storing operation.

    \n", "signature": "(\t*,\tfeatures: pandas.core.frame.DataFrame,\tentity_key: str,\trun_id: str,\tinput_hash: pandas.core.series.Series,\tpath: pathlib.Path,\ttimestamp: datetime.datetime,\tpredictions: pandas.core.series.Series,\tprobabilities: pandas.core.frame.DataFrame,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry,\tstage: Literal['production', 'staging']) -> ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn:", "funcdef": "def"}, "ml.post_promotion.inference.validation": {"fullname": "ml.post_promotion.inference.validation", "modulename": "ml.post_promotion.inference.validation", "kind": "module", "doc": "

    A package for validation utilities of the inference pipeline.

    \n"}, "ml.post_promotion.inference.validation.validate_columns": {"fullname": "ml.post_promotion.inference.validation.validate_columns", "modulename": "ml.post_promotion.inference.validation.validate_columns", "kind": "module", "doc": "

    \n"}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"fullname": "ml.post_promotion.inference.validation.validate_columns.validate_columns", "modulename": "ml.post_promotion.inference.validation.validate_columns", "qualname": "validate_columns", "kind": "function", "doc": "

    \n", "signature": "(df: pandas.core.frame.DataFrame) -> list[str]:", "funcdef": "def"}, "ml.post_promotion.monitoring": {"fullname": "ml.post_promotion.monitoring", "modulename": "ml.post_promotion.monitoring", "kind": "module", "doc": "

    A package for monitoring-related code.

    \n"}, "ml.post_promotion.monitoring.classes": {"fullname": "ml.post_promotion.monitoring.classes", "modulename": "ml.post_promotion.monitoring.classes", "kind": "module", "doc": "

    A package for classes in the monitoring pipeline.

    \n"}, "ml.post_promotion.monitoring.classes.function_returns": {"fullname": "ml.post_promotion.monitoring.classes.function_returns", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "kind": "module", "doc": "

    A module for defining function return types in the monitoring pipeline.

    \n"}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"fullname": "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "qualname": "InferenceFeaturesAndTarget", "kind": "class", "doc": "

    Data class to hold inference features and target for monitoring.

    \n"}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"fullname": "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "qualname": "InferenceFeaturesAndTarget.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tfeatures: pandas.core.frame.DataFrame,\ttarget: pandas.core.series.Series)"}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"fullname": "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "qualname": "InferenceFeaturesAndTarget.features", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"fullname": "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "qualname": "InferenceFeaturesAndTarget.target", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series"}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"fullname": "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "qualname": "MonitoringExecutionOutput", "kind": "class", "doc": "

    Data class to hold the output of a monitoring execution.

    \n"}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"fullname": "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "qualname": "MonitoringExecutionOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tdrift_results: dict[str, float],\tperformance_results: dict[str | ml.promotion.config.promotion_thresholds.MetricName, dict[str, typing.Any]],\tmodel_version: str)"}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"fullname": "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "qualname": "MonitoringExecutionOutput.drift_results", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float]"}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"fullname": "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "qualname": "MonitoringExecutionOutput.performance_results", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str | ml.promotion.config.promotion_thresholds.MetricName, dict[str, typing.Any]]"}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"fullname": "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version", "modulename": "ml.post_promotion.monitoring.classes.function_returns", "qualname": "MonitoringExecutionOutput.model_version", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.post_promotion.monitoring.execution": {"fullname": "ml.post_promotion.monitoring.execution", "modulename": "ml.post_promotion.monitoring.execution", "kind": "module", "doc": "

    A package for the execution code of the monitoring pipeline.

    \n"}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"fullname": "ml.post_promotion.monitoring.execution.execute_monitoring", "modulename": "ml.post_promotion.monitoring.execution.execute_monitoring", "kind": "module", "doc": "

    Module for executing the post-promotion monitoring pipeline.

    \n"}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"fullname": "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring", "modulename": "ml.post_promotion.monitoring.execution.execute_monitoring", "qualname": "execute_monitoring", "kind": "function", "doc": "

    Execute the post-promotion monitoring pipeline for a given model and stage.

    \n\n

    Args:\n args: Command-line arguments containing necessary identifiers.\n model_metadata: Metadata for the model being evaluated.\n stage: The stage for which to execute monitoring (\"production\" or \"staging\").\n promotion_metrics_info: Configuration for promotion metrics.

    \n\n

    Returns:\n A MonitoringExecutionOutput object containing the results of the monitoring execution.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry,\tstage: Literal['production', 'staging'],\tpromotion_metrics_info: ml.promotion.config.promotion_thresholds.PromotionMetricsConfig) -> ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput:", "funcdef": "def"}, "ml.post_promotion.monitoring.extraction": {"fullname": "ml.post_promotion.monitoring.extraction", "modulename": "ml.post_promotion.monitoring.extraction", "kind": "module", "doc": "

    A package for extraction-related code in post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.extraction.expected_performance": {"fullname": "ml.post_promotion.monitoring.extraction.expected_performance", "modulename": "ml.post_promotion.monitoring.extraction.expected_performance", "kind": "module", "doc": "

    Module for extracting expected performance metrics from model metadata for post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"fullname": "ml.post_promotion.monitoring.extraction.expected_performance.logger", "modulename": "ml.post_promotion.monitoring.extraction.expected_performance", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.monitoring.extraction.expected_performance (WARNING)>"}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"fullname": "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance", "modulename": "ml.post_promotion.monitoring.extraction.expected_performance", "qualname": "get_expected_performance", "kind": "function", "doc": "

    Extract expected performance metrics from model metadata for post-promotion monitoring.

    \n", "signature": "(\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry,\tpromotion_metrics_info: ml.promotion.config.promotion_thresholds.PromotionMetricsConfig):", "funcdef": "def"}, "ml.post_promotion.monitoring.feature_drifting": {"fullname": "ml.post_promotion.monitoring.feature_drifting", "modulename": "ml.post_promotion.monitoring.feature_drifting", "kind": "module", "doc": "

    A package for monitoring feature drifting.

    \n"}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"fullname": "ml.post_promotion.monitoring.feature_drifting.analysis", "modulename": "ml.post_promotion.monitoring.feature_drifting.analysis", "kind": "module", "doc": "

    Analysis functions for feature drifting monitoring.

    \n"}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"fullname": "ml.post_promotion.monitoring.feature_drifting.analysis.logger", "modulename": "ml.post_promotion.monitoring.feature_drifting.analysis", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.monitoring.feature_drifting.analysis (WARNING)>"}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"fullname": "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result", "modulename": "ml.post_promotion.monitoring.feature_drifting.analysis", "qualname": "analyze_ks_result", "kind": "function", "doc": "

    Analyze KS statistic result and log appropriate messages.

    \n\n

    Args:\n feature_name: Name of the feature being analyzed.\n ks_stat: The KS statistic value to analyze.

    \n", "signature": "(feature_name: str, ks_stat: float) -> None:", "funcdef": "def"}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"fullname": "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result", "modulename": "ml.post_promotion.monitoring.feature_drifting.analysis", "qualname": "analyze_psi_result", "kind": "function", "doc": "

    Analyze PSI value and log appropriate messages.

    \n\n

    Args:\n feature_name: Name of the feature being analyzed.\n psi_val: The PSI value to analyze.

    \n", "signature": "(feature_name: str, psi_val: float) -> None:", "funcdef": "def"}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"fullname": "ml.post_promotion.monitoring.feature_drifting.comparison", "modulename": "ml.post_promotion.monitoring.feature_drifting.comparison", "kind": "module", "doc": "

    Module for comparing feature distributions between training and inference data in post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"fullname": "ml.post_promotion.monitoring.feature_drifting.comparison.logger", "modulename": "ml.post_promotion.monitoring.feature_drifting.comparison", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.monitoring.feature_drifting.comparison (WARNING)>"}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"fullname": "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions", "modulename": "ml.post_promotion.monitoring.feature_drifting.comparison", "qualname": "compare_feature_distributions", "kind": "function", "doc": "

    Compare feature distributions between training and inference data.

    \n\n

    Args:\n stage: The stage for which to compare feature distributions ('production' or 'staging').\n inference_features: DataFrame containing the inference features.\n training_features: DataFrame containing the training features.

    \n\n

    Returns:\n A dictionary mapping feature names to their computed drift scores.

    \n", "signature": "(\t*,\tstage: Literal['production', 'staging'],\tinference_features: pandas.core.frame.DataFrame,\ttraining_features: pandas.core.frame.DataFrame):", "funcdef": "def"}, "ml.post_promotion.monitoring.feature_drifting.computations": {"fullname": "ml.post_promotion.monitoring.feature_drifting.computations", "modulename": "ml.post_promotion.monitoring.feature_drifting.computations", "kind": "module", "doc": "

    Computations for feature drifting monitoring.

    \n"}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"fullname": "ml.post_promotion.monitoring.feature_drifting.computations.logger", "modulename": "ml.post_promotion.monitoring.feature_drifting.computations", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.monitoring.feature_drifting.computations (WARNING)>"}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"fullname": "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi", "modulename": "ml.post_promotion.monitoring.feature_drifting.computations", "qualname": "compute_psi", "kind": "function", "doc": "

    Population Stability Index (PSI) for feature drifting.

    \n\n

    Args:\n expected: A pandas Series representing the expected distribution.\n actual: A pandas Series representing the actual distribution.\n bins: Number of bins to use for numeric features.

    \n\n

    Returns:\n A float representing the PSI value.

    \n", "signature": "(\texpected: pandas.core.series.Series,\tactual: pandas.core.series.Series,\tbins: int = 10) -> float:", "funcdef": "def"}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"fullname": "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks", "modulename": "ml.post_promotion.monitoring.feature_drifting.computations", "qualname": "compute_ks", "kind": "function", "doc": "

    Kolmogorov-Smirnov statistic for numeric features.

    \n\n

    Args:\n expected: A pandas Series representing the expected distribution.\n actual: A pandas Series representing the actual distribution.

    \n\n

    Returns:\n A float representing the KS statistic.

    \n", "signature": "(\texpected: pandas.core.series.Series,\tactual: pandas.core.series.Series) -> float:", "funcdef": "def"}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"fullname": "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift", "modulename": "ml.post_promotion.monitoring.feature_drifting.computations", "qualname": "compute_drift", "kind": "function", "doc": "

    Compute drift between expected and actual distributions.

    \n\n

    Args:\n expected: A pandas Series representing the expected distribution.\n actual: A pandas Series representing the actual distribution.

    \n\n

    Returns:\n A float representing the computed drift metric (KS statistic or PSI value).

    \n", "signature": "(\texpected: pandas.core.series.Series,\tactual: pandas.core.series.Series) -> float:", "funcdef": "def"}, "ml.post_promotion.monitoring.feature_drifting.utils": {"fullname": "ml.post_promotion.monitoring.feature_drifting.utils", "modulename": "ml.post_promotion.monitoring.feature_drifting.utils", "kind": "module", "doc": "

    Utility functions for feature drifting monitoring.

    \n"}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"fullname": "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method", "modulename": "ml.post_promotion.monitoring.feature_drifting.utils", "qualname": "infer_drift_method", "kind": "function", "doc": "

    Decide which drift metric to use for a feature.

    \n\n

    Returns:\n \"ks\" or \"psi\"

    \n", "signature": "(series: pandas.core.series.Series) -> Literal['ks', 'psi']:", "funcdef": "def"}, "ml.post_promotion.monitoring.loading": {"fullname": "ml.post_promotion.monitoring.loading", "modulename": "ml.post_promotion.monitoring.loading", "kind": "module", "doc": "

    A package for loading utilities of the monitoring pipeline.

    \n"}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"fullname": "ml.post_promotion.monitoring.loading.inference_features_and_target", "modulename": "ml.post_promotion.monitoring.loading.inference_features_and_target", "kind": "module", "doc": "

    Module for loading inference features and target for post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"fullname": "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target", "modulename": "ml.post_promotion.monitoring.loading.inference_features_and_target", "qualname": "load_inference_features_and_target", "kind": "function", "doc": "

    Load inference features and target for post-promotion monitoring.

    \n\n

    Args:\n args: Command-line arguments containing necessary identifiers.\n model_metadata: Metadata for the model being evaluated.\n stage: The stage for which to load inference data ('production' or 'staging').

    \n\n

    Returns:\n An InferenceFeaturesAndTarget object containing the features and target.

    \n", "signature": "(\targs: argparse.Namespace,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry,\tstage: Literal['production', 'staging']) -> ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget:", "funcdef": "def"}, "ml.post_promotion.monitoring.loading.predictions": {"fullname": "ml.post_promotion.monitoring.loading.predictions", "modulename": "ml.post_promotion.monitoring.loading.predictions", "kind": "module", "doc": "

    Module for loading predictions for post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"fullname": "ml.post_promotion.monitoring.loading.predictions.load_predictions", "modulename": "ml.post_promotion.monitoring.loading.predictions", "qualname": "load_predictions", "kind": "function", "doc": "

    Load predictions for post-promotion monitoring.

    \n\n

    Args:\n args: Command-line arguments containing necessary identifiers.\n stage: The stage for which to load predictions ('production' or 'staging').

    \n\n

    Returns:\n A DataFrame containing the predictions.

    \n", "signature": "(\targs: argparse.Namespace,\tstage: Literal['production', 'staging']) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"fullname": "ml.post_promotion.monitoring.loading.promotion_metrics_info", "modulename": "ml.post_promotion.monitoring.loading.promotion_metrics_info", "kind": "module", "doc": "

    \n"}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"fullname": "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger", "modulename": "ml.post_promotion.monitoring.loading.promotion_metrics_info", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.monitoring.loading.promotion_metrics_info (WARNING)>"}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"fullname": "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info", "modulename": "ml.post_promotion.monitoring.loading.promotion_metrics_info", "qualname": "get_promotion_metrics_info", "kind": "function", "doc": "

    Load and validate promotion metrics information for post-promotion monitoring.

    \n\n

    Args:\n args: Command-line arguments containing necessary identifiers.

    \n\n

    Returns:\n A PromotionMetricsConfig object containing the promotion metrics information.

    \n", "signature": "(\targs: argparse.Namespace) -> ml.promotion.config.promotion_thresholds.PromotionMetricsConfig:", "funcdef": "def"}, "ml.post_promotion.monitoring.loading.training_features": {"fullname": "ml.post_promotion.monitoring.loading.training_features", "modulename": "ml.post_promotion.monitoring.loading.training_features", "kind": "module", "doc": "

    Module for loading training features for post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"fullname": "ml.post_promotion.monitoring.loading.training_features.load_training_features", "modulename": "ml.post_promotion.monitoring.loading.training_features", "qualname": "load_training_features", "kind": "function", "doc": "

    Load training features for post-promotion monitoring.

    \n\n

    Args:\n args: Command-line arguments containing necessary identifiers.\n model_metadata: Metadata for the model being evaluated.

    \n\n

    Returns:\n A DataFrame containing the training features.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.post_promotion.monitoring.loading.training_metrics": {"fullname": "ml.post_promotion.monitoring.loading.training_metrics", "modulename": "ml.post_promotion.monitoring.loading.training_metrics", "kind": "module", "doc": "

    Module for loading training metrics for post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"fullname": "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file", "modulename": "ml.post_promotion.monitoring.loading.training_metrics", "qualname": "load_training_metrics_file", "kind": "function", "doc": "

    Load training metrics for post-promotion monitoring.

    \n\n

    Args:\n args: Command-line arguments containing necessary identifiers.\n model_metadata: Metadata for the model being monitored.

    \n\n

    Returns:\n TrainingMetrics: The loaded and validated training metrics.

    \n", "signature": "(\targs: argparse.Namespace,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry) -> ml.modeling.models.metrics.TrainingMetrics:", "funcdef": "def"}, "ml.post_promotion.monitoring.performance": {"fullname": "ml.post_promotion.monitoring.performance", "modulename": "ml.post_promotion.monitoring.performance", "kind": "module", "doc": "

    A package for calculating and assessing model performance post-promotion.

    \n"}, "ml.post_promotion.monitoring.performance.assessment": {"fullname": "ml.post_promotion.monitoring.performance.assessment", "modulename": "ml.post_promotion.monitoring.performance.assessment", "kind": "module", "doc": "

    Module for assessing model performance in post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.performance.assessment.logger": {"fullname": "ml.post_promotion.monitoring.performance.assessment.logger", "modulename": "ml.post_promotion.monitoring.performance.assessment", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.monitoring.performance.assessment (WARNING)>"}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"fullname": "ml.post_promotion.monitoring.performance.assessment.assess_model_performance", "modulename": "ml.post_promotion.monitoring.performance.assessment", "qualname": "assess_model_performance", "kind": "function", "doc": "

    Assess model performance against expected thresholds.

    \n\n

    Args:\n args: Command-line arguments containing necessary identifiers.\n model_metadata: Metadata for the model being evaluated.\n stage: The stage of the model being evaluated (\"production\" or \"staging\").\n target: The target variable for the inference data.\n promotion_metrics_info: Configuration containing expected performance thresholds and directions for each metric.

    \n\n

    Returns:\n A dictionary containing the performance assessment results for each metric.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry,\tstage: Literal['production', 'staging'],\ttarget: pandas.core.series.Series,\tpromotion_metrics_info: ml.promotion.config.promotion_thresholds.PromotionMetricsConfig) -> dict[str | ml.promotion.config.promotion_thresholds.MetricName, dict[str, typing.Any]]:", "funcdef": "def"}, "ml.post_promotion.monitoring.performance.calculation": {"fullname": "ml.post_promotion.monitoring.performance.calculation", "modulename": "ml.post_promotion.monitoring.performance.calculation", "kind": "module", "doc": "

    Module for calculating current performance metrics for post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.performance.calculation.logger": {"fullname": "ml.post_promotion.monitoring.performance.calculation.logger", "modulename": "ml.post_promotion.monitoring.performance.calculation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.monitoring.performance.calculation (WARNING)>"}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"fullname": "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance", "modulename": "ml.post_promotion.monitoring.performance.calculation", "qualname": "calculate_current_performance", "kind": "function", "doc": "

    Calculate current performance metrics based on predictions and target values.

    \n\n

    Args:\n args: Command-line arguments containing necessary identifiers.\n model_metadata: Metadata for the model being evaluated.\n stage: The stage of the model being evaluated (\"production\" or \"staging\").\n target: The target variable for the inference data.

    \n\n

    Returns:\n A dictionary containing the current performance metrics.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry,\tstage: Literal['production', 'staging'],\ttarget: pandas.core.series.Series) -> dict[str, float]:", "funcdef": "def"}, "ml.post_promotion.monitoring.performance.comparison": {"fullname": "ml.post_promotion.monitoring.performance.comparison", "modulename": "ml.post_promotion.monitoring.performance.comparison", "kind": "module", "doc": "

    A module for comparing performance metrics between production and staging models in post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.performance.comparison.logger": {"fullname": "ml.post_promotion.monitoring.performance.comparison.logger", "modulename": "ml.post_promotion.monitoring.performance.comparison", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.monitoring.performance.comparison (WARNING)>"}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"fullname": "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance", "modulename": "ml.post_promotion.monitoring.performance.comparison", "qualname": "compare_production_and_staging_performance", "kind": "function", "doc": "

    Compare performance metrics between production and staging monitoring models.

    \n\n

    Args:\n prod_monitoring_output: The monitoring output from the production model.\n stage_monitoring_output: The monitoring output from the staging model.

    \n\n

    Returns:\n A dictionary containing the comparison results for each metric.

    \n", "signature": "(\tprod_monitoring_output: ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput,\tstage_monitoring_output: ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.post_promotion.monitoring.persistence": {"fullname": "ml.post_promotion.monitoring.persistence", "modulename": "ml.post_promotion.monitoring.persistence", "kind": "module", "doc": "

    A package for persistence-related functionality in the post-promotion monitoring pipeline.

    \n"}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"fullname": "ml.post_promotion.monitoring.persistence.prepare_metadata", "modulename": "ml.post_promotion.monitoring.persistence.prepare_metadata", "kind": "module", "doc": "

    A module for preparing metadata for post-promotion monitoring.

    \n"}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.post_promotion.monitoring.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Prepare metadata for post-promotion monitoring.

    \n\n

    Args:\n args: Command-line arguments containing necessary identifiers.\n run_id: The ID of the monitoring run.\n timestamp: The timestamp of the monitoring run.\n prod_monitoring_output: The monitoring output from the production model.\n stage_monitoring_output: The monitoring output from the staging model.

    \n\n

    Returns:\n A dictionary containing the prepared metadata.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\trun_id: str,\ttimestamp: datetime.datetime,\tprod_monitoring_output: ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput | None = None,\tstage_monitoring_output: ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput | None = None) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.post_promotion.shared": {"fullname": "ml.post_promotion.shared", "modulename": "ml.post_promotion.shared", "kind": "module", "doc": "

    A package for shared utilities in post-promotion pipelines.

    \n"}, "ml.post_promotion.shared.classes": {"fullname": "ml.post_promotion.shared.classes", "modulename": "ml.post_promotion.shared.classes", "kind": "module", "doc": "

    A package for shared classes in post-promotion pipelines.

    \n"}, "ml.post_promotion.shared.classes.function_returns": {"fullname": "ml.post_promotion.shared.classes.function_returns", "modulename": "ml.post_promotion.shared.classes.function_returns", "kind": "module", "doc": "

    A module for defining function return types in post-promotion pipelines.

    \n"}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"fullname": "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "ModelRegistryInfo", "kind": "class", "doc": "

    A dataclass to hold model registry information.

    \n"}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"fullname": "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "ModelRegistryInfo.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tprod_meta: ml.promotion.config.registry_entry.RegistryEntry | None,\tstage_meta: ml.promotion.config.registry_entry.RegistryEntry | None)"}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"fullname": "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "ModelRegistryInfo.prod_meta", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.registry_entry.RegistryEntry | None"}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"fullname": "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "ModelRegistryInfo.stage_meta", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.registry_entry.RegistryEntry | None"}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"fullname": "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "PrepareFeaturesReturn", "kind": "class", "doc": "

    A dataclass to hold the return values of the prepare_features function.

    \n"}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"fullname": "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "PrepareFeaturesReturn.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tfeatures: pandas.core.frame.DataFrame,\tentity_key: str,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\ttarget: pandas.core.series.Series)"}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"fullname": "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "PrepareFeaturesReturn.features", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"fullname": "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "PrepareFeaturesReturn.entity_key", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"fullname": "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "PrepareFeaturesReturn.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"fullname": "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target", "modulename": "ml.post_promotion.shared.classes.function_returns", "qualname": "PrepareFeaturesReturn.target", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series"}, "ml.post_promotion.shared.loading": {"fullname": "ml.post_promotion.shared.loading", "modulename": "ml.post_promotion.shared.loading", "kind": "module", "doc": "

    A package for shared loading utilities in post-promotion pipelines.

    \n"}, "ml.post_promotion.shared.loading.features": {"fullname": "ml.post_promotion.shared.loading.features", "modulename": "ml.post_promotion.shared.loading.features", "kind": "module", "doc": "

    Module responsible for preparing features for post-promotion pipelines (monitoring and inference).

    \n"}, "ml.post_promotion.shared.loading.features.prepare_features": {"fullname": "ml.post_promotion.shared.loading.features.prepare_features", "modulename": "ml.post_promotion.shared.loading.features", "qualname": "prepare_features", "kind": "function", "doc": "

    \n", "signature": "(\t*,\targs: argparse.Namespace,\tmodel_metadata: ml.promotion.config.registry_entry.RegistryEntry,\tsnapshot_bindings_id: str | None = None) -> ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn:", "funcdef": "def"}, "ml.post_promotion.shared.loading.model_registry": {"fullname": "ml.post_promotion.shared.loading.model_registry", "modulename": "ml.post_promotion.shared.loading.model_registry", "kind": "module", "doc": "

    A module for loading model registry information in post-promotion pipelines.

    \n"}, "ml.post_promotion.shared.loading.model_registry.logger": {"fullname": "ml.post_promotion.shared.loading.model_registry.logger", "modulename": "ml.post_promotion.shared.loading.model_registry", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.post_promotion.shared.loading.model_registry (WARNING)>"}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"fullname": "ml.post_promotion.shared.loading.model_registry.get_model_registry_info", "modulename": "ml.post_promotion.shared.loading.model_registry", "qualname": "get_model_registry_info", "kind": "function", "doc": "

    Fetch model registry information for the latest snapshot.

    \n\n

    Returns:\n ModelRegistryInfo: An instance of ModelRegistryInfo containing model registry information.

    \n", "signature": "(\targs: argparse.Namespace) -> ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo:", "funcdef": "def"}, "ml.promotion": {"fullname": "ml.promotion", "modulename": "ml.promotion", "kind": "module", "doc": "

    A package with promotion-specific code.

    \n"}, "ml.promotion.comparisons": {"fullname": "ml.promotion.comparisons", "modulename": "ml.promotion.comparisons", "kind": "module", "doc": "

    A package for comparisons of candidate models.

    \n"}, "ml.promotion.comparisons.production": {"fullname": "ml.promotion.comparisons.production", "modulename": "ml.promotion.comparisons.production", "kind": "module", "doc": "

    Production-baseline comparison logic for promotion decisions.

    \n"}, "ml.promotion.comparisons.production.logger": {"fullname": "ml.promotion.comparisons.production.logger", "modulename": "ml.promotion.comparisons.production", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.comparisons.production (WARNING)>"}, "ml.promotion.comparisons.production.compare_against_production_model": {"fullname": "ml.promotion.comparisons.production.compare_against_production_model", "modulename": "ml.promotion.comparisons.production", "qualname": "compare_against_production_model", "kind": "function", "doc": "

    Compare candidate evaluation metrics against current production metrics.

    \n\n

    Args:\n evaluation_metrics: Nested metrics grouped by split set.\n current_prod_model_info: Registry payload for current production model.\n metric_sets: Metric sets to compare.\n metric_names: Metric names to compare.\n directions: Comparison direction for each metric.

    \n\n

    Returns:\n ProductionComparisonResult: Production comparison outcome.

    \n", "signature": "(\t*,\tevaluation_metrics: dict[str, dict[str, float]],\tcurrent_prod_model_info: dict | None,\tmetric_sets: list[ml.promotion.config.promotion_thresholds.MetricSet],\tmetric_names: list[ml.promotion.config.promotion_thresholds.MetricName],\tdirections: dict[ml.promotion.config.promotion_thresholds.MetricName, ml.promotion.config.promotion_thresholds.Direction]) -> ml.promotion.constants.constants.ProductionComparisonResult:", "funcdef": "def"}, "ml.promotion.comparisons.thresholds": {"fullname": "ml.promotion.comparisons.thresholds", "modulename": "ml.promotion.comparisons.thresholds", "kind": "module", "doc": "

    Threshold comparison logic for promotion decisions.

    \n"}, "ml.promotion.comparisons.thresholds.logger": {"fullname": "ml.promotion.comparisons.thresholds.logger", "modulename": "ml.promotion.comparisons.thresholds", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.comparisons.thresholds (WARNING)>"}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"fullname": "ml.promotion.comparisons.thresholds.compare_against_thresholds", "modulename": "ml.promotion.comparisons.thresholds", "qualname": "compare_against_thresholds", "kind": "function", "doc": "

    Compare evaluation metrics against configured promotion thresholds.

    \n\n

    Args:\n evaluation_metrics: Nested metrics grouped by split set.\n promotion_thresholds: Validated threshold configuration.

    \n\n

    Returns:\n ThresholdComparisonResult: Threshold comparison outcome.

    \n", "signature": "(\t*,\tevaluation_metrics: dict[str, dict[str, float]],\tpromotion_thresholds: ml.promotion.config.promotion_thresholds.PromotionThresholds) -> ml.promotion.constants.constants.ThresholdComparisonResult:", "funcdef": "def"}, "ml.promotion.config": {"fullname": "ml.promotion.config", "modulename": "ml.promotion.config", "kind": "module", "doc": "

    A package with promotion-specific pydantic models.

    \n"}, "ml.promotion.config.promotion_thresholds": {"fullname": "ml.promotion.config.promotion_thresholds", "modulename": "ml.promotion.config.promotion_thresholds", "kind": "module", "doc": "

    Pydantic schemas and enums for promotion policy configuration.

    \n"}, "ml.promotion.config.promotion_thresholds.logger": {"fullname": "ml.promotion.config.promotion_thresholds.logger", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.config.promotion_thresholds (WARNING)>"}, "ml.promotion.config.promotion_thresholds.MetricSet": {"fullname": "ml.promotion.config.promotion_thresholds.MetricSet", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricSet", "kind": "class", "doc": "

    Supported metric split sets for promotion evaluation.

    \n", "bases": "enum.StrEnum"}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"fullname": "ml.promotion.config.promotion_thresholds.MetricSet.TEST", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricSet.TEST", "kind": "variable", "doc": "

    \n", "default_value": "<MetricSet.TEST: 'test'>"}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"fullname": "ml.promotion.config.promotion_thresholds.MetricSet.VAL", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricSet.VAL", "kind": "variable", "doc": "

    \n", "default_value": "<MetricSet.VAL: 'val'>"}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"fullname": "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricSet.TRAIN", "kind": "variable", "doc": "

    \n", "default_value": "<MetricSet.TRAIN: 'train'>"}, "ml.promotion.config.promotion_thresholds.MetricName": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName", "kind": "class", "doc": "

    Supported metric names used in promotion criteria.

    \n", "bases": "enum.StrEnum"}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.POSITIVE_RATE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.POSITIVE_RATE: 'positive_rate'>"}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.PREDICTION_POSITIVE_RATE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.PREDICTION_POSITIVE_RATE: 'prediction_positive_rate'>"}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.ACCURACY", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.ACCURACY: 'accuracy'>"}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.F1", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.F1", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.F1: 'f1'>"}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.PRECISION", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.PRECISION", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.PRECISION: 'precision'>"}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.RECALL", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.RECALL", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.RECALL: 'recall'>"}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.BALANCED_ACCURACY", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.BALANCED_ACCURACY: 'balanced_accuracy'>"}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.SPECIFICITY", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.SPECIFICITY: 'specificity'>"}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.ROC_AUC", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.ROC_AUC: 'roc_auc'>"}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.PR_AUC", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.PR_AUC: 'pr_auc'>"}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.LOG_LOSS", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.LOG_LOSS: 'log_loss'>"}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.BRIER_SCORE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.BRIER_SCORE: 'brier_score'>"}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.ECE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.ECE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.ECE: 'ece'>"}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.MAE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.MAE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.MAE: 'mae'>"}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.MSE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.MSE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.MSE: 'mse'>"}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.RMSE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.RMSE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.RMSE: 'rmse'>"}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.R2", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.R2", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.R2: 'r2'>"}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.MEDIAN_AE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.MEDIAN_AE: 'median_ae'>"}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.EXPLAINED_VARIANCE", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.EXPLAINED_VARIANCE: 'explained_variance'>"}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.RESIDUAL_MEAN", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.RESIDUAL_MEAN: 'residual_mean'>"}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"fullname": "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "MetricName.RESIDUAL_STD", "kind": "variable", "doc": "

    \n", "default_value": "<MetricName.RESIDUAL_STD: 'residual_std'>"}, "ml.promotion.config.promotion_thresholds.Direction": {"fullname": "ml.promotion.config.promotion_thresholds.Direction", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "Direction", "kind": "class", "doc": "

    Optimization direction per promotion metric.

    \n", "bases": "enum.StrEnum"}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"fullname": "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "Direction.MAXIMIZE", "kind": "variable", "doc": "

    \n", "default_value": "<Direction.MAXIMIZE: 'maximize'>"}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"fullname": "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "Direction.MINIMIZE", "kind": "variable", "doc": "

    \n", "default_value": "<Direction.MINIMIZE: 'minimize'>"}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionMetricsConfig", "kind": "class", "doc": "

    Metric selection and direction configuration for promotion checks.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionMetricsConfig.sets", "kind": "variable", "doc": "

    List of metric sets to consider for promotion

    \n", "annotation": ": list[ml.promotion.config.promotion_thresholds.MetricSet]", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionMetricsConfig.metrics", "kind": "variable", "doc": "

    List of metrics to consider for promotion

    \n", "annotation": ": list[ml.promotion.config.promotion_thresholds.MetricName]", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionMetricsConfig.directions", "kind": "variable", "doc": "

    dictionary mapping each metric to its optimization direction

    \n", "annotation": ": dict[ml.promotion.config.promotion_thresholds.MetricName, ml.promotion.config.promotion_thresholds.Direction]", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionMetricsConfig.validate_directions", "kind": "function", "doc": "

    Ensure direction entries are provided for every configured metric.

    \n\n

    Args:\n directions: Directions mapping.\n info: Pydantic validation context containing already parsed data.

    \n\n

    Returns:\n dict[MetricName, Direction]: Validated directions mapping.

    \n", "signature": "(\tcls,\tdirections: dict[ml.promotion.config.promotion_thresholds.MetricName, ml.promotion.config.promotion_thresholds.Direction],\tinfo: pydantic_core.core_schema.ValidationInfo) -> dict[ml.promotion.config.promotion_thresholds.MetricName, ml.promotion.config.promotion_thresholds.Direction]:", "funcdef": "def"}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"fullname": "ml.promotion.config.promotion_thresholds.ThresholdsConfig", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "ThresholdsConfig", "kind": "class", "doc": "

    Per-split threshold values for promotion metrics.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"fullname": "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "ThresholdsConfig.test", "kind": "variable", "doc": "

    dictionary of metric thresholds for the test set

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"fullname": "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "ThresholdsConfig.val", "kind": "variable", "doc": "

    dictionary of metric thresholds for the validation set

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"fullname": "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "ThresholdsConfig.train", "kind": "variable", "doc": "

    dictionary of metric thresholds for the training set

    \n", "annotation": ": dict[str, float]", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"fullname": "ml.promotion.config.promotion_thresholds.LineageConfig", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "LineageConfig", "kind": "class", "doc": "

    Lineage metadata describing threshold config provenance.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"fullname": "ml.promotion.config.promotion_thresholds.LineageConfig.created_by", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "LineageConfig.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"fullname": "ml.promotion.config.promotion_thresholds.LineageConfig.created_at", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "LineageConfig.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": datetime.datetime", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionThresholds", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionThresholds", "kind": "class", "doc": "

    Top-level validated promotion threshold configuration.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionThresholds.promotion_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.promotion_thresholds.PromotionMetricsConfig", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionThresholds.thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.promotion_thresholds.ThresholdsConfig", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionThresholds.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.promotion_thresholds.LineageConfig", "default_value": "PydanticUndefined"}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"fullname": "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency", "modulename": "ml.promotion.config.promotion_thresholds", "qualname": "PromotionThresholds.validate_consistency", "kind": "function", "doc": "

    Validate metric sets/metrics align with provided threshold blocks.

    \n\n

    Args:\n self: Candidate promotion thresholds instance.

    \n\n

    Returns:\n PromotionThresholds: Validated promotion-threshold object.

    \n", "signature": "(self):", "funcdef": "def"}, "ml.promotion.config.registry_entry": {"fullname": "ml.promotion.config.registry_entry", "modulename": "ml.promotion.config.registry_entry", "kind": "module", "doc": "

    A module defining the data model for a registry entry in the ML promotion process. This includes details about the experiment, artifacts, feature lineage, and metrics associated with a promoted model.

    \n"}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"fullname": "ml.promotion.config.registry_entry.RegistryArtifacts", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryArtifacts", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"fullname": "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryArtifacts.model_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"fullname": "ml.promotion.config.registry_entry.RegistryArtifacts.model_path", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryArtifacts.model_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"fullname": "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryArtifacts.pipeline_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"fullname": "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryArtifacts.pipeline_path", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"fullname": "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryArtifacts.top_k_feature_importances_path", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"fullname": "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryArtifacts.top_k_feature_importances_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"fullname": "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryArtifacts.top_k_shap_importances_path", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"fullname": "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryArtifacts.top_k_shap_importances_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"fullname": "ml.promotion.config.registry_entry.RegistryFeatureSetLineage", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryFeatureSetLineage", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"fullname": "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryFeatureSetLineage.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"fullname": "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryFeatureSetLineage.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"fullname": "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryFeatureSetLineage.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"fullname": "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryFeatureSetLineage.file_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"fullname": "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryFeatureSetLineage.in_memory_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"fullname": "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryFeatureSetLineage.feature_schema_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"fullname": "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryFeatureSetLineage.operator_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"fullname": "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryFeatureSetLineage.feature_type", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['tabular']", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"fullname": "ml.promotion.config.registry_entry.RegistryEntryMetrics", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntryMetrics", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"fullname": "ml.promotion.config.registry_entry.RegistryEntryMetrics.train", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntryMetrics.train", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float | int]", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"fullname": "ml.promotion.config.registry_entry.RegistryEntryMetrics.val", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntryMetrics.val", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float | int]", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"fullname": "ml.promotion.config.registry_entry.RegistryEntryMetrics.test", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntryMetrics.test", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float | int]", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntry": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "pydantic.main.BaseModel"}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.experiment_id", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.train_run_id", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.model_version", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.model_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.pipeline_cfg_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.artifacts", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.artifacts", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.registry_entry.RegistryArtifacts", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.promotion.config.registry_entry.RegistryFeatureSetLineage]", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.metrics", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.registry_entry.RegistryEntryMetrics", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"fullname": "ml.promotion.config.registry_entry.RegistryEntry.git_commit", "modulename": "ml.promotion.config.registry_entry", "qualname": "RegistryEntry.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"fullname": "ml.promotion.config.registry_entry.ProductionRegistryEntry", "modulename": "ml.promotion.config.registry_entry", "qualname": "ProductionRegistryEntry", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "RegistryEntry"}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"fullname": "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id", "modulename": "ml.promotion.config.registry_entry", "qualname": "ProductionRegistryEntry.promotion_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"fullname": "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at", "modulename": "ml.promotion.config.registry_entry", "qualname": "ProductionRegistryEntry.promoted_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"fullname": "ml.promotion.config.registry_entry.StagingRegistryEntry", "modulename": "ml.promotion.config.registry_entry", "qualname": "StagingRegistryEntry", "kind": "class", "doc": "

    !!! abstract \"Usage Documentation\"\n Models

    \n\n

    A base class for creating Pydantic models.

    \n\n

    Attributes:\n __class_vars__: The names of the class variables defined on the model.\n __private_attributes__: Metadata about the private attributes of the model.\n __signature__: The synthesized __init__ [Signature][inspect.Signature] of the model.

    \n\n
    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n__pydantic_core_schema__: The core schema of the model.\n__pydantic_custom_init__: Whether the model has a custom `__init__` function.\n__pydantic_decorators__: Metadata containing the decorators defined on the model.\n    This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n__pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n    __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n__pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n__pydantic_post_init__: The name of the post-init method for the model, if defined.\n__pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel].\n__pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model.\n__pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model.\n\n__pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects.\n__pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects.\n\n__pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra]\n    is set to `'allow'`.\n__pydantic_fields_set__: The names of fields explicitly set during instantiation.\n__pydantic_private__: Values of private attributes set on the model instance.\n
    \n", "bases": "RegistryEntry"}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"fullname": "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id", "modulename": "ml.promotion.config.registry_entry", "qualname": "StagingRegistryEntry.staging_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"fullname": "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at", "modulename": "ml.promotion.config.registry_entry", "qualname": "StagingRegistryEntry.staged_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.promotion.constants": {"fullname": "ml.promotion.constants", "modulename": "ml.promotion.constants", "kind": "module", "doc": "

    A package with promotion-specific constants.

    \n"}, "ml.promotion.constants.constants": {"fullname": "ml.promotion.constants.constants", "modulename": "ml.promotion.constants.constants", "kind": "module", "doc": "

    Shared constants and typed result containers for promotion workflows.

    \n"}, "ml.promotion.constants.constants.logger": {"fullname": "ml.promotion.constants.constants.logger", "modulename": "ml.promotion.constants.constants", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.constants.constants (WARNING)>"}, "ml.promotion.constants.constants.Stage": {"fullname": "ml.promotion.constants.constants.Stage", "modulename": "ml.promotion.constants.constants", "qualname": "Stage", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['staging', 'production']"}, "ml.promotion.constants.constants.RunnersMetadata": {"fullname": "ml.promotion.constants.constants.RunnersMetadata", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata", "kind": "class", "doc": "

    Metadata payloads loaded from train/eval/explain run directories.

    \n"}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"fullname": "ml.promotion.constants.constants.RunnersMetadata.__init__", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata.__init__", "kind": "function", "doc": "

    \n", "signature": "(\ttraining_metadata: ml.metadata.schemas.runners.training.TrainingMetadata,\tevaluation_metadata: ml.metadata.schemas.runners.evaluation.EvaluationMetadata,\texplainability_metadata: ml.metadata.schemas.runners.explainability.ExplainabilityMetadata)"}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"fullname": "ml.promotion.constants.constants.RunnersMetadata.training_metadata", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata.training_metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.training.TrainingMetadata"}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"fullname": "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata.evaluation_metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.evaluation.EvaluationMetadata"}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"fullname": "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata", "modulename": "ml.promotion.constants.constants", "qualname": "RunnersMetadata.explainability_metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.metadata.schemas.runners.explainability.ExplainabilityMetadata"}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult", "kind": "class", "doc": "

    Outcome of comparing evaluation metrics against promotion thresholds.

    \n"}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.__init__", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmeets_thresholds: bool,\tmessage: str,\ttarget_sets: list[ml.promotion.config.promotion_thresholds.MetricSet],\ttarget_metrics: list[ml.promotion.config.promotion_thresholds.MetricName],\tdirections: dict[ml.promotion.config.promotion_thresholds.MetricName, ml.promotion.config.promotion_thresholds.Direction])"}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.meets_thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.message", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.message", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.target_sets", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.promotion.config.promotion_thresholds.MetricSet]"}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.target_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.promotion.config.promotion_thresholds.MetricName]"}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"fullname": "ml.promotion.constants.constants.ThresholdComparisonResult.directions", "modulename": "ml.promotion.constants.constants", "qualname": "ThresholdComparisonResult.directions", "kind": "variable", "doc": "

    \n", "annotation": ": dict[ml.promotion.config.promotion_thresholds.MetricName, ml.promotion.config.promotion_thresholds.Direction]"}, "ml.promotion.constants.constants.ProductionComparisonResult": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult", "kind": "class", "doc": "

    Outcome of comparing candidate model metrics against production.

    \n"}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult.__init__", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tbeats_previous: bool,\tmessage: str,\tprevious_production_metrics: dict | None)"}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult.beats_previous", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult.message", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult.message", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"fullname": "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics", "modulename": "ml.promotion.constants.constants", "qualname": "ProductionComparisonResult.previous_production_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity", "kind": "class", "doc": "

    Identifiers for the currently registered production model run.

    \n"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.__init__", "kind": "function", "doc": "

    \n", "signature": "(\texperiment_id: str | None,\ttrain_run_id: str | None,\teval_run_id: str | None,\texplain_run_id: str | None,\tpromotion_id: str | None)"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"fullname": "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id", "modulename": "ml.promotion.constants.constants", "qualname": "PreviousProductionRunIdentity.promotion_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.constants.EPSILON": {"fullname": "ml.promotion.constants.constants.EPSILON", "modulename": "ml.promotion.constants.constants", "qualname": "EPSILON", "kind": "variable", "doc": "

    \n", "default_value": "1e-08"}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"fullname": "ml.promotion.constants.constants.COMPARISON_DIRECTIONS", "modulename": "ml.promotion.constants.constants", "qualname": "COMPARISON_DIRECTIONS", "kind": "variable", "doc": "

    \n", "default_value": "{<Direction.MAXIMIZE: 'maximize'>: <function <lambda>>, <Direction.MINIMIZE: 'minimize'>: <function <lambda>>}"}, "ml.promotion.constants.promotion_metadata_dict": {"fullname": "ml.promotion.constants.promotion_metadata_dict", "modulename": "ml.promotion.constants.promotion_metadata_dict", "kind": "module", "doc": "

    \n"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.train_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.eval_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.explain_run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.stage", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.promotion_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"fullname": "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "RunIdentity.staging_id", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Decision", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Decision", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Decision.promoted", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Decision.promoted", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Decision.reason", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Decision.reason", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Decision.beats_previous", "kind": "variable", "doc": "

    \n", "annotation": ": bool | None"}, "ml.promotion.constants.promotion_metadata_dict.Context": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context.git_commit", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context.promotion_conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context.training_conda_env_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"fullname": "ml.promotion.constants.promotion_metadata_dict.Context.timestamp", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "Context.timestamp", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.promotion_metadata_dict.RunIdentity"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.previous_production_run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.promotion_metadata_dict.RunIdentity"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.previous_production_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.promotion_thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.promotion_thresholds_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.decision", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.promotion_metadata_dict.Decision"}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"fullname": "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context", "modulename": "ml.promotion.constants.promotion_metadata_dict", "qualname": "PromotionMetadataDict.context", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.promotion_metadata_dict.Context"}, "ml.promotion.context": {"fullname": "ml.promotion.context", "modulename": "ml.promotion.context", "kind": "module", "doc": "

    Context builders and path models for promotion workflow execution.

    \n"}, "ml.promotion.context.PromotionPaths": {"fullname": "ml.promotion.context.PromotionPaths", "modulename": "ml.promotion.context", "qualname": "PromotionPaths", "kind": "class", "doc": "

    Filesystem paths required during a promotion run.

    \n"}, "ml.promotion.context.PromotionPaths.__init__": {"fullname": "ml.promotion.context.PromotionPaths.__init__", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmodel_registry_dir: pathlib.Path,\trun_dir: pathlib.Path,\tpromotion_configs_dir: pathlib.Path,\ttrain_run_dir: pathlib.Path,\teval_run_dir: pathlib.Path,\texplain_run_dir: pathlib.Path,\tregistry_path: pathlib.Path,\tarchive_path: pathlib.Path)"}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"fullname": "ml.promotion.context.PromotionPaths.model_registry_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.model_registry_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.run_dir": {"fullname": "ml.promotion.context.PromotionPaths.run_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.run_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"fullname": "ml.promotion.context.PromotionPaths.promotion_configs_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.promotion_configs_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.train_run_dir": {"fullname": "ml.promotion.context.PromotionPaths.train_run_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.train_run_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"fullname": "ml.promotion.context.PromotionPaths.eval_run_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.eval_run_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"fullname": "ml.promotion.context.PromotionPaths.explain_run_dir", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.explain_run_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.registry_path": {"fullname": "ml.promotion.context.PromotionPaths.registry_path", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.registry_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionPaths.archive_path": {"fullname": "ml.promotion.context.PromotionPaths.archive_path", "modulename": "ml.promotion.context", "qualname": "PromotionPaths.archive_path", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.promotion.context.PromotionContext": {"fullname": "ml.promotion.context.PromotionContext", "modulename": "ml.promotion.context", "qualname": "PromotionContext", "kind": "class", "doc": "

    Runtime context passed through promotion service components.

    \n"}, "ml.promotion.context.PromotionContext.__init__": {"fullname": "ml.promotion.context.PromotionContext.__init__", "modulename": "ml.promotion.context", "qualname": "PromotionContext.__init__", "kind": "function", "doc": "

    \n", "signature": "(\targs: argparse.Namespace,\trun_id: str,\ttimestamp: str,\tpaths: ml.promotion.context.PromotionPaths,\trunners_metadata: ml.promotion.constants.constants.RunnersMetadata | None = None)"}, "ml.promotion.context.PromotionContext.args": {"fullname": "ml.promotion.context.PromotionContext.args", "modulename": "ml.promotion.context", "qualname": "PromotionContext.args", "kind": "variable", "doc": "

    \n", "annotation": ": argparse.Namespace"}, "ml.promotion.context.PromotionContext.run_id": {"fullname": "ml.promotion.context.PromotionContext.run_id", "modulename": "ml.promotion.context", "qualname": "PromotionContext.run_id", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.context.PromotionContext.timestamp": {"fullname": "ml.promotion.context.PromotionContext.timestamp", "modulename": "ml.promotion.context", "qualname": "PromotionContext.timestamp", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.context.PromotionContext.paths": {"fullname": "ml.promotion.context.PromotionContext.paths", "modulename": "ml.promotion.context", "qualname": "PromotionContext.paths", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.context.PromotionPaths"}, "ml.promotion.context.PromotionContext.runners_metadata": {"fullname": "ml.promotion.context.PromotionContext.runners_metadata", "modulename": "ml.promotion.context", "qualname": "PromotionContext.runners_metadata", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.constants.RunnersMetadata | None", "default_value": "None"}, "ml.promotion.context.build_context": {"fullname": "ml.promotion.context.build_context", "modulename": "ml.promotion.context", "qualname": "build_context", "kind": "function", "doc": "

    Build promotion context with generated run identity and paths.

    \n\n

    Args:\n args: Parsed CLI arguments for the promotion command.

    \n\n

    Returns:\n Promotion context containing run identifiers, resolved paths, and metadata.

    \n", "signature": "(args: argparse.Namespace) -> ml.promotion.context.PromotionContext:", "funcdef": "def"}, "ml.promotion.getters": {"fullname": "ml.promotion.getters", "modulename": "ml.promotion.getters", "kind": "module", "doc": "

    A package with promotion getters.

    \n"}, "ml.promotion.getters.get": {"fullname": "ml.promotion.getters.get", "modulename": "ml.promotion.getters.get", "kind": "module", "doc": "

    Data extraction helpers for promotion workflow inputs and artifacts.

    \n"}, "ml.promotion.getters.get.logger": {"fullname": "ml.promotion.getters.get.logger", "modulename": "ml.promotion.getters.get", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.getters.get (WARNING)>"}, "ml.promotion.getters.get.get_runners_metadata": {"fullname": "ml.promotion.getters.get.get_runners_metadata", "modulename": "ml.promotion.getters.get", "qualname": "get_runners_metadata", "kind": "function", "doc": "

    Load train/eval/explain metadata payloads from run directories.

    \n\n

    Args:\n train_run_dir: Training run directory.\n eval_run_dir: Evaluation run directory.\n explain_run_dir: Explainability run directory.

    \n\n

    Returns:\n RunnersMetadata: Wrapper containing loaded metadata payloads.

    \n", "signature": "(\ttrain_run_dir: pathlib.Path,\teval_run_dir: pathlib.Path,\texplain_run_dir: pathlib.Path) -> ml.promotion.constants.constants.RunnersMetadata:", "funcdef": "def"}, "ml.promotion.getters.get.extract_thresholds": {"fullname": "ml.promotion.getters.get.extract_thresholds", "modulename": "ml.promotion.getters.get", "qualname": "extract_thresholds", "kind": "function", "doc": "

    Extract problem/segment-specific threshold config from global mapping.

    \n\n

    Args:\n promotion_thresholds: Full promotion-threshold mapping.\n problem: Problem key.\n segment: Segment key.

    \n\n

    Returns:\n dict: Threshold configuration for the given problem and segment.

    \n", "signature": "(promotion_thresholds: dict, problem: str, segment: str) -> dict:", "funcdef": "def"}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"fullname": "ml.promotion.getters.get.get_pipeline_cfg_hash", "modulename": "ml.promotion.getters.get", "qualname": "get_pipeline_cfg_hash", "kind": "function", "doc": "

    Extract pipeline config hash from training metadata.

    \n\n

    Args:\n training_metadata: Training metadata payload.

    \n\n

    Returns:\n str: Pipeline configuration hash.

    \n", "signature": "(\ttraining_metadata: ml.metadata.schemas.runners.training.TrainingMetadata) -> str:", "funcdef": "def"}, "ml.promotion.getters.get.get_training_conda_env_hash": {"fullname": "ml.promotion.getters.get.get_training_conda_env_hash", "modulename": "ml.promotion.getters.get", "qualname": "get_training_conda_env_hash", "kind": "function", "doc": "

    Load training runtime and return recorded conda environment hash.

    \n\n

    Args:\n train_run_dir: Training run directory.

    \n\n

    Returns:\n str: Conda environment hash captured during training.

    \n", "signature": "(train_run_dir: pathlib.Path) -> str:", "funcdef": "def"}, "ml.promotion.persistence": {"fullname": "ml.promotion.persistence", "modulename": "ml.promotion.persistence", "kind": "module", "doc": "

    A package for promotion-specific persistance.

    \n"}, "ml.promotion.persistence.prepare": {"fullname": "ml.promotion.persistence.prepare", "modulename": "ml.promotion.persistence.prepare", "kind": "module", "doc": "

    Preparation helpers for promotion run-info and metadata payloads.

    \n"}, "ml.promotion.persistence.prepare.logger": {"fullname": "ml.promotion.persistence.prepare.logger", "modulename": "ml.promotion.persistence.prepare", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.persistence.prepare (WARNING)>"}, "ml.promotion.persistence.prepare.prepare_run_information": {"fullname": "ml.promotion.persistence.prepare.prepare_run_information", "modulename": "ml.promotion.persistence.prepare", "qualname": "prepare_run_information", "kind": "function", "doc": "

    Build run-info payload to be written into model registry entries.

    \n\n

    Args:\n args: Parsed promotion CLI arguments.\n experiment_id: Experiment identifier.\n train_run_id: Training run identifier.\n eval_run_id: Evaluation run identifier.\n explain_run_id: Explainability run identifier.\n run_id: Promotion/staging run identifier.\n timestamp: Current timestamp string.\n training_metadata: Training metadata payload.\n explainability_metadata: Explainability metadata payload.\n metrics: Evaluation metrics payload.\n git_commit: Git commit hash.

    \n\n

    Returns:\n dict: Registry-ready run information payload.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\texperiment_id: str,\ttrain_run_id: str,\teval_run_id: str,\texplain_run_id: str,\trun_id: str | None,\ttimestamp: str,\ttraining_metadata: ml.metadata.schemas.runners.training.TrainingMetadata,\texplainability_metadata: ml.metadata.schemas.runners.explainability.ExplainabilityMetadata,\tmetrics: dict,\tgit_commit: str) -> dict:", "funcdef": "def"}, "ml.promotion.persistence.prepare.prepare_metadata": {"fullname": "ml.promotion.persistence.prepare.prepare_metadata", "modulename": "ml.promotion.persistence.prepare", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build promotion metadata payload persisted in promotion run directory.

    \n\n

    Args:\n run_id: Promotion/staging run identifier.\n args: Parsed promotion CLI arguments.\n metrics: Evaluation metrics payload.\n previous_production_metrics: Metrics for previous production run, if any.\n promotion_thresholds: Validated promotion thresholds.\n promoted: Whether promotion decision is positive.\n beats_previous: Whether candidate beats previous production model.\n reason: Human-readable decision reason.\n git_commit: Git commit hash.\n timestamp: Current timestamp string.\n previous_production_run_identity: Previous production run identity metadata.\n train_run_dir: Training run directory.

    \n\n

    Returns:\n dict: Promotion metadata payload.

    \n\n

    Notes:\n Promotion and training conda-environment hashes are compared and logged\n to surface reproducibility risk without blocking promotion flow.

    \n\n

    Side Effects:\n Captures runtime environment export and may emit warnings on\n environment/hash mismatches.

    \n", "signature": "(\t*,\trun_id: str,\targs: argparse.Namespace,\tmetrics: dict,\tprevious_production_metrics: dict | None,\tpromotion_thresholds: ml.promotion.config.promotion_thresholds.PromotionThresholds,\tpromoted: bool,\tbeats_previous: bool,\treason: str,\tgit_commit: str,\ttimestamp: str,\tprevious_production_run_identity: ml.promotion.constants.constants.PreviousProductionRunIdentity,\ttrain_run_dir: pathlib.Path) -> dict:", "funcdef": "def"}, "ml.promotion.persistence.registry": {"fullname": "ml.promotion.persistence.registry", "modulename": "ml.promotion.persistence.registry", "kind": "module", "doc": "

    Registry update and diff-persistence helpers for promotion workflow.

    \n"}, "ml.promotion.persistence.registry.logger": {"fullname": "ml.promotion.persistence.registry.logger", "modulename": "ml.promotion.persistence.registry", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.persistence.registry (WARNING)>"}, "ml.promotion.persistence.registry.update_registry_and_archive": {"fullname": "ml.promotion.persistence.registry.update_registry_and_archive", "modulename": "ml.promotion.persistence.registry", "qualname": "update_registry_and_archive", "kind": "function", "doc": "

    Update active registry and archive previous production entry when needed.

    \n\n

    Args:\n model_registry: Current active model registry.\n archive_registry: Current archive registry.\n stage: Promotion stage.\n run_info: Registry run-info payload.\n problem: Problem key.\n segment: Segment key.\n registry_path: Active registry file path.\n archive_path: Archive registry file path.

    \n\n

    Returns:\n dict: Updated active registry dictionary.

    \n", "signature": "(\t*,\tmodel_registry: dict,\tarchive_registry: dict,\tstage: Literal['staging', 'production'],\trun_info: dict,\tproblem: str,\tsegment: str,\tregistry_path: pathlib.Path = WindowsPath('model_registry/models.yaml'),\tarchive_path: pathlib.Path = WindowsPath('model_registry/archive.yaml')) -> dict:", "funcdef": "def"}, "ml.promotion.persistence.registry.persist_registry_diff": {"fullname": "ml.promotion.persistence.registry.persist_registry_diff", "modulename": "ml.promotion.persistence.registry", "qualname": "persist_registry_diff", "kind": "function", "doc": "

    Persist before/after registry snapshot for auditability.

    \n\n

    Args:\n previous_registry: Registry state before update.\n updated_registry: Registry state after update.\n run_dir: Promotion run directory.

    \n\n

    Returns:\n None: Writes registry-diff artifact to disk.

    \n", "signature": "(\t*,\tprevious_registry: dict,\tupdated_registry: dict,\trun_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.promotion.persister": {"fullname": "ml.promotion.persister", "modulename": "ml.promotion.persister", "kind": "module", "doc": "

    Persistence service for promotion decisions, registry updates, and metadata.

    \n"}, "ml.promotion.persister.logger": {"fullname": "ml.promotion.persister.logger", "modulename": "ml.promotion.persister", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.persister (WARNING)>"}, "ml.promotion.persister.PromotionPersister": {"fullname": "ml.promotion.persister.PromotionPersister", "modulename": "ml.promotion.persister", "qualname": "PromotionPersister", "kind": "class", "doc": "

    Persists promotion outcomes and registry mutations.

    \n"}, "ml.promotion.persister.PromotionPersister.persist": {"fullname": "ml.promotion.persister.PromotionPersister.persist", "modulename": "ml.promotion.persister", "qualname": "PromotionPersister.persist", "kind": "function", "doc": "

    Persist decision effects, registry diffs, and promotion metadata.

    \n\n

    Args:\n context: Promotion execution context.\n state: Promotion state snapshot.\n result: Promotion strategy result.

    \n\n

    Returns:\n None: Persists promotion side effects.

    \n", "signature": "(\tself,\tcontext: ml.promotion.context.PromotionContext,\tstate: ml.promotion.state.PromotionState,\tresult: ml.promotion.result.PromotionResult):", "funcdef": "def"}, "ml.promotion.result": {"fullname": "ml.promotion.result", "modulename": "ml.promotion.result", "kind": "module", "doc": "

    Result model for promotion strategy execution outcomes.

    \n"}, "ml.promotion.result.PromotionResult": {"fullname": "ml.promotion.result.PromotionResult", "modulename": "ml.promotion.result", "qualname": "PromotionResult", "kind": "class", "doc": "

    Normalized outcome payload returned by promotion strategies.

    \n"}, "ml.promotion.result.PromotionResult.__init__": {"fullname": "ml.promotion.result.PromotionResult.__init__", "modulename": "ml.promotion.result", "qualname": "PromotionResult.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tpromotion_decision: bool,\tbeats_previous: bool,\tprevious_production_metrics: dict | None,\trun_info: dict | None = None,\tproduction_comparison: ml.promotion.constants.constants.ProductionComparisonResult | None = None)"}, "ml.promotion.result.PromotionResult.promotion_decision": {"fullname": "ml.promotion.result.PromotionResult.promotion_decision", "modulename": "ml.promotion.result", "qualname": "PromotionResult.promotion_decision", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.result.PromotionResult.beats_previous": {"fullname": "ml.promotion.result.PromotionResult.beats_previous", "modulename": "ml.promotion.result", "qualname": "PromotionResult.beats_previous", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"fullname": "ml.promotion.result.PromotionResult.previous_production_metrics", "modulename": "ml.promotion.result", "qualname": "PromotionResult.previous_production_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None"}, "ml.promotion.result.PromotionResult.run_info": {"fullname": "ml.promotion.result.PromotionResult.run_info", "modulename": "ml.promotion.result", "qualname": "PromotionResult.run_info", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.promotion.result.PromotionResult.production_comparison": {"fullname": "ml.promotion.result.PromotionResult.production_comparison", "modulename": "ml.promotion.result", "qualname": "PromotionResult.production_comparison", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.constants.ProductionComparisonResult | None", "default_value": "None"}, "ml.promotion.service": {"fullname": "ml.promotion.service", "modulename": "ml.promotion.service", "kind": "module", "doc": "

    Application service orchestrating end-to-end promotion workflow.

    \n"}, "ml.promotion.service.logger": {"fullname": "ml.promotion.service.logger", "modulename": "ml.promotion.service", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.service (WARNING)>"}, "ml.promotion.service.PromotionService": {"fullname": "ml.promotion.service.PromotionService", "modulename": "ml.promotion.service", "qualname": "PromotionService", "kind": "class", "doc": "

    Coordinates validation, state loading, strategy execution, and persistence.

    \n"}, "ml.promotion.service.PromotionService.__init__": {"fullname": "ml.promotion.service.PromotionService.__init__", "modulename": "ml.promotion.service", "qualname": "PromotionService.__init__", "kind": "function", "doc": "

    Initialize promotion service dependencies.

    \n", "signature": "()"}, "ml.promotion.service.PromotionService.run": {"fullname": "ml.promotion.service.PromotionService.run", "modulename": "ml.promotion.service", "qualname": "PromotionService.run", "kind": "function", "doc": "

    Execute complete promotion workflow for the given context.

    \n\n

    Args:\n context: Promotion execution context.

    \n\n

    Returns:\n Any: Strategy result payload persisted by the promotion service.

    \n", "signature": "(self, context: ml.promotion.context.PromotionContext):", "funcdef": "def"}, "ml.promotion.state": {"fullname": "ml.promotion.state", "modulename": "ml.promotion.state", "kind": "module", "doc": "

    State model containing promotion inputs loaded from persisted artifacts.

    \n"}, "ml.promotion.state.PromotionState": {"fullname": "ml.promotion.state.PromotionState", "modulename": "ml.promotion.state", "qualname": "PromotionState", "kind": "class", "doc": "

    Immutable-like snapshot of loaded state for promotion decision flow.

    \n"}, "ml.promotion.state.PromotionState.__init__": {"fullname": "ml.promotion.state.PromotionState.__init__", "modulename": "ml.promotion.state", "qualname": "PromotionState.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmodel_registry: dict,\tarchive_registry: dict,\tevaluation_metrics: dict,\tpromotion_thresholds: ml.promotion.config.promotion_thresholds.PromotionThresholds,\tcurrent_prod_model_info: dict | None,\tprevious_production_run_identity: ml.promotion.constants.constants.PreviousProductionRunIdentity,\tgit_commit: str,\tthreshold_comparison: ml.promotion.constants.constants.ThresholdComparisonResult)"}, "ml.promotion.state.PromotionState.model_registry": {"fullname": "ml.promotion.state.PromotionState.model_registry", "modulename": "ml.promotion.state", "qualname": "PromotionState.model_registry", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.state.PromotionState.archive_registry": {"fullname": "ml.promotion.state.PromotionState.archive_registry", "modulename": "ml.promotion.state", "qualname": "PromotionState.archive_registry", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.state.PromotionState.evaluation_metrics": {"fullname": "ml.promotion.state.PromotionState.evaluation_metrics", "modulename": "ml.promotion.state", "qualname": "PromotionState.evaluation_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict"}, "ml.promotion.state.PromotionState.promotion_thresholds": {"fullname": "ml.promotion.state.PromotionState.promotion_thresholds", "modulename": "ml.promotion.state", "qualname": "PromotionState.promotion_thresholds", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.config.promotion_thresholds.PromotionThresholds"}, "ml.promotion.state.PromotionState.current_prod_model_info": {"fullname": "ml.promotion.state.PromotionState.current_prod_model_info", "modulename": "ml.promotion.state", "qualname": "PromotionState.current_prod_model_info", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None"}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"fullname": "ml.promotion.state.PromotionState.previous_production_run_identity", "modulename": "ml.promotion.state", "qualname": "PromotionState.previous_production_run_identity", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.constants.PreviousProductionRunIdentity"}, "ml.promotion.state.PromotionState.git_commit": {"fullname": "ml.promotion.state.PromotionState.git_commit", "modulename": "ml.promotion.state", "qualname": "PromotionState.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.promotion.state.PromotionState.threshold_comparison": {"fullname": "ml.promotion.state.PromotionState.threshold_comparison", "modulename": "ml.promotion.state", "qualname": "PromotionState.threshold_comparison", "kind": "variable", "doc": "

    \n", "annotation": ": ml.promotion.constants.constants.ThresholdComparisonResult"}, "ml.promotion.state_loader": {"fullname": "ml.promotion.state_loader", "modulename": "ml.promotion.state_loader", "kind": "module", "doc": "

    State-loading service for promotion workflow execution.

    \n"}, "ml.promotion.state_loader.logger": {"fullname": "ml.promotion.state_loader.logger", "modulename": "ml.promotion.state_loader", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.state_loader (WARNING)>"}, "ml.promotion.state_loader.PromotionStateLoader": {"fullname": "ml.promotion.state_loader.PromotionStateLoader", "modulename": "ml.promotion.state_loader", "qualname": "PromotionStateLoader", "kind": "class", "doc": "

    Loads registries, thresholds, and metrics into a promotion state object.

    \n"}, "ml.promotion.state_loader.PromotionStateLoader.load": {"fullname": "ml.promotion.state_loader.PromotionStateLoader.load", "modulename": "ml.promotion.state_loader", "qualname": "PromotionStateLoader.load", "kind": "function", "doc": "

    Load and assemble promotion state from persisted artifacts.

    \n\n

    Args:\n context: Promotion context containing paths and run arguments.

    \n\n

    Returns:\n Promotion state with registries, thresholds, metrics, and comparisons.

    \n", "signature": "(\tself,\tcontext: ml.promotion.context.PromotionContext) -> ml.promotion.state.PromotionState:", "funcdef": "def"}, "ml.promotion.strategies": {"fullname": "ml.promotion.strategies", "modulename": "ml.promotion.strategies", "kind": "module", "doc": "

    A package with promotion strategies.

    \n"}, "ml.promotion.strategies.base": {"fullname": "ml.promotion.strategies.base", "modulename": "ml.promotion.strategies.base", "kind": "module", "doc": "

    Abstract strategy interface for stage-specific promotion behavior.

    \n"}, "ml.promotion.strategies.base.PromotionStrategy": {"fullname": "ml.promotion.strategies.base.PromotionStrategy", "modulename": "ml.promotion.strategies.base", "qualname": "PromotionStrategy", "kind": "class", "doc": "

    Base contract for promotion strategy implementations.

    \n", "bases": "abc.ABC"}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"fullname": "ml.promotion.strategies.base.PromotionStrategy.execute", "modulename": "ml.promotion.strategies.base", "qualname": "PromotionStrategy.execute", "kind": "function", "doc": "

    Execute stage-specific promotion logic and return result payload.

    \n\n

    Args:\n context: Promotion runtime context.\n state: Loaded promotion state.

    \n\n

    Returns:\n Promotion decision result.

    \n", "signature": "(\tself,\tcontext: ml.promotion.context.PromotionContext,\tstate: ml.promotion.state.PromotionState) -> ml.promotion.result.PromotionResult:", "funcdef": "def"}, "ml.promotion.strategies.production": {"fullname": "ml.promotion.strategies.production", "modulename": "ml.promotion.strategies.production", "kind": "module", "doc": "

    Production-stage promotion strategy implementation.

    \n"}, "ml.promotion.strategies.production.logger": {"fullname": "ml.promotion.strategies.production.logger", "modulename": "ml.promotion.strategies.production", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.strategies.production (WARNING)>"}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"fullname": "ml.promotion.strategies.production.ProductionPromotionStrategy", "modulename": "ml.promotion.strategies.production", "qualname": "ProductionPromotionStrategy", "kind": "class", "doc": "

    Apply thresholds and production-baseline checks for promotion.

    \n", "bases": "ml.promotion.strategies.base.PromotionStrategy"}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"fullname": "ml.promotion.strategies.production.ProductionPromotionStrategy.execute", "modulename": "ml.promotion.strategies.production", "qualname": "ProductionPromotionStrategy.execute", "kind": "function", "doc": "

    Execute production promotion decision logic.

    \n\n

    Args:\n context: Promotion runtime context with arguments, paths, and metadata.\n state: Loaded promotion state with thresholds and production metrics.

    \n\n

    Returns:\n Promotion decision result for the production strategy.

    \n\n

    Raises:\n RuntimeMLError: If required runner metadata is missing from\n promotion context.

    \n\n

    Notes:\n Promotion requires both threshold compliance and improvement against\n currently deployed production metrics.

    \n\n

    Side Effects:\n Emits promotion decision logs and may construct promotion run metadata\n payload for downstream persistence.

    \n", "signature": "(self, context, state) -> ml.promotion.result.PromotionResult:", "funcdef": "def"}, "ml.promotion.strategies.staging": {"fullname": "ml.promotion.strategies.staging", "modulename": "ml.promotion.strategies.staging", "kind": "module", "doc": "

    Staging-stage promotion strategy implementation.

    \n"}, "ml.promotion.strategies.staging.logger": {"fullname": "ml.promotion.strategies.staging.logger", "modulename": "ml.promotion.strategies.staging", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.strategies.staging (WARNING)>"}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"fullname": "ml.promotion.strategies.staging.StagingPromotionStrategy", "modulename": "ml.promotion.strategies.staging", "qualname": "StagingPromotionStrategy", "kind": "class", "doc": "

    Apply threshold-only checks for staging promotion decisions.

    \n", "bases": "ml.promotion.strategies.base.PromotionStrategy"}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"fullname": "ml.promotion.strategies.staging.StagingPromotionStrategy.execute", "modulename": "ml.promotion.strategies.staging", "qualname": "StagingPromotionStrategy.execute", "kind": "function", "doc": "

    Execute staging promotion decision logic.

    \n\n

    Args:\n context: Promotion runtime context with arguments, paths, and metadata.\n state: Loaded promotion state with thresholds and metrics.

    \n\n

    Returns:\n Promotion decision result for the staging strategy.

    \n", "signature": "(self, context, state) -> ml.promotion.result.PromotionResult:", "funcdef": "def"}, "ml.promotion.validation": {"fullname": "ml.promotion.validation", "modulename": "ml.promotion.validation", "kind": "module", "doc": "

    A package with promotion validation.

    \n"}, "ml.promotion.validation.artifacts": {"fullname": "ml.promotion.validation.artifacts", "modulename": "ml.promotion.validation.artifacts", "kind": "module", "doc": "

    Validation functions for artifacts.

    \n"}, "ml.promotion.validation.artifacts.logger": {"fullname": "ml.promotion.validation.artifacts.logger", "modulename": "ml.promotion.validation.artifacts", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.validation.artifacts (WARNING)>"}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"fullname": "ml.promotion.validation.artifacts.validate_artifacts_consistency", "modulename": "ml.promotion.validation.artifacts", "qualname": "validate_artifacts_consistency", "kind": "function", "doc": "

    Validate artifacts consistency across train/eval/explain runs.

    \n\n

    Args:\n runners_metadata: Loaded train/eval/explain metadata bundle.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\trunners_metadata: ml.promotion.constants.constants.RunnersMetadata) -> None:", "funcdef": "def"}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"fullname": "ml.promotion.validation.artifacts.validate_optional_artifact", "modulename": "ml.promotion.validation.artifacts", "qualname": "validate_optional_artifact", "kind": "function", "doc": "

    Validate optional artifact presence and hash consistency.

    \n\n

    Args:\n path: Path to the artifact.\n expected_hash: Expected hash of the artifact.\n name: Name of the artifact for logging.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(path: str | None, expected_hash: str | None, name: str) -> None:", "funcdef": "def"}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"fullname": "ml.promotion.validation.artifacts.validate_explainability_artifacts", "modulename": "ml.promotion.validation.artifacts", "qualname": "validate_explainability_artifacts", "kind": "function", "doc": "

    Validate explainability artifact paths and hashes.

    \n\n

    Args:\n explainability_artifacts: ExplainabilityArtifacts object containing paths and hashes.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\texplainability_artifacts: ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts) -> None:", "funcdef": "def"}, "ml.promotion.validation.promotion_thresholds": {"fullname": "ml.promotion.validation.promotion_thresholds", "modulename": "ml.promotion.validation.promotion_thresholds", "kind": "module", "doc": "

    Validation functions for promotion thresholds.

    \n"}, "ml.promotion.validation.promotion_thresholds.logger": {"fullname": "ml.promotion.validation.promotion_thresholds.logger", "modulename": "ml.promotion.validation.promotion_thresholds", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.validation.promotion_thresholds (WARNING)>"}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"fullname": "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds", "modulename": "ml.promotion.validation.promotion_thresholds", "qualname": "validate_promotion_thresholds", "kind": "function", "doc": "

    Validate raw promotion thresholds payload into typed schema.

    \n\n

    Args:\n promotion_thresholds: Raw threshold configuration dictionary.

    \n\n

    Returns:\n PromotionThresholds: Validated threshold configuration object.

    \n", "signature": "(\tpromotion_thresholds: dict) -> ml.promotion.config.promotion_thresholds.PromotionThresholds:", "funcdef": "def"}, "ml.promotion.validation.registry_entry": {"fullname": "ml.promotion.validation.registry_entry", "modulename": "ml.promotion.validation.registry_entry", "kind": "module", "doc": "

    \n"}, "ml.promotion.validation.registry_entry.logger": {"fullname": "ml.promotion.validation.registry_entry.logger", "modulename": "ml.promotion.validation.registry_entry", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.validation.registry_entry (WARNING)>"}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"fullname": "ml.promotion.validation.registry_entry.validate_registry_entry", "modulename": "ml.promotion.validation.registry_entry", "qualname": "validate_registry_entry", "kind": "function", "doc": "

    Validate the raw registry entry against the RegistryEntry schema.

    \n\n

    Args:\n entry_raw (dict): The raw registry entry dictionary to validate.

    \n\n

    Returns:\n RegistryEntry: The validated registry entry object.

    \n", "signature": "(entry_raw: dict) -> ml.promotion.config.registry_entry.RegistryEntry:", "funcdef": "def"}, "ml.promotion.validation.runners": {"fullname": "ml.promotion.validation.runners", "modulename": "ml.promotion.validation.runners", "kind": "module", "doc": "

    Validation functions for ML promotion run metadata and directories.

    \n"}, "ml.promotion.validation.runners.logger": {"fullname": "ml.promotion.validation.runners.logger", "modulename": "ml.promotion.validation.runners", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.promotion.validation.runners (WARNING)>"}, "ml.promotion.validation.runners.validate_run_dirs": {"fullname": "ml.promotion.validation.runners.validate_run_dirs", "modulename": "ml.promotion.validation.runners", "qualname": "validate_run_dirs", "kind": "function", "doc": "

    Validate required train/eval/explain run directories exist.

    \n\n

    Args:\n train_run_dir: Training run directory.\n eval_run_dir: Evaluation run directory.\n explain_run_dir: Explainability run directory.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\ttrain_run_dir: pathlib.Path,\teval_run_dir: pathlib.Path,\texplain_run_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.promotion.validation.runners.validate_run_ids": {"fullname": "ml.promotion.validation.runners.validate_run_ids", "modulename": "ml.promotion.validation.runners", "qualname": "validate_run_ids", "kind": "function", "doc": "

    Validate eval/explain runs are linked to the provided train run.

    \n\n

    Args:\n args: Parsed CLI arguments with run IDs.\n runners_metadata: Loaded train/eval/explain metadata bundle.

    \n\n

    Returns:\n None: Raises on validation failure.

    \n", "signature": "(\t*,\targs: argparse.Namespace,\trunners_metadata: ml.promotion.constants.constants.RunnersMetadata) -> None:", "funcdef": "def"}, "ml.registries": {"fullname": "ml.registries", "modulename": "ml.registries", "kind": "module", "doc": "

    This module serves as a central registry for various components used in the machine learning pipeline. It includes catalogs of feature operators, model classes, and loss functions, as well as factories for creating evaluators, explainers, freeze strategies, searchers, target strategies, and trainers. By centralizing these components, we can easily manage and extend the functionality of our machine learning framework.

    \n"}, "ml.registries.FEATURE_OPERATORS": {"fullname": "ml.registries.FEATURE_OPERATORS", "modulename": "ml.registries", "qualname": "FEATURE_OPERATORS", "kind": "variable", "doc": "

    \n", "default_value": "{'TotalStay': <class 'ml.components.feature_engineering.total_stay.TotalStay'>, 'AdrPerPerson': <class 'ml.components.feature_engineering.adr_per_person.AdrPerPerson'>, 'ArrivalSeason': <class 'ml.components.feature_engineering.arrival_season.ArrivalSeason'>, 'ArrivalDate': <class 'ml.components.feature_engineering.arrival_date.ArrivalDate'>}"}, "ml.registries.MODEL_CLASS_REGISTRY": {"fullname": "ml.registries.MODEL_CLASS_REGISTRY", "modulename": "ml.registries", "qualname": "MODEL_CLASS_REGISTRY", "kind": "variable", "doc": "

    \n", "default_value": "{'CatBoostClassifier': <class 'catboost.core.CatBoostClassifier'>, 'CatBoostRegressor': <class 'catboost.core.CatBoostRegressor'>}"}, "ml.registries.MODEL_PARAM_REGISTRY": {"fullname": "ml.registries.MODEL_PARAM_REGISTRY", "modulename": "ml.registries", "qualname": "MODEL_PARAM_REGISTRY", "kind": "variable", "doc": "

    \n", "default_value": "{'catboost': ['depth', 'learning_rate', 'l2_leaf_reg', 'random_strength', 'min_data_in_leaf', 'bagging_temperature', 'border_count', 'colsample_bylevel']}"}, "ml.registries.OP_MAP": {"fullname": "ml.registries.OP_MAP", "modulename": "ml.registries", "qualname": "OP_MAP", "kind": "variable", "doc": "

    \n", "default_value": "{'eq': <function <lambda>>, 'neq': <function <lambda>>, 'in': <function <lambda>>, 'not_in': <function <lambda>>, 'gt': <function <lambda>>, 'gte': <function <lambda>>, 'lt': <function <lambda>>, 'lte': <function <lambda>>}"}, "ml.registries.PIPELINE_COMPONENTS": {"fullname": "ml.registries.PIPELINE_COMPONENTS", "modulename": "ml.registries", "qualname": "PIPELINE_COMPONENTS", "kind": "variable", "doc": "

    \n", "default_value": "{'SchemaValidator': <class 'ml.components.schema_validation.validator.SchemaValidator'>, 'FillCategoricalMissing': <class 'ml.components.imputation.categorical.FillCategoricalMissing'>, 'FeatureEngineer': <class 'ml.components.feature_engineering.base.FeatureEngineer'>, 'FeatureSelector': <class 'ml.components.feature_selection.selector.FeatureSelector'>, 'Model': None}"}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"fullname": "ml.registries.REGRESSION_LOSS_FUNCTIONS", "modulename": "ml.registries", "qualname": "REGRESSION_LOSS_FUNCTIONS", "kind": "variable", "doc": "

    \n", "default_value": "{'neg_root_mean_squared_error': 'RMSE', 'neg_mean_absolute_error': 'MAE', 'neg_mean_poisson_deviance': 'Poisson'}"}, "ml.registries.EVALUATORS": {"fullname": "ml.registries.EVALUATORS", "modulename": "ml.registries", "qualname": "EVALUATORS", "kind": "variable", "doc": "

    \n", "default_value": "{'classification': <class 'ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator'>, 'regression': <class 'ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression'>}"}, "ml.registries.EXPLAINERS": {"fullname": "ml.registries.EXPLAINERS", "modulename": "ml.registries", "qualname": "EXPLAINERS", "kind": "variable", "doc": "

    \n", "default_value": "{'catboost': <class 'ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel'>}"}, "ml.registries.SEARCHERS": {"fullname": "ml.registries.SEARCHERS", "modulename": "ml.registries", "qualname": "SEARCHERS", "kind": "variable", "doc": "

    \n", "default_value": "{'catboost': <class 'ml.search.searchers.catboost.catboost.CatBoostSearcher'>}"}, "ml.registries.TRAINERS": {"fullname": "ml.registries.TRAINERS", "modulename": "ml.registries", "qualname": "TRAINERS", "kind": "variable", "doc": "

    \n", "default_value": "{'catboost': <class 'ml.runners.training.trainers.catboost.catboost.CatBoostTrainer'>}"}, "ml.runners": {"fullname": "ml.runners", "modulename": "ml.runners", "kind": "module", "doc": "

    Runner implementations for search, training, evaluation, and explainability.

    \n"}, "ml.runners.evaluation": {"fullname": "ml.runners.evaluation", "modulename": "ml.runners.evaluation", "kind": "module", "doc": "

    Evaluation runners, metrics, persistence, and utility helpers.

    \n"}, "ml.runners.evaluation.constants": {"fullname": "ml.runners.evaluation.constants", "modulename": "ml.runners.evaluation.constants", "kind": "module", "doc": "

    A package with evaluation-specific constants.

    \n"}, "ml.runners.evaluation.constants.data_splits": {"fullname": "ml.runners.evaluation.constants.data_splits", "modulename": "ml.runners.evaluation.constants.data_splits", "kind": "module", "doc": "

    Typed containers for train/validation/test evaluation split payloads.

    \n"}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits", "kind": "class", "doc": "

    Feature/target tuples for train, validation, and test splits.

    \n"}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits.__init__", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits.__init__", "kind": "function", "doc": "

    \n", "signature": "(\ttrain: tuple[pandas.core.frame.DataFrame, pandas.core.series.Series],\tval: tuple[pandas.core.frame.DataFrame, pandas.core.series.Series],\ttest: tuple[pandas.core.frame.DataFrame, pandas.core.series.Series])"}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits.train", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits.train", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[pandas.core.frame.DataFrame, pandas.core.series.Series]"}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits.val", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits.val", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[pandas.core.frame.DataFrame, pandas.core.series.Series]"}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"fullname": "ml.runners.evaluation.constants.data_splits.DataSplits.test", "modulename": "ml.runners.evaluation.constants.data_splits", "qualname": "DataSplits.test", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[pandas.core.frame.DataFrame, pandas.core.series.Series]"}, "ml.runners.evaluation.constants.output": {"fullname": "ml.runners.evaluation.constants.output", "modulename": "ml.runners.evaluation.constants.output", "kind": "module", "doc": "

    Typed output model for evaluation runner results.

    \n"}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput", "kind": "class", "doc": "

    Evaluation metrics, prediction artifacts, and feature lineage payload.

    \n"}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput.__init__", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmetrics: dict[str, dict[str, float]],\tprediction_dfs: ml.runners.evaluation.models.predictions.PredictionArtifacts,\tlineage: list[ml.modeling.models.feature_lineage.FeatureLineage])"}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput.metrics", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, dict[str, float]]"}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput.prediction_dfs", "kind": "variable", "doc": "

    \n", "annotation": ": ml.runners.evaluation.models.predictions.PredictionArtifacts"}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"fullname": "ml.runners.evaluation.constants.output.EvaluateOutput.lineage", "modulename": "ml.runners.evaluation.constants.output", "qualname": "EvaluateOutput.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.runners.evaluation.evaluators": {"fullname": "ml.runners.evaluation.evaluators", "modulename": "ml.runners.evaluation.evaluators", "kind": "module", "doc": "

    A package containing evaluators.

    \n"}, "ml.runners.evaluation.evaluators.base": {"fullname": "ml.runners.evaluation.evaluators.base", "modulename": "ml.runners.evaluation.evaluators.base", "kind": "module", "doc": "

    Protocol definition for evaluation runner implementations.

    \n"}, "ml.runners.evaluation.evaluators.base.Evaluator": {"fullname": "ml.runners.evaluation.evaluators.base.Evaluator", "modulename": "ml.runners.evaluation.evaluators.base", "qualname": "Evaluator", "kind": "class", "doc": "

    Structural interface for task-specific evaluator implementations.

    \n", "bases": "typing.Protocol"}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"fullname": "ml.runners.evaluation.evaluators.base.Evaluator.evaluate", "modulename": "ml.runners.evaluation.evaluators.base", "qualname": "Evaluator.evaluate", "kind": "function", "doc": "

    Evaluate a trained model and return standardized evaluation output.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tstrict: bool,\tbest_threshold: float | None,\ttrain_dir: pathlib.Path) -> ml.runners.evaluation.constants.output.EvaluateOutput:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification": {"fullname": "ml.runners.evaluation.evaluators.classification", "modulename": "ml.runners.evaluation.evaluators.classification", "kind": "module", "doc": "

    A package for evaluation of classification models.

    \n"}, "ml.runners.evaluation.evaluators.classification.classification": {"fullname": "ml.runners.evaluation.evaluators.classification.classification", "modulename": "ml.runners.evaluation.evaluators.classification.classification", "kind": "module", "doc": "

    Classification evaluator implementation for trained model artifacts.

    \n"}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"fullname": "ml.runners.evaluation.evaluators.classification.classification.logger", "modulename": "ml.runners.evaluation.evaluators.classification.classification", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.evaluators.classification.classification (WARNING)>"}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"fullname": "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator", "modulename": "ml.runners.evaluation.evaluators.classification.classification", "qualname": "ClassificationEvaluator", "kind": "class", "doc": "

    Evaluate binary classification models across train/val/test splits.

    \n", "bases": "ml.runners.evaluation.evaluators.base.Evaluator"}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"fullname": "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate", "modulename": "ml.runners.evaluation.evaluators.classification.classification", "qualname": "ClassificationEvaluator.evaluate", "kind": "function", "doc": "

    Load artifacts and data, run split-wise evaluation, return outputs.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n strict: Whether data-loading checks should fail strictly.\n best_threshold: Optional decision threshold for binary classification.\n train_dir: Directory containing training artifacts and metadata.\n entity_key: The name of the entity key column to extract.

    \n\n

    Returns:\n Evaluation output with metrics, predictions, and feature lineage.

    \n\n

    Raises:\n PipelineContractError: If the loaded pipeline does not expose\n predict_proba required for classification evaluation.

    \n\n

    Notes:\n Uses training metadata lineage bindings to resolve feature snapshots so\n evaluation inputs match training-time feature versions.

    \n\n

    Side Effects:\n Loads persisted artifacts and executes split-wise inference on\n train/validation/test data.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tstrict: bool,\tbest_threshold: float | None,\ttrain_dir: pathlib.Path) -> ml.runners.evaluation.constants.output.EvaluateOutput:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification.metrics": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "kind": "module", "doc": "

    Metric computation and split evaluation helpers for classification tasks.

    \n"}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.logger", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.evaluators.classification.metrics (WARNING)>"}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "expected_calibration_error", "kind": "function", "doc": "

    Compute expected calibration error (ECE) from labels and probabilities.

    \n\n

    Args:\n y_true: Ground-truth binary labels.\n y_prob: Predicted probabilities for the positive class.\n n_bins: Number of confidence bins.

    \n\n

    Returns:\n float: Expected calibration error value.

    \n", "signature": "(\ty_true: pandas.core.series.Series,\ty_prob: pandas.core.series.Series,\tn_bins: int = 10) -> float:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "compute_metrics", "kind": "function", "doc": "

    Compute threshold-based and probability-based classification metrics.

    \n\n

    Args:\n y_true: Ground-truth binary labels.\n y_pred: Predicted binary labels.\n y_prob: Optional predicted probabilities for the positive class.\n threshold: Optional decision threshold used for converting probabilities.

    \n\n

    Returns:\n dict[str, float]: Computed classification metrics.

    \n", "signature": "(\ty_true: pandas.core.series.Series,\ty_pred: pandas.core.series.Series,\ty_prob: pandas.core.series.Series | None = None,\t*,\tthreshold: float | None = None) -> dict[str, float]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "evaluate_split", "kind": "function", "doc": "

    Evaluate a single split and return metrics plus prediction dataframe.

    \n\n

    Args:\n pipeline: Fitted model pipeline.\n X: Split features.\n y: Split target labels.\n split_entity_keys: Entity keys corresponding to split records.\n split_name: Split label (train/val/test).\n best_threshold: Decision threshold for positive-class prediction.

    \n\n

    Returns:\n tuple[dict[str, float], pd.DataFrame]: Split metrics and prediction rows.

    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\t*,\tsplit_entity_keys: pandas.core.series.Series,\tsplit_name: str,\tbest_threshold: float | None) -> tuple[dict[str, float], pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"fullname": "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model", "modulename": "ml.runners.evaluation.evaluators.classification.metrics", "qualname": "evaluate_model", "kind": "function", "doc": "

    Evaluate all configured splits and aggregate metrics/prediction frames.

    \n\n

    Args:\n model_cfg: Training configuration used for task/subtype decisions.\n pipeline: Fitted model pipeline.\n data_splits: Data split container.\n best_threshold: Decision threshold for positive-class prediction.\n entity_key: The name of the entity key column to extract.\nReturns:\n tuple[dict[str, dict[str, float]], PredictionArtifacts]: Metrics and predictions by split.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tpipeline: sklearn.pipeline.Pipeline,\tdata_splits: ml.runners.evaluation.constants.data_splits.DataSplits,\tbest_threshold: float | None,\tentity_key: str) -> tuple[dict[str, dict[str, float]], ml.runners.evaluation.models.predictions.PredictionArtifacts]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.regression": {"fullname": "ml.runners.evaluation.evaluators.regression", "modulename": "ml.runners.evaluation.evaluators.regression", "kind": "module", "doc": "

    A package for evaluation of regression models.

    \n"}, "ml.runners.evaluation.evaluators.regression.metrics": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "kind": "module", "doc": "

    Metric computation and split evaluation helpers for regression tasks.

    \n"}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics.logger", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.evaluators.regression.metrics (WARNING)>"}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "qualname": "compute_metrics", "kind": "function", "doc": "

    Compute core regression metrics and residual summary statistics.

    \n\n

    Args:\n y_true: Ground-truth regression targets.\n y_pred: Predicted regression values.

    \n\n

    Returns:\n dict[str, float]: Computed regression metrics.

    \n", "signature": "(\ty_true: pandas.core.series.Series,\ty_pred: pandas.core.series.Series) -> dict[str, float]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "qualname": "evaluate_split", "kind": "function", "doc": "

    Evaluate one split and return metrics and per-row prediction output.

    \n\n

    Args:\n pipeline: Fitted model pipeline.\n X: Split features.\n y: Split target values.\n split_entity_keys: Row identifiers for split records.\n split_name: Split label.\n transform_cfg: Target-transform configuration for inverse transform.\n entity_key: The name of the entity key column to extract.

    \n\n

    Returns:\n tuple[dict[str, float], pd.DataFrame]: Split metrics and prediction dataframe.

    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\tX: pandas.core.frame.DataFrame,\ty: pandas.core.series.Series,\t*,\tsplit_entity_keys: pandas.core.series.Series,\tsplit_name: str,\ttransform_cfg: ml.config.schemas.model_specs.TargetTransformConfig,\tentity_key: str) -> tuple[dict[str, float], pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"fullname": "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model", "modulename": "ml.runners.evaluation.evaluators.regression.metrics", "qualname": "evaluate_model", "kind": "function", "doc": "

    Evaluate all splits and aggregate regression metrics/predictions.

    \n\n

    Args:\n pipeline: Fitted model pipeline.\n data_splits: Dataset split container.\n transform_cfg: Target-transform configuration for inverse transform.

    \n\n

    Returns:\n tuple[dict[str, dict[str, float]], PredictionArtifacts]: Metrics and predictions by split.

    \n", "signature": "(\t*,\tpipeline: sklearn.pipeline.Pipeline,\tdata_splits: ml.runners.evaluation.constants.data_splits.DataSplits,\ttransform_cfg: ml.config.schemas.model_specs.TargetTransformConfig,\tentity_key: str) -> tuple[dict[str, dict[str, float]], ml.runners.evaluation.models.predictions.PredictionArtifacts]:", "funcdef": "def"}, "ml.runners.evaluation.evaluators.regression.regression": {"fullname": "ml.runners.evaluation.evaluators.regression.regression", "modulename": "ml.runners.evaluation.evaluators.regression.regression", "kind": "module", "doc": "

    Regression evaluator implementation for trained model artifacts.

    \n"}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"fullname": "ml.runners.evaluation.evaluators.regression.regression.logger", "modulename": "ml.runners.evaluation.evaluators.regression.regression", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.evaluators.regression.regression (WARNING)>"}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"fullname": "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression", "modulename": "ml.runners.evaluation.evaluators.regression.regression", "qualname": "EvaluateRegression", "kind": "class", "doc": "

    Evaluate regression models across train/val/test splits.

    \n", "bases": "ml.runners.evaluation.evaluators.base.Evaluator"}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"fullname": "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate", "modulename": "ml.runners.evaluation.evaluators.regression.regression", "qualname": "EvaluateRegression.evaluate", "kind": "function", "doc": "

    Load artifacts and data, run split-wise regression evaluation.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n strict: Whether data-loading checks should fail strictly.\n best_threshold: Unused threshold parameter kept for interface parity.\n train_dir: Directory containing training artifacts and metadata.\n entity_key: The name of the entity key column to extract.\nReturns:\n Evaluation output with metrics, predictions, and feature lineage.

    \n\n

    Raises:\n PipelineContractError: If loaded pipeline cannot produce predictions.

    \n\n

    Notes:\n Uses training metadata lineage bindings to resolve feature snapshots so\n evaluation inputs match training-time feature versions.

    \n\n

    Side Effects:\n Loads persisted artifacts and executes split-wise inference on\n train/validation/test data.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tstrict: bool,\tbest_threshold: float | None,\ttrain_dir: pathlib.Path) -> ml.runners.evaluation.constants.output.EvaluateOutput:", "funcdef": "def"}, "ml.runners.evaluation.models": {"fullname": "ml.runners.evaluation.models", "modulename": "ml.runners.evaluation.models", "kind": "module", "doc": "

    A package with evaluation-specific pydantic models.

    \n"}, "ml.runners.evaluation.models.predictions": {"fullname": "ml.runners.evaluation.models.predictions", "modulename": "ml.runners.evaluation.models.predictions", "kind": "module", "doc": "

    Module defining Pydantic models for representing prediction artifacts and their associated metadata in the evaluation runner.

    \n"}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"fullname": "ml.runners.evaluation.models.predictions.PredictionArtifacts", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionArtifacts", "kind": "class", "doc": "

    Model representing the prediction artifacts for each data split.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"fullname": "ml.runners.evaluation.models.predictions.PredictionArtifacts.train", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionArtifacts.train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"fullname": "ml.runners.evaluation.models.predictions.PredictionArtifacts.val", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionArtifacts.val", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"fullname": "ml.runners.evaluation.models.predictions.PredictionArtifacts.test", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionArtifacts.test", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPaths", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPaths", "kind": "class", "doc": "

    Model representing the file paths to the persisted prediction artifacts.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPaths.train_predictions_path", "kind": "variable", "doc": "

    File path to the training predictions parquet file.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPaths.val_predictions_path", "kind": "variable", "doc": "

    File path to the validation predictions parquet file.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPaths.test_predictions_path", "kind": "variable", "doc": "

    File path to the test predictions parquet file.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPathsAndHashes", "kind": "class", "doc": "

    Model representing the file paths and hashes of the persisted prediction artifacts.

    \n", "bases": "PredictionsPaths"}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPathsAndHashes.train_predictions_hash", "kind": "variable", "doc": "

    Hash of the training predictions artifact for integrity verification.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPathsAndHashes.val_predictions_hash", "kind": "variable", "doc": "

    Hash of the validation predictions artifact for integrity verification.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"fullname": "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash", "modulename": "ml.runners.evaluation.models.predictions", "qualname": "PredictionsPathsAndHashes.test_predictions_hash", "kind": "variable", "doc": "

    Hash of the test predictions artifact for integrity verification.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.runners.evaluation.persistence": {"fullname": "ml.runners.evaluation.persistence", "modulename": "ml.runners.evaluation.persistence", "kind": "module", "doc": "

    A package for evaluation-specific persistence.

    \n"}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"fullname": "ml.runners.evaluation.persistence.persist_evaluation_run", "modulename": "ml.runners.evaluation.persistence.persist_evaluation_run", "kind": "module", "doc": "

    Persistence orchestration for evaluation run artifacts and metadata.

    \n"}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"fullname": "ml.runners.evaluation.persistence.persist_evaluation_run.logger", "modulename": "ml.runners.evaluation.persistence.persist_evaluation_run", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.persistence.persist_evaluation_run (WARNING)>"}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"fullname": "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run", "modulename": "ml.runners.evaluation.persistence.persist_evaluation_run", "qualname": "persist_evaluation_run", "kind": "function", "doc": "

    Persist evaluation metrics, predictions, metadata, and runtime snapshot.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n eval_run_id: Evaluation run identifier.\n train_run_id: Upstream training run identifier.\n experiment_dir: Base experiment directory.\n eval_run_dir: Evaluation output directory.\n metrics: Evaluation metrics payload.\n prediction_dfs: Per-split prediction dataframes.\n feature_lineage: Feature lineage records.\n start_time: Process start time used for runtime metadata.\n timestamp: Run timestamp string.\n artifacts: Mutable artifact-path/hash mapping.\n pipeline_cfg_hash: Pipeline configuration hash.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\teval_run_id: str,\ttrain_run_id: str,\texperiment_dir: pathlib.Path,\teval_run_dir: pathlib.Path,\tmetrics: dict[str, dict[str, float]],\tprediction_dfs: ml.runners.evaluation.models.predictions.PredictionArtifacts,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tstart_time: float,\ttimestamp: str,\tartifacts: ml.modeling.models.artifacts.Artifacts,\tpipeline_cfg_hash: str) -> None:", "funcdef": "def"}, "ml.runners.evaluation.persistence.prepare_metadata": {"fullname": "ml.runners.evaluation.persistence.prepare_metadata", "modulename": "ml.runners.evaluation.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata payload construction for evaluation runs.

    \n"}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"fullname": "ml.runners.evaluation.persistence.prepare_metadata.logger", "modulename": "ml.runners.evaluation.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.persistence.prepare_metadata (WARNING)>"}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.runners.evaluation.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build evaluation metadata payload for persistence.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n eval_run_id: Evaluation run identifier.\n train_run_id: Source training run identifier.\n experiment_dir: Experiment directory path.\n feature_lineage: Feature lineage records for reproducibility.\n artifacts: Evaluation artifacts object.\n pipeline_cfg_hash: Hash of the runtime pipeline configuration.

    \n\n

    Returns:\n Evaluation metadata dictionary for run persistence.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\teval_run_id: str,\ttrain_run_id: str,\texperiment_dir: pathlib.Path,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tartifacts: ml.metadata.schemas.runners.evaluation.EvaluationArtifacts,\tpipeline_cfg_hash: str) -> dict:", "funcdef": "def"}, "ml.runners.evaluation.persistence.save_predictions": {"fullname": "ml.runners.evaluation.persistence.save_predictions", "modulename": "ml.runners.evaluation.persistence.save_predictions", "kind": "module", "doc": "

    Prediction artifact persistence helpers for evaluation splits.

    \n"}, "ml.runners.evaluation.persistence.save_predictions.logger": {"fullname": "ml.runners.evaluation.persistence.save_predictions.logger", "modulename": "ml.runners.evaluation.persistence.save_predictions", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.persistence.save_predictions (WARNING)>"}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"fullname": "ml.runners.evaluation.persistence.save_predictions.save_predictions", "modulename": "ml.runners.evaluation.persistence.save_predictions", "qualname": "save_predictions", "kind": "function", "doc": "

    Persist per-split prediction dataframes as parquet artifacts.

    \n\n

    Args:\n prediction_dfs: Mapping from split names to prediction dataframes.\n target_dir: Directory where prediction parquet files are written.

    \n\n

    Returns:\n PredictionsPaths object with paths to the saved prediction artifacts.

    \n", "signature": "(\tprediction_dfs: ml.runners.evaluation.models.predictions.PredictionArtifacts,\ttarget_dir: pathlib.Path) -> ml.runners.evaluation.models.predictions.PredictionsPaths:", "funcdef": "def"}, "ml.runners.evaluation.utils": {"fullname": "ml.runners.evaluation.utils", "modulename": "ml.runners.evaluation.utils", "kind": "module", "doc": "

    A package with evaluation utilities.

    \n"}, "ml.runners.evaluation.utils.get_entity_keys": {"fullname": "ml.runners.evaluation.utils.get_entity_keys", "modulename": "ml.runners.evaluation.utils.get_entity_keys", "kind": "module", "doc": "

    Helpers for extracting row identifiers from evaluation feature frames.

    \n"}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"fullname": "ml.runners.evaluation.utils.get_entity_keys.logger", "modulename": "ml.runners.evaluation.utils.get_entity_keys", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.utils.get_entity_keys (WARNING)>"}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"fullname": "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys", "modulename": "ml.runners.evaluation.utils.get_entity_keys", "qualname": "get_entity_keys", "kind": "function", "doc": "

    Return entity_key series from dataframe, raising if missing.

    \n\n

    Args:\n data: Input dataframe expected to contain a entity_key column.\n entity_key: The name of the entity key column to extract.

    \n\n

    Returns:\n Entity key series extracted from the dataframe.

    \n", "signature": "(\tdata: pandas.core.frame.DataFrame,\tentity_key: str) -> pandas.core.series.Series:", "funcdef": "def"}, "ml.runners.evaluation.utils.get_evaluator": {"fullname": "ml.runners.evaluation.utils.get_evaluator", "modulename": "ml.runners.evaluation.utils.get_evaluator", "kind": "module", "doc": "

    Factory helper for resolving evaluation implementations by task key.

    \n"}, "ml.runners.evaluation.utils.get_evaluator.logger": {"fullname": "ml.runners.evaluation.utils.get_evaluator.logger", "modulename": "ml.runners.evaluation.utils.get_evaluator", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.evaluation.utils.get_evaluator (WARNING)>"}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"fullname": "ml.runners.evaluation.utils.get_evaluator.get_evaluator", "modulename": "ml.runners.evaluation.utils.get_evaluator", "qualname": "get_evaluator", "kind": "function", "doc": "

    Instantiate evaluator class registered for the provided key.

    \n\n

    Args:\n key: Evaluator registry key, typically aligned with task or algorithm.

    \n\n

    Returns:\n Instantiated evaluator implementation.

    \n", "signature": "(key: str) -> ml.runners.evaluation.evaluators.base.Evaluator:", "funcdef": "def"}, "ml.runners.explainability": {"fullname": "ml.runners.explainability", "modulename": "ml.runners.explainability", "kind": "module", "doc": "

    Explainability runners, explainers, persistence helpers, and utilities.

    \n"}, "ml.runners.explainability.constants": {"fullname": "ml.runners.explainability.constants", "modulename": "ml.runners.explainability.constants", "kind": "module", "doc": "

    A package for explainability-specific constants.

    \n"}, "ml.runners.explainability.constants.explainability_metrics_class": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "kind": "module", "doc": "

    Typed explainability metric containers produced by explainers.

    \n"}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "qualname": "ExplainabilityMetrics", "kind": "class", "doc": "

    Top-k explainability tables for model-level interpretation outputs.

    \n"}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "qualname": "ExplainabilityMetrics.__init__", "kind": "function", "doc": "

    \n", "signature": "(\ttop_k_feature_importances: pandas.core.frame.DataFrame | None = None,\ttop_k_shap_importances: pandas.core.frame.DataFrame | None = None)"}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "qualname": "ExplainabilityMetrics.top_k_feature_importances", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"fullname": "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances", "modulename": "ml.runners.explainability.constants.explainability_metrics_class", "qualname": "ExplainabilityMetrics.top_k_shap_importances", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.runners.explainability.constants.output": {"fullname": "ml.runners.explainability.constants.output", "modulename": "ml.runners.explainability.constants.output", "kind": "module", "doc": "

    Typed output model returned by explainability runner implementations.

    \n"}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"fullname": "ml.runners.explainability.constants.output.ExplainabilityOutput", "modulename": "ml.runners.explainability.constants.output", "qualname": "ExplainabilityOutput", "kind": "class", "doc": "

    Explainability metrics and feature lineage payload for persistence.

    \n"}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"fullname": "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__", "modulename": "ml.runners.explainability.constants.output", "qualname": "ExplainabilityOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(\texplainability_metrics: ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage])"}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"fullname": "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics", "modulename": "ml.runners.explainability.constants.output", "qualname": "ExplainabilityOutput.explainability_metrics", "kind": "variable", "doc": "

    \n", "annotation": ": ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics"}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"fullname": "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage", "modulename": "ml.runners.explainability.constants.output", "qualname": "ExplainabilityOutput.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.runners.explainability.explainers": {"fullname": "ml.runners.explainability.explainers", "modulename": "ml.runners.explainability.explainers", "kind": "module", "doc": "

    A package with explainers.

    \n"}, "ml.runners.explainability.explainers.base": {"fullname": "ml.runners.explainability.explainers.base", "modulename": "ml.runners.explainability.explainers.base", "kind": "module", "doc": "

    Protocol definitions for explainability runner implementations.

    \n"}, "ml.runners.explainability.explainers.base.Explainer": {"fullname": "ml.runners.explainability.explainers.base.Explainer", "modulename": "ml.runners.explainability.explainers.base", "qualname": "Explainer", "kind": "class", "doc": "

    Structural interface implemented by explainability engines.

    \n", "bases": "typing.Protocol"}, "ml.runners.explainability.explainers.base.Explainer.explain": {"fullname": "ml.runners.explainability.explainers.base.Explainer.explain", "modulename": "ml.runners.explainability.explainers.base", "qualname": "Explainer.explain", "kind": "function", "doc": "

    Generate explainability artifacts for a trained model run.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\ttrain_dir: pathlib.Path,\ttop_k: int) -> ml.runners.explainability.constants.output.ExplainabilityOutput:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model": {"fullname": "ml.runners.explainability.explainers.tree_model", "modulename": "ml.runners.explainability.explainers.tree_model", "kind": "module", "doc": "

    A package with tree-model explainers.

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters", "modulename": "ml.runners.explainability.explainers.tree_model.adapters", "kind": "module", "doc": "

    A package with adapters for tree-model explainers.

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "kind": "module", "doc": "

    Abstract adapter interface for tree-model explainability backends.

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter", "kind": "class", "doc": "

    Adapter contract exposing SHAP and feature-importance operations.

    \n", "bases": "abc.ABC"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter.__init__", "kind": "function", "doc": "

    Store wrapped model instance for downstream explainability calls.

    \n\n

    Args:\n model: Wrapped tree-model instance.

    \n\n

    Returns:\n None: Initializes adapter state.

    \n", "signature": "(model)"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter.model", "kind": "variable", "doc": "

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter.compute_shap_values", "kind": "function", "doc": "

    Compute SHAP value matrix for provided feature dataframe.

    \n\n

    Args:\n X: Feature dataframe for SHAP computation.

    \n\n

    Returns:\n np.ndarray: SHAP value matrix.

    \n", "signature": "(self, X: pandas.core.frame.DataFrame) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.base", "qualname": "TreeModelAdapter.compute_feature_importances", "kind": "function", "doc": "

    Compute model feature-importance vector for requested importance type.

    \n\n

    Args:\n importance_type: Importance definition requested by backend.

    \n\n

    Returns:\n np.ndarray: Feature-importance vector.

    \n", "signature": "(\tself,\timportance_type: Optional[Literal['PredictionValuesChange', 'LossFunctionChange', 'FeatureImportance', 'TotalGain']]) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "kind": "module", "doc": "

    CatBoost-specific implementation of the tree-model adapter interface.

    \n"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.adapters.catboost (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "qualname": "CatBoostAdapter", "kind": "class", "doc": "

    Adapter exposing CatBoost SHAP and feature-importance APIs.

    \n", "bases": "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "qualname": "CatBoostAdapter.compute_shap_values", "kind": "function", "doc": "

    Compute SHAP values for CatBoost model and return feature-only matrix.

    \n\n

    Args:\n X: Feature dataframe for SHAP computation.

    \n\n

    Returns:\n np.ndarray: SHAP value matrix excluding expected-value column.

    \n", "signature": "(self, X: pandas.core.frame.DataFrame) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances", "modulename": "ml.runners.explainability.explainers.tree_model.adapters.catboost", "qualname": "CatBoostAdapter.compute_feature_importances", "kind": "function", "doc": "

    Compute CatBoost feature importances for the requested type.

    \n\n

    Args:\n importance_type: Requested CatBoost importance type.

    \n\n

    Returns:\n np.ndarray: Feature importance values.

    \n", "signature": "(\tself,\timportance_type: Optional[Literal['PredictionValuesChange', 'LossFunctionChange', 'FeatureImportance', 'TotalGain']]) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.tree_model": {"fullname": "ml.runners.explainability.explainers.tree_model.tree_model", "modulename": "ml.runners.explainability.explainers.tree_model.tree_model", "kind": "module", "doc": "

    Tree-model explainability runner implementation.

    \n"}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.tree_model.logger", "modulename": "ml.runners.explainability.explainers.tree_model.tree_model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.tree_model (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"fullname": "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel", "modulename": "ml.runners.explainability.explainers.tree_model.tree_model", "qualname": "ExplainTreeModel", "kind": "class", "doc": "

    Run explainability workflow for tree-based pipelines.

    \n", "bases": "ml.runners.explainability.explainers.base.Explainer"}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"fullname": "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain", "modulename": "ml.runners.explainability.explainers.tree_model.tree_model", "qualname": "ExplainTreeModel.explain", "kind": "function", "doc": "

    Load artifacts/data and compute configured explainability outputs.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n train_dir: Directory containing training artifacts and metadata.\n top_k: Number of top features to include in explainability outputs.

    \n\n

    Returns:\n Explainability output with computed metrics and feature lineage.

    \n\n

    Raises:\n DataError: Propagated when required artifact/data lineage inputs are\n inconsistent or missing during explainability preparation.

    \n\n

    Notes:\n Explanations are computed on the test split after applying the same\n preprocessing pipeline used during training.

    \n\n

    Side Effects:\n Loads persisted training metadata/artifacts and may incur substantial\n compute for SHAP calculations.

    \n", "signature": "(\tself,\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\ttrain_dir: pathlib.Path,\ttop_k: int) -> ml.runners.explainability.constants.output.ExplainabilityOutput:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils": {"fullname": "ml.runners.explainability.explainers.tree_model.utils", "modulename": "ml.runners.explainability.explainers.tree_model.utils", "kind": "module", "doc": "

    A package with utilities for tree-model explainers.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.adapter", "modulename": "ml.runners.explainability.explainers.tree_model.utils.adapter", "kind": "module", "doc": "

    A package for tree-model adapter utilities.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter", "modulename": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter", "kind": "module", "doc": "

    Adapter factory for tree-model explainability backends.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter", "modulename": "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter", "qualname": "get_tree_model_adapter", "kind": "function", "doc": "

    Resolve and instantiate tree-model adapter for the provided model.

    \n\n

    Args:\n model: Trained tree-based model instance requiring an explainability adapter.

    \n\n

    Returns:\n Adapter implementation compatible with the model type.

    \n", "signature": "(\tmodel) -> ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators", "kind": "module", "doc": "

    A package for tree-model explainers calculators.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances", "kind": "module", "doc": "

    Feature-importance calculation helpers for tree-model explainability.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances", "qualname": "get_feature_importances", "kind": "function", "doc": "

    Compute top-k feature importances from configured explainability method.

    \n\n

    Args:\n feature_names: Transformed feature-name array.\n adapter: Tree-model adapter implementing importance extraction.\n pipeline: Fitted pipeline whose last step is the model.\n model_cfg: Validated training model configuration.\n top_k: Number of top features to return.

    \n\n

    Returns:\n Top-k feature-importance dataframe, or None when disabled.

    \n", "signature": "(\t*,\tfeature_names: numpy.ndarray[typing.Any, numpy.dtype[numpy.str_]],\tadapter: ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter,\tpipeline: sklearn.pipeline.Pipeline,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\ttop_k: int) -> pandas.core.frame.DataFrame | None:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances", "kind": "module", "doc": "

    SHAP-based importance calculation helpers for tree-model explainability.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances", "modulename": "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances", "qualname": "get_shap_importances", "kind": "function", "doc": "

    Compute top-k mean absolute SHAP importances for transformed test data.

    \n\n

    Args:\n feature_names: Transformed feature-name array.\n model_configs: Validated training model configuration.\n top_k: Number of top features to return.\n X_test_transformed: Transformed test feature dataframe.\n adapter: Tree-model adapter implementing SHAP computation.

    \n\n

    Returns:\n Top-k SHAP-importance dataframe, or None when disabled.

    \n", "signature": "(\t*,\tfeature_names: numpy.ndarray[typing.Any, numpy.dtype[numpy.str_]],\tmodel_configs: ml.config.schemas.model_cfg.TrainModelConfig,\ttop_k: int,\tX_test_transformed: pandas.core.frame.DataFrame,\tadapter: ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter) -> pandas.core.frame.DataFrame | None:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.transformers", "modulename": "ml.runners.explainability.explainers.tree_model.utils.transformers", "kind": "module", "doc": "

    A package for tree-model's transformers.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features", "modulename": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features", "kind": "module", "doc": "

    Helpers to transform features and recover transformed feature names.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features", "modulename": "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features", "qualname": "get_feature_names_and_transformed_features", "kind": "function", "doc": "

    Transform features with pipeline preprocessors and return feature names.

    \n\n

    Args:\n pipeline: Fitted sklearn pipeline whose final step is the model.\n X: Raw feature dataframe to transform via preprocessing steps.

    \n\n

    Returns:\n Tuple of transformed feature names and transformed feature matrix.

    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\tX: pandas.core.frame.DataFrame) -> tuple[numpy.ndarray[typing.Any, numpy.dtype[numpy.str_]], pandas.core.frame.DataFrame]:", "funcdef": "def"}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.validators", "modulename": "ml.runners.explainability.explainers.tree_model.utils.validators", "kind": "module", "doc": "

    A package for tree-model's explainers validations.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths", "modulename": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths", "kind": "module", "doc": "

    Validation helpers for explainability vector/feature alignment checks.

    \n"}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger", "modulename": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths (WARNING)>"}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"fullname": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths", "modulename": "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths", "qualname": "validate_lengths", "kind": "function", "doc": "

    Ensure feature-name and importance arrays have identical lengths.

    \n\n

    Args:\n feature_names: Feature-name array.\n importances: Importance-value array.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tfeature_names: numpy.ndarray[typing.Any, numpy.dtype[numpy.str_]],\timportances: numpy.ndarray[typing.Any, numpy.dtype[numpy.float64]]) -> None:", "funcdef": "def"}, "ml.runners.explainability.persistence": {"fullname": "ml.runners.explainability.persistence", "modulename": "ml.runners.explainability.persistence", "kind": "module", "doc": "

    A package for explainability-specific persistence logic.

    \n"}, "ml.runners.explainability.persistence.persist_explainability_run": {"fullname": "ml.runners.explainability.persistence.persist_explainability_run", "modulename": "ml.runners.explainability.persistence.persist_explainability_run", "kind": "module", "doc": "

    Persistence orchestration for explainability artifacts and metadata.

    \n"}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"fullname": "ml.runners.explainability.persistence.persist_explainability_run.logger", "modulename": "ml.runners.explainability.persistence.persist_explainability_run", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.persistence.persist_explainability_run (WARNING)>"}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"fullname": "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run", "modulename": "ml.runners.explainability.persistence.persist_explainability_run", "qualname": "persist_explainability_run", "kind": "function", "doc": "

    Persist explainability metrics, metadata, and runtime snapshot.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n explain_run_id: Explainability run identifier.\n train_run_id: Upstream training run identifier.\n experiment_dir: Base experiment directory.\n explain_run_dir: Explainability output directory.\n explainability_metrics: Computed explainability metrics container.\n feature_lineage: Feature lineage records.\n start_time: Process start time used for runtime metadata.\n timestamp: Run timestamp string.\n artifacts: Mutable artifact-path/hash mapping.\n pipeline_cfg_hash: Pipeline configuration hash.\n top_k: Number of top features persisted per explainability method.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\texplain_run_id: str,\ttrain_run_id: str,\texperiment_dir: pathlib.Path,\texplain_run_dir: pathlib.Path,\texplainability_metrics: ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tstart_time: float,\ttimestamp: str,\tartifacts: ml.modeling.models.artifacts.Artifacts,\tpipeline_cfg_hash: str,\ttop_k: int) -> None:", "funcdef": "def"}, "ml.runners.explainability.persistence.save_metrics_csv": {"fullname": "ml.runners.explainability.persistence.save_metrics_csv", "modulename": "ml.runners.explainability.persistence.save_metrics_csv", "kind": "module", "doc": "

    CSV persistence helpers for explainability metric tables.

    \n"}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"fullname": "ml.runners.explainability.persistence.save_metrics_csv.logger", "modulename": "ml.runners.explainability.persistence.save_metrics_csv", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.persistence.save_metrics_csv (WARNING)>"}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"fullname": "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv", "modulename": "ml.runners.explainability.persistence.save_metrics_csv", "qualname": "save_metrics_csv", "kind": "function", "doc": "

    Persist explainability metric dataframe to CSV at target path.

    \n\n

    Args:\n metrics: Explainability metrics dataframe to persist.\n target_file: Destination CSV file path.\n name: Human-readable metric table name for logging.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmetrics: pandas.core.frame.DataFrame,\t*,\ttarget_file: pathlib.Path,\tname: Literal['Feature importances', 'SHAP importances']) -> None:", "funcdef": "def"}, "ml.runners.explainability.utils": {"fullname": "ml.runners.explainability.utils", "modulename": "ml.runners.explainability.utils", "kind": "module", "doc": "

    A package for explainability-specific utilities.

    \n"}, "ml.runners.explainability.utils.get_explainer": {"fullname": "ml.runners.explainability.utils.get_explainer", "modulename": "ml.runners.explainability.utils.get_explainer", "kind": "module", "doc": "

    Factory helper for resolving explainability implementations by key.

    \n"}, "ml.runners.explainability.utils.get_explainer.logger": {"fullname": "ml.runners.explainability.utils.get_explainer.logger", "modulename": "ml.runners.explainability.utils.get_explainer", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.explainability.utils.get_explainer (WARNING)>"}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"fullname": "ml.runners.explainability.utils.get_explainer.get_explainer", "modulename": "ml.runners.explainability.utils.get_explainer", "qualname": "get_explainer", "kind": "function", "doc": "

    Instantiate explainer class registered for the provided key.

    \n\n

    Args:\n key: Explainer registry key, typically aligned with model family.

    \n\n

    Returns:\n Instantiated explainer implementation.

    \n", "signature": "(key: str) -> ml.runners.explainability.explainers.base.Explainer:", "funcdef": "def"}, "ml.runners.shared": {"fullname": "ml.runners.shared", "modulename": "ml.runners.shared", "kind": "module", "doc": "

    A process for code shared across runners.

    \n"}, "ml.runners.shared.formatting": {"fullname": "ml.runners.shared.formatting", "modulename": "ml.runners.shared.formatting", "kind": "module", "doc": "

    A package for runners-specific formatting logic.

    \n"}, "ml.runners.shared.formatting.ensure_1d_array": {"fullname": "ml.runners.shared.formatting.ensure_1d_array", "modulename": "ml.runners.shared.formatting.ensure_1d_array", "kind": "module", "doc": "

    Validation utilities for normalizing prediction outputs to 1D arrays.

    \n"}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"fullname": "ml.runners.shared.formatting.ensure_1d_array.logger", "modulename": "ml.runners.shared.formatting.ensure_1d_array", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.formatting.ensure_1d_array (WARNING)>"}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"fullname": "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array", "modulename": "ml.runners.shared.formatting.ensure_1d_array", "qualname": "ensure_1d_array", "kind": "function", "doc": "

    Validate prediction output is one-dimensional and return as ndarray.

    \n\n

    Args:\n pred: Prediction output from a model or pipeline.

    \n\n

    Returns:\n One-dimensional NumPy array of predictions.

    \n", "signature": "(pred: Any) -> numpy.ndarray:", "funcdef": "def"}, "ml.runners.shared.lineage": {"fullname": "ml.runners.shared.lineage", "modulename": "ml.runners.shared.lineage", "kind": "module", "doc": "

    A package for lineage tracking logic shared across runners.

    \n"}, "ml.runners.shared.lineage.validate_lineage_integrity": {"fullname": "ml.runners.shared.lineage.validate_lineage_integrity", "modulename": "ml.runners.shared.lineage.validate_lineage_integrity", "kind": "module", "doc": "

    Orchestration entrypoint for lineage integrity validation checks.

    \n"}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"fullname": "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity", "modulename": "ml.runners.shared.lineage.validate_lineage_integrity", "qualname": "validate_lineage_integrity", "kind": "function", "doc": "

    Run baseline lineage checks and optional config-hash consistency validation.

    \n\n

    Args:\n source_dir: Directory containing run metadata to validate.\n cfg: Optional validated config for hash consistency validation.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tsource_dir: pathlib.Path,\tcfg: ml.config.schemas.model_cfg.TrainModelConfig | ml.config.schemas.model_cfg.SearchModelConfig | None = None) -> None:", "funcdef": "def"}, "ml.runners.shared.lineage.validations": {"fullname": "ml.runners.shared.lineage.validations", "modulename": "ml.runners.shared.lineage.validations", "kind": "module", "doc": "

    A package for validating lineage across runners.

    \n"}, "ml.runners.shared.lineage.validations.base": {"fullname": "ml.runners.shared.lineage.validations.base", "modulename": "ml.runners.shared.lineage.validations.base", "kind": "module", "doc": "

    Base lineage integrity checks for required experiment metadata files.

    \n"}, "ml.runners.shared.lineage.validations.base.logger": {"fullname": "ml.runners.shared.lineage.validations.base.logger", "modulename": "ml.runners.shared.lineage.validations.base", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.lineage.validations.base (WARNING)>"}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"fullname": "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity", "modulename": "ml.runners.shared.lineage.validations.base", "qualname": "validate_base_lineage_integrity", "kind": "function", "doc": "

    Ensure core lineage files exist in the provided experiment directory.

    \n\n

    Args:\n source_dir: Experiment/run directory expected to contain lineage artifacts.

    \n\n

    Returns:\n None.

    \n", "signature": "(source_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.runners.shared.lineage.validations.configs_match": {"fullname": "ml.runners.shared.lineage.validations.configs_match", "modulename": "ml.runners.shared.lineage.validations.configs_match", "kind": "module", "doc": "

    Lineage validation helpers that verify runtime config hash consistency.

    \n"}, "ml.runners.shared.lineage.validations.configs_match.logger": {"fullname": "ml.runners.shared.lineage.validations.configs_match.logger", "modulename": "ml.runners.shared.lineage.validations.configs_match", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.lineage.validations.configs_match (WARNING)>"}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"fullname": "ml.runners.shared.lineage.validations.configs_match.validate_configs_match", "modulename": "ml.runners.shared.lineage.validations.configs_match", "qualname": "validate_configs_match", "kind": "function", "doc": "

    Validate that runtime config hash matches the hash persisted in metadata.

    \n\n

    Args:\n train_dir: Training run directory.\n cfg: Search or training configuration object.

    \n\n

    Returns:\n None: Raises on mismatch.

    \n", "signature": "(\ttrain_dir: pathlib.Path,\tcfg: ml.config.schemas.model_cfg.TrainModelConfig | ml.config.schemas.model_cfg.SearchModelConfig) -> None:", "funcdef": "def"}, "ml.runners.shared.loading": {"fullname": "ml.runners.shared.loading", "modulename": "ml.runners.shared.loading", "kind": "module", "doc": "

    A package for loading logic across runners.

    \n"}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"fullname": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata", "modulename": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata", "kind": "module", "doc": "

    Helpers for extracting feature snapshot bindings from training metadata.

    \n"}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"fullname": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger", "modulename": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.loading.get_snapshot_binding_from_training_metadata (WARNING)>"}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"fullname": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata", "modulename": "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata", "qualname": "get_snapshot_binding_from_training_metadata", "kind": "function", "doc": "

    Return feature lineage snapshot bindings required for consistent loading.

    \n\n

    Args:\n training_metadata: Training metadata object containing lineage information.

    \n\n

    Returns:\n list of FeatureLineage objects representing the snapshot binding.

    \n", "signature": "(\ttraining_metadata: ml.metadata.schemas.runners.training.TrainingMetadata) -> list[ml.modeling.models.feature_lineage.FeatureLineage]:", "funcdef": "def"}, "ml.runners.shared.loading.pipeline": {"fullname": "ml.runners.shared.loading.pipeline", "modulename": "ml.runners.shared.loading.pipeline", "kind": "module", "doc": "

    Utilities for loading serialized model and pipeline artifacts safely.

    \n"}, "ml.runners.shared.loading.pipeline.logger": {"fullname": "ml.runners.shared.loading.pipeline.logger", "modulename": "ml.runners.shared.loading.pipeline", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.loading.pipeline (WARNING)>"}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"fullname": "ml.runners.shared.loading.pipeline.load_model_or_pipeline", "modulename": "ml.runners.shared.loading.pipeline", "qualname": "load_model_or_pipeline", "kind": "function", "doc": "

    Load and type-validate a serialized model or pipeline artifact from disk.

    \n\n

    Args:\n file: Serialized artifact file path.\n target_type: Artifact type discriminator.

    \n\n

    Returns:\n AllowedModels | Pipeline: Deserialized artifact with expected type.

    \n", "signature": "(\tfile: pathlib.Path,\ttarget_type: Literal['model', 'pipeline']) -> catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor | sklearn.pipeline.Pipeline:", "funcdef": "def"}, "ml.runners.shared.logical_config": {"fullname": "ml.runners.shared.logical_config", "modulename": "ml.runners.shared.logical_config", "kind": "module", "doc": "

    A package for logical configuration logic across runners.

    \n"}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"fullname": "ml.runners.shared.logical_config.validate_model_and_pipeline", "modulename": "ml.runners.shared.logical_config.validate_model_and_pipeline", "kind": "module", "doc": "

    Logical-config validation for model and pipeline artifact integrity.

    \n"}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"fullname": "ml.runners.shared.logical_config.validate_model_and_pipeline.logger", "modulename": "ml.runners.shared.logical_config.validate_model_and_pipeline", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.logical_config.validate_model_and_pipeline (WARNING)>"}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"fullname": "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline", "modulename": "ml.runners.shared.logical_config.validate_model_and_pipeline", "qualname": "validate_model_and_pipeline", "kind": "function", "doc": "

    Validate persisted artifact hashes and return artifact metadata payload.

    \n\n

    Args:\n train_dir: Training run directory containing metadata and artifacts.

    \n\n

    Returns:\n Artifact metadata mapping after successful integrity checks.

    \n", "signature": "(train_dir: pathlib.Path) -> ml.modeling.models.artifacts.Artifacts:", "funcdef": "def"}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"fullname": "ml.runners.shared.logical_config.validate_pipeline_cfg", "modulename": "ml.runners.shared.logical_config.validate_pipeline_cfg", "kind": "module", "doc": "

    Validation helpers for pipeline configuration hash consistency.

    \n"}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"fullname": "ml.runners.shared.logical_config.validate_pipeline_cfg.logger", "modulename": "ml.runners.shared.logical_config.validate_pipeline_cfg", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.logical_config.validate_pipeline_cfg (WARNING)>"}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"fullname": "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg", "modulename": "ml.runners.shared.logical_config.validate_pipeline_cfg", "qualname": "validate_pipeline_cfg", "kind": "function", "doc": "

    Validate active pipeline config hash against metadata and return hash.

    \n\n

    Args:\n metadata_file: Metadata file path containing expected pipeline hash.\n model_cfg: Validated training configuration with pipeline location.

    \n\n

    Returns:\n Validated active pipeline configuration hash.

    \n", "signature": "(\tmetadata_file: pathlib.Path,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig) -> str:", "funcdef": "def"}, "ml.runners.shared.logical_config.validate_threshold": {"fullname": "ml.runners.shared.logical_config.validate_threshold", "modulename": "ml.runners.shared.logical_config.validate_threshold", "kind": "module", "doc": "

    Validation helpers for threshold compatibility and value constraints.

    \n"}, "ml.runners.shared.logical_config.validate_threshold.logger": {"fullname": "ml.runners.shared.logical_config.validate_threshold.logger", "modulename": "ml.runners.shared.logical_config.validate_threshold", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.logical_config.validate_threshold (WARNING)>"}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"fullname": "ml.runners.shared.logical_config.validate_threshold.validate_threshold", "modulename": "ml.runners.shared.logical_config.validate_threshold", "qualname": "validate_threshold", "kind": "function", "doc": "

    Return validated threshold for supported tasks or None when unsupported.

    \n\n

    Args:\n task: Task configuration describing problem type/subtype.\n metrics_path: Metrics file path potentially containing a threshold value.

    \n\n

    Returns:\n Validated threshold value, default threshold, or None when unsupported.

    \n", "signature": "(\ttask: ml.config.schemas.model_specs.TaskConfig,\tmetrics_path: pathlib.Path) -> float | None:", "funcdef": "def"}, "ml.runners.shared.persistence": {"fullname": "ml.runners.shared.persistence", "modulename": "ml.runners.shared.persistence", "kind": "module", "doc": "

    A package for persistence logic used by multiple runners.

    \n"}, "ml.runners.shared.persistence.save_metrics": {"fullname": "ml.runners.shared.persistence.save_metrics", "modulename": "ml.runners.shared.persistence.save_metrics", "kind": "module", "doc": "

    Persistence helpers for writing training and evaluation metrics artifacts.

    \n"}, "ml.runners.shared.persistence.save_metrics.logger": {"fullname": "ml.runners.shared.persistence.save_metrics.logger", "modulename": "ml.runners.shared.persistence.save_metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.persistence.save_metrics (WARNING)>"}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"fullname": "ml.runners.shared.persistence.save_metrics.save_metrics", "modulename": "ml.runners.shared.persistence.save_metrics", "qualname": "save_metrics", "kind": "function", "doc": "

    Serialize and persist metrics payload for a run stage, returning file path.

    \n\n

    Args:\n metrics: Metrics payload for the run stage.\n model_cfg: Validated training configuration.\n target_run_id: Target run identifier for stage-specific output.\n experiment_dir: Base experiment directory path.\n stage: Run stage name (training or evaluation).

    \n\n

    Returns:\n String path to the persisted metrics file.

    \n", "signature": "(\tmetrics: dict[str, float] | dict[str, dict[str, float]],\t*,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\ttarget_run_id: str,\texperiment_dir: pathlib.Path,\tstage: Literal['training', 'evaluation']) -> str:", "funcdef": "def"}, "ml.runners.shared.reproducibility": {"fullname": "ml.runners.shared.reproducibility", "modulename": "ml.runners.shared.reproducibility", "kind": "module", "doc": "

    A package regarding reproducibility across runners.

    \n"}, "ml.runners.shared.reproducibility.validate_reproducibility": {"fullname": "ml.runners.shared.reproducibility.validate_reproducibility", "modulename": "ml.runners.shared.reproducibility.validate_reproducibility", "kind": "module", "doc": "

    Orchestration entrypoint for reproducibility validation checks.

    \n"}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"fullname": "ml.runners.shared.reproducibility.validate_reproducibility.logger", "modulename": "ml.runners.shared.reproducibility.validate_reproducibility", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validate_reproducibility (WARNING)>"}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"fullname": "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility", "modulename": "ml.runners.shared.reproducibility.validate_reproducibility", "qualname": "validate_reproducibility", "kind": "function", "doc": "

    Load runtime metadata and run git, environment, and runtime checks.

    \n\n

    Args:\n runtime_info_path: Path to runtime metadata JSON file.

    \n\n

    Returns:\n None.

    \n", "signature": "(runtime_info_path: pathlib.Path) -> None:", "funcdef": "def"}, "ml.runners.shared.reproducibility.validations": {"fullname": "ml.runners.shared.reproducibility.validations", "modulename": "ml.runners.shared.reproducibility.validations", "kind": "module", "doc": "

    A package for reproducibility validation across runners.

    \n"}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"fullname": "ml.runners.shared.reproducibility.validations.conda_envs_match", "modulename": "ml.runners.shared.reproducibility.validations.conda_envs_match", "kind": "module", "doc": "

    Reproducibility checks for conda environment hash consistency.

    \n"}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"fullname": "ml.runners.shared.reproducibility.validations.conda_envs_match.logger", "modulename": "ml.runners.shared.reproducibility.validations.conda_envs_match", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validations.conda_envs_match (WARNING)>"}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"fullname": "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match", "modulename": "ml.runners.shared.reproducibility.validations.conda_envs_match", "qualname": "validate_conda_envs_match", "kind": "function", "doc": "

    Compare current conda environment hash with expected runtime metadata hash.

    \n\n

    Args:\n runtime_info: Runtime metadata dictionary containing expected environment hash.

    \n\n

    Returns:\n None.

    \n", "signature": "(runtime_info: ml.modeling.models.runtime_info.RuntimeInfo) -> None:", "funcdef": "def"}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"fullname": "ml.runners.shared.reproducibility.validations.git_commits_match", "modulename": "ml.runners.shared.reproducibility.validations.git_commits_match", "kind": "module", "doc": "

    Reproducibility checks for git commit ancestry and branch alignment.

    \n"}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"fullname": "ml.runners.shared.reproducibility.validations.git_commits_match.logger", "modulename": "ml.runners.shared.reproducibility.validations.git_commits_match", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validations.git_commits_match (WARNING)>"}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"fullname": "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match", "modulename": "ml.runners.shared.reproducibility.validations.git_commits_match", "qualname": "validate_git_commits_match", "kind": "function", "doc": "

    Compare current git commit to expected commit and log reproducibility risk.

    \n\n

    Args:\n runtime_info: Runtime metadata dictionary containing expected git commit.

    \n\n

    Returns:\n None.

    \n\n

    Notes:\n This check is advisory by design: it logs reproducibility risks for\n descendant/divergent commits and does not raise to avoid blocking\n post-hoc reproducibility inspection workflows.

    \n\n

    Side Effects:\n Executes git introspection helpers and emits warning/debug logs.

    \n", "signature": "(runtime_info: ml.modeling.models.runtime_info.RuntimeInfo) -> None:", "funcdef": "def"}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"fullname": "ml.runners.shared.reproducibility.validations.runtime_comparison", "modulename": "ml.runners.shared.reproducibility.validations.runtime_comparison", "kind": "module", "doc": "

    Reproducibility checks comparing runtime platform characteristics.

    \n"}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"fullname": "ml.runners.shared.reproducibility.validations.runtime_comparison.logger", "modulename": "ml.runners.shared.reproducibility.validations.runtime_comparison", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validations.runtime_comparison (WARNING)>"}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"fullname": "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches", "modulename": "ml.runners.shared.reproducibility.validations.runtime_comparison", "qualname": "validate_runtime_matches", "kind": "function", "doc": "

    Compare current runtime details with expected metadata and log mismatches.

    \n\n

    Args:\n runtime_info: Runtime metadata dictionary with expected platform details.

    \n\n

    Returns:\n None.

    \n", "signature": "(runtime_info: ml.modeling.models.runtime_info.RuntimeInfo) -> None:", "funcdef": "def"}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"fullname": "ml.runners.shared.reproducibility.validations.validate_runtime_info", "modulename": "ml.runners.shared.reproducibility.validations.validate_runtime_info", "kind": "module", "doc": "

    Module for validating runtime information against expected metadata to ensure reproducibility.

    \n"}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"fullname": "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger", "modulename": "ml.runners.shared.reproducibility.validations.validate_runtime_info", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.shared.reproducibility.validations.validate_runtime_info (WARNING)>"}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"fullname": "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info", "modulename": "ml.runners.shared.reproducibility.validations.validate_runtime_info", "qualname": "validate_runtime_info", "kind": "function", "doc": "

    Validate runtime information dictionary against the RuntimeInfo model.

    \n\n

    Args:\n runtime_info_dict: Dictionary containing runtime information to validate.

    \n\n

    Returns:\n An instance of RuntimeInfo if validation is successful.

    \n", "signature": "(runtime_info_dict: dict) -> ml.modeling.models.runtime_info.RuntimeInfo:", "funcdef": "def"}, "ml.runners.training": {"fullname": "ml.runners.training", "modulename": "ml.runners.training", "kind": "module", "doc": "

    A package for training machine learning models.

    \n"}, "ml.runners.training.constants": {"fullname": "ml.runners.training.constants", "modulename": "ml.runners.training.constants", "kind": "module", "doc": "

    A package for training-specific constants.

    \n"}, "ml.runners.training.constants.output": {"fullname": "ml.runners.training.constants.output", "modulename": "ml.runners.training.constants.output", "kind": "module", "doc": "

    Typed output contract for training runner implementations.

    \n"}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"fullname": "ml.runners.training.constants.output.SUPPORTED_MODELS", "modulename": "ml.runners.training.constants.output", "qualname": "SUPPORTED_MODELS", "kind": "variable", "doc": "

    \n", "annotation": ": TypeAlias", "default_value": "catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor"}, "ml.runners.training.constants.output.TrainOutput": {"fullname": "ml.runners.training.constants.output.TrainOutput", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput", "kind": "class", "doc": "

    Container for trained artifacts, lineage, metrics, and pipeline hash.

    \n"}, "ml.runners.training.constants.output.TrainOutput.__init__": {"fullname": "ml.runners.training.constants.output.TrainOutput.__init__", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmodel: catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor,\tpipeline: sklearn.pipeline.Pipeline | None,\tlineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tmetrics: dict[str, float],\tpipeline_cfg_hash: str | None)"}, "ml.runners.training.constants.output.TrainOutput.model": {"fullname": "ml.runners.training.constants.output.TrainOutput.model", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.model", "kind": "variable", "doc": "

    \n", "annotation": ": catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor"}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"fullname": "ml.runners.training.constants.output.TrainOutput.pipeline", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.pipeline", "kind": "variable", "doc": "

    \n", "annotation": ": sklearn.pipeline.Pipeline | None"}, "ml.runners.training.constants.output.TrainOutput.lineage": {"fullname": "ml.runners.training.constants.output.TrainOutput.lineage", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.runners.training.constants.output.TrainOutput.metrics": {"fullname": "ml.runners.training.constants.output.TrainOutput.metrics", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.metrics", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, float]"}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"fullname": "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash", "modulename": "ml.runners.training.constants.output", "qualname": "TrainOutput.pipeline_cfg_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None"}, "ml.runners.training.persistence": {"fullname": "ml.runners.training.persistence", "modulename": "ml.runners.training.persistence", "kind": "module", "doc": "

    Persistence helpers for training artifacts, metadata, and runtime snapshots.

    \n"}, "ml.runners.training.persistence.artifacts": {"fullname": "ml.runners.training.persistence.artifacts", "modulename": "ml.runners.training.persistence.artifacts", "kind": "module", "doc": "

    A package for storing training artifacts.

    \n"}, "ml.runners.training.persistence.artifacts.save_model": {"fullname": "ml.runners.training.persistence.artifacts.save_model", "modulename": "ml.runners.training.persistence.artifacts.save_model", "kind": "module", "doc": "

    Model artifact persistence helpers for training runs.

    \n"}, "ml.runners.training.persistence.artifacts.save_model.logger": {"fullname": "ml.runners.training.persistence.artifacts.save_model.logger", "modulename": "ml.runners.training.persistence.artifacts.save_model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.persistence.artifacts.save_model (WARNING)>"}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"fullname": "ml.runners.training.persistence.artifacts.save_model.save_model", "modulename": "ml.runners.training.persistence.artifacts.save_model", "qualname": "save_model", "kind": "function", "doc": "

    Persist trained model artifact using joblib and return file path.

    \n\n

    Args:\n model: Trained model object to serialize.\n path: Target directory where the model artifact is saved.

    \n\n

    Returns:\n Filesystem path to the persisted model artifact.

    \n", "signature": "(model, path: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}, "ml.runners.training.persistence.artifacts.save_pipeline": {"fullname": "ml.runners.training.persistence.artifacts.save_pipeline", "modulename": "ml.runners.training.persistence.artifacts.save_pipeline", "kind": "module", "doc": "

    Pipeline artifact persistence helpers for training runs.

    \n"}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"fullname": "ml.runners.training.persistence.artifacts.save_pipeline.logger", "modulename": "ml.runners.training.persistence.artifacts.save_pipeline", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.persistence.artifacts.save_pipeline (WARNING)>"}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"fullname": "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline", "modulename": "ml.runners.training.persistence.artifacts.save_pipeline", "qualname": "save_pipeline", "kind": "function", "doc": "

    Persist trained preprocessing+model pipeline and return file path.

    \n\n

    Args:\n pipeline: Trained sklearn pipeline to serialize.\n path: Target directory where the pipeline artifact is saved.

    \n\n

    Returns:\n Filesystem path to the persisted pipeline artifact.

    \n", "signature": "(pipeline: sklearn.pipeline.Pipeline, path: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}, "ml.runners.training.persistence.run_info": {"fullname": "ml.runners.training.persistence.run_info", "modulename": "ml.runners.training.persistence.run_info", "kind": "module", "doc": "

    A package for storing run information.

    \n"}, "ml.runners.training.persistence.run_info.persist_training_run": {"fullname": "ml.runners.training.persistence.run_info.persist_training_run", "modulename": "ml.runners.training.persistence.run_info.persist_training_run", "kind": "module", "doc": "

    Persistence orchestration for training run metadata, metrics, and runtime.

    \n"}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"fullname": "ml.runners.training.persistence.run_info.persist_training_run.logger", "modulename": "ml.runners.training.persistence.run_info.persist_training_run", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.persistence.run_info.persist_training_run (WARNING)>"}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"fullname": "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run", "modulename": "ml.runners.training.persistence.run_info.persist_training_run", "qualname": "persist_training_run", "kind": "function", "doc": "

    Persist training metadata, metrics artifact, and runtime snapshot.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n train_run_id: Training run identifier.\n experiment_dir: Base experiment directory.\n train_run_dir: Training output directory.\n start_time: Process start time used for runtime metadata.\n timestamp: Run timestamp string.\n feature_lineage: Feature lineage records.\n metrics: Training metrics payload.\n model_hash: Trained model artifact hash.\n pipeline_hash: Optional pipeline artifact hash.\n model_path: Persisted model artifact path.\n pipeline_path: Optional persisted pipeline artifact path.\n pipeline_cfg_hash: Optional pipeline configuration hash.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\ttrain_run_id: str,\texperiment_dir: pathlib.Path,\ttrain_run_dir: pathlib.Path,\tstart_time: float,\ttimestamp: str,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tmetrics: dict[str, float],\tmodel_hash: str,\tpipeline_hash: str | None,\tmodel_path: pathlib.Path,\tpipeline_path: pathlib.Path | None,\tpipeline_cfg_hash: str | None) -> None:", "funcdef": "def"}, "ml.runners.training.trainers": {"fullname": "ml.runners.training.trainers", "modulename": "ml.runners.training.trainers", "kind": "module", "doc": "

    A package for trainers.

    \n"}, "ml.runners.training.trainers.base": {"fullname": "ml.runners.training.trainers.base", "modulename": "ml.runners.training.trainers.base", "kind": "module", "doc": "

    Protocol definition for model training runner implementations.

    \n"}, "ml.runners.training.trainers.base.Trainer": {"fullname": "ml.runners.training.trainers.base.Trainer", "modulename": "ml.runners.training.trainers.base", "qualname": "Trainer", "kind": "class", "doc": "

    Structural interface implemented by concrete model trainers.

    \n", "bases": "typing.Protocol"}, "ml.runners.training.trainers.base.Trainer.train": {"fullname": "ml.runners.training.trainers.base.Trainer.train", "modulename": "ml.runners.training.trainers.base", "qualname": "Trainer.train", "kind": "function", "doc": "

    Train model artifacts using provided configuration and runtime controls.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n strict: Whether data/validation loading should fail strictly.\n failure_management_dir: Directory for failure-management artifacts.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\nReturns:\n Standardized training output.

    \n", "signature": "(\tself,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tsnapshot_binding_key: str | None = None,\tstrict: bool,\tfailure_management_dir: pathlib.Path,\tsearch_dir: pathlib.Path) -> ml.runners.training.constants.output.TrainOutput:", "funcdef": "def"}, "ml.runners.training.trainers.catboost": {"fullname": "ml.runners.training.trainers.catboost", "modulename": "ml.runners.training.trainers.catboost", "kind": "module", "doc": "

    A package for training CatBoost models.

    \n"}, "ml.runners.training.trainers.catboost.catboost": {"fullname": "ml.runners.training.trainers.catboost.catboost", "modulename": "ml.runners.training.trainers.catboost.catboost", "kind": "module", "doc": "

    Binary classification training utilities using CatBoost.

    \n\n

    This module contains helper routines and a top-level training function\nused to train binary classification models with CatBoost within the\nproject training framework. It provides deterministic data loading,\ndynamic import of model-specific pipeline components from the\nml.components package, pipeline construction, model definition,\nand training orchestration.

    \n\n

    The public entrypoint is train_binary_classification_with_catboost which\nreturns a fitted sklearn.pipeline.Pipeline combining preprocessing\nsteps and the trained CatBoost model.

    \n"}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"fullname": "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer", "modulename": "ml.runners.training.trainers.catboost.catboost", "qualname": "CatBoostTrainer", "kind": "class", "doc": "

    Concrete trainer for CatBoost models within project training flow.

    \n", "bases": "ml.runners.training.trainers.base.Trainer"}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"fullname": "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train", "modulename": "ml.runners.training.trainers.catboost.catboost", "qualname": "CatBoostTrainer.train", "kind": "function", "doc": "

    Execute end-to-end CatBoost training and return standardized output.

    \n\n

    Args:\n model_cfg: Validated model configuration for training.\n strict: Whether feature/data loading operations should fail strictly.\n failure_management_dir: Directory for storing failure-management artifacts.\n search_dir: Directory for storing search-related artifacts.\nReturns:\n Standardized training output containing model, pipeline, lineage, and metrics.

    \n\n

    Raises:\n PipelineContractError: Propagated when pipeline/model contract checks\n fail in downstream validation helpers.

    \n\n

    Notes:\n Class weighting and categorical feature handling are resolved\n dynamically from configuration and task type before model fitting.

    \n\n

    Side Effects:\n Performs model training and pipeline fitting, which can be\n computationally intensive and may write failure-management artifacts\n through downstream helpers.

    \n", "signature": "(\tself,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tsnapshot_binding_key: str | None = None,\tstrict: bool,\tfailure_management_dir: pathlib.Path,\tsearch_dir: pathlib.Path) -> ml.runners.training.constants.output.TrainOutput:", "funcdef": "def"}, "ml.runners.training.trainers.catboost.train_catboost_model": {"fullname": "ml.runners.training.trainers.catboost.train_catboost_model", "modulename": "ml.runners.training.trainers.catboost.train_catboost_model", "kind": "module", "doc": "

    Low-level CatBoost fitting helper used by training runner.

    \n"}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"fullname": "ml.runners.training.trainers.catboost.train_catboost_model.logger", "modulename": "ml.runners.training.trainers.catboost.train_catboost_model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.trainers.catboost.train_catboost_model (WARNING)>"}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"fullname": "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model", "modulename": "ml.runners.training.trainers.catboost.train_catboost_model", "qualname": "train_catboost_model", "kind": "function", "doc": "

    Fit preprocessing steps and CatBoost model, returning trained pipeline.

    \n\n

    The function separates preprocessing steps from the final model, fits\nthe preprocessing pipeline on the training data, transforms both train\nand validation sets, and fits the CatBoost model using the transformed\ndata and validation set for early stopping.

    \n\n

    Args:\n model_cfg (TrainModelConfig): Configuration object for the model.\n steps (list): Pipeline steps where the last element is the model.\n X_train, y_train, X_val, y_val: Training and validation data.

    \n\n

    Returns:\n tuple[CatBoostClassifier | CatBoostRegressor, Pipeline]: Trained model\n and fitted preprocessing+model pipeline.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tsteps: list,\tX_train: pandas.core.frame.DataFrame,\ty_train: pandas.core.series.Series,\tX_val: pandas.core.frame.DataFrame,\ty_val: pandas.core.series.Series) -> tuple[catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor, sklearn.pipeline.Pipeline]:", "funcdef": "def"}, "ml.runners.training.utils": {"fullname": "ml.runners.training.utils", "modulename": "ml.runners.training.utils", "kind": "module", "doc": "

    A package for training utilities.

    \n"}, "ml.runners.training.utils.get_trainer": {"fullname": "ml.runners.training.utils.get_trainer", "modulename": "ml.runners.training.utils.get_trainer", "kind": "module", "doc": "

    Factory helper for resolving training runner implementations by key.

    \n"}, "ml.runners.training.utils.get_trainer.logger": {"fullname": "ml.runners.training.utils.get_trainer.logger", "modulename": "ml.runners.training.utils.get_trainer", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.get_trainer (WARNING)>"}, "ml.runners.training.utils.get_trainer.get_trainer": {"fullname": "ml.runners.training.utils.get_trainer.get_trainer", "modulename": "ml.runners.training.utils.get_trainer", "qualname": "get_trainer", "kind": "function", "doc": "

    Instantiate trainer class registered for the provided algorithm key.

    \n\n

    Args:\n key: Trainer registry key identifying the algorithm implementation.

    \n\n

    Returns:\n Instantiated trainer implementation.

    \n", "signature": "(key: str) -> ml.runners.training.trainers.base.Trainer:", "funcdef": "def"}, "ml.runners.training.utils.logical_config_checks": {"fullname": "ml.runners.training.utils.logical_config_checks", "modulename": "ml.runners.training.utils.logical_config_checks", "kind": "module", "doc": "

    A package for logical configuration checks in training.

    \n"}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"fullname": "ml.runners.training.utils.logical_config_checks.validate_logical_config", "modulename": "ml.runners.training.utils.logical_config_checks.validate_logical_config", "kind": "module", "doc": "

    Orchestrator for logical consistency validations on training config.

    \n"}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"fullname": "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config", "modulename": "ml.runners.training.utils.logical_config_checks.validate_logical_config", "qualname": "validate_logical_config", "kind": "function", "doc": "

    Perform logical consistency checks on the training configuration.

    \n\n

    This function runs a series of validations to ensure that the provided\ntraining configuration is logically consistent and adheres to expected\nconstraints. It checks for allowed parameters, consistency of training\nbehavior settings, and any other logical rules defined for the training\nprocess.

    \n\n

    Args:\n model_cfg (TrainModelConfig): The validated training configuration object.\n search_dir (Path): The directory where search artifacts are stored, used for lineage checks.

    \n\n

    Raises:\n ConfigError: If any logical inconsistency is detected in the configuration.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tsearch_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.runners.training.utils.logical_config_checks.validations": {"fullname": "ml.runners.training.utils.logical_config_checks.validations", "modulename": "ml.runners.training.utils.logical_config_checks.validations", "kind": "module", "doc": "

    A package for logical configuration validation in training.

    \n"}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params", "kind": "module", "doc": "

    Validation helper for allowed best-parameter keys by algorithm.

    \n"}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params (WARNING)>"}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params", "qualname": "validate_allowed_params", "kind": "function", "doc": "

    Validate search-derived best params contain only allowed keys.

    \n\n

    Args:\n model_cfg: Validated training model configuration.\n search_dir: Search run directory containing metadata.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tsearch_dir: pathlib.Path) -> None:", "funcdef": "def"}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency", "kind": "module", "doc": "

    Logical consistency checks for training behavior configuration.

    \n"}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency (WARNING)>"}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"fullname": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency", "modulename": "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency", "qualname": "validate_training_behavior_consistency", "kind": "function", "doc": "

    Validate seed and early-stopping settings are logically consistent.

    \n\n

    Args:\n model_cfg: Validated training model configuration.

    \n\n

    Returns:\n None.

    \n", "signature": "(model_cfg: ml.config.schemas.model_cfg.TrainModelConfig) -> None:", "funcdef": "def"}, "ml.runners.training.utils.metrics": {"fullname": "ml.runners.training.utils.metrics", "modulename": "ml.runners.training.utils.metrics", "kind": "module", "doc": "

    A package for training metrics.

    \n"}, "ml.runners.training.utils.metrics.best_f1": {"fullname": "ml.runners.training.utils.metrics.best_f1", "modulename": "ml.runners.training.utils.metrics.best_f1", "kind": "module", "doc": "

    Threshold search utility for maximizing F1 in binary classification.

    \n"}, "ml.runners.training.utils.metrics.best_f1.logger": {"fullname": "ml.runners.training.utils.metrics.best_f1.logger", "modulename": "ml.runners.training.utils.metrics.best_f1", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.metrics.best_f1 (WARNING)>"}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"fullname": "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold", "modulename": "ml.runners.training.utils.metrics.best_f1", "qualname": "get_best_f1_threshold", "kind": "function", "doc": "

    Find probability threshold in [0, 1] grid that maximizes F1 score.

    \n\n

    Args:\n pipeline: Fitted probabilistic classifier pipeline.\n X: Feature matrix used to generate predicted probabilities.\n y_true: Ground-truth binary labels.

    \n\n

    Returns:\n Tuple containing best threshold and corresponding F1 score.

    \n", "signature": "(pipeline, X, y_true):", "funcdef": "def"}, "ml.runners.training.utils.metrics.compute_metrics": {"fullname": "ml.runners.training.utils.metrics.compute_metrics", "modulename": "ml.runners.training.utils.metrics.compute_metrics", "kind": "module", "doc": "

    Training-time metric computation helpers across task types.

    \n"}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"fullname": "ml.runners.training.utils.metrics.compute_metrics.logger", "modulename": "ml.runners.training.utils.metrics.compute_metrics", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.metrics.compute_metrics (WARNING)>"}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"fullname": "ml.runners.training.utils.metrics.compute_metrics.compute_metrics", "modulename": "ml.runners.training.utils.metrics.compute_metrics", "qualname": "compute_metrics", "kind": "function", "doc": "

    Compute training/validation metrics for configured model task type.

    \n\n

    Args:\n model: Fitted model instance.\n pipeline: Fitted pipeline used for prediction.\n model_cfg: Validated training model configuration.\n X_train: Training feature dataframe.\n y_train: Training target series.\n X_val: Validation feature dataframe.\n y_val: Validation target series.

    \n\n

    Returns:\n Dictionary of computed training and validation metrics.

    \n\n

    Raises:\n UserError: If model_cfg.task.type is unsupported.

    \n\n

    Notes:\n Classification metrics are computed from probabilistic outputs at the\n model's best iteration. Regression/forecasting branches inverse-transform\n predictions before metric calculation when target transformation is enabled.

    \n\n

    Side Effects:\n Executes model/pipeline inference on both train and validation splits and\n emits task-specific metric computation logs.

    \n", "signature": "(\t*,\tmodel: Any,\tpipeline: sklearn.pipeline.Pipeline,\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\tX_train: pandas.core.frame.DataFrame,\ty_train: pandas.core.series.Series,\tX_val: pandas.core.frame.DataFrame,\ty_val: pandas.core.series.Series) -> dict[str, float]:", "funcdef": "def"}, "ml.runners.training.utils.model_specific": {"fullname": "ml.runners.training.utils.model_specific", "modulename": "ml.runners.training.utils.model_specific", "kind": "module", "doc": "

    A package for model-specific training utilities.

    \n"}, "ml.runners.training.utils.model_specific.catboost": {"fullname": "ml.runners.training.utils.model_specific.catboost", "modulename": "ml.runners.training.utils.model_specific.catboost", "kind": "module", "doc": "

    CatBoost-specific model parameter extraction and estimator preparation.

    \n"}, "ml.runners.training.utils.model_specific.catboost.logger": {"fullname": "ml.runners.training.utils.model_specific.catboost.logger", "modulename": "ml.runners.training.utils.model_specific.catboost", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.runners.training.utils.model_specific.catboost (WARNING)>"}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"fullname": "ml.runners.training.utils.model_specific.catboost.extract_catboost_params", "modulename": "ml.runners.training.utils.model_specific.catboost", "qualname": "extract_catboost_params", "kind": "function", "doc": "

    Extract non-null CatBoost model and ensemble params from config.

    \n\n

    Args:\n model_cfg: Training model configuration.

    \n\n

    Returns:\n dict[str, Any]: Flattened CatBoost parameter mapping.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"fullname": "ml.runners.training.utils.model_specific.catboost.prepare_model", "modulename": "ml.runners.training.utils.model_specific.catboost", "qualname": "prepare_model", "kind": "function", "doc": "

    Construct configured CatBoost estimator for the current training run.

    \n\n

    Args:\n model_cfg: Training model configuration.\n cat_features: Categorical feature names.\n class_weights: Class-weight payload.\n failure_management_dir: Directory used by CatBoost for logs/artifacts.

    \n\n

    Returns:\n CatBoostClassifier | CatBoostRegressor: Configured CatBoost estimator instance.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.TrainModelConfig,\t*,\tcat_features: list,\tclass_weights: dict,\tfailure_management_dir: pathlib.Path) -> catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor:", "funcdef": "def"}, "ml.search": {"fullname": "ml.search", "modulename": "ml.search", "kind": "module", "doc": "

    A package for performing hyperparameter searches.

    \n"}, "ml.search.constants": {"fullname": "ml.search.constants", "modulename": "ml.search.constants", "kind": "module", "doc": "

    Shared literal types and constants for search orchestration stages.

    \n"}, "ml.search.constants.SEARCH_PHASES": {"fullname": "ml.search.constants.SEARCH_PHASES", "modulename": "ml.search.constants", "qualname": "SEARCH_PHASES", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['broad', 'narrow']"}, "ml.search.models": {"fullname": "ml.search.models", "modulename": "ml.search.models", "kind": "module", "doc": "

    A package with search-specific pydantic models.

    \n"}, "ml.search.models.experiment_metadata": {"fullname": "ml.search.models.experiment_metadata", "modulename": "ml.search.models.experiment_metadata", "kind": "module", "doc": "

    \n"}, "ml.search.models.experiment_metadata.Sources": {"fullname": "ml.search.models.experiment_metadata.Sources", "modulename": "ml.search.models.experiment_metadata", "qualname": "Sources", "kind": "class", "doc": "

    Represents the source information for the search experiment, including main source and any extended sources.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.search.models.experiment_metadata.Sources.main": {"fullname": "ml.search.models.experiment_metadata.Sources.main", "modulename": "ml.search.models.experiment_metadata", "qualname": "Sources.main", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.Sources.extends": {"fullname": "ml.search.models.experiment_metadata.Sources.extends", "modulename": "ml.search.models.experiment_metadata", "qualname": "Sources.extends", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "[]"}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata", "kind": "class", "doc": "

    Structured representation of experiment metadata, capturing configuration, environment, and lineage details.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.problem", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.problem", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.segment", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.segment", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.version", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.experiment_id", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.sources", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.sources", "kind": "variable", "doc": "

    \n", "annotation": ": ml.search.models.experiment_metadata.Sources", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.env", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.env", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['default', 'dev', 'test', 'prod']", "default_value": "'default'"}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.best_params_path", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.algorithm", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.pipeline_version", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.created_by", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.created_by", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.created_at", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.created_at", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.owner", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.owner", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.seed", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.seed", "kind": "variable", "doc": "

    \n", "annotation": ": int", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.hardware", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.hardware", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.hardware_cfg.HardwareConfig", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.git_commit", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.config_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.validation_status", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.pipeline_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.scoring_method", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.splits_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.AllSplitsInfo", "default_value": "PydanticUndefined"}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.target_transform", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.TargetTransformConfig | None", "default_value": "None"}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"fullname": "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting", "modulename": "ml.search.models.experiment_metadata", "qualname": "ExperimentMetadata.class_weighting", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_specs.ClassWeightingConfig | None", "default_value": "None"}, "ml.search.models.search_results": {"fullname": "ml.search.models.search_results", "modulename": "ml.search.models.search_results", "kind": "module", "doc": "

    Defines data models for representing search results and related metadata in a structured format.

    \n"}, "ml.search.models.search_results.Phases": {"fullname": "ml.search.models.search_results.Phases", "modulename": "ml.search.models.search_results", "qualname": "Phases", "kind": "class", "doc": "

    Represents the different phases of the search process.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.search.models.search_results.Phases.broad": {"fullname": "ml.search.models.search_results.Phases.broad", "modulename": "ml.search.models.search_results", "qualname": "Phases.broad", "kind": "variable", "doc": "

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.search.models.search_results.Phases.narrow": {"fullname": "ml.search.models.search_results.Phases.narrow", "modulename": "ml.search.models.search_results", "qualname": "Phases.narrow", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.models.search_results.SearchResults": {"fullname": "ml.search.models.search_results.SearchResults", "modulename": "ml.search.models.search_results", "qualname": "SearchResults", "kind": "class", "doc": "

    Structured representation of search results, including best parameters and phase details.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"fullname": "ml.search.models.search_results.SearchResults.best_pipeline_params", "modulename": "ml.search.models.search_results", "qualname": "SearchResults.best_pipeline_params", "kind": "variable", "doc": "

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.search.models.search_results.SearchResults.best_model_params": {"fullname": "ml.search.models.search_results.SearchResults.best_model_params", "modulename": "ml.search.models.search_results", "qualname": "SearchResults.best_model_params", "kind": "variable", "doc": "

    \n", "annotation": ": dict", "default_value": "PydanticUndefined"}, "ml.search.models.search_results.SearchResults.phases": {"fullname": "ml.search.models.search_results.SearchResults.phases", "modulename": "ml.search.models.search_results", "qualname": "SearchResults.phases", "kind": "variable", "doc": "

    \n", "annotation": ": ml.search.models.search_results.Phases", "default_value": "PydanticUndefined"}, "ml.search.params": {"fullname": "ml.search.params", "modulename": "ml.search.params", "kind": "module", "doc": "

    A package with param-specific logic for hyperparameter searches.

    \n"}, "ml.search.params.catboost": {"fullname": "ml.search.params.catboost", "modulename": "ml.search.params.catboost", "kind": "module", "doc": "

    A package for CatBoost-param-specific logic for hyperparameter searches.

    \n"}, "ml.search.params.catboost.refinement": {"fullname": "ml.search.params.catboost.refinement", "modulename": "ml.search.params.catboost.refinement", "kind": "module", "doc": "

    Narrow-search parameter refinement helpers for CatBoost searches.

    \n"}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"fullname": "ml.search.params.catboost.refinement.prepare_narrow_params", "modulename": "ml.search.params.catboost.refinement", "qualname": "prepare_narrow_params", "kind": "function", "doc": "

    Build narrow search distributions around broad-search best parameters.

    \n\n

    Args:\n best_params: Best-parameter mapping returned by broad search.\n narrow_params_cfg: Narrow-search configuration object with refinement rules.\n task_type: Compute task type (for example CPU or GPU).

    \n\n

    Returns:\n Refined parameter distributions for narrow search.

    \n\n

    Notes:\n GPU-specific constraints are applied for selected parameters (for\n example colsample_bylevel), and only params marked include in\n narrow config are expanded.

    \n\n

    Examples:

    \n\n
    \n
    \n
    \n

    params = prepare_narrow_params(best_params, narrow_cfg, task_type=\"GPU\")

    \n
    \n
    \n
    \n\n

    Side Effects:\n None.

    \n", "signature": "(best_params: dict, narrow_params_cfg, task_type: str) -> dict:", "funcdef": "def"}, "ml.search.params.catboost.validation": {"fullname": "ml.search.params.catboost.validation", "modulename": "ml.search.params.catboost.validation", "kind": "module", "doc": "

    Validation helpers for CatBoost hyperparameter value constraints.

    \n"}, "ml.search.params.catboost.validation.logger": {"fullname": "ml.search.params.catboost.validation.logger", "modulename": "ml.search.params.catboost.validation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.params.catboost.validation (WARNING)>"}, "ml.search.params.catboost.validation.validate_param_value": {"fullname": "ml.search.params.catboost.validation.validate_param_value", "modulename": "ml.search.params.catboost.validation", "qualname": "validate_param_value", "kind": "function", "doc": "

    Validate one hyperparameter value against configured constraints.

    \n\n

    Args:\n param_name: Hyperparameter name to validate.\n value: Hyperparameter value to validate.\n task_type: Compute task type (for example CPU or GPU).

    \n\n

    Returns:\n None.

    \n", "signature": "(param_name: str, value, task_type: str):", "funcdef": "def"}, "ml.search.params.refiners": {"fullname": "ml.search.params.refiners", "modulename": "ml.search.params.refiners", "kind": "module", "doc": "

    Primitive refinement functions for integer/float search neighborhoods.

    \n"}, "ml.search.params.refiners.logger": {"fullname": "ml.search.params.refiners.logger", "modulename": "ml.search.params.refiners", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.params.refiners (WARNING)>"}, "ml.search.params.refiners.refine_int": {"fullname": "ml.search.params.refiners.refine_int", "modulename": "ml.search.params.refiners", "qualname": "refine_int", "kind": "function", "doc": "

    Generate bounded integer neighborhood around center using offsets.

    \n\n

    Args:\n center: Center integer value.\n offsets: Integer offsets around center.\n low: Minimum allowed value.\n high: Maximum allowed value.

    \n\n

    Returns:\n list[int]: Sorted bounded integer candidates.

    \n", "signature": "(center, offsets, low, high):", "funcdef": "def"}, "ml.search.params.refiners.refine_float_mult": {"fullname": "ml.search.params.refiners.refine_float_mult", "modulename": "ml.search.params.refiners", "qualname": "refine_float_mult", "kind": "function", "doc": "

    Generate bounded multiplicative float neighborhood around center.

    \n\n

    Args:\n center: Center numeric value.\n factors: Multipliers to apply around center.\n low: Minimum allowed value.\n high: Maximum allowed value.\n decimals: Rounding precision.

    \n\n

    Returns:\n list[float]: Sorted bounded float candidates.

    \n", "signature": "(center, factors, low, high, decimals=5):", "funcdef": "def"}, "ml.search.params.refiners.refine_border_count": {"fullname": "ml.search.params.refiners.refine_border_count", "modulename": "ml.search.params.refiners", "qualname": "refine_border_count", "kind": "function", "doc": "

    Refine GPU-safe CatBoost border_count using adjacent allowed values.

    \n\n

    Args:\n center: Current border_count value.

    \n\n

    Returns:\n list[int]: Neighboring allowed border_count values including center.

    \n", "signature": "(center):", "funcdef": "def"}, "ml.search.params.utils": {"fullname": "ml.search.params.utils", "modulename": "ml.search.params.utils", "kind": "module", "doc": "

    Utility helpers for resolving default narrowing parameter settings.

    \n"}, "ml.search.params.utils.logger": {"fullname": "ml.search.params.utils.logger", "modulename": "ml.search.params.utils", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.params.utils (WARNING)>"}, "ml.search.params.utils.get_default_int_params": {"fullname": "ml.search.params.utils.get_default_int_params", "modulename": "ml.search.params.utils", "qualname": "get_default_int_params", "kind": "function", "doc": "

    Resolve integer narrowing params with config overrides and fallbacks.

    \n\n

    Args:\n param_cfg: Parameter refinement configuration object.\n default_offsets: Default integer offsets.\n default_low: Default lower bound.\n default_high: Default upper bound.

    \n\n

    Returns:\n tuple: Effective (offsets, low, high) parameters.

    \n", "signature": "(param_cfg, default_offsets, default_low, default_high):", "funcdef": "def"}, "ml.search.params.utils.get_default_float_params": {"fullname": "ml.search.params.utils.get_default_float_params", "modulename": "ml.search.params.utils", "qualname": "get_default_float_params", "kind": "function", "doc": "

    Resolve float narrowing params with config overrides and validation.

    \n\n

    Args:\n param_cfg: Parameter refinement configuration object.\n default_factors: Default multiplicative factors.\n default_low: Default lower bound.\n default_high: Default upper bound.\n default_decimals: Default rounding precision.

    \n\n

    Returns:\n tuple: Effective (factors, low, high, decimals) parameters.

    \n", "signature": "(\tparam_cfg,\tdefault_factors,\tdefault_low,\tdefault_high,\tdefault_decimals):", "funcdef": "def"}, "ml.search.persistence": {"fullname": "ml.search.persistence", "modulename": "ml.search.persistence", "kind": "module", "doc": "

    A package for search-specific persistence logic.

    \n"}, "ml.search.persistence.persist_experiment": {"fullname": "ml.search.persistence.persist_experiment", "modulename": "ml.search.persistence.persist_experiment", "kind": "module", "doc": "

    Persistence orchestration for search experiment metadata and runtime.

    \n"}, "ml.search.persistence.persist_experiment.logger": {"fullname": "ml.search.persistence.persist_experiment.logger", "modulename": "ml.search.persistence.persist_experiment", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.persistence.persist_experiment (WARNING)>"}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"fullname": "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR", "modulename": "ml.search.persistence.persist_experiment", "qualname": "EXPERIMENTS_DIR", "kind": "variable", "doc": "

    \n", "default_value": "WindowsPath('experiments')"}, "ml.search.persistence.persist_experiment.persist_experiment": {"fullname": "ml.search.persistence.persist_experiment.persist_experiment", "modulename": "ml.search.persistence.persist_experiment", "qualname": "persist_experiment", "kind": "function", "doc": "

    Persist search metadata and runtime snapshot for an experiment run.

    \n\n

    Args:\n model_cfg: Validated search model configuration.\n search_results: Search results payload.\n owner: Owner identifier for the experiment.\n experiment_id: Experiment identifier.\n search_dir: Target experiment directory.\n timestamp: Run timestamp string.\n start_time: Process start time used for runtime metadata.\n feature_lineage: Feature lineage records.\n pipeline_hash: Pipeline hash fingerprint.\n scoring_method: Scoring method used during search.\n splits_info: Dataset split information.\n overwrite_existing: Whether existing metadata/runtime should be overwritten.

    \n\n

    Returns:\n None.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsearch_results: dict,\towner: str,\texperiment_id: str,\tsearch_dir: pathlib.Path,\ttimestamp: str,\tstart_time: float,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tpipeline_hash: str,\tscoring_method: str,\tsplits_info: ml.types.splits.AllSplitsInfo,\toverwrite_existing: bool = False) -> None:", "funcdef": "def"}, "ml.search.persistence.prepare_metadata": {"fullname": "ml.search.persistence.prepare_metadata", "modulename": "ml.search.persistence.prepare_metadata", "kind": "module", "doc": "

    Metadata payload construction for search experiment persistence.

    \n"}, "ml.search.persistence.prepare_metadata.logger": {"fullname": "ml.search.persistence.prepare_metadata.logger", "modulename": "ml.search.persistence.prepare_metadata", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.persistence.prepare_metadata (WARNING)>"}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"fullname": "ml.search.persistence.prepare_metadata.prepare_metadata", "modulename": "ml.search.persistence.prepare_metadata", "qualname": "prepare_metadata", "kind": "function", "doc": "

    Build metadata record for a completed search experiment.

    \n\n

    Args:\n model_cfg: Validated search model configuration.\n search_results: Search results payload to persist.\n owner: Owner identifier for the search run.\n experiment_id: Experiment identifier.\n timestamp: Run creation timestamp.\n feature_lineage: Feature lineage records used by the run.\n pipeline_hash: Pipeline configuration hash.\n scoring_method: Metric/scoring method used during search.\n splits_info: Dataset split information for reproducibility metadata.

    \n\n

    Returns:\n Search metadata record ready for persistence.

    \n\n

    Notes:\n Datetime lineage fields are normalized to ISO strings before payload\n assembly to keep metadata JSON-serializable.

    \n\n

    Side Effects:\n Reads git commit metadata from the active repository context.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsearch_results: dict,\towner: str,\texperiment_id: str,\ttimestamp: str,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tpipeline_hash: str,\tscoring_method: str,\tsplits_info: ml.types.splits.AllSplitsInfo) -> dict:", "funcdef": "def"}, "ml.search.searchers": {"fullname": "ml.search.searchers", "modulename": "ml.search.searchers", "kind": "module", "doc": "

    A package for searchers.

    \n"}, "ml.search.searchers.base": {"fullname": "ml.search.searchers.base", "modulename": "ml.search.searchers.base", "kind": "module", "doc": "

    Protocol definition for hyperparameter searcher implementations.

    \n"}, "ml.search.searchers.base.Searcher": {"fullname": "ml.search.searchers.base.Searcher", "modulename": "ml.search.searchers.base", "qualname": "Searcher", "kind": "class", "doc": "

    Structural interface implemented by concrete search backends.

    \n", "bases": "typing.Protocol"}, "ml.search.searchers.base.Searcher.search": {"fullname": "ml.search.searchers.base.Searcher.search", "modulename": "ml.search.searchers.base", "qualname": "Searcher.search", "kind": "function", "doc": "

    Run hyperparameter search and return standardized search artifacts.

    \n\n

    Args:\n model_cfg: Validated search model configuration.\n strict: Whether loading and validation should fail strictly.\n failure_management_dir: Directory for failure-management artifacts.

    \n\n

    Returns:\n Standardized search output.

    \n", "signature": "(\tself,\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsnapshot_binding_key: str | None = None,\tstrict: bool,\tfailure_management_dir: pathlib.Path) -> ml.search.searchers.output.SearchOutput:", "funcdef": "def"}, "ml.search.searchers.catboost": {"fullname": "ml.search.searchers.catboost", "modulename": "ml.search.searchers.catboost", "kind": "module", "doc": "

    A package for searching CatBoost hyperparameters.

    \n"}, "ml.search.searchers.catboost.catboost": {"fullname": "ml.search.searchers.catboost.catboost", "modulename": "ml.search.searchers.catboost.catboost", "kind": "module", "doc": "

    CatBoost searcher implementation using multi-step pipeline orchestration.

    \n"}, "ml.search.searchers.catboost.catboost.logger": {"fullname": "ml.search.searchers.catboost.catboost.logger", "modulename": "ml.search.searchers.catboost.catboost", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.catboost (WARNING)>"}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"fullname": "ml.search.searchers.catboost.catboost.CatBoostSearcher", "modulename": "ml.search.searchers.catboost.catboost", "qualname": "CatBoostSearcher", "kind": "class", "doc": "

    Run preparation, broad search, and optional narrow search phases.

    \n", "bases": "ml.search.searchers.base.Searcher"}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"fullname": "ml.search.searchers.catboost.catboost.CatBoostSearcher.search", "modulename": "ml.search.searchers.catboost.catboost", "qualname": "CatBoostSearcher.search", "kind": "function", "doc": "

    Execute CatBoost hyperparameter search and return structured output.

    \n\n

    Args:\n model_cfg: Validated search configuration.\n snapshot_binding_key: Optional key for a snapshot binding to define which snapshot to load for each dataset.\n strict: Whether loading and validation stages should fail strictly.\n failure_management_dir: Directory for persisting failure-management artifacts.

    \n\n

    Returns:\n Search output containing search results, lineage, and run metadata.

    \n", "signature": "(\tself,\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsnapshot_binding_key: str | None = None,\tstrict: bool,\tfailure_management_dir: pathlib.Path) -> ml.search.searchers.output.SearchOutput:", "funcdef": "def"}, "ml.search.searchers.catboost.model": {"fullname": "ml.search.searchers.catboost.model", "modulename": "ml.search.searchers.catboost.model", "kind": "module", "doc": "

    CatBoost estimator preparation utilities for search phases.

    \n"}, "ml.search.searchers.catboost.model.logger": {"fullname": "ml.search.searchers.catboost.model.logger", "modulename": "ml.search.searchers.catboost.model", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.model (WARNING)>"}, "ml.search.searchers.catboost.model.prepare_model": {"fullname": "ml.search.searchers.catboost.model.prepare_model", "modulename": "ml.search.searchers.catboost.model", "qualname": "prepare_model", "kind": "function", "doc": "

    Build CatBoost model configured for broad or narrow search phase.

    \n\n

    Args:\n model_cfg: Validated search model configuration.\n search_phase: Search phase whose settings should be applied.\n cat_features: Categorical feature indices or names for CatBoost.\n class_weights: Optional class-weight mapping for classification tasks.

    \n\n

    Returns:\n Configured CatBoost classifier or regressor instance.

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\t*,\tsearch_phase: Literal['broad', 'narrow'],\tcat_features: list,\tclass_weights: dict | None) -> catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline": {"fullname": "ml.search.searchers.catboost.pipeline", "modulename": "ml.search.searchers.catboost.pipeline", "kind": "module", "doc": "

    A package for pipeline logic for searching CatBoost hyperparameters.

    \n"}, "ml.search.searchers.catboost.pipeline.context": {"fullname": "ml.search.searchers.catboost.pipeline.context", "modulename": "ml.search.searchers.catboost.pipeline.context", "kind": "module", "doc": "

    Execution context model shared across CatBoost search pipeline steps.

    \n"}, "ml.search.searchers.catboost.pipeline.context.logger": {"fullname": "ml.search.searchers.catboost.pipeline.context.logger", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.pipeline.context (WARNING)>"}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext", "kind": "class", "doc": "

    Mutable state container for CatBoost search pipeline orchestration.

    \n"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\tstrict: bool,\tfailure_management_dir: pathlib.Path,\tsnapshot_binding_key: str | None = None,\tX_train: pandas.core.frame.DataFrame | None = None,\ty_train: pandas.core.series.Series | None = None,\tsplits_info: ml.types.splits.AllSplitsInfo | None = None,\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage] | None = None,\tinput_schema: pandas.core.frame.DataFrame | None = None,\tderived_schema: pandas.core.frame.DataFrame | None = None,\tpipeline_cfg: ml.pipelines.models.PipelineConfig | None = None,\tpipeline_hash: str | None = None,\tcat_features: list[str] | None = None,\tscoring: Optional[Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']] = None,\tclass_weights: dict | None = None,\tbest_params_1: dict | None = None,\tbroad_result: dict | None = None,\tnarrow_disabled: bool | None = None,\tbest_params: dict | None = None,\tnarrow_result: dict | None = None)"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.model_cfg", "kind": "variable", "doc": "

    \n", "annotation": ": ml.config.schemas.model_cfg.SearchModelConfig"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.strict", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.strict", "kind": "variable", "doc": "

    \n", "annotation": ": bool"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.failure_management_dir", "kind": "variable", "doc": "

    \n", "annotation": ": pathlib.Path"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.snapshot_binding_key", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.X_train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.y_train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.splits_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.AllSplitsInfo | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage] | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.input_schema", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.derived_schema", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.pipeline_cfg", "kind": "variable", "doc": "

    \n", "annotation": ": ml.pipelines.models.PipelineConfig | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.pipeline_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.cat_features", "kind": "variable", "doc": "

    \n", "annotation": ": list[str] | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.scoring", "kind": "variable", "doc": "

    \n", "annotation": ": Optional[Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']]", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.class_weights", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.best_params_1", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.broad_result", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.narrow_disabled", "kind": "variable", "doc": "

    \n", "annotation": ": bool | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.best_params", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.narrow_result", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_x_train", "kind": "variable", "doc": "

    Return prepared training features or raise if unavailable.

    \n\n

    Returns:\n pd.DataFrame: Prepared training features.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_y_train", "kind": "variable", "doc": "

    Return prepared training target or raise if unavailable.

    \n\n

    Returns:\n pd.Series: Prepared training target.

    \n", "annotation": ": pandas.core.series.Series"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_splits_info", "kind": "variable", "doc": "

    Return split summary metadata or raise if not prepared.

    \n\n

    Returns:\n AllSplitsInfo: Summary information for data splits.

    \n", "annotation": ": ml.types.splits.AllSplitsInfo"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_feature_lineage", "kind": "variable", "doc": "

    Return feature lineage or raise if not prepared.

    \n\n

    Returns:\n list[FeatureLineage]: Loaded feature lineage metadata.

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_input_schema", "kind": "variable", "doc": "

    Return input schema dataframe or raise if not loaded.

    \n\n

    Returns:\n pd.DataFrame: Input feature schema.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_derived_schema", "kind": "variable", "doc": "

    Return derived schema dataframe or raise if not loaded.

    \n\n

    Returns:\n pd.DataFrame: Derived feature schema.

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_pipeline_cfg", "kind": "variable", "doc": "

    Return loaded pipeline config or raise if missing.

    \n\n

    Returns:\n PipelineConfig: Loaded pipeline configuration.

    \n", "annotation": ": ml.pipelines.models.PipelineConfig"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_pipeline_hash", "kind": "variable", "doc": "

    Return computed pipeline hash or raise if not set.

    \n\n

    Returns:\n str: Pipeline configuration hash.

    \n", "annotation": ": str"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_cat_features", "kind": "variable", "doc": "

    Return categorical feature list or raise if not prepared.

    \n\n

    Returns:\n list[str]: Categorical feature names.

    \n", "annotation": ": list[str]"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_scoring", "kind": "variable", "doc": "

    Return resolved scoring function or raise if unset.

    \n\n

    Returns:\n SUPPORTED_SCORING_FUNCTIONS: Selected scoring metric.

    \n", "annotation": ": Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_best_params_1", "kind": "variable", "doc": "

    Return broad-phase best params or raise if broad step not run.

    \n\n

    Returns:\n dict: Best parameters from broad search.

    \n", "annotation": ": dict"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_broad_result", "kind": "variable", "doc": "

    Return broad-phase search result payload or raise if missing.

    \n\n

    Returns:\n dict: Broad search result payload.

    \n", "annotation": ": dict"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_narrow_disabled", "kind": "variable", "doc": "

    Return narrow-enabled flag or raise if not decided yet.

    \n\n

    Returns:\n bool: Whether narrow search is disabled.

    \n", "annotation": ": bool"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_best_params", "kind": "variable", "doc": "

    Return narrow-phase best params or raise if missing.

    \n\n

    Returns:\n dict: Best parameters from narrow search.

    \n", "annotation": ": dict"}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"fullname": "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result", "modulename": "ml.search.searchers.catboost.pipeline.context", "qualname": "SearchContext.require_narrow_result", "kind": "variable", "doc": "

    Return narrow-phase result payload or raise if missing.

    \n\n

    Returns:\n dict: Narrow search result payload.

    \n", "annotation": ": dict"}, "ml.search.searchers.catboost.pipeline.steps": {"fullname": "ml.search.searchers.catboost.pipeline.steps", "modulename": "ml.search.searchers.catboost.pipeline.steps", "kind": "module", "doc": "

    A package with steps forming the catboost search pipeline.

    \n"}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "kind": "module", "doc": "

    Broad hyperparameter search pipeline step for CatBoost searcher.

    \n"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.logger", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.pipeline.steps.broad_search (WARNING)>"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep", "kind": "class", "doc": "

    Execute broad randomized search and persist resumable broad state.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.search.searchers.catboost.pipeline.context.SearchContext]"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'broad_search'"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"fullname": "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run", "modulename": "ml.search.searchers.catboost.pipeline.steps.broad_search", "qualname": "BroadSearchStep.run", "kind": "function", "doc": "

    Run broad search phase or restore existing broad phase outputs.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n SearchContext: Updated context with broad-search outputs.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> ml.search.searchers.catboost.pipeline.context.SearchContext:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "kind": "module", "doc": "

    Narrow hyperparameter search pipeline step for CatBoost searcher.

    \n"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.pipeline.steps.narrow_search (WARNING)>"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep", "kind": "class", "doc": "

    Execute narrow randomized search around broad-phase best parameters.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.search.searchers.catboost.pipeline.context.SearchContext]"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'narrow_search'"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"fullname": "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run", "modulename": "ml.search.searchers.catboost.pipeline.steps.narrow_search", "qualname": "NarrowSearchStep.run", "kind": "function", "doc": "

    Run narrow phase, validate params, and persist resumable state.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n SearchContext: Updated context with narrow-search outputs.

    \n\n

    Raises:\n UserError: If resumable narrow-search state is malformed.\n ConfigError: If narrow-search configuration is missing/invalid.\n SearchError: If underlying narrow randomized search execution fails.

    \n\n

    Notes:\n The step supports resume mode via narrow_info.json and may skip\n compute when previously persisted outputs are available.

    \n\n

    Side Effects:\n May write failure-management narrow-search state to disk and emits\n step-level progress logs.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> ml.search.searchers.catboost.pipeline.context.SearchContext:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "kind": "module", "doc": "

    Preparation pipeline step for CatBoost search orchestration.

    \n"}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.logger", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.searchers.catboost.pipeline.steps.preparation (WARNING)>"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep", "kind": "class", "doc": "

    Load data/schemas, resolve scoring, and prepare search context state.

    \n", "bases": "ml.utils.pipeline_core.step.PipelineStep[ml.search.searchers.catboost.pipeline.context.SearchContext]"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.name", "kind": "variable", "doc": "

    \n", "default_value": "'preparation'"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.stats", "kind": "variable", "doc": "

    \n", "annotation": ": ml.modeling.class_weighting.models.DataStats"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.before", "kind": "function", "doc": "

    Emit pre-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.after", "kind": "function", "doc": "

    Emit post-step log message.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n None: Emits logging side effect only.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> None:", "funcdef": "def"}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"fullname": "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run", "modulename": "ml.search.searchers.catboost.pipeline.steps.preparation", "qualname": "PreparationStep.run", "kind": "function", "doc": "

    Prepare training inputs/config artifacts required by search phases.

    \n\n

    Args:\n ctx: Search pipeline context.

    \n\n

    Returns:\n SearchContext: Updated context with prepared data/config artifacts.

    \n\n

    Raises:\n DataError: Propagated from feature/target loading and validation.\n PipelineContractError: Propagated when model/pipeline contract checks\n fail.

    \n\n

    Notes:\n This step centralizes all shared preparation work so broad and narrow\n phases consume the same validated inputs and derived artifacts.

    \n\n

    Side Effects:\n Reads data/config files from disk and mutates multiple context fields\n required by downstream search steps.

    \n", "signature": "(\tself,\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> ml.search.searchers.catboost.pipeline.context.SearchContext:", "funcdef": "def"}, "ml.search.searchers.catboost.search_results_creator": {"fullname": "ml.search.searchers.catboost.search_results_creator", "modulename": "ml.search.searchers.catboost.search_results_creator", "kind": "module", "doc": "

    Helpers for assembling normalized search-results payloads.

    \n"}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"fullname": "ml.search.searchers.catboost.search_results_creator.create_search_results", "modulename": "ml.search.searchers.catboost.search_results_creator", "qualname": "create_search_results", "kind": "function", "doc": "

    Build final search results from context state across completed phases.

    \n\n

    Args:\n ctx: Search pipeline context with broad/narrow phase outputs.

    \n\n

    Returns:\n Normalized search-results payload ready for persistence.

    \n", "signature": "(\tctx: ml.search.searchers.catboost.pipeline.context.SearchContext) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.search.searchers.output": {"fullname": "ml.search.searchers.output", "modulename": "ml.search.searchers.output", "kind": "module", "doc": "

    Typed output model returned by searcher implementations.

    \n"}, "ml.search.searchers.output.SearchOutput": {"fullname": "ml.search.searchers.output.SearchOutput", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput", "kind": "class", "doc": "

    Search results plus lineage, scoring method, and split metadata.

    \n"}, "ml.search.searchers.output.SearchOutput.__init__": {"fullname": "ml.search.searchers.output.SearchOutput.__init__", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tsearch_results: dict[str, typing.Any],\tfeature_lineage: list[ml.modeling.models.feature_lineage.FeatureLineage],\tpipeline_hash: str,\tscoring_method: str,\tsplits_info: ml.types.splits.AllSplitsInfo)"}, "ml.search.searchers.output.SearchOutput.search_results": {"fullname": "ml.search.searchers.output.SearchOutput.search_results", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.search_results", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, typing.Any]"}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"fullname": "ml.search.searchers.output.SearchOutput.feature_lineage", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.feature_lineage", "kind": "variable", "doc": "

    \n", "annotation": ": list[ml.modeling.models.feature_lineage.FeatureLineage]"}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"fullname": "ml.search.searchers.output.SearchOutput.pipeline_hash", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.pipeline_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.search.searchers.output.SearchOutput.scoring_method": {"fullname": "ml.search.searchers.output.SearchOutput.scoring_method", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.scoring_method", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.search.searchers.output.SearchOutput.splits_info": {"fullname": "ml.search.searchers.output.SearchOutput.splits_info", "modulename": "ml.search.searchers.output", "qualname": "SearchOutput.splits_info", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.AllSplitsInfo"}, "ml.search.utils": {"fullname": "ml.search.utils", "modulename": "ml.search.utils", "kind": "module", "doc": "

    A package with utilities for hyperparameter searching.

    \n"}, "ml.search.utils.failure_management": {"fullname": "ml.search.utils.failure_management", "modulename": "ml.search.utils.failure_management", "kind": "module", "doc": "

    A package for managing failed search runs.

    \n"}, "ml.search.utils.failure_management.delete_failure_management_folder": {"fullname": "ml.search.utils.failure_management.delete_failure_management_folder", "modulename": "ml.search.utils.failure_management.delete_failure_management_folder", "kind": "module", "doc": "

    Cleanup helpers for search/training failure-management directories.

    \n"}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"fullname": "ml.search.utils.failure_management.delete_failure_management_folder.logger", "modulename": "ml.search.utils.failure_management.delete_failure_management_folder", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.failure_management.delete_failure_management_folder (WARNING)>"}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"fullname": "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE", "modulename": "ml.search.utils.failure_management.delete_failure_management_folder", "qualname": "DIRS_OK_TO_DELETE", "kind": "variable", "doc": "

    \n", "default_value": "['learn', 'test', 'tmp']"}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"fullname": "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder", "modulename": "ml.search.utils.failure_management.delete_failure_management_folder", "qualname": "delete_failure_management_folder", "kind": "function", "doc": "

    Safely remove failure-management directories when cleanup is enabled.

    \n", "signature": "(\t*,\tfolder_path: pathlib.Path,\tcleanup: bool,\tstage: Literal['search', 'train']) -> None:", "funcdef": "def"}, "ml.search.utils.failure_management.save_broad": {"fullname": "ml.search.utils.failure_management.save_broad", "modulename": "ml.search.utils.failure_management.save_broad", "kind": "module", "doc": "

    Persistence helper for saving broad-search resumable state.

    \n"}, "ml.search.utils.failure_management.save_broad.logger": {"fullname": "ml.search.utils.failure_management.save_broad.logger", "modulename": "ml.search.utils.failure_management.save_broad", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.failure_management.save_broad (WARNING)>"}, "ml.search.utils.failure_management.save_broad.save_broad": {"fullname": "ml.search.utils.failure_management.save_broad.save_broad", "modulename": "ml.search.utils.failure_management.save_broad", "qualname": "save_broad", "kind": "function", "doc": "

    Persist broad search result and best params to JSON marker file.

    \n", "signature": "(\t*,\tbroad_result: dict,\tbest_params_1: dict,\ttgt_file: pathlib.Path) -> None:", "funcdef": "def"}, "ml.search.utils.failure_management.save_narrow": {"fullname": "ml.search.utils.failure_management.save_narrow", "modulename": "ml.search.utils.failure_management.save_narrow", "kind": "module", "doc": "

    Persistence helper for saving narrow-search resumable state.

    \n"}, "ml.search.utils.failure_management.save_narrow.logger": {"fullname": "ml.search.utils.failure_management.save_narrow.logger", "modulename": "ml.search.utils.failure_management.save_narrow", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.failure_management.save_narrow (WARNING)>"}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"fullname": "ml.search.utils.failure_management.save_narrow.save_narrow", "modulename": "ml.search.utils.failure_management.save_narrow", "qualname": "save_narrow", "kind": "function", "doc": "

    Persist narrow search result and best params to JSON marker file.

    \n", "signature": "(\t*,\tnarrow_result: dict,\tbest_params: dict,\ttgt_file: pathlib.Path) -> None:", "funcdef": "def"}, "ml.search.utils.get_searcher": {"fullname": "ml.search.utils.get_searcher", "modulename": "ml.search.utils.get_searcher", "kind": "module", "doc": "

    Factory helper for resolving registered searcher implementations.

    \n"}, "ml.search.utils.get_searcher.logger": {"fullname": "ml.search.utils.get_searcher.logger", "modulename": "ml.search.utils.get_searcher", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.get_searcher (WARNING)>"}, "ml.search.utils.get_searcher.get_searcher": {"fullname": "ml.search.utils.get_searcher.get_searcher", "modulename": "ml.search.utils.get_searcher", "qualname": "get_searcher", "kind": "function", "doc": "

    Instantiate the searcher registered for the provided algorithm key.

    \n\n

    Args:\n key: Searcher registry key identifying the algorithm implementation.

    \n\n

    Returns:\n Instantiated searcher implementation.

    \n", "signature": "(key: str) -> ml.search.searchers.base.Searcher:", "funcdef": "def"}, "ml.search.utils.model_params_extraction": {"fullname": "ml.search.utils.model_params_extraction", "modulename": "ml.search.utils.model_params_extraction", "kind": "module", "doc": "

    Helpers for extracting model-specific parameters from pipeline search output.

    \n"}, "ml.search.utils.model_params_extraction.extract_model_params": {"fullname": "ml.search.utils.model_params_extraction.extract_model_params", "modulename": "ml.search.utils.model_params_extraction", "qualname": "extract_model_params", "kind": "function", "doc": "

    Extract estimator-level parameters from pipeline-prefixed best params.

    \n\n

    Args:\n best_params: Mapping of best parameters from a pipeline search.

    \n\n

    Returns:\n Parameter mapping containing only Model__ entries without prefix.

    \n", "signature": "(best_params):", "funcdef": "def"}, "ml.search.utils.randomized_search": {"fullname": "ml.search.utils.randomized_search", "modulename": "ml.search.utils.randomized_search", "kind": "module", "doc": "

    Utilities for running randomized hyperparameter searches.

    \n"}, "ml.search.utils.randomized_search.logger": {"fullname": "ml.search.utils.randomized_search.logger", "modulename": "ml.search.utils.randomized_search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.search.utils.randomized_search (WARNING)>"}, "ml.search.utils.randomized_search.perform_randomized_search": {"fullname": "ml.search.utils.randomized_search.perform_randomized_search", "modulename": "ml.search.utils.randomized_search", "qualname": "perform_randomized_search", "kind": "function", "doc": "

    Run randomized search and return serializable best-result metadata.

    \n\n

    Args:\n pipeline: Estimator pipeline used for randomized search.\n X_train: Training feature matrix.\n y_train: Training target vector.\n param_distributions: Hyperparameter distributions for randomized sampling.\n model_cfg: Validated search model configuration.\n search_phase: Search phase identifier (broad or narrow).\n scoring: Supported scoring method used by the search.

    \n\n

    Returns:\n Serializable dictionary containing best parameters, scores, and CV summary.

    \n\n

    Raises:\n ValueError: Propagated when search inputs are invalid (for example,\n incompatible parameter distributions or CV configuration).

    \n\n

    Notes:\n For GPU execution, n_jobs is forced to 1 to avoid parallel worker\n contention with GPU-bound estimators.

    \n\n

    Side Effects:\n Fits pipeline via RandomizedSearchCV.fit and emits detailed run\n configuration logs.

    \n\n

    Examples:

    \n\n
    \n
    \n
    \n

    results = perform_randomized_search(\n ... pipeline,\n ... X_train=X_train,\n ... y_train=y_train,\n ... param_distributions=param_distributions,\n ... model_cfg=model_cfg,\n ... search_phase=\"broad\",\n ... scoring=\"roc_auc\",\n ... )

    \n
    \n
    \n
    \n", "signature": "(\tpipeline: sklearn.pipeline.Pipeline,\t*,\tX_train: pandas.core.frame.DataFrame,\ty_train: pandas.core.series.Series,\tparam_distributions: dict[str, typing.Any],\tmodel_cfg: ml.config.schemas.model_cfg.SearchModelConfig,\tsearch_phase: Literal['broad', 'narrow'],\tscoring: Literal['roc_auc', 'average_precision', 'neg_root_mean_squared_error', 'neg_mean_absolute_error', 'neg_mean_poisson_deviance']) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.snapshot_bindings": {"fullname": "ml.snapshot_bindings", "modulename": "ml.snapshot_bindings", "kind": "module", "doc": "

    A package for snapshot bindings logic.

    \n"}, "ml.snapshot_bindings.config": {"fullname": "ml.snapshot_bindings.config", "modulename": "ml.snapshot_bindings.config", "kind": "module", "doc": "

    A package for snapshot bindings pydantic models and dataclasses.

    \n"}, "ml.snapshot_bindings.config.models": {"fullname": "ml.snapshot_bindings.config.models", "modulename": "ml.snapshot_bindings.config.models", "kind": "module", "doc": "

    A module defining the data models for snapshot bindings configuration.

    \n"}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"fullname": "ml.snapshot_bindings.config.models.DatasetSnapshotBinding", "modulename": "ml.snapshot_bindings.config.models", "qualname": "DatasetSnapshotBinding", "kind": "class", "doc": "

    Defines the snapshot binding for a specific dataset version.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"fullname": "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot", "modulename": "ml.snapshot_bindings.config.models", "qualname": "DatasetSnapshotBinding.snapshot", "kind": "variable", "doc": "

    The identifier of the snapshot to use for this dataset version.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"fullname": "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding", "modulename": "ml.snapshot_bindings.config.models", "qualname": "FeatureSetSnapshotBinding", "kind": "class", "doc": "

    Defines the snapshot binding for a specific feature set version.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"fullname": "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot", "modulename": "ml.snapshot_bindings.config.models", "qualname": "FeatureSetSnapshotBinding.snapshot", "kind": "variable", "doc": "

    The identifier of the snapshot to use for this feature set version.

    \n", "annotation": ": str", "default_value": "PydanticUndefined"}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBinding", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBinding", "kind": "class", "doc": "

    Defines the overall snapshot binding configuration, including dataset and feature set bindings, with versions.

    \n", "bases": "pydantic.main.BaseModel"}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBinding.datasets", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBinding.datasets", "kind": "variable", "doc": "

    Mapping of dataset names to versions, which then map to their respective snapshot bindings.\nExample: datasets[dataset_name][dataset_version].snapshot

    \n", "annotation": ": dict[str, dict[str, ml.snapshot_bindings.config.models.DatasetSnapshotBinding]]", "default_value": "PydanticUndefined"}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBinding.feature_sets", "kind": "variable", "doc": "

    Mapping of feature set names to versions, which then map to their respective snapshot bindings.\nExample: feature_sets[feature_set_name][feature_set_version].snapshot

    \n", "annotation": ": dict[str, dict[str, ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding]]", "default_value": "PydanticUndefined"}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBindingsRegistry", "kind": "class", "doc": "

    Defines the registry of snapshot bindings, mapping binding keys to their configurations.

    \n", "bases": "pydantic.main.BaseModel, typing.Generic[~RootModelRootType]"}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"fullname": "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get", "modulename": "ml.snapshot_bindings.config.models", "qualname": "SnapshotBindingsRegistry.get", "kind": "function", "doc": "

    \n", "signature": "(self, key: str, default=None):", "funcdef": "def"}, "ml.snapshot_bindings.extraction": {"fullname": "ml.snapshot_bindings.extraction", "modulename": "ml.snapshot_bindings.extraction", "kind": "module", "doc": "

    A package for extracting snapshot binding information.

    \n"}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"fullname": "ml.snapshot_bindings.extraction.get_snapshot_binding", "modulename": "ml.snapshot_bindings.extraction.get_snapshot_binding", "kind": "module", "doc": "

    A module to retrieve snapshot bindings from a registry based on a provided key.

    \n"}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"fullname": "ml.snapshot_bindings.extraction.get_snapshot_binding.logger", "modulename": "ml.snapshot_bindings.extraction.get_snapshot_binding", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.snapshot_bindings.extraction.get_snapshot_binding (WARNING)>"}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"fullname": "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding", "modulename": "ml.snapshot_bindings.extraction.get_snapshot_binding", "qualname": "get_and_validate_snapshot_binding", "kind": "function", "doc": "

    Retrieve and validate snapshot binding from registry based on the provided key.

    \n\n

    Args:\n snapshot_binding_key: Key to identify which snapshot binding to retrieve, typically defined in training metadata.

    \n", "signature": "(\tsnapshot_binding_key: str,\texpect_dataset_bindings: bool = False,\texpect_feature_set_bindings: bool = False) -> ml.snapshot_bindings.config.models.SnapshotBinding:", "funcdef": "def"}, "ml.snapshot_bindings.validation": {"fullname": "ml.snapshot_bindings.validation", "modulename": "ml.snapshot_bindings.validation", "kind": "module", "doc": "

    A package for snapshot bindings validation logic.

    \n"}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"fullname": "ml.snapshot_bindings.validation.validate_snapshot_binding", "modulename": "ml.snapshot_bindings.validation.validate_snapshot_binding", "kind": "module", "doc": "

    A module for validating snapshot binding configurations.

    \n"}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"fullname": "ml.snapshot_bindings.validation.validate_snapshot_binding.logger", "modulename": "ml.snapshot_bindings.validation.validate_snapshot_binding", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.snapshot_bindings.validation.validate_snapshot_binding (WARNING)>"}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"fullname": "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding", "modulename": "ml.snapshot_bindings.validation.validate_snapshot_binding", "qualname": "validate_snapshot_binding", "kind": "function", "doc": "

    Validate the snapshot binding configuration against the defined data model.

    \n\n

    Args:\n snapshot_binding_config: The snapshot binding configuration to validate, typically loaded from a YAML file.\n expect_dataset_bindings: Whether to expect dataset bindings in the configuration.\n expect_feature_set_bindings: Whether to expect feature set bindings in the configuration.

    \n\n

    Returns:\n SnapshotBinding: The validated snapshot binding configuration as a Pydantic model instance.

    \n", "signature": "(\tsnapshot_binding_config: ml.snapshot_bindings.config.models.SnapshotBinding | None,\texpect_dataset_bindings: bool = False,\texpect_feature_set_bindings: bool = False) -> ml.snapshot_bindings.config.models.SnapshotBinding:", "funcdef": "def"}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"fullname": "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry", "modulename": "ml.snapshot_bindings.validation.validate_snapshot_binding", "qualname": "validate_snapshot_binding_registry", "kind": "function", "doc": "

    Validate the snapshot bindings registry configuration against the defined data model.

    \n\n

    Args:\n snapshot_bindings_registry_config: The snapshot bindings registry configuration to validate, typically loaded from a YAML file.

    \n\n

    Returns:\n SnapshotBindingsRegistry: The validated snapshot bindings registry configuration as a Pydantic model instance.

    \n", "signature": "(\tsnapshot_bindings_registry_config: dict) -> ml.snapshot_bindings.config.models.SnapshotBindingsRegistry:", "funcdef": "def"}, "ml.targets": {"fullname": "ml.targets", "modulename": "ml.targets", "kind": "module", "doc": "

    A package defining how targets are created at runtime.

    \n"}, "ml.targets.adr": {"fullname": "ml.targets.adr", "modulename": "ml.targets.adr", "kind": "module", "doc": "

    A package defining how adr target is created at runtime.

    \n"}, "ml.targets.adr.v1": {"fullname": "ml.targets.adr.v1", "modulename": "ml.targets.adr.v1", "kind": "module", "doc": "

    Version 1 ADR target strategy.

    \n"}, "ml.targets.adr.v1.AdrTargetV1": {"fullname": "ml.targets.adr.v1.AdrTargetV1", "modulename": "ml.targets.adr.v1", "qualname": "AdrTargetV1", "kind": "class", "doc": "

    Build the ADR regression target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.base": {"fullname": "ml.targets.base", "modulename": "ml.targets.base", "kind": "module", "doc": "

    Base abstractions for target construction strategies.

    \n"}, "ml.targets.base.logger": {"fullname": "ml.targets.base.logger", "modulename": "ml.targets.base", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.targets.base (WARNING)>"}, "ml.targets.base.TargetStrategy": {"fullname": "ml.targets.base.TargetStrategy", "modulename": "ml.targets.base", "qualname": "TargetStrategy", "kind": "class", "doc": "

    Abstract strategy for building model targets from prepared data.

    \n", "bases": "abc.ABC"}, "ml.targets.base.TargetStrategy.__init__": {"fullname": "ml.targets.base.TargetStrategy.__init__", "modulename": "ml.targets.base", "qualname": "TargetStrategy.__init__", "kind": "function", "doc": "

    Initialize the target strategy with a specified entity key column name.

    \n\n

    Args:\n entity_key: The name of the entity key column to use for traceability.

    \n", "signature": "(entity_key: str)"}, "ml.targets.base.TargetStrategy.entity_key": {"fullname": "ml.targets.base.TargetStrategy.entity_key", "modulename": "ml.targets.base", "qualname": "TargetStrategy.entity_key", "kind": "variable", "doc": "

    \n"}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"fullname": "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS", "modulename": "ml.targets.base", "qualname": "TargetStrategy.REQUIRED_COLUMNS", "kind": "variable", "doc": "

    \n"}, "ml.targets.base.TargetStrategy.build": {"fullname": "ml.targets.base.TargetStrategy.build", "modulename": "ml.targets.base", "qualname": "TargetStrategy.build", "kind": "function", "doc": "

    Validate input frame and delegate target construction to implementation.

    \n\n

    Args:\n data: Source dataframe containing target columns.\n entity_key: The name of the entity key column to extract.

    \n\n

    Returns:\n pd.DataFrame: Built target dataframe with entity_key.

    \n", "signature": "(self, data: pandas.core.frame.DataFrame) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.targets.cancellation": {"fullname": "ml.targets.cancellation", "modulename": "ml.targets.cancellation", "kind": "module", "doc": "

    A package defining how cancellation target is created at runtime.

    \n"}, "ml.targets.cancellation.v1": {"fullname": "ml.targets.cancellation.v1", "modulename": "ml.targets.cancellation.v1", "kind": "module", "doc": "

    Version 1 cancellation target strategy.

    \n"}, "ml.targets.cancellation.v1.CancellationTargetV1": {"fullname": "ml.targets.cancellation.v1.CancellationTargetV1", "modulename": "ml.targets.cancellation.v1", "qualname": "CancellationTargetV1", "kind": "class", "doc": "

    Build the cancellation classification target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.lead_time": {"fullname": "ml.targets.lead_time", "modulename": "ml.targets.lead_time", "kind": "module", "doc": "

    A package defining how lead_time target is created at runtime.

    \n"}, "ml.targets.lead_time.v1": {"fullname": "ml.targets.lead_time.v1", "modulename": "ml.targets.lead_time.v1", "kind": "module", "doc": "

    Version 1 lead-time target strategy.

    \n"}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"fullname": "ml.targets.lead_time.v1.LeadTimeTargetV1", "modulename": "ml.targets.lead_time.v1", "qualname": "LeadTimeTargetV1", "kind": "class", "doc": "

    Build the lead-time regression target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.no_show": {"fullname": "ml.targets.no_show", "modulename": "ml.targets.no_show", "kind": "module", "doc": "

    A package defining how no_show target is created at runtime.

    \n"}, "ml.targets.no_show.v1": {"fullname": "ml.targets.no_show.v1", "modulename": "ml.targets.no_show.v1", "kind": "module", "doc": "

    Version 1 no-show target strategy.

    \n"}, "ml.targets.no_show.v1.NoShowTargetV1": {"fullname": "ml.targets.no_show.v1.NoShowTargetV1", "modulename": "ml.targets.no_show.v1", "qualname": "NoShowTargetV1", "kind": "class", "doc": "

    Build a binary no-show target derived from reservation status.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.repeated_guest": {"fullname": "ml.targets.repeated_guest", "modulename": "ml.targets.repeated_guest", "kind": "module", "doc": "

    A package defining how repeated_guest target is created at runtime.

    \n"}, "ml.targets.repeated_guest.v1": {"fullname": "ml.targets.repeated_guest.v1", "modulename": "ml.targets.repeated_guest.v1", "kind": "module", "doc": "

    Version 1 repeated-guest target strategy.

    \n"}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"fullname": "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1", "modulename": "ml.targets.repeated_guest.v1", "qualname": "RepeatedGuestTargetV1", "kind": "class", "doc": "

    Build the repeated-guest classification target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.room_upgrade": {"fullname": "ml.targets.room_upgrade", "modulename": "ml.targets.room_upgrade", "kind": "module", "doc": "

    A package defining how room_upgrade target is created at runtime.

    \n"}, "ml.targets.room_upgrade.v1": {"fullname": "ml.targets.room_upgrade.v1", "modulename": "ml.targets.room_upgrade.v1", "kind": "module", "doc": "

    Version 1 room-upgrade target strategy.

    \n"}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"fullname": "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1", "modulename": "ml.targets.room_upgrade.v1", "qualname": "RoomUpgradeTargetV1", "kind": "class", "doc": "

    Build a binary room-upgrade target by comparing reserved and assigned rooms.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.targets.special_requests": {"fullname": "ml.targets.special_requests", "modulename": "ml.targets.special_requests", "kind": "module", "doc": "

    A package defining how special_requests target is created at runtime.

    \n"}, "ml.targets.special_requests.v1": {"fullname": "ml.targets.special_requests.v1", "modulename": "ml.targets.special_requests.v1", "kind": "module", "doc": "

    Version 1 special-requests target strategy.

    \n"}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"fullname": "ml.targets.special_requests.v1.SpecialRequestsTargetV1", "modulename": "ml.targets.special_requests.v1", "qualname": "SpecialRequestsTargetV1", "kind": "class", "doc": "

    Build the special-requests count target from booking records.

    \n", "bases": "ml.targets.base.TargetStrategy"}, "ml.types": {"fullname": "ml.types", "modulename": "ml.types", "kind": "module", "doc": "

    Package for type definitions used across the project.

    \n"}, "ml.types.DataLineageEntry": {"fullname": "ml.types.DataLineageEntry", "modulename": "ml.types", "qualname": "DataLineageEntry", "kind": "class", "doc": "

    Normalized lineage record for a dataset included in a merged artifact.

    \n"}, "ml.types.DataLineageEntry.__init__": {"fullname": "ml.types.DataLineageEntry.__init__", "modulename": "ml.types", "qualname": "DataLineageEntry.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tref: str,\tname: str,\tversion: str,\tformat: str,\tpath_suffix: str,\tmerge_key: tuple[str, ...] | str,\tmerge_how: Literal['left', 'right', 'inner', 'outer', 'cross'],\tmerge_validate: Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m'],\tsnapshot_id: str,\tpath: str,\tloader_validation_hash: str,\tdata_hash: str,\trow_count: int,\tcolumn_count: int)"}, "ml.types.DataLineageEntry.ref": {"fullname": "ml.types.DataLineageEntry.ref", "modulename": "ml.types", "qualname": "DataLineageEntry.ref", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.name": {"fullname": "ml.types.DataLineageEntry.name", "modulename": "ml.types", "qualname": "DataLineageEntry.name", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.version": {"fullname": "ml.types.DataLineageEntry.version", "modulename": "ml.types", "qualname": "DataLineageEntry.version", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.format": {"fullname": "ml.types.DataLineageEntry.format", "modulename": "ml.types", "qualname": "DataLineageEntry.format", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.path_suffix": {"fullname": "ml.types.DataLineageEntry.path_suffix", "modulename": "ml.types", "qualname": "DataLineageEntry.path_suffix", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.merge_key": {"fullname": "ml.types.DataLineageEntry.merge_key", "modulename": "ml.types", "qualname": "DataLineageEntry.merge_key", "kind": "variable", "doc": "

    \n", "annotation": ": tuple[str, ...] | str"}, "ml.types.DataLineageEntry.merge_how": {"fullname": "ml.types.DataLineageEntry.merge_how", "modulename": "ml.types", "qualname": "DataLineageEntry.merge_how", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['left', 'right', 'inner', 'outer', 'cross']"}, "ml.types.DataLineageEntry.merge_validate": {"fullname": "ml.types.DataLineageEntry.merge_validate", "modulename": "ml.types", "qualname": "DataLineageEntry.merge_validate", "kind": "variable", "doc": "

    \n", "annotation": ": Literal['one_to_one', '1:1', 'one_to_many', '1:m', 'many_to_one', 'm:1', 'many_to_many', 'm:m']"}, "ml.types.DataLineageEntry.snapshot_id": {"fullname": "ml.types.DataLineageEntry.snapshot_id", "modulename": "ml.types", "qualname": "DataLineageEntry.snapshot_id", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.path": {"fullname": "ml.types.DataLineageEntry.path", "modulename": "ml.types", "qualname": "DataLineageEntry.path", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.loader_validation_hash": {"fullname": "ml.types.DataLineageEntry.loader_validation_hash", "modulename": "ml.types", "qualname": "DataLineageEntry.loader_validation_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.data_hash": {"fullname": "ml.types.DataLineageEntry.data_hash", "modulename": "ml.types", "qualname": "DataLineageEntry.data_hash", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.types.DataLineageEntry.row_count": {"fullname": "ml.types.DataLineageEntry.row_count", "modulename": "ml.types", "qualname": "DataLineageEntry.row_count", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.types.DataLineageEntry.column_count": {"fullname": "ml.types.DataLineageEntry.column_count", "modulename": "ml.types", "qualname": "DataLineageEntry.column_count", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.types.LatestSnapshot": {"fullname": "ml.types.LatestSnapshot", "modulename": "ml.types", "qualname": "LatestSnapshot", "kind": "class", "doc": "

    Enum for representing the 'latest' option in snapshot selection.

    \n", "bases": "enum.StrEnum"}, "ml.types.LatestSnapshot.LATEST": {"fullname": "ml.types.LatestSnapshot.LATEST", "modulename": "ml.types", "qualname": "LatestSnapshot.LATEST", "kind": "variable", "doc": "

    \n", "default_value": "<LatestSnapshot.LATEST: 'latest'>"}, "ml.types.AllowedModels": {"fullname": "ml.types.AllowedModels", "modulename": "ml.types", "qualname": "AllowedModels", "kind": "variable", "doc": "

    \n", "default_value": "catboost.core.CatBoostClassifier | catboost.core.CatBoostRegressor"}, "ml.types.AllSplitsInfo": {"fullname": "ml.types.AllSplitsInfo", "modulename": "ml.types", "qualname": "AllSplitsInfo", "kind": "class", "doc": "

    Grouped split summaries for train/validation/test partitions.

    \n"}, "ml.types.AllSplitsInfo.__init__": {"fullname": "ml.types.AllSplitsInfo.__init__", "modulename": "ml.types", "qualname": "AllSplitsInfo.__init__", "kind": "function", "doc": "

    \n", "signature": "(\ttrain: ml.types.splits.SplitInfo,\tval: ml.types.splits.SplitInfo,\ttest: ml.types.splits.SplitInfo)"}, "ml.types.AllSplitsInfo.train": {"fullname": "ml.types.AllSplitsInfo.train", "modulename": "ml.types", "qualname": "AllSplitsInfo.train", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.SplitInfo"}, "ml.types.AllSplitsInfo.val": {"fullname": "ml.types.AllSplitsInfo.val", "modulename": "ml.types", "qualname": "AllSplitsInfo.val", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.SplitInfo"}, "ml.types.AllSplitsInfo.test": {"fullname": "ml.types.AllSplitsInfo.test", "modulename": "ml.types", "qualname": "AllSplitsInfo.test", "kind": "variable", "doc": "

    \n", "annotation": ": ml.types.splits.SplitInfo"}, "ml.types.SplitInfo": {"fullname": "ml.types.SplitInfo", "modulename": "ml.types", "qualname": "SplitInfo", "kind": "class", "doc": "

    Summary information for a single dataset split.

    \n"}, "ml.types.SplitInfo.__init__": {"fullname": "ml.types.SplitInfo.__init__", "modulename": "ml.types", "qualname": "SplitInfo.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tn_rows: int,\tclass_distribution: dict | None = None,\tpositive_rate: float | None = None)"}, "ml.types.SplitInfo.n_rows": {"fullname": "ml.types.SplitInfo.n_rows", "modulename": "ml.types", "qualname": "SplitInfo.n_rows", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.types.SplitInfo.class_distribution": {"fullname": "ml.types.SplitInfo.class_distribution", "modulename": "ml.types", "qualname": "SplitInfo.class_distribution", "kind": "variable", "doc": "

    \n", "annotation": ": dict | None", "default_value": "None"}, "ml.types.SplitInfo.positive_rate": {"fullname": "ml.types.SplitInfo.positive_rate", "modulename": "ml.types", "qualname": "SplitInfo.positive_rate", "kind": "variable", "doc": "

    \n", "annotation": ": float | None", "default_value": "None"}, "ml.types.TabularSplits": {"fullname": "ml.types.TabularSplits", "modulename": "ml.types", "qualname": "TabularSplits", "kind": "class", "doc": "

    Concrete train/validation/test feature and target split payloads.

    \n"}, "ml.types.TabularSplits.__init__": {"fullname": "ml.types.TabularSplits.__init__", "modulename": "ml.types", "qualname": "TabularSplits.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tX_train: pandas.core.frame.DataFrame,\tX_val: pandas.core.frame.DataFrame,\tX_test: pandas.core.frame.DataFrame,\ty_train: pandas.core.series.Series,\ty_val: pandas.core.series.Series,\ty_test: pandas.core.series.Series)"}, "ml.types.TabularSplits.X_train": {"fullname": "ml.types.TabularSplits.X_train", "modulename": "ml.types", "qualname": "TabularSplits.X_train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.types.TabularSplits.X_val": {"fullname": "ml.types.TabularSplits.X_val", "modulename": "ml.types", "qualname": "TabularSplits.X_val", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.types.TabularSplits.X_test": {"fullname": "ml.types.TabularSplits.X_test", "modulename": "ml.types", "qualname": "TabularSplits.X_test", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.frame.DataFrame"}, "ml.types.TabularSplits.y_train": {"fullname": "ml.types.TabularSplits.y_train", "modulename": "ml.types", "qualname": "TabularSplits.y_train", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series"}, "ml.types.TabularSplits.y_val": {"fullname": "ml.types.TabularSplits.y_val", "modulename": "ml.types", "qualname": "TabularSplits.y_val", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series"}, "ml.types.TabularSplits.y_test": {"fullname": "ml.types.TabularSplits.y_test", "modulename": "ml.types", "qualname": "TabularSplits.y_test", "kind": "variable", "doc": "

    \n", "annotation": ": pandas.core.series.Series"}, "ml.utils": {"fullname": "ml.utils", "modulename": "ml.utils", "kind": "module", "doc": "

    A package with utilities used across the ml workflow.

    \n"}, "ml.utils.git": {"fullname": "ml.utils.git", "modulename": "ml.utils.git", "kind": "module", "doc": "

    Git utility helpers for reproducibility and ancestry checks.

    \n"}, "ml.utils.git.logger": {"fullname": "ml.utils.git.logger", "modulename": "ml.utils.git", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.git (WARNING)>"}, "ml.utils.git.MergeTarget": {"fullname": "ml.utils.git.MergeTarget", "modulename": "ml.utils.git", "qualname": "MergeTarget", "kind": "variable", "doc": "

    \n", "default_value": "typing.Literal['training', 'model', 'ensemble']"}, "ml.utils.git.get_git_commit": {"fullname": "ml.utils.git.get_git_commit", "modulename": "ml.utils.git", "qualname": "get_git_commit", "kind": "function", "doc": "

    Return the current HEAD commit hash for the repository or unknown.

    \n\n

    Args:\n repo_dir: Directory inside the target git repository.

    \n\n

    Returns:\n str: HEAD commit hash, or \"unknown\" when unavailable.

    \n", "signature": "(repo_dir: pathlib.Path = WindowsPath('.')) -> str:", "funcdef": "def"}, "ml.utils.git.is_descendant_commit": {"fullname": "ml.utils.git.is_descendant_commit", "modulename": "ml.utils.git", "qualname": "is_descendant_commit", "kind": "function", "doc": "

    Return whether commit_a descends from commit_b in git history.

    \n\n

    Args:\n commit_a: Candidate descendant commit hash.\n commit_b: Candidate ancestor commit hash.

    \n\n

    Returns:\n bool: True when commit_b is an ancestor of commit_a.

    \n", "signature": "(commit_a: str, commit_b: str) -> bool:", "funcdef": "def"}, "ml.utils.hashing": {"fullname": "ml.utils.hashing", "modulename": "ml.utils.hashing", "kind": "module", "doc": "

    A package with hashing utilities used across the ml workflow.

    \n"}, "ml.utils.hashing.hash_dict": {"fullname": "ml.utils.hashing.hash_dict", "modulename": "ml.utils.hashing.hash_dict", "kind": "module", "doc": "

    Hashing helpers for deterministic dictionary fingerprints.

    \n"}, "ml.utils.hashing.hash_dict.canonicalize": {"fullname": "ml.utils.hashing.hash_dict.canonicalize", "modulename": "ml.utils.hashing.hash_dict", "qualname": "canonicalize", "kind": "function", "doc": "

    Recursively canonicalize nested containers into stable ordering.

    \n\n

    Args:\n obj: Arbitrary nested structure.

    \n\n

    Returns:\n Any: Canonicalized structure.

    \n", "signature": "(obj):", "funcdef": "def"}, "ml.utils.hashing.hash_dict.hash_dict": {"fullname": "ml.utils.hashing.hash_dict.hash_dict", "modulename": "ml.utils.hashing.hash_dict", "qualname": "hash_dict", "kind": "function", "doc": "

    Return a SHA-256 hash for a canonicalized dictionary payload.

    \n\n

    Args:\n d: Input dictionary payload.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(d: dict) -> str:", "funcdef": "def"}, "ml.utils.hashing.hash_list": {"fullname": "ml.utils.hashing.hash_list", "modulename": "ml.utils.hashing.hash_list", "kind": "module", "doc": "

    Hashing helpers for list payloads with optional order invariance.

    \n"}, "ml.utils.hashing.hash_list.hash_list": {"fullname": "ml.utils.hashing.hash_list.hash_list", "modulename": "ml.utils.hashing.hash_list", "qualname": "hash_list", "kind": "function", "doc": "

    Return a SHA-256 hash for a JSON-normalized list representation.

    \n\n

    Args:\n lst: List payload to hash.\n order_matters: Whether list order should affect the resulting hash.

    \n\n

    Returns:\n SHA-256 hash of the normalized list representation.

    \n", "signature": "(lst: list, order_matters: bool = True) -> str:", "funcdef": "def"}, "ml.utils.hashing.hash_streaming": {"fullname": "ml.utils.hashing.hash_streaming", "modulename": "ml.utils.hashing.hash_streaming", "kind": "module", "doc": "

    Streaming file hashing utilities for large artifact integrity checks.

    \n"}, "ml.utils.hashing.hash_streaming.logger": {"fullname": "ml.utils.hashing.hash_streaming.logger", "modulename": "ml.utils.hashing.hash_streaming", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.hashing.hash_streaming (WARNING)>"}, "ml.utils.hashing.hash_streaming.hash_streaming": {"fullname": "ml.utils.hashing.hash_streaming.hash_streaming", "modulename": "ml.utils.hashing.hash_streaming", "qualname": "hash_streaming", "kind": "function", "doc": "

    Compute SHA-256 hash incrementally by reading file chunks.

    \n\n

    Args:\n path: File path to hash.\n chunk_size: Byte size for incremental read chunks.

    \n\n

    Returns:\n SHA-256 hash for the file content.

    \n", "signature": "(path: pathlib.Path, chunk_size=1048576) -> str:", "funcdef": "def"}, "ml.utils.hashing.service": {"fullname": "ml.utils.hashing.service", "modulename": "ml.utils.hashing.service", "kind": "module", "doc": "

    Hash function registries and convenience wrappers for artifacts/data.

    \n\n

    The wrappers hash_file, hash_data, and hash_artifact are\nintentional semantic aliases over the same streaming hash implementation.\nThey keep call sites domain-explicit while preserving a single hashing\nmechanism.

    \n"}, "ml.utils.hashing.service.logger": {"fullname": "ml.utils.hashing.service.logger", "modulename": "ml.utils.hashing.service", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.hashing.service (WARNING)>"}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"fullname": "ml.utils.hashing.service.HASH_LOADER_REGISTRY", "modulename": "ml.utils.hashing.service", "qualname": "HASH_LOADER_REGISTRY", "kind": "variable", "doc": "

    \n", "annotation": ": dict[str, Callable[[pathlib.Path], str]]", "default_value": "{'parquet': <function hash_parquet_metadata>, 'arrow': <function hash_arrow_metadata>, 'csv': <function hash_streaming>, 'json': <function hash_streaming>}"}, "ml.utils.hashing.service.hash_file": {"fullname": "ml.utils.hashing.service.hash_file", "modulename": "ml.utils.hashing.service", "qualname": "hash_file", "kind": "function", "doc": "

    Compute SHA-256 hash of a file using streaming reads.

    \n\n

    Args:\n file_path: File path to hash.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(file_path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.utils.hashing.service.hash_data": {"fullname": "ml.utils.hashing.service.hash_data", "modulename": "ml.utils.hashing.service", "qualname": "hash_data", "kind": "function", "doc": "

    Compute SHA-256 hash of persisted dataset contents.

    \n\n

    Args:\n file_path: Persisted dataset file path.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(file_path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.utils.hashing.service.hash_artifact": {"fullname": "ml.utils.hashing.service.hash_artifact", "modulename": "ml.utils.hashing.service", "qualname": "hash_artifact", "kind": "function", "doc": "

    Compute SHA-256 hash of any persisted artifact file.

    \n\n

    Args:\n file_path: Artifact file path.

    \n\n

    Returns:\n str: SHA-256 hash digest.

    \n", "signature": "(file_path: pathlib.Path) -> str:", "funcdef": "def"}, "ml.utils.hashing.service.hash_thresholds": {"fullname": "ml.utils.hashing.service.hash_thresholds", "modulename": "ml.utils.hashing.service", "qualname": "hash_thresholds", "kind": "function", "doc": "

    Compute deterministic hash for thresholds dictionary payload.

    \n\n

    Args:\n thresholds: Threshold mapping payload.

    \n\n

    Returns:\n str: Deterministic hash digest for thresholds payload.

    \n", "signature": "(thresholds: dict) -> str:", "funcdef": "def"}, "ml.utils.loaders": {"fullname": "ml.utils.loaders", "modulename": "ml.utils.loaders", "kind": "module", "doc": "

    Loading helpers for YAML/JSON configs and tabular data artifacts.

    \n"}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"fullname": "ml.utils.loaders.FORMAT_REGISTRY_READ", "modulename": "ml.utils.loaders", "qualname": "FORMAT_REGISTRY_READ", "kind": "variable", "doc": "

    \n", "default_value": "{'parquet': <function read_parquet>, 'csv': <function read_csv>, 'json': <function read_json>, 'arrow': <function <lambda>>}"}, "ml.utils.loaders.logger": {"fullname": "ml.utils.loaders.logger", "modulename": "ml.utils.loaders", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.loaders (WARNING)>"}, "ml.utils.loaders.load_yaml": {"fullname": "ml.utils.loaders.load_yaml", "modulename": "ml.utils.loaders", "qualname": "load_yaml", "kind": "function", "doc": "

    Load a YAML mapping from disk with validation and typed errors.

    \n\n

    Args:\n path: YAML file path.

    \n\n

    Returns:\n dict[str, Any]: Parsed YAML mapping.

    \n", "signature": "(path: pathlib.Path) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.utils.loaders.load_json": {"fullname": "ml.utils.loaders.load_json", "modulename": "ml.utils.loaders", "qualname": "load_json", "kind": "function", "doc": "

    Load a JSON object from disk, optionally returning empty dict when absent.

    \n\n

    Args:\n path: JSON file path.\n strict: Whether missing files should raise instead of returning {}.

    \n\n

    Returns:\n dict[str, Any]: Parsed JSON object.

    \n", "signature": "(path: pathlib.Path, strict=True) -> dict[str, typing.Any]:", "funcdef": "def"}, "ml.utils.loaders.read_data": {"fullname": "ml.utils.loaders.read_data", "modulename": "ml.utils.loaders", "qualname": "read_data", "kind": "function", "doc": "

    Read tabular data by registered format and normalize read-time failures.

    \n\n

    Args:\n format: Registered file format key.\n path: Data file path.

    \n\n

    Returns:\n pd.DataFrame: Loaded dataframe.

    \n", "signature": "(format: str, path: pathlib.Path) -> pandas.core.frame.DataFrame:", "funcdef": "def"}, "ml.utils.pipeline_core": {"fullname": "ml.utils.pipeline_core", "modulename": "ml.utils.pipeline_core", "kind": "module", "doc": "

    A package with core code for defining pipelines where needed.

    \n"}, "ml.utils.pipeline_core.runner": {"fullname": "ml.utils.pipeline_core.runner", "modulename": "ml.utils.pipeline_core.runner", "kind": "module", "doc": "

    Execution utilities for running ordered pipeline step sequences.

    \n"}, "ml.utils.pipeline_core.runner.logger": {"fullname": "ml.utils.pipeline_core.runner.logger", "modulename": "ml.utils.pipeline_core.runner", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.pipeline_core.runner (WARNING)>"}, "ml.utils.pipeline_core.runner.PipelineRunner": {"fullname": "ml.utils.pipeline_core.runner.PipelineRunner", "modulename": "ml.utils.pipeline_core.runner", "qualname": "PipelineRunner", "kind": "class", "doc": "

    Generic runner that executes pipeline steps against a mutable context.

    \n", "bases": "typing.Generic[~C]"}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"fullname": "ml.utils.pipeline_core.runner.PipelineRunner.__init__", "modulename": "ml.utils.pipeline_core.runner", "qualname": "PipelineRunner.__init__", "kind": "function", "doc": "

    Initialize runner with an ordered collection of pipeline steps.

    \n\n

    Args:\n steps: Ordered pipeline steps.

    \n\n

    Returns:\n None: Initializes runner state.

    \n", "signature": "(steps: list[ml.utils.pipeline_core.step.PipelineStep[~C]])"}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"fullname": "ml.utils.pipeline_core.runner.PipelineRunner.steps", "modulename": "ml.utils.pipeline_core.runner", "qualname": "PipelineRunner.steps", "kind": "variable", "doc": "

    \n"}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"fullname": "ml.utils.pipeline_core.runner.PipelineRunner.run", "modulename": "ml.utils.pipeline_core.runner", "qualname": "PipelineRunner.run", "kind": "function", "doc": "

    Execute all steps with optional before/after hooks and return context.

    \n\n

    Args:\n ctx: Mutable pipeline context.

    \n\n

    Returns:\n C: Final context after all steps run.

    \n", "signature": "(self, ctx: ~C) -> ~C:", "funcdef": "def"}, "ml.utils.pipeline_core.step": {"fullname": "ml.utils.pipeline_core.step", "modulename": "ml.utils.pipeline_core.step", "kind": "module", "doc": "

    Abstract step contract for context-driven pipeline execution.

    \n"}, "ml.utils.pipeline_core.step.PipelineStep": {"fullname": "ml.utils.pipeline_core.step.PipelineStep", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep", "kind": "class", "doc": "

    Base class for pipeline steps operating on a shared context object.

    \n", "bases": "abc.ABC, typing.Generic[~ContextT]"}, "ml.utils.pipeline_core.step.PipelineStep.name": {"fullname": "ml.utils.pipeline_core.step.PipelineStep.name", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep.name", "kind": "variable", "doc": "

    \n", "annotation": ": str", "default_value": "'unnamed'"}, "ml.utils.pipeline_core.step.PipelineStep.before": {"fullname": "ml.utils.pipeline_core.step.PipelineStep.before", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep.before", "kind": "function", "doc": "

    Optional hook executed before run; default implementation is no-op.

    \n\n

    Args:\n ctx: Pipeline context object.

    \n\n

    Returns:\n None: No-op by default.

    \n", "signature": "(self, ctx: ~ContextT) -> None:", "funcdef": "def"}, "ml.utils.pipeline_core.step.PipelineStep.after": {"fullname": "ml.utils.pipeline_core.step.PipelineStep.after", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep.after", "kind": "function", "doc": "

    Optional hook executed after run; default implementation is no-op.

    \n\n

    Args:\n ctx: Pipeline context object.

    \n\n

    Returns:\n None: No-op by default.

    \n", "signature": "(self, ctx: ~ContextT) -> None:", "funcdef": "def"}, "ml.utils.pipeline_core.step.PipelineStep.run": {"fullname": "ml.utils.pipeline_core.step.PipelineStep.run", "modulename": "ml.utils.pipeline_core.step", "qualname": "PipelineStep.run", "kind": "function", "doc": "

    Execute step logic and return the updated context.

    \n\n

    Args:\n ctx: Pipeline context object.

    \n\n

    Returns:\n ContextT: Updated context object.

    \n", "signature": "(self, ctx: ~ContextT) -> ~ContextT:", "funcdef": "def"}, "ml.utils.runtime": {"fullname": "ml.utils.runtime", "modulename": "ml.utils.runtime", "kind": "module", "doc": "

    A package for runtime-specific logic used across the ml workflow.

    \n"}, "ml.utils.runtime.gpu_info": {"fullname": "ml.utils.runtime.gpu_info", "modulename": "ml.utils.runtime.gpu_info", "kind": "module", "doc": "

    Runtime GPU information collection helpers backed by NVML.

    \n"}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict", "kind": "class", "doc": "

    \n", "bases": "typing.TypedDict"}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.task_type", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.task_type", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_count", "kind": "variable", "doc": "

    \n", "annotation": ": int"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_devices_available", "kind": "variable", "doc": "

    \n", "annotation": ": list[int]"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_names", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_memories_gb", "kind": "variable", "doc": "

    \n", "annotation": ": list[float]"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_devices_used", "kind": "variable", "doc": "

    \n", "annotation": ": list[int]"}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.cuda_version", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"fullname": "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version", "modulename": "ml.utils.runtime.gpu_info", "qualname": "GPUInfoDict.gpu_driver_version", "kind": "variable", "doc": "

    \n", "annotation": ": str"}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"fullname": "ml.utils.runtime.gpu_info.parse_cuda_driver_version", "modulename": "ml.utils.runtime.gpu_info", "qualname": "parse_cuda_driver_version", "kind": "function", "doc": "

    Convert NVML integer CUDA version encoding into dotted string format.

    \n\n

    Args:\n version_int: NVML-encoded CUDA driver version.

    \n\n

    Returns:\n str: CUDA version in dotted major.minor format.

    \n", "signature": "(version_int: int) -> str:", "funcdef": "def"}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"fullname": "ml.utils.runtime.gpu_info.prepare_gpu_info", "modulename": "ml.utils.runtime.gpu_info", "qualname": "prepare_gpu_info", "kind": "function", "doc": "

    Collect available GPU names, indices, memory, and driver version metadata.

    \n\n

    Returns:\n tuple[list[str], list[int], list[float], str, str]: Names, indices, memory sizes, CUDA version, and driver version.

    \n", "signature": "() -> tuple[list[str], list[int], list[float], str, str]:", "funcdef": "def"}, "ml.utils.runtime.gpu_info.get_gpu_info": {"fullname": "ml.utils.runtime.gpu_info.get_gpu_info", "modulename": "ml.utils.runtime.gpu_info", "qualname": "get_gpu_info", "kind": "function", "doc": "

    Assemble standardized GPU runtime info aligned with hardware config.

    \n\n

    Args:\n hardware_info: Hardware configuration with selected GPU settings.

    \n\n

    Returns:\n dict: GPU runtime summary payload.

    \n", "signature": "(\thardware_info: ml.config.schemas.hardware_cfg.HardwareConfig) -> ml.utils.runtime.gpu_info.GPUInfoDict:", "funcdef": "def"}, "ml.utils.runtime.runtime_info": {"fullname": "ml.utils.runtime.runtime_info", "modulename": "ml.utils.runtime.runtime_info", "kind": "module", "doc": "

    Runtime platform information collection utilities.

    \n"}, "ml.utils.runtime.runtime_info.logger": {"fullname": "ml.utils.runtime.runtime_info.logger", "modulename": "ml.utils.runtime.runtime_info", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.runtime.runtime_info (WARNING)>"}, "ml.utils.runtime.runtime_info.get_runtime_info": {"fullname": "ml.utils.runtime.runtime_info.get_runtime_info", "modulename": "ml.utils.runtime.runtime_info", "qualname": "get_runtime_info", "kind": "function", "doc": "

    Collect OS, hardware, and Python runtime characteristics.

    \n\n

    Args:\n None.

    \n\n

    Returns:\n Dictionary containing runtime platform characteristics.

    \n", "signature": "() -> dict:", "funcdef": "def"}, "ml.utils.runtime.runtime_snapshot": {"fullname": "ml.utils.runtime.runtime_snapshot", "modulename": "ml.utils.runtime.runtime_snapshot", "kind": "module", "doc": "

    Runtime snapshot builders for reproducibility and environment capture.

    \n"}, "ml.utils.runtime.runtime_snapshot.logger": {"fullname": "ml.utils.runtime.runtime_snapshot.logger", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.runtime.runtime_snapshot (WARNING)>"}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"fullname": "ml.utils.runtime.runtime_snapshot.find_conda_executable", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "find_conda_executable", "kind": "function", "doc": "

    Locate the conda executable from PATH or active conda environment.

    \n\n

    Returns:\n str: Absolute path to the conda executable.

    \n", "signature": "():", "funcdef": "def"}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"fullname": "ml.utils.runtime.runtime_snapshot.get_conda_env_export", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "get_conda_env_export", "kind": "function", "doc": "

    Return raw YAML output of conda env export --no-builds.

    \n\n

    Returns:\n str: Full conda environment export YAML content.

    \n", "signature": "() -> str:", "funcdef": "def"}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"fullname": "ml.utils.runtime.runtime_snapshot.hash_environment", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "hash_environment", "kind": "function", "doc": "

    Compute deterministic SHA-256 hash for exported environment text.

    \n\n

    Args:\n env_export: Raw conda environment export text.

    \n\n

    Returns:\n str: SHA-256 hash digest for the export payload.

    \n", "signature": "(env_export: str) -> str:", "funcdef": "def"}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"fullname": "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot", "modulename": "ml.utils.runtime.runtime_snapshot", "qualname": "build_runtime_snapshot", "kind": "function", "doc": "

    Build and return runtime snapshot metadata for experiment persistence.

    \n\n

    Args:\n timestamp: Run creation timestamp string.\n hardware_info: Validated hardware configuration.\n start_time: Monotonic run start time for duration calculation.

    \n\n

    Returns:\n dict: Runtime snapshot payload containing execution, runtime, GPU, and environment info.

    \n", "signature": "(\ttimestamp: str,\thardware_info: ml.config.schemas.hardware_cfg.HardwareConfig,\tstart_time: float) -> dict:", "funcdef": "def"}, "ml.utils.runtime.save_runtime": {"fullname": "ml.utils.runtime.save_runtime", "modulename": "ml.utils.runtime.save_runtime", "kind": "module", "doc": "

    Persistence utilities for writing runtime snapshot artifacts.

    \n"}, "ml.utils.runtime.save_runtime.logger": {"fullname": "ml.utils.runtime.save_runtime.logger", "modulename": "ml.utils.runtime.save_runtime", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.runtime.save_runtime (WARNING)>"}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"fullname": "ml.utils.runtime.save_runtime.save_runtime_snapshot", "modulename": "ml.utils.runtime.save_runtime", "qualname": "save_runtime_snapshot", "kind": "function", "doc": "

    Build and persist runtime snapshot JSON with overwrite protections.

    \n", "signature": "(\t*,\ttarget_dir: pathlib.Path,\ttimestamp: str,\thardware_info: ml.config.schemas.hardware_cfg.HardwareConfig,\tstart_time: float,\toverwrite_existing: bool = False) -> None:", "funcdef": "def"}, "ml.utils.snapshots": {"fullname": "ml.utils.snapshots", "modulename": "ml.utils.snapshots", "kind": "module", "doc": "

    A package for snapshot-specific logic used across the ml workflow.

    \n"}, "ml.utils.snapshots.latest_snapshot": {"fullname": "ml.utils.snapshots.latest_snapshot", "modulename": "ml.utils.snapshots.latest_snapshot", "kind": "module", "doc": "

    Utilities for resolving the latest valid snapshot directory.

    \n"}, "ml.utils.snapshots.latest_snapshot.logger": {"fullname": "ml.utils.snapshots.latest_snapshot.logger", "modulename": "ml.utils.snapshots.latest_snapshot", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.snapshots.latest_snapshot (WARNING)>"}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"fullname": "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path", "modulename": "ml.utils.snapshots.latest_snapshot", "qualname": "get_latest_snapshot_path", "kind": "function", "doc": "

    Return newest valid snapshot path using timestamp and UUID tie-breaking.

    \n\n

    Args:\n snapshot_dir: Directory containing snapshot subdirectories.

    \n\n

    Returns:\n Path: Latest valid snapshot path.

    \n", "signature": "(snapshot_dir: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}, "ml.utils.snapshots.snapshot_path": {"fullname": "ml.utils.snapshots.snapshot_path", "modulename": "ml.utils.snapshots.snapshot_path", "kind": "module", "doc": "

    Utilities for resolving explicit or latest snapshot directory paths.

    \n"}, "ml.utils.snapshots.snapshot_path.logger": {"fullname": "ml.utils.snapshots.snapshot_path.logger", "modulename": "ml.utils.snapshots.snapshot_path", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger ml.utils.snapshots.snapshot_path (WARNING)>"}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"fullname": "ml.utils.snapshots.snapshot_path.get_snapshot_path", "modulename": "ml.utils.snapshots.snapshot_path", "qualname": "get_snapshot_path", "kind": "function", "doc": "

    Resolve snapshot path from ID, supporting automatic latest selection.

    \n\n

    Args:\n snapshot_id: Snapshot identifier or latest.\n snapshot_dir: Directory containing snapshot subdirectories.

    \n\n

    Returns:\n Resolved snapshot path.

    \n", "signature": "(snapshot_id: str, snapshot_dir: pathlib.Path) -> pathlib.Path:", "funcdef": "def"}}, "docInfo": {"ml": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.cli": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.cli.error_handling": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 101, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.error_handling.resolve_exit_code": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 78}, "ml.cli.exit_codes": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}, "ml.cli.exit_codes.EXIT_SUCCESS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.components": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.components.base": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.components.base.PipelineComponent": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 9}, "ml.components.base.PipelineComponent.fit": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 33}, "ml.components.base.SklearnFeatureMixin": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.components.base.SklearnFeatureMixin.fit": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 32}, "ml.components.feature_engineering": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.components.feature_engineering.adr_per_person": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 15}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 7, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 50}, "ml.components.feature_engineering.arrival_date": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.components.feature_engineering.arrival_date.month_map": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 61, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 15}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 41}, "ml.components.feature_engineering.arrival_season": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 11}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 41}, "ml.components.feature_engineering.base": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.components.feature_engineering.base.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.base.FeatureOperator": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 8}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 32}, "ml.components.feature_engineering.base.FeatureEngineer": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 42}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 42}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 33}, "ml.components.feature_engineering.pit_operator": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.components.feature_engineering.pit_operator.PITOperator": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 10}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 30}, "ml.components.feature_engineering.total_stay": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.components.feature_engineering.total_stay.TotalStay": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 13}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 39}, "ml.components.feature_selection": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.components.feature_selection.selector": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.components.feature_selection.selector.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_selection.selector.FeatureSelector": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 31}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 28}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 29}, "ml.components.imputation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.components.imputation.categorical": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.components.imputation.categorical.FillCategoricalMissing": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 36}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 28}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 32}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 42}, "ml.components.schema_validation": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.components.schema_validation.validator": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.components.schema_validation.validator.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.components.schema_validation.validator.SchemaValidator": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 26}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 27}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 31}, "ml.config": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.best_params": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.config.best_params.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.config.best_params.MergeTarget": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.config.best_params.MODEL_KEYS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 32, "signature": 0, "bases": 0, "doc": 3}, "ml.config.best_params.ENSEMBLE_KEYS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.config.best_params.unflatten_best_params": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 53, "bases": 0, "doc": 47}, "ml.config.best_params.apply_best_params": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 149, "bases": 0, "doc": 58}, "ml.config.compute_data_config_hash": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.config.compute_data_config_hash.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 114, "bases": 0, "doc": 38}, "ml.config.hashing": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.hashing.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.hashing.compute_model_config_hash": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 33}, "ml.config.hashing.add_config_hash": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 116, "bases": 0, "doc": 35}, "ml.config.loader": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.config.loader.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.loader.load_config": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 225, "bases": 0, "doc": 83}, "ml.config.loader.load_and_validate_config": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 163, "bases": 0, "doc": 48}, "ml.config.merge": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.config.merge.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.merge.deep_merge": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 31}, "ml.config.merge.resolve_extends": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 52}, "ml.config.merge.apply_env_overlay": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 50}, "ml.config.schemas": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.config.schemas.base_model_params": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.config.schemas.base_model_params.BaseModelParams": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"qualname": 2, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"qualname": 5, "fullname": 11, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 13}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 51}, "ml.config.schemas.model_cfg": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 31}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 31}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 31}, "ml.config.schemas.model_specs.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.SegmentConfig.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentConfig.description": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskType": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ml.config.schemas.model_specs.TaskType.classification": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskType.regression": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskType.ranking": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskType.time_series": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.config.schemas.model_specs.TaskConfig.type": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 30}, "ml.config.schemas.model_specs.ClassesConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.config.schemas.model_specs.ClassesConfig.count": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetTransformConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"qualname": 2, "fullname": 7, "annotation": 12, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"qualname": 7, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 30}, "ml.config.schemas.model_specs.TargetConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_specs.TargetConfig.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.classes": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.transform": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 29}, "ml.config.schemas.model_specs.SegmentationFilter": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"qualname": 2, "fullname": 7, "annotation": 28, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"qualname": 2, "fullname": 7, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"qualname": 6, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 31}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"qualname": 8, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 36}, "ml.config.schemas.model_specs.FeatureSetConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.AlgorithmConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.PipelineConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 6}, "ml.config.schemas.model_specs.PipelineConfig.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.PipelineConfig.path": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ScoringConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"qualname": 2, "fullname": 7, "annotation": 14, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"qualname": 3, "fullname": 8, "annotation": 30, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"qualname": 7, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 32}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"qualname": 9, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 34}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"qualname": 2, "fullname": 7, "annotation": 13, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"qualname": 2, "fullname": 7, "annotation": 15, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 33}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"qualname": 2, "fullname": 7, "annotation": 12, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 34}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.DATA_TYPE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.model_specs.MetaConfig.sources": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.env": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"qualname": 3, "fullname": 8, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.task": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.target": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.split": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"qualname": 3, "fullname": 8, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"qualname": 4, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 21}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 28}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 30}, "ml.config.schemas.search_cfg": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.schemas.search_cfg.BroadModelParams": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"qualname": 5, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 53}, "ml.config.schemas.search_cfg.NarrowIntParam": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.config.schemas.train_cfg.TrainConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.model": {"qualname": 2, "fullname": 7, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"qualname": 2, "fullname": 7, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.config.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.config.validation.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.config.validation.validate_model_config": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 118, "bases": 0, "doc": 54}, "ml.data": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.config": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.data.config.schemas.constants": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.config.schemas.constants.BorderValue": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.data.config.schemas.constants.BorderValue.value": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.constants.BorderValue.op": {"qualname": 2, "fullname": 7, "annotation": 15, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.config.schemas.interim.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.interim.DataSchema.hotel": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.adults": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.children": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.babies": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.meal": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.country": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.agent": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.company": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.adr": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.email": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Cleaning": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.data.config.schemas.interim.Invariant": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.interim.Invariant.min": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas.interim.Invariant.max": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.data.config.schemas.interim.Invariants": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.data.config.schemas.interim.Invariants.hotel": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.lead_time": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"qualname": 6, "fullname": 11, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.adults": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.children": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.babies": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.meal": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.country": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.market_segment": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.agent": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.company": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.customer_type": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.adr": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"qualname": 5, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.name": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.email": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.phone_number": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.credit_card": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 27}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 30}, "ml.data.config.schemas.interim.LineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.interim.InterimConfig.data": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 13}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 15}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 34}, "ml.data.config.schemas.processed": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.config.schemas.processed.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.LineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.ProcessedConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 14}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 47}, "ml.data.config.schemas.shared": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.config.schemas.shared.Output": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.data.config.schemas.shared.Output.path_suffix": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 25}, "ml.data.config.schemas.shared.Output.format": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 5, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas.shared.Output.compression": {"qualname": 2, "fullname": 7, "annotation": 18, "default_value": 1, "signature": 0, "bases": 0, "doc": 13}, "ml.data.config.schemas.shared.DataInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.data.config.schemas.shared.DataInfo.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.data.config.schemas.shared.DataInfo.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.data.config.schemas.shared.DataInfo.output": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.validate_config": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.config.validate_config.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.data.config.validate_config.validate_config": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 46}, "ml.data.interim": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.interim.data_preparation": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.data.interim.data_preparation.prepare_data": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 27}, "ml.data.interim.data_preparation.prepare_data.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 68, "bases": 0, "doc": 39}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 105, "bases": 0, "doc": 105}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 68, "bases": 0, "doc": 65}, "ml.data.interim.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.interim.persistence.prepare_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.interim.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 198, "bases": 0, "doc": 84}, "ml.data.merge": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.data.merge.merge_dataset_into_main": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.merge.merge_dataset_into_main.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 10}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 368, "bases": 0, "doc": 143}, "ml.data.processed": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.processed.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.processed.persistence.prepare_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.processed.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 265, "bases": 0, "doc": 99}, "ml.data.processed.processing": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.data.processed.processing.add_row_id_base": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 13}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"qualname": 5, "fullname": 13, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 36}, "ml.data.processed.processing.hotel_bookings": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"qualname": 5, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 27}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 15}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"qualname": 4, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 38}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"qualname": 4, "fullname": 14, "annotation": 0, "default_value": 85, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"qualname": 5, "fullname": 15, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"qualname": 0, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"qualname": 6, "fullname": 18, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 39}, "ml.data.processed.processing.process_data": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.data.processed.processing.process_data.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.processed.processing.process_data.remove_columns": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 37}, "ml.data.processed.processing.process_data.add_row_id": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 38}, "ml.data.raw": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.data.raw.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.raw.persistence.prepare_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.data.raw.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 65}, "ml.data.utils": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.utils.extraction": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.utils.extraction.get_data_suffix_and_format": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"qualname": 5, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 53}, "ml.data.utils.memory": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.utils.memory.compute_memory_change": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.data.utils.memory.compute_memory_change.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 71, "bases": 0, "doc": 65}, "ml.data.utils.memory.get_memory_usage": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.data.utils.memory.get_memory_usage.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 33}, "ml.data.utils.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.data.utils.persistence.save_data": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.utils.persistence.save_data.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.utils.persistence.save_data.save_data": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 130, "bases": 0, "doc": 48}, "ml.data.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.data.validation.validate_data": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.validation.validate_data.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.data.validation.validate_data.validate_data": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 45}, "ml.data.validation.validate_entity_key": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.data.validation.validate_entity_key.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.validation.validate_entity_key.validate_entity_key": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 36}, "ml.data.validation.validate_min_rows": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.data.validation.validate_min_rows.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.data.validation.validate_min_rows.validate_min_rows": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 31}, "ml.exceptions": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "ml.exceptions.MLBaseError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.exceptions.UserError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 10}, "ml.exceptions.RuntimeMLError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.exceptions.ConfigError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 7}, "ml.exceptions.DataError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.exceptions.PipelineContractError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 32}, "ml.exceptions.SearchError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 6}, "ml.exceptions.TrainingError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 6}, "ml.exceptions.EvaluationError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.exceptions.ExplainabilityError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.exceptions.PersistenceError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.exceptions.InferenceError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 7}, "ml.exceptions.MonitoringError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 8}, "ml.feature_freezing": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.constants.output": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.constants.output.FreezeOutput": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 3}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.base": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 150, "bases": 0, "doc": 64}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 27}, "ml.feature_freezing.freeze_strategies.config": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 20, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"qualname": 3, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 38}, "ml.feature_freezing.freeze_strategies.tabular": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.freeze_strategies.tabular.config": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 18, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 35, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"qualname": 2, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"qualname": 3, "fullname": 11, "annotation": 4, "default_value": 6, "signature": 0, "bases": 0, "doc": 13}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"qualname": 3, "fullname": 11, "annotation": 18, "default_value": 5, "signature": 0, "bases": 0, "doc": 7}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"qualname": 3, "fullname": 11, "annotation": 35, "default_value": 5, "signature": 0, "bases": 0, "doc": 8}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 6, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"qualname": 5, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"qualname": 2, "fullname": 10, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"qualname": 3, "fullname": 11, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"qualname": 3, "fullname": 11, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"qualname": 2, "fullname": 10, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"qualname": 2, "fullname": 10, "annotation": 4, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"qualname": 3, "fullname": 11, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"qualname": 2, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"qualname": 4, "fullname": 12, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"qualname": 3, "fullname": 11, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"qualname": 2, "fullname": 10, "annotation": 12, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"qualname": 7, "fullname": 15, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 28}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"qualname": 6, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 27}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"qualname": 5, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 27}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"qualname": 6, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 29}, "ml.feature_freezing.freeze_strategies.tabular.features": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 93, "bases": 0, "doc": 40}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 39}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 41}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 118, "bases": 0, "doc": 43}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 35}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 48}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 211, "bases": 0, "doc": 104}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 381, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"qualname": 2, "fullname": 10, "annotation": 10, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"qualname": 2, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"qualname": 4, "fullname": 12, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"qualname": 2, "fullname": 10, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"qualname": 3, "fullname": 11, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"qualname": 2, "fullname": 10, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"qualname": 2, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"qualname": 3, "fullname": 11, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"qualname": 4, "fullname": 12, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"qualname": 3, "fullname": 11, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"qualname": 4, "fullname": 12, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"qualname": 4, "fullname": 12, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"qualname": 4, "fullname": 12, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"qualname": 4, "fullname": 12, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"qualname": 3, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 14, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 33}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 14, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"qualname": 3, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 31}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"qualname": 3, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 30}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 14, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 31}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 14, "doc": 11}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 26}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"qualname": 2, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 28}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 7, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 150, "bases": 0, "doc": 78}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 35}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 34}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 32}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 34}, "ml.feature_freezing.freeze_strategies.time_series": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 7, "doc": 11}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 78}, "ml.feature_freezing.models": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.models.freeze_runtime": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"qualname": 2, "fullname": 8, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.persistence.get_deps": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.persistence.get_deps.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 27}, "ml.feature_freezing.persistence.get_deps.get_deps": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 22}, "ml.feature_freezing.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.utils.data_loader": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.feature_freezing.utils.data_loader.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 130, "bases": 0, "doc": 34}, "ml.feature_freezing.utils.get_strategy": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"qualname": 2, "fullname": 8, "annotation": 9, "default_value": 37, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.get_strategy.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 43, "bases": 0, "doc": 39}, "ml.feature_freezing.utils.get_strategy_type": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.feature_freezing.utils.get_strategy_type.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 34}, "ml.feature_freezing.utils.operators": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.feature_freezing.utils.operators.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 12, "bases": 0, "doc": 33}, "ml.features": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.features.extraction": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.extraction.cat_features": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.extraction.cat_features.get_cat_features": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 129, "bases": 0, "doc": 53}, "ml.features.hashing": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.hashing.hash_arrow_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.features.hashing.hash_arrow_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 36}, "ml.features.hashing.hash_dataframe_content": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 37}, "ml.features.hashing.hash_feature_schema": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 32}, "ml.features.hashing.hash_parquet_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.features.hashing.hash_parquet_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 36}, "ml.features.hashing.safe": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.hashing.safe.safe": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 29}, "ml.features.loading": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.loading.data_loader": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.features.loading.data_loader.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.data_loader.required_fields": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 46, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.data_loader.lineage_identity": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 34}, "ml.features.loading.data_loader.load_and_validate_data": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 52}, "ml.features.loading.features_and_target": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.features.loading.features_and_target.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.features_and_target.load_features_and_target": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 242, "bases": 0, "doc": 169}, "ml.features.loading.get_target": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 135, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.get_target.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.get_target.get_target_with_entity_key": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 72}, "ml.features.loading.resolve_feature_snapshots": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.loading.resolve_feature_snapshots.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 123, "bases": 0, "doc": 74}, "ml.features.loading.schemas": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.loading.schemas.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.features.loading.schemas.load_feature_set_schemas": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 56}, "ml.features.loading.schemas.aggregate_schema_dfs": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 36}, "ml.features.loading.schemas.load_schemas": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 150, "bases": 0, "doc": 46}, "ml.features.segmentation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.segmentation.segment": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.features.segmentation.segment.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.features.segmentation.segment.apply_segmentation": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 42}, "ml.features.splitting": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.splitting.splitting": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.features.splitting.splitting.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.features.splitting.splitting.SPLIT": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.features.splitting.splitting.random_split": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 201, "bases": 0, "doc": 61}, "ml.features.splitting.splitting.split_data": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 190, "bases": 0, "doc": 59}, "ml.features.splitting.splitting.get_splits_tabular": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 175, "bases": 0, "doc": 49}, "ml.features.splitting.splitting.get_splits": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 53}, "ml.features.transforms": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.transforms.transform_target": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.transforms.transform_target.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.transforms.transform_target.transform_target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 101, "bases": 0, "doc": 51}, "ml.features.transforms.transform_target.inverse_transform_target": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 48}, "ml.features.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.features.validation.normalize_dtype": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.validation.normalize_dtype.normalize_dtype": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 30}, "ml.features.validation.validate_contract": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.validation.validate_contract.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 121, "bases": 0, "doc": 45}, "ml.features.validation.validate_feature_set": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.features.validation.validate_feature_set.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_feature_set.validate_feature_set": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 56}, "ml.features.validation.validate_feature_target_entity_key": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.features.validation.validate_feature_target_entity_key.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"qualname": 5, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 56}, "ml.features.validation.validate_operators": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_operators.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_operators.validate_operators": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 51}, "ml.features.validation.validate_set": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.validation.validate_set.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_set.validate_set": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 46}, "ml.features.validation.validate_snapshot_ids": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.features.validation.validate_snapshot_ids.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 36}, "ml.features.validation.validate_target": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.features.validation.validate_target.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.features.validation.validate_target.validate_min_class_count": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 43, "bases": 0, "doc": 36}, "ml.features.validation.validate_target.validate_target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 127, "bases": 0, "doc": 45}, "ml.io": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.io.formatting": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.io.formatting.iso_no_colon": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 34}, "ml.io.formatting.str_to_bool": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.io.formatting.str_to_bool.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.io.formatting.str_to_bool.str_to_bool": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 31}, "ml.io.persistence": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.io.persistence.save_metadata": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.io.persistence.save_metadata.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.io.persistence.save_metadata.save_metadata": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 62, "bases": 0, "doc": 104}, "ml.io.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.io.validation.validate_mapping": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.io.validation.validate_mapping.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"qualname": 6, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 15}, "ml.logging_config": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.logging_config.LOG_FORMAT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.logging_config.setup_logging": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 40}, "ml.logging_config.add_file_handler": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 68}, "ml.logging_config.bootstrap_logging": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 49}, "ml.metadata": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.data": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas.data.interim": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.processed": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.data.processed.RowIdInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"qualname": 4, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.data.raw.RawData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw.RawData.hash": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 12}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.metadata.schemas.data.shared.DataBasic": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.metadata.schemas.data.shared.DataBasic.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataBasic.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataBasic.format": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SourceData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SourceData.path": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.CurrentData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataMemory": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.Columns": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.metadata.schemas.data.shared.Columns.count": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.Columns.names": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"qualname": 2, "fullname": 7, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 13}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.metadata.schemas.features.feature_freezing": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"qualname": 2, "fullname": 8, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.metadata.schemas.post_promotion.infer": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"qualname": 3, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas.promotion.promote": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 15}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 13}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 13}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.Context": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"qualname": 5, "fullname": 10, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 18}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"qualname": 5, "fullname": 10, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"qualname": 4, "fullname": 9, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 12}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas.runners.evaluation": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 12}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 11, "doc": 11}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 11}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 12}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"qualname": 6, "fullname": 11, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 10}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.search": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.schemas.search.search": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.search.search.SearchRecord": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 16}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.search.search.SearchRecord.config": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.data": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.metadata.validation.data.interim": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.data.interim.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 33}, "ml.metadata.validation.data.processed": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.data.processed.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 33}, "ml.metadata.validation.data.raw": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.metadata.validation.data.raw.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 33}, "ml.metadata.validation.features": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.metadata.validation.features.feature_freezing": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.features.feature_freezing.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 53}, "ml.metadata.validation.post_promotion": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.metadata.validation.post_promotion.infer": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.metadata.validation.post_promotion.infer.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 32}, "ml.metadata.validation.promotion": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.promotion.promote": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "ml.metadata.validation.promotion.promote.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 131, "bases": 0, "doc": 62}, "ml.metadata.validation.runners": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.runners.evaluation": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.evaluation.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 53}, "ml.metadata.validation.runners.explainability": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.explainability.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 40}, "ml.metadata.validation.runners.training": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.training.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.runners.training.validate_training_metadata": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 40}, "ml.metadata.validation.search": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.metadata.validation.search.search": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.search.search.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.metadata.validation.search.search.validate_search_record": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 3}, "ml.modeling": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.modeling.catboost": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.modeling.catboost.build_pipeline_with_model": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 203, "bases": 0, "doc": 62}, "ml.modeling.class_weighting": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.modeling.class_weighting.constants": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 30, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.models": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.modeling.class_weighting.models.DataStats": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.modeling.class_weighting.models.DataStats.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.resolve_class_weighting": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 53}, "ml.modeling.class_weighting.resolve_metric": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.modeling.class_weighting.resolve_metric.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 168, "bases": 0, "doc": 44}, "ml.modeling.class_weighting.stats_resolver": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.modeling.class_weighting.stats_resolver.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 37}, "ml.modeling.models": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.modeling.models.artifacts": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.modeling.models.artifacts.Artifacts": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 19}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.artifacts.Artifacts.model_path": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.config_fingerprint": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 4, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"qualname": 3, "fullname": 8, "annotation": 10, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "ml.modeling.models.metrics.Metrics": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.modeling.models.metrics.Metrics.task_type": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.Metrics.algorithm": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.TrainingMetrics": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 6}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.metrics.EvaluationMetrics": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 6}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.run_identity": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.run_identity.RunIdentity": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.run_identity.RunIdentity.status": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.modeling.models.runtime_info.Environment": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 14}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Execution": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.modeling.models.runtime_info.Execution.created_at": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Execution.git_commit": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Execution.python_executable": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.modeling.models.runtime_info.Runtime.os": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.os_release": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.architecture": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.processor": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.hostname": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.python_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.Runtime.python_build": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.RuntimeInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 14}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.modeling.validation.artifacts": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.artifacts.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 54}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 54}, "ml.modeling.validation.feature_lineage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.feature_lineage.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 55, "bases": 0, "doc": 3}, "ml.modeling.validation.metrics": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 50}, "ml.modeling.validation.metrics.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.metrics.validate_training_metrics": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 44}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 44}, "ml.modeling.validation.runtime_info": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.runtime_info.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 27}, "ml.pipelines": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.pipelines.builders": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.builders.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.builders.build_pipeline": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 166, "bases": 0, "doc": 63}, "ml.pipelines.composition": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.composition.add_model_to_pipeline": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 48}, "ml.pipelines.constants": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.pipelines.constants.pipeline_features": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 3}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.models": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.pipelines.models.VALID_STEPS": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 17, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.models.LineageConfig": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.pipelines.models.LineageConfig.created_by": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 7}, "ml.pipelines.models.LineageConfig.created_at": {"qualname": 3, "fullname": 6, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "ml.pipelines.models.PipelineConfig": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 8}, "ml.pipelines.models.PipelineConfig.name": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "ml.pipelines.models.PipelineConfig.version": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.pipelines.models.PipelineConfig.description": {"qualname": 2, "fullname": 5, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 7}, "ml.pipelines.models.PipelineConfig.steps": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 7}, "ml.pipelines.models.PipelineConfig.assumptions": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.pipelines.models.PipelineConfig.lineage": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.models.PipelineConfig.check_version_format": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 12}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 12}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 9}, "ml.pipelines.operator_factory": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.operator_factory.build_operators": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 38}, "ml.pipelines.schema_utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.pipelines.schema_utils.get_categorical_features": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 40}, "ml.pipelines.schema_utils.get_pipeline_features": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 150, "bases": 0, "doc": 49}, "ml.pipelines.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "ml.pipelines.validation.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.pipelines.validation.validate_pipeline_config": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 54}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "ml.policies": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.policies.data": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.policies.data.interim_constraints": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 224, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 33, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 8814, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.data.row_id": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 29, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.policies.model_params.catboost_constraints": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 104, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"qualname": 3, "fullname": 9, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"qualname": 3, "fullname": 9, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 158, "signature": 0, "bases": 0, "doc": 3}, "ml.policies.promotion": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.policies.promotion.threshold_support": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.post_promotion.inference": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.post_promotion.inference.classes": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.post_promotion.inference.classes.function_returns": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 3}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"qualname": 2, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"qualname": 3, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"qualname": 3, "fullname": 10, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 3}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"qualname": 3, "fullname": 10, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"qualname": 2, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.classes.predictions_schema": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 36, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.execution": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.inference.execution.execute_inference": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.execution.execute_inference.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 58}, "ml.post_promotion.inference.execution.predict": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.post_promotion.inference.execution.predict.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.execution.predict.predict": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 36}, "ml.post_promotion.inference.hashing": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.inference.hashing.input_row": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 39}, "ml.post_promotion.inference.loading": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.inference.loading.artifact": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 39}, "ml.post_promotion.inference.persistence": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.inference.persistence.prepare_metadata": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 249, "bases": 0, "doc": 117}, "ml.post_promotion.inference.persistence.store_predictions": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 267, "bases": 0, "doc": 119}, "ml.post_promotion.inference.validation": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.inference.validation.validate_columns": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.post_promotion.monitoring.classes": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.post_promotion.monitoring.classes.function_returns": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"qualname": 2, "fullname": 9, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"qualname": 2, "fullname": 9, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 106, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"qualname": 3, "fullname": 10, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"qualname": 3, "fullname": 10, "annotation": 12, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"qualname": 3, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.execution": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 156, "bases": 0, "doc": 66}, "ml.post_promotion.monitoring.extraction": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.monitoring.extraction.expected_performance": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 14}, "ml.post_promotion.monitoring.feature_drifting": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 31}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 29}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 97, "bases": 0, "doc": 55}, "ml.post_promotion.monitoring.feature_drifting.computations": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 49}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 39}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 46}, "ml.post_promotion.monitoring.feature_drifting.utils": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 19}, "ml.post_promotion.monitoring.loading": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"qualname": 5, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 116, "bases": 0, "doc": 55}, "ml.post_promotion.monitoring.loading.predictions": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 71, "bases": 0, "doc": 40}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 36}, "ml.post_promotion.monitoring.loading.training_features": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 39}, "ml.post_promotion.monitoring.loading.training_metrics": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 78, "bases": 0, "doc": 40}, "ml.post_promotion.monitoring.performance": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.monitoring.performance.assessment": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.monitoring.performance.assessment.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 209, "bases": 0, "doc": 74}, "ml.post_promotion.monitoring.performance.calculation": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.monitoring.performance.calculation.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 133, "bases": 0, "doc": 62}, "ml.post_promotion.monitoring.performance.comparison": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 18}, "ml.post_promotion.monitoring.performance.comparison.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 106, "bases": 0, "doc": 49}, "ml.post_promotion.monitoring.persistence": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 182, "bases": 0, "doc": 65}, "ml.post_promotion.shared": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.shared.classes": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.post_promotion.shared.classes.function_returns": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 3}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"qualname": 3, "fullname": 10, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"qualname": 3, "fullname": 10, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 3}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"qualname": 2, "fullname": 9, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"qualname": 3, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"qualname": 3, "fullname": 10, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"qualname": 2, "fullname": 9, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.shared.loading": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.post_promotion.shared.loading.features": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "ml.post_promotion.shared.loading.features.prepare_features": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 117, "bases": 0, "doc": 3}, "ml.post_promotion.shared.loading.model_registry": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.post_promotion.shared.loading.model_registry.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 24}, "ml.promotion": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.comparisons": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.comparisons.production": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.comparisons.production.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.comparisons.production.compare_against_production_model": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 232, "bases": 0, "doc": 59}, "ml.promotion.comparisons.thresholds": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.comparisons.thresholds.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 102, "bases": 0, "doc": 35}, "ml.promotion.config": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.promotion_thresholds": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.config.promotion_thresholds.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricSet": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.Direction": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 8}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"qualname": 2, "fullname": 7, "annotation": 13, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 157, "bases": 0, "doc": 36}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"qualname": 2, "fullname": 7, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"qualname": 2, "fullname": 7, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"qualname": 2, "fullname": 7, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"qualname": 3, "fullname": 8, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 29}, "ml.promotion.config.registry_entry": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 34}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"qualname": 3, "fullname": 8, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"qualname": 6, "fullname": 11, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"qualname": 6, "fullname": 11, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"qualname": 6, "fullname": 11, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"qualname": 6, "fullname": 11, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"qualname": 3, "fullname": 8, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"qualname": 2, "fullname": 7, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"qualname": 2, "fullname": 7, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"qualname": 2, "fullname": 7, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 308}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 308}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 308}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.constants.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.constants.constants.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.Stage": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.RunnersMetadata": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 170, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"qualname": 2, "fullname": 6, "annotation": 13, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ProductionComparisonResult": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"qualname": 4, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 97, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"qualname": 4, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"qualname": 4, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"qualname": 4, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.EPSILON": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 30, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"qualname": 5, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"qualname": 5, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"qualname": 3, "fullname": 9, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"qualname": 5, "fullname": 11, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"qualname": 3, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"qualname": 2, "fullname": 8, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"qualname": 2, "fullname": 8, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.context.PromotionPaths": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.context.PromotionPaths.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 145, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.run_dir": {"qualname": 3, "fullname": 6, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.train_run_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"qualname": 4, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.registry_path": {"qualname": 3, "fullname": 6, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionPaths.archive_path": {"qualname": 3, "fullname": 6, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.context.PromotionContext.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 114, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.args": {"qualname": 2, "fullname": 5, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.run_id": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.timestamp": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.paths": {"qualname": 2, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.PromotionContext.runners_metadata": {"qualname": 3, "fullname": 6, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.context.build_context": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 37}, "ml.promotion.getters": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.getters.get": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.getters.get.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.getters.get.get_runners_metadata": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 42}, "ml.promotion.getters.get.extract_thresholds": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 40}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 27}, "ml.promotion.getters.get.get_training_conda_env_hash": {"qualname": 5, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 33}, "ml.promotion.persistence": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.persistence.prepare": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.persistence.prepare.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.persistence.prepare.prepare_run_information": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 83}, "ml.promotion.persistence.prepare.prepare_metadata": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 215, "bases": 0, "doc": 134}, "ml.promotion.persistence.registry": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.persistence.registry.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.persistence.registry.update_registry_and_archive": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 180, "bases": 0, "doc": 64}, "ml.promotion.persistence.registry.persist_registry_diff": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 41}, "ml.promotion.persister": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.persister.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.persister.PromotionPersister": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.promotion.persister.PromotionPersister.persist": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 36}, "ml.promotion.result": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.result.PromotionResult": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.result.PromotionResult.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 117, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.promotion_decision": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.beats_previous": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"qualname": 4, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.run_info": {"qualname": 3, "fullname": 6, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.result.PromotionResult.production_comparison": {"qualname": 3, "fullname": 6, "annotation": 8, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.service": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.service.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.service.PromotionService": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.service.PromotionService.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 7}, "ml.promotion.service.PromotionService.run": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 32}, "ml.promotion.state": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.state.PromotionState": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.promotion.state.PromotionState.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 171, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.model_registry": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.archive_registry": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.evaluation_metrics": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.promotion_thresholds": {"qualname": 3, "fullname": 6, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.current_prod_model_info": {"qualname": 5, "fullname": 8, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"qualname": 5, "fullname": 8, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.git_commit": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state.PromotionState.threshold_comparison": {"qualname": 3, "fullname": 6, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state_loader": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.promotion.state_loader.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.state_loader.PromotionStateLoader": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.promotion.state_loader.PromotionStateLoader.load": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 35}, "ml.promotion.strategies": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.strategies.base": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.promotion.strategies.base.PromotionStrategy": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 31}, "ml.promotion.strategies.production": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.strategies.production.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 11}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 90}, "ml.promotion.strategies.staging": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.strategies.staging.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 11}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 40}, "ml.promotion.validation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.validation.artifacts": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.promotion.validation.artifacts.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 28}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 42}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 30}, "ml.promotion.validation.promotion_thresholds": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.promotion.validation.promotion_thresholds.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 30}, "ml.promotion.validation.registry_entry": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.validation.registry_entry.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 37}, "ml.promotion.validation.runners": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.promotion.validation.runners.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.promotion.validation.runners.validate_run_dirs": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 40}, "ml.promotion.validation.runners.validate_run_ids": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 39}, "ml.registries": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 62}, "ml.registries.FEATURE_OPERATORS": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 67, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.MODEL_CLASS_REGISTRY": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 26, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.MODEL_PARAM_REGISTRY": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 41, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.OP_MAP": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 83, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.PIPELINE_COMPONENTS": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 65, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 33, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.EVALUATORS": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 34, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.EXPLAINERS": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 20, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.SEARCHERS": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 17, "signature": 0, "bases": 0, "doc": 3}, "ml.registries.TRAINERS": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 18, "signature": 0, "bases": 0, "doc": 3}, "ml.runners": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.evaluation.constants.data_splits": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 163, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"qualname": 2, "fullname": 8, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"qualname": 2, "fullname": 8, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"qualname": 2, "fullname": 8, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.output": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 112, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.runners.evaluation.evaluators.base": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.evaluation.evaluators.base.Evaluator": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 125, "bases": 0, "doc": 12}, "ml.runners.evaluation.evaluators.classification": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.evaluators.classification.classification": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 10}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 125, "bases": 0, "doc": 127}, "ml.runners.evaluation.evaluators.classification.metrics": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 45}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 145, "bases": 0, "doc": 52}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 183, "bases": 0, "doc": 63}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 194, "bases": 0, "doc": 61}, "ml.runners.evaluation.evaluators.regression": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.evaluators.regression.metrics": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 75, "bases": 0, "doc": 35}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 210, "bases": 0, "doc": 73}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 176, "bases": 0, "doc": 44}, "ml.runners.evaluation.evaluators.regression.regression": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 9}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 125, "bases": 0, "doc": 115}, "ml.runners.evaluation.models": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.models.predictions": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"qualname": 2, "fullname": 7, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"qualname": 2, "fullname": 7, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"qualname": 2, "fullname": 7, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 15}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 285, "bases": 0, "doc": 89}, "ml.runners.evaluation.persistence.prepare_metadata": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 179, "bases": 0, "doc": 67}, "ml.runners.evaluation.persistence.save_predictions": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.evaluation.persistence.save_predictions.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 46}, "ml.runners.evaluation.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.runners.evaluation.utils.get_entity_keys": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 62, "bases": 0, "doc": 52}, "ml.runners.evaluation.utils.get_evaluator": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.evaluation.utils.get_evaluator.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 32}, "ml.runners.explainability": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.explainability.constants.explainability_metrics_class": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"qualname": 5, "fullname": 12, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"qualname": 5, "fullname": 12, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.output": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.runners.explainability.explainers.base": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.explainability.explainers.base.Explainer": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ml.runners.explainability.explainers.base.Explainer.explain": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.explainability.explainers.tree_model.adapters": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 11}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 28}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 30}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 32}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 11}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 37}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 30}, "ml.runners.explainability.explainers.tree_model.tree_model": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 10}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 106}, "ml.runners.explainability.explainers.tree_model.utils": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"qualname": 4, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 38}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"qualname": 3, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 198, "bases": 0, "doc": 67}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"qualname": 3, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 205, "bases": 0, "doc": 67}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"qualname": 0, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"qualname": 1, "fullname": 15, "annotation": 0, "default_value": 20, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"qualname": 6, "fullname": 20, "annotation": 0, "default_value": 0, "signature": 118, "bases": 0, "doc": 48}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"qualname": 2, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 105, "bases": 0, "doc": 30}, "ml.runners.explainability.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.persistence.persist_explainability_run": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 266, "bases": 0, "doc": 94}, "ml.runners.explainability.persistence.save_metrics_csv": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 91, "bases": 0, "doc": 41}, "ml.runners.explainability.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.explainability.utils.get_explainer": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.explainability.utils.get_explainer.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 31}, "ml.runners.shared": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.formatting": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.formatting.ensure_1d_array": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 35}, "ml.runners.shared.lineage": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.lineage.validate_lineage_integrity": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 98, "bases": 0, "doc": 38}, "ml.runners.shared.lineage.validations": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.lineage.validations.base": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.lineage.validations.base.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 31}, "ml.runners.shared.lineage.validations.configs_match": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.lineage.validations.configs_match.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 37}, "ml.runners.shared.loading": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"qualname": 1, "fullname": 11, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"qualname": 6, "fullname": 16, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 36}, "ml.runners.shared.loading.pipeline": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.loading.pipeline.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 99, "bases": 0, "doc": 41}, "ml.runners.shared.logical_config": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"qualname": 4, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 36}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 43}, "ml.runners.shared.logical_config.validate_threshold": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.shared.logical_config.validate_threshold.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 50}, "ml.runners.shared.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.persistence.save_metrics": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.persistence.save_metrics.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 160, "bases": 0, "doc": 65}, "ml.runners.shared.reproducibility": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.shared.reproducibility.validate_reproducibility": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 31}, "ml.runners.shared.reproducibility.validations": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 31}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"qualname": 4, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 74}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 31}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 36}, "ml.runners.training": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.constants": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.training.constants.output": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 7, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.constants.output.TrainOutput.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 148, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.model": {"qualname": 2, "fullname": 7, "annotation": 8, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"qualname": 2, "fullname": 7, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.lineage": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.metrics": {"qualname": 2, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"qualname": 4, "fullname": 9, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.persistence": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.persistence.artifacts": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.training.persistence.artifacts.save_model": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.persistence.artifacts.save_model.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 43}, "ml.runners.training.persistence.artifacts.save_pipeline": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 41}, "ml.runners.training.persistence.run_info": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.training.persistence.run_info.persist_training_run": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"qualname": 3, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 270, "bases": 0, "doc": 97}, "ml.runners.training.trainers": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.runners.training.trainers.base": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.trainers.base.Trainer": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.runners.training.trainers.base.Trainer.train": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 59}, "ml.runners.training.trainers.catboost": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.runners.training.trainers.catboost.catboost": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 93}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 12}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 120}, "ml.runners.training.trainers.catboost.train_catboost_model": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 215, "bases": 0, "doc": 104}, "ml.runners.training.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.runners.training.utils.get_trainer": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.utils.get_trainer.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.get_trainer.get_trainer": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 31}, "ml.runners.training.utils.logical_config_checks": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"qualname": 0, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"qualname": 3, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 98}, "ml.runners.training.utils.logical_config_checks.validations": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"qualname": 0, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"qualname": 1, "fullname": 12, "annotation": 0, "default_value": 17, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"qualname": 3, "fullname": 14, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 34}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"qualname": 0, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"qualname": 1, "fullname": 13, "annotation": 0, "default_value": 18, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"qualname": 4, "fullname": 16, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 27}, "ml.runners.training.utils.metrics": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.runners.training.utils.metrics.best_f1": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.runners.training.utils.metrics.best_f1.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 49}, "ml.runners.training.utils.metrics.compute_metrics": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 200, "bases": 0, "doc": 127}, "ml.runners.training.utils.model_specific": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.runners.training.utils.model_specific.catboost": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.runners.training.utils.model_specific.catboost.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 32}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 116, "bases": 0, "doc": 51}, "ml.search": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.search.constants": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.constants.SEARCH_PHASES": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.models.experiment_metadata": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.Sources": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 18}, "ml.search.models.experiment_metadata.Sources.main": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.Sources.extends": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 14}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"qualname": 2, "fullname": 7, "annotation": 15, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"qualname": 3, "fullname": 8, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"qualname": 3, "fullname": 8, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "ml.search.models.search_results.Phases": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 11}, "ml.search.models.search_results.Phases.broad": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results.Phases.narrow": {"qualname": 2, "fullname": 7, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results.SearchResults": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 14}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results.SearchResults.best_model_params": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.models.search_results.SearchResults.phases": {"qualname": 2, "fullname": 7, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.params": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.params.catboost": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.search.params.catboost.refinement": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 124}, "ml.search.params.catboost.validation": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.params.catboost.validation.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.params.catboost.validation.validate_param_value": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 33, "bases": 0, "doc": 44}, "ml.search.params.refiners": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.params.refiners.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.search.params.refiners.refine_int": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 41}, "ml.search.params.refiners.refine_float_mult": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 44}, "ml.search.params.refiners.refine_border_count": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 34}, "ml.search.params.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.params.utils.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.search.params.utils.get_default_int_params": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 51}, "ml.search.params.utils.get_default_float_params": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 57}, "ml.search.persistence": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.persistence.persist_experiment": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.persistence.persist_experiment.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.search.persistence.persist_experiment.persist_experiment": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 232, "bases": 0, "doc": 91}, "ml.search.persistence.prepare_metadata": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.persistence.prepare_metadata.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 184, "bases": 0, "doc": 116}, "ml.search.searchers": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ml.search.searchers.base": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.search.searchers.base.Searcher": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ml.search.searchers.base.Searcher.search": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 129, "bases": 0, "doc": 44}, "ml.search.searchers.catboost": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.search.searchers.catboost.catboost": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.searchers.catboost.catboost.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 12}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 129, "bases": 0, "doc": 69}, "ml.search.searchers.catboost.model": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.searchers.catboost.model.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.model.prepare_model": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 136, "bases": 0, "doc": 60}, "ml.search.searchers.catboost.pipeline": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.searchers.catboost.pipeline.context": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.searchers.catboost.pipeline.context.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 675, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"qualname": 2, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"qualname": 4, "fullname": 10, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"qualname": 3, "fullname": 9, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"qualname": 3, "fullname": 9, "annotation": 7, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"qualname": 2, "fullname": 8, "annotation": 30, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"qualname": 4, "fullname": 10, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"qualname": 3, "fullname": 9, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"qualname": 4, "fullname": 10, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"qualname": 4, "fullname": 10, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"qualname": 3, "fullname": 9, "annotation": 30, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"qualname": 5, "fullname": 11, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 25}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"qualname": 4, "fullname": 10, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "ml.search.searchers.catboost.pipeline.steps": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 12, "doc": 12}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 32}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 12, "doc": 12}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 103}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 12, "doc": 12}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"qualname": 2, "fullname": 9, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 26}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 92}, "ml.search.searchers.catboost.search_results_creator": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 67, "bases": 0, "doc": 36}, "ml.search.searchers.output": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.searchers.output.SearchOutput": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.search.searchers.output.SearchOutput.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 123, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.search_results": {"qualname": 3, "fullname": 7, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.scoring_method": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.searchers.output.SearchOutput.splits_info": {"qualname": 3, "fullname": 7, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.utils.failure_management": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.utils.failure_management.delete_failure_management_folder": {"qualname": 0, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"qualname": 1, "fullname": 10, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"qualname": 4, "fullname": 13, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"qualname": 4, "fullname": 13, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 12}, "ml.search.utils.failure_management.save_broad": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.utils.failure_management.save_broad.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.failure_management.save_broad.save_broad": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 14}, "ml.search.utils.failure_management.save_narrow": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.search.utils.failure_management.save_narrow.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 14}, "ml.search.utils.get_searcher": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.search.utils.get_searcher.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.get_searcher.get_searcher": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 31}, "ml.search.utils.model_params_extraction": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.search.utils.model_params_extraction.extract_model_params": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 12, "bases": 0, "doc": 41}, "ml.search.utils.randomized_search": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.search.utils.randomized_search.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.search.utils.randomized_search.perform_randomized_search": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 274, "bases": 0, "doc": 185}, "ml.snapshot_bindings": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.snapshot_bindings.config": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.snapshot_bindings.config.models": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 14}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 13}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 15}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 17}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"qualname": 2, "fullname": 7, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 21}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"qualname": 3, "fullname": 8, "annotation": 9, "default_value": 1, "signature": 0, "bases": 0, "doc": 25}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 5, "doc": 15}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 3}, "ml.snapshot_bindings.extraction": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"qualname": 5, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 84, "bases": 0, "doc": 35}, "ml.snapshot_bindings.validation": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"qualname": 3, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 111, "bases": 0, "doc": 71}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"qualname": 4, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 51}, "ml.targets": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.targets.adr": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.targets.adr.v1": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.targets.adr.v1.AdrTargetV1": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 11}, "ml.targets.base": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.base.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.targets.base.TargetStrategy": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 12}, "ml.targets.base.TargetStrategy.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 31}, "ml.targets.base.TargetStrategy.entity_key": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.targets.base.TargetStrategy.build": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 47}, "ml.targets.cancellation": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.targets.cancellation.v1": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.targets.cancellation.v1.CancellationTargetV1": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 11}, "ml.targets.lead_time": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.lead_time.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ml.targets.no_show": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.no_show.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.no_show.v1.NoShowTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 13}, "ml.targets.repeated_guest": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.repeated_guest.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ml.targets.room_upgrade": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.room_upgrade.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 15}, "ml.targets.special_requests": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.targets.special_requests.v1": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 12}, "ml.types": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.types.DataLineageEntry": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.types.DataLineageEntry.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 325, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.ref": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.name": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.version": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.format": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.path_suffix": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.merge_key": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.merge_how": {"qualname": 3, "fullname": 5, "annotation": 18, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.merge_validate": {"qualname": 3, "fullname": 5, "annotation": 35, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.snapshot_id": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.path": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.loader_validation_hash": {"qualname": 4, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.data_hash": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.row_count": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.DataLineageEntry.column_count": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.LatestSnapshot": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 12}, "ml.types.LatestSnapshot.LATEST": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.types.AllowedModels": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 7, "signature": 0, "bases": 0, "doc": 3}, "ml.types.AllSplitsInfo": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.types.AllSplitsInfo.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 3}, "ml.types.AllSplitsInfo.train": {"qualname": 2, "fullname": 4, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.AllSplitsInfo.val": {"qualname": 2, "fullname": 4, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.AllSplitsInfo.test": {"qualname": 2, "fullname": 4, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.SplitInfo": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.types.SplitInfo.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 3}, "ml.types.SplitInfo.n_rows": {"qualname": 3, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.SplitInfo.class_distribution": {"qualname": 3, "fullname": 5, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.types.SplitInfo.positive_rate": {"qualname": 3, "fullname": 5, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.types.TabularSplits.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 166, "bases": 0, "doc": 3}, "ml.types.TabularSplits.X_train": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.X_val": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.X_test": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.y_train": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.y_val": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.types.TabularSplits.y_test": {"qualname": 3, "fullname": 5, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.git": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.git.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.git.MergeTarget": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.git.get_git_commit": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 43, "bases": 0, "doc": 44}, "ml.utils.git.is_descendant_commit": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 55}, "ml.utils.hashing": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.utils.hashing.hash_dict": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ml.utils.hashing.hash_dict.canonicalize": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 25}, "ml.utils.hashing.hash_dict.hash_dict": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 30}, "ml.utils.hashing.hash_list": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.hashing.hash_list.hash_list": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 45}, "ml.utils.hashing.hash_streaming": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.hashing.hash_streaming.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.hashing.hash_streaming.hash_streaming": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 35, "bases": 0, "doc": 40}, "ml.utils.hashing.service": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 51}, "ml.utils.hashing.service.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"qualname": 3, "fullname": 7, "annotation": 5, "default_value": 40, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.hashing.service.hash_file": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 32}, "ml.utils.hashing.service.hash_data": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 30}, "ml.utils.hashing.service.hash_artifact": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 30}, "ml.utils.hashing.service.hash_thresholds": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 29}, "ml.utils.loaders": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 39, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.loaders.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.loaders.load_yaml": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 31}, "ml.utils.loaders.load_json": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 44}, "ml.utils.loaders.read_data": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 35}, "ml.utils.pipeline_core": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ml.utils.pipeline_core.runner": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.pipeline_core.runner.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.pipeline_core.runner.PipelineRunner": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 13}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 28}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 36}, "ml.utils.pipeline_core.step": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.pipeline_core.step.PipelineStep": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 14}, "ml.utils.pipeline_core.step.PipelineStep.name": {"qualname": 2, "fullname": 7, "annotation": 2, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.pipeline_core.step.PipelineStep.before": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 32}, "ml.utils.pipeline_core.step.PipelineStep.after": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 32}, "ml.utils.pipeline_core.step.PipelineStep.run": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 27}, "ml.utils.runtime": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.utils.runtime.gpu_info": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"qualname": 3, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"qualname": 4, "fullname": 9, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 38}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 31}, "ml.utils.runtime.gpu_info.get_gpu_info": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 33}, "ml.utils.runtime.runtime_info": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "ml.utils.runtime.runtime_info.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.runtime_info.get_runtime_info": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 24}, "ml.utils.runtime.runtime_snapshot": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.runtime.runtime_snapshot.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 28}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 26}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 36}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 50}, "ml.utils.runtime.save_runtime": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ml.utils.runtime.save_runtime.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 12}, "ml.utils.snapshots": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "ml.utils.snapshots.latest_snapshot": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "ml.utils.snapshots.latest_snapshot.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 33}, "ml.utils.snapshots.snapshot_path": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "ml.utils.snapshots.snapshot_path.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 37}}, "length": 2198, "save": true}, "index": {"qualname": {"root": {"1": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 1}}, "docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 40, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1}}, "df": 14}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 9, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 8, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}}, "df": 3}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ExplainabilityError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}}, "df": 5}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}}, "df": 1}, "r": {"docs": {"ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}}, "df": 6}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 24}}}}}}}}, "s": {"docs": {"ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 3}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 13, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.EvaluationError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}}, "df": 3}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}}, "df": 2, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.registries.EVALUATORS": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 3}}}}, "v": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 11, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 5}}}}}}}}, "s": {"docs": {"ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}}, "df": 10}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}}, "df": 8}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.constants.EPSILON": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}}, "df": 25, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}}, "df": 3}}}}}}}}}}}, "s": {"docs": {"ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 9, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}}, "df": 3}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 7}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}}, "df": 1}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}}, "df": 13}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 10}}}, "l": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}}, "df": 18}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 15}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 3}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}}, "df": 14, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}}, "df": 2}}, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 4}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 2}}}}}}}}}, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}}, "df": 23}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}}, "df": 2}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}}, "df": 4}}}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}}, "df": 6}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}}, "df": 2}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 3}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 8}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3}, "x": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.MonitoringError": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 5}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}}, "df": 1, "l": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 44, "s": {"docs": {"ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}}, "df": 22, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 11, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 2}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}}, "df": 10}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 30, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}}, "df": 4}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 22}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}}, "df": 7}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 31, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}}, "df": 7}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}}, "df": 6}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}}, "df": 2}, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}}, "df": 13, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}}, "df": 4}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}}, "df": 1}}}, "r": {"2": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 5}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}}, "df": 5}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 23, "d": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}}, "df": 2}}}}}}, "g": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 14, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}}, "df": 9}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}}, "df": 11, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}}, "df": 2}}}, "d": {"docs": {"ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.validation.search.search.validate_search_record": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {"ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}}, "df": 4, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "m": {"docs": {"ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}}, "df": 3}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}}, "df": 4, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}}, "df": 2}}}, "c": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 53, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 21, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}}, "df": 5}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}}, "df": 17}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}}, "df": 5}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 12, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}}, "df": 8}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}}, "df": 6}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 37}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.SearchError": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.registries.SEARCHERS": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 7}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}}, "df": 3}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}}, "df": 4}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 4}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}}, "df": 4}}}}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}}, "df": 18, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 4}}}}}}}}}, "s": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}}, "df": 3}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 6}}}}}}}}}, "e": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}}, "df": 7}}, "s": {"docs": {"ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 2}}, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}}, "df": 8, "d": {"docs": {"ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 3}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}}, "df": 4}}}, "d": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}}, "df": 6}}}}}}, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.SplitInfo": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 9, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 5}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}}, "df": 3}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 28, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 1}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 13}}, "f": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.safe.safe": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.UserError": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 39, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}}, "df": 37}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}}, "df": 12}}}}}}, "s": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 5}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}}, "df": 5}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.DataError": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}}, "df": 5}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.types.DataLineageEntry": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}}, "df": 16}}}}}}}}}}}}}, "e": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}}, "df": 10, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}}, "df": 5}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}}, "df": 2}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}}, "df": 8}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {"ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {"ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 2}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 3}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 3}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}}, "df": 3}}}}}}}, "f": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}}, "df": 31, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 13}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}}, "df": 6}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 8}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PersistenceError": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}}, "df": 5}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 16}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 37, "s": {"docs": {"ml.promotion.context.PromotionContext.paths": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 4}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 4}}}}}, "r": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}}, "df": 4}}}, "a": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 6}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}}, "df": 18, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}}, "df": 3}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}}, "df": 9}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 5}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}}, "df": 7}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}}, "df": 7}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 10, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 10, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 15, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 15, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 6}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.inference.execution.predict.predict": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 9, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 5}}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}}, "df": 6}}}}}, "k": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}}, "df": 25, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 15, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.TrainingError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}}, "df": 2}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}}, "df": 2}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}}, "df": 8}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}}, "df": 7}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.registries.TRAINERS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}}, "df": 7}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 15, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "o": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 3}}}}}}}, "p": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 12}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 12}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}}, "df": 8, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}}, "df": 5}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 17, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}}, "df": 8}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}}, "df": 17}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.TabularSplits": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}}, "df": 29, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}}, "df": 5}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 12, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}}, "df": 17, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.InferenceError": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}}, "df": 13}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 17, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 40}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}}, "df": 4}}}}}, "t": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}}, "df": 11}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 1}, "o": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}}, "df": 40}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}}, "df": 6}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "f": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 4}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 15}}}}}}}}, "l": {"docs": {"ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 5, "o": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}}, "df": 57, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 10}}}}}}, "s": {"docs": {"ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 2}}}, "f": {"1": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}}, "df": 9}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1.4142135623730951}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}}, "df": 7}}}}}}}}, "d": {"docs": {"ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 43, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 31, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}}, "df": 3}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}}, "df": 6}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}}, "df": 4}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}}, "df": 11}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 3}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}}, "df": 7, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 13}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 6, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}}, "df": 24}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}}, "df": 7}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}}, "df": 5}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}}, "df": 19}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 3}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.adr.v1.AdrTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}, "d": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 8, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 3}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}}, "df": 13}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.args": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 2}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 12}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}}, "df": 4, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.AllowedModels": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 5}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "t": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}}, "df": 14}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}}, "df": 4}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 8}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}}, "df": 2}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}}, "df": 11}}}}}, "p": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 3}, "f": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}}, "df": 4, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}}, "df": 2}, "r": {"docs": {"ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 1}, "k": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 1}}, "l": {"2": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 184}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}}, "df": 3}}}}}, "f": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}}, "df": 6}, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 30, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}}, "df": 15}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 4}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 16, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}}, "df": 9, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}}, "df": 9}}}}}}}}}}, "b": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 4}, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 39}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 9}}}, "n": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}}, "df": 23, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}}, "df": 6}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}}, "df": 5}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}}, "df": 6}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}}, "df": 8}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}}, "df": 3}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "o": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 6}}}}}}}, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 1}}}}}}}}, "k": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}}, "df": 12, "s": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}}, "df": 5}}}, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}}, "df": 2}}, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}}, "df": 11}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}}, "df": 4}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}}, "df": 7}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 3}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 4, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 3}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}}, "df": 12, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}}, "df": 5, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}}, "df": 8}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 8}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 74}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 6}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}}, "df": 2}}}, "w": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 91}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}}, "df": 4}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 35}}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 4}}}, "s": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "k": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}}, "df": 3}}}}, "y": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 2}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}}, "df": 5}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.utils.loaders.load_json": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"1": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}}, "df": 3}}, "docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 40, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1}, "ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.exceptions.ConfigError": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.exceptions.InferenceError": {"tf": 1}, "ml.exceptions.MonitoringError": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.metadata.validation.search.search": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.constants.EPSILON": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.types": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 2198, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 3}}}}}, "x": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}}, "df": 6}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}}, "df": 11, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 12}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 60, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.MonitoringError": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 5}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}}, "df": 1, "l": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}}, "df": 259, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 229, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}}, "df": 22, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}}, "df": 119}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 20, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 2}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}}, "df": 15}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}}, "df": 66, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}}, "df": 4}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 22}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}}, "df": 7}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.search": {"tf": 1}, "ml.metadata.validation.search.search": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 320, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}}, "df": 7}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}}, "df": 6}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}}, "df": 2}, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}}, "df": 15, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}}, "df": 4}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1}}, "df": 17}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 33, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}}, "df": 39, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}}, "df": 4}}}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}}, "df": 6}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1}}, "df": 13}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.logger": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.7320508075688772}, "ml.config.hashing": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.merge": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.logger": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 587, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}}, "df": 3}}}}}}}}}}}, "s": {"docs": {"ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 17, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}}, "df": 3}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.logger": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.Stage": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.EPSILON": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}}, "df": 114}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}}, "df": 9}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 96}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 12}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 66}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 4}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}}, "df": 22}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}}, "df": 5}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 12, "s": {"docs": {"ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 7}}}}}, "e": {"docs": {"ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "l": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}}, "df": 10, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}}, "df": 19}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}}, "df": 14, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}}, "df": 2}}, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 13}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 9}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 108, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 2}}}}}}}}}, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 7}}}}}}}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 105}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}}, "df": 23}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}}, "df": 2}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 10}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}}, "df": 2}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 16, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.exceptions.ConfigError": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.exceptions.InferenceError": {"tf": 1}, "ml.exceptions.MonitoringError": {"tf": 1}}, "df": 14}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1.4142135623730951}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1.4142135623730951}}, "df": 15}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 9, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 87, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}}, "df": 3}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ExplainabilityError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}}, "df": 5}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}}, "df": 1}, "r": {"docs": {"ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 42}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}}, "df": 44, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}}, "df": 6}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 24}}}}}}}}, "s": {"docs": {"ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 5}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 17}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}}, "df": 16}}}, "e": {"docs": {"ml.post_promotion.inference.execution.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 8}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}}, "df": 90, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.EvaluationError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}}, "df": 3}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}}, "df": 2, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.registries.EVALUATORS": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 26}}}, "e": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 38}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}}, "df": 5}}}}, "v": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 11, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 5}}}}}}}}, "s": {"docs": {"ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}}, "df": 3}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}}, "df": 10}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}}, "df": 14}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.promotion.validation.registry_entry": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1.4142135623730951}}, "df": 43}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.constants.EPSILON": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 87, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 36}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}}, "df": 13, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 13}}}, "w": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"2": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}}, "df": 10, "r": {"docs": {"ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}}, "df": 14}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 23, "d": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 5}}}}}}, "g": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.validation.registry_entry": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1.4142135623730951}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 63, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}}, "df": 9}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}}, "df": 11, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}}, "df": 11}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 5, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}}, "df": 17}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}}, "df": 2}}}, "d": {"docs": {"ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.validation.search.search.validate_search_record": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}}, "df": 31}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {"ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}}, "df": 18, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "m": {"docs": {"ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.4142135623730951}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.row_count": {"tf": 1}}, "df": 26, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}}, "df": 8}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}}, "df": 3}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}}, "df": 2}}}, "c": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 64, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1.4142135623730951}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1.7320508075688772}}, "df": 84, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}}, "df": 5}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}}, "df": 17}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 300, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}}, "df": 7}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1.4142135623730951}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1.7320508075688772}, "ml.metadata.validation.search": {"tf": 1}, "ml.metadata.validation.search.search": {"tf": 1.4142135623730951}, "ml.metadata.validation.search.search.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1.7320508075688772}, "ml.search": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1.4142135623730951}, "ml.search.models": {"tf": 1}, "ml.search.models.experiment_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases.broad": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases.narrow": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1.4142135623730951}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.7320508075688772}, "ml.search.searchers.output": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.logger": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 237, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}}, "df": 8}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}}, "df": 6}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}}, "df": 37}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.4142135623730951}}, "df": 5, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.SearchError": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.registries.SEARCHERS": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 86}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 7}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 7}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 6}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}}, "df": 3}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}}, "df": 9, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}}, "df": 5, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}}, "df": 4}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}}, "df": 5}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.service": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 12}}}}}, "t": {"docs": {"ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}}, "df": 7, "s": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 4}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}}, "df": 4}}}}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}}, "df": 32, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 4}}}}}}}}}, "s": {"docs": {"ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}}, "df": 538}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 6}}}}}}}}}, "e": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}}, "df": 17}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}}, "df": 7}}, "s": {"docs": {"ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}}, "df": 8, "d": {"docs": {"ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 8, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "r": {"docs": {"ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}}, "df": 3, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}}, "df": 13}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 160}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}}, "df": 5}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 3}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}}, "df": 58}}}, "d": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}}, "df": 122}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 5, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}}, "df": 6}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.logger": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.SPLIT": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}}, "df": 8}}}}, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 12}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.SplitInfo": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}}, "df": 11, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}}, "df": 118, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 5}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}}, "df": 3}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 57, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 10}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 33}}, "f": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}}, "df": 2}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 191}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.UserError": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 3}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 2}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.logger": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.logger": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.7320508075688772}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1.7320508075688772}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 320, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}}, "df": 37}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}}, "df": 12}}}}}}, "s": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}}, "df": 5}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}}, "df": 5}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.DataError": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}}, "df": 5}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.types.DataLineageEntry": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}}, "df": 16}}}}}}}}}}}}}, "e": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}}, "df": 15, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}}, "df": 5}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1.4142135623730951}}, "df": 5}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}}, "df": 8}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}}, "df": 32}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {"ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {"ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 2}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 3}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 15}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}}, "df": 3}}}}}}}, "f": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 180, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 13}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {"ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}}, "df": 40, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 5}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}}, "df": 6}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "t": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 9, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 8}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}}, "df": 16, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 100, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PersistenceError": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}}, "df": 5}}}}}}}, "r": {"docs": {"ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}}, "df": 57}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 39, "s": {"docs": {"ml.promotion.context.PromotionContext.paths": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 4}}}}}, "t": {"docs": {"ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}}, "df": 136}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 21}}}}}}}, "r": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}}, "df": 4}}}, "a": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}}, "df": 48, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 6}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 22}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.policies.promotion": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.EPSILON": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1.4142135623730951}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1.4142135623730951}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.validation.registry_entry": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 434, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}}, "df": 3}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}}, "df": 9}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 5}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}}, "df": 7}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}}, "df": 7}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 10, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}, "e": {"docs": {"ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 44, "d": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 16, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 15, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 14, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 6}}}}}}}}}, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 34, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}}, "df": 7, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.4142135623730951}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}}, "df": 25, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 5}}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}}, "df": 6}}}}}, "k": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}}, "df": 35, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.runners.training": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 87, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.TrainingError": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}}, "df": 2}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}}, "df": 2}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}}, "df": 8}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}}, "df": 7}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.registries.TRAINERS": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 12}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}}, "df": 7}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 17, "s": {"docs": {"ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}}, "df": 4}}, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 37, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "o": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 8, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}}, "df": 7, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 3}}}}}}}, "p": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 12}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 12}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}}, "df": 8, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}}, "df": 5}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 30, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}}, "df": 8}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "s": {"docs": {"ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 29, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 133, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}}, "df": 17}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.TabularSplits": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}}, "df": 31, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.types": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 39}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 11, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}}, "df": 5}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 11, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 63, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}}, "df": 17, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 18, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}}, "df": 43, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.InferenceError": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}}, "df": 13}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1.4142135623730951}}, "df": 73, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 40}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}}, "df": 4}}}}}, "t": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 124, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}}, "df": 11}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}}, "df": 1}, "o": {"docs": {"ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}}, "df": 5}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}}, "df": 40}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}}, "df": 7}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}}, "df": 7, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}}, "df": 7}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}}, "l": {"docs": {"ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 5, "o": {"docs": {"ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}}, "df": 2}}, "d": {"docs": {"ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.4142135623730951}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}}, "df": 67, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.modeling.models.run_identity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 15}}}}}}, "s": {"docs": {"ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 4}}, "o": {"docs": {"ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 15}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 69, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}}, "df": 7}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 3}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}}, "df": 18}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}}, "df": 4}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 4, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 3}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 13}}}}}, "l": {"docs": {"ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}}, "df": 3}, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}}, "df": 12, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}}, "df": 12, "s": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 22}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1.4142135623730951}}, "df": 14, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}}, "df": 8}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 10, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"1": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}}, "df": 4}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}}, "df": 9}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1.4142135623730951}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}}, "df": 12}}}}}}}}, "d": {"docs": {"ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 326, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.logger": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 146, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}}, "df": 3}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}}, "df": 6}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}}, "df": 4}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}}, "df": 11}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}}, "df": 31, "s": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 3}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}}, "df": 9, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 15, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 10}}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}}, "df": 1}, "y": {"docs": {"ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 12}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 209}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 161, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}}, "df": 24}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}}, "df": 7}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}}, "df": 5}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}}, "df": 19}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}}, "df": 9, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 3}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.adr.v1.AdrTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}, "d": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}}, "df": 17, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 12}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}}, "df": 17, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 3}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}}, "df": 3}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1.4142135623730951}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.validation.artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1.4142135623730951}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}}, "df": 26}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.args": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 2}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 22}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}}, "df": 4}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}}, "df": 6, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.AllowedModels": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 5}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "t": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}}, "df": 14}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}}, "df": 4}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}}, "df": 3}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 8}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}}, "df": 2}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 44}}}}}, "p": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}}, "df": 16, "s": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 12, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}}, "df": 3}, "f": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}}, "df": 4, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}}, "df": 2}, "r": {"docs": {"ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 1}, "k": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 1}}, "l": {"2": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 184}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1.4142135623730951}}, "df": 5}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 20}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.loader": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 18, "s": {"docs": {"ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 6}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 50}}}}}, "w": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}}, "df": 3}}}}}, "f": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}}, "df": 6}, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 58, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}}, "df": 15}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}}, "df": 5}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}}, "df": 21, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}}, "df": 9, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}}, "df": 9}}}}}}}}}}, "b": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 4}, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 5}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 74, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.getters": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}}, "df": 7}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 15}}}, "n": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}}, "df": 23, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}}, "df": 8}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1.4142135623730951}}, "df": 17, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}}, "df": 5}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}}, "df": 6}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}}, "df": 8}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}}, "df": 3}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "o": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}, "t": {"docs": {"ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"1": {"docs": {"ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 14}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.metadata.validation.search.search": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}}, "df": 142, "s": {"docs": {"ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 27}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 140}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 35}}}}}}}, "k": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}}, "df": 16, "s": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}}, "df": 7}}}, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 21}}}, "s": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "k": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}}, "df": 5}}}}, "y": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 2}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}}, "df": 5}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.utils.loaders.load_json": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"1": {"docs": {}, "df": 0, ":": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "m": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 2}}}, "docs": {"ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 2}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1.4142135623730951}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1.4142135623730951}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.promotion.context.PromotionContext.args": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1.4142135623730951}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.merge_how": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1.4142135623730951}, "ml.types.SplitInfo.positive_rate": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}}, "df": 794, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}}, "df": 1, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1}}, "df": 29}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1}}, "df": 10}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 21}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1}}, "df": 8}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 24}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 16, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "g": {"1": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 2, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 2}}, "z": {"4": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.types.DataLineageEntry.row_count": {"tf": 1}, "ml.types.DataLineageEntry.column_count": {"tf": 1}, "ml.types.SplitInfo.n_rows": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1}}, "df": 48, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}}, "df": 40}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}}, "df": 36, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}}, "df": 5}}}, "f": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 169}}, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "q": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}}, "df": 1}, "g": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.7320508075688772}}, "df": 3}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}}, "df": 5}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionContext.args": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 44}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 20, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 10}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}}, "df": 3}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}}, "df": 10}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}}, "df": 10, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}}, "df": 23}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 180}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}}, "df": 31, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 45, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1}}, "df": 26}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.7320508075688772}}, "df": 3}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 27}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 5}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 2}, "ml.types.DataLineageEntry.merge_validate": {"tf": 2}}, "df": 2}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}}, "df": 1}}}}}}}}}}}, ":": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "m": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 127, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}}, "df": 11}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 31}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}}, "df": 26}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.constants.output.TrainOutput.model": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.constants.output.TrainOutput.model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}}, "df": 119}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.types.DataLineageEntry.ref": {"tf": 1}, "ml.types.DataLineageEntry.name": {"tf": 1}, "ml.types.DataLineageEntry.version": {"tf": 1}, "ml.types.DataLineageEntry.format": {"tf": 1}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1}, "ml.types.DataLineageEntry.path": {"tf": 1}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1}, "ml.types.DataLineageEntry.data_hash": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1}}, "df": 307, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}}, "df": 8}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1.4142135623730951}}, "df": 21, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.y_train": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.y_val": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.y_test": {"tf": 1.4142135623730951}}, "df": 12}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}}, "df": 24}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 3}}}}}}}}, "q": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}}, "df": 8}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}}, "df": 2}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 29}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 4, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1.4142135623730951}}, "df": 8}}}}}, "a": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}}, "df": 56, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}}, "df": 23}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}}, "df": 33, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.4142135623730951}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 25}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}}, "df": 5}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}, "ml.types.AllSplitsInfo.train": {"tf": 1}, "ml.types.AllSplitsInfo.val": {"tf": 1}, "ml.types.AllSplitsInfo.test": {"tf": 1}}, "df": 10}, "[": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "s": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}}, "df": 10, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 2}, "ml.types.DataLineageEntry.merge_validate": {"tf": 2}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}}, "df": 12, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.types.DataLineageEntry.merge_key": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}}, "df": 3}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1}}, "df": 7}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}}, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionContext.args": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 2}, "ml.types.DataLineageEntry.merge_validate": {"tf": 2}}, "df": 2}}}, "x": {"2": {"7": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 4}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 3.1622776601683795}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 2}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 2.8284271247461903}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 2}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 2.8284271247461903}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.compression": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 4}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1.4142135623730951}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 2}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 2}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 2}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 2.8284271247461903}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 3.1622776601683795}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 3.1622776601683795}, "ml.types.DataLineageEntry.merge_how": {"tf": 3.1622776601683795}, "ml.types.DataLineageEntry.merge_validate": {"tf": 4}}, "df": 31}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "q": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.4142135623730951}}, "df": 3}}}}, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1.4142135623730951}}, "df": 4, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}}, "df": 3}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 5, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}}, "df": 3}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}}, "df": 5}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}}, "df": 1, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 2}}, "e": {"docs": {"ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}}, "df": 1}, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.types.DataLineageEntry.merge_how": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1.4142135623730951}}, "df": 7}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1}}, "df": 10, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1}}, "df": 2}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "s": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 2}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 2}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1.4142135623730951}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionContext.paths": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1}}, "df": 32, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.paths": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}}, "df": 6}}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1.4142135623730951}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 3}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}}, "df": 19, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1}}, "df": 18}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.types.TabularSplits.X_train": {"tf": 1}, "ml.types.TabularSplits.X_val": {"tf": 1}, "ml.types.TabularSplits.X_test": {"tf": 1}, "ml.types.TabularSplits.y_train": {"tf": 1}, "ml.types.TabularSplits.y_val": {"tf": 1}, "ml.types.TabularSplits.y_test": {"tf": 1}}, "df": 30}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.models.search_results.SearchResults.phases": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}}, "df": 1}}}}}}, "z": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1}}, "df": 1}}}}}}}}}}}, "default_value": {"root": {"0": {"6": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 1}, "8": {"docs": {"ml.promotion.constants.constants.EPSILON": {"tf": 1}}, "df": 1}, "docs": {"ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 5.385164807134504}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 44.69899327725402}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 3.605551275463989}}, "df": 8}, "1": {"0": {"0": {"0": {"0": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 2}, "docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1}}, "df": 1}, "docs": {"ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 5}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 2}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.23606797749979}}, "df": 5, ":": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "m": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}}, "e": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.promotion.constants.constants.EPSILON": {"tf": 1}}, "df": 2}, "d": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}}, "df": 1}}, "2": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"5": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}}, "df": 2}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "3": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "4": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "b": {"2": {"4": {"1": {"3": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"2": {"docs": {}, "df": 0, "d": {"2": {"8": {"7": {"1": {"4": {"0": {"6": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "e": {"1": {"docs": {}, "df": 0, "e": {"7": {"6": {"3": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"4": {"3": {"0": {"6": {"docs": {}, "df": 0, "e": {"4": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "b": {"1": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"8": {"3": {"4": {"docs": {}, "df": 0, "a": {"2": {"9": {"docs": {}, "df": 0, "e": {"1": {"4": {"5": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"0": {"docs": {}, "df": 0, "f": {"3": {"9": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "5": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "6": {"0": {"0": {"docs": {"ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "7": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "8": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 4}, "9": {"0": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"0": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "7": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "9": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 5}, "docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 3.3166247903554}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 3.605551275463989}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.logger": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.logger": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.logger": {"tf": 1.4142135623730951}, "ml.config.best_params.logger": {"tf": 1.4142135623730951}, "ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.best_params.MODEL_KEYS": {"tf": 1.4142135623730951}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.logger": {"tf": 1.4142135623730951}, "ml.config.hashing.logger": {"tf": 1.4142135623730951}, "ml.config.loader.logger": {"tf": 1.4142135623730951}, "ml.config.merge.logger": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.logger": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.config.validation.logger": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.logger": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.logger": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.logger": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.logger": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.logger": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_min_rows.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 2}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.logger": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.logger": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.required_fields": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.logger": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 3}, "ml.features.loading.get_target.logger": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.logger": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.logger": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.logger": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.logger": {"tf": 1.4142135623730951}, "ml.io.formatting.str_to_bool.logger": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata.logger": {"tf": 1.4142135623730951}, "ml.io.validation.validate_mapping.logger": {"tf": 1.4142135623730951}, "ml.logging_config.LOG_FORMAT": {"tf": 2.449489742783178}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.processed.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training.logger": {"tf": 1.4142135623730951}, "ml.metadata.validation.search.search.logger": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.logger": {"tf": 1.4142135623730951}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.logger": {"tf": 1.4142135623730951}, "ml.modeling.validation.runtime_info.logger": {"tf": 1.4142135623730951}, "ml.pipelines.builders.logger": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1.4142135623730951}, "ml.pipelines.models.VALID_STEPS": {"tf": 1.4142135623730951}, "ml.pipelines.validation.logger": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4.242640687119285}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 2}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 6.324555320336759}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.4142135623730951}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 3.1622776601683795}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.logger": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.logger": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 2}, "ml.promotion.getters.get.logger": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.logger": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.logger": {"tf": 1.4142135623730951}, "ml.promotion.persister.logger": {"tf": 1.4142135623730951}, "ml.promotion.service.logger": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.logger": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.logger": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.logger": {"tf": 1.4142135623730951}, "ml.promotion.validation.artifacts.logger": {"tf": 1.4142135623730951}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1.4142135623730951}, "ml.promotion.validation.registry_entry.logger": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners.logger": {"tf": 1.4142135623730951}, "ml.registries.FEATURE_OPERATORS": {"tf": 2.449489742783178}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 2}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 2}, "ml.registries.OP_MAP": {"tf": 3.1622776601683795}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2.449489742783178}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 2.23606797749979}, "ml.registries.EVALUATORS": {"tf": 2}, "ml.registries.EXPLAINERS": {"tf": 1.7320508075688772}, "ml.registries.SEARCHERS": {"tf": 1.7320508075688772}, "ml.registries.TRAINERS": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1.4142135623730951}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.logger": {"tf": 1.4142135623730951}, "ml.search.params.refiners.logger": {"tf": 1.4142135623730951}, "ml.search.params.utils.logger": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.logger": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1.4142135623730951}, "ml.search.utils.get_searcher.logger": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.targets.base.logger": {"tf": 1.4142135623730951}, "ml.types.LatestSnapshot.LATEST": {"tf": 1.4142135623730951}, "ml.types.AllowedModels": {"tf": 1}, "ml.utils.git.logger": {"tf": 1.4142135623730951}, "ml.utils.git.MergeTarget": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.logger": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2.449489742783178}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2.449489742783178}, "ml.utils.loaders.logger": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.logger": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.logger": {"tf": 1.4142135623730951}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1.4142135623730951}}, "df": 340, "l": {"2": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 3.1622776601683795}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 2.449489742783178}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 4.123105625617661}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2.23606797749979}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 235, "e": {"docs": {"ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 2}, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1.4142135623730951}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 184}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 5}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.loader.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.utils.loaders.logger": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}}, "df": 9}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 10}}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "f": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1.4142135623730951}}, "df": 3}, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "x": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 2.8284271247461903}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot.LATEST": {"tf": 1.4142135623730951}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.types.LatestSnapshot.LATEST": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}}, "df": 13, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.classification": {"tf": 1.4142135623730951}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.EVALUATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1.4142135623730951}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 19, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.logger": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}}, "df": 1}}}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 4, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.SPLIT": {"tf": 2}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1.4142135623730951}, "ml.types.AllowedModels": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}}, "df": 5}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1.4142135623730951}}, "df": 1}, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1.7320508075688772}, "ml.registries.TRAINERS": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1.4142135623730951}}, "df": 20, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1}}, "df": 3}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1}, "ml.types.AllowedModels": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.SEARCHERS": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.registries.TRAINERS": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1}}, "df": 13}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}, "f": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}}, "df": 2}}}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.4142135623730951}}, "df": 3}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}}, "df": 1}}}, "x": {"2": {"7": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 4.47213595499958}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 4.898979485566356}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1.4142135623730951}, "ml.config.best_params.MergeTarget": {"tf": 2.449489742783178}, "ml.config.best_params.MODEL_KEYS": {"tf": 3.7416573867739413}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 2}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 6.164414002968976}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 4}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 2.8284271247461903}, "ml.features.loading.data_loader.required_fields": {"tf": 4.898979485566356}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 6.48074069840786}, "ml.logging_config.LOG_FORMAT": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 3.1622776601683795}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 2.8284271247461903}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.pipelines.models.VALID_STEPS": {"tf": 3.1622776601683795}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 8}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 2.8284271247461903}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 67.11184694225007}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.4142135623730951}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 4}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 2}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 4.242640687119285}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.Stage": {"tf": 2}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 2}, "ml.registries.FEATURE_OPERATORS": {"tf": 4}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 2.8284271247461903}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 4.242640687119285}, "ml.registries.OP_MAP": {"tf": 4}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 4.242640687119285}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 3.4641016151377544}, "ml.registries.EVALUATORS": {"tf": 2.8284271247461903}, "ml.registries.EXPLAINERS": {"tf": 2}, "ml.registries.SEARCHERS": {"tf": 2}, "ml.registries.TRAINERS": {"tf": 2}, "ml.search.constants.SEARCH_PHASES": {"tf": 2}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 2.449489742783178}, "ml.types.LatestSnapshot.LATEST": {"tf": 1.4142135623730951}, "ml.utils.git.MergeTarget": {"tf": 2.449489742783178}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2.8284271247461903}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2.8284271247461903}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1.4142135623730951}}, "df": 150}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 3.1622776601683795}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 195, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 4}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 22, "s": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}}, "df": 7}}}}}}, "z": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 2}}, "df": 1}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}}, "df": 3}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.validation.validate_mapping.logger": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "x": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.8284271247461903}}, "df": 1, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1.4142135623730951}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 3}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.4142135623730951}}, "df": 22}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1.4142135623730951}}, "df": 8, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}}, "df": 21}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}, "n": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1.4142135623730951}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.7320508075688772}}, "df": 3}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.utils.memory.compute_memory_change.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1.4142135623730951}}, "df": 1}}}}}, ":": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "m": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "g": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 3.1622776601683795}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1.4142135623730951}}, "df": 1}, "r": {"docs": {"ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}}, "df": 8}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.persistence.persist_experiment.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}}, "df": 5}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.registries.EVALUATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.validation.registry_entry.logger": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1.4142135623730951}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "q": {"docs": {"ml.registries.OP_MAP": {"tf": 1}}, "df": 1}}, "g": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 3.1622776601683795}, "ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 2.449489742783178}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 4.123105625617661}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 2}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.types.LatestSnapshot.LATEST": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2.23606797749979}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 235, "e": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 2}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1.4142135623730951}}, "df": 1}}, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 2}}}, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}}, "df": 16, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.getters.get.logger": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "t": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.logger": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 29, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.features.splitting.splitting.SPLIT": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"6": {"4": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}, "y": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}, "s": {"docs": {"ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "j": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}}, "df": 3}}}}}}}}, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}}, "df": 16, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {"ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}}, "df": 23, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {"ml.promotion.persister.logger": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 2}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}}, "df": 4}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.best_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}}, "df": 5}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.8284271247461903}}, "df": 1}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.4142135623730951}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.4142135623730951}}, "df": 5}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 2}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.splitting.splitting.SPLIT": {"tf": 1.7320508075688772}}, "df": 1}}}}, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1}, "ml.search.models.search_results.Phases.broad": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 384}}}}}}}}}}}}}}}, "f": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1.4142135623730951}}, "df": 1, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.process_data.logger": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 3}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1.4142135623730951}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}}, "df": 30}}}, "e": {"docs": {"ml.metadata.validation.promotion.promote.logger": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}}, "df": 7}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1}}, "df": 2}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.inference.execution.predict.logger": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}}, "df": 2}}}}}}}}}, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}}, "df": 13}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "w": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 2}}, "df": 1, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.metadata.validation.search.search.logger": {"tf": 1.4142135623730951}, "ml.registries.SEARCHERS": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1.4142135623730951}}, "df": 20, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.get_searcher.logger": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.registries.SEARCHERS": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}}, "df": 7}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.SPLIT": {"tf": 2}}, "df": 5}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.service.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.segmentation.segment.logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {"ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}}, "df": 2}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {"ml.promotion.state_loader.logger": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {"ml.io.formatting.str_to_bool.logger": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.DataSchema.name": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}}, "df": 16}}}, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}}, "df": 7}}}, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1.4142135623730951}}, "df": 1}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}}, "df": 4}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1.4142135623730951}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.logger": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting.splitting.logger": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}}, "df": 10}}, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 3}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}}, "df": 15}}}, "p": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.get_trainer.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.registries.TRAINERS": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.features.transforms.transform_target.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.features.transforms.transform_target.logger": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.7320508075688772}}, "df": 9}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.registries.EXPLAINERS": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}}, "df": 8}}}, "o": {"docs": {"ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 2}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.MergeTarget": {"tf": 1}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1}, "ml.promotion.constants.constants.Stage": {"tf": 1}, "ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.utils.git.MergeTarget": {"tf": 1}}, "df": 10}}}, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 2}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 2}}}, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType.classification": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1}}, "df": 4}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 14, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 2.6457513110645907}, "ml.targets.base.logger": {"tf": 1}}, "df": 2}}}}}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 6, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.splitting.splitting.SPLIT": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}}, "df": 3}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "j": {"docs": {}, "df": 0, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1}}, "df": 2}}}, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "n": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1.4142135623730951}}, "df": 6, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {"ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}}, "df": 5}}, "t": {"1": {"6": {"docs": {"ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}, "8": {"docs": {"ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1}}, "df": 13}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}}, "df": 4}}}}, "o": {"docs": {"ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1.7320508075688772}}, "df": 6, "s": {"docs": {"ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}}, "df": 1}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 2, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {"ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}}, "df": 3}, "r": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "q": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 3, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1.4142135623730951}}, "df": 3}, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 7, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.registries.FEATURE_OPERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.4142135623730951}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 4}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.logging_config.LOG_FORMAT": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}}, "df": 5}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}}}, "w": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "f": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1.4142135623730951}}, "df": 1}}, "j": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.4142135623730951}}, "df": 2}}}}, "f": {"1": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}}, "df": 2}, "docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.registries.FEATURE_OPERATORS": {"tf": 2}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 33, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 20, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 3.605551275463989}}, "df": 8}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.pipelines.models.VALID_STEPS": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.4142135623730951}, "ml.registries.OP_MAP": {"tf": 2.8284271247461903}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 2}}, "df": 5}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}}, "df": 20}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 14, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.SPLIT": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "m": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "j": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 5, "f": {"docs": {"ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 2}}, "df": 1}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.month_map": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "e": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1}, "ml.search.models.search_results.Phases.narrow": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1}, "ml.types.SplitInfo.class_distribution": {"tf": 1}, "ml.types.SplitInfo.positive_rate": {"tf": 1}}, "df": 152}}, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.registries.OP_MAP": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}}}}, "c": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "e": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.logging_config.LOG_FORMAT": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.7320508075688772}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.8284271247461903}}, "df": 1}}}}}}, "q": {"docs": {"ml.registries.OP_MAP": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}}, "df": 4}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}}, "df": 2}}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "l": {"docs": {"ml.io.formatting.str_to_bool.logger": {"tf": 1}}, "df": 1}}, "l": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.builders.logger": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.constants.SEARCH_PHASES": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}}, "df": 4}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "h": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}}, "df": 2}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.logger": {"tf": 1}, "ml.components.feature_selection.selector.logger": {"tf": 1}, "ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.best_params.logger": {"tf": 1}, "ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.config.hashing.logger": {"tf": 1}, "ml.config.loader.logger": {"tf": 1}, "ml.config.merge.logger": {"tf": 1}, "ml.config.schemas.model_specs.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.config.schemas.interim.logger": {"tf": 1}, "ml.data.config.schemas.processed.logger": {"tf": 1}, "ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.process_data.logger": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.logger": {"tf": 1}, "ml.features.loading.features_and_target.logger": {"tf": 1}, "ml.features.loading.get_target.logger": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.features.loading.schemas.logger": {"tf": 1}, "ml.features.segmentation.segment.logger": {"tf": 1}, "ml.features.splitting.splitting.logger": {"tf": 1}, "ml.features.transforms.transform_target.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.formatting.str_to_bool.logger": {"tf": 1}, "ml.io.persistence.save_metadata.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.builders.logger": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.promotion.comparisons.production.logger": {"tf": 1}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.constants.constants.logger": {"tf": 1}, "ml.promotion.getters.get.logger": {"tf": 1}, "ml.promotion.persistence.prepare.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.persister.logger": {"tf": 1}, "ml.promotion.service.logger": {"tf": 1}, "ml.promotion.state_loader.logger": {"tf": 1}, "ml.promotion.strategies.production.logger": {"tf": 1}, "ml.promotion.strategies.staging.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.search.params.refiners.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.persistence.persist_experiment.logger": {"tf": 1}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1}, "ml.search.searchers.catboost.model.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}, "ml.targets.base.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 184}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1}}, "df": 1}}}}}}}}}}}, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 3.7416573867739413}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.config.validation.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.metadata.validation.data.interim.logger": {"tf": 1}, "ml.metadata.validation.data.processed.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.metadata.validation.search.search.logger": {"tf": 1}, "ml.modeling.validation.artifacts.logger": {"tf": 1}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1}, "ml.modeling.validation.metrics.logger": {"tf": 1}, "ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.pipelines.validation.logger": {"tf": 1}, "ml.promotion.validation.artifacts.logger": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}, "ml.search.params.catboost.validation.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}}, "df": 37, "s": {"docs": {"ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}}, "df": 8}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator.logger": {"tf": 1}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ml.data.config.validate_config.logger": {"tf": 1}, "ml.data.validation.validate_data.logger": {"tf": 1}, "ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.data.validation.validate_min_rows.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.features.validation.validate_contract.logger": {"tf": 1}, "ml.features.validation.validate_feature_set.logger": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}, "ml.features.validation.validate_operators.logger": {"tf": 1}, "ml.features.validation.validate_set.logger": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1}, "ml.features.validation.validate_target.logger": {"tf": 1}, "ml.io.validation.validate_mapping.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1}}, "df": 22}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 4}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 4}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "r": {"2": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search.logger": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.4142135623730951}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 5}}, "w": {"docs": {"ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1}, "ml.metadata.validation.data.raw.logger": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.MODEL_KEYS": {"tf": 1}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskType.regression": {"tf": 1.4142135623730951}, "ml.registries.EVALUATORS": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1}, "ml.promotion.persistence.registry.logger": {"tf": 1}, "ml.promotion.validation.registry_entry.logger": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1}}, "df": 2, "r": {"docs": {"ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 2, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "f": {"docs": {"ml.features.loading.data_loader.required_fields": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.logger": {"tf": 1}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.7320508075688772}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.data.validation.validate_min_rows.logger": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 3, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "v": {"1": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}}, "t": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}, "c": {"docs": {"ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1.4142135623730951}}, "df": 2}, "u": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.4142135623730951}}, "df": 4, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.pipeline_core.runner.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.metadata.validation.runners.evaluation.logger": {"tf": 1}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1}, "ml.metadata.validation.runners.training.logger": {"tf": 1}, "ml.promotion.validation.runners.logger": {"tf": 1}, "ml.registries.EVALUATORS": {"tf": 1.4142135623730951}, "ml.registries.EXPLAINERS": {"tf": 1}, "ml.registries.TRAINERS": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}}, "df": 50}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.validation.runtime_info.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.logger": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "s": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1.4142135623730951}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.compute_data_config_hash.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 2}}, "df": 7, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.logger": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.4142135623730951}}, "df": 5}}}}, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "v": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}, "ml.data.utils.persistence.save_data.logger": {"tf": 1}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1}, "ml.feature_freezing.utils.operators.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1}, "ml.search.params.utils.logger": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1}, "ml.search.utils.get_searcher.logger": {"tf": 1}, "ml.search.utils.randomized_search.logger": {"tf": 1}, "ml.utils.git.logger": {"tf": 1}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1}, "ml.utils.hashing.service.logger": {"tf": 1}, "ml.utils.loaders.logger": {"tf": 1}, "ml.utils.pipeline_core.runner.logger": {"tf": 1}, "ml.utils.runtime.runtime_info.logger": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1}, "ml.utils.runtime.save_runtime.logger": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1}}, "df": 38}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.get_memory_usage.logger": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "i": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "k": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.logger": {"tf": 1}, "ml.features.loading.data_loader.required_fields": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "z": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "m": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "f": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "b": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 2.8284271247461903}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1}}, "df": 1}}}}}, "signature": {"root": {"1": {"0": {"4": {"8": {"5": {"7": {"6": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 2}, "docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}}, "df": 2, ":": {"1": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "m": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}, "2": {"0": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "3": {"9": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 2.8284271247461903}, "ml.config.loader.load_config": {"tf": 3.7416573867739413}, "ml.config.loader.load_and_validate_config": {"tf": 2.449489742783178}, "ml.config.validation.validate_model_config": {"tf": 2}, "ml.data.config.validate_config.validate_config": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 5.477225575051661}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 2}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 2}, "ml.features.splitting.splitting.get_splits": {"tf": 2}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 2.8284271247461903}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 3.1622776601683795}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 2}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 2}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 2.8284271247461903}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 2}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 2}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 2}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 2}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 2}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 2}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 2}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2.8284271247461903}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 2.8284271247461903}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 2.8284271247461903}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 2}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 2}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 3.1622776601683795}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 2}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 3.7416573867739413}, "ml.types.DataLineageEntry.__init__": {"tf": 5.0990195135927845}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}}, "df": 35}, "docs": {}, "df": 0}, "5": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 1}, "docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 4}, "ml.components.base.PipelineComponent.fit": {"tf": 4.69041575982343}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 4.69041575982343}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 3.7416573867739413}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 3.7416573867739413}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 3.7416573867739413}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 6.6332495807108}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 5.656854249492381}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 4.69041575982343}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 3.7416573867739413}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 4.47213595499958}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 6.6332495807108}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 3.7416573867739413}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 2.8284271247461903}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 3.7416573867739413}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 2.8284271247461903}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 4.69041575982343}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 3.7416573867739413}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 2.8284271247461903}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 3.7416573867739413}, "ml.config.best_params.unflatten_best_params": {"tf": 6.6332495807108}, "ml.config.best_params.apply_best_params": {"tf": 10.816653826391969}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 9.539392014169456}, "ml.config.hashing.compute_model_config_hash": {"tf": 5.477225575051661}, "ml.config.hashing.add_config_hash": {"tf": 9.539392014169456}, "ml.config.loader.load_config": {"tf": 13.152946437965905}, "ml.config.loader.load_and_validate_config": {"tf": 11.313708498984761}, "ml.config.merge.deep_merge": {"tf": 6.855654600401044}, "ml.config.merge.resolve_extends": {"tf": 8.888194417315589}, "ml.config.merge.apply_env_overlay": {"tf": 9.327379053088816}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 3.7416573867739413}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 3.7416573867739413}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 3.7416573867739413}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 4.242640687119285}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 3.1622776601683795}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 3.1622776601683795}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 3.1622776601683795}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 5.5677643628300215}, "ml.config.validation.validate_model_config": {"tf": 9.539392014169456}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 3.1622776601683795}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 3.7416573867739413}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 3.1622776601683795}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 3.1622776601683795}, "ml.data.config.validate_config.validate_config": {"tf": 9.219544457292887}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 7.483314773547883}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 9.219544457292887}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 7.483314773547883}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 12.449899597988733}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 6.164414002968976}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 7.14142842854285}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 16.522711641858304}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 14.2828568570857}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 8.717797887081348}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 3}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 8.717797887081348}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 3.1622776601683795}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 7.0710678118654755}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 10}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 10}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 7.0710678118654755}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 7.416198487095663}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 5.291502622129181}, "ml.data.utils.persistence.save_data.save_data": {"tf": 10.295630140987}, "ml.data.validation.validate_data.validate_data": {"tf": 5.744562646538029}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 6}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 5.830951894845301}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 4.898979485566356}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 10.862780491200215}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 6.4031242374328485}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 7.0710678118654755}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 3.7416573867739413}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 3.7416573867739413}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 3.7416573867739413}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 3.7416573867739413}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 8.602325267042627}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 7.810249675906654}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 9.746794344808963}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 6.164414002968976}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 8.306623862918075}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 12.84523257866513}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 17.435595774162696}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 8.366600265340756}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 2.8284271247461903}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 8.366600265340756}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 8.366600265340756}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 6.782329983125268}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 8.366600265340756}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 10.862780491200215}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 8.774964387392123}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 9.486832980505138}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 3.1622776601683795}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 2.6457513110645907}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 10.099504938362077}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 5.744562646538029}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 4}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 3.1622776601683795}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 10.04987562112089}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 4.47213595499958}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 5.291502622129181}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 5.291502622129181}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 4.47213595499958}, "ml.features.hashing.safe.safe": {"tf": 3.4641016151377544}, "ml.features.loading.data_loader.lineage_identity": {"tf": 5.656854249492381}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 7.0710678118654755}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 13.856406460551018}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 8.306623862918075}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 9.797958971132712}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 8.246211251235321}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 6.782329983125268}, "ml.features.loading.schemas.load_schemas": {"tf": 10.862780491200215}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 8.12403840463596}, "ml.features.splitting.splitting.random_split": {"tf": 12.727922061357855}, "ml.features.splitting.splitting.split_data": {"tf": 12.328828005937952}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 11.832159566199232}, "ml.features.splitting.splitting.get_splits": {"tf": 12.767145334803704}, "ml.features.transforms.transform_target.transform_target": {"tf": 9}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 9.486832980505138}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 3.4641016151377544}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 9.746794344808963}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 8.48528137423857}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 7.681145747868608}, "ml.features.validation.validate_operators.validate_operators": {"tf": 7.14142842854285}, "ml.features.validation.validate_set.validate_set": {"tf": 5.656854249492381}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 3.7416573867739413}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 5.830951894845301}, "ml.features.validation.validate_target.validate_target": {"tf": 10.099504938362077}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 3.1622776601683795}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 3.1622776601683795}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 7.14142842854285}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 5.830951894845301}, "ml.logging_config.setup_logging": {"tf": 5.830951894845301}, "ml.logging_config.add_file_handler": {"tf": 6.164414002968976}, "ml.logging_config.bootstrap_logging": {"tf": 4}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 6.082762530298219}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 6.082762530298219}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 6}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 7.14142842854285}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 6.082762530298219}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 10.04987562112089}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 7.14142842854285}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 7.14142842854285}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 7.14142842854285}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 6}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 12.68857754044952}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 6.164414002968976}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 10.770329614269007}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 10.908712114635714}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 3.1622776601683795}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 6.082762530298219}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 6.082762530298219}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 6.557438524302}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 5.656854249492381}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 5.744562646538029}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 5.656854249492381}, "ml.pipelines.builders.build_pipeline": {"tf": 11.445523142259598}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 6.48074069840786}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 7.745966692414834}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 4.47213595499958}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 5.477225575051661}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 4.47213595499958}, "ml.pipelines.operator_factory.build_operators": {"tf": 6.164414002968976}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 5.744562646538029}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 10.862780491200215}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 6.557438524302}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 3.7416573867739413}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 9.16515138991168}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 6.708203932499369}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 5.385164807134504}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 10.488088481701515}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 8.48528137423857}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 5.291502622129181}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 7.280109889280518}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 13.820274961085254}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 14.491376746189438}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 5.744562646538029}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 6.782329983125268}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 9.16515138991168}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 10.954451150103322}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 7.483314773547883}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 4.898979485566356}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 4.898979485566356}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 8.774964387392123}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 8.06225774829855}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 7.0710678118654755}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 7.0710678118654755}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 6.48074069840786}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 9.433981132056603}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 7.483314773547883}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 6.082762530298219}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 8}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 7.874007874011811}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 12.806248474865697}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 10.295630140987}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 8.94427190999916}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 11.958260743101398}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 8}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 9.219544457292887}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 9.591663046625438}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 6.4031242374328485}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 13.490737563232042}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 9.055385138137417}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 11.090536506409418}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 3.1622776601683795}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 9.539392014169456}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 11.532562594670797}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 6}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 8.602325267042627}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 10.392304845413264}, "ml.promotion.context.PromotionContext.__init__": {"tf": 9.591663046625438}, "ml.promotion.context.build_context": {"tf": 5.656854249492381}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 7.937253933193772}, "ml.promotion.getters.get.extract_thresholds": {"tf": 5.656854249492381}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 6.082762530298219}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 4.47213595499958}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 12.727922061357855}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 12.922847983320086}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 11.74734012447073}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 6.708203932499369}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 8.602325267042627}, "ml.promotion.result.PromotionResult.__init__": {"tf": 9.591663046625438}, "ml.promotion.service.PromotionService.__init__": {"tf": 2}, "ml.promotion.service.PromotionService.run": {"tf": 5.477225575051661}, "ml.promotion.state.PromotionState.__init__": {"tf": 11.357816691600547}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 6.782329983125268}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 8.18535277187245}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 5.656854249492381}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 5.656854249492381}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 5.744562646538029}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 6.48074069840786}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 6.082762530298219}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 5.744562646538029}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 5.656854249492381}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 6.855654600401044}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 7.211102550927978}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 11.532562594670797}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 9.486832980505138}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 10}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 10}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 8.06225774829855}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 10.862780491200215}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 12.12435565298214}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 12.409673645990857}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 7.745966692414834}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 12.922847983320086}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 11.832159566199232}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 10}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 14.866068747318506}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 11.74734012447073}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 8.366600265340756}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 7.0710678118654755}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 6}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 8.246211251235321}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 7.937253933193772}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 9.273618495495704}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 2.8284271247461903}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 6}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 7.54983443527075}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 6}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 7.54983443527075}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 9.273618495495704}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 6.4031242374328485}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 12.569805089976535}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 12.727922061357855}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 9.797958971132712}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 9.219544457292887}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 14.247806848775006}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 8.426149773176359}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 6}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 4.47213595499958}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 8.831760866327848}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 4.47213595499958}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 8.18535277187245}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 7.615773105863909}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 8.831760866327848}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 6}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 6.782329983125268}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 7.14142842854285}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 11.224972160321824}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 4.47213595499958}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 5.656854249492381}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 5.656854249492381}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 5.656854249492381}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 5.656854249492381}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 10.908712114635714}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 5.291502622129181}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 6.324555320336759}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 14.45683229480096}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 10.908712114635714}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 10.908712114635714}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 13.076696830622021}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 6}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 6.782329983125268}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 6.782329983125268}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 5.656854249492381}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 4.242640687119285}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 12.609520212918492}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 6.855654600401044}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 9.539392014169456}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 5.291502622129181}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 5.0990195135927845}, "ml.search.params.refiners.refine_int": {"tf": 4.69041575982343}, "ml.search.params.refiners.refine_float_mult": {"tf": 5.477225575051661}, "ml.search.params.refiners.refine_border_count": {"tf": 3.1622776601683795}, "ml.search.params.utils.get_default_int_params": {"tf": 4.69041575982343}, "ml.search.params.utils.get_default_float_params": {"tf": 5.5677643628300215}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 13.45362404707371}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 12}, "ml.search.searchers.base.Searcher.search": {"tf": 10.099504938362077}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 10.099504938362077}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 10.295630140987}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 22.847319317591726}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 8.366600265340756}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 8.366600265340756}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 6.782329983125268}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 8.366600265340756}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 7.416198487095663}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 9.797958971132712}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 7.681145747868608}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 6.708203932499369}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 6.708203932499369}, "ml.search.utils.get_searcher.get_searcher": {"tf": 5.656854249492381}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 3.1622776601683795}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 14.212670403551895}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 5.0990195135927845}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 7.937253933193772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 9.16515138991168}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 5.744562646538029}, "ml.targets.base.TargetStrategy.__init__": {"tf": 3.4641016151377544}, "ml.targets.base.TargetStrategy.build": {"tf": 6.6332495807108}, "ml.types.DataLineageEntry.__init__": {"tf": 15.427248620541512}, "ml.types.AllSplitsInfo.__init__": {"tf": 8.18535277187245}, "ml.types.SplitInfo.__init__": {"tf": 7.280109889280518}, "ml.types.TabularSplits.__init__": {"tf": 11.40175425099138}, "ml.utils.git.get_git_commit": {"tf": 5.916079783099616}, "ml.utils.git.is_descendant_commit": {"tf": 4.898979485566356}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 3.1622776601683795}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 4}, "ml.utils.hashing.hash_list.hash_list": {"tf": 5.477225575051661}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 5.291502622129181}, "ml.utils.hashing.service.hash_file": {"tf": 4.47213595499958}, "ml.utils.hashing.service.hash_data": {"tf": 4.47213595499958}, "ml.utils.hashing.service.hash_artifact": {"tf": 4.47213595499958}, "ml.utils.hashing.service.hash_thresholds": {"tf": 4}, "ml.utils.loaders.load_yaml": {"tf": 5.830951894845301}, "ml.utils.loaders.load_json": {"tf": 6.48074069840786}, "ml.utils.loaders.read_data": {"tf": 6.324555320336759}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 6.164414002968976}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 4.898979485566356}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 4.69041575982343}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 4.69041575982343}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 4.898979485566356}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 4}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 6.557438524302}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 7}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 3}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 2.6457513110645907}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 3}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 4}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 7.14142842854285}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 9.219544457292887}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 4.898979485566356}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 5.656854249492381}}, "df": 387, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.loader.load_config": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 3}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}}, "df": 6, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 13, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 9}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}}, "df": 2}}}}}}, "v": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}}, "df": 13}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1.4142135623730951}}, "df": 15}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}}, "df": 18, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}}, "df": 1, "t": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 19, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}}, "df": 9, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}}, "df": 4}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 30}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}}, "df": 4, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 9}}}}, "d": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 2.23606797749979}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.23606797749979}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 29, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 76}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1.4142135623730951}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 28, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 22}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.validation.search.search.validate_search_record": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 13}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 10}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 2.8284271247461903}, "ml.features.splitting.splitting.split_data": {"tf": 2.449489742783178}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target.transform_target": {"tf": 2}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 2}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 2}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 2}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 2.449489742783178}}, "df": 35}}}}, "t": {"docs": {"ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 4}}, "g": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}}, "df": 12, "s": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 2}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 85}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2.23606797749979}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 2}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2.8284271247461903}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 2}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 2}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 2.23606797749979}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.6457513110645907}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 2.449489742783178}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 2}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2.23606797749979}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 2.23606797749979}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 2.23606797749979}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 3.3166247903554}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 149, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 12}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}}, "df": 27}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 12}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 17}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 11, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}}, "df": 1, "e": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 6}, "s": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 16}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 25, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 9}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}}, "df": 7, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.4142135623730951}, "ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}}, "df": 9}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}}, "df": 2}}}, "p": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 2}}}}, "x": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}}, "df": 39, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}}, "df": 25, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}}, "df": 1}}}}, "n": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 4.123105625617661}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 2}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 2}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 2.23606797749979}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 2.23606797749979}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1.7320508075688772}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 5.744562646538029}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 2}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 107}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 13, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 18}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 5}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}, "g": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 3, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 2.449489742783178}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 10}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 10}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 2.6457513110645907}, "ml.features.splitting.splitting.split_data": {"tf": 2.449489742783178}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 2}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 2.449489742783178}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 91}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 6}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.loader.load_and_validate_config": {"tf": 1.7320508075688772}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 2.449489742783178}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 2}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 3.1622776601683795}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_file": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_yaml": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_json": {"tf": 1.4142135623730951}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 84, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 2.8284271247461903}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 81}}}, "s": {"docs": {"ml.promotion.context.PromotionContext.__init__": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 9, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}}, "df": 5}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 4}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2.23606797749979}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 2.23606797749979}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 2}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 2.449489742783178}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 3}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 2}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 2.8284271247461903}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 2.8284271247461903}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 2.23606797749979}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 43, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}}, "df": 4}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.context.PromotionContext.__init__": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}}, "df": 5}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}}, "df": 4}}}}}}}}}, "e": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {"ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 15, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}}, "df": 6, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 5}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 2.23606797749979}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 2}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 52, "s": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 5}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}}, "df": 9}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 2}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.4142135623730951}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 2.6457513110645907}, "ml.features.splitting.splitting.split_data": {"tf": 2.449489742783178}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 2}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2.449489742783178}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 2}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 2.449489742783178}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 97}}, "l": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 4}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.processed.processing.process_data.remove_columns": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 2}, "ml.config.hashing.add_config_hash": {"tf": 2}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 2}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 2}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 108, "s": {"docs": {"ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 2}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 25}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.service.PromotionService.run": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 30, "t": {"docs": {"ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 17, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 2.23606797749979}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1.7320508075688772}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 2}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_schemas": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 2}, "ml.features.validation.validate_target.validate_target": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 2}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 66}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 19}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.4142135623730951}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 10, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}}, "df": 8}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "x": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 26}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 79}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 29}}}, "e": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}}, "df": 27, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}}, "df": 8}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 61, "s": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 2}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 22}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 18}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"6": {"4": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 46, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 8}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 6}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 5}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}}, "df": 13, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {"ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2.23606797749979}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 2}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 35, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 79}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 2}}}}}}, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1.7320508075688772}, "ml.search.params.utils.get_default_float_params": {"tf": 2}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}}, "df": 5}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.result.PromotionResult.__init__": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 2}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 2.23606797749979}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 102, "s": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}}}, "r": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 2.449489742783178}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 39, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "f": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}}, "df": 16, "s": {"docs": {"ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 3}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 9}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 14}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.types.DataLineageEntry.__init__": {"tf": 2}}, "df": 2}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 3}}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.pipelines.operator_factory.build_operators": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 3}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 33}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 4}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 3}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 19}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 18}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}}, "df": 7}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 3}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 6}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.process_data.remove_columns": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.validation.search.search.validate_search_record": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1.4142135623730951}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 19, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}}, "df": 14}}}}}, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}}, "df": 8}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {"ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "o": {"docs": {"ml.utils.git.get_git_commit": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}}, "df": 15, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}}, "df": 1}}, "e": {"docs": {"ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 2}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}}, "df": 24, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}}, "df": 5}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 34, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 4}}}}}}}}}}, "s": {"docs": {"ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.types.SplitInfo.__init__": {"tf": 1}}, "df": 2}}, "c": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 28}}}, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}}, "df": 11}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 14, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 27, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 2}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 5, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 3}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.4142135623730951}}, "df": 29, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 13, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}}, "df": 2}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 38}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 2}}}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 12}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 13, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 19}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 27}}}}, "o": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 2}}, "df": 3, "p": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 6}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.4142135623730951}}, "df": 6}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 2}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 2.23606797749979}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.state.PromotionState.__init__": {"tf": 1.4142135623730951}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 14}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 2}}}, "b": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 11}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 28}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 13}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.__init__": {"tf": 1.7320508075688772}}, "df": 4}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 2.449489742783178}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}}, "df": 44}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}}, "df": 23, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 3}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}}, "df": 1, "l": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 2}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_schemas": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 80, "s": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 53}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}}, "df": 29}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 2}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 2}}, "df": 4, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.7320508075688772}, "ml.config.hashing.add_config_hash": {"tf": 2}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 2}, "ml.features.splitting.splitting.get_splits": {"tf": 2}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2.23606797749979}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 2}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 2}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.4142135623730951}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState.__init__": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 2}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 2}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 2}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.4142135623730951}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 190}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {"ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.types.DataLineageEntry.__init__": {"tf": 2}}, "df": 2}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 6}}}}}}}}, "x": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}}}}, ":": {"1": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "m": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}}, "df": 34}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 2}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.7320508075688772}}, "df": 46}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.4142135623730951}}, "df": 24}}}}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "w": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 4}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}, "v": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 17, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.hashing.safe.safe": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.types.AllSplitsInfo.__init__": {"tf": 1}, "ml.types.TabularSplits.__init__": {"tf": 1.4142135623730951}}, "df": 7, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 5}}}}}}}, "k": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 32, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 2}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1}, "ml.types.DataLineageEntry.__init__": {"tf": 1.4142135623730951}}, "df": 20, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 2}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 2}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1}}, "df": 3}}}}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1}}, "df": 1}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1.4142135623730951}}, "df": 1, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}}, "df": 8}}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 7}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 29, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 107}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}}, "df": 13}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1}}, "df": 6}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}}, "df": 4}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 7, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 47, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 107}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}}, "df": 4, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}}, "df": 10}}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 11, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}}, "df": 5}}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}}, "df": 7}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}}, "df": 2}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 2}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1.4142135623730951}}, "df": 7, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 107}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1.4142135623730951}}, "df": 6}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 6, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.SearchError": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.exceptions.InferenceError": {"tf": 1}, "ml.exceptions.MonitoringError": {"tf": 1}}, "df": 7}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 4}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 6}}}}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 7}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 2}, "1": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}}, "df": 11, "d": {"docs": {"ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}}, "df": 1}}, "2": {"5": {"6": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_file": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}}, "df": 8}, "docs": {}, "df": 0}, "docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}}, "df": 2}, "3": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}, "4": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}, "docs": {"ml": {"tf": 1.7320508075688772}, "ml.cli": {"tf": 1.7320508075688772}, "ml.cli.error_handling": {"tf": 2.449489742783178}, "ml.cli.error_handling.EXCEPTION_EXIT_CODE_MAP": {"tf": 1.7320508075688772}, "ml.cli.error_handling.resolve_exit_code": {"tf": 4.242640687119285}, "ml.cli.exit_codes": {"tf": 2.449489742783178}, "ml.cli.exit_codes.EXIT_SUCCESS": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_UNEXPECTED_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_CONFIG_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_DATA_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_PIPELINE_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_SEARCH_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_TRAINING_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_EVALUATION_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_EXPLAINABILITY_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_PERSISTENCE_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_INFERENCE_ERROR": {"tf": 1.7320508075688772}, "ml.cli.exit_codes.EXIT_MONITORING_ERROR": {"tf": 1.7320508075688772}, "ml.components": {"tf": 1.7320508075688772}, "ml.components.base": {"tf": 1.7320508075688772}, "ml.components.base.PipelineComponent": {"tf": 1.7320508075688772}, "ml.components.base.PipelineComponent.fit": {"tf": 3.3166247903554}, "ml.components.base.SklearnFeatureMixin": {"tf": 1.7320508075688772}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 3}, "ml.components.feature_engineering": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.adr_per_person": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 2.23606797749979}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 4.358898943540674}, "ml.components.feature_engineering.arrival_date": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_date.month_map": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 2.23606797749979}, "ml.components.feature_engineering.arrival_date.ArrivalDate.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 3.3166247903554}, "ml.components.feature_engineering.arrival_season": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 3.872983346207417}, "ml.components.feature_engineering.base": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.logger": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureOperator.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 3}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 3}, "ml.components.feature_engineering.base.FeatureEngineer.derived_schema": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureEngineer.operators": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 3.3166247903554}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 3}, "ml.components.feature_engineering.pit_operator": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 3}, "ml.components.feature_engineering.pit_operator.PITOperator.groupby_cols": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_col": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.agg_func": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.feature_name": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 3}, "ml.components.feature_engineering.total_stay": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 2.23606797749979}, "ml.components.feature_engineering.total_stay.TotalStay.output_features": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 3.3166247903554}, "ml.components.feature_selection": {"tf": 1.7320508075688772}, "ml.components.feature_selection.selector": {"tf": 1.7320508075688772}, "ml.components.feature_selection.selector.logger": {"tf": 1.7320508075688772}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 2.449489742783178}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 3}, "ml.components.feature_selection.selector.FeatureSelector.selected_features": {"tf": 1.7320508075688772}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 3}, "ml.components.imputation": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 2.449489742783178}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 3}, "ml.components.imputation.categorical.FillCategoricalMissing.categorical_features": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 3.3166247903554}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 3}, "ml.components.schema_validation": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.logger": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 2.6457513110645907}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 3}, "ml.components.schema_validation.validator.SchemaValidator.required_features": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 3}, "ml.config": {"tf": 1.7320508075688772}, "ml.config.best_params": {"tf": 1.7320508075688772}, "ml.config.best_params.logger": {"tf": 1.7320508075688772}, "ml.config.best_params.MergeTarget": {"tf": 1.7320508075688772}, "ml.config.best_params.MODEL_KEYS": {"tf": 1.7320508075688772}, "ml.config.best_params.ENSEMBLE_KEYS": {"tf": 1.7320508075688772}, "ml.config.best_params.unflatten_best_params": {"tf": 3.872983346207417}, "ml.config.best_params.apply_best_params": {"tf": 3}, "ml.config.compute_data_config_hash": {"tf": 1.7320508075688772}, "ml.config.compute_data_config_hash.logger": {"tf": 1.7320508075688772}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 3}, "ml.config.hashing": {"tf": 1.7320508075688772}, "ml.config.hashing.logger": {"tf": 1.7320508075688772}, "ml.config.hashing.compute_model_config_hash": {"tf": 3.4641016151377544}, "ml.config.hashing.add_config_hash": {"tf": 3.4641016151377544}, "ml.config.loader": {"tf": 1.7320508075688772}, "ml.config.loader.logger": {"tf": 1.7320508075688772}, "ml.config.loader.load_config": {"tf": 3}, "ml.config.loader.load_and_validate_config": {"tf": 3.1622776601683795}, "ml.config.merge": {"tf": 1.7320508075688772}, "ml.config.merge.logger": {"tf": 1.7320508075688772}, "ml.config.merge.deep_merge": {"tf": 3}, "ml.config.merge.resolve_extends": {"tf": 3.3166247903554}, "ml.config.merge.apply_env_overlay": {"tf": 3}, "ml.config.schemas": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.depth": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.learning_rate": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.l2_leaf_reg": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.random_strength": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.min_data_in_leaf": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseModelParams.border_count": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseEnsembleParams.bagging_temperature": {"tf": 1.7320508075688772}, "ml.config.schemas.base_model_params.BaseEnsembleParams.colsample_bylevel": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareTaskType.CPU": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareTaskType.GPU": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.memory_limit_gb": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.allow_growth": {"tf": 1.7320508075688772}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 3.605551275463989}, "ml.config.schemas.model_cfg": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchLineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainingLineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.search": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.seed": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.cv": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.verbose": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.search_lineage": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.training": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.training": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.seed": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.cv": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.verbose": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.training_lineage": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.search": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.logger": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentConfig.name": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentConfig.description": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType.classification": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType.regression": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType.ranking": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskType.time_series": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskConfig.type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskConfig.subtype": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 3}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassesConfig.count": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassesConfig.positive_class": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassesConfig.min_class_count": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConstraintsConfig.min_value": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConstraintsConfig.max_value": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig.type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig.lambda_value": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 3}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.name": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.version": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.allowed_dtypes": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.classes": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.constraints": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.transform": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 3.3166247903554}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationFilter.column": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationFilter.op": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationFilter.value": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.include_in_model": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.filters": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 3}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 3}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureSetConfig.name": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureSetConfig.version": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureSetConfig.data_format": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureSetConfig.file_name": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.strategy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.stratify_by": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.test_size": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.val_size": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SplitConfig.random_state": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.AlgorithmConfig.catboost": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureStoreConfig.path": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureStoreConfig.feature_sets": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.PipelineConfig.version": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.PipelineConfig.path": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig.policy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig.fixed_metric": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig.pr_auc_threshold": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 3}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 3}, "ml.config.schemas.model_specs.ClassImbalancePolicy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassWeightingConfig.policy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassWeightingConfig.imbalance_threshold": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ClassWeightingConfig.strategy": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 3}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SHAPMethodConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SHAPMethodConfig.approximate": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 3}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.feature_importances": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig.shap": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityConfig.top_k": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ExplainabilityConfig.methods": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.DATA_TYPE": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.sources": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.env": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.best_params_path": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.validation_status": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.validation_errors": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.MetaConfig.config_hash": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.problem": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.segment": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.version": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.task": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.target": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.segmentation": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.min_rows": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.split": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.algorithm": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.model_class": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.pipeline": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.scoring": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.class_weighting": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.feature_store": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.explainability": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.data_type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.model_specs_lineage": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.meta": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 2.449489742783178}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 3}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 3}, "ml.config.schemas.search_cfg": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.depth": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.learning_rate": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.l2_leaf_reg": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.colsample_bylevel": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.random_strength": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.min_data_in_leaf": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadModelParams.border_count": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadEnsembleParams.bagging_temperature": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadParamDistributions.model": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadParamDistributions.ensemble": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 3.605551275463989}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowIntParam.include": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowIntParam.offsets": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowIntParam.low": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowIntParam.high": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.include": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.factors": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.low": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.high": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowFloatParam.decimals": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.depth": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.learning_rate": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.l2_leaf_reg": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.colsample_bylevel": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.random_strength": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.min_data_in_leaf": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowModelParams.border_count": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowEnsembleParams.bagging_temperature": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowParamConfig.model": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowParamConfig.ensemble": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig.enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig.iterations": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig.n_iter": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.NarrowSearchConfig.param_configurations": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadSearchConfig.iterations": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadSearchConfig.n_iter": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.BroadSearchConfig.param_distributions": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.random_state": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.broad": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.narrow": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.hardware": {"tf": 1.7320508075688772}, "ml.config.schemas.search_cfg.SearchConfig.error_score": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.iterations": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.model": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.ensemble": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.hardware": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.early_stopping_rounds": {"tf": 1.7320508075688772}, "ml.config.schemas.train_cfg.TrainConfig.snapshot_interval_seconds": {"tf": 1.7320508075688772}, "ml.config.validation": {"tf": 1.7320508075688772}, "ml.config.validation.logger": {"tf": 1.7320508075688772}, "ml.config.validation.validate_model_config": {"tf": 3.605551275463989}, "ml.data": {"tf": 1.7320508075688772}, "ml.data.config": {"tf": 1.7320508075688772}, "ml.data.config.schemas": {"tf": 1.7320508075688772}, "ml.data.config.schemas.constants": {"tf": 1.7320508075688772}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1.7320508075688772}, "ml.data.config.schemas.constants.BorderValue.value": {"tf": 1.7320508075688772}, "ml.data.config.schemas.constants.BorderValue.op": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.logger": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.hotel": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.is_canceled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.lead_time": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.arrival_date_year": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.arrival_date_month": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.arrival_date_week_number": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.arrival_date_day_of_month": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.stays_in_weekend_nights": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.stays_in_week_nights": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.adults": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.children": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.babies": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.meal": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.country": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.market_segment": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.distribution_channel": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.is_repeated_guest": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.previous_cancellations": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.previous_bookings_not_canceled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.reserved_room_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.assigned_room_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.booking_changes": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.deposit_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.agent": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.company": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.days_in_waiting_list": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.customer_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.adr": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.required_car_parking_spaces": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.total_of_special_requests": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.reservation_status": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.reservation_status_date": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.name": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.email": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.phone_number": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.DataSchema.credit_card": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.hotel": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.is_canceled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.lead_time": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.arrival_date_year": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.arrival_date_month": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.arrival_date_week_number": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.arrival_date_day_of_month": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.stays_in_weekend_nights": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.stays_in_week_nights": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.adults": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.children": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.babies": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.meal": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.country": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.market_segment": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.distribution_channel": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.is_repeated_guest": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.previous_cancellations": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.previous_bookings_not_canceled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.reserved_room_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.assigned_room_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.booking_changes": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.deposit_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.agent": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.company": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.days_in_waiting_list": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.customer_type": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.adr": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.required_car_parking_spaces": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.total_of_special_requests": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.reservation_status": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.reservation_status_date": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.name": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.email": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.phone_number": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.credit_card": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 3}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 3}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.LineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.LineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.data": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.data_schema": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.raw_data_version": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.cleaning": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.invariants": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.lineage": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 3.605551275463989}, "ml.data.config.schemas.processed": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.logger": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.LineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.LineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.data": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.interim_data_version": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.lineage": {"tf": 1.7320508075688772}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 3.4641016151377544}, "ml.data.config.schemas.shared": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output.format": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.DataInfo.output": {"tf": 1.7320508075688772}, "ml.data.config.validate_config": {"tf": 1.7320508075688772}, "ml.data.config.validate_config.logger": {"tf": 1.7320508075688772}, "ml.data.config.validate_config.validate_config": {"tf": 4.242640687119285}, "ml.data.interim": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data": {"tf": 2.449489742783178}, "ml.data.interim.data_preparation.prepare_data.logger": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 3}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 4.69041575982343}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 3.872983346207417}, "ml.data.interim.persistence": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 3.3166247903554}, "ml.data.merge": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.logger": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.normalize_keys": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 4.358898943540674}, "ml.data.processed": {"tf": 1.7320508075688772}, "ml.data.processed.persistence": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 3.3166247903554}, "ml.data.processed.processing": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata.fingerprint": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 3}, "ml.data.processed.processing.hotel_bookings": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.logger": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 2.449489742783178}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 3.3166247903554}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id.COLS_FOR_ROW_ID_FINGERPRINT": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 3}, "ml.data.processed.processing.process_data": {"tf": 2.449489742783178}, "ml.data.processed.processing.process_data.logger": {"tf": 1.7320508075688772}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 3}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 3}, "ml.data.raw": {"tf": 1.7320508075688772}, "ml.data.raw.persistence": {"tf": 1.7320508075688772}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.raw.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 3}, "ml.data.utils": {"tf": 1.7320508075688772}, "ml.data.utils.extraction": {"tf": 1.7320508075688772}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.data.utils.extraction.get_data_suffix_and_format.logger": {"tf": 1.7320508075688772}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 3.605551275463989}, "ml.data.utils.memory": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.logger": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 4.123105625617661}, "ml.data.utils.memory.get_memory_usage": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage.logger": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 3}, "ml.data.utils.persistence": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.logger": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.SAVE_FORMAT": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.save_data": {"tf": 3}, "ml.data.validation": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data.logger": {"tf": 1.7320508075688772}, "ml.data.validation.validate_data.validate_data": {"tf": 3}, "ml.data.validation.validate_entity_key": {"tf": 1.7320508075688772}, "ml.data.validation.validate_entity_key.logger": {"tf": 1.7320508075688772}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 3.605551275463989}, "ml.data.validation.validate_min_rows": {"tf": 1.7320508075688772}, "ml.data.validation.validate_min_rows.logger": {"tf": 1.7320508075688772}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 3}, "ml.exceptions": {"tf": 2.449489742783178}, "ml.exceptions.MLBaseError": {"tf": 1.7320508075688772}, "ml.exceptions.UserError": {"tf": 1.7320508075688772}, "ml.exceptions.RuntimeMLError": {"tf": 1.7320508075688772}, "ml.exceptions.ConfigError": {"tf": 1.7320508075688772}, "ml.exceptions.DataError": {"tf": 1.7320508075688772}, "ml.exceptions.PipelineContractError": {"tf": 1.7320508075688772}, "ml.exceptions.SearchError": {"tf": 1.7320508075688772}, "ml.exceptions.TrainingError": {"tf": 1.7320508075688772}, "ml.exceptions.EvaluationError": {"tf": 1.7320508075688772}, "ml.exceptions.ExplainabilityError": {"tf": 1.7320508075688772}, "ml.exceptions.PersistenceError": {"tf": 1.7320508075688772}, "ml.exceptions.InferenceError": {"tf": 1.7320508075688772}, "ml.exceptions.MonitoringError": {"tf": 1.7320508075688772}, "ml.feature_freezing": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output.FreezeOutput.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output.FreezeOutput.snapshot_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.constants.output.FreezeOutput.metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 3}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 3}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.SCHEMAS": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeHow": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.MergeValidate": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.format": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.validate_merge_how": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.categorical": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.numerical": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig.datetime": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.mode": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.names": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.hash": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig.required_features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.forbid_nulls": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig.max_cardinality": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.format": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig.compression": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.type": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.description": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.entity_key": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.data": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.min_rows": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_store_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.columns": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.feature_roles": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.constraints": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.storage": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.lineage": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.features.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 3.605551275463989}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.timestamp": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_id": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.start_time": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.owner": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_binding_key": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_lineage": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.snapshot_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.schema_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.data_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.config_hash": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.hash_config": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.name": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 3}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 3}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.time_series.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2.449489742783178}, "ml.feature_freezing.models": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.numpy": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pandas": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.scikit_learn": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pyarrow": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.pydantic": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps.PyYAML": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.git_commit": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.runtime_info": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.deps": {"tf": 1.7320508075688772}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo.python_executable": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence.get_deps": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence.get_deps.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 3}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 2.449489742783178}, "ml.feature_freezing.utils": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.data_loader": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.data_loader.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 3}, "ml.feature_freezing.utils.get_strategy": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy.FREEZE_STRATEGIES": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 3.3166247903554}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy_type.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 3.3166247903554}, "ml.feature_freezing.utils.operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.operators.logger": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 3}, "ml.features": {"tf": 1.7320508075688772}, "ml.features.extraction": {"tf": 1.7320508075688772}, "ml.features.extraction.cat_features": {"tf": 1.7320508075688772}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 3}, "ml.features.hashing": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_arrow_metadata.logger": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 3}, "ml.features.hashing.hash_dataframe_content": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 3}, "ml.features.hashing.hash_feature_schema": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 3}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_parquet_metadata.logger": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 3}, "ml.features.hashing.safe": {"tf": 1.7320508075688772}, "ml.features.hashing.safe.safe": {"tf": 3}, "ml.features.loading": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.logger": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.required_fields": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.lineage_identity": {"tf": 3}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 3}, "ml.features.loading.features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.logger": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.COVERAGE_WARNING_THRESHOLD": {"tf": 1.7320508075688772}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 5.0990195135927845}, "ml.features.loading.get_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.TARGET_STRATEGIES": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.logger": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 4.123105625617661}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.logger": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2.449489742783178}, "ml.features.loading.schemas": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.logger": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 3}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 3}, "ml.features.loading.schemas.load_schemas": {"tf": 3}, "ml.features.segmentation": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.logger": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 3}, "ml.features.splitting": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.logger": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.SPLIT": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.random_split": {"tf": 3.605551275463989}, "ml.features.splitting.splitting.split_data": {"tf": 3.605551275463989}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 3}, "ml.features.splitting.splitting.get_splits": {"tf": 3}, "ml.features.transforms": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target.logger": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target.transform_target": {"tf": 3.3166247903554}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 3}, "ml.features.validation": {"tf": 1.7320508075688772}, "ml.features.validation.normalize_dtype": {"tf": 1.7320508075688772}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 3}, "ml.features.validation.validate_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_contract.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 3}, "ml.features.validation.validate_feature_set": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 3}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_target_entity_key.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 3.872983346207417}, "ml.features.validation.validate_operators": {"tf": 1.7320508075688772}, "ml.features.validation.validate_operators.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_operators.validate_operators": {"tf": 3}, "ml.features.validation.validate_set": {"tf": 1.7320508075688772}, "ml.features.validation.validate_set.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_set.validate_set": {"tf": 3}, "ml.features.validation.validate_snapshot_ids": {"tf": 1.7320508075688772}, "ml.features.validation.validate_snapshot_ids.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 3}, "ml.features.validation.validate_target": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.logger": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 3}, "ml.features.validation.validate_target.validate_target": {"tf": 3}, "ml.io": {"tf": 1.7320508075688772}, "ml.io.formatting": {"tf": 1.7320508075688772}, "ml.io.formatting.iso_no_colon": {"tf": 1.7320508075688772}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 3.3166247903554}, "ml.io.formatting.str_to_bool": {"tf": 1.7320508075688772}, "ml.io.formatting.str_to_bool.logger": {"tf": 1.7320508075688772}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 3}, "ml.io.persistence": {"tf": 1.7320508075688772}, "ml.io.persistence.save_metadata": {"tf": 1.7320508075688772}, "ml.io.persistence.save_metadata.logger": {"tf": 1.7320508075688772}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 6}, "ml.io.validation": {"tf": 1.7320508075688772}, "ml.io.validation.validate_mapping": {"tf": 1.7320508075688772}, "ml.io.validation.validate_mapping.logger": {"tf": 1.7320508075688772}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1.7320508075688772}, "ml.logging_config": {"tf": 1.7320508075688772}, "ml.logging_config.LOG_FORMAT": {"tf": 1.7320508075688772}, "ml.logging_config.setup_logging": {"tf": 3.605551275463989}, "ml.logging_config.add_file_handler": {"tf": 3.7416573867739413}, "ml.logging_config.bootstrap_logging": {"tf": 3.4641016151377544}, "ml.metadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.interim": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata.interim_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.RowIdInfo.cols_for_row_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.RowIdInfo.fingerprint": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.processed_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata.row_id_info": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawData.path_suffix": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawData.hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.data": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.memory_usage_mb": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata.raw_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataBasic.name": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataBasic.version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataBasic.format": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SourceData.snapshot_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SourceData.path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.CurrentData.hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory.old_memory_mb": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory.new_memory_mb": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory.change_mb": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataMemory.change_percentage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.Columns.count": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.Columns.names": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.Columns.dtypes": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.pandas_version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.numpy_version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.yaml_version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.DataRuntimeInfo.python_version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.rows": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.columns": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.created_at": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.created_by": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.MetadataBase.owner": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.source_data": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.data": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.memory": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.config_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.duration": {"tf": 1.7320508075688772}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata.runtime_info": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_by": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.created_at": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.owner": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_type": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.snapshot_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.schema_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.entity_key": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.data_lineage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.in_memory_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.file_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.operator_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.config_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.feature_schema_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.runtime": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.row_count": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.column_count": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata.duration_seconds": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 6.782329983125268}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.problem_type": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.segment": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_version": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.model_stage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.timestamp": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.columns": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.snapshot_bindings_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.feature_lineage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_type": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.artifact_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata.inference_latency_seconds": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 6.782329983125268}, "ml.metadata.schemas.promotion.promote.RunIdentity.experiment_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity.stage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity.staging_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.experiment_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionDecision.promoted": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionDecision.reason": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision.beats_previous": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context.git_commit": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context.promotion_conda_env_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context.training_conda_env_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.Context.timestamp": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.metrics": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.previous_production_metrics": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.promotion_thresholds_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.PromotionMetadata.context": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata.decision": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata.decision": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.stage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts.metrics_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.lineage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.config_fingerprint": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata.artifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.stage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_feature_importances_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_path": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts.top_k_shap_importances_hash": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.lineage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.config_fingerprint": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.artifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata.top_k": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingRunIdentity.stage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata.run_identity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata.lineage": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata.config_fingerprint": {"tf": 1.7320508075688772}, "ml.metadata.schemas.runners.training.TrainingMetadata.artifacts": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search.SearchRecord.metadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search.SearchRecord.config": {"tf": 1.7320508075688772}, "ml.metadata.schemas.search.search.SearchRecord.search_results": {"tf": 1.7320508075688772}, "ml.metadata.validation": {"tf": 1.7320508075688772}, "ml.metadata.validation.data": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.interim": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.interim.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 3.1622776601683795}, "ml.metadata.validation.data.processed": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.processed.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 3.1622776601683795}, "ml.metadata.validation.data.raw": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.raw.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 3.1622776601683795}, "ml.metadata.validation.features": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 3.4641016151377544}, "ml.metadata.validation.post_promotion": {"tf": 1.7320508075688772}, "ml.metadata.validation.post_promotion.infer": {"tf": 1.7320508075688772}, "ml.metadata.validation.post_promotion.infer.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 3.1622776601683795}, "ml.metadata.validation.promotion": {"tf": 1.7320508075688772}, "ml.metadata.validation.promotion.promote": {"tf": 1.7320508075688772}, "ml.metadata.validation.promotion.promote.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 3.4641016151377544}, "ml.metadata.validation.runners": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 3.4641016151377544}, "ml.metadata.validation.runners.explainability": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 2.449489742783178}, "ml.metadata.validation.runners.training": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.training.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 2.449489742783178}, "ml.metadata.validation.search": {"tf": 1.7320508075688772}, "ml.metadata.validation.search.search": {"tf": 1.7320508075688772}, "ml.metadata.validation.search.search.logger": {"tf": 1.7320508075688772}, "ml.metadata.validation.search.search.validate_search_record": {"tf": 1.7320508075688772}, "ml.modeling": {"tf": 1.7320508075688772}, "ml.modeling.catboost": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.logger": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 3.3166247903554}, "ml.modeling.class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.constants": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.constants.SUPPORTED_SCORING_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.constants.SUPPORTED_LIBRARIES": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats.__init__": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats.n_samples": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats.class_counts": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.models.DataStats.minority_ratio": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 3}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric.logger": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 3}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.stats_resolver.logger": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 3}, "ml.modeling.models": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts.model_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts.model_path": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts.pipeline_path": {"tf": 1.7320508075688772}, "ml.modeling.models.artifacts.Artifacts.pipeline_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 6.782329983125268}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.config_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint.pipeline_cfg_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 6.782329983125268}, "ml.modeling.models.experiment_lineage.ExperimentLineage.feature_lineage": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage.target_column": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage.problem": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage.segment": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage.model_version": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 6.782329983125268}, "ml.modeling.models.feature_lineage.FeatureLineage.name": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.version": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.snapshot_id": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.file_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.in_memory_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_schema_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.operator_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.feature_type": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.file_name": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage.data_format": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.Metrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.Metrics.task_type": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.Metrics.algorithm": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.TrainingMetrics.metrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetricsHelper.train": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetricsHelper.val": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetricsHelper.test": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics.EvaluationMetrics.metrics": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity.RunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity.RunIdentity.snapshot_id": {"tf": 1.7320508075688772}, "ml.modeling.models.run_identity.RunIdentity.status": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Environment": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Environment.conda_env_export": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Environment.conda_env_hash": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution.created_at": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution.duration_seconds": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution.git_commit": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Execution.python_executable": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.cuda_version": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_count": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_available": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_devices_used": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_driver_version": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_memories_gb": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.gpu_names": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.GpuInfo.task_type": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.os": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.os_release": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.architecture": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.processor": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.ram_total_gb": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.platform_string": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.hostname": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.python_version": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.python_impl": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Runtime.python_build": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo.environment": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo.execution": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo.gpu_info": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.RuntimeInfo.runtime": {"tf": 1.7320508075688772}, "ml.modeling.validation": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.logger": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 3.4641016151377544}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 3.4641016151377544}, "ml.modeling.validation.feature_lineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.feature_lineage.logger": {"tf": 1.7320508075688772}, "ml.modeling.validation.feature_lineage.validate_and_construct_feature_lineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.metrics": {"tf": 1.7320508075688772}, "ml.modeling.validation.metrics.logger": {"tf": 1.7320508075688772}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 3.4641016151377544}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 3.4641016151377544}, "ml.modeling.validation.runtime_info": {"tf": 1.7320508075688772}, "ml.modeling.validation.runtime_info.logger": {"tf": 1.7320508075688772}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 3}, "ml.pipelines": {"tf": 1.7320508075688772}, "ml.pipelines.builders": {"tf": 1.7320508075688772}, "ml.pipelines.builders.logger": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 3.3166247903554}, "ml.pipelines.composition": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.logger": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 3.605551275463989}, "ml.pipelines.constants": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.__init__": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.input_features": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.derived_features": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.categorical_features": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures.selected_features": {"tf": 1.7320508075688772}, "ml.pipelines.models": {"tf": 1.7320508075688772}, "ml.pipelines.models.VALID_STEPS": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 6.782329983125268}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.lineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1.7320508075688772}, "ml.pipelines.operator_factory": {"tf": 1.7320508075688772}, "ml.pipelines.operator_factory.build_operators": {"tf": 3.605551275463989}, "ml.pipelines.schema_utils": {"tf": 1.7320508075688772}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 3.605551275463989}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 3}, "ml.pipelines.validation": {"tf": 1.7320508075688772}, "ml.pipelines.validation.logger": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 3.4641016151377544}, "ml.pipelines.validation.validate_pipeline_config_consistency": {"tf": 1.7320508075688772}, "ml.policies": {"tf": 1.7320508075688772}, "ml.policies.data": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MIN_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.MAX_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints.ALLOWED_VALUES_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.data.row_id": {"tf": 1.7320508075688772}, "ml.policies.data.row_id.ROW_ID_REQUIRED": {"tf": 1.7320508075688772}, "ml.policies.data.row_id.ROW_ID_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.policies.model_params": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.__init__": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.min_value": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.max_value": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_zero": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.ParamConstraints.allow_negative": {"tf": 1.7320508075688772}, "ml.policies.model_params.catboost_constraints.CATBOOST_PARAM_CONSTRAINTS": {"tf": 1.7320508075688772}, "ml.policies.promotion": {"tf": 1.7320508075688772}, "ml.policies.promotion.threshold_support": {"tf": 1.7320508075688772}, "ml.policies.promotion.threshold_support.TASKS_SUPPORTING_THRESHOLDS": {"tf": 1.7320508075688772}, "ml.post_promotion": {"tf": 1.7320508075688772}, "ml.post_promotion.inference": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.__init__": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_hash": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn.artifact_type": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.__init__": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.file_path": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn.cols": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.predictions_schema.SCHEMA_VERSION": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.predictions_schema.BASE_EXPECTED_COLUMNS": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes.predictions_schema.PROBA_PREFIX": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.execute_inference": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.execute_inference.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 2.449489742783178}, "ml.post_promotion.inference.execution.predict": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.predict.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 3}, "ml.post_promotion.inference.hashing": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 3}, "ml.post_promotion.inference.loading": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.loading.artifact": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 3}, "ml.post_promotion.inference.persistence": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 3}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.store_predictions.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 3}, "ml.post_promotion.inference.validation": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.validation.validate_columns": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.validation.validate_columns.validate_columns": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.__init__": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.features": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget.target": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.__init__": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.drift_results": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.performance_results": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput.model_version": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.execution": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 3}, "ml.post_promotion.monitoring.extraction": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.extraction.expected_performance.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.analysis.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 2.449489742783178}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 2.449489742783178}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.comparison.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 3}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 3}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 3}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 3}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 2.449489742783178}, "ml.post_promotion.monitoring.loading": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 3}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 3}, "ml.post_promotion.monitoring.loading.promotion_metrics_info": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 3}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 3}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 3}, "ml.post_promotion.monitoring.performance": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.assessment.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 3}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.calculation.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 3}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.comparison.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 3}, "ml.post_promotion.monitoring.persistence": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 3}, "ml.post_promotion.shared": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.__init__": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.prod_meta": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo.stage_meta": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.__init__": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.features": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.entity_key": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.feature_lineage": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn.target": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.loading": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.loading.features": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.loading.features.prepare_features": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.loading.model_registry.logger": {"tf": 1.7320508075688772}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 2.449489742783178}, "ml.promotion": {"tf": 1.7320508075688772}, "ml.promotion.comparisons": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.production": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.production.logger": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 3}, "ml.promotion.comparisons.thresholds": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.thresholds.logger": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 3}, "ml.promotion.config": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.logger": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricSet.TEST": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricSet.VAL": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricSet.TRAIN": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.POSITIVE_RATE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.PREDICTION_POSITIVE_RATE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.ACCURACY": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.F1": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.PRECISION": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.RECALL": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.BALANCED_ACCURACY": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.SPECIFICITY": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.ROC_AUC": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.PR_AUC": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.LOG_LOSS": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.BRIER_SCORE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.ECE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.MAE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.MSE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.RMSE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.R2": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.MEDIAN_AE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.EXPLAINED_VARIANCE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_MEAN": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName.RESIDUAL_STD": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.Direction.MAXIMIZE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.Direction.MINIMIZE": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 3}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_by": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.LineageConfig.created_at": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.promotion_metrics": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.thresholds": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.lineage": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 3}, "ml.promotion.config.registry_entry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 6.782329983125268}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_hash": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts.model_path": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_hash": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts.pipeline_path": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_path": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_feature_importances_hash": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_path": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts.top_k_shap_importances_hash": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 6.782329983125268}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.name": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.version": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.snapshot_id": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.file_hash": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.in_memory_hash": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_schema_hash": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.operator_hash": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage.feature_type": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 6.782329983125268}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.train": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.val": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics.test": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 6.782329983125268}, "ml.promotion.config.registry_entry.RegistryEntry.experiment_id": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry.train_run_id": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry.eval_run_id": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry.explain_run_id": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry.model_version": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry.pipeline_cfg_hash": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry.artifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry.feature_lineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry.metrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry.git_commit": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 6.782329983125268}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promotion_id": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry.promoted_at": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 6.782329983125268}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staging_id": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry.staged_at": {"tf": 1.7320508075688772}, "ml.promotion.constants": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.logger": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.Stage": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata.training_metadata": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata.evaluation_metadata": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata.explainability_metadata": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.meets_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.message": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_sets": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.target_metrics": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ThresholdComparisonResult.directions": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult.beats_previous": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult.message": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult.previous_production_metrics": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.__init__": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.experiment_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.PreviousProductionRunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.EPSILON": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.COMPARISON_DIRECTIONS": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.experiment_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.train_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.eval_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.explain_run_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.stage": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.promotion_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.RunIdentity.staging_id": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Decision": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Decision.promoted": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Decision.reason": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Decision.beats_previous": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.git_commit": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.promotion_conda_env_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.training_conda_env_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.Context.timestamp": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.run_identity": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_run_identity": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.metrics": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.previous_production_metrics": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.promotion_thresholds_hash": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.decision": {"tf": 1.7320508075688772}, "ml.promotion.constants.promotion_metadata_dict.PromotionMetadataDict.context": {"tf": 1.7320508075688772}, "ml.promotion.context": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.__init__": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.model_registry_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.run_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.promotion_configs_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.train_run_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.eval_run_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.explain_run_dir": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.registry_path": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionPaths.archive_path": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.__init__": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.args": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.run_id": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.timestamp": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.paths": {"tf": 1.7320508075688772}, "ml.promotion.context.PromotionContext.runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.context.build_context": {"tf": 3}, "ml.promotion.getters": {"tf": 1.7320508075688772}, "ml.promotion.getters.get": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.logger": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 3}, "ml.promotion.getters.get.extract_thresholds": {"tf": 3}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 3}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 3}, "ml.promotion.persistence": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.logger": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 3}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 3.872983346207417}, "ml.promotion.persistence.registry": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.logger": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 3}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 3}, "ml.promotion.persister": {"tf": 1.7320508075688772}, "ml.promotion.persister.logger": {"tf": 1.7320508075688772}, "ml.promotion.persister.PromotionPersister": {"tf": 1.7320508075688772}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 3}, "ml.promotion.result": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.__init__": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.promotion_decision": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.beats_previous": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.previous_production_metrics": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.run_info": {"tf": 1.7320508075688772}, "ml.promotion.result.PromotionResult.production_comparison": {"tf": 1.7320508075688772}, "ml.promotion.service": {"tf": 1.7320508075688772}, "ml.promotion.service.logger": {"tf": 1.7320508075688772}, "ml.promotion.service.PromotionService": {"tf": 1.7320508075688772}, "ml.promotion.service.PromotionService.__init__": {"tf": 1.7320508075688772}, "ml.promotion.service.PromotionService.run": {"tf": 3}, "ml.promotion.state": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.__init__": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.model_registry": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.archive_registry": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.evaluation_metrics": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.current_prod_model_info": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.previous_production_run_identity": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.git_commit": {"tf": 1.7320508075688772}, "ml.promotion.state.PromotionState.threshold_comparison": {"tf": 1.7320508075688772}, "ml.promotion.state_loader": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.logger": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 3}, "ml.promotion.strategies": {"tf": 1.7320508075688772}, "ml.promotion.strategies.base": {"tf": 1.7320508075688772}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1.7320508075688772}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 3}, "ml.promotion.strategies.production": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.logger": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 4.242640687119285}, "ml.promotion.strategies.staging": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.logger": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 3}, "ml.promotion.validation": {"tf": 1.7320508075688772}, "ml.promotion.validation.artifacts": {"tf": 1.7320508075688772}, "ml.promotion.validation.artifacts.logger": {"tf": 1.7320508075688772}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 3}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 3}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 3}, "ml.promotion.validation.promotion_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.validation.promotion_thresholds.logger": {"tf": 1.7320508075688772}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 3}, "ml.promotion.validation.registry_entry": {"tf": 1.7320508075688772}, "ml.promotion.validation.registry_entry.logger": {"tf": 1.7320508075688772}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 3.1622776601683795}, "ml.promotion.validation.runners": {"tf": 1.7320508075688772}, "ml.promotion.validation.runners.logger": {"tf": 1.7320508075688772}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 3}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 3}, "ml.registries": {"tf": 1.7320508075688772}, "ml.registries.FEATURE_OPERATORS": {"tf": 1.7320508075688772}, "ml.registries.MODEL_CLASS_REGISTRY": {"tf": 1.7320508075688772}, "ml.registries.MODEL_PARAM_REGISTRY": {"tf": 1.7320508075688772}, "ml.registries.OP_MAP": {"tf": 1.7320508075688772}, "ml.registries.PIPELINE_COMPONENTS": {"tf": 1.7320508075688772}, "ml.registries.REGRESSION_LOSS_FUNCTIONS": {"tf": 1.7320508075688772}, "ml.registries.EVALUATORS": {"tf": 1.7320508075688772}, "ml.registries.EXPLAINERS": {"tf": 1.7320508075688772}, "ml.registries.SEARCHERS": {"tf": 1.7320508075688772}, "ml.registries.TRAINERS": {"tf": 1.7320508075688772}, "ml.runners": {"tf": 1.7320508075688772}, "ml.runners.evaluation": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits.train": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits.val": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.data_splits.DataSplits.test": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.__init__": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.prediction_dfs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.constants.output.EvaluateOutput.lineage": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 4.47213595499958}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 3}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 3}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 3}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 2.449489742783178}, "ml.runners.evaluation.evaluators.regression": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 3}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 3}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 3}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 3.872983346207417}, "ml.runners.evaluation.models": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.train": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.val": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts.test": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 3}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 3}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 3}, "ml.runners.evaluation.utils": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_entity_keys.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 3.605551275463989}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_evaluator.logger": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 3}, "ml.runners.explainability": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.__init__": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics.top_k_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput.__init__": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput.explainability_metrics": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput.feature_lineage": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.model": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 4.242640687119285}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 3.3166247903554}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 3.3166247903554}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 3}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 3}, "ml.runners.explainability.persistence": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 3}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.save_metrics_csv.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 3}, "ml.runners.explainability.utils": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer.logger": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 3}, "ml.runners.shared": {"tf": 1.7320508075688772}, "ml.runners.shared.formatting": {"tf": 1.7320508075688772}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1.7320508075688772}, "ml.runners.shared.formatting.ensure_1d_array.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 3}, "ml.runners.shared.lineage": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 3}, "ml.runners.shared.lineage.validations": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.base": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.base.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 3}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.configs_match.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 3}, "ml.runners.shared.loading": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 3}, "ml.runners.shared.loading.pipeline": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.pipeline.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 3.1622776601683795}, "ml.runners.shared.logical_config": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_model_and_pipeline.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 3}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 3}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_threshold.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 3.605551275463989}, "ml.runners.shared.persistence": {"tf": 1.7320508075688772}, "ml.runners.shared.persistence.save_metrics": {"tf": 1.7320508075688772}, "ml.runners.shared.persistence.save_metrics.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 3}, "ml.runners.shared.reproducibility": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 3}, "ml.runners.shared.reproducibility.validations": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.conda_envs_match.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 3}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.git_commits_match.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 3.872983346207417}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.runtime_comparison.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 3}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.logger": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 3}, "ml.runners.training": {"tf": 1.7320508075688772}, "ml.runners.training.constants": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.SUPPORTED_MODELS": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.__init__": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.model": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.lineage": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.metrics": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput.pipeline_cfg_hash": {"tf": 1.7320508075688772}, "ml.runners.training.persistence": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_model.logger": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 3}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline.logger": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 3}, "ml.runners.training.persistence.run_info": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.logger": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 3}, "ml.runners.training.trainers": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 2.449489742783178}, "ml.runners.training.trainers.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost": {"tf": 3.872983346207417}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 3.872983346207417}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.train_catboost_model.logger": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 3.872983346207417}, "ml.runners.training.utils": {"tf": 1.7320508075688772}, "ml.runners.training.utils.get_trainer": {"tf": 1.7320508075688772}, "ml.runners.training.utils.get_trainer.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 3}, "ml.runners.training.utils.logical_config_checks": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 3.7416573867739413}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 3}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 3}, "ml.runners.training.utils.metrics": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 3}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.compute_metrics.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 4.47213595499958}, "ml.runners.training.utils.model_specific": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.logger": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 3}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 3.1622776601683795}, "ml.search": {"tf": 1.7320508075688772}, "ml.search.constants": {"tf": 1.7320508075688772}, "ml.search.constants.SEARCH_PHASES": {"tf": 1.7320508075688772}, "ml.search.models": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.Sources": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.Sources.main": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.Sources.extends": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.problem": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.segment": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.version": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.experiment_id": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.sources": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.env": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.best_params_path": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.algorithm": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_version": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_by": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.created_at": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.owner": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.feature_lineage": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.seed": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.hardware": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.git_commit": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.config_hash": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.validation_status": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.pipeline_hash": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.scoring_method": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.splits_info": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.target_transform": {"tf": 1.7320508075688772}, "ml.search.models.experiment_metadata.ExperimentMetadata.class_weighting": {"tf": 1.7320508075688772}, "ml.search.models.search_results": {"tf": 1.7320508075688772}, "ml.search.models.search_results.Phases": {"tf": 1.7320508075688772}, "ml.search.models.search_results.Phases.broad": {"tf": 1.7320508075688772}, "ml.search.models.search_results.Phases.narrow": {"tf": 1.7320508075688772}, "ml.search.models.search_results.SearchResults": {"tf": 1.7320508075688772}, "ml.search.models.search_results.SearchResults.best_pipeline_params": {"tf": 1.7320508075688772}, "ml.search.models.search_results.SearchResults.best_model_params": {"tf": 1.7320508075688772}, "ml.search.models.search_results.SearchResults.phases": {"tf": 1.7320508075688772}, "ml.search.params": {"tf": 1.7320508075688772}, "ml.search.params.catboost": {"tf": 1.7320508075688772}, "ml.search.params.catboost.refinement": {"tf": 1.7320508075688772}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 6.324555320336759}, "ml.search.params.catboost.validation": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.logger": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 3.605551275463989}, "ml.search.params.refiners": {"tf": 1.7320508075688772}, "ml.search.params.refiners.logger": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_int": {"tf": 3}, "ml.search.params.refiners.refine_float_mult": {"tf": 3}, "ml.search.params.refiners.refine_border_count": {"tf": 3}, "ml.search.params.utils": {"tf": 1.7320508075688772}, "ml.search.params.utils.logger": {"tf": 1.7320508075688772}, "ml.search.params.utils.get_default_int_params": {"tf": 3.605551275463989}, "ml.search.params.utils.get_default_float_params": {"tf": 3.605551275463989}, "ml.search.persistence": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.logger": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.EXPERIMENTS_DIR": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 3}, "ml.search.persistence.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.logger": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 3.872983346207417}, "ml.search.searchers": {"tf": 1.7320508075688772}, "ml.search.searchers.base": {"tf": 1.7320508075688772}, "ml.search.searchers.base.Searcher": {"tf": 1.7320508075688772}, "ml.search.searchers.base.Searcher.search": {"tf": 3}, "ml.search.searchers.catboost": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 3}, "ml.search.searchers.catboost.model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.model.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 3}, "ml.search.searchers.catboost.pipeline": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.__init__": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.model_cfg": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.strict": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.failure_management_dir": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.snapshot_binding_key": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.X_train": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.y_train": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.splits_info": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.feature_lineage": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.input_schema": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.derived_schema": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_cfg": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.pipeline_hash": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.cat_features": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.scoring": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.class_weights": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params_1": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.broad_result": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_disabled": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.best_params": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.narrow_result": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.name": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.name": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 4.47213595499958}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.logger": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.name": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.stats": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 3}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 4.242640687119285}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 3}, "ml.search.searchers.output": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.__init__": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.search_results": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.feature_lineage": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.pipeline_hash": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.scoring_method": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput.splits_info": {"tf": 1.7320508075688772}, "ml.search.utils": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.delete_failure_management_folder.logger": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.delete_failure_management_folder.DIRS_OK_TO_DELETE": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad.logger": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_narrow": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_narrow.logger": {"tf": 1.7320508075688772}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1.7320508075688772}, "ml.search.utils.get_searcher": {"tf": 1.7320508075688772}, "ml.search.utils.get_searcher.logger": {"tf": 1.7320508075688772}, "ml.search.utils.get_searcher.get_searcher": {"tf": 3}, "ml.search.utils.model_params_extraction": {"tf": 1.7320508075688772}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 3.4641016151377544}, "ml.search.utils.randomized_search": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.logger": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 6.557438524302}, "ml.snapshot_bindings": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry.get": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction.get_snapshot_binding.logger": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 2.449489742783178}, "ml.snapshot_bindings.validation": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.logger": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 3}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 3}, "ml.targets": {"tf": 1.7320508075688772}, "ml.targets.adr": {"tf": 1.7320508075688772}, "ml.targets.adr.v1": {"tf": 1.7320508075688772}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1.7320508075688772}, "ml.targets.base": {"tf": 1.7320508075688772}, "ml.targets.base.logger": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.__init__": {"tf": 2.449489742783178}, "ml.targets.base.TargetStrategy.entity_key": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.REQUIRED_COLUMNS": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.build": {"tf": 3.3166247903554}, "ml.targets.cancellation": {"tf": 1.7320508075688772}, "ml.targets.cancellation.v1": {"tf": 1.7320508075688772}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1.7320508075688772}, "ml.targets.lead_time": {"tf": 1.7320508075688772}, "ml.targets.lead_time.v1": {"tf": 1.7320508075688772}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1.7320508075688772}, "ml.targets.no_show": {"tf": 1.7320508075688772}, "ml.targets.no_show.v1": {"tf": 1.7320508075688772}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1.7320508075688772}, "ml.targets.repeated_guest": {"tf": 1.7320508075688772}, "ml.targets.repeated_guest.v1": {"tf": 1.7320508075688772}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1.7320508075688772}, "ml.targets.room_upgrade": {"tf": 1.7320508075688772}, "ml.targets.room_upgrade.v1": {"tf": 1.7320508075688772}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1.7320508075688772}, "ml.targets.special_requests": {"tf": 1.7320508075688772}, "ml.targets.special_requests.v1": {"tf": 1.7320508075688772}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1.7320508075688772}, "ml.types": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.__init__": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.ref": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.name": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.version": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.format": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.path_suffix": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.merge_key": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.merge_how": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.merge_validate": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.snapshot_id": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.path": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.loader_validation_hash": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.data_hash": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.row_count": {"tf": 1.7320508075688772}, "ml.types.DataLineageEntry.column_count": {"tf": 1.7320508075688772}, "ml.types.LatestSnapshot": {"tf": 1.7320508075688772}, "ml.types.LatestSnapshot.LATEST": {"tf": 1.7320508075688772}, "ml.types.AllowedModels": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo.__init__": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo.train": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo.val": {"tf": 1.7320508075688772}, "ml.types.AllSplitsInfo.test": {"tf": 1.7320508075688772}, "ml.types.SplitInfo": {"tf": 1.7320508075688772}, "ml.types.SplitInfo.__init__": {"tf": 1.7320508075688772}, "ml.types.SplitInfo.n_rows": {"tf": 1.7320508075688772}, "ml.types.SplitInfo.class_distribution": {"tf": 1.7320508075688772}, "ml.types.SplitInfo.positive_rate": {"tf": 1.7320508075688772}, "ml.types.TabularSplits": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.__init__": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.X_train": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.X_val": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.X_test": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.y_train": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.y_val": {"tf": 1.7320508075688772}, "ml.types.TabularSplits.y_test": {"tf": 1.7320508075688772}, "ml.utils": {"tf": 1.7320508075688772}, "ml.utils.git": {"tf": 1.7320508075688772}, "ml.utils.git.logger": {"tf": 1.7320508075688772}, "ml.utils.git.MergeTarget": {"tf": 1.7320508075688772}, "ml.utils.git.get_git_commit": {"tf": 3.872983346207417}, "ml.utils.git.is_descendant_commit": {"tf": 4.358898943540674}, "ml.utils.hashing": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_dict": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 3}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 3}, "ml.utils.hashing.hash_list": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_list.hash_list": {"tf": 3}, "ml.utils.hashing.hash_streaming": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_streaming.logger": {"tf": 1.7320508075688772}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 3}, "ml.utils.hashing.service": {"tf": 3.4641016151377544}, "ml.utils.hashing.service.logger": {"tf": 1.7320508075688772}, "ml.utils.hashing.service.HASH_LOADER_REGISTRY": {"tf": 1.7320508075688772}, "ml.utils.hashing.service.hash_file": {"tf": 3}, "ml.utils.hashing.service.hash_data": {"tf": 3}, "ml.utils.hashing.service.hash_artifact": {"tf": 3}, "ml.utils.hashing.service.hash_thresholds": {"tf": 3}, "ml.utils.loaders": {"tf": 1.7320508075688772}, "ml.utils.loaders.FORMAT_REGISTRY_READ": {"tf": 1.7320508075688772}, "ml.utils.loaders.logger": {"tf": 1.7320508075688772}, "ml.utils.loaders.load_yaml": {"tf": 3}, "ml.utils.loaders.load_json": {"tf": 3.4641016151377544}, "ml.utils.loaders.read_data": {"tf": 3}, "ml.utils.pipeline_core": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.logger": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 3}, "ml.utils.pipeline_core.runner.PipelineRunner.steps": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 3.4641016151377544}, "ml.utils.pipeline_core.step": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.step.PipelineStep.name": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 3.3166247903554}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 3.3166247903554}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 3}, "ml.utils.runtime": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.task_type": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_count": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_available": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_names": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_memories_gb": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_devices_used": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.cuda_version": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.GPUInfoDict.gpu_driver_version": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 3.3166247903554}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 2.449489742783178}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 3}, "ml.utils.runtime.runtime_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_info.logger": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 3}, "ml.utils.runtime.runtime_snapshot": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.logger": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 3.1622776601683795}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 2.8284271247461903}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 3}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 3}, "ml.utils.runtime.save_runtime": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime.logger": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1.7320508075688772}, "ml.utils.snapshots": {"tf": 1.7320508075688772}, "ml.utils.snapshots.latest_snapshot": {"tf": 1.7320508075688772}, "ml.utils.snapshots.latest_snapshot.logger": {"tf": 1.7320508075688772}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 3}, "ml.utils.snapshots.snapshot_path": {"tf": 1.7320508075688772}, "ml.utils.snapshots.snapshot_path.logger": {"tf": 1.7320508075688772}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 3.3166247903554}}, "df": 2198, "c": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 17}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 15}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}}, "df": 15}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 2.8284271247461903}}, "df": 7, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}}, "df": 11}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.loader": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}}, "df": 7}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 8, "d": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 38, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}}, "df": 26, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12, "`": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.exceptions.EvaluationError": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}}, "df": 14, "d": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 14}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 2.449489742783178}, "ml.data": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.io": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 18, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1.4142135623730951}}, "df": 2}, "c": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.exceptions": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 4, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.error_handling": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}}, "df": 15}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.search.constants": {"tf": 1}}, "df": 10}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 17}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1.7320508075688772}, "ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.loader.load_and_validate_config": {"tf": 1.7320508075688772}, "ml.config.merge": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 2}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.7320508075688772}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 82, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.ConfigError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 2}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2.23606797749979}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 133, "s": {"docs": {"ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}}, "df": 10}}}}}}, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}}, "df": 36}, "s": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.4142135623730951}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.utils.loaders": {"tf": 1}}, "df": 12}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 5}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 85}}}, "s": {"docs": {"ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 15}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.promotion.constants.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.utils.hashing.service.hash_data": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.service.PromotionService.run": {"tf": 1.7320508075688772}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1.7320508075688772}}, "df": 56, "t": {"docs": {"ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}}, "df": 2}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.features.validation.validate_contract": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.hashing.safe": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}}, "df": 6}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 8}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1.7320508075688772}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}}, "df": 2}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.7320508075688772}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 43, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 2.23606797749979}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 30}}}}, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Invariants": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.service.PromotionService": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.base.PipelineComponent": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 2.23606797749979}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 42, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.base": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 17}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.7320508075688772}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.registries": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 2}, "ml.search.params.refiners.refine_float_mult": {"tf": 2}, "ml.search.params.refiners.refine_border_count": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 5, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}}, "df": 14, "s": {"docs": {"ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 4}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}}, "df": 3}}}}}}}}}}, "t": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 4}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 2}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.7320508075688772}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}}, "df": 34, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.runtime_snapshot": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}}, "df": 3}, "s": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {"ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}}, "df": 6, "d": {"docs": {"ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}}, "df": 9}, "s": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 16}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 8}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"ml.features.segmentation.segment": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.schema_validation.validator": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}}, "df": 29}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 20, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}}, "df": 12}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 2}}}, "f": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.7320508075688772}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 56}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "x": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 26}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 2}}, "v": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 1}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.training": {"tf": 1}}, "df": 9}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.registries": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 9}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.utils.failure_management": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 6, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1.4142135623730951}}, "df": 27}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 7}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.utils.metrics.best_f1": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}}, "df": 20}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}}, "df": 3}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}, "r": {"docs": {"ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}}, "df": 54}}}, "e": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 4, "l": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.hashing": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 4.123105625617661}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 4.123105625617661}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2.23606797749979}, "ml.modeling.models.artifacts": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 4.123105625617661}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 4.123105625617661}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 4.123105625617661}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 4.123105625617661}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 2}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 4.123105625617661}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 4.123105625617661}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 4.123105625617661}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 4.123105625617661}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 4.123105625617661}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 4.123105625617661}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.result": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 2.23606797749979}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 2.23606797749979}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 2.23606797749979}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2.6457513110645907}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2.6457513110645907}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy": {"tf": 1}}, "df": 198, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 2}}}}}}}}}, "s": {"docs": {"ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2}, "ml.promotion.context": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}}, "df": 44, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.validation": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.exceptions.MonitoringError": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2.23606797749979}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 2.23606797749979}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.post_promotion.shared.loading.features": {"tf": 1}}, "df": 39, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}}, "df": 1}}}, "l": {"docs": {"ml.components": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 14}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components.base": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 2}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 27, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.exceptions.UserError": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}}, "df": 2}}}}}}}}, "n": {"docs": {"ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 7}}}}, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 6}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"ml.search.searchers.catboost.catboost": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.persistence": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 2}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.7320508075688772}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 2.8284271247461903}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 2}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 2}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 2}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 2}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2.23606797749979}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 2.23606797749979}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 2.23606797749979}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 197, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1.7320508075688772}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2.23606797749979}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 29, "s": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 2}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 2}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 2}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}}, "df": 59, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 23}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 3.4641016151377544}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.7320508075688772}}, "df": 13, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}}, "df": 11}, "s": {"docs": {"ml.config.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.merge": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 2.23606797749979}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}}, "df": 12}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"5": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "b": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.training": {"tf": 1}}, "df": 9}}}}}, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.7320508075688772}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.logging_config.bootstrap_logging": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 24}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 14, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 2.23606797749979}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}}, "df": 52}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 2}}, "df": 23, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 2}}, "[": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.search.constants": {"tf": 1}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}}, "df": 3}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.constants": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 2}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 8}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 3}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 7}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1.7320508075688772}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_streaming": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 31, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.loaders": {"tf": 1}}, "df": 32, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.MetaConfig": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 25}}, "s": {"docs": {"ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 4}}}, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 20, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 28, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}}, "df": 10, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 2}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.logging_config.bootstrap_logging": {"tf": 1.7320508075688772}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 24, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 3}, "d": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 7, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}}, "df": 5, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 2}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.search": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.types": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 167}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 4}}}, "s": {"docs": {"ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 6, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 20, "s": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 30}}}}}, "s": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2.449489742783178}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}}, "df": 15}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.merge.resolve_extends": {"tf": 2}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}}, "df": 13}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 8}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}}, "df": 7}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 2}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1.7320508075688772}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_file": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_yaml": {"tf": 1.4142135623730951}, "ml.utils.loaders.load_json": {"tf": 1.4142135623730951}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.4142135623730951}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.7320508075688772}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 63, "s": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 20}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 2}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.23606797749979}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 48, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}}, "df": 8}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.4142135623730951}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.7320508075688772}, "ml.logging_config": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2.23606797749979}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 2.23606797749979}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 2.23606797749979}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 2}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 2.23606797749979}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.runners.training.trainers.catboost.catboost": {"tf": 2}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2.23606797749979}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 142, "s": {"docs": {"ml": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 15}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.pipelines.validation.validate_pipeline_config": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}}, "df": 1}}}}}}}}, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}}, "df": 2}}, "r": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1.7320508075688772}}, "df": 1, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 19, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2.449489742783178}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}}, "df": 24, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.validate_config.validate_config": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}}, "df": 5}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.types": {"tf": 1}}, "df": 5}}}}, "d": {"docs": {"ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}}, "df": 3, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2.23606797749979}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 2}}, "df": 28, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 18}, "s": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 2}, "ml.policies.promotion": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.7320508075688772}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 3}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 2.23606797749979}, "ml.promotion.result": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1.7320508075688772}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.7320508075688772}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 2}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 2.8284271247461903}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 2}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners": {"tf": 1}}, "df": 105, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}}, "df": 2}}}}}}}}}}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 2}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 2}}}}}, "b": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}}, "df": 2, "a": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.inference.execution.predict.predict": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 5}}}, "y": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 2}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 3, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.getters.get.extract_thresholds": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}}, "df": 5}}, "t": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}}, "df": 5}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}}, "df": 7, "+": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 11}}}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 7, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}}, "df": 11}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}}, "df": 3}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2.449489742783178}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.exceptions.InferenceError": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2.23606797749979}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 2.23606797749979}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 19, "s": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 24, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.policies.data.interim_constraints": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.loader.load_config": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2}}, "df": 12}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 11, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 25, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}}, "df": 33}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}}, "df": 40, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.persistence": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 6}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}}, "df": 9}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 30}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1}}, "df": 12}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.promotion": {"tf": 1}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 53}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 5}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}}, "df": 4}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 4}}}}}}}, "y": {"docs": {"ml.data.raw.persistence": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 4.358898943540674}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 4.358898943540674}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 4.358898943540674}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 4.358898943540674}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 4.358898943540674}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 4.358898943540674}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 4.358898943540674}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 4.358898943540674}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 4.358898943540674}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 4.358898943540674}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 4.358898943540674}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 4.358898943540674}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 44}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12, "s": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 4}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 11, "s": {"docs": {"ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 5}}}}}}, "f": {"1": {"docs": {"ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml": {"tf": 1}, "ml.cli": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1.4142135623730951}, "ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.config": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 2}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory": {"tf": 1.4142135623730951}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.7320508075688772}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.7320508075688772}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1.4142135623730951}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2.23606797749979}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2.23606797749979}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2.23606797749979}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2.23606797749979}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2.23606797749979}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2.23606797749979}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.7320508075688772}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 2}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 2.449489742783178}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 3.1622776601683795}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 2}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 2}, "ml.post_promotion.monitoring.performance.calculation": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2.23606797749979}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1.4142135623730951}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.types": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.4142135623730951}, "ml.utils.loaders": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 653, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.7320508075688772}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.4142135623730951}}, "df": 13, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.formatting": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.transforms.transform_target": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 3}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 9, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.exceptions.InferenceError": {"tf": 1}, "ml.exceptions.MonitoringError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 28, "s": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 10}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.failure_management": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 94}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 8, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"ml.registries": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}}, "df": 46}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1}}, "df": 25, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}}, "df": 4}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1.4142135623730951}, "ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1.4142135623730951}, "ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1.4142135623730951}, "ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1.4142135623730951}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 2}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2.449489742783178}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 2}, "ml.features.segmentation": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 2}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 2}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.7320508075688772}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.7320508075688772}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.types.TabularSplits": {"tf": 1}}, "df": 190, "s": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 2}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1.4142135623730951}}, "df": 57}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}}, "df": 1}}}}}}}}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}}, "df": 14}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 2}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 2}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.7320508075688772}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1.7320508075688772}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.7320508075688772}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 52, "s": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 7, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}}, "df": 5}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.7320508075688772}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}}, "df": 21, "s": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2.6457513110645907}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2.6457513110645907}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2.6457513110645907}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2.6457513110645907}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2.6457513110645907}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2.6457513110645907}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 21}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12, "`": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 11}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}}, "df": 6}}}}}}}}}, "d": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 29, "s": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.promotion.validation.artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 9}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 2}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 5, "y": {"docs": {"ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 3}}}}}}, "g": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.7320508075688772}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"6": {"4": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 13, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 3}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}}, "df": 6}}}, "w": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}}, "df": 9}, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}}, "df": 4, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "k": {"docs": {"ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 8}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"ml.policies.data.row_id": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 14, "h": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 2.23606797749979}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 3.1622776601683795}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.7320508075688772}, "ml.features.validation.validate_operators.validate_operators": {"tf": 2}, "ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 2}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.7320508075688772}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.449489742783178}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 2}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.7320508075688772}, "ml.utils.hashing.service": {"tf": 2.23606797749979}, "ml.utils.hashing.service.hash_file": {"tf": 1.7320508075688772}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}}, "df": 60, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 17}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.validation.validate_data": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}}, "df": 12, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {"ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}}, "df": 2}}, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 7}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}}, "df": 12, "s": {"docs": {"ml.config.hashing": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}}, "df": 68}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.search": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.7320508075688772}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 19, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}}, "df": 5}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "y": {"docs": {"ml.exceptions": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 6}}}}}, "a": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1.4142135623730951}, "ml.config": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.data.merge": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.hashing": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.validation": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io": {"tf": 1}, "ml.io.formatting": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2.6457513110645907}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2.6457513110645907}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2.6457513110645907}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2.6457513110645907}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2.6457513110645907}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1.4142135623730951}, "ml.pipelines": {"tf": 1}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.constants": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2.6457513110645907}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 2.23606797749979}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2.6457513110645907}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2.6457513110645907}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.search": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers": {"tf": 1}, "ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1.4142135623730951}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1.7320508075688772}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 298, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 24, "d": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.components": {"tf": 1}, "ml.components.base": {"tf": 1}, "ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 2.6457513110645907}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2.23606797749979}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.7320508075688772}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 2}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners": {"tf": 1}, "ml.registries": {"tf": 1.7320508075688772}, "ml.runners": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 2}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 2.449489742783178}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2.449489742783178}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 2}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1.4142135623730951}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 313}, "y": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 23}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}}, "df": 2}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1.4142135623730951}}, "df": 2, "d": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.utils.git": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.4142135623730951}}, "df": 20, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_border_count": {"tf": 1.4142135623730951}}, "df": 9, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}}, "df": 3}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 4}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}}, "df": 6}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 339}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.io.formatting.str_to_bool": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 19}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.7320508075688772}}, "df": 6}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.7320508075688772}}, "df": 2}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 47}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.PipelineConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 2}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 2}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.7320508075688772}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.23606797749979}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}}, "df": 33, "s": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.validation.artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.7320508075688772}, "ml.utils.loaders": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}}, "df": 49, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}}, "df": 5}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2.23606797749979}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1.7320508075688772}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}}, "df": 6}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}}, "df": 10, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}}, "df": 18, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.base": {"tf": 1}, "ml.targets.base": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.loaders.load_json": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 22}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.promotion.service": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}}, "df": 4}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 14}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.4142135623730951}}, "df": 1, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.7320508075688772}, "ml.features.loading.schemas": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 5, "d": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 30}}}}}}, "s": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.registries": {"tf": 1.7320508075688772}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 13, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 7}, "e": {"docs": {"ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.data_loader": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}}, "df": 4}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}}, "df": 2}}}}}}}}}}, "t": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}}, "df": 12, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2}}, "df": 12}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.types": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 27}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.exceptions": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 2}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 4}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.7320508075688772}}, "df": 5}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 13}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.models.LineageConfig.created_by": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1.4142135623730951}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 2.449489742783178}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1.7320508075688772}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.7320508075688772}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 2}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 4.795831523312719}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 4.795831523312719}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 2}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 2}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 2}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 2}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 4.795831523312719}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 4.795831523312719}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 4.795831523312719}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Environment": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1.4142135623730951}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics": {"tf": 2}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 2}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 2}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 4.795831523312719}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2.23606797749979}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 2.23606797749979}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 2.449489742783178}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 2.449489742783178}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 2.23606797749979}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 3}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 4.795831523312719}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 4.795831523312719}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 4.795831523312719}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 4.795831523312719}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 4.795831523312719}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 4.795831523312719}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1.7320508075688772}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 2}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 2}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 3}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 2.449489742783178}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1.4142135623730951}, "ml.search.models.search_results.Phases": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2.449489742783178}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 2}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.types": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.7320508075688772}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}}, "df": 274, "i": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.policies.data.row_id": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 20}}, "y": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 3}, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 4}, "m": {"docs": {"ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 13}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}}, "df": 32}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 16}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1.7320508075688772}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 2}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}}, "df": 23, "s": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.7320508075688772}}, "df": 18}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1.4142135623730951}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.logging_config.setup_logging": {"tf": 1.4142135623730951}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}}, "df": 189, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1.4142135623730951}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}}, "df": 4}}}, "p": {"docs": {"ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 2}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 14, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 2}}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 10, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.feature_selection": {"tf": 1}, "ml.components.imputation": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}}, "df": 4}}, "d": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 10}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.features.transforms": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2.449489742783178}}, "df": 25, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.exceptions.TrainingError": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingMetadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.TrainingMetrics": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 2}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.training_metrics": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 2}, "ml.runners.evaluation.models.predictions.PredictionsPaths.train_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2.23606797749979}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 2}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 2}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 2.23606797749979}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 96, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}}, "df": 3}}}}}}}, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}}, "df": 1}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 5}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.base_model_params": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}}, "df": 7}}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 4}}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.runners": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.training.constants.output.TrainOutput": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}}, "df": 12}, "r": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.7320508075688772}}, "df": 2, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.runners.training.trainers": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}}, "df": 3}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.modeling.models.artifacts": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 7}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 4, "y": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {"ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}}, "df": 18}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 2.449489742783178}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 2}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 2}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1.4142135623730951}, "ml.features.validation.validate_target.validate_target": {"tf": 2}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 2.23606797749979}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.7320508075688772}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1.7320508075688772}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 79, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.config.schemas.model_specs.ClassesConfig": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}}, "df": 7}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 34, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}}, "df": 19, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 6}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 21, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 22}}}}}}}, "e": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.7320508075688772}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 2}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 2}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}, "ml.types": {"tf": 1}}, "df": 33, "d": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 14}, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics": {"tf": 1}, "ml.search.constants": {"tf": 1}}, "df": 10}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 7}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 2}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.test_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}}, "df": 8, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 11, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}}, "df": 6}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}}, "df": 4}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {"ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.7320508075688772}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.classes": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 101, "t": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 11, "s": {"docs": {"ml.feature_freezing.freeze_strategies.base": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2.449489742783178}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}}, "df": 27, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.validate_config.validate_config": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}}, "df": 2}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.schema_validation.validator": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}}, "df": 18}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_int": {"tf": 2}, "ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 6, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.params.refiners": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 11}, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}}, "df": 1}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 39, "s": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}}, "df": 14}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 7, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 8}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.git.get_git_commit": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.7320508075688772}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 52, "s": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 10, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 1}}}}}}}}, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.io": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}}, "df": 16}}}, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 4}, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}}, "df": 5}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2.23606797749979}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2.23606797749979}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2.23606797749979}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2.23606797749979}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2.23606797749979}, "ml.pipelines.models.LineageConfig": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2.23606797749979}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2.23606797749979}}, "df": 12, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 8}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {"ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 2}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}}, "df": 3}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_list": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.exceptions.ConfigError": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 7}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 5}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 2}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 28, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.io.persistence": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}}, "df": 38}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.exceptions.InferenceError": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1.4142135623730951}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.classes": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.loading.artifact": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.loading.inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.loading.features": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 32, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}}, "df": 4}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 2.23606797749979}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}}, "df": 11, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 4}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 17, "s": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}}, "df": 15}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}}, "df": 2}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 60, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.policies.data.row_id": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.23606797749979}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1.4142135623730951}}, "df": 38, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 2.23606797749979}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 27, "s": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}}, "df": 18}}}}, "y": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 12}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.7320508075688772}}, "df": 62}, "t": {"docs": {"ml.modeling.validation.metrics": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}}, "df": 2}}, "/": {"docs": {}, "df": 0, "o": {"docs": {"ml.io.formatting": {"tf": 1}, "ml.io.validation": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}}, "df": 6, "x": {"docs": {}, "df": 0, "c": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1.7320508075688772}, "ml.exceptions": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.error_handling": {"tf": 1.4142135623730951}, "ml.cli.error_handling.resolve_exit_code": {"tf": 2.449489742783178}, "ml.cli.exit_codes": {"tf": 1.4142135623730951}, "ml.exceptions": {"tf": 1}}, "df": 4}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 4, "s": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1.7320508075688772}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}}, "df": 4}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.metadata.schemas.promotion.promote.Context": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.execution.predict": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 32}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.4142135623730951}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 16, "d": {"docs": {"ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 3}, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.7320508075688772}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 34}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1.4142135623730951}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 2.23606797749979}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 20, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}}, "df": 4, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 2}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.7320508075688772}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.constants.output.ExplainabilityOutput": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 2.449489742783178}, "ml.runners.explainability.persistence.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}}, "df": 42, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}}, "df": 9}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {"ml.config.loader.load_config": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}}, "df": 6}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}}, "df": 13, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.post_promotion.monitoring.extraction.expected_performance.get_expected_performance": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 13, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.extraction": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.features.extraction": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}}, "df": 8}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.extraction.expected_performance": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}}, "df": 5}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}}, "df": 1}}}}, "`": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 2}}, "df": 4, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.validation": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 6, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.logging_config": {"tf": 1}}, "df": 4}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 8}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 2}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 2.449489742783178}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 2.23606797749979}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.build": {"tf": 1.7320508075688772}}, "df": 14}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.runners.explainability.explainers.base.Explainer": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 6}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 18, "s": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.validation.validate_feature_target_entity_key": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {"ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}, "ml.modeling.models.runtime_info.Environment": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 15, "/": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.promotion.config.promotion_thresholds": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.exceptions": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {"ml.promotion.service": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}}, "df": 2}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 2}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}}, "df": 7, "s": {"docs": {"ml.exceptions.MLBaseError": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 4}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 9, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 14}}, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 23}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.4142135623730951}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetrics": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 2}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 2}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.constants.output.EvaluateOutput": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 2}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 2}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}}, "df": 48, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}}, "df": 7, "d": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}}, "df": 6}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators": {"tf": 1}}, "df": 2}}}}}}, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 20}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.components.feature_engineering": {"tf": 1}, "ml.config.best_params": {"tf": 1}, "ml.config.compute_data_config_hash": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.utils": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.post_promotion.inference.hashing": {"tf": 1}, "ml.post_promotion.inference.loading": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 56}}}, "y": {"docs": {"ml.feature_freezing.utils.operators": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.utils.git": {"tf": 1}}, "df": 6}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}}, "df": 9, "r": {"docs": {"ml.exceptions": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.7320508075688772}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.types": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 69}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 19}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1.7320508075688772}, "ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 21}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}, "i": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 8}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}}, "df": 4}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 2}}}}}}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}}, "df": 5, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1.4142135623730951}}, "df": 12}, "s": {"docs": {"ml.promotion.persister": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 3}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.4142135623730951}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.features.transforms.transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 3.605551275463989}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 3.605551275463989}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 3.605551275463989}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 3.605551275463989}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 3.605551275463989}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 3.605551275463989}, "ml.pipelines.models.LineageConfig.created_by": {"tf": 1}, "ml.pipelines.models.LineageConfig.created_at": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.inference.execution": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 2.449489742783178}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 2}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.loading": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.comparisons": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.metrics": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 3.605551275463989}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 3.605551275463989}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 3.605551275463989}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 3.605551275463989}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 3.605551275463989}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 3.605551275463989}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1.4142135623730951}, "ml.registries": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 156, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1.7320508075688772}, "ml.search.params.utils.get_default_int_params": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "r": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.ConfigError": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 2}, "ml.exceptions.EvaluationError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.exceptions.InferenceError": {"tf": 1}, "ml.exceptions.MonitoringError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 111, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}}, "df": 10, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1.4142135623730951}}, "df": 6}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}}, "df": 15}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.service": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 2, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1.4142135623730951}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.types.LatestSnapshot": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}}, "df": 36, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.utils.loaders.load_json": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}}, "df": 3}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}}, "df": 2}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 2}, "ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.utils.operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 2}, "ml.features.validation.validate_operators.validate_operators": {"tf": 2}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1.7320508075688772}}, "df": 23, "s": {"docs": {"ml.components.feature_engineering": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 13}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 49, "e": {"docs": {"ml.components.feature_engineering.base.FeatureOperator": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}}, "df": 5}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 25}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 2}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 36, "s": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 14}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.constants.constants.ThresholdComparisonResult": {"tf": 1}, "ml.promotion.constants.constants.ProductionComparisonResult": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.result": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1.4142135623730951}}, "df": 47, "s": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.config.hashing": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}}, "df": 17}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.merge": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}}, "df": 3}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 2}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 3}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 8}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {"ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.post_promotion": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 3}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 7}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 7}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_how": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 2.449489742783178}, "ml.search.params.utils.get_default_float_params": {"tf": 2.8284271247461903}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1.4142135623730951}}, "df": 13, "s": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 8, "d": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 19}, "s": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.search.searchers.base": {"tf": 1}}, "df": 8, "s": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.types": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 17}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.7320508075688772}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 19}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.data.config.schemas.interim.LineageConfig": {"tf": 1}, "ml.data.config.schemas.processed.LineageConfig": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.config.promotion_thresholds.LineageConfig": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}}, "df": 7}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.description": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1.4142135623730951}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 4}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1.4142135623730951}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 11}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.exceptions.MonitoringError": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}}, "df": 6}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}}, "df": 3}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1.4142135623730951}}, "df": 5}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.7320508075688772}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 13, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.comparisons.thresholds": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}}, "df": 5}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.pipelines.operator_factory.build_operators": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.utils.memory.compute_memory_change": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}}, "df": 1}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationArtifacts": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 25}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 3}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}, "e": {"docs": {"ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.data.merge": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 2.23606797749979}, "ml.data.processed.persistence": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 3}, "ml.data.processed.processing": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.data.utils": {"tf": 1}, "ml.data.utils.extraction": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 2.23606797749979}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.7320508075688772}, "ml.exceptions.DataError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 2}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1.4142135623730951}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.InferenceFeaturesAndTarget": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns.MonitoringExecutionOutput": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}, "ml.search.models.search_results": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.loaders": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 129, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1.7320508075688772}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1.7320508075688772}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 2}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 2}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 2}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.7320508075688772}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.7320508075688772}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1.7320508075688772}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.7320508075688772}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 2}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.4142135623730951}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1.7320508075688772}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 83, "s": {"docs": {"ml.data.utils.memory.get_memory_usage": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}}, "df": 6}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo": {"tf": 1}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 3.3166247903554}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}}, "df": 54, "s": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.data_loader": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}}, "df": 14, "[": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TargetConfig": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 6}}}}}, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.runners.training.trainers.base.Trainer.train": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.snapshot_bindings.config": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1.4142135623730951}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 5}}}}}}, "y": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 2}}, "t": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}}, "df": 1, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.7320508075688772}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 24, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1.7320508075688772}, "ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1.7320508075688772}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.hashing.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 67}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.merge.deep_merge": {"tf": 1.4142135623730951}, "ml.config.validation": {"tf": 1}}, "df": 2}}}}}}}}, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 13}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 8}}}}, "r": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 33, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1.7320508075688772}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 48}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 9}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.promotion_thresholds.Direction": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1.7320508075688772}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}}, "df": 2}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.4142135623730951}}, "df": 7, "s": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2.23606797749979}}, "df": 6}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.data.processed.processing.process_data": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}}, "df": 2}}}}}, "k": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 8}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.data.shared": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {"ml.promotion.persister.PromotionPersister.persist": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 2}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}}, "df": 6, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}}, "df": 2}, "r": {"docs": {"ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {"ml.exceptions.MonitoringError": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.post_promotion.monitoring.feature_drifting": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils": {"tf": 1}}, "df": 5}}}}}}}, "f": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 2}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.persistence": {"tf": 1}, "ml.features": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.modeling": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.persistence": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.persistence": {"tf": 1}, "ml.runners.explainability.constants": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost": {"tf": 1}, "ml.runners.explainability.persistence": {"tf": 1}, "ml.runners.explainability.utils": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.constants": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 49, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecsLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}}, "df": 5, "s": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}}, "df": 2}, "d": {"docs": {"ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 3}}}, "s": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1.4142135623730951}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 2}, "ml.features.splitting.splitting.split_data": {"tf": 2.6457513110645907}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 2}, "ml.features.splitting.splitting.get_splits": {"tf": 2.23606797749979}, "ml.features.transforms.transform_target.transform_target": {"tf": 2}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.runners.evaluation.constants.data_splits": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 2.8284271247461903}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 2.8284271247461903}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.types.TabularSplits": {"tf": 1}}, "df": 31, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.splitting": {"tf": 1}, "ml.features.splitting.splitting": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1.4142135623730951}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}}, "df": 12}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 9}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}}, "df": 1, "e": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.state": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}}, "df": 26, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}}, "df": 9}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 2}}, "s": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 2}}, "y": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}}, "df": 4}, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 2}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.exceptions.ExplainabilityError": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2.23606797749979}}, "df": 35, "s": {"docs": {"ml.data.utils.memory.compute_memory_change": {"tf": 1}, "ml.data.utils.persistence.save_data": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}}, "df": 20, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 10, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.bootstrap_logging": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.base.Searcher.search": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 5}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.exceptions.DataError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}}, "df": 13, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config": {"tf": 1}, "ml.config.schemas": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.config": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.data.interim.data_preparation": {"tf": 1}, "ml.data.interim.persistence": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.runners.training.persistence.artifacts": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}}, "df": 14}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 23, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}, "ml.features.validation.normalize_dtype": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1.4142135623730951}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 29, "s": {"docs": {"ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 10, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 6}}}}, "p": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1.4142135623730951}}, "df": 6, "d": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}}, "df": 9}, "s": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1.7320508075688772}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.result": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.promotion.strategies.production": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}}, "df": 36}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.registries": {"tf": 1.4142135623730951}, "ml.targets.base": {"tf": 1}}, "df": 10}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "y": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}, "ml.utils.pipeline_core.step": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}}, "df": 34, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.pipelines.models.PipelineConfig.steps": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1.7320508075688772}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 16}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {"ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}, "o": {"docs": {"ml.cli.error_handling": {"tf": 1}, "ml.cli.exit_codes": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2.449489742783178}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 20, "s": {"docs": {"ml.search.models.experiment_metadata.Sources": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 17}}}, "w": {"docs": {"ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 3}}, "a": {"docs": {"ml.config.hashing.compute_model_config_hash": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_file": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_data": {"tf": 1.4142135623730951}, "ml.utils.hashing.service.hash_artifact": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1.4142135623730951}}, "df": 8, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1}}, "df": 1, "d": {"docs": {"ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext": {"tf": 1}, "ml.logging_config": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.post_promotion.shared": {"tf": 1}, "ml.post_promotion.shared.classes": {"tf": 1}, "ml.post_promotion.shared.loading": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 21}}}, "p": {"docs": {"ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 2}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}}, "df": 9}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.logging_config": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}}, "df": 3}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1.7320508075688772}, "ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 2}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 2}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.metadata.schemas.data.interim.InterimDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.metadata.schemas.data.processed.ProcessedDatasetMetadata": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}, "ml.metadata.schemas.data.shared.SourceData": {"tf": 1}, "ml.metadata.schemas.data.shared.CurrentData": {"tf": 1}, "ml.metadata.schemas.data.shared.DataMemory": {"tf": 1}, "ml.metadata.schemas.data.shared.Columns": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.builders.build_pipeline": {"tf": 1.7320508075688772}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1.4142135623730951}, "ml.pipelines.schema_utils": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.7320508075688772}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 2}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.classes.predictions_schema": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1.4142135623730951}}, "df": 81, "s": {"docs": {"ml.config.schemas": {"tf": 1}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.data.config.schemas": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1.4142135623730951}, "ml.metadata.schemas": {"tf": 1}, "ml.metadata.schemas.data": {"tf": 1}, "ml.metadata.schemas.data.interim": {"tf": 1}, "ml.metadata.schemas.data.processed": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.shared": {"tf": 1}, "ml.metadata.schemas.features": {"tf": 1}, "ml.metadata.schemas.post_promotion": {"tf": 1}, "ml.metadata.schemas.promotion": {"tf": 1}, "ml.metadata.schemas.runners": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.promotion.config.promotion_thresholds": {"tf": 1}}, "df": 29, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ScoringConfig": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 12}}}, "e": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 11}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.components.feature_selection.selector": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.7320508075688772}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 8}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.7320508075688772}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.components.feature_engineering.arrival_season": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.4142135623730951}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.7320508075688772}, "ml.config.loader.load_and_validate_config": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.SearchConfig": {"tf": 1}, "ml.exceptions.SearchError": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.metadata.schemas.search": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.search.constants": {"tf": 1}, "ml.search.models": {"tf": 1}, "ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2.23606797749979}, "ml.search.params.refiners": {"tf": 1}, "ml.search.persistence": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 2.449489742783178}, "ml.search.persistence.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 2}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 2}, "ml.search.searchers.catboost.model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 2.449489742783178}, "ml.search.searchers.catboost.pipeline.steps.preparation": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.7320508075688772}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 3}}, "df": 95, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}}, "df": 3}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.delete_failure_management_folder": {"tf": 1}}, "df": 3}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.base": {"tf": 1}, "ml.search.searchers.catboost.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.7320508075688772}}, "df": 7, "s": {"docs": {"ml.registries": {"tf": 1}, "ml.search.searchers": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.search": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.searchers.catboost": {"tf": 1}, "ml.search.searchers.catboost.pipeline": {"tf": 1}, "ml.search.utils": {"tf": 1}}, "df": 3}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 3}}}}}}}}}}}, "t": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.7320508075688772}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1.4142135623730951}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.test": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.train": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 35, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig": {"tf": 1}, "ml.config.schemas.model_specs.SplitConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityMethodsConfig": {"tf": 1}, "ml.config.schemas.model_specs.ExplainabilityConfig": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.data.config.schemas.shared.Output": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 18}}}}}, "s": {"docs": {"ml.feature_freezing": {"tf": 1}, "ml.feature_freezing.freeze_strategies": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1.7320508075688772}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.sets": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 11, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 1}}}}}}}}, "[": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}}, "df": 3, "d": {"docs": {"ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1.4142135623730951}}, "df": 3}, "r": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.hashing.safe.safe": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 2}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.random_split": {"tf": 1.4142135623730951}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}}, "df": 23}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.registries": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.PromotionService.__init__": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}}, "df": 6}}}}}, "g": {"docs": {"ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.model_specs.SegmentConfig": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.7320508075688772}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}}, "df": 3, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.segmentation": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 2.23606797749979}}, "df": 8, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}}, "df": 2}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.utils.pipeline_core.runner": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.features.hashing.safe": {"tf": 1}, "ml.io.formatting.iso_no_colon": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 7, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.schema_validation": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.shared.loading.pipeline": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.shared.Output.format": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.exceptions.PersistenceError": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}}, "df": 4}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 4}}}, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.builders": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 13, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 9}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 37}}, "g": {"docs": {}, "df": 0, "n": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}}, "df": 12, "s": {"docs": {"ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.hashing.service": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ml.policies.promotion.threshold_support": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.config.schemas.model_specs.TaskType": {"tf": 1}, "ml.config.schemas.model_specs.AlgorithmConfig": {"tf": 1}, "ml.modeling.class_weighting.constants": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.assumptions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricSet": {"tf": 1}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 11}}, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.path_suffix": {"tf": 1}}, "df": 5}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.modeling.class_weighting.models.DataStats": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.types.SplitInfo": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.types.AllSplitsInfo": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}}, "df": 5}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.shared.Output.compression": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 2.6457513110645907}, "ml.feature_freezing.freeze_strategies.tabular.config.models.StorageConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 2}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 2.449489742783178}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 2.6457513110645907}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 2.6457513110645907}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 2.449489742783178}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2.8284271247461903}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1.7320508075688772}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing": {"tf": 1}, "ml.metadata.schemas.features.feature_freezing.FreezeMetadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.state.PromotionState": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1.4142135623730951}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.7320508075688772}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.7320508075688772}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 2}, "ml.types.LatestSnapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 2}, "ml.utils.snapshots.snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 2.449489742783178}}, "df": 72, "s": {"docs": {"ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.persistence": {"tf": 1}}, "df": 6, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}}, "df": 1}}}}}}}}}}, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.hashing.safe": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1.4142135623730951}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 14, "d": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.utils.extraction.get_data_suffix_and_format": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.features.extraction.cat_features": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.search.params.utils": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.snapshot_path": {"tf": 1}}, "df": 13}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1.4142135623730951}, "ml.promotion.result": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.runners.evaluation.EvaluationMetadata": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1.4142135623730951}, "ml.search.searchers.output.SearchOutput": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 18}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1.4142135623730951}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {"ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.modeling.validation.metrics": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.shared.loading.features": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.ArtifactLoadingReturn": {"tf": 1}, "ml.post_promotion.inference.classes.function_returns.PredictionStoringReturn": {"tf": 1}, "ml.post_promotion.monitoring.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.base.Evaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 84, "s": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.compute_data_config_hash.compute_data_config_hash": {"tf": 1}, "ml.config.hashing.compute_model_config_hash": {"tf": 1}, "ml.config.hashing.add_config_hash": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.hash_config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.freeze_parquet": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.persist_feature_snapshot": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.hashing.hash_parquet_metadata.hash_parquet_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.loading.data_loader.lineage_identity": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.split_data": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.getters.get.get_pipeline_cfg_hash": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}, "ml.utils.hashing.hash_dict.hash_dict": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}, "ml.utils.hashing.service.hash_data": {"tf": 1}, "ml.utils.hashing.service.hash_artifact": {"tf": 1}, "ml.utils.hashing.service.hash_thresholds": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.run": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.find_conda_executable": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}, "ml.utils.snapshots.snapshot_path.get_snapshot_path": {"tf": 1}}, "df": 353}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1.4142135623730951}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.searchers.output": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1.7320508075688772}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionArtifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}, "ml.types.LatestSnapshot": {"tf": 1}}, "df": 21}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1.4142135623730951}, "ml.search.models.experiment_metadata.ExperimentMetadata": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "s": {"docs": {"ml.search.models.experiment_metadata.Sources": {"tf": 1}, "ml.search.models.search_results.Phases": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.OperatorsConfig": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}}, "df": 14}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 13}, "d": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}, "o": {"docs": {"ml.utils.git.get_git_commit": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}, "d": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 2, "y": {"docs": {"ml.components.feature_selection": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 7}, "s": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.utils.hashing.service.hash_file": {"tf": 1}}, "df": 4}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.cli.exit_codes": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.data": {"tf": 1}, "ml.data.interim": {"tf": 1}, "ml.metadata": {"tf": 1}, "ml.post_promotion.inference": {"tf": 1}, "ml.post_promotion.inference.persistence": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring": {"tf": 1}, "ml.post_promotion.monitoring.extraction": {"tf": 1}, "ml.post_promotion.monitoring.persistence": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.models.search_results": {"tf": 1}}, "df": 12}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.components": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.config.schemas.shared": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1.4142135623730951}}, "df": 6}}, "s": {"docs": {"ml.targets.special_requests": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}}, "df": 2, "d": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1.7320508075688772}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}}, "df": 36}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.validation.validate_min_rows": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {"ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}}, "df": 3}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.merge": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.merge.deep_merge": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ml.metadata.schemas.search.search.SearchRecord": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.types.DataLineageEntry": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 14}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_specs.FeatureSetConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureStoreConfig": {"tf": 1}}, "df": 3}, "d": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.refiners": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.LineageConfig": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.ModelRegistryInfo": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry": {"tf": 1}, "ml.post_promotion.shared.loading.model_registry.get_model_registry_info": {"tf": 1.4142135623730951}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 3.1622776601683795}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 2.449489742783178}, "ml.promotion.persister": {"tf": 1}, "ml.promotion.persister.PromotionPersister": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1.7320508075688772}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 2}}, "df": 31, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.policies.data.interim_constraints": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.raw.persistence": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.utils.get_strategy": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1}, "ml.search.utils.get_searcher": {"tf": 1}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1.4142135623730951}}, "df": 10}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.features.validation.validate_target": {"tf": 1}, "ml.runners.evaluation.evaluators.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}}, "df": 10, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}}, "df": 4, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.processed.processing.process_data": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 2}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.schemas.runners.evaluation.EvaluationRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.training.TrainingRunIdentity": {"tf": 1}, "ml.modeling.models.run_identity.RunIdentity": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.promotion.constants.constants.RunnersMetadata": {"tf": 1}, "ml.promotion.constants.constants.PreviousProductionRunIdentity": {"tf": 1}, "ml.promotion.context.PromotionPaths": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.get_runners_metadata": {"tf": 2.6457513110645907}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 3.1622776601683795}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 2.8284271247461903}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1.4142135623730951}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 2.6457513110645907}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 2.449489742783178}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 2.23606797749979}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 2.449489742783178}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 2.23606797749979}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.training.persistence.run_info": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 2}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1.7320508075688772}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.4142135623730951}}, "df": 76, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig": {"tf": 1}, "ml.config.schemas.model_specs.MetaConfig": {"tf": 1}, "ml.config.schemas.train_cfg.TrainConfig": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeRuntimeInfo": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.metadata.schemas.data.shared.DataRuntimeInfo": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 2}, "ml.promotion.context.PromotionContext": {"tf": 1}, "ml.promotion.getters.get.get_training_conda_env_hash": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1.4142135623730951}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 2}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validations.runtime_comparison": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.7320508075688772}, "ml.runners.training.persistence": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1.4142135623730951}, "ml.targets": {"tf": 1}, "ml.targets.adr": {"tf": 1}, "ml.targets.cancellation": {"tf": 1}, "ml.targets.lead_time": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.repeated_guest": {"tf": 1}, "ml.targets.room_upgrade": {"tf": 1}, "ml.targets.special_requests": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_info": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 58, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}}, "df": 12}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners": {"tf": 1}, "ml.runners.evaluation.constants.output": {"tf": 1}, "ml.runners.evaluation.evaluators.base": {"tf": 1}, "ml.runners.evaluation.models.predictions": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model": {"tf": 1}, "ml.runners.training.constants.output": {"tf": 1}, "ml.runners.training.trainers.base": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1.4142135623730951}}, "df": 21, "s": {"docs": {"ml.metadata.validation.runners": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation": {"tf": 1}, "ml.runners.explainability": {"tf": 1}, "ml.runners.shared": {"tf": 1}, "ml.runners.shared.formatting": {"tf": 1}, "ml.runners.shared.lineage": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.loading": {"tf": 1}, "ml.runners.shared.logical_config": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}}, "df": 14, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.promotion.getters.get.get_runners_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.utils.randomized_search": {"tf": 1}, "ml.utils.pipeline_core.runner": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ml.metadata.schemas.runners.evaluation": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityMetadata": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.utils.failure_management": {"tf": 1}}, "df": 9}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.SegmentationFilter": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.interim.Invariants": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_features": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_metadata": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_x_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_y_train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_cfg": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_scoring": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 27, "d": {"docs": {"ml.cli.error_handling.resolve_exit_code": {"tf": 1}}, "df": 1}, "s": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 41}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.adr_per_person": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "o": {"docs": {"ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1.4142135623730951}}, "df": 1}}}, "w": {"docs": {"ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1.4142135623730951}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 2.6457513110645907}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1.7320508075688772}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.metadata.schemas.data.raw": {"tf": 1}, "ml.metadata.schemas.data.raw.RawData": {"tf": 1}, "ml.metadata.schemas.data.raw.RawSnapshotMetadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.7320508075688772}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1.4142135623730951}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1.7320508075688772}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.hash_environment": {"tf": 1}}, "df": 39, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}}, "df": 1, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 2}}, "df": 5, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "v": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.io.formatting.str_to_bool": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {"ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1.7320508075688772}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.data.processed.RowIdInfo": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 2}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys": {"tf": 1}}, "df": 31, "s": {"docs": {"ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}}, "df": 11}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}}, "df": 2}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}}, "df": 16, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12, "`": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}, "m": {"docs": {"ml.targets.room_upgrade": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.splitting.splitting.get_splits": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.params.refiners.refine_float_mult": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"ml.components.base.SklearnFeatureMixin": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 6}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.4142135623730951}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.min_rows": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 12, "s": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1.4142135623730951}}, "df": 1}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.validation.validate_target.validate_target": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.targets.no_show": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1.4142135623730951}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 9, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.validation.normalize_dtype.normalize_dtype": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 7, "d": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.4142135623730951}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.types.DataLineageEntry": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1.4142135623730951}}, "df": 10}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.features.validation.normalize_dtype": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}}, "df": 2}}}}}}}}}, "n": {"docs": {"ml.config.compute_data_config_hash": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.extract_catboost_params": {"tf": 1}}, "df": 4, "e": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.before": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.after": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.promotion.persister.PromotionPersister.persist": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.base.validate_base_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.after": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.before": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.after": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.runtime.runtime_info.get_runtime_info": {"tf": 1}}, "df": 71}}, "t": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_snapshot_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_schema_path": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_config_hash": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_splits_info": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_feature_lineage": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_input_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_derived_schema": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_pipeline_hash": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 22, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 15}}}}, "a": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1.4142135623730951}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1.7320508075688772}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.name": {"tf": 1}, "ml.pipelines.operator_factory.build_operators": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1.4142135623730951}, "ml.runners.explainability.persistence.save_metrics_csv.save_metrics_csv": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 52, "s": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.__init__": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1.4142135623730951}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.config.schemas.interim.DataSchema": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.remove_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.compute_cols_for_row_id_fingerprint.compute_cols_for_row_id_fingerprint": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1.4142135623730951}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1.4142135623730951}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1.4142135623730951}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 2}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 2}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 2}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 2}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 2}, "ml.pipelines.models.LineageConfig": {"tf": 2}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1.4142135623730951}, "ml.promotion.config.promotion_thresholds.MetricName": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 2}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 2}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 2}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_cat_features": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.4142135623730951}}, "df": 50, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}}, "df": 13}}}}}, "d": {"docs": {"ml.features.transforms.transform_target.transform_target": {"tf": 1}}, "df": 1}, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.search.params.catboost.refinement": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2.6457513110645907}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 2.6457513110645907}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_narrow": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 19, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.params.utils": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}}, "df": 3}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.components.feature_engineering.total_stay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.modeling.models.metrics.EvaluationMetricsHelper": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.utils.hashing.hash_dict.canonicalize": {"tf": 1.4142135623730951}}, "df": 4}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.monitoring.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 9}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.search.params.refiners": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}}, "df": 5, "[": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}}, "df": 4}, "v": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 1.4142135623730951}}, "df": 2}}}}, "b": {"docs": {"ml.utils.git.is_descendant_commit": {"tf": 1.7320508075688772}}, "df": 1, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ml.cli.exit_codes": {"tf": 1}, "ml.config.schemas.search_cfg.BroadModelParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadEnsembleParams": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowSearchConfig": {"tf": 1}, "ml.config.schemas.search_cfg.BroadSearchConfig": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_broad_result": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 19, "/": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.config.schemas.search_cfg": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.build_dataset_dag": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 28, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components": {"tf": 1}, "ml.data.processed": {"tf": 1}, "ml.features.loading.get_target": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.targets.base.TargetStrategy": {"tf": 1}}, "df": 17}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.pipelines.builders": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.promotion.context": {"tf": 1}, "ml.utils.runtime.runtime_snapshot": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1}}, "df": 1}}, "t": {"docs": {"ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"ml.components": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowParamConfig": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.base": {"tf": 1}, "ml.components.base.PipelineComponent": {"tf": 1}, "ml.components.feature_engineering.base": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1.4142135623730951}, "ml.config.schemas.base_model_params": {"tf": 1}, "ml.data.processed.processing.add_row_id_base": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.exceptions.MLBaseError": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.metadata.schemas.data.shared.MetadataBase": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentStagingRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PreviousProductionRunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionDecision": {"tf": 1}, "ml.metadata.schemas.promotion.promote.PromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.ProductionPromotionMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.StagingPromotionMetadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.models.metrics.Metrics": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.strategies.base.PromotionStrategy": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validations.base": {"tf": 1}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.targets.base": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep": {"tf": 1}}, "df": 43, "d": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.validation.validate_data": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.policies.promotion.threshold_support": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 18}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.promotion.comparisons.production": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.metadata.schemas.data.shared.DataBasic": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.task_type": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.config.schemas.hardware_cfg.HardwareTaskType": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}}, "df": 4}}}, "d": {"docs": {"ml.utils.runtime.gpu_info": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.create_metadata": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.hashing.hash_arrow_metadata.hash_arrow_metadata": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs": {"tf": 1}, "ml.data.config.schemas.shared": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data": {"tf": 1}, "ml.exceptions.UserError": {"tf": 1}, "ml.exceptions.RuntimeMLError": {"tf": 1}, "ml.feature_freezing.constants.output": {"tf": 1}, "ml.feature_freezing.constants.output.FreezeOutput": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.features.segmentation.segment": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.schemas.promotion.promote.CurrentRunIdentity": {"tf": 1}, "ml.metadata.schemas.runners.explainability.ExplainabilityArtifacts": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.result.PromotionResult": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.registries": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.explainability.constants.explainability_metrics_class": {"tf": 1}, "ml.runners.explainability.constants.output": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.shared.persistence": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}, "ml.runners.training.trainers.base.Trainer": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1.4142135623730951}, "ml.search.searchers.output": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}, "ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}, "ml.utils.loaders.read_data": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.after": {"tf": 1}, "ml.utils.runtime.gpu_info": {"tf": 1}}, "df": 73, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.utils.hashing.hash_streaming.hash_streaming": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.targets.adr.v1.AdrTargetV1": {"tf": 1}, "ml.targets.cancellation.v1.CancellationTargetV1": {"tf": 1}, "ml.targets.lead_time.v1.LeadTimeTargetV1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}, "ml.targets.special_requests.v1.SpecialRequestsTargetV1": {"tf": 1}}, "df": 7, "s": {"docs": {"ml.data.processed.processing.hotel_bookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}}, "df": 6}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 1}}}, "l": {"docs": {"ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.formatting.str_to_bool": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 2}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.config.schemas.model_specs": {"tf": 1}, "ml.metadata.schemas.data.shared.SharedInterimProcessedMetadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}}, "df": 6}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.utils.get_default_int_params": {"tf": 1.4142135623730951}, "ml.search.params.utils.get_default_float_params": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.data.config.schemas.constants.BorderValue": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.policies.model_params.catboost_constraints.ParamConstraints": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.search.params.refiners.refine_int": {"tf": 1.4142135623730951}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.params.refiners.refine_border_count": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "e": {"docs": {"ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata": {"tf": 1}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 34, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.config.best_params": {"tf": 1}, "ml.config.best_params.apply_best_params": {"tf": 1.7320508075688772}, "ml.config.loader.load_config": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.models.search_results.SearchResults": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 2}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params_1": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_best_params": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1.7320508075688772}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}}, "df": 20}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.pipeline_core.step.PipelineStep.before": {"tf": 1}}, "df": 11, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.exceptions.PipelineContractError": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison": {"tf": 1}, "ml.post_promotion.monitoring.performance.comparison.compare_production_and_staging_performance": {"tf": 1}}, "df": 9}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.config.schemas.shared.DataInfo.name": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.modeling.models.runtime_info.Execution": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_features.load_training_features": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1.4142135623730951}}, "df": 13}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.promotion.strategies.base": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.7320508075688772}, "ml.runners.training.utils.metrics.best_f1": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.targets.no_show.v1.NoShowTargetV1": {"tf": 1}, "ml.targets.room_upgrade.v1.RoomUpgradeTargetV1": {"tf": 1}}, "df": 10}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 2}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}}, "df": 16, "s": {"docs": {"ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.runners.shared.loading.get_snapshot_binding_from_training_metadata.get_snapshot_binding_from_training_metadata": {"tf": 1}, "ml.snapshot_bindings": {"tf": 1}, "ml.snapshot_bindings.config": {"tf": 1}, "ml.snapshot_bindings.config.models": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 2}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 2}}, "df": 16}}}}}, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}}, "df": 2}}}}, "x": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureOperator.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.apply_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 38}, "y": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.fit": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing.fit": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.split_data": {"tf": 1.7320508075688772}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1.7320508075688772}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.7320508075688772}}, "df": 24, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.feature_engineering.arrival_date.ArrivalDate": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}}, "df": 2}}, "t": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.pipeline.context.FreezeContext.require_data_lineage": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.get_conda_env_export": {"tf": 1.4142135623730951}}, "df": 4, "/": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.validation.validate_model_config": {"tf": 1}, "ml.utils.loaders": {"tf": 1}}, "df": 2}}}}}}}}}, "v": {"1": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 14}, "docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.base.PipelineComponent.fit": {"tf": 1}, "ml.components.base.SklearnFeatureMixin.fit": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_feature_importances": {"tf": 1.4142135623730951}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 4, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1.7320508075688772}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.config.schemas.shared.DataInfo.version": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.feature_freezing.persistence.get_deps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_pkg_version": {"tf": 1.4142135623730951}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.DatasetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.FeatureSetSnapshotBinding.snapshot": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.targets.adr.v1": {"tf": 1}, "ml.targets.cancellation.v1": {"tf": 1}, "ml.targets.lead_time.v1": {"tf": 1}, "ml.targets.no_show.v1": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.room_upgrade.v1": {"tf": 1}, "ml.targets.special_requests.v1": {"tf": 1}, "ml.utils.runtime.gpu_info.parse_cuda_driver_version": {"tf": 2}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1.7320508075688772}}, "df": 29, "s": {"docs": {"ml.feature_freezing.models.freeze_runtime": {"tf": 1}, "ml.feature_freezing.models.freeze_runtime.FreezeDeps": {"tf": 1}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}}, "df": 8}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.features.validation.validate_snapshot_ids": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.modeling.models.artifacts.Artifacts": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.train_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.test_predictions_hash": {"tf": 1}}, "df": 4}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.features.hashing.safe.safe": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.4142135623730951}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1.4142135623730951}}, "df": 4, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.utils.snapshots.latest_snapshot": {"tf": 1}, "ml.utils.snapshots.latest_snapshot.get_latest_snapshot_path": {"tf": 1.4142135623730951}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.base.FeatureEngineer.transform": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.processed.processing.hotel_bookings.add_row_id.validate_cols_for_row_id": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.normalize_merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.feature_freezing.utils.get_strategy_type.get_strategy_type": {"tf": 1}, "ml.features.loading.data_loader.load_and_validate_data": {"tf": 1.4142135623730951}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1.4142135623730951}, "ml.features.validation.validate_snapshot_ids.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1.7320508075688772}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading.promotion_metrics_info.get_promotion_metrics_info": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1.4142135623730951}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validations.configs_match.validate_configs_match": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1.4142135623730951}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1.4142135623730951}, "ml.targets.base.TargetStrategy.build": {"tf": 1}}, "df": 87, "s": {"docs": {"ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}}, "df": 1}, "d": {"docs": {"ml.config.hashing": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.schemas.model_cfg": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_task_target_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.config.validate_config.validate_config": {"tf": 1}, "ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.data.merge.merge_dataset_into_main": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_feature_roles_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_constraints_match_columns": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.validate_required_features_for_operators": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.utils.data_loader.load_data_with_lineage": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation.validate_contract.validate_model_feature_pipeline_contract": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.metadata.validation.data.interim.validate_interim_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.processed.validate_processed_dataset_metadata": {"tf": 1}, "ml.metadata.validation.data.raw.validate_raw_snapshot_metadata": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion.infer.validate_inference_metadata": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1.4142135623730951}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics.validate_training_metrics": {"tf": 1}, "ml.modeling.validation.metrics.validate_evaluation_metrics": {"tf": 1}, "ml.modeling.validation.runtime_info.validate_runtime_info": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.post_promotion.inference.loading.artifact.load_and_validate_artifact": {"tf": 1}, "ml.post_promotion.monitoring.loading.training_metrics.load_training_metrics_file": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.promotion.validation.promotion_thresholds.validate_promotion_thresholds": {"tf": 1}, "ml.promotion.validation.registry_entry.validate_registry_entry": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.persistence.persist_evaluation_run.persist_evaluation_run": {"tf": 1}, "ml.runners.evaluation.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1.4142135623730951}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.shared.persistence.save_metrics.save_metrics": {"tf": 1}, "ml.runners.training.persistence.run_info.persist_training_run.persist_training_run": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_training_behavior_consistency.validate_training_behavior_consistency": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding_registry": {"tf": 1}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 101}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.transform": {"tf": 1}, "ml.data.validation": {"tf": 1}, "ml.features.loading.features_and_target": {"tf": 1}, "ml.metadata.validation.data.interim": {"tf": 1}, "ml.metadata.validation.data.processed": {"tf": 1}, "ml.metadata.validation.data.raw": {"tf": 1}, "ml.metadata.validation.post_promotion.infer": {"tf": 1}, "ml.metadata.validation.promotion.promote": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.runners.shared.lineage.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding": {"tf": 1}}, "df": 12}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.schema_validation": {"tf": 1}, "ml.components.schema_validation.validator": {"tf": 1}, "ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.loader": {"tf": 1}, "ml.config.schemas.model_specs": {"tf": 1}, "ml.config.schemas.model_specs.TaskConfig": {"tf": 1}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_filters_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.config.schemas.search_cfg": {"tf": 1}, "ml.config.schemas.train_cfg": {"tf": 1}, "ml.config.validation": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim": {"tf": 1}, "ml.data.config.schemas.interim.Invariant": {"tf": 1}, "ml.data.config.schemas.processed": {"tf": 1}, "ml.data.config.validate_config": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.4142135623730951}, "ml.data.validation.validate_data": {"tf": 1}, "ml.data.validation.validate_entity_key": {"tf": 1}, "ml.data.validation.validate_min_rows": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config.validate_feature_registry": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_validate": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.FeatureRolesConfig": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_input_no_nulls": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_max_cardinality": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.validation.validate_data_types": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.loading.schemas.load_schemas": {"tf": 1}, "ml.features.validation": {"tf": 1}, "ml.features.validation.validate_contract": {"tf": 1}, "ml.features.validation.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set": {"tf": 1}, "ml.features.validation.validate_snapshot_ids": {"tf": 1}, "ml.features.validation.validate_target": {"tf": 1}, "ml.features.validation.validate_target.validate_min_class_count": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.validation": {"tf": 1}, "ml.io.validation.validate_mapping": {"tf": 1}, "ml.metadata.validation": {"tf": 1}, "ml.metadata.validation.data": {"tf": 1}, "ml.metadata.validation.features": {"tf": 1}, "ml.metadata.validation.features.feature_freezing.validate_freeze_metadata": {"tf": 1}, "ml.metadata.validation.post_promotion": {"tf": 1}, "ml.metadata.validation.promotion": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.metadata.validation.runners": {"tf": 1}, "ml.metadata.validation.runners.evaluation.validate_evaluation_metadata": {"tf": 1}, "ml.metadata.validation.search": {"tf": 1}, "ml.modeling.validation": {"tf": 1}, "ml.modeling.validation.artifacts.validate_evaluation_artifacts": {"tf": 1}, "ml.modeling.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.models": {"tf": 1}, "ml.pipelines.validation": {"tf": 1}, "ml.pipelines.validation.validate_pipeline_config": {"tf": 1}, "ml.policies.data.interim_constraints": {"tf": 1}, "ml.policies.model_params.catboost_constraints": {"tf": 1}, "ml.post_promotion.inference.validation": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionMetricsConfig.validate_directions": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig.val": {"tf": 1}, "ml.promotion.service.PromotionService": {"tf": 1}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.artifacts": {"tf": 1}, "ml.promotion.validation.artifacts.validate_artifacts_consistency": {"tf": 1}, "ml.promotion.validation.artifacts.validate_optional_artifact": {"tf": 1}, "ml.promotion.validation.artifacts.validate_explainability_artifacts": {"tf": 1}, "ml.promotion.validation.promotion_thresholds": {"tf": 1}, "ml.promotion.validation.runners": {"tf": 1}, "ml.promotion.validation.runners.validate_run_dirs": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.constants.data_splits.DataSplits": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPaths.val_predictions_path": {"tf": 1}, "ml.runners.evaluation.models.predictions.PredictionsPathsAndHashes.val_predictions_hash": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths": {"tf": 1}, "ml.runners.shared.formatting.ensure_1d_array": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity": {"tf": 1}, "ml.runners.shared.lineage.validate_lineage_integrity.validate_lineage_integrity": {"tf": 1.4142135623730951}, "ml.runners.shared.lineage.validations.configs_match": {"tf": 1}, "ml.runners.shared.logical_config.validate_model_and_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations": {"tf": 1}, "ml.runners.shared.reproducibility.validations.validate_runtime_info.validate_runtime_info": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1.7320508075688772}, "ml.runners.training.utils.logical_config_checks.validations": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 2}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.snapshot_bindings.validation": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}}, "df": 107, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.validation.validate_constraints": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.validators": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}}, "df": 5}, "/": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ml.features.validation.validate_operators.validate_operators": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.imputation.categorical": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TaskConfig.normalize_task_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetTransformConfig.validate_lambda_value_based_on_type": {"tf": 1.4142135623730951}, "ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_fixed_metric_if_fixed_policy": {"tf": 1}, "ml.config.schemas.model_specs.ScoringConfig.validate_pr_auc_threshold_if_adaptive_binary_policy": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.config.schemas.constants": {"tf": 1}, "ml.data.config.schemas.constants.BorderValue": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.min": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.max": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.clean_data": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.validation.validate_operators.validate_operators": {"tf": 1}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.analysis.analyze_psi_result": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_psi": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1.4142135623730951}, "ml.runners.explainability.explainers.tree_model.utils.validators.validate_lengths.validate_lengths": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.search.params.catboost.validation": {"tf": 1}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_int": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_float_mult": {"tf": 1.7320508075688772}, "ml.search.params.refiners.refine_border_count": {"tf": 1}}, "df": 34, "s": {"docs": {"ml.components.imputation": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.7320508075688772}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_specs.TargetConstraintsConfig": {"tf": 1}, "ml.data.config.schemas.interim.Invariant.allowed_values": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1.4142135623730951}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.safe.safe": {"tf": 1}, "ml.features.transforms.transform_target.transform_target": {"tf": 1.4142135623730951}, "ml.features.transforms.transform_target.inverse_transform_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1.7320508075688772}, "ml.features.validation.validate_set.validate_set": {"tf": 1}, "ml.io.formatting.str_to_bool.str_to_bool": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.metadata.validation.runners.explainability.validate_explainability_metadata": {"tf": 1}, "ml.metadata.validation.runners.training.validate_training_metadata": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}, "ml.post_promotion.shared.classes.function_returns.PrepareFeaturesReturn": {"tf": 1}, "ml.promotion.config.promotion_thresholds.ThresholdsConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_shap_values": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters.catboost.CatBoostAdapter.compute_feature_importances": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1.4142135623730951}}, "df": 39}, "d": {"docs": {"ml.config.schemas.search_cfg.NarrowIntParam": {"tf": 1}, "ml.config.schemas.search_cfg.NarrowFloatParam": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.post_promotion.monitoring.performance.assessment.assess_model_performance": {"tf": 1}, "ml.post_promotion.monitoring.performance.calculation.calculate_current_performance": {"tf": 1}}, "df": 2, "s": {"docs": {"ml.features.transforms.transform_target": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 13}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}, "{": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.schemas.model_specs.TargetConfig.validate_version_format": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.validate_raw_data_version": {"tf": 1}, "ml.data.config.schemas.processed.ProcessedConfig.validate_interim_data_version": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.exceptions.PipelineContractError": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {"ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 3}}}, "g": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ref": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.name": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.version": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.pipelines.models.PipelineConfig.version": {"tf": 1}}, "df": 6, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ml.targets.repeated_guest": {"tf": 1}, "ml.targets.repeated_guest.v1": {"tf": 1}, "ml.targets.repeated_guest.v1.RepeatedGuestTargetV1": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.pit_operator": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.promotion.comparisons.production.compare_against_production_model": {"tf": 1}, "ml.promotion.comparisons.thresholds.compare_against_thresholds": {"tf": 1}, "ml.types.AllSplitsInfo": {"tf": 1}}, "df": 6}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.pipelines.constants.pipeline_features": {"tf": 1}, "ml.pipelines.constants.pipeline_features.PipelineFeatures": {"tf": 1}, "ml.pipelines.schema_utils.get_pipeline_features": {"tf": 1.4142135623730951}}, "df": 4}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.evaluation.evaluators.classification.metrics.expected_calibration_error": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.compute_metrics": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.metrics.compute_metrics": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.4142135623730951}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.4142135623730951}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.4142135623730951}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.4142135623730951}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.4142135623730951}, "ml.pipelines.models.LineageConfig": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.4142135623730951}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.4142135623730951}, "ml.utils.pipeline_core.runner.PipelineRunner": {"tf": 1}}, "df": 14, "s": {"docs": {"ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1}, "ml.pipelines.models.LineageConfig": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1}}, "df": 12}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.feature_freezing.utils.operators.generate_operator_hash": {"tf": 1}, "ml.post_promotion.inference.execution.predict.predict": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.runners.explainability.explainers.base.Explainer.explain": {"tf": 1}, "ml.runners.training.utils.metrics.best_f1.get_best_f1_threshold": {"tf": 1}, "ml.search.params.refiners.refine_int": {"tf": 1}, "ml.search.params.refiners.refine_float_mult": {"tf": 1}}, "df": 8, "d": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.__init__": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.processed.ProcessedConfig": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.RowIDMetadata": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.cols_for_row_id": {"tf": 1}, "ml.data.processed.processing.process_data": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.policies.data.row_id": {"tf": 1}}, "df": 11}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.processed.processing.add_row_id_base": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {"ml.io.persistence": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.getters": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"ml.config.schemas.hardware_cfg.HardwareConfig.devices": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1.7320508075688772}, "ml.search.params.catboost.validation.validate_param_value": {"tf": 1}, "ml.search.params.refiners.refine_border_count": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1.4142135623730951}, "ml.utils.runtime.gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.prepare_gpu_info": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.7320508075688772}, "ml.utils.runtime.runtime_snapshot.build_runtime_snapshot": {"tf": 1}}, "df": 10}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.processed.persistence.prepare_metadata.prepare_metadata": {"tf": 1}}, "df": 2}}}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.feature_freezing.freeze_strategies.config.validate_feature_registry.validate_feature_registry": {"tf": 1}, "ml.logging_config.setup_logging": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.hashing.input_row.hash_input_row": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}}, "df": 7}}}, "t": {"docs": {"ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1.7320508075688772}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.git": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}}, "df": 9}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1}}, "df": 3}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ml.components.feature_engineering.adr_per_person.AdrPerPerson.transform": {"tf": 1}, "ml.components.feature_engineering.arrival_date.ArrivalDate.transform": {"tf": 1}, "ml.components.feature_engineering.base.FeatureEngineer.__init__": {"tf": 1}, "ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector": {"tf": 1}, "ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1.4142135623730951}, "ml.components.imputation.categorical.FillCategoricalMissing.transform": {"tf": 1.4142135623730951}, "ml.components.schema_validation.validator.SchemaValidator.__init__": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_specs.SegmentationConfig.validate_include_in_model_based_on_enabled": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_target_transform_consistency": {"tf": 1}, "ml.config.validation.validate_model_config": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Invariants.assign_default_invariants": {"tf": 1.4142135623730951}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.add_row_id_base.AddRowIDBase.add_row_id": {"tf": 1}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings.add_row_id": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.processed.processing.process_data.add_row_id": {"tf": 1}, "ml.data.raw": {"tf": 1}, "ml.data.raw.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.data.utils": {"tf": 1.4142135623730951}, "ml.data.utils.memory": {"tf": 1}, "ml.data.utils.memory.compute_memory_change.compute_memory_change": {"tf": 1}, "ml.feature_freezing.constants": {"tf": 1}, "ml.feature_freezing.freeze_strategies.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.__init__": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.metadata.MetadataStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.persistence.PersistenceStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.features.extraction.cat_features.get_cat_features": {"tf": 1}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 1}, "ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.features.segmentation.segment.apply_segmentation": {"tf": 1}, "ml.features.splitting.splitting.random_split": {"tf": 1}, "ml.features.splitting.splitting.get_splits_tabular": {"tf": 1}, "ml.features.splitting.splitting.get_splits": {"tf": 1}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 1}, "ml.features.validation.validate_target.validate_target": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.modeling.catboost": {"tf": 1}, "ml.modeling.catboost.build_pipeline_with_model.build_pipeline_with_model": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.modeling.class_weighting.stats_resolver.compute_data_stats": {"tf": 1}, "ml.modeling.models": {"tf": 1}, "ml.modeling.validation.metrics": {"tf": 1}, "ml.pipelines.builders.build_pipeline": {"tf": 1.4142135623730951}, "ml.pipelines.composition": {"tf": 1}, "ml.pipelines.composition.add_model_to_pipeline.add_model_to_pipeline": {"tf": 1}, "ml.pipelines.constants": {"tf": 1.4142135623730951}, "ml.pipelines.models.PipelineConfig.check_version_format": {"tf": 1}, "ml.pipelines.schema_utils.get_categorical_features": {"tf": 1}, "ml.policies": {"tf": 1}, "ml.policies.data": {"tf": 1}, "ml.policies.model_params": {"tf": 1}, "ml.policies.promotion": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.prepare_metadata.prepare_metadata": {"tf": 1.4142135623730951}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.promotion": {"tf": 1}, "ml.promotion.config": {"tf": 1}, "ml.promotion.config.promotion_thresholds.PromotionThresholds.validate_consistency": {"tf": 1}, "ml.promotion.config.registry_entry": {"tf": 1}, "ml.promotion.constants": {"tf": 1}, "ml.promotion.context.build_context": {"tf": 1}, "ml.promotion.getters": {"tf": 1}, "ml.promotion.state_loader.PromotionStateLoader.load": {"tf": 1}, "ml.promotion.strategies": {"tf": 1}, "ml.promotion.strategies.production.ProductionPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.strategies.staging.StagingPromotionStrategy.execute": {"tf": 1.4142135623730951}, "ml.promotion.validation": {"tf": 1}, "ml.promotion.validation.runners.validate_run_ids": {"tf": 1}, "ml.runners.evaluation.constants": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.evaluation.models": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.evaluation.utils": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1}, "ml.runners.explainability.explainers": {"tf": 1}, "ml.runners.explainability.explainers.tree_model": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.adapters": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.adapter.get_adapter.get_tree_model_adapter": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1}, "ml.runners.shared.loading.pipeline.load_model_or_pipeline": {"tf": 1}, "ml.runners.shared.logical_config.validate_pipeline_cfg.validate_pipeline_cfg": {"tf": 1}, "ml.runners.shared.reproducibility.validations.conda_envs_match.validate_conda_envs_match": {"tf": 1}, "ml.runners.shared.reproducibility.validations.runtime_comparison.validate_runtime_matches": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1.4142135623730951}, "ml.search.models": {"tf": 1}, "ml.search.params": {"tf": 1}, "ml.search.params.catboost.refinement.prepare_narrow_params": {"tf": 1}, "ml.search.params.utils.get_default_int_params": {"tf": 1}, "ml.search.params.utils.get_default_float_params": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.broad_search.BroadSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.searchers.catboost.search_results_creator.create_search_results": {"tf": 1}, "ml.search.utils": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding": {"tf": 1}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1}, "ml.targets.base.TargetStrategy.build": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.hashing.hash_list": {"tf": 1}, "ml.utils.loaders.load_yaml": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.__init__": {"tf": 1}, "ml.utils.pipeline_core.runner.PipelineRunner.run": {"tf": 1}, "ml.utils.runtime.gpu_info.get_gpu_info": {"tf": 1.4142135623730951}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 130, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ml.components.feature_engineering.pit_operator.PITOperator.transform": {"tf": 1}, "ml.io.formatting.iso_no_colon.iso_no_colon": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}, "ml.search.utils.model_params_extraction.extract_model_params": {"tf": 1}}, "df": 5}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.config.schemas.interim.Invariants.validate_constraints": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.config.schemas.model_cfg.SearchModelConfig.extends": {"tf": 1}, "ml.config.schemas.model_cfg.TrainModelConfig.extends": {"tf": 1}, "ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ml.exceptions": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}}, "df": 2}}}, "e": {"docs": {"ml.registries": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "k": {"docs": {"ml.components.feature_engineering.arrival_season.ArrivalSeason": {"tf": 1}, "ml.components.feature_engineering.arrival_season.ArrivalSeason.transform": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ml.components.feature_engineering.total_stay.TotalStay": {"tf": 1}, "ml.components.feature_engineering.total_stay.TotalStay.transform": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ml.modeling.class_weighting.resolve_class_weighting": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1.7320508075688772}, "ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.config.schemas.model_specs.ClassWeightingConfig": {"tf": 1}, "ml.config.schemas.model_specs.ModelSpecs.validate_class_weighting_consistency": {"tf": 1}, "ml.modeling.class_weighting": {"tf": 1}, "ml.modeling.class_weighting.models": {"tf": 1}, "ml.modeling.class_weighting.resolve_class_weighting.resolve_class_weighting": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}}, "df": 6}}}, "s": {"docs": {"ml.runners.training.utils.model_specific.catboost.prepare_model": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ml.registries": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.components.schema_validation.validator.SchemaValidator.transform": {"tf": 1}, "ml.config.best_params.unflatten_best_params": {"tf": 1}, "ml.config.schemas.hardware_cfg.HardwareConfig.normalize_task_type": {"tf": 1}, "ml.config.schemas.model_cfg.SearchLineageConfig": {"tf": 1}, "ml.config.schemas.model_cfg.TrainingLineageConfig": {"tf": 1}, "ml.config.schemas.model_specs.FeatureImportanceMethodConfig.validate_type_if_enabled": {"tf": 1}, "ml.config.schemas.model_specs.SHAPMethodConfig.validate_approximate_if_enabled": {"tf": 1}, "ml.data.config.schemas.shared.Output.compression": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.data.processed.processing.process_data.remove_columns": {"tf": 1}, "ml.data.validation.validate_data.validate_data": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.logging_config.add_file_handler": {"tf": 1}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1}, "ml.runners.shared.logical_config.validate_threshold.validate_threshold": {"tf": 1.4142135623730951}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.runners.training.utils.metrics.compute_metrics.compute_metrics": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}, "ml.search.utils.failure_management.delete_failure_management_folder.delete_failure_management_folder": {"tf": 1}, "ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}, "ml.utils.git.get_git_commit": {"tf": 1}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 29}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1}, "ml.config.merge.deep_merge": {"tf": 1}, "ml.data.utils.persistence.save_data.save_data": {"tf": 1}, "ml.modeling.models.runtime_info": {"tf": 1}, "ml.modeling.models.runtime_info.Environment": {"tf": 1}, "ml.modeling.models.runtime_info.GpuInfo": {"tf": 1}, "ml.modeling.models.runtime_info.Runtime": {"tf": 1}, "ml.modeling.models.runtime_info.RuntimeInfo": {"tf": 1}, "ml.post_promotion.inference.execution.execute_inference.execute_inference": {"tf": 1}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}, "ml.runners.training.persistence.artifacts.save_pipeline.save_pipeline": {"tf": 1}, "ml.runners.training.trainers.catboost.train_catboost_model.train_catboost_model": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validate_logical_config.validate_logical_config": {"tf": 1}, "ml.utils.pipeline_core": {"tf": 1}}, "df": 17}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}, "ml.config.loader.load_config": {"tf": 1.4142135623730951}, "ml.config.merge.resolve_extends": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.lowercase_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_spaces_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.Cleaning.replace_dashes_in_columns": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_duplicates": {"tf": 1}, "ml.data.config.schemas.interim.InterimConfig.drop_missing_ints": {"tf": 1}, "ml.data.interim.data_preparation.prepare_data.enforce_schema": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_set.validate_feature_set": {"tf": 1}, "ml.io.persistence.save_metadata.save_metadata": {"tf": 1}, "ml.metadata.schemas.post_promotion.infer.InferenceMetadata": {"tf": 1.7320508075688772}, "ml.metadata.schemas.promotion.promote.RunIdentity": {"tf": 1.7320508075688772}, "ml.modeling.models.config_fingerprint.ConfigFingerprint": {"tf": 1.7320508075688772}, "ml.modeling.models.experiment_lineage.ExperimentLineage": {"tf": 1.7320508075688772}, "ml.modeling.models.feature_lineage.FeatureLineage": {"tf": 1.7320508075688772}, "ml.pipelines.models.LineageConfig": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryArtifacts": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryFeatureSetLineage": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntryMetrics": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.RegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.ProductionRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.config.registry_entry.StagingRegistryEntry": {"tf": 1.7320508075688772}, "ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.persistence.persist_experiment.persist_experiment": {"tf": 1}, "ml.search.searchers.base.Searcher.search": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.search.searchers.catboost.pipeline.context.SearchContext.require_narrow_disabled": {"tf": 1}, "ml.snapshot_bindings.validation.validate_snapshot_binding.validate_snapshot_binding": {"tf": 1.4142135623730951}, "ml.utils.git.is_descendant_commit": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1}}, "df": 39}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.config.schemas.interim.Cleaning.strip_strings": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"ml.data.config.schemas.shared.Output.path_suffix": {"tf": 1}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 1}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1}, "ml.features.loading.schemas.load_feature_set_schemas": {"tf": 1}, "ml.metadata.validation.promotion.promote.validate_promotion_metadata": {"tf": 1}, "ml.post_promotion.monitoring.execution.execute_monitoring.execute_monitoring": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.comparison.compare_feature_distributions": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}, "ml.post_promotion.monitoring.loading.inference_features_and_target.load_inference_features_and_target": {"tf": 1}, "ml.post_promotion.monitoring.loading.predictions.load_predictions": {"tf": 1}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.datasets": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBinding.feature_sets": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1}}, "df": 20}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ml.features.loading.schemas.aggregate_schema_dfs": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ml.data.interim.data_preparation.prepare_data.normalize_columns": {"tf": 1}, "ml.data.utils.memory.get_memory_usage.get_memory_usage": {"tf": 1}, "ml.features.hashing.hash_dataframe_content.hash_dataframe_content": {"tf": 1}, "ml.features.hashing.hash_feature_schema.hash_feature_schema": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.transformers.get_feature_names_and_transformed_features.get_feature_names_and_transformed_features": {"tf": 1}, "ml.search.searchers.catboost.model.prepare_model": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ml.config.best_params.apply_best_params": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ml.promotion.persistence.prepare.prepare_metadata": {"tf": 1}}, "df": 1}, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {"ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"ml.search.searchers.catboost.pipeline.steps.preparation.PreparationStep.run": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.ingestion.IngestionStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.pipeline.steps.preprocessing.PreprocessingStep.run": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1}, "ml.promotion.context": {"tf": 1}, "ml.promotion.getters.get": {"tf": 1}, "ml.promotion.persistence.registry": {"tf": 1}, "ml.promotion.service": {"tf": 1}, "ml.promotion.service.PromotionService.run": {"tf": 1}, "ml.promotion.state_loader": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel": {"tf": 1}, "ml.utils": {"tf": 1}, "ml.utils.hashing": {"tf": 1}, "ml.utils.runtime": {"tf": 1}, "ml.utils.snapshots": {"tf": 1}}, "df": 15, "s": {"docs": {"ml.config.schemas.base_model_params.BaseModelParams": {"tf": 1}, "ml.config.schemas.base_model_params.BaseEnsembleParams": {"tf": 1}, "ml.config.schemas.hardware_cfg": {"tf": 1}, "ml.exceptions": {"tf": 1}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries": {"tf": 1}, "ml.modeling.class_weighting.resolve_metric.resolve_metric": {"tf": 1}, "ml.promotion.constants.constants": {"tf": 1}, "ml.runners.shared.reproducibility.validations.git_commits_match.validate_git_commits_match": {"tf": 1}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.data.raw": {"tf": 1}, "ml.data.utils": {"tf": 1}, "ml.data.utils.memory": {"tf": 1}, "ml.pipelines.constants": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ml.promotion.getters.get.get_runners_metadata": {"tf": 1}}, "df": 1, "s": {"docs": {"ml.data.config.schemas.constants": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1.4142135623730951}}, "df": 2}}, "d": {"docs": {"ml.runners.explainability.explainers.tree_model.adapters.base.TreeModelAdapter.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ml.data.utils.persistence.save_data.save_data": {"tf": 1.4142135623730951}, "ml.promotion.persistence.prepare.prepare_run_information": {"tf": 1}, "ml.runners.evaluation.persistence.save_predictions.save_predictions": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"ml.logging_config.setup_logging": {"tf": 1}, "ml.runners.training.trainers.catboost.catboost.CatBoostTrainer.train": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}}, "df": 3, "s": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.persistence.save_input_schema": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.persistence.save_derived_schema": {"tf": 1}, "ml.promotion.persistence.registry.persist_registry_diff": {"tf": 1}}, "df": 3, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ml.io.persistence.save_metadata": {"tf": 1}, "ml.runners.shared.persistence.save_metrics": {"tf": 1}, "ml.utils.runtime.save_runtime": {"tf": 1}}, "df": 3}}}}}}}, "k": {"docs": {"ml.runners.explainability.constants.explainability_metrics_class.ExplainabilityMetrics": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.tree_model.ExplainTreeModel.explain": {"tf": 1}, "ml.runners.explainability.explainers.tree_model.utils.calculators.feature_importances.get_feature_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.explainers.tree_model.utils.calculators.shap_importances.get_shap_importances": {"tf": 1.7320508075688772}, "ml.runners.explainability.persistence.persist_explainability_run.persist_explainability_run": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"ml.components.feature_selection.selector.FeatureSelector.__init__": {"tf": 1}, "ml.components.imputation.categorical.FillCategoricalMissing": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.utils.hashing.service": {"tf": 1}}, "df": 4}}, "y": {"docs": {"ml.config.loader.load_config": {"tf": 1}, "ml.config.loader.load_and_validate_config": {"tf": 1}, "ml.config.merge.apply_env_overlay": {"tf": 1}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1.7320508075688772}, "ml.data.processed.processing.hotel_bookings.add_row_id.AddRowIDToHotelBookings": {"tf": 1}, "ml.data.utils.extraction.get_data_suffix_and_format.get_data_suffix_and_format": {"tf": 1}, "ml.data.validation.validate_entity_key.validate_entity_key": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.base.FreezeStrategy.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.merge_key": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.DatasetConfig.ensure_merge_key_list": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.features.prepare_features": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.tabular.strategy.FreezeTabular.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.freeze_strategies.time_series.FreezeTimeSeries.freeze": {"tf": 1.4142135623730951}, "ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}, "ml.feature_freezing.utils.get_strategy.get_strategy": {"tf": 1}, "ml.features.loading.features_and_target.load_features_and_target": {"tf": 2.23606797749979}, "ml.features.loading.get_target.get_target_with_entity_key": {"tf": 2.449489742783178}, "ml.features.loading.resolve_feature_snapshots.resolve_feature_snapshots": {"tf": 1.4142135623730951}, "ml.features.validation.validate_feature_target_entity_key.validate_feature_target_entity_key": {"tf": 2.449489742783178}, "ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1.4142135623730951}, "ml.promotion.getters.get.extract_thresholds": {"tf": 1.4142135623730951}, "ml.promotion.persistence.registry.update_registry_and_archive": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.classification.ClassificationEvaluator.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_model": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1.4142135623730951}, "ml.runners.evaluation.utils.get_entity_keys.get_entity_keys": {"tf": 2.23606797749979}, "ml.runners.evaluation.utils.get_evaluator": {"tf": 1}, "ml.runners.evaluation.utils.get_evaluator.get_evaluator": {"tf": 1.7320508075688772}, "ml.runners.explainability.utils.get_explainer": {"tf": 1}, "ml.runners.explainability.utils.get_explainer.get_explainer": {"tf": 1.7320508075688772}, "ml.runners.training.trainers.base.Trainer.train": {"tf": 1.4142135623730951}, "ml.runners.training.utils.get_trainer": {"tf": 1}, "ml.runners.training.utils.get_trainer.get_trainer": {"tf": 1.7320508075688772}, "ml.search.searchers.catboost.catboost.CatBoostSearcher.search": {"tf": 1.4142135623730951}, "ml.search.utils.get_searcher.get_searcher": {"tf": 1.7320508075688772}, "ml.snapshot_bindings.extraction.get_snapshot_binding": {"tf": 1}, "ml.snapshot_bindings.extraction.get_snapshot_binding.get_and_validate_snapshot_binding": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.__init__": {"tf": 1.7320508075688772}, "ml.targets.base.TargetStrategy.build": {"tf": 1.7320508075688772}, "ml.utils.loaders.read_data": {"tf": 1}}, "df": 42, "s": {"docs": {"ml.config.best_params.unflatten_best_params": {"tf": 1.4142135623730951}, "ml.config.schemas.search_cfg.BroadParamDistributions.to_flat_dict": {"tf": 1}, "ml.data.merge.merge_dataset_into_main.merge_dataset_into_main": {"tf": 1}, "ml.feature_freezing.freeze_strategies.tabular.config.models.TabularFeaturesConfig.required_features_must_equal_operator_names": {"tf": 1}, "ml.io.validation.validate_mapping.ensure_required_fields_present_in_dict": {"tf": 1}, "ml.pipelines.models.PipelineConfig.validate_assumptions_keys": {"tf": 1}, "ml.runners.evaluation.evaluators.classification.metrics.evaluate_split": {"tf": 1.4142135623730951}, "ml.runners.evaluation.evaluators.regression.metrics.evaluate_split": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params": {"tf": 1}, "ml.runners.training.utils.logical_config_checks.validations.validate_allowed_params.validate_allowed_params": {"tf": 1}, "ml.snapshot_bindings.config.models.SnapshotBindingsRegistry": {"tf": 1}}, "df": 11}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ml.feature_freezing.persistence.get_deps.get_deps": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {"ml.runners.evaluation.evaluators.regression.regression.EvaluateRegression.evaluate": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ml.logging_config.add_file_handler": {"tf": 1}, "ml.logging_config.bootstrap_logging": {"tf": 1}, "ml.pipelines.models.PipelineConfig.check_steps_valid": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {"ml.post_promotion.monitoring.feature_drifting.analysis.analyze_ks_result": {"tf": 1.7320508075688772}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.computations.compute_drift": {"tf": 1}, "ml.post_promotion.monitoring.feature_drifting.utils.infer_drift_method": {"tf": 1}}, "df": 4}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {"ml.post_promotion.monitoring.feature_drifting.computations.compute_ks": {"tf": 1}}, "df": 1}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ml.feature_freezing.freeze_strategies.tabular.config.models.ConstraintsConfig": {"tf": 1}}, "df": 1}}}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ml.io.persistence.save_metadata.save_metadata": {"tf": 1.7320508075688772}, "ml.runners.shared.reproducibility.validate_reproducibility.validate_reproducibility": {"tf": 1}, "ml.search.persistence.prepare_metadata.prepare_metadata": {"tf": 1}, "ml.search.searchers.catboost.pipeline.steps.narrow_search.NarrowSearchStep.run": {"tf": 1}, "ml.search.utils.failure_management.save_broad.save_broad": {"tf": 1}, "ml.search.utils.failure_management.save_narrow.save_narrow": {"tf": 1}, "ml.utils.hashing.hash_list.hash_list": {"tf": 1}, "ml.utils.loaders.load_json": {"tf": 1.7320508075688772}, "ml.utils.runtime.save_runtime.save_runtime_snapshot": {"tf": 1}}, "df": 9}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ml.post_promotion.inference.persistence.store_predictions.store_predictions": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ml.runners.training.persistence.artifacts.save_model.save_model": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ml.search.utils.randomized_search.perform_randomized_search": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. diff --git a/docs/api/ml_service/ml_service/backend/configs/modeling/utils/paths.html b/docs/api/ml_service/ml_service/backend/configs/modeling/utils/paths.html index 29a2da08..50576c9f 100644 --- a/docs/api/ml_service/ml_service/backend/configs/modeling/utils/paths.html +++ b/docs/api/ml_service/ml_service/backend/configs/modeling/utils/paths.html @@ -134,7 +134,7 @@

    env = - {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_14644_XYKYZNYMGIVVQOUF', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.112.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'} + {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_25652_DTUCSRKKIFPGDLBT', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'EFC_15184_1262719628': '1', 'EFC_15184_1592913036': '1', 'EFC_15184_2283032206': '1', 'EFC_15184_2775293581': '1', 'EFC_15184_3789132940': '1', 'FPS_BROWSER_APP_PROFILE_STRING': 'Internet Explorer', 'FPS_BROWSER_USER_PROFILE_STRING': 'Default', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SESSIONNAME': 'Console', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.113.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'}
    diff --git a/docs/api/ml_service/ml_service/backend/configs/promotion_thresholds/persistence/save_promotion_thresholds.html b/docs/api/ml_service/ml_service/backend/configs/promotion_thresholds/persistence/save_promotion_thresholds.html index a165cdde..52134096 100644 --- a/docs/api/ml_service/ml_service/backend/configs/promotion_thresholds/persistence/save_promotion_thresholds.html +++ b/docs/api/ml_service/ml_service/backend/configs/promotion_thresholds/persistence/save_promotion_thresholds.html @@ -60,7 +60,7 @@

    2import copy 3from pathlib import Path 4 - 5from ml.promotion.config.models import PromotionThresholds + 5from ml.promotion.config.promotion_thresholds import PromotionThresholds 6 7from ml_service.backend.configs.persistence.save_config import save_config 8 @@ -96,7 +96,7 @@

    def - save_promotion_thresholds( *, thresholds: dict, validated: ml.promotion.config.models.PromotionThresholds, config_path: pathlib.Path, problem_type: str, segment: str) -> None: + save_promotion_thresholds( *, thresholds: dict, validated: ml.promotion.config.promotion_thresholds.PromotionThresholds, config_path: pathlib.Path, problem_type: str, segment: str) -> None: diff --git a/docs/api/ml_service/ml_service/backend/configs/promotion_thresholds/validation/validate_config_payload.html b/docs/api/ml_service/ml_service/backend/configs/promotion_thresholds/validation/validate_config_payload.html index cb4ff2d6..b2f42cb6 100644 --- a/docs/api/ml_service/ml_service/backend/configs/promotion_thresholds/validation/validate_config_payload.html +++ b/docs/api/ml_service/ml_service/backend/configs/promotion_thresholds/validation/validate_config_payload.html @@ -57,7 +57,7 @@

     1"""This module contains the function to validate the incoming configuration payload for promotion thresholds."""
    - 2from ml.promotion.config.models import PromotionThresholds
    + 2from ml.promotion.config.promotion_thresholds import PromotionThresholds
      3
      4
      5def validate_config_payload(payload: dict) -> PromotionThresholds:
    @@ -79,7 +79,7 @@ 

    def - validate_config_payload(payload: dict) -> ml.promotion.config.models.PromotionThresholds: + validate_config_payload( payload: dict) -> ml.promotion.config.promotion_thresholds.PromotionThresholds: diff --git a/docs/api/ml_service/ml_service/backend/main.html b/docs/api/ml_service/ml_service/backend/main.html index 8e835572..018eea2d 100644 --- a/docs/api/ml_service/ml_service/backend/main.html +++ b/docs/api/ml_service/ml_service/backend/main.html @@ -78,12 +78,12 @@

    11from ml_service.backend.routers.data import router as data_router 12from ml_service.backend.routers.dir_viewer import router as dir_viewer_router 13from ml_service.backend.routers.features import router as features_router -14from ml_service.backend.routers.modeling import router as modeling_router -15from ml_service.backend.routers.pipeline_cfg import router as pipeline_cfg_router -16from ml_service.backend.routers.pipelines import router as pipelines_router -17from ml_service.backend.routers.promotion_thresholds import router as promotion_thresholds_router -18from ml_service.backend.routers.scripts import router as scripts_router -19from ml_service.backend.routers.file_viewer import router as file_viewer_router +14from ml_service.backend.routers.file_viewer import router as file_viewer_router +15from ml_service.backend.routers.modeling import router as modeling_router +16from ml_service.backend.routers.pipeline_cfg import router as pipeline_cfg_router +17from ml_service.backend.routers.pipelines import router as pipelines_router +18from ml_service.backend.routers.promotion_thresholds import router as promotion_thresholds_router +19from ml_service.backend.routers.scripts import router as scripts_router 20 21dotenv.load_dotenv(dotenv_path=os.path.join(os.path.dirname(__file__), "..", "..", ".env")) 22 diff --git a/docs/api/ml_service/ml_service/backend/pipelines/execute_pipeline.html b/docs/api/ml_service/ml_service/backend/pipelines/execute_pipeline.html index d9f45cd4..c2b1ed96 100644 --- a/docs/api/ml_service/ml_service/backend/pipelines/execute_pipeline.html +++ b/docs/api/ml_service/ml_service/backend/pipelines/execute_pipeline.html @@ -153,7 +153,7 @@

    env = - {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_14644_XYKYZNYMGIVVQOUF', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.112.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'} + {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_25652_DTUCSRKKIFPGDLBT', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'EFC_15184_1262719628': '1', 'EFC_15184_1592913036': '1', 'EFC_15184_2283032206': '1', 'EFC_15184_2775293581': '1', 'EFC_15184_3789132940': '1', 'FPS_BROWSER_APP_PROFILE_STRING': 'Internet Explorer', 'FPS_BROWSER_USER_PROFILE_STRING': 'Default', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SESSIONNAME': 'Console', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.113.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'}
    diff --git a/docs/api/ml_service/ml_service/backend/pipelines/models/pipelines_cli_args.html b/docs/api/ml_service/ml_service/backend/pipelines/models/pipelines_cli_args.html index 26521b3f..909cb6cf 100644 --- a/docs/api/ml_service/ml_service/backend/pipelines/models/pipelines_cli_args.html +++ b/docs/api/ml_service/ml_service/backend/pipelines/models/pipelines_cli_args.html @@ -33,6 +33,12 @@

    API Documentation

  • LOGGING_LEVEL
  • +
  • + ENV +
  • +
  • + STAGE +
  • RegisterRawSnapshotInput
      @@ -402,6 +408,42 @@

      API Documentation

  • +
  • + InferInput + + +
  • +
  • + MonitorInput + + +
  • @@ -431,143 +473,159 @@

    4from pydantic import BaseModel 5 6LOGGING_LEVEL = Literal["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"] - 7 - 8class RegisterRawSnapshotInput(BaseModel): - 9 """Model for the input of the register_raw_snapshot pipeline.""" - 10 data: str - 11 version: str - 12 snapshot_id: str | None = None - 13 logging_level: LOGGING_LEVEL = "INFO" - 14 owner: str | None = "Sebastijan" - 15 - 16class BuildInterimDatasetInput(BaseModel): - 17 """Model for the input of the build_interim_dataset pipeline.""" - 18 data: str - 19 version: str - 20 raw_snapshot_id: str | None = None - 21 logging_level: LOGGING_LEVEL = "INFO" - 22 owner: str | None = "Sebastijan" - 23 - 24class BuildProcessedDatasetInput(BaseModel): - 25 """Model for the input of the build_processed_dataset pipeline.""" - 26 data: str - 27 version: str - 28 interim_snapshot_id: str | None = None - 29 logging_level: LOGGING_LEVEL = "INFO" - 30 owner: str | None = "Sebastijan" - 31 - 32class FreezeFeaturesInput(BaseModel): - 33 """Model for the input of the freeze_features pipeline.""" - 34 feature_set: str - 35 version: str - 36 snapshot_binding_key: str | None = None - 37 owner: str | None = "Sebastijan" - 38 logging_level: LOGGING_LEVEL = "INFO" - 39 - 40class SearchInput(BaseModel): - 41 """Model for the input of the search pipeline.""" - 42 problem: str - 43 segment: str - 44 version: str - 45 experiment_id: str | None = None - 46 snapshot_binding_key: str | None = None - 47 env: str | None = None - 48 strict: bool | None = True - 49 logging_level: LOGGING_LEVEL = "INFO" - 50 owner: str | None = "Sebastijan" - 51 clean_up_failure_management: bool | None = True - 52 overwrite_existing: bool | None = False - 53 - 54class TrainInput(BaseModel): - 55 """Model for the input of the train pipeline.""" - 56 problem: str - 57 segment: str - 58 version: str - 59 snapshot_binding_key: str | None = None - 60 train_run_id: str | None = None - 61 env: str | None = None - 62 strict: bool | None = True - 63 experiment_id: str | None = None - 64 logging_level: LOGGING_LEVEL = "INFO" - 65 clean_up_failure_management: bool | None = True - 66 overwrite_existing: bool | None = False - 67 - 68class EvaluateInput(BaseModel): - 69 """Model for the input of the evaluate pipeline.""" - 70 problem: str - 71 segment: str - 72 version: str - 73 env: str | None = None - 74 strict: bool | None = True - 75 experiment_id: str | None = None - 76 train_id: str | None = None - 77 logging_level: LOGGING_LEVEL = "INFO" - 78 - 79class ExplainInput(BaseModel): - 80 """Model for the input of the explain pipeline.""" - 81 problem: str - 82 segment: str - 83 version: str - 84 env: str | None = None - 85 strict: bool | None = True - 86 experiment_id: str | None = None - 87 train_id: str | None = None - 88 logging_level: LOGGING_LEVEL = "INFO" - 89 top_k: int | None = None - 90 - 91class PromoteInput(BaseModel): - 92 """Model for the input of the promote pipeline.""" - 93 problem: str - 94 segment: str - 95 version: str - 96 experiment_id: str - 97 train_run_id: str - 98 eval_run_id: str - 99 explain_run_id: str -100 stage: str -101 logging_level: LOGGING_LEVEL = "INFO" -102 -103class ExecuteAllDataPreprocessingInput(BaseModel): -104 """Model for the input of the execute_all_data_preprocessing pipeline.""" -105 skip_if_existing: bool | None = True -106 -107class FreezeAllFeatureSetsInput(BaseModel): -108 """Model for the input of the freeze_all_feature_sets pipeline.""" -109 logging_level: LOGGING_LEVEL = "INFO" -110 owner: str | None = "Sebastijan" -111 skip_if_existing: bool | None = True -112 -113class ExecuteExperimentWithLatestInput(BaseModel): -114 """Model for the input of the execute_experiment_with_latest_input pipeline.""" -115 problem: str -116 segment: str -117 version: str -118 env: str | None = "dev" -119 strict: bool | None = True -120 logging_level: LOGGING_LEVEL = "INFO" -121 owner: str | None = "Sebastijan" -122 clean_up_failure_management: bool | None = True -123 experiment_id: str | None = None -124 overwrite_existing: bool | None = False -125 top_k: int | None = None -126 -127class ExecuteAllExperimentsWithLatestInput(BaseModel): -128 """Model for the input of the execute_all_experiments_with_latest_input pipeline.""" -129 env: str | None = "dev" -130 strict: bool | None = True -131 logging_level: LOGGING_LEVEL = "INFO" -132 owner: str | None = "Sebastijan" -133 clean_up_failure_management: bool | None = True -134 overwrite_existing: bool | None = False -135 top_k: int | None = None -136 skip_if_existing: bool | None = True -137 -138class RunAllWorkflowsInput(BaseModel): -139 """Model for the input of the run_all_workflows pipeline.""" -140 env: str | None = "dev" -141 logging_level: LOGGING_LEVEL = "INFO" -142 owner: str | None = "Sebastijan" -143 skip_if_existing: bool | None = True + 7ENV = Literal["dev", "test", "prod", "default"] + 8STAGE = Literal["staging", "production"] + 9 + 10class RegisterRawSnapshotInput(BaseModel): + 11 """Model for the input of the register_raw_snapshot pipeline.""" + 12 data: str + 13 version: str + 14 snapshot_id: str | None = None + 15 logging_level: LOGGING_LEVEL = "INFO" + 16 owner: str | None = "Sebastijan" + 17 + 18class BuildInterimDatasetInput(BaseModel): + 19 """Model for the input of the build_interim_dataset pipeline.""" + 20 data: str + 21 version: str + 22 raw_snapshot_id: str | None = None + 23 logging_level: LOGGING_LEVEL = "INFO" + 24 owner: str | None = "Sebastijan" + 25 + 26class BuildProcessedDatasetInput(BaseModel): + 27 """Model for the input of the build_processed_dataset pipeline.""" + 28 data: str + 29 version: str + 30 interim_snapshot_id: str | None = None + 31 logging_level: LOGGING_LEVEL = "INFO" + 32 owner: str | None = "Sebastijan" + 33 + 34class FreezeFeaturesInput(BaseModel): + 35 """Model for the input of the freeze_features pipeline.""" + 36 feature_set: str + 37 version: str + 38 snapshot_binding_key: str | None = None + 39 owner: str | None = "Sebastijan" + 40 logging_level: LOGGING_LEVEL = "INFO" + 41 + 42class SearchInput(BaseModel): + 43 """Model for the input of the search pipeline.""" + 44 problem: str + 45 segment: str + 46 version: str + 47 experiment_id: str | None = None + 48 snapshot_binding_key: str | None = None + 49 env: ENV = "default" + 50 strict: bool | None = True + 51 logging_level: LOGGING_LEVEL = "INFO" + 52 owner: str | None = "Sebastijan" + 53 clean_up_failure_management: bool | None = True + 54 overwrite_existing: bool | None = False + 55 + 56class TrainInput(BaseModel): + 57 """Model for the input of the train pipeline.""" + 58 problem: str + 59 segment: str + 60 version: str + 61 snapshot_binding_key: str | None = None + 62 train_run_id: str | None = None + 63 env: ENV = "default" + 64 strict: bool | None = True + 65 experiment_id: str | None = None + 66 logging_level: LOGGING_LEVEL = "INFO" + 67 clean_up_failure_management: bool | None = True + 68 overwrite_existing: bool | None = False + 69 + 70class EvaluateInput(BaseModel): + 71 """Model for the input of the evaluate pipeline.""" + 72 problem: str + 73 segment: str + 74 version: str + 75 env: ENV = "default" + 76 strict: bool | None = True + 77 experiment_id: str | None = None + 78 train_id: str | None = None + 79 logging_level: LOGGING_LEVEL = "INFO" + 80 + 81class ExplainInput(BaseModel): + 82 """Model for the input of the explain pipeline.""" + 83 problem: str + 84 segment: str + 85 version: str + 86 env: ENV = "default" + 87 strict: bool | None = True + 88 experiment_id: str | None = None + 89 train_id: str | None = None + 90 logging_level: LOGGING_LEVEL = "INFO" + 91 top_k: int | None = None + 92 + 93class PromoteInput(BaseModel): + 94 """Model for the input of the promote pipeline.""" + 95 problem: str + 96 segment: str + 97 version: str + 98 experiment_id: str + 99 train_run_id: str +100 eval_run_id: str +101 explain_run_id: str +102 stage: STAGE = "production" +103 logging_level: LOGGING_LEVEL = "INFO" +104 +105class ExecuteAllDataPreprocessingInput(BaseModel): +106 """Model for the input of the execute_all_data_preprocessing pipeline.""" +107 skip_if_existing: bool | None = True +108 +109class FreezeAllFeatureSetsInput(BaseModel): +110 """Model for the input of the freeze_all_feature_sets pipeline.""" +111 logging_level: LOGGING_LEVEL = "INFO" +112 owner: str | None = "Sebastijan" +113 skip_if_existing: bool | None = True +114 +115class ExecuteExperimentWithLatestInput(BaseModel): +116 """Model for the input of the execute_experiment_with_latest_input pipeline.""" +117 problem: str +118 segment: str +119 version: str +120 env: ENV = "dev" +121 strict: bool | None = True +122 logging_level: LOGGING_LEVEL = "INFO" +123 owner: str | None = "Sebastijan" +124 clean_up_failure_management: bool | None = True +125 experiment_id: str | None = None +126 overwrite_existing: bool | None = False +127 top_k: int | None = None +128 +129class ExecuteAllExperimentsWithLatestInput(BaseModel): +130 """Model for the input of the execute_all_experiments_with_latest_input pipeline.""" +131 env: ENV = "dev" +132 strict: bool | None = True +133 logging_level: LOGGING_LEVEL = "INFO" +134 owner: str | None = "Sebastijan" +135 clean_up_failure_management: bool | None = True +136 overwrite_existing: bool | None = False +137 top_k: int | None = None +138 skip_if_existing: bool | None = True +139 +140class RunAllWorkflowsInput(BaseModel): +141 """Model for the input of the run_all_workflows pipeline.""" +142 env: ENV = "dev" +143 logging_level: LOGGING_LEVEL = "INFO" +144 owner: str | None = "Sebastijan" +145 skip_if_existing: bool | None = True +146 +147class InferInput(BaseModel): +148 """Model for the input of the inference pipeline.""" +149 problem: str +150 segment: str +151 snapshot_bindings_id: str +152 logging_level: LOGGING_LEVEL = "INFO" +153 +154class MonitorInput(BaseModel): +155 """Model for the input of the monitoring pipeline.""" +156 problem: str +157 segment: str +158 inference_run_id: str | None = None +159 logging_level: LOGGING_LEVEL = "INFO"

    @@ -583,6 +641,30 @@

    + +
    +
    + ENV = +typing.Literal['dev', 'test', 'prod', 'default'] + + +
    + + + + +
    +
    +
    + STAGE = +typing.Literal['staging', 'production'] + + +
    + + + +
    @@ -595,13 +677,13 @@

    -
     9class RegisterRawSnapshotInput(BaseModel):
    -10    """Model for the input of the register_raw_snapshot pipeline."""
    -11    data: str
    -12    version: str
    -13    snapshot_id: str | None = None
    -14    logging_level: LOGGING_LEVEL = "INFO"
    -15    owner: str | None = "Sebastijan"
    +            
    11class RegisterRawSnapshotInput(BaseModel):
    +12    """Model for the input of the register_raw_snapshot pipeline."""
    +13    data: str
    +14    version: str
    +15    snapshot_id: str | None = None
    +16    logging_level: LOGGING_LEVEL = "INFO"
    +17    owner: str | None = "Sebastijan"
     
    @@ -681,13 +763,13 @@

    -
    17class BuildInterimDatasetInput(BaseModel):
    -18    """Model for the input of the build_interim_dataset pipeline."""
    -19    data: str
    -20    version: str
    -21    raw_snapshot_id: str | None = None
    -22    logging_level: LOGGING_LEVEL = "INFO"
    -23    owner: str | None = "Sebastijan"
    +            
    19class BuildInterimDatasetInput(BaseModel):
    +20    """Model for the input of the build_interim_dataset pipeline."""
    +21    data: str
    +22    version: str
    +23    raw_snapshot_id: str | None = None
    +24    logging_level: LOGGING_LEVEL = "INFO"
    +25    owner: str | None = "Sebastijan"
     
    @@ -767,13 +849,13 @@

    -
    25class BuildProcessedDatasetInput(BaseModel):
    -26    """Model for the input of the build_processed_dataset pipeline."""
    -27    data: str
    -28    version: str
    -29    interim_snapshot_id: str | None = None
    -30    logging_level: LOGGING_LEVEL = "INFO"
    -31    owner: str | None = "Sebastijan"
    +            
    27class BuildProcessedDatasetInput(BaseModel):
    +28    """Model for the input of the build_processed_dataset pipeline."""
    +29    data: str
    +30    version: str
    +31    interim_snapshot_id: str | None = None
    +32    logging_level: LOGGING_LEVEL = "INFO"
    +33    owner: str | None = "Sebastijan"
     
    @@ -853,13 +935,13 @@

    -
    33class FreezeFeaturesInput(BaseModel):
    -34    """Model for the input of the freeze_features pipeline."""
    -35    feature_set: str
    -36    version: str
    -37    snapshot_binding_key: str | None = None
    -38    owner: str | None = "Sebastijan"
    -39    logging_level: LOGGING_LEVEL = "INFO"
    +            
    35class FreezeFeaturesInput(BaseModel):
    +36    """Model for the input of the freeze_features pipeline."""
    +37    feature_set: str
    +38    version: str
    +39    snapshot_binding_key: str | None = None
    +40    owner: str | None = "Sebastijan"
    +41    logging_level: LOGGING_LEVEL = "INFO"
     
    @@ -939,19 +1021,19 @@

    -
    41class SearchInput(BaseModel):
    -42    """Model for the input of the search pipeline."""
    -43    problem: str
    -44    segment: str
    -45    version: str
    -46    experiment_id: str | None = None
    -47    snapshot_binding_key: str | None = None
    -48    env: str | None = None
    -49    strict: bool | None = True
    -50    logging_level: LOGGING_LEVEL = "INFO"
    -51    owner: str | None = "Sebastijan"
    -52    clean_up_failure_management: bool | None = True
    -53    overwrite_existing: bool | None = False
    +            
    43class SearchInput(BaseModel):
    +44    """Model for the input of the search pipeline."""
    +45    problem: str
    +46    segment: str
    +47    version: str
    +48    experiment_id: str | None = None
    +49    snapshot_binding_key: str | None = None
    +50    env: ENV = "default"
    +51    strict: bool | None = True
    +52    logging_level: LOGGING_LEVEL = "INFO"
    +53    owner: str | None = "Sebastijan"
    +54    clean_up_failure_management: bool | None = True
    +55    overwrite_existing: bool | None = False
     
    @@ -1021,8 +1103,8 @@

    - env: str | None = -None + env: Literal['dev', 'test', 'prod', 'default'] = +'default'
    @@ -1103,19 +1185,19 @@

    -
    55class TrainInput(BaseModel):
    -56    """Model for the input of the train pipeline."""
    -57    problem: str
    -58    segment: str
    -59    version: str
    -60    snapshot_binding_key: str | None = None
    -61    train_run_id: str | None = None
    -62    env: str | None = None
    -63    strict: bool | None = True
    -64    experiment_id: str | None = None
    -65    logging_level: LOGGING_LEVEL = "INFO"
    -66    clean_up_failure_management: bool | None = True
    -67    overwrite_existing: bool | None = False
    +            
    57class TrainInput(BaseModel):
    +58    """Model for the input of the train pipeline."""
    +59    problem: str
    +60    segment: str
    +61    version: str
    +62    snapshot_binding_key: str | None = None
    +63    train_run_id: str | None = None
    +64    env: ENV = "default"
    +65    strict: bool | None = True
    +66    experiment_id: str | None = None
    +67    logging_level: LOGGING_LEVEL = "INFO"
    +68    clean_up_failure_management: bool | None = True
    +69    overwrite_existing: bool | None = False
     
    @@ -1185,8 +1267,8 @@

    - env: str | None = -None + env: Literal['dev', 'test', 'prod', 'default'] = +'default'
    @@ -1267,16 +1349,16 @@

    -
    69class EvaluateInput(BaseModel):
    -70    """Model for the input of the evaluate pipeline."""
    -71    problem: str
    -72    segment: str
    -73    version: str
    -74    env: str | None = None
    -75    strict: bool | None = True
    -76    experiment_id: str | None = None
    -77    train_id: str | None = None
    -78    logging_level: LOGGING_LEVEL = "INFO"
    +            
    71class EvaluateInput(BaseModel):
    +72    """Model for the input of the evaluate pipeline."""
    +73    problem: str
    +74    segment: str
    +75    version: str
    +76    env: ENV = "default"
    +77    strict: bool | None = True
    +78    experiment_id: str | None = None
    +79    train_id: str | None = None
    +80    logging_level: LOGGING_LEVEL = "INFO"
     
    @@ -1322,8 +1404,8 @@

    - env: str | None = -None + env: Literal['dev', 'test', 'prod', 'default'] = +'default'
    @@ -1392,17 +1474,17 @@

    -
    80class ExplainInput(BaseModel):
    -81    """Model for the input of the explain pipeline."""
    -82    problem: str
    -83    segment: str
    -84    version: str
    -85    env: str | None = None
    -86    strict: bool | None = True
    -87    experiment_id: str | None = None
    -88    train_id: str | None = None
    -89    logging_level: LOGGING_LEVEL = "INFO"
    -90    top_k: int | None = None
    +            
    82class ExplainInput(BaseModel):
    +83    """Model for the input of the explain pipeline."""
    +84    problem: str
    +85    segment: str
    +86    version: str
    +87    env: ENV = "default"
    +88    strict: bool | None = True
    +89    experiment_id: str | None = None
    +90    train_id: str | None = None
    +91    logging_level: LOGGING_LEVEL = "INFO"
    +92    top_k: int | None = None
     
    @@ -1448,8 +1530,8 @@

    - env: str | None = -None + env: Literal['dev', 'test', 'prod', 'default'] = +'default'
    @@ -1530,17 +1612,17 @@

    -
     92class PromoteInput(BaseModel):
    - 93    """Model for the input of the promote pipeline."""
    - 94    problem: str
    - 95    segment: str
    - 96    version: str
    - 97    experiment_id: str
    - 98    train_run_id: str
    - 99    eval_run_id: str
    -100    explain_run_id: str
    -101    stage: str
    -102    logging_level: LOGGING_LEVEL = "INFO"
    +            
     94class PromoteInput(BaseModel):
    + 95    """Model for the input of the promote pipeline."""
    + 96    problem: str
    + 97    segment: str
    + 98    version: str
    + 99    experiment_id: str
    +100    train_run_id: str
    +101    eval_run_id: str
    +102    explain_run_id: str
    +103    stage: STAGE = "production"
    +104    logging_level: LOGGING_LEVEL = "INFO"
     
    @@ -1634,8 +1716,8 @@

    - stage: str = -PydanticUndefined + stage: Literal['staging', 'production'] = +'production'
    @@ -1668,9 +1750,9 @@

    -
    104class ExecuteAllDataPreprocessingInput(BaseModel):
    -105    """Model for the input of the execute_all_data_preprocessing pipeline."""
    -106    skip_if_existing: bool | None = True
    +            
    106class ExecuteAllDataPreprocessingInput(BaseModel):
    +107    """Model for the input of the execute_all_data_preprocessing pipeline."""
    +108    skip_if_existing: bool | None = True
     
    @@ -1702,11 +1784,11 @@

    -
    108class FreezeAllFeatureSetsInput(BaseModel):
    -109    """Model for the input of the freeze_all_feature_sets pipeline."""
    -110    logging_level: LOGGING_LEVEL = "INFO"
    -111    owner: str | None = "Sebastijan"
    -112    skip_if_existing: bool | None = True
    +            
    110class FreezeAllFeatureSetsInput(BaseModel):
    +111    """Model for the input of the freeze_all_feature_sets pipeline."""
    +112    logging_level: LOGGING_LEVEL = "INFO"
    +113    owner: str | None = "Sebastijan"
    +114    skip_if_existing: bool | None = True
     
    @@ -1762,19 +1844,19 @@

    -
    114class ExecuteExperimentWithLatestInput(BaseModel):
    -115    """Model for the input of the execute_experiment_with_latest_input pipeline."""
    -116    problem: str
    -117    segment: str
    -118    version: str
    -119    env: str | None = "dev"
    -120    strict: bool | None = True
    -121    logging_level: LOGGING_LEVEL = "INFO"
    -122    owner: str | None = "Sebastijan"
    -123    clean_up_failure_management: bool | None = True
    -124    experiment_id: str | None = None
    -125    overwrite_existing: bool | None = False
    -126    top_k: int | None = None
    +            
    116class ExecuteExperimentWithLatestInput(BaseModel):
    +117    """Model for the input of the execute_experiment_with_latest_input pipeline."""
    +118    problem: str
    +119    segment: str
    +120    version: str
    +121    env: ENV = "dev"
    +122    strict: bool | None = True
    +123    logging_level: LOGGING_LEVEL = "INFO"
    +124    owner: str | None = "Sebastijan"
    +125    clean_up_failure_management: bool | None = True
    +126    experiment_id: str | None = None
    +127    overwrite_existing: bool | None = False
    +128    top_k: int | None = None
     
    @@ -1820,7 +1902,7 @@

    - env: str | None = + env: Literal['dev', 'test', 'prod', 'default'] = 'dev' @@ -1926,16 +2008,16 @@

    -
    128class ExecuteAllExperimentsWithLatestInput(BaseModel):
    -129    """Model for the input of the execute_all_experiments_with_latest_input pipeline."""
    -130    env: str | None = "dev"
    -131    strict: bool | None = True
    -132    logging_level: LOGGING_LEVEL = "INFO"
    -133    owner: str | None = "Sebastijan"
    -134    clean_up_failure_management: bool | None = True
    -135    overwrite_existing: bool | None = False
    -136    top_k: int | None = None
    -137    skip_if_existing: bool | None = True
    +            
    130class ExecuteAllExperimentsWithLatestInput(BaseModel):
    +131    """Model for the input of the execute_all_experiments_with_latest_input pipeline."""
    +132    env: ENV = "dev"
    +133    strict: bool | None = True
    +134    logging_level: LOGGING_LEVEL = "INFO"
    +135    owner: str | None = "Sebastijan"
    +136    clean_up_failure_management: bool | None = True
    +137    overwrite_existing: bool | None = False
    +138    top_k: int | None = None
    +139    skip_if_existing: bool | None = True
     
    @@ -1945,7 +2027,7 @@

    - env: str | None = + env: Literal['dev', 'test', 'prod', 'default'] = 'dev' @@ -2051,12 +2133,12 @@

    -
    139class RunAllWorkflowsInput(BaseModel):
    -140    """Model for the input of the run_all_workflows pipeline."""
    -141    env: str | None = "dev"
    -142    logging_level: LOGGING_LEVEL = "INFO"
    -143    owner: str | None = "Sebastijan"
    -144    skip_if_existing: bool | None = True
    +            
    141class RunAllWorkflowsInput(BaseModel):
    +142    """Model for the input of the run_all_workflows pipeline."""
    +143    env: ENV = "dev"
    +144    logging_level: LOGGING_LEVEL = "INFO"
    +145    owner: str | None = "Sebastijan"
    +146    skip_if_existing: bool | None = True
     
    @@ -2066,7 +2148,7 @@

    - env: str | None = + env: Literal['dev', 'test', 'prod', 'default'] = 'dev' @@ -2111,6 +2193,152 @@

    +

    + +
    + +
    + + class + InferInput(pydantic.main.BaseModel): + + + +
    + +
    148class InferInput(BaseModel):
    +149    """Model for the input of the inference pipeline."""
    +150    problem: str
    +151    segment: str
    +152    snapshot_bindings_id: str
    +153    logging_level: LOGGING_LEVEL = "INFO"
    +
    + + +

    Model for the input of the inference pipeline.

    +
    + + +
    +
    + problem: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + segment: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + snapshot_bindings_id: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + logging_level: Literal['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'] = +'INFO' + + +
    + + + + +
    +
    +
    + +
    + + class + MonitorInput(pydantic.main.BaseModel): + + + +
    + +
    155class MonitorInput(BaseModel):
    +156    """Model for the input of the monitoring pipeline."""
    +157    problem: str
    +158    segment: str
    +159    inference_run_id: str | None = None
    +160    logging_level: LOGGING_LEVEL = "INFO"
    +
    + + +

    Model for the input of the monitoring pipeline.

    +
    + + +
    +
    + problem: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + segment: str = +PydanticUndefined + + +
    + + + + +
    +
    +
    + inference_run_id: str | None = +None + + +
    + + + + +
    +
    +
    + logging_level: Literal['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'] = +'INFO' + + +
    + + + +
    diff --git a/docs/api/ml_service/ml_service/backend/routers/data.html b/docs/api/ml_service/ml_service/backend/routers/data.html index 5c399cf5..9b757d28 100644 --- a/docs/api/ml_service/ml_service/backend/routers/data.html +++ b/docs/api/ml_service/ml_service/backend/routers/data.html @@ -208,7 +208,7 @@

    env = - {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_14644_XYKYZNYMGIVVQOUF', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.112.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'} + {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_25652_DTUCSRKKIFPGDLBT', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'EFC_15184_1262719628': '1', 'EFC_15184_1592913036': '1', 'EFC_15184_2283032206': '1', 'EFC_15184_2775293581': '1', 'EFC_15184_3789132940': '1', 'FPS_BROWSER_APP_PROFILE_STRING': 'Internet Explorer', 'FPS_BROWSER_USER_PROFILE_STRING': 'Default', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SESSIONNAME': 'Console', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.113.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'}
    diff --git a/docs/api/ml_service/ml_service/backend/routers/features.html b/docs/api/ml_service/ml_service/backend/routers/features.html index ef98b82d..ef5ccd1e 100644 --- a/docs/api/ml_service/ml_service/backend/routers/features.html +++ b/docs/api/ml_service/ml_service/backend/routers/features.html @@ -196,7 +196,7 @@

    env = - {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_14644_XYKYZNYMGIVVQOUF', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.112.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'} + {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_25652_DTUCSRKKIFPGDLBT', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'EFC_15184_1262719628': '1', 'EFC_15184_1592913036': '1', 'EFC_15184_2283032206': '1', 'EFC_15184_2775293581': '1', 'EFC_15184_3789132940': '1', 'FPS_BROWSER_APP_PROFILE_STRING': 'Internet Explorer', 'FPS_BROWSER_USER_PROFILE_STRING': 'Default', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SESSIONNAME': 'Console', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.113.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'}
    diff --git a/docs/api/ml_service/ml_service/backend/routers/pipeline_cfg.html b/docs/api/ml_service/ml_service/backend/routers/pipeline_cfg.html index 8a6db75e..84e227ca 100644 --- a/docs/api/ml_service/ml_service/backend/routers/pipeline_cfg.html +++ b/docs/api/ml_service/ml_service/backend/routers/pipeline_cfg.html @@ -194,7 +194,7 @@

    env = - {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_14644_XYKYZNYMGIVVQOUF', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.112.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'} + {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\Sebastijan\\AppData\\Roaming', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134083785054446258', 'CHROME_CRASHPAD_PIPE_NAME': '\\\\.\\pipe\\crashpad_25652_DTUCSRKKIFPGDLBT', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'DESKTOP-U1KTCME', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONDA_DEFAULT_ENV': 'hotel_management', 'CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', 'CONDA_PREFIX': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management', 'CONDA_PREFIX_1': 'C:\\Users\\Sebastijan\\anaconda3', 'CONDA_PROMPT_MODIFIER': '(hotel_management) ', 'CONDA_PYTHON_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\python.exe', 'CONDA_SHLVL': '2', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'EFC_15184_1262719628': '1', 'EFC_15184_1592913036': '1', 'EFC_15184_2283032206': '1', 'EFC_15184_2775293581': '1', 'EFC_15184_3789132940': '1', 'FPS_BROWSER_APP_PROFILE_STRING': 'Internet Explorer', 'FPS_BROWSER_USER_PROFILE_STRING': 'Default', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\Sebastijan', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk-17.0.18', 'LOCALAPPDATA': 'C:\\Users\\Sebastijan\\AppData\\Local', 'LOGONSERVER': '\\\\DESKTOP-U1KTCME', 'NUMBER_OF_PROCESSORS': '20', 'ONEDRIVE': 'C:\\Users\\Sebastijan\\OneDrive', 'OS': 'Windows_NT', 'PATH': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\mingw-w64\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\usr\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\bin;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Scripts;C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\bin;C:\\Users\\Sebastijan\\anaconda3\\condabin;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand;c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Python314\\Scripts;C:\\Python314;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\NVIDIA Corporation\\NVIDIA App\\NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\Git\\cmd;C:\\Program Files\\cursor\\resources\\app\\bin;C:\\Program Files\\nodejs;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Program Files\\Amazon\\AWSCLIV2;C:\\Users\\Sebastijan\\.local\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Ollama;C:\\Users\\Sebastijan\\AppData\\Roaming\\npm;c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\scripts\\noConfigScripts', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 183 Stepping 1, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': 'b701', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\Sebastijan\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PUBLIC': 'C:\\Users\\Public', 'SESSIONNAME': 'Console', 'SSL_CERT_DIR': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\certs', 'SSL_CERT_FILE': 'C:\\Users\\Sebastijan\\anaconda3\\envs\\hotel_management\\Library\\ssl\\cacert.pem', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\SEBAST~1\\AppData\\Local\\Temp', 'USERDOMAIN': 'DESKTOP-U1KTCME', 'USERDOMAIN_ROAMINGPROFILE': 'DESKTOP-U1KTCME', 'USERNAME': 'Sebastijan', 'USERPROFILE': 'C:\\Users\\Sebastijan', 'VSCODE_PYTHON_AUTOACTIVATE_GUARD': '1', 'WINDIR': 'C:\\WINDOWS', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.113.0', 'LANG': 'en_US.UTF-8', 'COLORTERM': 'truecolor', 'PYDEVD_DISABLE_FILE_VALIDATION': '1', 'VSCODE_DEBUGPY_ADAPTER_ENDPOINTS': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\.noConfigDebugAdapterEndpoints\\endpoint-f348b40ac5bd0224.txt', 'BUNDLED_DEBUGPY_PATH': 'c:\\Users\\Sebastijan\\.vscode\\extensions\\ms-python.debugpy-2025.18.0-win32-x64\\bundled\\libs\\debugpy', 'GIT_ASKPASS': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass.sh', 'VSCODE_GIT_ASKPASS_NODE': 'C:\\Users\\Sebastijan\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe', 'VSCODE_GIT_ASKPASS_EXTRA_ARGS': '', 'VSCODE_GIT_ASKPASS_MAIN': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\globalStorage\\vscode.git\\askpass\\493597c785d4c5cb\\askpass-main.js', 'VSCODE_GIT_IPC_HANDLE': '\\\\.\\pipe\\vscode-git-9487516d7f-sock', 'PYTHONSTARTUP': 'c:\\Users\\Sebastijan\\AppData\\Roaming\\Code\\User\\workspaceStorage\\31d1dc59dd6f4449303261d0bbc38c87\\ms-python.python\\pythonrc.py', 'PYTHON_BASIC_REPL': '1', 'VSCODE_INJECTION': '1', 'XML_CATALOG_FILES': 'file:///C:/Users/Sebastijan/anaconda3/envs/hotel_management/etc/xml/catalog', '_CONDA_EXE': 'C:\\Users\\Sebastijan\\anaconda3\\Scripts\\conda.exe', '_CONDA_ROOT': 'C:\\Users\\Sebastijan\\anaconda3', '__CONDA_OPENSSL_CERT_DIR_SET': '1', '__CONDA_OPENSSL_CERT_FILE_SET': '1', 'PYTHONPATH': 'C:\\Users\\Sebastijan\\Documents\\hotel_management'}
    diff --git a/docs/api/ml_service/ml_service/backend/routers/pipelines.html b/docs/api/ml_service/ml_service/backend/routers/pipelines.html index 7ee4e81c..1f76e747 100644 --- a/docs/api/ml_service/ml_service/backend/routers/pipelines.html +++ b/docs/api/ml_service/ml_service/backend/routers/pipelines.html @@ -75,6 +75,12 @@

    API Documentation

  • run_all_workflows
  • +
  • + infer +
  • +
  • + monitor +
  • @@ -115,154 +121,176 @@

    15 ExplainInput, 16 FreezeAllFeatureSetsInput, 17 FreezeFeaturesInput, - 18 PromoteInput, - 19 RegisterRawSnapshotInput, - 20 RunAllWorkflowsInput, - 21 SearchInput, - 22 TrainInput, - 23) - 24 - 25router: APIRouter = APIRouter(prefix="/pipelines", tags=["pipelines"]) + 18 InferInput, + 19 MonitorInput, + 20 PromoteInput, + 21 RegisterRawSnapshotInput, + 22 RunAllWorkflowsInput, + 23 SearchInput, + 24 TrainInput, + 25) 26 - 27@router.post("/register_raw_snapshot", status_code=200) - 28@limiter.limit("1/30seconds") - 29def register_raw_snapshot(payload: Annotated[RegisterRawSnapshotInput, Body(...)], request: Request): # type: ignore - 30 """Registers a raw snapshot by executing the corresponding pipeline.""" - 31 return execute_pipeline( - 32 module_path="pipelines.data.register_raw_snapshot", - 33 payload=payload, - 34 boolean_args=[], - 35 ) - 36 - 37@router.post("/build_interim_dataset", status_code=200) - 38@limiter.limit("1/30seconds") - 39def build_interim_dataset(payload: Annotated[BuildInterimDatasetInput, Body(...)], request: Request): # type: ignore - 40 """Builds an interim dataset by executing the corresponding pipeline.""" - 41 return execute_pipeline( - 42 module_path="pipelines.data.build_interim_dataset", - 43 payload=payload, - 44 boolean_args=[], - 45 ) - 46 - 47@router.post("/build_processed_dataset", status_code=200) - 48@limiter.limit("1/30seconds") - 49def build_processed_dataset(payload: Annotated[BuildProcessedDatasetInput, Body(...)], request: Request): # type: ignore - 50 """Builds a processed dataset by executing the corresponding pipeline.""" - 51 return execute_pipeline( - 52 module_path="pipelines.data.build_processed_dataset", - 53 payload=payload, - 54 boolean_args=[], - 55 ) - 56 - 57@router.post("/freeze_feature_set", status_code=200) - 58@limiter.limit("1/15seconds") - 59def freeze_feature_set(payload: Annotated[FreezeFeaturesInput, Body(...)], request: Request): # type: ignore - 60 """Freezes a feature set by executing the corresponding pipeline.""" - 61 return execute_pipeline( - 62 module_path="pipelines.features.freeze", - 63 payload=payload, - 64 boolean_args=[], - 65 ) - 66 - 67@router.post("/search", status_code=200) - 68@limiter.limit("1/minute") - 69def search(payload: Annotated[SearchInput, Body(...)], request: Request): # type: ignore - 70 """Searches for optimal hyperparameters by executing the corresponding pipeline.""" - 71 return execute_pipeline( - 72 module_path="pipelines.search.search", - 73 payload=payload, - 74 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], - 75 ) - 76 - 77@router.post("/train", status_code=200) - 78@limiter.limit("1/minute") - 79def train(payload: Annotated[TrainInput, Body(...)], request: Request): # type: ignore - 80 """Trains a model by executing the corresponding pipeline.""" - 81 return execute_pipeline( - 82 module_path="pipelines.runners.train", - 83 payload=payload, - 84 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], - 85 ) - 86 - 87@router.post("/evaluate", status_code=200) - 88@limiter.limit("1/30seconds") - 89def evaluate(payload: Annotated[EvaluateInput, Body(...)], request: Request): # type: ignore - 90 """Evaluates a model by executing the corresponding pipeline.""" - 91 return execute_pipeline( - 92 module_path="pipelines.runners.evaluate", - 93 payload=payload, - 94 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], - 95 ) - 96 - 97@router.post("/explain", status_code=200) - 98@limiter.limit("1/30seconds") - 99def explain(payload: Annotated[ExplainInput, Body(...)], request: Request): # type: ignore -100 """Explains a model by executing the corresponding pipeline.""" -101 return execute_pipeline( -102 module_path="pipelines.runners.explain", -103 payload=payload, -104 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], -105 ) -106 -107@router.post("/promote", status_code=200) -108@limiter.limit("1/minute") -109def promote(payload: Annotated[PromoteInput, Body(...)], request: Request): # type: ignore -110 """Executes the promotion pipeline.""" -111 return execute_pipeline( -112 module_path="pipelines.promotion.promote", -113 payload=payload, -114 boolean_args=[], -115 ) -116 -117@router.post("/execute_all_data_preprocessing", status_code=200) -118@limiter.limit("1/10minutes; 3/hour") -119def execute_all_data_preprocessing(payload: Annotated[ExecuteAllDataPreprocessingInput, Body(...)], request: Request): # type: ignore -120 """Executes all data preprocessing pipelines.""" -121 return execute_pipeline( -122 module_path="pipelines.orchestration.data.execute_all_data_preprocessing", -123 payload=payload, -124 boolean_args=[], -125 ) -126 -127@router.post("/freeze_all_feature_sets", status_code=200) -128@limiter.limit("1/10minutes") -129def freeze_all_feature_sets(payload: Annotated[FreezeAllFeatureSetsInput, Body(...)], request: Request): # type: ignore -130 """Executes the pipeline to freeze all feature sets.""" -131 return execute_pipeline( -132 module_path="pipelines.orchestration.features.freeze_all_feature_sets", -133 payload=payload, -134 boolean_args=[], -135 ) -136 -137@router.post("/execute_experiment_with_latest", status_code=200) -138@limiter.limit("1/10minutes; 3/hour") -139def execute_experiment_with_latest(payload: Annotated[ExecuteExperimentWithLatestInput, Body(...)], request: Request): # type: ignore -140 """Executes the execute experiment with latest pipeline.""" -141 return execute_pipeline( -142 module_path="pipelines.orchestration.experiments.execute_experiment_with_latest", -143 payload=payload, -144 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], -145 ) -146 -147@router.post("/execute_all_experiments_with_latest", status_code=200) -148@limiter.limit("1/hour; 5/day") -149def execute_all_experiments_with_latest(payload: Annotated[ExecuteAllExperimentsWithLatestInput, Body(...)], request: Request): # type: ignore -150 """Executes the execute all experiments with latest pipeline.""" -151 return execute_pipeline( -152 module_path="pipelines.orchestration.experiments.execute_all_experiments_with_latest", -153 payload=payload, -154 boolean_args=[], -155 ) -156 -157@router.post("/run_all_workflows", status_code=200) -158@limiter.limit("1/hour; 5/day") -159def run_all_workflows(payload: Annotated[RunAllWorkflowsInput, Body(...)], request: Request): # type: ignore -160 """Executes the run all workflows pipeline.""" -161 return execute_pipeline( -162 module_path="pipelines.orchestration.master.run_all_workflows", -163 payload=payload, -164 boolean_args=[], -165 ) + 27router: APIRouter = APIRouter(prefix="/pipelines", tags=["pipelines"]) + 28 + 29@router.post("/register_raw_snapshot", status_code=200) + 30@limiter.limit("1/30seconds") + 31def register_raw_snapshot(payload: Annotated[RegisterRawSnapshotInput, Body(...)], request: Request): # type: ignore + 32 """Registers a raw snapshot by executing the corresponding pipeline.""" + 33 return execute_pipeline( + 34 module_path="pipelines.data.register_raw_snapshot", + 35 payload=payload, + 36 boolean_args=[], + 37 ) + 38 + 39@router.post("/build_interim_dataset", status_code=200) + 40@limiter.limit("1/30seconds") + 41def build_interim_dataset(payload: Annotated[BuildInterimDatasetInput, Body(...)], request: Request): # type: ignore + 42 """Builds an interim dataset by executing the corresponding pipeline.""" + 43 return execute_pipeline( + 44 module_path="pipelines.data.build_interim_dataset", + 45 payload=payload, + 46 boolean_args=[], + 47 ) + 48 + 49@router.post("/build_processed_dataset", status_code=200) + 50@limiter.limit("1/30seconds") + 51def build_processed_dataset(payload: Annotated[BuildProcessedDatasetInput, Body(...)], request: Request): # type: ignore + 52 """Builds a processed dataset by executing the corresponding pipeline.""" + 53 return execute_pipeline( + 54 module_path="pipelines.data.build_processed_dataset", + 55 payload=payload, + 56 boolean_args=[], + 57 ) + 58 + 59@router.post("/freeze_feature_set", status_code=200) + 60@limiter.limit("1/15seconds") + 61def freeze_feature_set(payload: Annotated[FreezeFeaturesInput, Body(...)], request: Request): # type: ignore + 62 """Freezes a feature set by executing the corresponding pipeline.""" + 63 return execute_pipeline( + 64 module_path="pipelines.features.freeze", + 65 payload=payload, + 66 boolean_args=[], + 67 ) + 68 + 69@router.post("/search", status_code=200) + 70@limiter.limit("1/minute") + 71def search(payload: Annotated[SearchInput, Body(...)], request: Request): # type: ignore + 72 """Searches for optimal hyperparameters by executing the corresponding pipeline.""" + 73 return execute_pipeline( + 74 module_path="pipelines.search.search", + 75 payload=payload, + 76 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], + 77 ) + 78 + 79@router.post("/train", status_code=200) + 80@limiter.limit("1/minute") + 81def train(payload: Annotated[TrainInput, Body(...)], request: Request): # type: ignore + 82 """Trains a model by executing the corresponding pipeline.""" + 83 return execute_pipeline( + 84 module_path="pipelines.runners.train", + 85 payload=payload, + 86 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], + 87 ) + 88 + 89@router.post("/evaluate", status_code=200) + 90@limiter.limit("1/30seconds") + 91def evaluate(payload: Annotated[EvaluateInput, Body(...)], request: Request): # type: ignore + 92 """Evaluates a model by executing the corresponding pipeline.""" + 93 return execute_pipeline( + 94 module_path="pipelines.runners.evaluate", + 95 payload=payload, + 96 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], + 97 ) + 98 + 99@router.post("/explain", status_code=200) +100@limiter.limit("1/30seconds") +101def explain(payload: Annotated[ExplainInput, Body(...)], request: Request): # type: ignore +102 """Explains a model by executing the corresponding pipeline.""" +103 return execute_pipeline( +104 module_path="pipelines.runners.explain", +105 payload=payload, +106 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], +107 ) +108 +109@router.post("/promote", status_code=200) +110@limiter.limit("3/minute") +111def promote(payload: Annotated[PromoteInput, Body(...)], request: Request): # type: ignore +112 """Executes the promotion pipeline.""" +113 return execute_pipeline( +114 module_path="pipelines.promotion.promote", +115 payload=payload, +116 boolean_args=[], +117 ) +118 +119@router.post("/execute_all_data_preprocessing", status_code=200) +120@limiter.limit("1/10minutes; 3/hour") +121def execute_all_data_preprocessing(payload: Annotated[ExecuteAllDataPreprocessingInput, Body(...)], request: Request): # type: ignore +122 """Executes all data preprocessing pipelines.""" +123 return execute_pipeline( +124 module_path="pipelines.orchestration.data.execute_all_data_preprocessing", +125 payload=payload, +126 boolean_args=[], +127 ) +128 +129@router.post("/freeze_all_feature_sets", status_code=200) +130@limiter.limit("1/10minutes") +131def freeze_all_feature_sets(payload: Annotated[FreezeAllFeatureSetsInput, Body(...)], request: Request): # type: ignore +132 """Executes the pipeline to freeze all feature sets.""" +133 return execute_pipeline( +134 module_path="pipelines.orchestration.features.freeze_all_feature_sets", +135 payload=payload, +136 boolean_args=[], +137 ) +138 +139@router.post("/execute_experiment_with_latest", status_code=200) +140@limiter.limit("1/10minutes; 3/hour") +141def execute_experiment_with_latest(payload: Annotated[ExecuteExperimentWithLatestInput, Body(...)], request: Request): # type: ignore +142 """Executes the execute experiment with latest pipeline.""" +143 return execute_pipeline( +144 module_path="pipelines.orchestration.experiments.execute_experiment_with_latest", +145 payload=payload, +146 boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"], +147 ) +148 +149@router.post("/execute_all_experiments_with_latest", status_code=200) +150@limiter.limit("1/hour; 5/day") +151def execute_all_experiments_with_latest(payload: Annotated[ExecuteAllExperimentsWithLatestInput, Body(...)], request: Request): # type: ignore +152 """Executes the execute all experiments with latest pipeline.""" +153 return execute_pipeline( +154 module_path="pipelines.orchestration.experiments.execute_all_experiments_with_latest", +155 payload=payload, +156 boolean_args=[], +157 ) +158 +159@router.post("/run_all_workflows", status_code=200) +160@limiter.limit("1/hour; 5/day") +161def run_all_workflows(payload: Annotated[RunAllWorkflowsInput, Body(...)], request: Request): # type: ignore +162 """Executes the run all workflows pipeline.""" +163 return execute_pipeline( +164 module_path="pipelines.orchestration.master.run_all_workflows", +165 payload=payload, +166 boolean_args=[], +167 ) +168 +169@router.post("/infer", status_code=200) +170@limiter.limit("10/minute") +171def infer(payload: Annotated[InferInput, Body(...)], request: Request): # type: ignore +172 """Executes the inference pipeline.""" +173 return execute_pipeline( +174 module_path="pipelines.post_promotion.infer", +175 payload=payload, +176 boolean_args=[], +177 ) +178 +179@router.post("/monitor", status_code=200) +180@limiter.limit("10/minute") +181def monitor(payload: Annotated[MonitorInput, Body(...)], request: Request): # type: ignore +182 """Executes the monitoring pipeline.""" +183 return execute_pipeline( +184 module_path="pipelines.post_promotion.monitor", +185 payload=payload, +186 boolean_args=[], +187 )

    @@ -292,15 +320,15 @@

    -
    28@router.post("/register_raw_snapshot", status_code=200)
    -29@limiter.limit("1/30seconds")
    -30def register_raw_snapshot(payload: Annotated[RegisterRawSnapshotInput, Body(...)], request: Request): # type: ignore
    -31    """Registers a raw snapshot by executing the corresponding pipeline."""
    -32    return execute_pipeline(
    -33        module_path="pipelines.data.register_raw_snapshot",
    -34        payload=payload,
    -35        boolean_args=[],
    -36    )
    +            
    30@router.post("/register_raw_snapshot", status_code=200)
    +31@limiter.limit("1/30seconds")
    +32def register_raw_snapshot(payload: Annotated[RegisterRawSnapshotInput, Body(...)], request: Request): # type: ignore
    +33    """Registers a raw snapshot by executing the corresponding pipeline."""
    +34    return execute_pipeline(
    +35        module_path="pipelines.data.register_raw_snapshot",
    +36        payload=payload,
    +37        boolean_args=[],
    +38    )
     
    @@ -322,15 +350,15 @@

    -
    38@router.post("/build_interim_dataset", status_code=200)
    -39@limiter.limit("1/30seconds")
    -40def build_interim_dataset(payload: Annotated[BuildInterimDatasetInput, Body(...)], request: Request): # type: ignore
    -41    """Builds an interim dataset by executing the corresponding pipeline."""
    -42    return execute_pipeline(
    -43        module_path="pipelines.data.build_interim_dataset",
    -44        payload=payload,
    -45        boolean_args=[],
    -46    )
    +            
    40@router.post("/build_interim_dataset", status_code=200)
    +41@limiter.limit("1/30seconds")
    +42def build_interim_dataset(payload: Annotated[BuildInterimDatasetInput, Body(...)], request: Request): # type: ignore
    +43    """Builds an interim dataset by executing the corresponding pipeline."""
    +44    return execute_pipeline(
    +45        module_path="pipelines.data.build_interim_dataset",
    +46        payload=payload,
    +47        boolean_args=[],
    +48    )
     
    @@ -352,15 +380,15 @@

    -
    48@router.post("/build_processed_dataset", status_code=200)
    -49@limiter.limit("1/30seconds")
    -50def build_processed_dataset(payload: Annotated[BuildProcessedDatasetInput, Body(...)], request: Request): # type: ignore
    -51    """Builds a processed dataset by executing the corresponding pipeline."""
    -52    return execute_pipeline(
    -53        module_path="pipelines.data.build_processed_dataset",
    -54        payload=payload,
    -55        boolean_args=[],
    -56    )
    +            
    50@router.post("/build_processed_dataset", status_code=200)
    +51@limiter.limit("1/30seconds")
    +52def build_processed_dataset(payload: Annotated[BuildProcessedDatasetInput, Body(...)], request: Request): # type: ignore
    +53    """Builds a processed dataset by executing the corresponding pipeline."""
    +54    return execute_pipeline(
    +55        module_path="pipelines.data.build_processed_dataset",
    +56        payload=payload,
    +57        boolean_args=[],
    +58    )
     
    @@ -382,15 +410,15 @@

    -
    58@router.post("/freeze_feature_set", status_code=200)
    -59@limiter.limit("1/15seconds")
    -60def freeze_feature_set(payload: Annotated[FreezeFeaturesInput, Body(...)], request: Request): # type: ignore
    -61    """Freezes a feature set by executing the corresponding pipeline."""
    -62    return execute_pipeline(
    -63        module_path="pipelines.features.freeze",
    -64        payload=payload,
    -65        boolean_args=[],
    -66    )
    +            
    60@router.post("/freeze_feature_set", status_code=200)
    +61@limiter.limit("1/15seconds")
    +62def freeze_feature_set(payload: Annotated[FreezeFeaturesInput, Body(...)], request: Request): # type: ignore
    +63    """Freezes a feature set by executing the corresponding pipeline."""
    +64    return execute_pipeline(
    +65        module_path="pipelines.features.freeze",
    +66        payload=payload,
    +67        boolean_args=[],
    +68    )
     
    @@ -412,15 +440,15 @@

    -
    68@router.post("/search", status_code=200)
    -69@limiter.limit("1/minute")
    -70def search(payload: Annotated[SearchInput, Body(...)], request: Request): # type: ignore
    -71    """Searches for optimal hyperparameters by executing the corresponding pipeline."""
    -72    return execute_pipeline(
    -73        module_path="pipelines.search.search",
    -74        payload=payload,
    -75        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    -76    )
    +            
    70@router.post("/search", status_code=200)
    +71@limiter.limit("1/minute")
    +72def search(payload: Annotated[SearchInput, Body(...)], request: Request): # type: ignore
    +73    """Searches for optimal hyperparameters by executing the corresponding pipeline."""
    +74    return execute_pipeline(
    +75        module_path="pipelines.search.search",
    +76        payload=payload,
    +77        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    +78    )
     
    @@ -442,15 +470,15 @@

    -
    78@router.post("/train", status_code=200)
    -79@limiter.limit("1/minute")
    -80def train(payload: Annotated[TrainInput, Body(...)], request: Request): # type: ignore
    -81    """Trains a model by executing the corresponding pipeline."""
    -82    return execute_pipeline(
    -83        module_path="pipelines.runners.train",
    -84        payload=payload,
    -85        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    -86    )
    +            
    80@router.post("/train", status_code=200)
    +81@limiter.limit("1/minute")
    +82def train(payload: Annotated[TrainInput, Body(...)], request: Request): # type: ignore
    +83    """Trains a model by executing the corresponding pipeline."""
    +84    return execute_pipeline(
    +85        module_path="pipelines.runners.train",
    +86        payload=payload,
    +87        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    +88    )
     
    @@ -472,15 +500,15 @@

    -
    88@router.post("/evaluate", status_code=200)
    -89@limiter.limit("1/30seconds")
    -90def evaluate(payload: Annotated[EvaluateInput, Body(...)], request: Request): # type: ignore
    -91    """Evaluates a model by executing the corresponding pipeline."""
    -92    return execute_pipeline(
    -93        module_path="pipelines.runners.evaluate",
    -94        payload=payload,
    -95        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    -96    )
    +            
    90@router.post("/evaluate", status_code=200)
    +91@limiter.limit("1/30seconds")
    +92def evaluate(payload: Annotated[EvaluateInput, Body(...)], request: Request): # type: ignore
    +93    """Evaluates a model by executing the corresponding pipeline."""
    +94    return execute_pipeline(
    +95        module_path="pipelines.runners.evaluate",
    +96        payload=payload,
    +97        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    +98    )
     
    @@ -502,15 +530,15 @@

    -
     98@router.post("/explain", status_code=200)
    - 99@limiter.limit("1/30seconds")
    -100def explain(payload: Annotated[ExplainInput, Body(...)], request: Request): # type: ignore
    -101    """Explains a model by executing the corresponding pipeline."""
    -102    return execute_pipeline(
    -103        module_path="pipelines.runners.explain",
    -104        payload=payload,
    -105        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    -106    )
    +            
    100@router.post("/explain", status_code=200)
    +101@limiter.limit("1/30seconds")
    +102def explain(payload: Annotated[ExplainInput, Body(...)], request: Request): # type: ignore
    +103    """Explains a model by executing the corresponding pipeline."""
    +104    return execute_pipeline(
    +105        module_path="pipelines.runners.explain",
    +106        payload=payload,
    +107        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    +108    )
     
    @@ -523,7 +551,7 @@

    @router.post('/promote', status_code=200)
    -
    @limiter.limit('1/minute')
    +
    @limiter.limit('3/minute')
    def promote( payload: typing.Annotated[ml_service.backend.pipelines.models.pipelines_cli_args.PromoteInput, Body(PydanticUndefined)], request: starlette.requests.Request): @@ -532,15 +560,15 @@

    -
    108@router.post("/promote", status_code=200)
    -109@limiter.limit("1/minute")
    -110def promote(payload: Annotated[PromoteInput, Body(...)], request: Request): # type: ignore
    -111    """Executes the promotion pipeline."""
    -112    return execute_pipeline(
    -113        module_path="pipelines.promotion.promote",
    -114        payload=payload,
    -115        boolean_args=[],
    -116    )
    +            
    110@router.post("/promote", status_code=200)
    +111@limiter.limit("3/minute")
    +112def promote(payload: Annotated[PromoteInput, Body(...)], request: Request): # type: ignore
    +113    """Executes the promotion pipeline."""
    +114    return execute_pipeline(
    +115        module_path="pipelines.promotion.promote",
    +116        payload=payload,
    +117        boolean_args=[],
    +118    )
     
    @@ -562,15 +590,15 @@

    -
    118@router.post("/execute_all_data_preprocessing", status_code=200)
    -119@limiter.limit("1/10minutes; 3/hour")
    -120def execute_all_data_preprocessing(payload: Annotated[ExecuteAllDataPreprocessingInput, Body(...)], request: Request): # type: ignore
    -121    """Executes all data preprocessing pipelines."""
    -122    return execute_pipeline(
    -123        module_path="pipelines.orchestration.data.execute_all_data_preprocessing",
    -124        payload=payload,
    -125        boolean_args=[],
    -126    )
    +            
    120@router.post("/execute_all_data_preprocessing", status_code=200)
    +121@limiter.limit("1/10minutes; 3/hour")
    +122def execute_all_data_preprocessing(payload: Annotated[ExecuteAllDataPreprocessingInput, Body(...)], request: Request): # type: ignore
    +123    """Executes all data preprocessing pipelines."""
    +124    return execute_pipeline(
    +125        module_path="pipelines.orchestration.data.execute_all_data_preprocessing",
    +126        payload=payload,
    +127        boolean_args=[],
    +128    )
     
    @@ -592,15 +620,15 @@

    -
    128@router.post("/freeze_all_feature_sets", status_code=200)
    -129@limiter.limit("1/10minutes")
    -130def freeze_all_feature_sets(payload: Annotated[FreezeAllFeatureSetsInput, Body(...)], request: Request): # type: ignore
    -131    """Executes the pipeline to freeze all feature sets."""
    -132    return execute_pipeline(
    -133        module_path="pipelines.orchestration.features.freeze_all_feature_sets",
    -134        payload=payload,
    -135        boolean_args=[],
    -136    )
    +            
    130@router.post("/freeze_all_feature_sets", status_code=200)
    +131@limiter.limit("1/10minutes")
    +132def freeze_all_feature_sets(payload: Annotated[FreezeAllFeatureSetsInput, Body(...)], request: Request): # type: ignore
    +133    """Executes the pipeline to freeze all feature sets."""
    +134    return execute_pipeline(
    +135        module_path="pipelines.orchestration.features.freeze_all_feature_sets",
    +136        payload=payload,
    +137        boolean_args=[],
    +138    )
     
    @@ -622,15 +650,15 @@

    -
    138@router.post("/execute_experiment_with_latest", status_code=200)
    -139@limiter.limit("1/10minutes; 3/hour")
    -140def execute_experiment_with_latest(payload: Annotated[ExecuteExperimentWithLatestInput, Body(...)], request: Request): # type: ignore
    -141    """Executes the execute experiment with latest pipeline."""
    -142    return execute_pipeline(
    -143        module_path="pipelines.orchestration.experiments.execute_experiment_with_latest",
    -144        payload=payload,
    -145        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    -146    )
    +            
    140@router.post("/execute_experiment_with_latest", status_code=200)
    +141@limiter.limit("1/10minutes; 3/hour")
    +142def execute_experiment_with_latest(payload: Annotated[ExecuteExperimentWithLatestInput, Body(...)], request: Request): # type: ignore
    +143    """Executes the execute experiment with latest pipeline."""
    +144    return execute_pipeline(
    +145        module_path="pipelines.orchestration.experiments.execute_experiment_with_latest",
    +146        payload=payload,
    +147        boolean_args=["strict", "clean_up_failure_management", "overwrite_existing"],
    +148    )
     
    @@ -652,15 +680,15 @@

    -
    148@router.post("/execute_all_experiments_with_latest", status_code=200)
    -149@limiter.limit("1/hour; 5/day")
    -150def execute_all_experiments_with_latest(payload: Annotated[ExecuteAllExperimentsWithLatestInput, Body(...)], request: Request): # type: ignore
    -151    """Executes the execute all experiments with latest pipeline."""
    -152    return execute_pipeline(
    -153        module_path="pipelines.orchestration.experiments.execute_all_experiments_with_latest",
    -154        payload=payload,
    -155        boolean_args=[],
    -156    )
    +            
    150@router.post("/execute_all_experiments_with_latest", status_code=200)
    +151@limiter.limit("1/hour; 5/day")
    +152def execute_all_experiments_with_latest(payload: Annotated[ExecuteAllExperimentsWithLatestInput, Body(...)], request: Request): # type: ignore
    +153    """Executes the execute all experiments with latest pipeline."""
    +154    return execute_pipeline(
    +155        module_path="pipelines.orchestration.experiments.execute_all_experiments_with_latest",
    +156        payload=payload,
    +157        boolean_args=[],
    +158    )
     
    @@ -682,15 +710,15 @@

    -
    158@router.post("/run_all_workflows", status_code=200)
    -159@limiter.limit("1/hour; 5/day")
    -160def run_all_workflows(payload: Annotated[RunAllWorkflowsInput, Body(...)], request: Request): # type: ignore
    -161    """Executes the run all workflows pipeline."""
    -162    return execute_pipeline(
    -163        module_path="pipelines.orchestration.master.run_all_workflows",
    -164        payload=payload,
    -165        boolean_args=[],
    -166    )
    +            
    160@router.post("/run_all_workflows", status_code=200)
    +161@limiter.limit("1/hour; 5/day")
    +162def run_all_workflows(payload: Annotated[RunAllWorkflowsInput, Body(...)], request: Request): # type: ignore
    +163    """Executes the run all workflows pipeline."""
    +164    return execute_pipeline(
    +165        module_path="pipelines.orchestration.master.run_all_workflows",
    +166        payload=payload,
    +167        boolean_args=[],
    +168    )
     
    @@ -698,6 +726,66 @@

    + +
    + +
    +
    @router.post('/infer', status_code=200)
    +
    @limiter.limit('10/minute')
    + + def + infer( payload: typing.Annotated[ml_service.backend.pipelines.models.pipelines_cli_args.InferInput, Body(PydanticUndefined)], request: starlette.requests.Request): + + + +
    + +
    170@router.post("/infer", status_code=200)
    +171@limiter.limit("10/minute")
    +172def infer(payload: Annotated[InferInput, Body(...)], request: Request): # type: ignore
    +173    """Executes the inference pipeline."""
    +174    return execute_pipeline(
    +175        module_path="pipelines.post_promotion.infer",
    +176        payload=payload,
    +177        boolean_args=[],
    +178    )
    +
    + + +

    Executes the inference pipeline.

    +
    + + +
    +
    + +
    +
    @router.post('/monitor', status_code=200)
    +
    @limiter.limit('10/minute')
    + + def + monitor( payload: typing.Annotated[ml_service.backend.pipelines.models.pipelines_cli_args.MonitorInput, Body(PydanticUndefined)], request: starlette.requests.Request): + + + +
    + +
    180@router.post("/monitor", status_code=200)
    +181@limiter.limit("10/minute")
    +182def monitor(payload: Annotated[MonitorInput, Body(...)], request: Request): # type: ignore
    +183    """Executes the monitoring pipeline."""
    +184    return execute_pipeline(
    +185        module_path="pipelines.post_promotion.monitor",
    +186        payload=payload,
    +187        boolean_args=[],
    +188    )
    +
    + + +

    Executes the monitoring pipeline.

    +
    + +
    + \ No newline at end of file diff --git a/docs/api/pipelines/pipelines/post_promotion/infer.html b/docs/api/pipelines/pipelines/post_promotion/infer.html new file mode 100644 index 00000000..bc5aa47d --- /dev/null +++ b/docs/api/pipelines/pipelines/post_promotion/infer.html @@ -0,0 +1,484 @@ + + + + + + + pipelines.post_promotion.infer API documentation + + + + + + + + + +
    +
    +

    +pipelines.post_promotion.infer

    + +

    CLI for running model inference (production + staging) with monitoring-ready outputs.

    +
    + + + + + +
      1"""CLI for running model inference (production + staging) with monitoring-ready outputs."""
    +  2import argparse
    +  3import logging
    +  4import sys
    +  5from datetime import datetime
    +  6from pathlib import Path
    +  7from uuid import uuid4
    +  8
    +  9from ml.cli.error_handling import resolve_exit_code
    + 10from ml.io.formatting.iso_no_colon import iso_no_colon
    + 11from ml.logging_config import setup_logging
    + 12from ml.post_promotion.inference.execution.execute_inference import execute_inference
    + 13from ml.post_promotion.shared.loading.model_registry import get_model_registry_info
    + 14
    + 15logger = logging.getLogger(__name__)
    + 16
    + 17def parse_args() -> argparse.Namespace:
    + 18    parser = argparse.ArgumentParser(description="Run inference for production and staging models with monitoring-ready outputs.")
    + 19
    + 20    parser.add_argument(
    + 21        "--problem",
    + 22        type=str,
    + 23        required=True,
    + 24        help="Model problem, e.g., 'no_show'"
    + 25    )
    + 26
    + 27    parser.add_argument(
    + 28        "--segment",
    + 29        type=str,
    + 30        required=True,
    + 31        help="Model segment name, e.g., 'city_hotel_online_ta'"
    + 32    )
    + 33
    + 34    parser.add_argument(
    + 35        "--snapshot-bindings-id",
    + 36        required=True,
    + 37        help = "A snapshot binding to define which snapshot to load for each feature set."
    + 38    )
    + 39
    + 40    parser.add_argument(
    + 41        "--logging-level",
    + 42        choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
    + 43        default="INFO",
    + 44        help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)"
    + 45    )
    + 46
    + 47    return parser.parse_args()
    + 48
    + 49def main() -> int:
    + 50    """Main function to execute the post-promotion monitoring pipeline.
    + 51
    + 52    Returns:
    + 53        An integer exit code (0 for success, non-zero for failure).
    + 54    """
    + 55    args = parse_args()
    + 56
    + 57    timestamp = datetime.now()
    + 58    run_id = f"{iso_no_colon(timestamp)}_{uuid4().hex[:8]}"
    + 59    base_path = Path("predictions") / args.problem / args.segment
    + 60
    + 61    run_dir = base_path / run_id
    + 62
    + 63    log_path = run_dir / "inference.log"
    + 64
    + 65    setup_logging(log_path, getattr(logging, args.logging_level, logging.INFO))
    + 66
    + 67    try:
    + 68        model_registry_info = get_model_registry_info(args)
    + 69
    + 70        prod_meta = model_registry_info.prod_meta
    + 71        stage_meta = model_registry_info.stage_meta
    + 72
    + 73        if prod_meta is not None:
    + 74            execute_inference(
    + 75                args=args,
    + 76                model_metadata=prod_meta,
    + 77                stage="production",
    + 78                timestamp=timestamp,
    + 79                path=run_dir / "production",
    + 80                run_id=run_id
    + 81            )
    + 82
    + 83        if stage_meta is not None:
    + 84            execute_inference(
    + 85                args=args,
    + 86                model_metadata=stage_meta,
    + 87                stage="staging",
    + 88                timestamp=timestamp,
    + 89                path=run_dir / "staging",
    + 90                run_id=run_id
    + 91            )
    + 92
    + 93        return 0
    + 94
    + 95    except Exception as e:
    + 96        logger.exception("Inference failed")
    + 97        return resolve_exit_code(e)
    + 98
    + 99
    +100if __name__ == "__main__":
    +101    sys.exit(main())
    +
    + + +
    +
    +
    + logger = +<Logger pipelines.post_promotion.infer (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + parse_args() -> argparse.Namespace: + + + +
    + +
    18def parse_args() -> argparse.Namespace:
    +19    parser = argparse.ArgumentParser(description="Run inference for production and staging models with monitoring-ready outputs.")
    +20
    +21    parser.add_argument(
    +22        "--problem",
    +23        type=str,
    +24        required=True,
    +25        help="Model problem, e.g., 'no_show'"
    +26    )
    +27
    +28    parser.add_argument(
    +29        "--segment",
    +30        type=str,
    +31        required=True,
    +32        help="Model segment name, e.g., 'city_hotel_online_ta'"
    +33    )
    +34
    +35    parser.add_argument(
    +36        "--snapshot-bindings-id",
    +37        required=True,
    +38        help = "A snapshot binding to define which snapshot to load for each feature set."
    +39    )
    +40
    +41    parser.add_argument(
    +42        "--logging-level",
    +43        choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
    +44        default="INFO",
    +45        help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)"
    +46    )
    +47
    +48    return parser.parse_args()
    +
    + + + + +
    +
    + +
    + + def + main() -> int: + + + +
    + +
    50def main() -> int:
    +51    """Main function to execute the post-promotion monitoring pipeline.
    +52
    +53    Returns:
    +54        An integer exit code (0 for success, non-zero for failure).
    +55    """
    +56    args = parse_args()
    +57
    +58    timestamp = datetime.now()
    +59    run_id = f"{iso_no_colon(timestamp)}_{uuid4().hex[:8]}"
    +60    base_path = Path("predictions") / args.problem / args.segment
    +61
    +62    run_dir = base_path / run_id
    +63
    +64    log_path = run_dir / "inference.log"
    +65
    +66    setup_logging(log_path, getattr(logging, args.logging_level, logging.INFO))
    +67
    +68    try:
    +69        model_registry_info = get_model_registry_info(args)
    +70
    +71        prod_meta = model_registry_info.prod_meta
    +72        stage_meta = model_registry_info.stage_meta
    +73
    +74        if prod_meta is not None:
    +75            execute_inference(
    +76                args=args,
    +77                model_metadata=prod_meta,
    +78                stage="production",
    +79                timestamp=timestamp,
    +80                path=run_dir / "production",
    +81                run_id=run_id
    +82            )
    +83
    +84        if stage_meta is not None:
    +85            execute_inference(
    +86                args=args,
    +87                model_metadata=stage_meta,
    +88                stage="staging",
    +89                timestamp=timestamp,
    +90                path=run_dir / "staging",
    +91                run_id=run_id
    +92            )
    +93
    +94        return 0
    +95
    +96    except Exception as e:
    +97        logger.exception("Inference failed")
    +98        return resolve_exit_code(e)
    +
    + + +

    Main function to execute the post-promotion monitoring pipeline.

    + +

    Returns: + An integer exit code (0 for success, non-zero for failure).

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/pipelines/pipelines/post_promotion/monitor.html b/docs/api/pipelines/pipelines/post_promotion/monitor.html new file mode 100644 index 00000000..a1e42ab7 --- /dev/null +++ b/docs/api/pipelines/pipelines/post_promotion/monitor.html @@ -0,0 +1,525 @@ + + + + + + + pipelines.post_promotion.monitor API documentation + + + + + + + + + +
    +
    +

    +pipelines.post_promotion.monitor

    + +

    Main module for the post-promotion monitoring pipeline.

    +
    + + + + + +
      1"""Main module for the post-promotion monitoring pipeline."""
    +  2import argparse
    +  3import logging
    +  4import sys
    +  5from datetime import datetime
    +  6from pathlib import Path
    +  7from uuid import uuid4
    +  8
    +  9from ml.cli.error_handling import resolve_exit_code
    + 10from ml.exceptions import PipelineContractError
    + 11from ml.io.formatting.iso_no_colon import iso_no_colon
    + 12from ml.io.persistence.save_metadata import save_metadata
    + 13from ml.logging_config import setup_logging
    + 14from ml.post_promotion.monitoring.execution.execute_monitoring import execute_monitoring
    + 15from ml.post_promotion.monitoring.loading.promotion_metrics_info import get_promotion_metrics_info
    + 16from ml.post_promotion.monitoring.performance.comparison import (
    + 17    compare_production_and_staging_performance,
    + 18)
    + 19from ml.post_promotion.monitoring.persistence.prepare_metadata import prepare_metadata
    + 20from ml.post_promotion.shared.loading.model_registry import get_model_registry_info
    + 21from ml.types.latest import LatestSnapshot
    + 22
    + 23logger = logging.getLogger(__name__)
    + 24
    + 25def parse_args() -> argparse.Namespace:
    + 26    parser = argparse.ArgumentParser(description="Run inference for production and staging models with monitoring-ready outputs.")
    + 27
    + 28    parser.add_argument(
    + 29        "--problem",
    + 30        type=str,
    + 31        required=True,
    + 32        help="Model problem, e.g., 'no_show'"
    + 33    )
    + 34
    + 35    parser.add_argument(
    + 36        "--segment",
    + 37        type=str,
    + 38        required=True,
    + 39        help="Model segment name, e.g., 'city_hotel_online_ta'"
    + 40    )
    + 41
    + 42    parser.add_argument(
    + 43        "--inference-run-id",
    + 44        type=str,
    + 45        default=LatestSnapshot.LATEST.value,
    + 46        help="Inference run id (directory name under inference_runs/{problem}/{segment}); if not provided, defaults to 'latest' which picks the most recent inference run directory"
    + 47    )
    + 48
    + 49    parser.add_argument(
    + 50        "--logging-level",
    + 51        choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
    + 52        default="INFO",
    + 53        help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)"
    + 54    )
    + 55
    + 56    return parser.parse_args()
    + 57
    + 58def main() -> int:
    + 59    """Main function to execute the post-promotion monitoring pipeline.
    + 60
    + 61    Returns:
    + 62        An integer exit code (0 for success, non-zero for failure).
    + 63    """
    + 64    args = parse_args()
    + 65
    + 66    timestamp = datetime.now()
    + 67    run_id = f"{iso_no_colon(timestamp)}_{uuid4().hex[:8]}"
    + 68    base_path = Path("monitoring") / args.problem / args.segment
    + 69
    + 70    run_dir = base_path / run_id
    + 71
    + 72    log_path = run_dir / "monitor.log"
    + 73
    + 74    setup_logging(log_path, getattr(logging, args.logging_level, logging.INFO))
    + 75
    + 76    try:
    + 77        promotion_metrics_info = get_promotion_metrics_info(args)
    + 78        model_registry_info = get_model_registry_info(args)
    + 79
    + 80        prod_meta = model_registry_info.prod_meta
    + 81        stage_meta = model_registry_info.stage_meta
    + 82
    + 83        if prod_meta is None and stage_meta is None:
    + 84            msg = f"No production or staging model registry entry found for problem '{args.problem}' and segment '{args.segment}'. Cannot perform monitoring."
    + 85            logger.error(msg)
    + 86            raise PipelineContractError(msg)
    + 87
    + 88        prod_monitoring_output, stage_monitoring_output = None, None
    + 89
    + 90        if prod_meta:
    + 91            prod_monitoring_output = execute_monitoring(
    + 92                args=args,
    + 93                model_metadata=prod_meta,
    + 94                stage="production",
    + 95                promotion_metrics_info=promotion_metrics_info
    + 96            )
    + 97        if stage_meta:
    + 98            stage_monitoring_output = execute_monitoring(
    + 99                args=args,
    +100                model_metadata=stage_meta,
    +101                stage="staging",
    +102                promotion_metrics_info=promotion_metrics_info
    +103            )
    +104
    +105        metadata = prepare_metadata(
    +106            args=args,
    +107            run_id=run_id,
    +108            timestamp=timestamp,
    +109            prod_monitoring_output=prod_monitoring_output,
    +110            stage_monitoring_output=stage_monitoring_output
    +111        )
    +112
    +113        if prod_monitoring_output and stage_monitoring_output:
    +114            performance_comparison = compare_production_and_staging_performance(prod_monitoring_output, stage_monitoring_output)
    +115            metadata["staging_vs_production_comparison"] = performance_comparison
    +116
    +117        save_metadata(metadata, target_dir=run_dir)
    +118
    +119        return 0
    +120    except Exception as e:
    +121        logger.exception("Monitoring failed")
    +122        return resolve_exit_code(e)
    +123
    +124if __name__ == "__main__":
    +125    sys.exit(main())
    +
    + + +
    +
    +
    + logger = +<Logger pipelines.post_promotion.monitor (WARNING)> + + +
    + + + + +
    +
    + +
    + + def + parse_args() -> argparse.Namespace: + + + +
    + +
    26def parse_args() -> argparse.Namespace:
    +27    parser = argparse.ArgumentParser(description="Run inference for production and staging models with monitoring-ready outputs.")
    +28
    +29    parser.add_argument(
    +30        "--problem",
    +31        type=str,
    +32        required=True,
    +33        help="Model problem, e.g., 'no_show'"
    +34    )
    +35
    +36    parser.add_argument(
    +37        "--segment",
    +38        type=str,
    +39        required=True,
    +40        help="Model segment name, e.g., 'city_hotel_online_ta'"
    +41    )
    +42
    +43    parser.add_argument(
    +44        "--inference-run-id",
    +45        type=str,
    +46        default=LatestSnapshot.LATEST.value,
    +47        help="Inference run id (directory name under inference_runs/{problem}/{segment}); if not provided, defaults to 'latest' which picks the most recent inference run directory"
    +48    )
    +49
    +50    parser.add_argument(
    +51        "--logging-level",
    +52        choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
    +53        default="INFO",
    +54        help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)"
    +55    )
    +56
    +57    return parser.parse_args()
    +
    + + + + +
    +
    + +
    + + def + main() -> int: + + + +
    + +
     59def main() -> int:
    + 60    """Main function to execute the post-promotion monitoring pipeline.
    + 61
    + 62    Returns:
    + 63        An integer exit code (0 for success, non-zero for failure).
    + 64    """
    + 65    args = parse_args()
    + 66
    + 67    timestamp = datetime.now()
    + 68    run_id = f"{iso_no_colon(timestamp)}_{uuid4().hex[:8]}"
    + 69    base_path = Path("monitoring") / args.problem / args.segment
    + 70
    + 71    run_dir = base_path / run_id
    + 72
    + 73    log_path = run_dir / "monitor.log"
    + 74
    + 75    setup_logging(log_path, getattr(logging, args.logging_level, logging.INFO))
    + 76
    + 77    try:
    + 78        promotion_metrics_info = get_promotion_metrics_info(args)
    + 79        model_registry_info = get_model_registry_info(args)
    + 80
    + 81        prod_meta = model_registry_info.prod_meta
    + 82        stage_meta = model_registry_info.stage_meta
    + 83
    + 84        if prod_meta is None and stage_meta is None:
    + 85            msg = f"No production or staging model registry entry found for problem '{args.problem}' and segment '{args.segment}'. Cannot perform monitoring."
    + 86            logger.error(msg)
    + 87            raise PipelineContractError(msg)
    + 88
    + 89        prod_monitoring_output, stage_monitoring_output = None, None
    + 90
    + 91        if prod_meta:
    + 92            prod_monitoring_output = execute_monitoring(
    + 93                args=args,
    + 94                model_metadata=prod_meta,
    + 95                stage="production",
    + 96                promotion_metrics_info=promotion_metrics_info
    + 97            )
    + 98        if stage_meta:
    + 99            stage_monitoring_output = execute_monitoring(
    +100                args=args,
    +101                model_metadata=stage_meta,
    +102                stage="staging",
    +103                promotion_metrics_info=promotion_metrics_info
    +104            )
    +105
    +106        metadata = prepare_metadata(
    +107            args=args,
    +108            run_id=run_id,
    +109            timestamp=timestamp,
    +110            prod_monitoring_output=prod_monitoring_output,
    +111            stage_monitoring_output=stage_monitoring_output
    +112        )
    +113
    +114        if prod_monitoring_output and stage_monitoring_output:
    +115            performance_comparison = compare_production_and_staging_performance(prod_monitoring_output, stage_monitoring_output)
    +116            metadata["staging_vs_production_comparison"] = performance_comparison
    +117
    +118        save_metadata(metadata, target_dir=run_dir)
    +119
    +120        return 0
    +121    except Exception as e:
    +122        logger.exception("Monitoring failed")
    +123        return resolve_exit_code(e)
    +
    + + +

    Main function to execute the post-promotion monitoring pipeline.

    + +

    Returns: + An integer exit code (0 for success, non-zero for failure).

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/pipelines/pipelines/runners/explain.html b/docs/api/pipelines/pipelines/runners/explain.html index fbdbbdf9..181e95fd 100644 --- a/docs/api/pipelines/pipelines/runners/explain.html +++ b/docs/api/pipelines/pipelines/runners/explain.html @@ -168,7 +168,7 @@

    101 "--top-k", 102 type=int, 103 default=None, -104 help="Number of top features to include in the explainability output (will programmatically default to settings-specific values if not provided, but can be overridden with this flag)" +104 help="Number of top features to include in the explainability output (will programmatically default to settings-specified value if not provided, but can be overridden with this flag)" 105 ) 106 107 return parser.parse_args() @@ -375,7 +375,7 @@

    102 "--top-k", 103 type=int, 104 default=None, -105 help="Number of top features to include in the explainability output (will programmatically default to settings-specific values if not provided, but can be overridden with this flag)" +105 help="Number of top features to include in the explainability output (will programmatically default to settings-specified value if not provided, but can be overridden with this flag)" 106 ) 107 108 return parser.parse_args() diff --git a/docs/api/pipelines/pipelines/runners/train.html b/docs/api/pipelines/pipelines/runners/train.html index 2ff192d8..56a93d14 100644 --- a/docs/api/pipelines/pipelines/runners/train.html +++ b/docs/api/pipelines/pipelines/runners/train.html @@ -164,208 +164,216 @@

    85 ) 86 87 parser.add_argument( - 88 "--train-run-id", + 88 "--snapshot-binding-key", 89 type=str, - 90 default=None, - 91 help="Train run ID to use for this run (default: None, which generates a new unique train run ID). If provided, it should be in the format 'timestamp_randomstring', e.g., '20240101T120000_abcdef12'." + 90 help="Optional key for a snapshot binding to define which snapshot to load for each dataset. Snapshots should be defined in configs/snapshot_bindings_registry/bindings.yaml. Example value: '2026-03-20T02-54-47_61509023'", + 91 default=None 92 ) 93 94 parser.add_argument( - 95 "--env", - 96 choices=["dev", "test", "prod", "default"], - 97 default="default", - 98 help="Environment to run the script in (dev/test/prod) (default: default) ~ none" + 95 "--train-run-id", + 96 type=str, + 97 default=None, + 98 help="Train run ID to use for this run (default: None, which generates a new unique train run ID). If provided, it should be in the format 'timestamp_randomstring', e.g., '20240101T120000_abcdef12'." 99 ) 100 101 parser.add_argument( -102 "--strict", -103 type=str_to_bool, -104 default=True, -105 help="Whether to run in strict mode, which includes strict validation that may be computationally expensive (default: True)" +102 "--env", +103 choices=["dev", "test", "prod", "default"], +104 default="default", +105 help="Environment to run the script in (dev/test/prod) (default: default) ~ none" 106 ) 107 108 parser.add_argument( -109 "--experiment-id", -110 type=str, -111 default=LatestSnapshot.LATEST.value, -112 help="Experiment id (directory name under experiments/{problem}/{segment}/{version}); if not provided, defaults to 'latest' which picks the most recent experiment directory" +109 "--strict", +110 type=str_to_bool, +111 default=True, +112 help="Whether to run in strict mode, which includes strict validation that may be computationally expensive (default: True)" 113 ) 114 115 parser.add_argument( -116 "--logging-level", -117 choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], -118 default="INFO", -119 help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)" +116 "--experiment-id", +117 type=str, +118 default=LatestSnapshot.LATEST.value, +119 help="Experiment id (directory name under experiments/{problem}/{segment}/{version}); if not provided, defaults to 'latest' which picks the most recent experiment directory" 120 ) 121 122 parser.add_argument( -123 "--clean_up-failure-management", -124 type=str_to_bool, -125 default=True, -126 help="Whether to clean up failure management folder after successful run (default: True)" +123 "--logging-level", +124 choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], +125 default="INFO", +126 help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)" 127 ) 128 129 parser.add_argument( -130 "--overwrite-existing", +130 "--clean-up-failure-management", 131 type=str_to_bool, -132 default=False, -133 help="Whether to overwrite existing train run data if the train run ID already exists (default: False). If False and files (other than train.log) already exist within the train run, the script will raise an error to prevent accidental data loss." +132 default=True, +133 help="Whether to clean up failure management folder after successful run (default: True)" 134 ) 135 -136 return parser.parse_args() -137 -138def main() -> int: -139 """Run training, persist artifacts, and register run metadata. -140 -141 Returns: -142 int: Process exit code where ``0`` indicates success. -143 -144 Notes: -145 Exceptions are converted to process exit codes; the function is designed -146 as a CLI boundary and does not propagate failures upward. +136 parser.add_argument( +137 "--overwrite-existing", +138 type=str_to_bool, +139 default=False, +140 help="Whether to overwrite existing train run data if the train run ID already exists (default: False). If False and files (other than train.log) already exist within the train run, the script will raise an error to prevent accidental data loss." +141 ) +142 +143 return parser.parse_args() +144 +145def main() -> int: +146 """Run training, persist artifacts, and register run metadata. 147 -148 Side Effects: -149 Creates/updates training run directories, writes logs/artifacts/metadata, -150 and may delete failure-management folders on success. -151 -152 Examples: -153 python pipelines/runners/train.py --problem cancellation --segment global --version v1 --experiment-id latest -154 """ -155 args: argparse.Namespace -156 model_cfg: TrainModelConfig -157 trainer: Trainer -158 output: TrainOutput -159 model: AllowedModels -160 pipeline: Pipeline | None -161 feature_lineage: list[FeatureLineage] -162 metrics: dict[str, float] -163 pipeline_cfg_hash: str | None -164 model_path: Path -165 pipeline_path: Path | None -166 -167 args = parse_args() -168 -169 start_time = time.perf_counter() -170 timestamp = iso_no_colon(datetime.now()) -171 -172 log_level = getattr(logging, args.logging_level.upper(), logging.INFO) +148 Returns: +149 int: Process exit code where ``0`` indicates success. +150 +151 Notes: +152 Exceptions are converted to process exit codes; the function is designed +153 as a CLI boundary and does not propagate failures upward. +154 +155 Side Effects: +156 Creates/updates training run directories, writes logs/artifacts/metadata, +157 and may delete failure-management folders on success. +158 +159 Examples: +160 python pipelines/runners/train.py --problem cancellation --segment global --version v1 --experiment-id latest +161 """ +162 args: argparse.Namespace +163 model_cfg: TrainModelConfig +164 trainer: Trainer +165 output: TrainOutput +166 model: AllowedModels +167 pipeline: Pipeline | None +168 feature_lineage: list[FeatureLineage] +169 metrics: dict[str, float] +170 pipeline_cfg_hash: str | None +171 model_path: Path +172 pipeline_path: Path | None 173 -174 bootstrap_logging(level=log_level) +174 args = parse_args() 175 -176 try: -177 experiment_parent_dir = Path("experiments") / args.problem / args.segment / args.version -178 experiment_dir = get_snapshot_path(args.experiment_id, experiment_parent_dir) -179 print(f"Using experiment directory: {experiment_dir}\n") -180 search_dir = experiment_dir / "search" -181 except Exception as e: -182 logger.exception("Failed to get experiment directory") -183 return resolve_exit_code(e) -184 -185 train_run_id = args.train_run_id if args.train_run_id else f"{timestamp}_{uuid4().hex[:8]}" -186 train_run_dir = experiment_dir / "training" / train_run_id -187 -188 if not train_run_dir.exists() and args.train_run_id: -189 msg = f"Train run directory {train_run_dir} does not exist for provided train run ID {args.train_run_id}." -190 logger.error(msg) -191 return 1 -192 -193 if train_run_dir.exists(): -194 add_file_handler(train_run_dir / "train.log", level=log_level) -195 existing_files = [f.name for f in train_run_dir.iterdir() if f.is_file() and f.name != "train.log"] -196 if existing_files and not args.overwrite_existing: -197 msg = f"Train run directory {train_run_dir} already exists and contains files: {', '.join(existing_files)}. To prevent accidental data loss, the script will not overwrite existing train run data. To run training with this train run ID, please delete the existing files (if deemed appropriate), or set --overwrite-existing to True (if you want to overwrite the existing data)." -198 logger.error(msg) -199 return 1 -200 else: -201 train_run_dir.mkdir(parents=True, exist_ok=False) -202 add_file_handler(train_run_dir / "train.log", level=log_level) -203 -204 failure_management_dir = Path("failure_management") / experiment_dir.name / "training" / train_run_id -205 failure_management_dir.mkdir(parents=True, exist_ok=True) -206 -207 try: -208 model_cfg = load_and_validate_config( -209 Path(f"configs/train/{args.problem}/{args.segment}/{args.version}.yaml"), -210 cfg_type="train", -211 env=args.env, -212 search_dir=search_dir, -213 ) -214 -215 model_cfg = add_config_hash(model_cfg) -216 -217 validate_lineage_integrity(search_dir) -218 validate_reproducibility(search_dir / "runtime.json") -219 validate_logical_config(model_cfg, search_dir) -220 validate_pipeline_cfg(search_dir / "metadata.json", model_cfg) +176 start_time = time.perf_counter() +177 timestamp = iso_no_colon(datetime.now()) +178 +179 log_level = getattr(logging, args.logging_level.upper(), logging.INFO) +180 +181 bootstrap_logging(level=log_level) +182 +183 try: +184 experiment_parent_dir = Path("experiments") / args.problem / args.segment / args.version +185 experiment_dir = get_snapshot_path(args.experiment_id, experiment_parent_dir) +186 print(f"Using experiment directory: {experiment_dir}\n") +187 search_dir = experiment_dir / "search" +188 except Exception as e: +189 logger.exception("Failed to get experiment directory") +190 return resolve_exit_code(e) +191 +192 train_run_id = args.train_run_id if args.train_run_id else f"{timestamp}_{uuid4().hex[:8]}" +193 train_run_dir = experiment_dir / "training" / train_run_id +194 +195 if not train_run_dir.exists() and args.train_run_id: +196 msg = f"Train run directory {train_run_dir} does not exist for provided train run ID {args.train_run_id}." +197 logger.error(msg) +198 return 1 +199 +200 if train_run_dir.exists(): +201 add_file_handler(train_run_dir / "train.log", level=log_level) +202 existing_files = [f.name for f in train_run_dir.iterdir() if f.is_file() and f.name != "train.log"] +203 if existing_files and not args.overwrite_existing: +204 msg = f"Train run directory {train_run_dir} already exists and contains files: {', '.join(existing_files)}. To prevent accidental data loss, the script will not overwrite existing train run data. To run training with this train run ID, please delete the existing files (if deemed appropriate), or set --overwrite-existing to True (if you want to overwrite the existing data)." +205 logger.error(msg) +206 return 1 +207 else: +208 train_run_dir.mkdir(parents=True, exist_ok=False) +209 add_file_handler(train_run_dir / "train.log", level=log_level) +210 +211 failure_management_dir = Path("failure_management") / experiment_dir.name / "training" / train_run_id +212 failure_management_dir.mkdir(parents=True, exist_ok=True) +213 +214 try: +215 model_cfg = load_and_validate_config( +216 Path(f"configs/train/{args.problem}/{args.segment}/{args.version}.yaml"), +217 cfg_type="train", +218 env=args.env, +219 search_dir=search_dir, +220 ) 221 -222 algorithm = model_cfg.algorithm.value.lower() +222 model_cfg = add_config_hash(model_cfg) 223 -224 trainer = get_trainer(algorithm) -225 -226 logger.info(f"Starting training using experiment_id = {experiment_dir.name}.") -227 output = trainer.train( -228 model_cfg, -229 strict=args.strict, -230 failure_management_dir=failure_management_dir, -231 search_dir=search_dir -232 ) -233 logger.info("Training completed. Persisting training run...") -234 -235 model = output.model -236 model_path = save_model(model, train_run_dir) -237 model_hash = hash_artifact(model_path) -238 -239 pipeline = None -240 pipeline_path = None -241 pipeline_hash = None -242 pipeline_cfg_hash = None -243 if output.pipeline is not None: -244 if output.pipeline_cfg_hash is None: -245 msg = "Pipeline config hash is missing in the trainer output, but a pipeline object is present. This is unexpected as the pipeline config hash is needed for reproducibility tracking. Please ensure that the trainer implementation returns a pipeline config hash when a pipeline is returned." -246 logger.error(msg) -247 raise PipelineContractError(msg) -248 -249 pipeline = output.pipeline -250 pipeline_path = save_pipeline(pipeline, train_run_dir) -251 pipeline_hash = hash_artifact(pipeline_path) -252 pipeline_cfg_hash = output.pipeline_cfg_hash -253 -254 -255 feature_lineage = output.lineage -256 metrics = output.metrics -257 -258 persist_training_run( -259 model_cfg, -260 feature_lineage=feature_lineage, -261 start_time=start_time, -262 train_run_id=train_run_id, -263 experiment_dir=experiment_dir, -264 train_run_dir=train_run_dir, -265 metrics=metrics, -266 model_hash=model_hash, -267 pipeline_hash=pipeline_hash, -268 model_path=model_path, -269 pipeline_path=pipeline_path, -270 pipeline_cfg_hash=pipeline_cfg_hash, -271 timestamp=timestamp -272 ) -273 -274 logger.info("Training run successfully persisted.") -275 -276 delete_failure_management_folder( -277 folder_path=failure_management_dir, -278 cleanup=args.clean_up_failure_management, -279 stage="train" +224 validate_lineage_integrity(search_dir) +225 validate_reproducibility(search_dir / "runtime.json") +226 validate_logical_config(model_cfg, search_dir) +227 validate_pipeline_cfg(search_dir / "metadata.json", model_cfg) +228 +229 algorithm = model_cfg.algorithm.value.lower() +230 +231 trainer = get_trainer(algorithm) +232 +233 logger.info(f"Starting training using experiment_id = {experiment_dir.name}.") +234 output = trainer.train( +235 model_cfg, +236 strict=args.strict, +237 snapshot_binding_key=args.snapshot_binding_key, +238 failure_management_dir=failure_management_dir, +239 search_dir=search_dir +240 ) +241 logger.info("Training completed. Persisting training run...") +242 +243 model = output.model +244 model_path = save_model(model, train_run_dir) +245 model_hash = hash_artifact(model_path) +246 +247 pipeline = None +248 pipeline_path = None +249 pipeline_hash = None +250 pipeline_cfg_hash = None +251 if output.pipeline is not None: +252 if output.pipeline_cfg_hash is None: +253 msg = "Pipeline config hash is missing in the trainer output, but a pipeline object is present. This is unexpected as the pipeline config hash is needed for reproducibility tracking. Please ensure that the trainer implementation returns a pipeline config hash when a pipeline is returned." +254 logger.error(msg) +255 raise PipelineContractError(msg) +256 +257 pipeline = output.pipeline +258 pipeline_path = save_pipeline(pipeline, train_run_dir) +259 pipeline_hash = hash_artifact(pipeline_path) +260 pipeline_cfg_hash = output.pipeline_cfg_hash +261 +262 +263 feature_lineage = output.lineage +264 metrics = output.metrics +265 +266 persist_training_run( +267 model_cfg, +268 feature_lineage=feature_lineage, +269 start_time=start_time, +270 train_run_id=train_run_id, +271 experiment_dir=experiment_dir, +272 train_run_dir=train_run_dir, +273 metrics=metrics, +274 model_hash=model_hash, +275 pipeline_hash=pipeline_hash, +276 model_path=model_path, +277 pipeline_path=pipeline_path, +278 pipeline_cfg_hash=pipeline_cfg_hash, +279 timestamp=timestamp 280 ) 281 -282 return 0 +282 logger.info("Training run successfully persisted.") 283 -284 except Exception as e: -285 logger.exception("An error occurred during training.") -286 return resolve_exit_code(e) -287 -288if __name__ == "__main__": -289 sys.exit(main()) +284 delete_failure_management_folder( +285 folder_path=failure_management_dir, +286 cleanup=args.clean_up_failure_management, +287 stage="train" +288 ) +289 +290 return 0 +291 +292 except Exception as e: +293 logger.exception("An error occurred during training.") +294 return resolve_exit_code(e) +295 +296if __name__ == "__main__": +297 sys.exit(main())

    @@ -423,55 +431,62 @@

    86 ) 87 88 parser.add_argument( - 89 "--train-run-id", + 89 "--snapshot-binding-key", 90 type=str, - 91 default=None, - 92 help="Train run ID to use for this run (default: None, which generates a new unique train run ID). If provided, it should be in the format 'timestamp_randomstring', e.g., '20240101T120000_abcdef12'." + 91 help="Optional key for a snapshot binding to define which snapshot to load for each dataset. Snapshots should be defined in configs/snapshot_bindings_registry/bindings.yaml. Example value: '2026-03-20T02-54-47_61509023'", + 92 default=None 93 ) 94 95 parser.add_argument( - 96 "--env", - 97 choices=["dev", "test", "prod", "default"], - 98 default="default", - 99 help="Environment to run the script in (dev/test/prod) (default: default) ~ none" + 96 "--train-run-id", + 97 type=str, + 98 default=None, + 99 help="Train run ID to use for this run (default: None, which generates a new unique train run ID). If provided, it should be in the format 'timestamp_randomstring', e.g., '20240101T120000_abcdef12'." 100 ) 101 102 parser.add_argument( -103 "--strict", -104 type=str_to_bool, -105 default=True, -106 help="Whether to run in strict mode, which includes strict validation that may be computationally expensive (default: True)" +103 "--env", +104 choices=["dev", "test", "prod", "default"], +105 default="default", +106 help="Environment to run the script in (dev/test/prod) (default: default) ~ none" 107 ) 108 109 parser.add_argument( -110 "--experiment-id", -111 type=str, -112 default=LatestSnapshot.LATEST.value, -113 help="Experiment id (directory name under experiments/{problem}/{segment}/{version}); if not provided, defaults to 'latest' which picks the most recent experiment directory" +110 "--strict", +111 type=str_to_bool, +112 default=True, +113 help="Whether to run in strict mode, which includes strict validation that may be computationally expensive (default: True)" 114 ) 115 116 parser.add_argument( -117 "--logging-level", -118 choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], -119 default="INFO", -120 help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)" +117 "--experiment-id", +118 type=str, +119 default=LatestSnapshot.LATEST.value, +120 help="Experiment id (directory name under experiments/{problem}/{segment}/{version}); if not provided, defaults to 'latest' which picks the most recent experiment directory" 121 ) 122 123 parser.add_argument( -124 "--clean_up-failure-management", -125 type=str_to_bool, -126 default=True, -127 help="Whether to clean up failure management folder after successful run (default: True)" +124 "--logging-level", +125 choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], +126 default="INFO", +127 help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)" 128 ) 129 130 parser.add_argument( -131 "--overwrite-existing", +131 "--clean-up-failure-management", 132 type=str_to_bool, -133 default=False, -134 help="Whether to overwrite existing train run data if the train run ID already exists (default: False). If False and files (other than train.log) already exist within the train run, the script will raise an error to prevent accidental data loss." +133 default=True, +134 help="Whether to clean up failure management folder after successful run (default: True)" 135 ) 136 -137 return parser.parse_args() +137 parser.add_argument( +138 "--overwrite-existing", +139 type=str_to_bool, +140 default=False, +141 help="Whether to overwrite existing train run data if the train run ID already exists (default: False). If False and files (other than train.log) already exist within the train run, the script will raise an error to prevent accidental data loss." +142 ) +143 +144 return parser.parse_args()

    @@ -494,155 +509,156 @@

    -
    139def main() -> int:
    -140    """Run training, persist artifacts, and register run metadata.
    -141
    -142    Returns:
    -143        int: Process exit code where ``0`` indicates success.
    -144
    -145    Notes:
    -146        Exceptions are converted to process exit codes; the function is designed
    -147        as a CLI boundary and does not propagate failures upward.
    +            
    146def main() -> int:
    +147    """Run training, persist artifacts, and register run metadata.
     148
    -149    Side Effects:
    -150        Creates/updates training run directories, writes logs/artifacts/metadata,
    -151        and may delete failure-management folders on success.
    -152
    -153    Examples:
    -154        python pipelines/runners/train.py --problem cancellation --segment global --version v1 --experiment-id latest
    -155    """
    -156    args: argparse.Namespace
    -157    model_cfg: TrainModelConfig
    -158    trainer: Trainer
    -159    output: TrainOutput
    -160    model: AllowedModels
    -161    pipeline: Pipeline | None
    -162    feature_lineage: list[FeatureLineage]
    -163    metrics: dict[str, float]
    -164    pipeline_cfg_hash: str | None
    -165    model_path: Path
    -166    pipeline_path: Path | None
    -167
    -168    args = parse_args()
    -169
    -170    start_time = time.perf_counter()
    -171    timestamp = iso_no_colon(datetime.now())
    -172
    -173    log_level = getattr(logging, args.logging_level.upper(), logging.INFO)
    +149    Returns:
    +150        int: Process exit code where ``0`` indicates success.
    +151
    +152    Notes:
    +153        Exceptions are converted to process exit codes; the function is designed
    +154        as a CLI boundary and does not propagate failures upward.
    +155
    +156    Side Effects:
    +157        Creates/updates training run directories, writes logs/artifacts/metadata,
    +158        and may delete failure-management folders on success.
    +159
    +160    Examples:
    +161        python pipelines/runners/train.py --problem cancellation --segment global --version v1 --experiment-id latest
    +162    """
    +163    args: argparse.Namespace
    +164    model_cfg: TrainModelConfig
    +165    trainer: Trainer
    +166    output: TrainOutput
    +167    model: AllowedModels
    +168    pipeline: Pipeline | None
    +169    feature_lineage: list[FeatureLineage]
    +170    metrics: dict[str, float]
    +171    pipeline_cfg_hash: str | None
    +172    model_path: Path
    +173    pipeline_path: Path | None
     174
    -175    bootstrap_logging(level=log_level)
    +175    args = parse_args()
     176
    -177    try:
    -178        experiment_parent_dir = Path("experiments") / args.problem / args.segment / args.version
    -179        experiment_dir = get_snapshot_path(args.experiment_id, experiment_parent_dir)
    -180        print(f"Using experiment directory: {experiment_dir}\n")
    -181        search_dir = experiment_dir / "search"
    -182    except Exception as e:
    -183        logger.exception("Failed to get experiment directory")
    -184        return resolve_exit_code(e)
    -185
    -186    train_run_id = args.train_run_id if args.train_run_id else f"{timestamp}_{uuid4().hex[:8]}"
    -187    train_run_dir = experiment_dir / "training" / train_run_id
    -188
    -189    if not train_run_dir.exists() and args.train_run_id:
    -190        msg = f"Train run directory {train_run_dir} does not exist for provided train run ID {args.train_run_id}."
    -191        logger.error(msg)
    -192        return 1
    -193
    -194    if train_run_dir.exists():
    -195        add_file_handler(train_run_dir / "train.log", level=log_level)
    -196        existing_files = [f.name for f in train_run_dir.iterdir() if f.is_file() and f.name != "train.log"]
    -197        if existing_files and not args.overwrite_existing:
    -198            msg = f"Train run directory {train_run_dir} already exists and contains files: {', '.join(existing_files)}. To prevent accidental data loss, the script will not overwrite existing train run data. To run training with this train run ID, please delete the existing files (if deemed appropriate), or set --overwrite-existing to True (if you want to overwrite the existing data)."
    -199            logger.error(msg)
    -200            return 1
    -201    else:
    -202        train_run_dir.mkdir(parents=True, exist_ok=False)
    -203        add_file_handler(train_run_dir / "train.log", level=log_level)
    -204
    -205    failure_management_dir = Path("failure_management") / experiment_dir.name / "training" / train_run_id
    -206    failure_management_dir.mkdir(parents=True, exist_ok=True)
    -207
    -208    try:
    -209        model_cfg = load_and_validate_config(
    -210            Path(f"configs/train/{args.problem}/{args.segment}/{args.version}.yaml"),
    -211            cfg_type="train",
    -212            env=args.env,
    -213            search_dir=search_dir,
    -214        )
    -215
    -216        model_cfg = add_config_hash(model_cfg)
    -217
    -218        validate_lineage_integrity(search_dir)
    -219        validate_reproducibility(search_dir / "runtime.json")
    -220        validate_logical_config(model_cfg, search_dir)
    -221        validate_pipeline_cfg(search_dir / "metadata.json", model_cfg)
    +177    start_time = time.perf_counter()
    +178    timestamp = iso_no_colon(datetime.now())
    +179
    +180    log_level = getattr(logging, args.logging_level.upper(), logging.INFO)
    +181
    +182    bootstrap_logging(level=log_level)
    +183
    +184    try:
    +185        experiment_parent_dir = Path("experiments") / args.problem / args.segment / args.version
    +186        experiment_dir = get_snapshot_path(args.experiment_id, experiment_parent_dir)
    +187        print(f"Using experiment directory: {experiment_dir}\n")
    +188        search_dir = experiment_dir / "search"
    +189    except Exception as e:
    +190        logger.exception("Failed to get experiment directory")
    +191        return resolve_exit_code(e)
    +192
    +193    train_run_id = args.train_run_id if args.train_run_id else f"{timestamp}_{uuid4().hex[:8]}"
    +194    train_run_dir = experiment_dir / "training" / train_run_id
    +195
    +196    if not train_run_dir.exists() and args.train_run_id:
    +197        msg = f"Train run directory {train_run_dir} does not exist for provided train run ID {args.train_run_id}."
    +198        logger.error(msg)
    +199        return 1
    +200
    +201    if train_run_dir.exists():
    +202        add_file_handler(train_run_dir / "train.log", level=log_level)
    +203        existing_files = [f.name for f in train_run_dir.iterdir() if f.is_file() and f.name != "train.log"]
    +204        if existing_files and not args.overwrite_existing:
    +205            msg = f"Train run directory {train_run_dir} already exists and contains files: {', '.join(existing_files)}. To prevent accidental data loss, the script will not overwrite existing train run data. To run training with this train run ID, please delete the existing files (if deemed appropriate), or set --overwrite-existing to True (if you want to overwrite the existing data)."
    +206            logger.error(msg)
    +207            return 1
    +208    else:
    +209        train_run_dir.mkdir(parents=True, exist_ok=False)
    +210        add_file_handler(train_run_dir / "train.log", level=log_level)
    +211
    +212    failure_management_dir = Path("failure_management") / experiment_dir.name / "training" / train_run_id
    +213    failure_management_dir.mkdir(parents=True, exist_ok=True)
    +214
    +215    try:
    +216        model_cfg = load_and_validate_config(
    +217            Path(f"configs/train/{args.problem}/{args.segment}/{args.version}.yaml"),
    +218            cfg_type="train",
    +219            env=args.env,
    +220            search_dir=search_dir,
    +221        )
     222
    -223        algorithm = model_cfg.algorithm.value.lower()
    +223        model_cfg = add_config_hash(model_cfg)
     224
    -225        trainer = get_trainer(algorithm)
    -226
    -227        logger.info(f"Starting training using experiment_id = {experiment_dir.name}.")
    -228        output = trainer.train(
    -229            model_cfg,
    -230            strict=args.strict,
    -231            failure_management_dir=failure_management_dir,
    -232            search_dir=search_dir
    -233        )
    -234        logger.info("Training completed. Persisting training run...")
    -235
    -236        model = output.model
    -237        model_path = save_model(model, train_run_dir)
    -238        model_hash = hash_artifact(model_path)
    -239
    -240        pipeline = None
    -241        pipeline_path = None
    -242        pipeline_hash = None
    -243        pipeline_cfg_hash = None
    -244        if output.pipeline is not None:
    -245            if output.pipeline_cfg_hash is None:
    -246                msg = "Pipeline config hash is missing in the trainer output, but a pipeline object is present. This is unexpected as the pipeline config hash is needed for reproducibility tracking. Please ensure that the trainer implementation returns a pipeline config hash when a pipeline is returned."
    -247                logger.error(msg)
    -248                raise PipelineContractError(msg)
    -249
    -250            pipeline = output.pipeline
    -251            pipeline_path = save_pipeline(pipeline, train_run_dir)
    -252            pipeline_hash = hash_artifact(pipeline_path)
    -253            pipeline_cfg_hash = output.pipeline_cfg_hash
    -254
    -255
    -256        feature_lineage = output.lineage
    -257        metrics = output.metrics
    -258
    -259        persist_training_run(
    -260            model_cfg,
    -261            feature_lineage=feature_lineage,
    -262            start_time=start_time,
    -263            train_run_id=train_run_id,
    -264            experiment_dir=experiment_dir,
    -265            train_run_dir=train_run_dir,
    -266            metrics=metrics,
    -267            model_hash=model_hash,
    -268            pipeline_hash=pipeline_hash,
    -269            model_path=model_path,
    -270            pipeline_path=pipeline_path,
    -271            pipeline_cfg_hash=pipeline_cfg_hash,
    -272            timestamp=timestamp
    -273        )
    -274
    -275        logger.info("Training run successfully persisted.")
    -276
    -277        delete_failure_management_folder(
    -278            folder_path=failure_management_dir,
    -279            cleanup=args.clean_up_failure_management,
    -280            stage="train"
    +225        validate_lineage_integrity(search_dir)
    +226        validate_reproducibility(search_dir / "runtime.json")
    +227        validate_logical_config(model_cfg, search_dir)
    +228        validate_pipeline_cfg(search_dir / "metadata.json", model_cfg)
    +229
    +230        algorithm = model_cfg.algorithm.value.lower()
    +231
    +232        trainer = get_trainer(algorithm)
    +233
    +234        logger.info(f"Starting training using experiment_id = {experiment_dir.name}.")
    +235        output = trainer.train(
    +236            model_cfg,
    +237            strict=args.strict,
    +238            snapshot_binding_key=args.snapshot_binding_key,
    +239            failure_management_dir=failure_management_dir,
    +240            search_dir=search_dir
    +241        )
    +242        logger.info("Training completed. Persisting training run...")
    +243
    +244        model = output.model
    +245        model_path = save_model(model, train_run_dir)
    +246        model_hash = hash_artifact(model_path)
    +247
    +248        pipeline = None
    +249        pipeline_path = None
    +250        pipeline_hash = None
    +251        pipeline_cfg_hash = None
    +252        if output.pipeline is not None:
    +253            if output.pipeline_cfg_hash is None:
    +254                msg = "Pipeline config hash is missing in the trainer output, but a pipeline object is present. This is unexpected as the pipeline config hash is needed for reproducibility tracking. Please ensure that the trainer implementation returns a pipeline config hash when a pipeline is returned."
    +255                logger.error(msg)
    +256                raise PipelineContractError(msg)
    +257
    +258            pipeline = output.pipeline
    +259            pipeline_path = save_pipeline(pipeline, train_run_dir)
    +260            pipeline_hash = hash_artifact(pipeline_path)
    +261            pipeline_cfg_hash = output.pipeline_cfg_hash
    +262
    +263
    +264        feature_lineage = output.lineage
    +265        metrics = output.metrics
    +266
    +267        persist_training_run(
    +268            model_cfg,
    +269            feature_lineage=feature_lineage,
    +270            start_time=start_time,
    +271            train_run_id=train_run_id,
    +272            experiment_dir=experiment_dir,
    +273            train_run_dir=train_run_dir,
    +274            metrics=metrics,
    +275            model_hash=model_hash,
    +276            pipeline_hash=pipeline_hash,
    +277            model_path=model_path,
    +278            pipeline_path=pipeline_path,
    +279            pipeline_cfg_hash=pipeline_cfg_hash,
    +280            timestamp=timestamp
     281        )
     282
    -283        return 0
    +283        logger.info("Training run successfully persisted.")
     284
    -285    except Exception as e:
    -286        logger.exception("An error occurred during training.")
    -287        return resolve_exit_code(e)
    +285        delete_failure_management_folder(
    +286            folder_path=failure_management_dir,
    +287            cleanup=args.clean_up_failure_management,
    +288            stage="train"
    +289        )
    +290
    +291        return 0
    +292
    +293    except Exception as e:
    +294        logger.exception("An error occurred during training.")
    +295        return resolve_exit_code(e)
     
    diff --git a/docs/api/pipelines/pipelines/search/search.html b/docs/api/pipelines/pipelines/search/search.html index ece3628a..44963232 100644 --- a/docs/api/pipelines/pipelines/search/search.html +++ b/docs/api/pipelines/pipelines/search/search.html @@ -136,167 +136,175 @@

    69 ) 70 71 parser.add_argument( - 72 "--env", - 73 choices=["dev", "test", "prod", "default"], - 74 default="default", - 75 help="Environment to run the script in (dev/test/prod) (default: default) ~ none" + 72 "--snapshot-binding-key", + 73 type=str, + 74 help="Optional key for a snapshot binding to define which snapshot to load for each dataset. Snapshots should be defined in configs/snapshot_bindings_registry/bindings.yaml. Example value: '2026-03-20T02-54-47_61509023'", + 75 default=None 76 ) 77 78 parser.add_argument( - 79 "--strict", - 80 type=str_to_bool, - 81 default=True, - 82 help="Whether to run in strict mode, which includes strict validation that may be computationally expensive (default: True)" + 79 "--env", + 80 choices=["dev", "test", "prod", "default"], + 81 default="default", + 82 help="Environment to run the script in (dev/test/prod) (default: default) ~ none" 83 ) 84 85 parser.add_argument( - 86 "--logging-level", - 87 choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], - 88 default="INFO", - 89 help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)" + 86 "--strict", + 87 type=str_to_bool, + 88 default=True, + 89 help="Whether to run in strict mode, which includes strict validation that may be computationally expensive (default: True)" 90 ) 91 92 parser.add_argument( - 93 "--owner", - 94 type=str, - 95 default="Sebastijan", - 96 help="Owner of the experiment (default: Sebastijan)" + 93 "--logging-level", + 94 choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], + 95 default="INFO", + 96 help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)" 97 ) 98 99 parser.add_argument( -100 "--clean-up-failure-management", -101 type=str_to_bool, -102 default=True, -103 help="Whether to clean up failure management folder after successful run (default: True)" +100 "--owner", +101 type=str, +102 default="Sebastijan", +103 help="Owner of the experiment (default: Sebastijan)" 104 ) 105 106 parser.add_argument( -107 "--overwrite-existing", +107 "--clean-up-failure-management", 108 type=str_to_bool, -109 default=False, -110 help="Whether to overwrite existing experiment data if the experiment ID already exists (default: False). If False and files (other than search.log) already exist within the experiment, the script will raise an error to prevent accidental data loss." +109 default=True, +110 help="Whether to clean up failure management folder after successful run (default: True)" 111 ) 112 -113 return parser.parse_args() -114 -115def main() -> int: -116 """Perform hyperparameter search and persist experiment artifacts. -117 -118 Returns: -119 int: Process exit code where ``0`` indicates success. -120 -121 Notes: -122 Exceptions are converted to process exit codes; the function is designed -123 as a CLI boundary and does not propagate failures upward. +113 parser.add_argument( +114 "--overwrite-existing", +115 type=str_to_bool, +116 default=False, +117 help="Whether to overwrite existing experiment data if the experiment ID already exists (default: False). If False and files (other than search.log) already exist within the experiment, the script will raise an error to prevent accidental data loss." +118 ) +119 +120 return parser.parse_args() +121 +122def main() -> int: +123 """Perform hyperparameter search and persist experiment artifacts. 124 -125 Side Effects: -126 Creates/updates search run directories, writes logs/metadata/runtime -127 artifacts, and may delete failure-management folders on success. -128 -129 Examples: -130 python pipelines/search/search.py --problem cancellation --segment global --version v1 -131 """ -132 args: argparse.Namespace -133 model_cfg: SearchModelConfig -134 searcher: Searcher -135 search_results: dict[str, Any] -136 feature_lineage: list[FeatureLineage] -137 pipeline_hash: str -138 start_time: float -139 search_output: SearchOutput -140 -141 args = parse_args() -142 -143 start_time = time.perf_counter() -144 -145 timestamp = iso_no_colon(datetime.now()) -146 experiment_id = args.experiment_id if args.experiment_id else f"{timestamp}_{uuid4().hex[:8]}" -147 experiment_dir = Path("experiments") / args.problem / args.segment / args.version / experiment_id -148 -149 if not experiment_dir.exists() and args.experiment_id: -150 msg = f"Experiment directory {experiment_dir} does not exist for provided experiment ID {experiment_id}." -151 logger.error(msg) -152 return 1 -153 -154 search_dir = experiment_dir / "search" -155 log_level = getattr(logging, args.logging_level.upper(), logging.INFO) -156 -157 if search_dir.exists(): -158 setup_logging(search_dir / "search.log", level=log_level) -159 existing_files = [f.name for f in search_dir.iterdir() if f.is_file() and f.name != "search.log"] -160 if existing_files and not args.overwrite_existing: -161 msg = f"Search directory {search_dir} already exists and contains files: {', '.join(existing_files)}. To prevent accidental data loss, the script will not overwrite existing experiment data. To run search with this experiment ID, please delete the existing files (if deemed appropriate), or set --overwrite-existing to True (if you want to overwrite the existing data)." -162 logger.error(msg) -163 return 1 -164 else: -165 search_dir.mkdir(parents=True, exist_ok=True) -166 setup_logging(search_dir / "search.log", level=log_level) -167 -168 failure_management_dir = Path("failure_management") / experiment_id -169 failure_management_dir.mkdir(parents=True, exist_ok=True) -170 -171 try: -172 model_cfg = load_and_validate_config(Path(f"configs/search/{args.problem}/{args.segment}/{args.version}.yaml"), cfg_type="search", env=args.env) -173 -174 model_cfg = add_config_hash(model_cfg) -175 -176 key = model_cfg.algorithm.value.lower() +125 Returns: +126 int: Process exit code where ``0`` indicates success. +127 +128 Notes: +129 Exceptions are converted to process exit codes; the function is designed +130 as a CLI boundary and does not propagate failures upward. +131 +132 Side Effects: +133 Creates/updates search run directories, writes logs/metadata/runtime +134 artifacts, and may delete failure-management folders on success. +135 +136 Examples: +137 python pipelines/search/search.py --problem cancellation --segment global --version v1 +138 """ +139 args: argparse.Namespace +140 model_cfg: SearchModelConfig +141 searcher: Searcher +142 search_results: dict[str, Any] +143 feature_lineage: list[FeatureLineage] +144 pipeline_hash: str +145 start_time: float +146 search_output: SearchOutput +147 +148 args = parse_args() +149 +150 start_time = time.perf_counter() +151 +152 timestamp = iso_no_colon(datetime.now()) +153 experiment_id = args.experiment_id if args.experiment_id else f"{timestamp}_{uuid4().hex[:8]}" +154 experiment_dir = Path("experiments") / args.problem / args.segment / args.version / experiment_id +155 +156 if not experiment_dir.exists() and args.experiment_id: +157 msg = f"Experiment directory {experiment_dir} does not exist for provided experiment ID {experiment_id}." +158 logger.error(msg) +159 return 1 +160 +161 search_dir = experiment_dir / "search" +162 log_level = getattr(logging, args.logging_level.upper(), logging.INFO) +163 +164 if search_dir.exists(): +165 setup_logging(search_dir / "search.log", level=log_level) +166 existing_files = [f.name for f in search_dir.iterdir() if f.is_file() and f.name != "search.log"] +167 if existing_files and not args.overwrite_existing: +168 msg = f"Search directory {search_dir} already exists and contains files: {', '.join(existing_files)}. To prevent accidental data loss, the script will not overwrite existing experiment data. To run search with this experiment ID, please delete the existing files (if deemed appropriate), or set --overwrite-existing to True (if you want to overwrite the existing data)." +169 logger.error(msg) +170 return 1 +171 else: +172 search_dir.mkdir(parents=True, exist_ok=True) +173 setup_logging(search_dir / "search.log", level=log_level) +174 +175 failure_management_dir = Path("failure_management") / experiment_id +176 failure_management_dir.mkdir(parents=True, exist_ok=True) 177 -178 searcher = get_searcher(key) -179 -180 logger.info(f"Starting hyperparameter search for experiment {experiment_id}.") -181 search_output = searcher.search( -182 model_cfg, -183 strict=args.strict, -184 failure_management_dir=failure_management_dir, -185 ) -186 logger.info("Search completed. Persisting search run...") -187 -188 search_results = search_output.search_results -189 feature_lineage = search_output.feature_lineage -190 pipeline_hash = search_output.pipeline_hash -191 scoring_method = search_output.scoring_method -192 splits_info = search_output.splits_info -193 -194 persist_experiment( -195 model_cfg, -196 search_results=search_results, -197 owner=args.owner, -198 experiment_id=experiment_id, -199 search_dir=search_dir, -200 timestamp=timestamp, -201 start_time=start_time, -202 feature_lineage=feature_lineage, -203 pipeline_hash=pipeline_hash, -204 scoring_method=scoring_method, -205 splits_info=splits_info, -206 overwrite_existing=args.overwrite_existing -207 ) -208 -209 logger.info("Search run successfully persisted.") -210 -211 delete_failure_management_folder( -212 folder_path=failure_management_dir, -213 cleanup=args.clean_up_failure_management, -214 stage="search" +178 try: +179 model_cfg = load_and_validate_config(Path(f"configs/search/{args.problem}/{args.segment}/{args.version}.yaml"), cfg_type="search", env=args.env) +180 +181 model_cfg = add_config_hash(model_cfg) +182 +183 key = model_cfg.algorithm.value.lower() +184 +185 searcher = get_searcher(key) +186 +187 logger.info(f"Starting hyperparameter search for experiment {experiment_id}.") +188 search_output = searcher.search( +189 model_cfg, +190 strict=args.strict, +191 snapshot_binding_key=args.snapshot_binding_key, +192 failure_management_dir=failure_management_dir, +193 ) +194 logger.info("Search completed. Persisting search run...") +195 +196 search_results = search_output.search_results +197 feature_lineage = search_output.feature_lineage +198 pipeline_hash = search_output.pipeline_hash +199 scoring_method = search_output.scoring_method +200 splits_info = search_output.splits_info +201 +202 persist_experiment( +203 model_cfg, +204 search_results=search_results, +205 owner=args.owner, +206 experiment_id=experiment_id, +207 search_dir=search_dir, +208 timestamp=timestamp, +209 start_time=start_time, +210 feature_lineage=feature_lineage, +211 pipeline_hash=pipeline_hash, +212 scoring_method=scoring_method, +213 splits_info=splits_info, +214 overwrite_existing=args.overwrite_existing 215 ) 216 -217 return 0 +217 logger.info("Search run successfully persisted.") 218 -219 except Exception as e: -220 exit_code = resolve_exit_code(e) -221 -222 if isinstance(e, UserError): -223 logger.error("%s", e) -224 else: -225 logger.exception( -226 "An error occurred during hyperparameter search or configuration saving." -227 ) -228 -229 return exit_code -230 -231if __name__ == "__main__": -232 sys.exit(main()) +219 delete_failure_management_folder( +220 folder_path=failure_management_dir, +221 cleanup=args.clean_up_failure_management, +222 stage="search" +223 ) +224 +225 return 0 +226 +227 except Exception as e: +228 exit_code = resolve_exit_code(e) +229 +230 if isinstance(e, UserError): +231 logger.error("%s", e) +232 else: +233 logger.exception( +234 "An error occurred during hyperparameter search or configuration saving." +235 ) +236 +237 return exit_code +238 +239if __name__ == "__main__": +240 sys.exit(main())

    @@ -361,48 +369,55 @@

    70 ) 71 72 parser.add_argument( - 73 "--env", - 74 choices=["dev", "test", "prod", "default"], - 75 default="default", - 76 help="Environment to run the script in (dev/test/prod) (default: default) ~ none" + 73 "--snapshot-binding-key", + 74 type=str, + 75 help="Optional key for a snapshot binding to define which snapshot to load for each dataset. Snapshots should be defined in configs/snapshot_bindings_registry/bindings.yaml. Example value: '2026-03-20T02-54-47_61509023'", + 76 default=None 77 ) 78 79 parser.add_argument( - 80 "--strict", - 81 type=str_to_bool, - 82 default=True, - 83 help="Whether to run in strict mode, which includes strict validation that may be computationally expensive (default: True)" + 80 "--env", + 81 choices=["dev", "test", "prod", "default"], + 82 default="default", + 83 help="Environment to run the script in (dev/test/prod) (default: default) ~ none" 84 ) 85 86 parser.add_argument( - 87 "--logging-level", - 88 choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], - 89 default="INFO", - 90 help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)" + 87 "--strict", + 88 type=str_to_bool, + 89 default=True, + 90 help="Whether to run in strict mode, which includes strict validation that may be computationally expensive (default: True)" 91 ) 92 93 parser.add_argument( - 94 "--owner", - 95 type=str, - 96 default="Sebastijan", - 97 help="Owner of the experiment (default: Sebastijan)" + 94 "--logging-level", + 95 choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], + 96 default="INFO", + 97 help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) (default: INFO)" 98 ) 99 100 parser.add_argument( -101 "--clean-up-failure-management", -102 type=str_to_bool, -103 default=True, -104 help="Whether to clean up failure management folder after successful run (default: True)" +101 "--owner", +102 type=str, +103 default="Sebastijan", +104 help="Owner of the experiment (default: Sebastijan)" 105 ) 106 107 parser.add_argument( -108 "--overwrite-existing", +108 "--clean-up-failure-management", 109 type=str_to_bool, -110 default=False, -111 help="Whether to overwrite existing experiment data if the experiment ID already exists (default: False). If False and files (other than search.log) already exist within the experiment, the script will raise an error to prevent accidental data loss." +110 default=True, +111 help="Whether to clean up failure management folder after successful run (default: True)" 112 ) 113 -114 return parser.parse_args() +114 parser.add_argument( +115 "--overwrite-existing", +116 type=str_to_bool, +117 default=False, +118 help="Whether to overwrite existing experiment data if the experiment ID already exists (default: False). If False and files (other than search.log) already exist within the experiment, the script will raise an error to prevent accidental data loss." +119 ) +120 +121 return parser.parse_args() @@ -425,121 +440,122 @@

    -
    116def main() -> int:
    -117    """Perform hyperparameter search and persist experiment artifacts.
    -118
    -119    Returns:
    -120        int: Process exit code where ``0`` indicates success.
    -121
    -122    Notes:
    -123        Exceptions are converted to process exit codes; the function is designed
    -124        as a CLI boundary and does not propagate failures upward.
    +            
    123def main() -> int:
    +124    """Perform hyperparameter search and persist experiment artifacts.
     125
    -126    Side Effects:
    -127        Creates/updates search run directories, writes logs/metadata/runtime
    -128        artifacts, and may delete failure-management folders on success.
    -129
    -130    Examples:
    -131        python pipelines/search/search.py --problem cancellation --segment global --version v1
    -132    """
    -133    args: argparse.Namespace
    -134    model_cfg: SearchModelConfig
    -135    searcher: Searcher
    -136    search_results: dict[str, Any]
    -137    feature_lineage: list[FeatureLineage]
    -138    pipeline_hash: str
    -139    start_time: float
    -140    search_output: SearchOutput
    -141
    -142    args = parse_args()
    -143
    -144    start_time = time.perf_counter()
    -145
    -146    timestamp = iso_no_colon(datetime.now())
    -147    experiment_id = args.experiment_id if args.experiment_id else f"{timestamp}_{uuid4().hex[:8]}"
    -148    experiment_dir = Path("experiments") / args.problem / args.segment / args.version / experiment_id
    -149
    -150    if not experiment_dir.exists() and args.experiment_id:
    -151        msg = f"Experiment directory {experiment_dir} does not exist for provided experiment ID {experiment_id}."
    -152        logger.error(msg)
    -153        return 1
    -154
    -155    search_dir = experiment_dir / "search"
    -156    log_level = getattr(logging, args.logging_level.upper(), logging.INFO)
    -157
    -158    if search_dir.exists():
    -159        setup_logging(search_dir / "search.log", level=log_level)
    -160        existing_files = [f.name for f in search_dir.iterdir() if f.is_file() and f.name != "search.log"]
    -161        if existing_files and not args.overwrite_existing:
    -162            msg = f"Search directory {search_dir} already exists and contains files: {', '.join(existing_files)}. To prevent accidental data loss, the script will not overwrite existing experiment data. To run search with this experiment ID, please delete the existing files (if deemed appropriate), or set --overwrite-existing to True (if you want to overwrite the existing data)."
    -163            logger.error(msg)
    -164            return 1
    -165    else:
    -166        search_dir.mkdir(parents=True, exist_ok=True)
    -167        setup_logging(search_dir / "search.log", level=log_level)
    -168
    -169    failure_management_dir = Path("failure_management") / experiment_id
    -170    failure_management_dir.mkdir(parents=True, exist_ok=True)
    -171
    -172    try:
    -173        model_cfg = load_and_validate_config(Path(f"configs/search/{args.problem}/{args.segment}/{args.version}.yaml"), cfg_type="search", env=args.env)
    -174
    -175        model_cfg = add_config_hash(model_cfg)
    -176
    -177        key = model_cfg.algorithm.value.lower()
    +126    Returns:
    +127        int: Process exit code where ``0`` indicates success.
    +128
    +129    Notes:
    +130        Exceptions are converted to process exit codes; the function is designed
    +131        as a CLI boundary and does not propagate failures upward.
    +132
    +133    Side Effects:
    +134        Creates/updates search run directories, writes logs/metadata/runtime
    +135        artifacts, and may delete failure-management folders on success.
    +136
    +137    Examples:
    +138        python pipelines/search/search.py --problem cancellation --segment global --version v1
    +139    """
    +140    args: argparse.Namespace
    +141    model_cfg: SearchModelConfig
    +142    searcher: Searcher
    +143    search_results: dict[str, Any]
    +144    feature_lineage: list[FeatureLineage]
    +145    pipeline_hash: str
    +146    start_time: float
    +147    search_output: SearchOutput
    +148
    +149    args = parse_args()
    +150
    +151    start_time = time.perf_counter()
    +152
    +153    timestamp = iso_no_colon(datetime.now())
    +154    experiment_id = args.experiment_id if args.experiment_id else f"{timestamp}_{uuid4().hex[:8]}"
    +155    experiment_dir = Path("experiments") / args.problem / args.segment / args.version / experiment_id
    +156
    +157    if not experiment_dir.exists() and args.experiment_id:
    +158        msg = f"Experiment directory {experiment_dir} does not exist for provided experiment ID {experiment_id}."
    +159        logger.error(msg)
    +160        return 1
    +161
    +162    search_dir = experiment_dir / "search"
    +163    log_level = getattr(logging, args.logging_level.upper(), logging.INFO)
    +164
    +165    if search_dir.exists():
    +166        setup_logging(search_dir / "search.log", level=log_level)
    +167        existing_files = [f.name for f in search_dir.iterdir() if f.is_file() and f.name != "search.log"]
    +168        if existing_files and not args.overwrite_existing:
    +169            msg = f"Search directory {search_dir} already exists and contains files: {', '.join(existing_files)}. To prevent accidental data loss, the script will not overwrite existing experiment data. To run search with this experiment ID, please delete the existing files (if deemed appropriate), or set --overwrite-existing to True (if you want to overwrite the existing data)."
    +170            logger.error(msg)
    +171            return 1
    +172    else:
    +173        search_dir.mkdir(parents=True, exist_ok=True)
    +174        setup_logging(search_dir / "search.log", level=log_level)
    +175
    +176    failure_management_dir = Path("failure_management") / experiment_id
    +177    failure_management_dir.mkdir(parents=True, exist_ok=True)
     178
    -179        searcher = get_searcher(key)
    -180
    -181        logger.info(f"Starting hyperparameter search for experiment {experiment_id}.")
    -182        search_output = searcher.search(
    -183            model_cfg,
    -184            strict=args.strict,
    -185            failure_management_dir=failure_management_dir,
    -186        )
    -187        logger.info("Search completed. Persisting search run...")
    -188
    -189        search_results = search_output.search_results
    -190        feature_lineage = search_output.feature_lineage
    -191        pipeline_hash = search_output.pipeline_hash
    -192        scoring_method = search_output.scoring_method
    -193        splits_info = search_output.splits_info
    -194
    -195        persist_experiment(
    -196            model_cfg,
    -197            search_results=search_results,
    -198            owner=args.owner,
    -199            experiment_id=experiment_id,
    -200            search_dir=search_dir,
    -201            timestamp=timestamp,
    -202            start_time=start_time,
    -203            feature_lineage=feature_lineage,
    -204            pipeline_hash=pipeline_hash,
    -205            scoring_method=scoring_method,
    -206            splits_info=splits_info,
    -207            overwrite_existing=args.overwrite_existing
    -208        )
    -209
    -210        logger.info("Search run successfully persisted.")
    -211
    -212        delete_failure_management_folder(
    -213            folder_path=failure_management_dir,
    -214            cleanup=args.clean_up_failure_management,
    -215            stage="search"
    +179    try:
    +180        model_cfg = load_and_validate_config(Path(f"configs/search/{args.problem}/{args.segment}/{args.version}.yaml"), cfg_type="search", env=args.env)
    +181
    +182        model_cfg = add_config_hash(model_cfg)
    +183
    +184        key = model_cfg.algorithm.value.lower()
    +185
    +186        searcher = get_searcher(key)
    +187
    +188        logger.info(f"Starting hyperparameter search for experiment {experiment_id}.")
    +189        search_output = searcher.search(
    +190            model_cfg,
    +191            strict=args.strict,
    +192            snapshot_binding_key=args.snapshot_binding_key,
    +193            failure_management_dir=failure_management_dir,
    +194        )
    +195        logger.info("Search completed. Persisting search run...")
    +196
    +197        search_results = search_output.search_results
    +198        feature_lineage = search_output.feature_lineage
    +199        pipeline_hash = search_output.pipeline_hash
    +200        scoring_method = search_output.scoring_method
    +201        splits_info = search_output.splits_info
    +202
    +203        persist_experiment(
    +204            model_cfg,
    +205            search_results=search_results,
    +206            owner=args.owner,
    +207            experiment_id=experiment_id,
    +208            search_dir=search_dir,
    +209            timestamp=timestamp,
    +210            start_time=start_time,
    +211            feature_lineage=feature_lineage,
    +212            pipeline_hash=pipeline_hash,
    +213            scoring_method=scoring_method,
    +214            splits_info=splits_info,
    +215            overwrite_existing=args.overwrite_existing
     216        )
     217
    -218        return 0
    +218        logger.info("Search run successfully persisted.")
     219
    -220    except Exception as e:
    -221        exit_code = resolve_exit_code(e)
    -222
    -223        if isinstance(e, UserError):
    -224            logger.error("%s", e)
    -225        else:
    -226            logger.exception(
    -227                "An error occurred during hyperparameter search or configuration saving."
    -228            )
    -229
    -230        return exit_code
    +220        delete_failure_management_folder(
    +221            folder_path=failure_management_dir,
    +222            cleanup=args.clean_up_failure_management,
    +223            stage="search"
    +224        )
    +225
    +226        return 0
    +227
    +228    except Exception as e:
    +229        exit_code = resolve_exit_code(e)
    +230
    +231        if isinstance(e, UserError):
    +232            logger.error("%s", e)
    +233        else:
    +234            logger.exception(
    +235                "An error occurred during hyperparameter search or configuration saving."
    +236            )
    +237
    +238        return exit_code
     
    diff --git a/docs/api/pipelines/search.js b/docs/api/pipelines/search.js index a0bca49d..8b923dd5 100644 --- a/docs/api/pipelines/search.js +++ b/docs/api/pipelines/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();oThe main package containing all of the CLI pipelines.

    \n"}, "pipelines.data": {"fullname": "pipelines.data", "modulename": "pipelines.data", "kind": "module", "doc": "

    A package containing data pipelines.

    \n"}, "pipelines.data.build_interim_dataset": {"fullname": "pipelines.data.build_interim_dataset", "modulename": "pipelines.data.build_interim_dataset", "kind": "module", "doc": "

    CLI for building interim datasets from raw snapshots.

    \n\n

    This pipeline loads raw data, applies schema and cleaning rules defined in\nconfiguration, writes the interim dataset, and persists run metadata.

    \n"}, "pipelines.data.build_interim_dataset.logger": {"fullname": "pipelines.data.build_interim_dataset.logger", "modulename": "pipelines.data.build_interim_dataset", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.data.build_interim_dataset (WARNING)>"}, "pipelines.data.build_interim_dataset.parse_args": {"fullname": "pipelines.data.build_interim_dataset.parse_args", "modulename": "pipelines.data.build_interim_dataset", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for interim data creation.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.data.build_interim_dataset.main": {"fullname": "pipelines.data.build_interim_dataset.main", "modulename": "pipelines.data.build_interim_dataset", "qualname": "main", "kind": "function", "doc": "

    Execute the interim data preparation workflow.

    \n\n

    The workflow loads and validates interim configuration, reads source raw\ndata, applies normalization/schema/cleaning steps, writes the transformed\ndataset, and persists metadata for reproducibility.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates a new interim snapshot directory, writes transformed dataset\n artifacts, metadata, and run logs.

    \n\n

    Examples:\n python pipelines/data/build_interim_dataset.py --data hotel_bookings --version v1 --raw-snapshot-id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.data.build_processed_dataset": {"fullname": "pipelines.data.build_processed_dataset", "modulename": "pipelines.data.build_processed_dataset", "kind": "module", "doc": "

    CLI for producing processed datasets from interim snapshots.

    \n\n

    This module loads an interim dataset snapshot, applies processing rules such as\ncolumn removal and optional row identifier creation, then persists processed\ndata and metadata.

    \n"}, "pipelines.data.build_processed_dataset.logger": {"fullname": "pipelines.data.build_processed_dataset.logger", "modulename": "pipelines.data.build_processed_dataset", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.data.build_processed_dataset (WARNING)>"}, "pipelines.data.build_processed_dataset.parse_args": {"fullname": "pipelines.data.build_processed_dataset.parse_args", "modulename": "pipelines.data.build_processed_dataset", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for processed data creation.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.data.build_processed_dataset.main": {"fullname": "pipelines.data.build_processed_dataset.main", "modulename": "pipelines.data.build_processed_dataset", "qualname": "main", "kind": "function", "doc": "

    Execute the processed data generation workflow.

    \n\n

    The workflow loads and validates processed configuration, reads the selected\ninterim snapshot, performs configured transformations, writes output data,\nand saves metadata for traceability.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates a new processed snapshot directory and writes processed data,\n metadata, and run logs.

    \n\n

    Examples:\n python pipelines/data/build_processed_dataset.py --data hotel_bookings --version v1 --interim-snapshot-id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.data.register_raw_snapshot": {"fullname": "pipelines.data.register_raw_snapshot", "modulename": "pipelines.data.register_raw_snapshot", "kind": "module", "doc": "

    CLI for validating and recording metadata for raw data snapshots.

    \n\n

    This module resolves a raw snapshot path, loads the snapshot's single data file,\nprepares metadata, and persists that metadata alongside the snapshot.

    \n"}, "pipelines.data.register_raw_snapshot.logger": {"fullname": "pipelines.data.register_raw_snapshot.logger", "modulename": "pipelines.data.register_raw_snapshot", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.data.register_raw_snapshot (WARNING)>"}, "pipelines.data.register_raw_snapshot.parse_args": {"fullname": "pipelines.data.register_raw_snapshot.parse_args", "modulename": "pipelines.data.register_raw_snapshot", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the raw data handling pipeline.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.data.register_raw_snapshot.main": {"fullname": "pipelines.data.register_raw_snapshot.main", "modulename": "pipelines.data.register_raw_snapshot", "qualname": "main", "kind": "function", "doc": "

    Run the raw data handling workflow.

    \n\n

    The workflow resolves the requested raw snapshot, validates that exactly one\ndata file is present, reads the file, builds metadata, and persists\nmetadata.json into the snapshot directory.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are translated to standardized CLI exit codes via\n resolve_exit_code rather than being re-raised.

    \n\n

    Side Effects:\n Creates/updates register_raw_snapshot.log and writes metadata.json to the\n selected raw snapshot directory.

    \n\n

    Examples:\n python pipelines/data/register_raw_snapshot.py --data hotel_bookings --version v1 --snapshot_id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.features": {"fullname": "pipelines.features", "modulename": "pipelines.features", "kind": "module", "doc": "

    A package containing feature freezing pipelines.

    \n"}, "pipelines.features.freeze": {"fullname": "pipelines.features.freeze", "modulename": "pipelines.features.freeze", "kind": "module", "doc": "

    CLI for freezing and versioning feature sets.

    \n\n

    The script loads feature registry configuration, resolves the appropriate freeze\nstrategy, materializes a feature snapshot, and writes snapshot metadata.

    \n"}, "pipelines.features.freeze.logger": {"fullname": "pipelines.features.freeze.logger", "modulename": "pipelines.features.freeze", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.features.freeze (WARNING)>"}, "pipelines.features.freeze.parse_args": {"fullname": "pipelines.features.freeze.parse_args", "modulename": "pipelines.features.freeze", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for feature freezing.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.features.freeze.load_feature_registry": {"fullname": "pipelines.features.freeze.load_feature_registry", "modulename": "pipelines.features.freeze", "qualname": "load_feature_registry", "kind": "function", "doc": "

    Load feature registry configuration for a feature set version.

    \n\n

    Args:\n feature_set: Name of the feature set in the registry.\n version: Version key under the feature set.

    \n\n

    Returns:\n dict: Raw registry configuration for the requested feature set version.

    \n", "signature": "(feature_set: str, version: str) -> dict:", "funcdef": "def"}, "pipelines.features.freeze.main": {"fullname": "pipelines.features.freeze.main", "modulename": "pipelines.features.freeze", "qualname": "main", "kind": "function", "doc": "

    Execute the feature freeze workflow.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates a feature snapshot directory, writes freeze logs, and persists\n feature snapshot metadata.

    \n\n

    Examples:\n python pipelines/features/freeze.py --feature-set booking_context_features --version v1

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration": {"fullname": "pipelines.orchestration", "modulename": "pipelines.orchestration", "kind": "module", "doc": "

    A package with all of the orchestrator pipelines.

    \n"}, "pipelines.orchestration.common": {"fullname": "pipelines.orchestration.common", "modulename": "pipelines.orchestration.common", "kind": "module", "doc": "

    A package with helpers for orchestrator pipelines.

    \n"}, "pipelines.orchestration.common.orchestration_logging": {"fullname": "pipelines.orchestration.common.orchestration_logging", "modulename": "pipelines.orchestration.common.orchestration_logging", "kind": "module", "doc": "

    Script logging helpers for standardized completion messages.

    \n"}, "pipelines.orchestration.common.orchestration_logging.logger": {"fullname": "pipelines.orchestration.common.orchestration_logging.logger", "modulename": "pipelines.orchestration.common.orchestration_logging", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.common.orchestration_logging (WARNING)>"}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"fullname": "pipelines.orchestration.common.orchestration_logging.log_completion", "modulename": "pipelines.orchestration.common.orchestration_logging", "qualname": "log_completion", "kind": "function", "doc": "

    Log operation completion timestamp and human-readable duration.

    \n\n

    Args:\n start_time: Monotonic start time captured before operation execution.\n message: Completion message prefix.

    \n\n

    Returns:\n None.

    \n", "signature": "(start_time: float, message: str) -> None:", "funcdef": "def"}, "pipelines.orchestration.data": {"fullname": "pipelines.orchestration.data", "modulename": "pipelines.orchestration.data", "kind": "module", "doc": "

    A package for all of the data orchestration pipelines.

    \n"}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "kind": "module", "doc": "

    Batch runner for end-to-end data preprocessing.

    \n\n

    This script orchestrates three pipeline stages across discovered datasets and\nconfigurations: raw metadata handling, interim dataset generation, and\nprocessed dataset generation.

    \n"}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing.logger", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.data.execute_all_data_preprocessing (WARNING)>"}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "qualname": "run_cmd", "kind": "function", "doc": "

    Execute a subprocess command and log captured standard output.

    \n\n

    Args:\n cmd: Command and arguments to execute.

    \n\n

    Raises:\n subprocess.CalledProcessError: If the command exits with a non-zero\n status code.

    \n", "signature": "(cmd: list[str]) -> None:", "funcdef": "def"}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the preprocessing orchestrator.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing.main", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "qualname": "main", "kind": "function", "doc": "

    Run data preprocessing steps for all discoverable datasets.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n The workflow is best-effort per stage ordering (raw -> interim ->\n processed) and supports idempotent skipping when prior outputs exist.

    \n\n

    Side Effects:\n Executes multiple subprocess pipelines, writes consolidated script logs,\n and may create new snapshot artifacts across data stages.

    \n\n

    Examples:\n python -m pipelines.orchestration.data.execute_all_data_preprocessing --skip-if-existing true

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration.experiments": {"fullname": "pipelines.orchestration.experiments", "modulename": "pipelines.orchestration.experiments", "kind": "module", "doc": "

    A package for all of the experiments-related pipelines.

    \n"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "kind": "module", "doc": "

    Bulk experiment orchestrator for all configured model specs.

    \n\n

    Warning:\n This script is intended primarily for development usage. It delegates to a\n downstream orchestrator that defaults to \"latest\" snapshot resolution for\n several stages, which can produce surprising results in highly dynamic\n environments.

    \n"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "MODEL_SPECS_DIR", "kind": "variable", "doc": "

    \n", "default_value": "WindowsPath('configs/model_specs')"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.experiments.execute_all_experiments_with_latest (WARNING)>"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the bulk experiments runner.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "discover_models", "kind": "function", "doc": "

    Discover model tuples from the model specs directory structure.

    \n\n

    Returns:\n list[tuple[str, str, str]]: (problem, segment, version) tuples for\n all discoverable model specs.

    \n", "signature": "() -> list[tuple[str, str, str]]:", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "run_model", "kind": "function", "doc": "

    Run the end-to-end experiment orchestrator for one model tuple.

    \n\n

    Args:\n problem: Problem name.\n segment: Segment name.\n version: Model version.\n args: Parsed CLI arguments.\n start_time: Parent run timer start for shared completion logging.

    \n\n

    Returns:\n int: Return code from the delegated subprocess.

    \n", "signature": "(\tproblem: str,\tsegment: str,\tversion: str,\t*,\targs: argparse.Namespace,\tstart_time: float):", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "main", "kind": "function", "doc": "

    Execute experiments for all discovered model specs.

    \n\n

    Returns:\n int: 0 on full success, otherwise non-zero.

    \n\n

    Notes:\n The script continues across model failures and reports aggregate status\n at the end, enabling batch execution with partial tolerance.

    \n\n

    Side Effects:\n Discovers model specs from disk, runs delegated experiment subprocesses,\n and writes consolidated batch logs.

    \n\n

    Examples:\n python -m pipelines.orchestration.experiments.execute_all_experiments_with_latest --env dev --skip-if-existing true

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"fullname": "pipelines.orchestration.experiments.execute_experiment_with_latest", "modulename": "pipelines.orchestration.experiments.execute_experiment_with_latest", "kind": "module", "doc": "

    Single-model experiment orchestrator using staged pipeline CLIs.

    \n\n

    Warning:\n This script intentionally relies on \"latest\" snapshot resolution for\n selected stages unless explicit identifiers are provided by invoked\n downstream commands. Review logs carefully in concurrent environments.

    \n"}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"fullname": "pipelines.orchestration.experiments.execute_experiment_with_latest.logger", "modulename": "pipelines.orchestration.experiments.execute_experiment_with_latest", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.experiments.execute_experiment_with_latest (WARNING)>"}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"fullname": "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args", "modulename": "pipelines.orchestration.experiments.execute_experiment_with_latest", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for single-model orchestration.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"fullname": "pipelines.orchestration.experiments.execute_experiment_with_latest.main", "modulename": "pipelines.orchestration.experiments.execute_experiment_with_latest", "qualname": "main", "kind": "function", "doc": "

    Run search, train, evaluate, and explain steps for one model config.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Orchestration relies on downstream commands that may resolve latest run\n identifiers dynamically; concurrent writes can influence selection.

    \n\n

    Side Effects:\n Invokes search/train/evaluate/explain subprocesses and writes aggregated\n experiment orchestration logs.

    \n\n

    Examples:\n python -m pipelines.orchestration.experiments.execute_experiment_with_latest --problem no_show --segment global --version v1

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration.features": {"fullname": "pipelines.orchestration.features", "modulename": "pipelines.orchestration.features", "kind": "module", "doc": "

    A package for all of the pipelines specific to feature freezing.

    \n"}, "pipelines.orchestration.features.freeze_all_feature_sets": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "kind": "module", "doc": "

    Bulk feature freezing orchestrator.

    \n\n

    This script iterates through feature registry entries and executes the feature\nfreeze pipeline for each feature-set version, with optional skipping when\nexisting snapshot folders are present.

    \n"}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets.logger", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.features.freeze_all_feature_sets (WARNING)>"}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets.parse_args", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for bulk feature freezing.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets.log_completion", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "qualname": "log_completion", "kind": "function", "doc": "

    Log script completion timing details.

    \n\n

    Args:\n start_time: Start time from time.perf_counter().\n message: Completion message to emit.

    \n", "signature": "(start_time: float, message: str):", "funcdef": "def"}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets.main", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "qualname": "main", "kind": "function", "doc": "

    Freeze all feature sets registered in the feature registry.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Existing freeze directories can be skipped for idempotent runs when\n --skip-if-existing is enabled.

    \n\n

    Side Effects:\n Executes feature-freezing subprocess calls per registry entry and writes\n batch-level logs.

    \n\n

    Examples:\n python -m pipelines.orchestration.features.freeze_all_feature_sets --skip-if-existing true

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration.master": {"fullname": "pipelines.orchestration.master", "modulename": "pipelines.orchestration.master", "kind": "module", "doc": "

    A package for the master orchestrator pipeline.

    \n"}, "pipelines.orchestration.master.run_all_workflows": {"fullname": "pipelines.orchestration.master.run_all_workflows", "modulename": "pipelines.orchestration.master.run_all_workflows", "kind": "module", "doc": "

    Master orchestration script that executes all major project workflows.

    \n\n

    Warning:\n This script triggers full preprocessing, feature freezing, and experiment\n execution. It is intentionally powerful and should be run with care.

    \n"}, "pipelines.orchestration.master.run_all_workflows.logger": {"fullname": "pipelines.orchestration.master.run_all_workflows.logger", "modulename": "pipelines.orchestration.master.run_all_workflows", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.master.run_all_workflows (WARNING)>"}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"fullname": "pipelines.orchestration.master.run_all_workflows.parse_args", "modulename": "pipelines.orchestration.master.run_all_workflows", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the master orchestrator.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.master.run_all_workflows.run_step": {"fullname": "pipelines.orchestration.master.run_all_workflows.run_step", "modulename": "pipelines.orchestration.master.run_all_workflows", "qualname": "run_step", "kind": "function", "doc": "

    Run one orchestration step command with structured logging.

    \n\n

    Args:\n cmd: Command and arguments for the step.\n step_name: Human-readable step name for logs.

    \n\n

    Returns:\n int: Subprocess return code (0 on success).

    \n", "signature": "(cmd: list[str], step_name: str) -> int:", "funcdef": "def"}, "pipelines.orchestration.master.run_all_workflows.main": {"fullname": "pipelines.orchestration.master.run_all_workflows.main", "modulename": "pipelines.orchestration.master.run_all_workflows", "qualname": "main", "kind": "function", "doc": "

    Execute all high-level orchestration steps in sequence.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n This is a high-impact orchestrator that chains full preprocessing,\n freezing, and experiment execution; partial failures stop later stages.

    \n\n

    Side Effects:\n Launches multiple long-running subprocess workflows and writes a single\n master orchestration log.

    \n\n

    Examples:\n python -m pipelines.orchestration.master.run_all_workflows --env dev --skip-if-existing true

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.promotion": {"fullname": "pipelines.promotion", "modulename": "pipelines.promotion", "kind": "module", "doc": "

    A package for promotion pipelines.

    \n"}, "pipelines.promotion.promote": {"fullname": "pipelines.promotion.promote", "modulename": "pipelines.promotion.promote", "kind": "module", "doc": "

    CLI for staging or promoting trained model runs.

    \n\n

    This entrypoint builds a promotion context from CLI inputs, configures logging\nfor the promotion run, and delegates execution to the promotion service.

    \n"}, "pipelines.promotion.promote.logger": {"fullname": "pipelines.promotion.promote.logger", "modulename": "pipelines.promotion.promote", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.promotion.promote (WARNING)>"}, "pipelines.promotion.promote.parse_args": {"fullname": "pipelines.promotion.promote.parse_args", "modulename": "pipelines.promotion.promote", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the model promotion workflow.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.promotion.promote.main": {"fullname": "pipelines.promotion.promote.main", "modulename": "pipelines.promotion.promote", "qualname": "main", "kind": "function", "doc": "

    Execute model staging or production promotion.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates a promotion run directory with logs and persists promotion\n artifacts through the promotion service.

    \n\n

    Examples:\n python pipelines/promotion/promote.py --problem no_show --segment global --version v1 --experiment-id --train-run-id --eval-run-id --explain-run-id --stage staging

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.runners": {"fullname": "pipelines.runners", "modulename": "pipelines.runners", "kind": "module", "doc": "

    A package for runners' pipelines.

    \n"}, "pipelines.runners.evaluate": {"fullname": "pipelines.runners.evaluate", "modulename": "pipelines.runners.evaluate", "kind": "module", "doc": "

    Evaluation runner CLI.

    \n\n

    This module provides a small command-line entrypoint to evaluate a trained\nmodel. It validates the model configuration, dispatches to task-specific\nevaluators and persists evaluation results via updater functions.

    \n\n

    Typical usage example:\n python -m pipelines.runners.evaluate \\\n --problem cancellation --segment global --version v1 \\\n --experiment-id 20260206_154343_2f5c2000 \\\n --train-id 20260206_162120_sdg42000 \nThe module exposes helper functions used by the CLI and a main() function\nwhich orchestrates the complete evaluation flow.

    \n"}, "pipelines.runners.evaluate.logger": {"fullname": "pipelines.runners.evaluate.logger", "modulename": "pipelines.runners.evaluate", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.runners.evaluate (WARNING)>"}, "pipelines.runners.evaluate.parse_args": {"fullname": "pipelines.runners.evaluate.parse_args", "modulename": "pipelines.runners.evaluate", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for evaluation.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.runners.evaluate.main": {"fullname": "pipelines.runners.evaluate.main", "modulename": "pipelines.runners.evaluate", "qualname": "main", "kind": "function", "doc": "

    Run model evaluation and persist evaluation artifacts.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates evaluation run directories, writes predictions/metrics artifacts,\n metadata, runtime snapshots, and evaluation logs.

    \n\n

    Examples:\n python pipelines/runners/evaluate.py --problem cancellation --segment global --version v1 --experiment-id latest --train-id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.runners.explain": {"fullname": "pipelines.runners.explain", "modulename": "pipelines.runners.explain", "kind": "module", "doc": "

    Explainability runner CLI.

    \n\n

    This module runs explainability for a selected trained run, validates lineage\nand reproducibility constraints, and persists explainability outputs.

    \n"}, "pipelines.runners.explain.logger": {"fullname": "pipelines.runners.explain.logger", "modulename": "pipelines.runners.explain", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.runners.explain (WARNING)>"}, "pipelines.runners.explain.parse_args": {"fullname": "pipelines.runners.explain.parse_args", "modulename": "pipelines.runners.explain", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for explainability execution.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.runners.explain.main": {"fullname": "pipelines.runners.explain.main", "modulename": "pipelines.runners.explain", "qualname": "main", "kind": "function", "doc": "

    Execute explainability for a trained model run.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates explainability run directories, writes explainability artifacts,\n metadata, runtime snapshots, and explainability logs.

    \n\n

    Examples:\n python pipelines/runners/explain.py --problem cancellation --segment global --version v1 --experiment-id latest --train-id latest --top-k 20

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.runners.train": {"fullname": "pipelines.runners.train", "modulename": "pipelines.runners.train", "kind": "module", "doc": "

    Training script entry point and helpers.

    \n\n

    This module provides a small CLI entrypoint to run model training for\ndifferent tasks and algorithms. It exposes helper functions to parse\ncommand-line arguments, load YAML configuration files, validate them\nagainst the project's Pydantic schema, and run the appropriate trainer\nimplementation. After training, the resulting pipeline and metadata are\npersisted and the global models registry is updated.

    \n\n

    Typical usage:\n python -m ml.training.training.train \\\n --problem cancellation --segment global --version v1 \\\n --experiment-id 20260206_154343_2f5c2000

    \n\n

    The --experiment-id flag must point to an existing experiment\ndirectory created by a prior search run.

    \n"}, "pipelines.runners.train.logger": {"fullname": "pipelines.runners.train.logger", "modulename": "pipelines.runners.train", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.runners.train (WARNING)>"}, "pipelines.runners.train.parse_args": {"fullname": "pipelines.runners.train.parse_args", "modulename": "pipelines.runners.train", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for training.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.runners.train.main": {"fullname": "pipelines.runners.train.main", "modulename": "pipelines.runners.train", "qualname": "main", "kind": "function", "doc": "

    Run training, persist artifacts, and register run metadata.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates/updates training run directories, writes logs/artifacts/metadata,\n and may delete failure-management folders on success.

    \n\n

    Examples:\n python pipelines/runners/train.py --problem cancellation --segment global --version v1 --experiment-id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.search": {"fullname": "pipelines.search", "modulename": "pipelines.search", "kind": "module", "doc": "

    A package for search pipelines.

    \n"}, "pipelines.search.search": {"fullname": "pipelines.search.search", "modulename": "pipelines.search.search", "kind": "module", "doc": "

    Hyperparameter search runner CLI.

    \n\n

    This module executes model search for a given problem/segment/version,\npersists search outputs, and manages failure-management cleanup.

    \n"}, "pipelines.search.search.logger": {"fullname": "pipelines.search.search.logger", "modulename": "pipelines.search.search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.search.search (WARNING)>"}, "pipelines.search.search.parse_args": {"fullname": "pipelines.search.search.parse_args", "modulename": "pipelines.search.search", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for hyperparameter search.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.search.search.main": {"fullname": "pipelines.search.search.main", "modulename": "pipelines.search.search", "qualname": "main", "kind": "function", "doc": "

    Perform hyperparameter search and persist experiment artifacts.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates/updates search run directories, writes logs/metadata/runtime\n artifacts, and may delete failure-management folders on success.

    \n\n

    Examples:\n python pipelines/search/search.py --problem cancellation --segment global --version v1

    \n", "signature": "() -> int:", "funcdef": "def"}}, "docInfo": {"pipelines": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "pipelines.data": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "pipelines.data.build_interim_dataset": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}, "pipelines.data.build_interim_dataset.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "pipelines.data.build_interim_dataset.parse_args": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.data.build_interim_dataset.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 110}, "pipelines.data.build_processed_dataset": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "pipelines.data.build_processed_dataset.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "pipelines.data.build_processed_dataset.parse_args": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.data.build_processed_dataset.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 110}, "pipelines.data.register_raw_snapshot": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "pipelines.data.register_raw_snapshot.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "pipelines.data.register_raw_snapshot.parse_args": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 22}, "pipelines.data.register_raw_snapshot.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 119}, "pipelines.features": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "pipelines.features.freeze": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 32}, "pipelines.features.freeze.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.features.freeze.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 19}, "pipelines.features.freeze.load_feature_registry": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 47}, "pipelines.features.freeze.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 78}, "pipelines.orchestration": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "pipelines.orchestration.common": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "pipelines.orchestration.common.orchestration_logging": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "pipelines.orchestration.common.orchestration_logging.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 33}, "pipelines.orchestration.data": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 38}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 88}, "pipelines.orchestration.experiments": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 47}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 21}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 32}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 52}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 85}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 41}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 82}, "pipelines.orchestration.features": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "pipelines.orchestration.features.freeze_all_feature_sets": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 37}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 28}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 82}, "pipelines.orchestration.master": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "pipelines.orchestration.master.run_all_workflows": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 36}, "pipelines.orchestration.master.run_all_workflows.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.orchestration.master.run_all_workflows.run_step": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 43}, "pipelines.orchestration.master.run_all_workflows.main": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 83}, "pipelines.promotion": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "pipelines.promotion.promote": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 36}, "pipelines.promotion.promote.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.promotion.promote.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 21}, "pipelines.promotion.promote.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 102}, "pipelines.runners": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "pipelines.runners.evaluate": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 91}, "pipelines.runners.evaluate.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.runners.evaluate.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 18}, "pipelines.runners.evaluate.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 85}, "pipelines.runners.explain": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 27}, "pipelines.runners.explain.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.runners.explain.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 19}, "pipelines.runners.explain.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 88}, "pipelines.runners.train": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 117}, "pipelines.runners.train.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.runners.train.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 18}, "pipelines.runners.train.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 84}, "pipelines.search": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "pipelines.search.search": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 27}, "pipelines.search.search.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.search.search.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 19}, "pipelines.search.search.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 81}}, "length": 78, "save": true}, "index": {"qualname": {"root": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 15}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 14}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 14}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 3}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2}}}}}}}}}, "m": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}}}}}}, "fullname": {"root": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines": {"tf": 1}, "pipelines.data": {"tf": 1}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 78}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 14}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 4}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 5}}}, "e": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data": {"tf": 1}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}}, "df": 19, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 8}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}}, "df": 4}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 15}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 11}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 14}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 22}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 6}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 7, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}}, "df": 13}}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 4}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1.4142135623730951}, "pipelines.search.search.logger": {"tf": 1.4142135623730951}, "pipelines.search.search.parse_args": {"tf": 1.4142135623730951}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 6, "s": {"docs": {"pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 12}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 10}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 35}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 4}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2}}}}}}}}}, "m": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 16}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 4, "s": {"docs": {"pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 12}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 4}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}}, "df": 4}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 11}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}}, "df": 4}}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.logger": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1.4142135623730951}, "pipelines.features.freeze.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.logger": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.logger": {"tf": 1.4142135623730951}, "pipelines.runners.explain.logger": {"tf": 1.4142135623730951}, "pipelines.runners.train.logger": {"tf": 1.4142135623730951}, "pipelines.search.search.logger": {"tf": 1.4142135623730951}}, "df": 16, "l": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 15}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 15}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 15}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset.logger": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.promotion.promote.logger": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"pipelines.promotion.promote.logger": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}}, "df": 2}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}}, "df": 1}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 15}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 1}}}}}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 15}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot.logger": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.register_raw_snapshot.logger": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.register_raw_snapshot.logger": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.search.search.logger": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.explain.logger": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate.logger": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 4}}}, "x": {"2": {"7": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.train.logger": {"tf": 1}}, "df": 1}}}}}}}, "signature": {"root": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 3.605551275463989}, "pipelines.data.build_interim_dataset.main": {"tf": 3}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 3.605551275463989}, "pipelines.data.build_processed_dataset.main": {"tf": 3}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 3.605551275463989}, "pipelines.data.register_raw_snapshot.main": {"tf": 3}, "pipelines.features.freeze.parse_args": {"tf": 3.605551275463989}, "pipelines.features.freeze.load_feature_registry": {"tf": 4.898979485566356}, "pipelines.features.freeze.main": {"tf": 3}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 4.898979485566356}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 4.58257569495584}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 3}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 5.196152422706632}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 7.810249675906654}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 3}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 3}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 4.69041575982343}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 3}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 5.385164807134504}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 3}, "pipelines.promotion.promote.parse_args": {"tf": 3.605551275463989}, "pipelines.promotion.promote.main": {"tf": 3}, "pipelines.runners.evaluate.parse_args": {"tf": 3.605551275463989}, "pipelines.runners.evaluate.main": {"tf": 3}, "pipelines.runners.explain.parse_args": {"tf": 3.605551275463989}, "pipelines.runners.explain.main": {"tf": 3}, "pipelines.runners.train.parse_args": {"tf": 3.605551275463989}, "pipelines.runners.train.main": {"tf": 3}, "pipelines.search.search.parse_args": {"tf": 3.605551275463989}, "pipelines.search.search.main": {"tf": 3}}, "df": 35, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 15}}}}}, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 15}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 15}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}}, "df": 7}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0}}, "doc": {"root": {"0": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 15}, "1": {"5": {"4": {"3": {"4": {"3": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"2": {"1": {"2": {"0": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"0": {"2": {"6": {"0": {"2": {"0": {"6": {"docs": {"pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"pipelines.runners.explain.main": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "f": {"5": {"docs": {}, "df": 0, "c": {"2": {"0": {"0": {"0": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}, "docs": {"pipelines": {"tf": 1.7320508075688772}, "pipelines.data": {"tf": 1.7320508075688772}, "pipelines.data.build_interim_dataset": {"tf": 2.449489742783178}, "pipelines.data.build_interim_dataset.logger": {"tf": 1.7320508075688772}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 2.449489742783178}, "pipelines.data.build_interim_dataset.main": {"tf": 4.358898943540674}, "pipelines.data.build_processed_dataset": {"tf": 2.449489742783178}, "pipelines.data.build_processed_dataset.logger": {"tf": 1.7320508075688772}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 2.449489742783178}, "pipelines.data.build_processed_dataset.main": {"tf": 4.358898943540674}, "pipelines.data.register_raw_snapshot": {"tf": 2.449489742783178}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1.7320508075688772}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 2.449489742783178}, "pipelines.data.register_raw_snapshot.main": {"tf": 5.196152422706632}, "pipelines.features": {"tf": 1.7320508075688772}, "pipelines.features.freeze": {"tf": 2.449489742783178}, "pipelines.features.freeze.logger": {"tf": 1.7320508075688772}, "pipelines.features.freeze.parse_args": {"tf": 2.449489742783178}, "pipelines.features.freeze.load_feature_registry": {"tf": 3}, "pipelines.features.freeze.main": {"tf": 4}, "pipelines.orchestration": {"tf": 1.7320508075688772}, "pipelines.orchestration.common": {"tf": 1.7320508075688772}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1.7320508075688772}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 3}, "pipelines.orchestration.data": {"tf": 1.7320508075688772}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 2.449489742783178}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 3}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 4.242640687119285}, "pipelines.orchestration.experiments": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 2.449489742783178}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 3.1622776601683795}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 3}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 4}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 2.449489742783178}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 4}, "pipelines.orchestration.features": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 2.449489742783178}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 3}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 4.358898943540674}, "pipelines.orchestration.master": {"tf": 1.7320508075688772}, "pipelines.orchestration.master.run_all_workflows": {"tf": 2.449489742783178}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 3.3166247903554}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 4}, "pipelines.promotion": {"tf": 1.7320508075688772}, "pipelines.promotion.promote": {"tf": 2.449489742783178}, "pipelines.promotion.promote.logger": {"tf": 1.7320508075688772}, "pipelines.promotion.promote.parse_args": {"tf": 2.449489742783178}, "pipelines.promotion.promote.main": {"tf": 4.898979485566356}, "pipelines.runners": {"tf": 1.7320508075688772}, "pipelines.runners.evaluate": {"tf": 3.872983346207417}, "pipelines.runners.evaluate.logger": {"tf": 1.7320508075688772}, "pipelines.runners.evaluate.parse_args": {"tf": 2.449489742783178}, "pipelines.runners.evaluate.main": {"tf": 4}, "pipelines.runners.explain": {"tf": 2.449489742783178}, "pipelines.runners.explain.logger": {"tf": 1.7320508075688772}, "pipelines.runners.explain.parse_args": {"tf": 2.449489742783178}, "pipelines.runners.explain.main": {"tf": 4}, "pipelines.runners.train": {"tf": 4}, "pipelines.runners.train.logger": {"tf": 1.7320508075688772}, "pipelines.runners.train.parse_args": {"tf": 2.449489742783178}, "pipelines.runners.train.main": {"tf": 4}, "pipelines.search": {"tf": 1.7320508075688772}, "pipelines.search.search": {"tf": 2.449489742783178}, "pipelines.search.search.logger": {"tf": 1.7320508075688772}, "pipelines.search.search.parse_args": {"tf": 2.449489742783178}, "pipelines.search.search.main": {"tf": 4}}, "df": 78, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"pipelines": {"tf": 1.4142135623730951}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 2}, "pipelines.data.build_processed_dataset.main": {"tf": 2}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 2.449489742783178}, "pipelines.features.freeze": {"tf": 1.4142135623730951}, "pipelines.features.freeze.load_feature_registry": {"tf": 2}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate": {"tf": 2}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 2.23606797749979}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 35, "n": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}, "m": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 14}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 6}, "n": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 4}, "r": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.runners.train": {"tf": 2.23606797749979}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1.7320508075688772}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 18, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {"pipelines.runners.explain.main": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}}}, "m": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 7, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.features.freeze": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 4}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}}, "df": 4}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {"pipelines.search.search": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot": {"tf": 1.7320508075688772}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.7320508075688772}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}}, "df": 13}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"pipelines.orchestration.common.orchestration_logging": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 15, "s": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}, "l": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines": {"tf": 1}, "pipelines.data": {"tf": 1}, "pipelines.features": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.promotion": {"tf": 1}, "pipelines.runners": {"tf": 1}, "pipelines.search": {"tf": 1}}, "df": 12}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 15, "d": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 15}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 7, "s": {"docs": {"pipelines": {"tf": 1}, "pipelines.data": {"tf": 1}, "pipelines.features": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion": {"tf": 1}, "pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.search": {"tf": 1}}, "df": 17, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.promotion.promote.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate.main": {"tf": 1}}, "df": 1}}}}}}}, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.explain.main": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.train.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.search.search.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 10}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.search.search.main": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1.4142135623730951}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 13, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 2.23606797749979}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.promotion.promote.main": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 10, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.search.search": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1.7320508075688772}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 2}}, "df": 4}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.promotion.promote": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 9, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 16}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines": {"tf": 1}, "pipelines.data": {"tf": 1}, "pipelines.features": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 7, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 2}, "s": {"docs": {"pipelines.promotion.promote": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.explain": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.7320508075688772}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 18, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1.4142135623730951}}, "df": 4}}}, "e": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 16, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 9}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {"pipelines": {"tf": 1}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 34, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.search.search": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 6, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3}}}}}}}}}, "d": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {"pipelines.data": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}, "pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.7320508075688772}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 30, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}}, "df": 12}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}}}}}}, "n": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2, "d": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_interim_dataset.main": {"tf": 2}, "pipelines.data.build_processed_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 2.23606797749979}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.7320508075688772}, "pipelines.runners.explain": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 2.23606797749979}, "pipelines.runners.train.main": {"tf": 1.7320508075688772}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.main": {"tf": 1.7320508075688772}}, "df": 29}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1.4142135623730951}, "pipelines.features.freeze.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.parse_args": {"tf": 1.4142135623730951}, "pipelines.runners.explain.parse_args": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1.4142135623730951}, "pipelines.search.search.parse_args": {"tf": 1.4142135623730951}}, "df": 18}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 14}}}}}, "s": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 6}}, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 12}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}}, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 9}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1, "d": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"pipelines": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}}, "df": 6}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 3}}}}}}, "n": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 6, "e": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 4}}, "r": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 10}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.7320508075688772}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data": {"tf": 1}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.7320508075688772}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 2}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 2}}, "df": 13, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.7320508075688772}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}}, "v": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 2}, "d": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 3}}}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 5}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1.4142135623730951}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}, "pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 46}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 7}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 9}}}, "e": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.7320508075688772}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 9, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 10}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1.7320508075688772}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 2.449489742783178}, "pipelines.features.freeze.main": {"tf": 2}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 2}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 2}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 10, "s": {"docs": {"pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "k": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.features.freeze.main": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 3}}}}, "y": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 6, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 2}, "pipelines.data.build_processed_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 7}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 2}}}}}}}}}}, "o": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 13}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.promotion.promote": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 15}, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 2}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 2}}}}}}}}}, "f": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5}, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 2.23606797749979}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 8}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 2}}}, "n": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 2}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1.7320508075688772}, "pipelines.runners.train.main": {"tf": 1.7320508075688772}, "pipelines.search.search.main": {"tf": 1}}, "df": 18, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 5, "s": {"docs": {"pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 33}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 2}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}}, "df": 5}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1.7320508075688772}, "pipelines.data.register_raw_snapshot": {"tf": 1.7320508075688772}, "pipelines.data.register_raw_snapshot.main": {"tf": 2.449489742783178}, "pipelines.features.freeze": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 11, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 5}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}}, "df": 11}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 2}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1.4142135623730951}}, "df": 3}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5}, "d": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1, "d": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1.4142135623730951}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 15}}}}, "h": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 2.23606797749979}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 3, "s": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}}, "df": 2}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 10}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1.7320508075688772}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 6, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}}, "df": 3}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipelines.orchestration.features": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "g": {"4": {"2": {"0": {"0": {"0": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}}, "df": 6}}}, "g": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 12, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.runners.train.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.search.search.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 16, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.explain": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1}}, "df": 10}}, "r": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 15}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}}, "df": 6, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 13}}, "n": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 9}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 3}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 14}}}}}}}}, "o": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}}, "n": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 10, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}}, "df": 6}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.7320508075688772}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1.4142135623730951}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 13, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 6}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 9}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1.7320508075688772}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14, "s": {"docs": {"pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 4}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.runners.explain": {"tf": 1.7320508075688772}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 2}}, "df": 3}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 3}, "v": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 3}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.promotion.promote.main": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}}, "df": 2}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.evaluate": {"tf": 1.7320508075688772}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 2}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1}}}}, "v": {"1": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 12}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 2}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 16, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.features.freeze": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}, "d": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.search.search": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.search.search": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}}, "df": 1}}}}, "k": {"docs": {"pipelines.runners.explain.main": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"pipelines": {"fullname": "pipelines", "modulename": "pipelines", "kind": "module", "doc": "

    The main package containing all of the CLI pipelines.

    \n"}, "pipelines.data": {"fullname": "pipelines.data", "modulename": "pipelines.data", "kind": "module", "doc": "

    A package containing data pipelines.

    \n"}, "pipelines.data.build_interim_dataset": {"fullname": "pipelines.data.build_interim_dataset", "modulename": "pipelines.data.build_interim_dataset", "kind": "module", "doc": "

    CLI for building interim datasets from raw snapshots.

    \n\n

    This pipeline loads raw data, applies schema and cleaning rules defined in\nconfiguration, writes the interim dataset, and persists run metadata.

    \n"}, "pipelines.data.build_interim_dataset.logger": {"fullname": "pipelines.data.build_interim_dataset.logger", "modulename": "pipelines.data.build_interim_dataset", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.data.build_interim_dataset (WARNING)>"}, "pipelines.data.build_interim_dataset.parse_args": {"fullname": "pipelines.data.build_interim_dataset.parse_args", "modulename": "pipelines.data.build_interim_dataset", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for interim data creation.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.data.build_interim_dataset.main": {"fullname": "pipelines.data.build_interim_dataset.main", "modulename": "pipelines.data.build_interim_dataset", "qualname": "main", "kind": "function", "doc": "

    Execute the interim data preparation workflow.

    \n\n

    The workflow loads and validates interim configuration, reads source raw\ndata, applies normalization/schema/cleaning steps, writes the transformed\ndataset, and persists metadata for reproducibility.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates a new interim snapshot directory, writes transformed dataset\n artifacts, metadata, and run logs.

    \n\n

    Examples:\n python pipelines/data/build_interim_dataset.py --data hotel_bookings --version v1 --raw-snapshot-id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.data.build_processed_dataset": {"fullname": "pipelines.data.build_processed_dataset", "modulename": "pipelines.data.build_processed_dataset", "kind": "module", "doc": "

    CLI for producing processed datasets from interim snapshots.

    \n\n

    This module loads an interim dataset snapshot, applies processing rules such as\ncolumn removal and optional row identifier creation, then persists processed\ndata and metadata.

    \n"}, "pipelines.data.build_processed_dataset.logger": {"fullname": "pipelines.data.build_processed_dataset.logger", "modulename": "pipelines.data.build_processed_dataset", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.data.build_processed_dataset (WARNING)>"}, "pipelines.data.build_processed_dataset.parse_args": {"fullname": "pipelines.data.build_processed_dataset.parse_args", "modulename": "pipelines.data.build_processed_dataset", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for processed data creation.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.data.build_processed_dataset.main": {"fullname": "pipelines.data.build_processed_dataset.main", "modulename": "pipelines.data.build_processed_dataset", "qualname": "main", "kind": "function", "doc": "

    Execute the processed data generation workflow.

    \n\n

    The workflow loads and validates processed configuration, reads the selected\ninterim snapshot, performs configured transformations, writes output data,\nand saves metadata for traceability.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates a new processed snapshot directory and writes processed data,\n metadata, and run logs.

    \n\n

    Examples:\n python pipelines/data/build_processed_dataset.py --data hotel_bookings --version v1 --interim-snapshot-id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.data.register_raw_snapshot": {"fullname": "pipelines.data.register_raw_snapshot", "modulename": "pipelines.data.register_raw_snapshot", "kind": "module", "doc": "

    CLI for validating and recording metadata for raw data snapshots.

    \n\n

    This module resolves a raw snapshot path, loads the snapshot's single data file,\nprepares metadata, and persists that metadata alongside the snapshot.

    \n"}, "pipelines.data.register_raw_snapshot.logger": {"fullname": "pipelines.data.register_raw_snapshot.logger", "modulename": "pipelines.data.register_raw_snapshot", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.data.register_raw_snapshot (WARNING)>"}, "pipelines.data.register_raw_snapshot.parse_args": {"fullname": "pipelines.data.register_raw_snapshot.parse_args", "modulename": "pipelines.data.register_raw_snapshot", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the raw data handling pipeline.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.data.register_raw_snapshot.main": {"fullname": "pipelines.data.register_raw_snapshot.main", "modulename": "pipelines.data.register_raw_snapshot", "qualname": "main", "kind": "function", "doc": "

    Run the raw data handling workflow.

    \n\n

    The workflow resolves the requested raw snapshot, validates that exactly one\ndata file is present, reads the file, builds metadata, and persists\nmetadata.json into the snapshot directory.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are translated to standardized CLI exit codes via\n resolve_exit_code rather than being re-raised.

    \n\n

    Side Effects:\n Creates/updates register_raw_snapshot.log and writes metadata.json to the\n selected raw snapshot directory.

    \n\n

    Examples:\n python pipelines/data/register_raw_snapshot.py --data hotel_bookings --version v1 --snapshot_id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.features": {"fullname": "pipelines.features", "modulename": "pipelines.features", "kind": "module", "doc": "

    A package containing feature freezing pipelines.

    \n"}, "pipelines.features.freeze": {"fullname": "pipelines.features.freeze", "modulename": "pipelines.features.freeze", "kind": "module", "doc": "

    CLI for freezing and versioning feature sets.

    \n\n

    The script loads feature registry configuration, resolves the appropriate freeze\nstrategy, materializes a feature snapshot, and writes snapshot metadata.

    \n"}, "pipelines.features.freeze.logger": {"fullname": "pipelines.features.freeze.logger", "modulename": "pipelines.features.freeze", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.features.freeze (WARNING)>"}, "pipelines.features.freeze.parse_args": {"fullname": "pipelines.features.freeze.parse_args", "modulename": "pipelines.features.freeze", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for feature freezing.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.features.freeze.load_feature_registry": {"fullname": "pipelines.features.freeze.load_feature_registry", "modulename": "pipelines.features.freeze", "qualname": "load_feature_registry", "kind": "function", "doc": "

    Load feature registry configuration for a feature set version.

    \n\n

    Args:\n feature_set: Name of the feature set in the registry.\n version: Version key under the feature set.

    \n\n

    Returns:\n dict: Raw registry configuration for the requested feature set version.

    \n", "signature": "(feature_set: str, version: str) -> dict:", "funcdef": "def"}, "pipelines.features.freeze.main": {"fullname": "pipelines.features.freeze.main", "modulename": "pipelines.features.freeze", "qualname": "main", "kind": "function", "doc": "

    Execute the feature freeze workflow.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates a feature snapshot directory, writes freeze logs, and persists\n feature snapshot metadata.

    \n\n

    Examples:\n python pipelines/features/freeze.py --feature-set booking_context_features --version v1

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration": {"fullname": "pipelines.orchestration", "modulename": "pipelines.orchestration", "kind": "module", "doc": "

    A package with all of the orchestrator pipelines.

    \n"}, "pipelines.orchestration.common": {"fullname": "pipelines.orchestration.common", "modulename": "pipelines.orchestration.common", "kind": "module", "doc": "

    A package with helpers for orchestrator pipelines.

    \n"}, "pipelines.orchestration.common.orchestration_logging": {"fullname": "pipelines.orchestration.common.orchestration_logging", "modulename": "pipelines.orchestration.common.orchestration_logging", "kind": "module", "doc": "

    Script logging helpers for standardized completion messages.

    \n"}, "pipelines.orchestration.common.orchestration_logging.logger": {"fullname": "pipelines.orchestration.common.orchestration_logging.logger", "modulename": "pipelines.orchestration.common.orchestration_logging", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.common.orchestration_logging (WARNING)>"}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"fullname": "pipelines.orchestration.common.orchestration_logging.log_completion", "modulename": "pipelines.orchestration.common.orchestration_logging", "qualname": "log_completion", "kind": "function", "doc": "

    Log operation completion timestamp and human-readable duration.

    \n\n

    Args:\n start_time: Monotonic start time captured before operation execution.\n message: Completion message prefix.

    \n\n

    Returns:\n None.

    \n", "signature": "(start_time: float, message: str) -> None:", "funcdef": "def"}, "pipelines.orchestration.data": {"fullname": "pipelines.orchestration.data", "modulename": "pipelines.orchestration.data", "kind": "module", "doc": "

    A package for all of the data orchestration pipelines.

    \n"}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "kind": "module", "doc": "

    Batch runner for end-to-end data preprocessing.

    \n\n

    This script orchestrates three pipeline stages across discovered datasets and\nconfigurations: raw metadata handling, interim dataset generation, and\nprocessed dataset generation.

    \n"}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing.logger", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.data.execute_all_data_preprocessing (WARNING)>"}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "qualname": "run_cmd", "kind": "function", "doc": "

    Execute a subprocess command and log captured standard output.

    \n\n

    Args:\n cmd: Command and arguments to execute.

    \n\n

    Raises:\n subprocess.CalledProcessError: If the command exits with a non-zero\n status code.

    \n", "signature": "(cmd: list[str]) -> None:", "funcdef": "def"}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the preprocessing orchestrator.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"fullname": "pipelines.orchestration.data.execute_all_data_preprocessing.main", "modulename": "pipelines.orchestration.data.execute_all_data_preprocessing", "qualname": "main", "kind": "function", "doc": "

    Run data preprocessing steps for all discoverable datasets.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n The workflow is best-effort per stage ordering (raw -> interim ->\n processed) and supports idempotent skipping when prior outputs exist.

    \n\n

    Side Effects:\n Executes multiple subprocess pipelines, writes consolidated script logs,\n and may create new snapshot artifacts across data stages.

    \n\n

    Examples:\n python -m pipelines.orchestration.data.execute_all_data_preprocessing --skip-if-existing true

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration.experiments": {"fullname": "pipelines.orchestration.experiments", "modulename": "pipelines.orchestration.experiments", "kind": "module", "doc": "

    A package for all of the experiments-related pipelines.

    \n"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "kind": "module", "doc": "

    Bulk experiment orchestrator for all configured model specs.

    \n\n

    Warning:\n This script is intended primarily for development usage. It delegates to a\n downstream orchestrator that defaults to \"latest\" snapshot resolution for\n several stages, which can produce surprising results in highly dynamic\n environments.

    \n"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "MODEL_SPECS_DIR", "kind": "variable", "doc": "

    \n", "default_value": "WindowsPath('configs/model_specs')"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.experiments.execute_all_experiments_with_latest (WARNING)>"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the bulk experiments runner.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "discover_models", "kind": "function", "doc": "

    Discover model tuples from the model specs directory structure.

    \n\n

    Returns:\n list[tuple[str, str, str]]: (problem, segment, version) tuples for\n all discoverable model specs.

    \n", "signature": "() -> list[tuple[str, str, str]]:", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "run_model", "kind": "function", "doc": "

    Run the end-to-end experiment orchestrator for one model tuple.

    \n\n

    Args:\n problem: Problem name.\n segment: Segment name.\n version: Model version.\n args: Parsed CLI arguments.\n start_time: Parent run timer start for shared completion logging.

    \n\n

    Returns:\n int: Return code from the delegated subprocess.

    \n", "signature": "(\tproblem: str,\tsegment: str,\tversion: str,\t*,\targs: argparse.Namespace,\tstart_time: float):", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"fullname": "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main", "modulename": "pipelines.orchestration.experiments.execute_all_experiments_with_latest", "qualname": "main", "kind": "function", "doc": "

    Execute experiments for all discovered model specs.

    \n\n

    Returns:\n int: 0 on full success, otherwise non-zero.

    \n\n

    Notes:\n The script continues across model failures and reports aggregate status\n at the end, enabling batch execution with partial tolerance.

    \n\n

    Side Effects:\n Discovers model specs from disk, runs delegated experiment subprocesses,\n and writes consolidated batch logs.

    \n\n

    Examples:\n python -m pipelines.orchestration.experiments.execute_all_experiments_with_latest --env dev --skip-if-existing true

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"fullname": "pipelines.orchestration.experiments.execute_experiment_with_latest", "modulename": "pipelines.orchestration.experiments.execute_experiment_with_latest", "kind": "module", "doc": "

    Single-model experiment orchestrator using staged pipeline CLIs.

    \n\n

    Warning:\n This script intentionally relies on \"latest\" snapshot resolution for\n selected stages unless explicit identifiers are provided by invoked\n downstream commands. Review logs carefully in concurrent environments.

    \n"}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"fullname": "pipelines.orchestration.experiments.execute_experiment_with_latest.logger", "modulename": "pipelines.orchestration.experiments.execute_experiment_with_latest", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.experiments.execute_experiment_with_latest (WARNING)>"}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"fullname": "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args", "modulename": "pipelines.orchestration.experiments.execute_experiment_with_latest", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for single-model orchestration.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"fullname": "pipelines.orchestration.experiments.execute_experiment_with_latest.main", "modulename": "pipelines.orchestration.experiments.execute_experiment_with_latest", "qualname": "main", "kind": "function", "doc": "

    Run search, train, evaluate, and explain steps for one model config.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Orchestration relies on downstream commands that may resolve latest run\n identifiers dynamically; concurrent writes can influence selection.

    \n\n

    Side Effects:\n Invokes search/train/evaluate/explain subprocesses and writes aggregated\n experiment orchestration logs.

    \n\n

    Examples:\n python -m pipelines.orchestration.experiments.execute_experiment_with_latest --problem no_show --segment global --version v1

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration.features": {"fullname": "pipelines.orchestration.features", "modulename": "pipelines.orchestration.features", "kind": "module", "doc": "

    A package for all of the pipelines specific to feature freezing.

    \n"}, "pipelines.orchestration.features.freeze_all_feature_sets": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "kind": "module", "doc": "

    Bulk feature freezing orchestrator.

    \n\n

    This script iterates through feature registry entries and executes the feature\nfreeze pipeline for each feature-set version, with optional skipping when\nexisting snapshot folders are present.

    \n"}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets.logger", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.features.freeze_all_feature_sets (WARNING)>"}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets.parse_args", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for bulk feature freezing.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets.log_completion", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "qualname": "log_completion", "kind": "function", "doc": "

    Log script completion timing details.

    \n\n

    Args:\n start_time: Start time from time.perf_counter().\n message: Completion message to emit.

    \n", "signature": "(start_time: float, message: str):", "funcdef": "def"}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"fullname": "pipelines.orchestration.features.freeze_all_feature_sets.main", "modulename": "pipelines.orchestration.features.freeze_all_feature_sets", "qualname": "main", "kind": "function", "doc": "

    Freeze all feature sets registered in the feature registry.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Existing freeze directories can be skipped for idempotent runs when\n --skip-if-existing is enabled.

    \n\n

    Side Effects:\n Executes feature-freezing subprocess calls per registry entry and writes\n batch-level logs.

    \n\n

    Examples:\n python -m pipelines.orchestration.features.freeze_all_feature_sets --skip-if-existing true

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.orchestration.master": {"fullname": "pipelines.orchestration.master", "modulename": "pipelines.orchestration.master", "kind": "module", "doc": "

    A package for the master orchestrator pipeline.

    \n"}, "pipelines.orchestration.master.run_all_workflows": {"fullname": "pipelines.orchestration.master.run_all_workflows", "modulename": "pipelines.orchestration.master.run_all_workflows", "kind": "module", "doc": "

    Master orchestration script that executes all major project workflows.

    \n\n

    Warning:\n This script triggers full preprocessing, feature freezing, and experiment\n execution. It is intentionally powerful and should be run with care.

    \n"}, "pipelines.orchestration.master.run_all_workflows.logger": {"fullname": "pipelines.orchestration.master.run_all_workflows.logger", "modulename": "pipelines.orchestration.master.run_all_workflows", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.orchestration.master.run_all_workflows (WARNING)>"}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"fullname": "pipelines.orchestration.master.run_all_workflows.parse_args", "modulename": "pipelines.orchestration.master.run_all_workflows", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the master orchestrator.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.orchestration.master.run_all_workflows.run_step": {"fullname": "pipelines.orchestration.master.run_all_workflows.run_step", "modulename": "pipelines.orchestration.master.run_all_workflows", "qualname": "run_step", "kind": "function", "doc": "

    Run one orchestration step command with structured logging.

    \n\n

    Args:\n cmd: Command and arguments for the step.\n step_name: Human-readable step name for logs.

    \n\n

    Returns:\n int: Subprocess return code (0 on success).

    \n", "signature": "(cmd: list[str], step_name: str) -> int:", "funcdef": "def"}, "pipelines.orchestration.master.run_all_workflows.main": {"fullname": "pipelines.orchestration.master.run_all_workflows.main", "modulename": "pipelines.orchestration.master.run_all_workflows", "qualname": "main", "kind": "function", "doc": "

    Execute all high-level orchestration steps in sequence.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n This is a high-impact orchestrator that chains full preprocessing,\n freezing, and experiment execution; partial failures stop later stages.

    \n\n

    Side Effects:\n Launches multiple long-running subprocess workflows and writes a single\n master orchestration log.

    \n\n

    Examples:\n python -m pipelines.orchestration.master.run_all_workflows --env dev --skip-if-existing true

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.post_promotion": {"fullname": "pipelines.post_promotion", "modulename": "pipelines.post_promotion", "kind": "module", "doc": "

    A package for post-promotion pipelines.

    \n"}, "pipelines.post_promotion.infer": {"fullname": "pipelines.post_promotion.infer", "modulename": "pipelines.post_promotion.infer", "kind": "module", "doc": "

    CLI for running model inference (production + staging) with monitoring-ready outputs.

    \n"}, "pipelines.post_promotion.infer.logger": {"fullname": "pipelines.post_promotion.infer.logger", "modulename": "pipelines.post_promotion.infer", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.post_promotion.infer (WARNING)>"}, "pipelines.post_promotion.infer.parse_args": {"fullname": "pipelines.post_promotion.infer.parse_args", "modulename": "pipelines.post_promotion.infer", "qualname": "parse_args", "kind": "function", "doc": "

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.post_promotion.infer.main": {"fullname": "pipelines.post_promotion.infer.main", "modulename": "pipelines.post_promotion.infer", "qualname": "main", "kind": "function", "doc": "

    Main function to execute the post-promotion monitoring pipeline.

    \n\n

    Returns:\n An integer exit code (0 for success, non-zero for failure).

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.post_promotion.monitor": {"fullname": "pipelines.post_promotion.monitor", "modulename": "pipelines.post_promotion.monitor", "kind": "module", "doc": "

    Main module for the post-promotion monitoring pipeline.

    \n"}, "pipelines.post_promotion.monitor.logger": {"fullname": "pipelines.post_promotion.monitor.logger", "modulename": "pipelines.post_promotion.monitor", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.post_promotion.monitor (WARNING)>"}, "pipelines.post_promotion.monitor.parse_args": {"fullname": "pipelines.post_promotion.monitor.parse_args", "modulename": "pipelines.post_promotion.monitor", "qualname": "parse_args", "kind": "function", "doc": "

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.post_promotion.monitor.main": {"fullname": "pipelines.post_promotion.monitor.main", "modulename": "pipelines.post_promotion.monitor", "qualname": "main", "kind": "function", "doc": "

    Main function to execute the post-promotion monitoring pipeline.

    \n\n

    Returns:\n An integer exit code (0 for success, non-zero for failure).

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.promotion": {"fullname": "pipelines.promotion", "modulename": "pipelines.promotion", "kind": "module", "doc": "

    A package for promotion pipelines.

    \n"}, "pipelines.promotion.promote": {"fullname": "pipelines.promotion.promote", "modulename": "pipelines.promotion.promote", "kind": "module", "doc": "

    CLI for staging or promoting trained model runs.

    \n\n

    This entrypoint builds a promotion context from CLI inputs, configures logging\nfor the promotion run, and delegates execution to the promotion service.

    \n"}, "pipelines.promotion.promote.logger": {"fullname": "pipelines.promotion.promote.logger", "modulename": "pipelines.promotion.promote", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.promotion.promote (WARNING)>"}, "pipelines.promotion.promote.parse_args": {"fullname": "pipelines.promotion.promote.parse_args", "modulename": "pipelines.promotion.promote", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for the model promotion workflow.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.promotion.promote.main": {"fullname": "pipelines.promotion.promote.main", "modulename": "pipelines.promotion.promote", "qualname": "main", "kind": "function", "doc": "

    Execute model staging or production promotion.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates a promotion run directory with logs and persists promotion\n artifacts through the promotion service.

    \n\n

    Examples:\n python pipelines/promotion/promote.py --problem no_show --segment global --version v1 --experiment-id --train-run-id --eval-run-id --explain-run-id --stage staging

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.runners": {"fullname": "pipelines.runners", "modulename": "pipelines.runners", "kind": "module", "doc": "

    A package for runners' pipelines.

    \n"}, "pipelines.runners.evaluate": {"fullname": "pipelines.runners.evaluate", "modulename": "pipelines.runners.evaluate", "kind": "module", "doc": "

    Evaluation runner CLI.

    \n\n

    This module provides a small command-line entrypoint to evaluate a trained\nmodel. It validates the model configuration, dispatches to task-specific\nevaluators and persists evaluation results via updater functions.

    \n\n

    Typical usage example:\n python -m pipelines.runners.evaluate \\\n --problem cancellation --segment global --version v1 \\\n --experiment-id 20260206_154343_2f5c2000 \\\n --train-id 20260206_162120_sdg42000 \nThe module exposes helper functions used by the CLI and a main() function\nwhich orchestrates the complete evaluation flow.

    \n"}, "pipelines.runners.evaluate.logger": {"fullname": "pipelines.runners.evaluate.logger", "modulename": "pipelines.runners.evaluate", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.runners.evaluate (WARNING)>"}, "pipelines.runners.evaluate.parse_args": {"fullname": "pipelines.runners.evaluate.parse_args", "modulename": "pipelines.runners.evaluate", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for evaluation.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.runners.evaluate.main": {"fullname": "pipelines.runners.evaluate.main", "modulename": "pipelines.runners.evaluate", "qualname": "main", "kind": "function", "doc": "

    Run model evaluation and persist evaluation artifacts.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates evaluation run directories, writes predictions/metrics artifacts,\n metadata, runtime snapshots, and evaluation logs.

    \n\n

    Examples:\n python pipelines/runners/evaluate.py --problem cancellation --segment global --version v1 --experiment-id latest --train-id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.runners.explain": {"fullname": "pipelines.runners.explain", "modulename": "pipelines.runners.explain", "kind": "module", "doc": "

    Explainability runner CLI.

    \n\n

    This module runs explainability for a selected trained run, validates lineage\nand reproducibility constraints, and persists explainability outputs.

    \n"}, "pipelines.runners.explain.logger": {"fullname": "pipelines.runners.explain.logger", "modulename": "pipelines.runners.explain", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.runners.explain (WARNING)>"}, "pipelines.runners.explain.parse_args": {"fullname": "pipelines.runners.explain.parse_args", "modulename": "pipelines.runners.explain", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for explainability execution.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.runners.explain.main": {"fullname": "pipelines.runners.explain.main", "modulename": "pipelines.runners.explain", "qualname": "main", "kind": "function", "doc": "

    Execute explainability for a trained model run.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates explainability run directories, writes explainability artifacts,\n metadata, runtime snapshots, and explainability logs.

    \n\n

    Examples:\n python pipelines/runners/explain.py --problem cancellation --segment global --version v1 --experiment-id latest --train-id latest --top-k 20

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.runners.train": {"fullname": "pipelines.runners.train", "modulename": "pipelines.runners.train", "kind": "module", "doc": "

    Training script entry point and helpers.

    \n\n

    This module provides a small CLI entrypoint to run model training for\ndifferent tasks and algorithms. It exposes helper functions to parse\ncommand-line arguments, load YAML configuration files, validate them\nagainst the project's Pydantic schema, and run the appropriate trainer\nimplementation. After training, the resulting pipeline and metadata are\npersisted and the global models registry is updated.

    \n\n

    Typical usage:\n python -m ml.training.training.train \\\n --problem cancellation --segment global --version v1 \\\n --experiment-id 20260206_154343_2f5c2000

    \n\n

    The --experiment-id flag must point to an existing experiment\ndirectory created by a prior search run.

    \n"}, "pipelines.runners.train.logger": {"fullname": "pipelines.runners.train.logger", "modulename": "pipelines.runners.train", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.runners.train (WARNING)>"}, "pipelines.runners.train.parse_args": {"fullname": "pipelines.runners.train.parse_args", "modulename": "pipelines.runners.train", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for training.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.runners.train.main": {"fullname": "pipelines.runners.train.main", "modulename": "pipelines.runners.train", "qualname": "main", "kind": "function", "doc": "

    Run training, persist artifacts, and register run metadata.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates/updates training run directories, writes logs/artifacts/metadata,\n and may delete failure-management folders on success.

    \n\n

    Examples:\n python pipelines/runners/train.py --problem cancellation --segment global --version v1 --experiment-id latest

    \n", "signature": "() -> int:", "funcdef": "def"}, "pipelines.search": {"fullname": "pipelines.search", "modulename": "pipelines.search", "kind": "module", "doc": "

    A package for search pipelines.

    \n"}, "pipelines.search.search": {"fullname": "pipelines.search.search", "modulename": "pipelines.search.search", "kind": "module", "doc": "

    Hyperparameter search runner CLI.

    \n\n

    This module executes model search for a given problem/segment/version,\npersists search outputs, and manages failure-management cleanup.

    \n"}, "pipelines.search.search.logger": {"fullname": "pipelines.search.search.logger", "modulename": "pipelines.search.search", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger pipelines.search.search (WARNING)>"}, "pipelines.search.search.parse_args": {"fullname": "pipelines.search.search.parse_args", "modulename": "pipelines.search.search", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for hyperparameter search.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "() -> argparse.Namespace:", "funcdef": "def"}, "pipelines.search.search.main": {"fullname": "pipelines.search.search.main", "modulename": "pipelines.search.search", "qualname": "main", "kind": "function", "doc": "

    Perform hyperparameter search and persist experiment artifacts.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Exceptions are converted to process exit codes; the function is designed\n as a CLI boundary and does not propagate failures upward.

    \n\n

    Side Effects:\n Creates/updates search run directories, writes logs/metadata/runtime\n artifacts, and may delete failure-management folders on success.

    \n\n

    Examples:\n python pipelines/search/search.py --problem cancellation --segment global --version v1

    \n", "signature": "() -> int:", "funcdef": "def"}}, "docInfo": {"pipelines": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "pipelines.data": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "pipelines.data.build_interim_dataset": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}, "pipelines.data.build_interim_dataset.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "pipelines.data.build_interim_dataset.parse_args": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.data.build_interim_dataset.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 110}, "pipelines.data.build_processed_dataset": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "pipelines.data.build_processed_dataset.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "pipelines.data.build_processed_dataset.parse_args": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.data.build_processed_dataset.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 110}, "pipelines.data.register_raw_snapshot": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "pipelines.data.register_raw_snapshot.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "pipelines.data.register_raw_snapshot.parse_args": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 22}, "pipelines.data.register_raw_snapshot.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 119}, "pipelines.features": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "pipelines.features.freeze": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 32}, "pipelines.features.freeze.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.features.freeze.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 19}, "pipelines.features.freeze.load_feature_registry": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 47}, "pipelines.features.freeze.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 78}, "pipelines.orchestration": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "pipelines.orchestration.common": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "pipelines.orchestration.common.orchestration_logging": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "pipelines.orchestration.common.orchestration_logging.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 33}, "pipelines.orchestration.data": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 38}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 88}, "pipelines.orchestration.experiments": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 47}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"qualname": 3, "fullname": 11, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 21}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 32}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"qualname": 2, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 52}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 85}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 41}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 82}, "pipelines.orchestration.features": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "pipelines.orchestration.features.freeze_all_feature_sets": {"qualname": 0, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 37}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"qualname": 2, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 28}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"qualname": 1, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 82}, "pipelines.orchestration.master": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "pipelines.orchestration.master.run_all_workflows": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 36}, "pipelines.orchestration.master.run_all_workflows.logger": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 12, "signature": 0, "bases": 0, "doc": 3}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 20}, "pipelines.orchestration.master.run_all_workflows.run_step": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 43}, "pipelines.orchestration.master.run_all_workflows.main": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 83}, "pipelines.post_promotion": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "pipelines.post_promotion.infer": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "pipelines.post_promotion.infer.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "pipelines.post_promotion.infer.parse_args": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "pipelines.post_promotion.infer.main": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 27}, "pipelines.post_promotion.monitor": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "pipelines.post_promotion.monitor.logger": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "pipelines.post_promotion.monitor.parse_args": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "pipelines.post_promotion.monitor.main": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 27}, "pipelines.promotion": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "pipelines.promotion.promote": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 36}, "pipelines.promotion.promote.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.promotion.promote.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 21}, "pipelines.promotion.promote.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 102}, "pipelines.runners": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "pipelines.runners.evaluate": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 91}, "pipelines.runners.evaluate.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.runners.evaluate.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 18}, "pipelines.runners.evaluate.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 85}, "pipelines.runners.explain": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 27}, "pipelines.runners.explain.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.runners.explain.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 19}, "pipelines.runners.explain.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 88}, "pipelines.runners.train": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 117}, "pipelines.runners.train.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.runners.train.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 18}, "pipelines.runners.train.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 84}, "pipelines.search": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "pipelines.search.search": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 27}, "pipelines.search.search.logger": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "pipelines.search.search.parse_args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 19}, "pipelines.search.search.main": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 81}}, "length": 87, "save": true}, "index": {"qualname": {"root": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 17}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 16}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 16}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 16}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 3}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2}}}}}}}}}, "m": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}}}}}}, "fullname": {"root": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines": {"tf": 1}, "pipelines.data": {"tf": 1}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion": {"tf": 1}, "pipelines.post_promotion.infer": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 87}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 16}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 4}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.post_promotion": {"tf": 1}, "pipelines.post_promotion.infer": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 14}}}, "e": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.post_promotion": {"tf": 1}, "pipelines.post_promotion.infer": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}}, "df": 9}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data": {"tf": 1}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}}, "df": 19, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 8}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}}, "df": 4}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.post_promotion.infer": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 17}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 11}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 16}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 22}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 16}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 6}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}}, "df": 4}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 7, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}}, "df": 13}}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 4}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1.4142135623730951}, "pipelines.search.search.logger": {"tf": 1.4142135623730951}, "pipelines.search.search.parse_args": {"tf": 1.4142135623730951}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 6, "s": {"docs": {"pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 12}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 10}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 35}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 4}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2}}}}}}}}}, "m": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 16}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 4, "s": {"docs": {"pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 12}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 4}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}}, "df": 4}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 11}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}}, "df": 4}}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.logger": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1.4142135623730951}, "pipelines.features.freeze.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1.4142135623730951}, "pipelines.post_promotion.infer.logger": {"tf": 1.4142135623730951}, "pipelines.post_promotion.monitor.logger": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.logger": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.logger": {"tf": 1.4142135623730951}, "pipelines.runners.explain.logger": {"tf": 1.4142135623730951}, "pipelines.runners.train.logger": {"tf": 1.4142135623730951}, "pipelines.search.search.logger": {"tf": 1.4142135623730951}}, "df": 18, "l": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 17}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 17}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 17}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset.logger": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"pipelines.promotion.promote.logger": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}}, "df": 2}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.post_promotion.infer.logger": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 17}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 1}}}}}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.logger": {"tf": 1}, "pipelines.data.build_processed_dataset.logger": {"tf": 1}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1}, "pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}, "pipelines.post_promotion.infer.logger": {"tf": 1}, "pipelines.post_promotion.monitor.logger": {"tf": 1}, "pipelines.promotion.promote.logger": {"tf": 1}, "pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}, "pipelines.search.search.logger": {"tf": 1}}, "df": 17}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot.logger": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.register_raw_snapshot.logger": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate.logger": {"tf": 1}, "pipelines.runners.explain.logger": {"tf": 1}, "pipelines.runners.train.logger": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.register_raw_snapshot.logger": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.search.search.logger": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.explain.logger": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate.logger": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 4}}}, "x": {"2": {"7": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.post_promotion.monitor.logger": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.train.logger": {"tf": 1}}, "df": 1}}}}}}}, "signature": {"root": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 3.605551275463989}, "pipelines.data.build_interim_dataset.main": {"tf": 3}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 3.605551275463989}, "pipelines.data.build_processed_dataset.main": {"tf": 3}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 3.605551275463989}, "pipelines.data.register_raw_snapshot.main": {"tf": 3}, "pipelines.features.freeze.parse_args": {"tf": 3.605551275463989}, "pipelines.features.freeze.load_feature_registry": {"tf": 4.898979485566356}, "pipelines.features.freeze.main": {"tf": 3}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 4.898979485566356}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 4.58257569495584}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 3}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 5.196152422706632}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 7.810249675906654}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 3}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 3}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 4.69041575982343}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 3}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 3.605551275463989}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 5.385164807134504}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 3}, "pipelines.post_promotion.infer.parse_args": {"tf": 3.605551275463989}, "pipelines.post_promotion.infer.main": {"tf": 3}, "pipelines.post_promotion.monitor.parse_args": {"tf": 3.605551275463989}, "pipelines.post_promotion.monitor.main": {"tf": 3}, "pipelines.promotion.promote.parse_args": {"tf": 3.605551275463989}, "pipelines.promotion.promote.main": {"tf": 3}, "pipelines.runners.evaluate.parse_args": {"tf": 3.605551275463989}, "pipelines.runners.evaluate.main": {"tf": 3}, "pipelines.runners.explain.parse_args": {"tf": 3.605551275463989}, "pipelines.runners.explain.main": {"tf": 3}, "pipelines.runners.train.parse_args": {"tf": 3.605551275463989}, "pipelines.runners.train.main": {"tf": 3}, "pipelines.search.search.parse_args": {"tf": 3.605551275463989}, "pipelines.search.search.main": {"tf": 3}}, "df": 39, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 17}}}}}, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.post_promotion.infer.parse_args": {"tf": 1}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 17}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 17}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}}, "df": 7}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0}}, "doc": {"root": {"0": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 17}, "1": {"5": {"4": {"3": {"4": {"3": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"2": {"1": {"2": {"0": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"0": {"2": {"6": {"0": {"2": {"0": {"6": {"docs": {"pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"pipelines.runners.explain.main": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "f": {"5": {"docs": {}, "df": 0, "c": {"2": {"0": {"0": {"0": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}, "docs": {"pipelines": {"tf": 1.7320508075688772}, "pipelines.data": {"tf": 1.7320508075688772}, "pipelines.data.build_interim_dataset": {"tf": 2.449489742783178}, "pipelines.data.build_interim_dataset.logger": {"tf": 1.7320508075688772}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 2.449489742783178}, "pipelines.data.build_interim_dataset.main": {"tf": 4.358898943540674}, "pipelines.data.build_processed_dataset": {"tf": 2.449489742783178}, "pipelines.data.build_processed_dataset.logger": {"tf": 1.7320508075688772}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 2.449489742783178}, "pipelines.data.build_processed_dataset.main": {"tf": 4.358898943540674}, "pipelines.data.register_raw_snapshot": {"tf": 2.449489742783178}, "pipelines.data.register_raw_snapshot.logger": {"tf": 1.7320508075688772}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 2.449489742783178}, "pipelines.data.register_raw_snapshot.main": {"tf": 5.196152422706632}, "pipelines.features": {"tf": 1.7320508075688772}, "pipelines.features.freeze": {"tf": 2.449489742783178}, "pipelines.features.freeze.logger": {"tf": 1.7320508075688772}, "pipelines.features.freeze.parse_args": {"tf": 2.449489742783178}, "pipelines.features.freeze.load_feature_registry": {"tf": 3}, "pipelines.features.freeze.main": {"tf": 4}, "pipelines.orchestration": {"tf": 1.7320508075688772}, "pipelines.orchestration.common": {"tf": 1.7320508075688772}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1.7320508075688772}, "pipelines.orchestration.common.orchestration_logging.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 3}, "pipelines.orchestration.data": {"tf": 1.7320508075688772}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 2.449489742783178}, "pipelines.orchestration.data.execute_all_data_preprocessing.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 3}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 4.242640687119285}, "pipelines.orchestration.experiments": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 2.449489742783178}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.MODEL_SPECS_DIR": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 3.1622776601683795}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 3}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 4}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 2.449489742783178}, "pipelines.orchestration.experiments.execute_experiment_with_latest.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 4}, "pipelines.orchestration.features": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 2.449489742783178}, "pipelines.orchestration.features.freeze_all_feature_sets.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 3}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 4.358898943540674}, "pipelines.orchestration.master": {"tf": 1.7320508075688772}, "pipelines.orchestration.master.run_all_workflows": {"tf": 2.449489742783178}, "pipelines.orchestration.master.run_all_workflows.logger": {"tf": 1.7320508075688772}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 2.449489742783178}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 3.3166247903554}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 4}, "pipelines.post_promotion": {"tf": 1.7320508075688772}, "pipelines.post_promotion.infer": {"tf": 2}, "pipelines.post_promotion.infer.logger": {"tf": 1.7320508075688772}, "pipelines.post_promotion.infer.parse_args": {"tf": 1.7320508075688772}, "pipelines.post_promotion.infer.main": {"tf": 2.449489742783178}, "pipelines.post_promotion.monitor": {"tf": 1.7320508075688772}, "pipelines.post_promotion.monitor.logger": {"tf": 1.7320508075688772}, "pipelines.post_promotion.monitor.parse_args": {"tf": 1.7320508075688772}, "pipelines.post_promotion.monitor.main": {"tf": 2.449489742783178}, "pipelines.promotion": {"tf": 1.7320508075688772}, "pipelines.promotion.promote": {"tf": 2.449489742783178}, "pipelines.promotion.promote.logger": {"tf": 1.7320508075688772}, "pipelines.promotion.promote.parse_args": {"tf": 2.449489742783178}, "pipelines.promotion.promote.main": {"tf": 4.898979485566356}, "pipelines.runners": {"tf": 1.7320508075688772}, "pipelines.runners.evaluate": {"tf": 3.872983346207417}, "pipelines.runners.evaluate.logger": {"tf": 1.7320508075688772}, "pipelines.runners.evaluate.parse_args": {"tf": 2.449489742783178}, "pipelines.runners.evaluate.main": {"tf": 4}, "pipelines.runners.explain": {"tf": 2.449489742783178}, "pipelines.runners.explain.logger": {"tf": 1.7320508075688772}, "pipelines.runners.explain.parse_args": {"tf": 2.449489742783178}, "pipelines.runners.explain.main": {"tf": 4}, "pipelines.runners.train": {"tf": 4}, "pipelines.runners.train.logger": {"tf": 1.7320508075688772}, "pipelines.runners.train.parse_args": {"tf": 2.449489742783178}, "pipelines.runners.train.main": {"tf": 4}, "pipelines.search": {"tf": 1.7320508075688772}, "pipelines.search.search": {"tf": 2.449489742783178}, "pipelines.search.search.logger": {"tf": 1.7320508075688772}, "pipelines.search.search.parse_args": {"tf": 2.449489742783178}, "pipelines.search.search.main": {"tf": 4}}, "df": 87, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"pipelines": {"tf": 1.4142135623730951}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 2}, "pipelines.data.build_processed_dataset.main": {"tf": 2}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 2.449489742783178}, "pipelines.features.freeze": {"tf": 1.4142135623730951}, "pipelines.features.freeze.load_feature_registry": {"tf": 2}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate": {"tf": 2}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 2.23606797749979}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 38, "n": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}, "m": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 14}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 6}, "n": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 4}, "r": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.runners.train": {"tf": 2.23606797749979}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1.7320508075688772}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 20, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {"pipelines.runners.explain.main": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}}}, "m": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 7, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.features.freeze": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 4}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}}, "df": 4}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {"pipelines.search.search": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot": {"tf": 1.7320508075688772}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.7320508075688772}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}}, "df": 13}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"pipelines.orchestration.common.orchestration_logging": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 7}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.post_promotion.infer": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 16, "s": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.post_promotion.infer": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}}, "df": 4}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}, "l": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines": {"tf": 1}, "pipelines.data": {"tf": 1}, "pipelines.features": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.post_promotion": {"tf": 1}, "pipelines.promotion": {"tf": 1}, "pipelines.runners": {"tf": 1}, "pipelines.search": {"tf": 1}}, "df": 13}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 15, "d": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 15}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 10, "s": {"docs": {"pipelines": {"tf": 1}, "pipelines.data": {"tf": 1}, "pipelines.features": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion": {"tf": 1}, "pipelines.promotion": {"tf": 1}, "pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.search": {"tf": 1}}, "df": 18, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.promotion.promote.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate.main": {"tf": 1}}, "df": 1}}}}}}}, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.explain.main": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.train.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.search.search.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 10}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.search.search.main": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1.4142135623730951}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 13, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 2.23606797749979}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.post_promotion.infer": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 10, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.search.search": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.post_promotion": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1.7320508075688772}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 2}}, "df": 8}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.promotion.promote": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 9, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 16}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.post_promotion": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines": {"tf": 1}, "pipelines.data": {"tf": 1}, "pipelines.features": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 7, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 2}, "s": {"docs": {"pipelines.promotion.promote": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.explain": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.7320508075688772}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 18, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1.4142135623730951}}, "df": 4}}}, "e": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 18, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 9}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {"pipelines": {"tf": 1}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.post_promotion.infer": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 35, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.search.search": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 6, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3}}}}}}}}}, "d": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {"pipelines.data": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}, "pipelines.post_promotion": {"tf": 1}, "pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.7320508075688772}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 31, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}}, "df": 12}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}}}}}}, "n": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 4, "d": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_interim_dataset.main": {"tf": 2}, "pipelines.data.build_processed_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 2.23606797749979}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.7320508075688772}, "pipelines.runners.explain": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 2.23606797749979}, "pipelines.runners.train.main": {"tf": 1.7320508075688772}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.main": {"tf": 1.7320508075688772}}, "df": 29}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1.4142135623730951}, "pipelines.features.freeze.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.parse_args": {"tf": 1.4142135623730951}, "pipelines.runners.explain.parse_args": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1.4142135623730951}, "pipelines.search.search.parse_args": {"tf": 1.4142135623730951}}, "df": 18}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 14}}}}}, "s": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 6}}, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 12}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}}, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 9}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1, "d": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"pipelines": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}}, "df": 6}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.post_promotion.infer": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 4}}}}}}, "n": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 6, "e": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 4}}, "r": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 10}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.7320508075688772}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data": {"tf": 1}, "pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.7320508075688772}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 2}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 2}}, "df": 13, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.7320508075688772}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}}, "v": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 2}, "d": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 3}}}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 5}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1.4142135623730951}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.data": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}, "pipelines.post_promotion": {"tf": 1}, "pipelines.post_promotion.infer": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1.4142135623730951}, "pipelines.post_promotion.monitor": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1.4142135623730951}, "pipelines.promotion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1.4142135623730951}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 51}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 7}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 9}}}, "e": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.7320508075688772}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 11, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 5, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 10}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features": {"tf": 1}, "pipelines.features.freeze": {"tf": 1.7320508075688772}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 2.449489742783178}, "pipelines.features.freeze.main": {"tf": 2}, "pipelines.orchestration.features": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 2}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 2}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 10, "s": {"docs": {"pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "k": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.features.freeze.main": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 3}}}}, "y": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 6, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 2}, "pipelines.data.build_processed_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 7}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 2}}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 13}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.post_promotion.infer": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.promotion.promote": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 15}, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 2}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 2}}}}}}}}}, "f": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5}, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1.4142135623730951}, "pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 2.23606797749979}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 8}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 2}}}, "n": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 2}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1.7320508075688772}, "pipelines.runners.train.main": {"tf": 1.7320508075688772}, "pipelines.search.search.main": {"tf": 1}}, "df": 18, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 5, "s": {"docs": {"pipelines.runners": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 35}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {"pipelines.post_promotion.infer": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 2}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 1.7320508075688772}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}}, "df": 5}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1.7320508075688772}, "pipelines.data.register_raw_snapshot": {"tf": 1.7320508075688772}, "pipelines.data.register_raw_snapshot.main": {"tf": 2.449489742783178}, "pipelines.features.freeze": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 11, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 5}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1.4142135623730951}, "pipelines.runners.train": {"tf": 1}}, "df": 11}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 2}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1.4142135623730951}}, "df": 3}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5}, "d": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.post_promotion.infer": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}}, "df": 3}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1, "d": {"docs": {"pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1.4142135623730951}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 17}}}}, "h": {"docs": {"pipelines.data.build_processed_dataset": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 2}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 2.23606797749979}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 3, "s": {"docs": {"pipelines.features.freeze": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}}, "df": 2}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 10}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.search": {"tf": 1}, "pipelines.search.search": {"tf": 1.7320508075688772}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 6, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}}, "df": 3}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipelines.orchestration.features": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "g": {"4": {"2": {"0": {"0": {"0": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}}, "df": 6}}}, "g": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 5, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 12, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.runners.train.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.search.search.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 16, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.explain": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1}}, "df": 10}}, "r": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset": {"tf": 1}, "pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 15}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}}, "df": 6, "s": {"docs": {"pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 13}}, "n": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration": {"tf": 1}, "pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}, "pipelines.post_promotion.infer": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 10}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}}, "df": 3}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.parse_args": {"tf": 1}, "pipelines.data.build_processed_dataset.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.features.freeze.parse_args": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.parse_args": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.parse_args": {"tf": 1}, "pipelines.promotion.promote.parse_args": {"tf": 1}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.train.parse_args": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}}, "df": 14}}}}}}}}, "o": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}}, "n": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}}, "df": 4, "e": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}}, "df": 12, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.search.search": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.explain.parse_args": {"tf": 1}}, "df": 6}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.build_processed_dataset.main": {"tf": 1.4142135623730951}, "pipelines.data.register_raw_snapshot.main": {"tf": 1.7320508075688772}, "pipelines.features.freeze.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1.4142135623730951}, "pipelines.runners.evaluate.main": {"tf": 1.4142135623730951}, "pipelines.runners.explain.main": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1.4142135623730951}, "pipelines.search.search.main": {"tf": 1.4142135623730951}}, "df": 15, "s": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 6}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 9}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1.4142135623730951}, "pipelines.orchestration.master.run_all_workflows": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1.7320508075688772}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14, "s": {"docs": {"pipelines.orchestration.experiments": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.parse_args": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1.7320508075688772}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}}, "df": 4}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.runners.explain": {"tf": 1.7320508075688772}, "pipelines.runners.explain.parse_args": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 2}}, "df": 3}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 14}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.main": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 3}, "v": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.main": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.promotion.promote": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 3}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.promotion.promote.main": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1.4142135623730951}}, "df": 2}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.runners.evaluate": {"tf": 1.7320508075688772}, "pipelines.runners.evaluate.parse_args": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 2}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"pipelines.orchestration.features.freeze_all_feature_sets.log_completion": {"tf": 1}}, "df": 1}}}}, "v": {"1": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 12}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1, "s": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.explain": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.register_raw_snapshot": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.features.freeze.load_feature_registry": {"tf": 2}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.discover_models": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.run_model": {"tf": 1.4142135623730951}, "pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.orchestration.features.freeze_all_feature_sets": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 16, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.features.freeze": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.features.freeze.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}, "d": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"pipelines.runners.evaluate": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.data.build_interim_dataset.main": {"tf": 1}, "pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipelines.data.register_raw_snapshot.parse_args": {"tf": 1}, "pipelines.data.register_raw_snapshot.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 2, "s": {"docs": {"pipelines.orchestration.common": {"tf": 1}, "pipelines.orchestration.common.orchestration_logging": {"tf": 1}, "pipelines.runners.train": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.orchestration.common.orchestration_logging.log_completion": {"tf": 1}, "pipelines.orchestration.master.run_all_workflows.run_step": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"pipelines.orchestration.master.run_all_workflows.main": {"tf": 1.4142135623730951}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.orchestration.experiments.execute_all_experiments_with_latest": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipelines.search.search": {"tf": 1}, "pipelines.search.search.parse_args": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.build_processed_dataset.main": {"tf": 1}, "pipelines.orchestration.data.execute_all_data_preprocessing": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.orchestration.experiments.execute_experiment_with_latest.main": {"tf": 1}, "pipelines.promotion.promote.main": {"tf": 1}, "pipelines.runners.evaluate": {"tf": 1}, "pipelines.runners.evaluate.main": {"tf": 1}, "pipelines.runners.explain.main": {"tf": 1}, "pipelines.runners.train": {"tf": 1.4142135623730951}, "pipelines.runners.train.main": {"tf": 1}, "pipelines.search.search.main": {"tf": 1}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.search.search": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipelines.data.register_raw_snapshot.main": {"tf": 1.4142135623730951}}, "df": 1}}}}, "k": {"docs": {"pipelines.runners.explain.main": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "y": {"docs": {"pipelines.features.freeze.load_feature_registry": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"pipelines.orchestration.data.execute_all_data_preprocessing.run_cmd": {"tf": 1}, "pipelines.orchestration.experiments.execute_all_experiments_with_latest.main": {"tf": 1}, "pipelines.post_promotion.infer.main": {"tf": 1}, "pipelines.post_promotion.monitor.main": {"tf": 1}}, "df": 4}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"pipelines.runners.train": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. diff --git a/docs/api/scripts/scripts/generators.html b/docs/api/scripts/scripts/generators.html index 694747b4..153c9b38 100644 --- a/docs/api/scripts/scripts/generators.html +++ b/docs/api/scripts/scripts/generators.html @@ -30,7 +30,9 @@

    Submodules

    diff --git a/docs/api/scripts/scripts/generators/generate_fake_data.html b/docs/api/scripts/scripts/generators/generate_fake_data.html new file mode 100644 index 00000000..2bae5215 --- /dev/null +++ b/docs/api/scripts/scripts/generators/generate_fake_data.html @@ -0,0 +1,1421 @@ + + + + + + + scripts.generators.generate_fake_data API documentation + + + + + + + + + +
    +
    +

    +scripts.generators.generate_fake_data

    + +

    Utility CLI to generate synthetic tabular data based on an existing dataset snapshot.

    + +

    This script loads a dataset snapshot, trains a statistical synthesizer model, +and generates synthetic rows that resemble the original data distribution.

    + +

    Enhancements: + - Temporal continuity (supports datetime + decomposed date columns) + - Schema enforcement (dtype + categorical alignment) + - Constraint enforcement for logical consistency + - Outlier clipping for stability

    + +

    Examples: + python -m scripts.generators.generate_fake_data --data hotel_bookings --version v1 --num_rows 5000 --include_old true

    +
    + + + + + +
      1"""Utility CLI to generate synthetic tabular data based on an existing dataset snapshot.
    +  2
    +  3This script loads a dataset snapshot, trains a statistical synthesizer model,
    +  4and generates synthetic rows that resemble the original data distribution.
    +  5
    +  6Enhancements:
    +  7    - Temporal continuity (supports datetime + decomposed date columns)
    +  8    - Schema enforcement (dtype + categorical alignment)
    +  9    - Constraint enforcement for logical consistency
    + 10    - Outlier clipping for stability
    + 11
    + 12Examples:
    + 13    python -m scripts.generators.generate_fake_data \
    + 14        --data hotel_bookings \
    + 15        --version v1 \
    + 16        --num_rows 5000 \
    + 17        --include_old true
    + 18"""
    + 19
    + 20import argparse
    + 21import json
    + 22import logging
    + 23import pickle
    + 24import random
    + 25import sys
    + 26from datetime import datetime
    + 27from pathlib import Path
    + 28from uuid import uuid4
    + 29
    + 30import numpy as np
    + 31import pandas as pd
    + 32import torch
    + 33from faker import Faker
    + 34from ml.io.formatting.iso_no_colon import iso_no_colon
    + 35from ml.io.formatting.str_to_bool import str_to_bool
    + 36from ml.logging_config import setup_logging
    + 37from ml.types import LatestSnapshot
    + 38from ml.utils.loaders import read_data
    + 39from ml.utils.snapshots.snapshot_path import get_snapshot_path
    + 40from sdv.evaluation.single_table import evaluate_quality
    + 41from sdv.metadata import Metadata
    + 42from sdv.single_table import CTGANSynthesizer
    + 43
    + 44logger = logging.getLogger(__name__)
    + 45
    + 46MONTH_MAP = {
    + 47    "January": 1, "February": 2, "March": 3, "April": 4,
    + 48    "May": 5, "June": 6, "July": 7, "August": 8,
    + 49    "September": 9, "October": 10, "November": 11, "December": 12
    + 50}
    + 51
    + 52REVERSE_MONTH_MAP = {v: k for k, v in MONTH_MAP.items()}
    + 53
    + 54FAKE_COLUMNS = [
    + 55    "name",
    + 56    "email",
    + 57    "phone-number",
    + 58    "credit_card",
    + 59    "reservation_status_date"
    + 60]
    + 61
    + 62def parse_args():
    + 63    """Parse CLI arguments."""
    + 64    parser = argparse.ArgumentParser(description="Generate synthetic dataset snapshot.")
    + 65
    + 66    parser.add_argument(
    + 67        "--data",
    + 68        type=str,
    + 69        required=True,
    + 70        help="Name of the dataset to use (e.g., 'hotel_bookings')."
    + 71    )
    + 72
    + 73    parser.add_argument(
    + 74        "--version",
    + 75        type=str,
    + 76        required=True,
    + 77        help="Version of the dataset to use (e.g., 'v1')."
    + 78    )
    + 79
    + 80    parser.add_argument(
    + 81        "--snapshot-id",
    + 82        type=str,
    + 83        default=LatestSnapshot.LATEST.value,
    + 84        help="Snapshot ID to use as base for synthetic generation. Defaults to 'latest'.",
    + 85    )
    + 86
    + 87    parser.add_argument(
    + 88        "--num-rows",
    + 89        type=int,
    + 90        default=10000,
    + 91        help="Number of synthetic rows to generate. Defaults to 10000.",
    + 92    )
    + 93
    + 94    parser.add_argument(
    + 95        "--include-old",
    + 96        type=str_to_bool,
    + 97        default=False,
    + 98        help="If true, final dataset will include original rows plus synthetic. If false, only synthetic rows are saved.",
    + 99    )
    +100
    +101    parser.add_argument(
    +102        "--model-path",
    +103        type=str,
    +104        default=None,
    +105        help="Path to a pre-trained CTGAN model to load. If not provided, uses a default path."
    +106    )
    +107
    +108    parser.add_argument(
    +109        "--strict-missing",
    +110        type=str_to_bool,
    +111        default=False,
    +112        help="If true, abort if final dataset contains any missing values after processing. If false, log a warning and proceed with saving.",
    +113    )
    +114
    +115    parser.add_argument(
    +116        "--strict-quality",
    +117        type=str_to_bool,
    +118        default=True,
    +119        help="If true, abort if the synthetic data quality score is below the specified threshold. If false, log a warning and proceed with saving.",
    +120    )
    +121
    +122    parser.add_argument(
    +123        "--seed",
    +124        type=int,
    +125        default=42,
    +126        help="Random seed for reproducibility. Defaults to 42.",
    +127    )
    +128
    +129    parser.add_argument(
    +130        "--quality-threshold",
    +131        type=float,
    +132        default=0.7,
    +133        help="Minimum acceptable quality score for synthetic data. If the generated data scores below this threshold, the script will either log a warning or abort, depending on the '--strict-quality' flag.",
    +134    )
    +135
    +136    parser.add_argument(
    +137        "--epochs",
    +138        type=int,
    +139        default=400,
    +140        help="Number of training epochs for the synthesizer model. Defaults to 400.",
    +141    )
    +142
    +143    parser.add_argument(
    +144        "--batch-target-size",
    +145        type=int,
    +146        default=4000,
    +147        help="Target batch size for synthesizer sampling. If the synthesizer does not support direct batch size control, this will be used to generate samples in batches and concatenate them. Defaults to 4000.",
    +148    )
    +149
    +150    parser.add_argument(
    +151        "--save-model",
    +152        type=str_to_bool,
    +153        default=True,
    +154        help="Whether to save the trained CTGAN model to disk if training a new one."
    +155    )
    +156
    +157    return parser.parse_args()
    +158
    +159
    +160def _infer_format(file_path: Path) -> str:
    +161    """Infer file format from extension."""
    +162    suffix = file_path.suffix.lower().replace(".", "")
    +163    if not suffix:
    +164        raise ValueError(f"Could not infer format from {file_path}")
    +165    return suffix
    +166
    +167
    +168def _atomic_save(df: pd.DataFrame, path: Path, fmt: str) -> None:
    +169    """Atomically save dataframe."""
    +170    tmp_path = path.with_name(path.name + f".{uuid4().hex}.tmp")
    +171
    +172    try:
    +173        if fmt == "csv":
    +174            df.to_csv(tmp_path, index=False)
    +175        elif fmt == "parquet":
    +176            df.to_parquet(tmp_path, index=False)
    +177        else:
    +178            raise ValueError(f"Unsupported format: {fmt}")
    +179
    +180        tmp_path.replace(path)
    +181    except Exception as e:
    +182        logger.exception(f"Atomic save failed for {path}")
    +183        if tmp_path.exists():
    +184            tmp_path.unlink(missing_ok=True)
    +185        raise RuntimeError(f"Failed saving {path}") from e
    +186
    +187
    +188# -------------------- TEMPORAL LOGIC -------------------- #
    +189
    +190def _handle_temporal_flow(df_real: pd.DataFrame, df_synth: pd.DataFrame) -> pd.DataFrame:
    +191    """Ensure synthetic data continues forward in time with robust NA handling."""
    +192
    +193    # ------------------ CASE 1: TRUE DATETIME ------------------ #
    +194    datetime_cols = df_real.select_dtypes(include=["datetime64[ns]"]).columns
    +195
    +196    if len(datetime_cols) > 0:
    +197        for col in datetime_cols:
    +198            max_real = df_real[col].max()
    +199            min_synth = df_synth[col].min()
    +200
    +201            if pd.notna(max_real) and pd.notna(min_synth):
    +202                delta = max_real - min_synth + pd.Timedelta(days=1)
    +203                df_synth[col] = df_synth[col] + delta
    +204
    +205            # Log NaT issues
    +206            n_missing = df_synth[col].isna().sum()
    +207            if n_missing > 0:
    +208                logger.warning(f"{col}: {n_missing} NaT values after temporal shift")
    +209
    +210        logger.info("Applied datetime-based temporal shift")
    +211        return df_synth
    +212
    +213    # ------------------ CASE 2: DECOMPOSED DATES ------------------ #
    +214    required = {
    +215        "arrival_date_year",
    +216        "arrival_date_month",
    +217        "arrival_date_day_of_month"
    +218    }
    +219
    +220    if required.issubset(df_real.columns):
    +221
    +222        def build_datetime(df: pd.DataFrame):
    +223            months = df["arrival_date_month"].map(MONTH_MAP)
    +224
    +225            date_df = pd.DataFrame({
    +226                "year": pd.to_numeric(df["arrival_date_year"], errors="coerce"),
    +227                "month": months,
    +228                "day": pd.to_numeric(df["arrival_date_day_of_month"], errors="coerce"),
    +229            })
    +230
    +231            return pd.to_datetime(date_df, errors="coerce")
    +232
    +233        real_dates = build_datetime(df_real)
    +234        synth_dates = build_datetime(df_synth)
    +235
    +236        max_real = real_dates.max()
    +237        min_synth = synth_dates.min()
    +238
    +239        if pd.notna(max_real) and pd.notna(min_synth):
    +240            delta = max_real - min_synth + pd.Timedelta(days=1)
    +241            shifted = synth_dates + delta
    +242        else:
    +243            logger.warning("Temporal shift skipped due to invalid min/max dates")
    +244            shifted = synth_dates
    +245
    +246        # Log invalid dates
    +247        n_invalid = shifted.isna().sum()
    +248        if n_invalid > 0:
    +249            logger.warning(f"{n_invalid} invalid synthetic dates detected")
    +250
    +251        # Fill invalid dates forward (safe fallback)
    +252        shifted = shifted.ffill().bfill()
    +253
    +254        # Rebuild columns
    +255        df_synth["arrival_date_year"] = shifted.dt.year.astype("Int64")
    +256        df_synth["arrival_date_month"] = shifted.dt.month.map(REVERSE_MONTH_MAP)
    +257        df_synth["arrival_date_day_of_month"] = shifted.dt.day.astype("Int64")
    +258
    +259        # ✅ SAFE WEEK NUMBER
    +260        df_synth["arrival_date_week_number"] = (
    +261            shifted.dt.isocalendar().week.astype("Int64")
    +262        )
    +263
    +264        logger.info("Applied decomposed-date temporal shift")
    +265        return df_synth
    +266
    +267    logger.info("No temporal structure detected")
    +268    return df_synth
    +269
    +270
    +271# -------------------- DATA QUALITY -------------------- #
    +272
    +273def _clip_outliers(df_real: pd.DataFrame, df_synth: pd.DataFrame) -> pd.DataFrame:
    +274    """Clip synthetic values to realistic ranges with logging."""
    +275    numeric_cols = df_real.select_dtypes(include=["number"]).columns
    +276
    +277    for col in numeric_cols:
    +278        q_low = df_real[col].quantile(0.01)
    +279        q_high = df_real[col].quantile(0.99)
    +280
    +281        before_outliers = ((df_synth[col] < q_low) | (df_synth[col] > q_high)).sum()
    +282
    +283        df_synth[col] = df_synth[col].clip(q_low, q_high)
    +284
    +285        if before_outliers > 0:
    +286            logger.info(f"{col}: clipped {before_outliers} outliers")
    +287
    +288    return df_synth
    +289
    +290
    +291def _apply_constraints(df: pd.DataFrame) -> pd.DataFrame:
    +292    """Apply domain constraints."""
    +293    if "adults" in df.columns:
    +294        df["adults"] = df["adults"].clip(lower=1)
    +295
    +296    if "children" in df.columns:
    +297        df["children"] = df["children"].clip(lower=0)
    +298
    +299    if "adr" in df.columns:
    +300        df["adr"] = df["adr"].clip(lower=0)
    +301
    +302    if {"stays_in_weekend_nights", "stays_in_week_nights"}.issubset(df.columns):
    +303        total = df["stays_in_weekend_nights"] + df["stays_in_week_nights"]
    +304        df.loc[total == 0, "stays_in_week_nights"] = 1
    +305
    +306    return df
    +307
    +308
    +309def _enforce_schema(df: pd.DataFrame, dtypes: dict, categories: dict) -> pd.DataFrame:
    +310    """Reapply original schema with robust coercion + logging."""
    +311    for col, dtype in dtypes.items():
    +312        if col not in df.columns or col in FAKE_COLUMNS:
    +313            continue
    +314
    +315        try:
    +316            if "int" in str(dtype):
    +317                coerced = pd.to_numeric(df[col], errors="coerce")
    +318                n_na = coerced.isna().sum()
    +319
    +320                if n_na > 0:
    +321                    logger.warning(f"{col}: {n_na} values could not be cast to int")
    +322
    +323                df[col] = coerced.astype("Int64")
    +324
    +325            elif "float" in str(dtype):
    +326                coerced = pd.to_numeric(df[col], errors="coerce")
    +327                df[col] = coerced.astype(dtype)
    +328
    +329            else:
    +330                df[col] = df[col].astype(dtype)
    +331
    +332        except Exception:
    +333            logger.warning(f"Failed to cast column {col} to {dtype}")
    +334
    +335    # ------------------ CATEGORICAL ALIGNMENT ------------------ #
    +336    for col, cats in categories.items():
    +337        if col not in df.columns:
    +338            continue
    +339
    +340        mask_invalid = ~df[col].isin(cats)
    +341        n_invalid = mask_invalid.sum()
    +342
    +343        if n_invalid > 0:
    +344            logger.warning(f"{col}: {n_invalid} unseen categories replaced with NaN")
    +345
    +346        df.loc[mask_invalid, col] = pd.NA
    +347
    +348    return df
    +349
    +350def _preprocess_for_sdv(df: pd.DataFrame) -> pd.DataFrame:
    +351    df = df.copy()
    +352
    +353    # Numerical → median
    +354    num_cols = df.select_dtypes(include=["number"]).columns
    +355    for col in num_cols:
    +356        df[col] = df[col].fillna(df[col].median())
    +357
    +358    # Categorical → "missing"
    +359    cat_cols = df.select_dtypes(include=["object"]).columns
    +360    for col in cat_cols:
    +361        df[col] = df[col].fillna("missing")
    +362
    +363    return df
    +364
    +365def sanitize(obj):
    +366    """Recursively replace NaN with None for JSON serialization."""
    +367    if isinstance(obj, float) and np.isnan(obj):
    +368        return None
    +369    elif isinstance(obj, dict):
    +370        return {k: sanitize(v) for k, v in obj.items()}
    +371    elif isinstance(obj, list):
    +372        return [sanitize(v) for v in obj]
    +373    return obj
    +374
    +375
    +376fake = Faker()
    +377
    +378def _add_fake_columns(df: pd.DataFrame) -> pd.DataFrame:
    +379    n = len(df)
    +380
    +381    if "name" in FAKE_COLUMNS:
    +382        df["name"] = [fake.name() for _ in range(n)]
    +383
    +384    if "email" in FAKE_COLUMNS:
    +385        df["email"] = [fake.email() for _ in range(n)]
    +386
    +387    if "phone-number" in FAKE_COLUMNS:
    +388        df["phone-number"] = [fake.phone_number() for _ in range(n)]
    +389
    +390    if "credit_card" in FAKE_COLUMNS:
    +391        df["credit_card"] = [fake.credit_card_number() for _ in range(n)]
    +392
    +393    if "reservation_status_date" in FAKE_COLUMNS:
    +394        df["reservation_status_date"] = [
    +395            fake.date_between(start_date="-2y", end_date="today")
    +396            for _ in range(n)
    +397        ]
    +398
    +399    return df
    +400
    +401# -------------------- MAIN -------------------- #
    +402
    +403def main() -> int:
    +404    """Main execution."""
    +405    timestamp = iso_no_colon(datetime.now())
    +406    run_id = f"{timestamp}_{uuid4().hex[:8]}"
    +407    log_file = Path(f"scripts_logs/generators/generate_fake_data/{run_id}/generation.log")
    +408    setup_logging(path=log_file, level=logging.INFO)
    +409
    +410    args = parse_args()
    +411
    +412    logger.info(f"Using random seed: {args.seed}")
    +413    np.random.seed(args.seed)
    +414    random.seed(args.seed)
    +415    fake.seed_instance(args.seed)
    +416
    +417    try:
    +418        base_path = Path(f"data/raw/{args.data}/{args.version}")
    +419        snapshot_path = get_snapshot_path(args.snapshot_id, base_path)
    +420
    +421        logger.info(f"Resolved snapshot path: {snapshot_path}")
    +422
    +423        data_files = list(snapshot_path.glob("data.*"))
    +424        if not data_files:
    +425            msg = f"No data file found in {snapshot_path}"
    +426            logger.error(msg)
    +427            raise FileNotFoundError(msg)
    +428
    +429        data_file = data_files[0]
    +430        fmt = _infer_format(data_file)
    +431
    +432        df = read_data(fmt, data_file)
    +433        if df is None:
    +434            msg = f"read_data returned None for file {data_file}"
    +435            logger.error(msg)
    +436            raise RuntimeError(msg)
    +437        logger.info(f"Loaded dataset shape: {df.shape}")
    +438
    +439        # Capture schema
    +440        original_dtypes = df.dtypes.to_dict()
    +441        original_categories = {
    +442            col: df[col].dropna().unique()
    +443            for col in df.select_dtypes(include="object").columns
    +444            if col not in FAKE_COLUMNS
    +445        }
    +446
    +447        df_raw = df.copy()
    +448        df_model = _preprocess_for_sdv(df_raw)
    +449
    +450        # Drop high-cardinality / fake columns BEFORE training
    +451        cols_to_drop = [c for c in FAKE_COLUMNS if c in df_model.columns]
    +452        df_model = df_model.drop(columns=cols_to_drop)
    +453
    +454        # Simplify 'country': keep top 20, others as 'Other'
    +455        if "country" in df_model.columns:
    +456            top_countries = df_model["country"].value_counts().nlargest(20).index
    +457            df_model["country"] = df_model["country"].where(df_model["country"].isin(top_countries), "Other")
    +458
    +459        # Fill sparse numeric columns with 0
    +460        for col in ["agent", "company"]:
    +461            if col in df_model.columns:
    +462                df_model[col] = df_model[col].fillna(0)
    +463
    +464        # Ensure no NaNs remain before training
    +465        for col in df_model.columns:
    +466            if df_model[col].dtype.kind in "biufc":  # numeric
    +467                df_model[col] = df_model[col].fillna(np.median(df_model[col]))
    +468            else:
    +469                df_model[col] = df_model[col].fillna("Unknown")
    +470
    +471        new_snapshot_id = run_id
    +472        output_dir = base_path / new_snapshot_id
    +473        output_dir.mkdir(parents=True, exist_ok=True)
    +474
    +475        # Train synthesizer
    +476        metadata = Metadata()
    +477
    +478        metadata.detect_table_from_dataframe(
    +479            data=df_model,
    +480            table_name="synthetic_data",
    +481            infer_keys=None # type: ignore -> None is actually a valid value for infer_keys
    +482        )
    +483
    +484        metadata.set_primary_key(
    +485            table_name="synthetic_data",
    +486            column_name=None
    +487        )
    +488
    +489        for col in ["children", "babies"]:
    +490            if col in df_model.columns:
    +491                metadata.update_column(col, sdtype="numerical")
    +492
    +493        for col in ["is_canceled", "is_repeated_guest"]:
    +494            if col in df_model.columns:
    +495                df_model[col] = df_model[col].astype("int")
    +496                metadata.update_column(col, sdtype="numerical")
    +497
    +498        metadata_path = output_dir / "synthesizer_metadata.json"
    +499        metadata.save_to_json(metadata_path)
    +500        logger.info(f"Saved metadata to {metadata_path}")
    +501
    +502        if args.model_path and Path(args.model_path).exists():
    +503            logger.info(f"Loading pre-trained model from {args.model_path}")
    +504            try:
    +505                with open(args.model_path, "rb") as f:
    +506                    synthesizer = pickle.load(f)
    +507            except Exception as e:
    +508                logger.exception(f"Failed to load model from {args.model_path}")
    +509                raise RuntimeError("Failed to load CTGAN model") from e
    +510
    +511        else:
    +512            logger.info("No pre-trained model provided. Training new CTGAN synthesizer.")
    +513            use_gpu = torch.cuda.is_available()
    +514            try:
    +515                if use_gpu:
    +516                    torch.zeros(1, device="cuda")  # test allocation
    +517            except RuntimeError:
    +518                use_gpu = False
    +519            device_str = "GPU" if use_gpu else "CPU"
    +520            logger.info(f"Training CTGAN on {device_str}")
    +521
    +522            pac = 10  # default PacGAN value
    +523            target = args.batch_target_size
    +524
    +525            # Floor the target to the nearest multiple of pac
    +526            batch_size = (target // pac) * pac
    +527            batch_size = max(batch_size, pac)  # ensure batch size at least pac
    +528
    +529            synthesizer = CTGANSynthesizer(
    +530                metadata=metadata,
    +531                epochs=args.epochs,
    +532                verbose=True,
    +533                enable_gpu=use_gpu,
    +534                batch_size=batch_size
    +535            )
    +536
    +537            logger.info(f"Starting synthesizer training for {args.epochs} epochs with batch size {batch_size} and device {device_str}")
    +538
    +539            try:
    +540                synthesizer.fit(df_model)
    +541            except Exception as e:
    +542                logger.exception("Failed during synthesizer.fit()")
    +543                raise RuntimeError("Model training failed") from e
    +544
    +545                # Save trained model if desired
    +546            if args.save_model:
    +547                model_file = Path("synthetizers") / new_snapshot_id / "ctgan_model.pkl"
    +548                model_file.parent.mkdir(parents=True, exist_ok=True)
    +549                try:
    +550                    with open(model_file, "wb") as f:
    +551                        pickle.dump(synthesizer, f)
    +552                    logger.info(f"Saved trained CTGAN model to {model_file}")
    +553                except Exception as e:
    +554                    logger.warning(f"Failed to save CTGAN model: {e}")
    +555
    +556        try:
    +557            n_rows_per_sample = min(1000, args.num_rows)
    +558            n_samples = -(-args.num_rows // n_rows_per_sample)  # ceil division
    +559            synthetic_df = pd.concat(
    +560                [synthesizer.sample(n_rows_per_sample) for _ in range(n_samples)],
    +561                ignore_index=True
    +562            ).iloc[:args.num_rows]  # trim to exact number of rows
    +563        except Exception as e:
    +564            logger.exception("Failed during synthesizer.sample()")
    +565            raise RuntimeError("Failed to generate synthetic data") from e
    +566
    +567        synthetic_df = _preprocess_for_sdv(synthetic_df)
    +568
    +569        synthetic_df = synthetic_df[df_model.columns]
    +570
    +571        quality_report = evaluate_quality(
    +572            real_data=df_model,
    +573            synthetic_data=synthetic_df,
    +574            metadata=metadata
    +575        )
    +576
    +577        synthetic_df = _add_fake_columns(synthetic_df)
    +578
    +579        # Save quality report as JSON with property-level details
    +580        quality_file = output_dir / "quality_report.json"
    +581
    +582        try:
    +583            # Get property-level scores table
    +584            props_df = quality_report.get_properties()
    +585
    +586            # Convert properties to dict
    +587            properties = props_df.to_dict(orient="records")
    +588
    +589            # Also save details for each property
    +590            details = {}
    +591            for prop in props_df["Property"]:
    +592                details[prop] = (
    +593                    quality_report.get_details(property_name=prop)
    +594                    .to_dict(orient="records")
    +595                )
    +596
    +597            # Build final dict
    +598            report_dict = {
    +599                "overall_score": quality_report.get_score(),
    +600                "properties": properties,
    +601                "details": details,
    +602            }
    +603
    +604            report_dict = sanitize(report_dict)
    +605
    +606            # Write JSON
    +607            with open(quality_file, "w") as f:
    +608                json.dump(report_dict, f, indent=4)
    +609
    +610            logger.info(f"Saved quality report to {quality_file}")
    +611
    +612        except Exception as e:
    +613            logger.warning(f"Failed to save quality report: {e}")
    +614
    +615        score = quality_report.get_score()
    +616        logger.info(f"Synthetic data quality score: {score:.4f}")
    +617
    +618        if synthetic_df.isna().sum().sum() > 0:
    +619            logger.warning(
    +620                f"Synthetic data contains {synthetic_df.isna().sum().sum()} missing values"
    +621            )
    +622
    +623        if score < args.quality_threshold:
    +624            msg = f"Synthetic data quality score {score:.4f} is below threshold {args.quality_threshold:.4f}"
    +625            if args.strict_quality:
    +626                logger.error(msg + ". Aborting.")
    +627                raise ValueError(msg)
    +628            else:
    +629                logger.warning(msg + ". Proceeding with save (strict=False).")
    +630
    +631        # Apply improvements
    +632        synthetic_df = _handle_temporal_flow(df_model, synthetic_df)
    +633        synthetic_df = _clip_outliers(df_model, synthetic_df)
    +634        synthetic_df = _apply_constraints(synthetic_df)
    +635        synthetic_df = _enforce_schema(synthetic_df, original_dtypes, original_categories)
    +636
    +637        # Merge
    +638        final_df = pd.concat([df_model, synthetic_df], ignore_index=True) if args.include_old else synthetic_df
    +639
    +640        if final_df.isna().sum().sum() > 0:
    +641            if args.strict_missing:
    +642                msg = f"Final dataset contains {final_df.isna().sum().sum()} missing values in strict mode. Aborting."
    +643                logger.error(msg)
    +644                raise ValueError(msg)
    +645            logger.warning("Final dataset still contains missing values. Strict mode is disabled, so proceeding with save.")
    +646
    +647        # Save
    +648        output_file = output_dir / f"data.{fmt}"
    +649        _atomic_save(final_df, output_file, fmt)
    +650
    +651        logger.info(f"Saved synthetic dataset to {output_file}")
    +652        print(f"New snapshot created: {new_snapshot_id}")
    +653
    +654        return 0
    +655
    +656    except Exception:
    +657        logger.exception("Failed to generate synthetic data.")
    +658        return 1
    +659
    +660
    +661if __name__ == "__main__":
    +662    sys.exit(main())
    +
    + + +
    +
    +
    + logger = +<Logger scripts.generators.generate_fake_data (WARNING)> + + +
    + + + + +
    +
    +
    + MONTH_MAP = + + {'January': 1, 'February': 2, 'March': 3, 'April': 4, 'May': 5, 'June': 6, 'July': 7, 'August': 8, 'September': 9, 'October': 10, 'November': 11, 'December': 12} + + +
    + + + + +
    +
    +
    + REVERSE_MONTH_MAP = + + {1: 'January', 2: 'February', 3: 'March', 4: 'April', 5: 'May', 6: 'June', 7: 'July', 8: 'August', 9: 'September', 10: 'October', 11: 'November', 12: 'December'} + + +
    + + + + +
    +
    +
    + FAKE_COLUMNS = +['name', 'email', 'phone-number', 'credit_card', 'reservation_status_date'] + + +
    + + + + +
    +
    + +
    + + def + parse_args(): + + + +
    + +
     63def parse_args():
    + 64    """Parse CLI arguments."""
    + 65    parser = argparse.ArgumentParser(description="Generate synthetic dataset snapshot.")
    + 66
    + 67    parser.add_argument(
    + 68        "--data",
    + 69        type=str,
    + 70        required=True,
    + 71        help="Name of the dataset to use (e.g., 'hotel_bookings')."
    + 72    )
    + 73
    + 74    parser.add_argument(
    + 75        "--version",
    + 76        type=str,
    + 77        required=True,
    + 78        help="Version of the dataset to use (e.g., 'v1')."
    + 79    )
    + 80
    + 81    parser.add_argument(
    + 82        "--snapshot-id",
    + 83        type=str,
    + 84        default=LatestSnapshot.LATEST.value,
    + 85        help="Snapshot ID to use as base for synthetic generation. Defaults to 'latest'.",
    + 86    )
    + 87
    + 88    parser.add_argument(
    + 89        "--num-rows",
    + 90        type=int,
    + 91        default=10000,
    + 92        help="Number of synthetic rows to generate. Defaults to 10000.",
    + 93    )
    + 94
    + 95    parser.add_argument(
    + 96        "--include-old",
    + 97        type=str_to_bool,
    + 98        default=False,
    + 99        help="If true, final dataset will include original rows plus synthetic. If false, only synthetic rows are saved.",
    +100    )
    +101
    +102    parser.add_argument(
    +103        "--model-path",
    +104        type=str,
    +105        default=None,
    +106        help="Path to a pre-trained CTGAN model to load. If not provided, uses a default path."
    +107    )
    +108
    +109    parser.add_argument(
    +110        "--strict-missing",
    +111        type=str_to_bool,
    +112        default=False,
    +113        help="If true, abort if final dataset contains any missing values after processing. If false, log a warning and proceed with saving.",
    +114    )
    +115
    +116    parser.add_argument(
    +117        "--strict-quality",
    +118        type=str_to_bool,
    +119        default=True,
    +120        help="If true, abort if the synthetic data quality score is below the specified threshold. If false, log a warning and proceed with saving.",
    +121    )
    +122
    +123    parser.add_argument(
    +124        "--seed",
    +125        type=int,
    +126        default=42,
    +127        help="Random seed for reproducibility. Defaults to 42.",
    +128    )
    +129
    +130    parser.add_argument(
    +131        "--quality-threshold",
    +132        type=float,
    +133        default=0.7,
    +134        help="Minimum acceptable quality score for synthetic data. If the generated data scores below this threshold, the script will either log a warning or abort, depending on the '--strict-quality' flag.",
    +135    )
    +136
    +137    parser.add_argument(
    +138        "--epochs",
    +139        type=int,
    +140        default=400,
    +141        help="Number of training epochs for the synthesizer model. Defaults to 400.",
    +142    )
    +143
    +144    parser.add_argument(
    +145        "--batch-target-size",
    +146        type=int,
    +147        default=4000,
    +148        help="Target batch size for synthesizer sampling. If the synthesizer does not support direct batch size control, this will be used to generate samples in batches and concatenate them. Defaults to 4000.",
    +149    )
    +150
    +151    parser.add_argument(
    +152        "--save-model",
    +153        type=str_to_bool,
    +154        default=True,
    +155        help="Whether to save the trained CTGAN model to disk if training a new one."
    +156    )
    +157
    +158    return parser.parse_args()
    +
    + + +

    Parse CLI arguments.

    +
    + + +
    +
    + +
    + + def + sanitize(obj): + + + +
    + +
    366def sanitize(obj):
    +367    """Recursively replace NaN with None for JSON serialization."""
    +368    if isinstance(obj, float) and np.isnan(obj):
    +369        return None
    +370    elif isinstance(obj, dict):
    +371        return {k: sanitize(v) for k, v in obj.items()}
    +372    elif isinstance(obj, list):
    +373        return [sanitize(v) for v in obj]
    +374    return obj
    +
    + + +

    Recursively replace NaN with None for JSON serialization.

    +
    + + +
    +
    +
    + fake = +<faker.proxy.Faker object> + + +
    + + + + +
    +
    + +
    + + def + main() -> int: + + + +
    + +
    404def main() -> int:
    +405    """Main execution."""
    +406    timestamp = iso_no_colon(datetime.now())
    +407    run_id = f"{timestamp}_{uuid4().hex[:8]}"
    +408    log_file = Path(f"scripts_logs/generators/generate_fake_data/{run_id}/generation.log")
    +409    setup_logging(path=log_file, level=logging.INFO)
    +410
    +411    args = parse_args()
    +412
    +413    logger.info(f"Using random seed: {args.seed}")
    +414    np.random.seed(args.seed)
    +415    random.seed(args.seed)
    +416    fake.seed_instance(args.seed)
    +417
    +418    try:
    +419        base_path = Path(f"data/raw/{args.data}/{args.version}")
    +420        snapshot_path = get_snapshot_path(args.snapshot_id, base_path)
    +421
    +422        logger.info(f"Resolved snapshot path: {snapshot_path}")
    +423
    +424        data_files = list(snapshot_path.glob("data.*"))
    +425        if not data_files:
    +426            msg = f"No data file found in {snapshot_path}"
    +427            logger.error(msg)
    +428            raise FileNotFoundError(msg)
    +429
    +430        data_file = data_files[0]
    +431        fmt = _infer_format(data_file)
    +432
    +433        df = read_data(fmt, data_file)
    +434        if df is None:
    +435            msg = f"read_data returned None for file {data_file}"
    +436            logger.error(msg)
    +437            raise RuntimeError(msg)
    +438        logger.info(f"Loaded dataset shape: {df.shape}")
    +439
    +440        # Capture schema
    +441        original_dtypes = df.dtypes.to_dict()
    +442        original_categories = {
    +443            col: df[col].dropna().unique()
    +444            for col in df.select_dtypes(include="object").columns
    +445            if col not in FAKE_COLUMNS
    +446        }
    +447
    +448        df_raw = df.copy()
    +449        df_model = _preprocess_for_sdv(df_raw)
    +450
    +451        # Drop high-cardinality / fake columns BEFORE training
    +452        cols_to_drop = [c for c in FAKE_COLUMNS if c in df_model.columns]
    +453        df_model = df_model.drop(columns=cols_to_drop)
    +454
    +455        # Simplify 'country': keep top 20, others as 'Other'
    +456        if "country" in df_model.columns:
    +457            top_countries = df_model["country"].value_counts().nlargest(20).index
    +458            df_model["country"] = df_model["country"].where(df_model["country"].isin(top_countries), "Other")
    +459
    +460        # Fill sparse numeric columns with 0
    +461        for col in ["agent", "company"]:
    +462            if col in df_model.columns:
    +463                df_model[col] = df_model[col].fillna(0)
    +464
    +465        # Ensure no NaNs remain before training
    +466        for col in df_model.columns:
    +467            if df_model[col].dtype.kind in "biufc":  # numeric
    +468                df_model[col] = df_model[col].fillna(np.median(df_model[col]))
    +469            else:
    +470                df_model[col] = df_model[col].fillna("Unknown")
    +471
    +472        new_snapshot_id = run_id
    +473        output_dir = base_path / new_snapshot_id
    +474        output_dir.mkdir(parents=True, exist_ok=True)
    +475
    +476        # Train synthesizer
    +477        metadata = Metadata()
    +478
    +479        metadata.detect_table_from_dataframe(
    +480            data=df_model,
    +481            table_name="synthetic_data",
    +482            infer_keys=None # type: ignore -> None is actually a valid value for infer_keys
    +483        )
    +484
    +485        metadata.set_primary_key(
    +486            table_name="synthetic_data",
    +487            column_name=None
    +488        )
    +489
    +490        for col in ["children", "babies"]:
    +491            if col in df_model.columns:
    +492                metadata.update_column(col, sdtype="numerical")
    +493
    +494        for col in ["is_canceled", "is_repeated_guest"]:
    +495            if col in df_model.columns:
    +496                df_model[col] = df_model[col].astype("int")
    +497                metadata.update_column(col, sdtype="numerical")
    +498
    +499        metadata_path = output_dir / "synthesizer_metadata.json"
    +500        metadata.save_to_json(metadata_path)
    +501        logger.info(f"Saved metadata to {metadata_path}")
    +502
    +503        if args.model_path and Path(args.model_path).exists():
    +504            logger.info(f"Loading pre-trained model from {args.model_path}")
    +505            try:
    +506                with open(args.model_path, "rb") as f:
    +507                    synthesizer = pickle.load(f)
    +508            except Exception as e:
    +509                logger.exception(f"Failed to load model from {args.model_path}")
    +510                raise RuntimeError("Failed to load CTGAN model") from e
    +511
    +512        else:
    +513            logger.info("No pre-trained model provided. Training new CTGAN synthesizer.")
    +514            use_gpu = torch.cuda.is_available()
    +515            try:
    +516                if use_gpu:
    +517                    torch.zeros(1, device="cuda")  # test allocation
    +518            except RuntimeError:
    +519                use_gpu = False
    +520            device_str = "GPU" if use_gpu else "CPU"
    +521            logger.info(f"Training CTGAN on {device_str}")
    +522
    +523            pac = 10  # default PacGAN value
    +524            target = args.batch_target_size
    +525
    +526            # Floor the target to the nearest multiple of pac
    +527            batch_size = (target // pac) * pac
    +528            batch_size = max(batch_size, pac)  # ensure batch size at least pac
    +529
    +530            synthesizer = CTGANSynthesizer(
    +531                metadata=metadata,
    +532                epochs=args.epochs,
    +533                verbose=True,
    +534                enable_gpu=use_gpu,
    +535                batch_size=batch_size
    +536            )
    +537
    +538            logger.info(f"Starting synthesizer training for {args.epochs} epochs with batch size {batch_size} and device {device_str}")
    +539
    +540            try:
    +541                synthesizer.fit(df_model)
    +542            except Exception as e:
    +543                logger.exception("Failed during synthesizer.fit()")
    +544                raise RuntimeError("Model training failed") from e
    +545
    +546                # Save trained model if desired
    +547            if args.save_model:
    +548                model_file = Path("synthetizers") / new_snapshot_id / "ctgan_model.pkl"
    +549                model_file.parent.mkdir(parents=True, exist_ok=True)
    +550                try:
    +551                    with open(model_file, "wb") as f:
    +552                        pickle.dump(synthesizer, f)
    +553                    logger.info(f"Saved trained CTGAN model to {model_file}")
    +554                except Exception as e:
    +555                    logger.warning(f"Failed to save CTGAN model: {e}")
    +556
    +557        try:
    +558            n_rows_per_sample = min(1000, args.num_rows)
    +559            n_samples = -(-args.num_rows // n_rows_per_sample)  # ceil division
    +560            synthetic_df = pd.concat(
    +561                [synthesizer.sample(n_rows_per_sample) for _ in range(n_samples)],
    +562                ignore_index=True
    +563            ).iloc[:args.num_rows]  # trim to exact number of rows
    +564        except Exception as e:
    +565            logger.exception("Failed during synthesizer.sample()")
    +566            raise RuntimeError("Failed to generate synthetic data") from e
    +567
    +568        synthetic_df = _preprocess_for_sdv(synthetic_df)
    +569
    +570        synthetic_df = synthetic_df[df_model.columns]
    +571
    +572        quality_report = evaluate_quality(
    +573            real_data=df_model,
    +574            synthetic_data=synthetic_df,
    +575            metadata=metadata
    +576        )
    +577
    +578        synthetic_df = _add_fake_columns(synthetic_df)
    +579
    +580        # Save quality report as JSON with property-level details
    +581        quality_file = output_dir / "quality_report.json"
    +582
    +583        try:
    +584            # Get property-level scores table
    +585            props_df = quality_report.get_properties()
    +586
    +587            # Convert properties to dict
    +588            properties = props_df.to_dict(orient="records")
    +589
    +590            # Also save details for each property
    +591            details = {}
    +592            for prop in props_df["Property"]:
    +593                details[prop] = (
    +594                    quality_report.get_details(property_name=prop)
    +595                    .to_dict(orient="records")
    +596                )
    +597
    +598            # Build final dict
    +599            report_dict = {
    +600                "overall_score": quality_report.get_score(),
    +601                "properties": properties,
    +602                "details": details,
    +603            }
    +604
    +605            report_dict = sanitize(report_dict)
    +606
    +607            # Write JSON
    +608            with open(quality_file, "w") as f:
    +609                json.dump(report_dict, f, indent=4)
    +610
    +611            logger.info(f"Saved quality report to {quality_file}")
    +612
    +613        except Exception as e:
    +614            logger.warning(f"Failed to save quality report: {e}")
    +615
    +616        score = quality_report.get_score()
    +617        logger.info(f"Synthetic data quality score: {score:.4f}")
    +618
    +619        if synthetic_df.isna().sum().sum() > 0:
    +620            logger.warning(
    +621                f"Synthetic data contains {synthetic_df.isna().sum().sum()} missing values"
    +622            )
    +623
    +624        if score < args.quality_threshold:
    +625            msg = f"Synthetic data quality score {score:.4f} is below threshold {args.quality_threshold:.4f}"
    +626            if args.strict_quality:
    +627                logger.error(msg + ". Aborting.")
    +628                raise ValueError(msg)
    +629            else:
    +630                logger.warning(msg + ". Proceeding with save (strict=False).")
    +631
    +632        # Apply improvements
    +633        synthetic_df = _handle_temporal_flow(df_model, synthetic_df)
    +634        synthetic_df = _clip_outliers(df_model, synthetic_df)
    +635        synthetic_df = _apply_constraints(synthetic_df)
    +636        synthetic_df = _enforce_schema(synthetic_df, original_dtypes, original_categories)
    +637
    +638        # Merge
    +639        final_df = pd.concat([df_model, synthetic_df], ignore_index=True) if args.include_old else synthetic_df
    +640
    +641        if final_df.isna().sum().sum() > 0:
    +642            if args.strict_missing:
    +643                msg = f"Final dataset contains {final_df.isna().sum().sum()} missing values in strict mode. Aborting."
    +644                logger.error(msg)
    +645                raise ValueError(msg)
    +646            logger.warning("Final dataset still contains missing values. Strict mode is disabled, so proceeding with save.")
    +647
    +648        # Save
    +649        output_file = output_dir / f"data.{fmt}"
    +650        _atomic_save(final_df, output_file, fmt)
    +651
    +652        logger.info(f"Saved synthetic dataset to {output_file}")
    +653        print(f"New snapshot created: {new_snapshot_id}")
    +654
    +655        return 0
    +656
    +657    except Exception:
    +658        logger.exception("Failed to generate synthetic data.")
    +659        return 1
    +
    + + +

    Main execution.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/scripts/scripts/generators/generate_operator_hash.html b/docs/api/scripts/scripts/generators/generate_operator_hash.html index 36464c87..fcc47c41 100644 --- a/docs/api/scripts/scripts/generators/generate_operator_hash.html +++ b/docs/api/scripts/scripts/generators/generate_operator_hash.html @@ -162,7 +162,7 @@

    ALLOWED = -{'TotalStay', 'ArrivalSeason', 'AdrPerPerson', 'ArrivalDate'} +{'TotalStay', 'AdrPerPerson', 'ArrivalSeason', 'ArrivalDate'}
    diff --git a/docs/api/scripts/scripts/generators/generate_snapshot_binding.html b/docs/api/scripts/scripts/generators/generate_snapshot_binding.html new file mode 100644 index 00000000..a183fa8b --- /dev/null +++ b/docs/api/scripts/scripts/generators/generate_snapshot_binding.html @@ -0,0 +1,651 @@ + + + + + + + scripts.generators.generate_snapshot_binding API documentation + + + + + + + + + +
    +
    +

    +scripts.generators.generate_snapshot_binding

    + +

    Utility CLI to generate snapshot bindings for datasets and feature sets.

    + +

    This script scans the processed datasets and feature sets to find the latest snapshots, +and then creates a timestamped binding entry in the snapshot bindings registry YAML.

    +
    + + + + + +
      1"""Utility CLI to generate snapshot bindings for datasets and feature sets.
    +  2
    +  3This script scans the processed datasets and feature sets to find the latest snapshots,
    +  4and then creates a timestamped binding entry in the snapshot bindings registry YAML.
    +  5"""
    +  6
    +  7import logging
    +  8import os
    +  9import sys
    + 10from datetime import datetime
    + 11from pathlib import Path
    + 12from uuid import uuid4
    + 13
    + 14import yaml
    + 15from ml.exceptions import DataError, RuntimeMLError
    + 16from ml.io.formatting.iso_no_colon import iso_no_colon
    + 17from ml.logging_config import setup_logging
    + 18from ml.utils.snapshots.latest_snapshot import get_latest_snapshot_path
    + 19
    + 20logger = logging.getLogger(__name__)
    + 21
    + 22# Base directories
    + 23DATA_PROCESSED_DIR = Path("data/processed")
    + 24FEATURE_STORE_DIR = Path("feature_store")
    + 25BINDINGS_PATH = Path("configs/snapshot_bindings_registry/bindings.yaml")
    + 26
    + 27
    + 28def scan_latest_snapshots(base_dir: Path) -> dict[str, dict[str, str]]:
    + 29    """Scan a base directory for latest snapshots.
    + 30
    + 31    Args:
    + 32        base_dir: The base directory to scan (e.g., data/processed or feature_store
    + 33
    + 34    Returns:
    + 35        dict[name][version] = snapshot_name (str)
    + 36    """
    + 37    result = {}
    + 38    if not base_dir.exists():
    + 39        logger.warning(f"Base directory {base_dir} does not exist. Skipping.")
    + 40        return result
    + 41
    + 42    for name_dir in base_dir.iterdir():
    + 43        if not name_dir.is_dir():
    + 44            continue
    + 45        result[name_dir.name] = {}
    + 46        for version_dir in name_dir.iterdir():
    + 47            if not version_dir.is_dir():
    + 48                continue
    + 49            try:
    + 50                latest_snapshot = get_latest_snapshot_path(version_dir)
    + 51                result[name_dir.name][version_dir.name] = latest_snapshot.name
    + 52            except DataError:
    + 53                logger.warning(f"No valid snapshots found for {version_dir}. Skipping.")
    + 54    return result
    + 55
    + 56
    + 57def load_bindings(path: Path) -> dict:
    + 58    """Load existing bindings YAML or create an empty dict.
    + 59
    + 60    Args:
    + 61        path: The path to the bindings YAML file.
    + 62
    + 63    Returns:
    + 64        The loaded bindings dictionary.
    + 65    """
    + 66    if not path.exists():
    + 67        return {}
    + 68    with path.open("r") as f:
    + 69        return yaml.safe_load(f) or {}
    + 70
    + 71
    + 72def save_bindings_atomic(path: Path, data: dict):
    + 73    """Save bindings dictionary to YAML atomically.
    + 74
    + 75    Args:
    + 76        path: The path to the bindings YAML file.
    + 77        data: The bindings dictionary to save.
    + 78    """
    + 79    path.parent.mkdir(parents=True, exist_ok=True)
    + 80
    + 81    tmp_path = path.parent / f"{path.name}.tmp"
    + 82
    + 83    try:
    + 84        with open(tmp_path, "w", encoding="utf-8") as f:
    + 85            yaml.safe_dump(data, f, sort_keys=True)
    + 86            f.flush()
    + 87            os.fsync(f.fileno())
    + 88
    + 89        os.replace(tmp_path, path)
    + 90
    + 91    except Exception as e:
    + 92        if tmp_path.exists():
    + 93            tmp_path.unlink()
    + 94        msg = f"Failed to write bindings to {path}."
    + 95        logger.exception(msg)
    + 96        raise RuntimeMLError(msg) from e
    + 97
    + 98def main() -> int:
    + 99    """Generate snapshot bindings and update bindings.yaml.
    +100
    +101    Returns:
    +102        0 on success, positive integer on failure.
    +103    """
    +104    timestamp = iso_no_colon(datetime.now())
    +105    run_id = f"{timestamp}_{uuid4().hex[:8]}"
    +106    log_file = Path(f"scripts_logs/generators/generate_snapshot_binding/{run_id}/snapshot_binding_generation.log")
    +107    setup_logging(path=log_file, level=logging.INFO)
    +108
    +109    logger.info(f"Starting snapshot binding generation with run_id {run_id}")
    +110
    +111    try:
    +112        datasets = scan_latest_snapshots(DATA_PROCESSED_DIR)
    +113        feature_sets = scan_latest_snapshots(FEATURE_STORE_DIR)
    +114        logger.info(f"Found datasets: {datasets}")
    +115        logger.info(f"Found feature sets: {feature_sets}")
    +116
    +117        bindings = load_bindings(BINDINGS_PATH)
    +118
    +119        bindings[run_id] = {
    +120            "datasets": {name: {version: {"snapshot": snap} for version, snap in versions.items()}
    +121                         for name, versions in datasets.items()},
    +122            "feature_sets": {name: {version: {"snapshot": snap} for version, snap in versions.items()}
    +123                             for name, versions in feature_sets.items()}
    +124        }
    +125
    +126        save_bindings_atomic(BINDINGS_PATH, bindings)
    +127        logger.info(f"Snapshot bindings successfully written to {BINDINGS_PATH} under key {run_id}")
    +128        print(f"Snapshot bindings successfully written to {BINDINGS_PATH} under key {run_id}")
    +129        return 0
    +130
    +131    except Exception as e:
    +132        logger.exception(f"Failed to generate snapshot bindings: {e}")
    +133        return 1
    +134
    +135
    +136if __name__ == "__main__":
    +137    sys.exit(main())
    +
    + + +
    +
    +
    + logger = +<Logger scripts.generators.generate_snapshot_binding (WARNING)> + + +
    + + + + +
    +
    +
    + DATA_PROCESSED_DIR = +WindowsPath('data/processed') + + +
    + + + + +
    +
    +
    + FEATURE_STORE_DIR = +WindowsPath('feature_store') + + +
    + + + + +
    +
    +
    + BINDINGS_PATH = +WindowsPath('configs/snapshot_bindings_registry/bindings.yaml') + + +
    + + + + +
    +
    + +
    + + def + scan_latest_snapshots(base_dir: pathlib.Path) -> dict[str, dict[str, str]]: + + + +
    + +
    29def scan_latest_snapshots(base_dir: Path) -> dict[str, dict[str, str]]:
    +30    """Scan a base directory for latest snapshots.
    +31
    +32    Args:
    +33        base_dir: The base directory to scan (e.g., data/processed or feature_store
    +34
    +35    Returns:
    +36        dict[name][version] = snapshot_name (str)
    +37    """
    +38    result = {}
    +39    if not base_dir.exists():
    +40        logger.warning(f"Base directory {base_dir} does not exist. Skipping.")
    +41        return result
    +42
    +43    for name_dir in base_dir.iterdir():
    +44        if not name_dir.is_dir():
    +45            continue
    +46        result[name_dir.name] = {}
    +47        for version_dir in name_dir.iterdir():
    +48            if not version_dir.is_dir():
    +49                continue
    +50            try:
    +51                latest_snapshot = get_latest_snapshot_path(version_dir)
    +52                result[name_dir.name][version_dir.name] = latest_snapshot.name
    +53            except DataError:
    +54                logger.warning(f"No valid snapshots found for {version_dir}. Skipping.")
    +55    return result
    +
    + + +

    Scan a base directory for latest snapshots.

    + +

    Args: + base_dir: The base directory to scan (e.g., data/processed or feature_store

    + +

    Returns: + dict[name][version] = snapshot_name (str)

    +
    + + +
    +
    + +
    + + def + load_bindings(path: pathlib.Path) -> dict: + + + +
    + +
    58def load_bindings(path: Path) -> dict:
    +59    """Load existing bindings YAML or create an empty dict.
    +60
    +61    Args:
    +62        path: The path to the bindings YAML file.
    +63
    +64    Returns:
    +65        The loaded bindings dictionary.
    +66    """
    +67    if not path.exists():
    +68        return {}
    +69    with path.open("r") as f:
    +70        return yaml.safe_load(f) or {}
    +
    + + +

    Load existing bindings YAML or create an empty dict.

    + +

    Args: + path: The path to the bindings YAML file.

    + +

    Returns: + The loaded bindings dictionary.

    +
    + + +
    +
    + +
    + + def + save_bindings_atomic(path: pathlib.Path, data: dict): + + + +
    + +
    73def save_bindings_atomic(path: Path, data: dict):
    +74    """Save bindings dictionary to YAML atomically.
    +75
    +76    Args:
    +77        path: The path to the bindings YAML file.
    +78        data: The bindings dictionary to save.
    +79    """
    +80    path.parent.mkdir(parents=True, exist_ok=True)
    +81
    +82    tmp_path = path.parent / f"{path.name}.tmp"
    +83
    +84    try:
    +85        with open(tmp_path, "w", encoding="utf-8") as f:
    +86            yaml.safe_dump(data, f, sort_keys=True)
    +87            f.flush()
    +88            os.fsync(f.fileno())
    +89
    +90        os.replace(tmp_path, path)
    +91
    +92    except Exception as e:
    +93        if tmp_path.exists():
    +94            tmp_path.unlink()
    +95        msg = f"Failed to write bindings to {path}."
    +96        logger.exception(msg)
    +97        raise RuntimeMLError(msg) from e
    +
    + + +

    Save bindings dictionary to YAML atomically.

    + +

    Args: + path: The path to the bindings YAML file. + data: The bindings dictionary to save.

    +
    + + +
    +
    + +
    + + def + main() -> int: + + + +
    + +
     99def main() -> int:
    +100    """Generate snapshot bindings and update bindings.yaml.
    +101
    +102    Returns:
    +103        0 on success, positive integer on failure.
    +104    """
    +105    timestamp = iso_no_colon(datetime.now())
    +106    run_id = f"{timestamp}_{uuid4().hex[:8]}"
    +107    log_file = Path(f"scripts_logs/generators/generate_snapshot_binding/{run_id}/snapshot_binding_generation.log")
    +108    setup_logging(path=log_file, level=logging.INFO)
    +109
    +110    logger.info(f"Starting snapshot binding generation with run_id {run_id}")
    +111
    +112    try:
    +113        datasets = scan_latest_snapshots(DATA_PROCESSED_DIR)
    +114        feature_sets = scan_latest_snapshots(FEATURE_STORE_DIR)
    +115        logger.info(f"Found datasets: {datasets}")
    +116        logger.info(f"Found feature sets: {feature_sets}")
    +117
    +118        bindings = load_bindings(BINDINGS_PATH)
    +119
    +120        bindings[run_id] = {
    +121            "datasets": {name: {version: {"snapshot": snap} for version, snap in versions.items()}
    +122                         for name, versions in datasets.items()},
    +123            "feature_sets": {name: {version: {"snapshot": snap} for version, snap in versions.items()}
    +124                             for name, versions in feature_sets.items()}
    +125        }
    +126
    +127        save_bindings_atomic(BINDINGS_PATH, bindings)
    +128        logger.info(f"Snapshot bindings successfully written to {BINDINGS_PATH} under key {run_id}")
    +129        print(f"Snapshot bindings successfully written to {BINDINGS_PATH} under key {run_id}")
    +130        return 0
    +131
    +132    except Exception as e:
    +133        logger.exception(f"Failed to generate snapshot bindings: {e}")
    +134        return 1
    +
    + + +

    Generate snapshot bindings and update bindings.yaml.

    + +

    Returns: + 0 on success, positive integer on failure.

    +
    + + +
    +
    + + \ No newline at end of file diff --git a/docs/api/scripts/search.js b/docs/api/scripts/search.js index 1ad37826..9e560740 100644 --- a/docs/api/scripts/search.js +++ b/docs/api/scripts/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();oA package for non-pipeline CLI scripts.

    \n"}, "scripts.generators": {"fullname": "scripts.generators", "modulename": "scripts.generators", "kind": "module", "doc": "

    A package for generator scripts.

    \n"}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"fullname": "scripts.generators.generate_cols_for_row_id_fingerprint", "modulename": "scripts.generators.generate_cols_for_row_id_fingerprint", "kind": "module", "doc": "

    Utility script to generate row-id column fingerprint values.

    \n\n

    The script computes and logs a deterministic fingerprint for the configured\ncols_for_row_id sequence used in processed data row identifier logic.

    \n"}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"fullname": "scripts.generators.generate_cols_for_row_id_fingerprint.logger", "modulename": "scripts.generators.generate_cols_for_row_id_fingerprint", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger scripts.generators.generate_cols_for_row_id_fingerprint (WARNING)>"}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"fullname": "scripts.generators.generate_cols_for_row_id_fingerprint.main", "modulename": "scripts.generators.generate_cols_for_row_id_fingerprint", "qualname": "main", "kind": "function", "doc": "

    Compute and log fingerprint for row-id column definitions.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Fingerprint stability depends on the canonical row-id column definition\n source used by processed data generation.

    \n\n

    Side Effects:\n Writes generation logs to a run-specific script log directory.

    \n\n

    Examples:\n python -m scripts.generators.generate_cols_for_row_id_fingerprint

    \n", "signature": "() -> int:", "funcdef": "def"}, "scripts.generators.generate_operator_hash": {"fullname": "scripts.generators.generate_operator_hash", "modulename": "scripts.generators.generate_operator_hash", "kind": "module", "doc": "

    Utility CLI to generate feature operator hash identifiers.

    \n\n

    This script validates selected operator names and logs the deterministic hash\nused by the feature-freezing subsystem.

    \n"}, "scripts.generators.generate_operator_hash.logger": {"fullname": "scripts.generators.generate_operator_hash.logger", "modulename": "scripts.generators.generate_operator_hash", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger scripts.generators.generate_operator_hash (WARNING)>"}, "scripts.generators.generate_operator_hash.ALLOWED": {"fullname": "scripts.generators.generate_operator_hash.ALLOWED", "modulename": "scripts.generators.generate_operator_hash", "qualname": "ALLOWED", "kind": "variable", "doc": "

    \n", "default_value": "{'TotalStay', 'ArrivalSeason', 'AdrPerPerson', 'ArrivalDate'}"}, "scripts.generators.generate_operator_hash.parse_args": {"fullname": "scripts.generators.generate_operator_hash.parse_args", "modulename": "scripts.generators.generate_operator_hash", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for operator hash generation.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "():", "funcdef": "def"}, "scripts.generators.generate_operator_hash.main": {"fullname": "scripts.generators.generate_operator_hash.main", "modulename": "scripts.generators.generate_operator_hash", "qualname": "main", "kind": "function", "doc": "

    Generate and log a hash for the selected feature operators.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Operator ordering affects hash output only according to downstream hash\n implementation semantics.

    \n\n

    Side Effects:\n Writes generation logs to a run-specific script log directory.

    \n\n

    Examples:\n python -m scripts.generators.generate_operator_hash --operators ArrivalDate TotalStay

    \n", "signature": "() -> int:", "funcdef": "def"}, "scripts.quality": {"fullname": "scripts.quality", "modulename": "scripts.quality", "kind": "module", "doc": "

    A package for quality scripts.

    \n"}, "scripts.quality.check_import_layers": {"fullname": "scripts.quality.check_import_layers", "modulename": "scripts.quality.check_import_layers", "kind": "module", "doc": "

    Check import layers and dependencies across the codebase to enforce architectural boundaries.

    \n\n

    Rules:\n1) ml is reusable business/domain logic only, should not depend on pipelines\n2) registries package internals should be imported via package exports only\n Allowed:\n # from ml.registries.catalogs import X\n # from ml.registries.factories import Y\n # from ml.registries import Z\nDisallowed deep imports:\n # from ml.registries.catalogs.some_module import X\n # from ml.registries.factories.some_module import Y\n3) catalogs and factories should stay independent (no cross-imports)\n4) configs is declarative yaml only, should not import any code (including other configs), no executable code allowed - only yaml files

    \n"}, "scripts.quality.check_import_layers.ROOTS": {"fullname": "scripts.quality.check_import_layers.ROOTS", "modulename": "scripts.quality.check_import_layers", "qualname": "ROOTS", "kind": "variable", "doc": "

    \n", "default_value": "[WindowsPath('ml'), WindowsPath('pipelines'), WindowsPath('scripts')]"}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"fullname": "scripts.quality.check_import_layers.CONFIGS_ROOT", "modulename": "scripts.quality.check_import_layers", "qualname": "CONFIGS_ROOT", "kind": "variable", "doc": "

    \n", "default_value": "WindowsPath('configs')"}, "scripts.quality.check_import_layers.IMPORT_RE": {"fullname": "scripts.quality.check_import_layers.IMPORT_RE", "modulename": "scripts.quality.check_import_layers", "qualname": "IMPORT_RE", "kind": "variable", "doc": "

    \n", "default_value": "re.compile('^\\\\s*(from|import)\\\\s+([a-zA-Z0-9_\\\\.]+)')"}, "scripts.quality.check_import_layers.collect_violations": {"fullname": "scripts.quality.check_import_layers.collect_violations", "modulename": "scripts.quality.check_import_layers", "qualname": "collect_violations", "kind": "function", "doc": "

    Scan project roots and return all import-layer violations.

    \n", "signature": "() -> list[str]:", "funcdef": "def"}, "scripts.quality.check_import_layers.main": {"fullname": "scripts.quality.check_import_layers.main", "modulename": "scripts.quality.check_import_layers", "qualname": "main", "kind": "function", "doc": "

    Run import-layer checks and report violations.

    \n\n

    Returns:\n int: Exit code, where 0 means success and 1 means violations found.

    \n", "signature": "() -> int:", "funcdef": "def"}, "scripts.quality.check_naming_conventions": {"fullname": "scripts.quality.check_naming_conventions", "modulename": "scripts.quality.check_naming_conventions", "kind": "module", "doc": "

    Check naming conventions across the codebase.

    \n"}, "scripts.quality.check_naming_conventions.ROOTS": {"fullname": "scripts.quality.check_naming_conventions.ROOTS", "modulename": "scripts.quality.check_naming_conventions", "qualname": "ROOTS", "kind": "variable", "doc": "

    \n", "default_value": "[WindowsPath('ml'), WindowsPath('pipelines'), WindowsPath('scripts')]"}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"fullname": "scripts.quality.check_naming_conventions.SNAKE_CASE_RE", "modulename": "scripts.quality.check_naming_conventions", "qualname": "SNAKE_CASE_RE", "kind": "variable", "doc": "

    \n", "default_value": "re.compile('^[a-z][a-z0-9_]*$')"}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"fullname": "scripts.quality.check_naming_conventions.PASCAL_CASE_RE", "modulename": "scripts.quality.check_naming_conventions", "qualname": "PASCAL_CASE_RE", "kind": "variable", "doc": "

    \n", "default_value": "re.compile('^[A-Z][a-zA-Z0-9]*$')"}, "scripts.quality.check_naming_conventions.MODULE_RE": {"fullname": "scripts.quality.check_naming_conventions.MODULE_RE", "modulename": "scripts.quality.check_naming_conventions", "qualname": "MODULE_RE", "kind": "variable", "doc": "

    \n", "default_value": "re.compile('^[a-z][a-z0-9_]*\\\\.py$')"}, "scripts.quality.check_naming_conventions.violations": {"fullname": "scripts.quality.check_naming_conventions.violations", "modulename": "scripts.quality.check_naming_conventions", "qualname": "violations", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "[]"}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"fullname": "scripts.quality.check_naming_conventions.IGNORE_FOLDERS", "modulename": "scripts.quality.check_naming_conventions", "qualname": "IGNORE_FOLDERS", "kind": "variable", "doc": "

    \n", "default_value": "[WindowsPath('tests')]"}, "scripts.quality.check_naming_conventions.is_ignored": {"fullname": "scripts.quality.check_naming_conventions.is_ignored", "modulename": "scripts.quality.check_naming_conventions", "qualname": "is_ignored", "kind": "function", "doc": "

    Check if a file is inside an ignored folder.

    \n\n

    Args:\n file (Path): The path to the file to check.

    \n\n

    Returns:\n bool: True if the file is in an ignored folder, False otherwise.

    \n", "signature": "(file: pathlib.Path) -> bool:", "funcdef": "def"}, "scripts.quality.check_naming_conventions.check_module_name": {"fullname": "scripts.quality.check_naming_conventions.check_module_name", "modulename": "scripts.quality.check_naming_conventions", "qualname": "check_module_name", "kind": "function", "doc": "

    Check if the module name (filename) follows snake_case convention.

    \n\n

    Args:\n file (Path): The path to the Python file to check.

    \n\n

    Returns:\n None: This function does not return a value but appends any naming violations to the global 'violations' list.

    \n", "signature": "(file: pathlib.Path):", "funcdef": "def"}, "scripts.quality.check_naming_conventions.check_ast": {"fullname": "scripts.quality.check_naming_conventions.check_ast", "modulename": "scripts.quality.check_naming_conventions", "qualname": "check_ast", "kind": "function", "doc": "

    Parse the file and check function and class naming conventions.

    \n\n

    Args:\n file (Path): The path to the Python file to check.

    \n\n

    Returns:\n None: This function does not return a value but appends any naming violations to the global 'violations' list.

    \n", "signature": "(file: pathlib.Path):", "funcdef": "def"}, "scripts.quality.check_naming_conventions.main": {"fullname": "scripts.quality.check_naming_conventions.main", "modulename": "scripts.quality.check_naming_conventions", "qualname": "main", "kind": "function", "doc": "

    Main function to check naming conventions across the codebase.

    \n\n

    This script checks that:

    \n\n
      \n
    • Python module filenames are in snake_case.
    • \n
    • Function names are in snake_case (with exceptions for private and special methods).
    • \n
    • Class names are in PascalCase (with exceptions for private classes).\nIt traverses the specified directories, parses Python files, and collects any naming violations.\nFinally, it reports all violations and exits with an appropriate status code.
    • \n
    \n\n

    Returns:\n None: This function does not return a value but exits the program with a status code.

    \n", "signature": "():", "funcdef": "def"}}, "docInfo": {"scripts": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "scripts.generators": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 40}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 74}, "scripts.generators.generate_operator_hash": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 31}, "scripts.generators.generate_operator_hash.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_operator_hash.ALLOWED": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_operator_hash.parse_args": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 20}, "scripts.generators.generate_operator_hash.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 71}, "scripts.quality": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "scripts.quality.check_import_layers": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 114}, "scripts.quality.check_import_layers.ROOTS": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_import_layers.IMPORT_RE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_import_layers.collect_violations": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 12}, "scripts.quality.check_import_layers.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 30}, "scripts.quality.check_naming_conventions": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "scripts.quality.check_naming_conventions.ROOTS": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.MODULE_RE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.violations": {"qualname": 1, "fullname": 6, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.is_ignored": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 42}, "scripts.quality.check_naming_conventions.check_module_name": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 50}, "scripts.quality.check_naming_conventions.check_ast": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 50}, "scripts.quality.check_naming_conventions.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 106}}, "length": 28, "save": true}, "index": {"qualname": {"root": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1, "d": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}}, "df": 2}}}}}}}}}}, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 28}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 9}}}, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 8}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 11}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 17}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 6}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1, "d": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 6}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 5}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 5}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.quality": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 18}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}}, "df": 2}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 11}}}, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"docs": {"scripts.quality.check_naming_conventions.violations": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"scripts.quality.check_naming_conventions.violations": {"tf": 1}}, "df": 1}}}}}}}}}}, "default_value": {"root": {"9": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4}, "docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.logger": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 12, "l": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "|": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}, "e": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.quality.check_import_layers.ROOTS": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 4}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 1}}}}, "x": {"2": {"7": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 2.8284271247461903}, "scripts.quality.check_import_layers.ROOTS": {"tf": 2.449489742783178}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 2.449489742783178}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1.4142135623730951}}, "df": 9}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 2}}}}}}}}, "y": {"docs": {"scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 1}}, "z": {"0": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0, "a": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 2}, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 3}}}}}}, "signature": {"root": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 3}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 2.6457513110645907}, "scripts.generators.generate_operator_hash.main": {"tf": 3}, "scripts.quality.check_import_layers.collect_violations": {"tf": 3.7416573867739413}, "scripts.quality.check_import_layers.main": {"tf": 3}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 4.47213595499958}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 4.242640687119285}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 4.242640687119285}, "scripts.quality.check_naming_conventions.main": {"tf": 2.6457513110645907}}, "df": 9, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 3}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}}}, "bases": {"root": {"docs": {}, "df": 0}}, "doc": {"root": {"0": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3}, "1": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 2}, "2": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}, "3": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}, "4": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}, "docs": {"scripts": {"tf": 1.7320508075688772}, "scripts.generators": {"tf": 1.7320508075688772}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 2.8284271247461903}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1.7320508075688772}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 4}, "scripts.generators.generate_operator_hash": {"tf": 2.449489742783178}, "scripts.generators.generate_operator_hash.logger": {"tf": 1.7320508075688772}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1.7320508075688772}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 2.449489742783178}, "scripts.generators.generate_operator_hash.main": {"tf": 4}, "scripts.quality": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers": {"tf": 3.1622776601683795}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.main": {"tf": 3.1622776601683795}, "scripts.quality.check_naming_conventions": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.violations": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 3.1622776601683795}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 3.1622776601683795}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 3.1622776601683795}, "scripts.quality.check_naming_conventions.main": {"tf": 4.58257569495584}}, "df": 28, "a": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}, "scripts.quality": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 10, "n": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 9}, "y": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 1}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.quality": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 2, "d": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}}, "df": 3}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"scripts": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 2}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 5}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 8}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 2}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"scripts.quality.check_import_layers": {"tf": 2.23606797749979}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 3}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1, "n": {"docs": {"scripts": {"tf": 1}}, "df": 1, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}, "t": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 2, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"scripts": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.4142135623730951}}, "df": 2}}}, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 2}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 5, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 6, "s": {"docs": {"scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 5, "s": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality": {"tf": 1}}, "df": 5}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 2}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}}, "df": 4}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 9, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 2}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 2}, "scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 10}, "i": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 4}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.7320508075688772}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.7320508075688772}}, "df": 2}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 8}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 2.449489742783178}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.7320508075688772}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 3, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers": {"tf": 2.6457513110645907}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}}, "df": 2}, "f": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "t": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "c": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 2, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 2}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 2}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 2}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}, "m": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2, "l": {"docs": {"scripts.quality.check_import_layers": {"tf": 2.449489742783178}}, "df": 1}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.main": {"tf": 1.4142135623730951}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 2}}, "df": 3}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.quality": {"tf": 1}}, "df": 1}}}}}}}, "x": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}, "y": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}}}}, "z": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"scripts": {"fullname": "scripts", "modulename": "scripts", "kind": "module", "doc": "

    A package for non-pipeline CLI scripts.

    \n"}, "scripts.generators": {"fullname": "scripts.generators", "modulename": "scripts.generators", "kind": "module", "doc": "

    A package for generator scripts.

    \n"}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"fullname": "scripts.generators.generate_cols_for_row_id_fingerprint", "modulename": "scripts.generators.generate_cols_for_row_id_fingerprint", "kind": "module", "doc": "

    Utility script to generate row-id column fingerprint values.

    \n\n

    The script computes and logs a deterministic fingerprint for the configured\ncols_for_row_id sequence used in processed data row identifier logic.

    \n"}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"fullname": "scripts.generators.generate_cols_for_row_id_fingerprint.logger", "modulename": "scripts.generators.generate_cols_for_row_id_fingerprint", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger scripts.generators.generate_cols_for_row_id_fingerprint (WARNING)>"}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"fullname": "scripts.generators.generate_cols_for_row_id_fingerprint.main", "modulename": "scripts.generators.generate_cols_for_row_id_fingerprint", "qualname": "main", "kind": "function", "doc": "

    Compute and log fingerprint for row-id column definitions.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Fingerprint stability depends on the canonical row-id column definition\n source used by processed data generation.

    \n\n

    Side Effects:\n Writes generation logs to a run-specific script log directory.

    \n\n

    Examples:\n python -m scripts.generators.generate_cols_for_row_id_fingerprint

    \n", "signature": "() -> int:", "funcdef": "def"}, "scripts.generators.generate_fake_data": {"fullname": "scripts.generators.generate_fake_data", "modulename": "scripts.generators.generate_fake_data", "kind": "module", "doc": "

    Utility CLI to generate synthetic tabular data based on an existing dataset snapshot.

    \n\n

    This script loads a dataset snapshot, trains a statistical synthesizer model,\nand generates synthetic rows that resemble the original data distribution.

    \n\n

    Enhancements:\n - Temporal continuity (supports datetime + decomposed date columns)\n - Schema enforcement (dtype + categorical alignment)\n - Constraint enforcement for logical consistency\n - Outlier clipping for stability

    \n\n

    Examples:\n python -m scripts.generators.generate_fake_data --data hotel_bookings --version v1 --num_rows 5000 --include_old true

    \n"}, "scripts.generators.generate_fake_data.logger": {"fullname": "scripts.generators.generate_fake_data.logger", "modulename": "scripts.generators.generate_fake_data", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger scripts.generators.generate_fake_data (WARNING)>"}, "scripts.generators.generate_fake_data.MONTH_MAP": {"fullname": "scripts.generators.generate_fake_data.MONTH_MAP", "modulename": "scripts.generators.generate_fake_data", "qualname": "MONTH_MAP", "kind": "variable", "doc": "

    \n", "default_value": "{'January': 1, 'February': 2, 'March': 3, 'April': 4, 'May': 5, 'June': 6, 'July': 7, 'August': 8, 'September': 9, 'October': 10, 'November': 11, 'December': 12}"}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"fullname": "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP", "modulename": "scripts.generators.generate_fake_data", "qualname": "REVERSE_MONTH_MAP", "kind": "variable", "doc": "

    \n", "default_value": "{1: 'January', 2: 'February', 3: 'March', 4: 'April', 5: 'May', 6: 'June', 7: 'July', 8: 'August', 9: 'September', 10: 'October', 11: 'November', 12: 'December'}"}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"fullname": "scripts.generators.generate_fake_data.FAKE_COLUMNS", "modulename": "scripts.generators.generate_fake_data", "qualname": "FAKE_COLUMNS", "kind": "variable", "doc": "

    \n", "default_value": "['name', 'email', 'phone-number', 'credit_card', 'reservation_status_date']"}, "scripts.generators.generate_fake_data.parse_args": {"fullname": "scripts.generators.generate_fake_data.parse_args", "modulename": "scripts.generators.generate_fake_data", "qualname": "parse_args", "kind": "function", "doc": "

    Parse CLI arguments.

    \n", "signature": "():", "funcdef": "def"}, "scripts.generators.generate_fake_data.sanitize": {"fullname": "scripts.generators.generate_fake_data.sanitize", "modulename": "scripts.generators.generate_fake_data", "qualname": "sanitize", "kind": "function", "doc": "

    Recursively replace NaN with None for JSON serialization.

    \n", "signature": "(obj):", "funcdef": "def"}, "scripts.generators.generate_fake_data.fake": {"fullname": "scripts.generators.generate_fake_data.fake", "modulename": "scripts.generators.generate_fake_data", "qualname": "fake", "kind": "variable", "doc": "

    \n", "default_value": "<faker.proxy.Faker object>"}, "scripts.generators.generate_fake_data.main": {"fullname": "scripts.generators.generate_fake_data.main", "modulename": "scripts.generators.generate_fake_data", "qualname": "main", "kind": "function", "doc": "

    Main execution.

    \n", "signature": "() -> int:", "funcdef": "def"}, "scripts.generators.generate_operator_hash": {"fullname": "scripts.generators.generate_operator_hash", "modulename": "scripts.generators.generate_operator_hash", "kind": "module", "doc": "

    Utility CLI to generate feature operator hash identifiers.

    \n\n

    This script validates selected operator names and logs the deterministic hash\nused by the feature-freezing subsystem.

    \n"}, "scripts.generators.generate_operator_hash.logger": {"fullname": "scripts.generators.generate_operator_hash.logger", "modulename": "scripts.generators.generate_operator_hash", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger scripts.generators.generate_operator_hash (WARNING)>"}, "scripts.generators.generate_operator_hash.ALLOWED": {"fullname": "scripts.generators.generate_operator_hash.ALLOWED", "modulename": "scripts.generators.generate_operator_hash", "qualname": "ALLOWED", "kind": "variable", "doc": "

    \n", "default_value": "{'TotalStay', 'AdrPerPerson', 'ArrivalSeason', 'ArrivalDate'}"}, "scripts.generators.generate_operator_hash.parse_args": {"fullname": "scripts.generators.generate_operator_hash.parse_args", "modulename": "scripts.generators.generate_operator_hash", "qualname": "parse_args", "kind": "function", "doc": "

    Parse command-line arguments for operator hash generation.

    \n\n

    Returns:\n argparse.Namespace: Parsed CLI arguments.

    \n", "signature": "():", "funcdef": "def"}, "scripts.generators.generate_operator_hash.main": {"fullname": "scripts.generators.generate_operator_hash.main", "modulename": "scripts.generators.generate_operator_hash", "qualname": "main", "kind": "function", "doc": "

    Generate and log a hash for the selected feature operators.

    \n\n

    Returns:\n int: Process exit code where 0 indicates success.

    \n\n

    Notes:\n Operator ordering affects hash output only according to downstream hash\n implementation semantics.

    \n\n

    Side Effects:\n Writes generation logs to a run-specific script log directory.

    \n\n

    Examples:\n python -m scripts.generators.generate_operator_hash --operators ArrivalDate TotalStay

    \n", "signature": "() -> int:", "funcdef": "def"}, "scripts.generators.generate_snapshot_binding": {"fullname": "scripts.generators.generate_snapshot_binding", "modulename": "scripts.generators.generate_snapshot_binding", "kind": "module", "doc": "

    Utility CLI to generate snapshot bindings for datasets and feature sets.

    \n\n

    This script scans the processed datasets and feature sets to find the latest snapshots,\nand then creates a timestamped binding entry in the snapshot bindings registry YAML.

    \n"}, "scripts.generators.generate_snapshot_binding.logger": {"fullname": "scripts.generators.generate_snapshot_binding.logger", "modulename": "scripts.generators.generate_snapshot_binding", "qualname": "logger", "kind": "variable", "doc": "

    \n", "default_value": "<Logger scripts.generators.generate_snapshot_binding (WARNING)>"}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"fullname": "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR", "modulename": "scripts.generators.generate_snapshot_binding", "qualname": "DATA_PROCESSED_DIR", "kind": "variable", "doc": "

    \n", "default_value": "WindowsPath('data/processed')"}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"fullname": "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR", "modulename": "scripts.generators.generate_snapshot_binding", "qualname": "FEATURE_STORE_DIR", "kind": "variable", "doc": "

    \n", "default_value": "WindowsPath('feature_store')"}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"fullname": "scripts.generators.generate_snapshot_binding.BINDINGS_PATH", "modulename": "scripts.generators.generate_snapshot_binding", "qualname": "BINDINGS_PATH", "kind": "variable", "doc": "

    \n", "default_value": "WindowsPath('configs/snapshot_bindings_registry/bindings.yaml')"}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"fullname": "scripts.generators.generate_snapshot_binding.scan_latest_snapshots", "modulename": "scripts.generators.generate_snapshot_binding", "qualname": "scan_latest_snapshots", "kind": "function", "doc": "

    Scan a base directory for latest snapshots.

    \n\n

    Args:\n base_dir: The base directory to scan (e.g., data/processed or feature_store

    \n\n

    Returns:\n dict[name][version] = snapshot_name (str)

    \n", "signature": "(base_dir: pathlib.Path) -> dict[str, dict[str, str]]:", "funcdef": "def"}, "scripts.generators.generate_snapshot_binding.load_bindings": {"fullname": "scripts.generators.generate_snapshot_binding.load_bindings", "modulename": "scripts.generators.generate_snapshot_binding", "qualname": "load_bindings", "kind": "function", "doc": "

    Load existing bindings YAML or create an empty dict.

    \n\n

    Args:\n path: The path to the bindings YAML file.

    \n\n

    Returns:\n The loaded bindings dictionary.

    \n", "signature": "(path: pathlib.Path) -> dict:", "funcdef": "def"}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"fullname": "scripts.generators.generate_snapshot_binding.save_bindings_atomic", "modulename": "scripts.generators.generate_snapshot_binding", "qualname": "save_bindings_atomic", "kind": "function", "doc": "

    Save bindings dictionary to YAML atomically.

    \n\n

    Args:\n path: The path to the bindings YAML file.\n data: The bindings dictionary to save.

    \n", "signature": "(path: pathlib.Path, data: dict):", "funcdef": "def"}, "scripts.generators.generate_snapshot_binding.main": {"fullname": "scripts.generators.generate_snapshot_binding.main", "modulename": "scripts.generators.generate_snapshot_binding", "qualname": "main", "kind": "function", "doc": "

    Generate snapshot bindings and update bindings.yaml.

    \n\n

    Returns:\n 0 on success, positive integer on failure.

    \n", "signature": "() -> int:", "funcdef": "def"}, "scripts.quality": {"fullname": "scripts.quality", "modulename": "scripts.quality", "kind": "module", "doc": "

    A package for quality scripts.

    \n"}, "scripts.quality.check_import_layers": {"fullname": "scripts.quality.check_import_layers", "modulename": "scripts.quality.check_import_layers", "kind": "module", "doc": "

    Check import layers and dependencies across the codebase to enforce architectural boundaries.

    \n\n

    Rules:\n1) ml is reusable business/domain logic only, should not depend on pipelines\n2) registries package internals should be imported via package exports only\n Allowed:\n # from ml.registries.catalogs import X\n # from ml.registries.factories import Y\n # from ml.registries import Z\nDisallowed deep imports:\n # from ml.registries.catalogs.some_module import X\n # from ml.registries.factories.some_module import Y\n3) catalogs and factories should stay independent (no cross-imports)\n4) configs is declarative yaml only, should not import any code (including other configs), no executable code allowed - only yaml files

    \n"}, "scripts.quality.check_import_layers.ROOTS": {"fullname": "scripts.quality.check_import_layers.ROOTS", "modulename": "scripts.quality.check_import_layers", "qualname": "ROOTS", "kind": "variable", "doc": "

    \n", "default_value": "[WindowsPath('ml'), WindowsPath('pipelines'), WindowsPath('scripts')]"}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"fullname": "scripts.quality.check_import_layers.CONFIGS_ROOT", "modulename": "scripts.quality.check_import_layers", "qualname": "CONFIGS_ROOT", "kind": "variable", "doc": "

    \n", "default_value": "WindowsPath('configs')"}, "scripts.quality.check_import_layers.IMPORT_RE": {"fullname": "scripts.quality.check_import_layers.IMPORT_RE", "modulename": "scripts.quality.check_import_layers", "qualname": "IMPORT_RE", "kind": "variable", "doc": "

    \n", "default_value": "re.compile('^\\\\s*(from|import)\\\\s+([a-zA-Z0-9_\\\\.]+)')"}, "scripts.quality.check_import_layers.collect_violations": {"fullname": "scripts.quality.check_import_layers.collect_violations", "modulename": "scripts.quality.check_import_layers", "qualname": "collect_violations", "kind": "function", "doc": "

    Scan project roots and return all import-layer violations.

    \n", "signature": "() -> list[str]:", "funcdef": "def"}, "scripts.quality.check_import_layers.main": {"fullname": "scripts.quality.check_import_layers.main", "modulename": "scripts.quality.check_import_layers", "qualname": "main", "kind": "function", "doc": "

    Run import-layer checks and report violations.

    \n\n

    Returns:\n int: Exit code, where 0 means success and 1 means violations found.

    \n", "signature": "() -> int:", "funcdef": "def"}, "scripts.quality.check_naming_conventions": {"fullname": "scripts.quality.check_naming_conventions", "modulename": "scripts.quality.check_naming_conventions", "kind": "module", "doc": "

    Check naming conventions across the codebase.

    \n"}, "scripts.quality.check_naming_conventions.ROOTS": {"fullname": "scripts.quality.check_naming_conventions.ROOTS", "modulename": "scripts.quality.check_naming_conventions", "qualname": "ROOTS", "kind": "variable", "doc": "

    \n", "default_value": "[WindowsPath('ml'), WindowsPath('pipelines'), WindowsPath('scripts')]"}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"fullname": "scripts.quality.check_naming_conventions.SNAKE_CASE_RE", "modulename": "scripts.quality.check_naming_conventions", "qualname": "SNAKE_CASE_RE", "kind": "variable", "doc": "

    \n", "default_value": "re.compile('^[a-z][a-z0-9_]*$')"}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"fullname": "scripts.quality.check_naming_conventions.PASCAL_CASE_RE", "modulename": "scripts.quality.check_naming_conventions", "qualname": "PASCAL_CASE_RE", "kind": "variable", "doc": "

    \n", "default_value": "re.compile('^[A-Z][a-zA-Z0-9]*$')"}, "scripts.quality.check_naming_conventions.MODULE_RE": {"fullname": "scripts.quality.check_naming_conventions.MODULE_RE", "modulename": "scripts.quality.check_naming_conventions", "qualname": "MODULE_RE", "kind": "variable", "doc": "

    \n", "default_value": "re.compile('^[a-z][a-z0-9_]*\\\\.py$')"}, "scripts.quality.check_naming_conventions.violations": {"fullname": "scripts.quality.check_naming_conventions.violations", "modulename": "scripts.quality.check_naming_conventions", "qualname": "violations", "kind": "variable", "doc": "

    \n", "annotation": ": list[str]", "default_value": "[]"}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"fullname": "scripts.quality.check_naming_conventions.IGNORE_FOLDERS", "modulename": "scripts.quality.check_naming_conventions", "qualname": "IGNORE_FOLDERS", "kind": "variable", "doc": "

    \n", "default_value": "[WindowsPath('tests')]"}, "scripts.quality.check_naming_conventions.is_ignored": {"fullname": "scripts.quality.check_naming_conventions.is_ignored", "modulename": "scripts.quality.check_naming_conventions", "qualname": "is_ignored", "kind": "function", "doc": "

    Check if a file is inside an ignored folder.

    \n\n

    Args:\n file (Path): The path to the file to check.

    \n\n

    Returns:\n bool: True if the file is in an ignored folder, False otherwise.

    \n", "signature": "(file: pathlib.Path) -> bool:", "funcdef": "def"}, "scripts.quality.check_naming_conventions.check_module_name": {"fullname": "scripts.quality.check_naming_conventions.check_module_name", "modulename": "scripts.quality.check_naming_conventions", "qualname": "check_module_name", "kind": "function", "doc": "

    Check if the module name (filename) follows snake_case convention.

    \n\n

    Args:\n file (Path): The path to the Python file to check.

    \n\n

    Returns:\n None: This function does not return a value but appends any naming violations to the global 'violations' list.

    \n", "signature": "(file: pathlib.Path):", "funcdef": "def"}, "scripts.quality.check_naming_conventions.check_ast": {"fullname": "scripts.quality.check_naming_conventions.check_ast", "modulename": "scripts.quality.check_naming_conventions", "qualname": "check_ast", "kind": "function", "doc": "

    Parse the file and check function and class naming conventions.

    \n\n

    Args:\n file (Path): The path to the Python file to check.

    \n\n

    Returns:\n None: This function does not return a value but appends any naming violations to the global 'violations' list.

    \n", "signature": "(file: pathlib.Path):", "funcdef": "def"}, "scripts.quality.check_naming_conventions.main": {"fullname": "scripts.quality.check_naming_conventions.main", "modulename": "scripts.quality.check_naming_conventions", "qualname": "main", "kind": "function", "doc": "

    Main function to check naming conventions across the codebase.

    \n\n

    This script checks that:

    \n\n
      \n
    • Python module filenames are in snake_case.
    • \n
    • Function names are in snake_case (with exceptions for private and special methods).
    • \n
    • Class names are in PascalCase (with exceptions for private classes).\nIt traverses the specified directories, parses Python files, and collects any naming violations.\nFinally, it reports all violations and exits with an appropriate status code.
    • \n
    \n\n

    Returns:\n None: This function does not return a value but exits the program with a status code.

    \n", "signature": "():", "funcdef": "def"}}, "docInfo": {"scripts": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "scripts.generators": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"qualname": 0, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 40}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"qualname": 1, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 74}, "scripts.generators.generate_fake_data": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 87}, "scripts.generators.generate_fake_data.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_fake_data.MONTH_MAP": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 61, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 49, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 21, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_fake_data.parse_args": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 6}, "scripts.generators.generate_fake_data.sanitize": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "scripts.generators.generate_fake_data.fake": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_fake_data.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 5}, "scripts.generators.generate_operator_hash": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 31}, "scripts.generators.generate_operator_hash.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_operator_hash.ALLOWED": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_operator_hash.parse_args": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 20}, "scripts.generators.generate_operator_hash.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 71}, "scripts.generators.generate_snapshot_binding": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 44}, "scripts.generators.generate_snapshot_binding.logger": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 34}, "scripts.generators.generate_snapshot_binding.load_bindings": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 32}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 27}, "scripts.generators.generate_snapshot_binding.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 21}, "scripts.quality": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "scripts.quality.check_import_layers": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 114}, "scripts.quality.check_import_layers.ROOTS": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_import_layers.IMPORT_RE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 14, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_import_layers.collect_violations": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 12}, "scripts.quality.check_import_layers.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 30}, "scripts.quality.check_naming_conventions": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "scripts.quality.check_naming_conventions.ROOTS": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 13, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.MODULE_RE": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.violations": {"qualname": 1, "fullname": 6, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "scripts.quality.check_naming_conventions.is_ignored": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 42}, "scripts.quality.check_naming_conventions.check_module_name": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 50}, "scripts.quality.check_naming_conventions.check_ast": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 50}, "scripts.quality.check_naming_conventions.main": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 106}}, "length": 46, "save": true}, "index": {"qualname": {"root": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 6}}, "p": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}, "scripts.generators.generate_fake_data.fake": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 3}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1, "d": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}}, "df": 2}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}, "scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_fake_data.sanitize": {"tf": 1}, "scripts.generators.generate_fake_data.fake": {"tf": 1}, "scripts.generators.generate_fake_data.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}, "scripts.quality": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 46}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 9, "s": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}, "scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_fake_data.sanitize": {"tf": 1}, "scripts.generators.generate_fake_data.fake": {"tf": 1}, "scripts.generators.generate_fake_data.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 27}}}, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}, "scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_fake_data.sanitize": {"tf": 1}, "scripts.generators.generate_fake_data.fake": {"tf": 1}, "scripts.generators.generate_fake_data.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 26}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 11}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 17}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}}}}}}}}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1.4142135623730951}, "scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_fake_data.sanitize": {"tf": 1}, "scripts.generators.generate_fake_data.fake": {"tf": 1.4142135623730951}, "scripts.generators.generate_fake_data.main": {"tf": 1}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 3}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 6}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1, "d": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 6}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 6}}, "p": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}, "scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_fake_data.sanitize": {"tf": 1}, "scripts.generators.generate_fake_data.fake": {"tf": 1}, "scripts.generators.generate_fake_data.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}}, "df": 10}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 5}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 5}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 9, "s": {"docs": {"scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 3}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.quality": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 18}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}}, "df": 2}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 11}}}, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"docs": {"scripts.quality.check_naming_conventions.violations": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"scripts.quality.check_naming_conventions.violations": {"tf": 1}}, "df": 1}}}}}}}}}}, "default_value": {"root": {"1": {"0": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "1": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "2": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "2": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "3": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "4": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "5": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "6": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "7": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "8": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}, "9": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 6}, "docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1.4142135623730951}, "scripts.generators.generate_fake_data.logger": {"tf": 1.4142135623730951}, "scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 3.605551275463989}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1.4142135623730951}, "scripts.generators.generate_fake_data.fake": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.logger": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.violations": {"tf": 1}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 21, "l": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_fake_data.fake": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 5}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 6}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_fake_data.fake": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 5}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.logger": {"tf": 1}}, "df": 1, "r": {"docs": {"scripts.generators.generate_fake_data.fake": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "|": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}, "e": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1}, "scripts.generators.generate_fake_data.logger": {"tf": 1}, "scripts.generators.generate_operator_hash.logger": {"tf": 1}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 7}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"scripts.generators.generate_fake_data.logger": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}}}}}}, "x": {"2": {"7": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 4.898979485566356}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 4.898979485566356}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 3.1622776601683795}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 2.8284271247461903}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.ROOTS": {"tf": 2.449489742783178}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 2.449489742783178}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1.4142135623730951}}, "df": 15}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "j": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}, "y": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}, "l": {"docs": {"scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 2}}, "a": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_fake_data.fake": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_fake_data.fake": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.ROOTS": {"tf": 1}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1}}, "df": 2}}}}}}}}, "y": {"docs": {"scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_operator_hash.logger": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_snapshot_binding.logger": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1}}, "df": 1}}}}, "z": {"0": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0, "a": {"docs": {"scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}}, "df": 2}, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {"scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1}}, "df": 3}}}}}}, "signature": {"root": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 3}, "scripts.generators.generate_fake_data.parse_args": {"tf": 2.6457513110645907}, "scripts.generators.generate_fake_data.sanitize": {"tf": 3.1622776601683795}, "scripts.generators.generate_fake_data.main": {"tf": 3}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 2.6457513110645907}, "scripts.generators.generate_operator_hash.main": {"tf": 3}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 6.164414002968976}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 4.47213595499958}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 5.0990195135927845}, "scripts.generators.generate_snapshot_binding.main": {"tf": 3}, "scripts.quality.check_import_layers.collect_violations": {"tf": 3.7416573867739413}, "scripts.quality.check_import_layers.main": {"tf": 3}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 4.47213595499958}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 4.242640687119285}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 4.242640687119285}, "scripts.quality.check_naming_conventions.main": {"tf": 2.6457513110645907}}, "df": 16, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 6, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 6}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 3}}}}}}, "bases": {"root": {"docs": {}, "df": 0}}, "doc": {"root": {"0": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 4}, "1": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 2}, "2": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}, "3": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}, "4": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}, "5": {"0": {"0": {"0": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"scripts": {"tf": 1.7320508075688772}, "scripts.generators": {"tf": 1.7320508075688772}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 2.8284271247461903}, "scripts.generators.generate_cols_for_row_id_fingerprint.logger": {"tf": 1.7320508075688772}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 4}, "scripts.generators.generate_fake_data": {"tf": 3.4641016151377544}, "scripts.generators.generate_fake_data.logger": {"tf": 1.7320508075688772}, "scripts.generators.generate_fake_data.MONTH_MAP": {"tf": 1.7320508075688772}, "scripts.generators.generate_fake_data.REVERSE_MONTH_MAP": {"tf": 1.7320508075688772}, "scripts.generators.generate_fake_data.FAKE_COLUMNS": {"tf": 1.7320508075688772}, "scripts.generators.generate_fake_data.parse_args": {"tf": 1.7320508075688772}, "scripts.generators.generate_fake_data.sanitize": {"tf": 1.7320508075688772}, "scripts.generators.generate_fake_data.fake": {"tf": 1.7320508075688772}, "scripts.generators.generate_fake_data.main": {"tf": 1.7320508075688772}, "scripts.generators.generate_operator_hash": {"tf": 2.449489742783178}, "scripts.generators.generate_operator_hash.logger": {"tf": 1.7320508075688772}, "scripts.generators.generate_operator_hash.ALLOWED": {"tf": 1.7320508075688772}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 2.449489742783178}, "scripts.generators.generate_operator_hash.main": {"tf": 4}, "scripts.generators.generate_snapshot_binding": {"tf": 2.449489742783178}, "scripts.generators.generate_snapshot_binding.logger": {"tf": 1.7320508075688772}, "scripts.generators.generate_snapshot_binding.DATA_PROCESSED_DIR": {"tf": 1.7320508075688772}, "scripts.generators.generate_snapshot_binding.FEATURE_STORE_DIR": {"tf": 1.7320508075688772}, "scripts.generators.generate_snapshot_binding.BINDINGS_PATH": {"tf": 1.7320508075688772}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 2.8284271247461903}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 3}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 2.449489742783178}, "scripts.generators.generate_snapshot_binding.main": {"tf": 2.449489742783178}, "scripts.quality": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers": {"tf": 3.1622776601683795}, "scripts.quality.check_import_layers.ROOTS": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.CONFIGS_ROOT": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.IMPORT_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers.main": {"tf": 3.1622776601683795}, "scripts.quality.check_naming_conventions": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.ROOTS": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.SNAKE_CASE_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.PASCAL_CASE_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.MODULE_RE": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.violations": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.IGNORE_FOLDERS": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 3.1622776601683795}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 3.1622776601683795}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 3.1622776601683795}, "scripts.quality.check_naming_conventions.main": {"tf": 4.58257569495584}}, "df": 46, "a": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.quality": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 13, "n": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1.7320508075688772}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 12}, "y": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 6}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 1}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.quality": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 3, "d": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}}, "df": 5}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"scripts": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 3}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.4142135623730951}, "scripts.generators.generate_fake_data": {"tf": 1.4142135623730951}, "scripts.generators.generate_fake_data.sanitize": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.quality": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 12}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}, "d": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 2}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.7320508075688772}}, "df": 5, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"scripts.quality.check_import_layers": {"tf": 2.23606797749979}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 3}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1, "n": {"docs": {"scripts": {"tf": 1}}, "df": 1, "e": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4}}, "t": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 2, "s": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 2, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"scripts": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_fake_data.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 6, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 2}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 5, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 6, "s": {"docs": {"scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 7, "s": {"docs": {"scripts": {"tf": 1}, "scripts.generators": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality": {"tf": 1}}, "df": 6}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 2, "s": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 4}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}}, "y": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}, "r": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 4, "s": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 2}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1.4142135623730951}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 2}}, "df": 1}}}}}}, "g": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 7, "s": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 3}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 14, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1.7320508075688772}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1.7320508075688772}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1.7320508075688772}, "scripts.quality.check_import_layers": {"tf": 1}, "scripts.quality.check_naming_conventions": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.7320508075688772}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 2}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 2}, "scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 15, "n": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 6}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.7320508075688772}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.7320508075688772}}, "df": 2, "s": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1.4142135623730951}}, "df": 1}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 4, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 11}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 2.449489742783178}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1.4142135623730951}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.7320508075688772}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1.7320508075688772}}, "df": 4, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_snapshot_binding.main": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_import_layers": {"tf": 2.6457513110645907}, "scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}}, "df": 2}, "f": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "t": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}, "v": {"1": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "c": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_operator_hash.parse_args": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.quality.check_import_layers.collect_violations": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 2, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 2}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint": {"tf": 1}, "scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 2}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1.4142135623730951}}, "df": 1}}}}, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1.4142135623730951}}, "df": 3}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}}, "df": 1, "[": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}}, "df": 1, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_fake_data.main": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers.main": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 2}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1.4142135623730951}, "scripts.quality.check_import_layers": {"tf": 1}}, "df": 4, "l": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 2}}, "df": 2}}}, "r": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"scripts.generators.generate_operator_hash.main": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_operator_hash": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"scripts.generators.generate_snapshot_binding.scan_latest_snapshots": {"tf": 1.7320508075688772}}, "df": 1, "d": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {"scripts.quality.check_naming_conventions.is_ignored": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}}, "df": 1, "s": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1.7320508075688772}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1.7320508075688772}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {"scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.check_ast": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}, "m": {"docs": {"scripts.generators.generate_cols_for_row_id_fingerprint.main": {"tf": 1}, "scripts.generators.generate_fake_data": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}, "scripts.quality.check_naming_conventions.check_module_name": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_fake_data.main": {"tf": 1}, "scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 2}}}, "l": {"docs": {"scripts.quality.check_import_layers": {"tf": 2.449489742783178}}, "df": 1}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_import_layers.main": {"tf": 1.4142135623730951}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"scripts.quality.check_naming_conventions.main": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_fake_data": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"scripts.generators.generate_operator_hash": {"tf": 1.4142135623730951}, "scripts.generators.generate_operator_hash.parse_args": {"tf": 1}, "scripts.generators.generate_operator_hash.main": {"tf": 2}}, "df": 3}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"scripts.generators.generate_fake_data.sanitize": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"scripts.generators.generate_snapshot_binding": {"tf": 1}, "scripts.generators.generate_snapshot_binding.load_bindings": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.save_bindings_atomic": {"tf": 1.4142135623730951}, "scripts.generators.generate_snapshot_binding.main": {"tf": 1}, "scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 5}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"scripts.quality": {"tf": 1}}, "df": 1}}}}}}}, "x": {"docs": {"scripts.quality.check_import_layers": {"tf": 1.4142135623730951}}, "df": 1}, "z": {"docs": {"scripts.quality.check_import_layers": {"tf": 1}}, "df": 1}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. diff --git a/docs/architecture/decisions.md b/docs/architecture/decisions.md index 0c7ac651..4a40898a 100644 --- a/docs/architecture/decisions.md +++ b/docs/architecture/decisions.md @@ -14,7 +14,7 @@ Each decision is classified as one of: ## Storage assumption The system assumes: - Single-writer per experiment -- Atomic file writes for metadata artifacts +- Atomic file writes for artifacts Migration to object storage or distributed runners would require a storage abstraction layer. @@ -50,13 +50,16 @@ Snapshots are immutable. ### Logs stored at the lowest level - **Decision:** Store logs in the lowest-level folder that was created by a given run of a pipeline - **Rationale:** Easy to understand what the logs refer to, easy to navigate the logs -- **Alternatives:** Create a logs folder at the repo root level, then branch from there (rejected - mostly harmless, but unnecessary and harder to navigate and maintain); log to the same location depending on the pipeline (e.g. all calls to `freeze.py` log to `freeze.log`) (rejected - quickly leads to logging hell and extremely hard to navigate) +- **Alternatives:** Create a logs folder at the repo root level, then branch from there (rejected - mostly harmless, but unnecessary and harder to navigate and maintain); log to + the same location depending on the pipeline (e.g. all calls to `freeze.py` log to `freeze.log`) (rejected - quickly leads to logging hell and extremely hard + to navigate) - **Type:** Convenience (could just change the lines that define the log level) ### Defining the logging level through a cli argument - **Decision:** Define the logging level (DEBUG/INFO...) through a cli argument for each given pipeline - **Rationale:** Flexible, with no clear downsides (e.g. use DEBUG for development and INFO for production) -- **Alternatives:** Always use the same logging level (rejected - very inflexible); Define the logging level in configs (rejected - unnecessarily complicated; logging should not depend on configs, and should be more flexible) +- **Alternatives:** Always use the same logging level (rejected - very inflexible); Define the logging level in configs (rejected - unnecessarily complicated; logging should not + depend on configs, and should be more flexible) - **Type:** Convenience (defining a default is easy) ### Decoupling of feature sets and data @@ -67,27 +70,32 @@ Snapshots are immutable. ### Decoupling of modeling and feature freezing - **Decision:** Decouple feature freezing from modeling (search, runners) -- **Rationale:** Makes the features model-agnostic and reusable, allows for different models and their versions to use different feature sets, very scalable +- **Rationale:** Makes the features model-agnostic and reusable, allows for different models and their versions to use different feature sets; very scalable - **Alternatives:** Tie features to each model (rejected - less scalability, flexibility and reusability) - **Type:** Foundational ### Snapshot id enabled as a cli argument in data preprocessing pipelines - **Decision:** Include snapshot id (representing data snapshot from the previous stage) as an optional cli argument; default to latest -- **Rationale:** While not meant to be used yet, it is simple to implement and allows flexibility for potential future enhancements -- **Alternatives:** Always use the latest snapshot (rejected - a viable option, considering the existing workflow, but not including this feature now would save little time, while potentially causing a lot more work in the future) +- **Rationale:** Enables flexibility and scalability with little overhead +- **Alternatives:** Always use the latest snapshot (rejected - no reason to force this) - **Type:** Structural -### Latest full snapshot usage for each of the feature set's datasets -- **Decision:** Always use the latest full dataset snapshots (old + new rows) when freezing a feature set -- **Rationale:** Easier implementation - prevents clogging the feature registry, since including snapshots in it would imply a lot more versioning; not needed at this stage; space not an issue if not updated too frequently -- **Alternatives:** Define snapshot path and id for each dataset in the feature registry (rejected - would quickly clog the file; not needed); - Switch from using a feature registry for freezing configs to someting more distributed (rejected - would be harder to track, and would unnecessarily complicate the existing workflow) +### Flexible snapshot usage for each of the feature set's datasets (via snapshot bindings) +- **Decision:** Use snapshot bindings cli argument to enable the user to freeze a feature set using different combinations of dataset snapshots +- **Rationale:** Flexible, scalable, reproducible +- **Alternatives:** Force the use of latest snapshots (rejected - not flexible and scalable enough; prevents proper reproducibility) - **Type**: Structural -### Latest full snapshot usage for each of the experiment's feature sets -- **Decision:** Always use the latest full feature set snapshots (old + new rows) when starting a new experiment -- **Rationale:** Easier implementation - less code and prevents config versioning hell, since configs don't need to contain snapshots; not needed at this stage; space not an issue if not updated too frequently -- **Alternatives:** Define feature snapshots in model specs (rejected - overly complex and not needed, unless we aimed to implement inference and monitoring cron jobs that automate modeling - beyond scope) +### Flexible snapshot usage for each of the experiment's feature sets +- **Decision:** Allow each experiment to use dataset and feature set snapshots defined by the user via a cli argument +- **Rationale:** Flexible, scalable, reproducible +- **Alternatives:** Always use the latest full feature set snapshots when starting a new experiment (rejected - same reason as in [feature freezing](#flexible-snapshot-usage-for-each-of-the-feature-sets-datasets-via-snapshot-bindings)) +- **Type:** Structural + +### Flexible snapshot usage for training runs +- **Decision:** Allow each training run to use dataset and feature set snapshots defined by the user via a cli argument +- **Rationale:** Flexible, scalable, reproducible +- **Alternatives:** Same as with the [experiments](#flexible-snapshot-usage-for-each-of-the-experiments-feature-sets) - **Type:** Structural ### Absence of the inference and monitoring pipelines @@ -99,7 +107,8 @@ Snapshots are immutable. ### Absence of cron jobs - **Decision:** Do not implement cron jobs - **Rationale:** The current architecture implies they are not needed -- **Alternatives:** Run `run_all_workflows.py` whenever a new snapshot of raw data appears (rejected - not needed at this stage; could result in unexpected outcomes - that orchestrator is powerful) +- **Alternatives:** Run `run_all_workflows.py` whenever a new snapshot of raw data appears (rejected - not needed at this stage; could result in unexpected + outcomes - that orchestrator is powerful and potentially dangerous) - **Type:** Tactical ## Artifacts and Configs - General @@ -119,13 +128,17 @@ Snapshots are immutable. ### Configs stored in the `configs/` folder - **Decision:** Store all of the configs within the `configs/` folder, with relevant, semantic nesting - **Rationale:** Easy to access, work with, and reason about -- **Alternatives:** Use sql instead (rejected - a viable alternative at great scale, but would add unnecessary complexity to the current system; migrating to it later on is simple enough) +- **Alternatives:** Use sql instead (rejected - a viable alternative at great scale, but would add unnecessary complexity to the current system; + migrating to it later on is simple enough) - **Type:** Structural (pipelines and orchestrators assume the current structure when searching for configs) ### Experiments and all of their artifacts stored in the `experiments/` folder -- **Decision:** Store all of the experiments and the artifacts they produce (e.g. metadata, runtime info, metrics, models, pipelines) within the `experiments/` folder +- **Decision:** Store all of the experiments and the artifacts they produce (e.g. metadata, runtime info, metrics, models, pipelines) within the + `experiments/` folder - **Rationale:** Easy to access, work with, and reason about -- **Alternatives:** Store models and pipelines separately (rejected - models and pipelines are strongly tied to training runs, and decoupling them would decrease safety and add complexity); use cloud services (rejected - great option long-term, but would incur unnecessary costs at the current stage) +- **Alternatives:** Store models and pipelines separately (rejected - models and pipelines are strongly tied to training runs, and decoupling them would + decrease safety and add complexity); use cloud services (rejected - great option long-term, but would incur unnecessary costs at the + current stage) - **Type:** Structural (pipelines assume the current structure when loading artifacts) ### Metadata produced by each pipeline (e.g. `freeze.py`) @@ -135,7 +148,8 @@ Snapshots are immutable. - **Type:** Tactical (removing the creation of metadata that is not used downstream would simply imply the deletion of some code) ### Storing of runtime information for feature freezing and experiments -- **Decision:** Store runtime information for each run of `freeze.py`, `search.py`, `train.py`, `evaluate.py` and `explain.py` (`freeze.py` includes it in metadata, while the other four produce a separate artifact) +- **Decision:** Store runtime information for each run of `freeze.py`, `search.py`, `train.py`, `evaluate.py` and `explain.py` (`freeze.py` includes it in metadata, + while the other four produce a separate artifact) - **Rationale:** Usually cheap to generate and store; improves auditability and reproducibility - **Alternatives:** Do not store runtime information (rejected - the benefits outweight the costs) - **Type:** Structural (used for reproducibility validations in multiple pipelines) @@ -145,19 +159,24 @@ Snapshots are immutable. ### Models defined by problem type, segment and version - **Decision:** Define the models by the problem they solve, the segment they encompass, and the version of those two (based on configs) - **Rationale:** Allows for seamless navigation and scalability, very future-proof -- **Alternatives:** Define only by problem type or problem type and segment (rejected - less scalable, harder to navigate); Define by algorithm as well (rejected - unnecessarily complicated) +- **Alternatives:** Define only by problem type or problem type and segment (rejected - less scalable, harder to navigate) - **Type:** Foundational (all of modeling and promotion logic assumes the current structure) ### Nesting search and training configs same as model specs - **Decision:** Use the same folder nesting for search and training configs as with model specs configs - **Rationale:** Easy to navigate, seamless config resolution at runtime - **Alternatives:** Version search/train configs separately (rejected - unnecessary complexity) -- **Type:** Structural (could move everything into model specs f.x., but that would require changing the config resolution logic; versioning search and train separately would imply major restructuring) +- **Type:** Structural (could move everything into model specs f.x., but that would require changing the config resolution logic; versioning search and train separately + would imply major restructuring) ### Search/training final configs overriding order: global defaults -> algorithm defaults -> model specs -> search/train -> env (optional) -> best params from search (only used by `train.py`) -- **Decision:** When forming the final configs for search or training, first override the global defaults by algorithm defaults, then by model specs, then by search or training configs, and finally by environment configs (optional); overridden again by best params from search during training runs -- **Rationale:** Defaults are always good to have for future-proofing, model specs define most of the behavior, search and training configs define information specific to their stage of modeling, environment configs allow easy override of the most impactful elements (e.g. number of iterations); more reusable and less error prone when search and training use the same logic -- **Alternatives:** Do not include defaults and/or environment configs (rejected - less scalable; those configs are extremely inexpensive to store, but can easily come in handy); decouple search from training config creation (rejected - more error prone, more boilerplate code) +- **Decision:** When forming the final configs for search or training, first override the global defaults by algorithm defaults, then by model specs, then by search or training configs, and + finally by environment configs (optional); overridden again by best params from search during training runs +- **Rationale:** Defaults are always good to have for future-proofing, model specs define most of the behavior, search and training configs define information specific to their stage of + modeling, environment configs allow easy override of the most impactful elements (e.g. number of iterations); more reusable and less error prone when search and training + use the same logic +- **Alternatives:** Do not include defaults and/or environment configs (rejected - less scalable; those configs are extremely inexpensive to store, but can easily come in handy); decouple + search from training config creation (rejected - more error prone, more boilerplate code) - **Type:** Structural (could add or remove a step, but should be carefully thought through - impacts the config resolution that ultimately determines search and training runs) ### Passing of env as a cli argument @@ -169,7 +188,8 @@ Snapshots are immutable. ### Feature engineering decided at feature freezing - **Decision:** Decide which engineered features to use for a given version of a given feature set through the feature registry - **Rationale:** Ensures that the input features necessary to create the engineered/derives features are always present by raising an error early (during feature freezing) if they are not -- **Alternatives:** Engineer features during data preprocessing (rejected - could lead to a bad downstream situation where a model's pipeline wants to create a feature, but does not have the necessary input - e.g. it wants to create adr_per_person, but adr is not present) +- **Alternatives:** Engineer features during data preprocessing (rejected - could lead to a bad downstream situation where a model's pipeline wants to create a feature, but does not have + the necessary input - e.g. it wants to create adr_per_person, but adr is not present) - **Type:** Structural (pipeline (sklearn) creation fully relies on this assumption) ### Operators defined by derived schemas @@ -211,17 +231,29 @@ Snapshots are immutable. - **Type:** Convenience ### Executing all workflows with a single orchestrator enabled -- **Decision:** Enable running all data preprocessing for all of the available datasets and configs, followed by freezing of all feature sets found in the feature registry, followed by the execution of search, training, evaluation and explainability for all of the available models (orchestrator figures it out by inspecting how `configs/model_specs/` is nested) by defaulting to latest snapshots for training, evaluation and explainability steps +- **Decision:** Enable running all data preprocessing for all of the available datasets and configs, followed by freezing of all feature sets found in the feature registry, followed by the execution of + search, training, evaluation and explainability for all of the available models (orchestrator figures it out by inspecting how `configs/model_specs/` is nested) by defaulting to latest + snapshots for training, evaluation and explainability steps - **Rationale:** Extremely efficient when appropriate -- **Alternatives:** Forbid such high-level orchestration (rejected - the user is responsible for what happens next; proper validations are in check and the logs allow for traceability) +- **Alternatives:** Forbid such high-level orchestration (rejected - the user is responsible (and warned) for what happens next; proper validations are in check and the logs enable proper tracing) - **Type:** Convenience ### Orchestrating promotion disabled - **Decision:** Do not orchestrate the promotion step - **Rationale:** Hard to implement if meant to be run with the grand orchestrator; easy to result in unexpected outcomes; usually not needed -- **Alternatives:** Create `stage_all.py` or `promote_all.py` and run it right after `execute_all_experiments_with_latest.py` (rejected - hard to implement, as we don't know which experiment/training/evaluation/explainability ids to use prior to running the grand orchestrator; rarely needed; could end up polluting the model registry, which is a terrible idea, as that is the source of truth for staging and production models) +- **Alternatives:** Create `stage_all.py` or `promote_all.py` and run it right after `execute_all_experiments_with_latest.py` (rejected - hard to implement, as we don't know which + experiment/training/evaluation/explainability ids to use prior to running the grand orchestrator; rarely needed; could end up polluting the model registry, which + is a terrible idea, as that is the source of truth for staging and production models) - **Type:** Foundational (very important to keep the model registry clean) +### Orchestrating post-promotion pipelines disabled +- **Decision:** Do not orchestrate the post-promotion pipelines (inference and monitoring) +- **Rationale:** Those two steps should be intentional, implicitly prompting the user to inspect the produced `json` artifacts at each run +- **Alternatives:** Orchestrate the two steps by defaulting to latest, similar to the experiment orchestrator (rejected - a viable idea, + but requiring a few extra steps from the user at these steps is actually desirable, as it reduces the likelihood of them + running the pipelines without properly inspecting the output) +- **Type:** Tactical + ## Data ### Raw data versioning @@ -242,7 +274,8 @@ Snapshots are immutable. ### Interim datasets versioning - **Decision:** Use versioning for interim datasets - **Rationale:** Optimizing raw data by opting for different data types simply implies a new version - logically tied to the same version of the same raw data -- **Alternatives:** Always use the same optimization for each version of each raw data (rejected - less flexible with no clear upsides); Imply new version in the name (e.g. hotel_bookings_v2) (rejected - semantically complicated) +- **Alternatives:** Always use the same optimization for each version of each raw data (rejected - less flexible with no clear upsides); Imply new version in the name + (e.g. hotel_bookings_v2) (rejected - semantically complicated) - **Type:** Structural ### Snapshots for interim datasets @@ -257,7 +290,8 @@ Snapshots are immutable. ### Processed datasets versioning - **Decision:** Use versioning for processed datasets - **Rationale:** Applying different preprocessing simply implies a new version - logically tied to the same version of the same interim dataset -- **Alternatives:** Always preprocess a given version of an interim dataset in the same way (rejected - extremely unflexible and impractical); Imply new version in the name (e.g. hotel_bookings_v2) (rejected - semantically complicated) +- **Alternatives:** Always preprocess a given version of an interim dataset in the same way (rejected - extremely unflexible and impractical); Imply new version + in the name (e.g. hotel_bookings_v2) (rejected - semantically complicated) - **Type:** Structural ### Snapshots for processed datasets @@ -280,6 +314,16 @@ Snapshots are immutable. ### Snapshots for feature sets - reference [Snapshot policy](#snapshot-policy-applies-to-rawinterimprocessedfeatures) +### Merging of datasets on multiple keys, with flexible logic, using DAG +- **Decision:** Allow different kinds of joins, along with multiple keys, for dataset merging +- **Rationale:** Keeps the complexity at this step, rather than propagating it down to feature sets; allows for all of the required flexibility + with minimum overhead +- **Alternatives:** Force a specific type of merging with only one key (rejected - while currently viable, this solution scales poorly, and + makes no sense given that the implementation of the more flexible merging logic is not that much more complex); make + the feature sets handle the complexity (rejected - feature set merging is more challenging; it is better to keep the + merging complexity upstream) +- **Type:** Structural + ### Keeping of the entity key in frozen features - **Decision:** Keep entity key column when freezing any given feature set - **Rationale:** Allows for seamless merging of many feature sets at runtime, regardless of their respective row counts @@ -290,32 +334,82 @@ Snapshots are immutable. - **Decision:** Save both input and derived schemas once at the version level (one for all snapshots) - **Rationale:** Schemas depend on configs, which should not change across runs; more logical and saves memory - **Alternatives:** Save new schemas for each snapshot (rejected - redundant, could be more error prone if the code did not include all of the validations that it already does) -- **Type:** Structural (changing the validation logic is simple enough, but changing sklearn pipeline building logic would break all of the existing pipelines that assumed the existing architecture; technically possible to keep old logic for older ones, and create new for the newer ones - but a lot of work) +- **Type:** Structural (changing the validation logic is simple enough, but changing sklearn pipeline building logic would break all of the existing pipelines that assumed the + existing architecture; technically possible to keep old logic for older ones, and create new for the newer ones - but a lot of work) ### The disinclusion of entity key in input_schema - **Decision:** Do not include entity key in feature set's input schema -- **Rationale:** Row id is only used for merging, should never reach the model, and does not provide any value outside of merging; this decision aligns well with the rest of the code logic +- **Rationale:** Entity key is only used for merging, should never reach the model, and does not provide any value outside of merging; this decision aligns well with the + rest of the code logic - **Alternatives:** Include entity key in input schema (rejected - it is only a technical feature) - **Type:** Structural (implies changes to sklearn pipeline building logic - would impact older pipelines) +### Forcing of a single entity key per feature set +- **Decision:** Force the use of one single entity key per feature set +- **Rationale:** Entity key inclusion already provides enough flexibility, while this decision provides seamless merging upstream without compromising + the said flexibility +- **Alternatives:** Allow multiple entity keys, as in a list (rejected - completely unnecessary at this stage, and would require major refactoring) +- **Type:** Structural + ### Not saving derived schema when no operators in configs - **Decision:** Do not save a derived schema if no operators are being created, meaning all of the features are already included in the input schema - **Rationale:** Avoids flooding the feature store with empty derived schemas - **Alternatives:** Save an empty derived schema instead (rejected - harmless, but unnecessary) - **Type:** Tactical +### Hardcoded coverage threshold when merging feature sets +- **Decision:** Hardcode a coverage threshold in feature set merging +- **Rationale:** Not meant to be changed; should be a good default for all datasets and feature sets; doesn't prevent code execution anyway +- **Alternatives:** Include coverage threshold in model specs (rejected - not needed; one global default works just fine) +- **Type:** Tactical + +### Missing the coverage threshold only logs a warning +- **Decision:** Instead of blocking the execution in case of a missed coverage threshold, just log a warning and continue +- **Rationale:** Low coverage threshold does not automatically mean that there is something wrong, but the user should + be notified in some way anyway - they can then inspect what is happening on their own if needed +- **Alternatives:** Fail loudly if the coverage threshold is not met (rejected - too rigid); do not include the threshold + at all (rejected - informing the user is useful and easy to implement) +- **Type:** Tactical + +## Snapshot bindings + +### Implementation of snapshot bindings +- **Decision:** Implement snapshot bindings to allow merging of specific feature sets and datasets, rather than defaulting to latest on every run +- **Rationale:** Considerably more flexible and scalable; allows for proper implementation of upstream code (runners, inference, monitoring) +- **Alternatives:** Always default to latest snapshots (rejected - very limiting and not scalable); include snapshot definitions in the + feature registry and model specs (rejected - quickly leads to config hell, since it requires constant adding of new configs) +- **Type:** Foundational + +### Inclusion of snapshot bindings generation script +- **Decision:** Include a script for generating snapshot bindings, while defaulting to latest +- **Rationale:** Allows for an easy creation of new snapshot bindings that does not require too much manual work; manual work may still be required, + but is generally greatly reduced with the inclusion of this script +- **Alternatives:** Force manual writing of the snapshot bindings (rejected - error-prone and difficult) +- **Type:** Convenience + +### Grouping of many datasets and feature sets in snapshot bindings +- **Decision:** Group as many datasets and feature sets as desired in each snapshot binding +- **Rationale:** It doesn't matter if a pipeline uses only some of them - extras don't hurt; including more in one reduces the chances of + config explosion, since it implies less snapshot bindings are needed +- **Alternatives:** Separate dataset and feature set snapshot bindings (rejected - this would actually be more error-prone, since models need both; + including both makes the implementation safer and easier) +- **Type:** Tactical + ## Search ### One broad and one optional narrow search - **Decision:** Always do one broad hyperparameter search, optionally followed by one narrow search -- **Rationale:** Flexible enough to only do one search for models that do not require more than that; there is no need for more than two searches - increasing iterations is a better approach -- **Alternatives:** Allow the configs to define the number of searches (rejected - unnecessary complexity; just increase iterations or improve data if results are subpar); always do both broad and narrow search (rejected - some models converge very quickly and doing two searches is a waste of time and resources in that case) +- **Rationale:** Flexible enough to only do one search for models that do not require more than that; there is no need for more than two searches - increasing iterations + is a better approach +- **Alternatives:** Allow the configs to define the number of searches (rejected - unnecessary complexity; just increase iterations or improve data if results are subpar); + always do both broad and narrow search (rejected - some models converge very quickly and doing two searches is a waste of time and resources in that case) - **Type:** Structural (implies major changes to all of the search-related code) ### Forced use of one search type per algorithm - **Decision:** Always use the same search type for each algorithm (e.g. randomized search for Catboost) - **Rationale:** Enhances reproducibility; easier to understand the results; minimal harm; still flexible on algorithm-level -- **Alternatives:** Use one search type for all algorithms (rejected - not flexible enough); allow configs to define search type for each model (rejected - the ROI is not there - implementation and interpretation become more difficult, while the gains are minimal and irrelevant for a product-oriented system) +- **Alternatives:** Use one search type for all algorithms (rejected - not flexible enough); allow configs to define search type for each model (rejected - the ROI is not + there - implementation and interpretation become more difficult, while the gains are minimal and irrelevant for a product-oriented system) **Type:** Structural (implies major changes to all of the search-related code) ### Parameter distribution for broad search defined in configs @@ -339,19 +433,23 @@ Snapshots are immutable. ### Allowing deletion of the saved best hyperparameters from broad and narrow search - **Decision:** Enable the saved best hyperparamters from broad and narrow search to be dynamically deleted if the search run finishes successfully, but do not force the deletion - **Rationale:** Prevents the hoarding of useless information without requiring manual deletion; flexible to allow override (skipping deletion) when desired -- **Alternatives:** Do not delete the saved best hyperparameters from broad and narrow search dynamically (rejected - can easily fill space with useless data, and requires unnecessary manual intervention); always delete (rejected - less flexible) +- **Alternatives:** Do not delete the saved best hyperparameters from broad and narrow search dynamically (rejected - can easily fill space with useless data, and requires + unnecessary manual intervention); always delete (rejected - less flexible) - **Type:** Tactical (extremely easy to delete one function, but implies slightly more manual monitoring of storage space) ### Search runs create experiments - **Decision:** Each search run creates a new experiment - **Rationale:** Experiments include various artifacts from search and runners, all of which are ultimately defined by the search; hence new search = new experiment -- **Alternatives:** Enable multiple search runs per experiment (rejected - this is often done in research-focused ml-infra, since running the same code with the same configs on slightly different hardware may result in slightly different floating points - this is a product-oriented system, so those tiny differences are considered to be irrelevant) +- **Alternatives:** Enable multiple search runs per experiment (rejected - this is often done in research-focused ml-infra, since running the same code with the same configs on + slightly different hardware may result in slightly different floating points - this is a product-oriented system, so those tiny differences are considered to be irrelevant) - **Type:** Foundational (all of modeling assumes this) ### Search run artifacts stored in `experiments/.../{experiment_id}/search/` - **Decision:** Store all of the artifacts generated by a search run in `experiments/{problem_name}/{segment}/{model_version}/{experiment_id}/search/` -- **Rationale:** Search is canonical for a given experiment, so there is no need for snapshots; nevertheless, including it within a nested search folder makes it semantically clear that the artifacts were generated by the search -- **Alternatives:** Create a nested search run for storing artifacts created by a search run (rejected - reasoning explained already); Store the generated artifacts at the experiment folder level (rejected - viable alternatives, but less semantically accurate) +- **Rationale:** Search is canonical for a given experiment, so there is no need for snapshots; nevertheless, including it within a nested search folder makes it semantically clear that the + artifacts were generated by the search +- **Alternatives:** Create a nested search run for storing artifacts created by a search run (rejected - reasoning explained already); Store the generated artifacts at the experiment folder + level (rejected - viable alternatives, but less semantically accurate) - **Type:** Tactical (implies changing a few paths downstream, likely an easy implementation) ## Training @@ -364,7 +462,8 @@ Snapshots are immutable. ### Snapshots for training - **Decision:** One experiment can have many training runs; each stores its artifacts in `experiments/{problem_name}/{segment}/{model_version}/{experiment_id}/training/{train_run_id}/` -- **Rationale:** Training with the same configs and hardware can result in a different model if we train on updated data; this prevents wasting resources on re-searching params when that is not necessary +- **Rationale:** Training with the same configs and hardware can result in a different model if we train on updated data; this prevents wasting resources on re-searching params when that + is not necessary - **Alternatives:** One training run per experiment (rejected - requiring each training run to imply a new search run is extremely inefficient) - **Type:** Foundational (necessary to have an efficient system) @@ -397,7 +496,8 @@ Snapshots are immutable. ### Storing row-by-row predictions by split (train/val/test) - **Decision:** Store the exact row-by-row predictions the model made for each split (train/val/test) - **Rationale:** In a case of weird outcomes, this provides an easy way of inspecting where the model is failing; could potentially be re-used in explainability runs (currently not implemented) -- **Alternatives:** Save storage space by not saving predictions by for each split on each evaluation run (rejected - better practice to store by default; can always be manually deleted if storage becomes a major concern; usually not an issue) +- **Alternatives:** Save storage space by not saving predictions by for each split on each evaluation run (rejected - better practice to store by default; can always be manually deleted if + storage becomes a major concern; usually not an issue) - **Type:** Tactical (easy to remove, but has negative implications on data analysis and auditing) ## Explainability @@ -409,29 +509,39 @@ Snapshots are immutable. - **Type:** Foundational (no viable alternatives if explainability is done separately from training - which is the intended architecture) ### Snapshots for explainability -- **Decision:** One trained model can be explained many times; each explainability run stores its artifacts in `experiments/{problem_name}/{segment}/{model_version}/{experiment_id}/explainability/{explain_run_id}/` -- **Rationale:** In addition to the reasoning from [Snapshots for evaluation](#snapshots-for-evaluation), explain.py receives top_k as an optional cli argument (otherwise defaults to a value defined in model specs), which means that different explainability runs can produce different artifacts -- **Alternatives:** Allow only one explainability run per trained model/pipeline (rejected - in addition to the reasoning from [Snapshots for evaluation](#snapshots-for-evaluation), the implied inability to use a different top_k would imply that we either have to manually alter the produced artifacts, which is unsafe and unreliable, or do another training run, which is expensive) +- **Decision:** One trained model can be explained many times; each explainability run stores its artifacts in + `experiments/{problem_name}/{segment}/{model_version}/{experiment_id}/explainability/{explain_run_id}/` +- **Rationale:** In addition to the reasoning from [Snapshots for evaluation](#snapshots-for-evaluation), explain.py receives top_k as an optional cli argument (otherwise defaults to a + value defined in model specs), which means that different explainability runs can produce different artifacts +- **Alternatives:** Allow only one explainability run per trained model/pipeline (rejected - in addition to the reasoning from [Snapshots for evaluation](#snapshots-for-evaluation), the + implied inability to use a different top_k would imply that we either have to manually alter the produced artifacts, which is unsafe and unreliable, or do another + training run, which is expensive) - **Type:** Structural (the implementation itself is not a big problem - the architectural and business-related implications are) ## Promotion ### Evaluation and explainability canonical for promotion runs - **Decision:** Tie the promotion runs to evaluation and explainability runs from the same model (there are proper validations in place for this) -- **Rationale:** Evaluation metrics are used for decision-making, while ensuring the existence of explainability artifacts is a necessary requirement (otherwise the models cannot be used as tools for an LLM, since the LLM will not be able to properly interpret the results for the end-user) -- **Alternatives:** Only tie promotion to evaluation (rejected - the end-goal is using the trained models as tools within an LLM, and the LLM needs explainability-produced artifacts to properly interpret the results); Tie to training and use training metrics for decision-making (rejected - training runs produce only basic, quick metrics, while evaluation runs produce extensive, metrics that are relevant for comparing models) +- **Rationale:** Evaluation metrics are used for decision-making, while ensuring the existence of explainability artifacts is a necessary requirement (otherwise the models cannot be used + as tools for an LLM, since the LLM will not be able to properly interpret the results for the end-user) +- **Alternatives:** Only tie promotion to evaluation (rejected - the end-goal is using the trained models as tools within an LLM, and the LLM needs explainability-produced artifacts to + properly interpret the results); Tie to training and use training metrics for decision-making (rejected - training runs produce only basic, quick metrics, while evaluation + runs produce extensive, metrics that are relevant for comparing models) - **Type:** Foundational (technically not that difficult to implement, but antithetical to the business goals) ### Snapshots for promotion created at a shallow folder level - `model_registry/runs/{run_id}/` - **Decision:** Store the artifacts created by promotion runs in `model_registry/runs/{run_id}/` -- **Rationale:** Most experiments end up being useless and do not reach the promotion step; run ids of relevant promotion runs are saved in the model registry or the archive, making them easy to find if need be -- **Alternatives:** Nest promotion snapshots like so: `model_registry/runs/{model_problem}/{segment}/{run_id}/` (rejected - a viable idea, but adds too much complexity, considering how unlikely it is to ever be needed) +- **Rationale:** Most experiments end up being useless and do not reach the promotion step; run ids of relevant promotion runs are saved in the model registry or the archive, making them + easy to find if need be +- **Alternatives:** Nest promotion snapshots like so: `model_registry/runs/{model_problem}/{segment}/{run_id}/` (rejected - a viable idea, but adds too much complexity, considering how + unlikely it is to ever be needed) - **Type:** Structural (would need to implement branching downstream if monitoring and analytical logic gets implemented) ### Snapshots for staging and promotion live in the same folder - `model_registry/runs/{run_id}/` - **Decision:** Treat both staging and promotion as logically equivalent by storing their artifacts in `model_registry/runs/{run_id}/` - **Rationale:** All staged and promoted models are defined within `model_registry/models.yaml`, hence decoupling their artifact locations would be confusing and unnecessary -- **Alternatives:** Store promotion-stage runs in `model_registry/runs/promotion/{run_id}/` and staging-stage runs in `model_registry/runs/staging/{run_id}/` (rejected - could be considered confusing; adds unnecessary nesting) +- **Alternatives:** Store promotion-stage runs in `model_registry/runs/promotion/{run_id}/` and staging-stage runs in `model_registry/runs/staging/{run_id}/` (rejected - could be considered + confusing; adds unnecessary nesting) - **Type:** Structural (same reasoning as in [Snapshots for promotion created at a shallow folder level](#snapshots-for-promotion-created-at-a-shallow-folder-level---model_registryrunsrun_id)) ### Same script for staging, promotion and archiving @@ -443,8 +553,10 @@ Snapshots are immutable. ### Allow promotion without staging - **Decision:** Promoting the model without previously staging it is allowed - **Rationale:** The proper checks are still in check (candidate model needs to beat both the predefined thresholds and the current production model); staging is not always a requirement in practice -- **Alternatives:** Always require a model to be stages before allowing its promotion (rejected - a viable solution for extremely strict corporate systems, but it is currently not necessary and could add a lot of complexity, like requiring the model to be staged for at least X days before promotion) -- **Type:** Structural (staging is currently treated as an optional test-mode; the promotion logic completely ignores which model is currently staged; changing this would imply a major paradigm shift in that regard) +- **Alternatives:** Always require a model to be stages before allowing its promotion (rejected - a viable solution for extremely strict corporate systems, but it is currently not necessary and + could add a lot of complexity, like requiring the model to be staged for at least X days before promotion) +- **Type:** Structural (staging is currently treated as an optional test-mode; the promotion logic completely ignores which model is currently staged; changing this would imply a major paradigm shift + in that regard) ### Only production models are archived - **Decision:** Archive production models when new ones replace them; do not archive all of the staged models @@ -470,6 +582,78 @@ Snapshots are immutable. - **Alternatives:** Use one archive but no nesting (rejected - it is easier to get the desired models when nesting is in place, and it doesn't incur any extra cost) - **Type:** Structural +## Post-promotion + +### Simple inference and monitoring +- **Decision:** Implement relatively simple inference and monitoring logic +- **Rationale:** Complex logic not needed at this stage, but some logic is desirable to complete the lifecycle +- **Alternatives:** Implement complex logic immediately to avoid future refactoring (rejected - too much effort for something that is currently of little use); + Do not implement any inference and/or monitoring logic (rejected - a simple implementation does not consume too much time, while logically completing the model lifecycle) +- **Type:** Structural + +### Each inference run stores artifacts in its own subdirectory +- **Decision:** Store predictions and metadata of each inference run in its own subdirectory +- **Rationale:** Easier upstream implementation (monitoring) +- **Alternatives:** Group predictions by hour and/or day, while preventing redundant predictions (same rows) (rejected - + inference run are not common enough at this stage to demand this level of code sophistication) +- **Type:** Structural + +### Hardcoding of predictions schema +- **Decision:** Keep the predictions schemas versioned, but hardcoded in a python file +- **Rationale:** Not expected to change very often; avoids additional yaml configs +- **Alternatives:** Implement configs for schema versioning (rejected - would require additional validations and similar complexity, while not needed); + Do not version schemas at all (rejected - hardcoded versioning is easy to implement, but still fairly useful; can be tracked via git diffs) +- **Type:** Tactical + +### Hardcoding of feature drift thresholds +- **Decision:** Use the same hardcoded thresholds to track feature drifting in the monitoring pipeline +- **Rationale:** Separate thresholds per feature are rarely needed; the current implementation only logs warnings and errors anyway - no code blocking logic that + would make the thresholds really matter +- **Alternatives:** Implement configs specifying thresholds per feature or feature set (rejected - can quickly turn into a huge file that requires lots of maintenance + and validation, but provides very little benefit) +- **Type:** Structural + +### No execution blocking on feature drifting and performance degradation +- **Decision:** Do not block the code execution if any level of feature drifting or model performance degradation is detected +- **Rationale:** The code already logs warnings and saves the monitoring report - the user should decide what to do with that on their own +- **Alternatives:** Fail loudly if major drifts or performance degradation are detected (rejected - this implementation would be too + aggressive; instead, the user should be informed, but allowed to decide what to do with that information on their own) +- **Type:** Tactical + +### Allowing of different schemas for production and staging models +- **Decision:** Allow the production and staging models to use different schemas +- **Rationale:** The models should operate within the same segment and problem type, but the schemas should be allowed to evolve - + this allows the models to gradually become better, rather than forcing a biased structure for little benefit +- **Alternatives:** Force the same schema in order to enable better analysis (rejected - while analysis could indeed be deeper + with this implementation, the lack of flexibility would actually make the models perform worse in the long run); + Nest the models by version in promotion as well, and then do the same in post-promotion pipelines (rejected - + this would make the implementation significantly more complex with very little benefit, unless this scales considerably) +- **Type:** Foundational + +### Comparison of the production and staging models in monitoring runs +- **Decision:** Compare the production and staging models in monitoring runs +- **Rationale:** This relatively simple implementation allows for easier comparison of the two models, instead of having to manually + calculate the differences in performance +- **Alternatives:** Only store individual model performances in the monitoring report (rejected - the storage is not a major issue, while + the implementation of this logic is fairly useful) +- **Type:** Tactical + +### Lack of monitoring report validation +- **Decision:** Unlike all of the other json files, do not validate the monitoring report +- **Rationale:** The report has very few stable elements, and varies greatly based on whether only one model type is present + (production/staging) or both; this makes the implementation difficult, while providing little benefit; + there is no upstream code from here, and the report is expected to be viewed immediately and stop + being useful after a short-to-moderate period of time anyway +- **Alternatives:** Validate the monitoring report anyway (rejected - would add complexity and possibly even false confidence, + since 100% accurate validation is unlikely, given the current implementation) +- **Type:** Tactical + +### Assumption of proba_1 being the positive class +- **Decision:** Assume proba_1 is the positive class for classification tasks +- **Rationale:** Works well for binary classification tasks; current implementation does not include any multi-class problems anyway +- **Alternatives:** Prepare the code for multi-class problems immediately (rejected - would add lots of abstraction with no immediate benefit) +- **Type:** Tactical + ## ML Service ### ML service existence @@ -477,3 +661,37 @@ Snapshots are immutable. - **Rationale:** Easier to operate the ml workflow, better UX, less error-prone - **Alternatives:** Stick to CLI-only (rejected - dashboards are convenient and not too difficult to create and maintain) - **Type:** Convenience (eveything still works fine without this code) + +### Inclusion of docs in the service +- **Decision:** Enable documentation reading in the service, even if not perfect +- **Rationale:** A simple implementation that reduces the need to leave the service +- **Alternatives:** Keep the service for pipelines, scripts and configs only (rejected - no reason to do so) +- **Type:** Convenience + +### Inclusion of file and directory structure viewing within the service +- **Decision:** Allow the yaml and json files to be viewed, and the directory trees to be shown within the service +- **Rationale:** Enables viewing the newly created artifacts, as well as understanding the directory structure - all + using a simple UI +- **Type:** Convenience + +### No log streaming +- **Decision:** Do not enable log streaming within the service +- **Rationale:** This would immediately increase the complexity considerably, with no apparent reason (the message + already shows the important logs upon completion, while logs can easily be viewed manually during the + execution if needed) +- **Alternatives:** Enable log streaming (rejected - too complex, while adding very little value at the current stage) +- **Type:** Structural + +### No user registration and login +- **Decision:** Do not support user registration and login +- **Rationale:** The current app is not meant to be used by more than a handful of users +- **Alternatives:** Implement simple registration and login (rejected - the only benefit would be automatic lineage + created_by element writing - not worth it) +- **Type:** Tactical + +### Display of the important logs and prints upon completion +- **Decision:** Display the relevant logs and prints upon completion +- **Rationale:** Allows for a quick inspection of what the run did +- **Alternatives:** Only notify the user on the success status (rejected - the user should be able to quickly check + some of the important bits of information regarding the script execution without leaving the service) +- **Type:** Convenience \ No newline at end of file diff --git a/docs/architecture/overview.md b/docs/architecture/overview.md index dd25862d..d0a6e704 100644 --- a/docs/architecture/overview.md +++ b/docs/architecture/overview.md @@ -12,7 +12,7 @@ This document provides a high-level overview of the system architecture, includi ### Artifact Lineage (high-level overview) -![Artifact Lineage Diagram](/assets/img/docs/architecture/artifact_lineage_v2.png) +![Artifact Lineage Diagram](/assets/img/docs/architecture/artifact_lineage_v3.png) ### Orchestration (high-level overview) @@ -42,19 +42,19 @@ This document provides a high-level overview of the system architecture, includi #### Feature Set Freezing -![freeze.py Architecture Diagram](/assets/img/docs/architecture/freeze_v2.png) +![freeze.py Architecture Diagram](/assets/img/docs/architecture/freeze_v3.png) ### Search #### Hyperparameter Search -![search.py Architecture Diagram](/assets/img/docs/architecture/search_v2.png) +![search.py Architecture Diagram](/assets/img/docs/architecture/search_v3.png) ### Runners #### Training -![train.py Architecture Diagram](/assets/img/docs/architecture/train_v2.png) +![train.py Architecture Diagram](/assets/img/docs/architecture/train_v3.png) #### Evaluation @@ -70,6 +70,16 @@ This document provides a high-level overview of the system architecture, includi ![promote.py Architecture Diagram](/assets/img/docs/architecture/promote_v2.png) +### Post-promotion + +#### Inference + +![infer.py Architecture Diagram](/assets/img/docs/architecture/infer_v1.png) + +#### Monitoring + +![monitor.py Architecture Diagram](/assets/img/docs/architecture/monitor_v1.png) + ## Design Decisions - See [decisions.md](decisions.md) for rationale behind architectural choices. diff --git a/docs/architecture/uml/artifact_lineage.puml b/docs/architecture/uml/artifact_lineage.puml index 203503f9..76992259 100644 --- a/docs/architecture/uml/artifact_lineage.puml +++ b/docs/architecture/uml/artifact_lineage.puml @@ -15,6 +15,8 @@ artifact train_run_snapshot as "Train Run Snapshot" <> artifact evaluation_run_snapshot as "Evaluation Run Snapshot" <> artifact explainability_run_snapshot as "Explainability Run Snapshot" <> artifact promotion_run_snapshot as "Promotion Run Snapshot" <> +artifact inference_run_snapshot as "Inference Run Snapshot" <> +artifact monitoring_run_snapshot as "Monitoring Run Snapshot" <> raw_data_snapshot --> interim_dataset_snapshot interim_dataset_snapshot --> processed_dataset_snapshot @@ -26,6 +28,8 @@ train_run_snapshot --> evaluation_run_snapshot train_run_snapshot --> explainability_run_snapshot evaluation_run_snapshot --> promotion_run_snapshot explainability_run_snapshot --> promotion_run_snapshot +promotion_run_snapshot --> inference_run_snapshot +inference_run_snapshot --> monitoring_run_snapshot note right of feature_set_snapshot Input and derived schemas are stored at diff --git a/docs/architecture/uml/freeze.puml b/docs/architecture/uml/freeze.puml index 9625208a..e76b601d 100644 --- a/docs/architecture/uml/freeze.puml +++ b/docs/architecture/uml/freeze.puml @@ -8,6 +8,7 @@ skinparam linetype ortho skinparam packageStyle rectangle package "Configs"<> { + artifact snapshot_bindings_registry as "Snapshot Bindings Registry\n(configs/snapshot_bindings_registry/)" <> artifact feature_registry as "Feature Registry\n(configs/feature_registry/)" <> } @@ -24,6 +25,7 @@ package "Produced Artifacts"<> { artifact derived_schema as "Derived Schema\n(feature_store/...)" <> } +script ..[#AAAAAA80]> snapshot_bindings_registry script ..> feature_registry script ..> processed_data @@ -33,6 +35,12 @@ script --> feature_set script --[#AAAAAA80]> input_schema script --[#AAAAAA80]> derived_schema +note right of snapshot_bindings_registry +Determines which dataset snapshots +are used (defaults to latest if key +is not provided via a cli argument). +end note + note right of input_schema Created at the version level (rather than snapshot); diff --git a/docs/architecture/uml/infer.puml b/docs/architecture/uml/infer.puml new file mode 100644 index 00000000..332f623b --- /dev/null +++ b/docs/architecture/uml/infer.puml @@ -0,0 +1,83 @@ +@startuml infer.py Architecture +title infer.py Architecture +!include architecture-theme.puml +left to right direction + +skinparam shadowing false +skinparam linetype ortho +skinparam packageStyle rectangle + +component script as "infer.py" <